ariadne_view_components 0.0.58 → 0.0.64
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +70 -0
- data/LICENSE.txt +661 -49
- data/README.md +52 -4
- data/app/assets/javascripts/ariadne_view_components.js +98 -7
- data/app/assets/javascripts/ariadne_view_components.js.map +1 -1
- data/app/assets/stylesheets/ariadne_view_components.css +1 -7
- data/app/components/ariadne/base_component.rb +79 -27
- data/app/components/ariadne/behaviors/tooltipable.rb +120 -0
- data/app/components/ariadne/conditional_wrapper.rb +21 -0
- data/app/components/ariadne/form/base_component.rb +74 -0
- data/app/components/ariadne/form/base_input_component.rb +60 -0
- data/app/components/ariadne/form/caption/component.html.erb +10 -0
- data/app/components/ariadne/form/caption/component.rb +29 -0
- data/app/components/ariadne/form/form_control/component.html.erb +19 -0
- data/app/components/ariadne/form/form_control/component.rb +27 -0
- data/app/components/ariadne/form/form_reference/component.html.erb +1 -0
- data/app/components/ariadne/form/form_reference/component.rb +18 -0
- data/app/components/ariadne/form/group/component.html.erb +5 -0
- data/app/components/ariadne/form/group/component.rb +27 -0
- data/app/components/ariadne/form/hidden_field/component.html.erb +1 -0
- data/app/components/ariadne/form/hidden_field/component.rb +15 -0
- data/app/components/ariadne/form/separator/component.html.erb +1 -0
- data/app/components/ariadne/form/separator/component.rb +8 -0
- data/app/components/ariadne/form/spacing_wrapper/component.html.erb +3 -0
- data/app/components/ariadne/form/spacing_wrapper/component.rb +8 -0
- data/app/components/ariadne/form/text_field/component.html.erb +25 -0
- data/app/components/ariadne/form/text_field/component.rb +132 -0
- data/app/components/ariadne/form/validation_message/component.html.erb +5 -0
- data/app/components/ariadne/form/validation_message/component.rb +14 -0
- data/app/components/ariadne/layout/narrow/component.html.erb +10 -0
- data/app/components/ariadne/layout/narrow/component.rb +24 -0
- data/app/components/ariadne/layout/nav_bar/component.css +0 -0
- data/app/components/ariadne/layout/nav_bar/component.html.erb +123 -0
- data/app/components/ariadne/layout/nav_bar/component.rb +77 -0
- data/app/components/ariadne/ui/button/component.html.erb +5 -0
- data/app/components/ariadne/ui/button/component.rb +184 -0
- data/app/components/ariadne/ui/clipboard_copy/component.html.erb +8 -0
- data/app/components/ariadne/ui/clipboard_copy/component.rb +102 -0
- data/app/components/ariadne/ui/clipboard_copy/component.ts +54 -0
- data/app/components/ariadne/ui/combobox/component.html.erb +32 -0
- data/app/components/ariadne/ui/combobox/component.rb +83 -0
- data/app/components/ariadne/ui/combobox/component.ts +119 -0
- data/app/components/ariadne/ui/combobox/menu_item/component.html.erb +9 -0
- data/app/components/ariadne/ui/combobox/menu_item/component.rb +53 -0
- data/app/components/ariadne/ui/combobox/option/component.html.erb +11 -0
- data/app/components/ariadne/ui/combobox/option/component.rb +45 -0
- data/app/components/ariadne/ui/heroicon/component.html.erb +3 -0
- data/app/components/ariadne/ui/heroicon/component.rb +141 -0
- data/app/components/ariadne/ui/image/component.rb +69 -0
- data/app/components/ariadne/ui/link/component.html.erb +3 -0
- data/app/components/ariadne/ui/link/component.rb +56 -0
- data/app/components/ariadne/ui/typography/component.html.erb +3 -0
- data/app/components/ariadne/ui/typography/component.rb +41 -0
- data/app/lib/ariadne/attributes_helper.rb +119 -0
- data/app/lib/ariadne/fetch_or_fallback_helper.rb +1 -1
- data/app/lib/ariadne/form.rb +16 -0
- data/app/lib/ariadne/view_helper.rb +2 -5
- data/app/lib/view_components_contrib/html_attrs.rb +64 -0
- data/app/lib/view_components_contrib/style_variants.rb +14 -0
- data/lib/ariadne/forms/acts_as_component.rb +125 -0
- data/lib/ariadne/forms/base.html.erb +8 -0
- data/lib/ariadne/forms/base.rb +132 -0
- data/lib/ariadne/forms/buffer_rewriter.rb +51 -0
- data/lib/ariadne/forms/builder.rb +88 -0
- data/lib/ariadne/forms/dsl/button_input.rb +33 -0
- data/lib/ariadne/forms/dsl/form_object.rb +26 -0
- data/lib/ariadne/forms/dsl/input.rb +322 -0
- data/lib/ariadne/forms/dsl/input_group.rb +34 -0
- data/lib/ariadne/forms/dsl/input_methods.rb +157 -0
- data/lib/ariadne/forms/dsl/submit_button_input.rb +36 -0
- data/lib/ariadne/forms/dsl/text_field_input.rb +73 -0
- data/lib/ariadne/forms/utils.rb +34 -0
- data/lib/ariadne/generate.rb +11 -0
- data/lib/ariadne/view_components/engine.rb +24 -7
- data/lib/ariadne/view_components/version.rb +1 -1
- data/lib/ariadne/view_components.rb +1 -1
- data/lib/ariadne/yard/backend.rb +24 -0
- data/lib/ariadne/yard/component_manifest.rb +148 -0
- data/lib/ariadne/yard/component_ref.rb +49 -0
- data/lib/ariadne/yard/docs_helper.rb +98 -0
- data/lib/ariadne/yard/info_arch_docs_helper.rb +31 -0
- data/lib/ariadne/yard/lookbook_docs_helper.rb +32 -0
- data/lib/ariadne/yard/lookbook_pages_backend.rb +235 -0
- data/lib/ariadne/yard/registry.rb +136 -0
- data/lib/ariadne/yard/renders_many_handler.rb +23 -0
- data/lib/ariadne/yard/renders_one_handler.rb +23 -0
- data/lib/ariadne/yard.rb +19 -0
- data/static/arguments.yml +141 -48
- data/static/audited_at.json +0 -9
- data/static/classes.yml +210 -209
- data/static/constants.json +2 -209
- data/static/statuses.json +0 -9
- metadata +125 -210
- data/app/assets/builds/ariadne_view_components.css +0 -2202
- data/app/assets/javascripts/components/ariadne/accumulator_controller/accumulator_controller.d.ts +0 -22
- data/app/assets/javascripts/components/ariadne/ariadne-form.d.ts +0 -22
- data/app/assets/javascripts/components/ariadne/ariadne.d.ts +0 -2
- data/app/assets/javascripts/components/ariadne/clipboard_copy_component/clipboard-copy-component.d.ts +0 -4
- data/app/assets/javascripts/components/ariadne/dropdown/menu_component.d.ts +0 -1
- data/app/assets/javascripts/components/ariadne/events_controller/events_controller.d.ts +0 -4
- data/app/assets/javascripts/components/ariadne/options_controller/options_controller.d.ts +0 -39
- data/app/assets/javascripts/components/ariadne/outlet_manager_controller/outlet_manager_controller.d.ts +0 -42
- data/app/assets/javascripts/components/ariadne/slideover_component/slideover-component.d.ts +0 -9
- data/app/assets/javascripts/components/ariadne/string_match_controller/string_match_controller.d.ts +0 -27
- data/app/assets/javascripts/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts +0 -48
- data/app/assets/javascripts/components/ariadne/tab_container_component/tab-container-component.d.ts +0 -1
- data/app/assets/javascripts/components/ariadne/tab_nav_component/tab-nav-component.d.ts +0 -9
- data/app/assets/javascripts/components/ariadne/time_ago_component/time-ago-component.d.ts +0 -1
- data/app/assets/javascripts/components/ariadne/toggleable_controller/toggleable_controller.d.ts +0 -34
- data/app/assets/javascripts/components/ariadne/tooltip_component/tooltip-component.d.ts +0 -24
- data/app/assets/stylesheets/dropdown.css +0 -46
- data/app/assets/stylesheets/prosemirror.css +0 -323
- data/app/assets/stylesheets/tooltip-component.css +0 -37
- data/app/components/ariadne/accumulator_controller/accumulator_controller.d.ts +0 -22
- data/app/components/ariadne/accumulator_controller/accumulator_controller.js +0 -39
- data/app/components/ariadne/accumulator_controller/accumulator_controller.ts +0 -48
- data/app/components/ariadne/action_card_component.html.erb +0 -13
- data/app/components/ariadne/action_card_component.rb +0 -88
- data/app/components/ariadne/ariadne-form.d.ts +0 -22
- data/app/components/ariadne/ariadne-form.js +0 -85
- data/app/components/ariadne/ariadne.d.ts +0 -2
- data/app/components/ariadne/ariadne.js +0 -24
- data/app/components/ariadne/ariadne.ts +0 -29
- data/app/components/ariadne/avatar_component.rb +0 -81
- data/app/components/ariadne/avatar_stack_component/avatar_stack_component.html.erb +0 -12
- data/app/components/ariadne/avatar_stack_component.rb +0 -75
- data/app/components/ariadne/base_button.rb +0 -70
- data/app/components/ariadne/blankslate_component/blankslate_component.html.erb +0 -26
- data/app/components/ariadne/blankslate_component.rb +0 -148
- data/app/components/ariadne/body_component.rb +0 -30
- data/app/components/ariadne/bottom_tab_component.html.erb +0 -4
- data/app/components/ariadne/bottom_tab_component.rb +0 -44
- data/app/components/ariadne/bottom_tab_nav_component.html.erb +0 -5
- data/app/components/ariadne/bottom_tab_nav_component.rb +0 -33
- data/app/components/ariadne/breadcrumbs_component.html.erb +0 -13
- data/app/components/ariadne/breadcrumbs_component.rb +0 -31
- data/app/components/ariadne/button_component/button_component.html.erb +0 -4
- data/app/components/ariadne/button_component.rb +0 -165
- data/app/components/ariadne/checkbox_component.html.erb +0 -5
- data/app/components/ariadne/checkbox_component.rb +0 -43
- data/app/components/ariadne/clipboard_copy_component/clipboard-copy-component.d.ts +0 -4
- data/app/components/ariadne/clipboard_copy_component/clipboard-copy-component.js +0 -18
- data/app/components/ariadne/clipboard_copy_component/clipboard-copy-component.ts +0 -19
- data/app/components/ariadne/clipboard_copy_component/clipboard_copy_component.html.erb +0 -9
- data/app/components/ariadne/clipboard_copy_component.rb +0 -90
- data/app/components/ariadne/close_button_component.html.erb +0 -4
- data/app/components/ariadne/close_button_component.rb +0 -33
- data/app/components/ariadne/combobox_component.html.erb +0 -14
- data/app/components/ariadne/combobox_component.rb +0 -76
- data/app/components/ariadne/component.rb +0 -127
- data/app/components/ariadne/container_component/container_component.html.erb +0 -3
- data/app/components/ariadne/container_component.rb +0 -25
- data/app/components/ariadne/content.rb +0 -12
- data/app/components/ariadne/counter_component.rb +0 -100
- data/app/components/ariadne/details_component/details_component.html.erb +0 -4
- data/app/components/ariadne/details_component.rb +0 -81
- data/app/components/ariadne/dropdown/menu_component.d.ts +0 -1
- data/app/components/ariadne/dropdown/menu_component.html.erb +0 -20
- data/app/components/ariadne/dropdown/menu_component.js +0 -1
- data/app/components/ariadne/dropdown/menu_component.rb +0 -101
- data/app/components/ariadne/dropdown/menu_component.ts +0 -1
- data/app/components/ariadne/dropdown_component/dropdown_component.html.erb +0 -8
- data/app/components/ariadne/dropdown_component.rb +0 -172
- data/app/components/ariadne/events_controller/events_controller.d.ts +0 -4
- data/app/components/ariadne/events_controller/events_controller.js +0 -6
- data/app/components/ariadne/events_controller/events_controller.ts +0 -7
- data/app/components/ariadne/flash_component/flash_component.html.erb +0 -31
- data/app/components/ariadne/flash_component.rb +0 -128
- data/app/components/ariadne/flex_component/flex_component.html.erb +0 -5
- data/app/components/ariadne/flex_component.rb +0 -56
- data/app/components/ariadne/footer_component/footer_component.html.erb +0 -7
- data/app/components/ariadne/footer_component.rb +0 -23
- data/app/components/ariadne/grid_component/grid_component.html.erb +0 -26
- data/app/components/ariadne/grid_component.rb +0 -67
- data/app/components/ariadne/header_component/header_component.html.erb +0 -29
- data/app/components/ariadne/header_component.rb +0 -111
- data/app/components/ariadne/heading_component.rb +0 -49
- data/app/components/ariadne/heroicon_component/heroicon_component.html.erb +0 -4
- data/app/components/ariadne/heroicon_component.rb +0 -166
- data/app/components/ariadne/image_component.rb +0 -53
- data/app/components/ariadne/inline_flex_component/inline_flex_component.html.erb +0 -6
- data/app/components/ariadne/inline_flex_component.rb +0 -72
- data/app/components/ariadne/layout_component.html.erb +0 -21
- data/app/components/ariadne/layout_component.rb +0 -69
- data/app/components/ariadne/link_component.rb +0 -65
- data/app/components/ariadne/list_component/list_component.html.erb +0 -3
- data/app/components/ariadne/list_component.rb +0 -70
- data/app/components/ariadne/modal_component.html.erb +0 -11
- data/app/components/ariadne/modal_component.rb +0 -88
- data/app/components/ariadne/narrow_container_component/narrow_container_component.html.erb +0 -3
- data/app/components/ariadne/narrow_container_component.rb +0 -30
- data/app/components/ariadne/options_controller/options_controller.d.ts +0 -39
- data/app/components/ariadne/options_controller/options_controller.js +0 -89
- data/app/components/ariadne/options_controller/options_controller.ts +0 -122
- data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.d.ts +0 -42
- data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.js +0 -237
- data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.ts +0 -278
- data/app/components/ariadne/panel_bar_component/panel_bar_component.html.erb +0 -20
- data/app/components/ariadne/panel_bar_component.rb +0 -80
- data/app/components/ariadne/pill_component/pill_component.html.erb +0 -3
- data/app/components/ariadne/pill_component.rb +0 -44
- data/app/components/ariadne/popover_component.html.erb +0 -10
- data/app/components/ariadne/popover_component.rb +0 -81
- data/app/components/ariadne/progress_bar_component.html.erb +0 -5
- data/app/components/ariadne/progress_bar_component.rb +0 -63
- data/app/components/ariadne/relative_time_component.html.erb +0 -3
- data/app/components/ariadne/relative_time_component.rb +0 -61
- data/app/components/ariadne/show_more_button_component.html.erb +0 -11
- data/app/components/ariadne/show_more_button_component.rb +0 -47
- data/app/components/ariadne/slideover_component/slideover-component.d.ts +0 -9
- data/app/components/ariadne/slideover_component/slideover-component.js +0 -11
- data/app/components/ariadne/slideover_component/slideover-component.ts +0 -17
- data/app/components/ariadne/slideover_component/slideover_component.html.erb +0 -9
- data/app/components/ariadne/slideover_component.rb +0 -66
- data/app/components/ariadne/spinner_component.html.erb +0 -16
- data/app/components/ariadne/spinner_component.rb +0 -45
- data/app/components/ariadne/string_match_controller/string_match_controller.d.ts +0 -27
- data/app/components/ariadne/string_match_controller/string_match_controller.js +0 -51
- data/app/components/ariadne/string_match_controller/string_match_controller.ts +0 -65
- data/app/components/ariadne/subheader_component.html.erb +0 -11
- data/app/components/ariadne/subheader_component.rb +0 -65
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts +0 -48
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.js +0 -207
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.ts +0 -256
- data/app/components/ariadne/tab_component/tab_component.html.erb +0 -3
- data/app/components/ariadne/tab_component.rb +0 -98
- data/app/components/ariadne/tab_container_component/tab-container-component.d.ts +0 -1
- data/app/components/ariadne/tab_container_component/tab-container-component.js +0 -23
- data/app/components/ariadne/tab_container_component/tab-container-component.ts +0 -24
- data/app/components/ariadne/tab_container_component.erb +0 -10
- data/app/components/ariadne/tab_container_component.rb +0 -68
- data/app/components/ariadne/tab_nav_component/tab-nav-component.d.ts +0 -9
- data/app/components/ariadne/tab_nav_component/tab-nav-component.js +0 -33
- data/app/components/ariadne/tab_nav_component/tab-nav-component.ts +0 -34
- data/app/components/ariadne/tab_nav_component/tab_nav_component.html.erb +0 -7
- data/app/components/ariadne/tab_nav_component.rb +0 -72
- data/app/components/ariadne/table_nav_component/table_nav_component.html.erb +0 -52
- data/app/components/ariadne/table_nav_component.rb +0 -338
- data/app/components/ariadne/text.rb +0 -25
- data/app/components/ariadne/time_ago_component/time-ago-component.d.ts +0 -1
- data/app/components/ariadne/time_ago_component/time-ago-component.js +0 -1
- data/app/components/ariadne/time_ago_component/time-ago-component.ts +0 -1
- data/app/components/ariadne/time_ago_component.rb +0 -56
- data/app/components/ariadne/timeline_component/timeline_component.html.erb +0 -19
- data/app/components/ariadne/timeline_component.rb +0 -34
- data/app/components/ariadne/toggle_component/toggle_component.html.erb +0 -15
- data/app/components/ariadne/toggle_component.rb +0 -95
- data/app/components/ariadne/toggleable_controller/toggleable_controller.d.ts +0 -34
- data/app/components/ariadne/toggleable_controller/toggleable_controller.js +0 -54
- data/app/components/ariadne/toggleable_controller/toggleable_controller.ts +0 -77
- data/app/components/ariadne/tooltip_component/tooltip-component.d.ts +0 -24
- data/app/components/ariadne/tooltip_component/tooltip-component.js +0 -43
- data/app/components/ariadne/tooltip_component/tooltip-component.ts +0 -57
- data/app/components/ariadne/tooltip_component/tooltip_component.html.erb +0 -4
- data/app/components/ariadne/tooltip_component.rb +0 -108
- data/app/lib/ariadne/action_view_extensions/form_helper.rb +0 -30
- data/app/lib/ariadne/audited/dsl.rb +0 -32
- data/app/lib/ariadne/form_builder.rb +0 -80
- data/app/lib/ariadne/status/dsl.rb +0 -41
- data/config/importmap.rb +0 -3
- data/exe/tailwindcss +0 -21
- data/lib/rubocop/cop/ariadne/base_cop.rb +0 -26
- data/tailwind.config.js +0 -70
data/static/classes.yml
CHANGED
@@ -1,210 +1,211 @@
|
|
1
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
|
-
-
|
63
|
-
-
|
64
|
-
-
|
65
|
-
-
|
66
|
-
-
|
67
|
-
-
|
68
|
-
-
|
69
|
-
-
|
70
|
-
-
|
71
|
-
-
|
72
|
-
-
|
73
|
-
-
|
74
|
-
-
|
75
|
-
-
|
76
|
-
-
|
77
|
-
-
|
78
|
-
-
|
79
|
-
-
|
80
|
-
-
|
81
|
-
-
|
82
|
-
-
|
83
|
-
-
|
84
|
-
-
|
85
|
-
-
|
86
|
-
-
|
87
|
-
-
|
88
|
-
-
|
89
|
-
-
|
90
|
-
-
|
91
|
-
-
|
92
|
-
-
|
93
|
-
-
|
94
|
-
-
|
95
|
-
-
|
96
|
-
-
|
97
|
-
-
|
98
|
-
-
|
99
|
-
-
|
100
|
-
-
|
101
|
-
-
|
102
|
-
-
|
103
|
-
-
|
104
|
-
-
|
105
|
-
-
|
106
|
-
-
|
107
|
-
-
|
108
|
-
-
|
109
|
-
-
|
110
|
-
-
|
111
|
-
-
|
112
|
-
-
|
113
|
-
-
|
114
|
-
-
|
115
|
-
-
|
116
|
-
-
|
117
|
-
-
|
118
|
-
-
|
119
|
-
-
|
120
|
-
-
|
121
|
-
-
|
122
|
-
-
|
123
|
-
-
|
124
|
-
-
|
125
|
-
-
|
126
|
-
-
|
127
|
-
-
|
128
|
-
-
|
129
|
-
-
|
130
|
-
-
|
131
|
-
-
|
132
|
-
-
|
133
|
-
-
|
134
|
-
-
|
135
|
-
-
|
136
|
-
-
|
137
|
-
-
|
138
|
-
-
|
139
|
-
-
|
140
|
-
-
|
141
|
-
-
|
142
|
-
-
|
143
|
-
-
|
144
|
-
-
|
145
|
-
-
|
146
|
-
-
|
147
|
-
-
|
148
|
-
-
|
149
|
-
-
|
150
|
-
-
|
151
|
-
-
|
152
|
-
-
|
153
|
-
-
|
154
|
-
-
|
155
|
-
-
|
156
|
-
-
|
157
|
-
-
|
158
|
-
-
|
159
|
-
-
|
160
|
-
-
|
161
|
-
-
|
162
|
-
-
|
163
|
-
-
|
164
|
-
-
|
165
|
-
-
|
166
|
-
-
|
167
|
-
-
|
168
|
-
-
|
169
|
-
-
|
170
|
-
-
|
171
|
-
-
|
172
|
-
-
|
173
|
-
-
|
174
|
-
-
|
175
|
-
-
|
176
|
-
-
|
177
|
-
-
|
178
|
-
-
|
179
|
-
-
|
180
|
-
-
|
181
|
-
-
|
182
|
-
-
|
183
|
-
-
|
184
|
-
-
|
185
|
-
-
|
186
|
-
-
|
187
|
-
-
|
188
|
-
-
|
189
|
-
-
|
190
|
-
-
|
191
|
-
-
|
192
|
-
-
|
193
|
-
-
|
194
|
-
-
|
195
|
-
-
|
196
|
-
-
|
197
|
-
-
|
198
|
-
-
|
199
|
-
-
|
200
|
-
-
|
201
|
-
-
|
202
|
-
-
|
203
|
-
-
|
204
|
-
-
|
205
|
-
-
|
206
|
-
-
|
207
|
-
-
|
208
|
-
-
|
209
|
-
-
|
210
|
-
-
|
2
|
+
- ".ariadne-inline-block"
|
3
|
+
- ".ariadne-rounded-full"
|
4
|
+
- ".ariadne-ring-2"
|
5
|
+
- ".ariadne-ring-white"
|
6
|
+
- ".ariadne-cursor-pointer"
|
7
|
+
- ".hover:ariadne-text-button-text-color"
|
8
|
+
- ".focus:ariadne-outline-none"
|
9
|
+
- ".focus:ariadne-ring-2"
|
10
|
+
- ".focus:ariadne-ring-offset-2"
|
11
|
+
- ".focus:ariadne-ring-purple-500"
|
12
|
+
- ".ariadne-flex"
|
13
|
+
- ".ariadne--space-x-2"
|
14
|
+
- ".ariadne-overflow-hidden"
|
15
|
+
- ".ariadne-items-center"
|
16
|
+
- ".ariadne-border"
|
17
|
+
- ".ariadne-shadow-sm"
|
18
|
+
- ".ariadne-px-2.5"
|
19
|
+
- ".ariadne-py-1.5"
|
20
|
+
- ".ariadne-text-xs"
|
21
|
+
- ".ariadne-font-medium"
|
22
|
+
- ".ariadne-rounded"
|
23
|
+
- ".ariadne-px-3"
|
24
|
+
- ".ariadne-py-2"
|
25
|
+
- ".ariadne-text-sm"
|
26
|
+
- ".ariadne-leading-4"
|
27
|
+
- ".ariadne-rounded-m"
|
28
|
+
- ".ariadne-px-4"
|
29
|
+
- ".ariadne-rounded-md"
|
30
|
+
- ".ariadne-text-base"
|
31
|
+
- ".ariadne-px-6"
|
32
|
+
- ".ariadne-py-3"
|
33
|
+
- ".ariadne-max-w-7xl"
|
34
|
+
- ".ariadne-mx-auto"
|
35
|
+
- ".ariadne-py-12"
|
36
|
+
- ".sm:ariadne-px-6"
|
37
|
+
- ".lg:ariadne-py-16"
|
38
|
+
- ".lg:ariadne-px-8"
|
39
|
+
- ".ariadne-text-center"
|
40
|
+
- ".ariadne-text-3xl"
|
41
|
+
- ".ariadne-font-extrabold"
|
42
|
+
- ".ariadne-tracking-tight"
|
43
|
+
- ".ariadne-text-gray-900"
|
44
|
+
- ".sm:ariadne-text-4xl"
|
45
|
+
- ".ariadne-mt-8"
|
46
|
+
- ".ariadne-justify-center"
|
47
|
+
- ".ariadne-scroll-smooth"
|
48
|
+
- ".ariadne-antialiased"
|
49
|
+
- ".ariadne-gap-2"
|
50
|
+
- ".ariadne-text-slate-800"
|
51
|
+
- ".ariadne-bg-slate-50"
|
52
|
+
- ".hover:ariadne-bg-slate-100"
|
53
|
+
- ".ariadne-border-slate-300"
|
54
|
+
- ".focus:ariadne-ring-offset-slate-50"
|
55
|
+
- ".focus:ariadne-ring-slate-600"
|
56
|
+
- ".focus:ariadne-ring-offset-blue-50"
|
57
|
+
- ".ariadne-text-green-800"
|
58
|
+
- ".ariadne-bg-green-50"
|
59
|
+
- ".hover:ariadne-bg-green-100"
|
60
|
+
- ".ariadne-border-green-300"
|
61
|
+
- ".focus:ariadne-ring-offset-green-50"
|
62
|
+
- ".focus:ariadne-ring-green-600"
|
63
|
+
- ".ariadne-text-yellow-800"
|
64
|
+
- ".ariadne-bg-yellow-50"
|
65
|
+
- ".hover:ariadne-bg-yellow-100"
|
66
|
+
- ".ariadne-border-yellow-300"
|
67
|
+
- ".focus:ariadne-ring-offset-yellow-50"
|
68
|
+
- ".focus:ariadne-ring-yellow-600"
|
69
|
+
- ".ariadne-text-red-800"
|
70
|
+
- ".ariadne-bg-red-50"
|
71
|
+
- ".hover:ariadne-bg-red-100"
|
72
|
+
- ".ariadne-border-red-300"
|
73
|
+
- ".focus:ariadne-ring-offset-red-50"
|
74
|
+
- ".focus:ariadne-ring-red-600"
|
75
|
+
- ".ariadne-text-yellow-600"
|
76
|
+
- ".ariadne-inline-flex"
|
77
|
+
- ".ariadne-p-1"
|
78
|
+
- ".ariadne-border-transparent"
|
79
|
+
- ".ariadne-invisible"
|
80
|
+
- ".ariadne-absolute"
|
81
|
+
- ".ariadne-bg-slate-900"
|
82
|
+
- ".ariadne-text-white"
|
83
|
+
- ".ariadne-font-semibold"
|
84
|
+
- ".ariadne-max-w-xs"
|
85
|
+
- ".ariadne-py-1"
|
86
|
+
- ".ariadne-px-2"
|
87
|
+
- ".ariadne-z-max"
|
88
|
+
- ".ariadne-tooltip-arrow"
|
89
|
+
- ".ariadne-block"
|
90
|
+
- ".ariadne-w-fit"
|
91
|
+
- ".ariadne-mr-2"
|
92
|
+
- ".ariadne-underline"
|
93
|
+
- ".ariadne-decoration-double"
|
94
|
+
- ".ariadne-text-green-600"
|
95
|
+
- ".ariadne-border-none"
|
96
|
+
- ".ariadne-bg-transparent"
|
97
|
+
- ".ariadne-shadow-none"
|
98
|
+
- ".hover:ariadne-bg-transparent"
|
99
|
+
- ".ariadne-details-reset"
|
100
|
+
- ".ariadne-mt-2"
|
101
|
+
- ".ariadne-w-56"
|
102
|
+
- ".ariadne-divide-y"
|
103
|
+
- ".ariadne-divide-gray-100"
|
104
|
+
- ".ariadne-shadow-lg"
|
105
|
+
- ".ariadne-ring-1"
|
106
|
+
- ".ariadne-ring-black"
|
107
|
+
- ".ariadne-ring-opacity-5"
|
108
|
+
- ".ariadne-text-gray-700"
|
109
|
+
- ".ariadne-ml-2"
|
110
|
+
- ".ariadne--mr-1"
|
111
|
+
- ".ariadne-text-red-500"
|
112
|
+
- ".ariadne-mt-0"
|
113
|
+
- ".ariadne-text-slate-700"
|
114
|
+
- ".ariadne-p-4"
|
115
|
+
- ".ariadne-bg-blue-50"
|
116
|
+
- ".ariadne-flex-shrink-0"
|
117
|
+
- ".ariadne-ml-3"
|
118
|
+
- ".ariadne-text-yellow-700"
|
119
|
+
- ".ariadne-text-red-700"
|
120
|
+
- ".ariadne-text-green-700"
|
121
|
+
- ".ariadne-pl-3"
|
122
|
+
- ".ariadne--mx-1.5"
|
123
|
+
- ".ariadne--my-1.5"
|
124
|
+
- ".ariadne-p-1.5"
|
125
|
+
- ".ariadne-text-slate-500"
|
126
|
+
- ".hover:ariadne-bg-blue-100"
|
127
|
+
- ".focus:ariadne-ring-blue-600"
|
128
|
+
- ".ariadne-sr-only"
|
129
|
+
- ".ariadne-mt-4"
|
130
|
+
- ".ariadne-pt-5"
|
131
|
+
- ".ariadne--mx-2"
|
132
|
+
- ".ariadne-py-5"
|
133
|
+
- ".ariadne-mt-6"
|
134
|
+
- ".sm:ariadne-mt-0"
|
135
|
+
- ".ariadne-grid"
|
136
|
+
- ".ariadne-gap-6"
|
137
|
+
- ".sm:ariadne-grid-cols-2"
|
138
|
+
- ".lg:ariadne-grid-cols-3"
|
139
|
+
- ".ariadne-font-bold"
|
140
|
+
- ".ariadne-leading-7"
|
141
|
+
- ".sm:ariadne-text-3xl"
|
142
|
+
- ".ariadne-text-2xl"
|
143
|
+
- ".ariadne-items-baseline"
|
144
|
+
- ".ariadne-stroke-state-open"
|
145
|
+
- ".ariadne-stroke-state-closed"
|
146
|
+
- ".ariadne-fill-state-closed"
|
147
|
+
- ".ariadne-pl-2"
|
148
|
+
- ".ariadne-divide-gray-300"
|
149
|
+
- ".ariadne-relative"
|
150
|
+
- ".hover:ariadne-bg-button-hover-color"
|
151
|
+
- ".ariadne-border-gray-300"
|
152
|
+
- ".md:ariadne-flex"
|
153
|
+
- ".md:ariadne-divide-y-0"
|
154
|
+
- ".ariadne-whitespace-nowrap"
|
155
|
+
- ".ariadne-text-black"
|
156
|
+
- ".ariadne-gap-1"
|
157
|
+
- ".ariadne-bg-slate-200"
|
158
|
+
- ".ariadne-flex-col"
|
159
|
+
- ".ariadne-hidden"
|
160
|
+
- ".ariadne-text-gray-500"
|
161
|
+
- ".hover:ariadne-text-gray-700"
|
162
|
+
- ".hover:ariadne-border-gray-300"
|
163
|
+
- ".ariadne-py-4"
|
164
|
+
- ".ariadne-px-1"
|
165
|
+
- ".ariadne-border-b-2"
|
166
|
+
- ".ariadne-list-none"
|
167
|
+
- ".ariadne-border-slate-600"
|
168
|
+
- ".hover:ariadne-text-slate-700"
|
169
|
+
- ".hover:ariadne-border-slate-700"
|
170
|
+
- ".ariadne-divide-gray-200"
|
171
|
+
- ".ariadne-pb-4"
|
172
|
+
- ".ariadne-text-lg"
|
173
|
+
- ".ariadne-pt-6"
|
174
|
+
- ".ariadne-flow-root"
|
175
|
+
- ".ariadne--mb-8"
|
176
|
+
- ".ariadne-group/wrapper"
|
177
|
+
- ".data-[disabled=true]:ariadne-opacity-50"
|
178
|
+
- ".data-[disabled=true]:ariadne-cursor-auto"
|
179
|
+
- ".ariadne-flex-row"
|
180
|
+
- ".group-data-[label-position=start]/wrapper:ariadne-mr-1.5"
|
181
|
+
- ".group-data-[label-position=end]/wrapper:ariadne-ml-1"
|
182
|
+
- ".ariadne-group/toggle"
|
183
|
+
- ".group-data-[disabled=false]/wrapper:ariadne-cursor-pointer"
|
184
|
+
- ".ariadne-focus:outline-none"
|
185
|
+
- ".ariadne-focus:ring-2"
|
186
|
+
- ".ariadne-focus:ring-indigo-600"
|
187
|
+
- ".ariadne-focus:ring-offset-2"
|
188
|
+
- ".disabled:ariadne-cursor-auto"
|
189
|
+
- ".ariadne-h-5"
|
190
|
+
- ".ariadne-w-10"
|
191
|
+
- ".ariadne-translate-x-3"
|
192
|
+
- ".ariadne-pointer-events-none"
|
193
|
+
- ".ariadne-h-full"
|
194
|
+
- ".ariadne-w-full"
|
195
|
+
- ".ariadne-bg-white"
|
196
|
+
- ".ariadne-bg-gray-200"
|
197
|
+
- ".ariadne-transition-colors"
|
198
|
+
- ".ariadne-duration-200"
|
199
|
+
- ".ariadne-ease-in-out"
|
200
|
+
- ".ariadne-h-4"
|
201
|
+
- ".ariadne-w-9"
|
202
|
+
- ".group-aria-checked/toggle:ariadne-bg-indigo-600"
|
203
|
+
- ".ariadne-left-0"
|
204
|
+
- ".ariadne-transform"
|
205
|
+
- ".ariadne-border-gray-200"
|
206
|
+
- ".ariadne-shadow"
|
207
|
+
- ".ariadne-ring-0"
|
208
|
+
- ".ariadne-transition-transform"
|
209
|
+
- ".ariadne-translate-x-0"
|
210
|
+
- ".ariadne-w-5"
|
211
|
+
- ".group-aria-checked/toggle:ariadne-translate-x-5"
|