-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathcomponents_list.rb
More file actions
62 lines (61 loc) · 2.93 KB
/
components_list.rb
File metadata and controls
62 lines (61 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# frozen_string_literal: true
module Components
module Shared
module ComponentsList
def components
[
{name: "Accordion", path: docs_accordion_path},
{name: "Alert", path: docs_alert_path},
{name: "Alert Dialog", path: docs_alert_dialog_path},
{name: "Aspect Ratio", path: docs_aspect_ratio_path},
{name: "Avatar", path: docs_avatar_path},
{name: "Badge", path: docs_badge_path},
{name: "Breadcrumb", path: docs_breadcrumb_path},
{name: "Button", path: docs_button_path},
{name: "Calendar", path: docs_calendar_path},
{name: "Card", path: docs_card_path},
{name: "Carousel", path: docs_carousel_path},
# { name: "Chart", path: docs_chart_path },
{name: "Checkbox", path: docs_checkbox_path},
{name: "Checkbox Group", path: docs_checkbox_group_path},
{name: "Clipboard", path: docs_clipboard_path},
{name: "Codeblock", path: docs_codeblock_path},
{name: "Collapsible", path: docs_collapsible_path},
{name: "Combobox", path: docs_combobox_path},
{name: "Command", path: docs_command_path},
{name: "Context Menu", path: docs_context_menu_path},
{name: "Data Table", path: docs_data_table_path},
{name: "Date Picker", path: docs_date_picker_path},
{name: "Dialog / Modal", path: docs_dialog_path},
{name: "Dropdown Menu", path: docs_dropdown_menu_path},
{name: "Form", path: docs_form_path},
{name: "Hover Card", path: docs_hover_card_path},
{name: "Input", path: docs_input_path},
{name: "Link", path: docs_link_path},
{name: "Masked Input", path: masked_input_path},
{name: "Pagination", path: docs_pagination_path},
{name: "Popover", path: docs_popover_path},
{name: "Progress", path: docs_progress_path},
{name: "Radio Button", path: docs_radio_button_path},
{name: "Native Select", path: docs_native_select_path},
{name: "Select", path: docs_select_path},
{name: "Separator", path: docs_separator_path},
{name: "Sheet", path: docs_sheet_path},
{name: "Shortcut Key", path: docs_shortcut_key_path},
{name: "Sidebar", path: docs_sidebar_path},
{name: "Skeleton", path: docs_skeleton_path},
{name: "Switch", path: docs_switch_path},
{name: "Table", path: docs_table_path},
{name: "Tabs", path: docs_tabs_path},
{name: "Textarea", path: docs_textarea_path},
{name: "Theme Toggle", path: docs_theme_toggle_path},
{name: "Toast", path: docs_toast_path},
{name: "Toggle", path: docs_toggle_path},
{name: "Toggle Group", path: docs_toggle_group_path},
{name: "Tooltip", path: docs_tooltip_path},
{name: "Typography", path: docs_typography_path}
]
end
end
end
end