forked from deephaven/deephaven-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP Try and get the stupid toctree working
- It ain't working
- Loading branch information
Showing
23 changed files
with
206 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
Binary file renamed
BIN
+180 KB
...doctrees/components/action_button.doctree → .../components/buttons/action_button.doctree
Binary file not shown.
Binary file added
BIN
+439 KB
plugins/ui/sphinx-docs/_build/doctrees/components/buttons/button.doctree
Binary file not shown.
Binary file renamed
BIN
+122 KB
.../doctrees/components/button_group.doctree → ...s/components/buttons/button_group.doctree
Binary file not shown.
Binary file added
BIN
+16.1 KB
plugins/ui/sphinx-docs/_build/doctrees/components/buttons/index.doctree
Binary file not shown.
Binary file renamed
BIN
+5.11 KB
...doctrees/components/toggle_button.doctree → .../components/buttons/toggle_button.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
43 changes: 43 additions & 0 deletions
43
plugins/ui/sphinx-docs/_build/markdown/components/buttons/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Buttons | ||
|
||
Use buttons to display stuff | ||
|
||
## Buttons | ||
|
||
- [action_button]() | ||
- [button](button.md) | ||
- [button_group]() | ||
- [toggle_button]() | ||
|
||
## Inputs | ||
|
||
- [checkbox]() | ||
- [form]() | ||
- [number_field]() | ||
- [picker]() | ||
- [range_slider]() | ||
- [slider]() | ||
- [switch]() | ||
- [text_field]() | ||
|
||
## Content | ||
|
||
- [content]() | ||
- [contextual_help]() | ||
- [flex]() | ||
- [grid]() | ||
- [heading]() | ||
- [icon]() | ||
- [item]() | ||
- [illustrated_message]() | ||
- [table]() | ||
- [tabs]() | ||
- [view]() | ||
|
||
## Layout | ||
|
||
- [column]() | ||
- [row]() | ||
- [dashboard]() | ||
- [stack]() | ||
- [panel]() |
File renamed without changes.
49 changes: 49 additions & 0 deletions
49
plugins/ui/sphinx-docs/_build/markdown/components/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Components | ||
|
||
deephaven.ui provides many components to display in the UI. Use a component by assigning it to a variable, then display it in the UI. | ||
|
||
```python | ||
my_button = ui.button("Click Me!", on_press=lambda e: print(f"Button was clicked! {e}")) | ||
``` | ||
|
||
Select any of the components below for API reference details. For examples and use cases, see the [examples]() page. | ||
|
||
## Buttons | ||
|
||
- [action_button]() | ||
- [button]() | ||
- [button_group]() | ||
- [toggle_button]() | ||
|
||
## Inputs | ||
|
||
- [checkbox]() | ||
- [form]() | ||
- [number_field]() | ||
- [picker]() | ||
- [range_slider]() | ||
- [slider]() | ||
- [switch]() | ||
- [text_field]() | ||
|
||
## Content | ||
|
||
- [content]() | ||
- [contextual_help]() | ||
- [flex]() | ||
- [grid]() | ||
- [heading]() | ||
- [icon]() | ||
- [item]() | ||
- [illustrated_message]() | ||
- [table]() | ||
- [tabs]() | ||
- [view]() | ||
|
||
## Layout | ||
|
||
- [column]() | ||
- [row]() | ||
- [dashboard]() | ||
- [stack]() | ||
- [panel]() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Buttons | ||
|
||
Use buttons to display stuff | ||
|
||
## Buttons | ||
|
||
```{toctree} | ||
``` | ||
|
||
- [action_button](action_button.md) | ||
- [button](button.md) | ||
- [button_group](button_group.md) | ||
- [toggle_button](toggle_button.md) | ||
|
||
## Inputs | ||
|
||
- [checkbox](checkbox.md) | ||
- [form](form.md) | ||
- [number_field](number_field.md) | ||
- [picker](picker.md) | ||
- [range_slider](range_slider.md) | ||
- [slider](slider.md) | ||
- [switch](switch.md) | ||
- [text_field](text_field.md) | ||
|
||
## Content | ||
|
||
- [content](content.md) | ||
- [contextual_help](contextual_help.md) | ||
- [flex](flex.md) | ||
- [grid](grid.md) | ||
- [heading](heading.md) | ||
- [icon](icon.md) | ||
- [item](item.md) | ||
- [illustrated_message](illustrated_message.md) | ||
- [table](table.md) | ||
- [tabs](tabs.md) | ||
- [view](view.md) | ||
|
||
## Layout | ||
|
||
- [column](column.md) | ||
- [row](row.md) | ||
- [dashboard](dashboard.md) | ||
- [stack](stack.md) | ||
- [panel](panel.md) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Components | ||
|
||
deephaven.ui provides many components to display in the UI. Use a component by assigning it to a variable, then display it in the UI. | ||
|
||
```python | ||
my_button = ui.button("Click Me!", on_press=lambda e: print(f"Button was clicked! {e}")) | ||
``` | ||
|
||
Select any of the components below for API reference details. For examples and use cases, see the [examples](../examples) page. | ||
|
||
## Buttons | ||
|
||
<!-- TODO: How we get the toctree in .md here to show the buttons page? --> | ||
|
||
```{toctree} | ||
:maxdepth: 1 | ||
``` | ||
|
||
- [action_button](action_button.md) | ||
- [button](button.md) | ||
- [button_group](button_group.md) | ||
- [toggle_button](toggle_button.md) | ||
|
||
## Inputs | ||
|
||
- [checkbox](checkbox.md) | ||
- [form](form.md) | ||
- [number_field](number_field.md) | ||
- [picker](picker.md) | ||
- [range_slider](range_slider.md) | ||
- [slider](slider.md) | ||
- [switch](switch.md) | ||
- [text_field](text_field.md) | ||
|
||
## Content | ||
|
||
- [content](content.md) | ||
- [contextual_help](contextual_help.md) | ||
- [flex](flex.md) | ||
- [grid](grid.md) | ||
- [heading](heading.md) | ||
- [icon](icon.md) | ||
- [item](item.md) | ||
- [illustrated_message](illustrated_message.md) | ||
- [table](table.md) | ||
- [tabs](tabs.md) | ||
- [view](view.md) | ||
|
||
## Layout | ||
|
||
- [column](column.md) | ||
- [row](row.md) | ||
- [dashboard](dashboard.md) | ||
- [stack](stack.md) | ||
- [panel](panel.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters