From ae34f96f74369dfb33f322b26d9180727ea1d13e Mon Sep 17 00:00:00 2001 From: Mike Bender Date: Fri, 30 Aug 2024 12:42:32 -0400 Subject: [PATCH] docs: Add missing components to sidebar (#782) - We added a whole bunch of docs for components, but they are not visible in the sidebar - Add them to the sidebar in alphabetical order. Perhaps we'll want groupings at some point --- plugins/ui/docs/sidebar.json | 48 ++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/plugins/ui/docs/sidebar.json b/plugins/ui/docs/sidebar.json index 04fee0f3d..4ce1d271a 100644 --- a/plugins/ui/docs/sidebar.json +++ b/plugins/ui/docs/sidebar.json @@ -21,9 +21,57 @@ { "label": "Components", "items": [ + { + "label": "Action Button", + "path": "components/action_button.md" + }, { "label": "Button", "path": "components/button.md" + }, + { + "label": "Checkbox", + "path": "components/checkbox.md" + }, + { + "label": "Combo Box", + "path": "components/combo_box.md" + }, + { + "label": "Date Picker", + "path": "components/date_picker.md" + }, + { + "label": "Illustrated Message", + "path": "components/illustrated_message.md" + }, + { + "label": "Image", + "path": "components/image.md" + }, + { + "label": "Picker", + "path": "components/picker.md" + }, + { + "label": "Radio Group", + "path": "components/radio_group.md" + }, + { + "label": "Range Slider", + "path": "components/range_slider.md" + }, + { + "label": "Slider", + "path": "components/slider.md" + }, + { + "label": "Text Area", + "path": "components/text_area.md" + }, + { + "label": "View", + "path": "components/view.md" } ] },