shadcn_phlexcomponents 0.1.5 → 0.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +14 -0
- data/app/javascript/controllers/accordion_controller.ts +133 -0
- data/app/javascript/controllers/{avatar_controller.js → avatar_controller.ts} +4 -0
- data/app/javascript/controllers/checkbox_controller.ts +34 -0
- data/app/javascript/controllers/collapsible_controller.ts +45 -0
- data/app/javascript/controllers/combobox_controller.ts +145 -0
- data/app/javascript/controllers/command_controller.ts +129 -0
- data/app/javascript/controllers/command_root_controller.ts +355 -0
- data/app/javascript/controllers/date_picker_controller.ts +274 -0
- data/app/javascript/controllers/date_range_picker_controller.ts +243 -0
- data/app/javascript/controllers/dialog_controller.ts +113 -0
- data/app/javascript/controllers/dropdown_menu_controller.ts +133 -0
- data/app/javascript/controllers/dropdown_menu_root_controller.ts +234 -0
- data/app/javascript/controllers/dropdown_menu_sub_controller.ts +150 -0
- data/app/javascript/controllers/form_field_controller.ts +22 -0
- data/app/javascript/controllers/hover_card_controller.ts +93 -0
- data/app/javascript/controllers/{loading_button_controller.js → loading_button_controller.ts} +2 -2
- data/app/javascript/controllers/popover_controller.ts +141 -0
- data/app/javascript/controllers/progress_controller.ts +17 -0
- data/app/javascript/controllers/radio_group_controller.ts +106 -0
- data/app/javascript/controllers/select_controller.ts +200 -0
- data/app/javascript/controllers/{sidebar_controller.js → sidebar_controller.ts} +6 -2
- data/app/javascript/controllers/sidebar_trigger_controller.ts +21 -0
- data/app/javascript/controllers/slider_controller.ts +107 -0
- data/app/javascript/controllers/switch_controller.ts +30 -0
- data/app/javascript/controllers/tabs_controller.ts +79 -0
- data/app/javascript/controllers/{theme_switcher_controller.js → theme_switcher_controller.ts} +12 -9
- data/app/javascript/controllers/toast_container_controller.ts +62 -0
- data/app/javascript/controllers/toast_controller.ts +28 -0
- data/app/javascript/controllers/tooltip_controller.ts +98 -0
- data/app/javascript/shadcn_phlexcomponents.ts +57 -0
- data/app/javascript/utils.ts +437 -0
- data/app/stylesheets/date_picker.css +74 -0
- data/app/stylesheets/nouislider.css +173 -0
- data/app/stylesheets/tw-animate.css +486 -0
- data/lib/install/install_shadcn_phlexcomponents.rb +22 -9
- data/lib/shadcn_phlexcomponents/alias.rb +3 -1
- data/lib/shadcn_phlexcomponents/components/accordion.rb +129 -0
- data/lib/shadcn_phlexcomponents/components/alert.rb +59 -0
- data/lib/shadcn_phlexcomponents/components/alert_dialog.rb +276 -0
- data/lib/{components → shadcn_phlexcomponents/components}/aspect_ratio.rb +2 -2
- data/lib/shadcn_phlexcomponents/components/avatar.rb +63 -0
- data/lib/shadcn_phlexcomponents/components/badge.rb +35 -0
- data/lib/{components → shadcn_phlexcomponents/components}/base.rb +44 -7
- data/lib/shadcn_phlexcomponents/components/breadcrumb.rb +150 -0
- data/lib/shadcn_phlexcomponents/components/button.rb +49 -0
- data/lib/shadcn_phlexcomponents/components/card.rb +88 -0
- data/lib/{components → shadcn_phlexcomponents/components}/checkbox.rb +21 -17
- data/lib/{components → shadcn_phlexcomponents/components}/checkbox_group.rb +27 -16
- data/lib/shadcn_phlexcomponents/components/collapsible.rb +91 -0
- data/lib/shadcn_phlexcomponents/components/combobox.rb +398 -0
- data/lib/shadcn_phlexcomponents/components/command.rb +351 -0
- data/lib/shadcn_phlexcomponents/components/date_picker.rb +264 -0
- data/lib/shadcn_phlexcomponents/components/date_range_picker.rb +126 -0
- data/lib/shadcn_phlexcomponents/components/dialog.rb +234 -0
- data/lib/shadcn_phlexcomponents/components/dropdown_menu.rb +282 -0
- data/lib/shadcn_phlexcomponents/components/dropdown_menu_sub.rb +135 -0
- data/lib/shadcn_phlexcomponents/components/form/form_checkbox.rb +82 -0
- data/lib/shadcn_phlexcomponents/components/form/form_checkbox_group.rb +116 -0
- data/lib/shadcn_phlexcomponents/components/form/form_date_picker.rb +46 -0
- data/lib/shadcn_phlexcomponents/components/form/form_date_range_picker.rb +82 -0
- data/lib/{components → shadcn_phlexcomponents/components/form}/form_error.rb +7 -3
- data/lib/shadcn_phlexcomponents/components/form/form_helpers.rb +143 -0
- data/lib/shadcn_phlexcomponents/components/form/form_hint.rb +21 -0
- data/lib/{components → shadcn_phlexcomponents/components/form}/form_input.rb +3 -4
- data/lib/shadcn_phlexcomponents/components/form/form_radio_group.rb +106 -0
- data/lib/shadcn_phlexcomponents/components/form/form_select.rb +64 -0
- data/lib/shadcn_phlexcomponents/components/form/form_slider.rb +91 -0
- data/lib/shadcn_phlexcomponents/components/form/form_switch.rb +67 -0
- data/lib/shadcn_phlexcomponents/components/form/form_textarea.rb +59 -0
- data/lib/shadcn_phlexcomponents/components/form.rb +157 -0
- data/lib/shadcn_phlexcomponents/components/hover_card.rb +110 -0
- data/lib/shadcn_phlexcomponents/components/input.rb +31 -0
- data/lib/shadcn_phlexcomponents/components/label.rb +16 -0
- data/lib/{components → shadcn_phlexcomponents/components}/link.rb +10 -3
- data/lib/shadcn_phlexcomponents/components/loading_button.rb +28 -0
- data/lib/shadcn_phlexcomponents/components/pagination.rb +166 -0
- data/lib/shadcn_phlexcomponents/components/popover.rb +116 -0
- data/lib/{components → shadcn_phlexcomponents/components}/progress.rb +5 -5
- data/lib/shadcn_phlexcomponents/components/radio_group.rb +155 -0
- data/lib/shadcn_phlexcomponents/components/select.rb +421 -0
- data/lib/{components → shadcn_phlexcomponents/components}/separator.rb +9 -8
- data/lib/shadcn_phlexcomponents/components/sheet.rb +239 -0
- data/lib/{components → shadcn_phlexcomponents/components}/skeleton.rb +1 -1
- data/lib/shadcn_phlexcomponents/components/slider.rb +72 -0
- data/lib/shadcn_phlexcomponents/components/switch.rb +75 -0
- data/lib/shadcn_phlexcomponents/components/table.rb +140 -0
- data/lib/shadcn_phlexcomponents/components/tabs.rb +135 -0
- data/lib/shadcn_phlexcomponents/components/textarea.rb +24 -0
- data/lib/{components → shadcn_phlexcomponents/components}/theme_switcher.rb +2 -2
- data/lib/shadcn_phlexcomponents/components/toast.rb +153 -0
- data/lib/{components → shadcn_phlexcomponents/components}/toast_container.rb +24 -5
- data/lib/shadcn_phlexcomponents/components/tooltip.rb +131 -0
- data/lib/shadcn_phlexcomponents/initializers/shadcn_phlexcomponents.rb +25 -0
- data/lib/shadcn_phlexcomponents/version.rb +1 -1
- data/lib/tasks/install.rake +1 -1
- metadata +92 -168
- data/app/assets/tailwind/choices.css +0 -324
- data/app/assets/tailwind/tailwindcss-animate.css +0 -318
- data/app/assets/tailwind/vanilla-calendar-pro.css +0 -466
- data/app/javascript/controllers/accordion_controller.js +0 -133
- data/app/javascript/controllers/alert_dialog_controller.js +0 -157
- data/app/javascript/controllers/checkbox_controller.js +0 -28
- data/app/javascript/controllers/collapsible_controller.js +0 -35
- data/app/javascript/controllers/combobox_controller.js +0 -34
- data/app/javascript/controllers/date_picker_controller.js +0 -118
- data/app/javascript/controllers/date_range_picker_controller.js +0 -231
- data/app/javascript/controllers/dialog_controller.js +0 -159
- data/app/javascript/controllers/dropdown_menu_controller.js +0 -193
- data/app/javascript/controllers/hover_card_controller.js +0 -42
- data/app/javascript/controllers/popover_controller.js +0 -124
- data/app/javascript/controllers/progress_controller.js +0 -14
- data/app/javascript/controllers/radio_group_controller.js +0 -90
- data/app/javascript/controllers/select_controller.js +0 -294
- data/app/javascript/controllers/sheet_controller.js +0 -159
- data/app/javascript/controllers/sidebar_trigger_controller.js +0 -15
- data/app/javascript/controllers/switch_controller.js +0 -24
- data/app/javascript/controllers/tabs_controller.js +0 -73
- data/app/javascript/controllers/toast_container_controller.js +0 -22
- data/app/javascript/controllers/toast_controller.js +0 -45
- data/app/javascript/controllers/tooltip_controller.js +0 -41
- data/lib/components/accordion.rb +0 -38
- data/lib/components/accordion_content.rb +0 -30
- data/lib/components/accordion_item.rb +0 -26
- data/lib/components/accordion_trigger.rb +0 -45
- data/lib/components/alert.rb +0 -40
- data/lib/components/alert_description.rb +0 -11
- data/lib/components/alert_dialog.rb +0 -60
- data/lib/components/alert_dialog_action.rb +0 -22
- data/lib/components/alert_dialog_action_to.rb +0 -40
- data/lib/components/alert_dialog_cancel.rb +0 -22
- data/lib/components/alert_dialog_content.rb +0 -40
- data/lib/components/alert_dialog_description.rb +0 -22
- data/lib/components/alert_dialog_footer.rb +0 -11
- data/lib/components/alert_dialog_header.rb +0 -11
- data/lib/components/alert_dialog_title.rb +0 -22
- data/lib/components/alert_dialog_trigger.rb +0 -50
- data/lib/components/alert_title.rb +0 -11
- data/lib/components/avatar.rb +0 -31
- data/lib/components/avatar_fallback.rb +0 -21
- data/lib/components/avatar_image.rb +0 -19
- data/lib/components/badge.rb +0 -30
- data/lib/components/breadcrumb.rb +0 -51
- data/lib/components/breadcrumb_ellipsis.rb +0 -23
- data/lib/components/breadcrumb_item.rb +0 -11
- data/lib/components/breadcrumb_link.rb +0 -7
- data/lib/components/breadcrumb_page.rb +0 -21
- data/lib/components/breadcrumb_separator.rb +0 -26
- data/lib/components/button.rb +0 -53
- data/lib/components/card.rb +0 -31
- data/lib/components/card_content.rb +0 -11
- data/lib/components/card_description.rb +0 -11
- data/lib/components/card_footer.rb +0 -11
- data/lib/components/card_header.rb +0 -11
- data/lib/components/card_title.rb +0 -11
- data/lib/components/collapsible.rb +0 -31
- data/lib/components/collapsible_content.rb +0 -24
- data/lib/components/collapsible_trigger.rb +0 -50
- data/lib/components/combobox.rb +0 -57
- data/lib/components/combobox_item.rb +0 -9
- data/lib/components/date_picker.rb +0 -94
- data/lib/components/date_range_picker.rb +0 -113
- data/lib/components/dialog.rb +0 -52
- data/lib/components/dialog_close.rb +0 -42
- data/lib/components/dialog_content.rb +0 -54
- data/lib/components/dialog_description.rb +0 -22
- data/lib/components/dialog_footer.rb +0 -11
- data/lib/components/dialog_header.rb +0 -11
- data/lib/components/dialog_title.rb +0 -22
- data/lib/components/dialog_trigger.rb +0 -50
- data/lib/components/dropdown_menu.rb +0 -50
- data/lib/components/dropdown_menu_content.rb +0 -52
- data/lib/components/dropdown_menu_item.rb +0 -56
- data/lib/components/dropdown_menu_item_to.rb +0 -28
- data/lib/components/dropdown_menu_label.rb +0 -11
- data/lib/components/dropdown_menu_separator.rb +0 -20
- data/lib/components/dropdown_menu_trigger.rb +0 -57
- data/lib/components/form.rb +0 -59
- data/lib/components/form_hint.rb +0 -17
- data/lib/components/hover_card.rb +0 -33
- data/lib/components/hover_card_content.rb +0 -32
- data/lib/components/hover_card_trigger.rb +0 -44
- data/lib/components/input.rb +0 -32
- data/lib/components/label.rb +0 -14
- data/lib/components/loading_button.rb +0 -21
- data/lib/components/pagination.rb +0 -38
- data/lib/components/pagination_ellipsis.rb +0 -24
- data/lib/components/pagination_link.rb +0 -34
- data/lib/components/pagination_next.rb +0 -32
- data/lib/components/pagination_previous.rb +0 -32
- data/lib/components/popover.rb +0 -34
- data/lib/components/popover_content.rb +0 -40
- data/lib/components/popover_trigger.rb +0 -51
- data/lib/components/radio_group.rb +0 -62
- data/lib/components/radio_group_item.rb +0 -66
- data/lib/components/select.rb +0 -184
- data/lib/components/select_content.rb +0 -64
- data/lib/components/select_group.rb +0 -23
- data/lib/components/select_item.rb +0 -59
- data/lib/components/select_label.rb +0 -24
- data/lib/components/select_trigger.rb +0 -56
- data/lib/components/sheet.rb +0 -53
- data/lib/components/sheet_close.rb +0 -42
- data/lib/components/sheet_content.rb +0 -65
- data/lib/components/sheet_description.rb +0 -22
- data/lib/components/sheet_footer.rb +0 -11
- data/lib/components/sheet_header.rb +0 -11
- data/lib/components/sheet_title.rb +0 -22
- data/lib/components/sheet_trigger.rb +0 -50
- data/lib/components/sidebar.rb +0 -108
- data/lib/components/sidebar_container.rb +0 -11
- data/lib/components/sidebar_content.rb +0 -11
- data/lib/components/sidebar_footer.rb +0 -11
- data/lib/components/sidebar_group.rb +0 -11
- data/lib/components/sidebar_group_content.rb +0 -11
- data/lib/components/sidebar_group_label.rb +0 -16
- data/lib/components/sidebar_header.rb +0 -11
- data/lib/components/sidebar_inset.rb +0 -15
- data/lib/components/sidebar_menu.rb +0 -11
- data/lib/components/sidebar_menu_button.rb +0 -61
- data/lib/components/sidebar_menu_item.rb +0 -9
- data/lib/components/sidebar_menu_sub.rb +0 -14
- data/lib/components/sidebar_menu_sub_button.rb +0 -48
- data/lib/components/sidebar_menu_sub_item.rb +0 -9
- data/lib/components/sidebar_trigger.rb +0 -40
- data/lib/components/switch.rb +0 -66
- data/lib/components/table.rb +0 -75
- data/lib/components/table_body.rb +0 -11
- data/lib/components/table_caption.rb +0 -11
- data/lib/components/table_cell.rb +0 -11
- data/lib/components/table_footer.rb +0 -11
- data/lib/components/table_head.rb +0 -14
- data/lib/components/table_header.rb +0 -11
- data/lib/components/table_row.rb +0 -11
- data/lib/components/tabs.rb +0 -38
- data/lib/components/tabs_content.rb +0 -35
- data/lib/components/tabs_list.rb +0 -23
- data/lib/components/tabs_trigger.rb +0 -45
- data/lib/components/textarea.rb +0 -28
- data/lib/components/toast.rb +0 -101
- data/lib/components/toast_action.rb +0 -39
- data/lib/components/toast_action_to.rb +0 -28
- data/lib/components/toast_content.rb +0 -11
- data/lib/components/toast_description.rb +0 -11
- data/lib/components/toast_title.rb +0 -11
- data/lib/components/tooltip.rb +0 -34
- data/lib/components/tooltip_content.rb +0 -39
- data/lib/components/tooltip_trigger.rb +0 -48
@@ -0,0 +1,173 @@
|
|
1
|
+
/* Functional styling;
|
2
|
+
* These styles are required for noUiSlider to function.
|
3
|
+
* You don't need to change these rules to apply your design.
|
4
|
+
*/
|
5
|
+
.noUi-target,
|
6
|
+
.noUi-target * {
|
7
|
+
-webkit-touch-callout: none;
|
8
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
9
|
+
-webkit-user-select: none;
|
10
|
+
-ms-touch-action: none;
|
11
|
+
touch-action: none;
|
12
|
+
-ms-user-select: none;
|
13
|
+
-moz-user-select: none;
|
14
|
+
user-select: none;
|
15
|
+
-moz-box-sizing: border-box;
|
16
|
+
box-sizing: border-box;
|
17
|
+
}
|
18
|
+
.noUi-target {
|
19
|
+
position: relative;
|
20
|
+
}
|
21
|
+
.noUi-base,
|
22
|
+
.noUi-connects {
|
23
|
+
width: 100%;
|
24
|
+
height: 100%;
|
25
|
+
position: relative;
|
26
|
+
z-index: 1;
|
27
|
+
}
|
28
|
+
/* Wrapper for all connect elements.
|
29
|
+
*/
|
30
|
+
.noUi-connects {
|
31
|
+
overflow: hidden;
|
32
|
+
z-index: 0;
|
33
|
+
}
|
34
|
+
.noUi-connect,
|
35
|
+
.noUi-origin {
|
36
|
+
will-change: transform;
|
37
|
+
position: absolute;
|
38
|
+
z-index: 1;
|
39
|
+
top: 0;
|
40
|
+
right: 0;
|
41
|
+
height: 100%;
|
42
|
+
width: 100%;
|
43
|
+
-ms-transform-origin: 0 0;
|
44
|
+
-webkit-transform-origin: 0 0;
|
45
|
+
-webkit-transform-style: preserve-3d;
|
46
|
+
transform-origin: 0 0;
|
47
|
+
transform-style: flat;
|
48
|
+
}
|
49
|
+
/* Offset direction
|
50
|
+
*/
|
51
|
+
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
|
52
|
+
left: 0;
|
53
|
+
right: auto;
|
54
|
+
}
|
55
|
+
/* Give origins 0 height/width so they don't interfere with clicking the
|
56
|
+
* connect elements.
|
57
|
+
*/
|
58
|
+
.noUi-vertical .noUi-origin {
|
59
|
+
top: -100%;
|
60
|
+
width: 0;
|
61
|
+
}
|
62
|
+
.noUi-horizontal .noUi-origin {
|
63
|
+
height: 0;
|
64
|
+
}
|
65
|
+
.noUi-handle {
|
66
|
+
-webkit-backface-visibility: hidden;
|
67
|
+
backface-visibility: hidden;
|
68
|
+
position: absolute;
|
69
|
+
}
|
70
|
+
.noUi-touch-area {
|
71
|
+
height: 100%;
|
72
|
+
width: 100%;
|
73
|
+
}
|
74
|
+
.noUi-state-tap .noUi-connect,
|
75
|
+
.noUi-state-tap .noUi-origin {
|
76
|
+
-webkit-transition: transform 0.3s;
|
77
|
+
transition: transform 0.3s;
|
78
|
+
}
|
79
|
+
.noUi-state-drag * {
|
80
|
+
cursor: inherit !important;
|
81
|
+
}
|
82
|
+
/* Slider size and handle placement;
|
83
|
+
*/
|
84
|
+
.noUi-horizontal {
|
85
|
+
@apply h-2;
|
86
|
+
}
|
87
|
+
.noUi-horizontal .noUi-handle {
|
88
|
+
right: -17px;
|
89
|
+
top: -6px;
|
90
|
+
}
|
91
|
+
.noUi-vertical {
|
92
|
+
@apply w-2 h-full;
|
93
|
+
}
|
94
|
+
.noUi-vertical .noUi-handle {
|
95
|
+
right: -6px;
|
96
|
+
bottom: -17px;
|
97
|
+
}
|
98
|
+
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
|
99
|
+
left: -17px;
|
100
|
+
right: auto;
|
101
|
+
}
|
102
|
+
/* Styling;
|
103
|
+
* Giving the connect element a border radius causes issues with using transform: scale
|
104
|
+
*/
|
105
|
+
.noUi-target {
|
106
|
+
@apply bg-muted rounded-full;
|
107
|
+
}
|
108
|
+
.noUi-connects {
|
109
|
+
@apply rounded-full;
|
110
|
+
}
|
111
|
+
.noUi-connect {
|
112
|
+
@apply bg-primary;
|
113
|
+
}
|
114
|
+
/* Handles and cursors;
|
115
|
+
*/
|
116
|
+
.noUi-draggable {
|
117
|
+
cursor: ew-resize;
|
118
|
+
}
|
119
|
+
.noUi-vertical .noUi-draggable {
|
120
|
+
cursor: ns-resize;
|
121
|
+
}
|
122
|
+
.noUi-handle {
|
123
|
+
@apply border-primary bg-background ring-ring/50 block rounded-full border shadow-sm;
|
124
|
+
@apply transition-[color,box-shadow] hover:ring-4 focus-visible:ring-4 focus-visible:outline-hidden disabled:pointer-events-none;
|
125
|
+
@apply disabled:opacity-50 size-5 focus:ring-4 focus:ring-ring/50;
|
126
|
+
}
|
127
|
+
|
128
|
+
.noUi-active {
|
129
|
+
@apply ring-4 ring-ring/50;
|
130
|
+
}
|
131
|
+
|
132
|
+
[disabled].noUi-target {
|
133
|
+
@apply opacity-50;
|
134
|
+
}
|
135
|
+
[disabled].noUi-target,
|
136
|
+
[disabled].noUi-handle,
|
137
|
+
[disabled] .noUi-handle {
|
138
|
+
@apply cursor-not-allowed;
|
139
|
+
}
|
140
|
+
.noUi-tooltip {
|
141
|
+
@apply bg-primary text-primary-foreground w-fit rounded-md px-3 py-1.5 text-xs text-balance;
|
142
|
+
@apply whitespace-nowrap overflow-hidden block absolute;
|
143
|
+
}
|
144
|
+
.noUi-tooltip {
|
145
|
+
@apply hidden;
|
146
|
+
}
|
147
|
+
.noUi-active .noUi-tooltip {
|
148
|
+
@apply block;
|
149
|
+
}
|
150
|
+
.noUi-horizontal .noUi-tooltip {
|
151
|
+
-webkit-transform: translate(-50%, 0);
|
152
|
+
transform: translate(-50%, 0);
|
153
|
+
left: 50%;
|
154
|
+
bottom: 120%;
|
155
|
+
}
|
156
|
+
.noUi-vertical .noUi-tooltip {
|
157
|
+
-webkit-transform: translate(0, -50%);
|
158
|
+
transform: translate(0, -50%);
|
159
|
+
top: 50%;
|
160
|
+
right: 120%;
|
161
|
+
}
|
162
|
+
.noUi-horizontal .noUi-origin > .noUi-tooltip {
|
163
|
+
-webkit-transform: translate(50%, 0);
|
164
|
+
transform: translate(50%, 0);
|
165
|
+
left: auto;
|
166
|
+
bottom: 10px;
|
167
|
+
}
|
168
|
+
.noUi-vertical .noUi-origin > .noUi-tooltip {
|
169
|
+
-webkit-transform: translate(0, -18px);
|
170
|
+
transform: translate(0, -18px);
|
171
|
+
top: auto;
|
172
|
+
right: 28px;
|
173
|
+
}
|
@@ -0,0 +1,486 @@
|
|
1
|
+
/**
|
2
|
+
* TailwindCSS v4.0 compatible replacement for `tailwindcss-animate`.
|
3
|
+
*
|
4
|
+
* @author Luca Bosin <https://github.com/Wombosvideo>
|
5
|
+
* @license MIT
|
6
|
+
*/
|
7
|
+
|
8
|
+
:root {
|
9
|
+
/* @property declarations for animation variables, to prevent inheritance */
|
10
|
+
@property --tw-animation-duration {
|
11
|
+
syntax: '*';
|
12
|
+
inherits: false;
|
13
|
+
}
|
14
|
+
|
15
|
+
@property --tw-enter-opacity {
|
16
|
+
syntax: '*';
|
17
|
+
inherits: false;
|
18
|
+
initial-value: 1;
|
19
|
+
}
|
20
|
+
|
21
|
+
@property --tw-enter-rotate {
|
22
|
+
syntax: '*';
|
23
|
+
inherits: false;
|
24
|
+
initial-value: 0;
|
25
|
+
}
|
26
|
+
|
27
|
+
@property --tw-enter-scale {
|
28
|
+
syntax: '*';
|
29
|
+
inherits: false;
|
30
|
+
initial-value: 1;
|
31
|
+
}
|
32
|
+
|
33
|
+
@property --tw-enter-translate-x {
|
34
|
+
syntax: '*';
|
35
|
+
inherits: false;
|
36
|
+
initial-value: 0;
|
37
|
+
}
|
38
|
+
|
39
|
+
@property --tw-enter-translate-y {
|
40
|
+
syntax: '*';
|
41
|
+
inherits: false;
|
42
|
+
initial-value: 0;
|
43
|
+
}
|
44
|
+
|
45
|
+
@property --tw-exit-opacity {
|
46
|
+
syntax: '*';
|
47
|
+
inherits: false;
|
48
|
+
initial-value: 1;
|
49
|
+
}
|
50
|
+
|
51
|
+
@property --tw-exit-rotate {
|
52
|
+
syntax: '*';
|
53
|
+
inherits: false;
|
54
|
+
initial-value: 0;
|
55
|
+
}
|
56
|
+
|
57
|
+
@property --tw-exit-scale {
|
58
|
+
syntax: '*';
|
59
|
+
inherits: false;
|
60
|
+
initial-value: 1;
|
61
|
+
}
|
62
|
+
|
63
|
+
@property --tw-exit-translate-x {
|
64
|
+
syntax: '*';
|
65
|
+
inherits: false;
|
66
|
+
initial-value: 0;
|
67
|
+
}
|
68
|
+
|
69
|
+
@property --tw-exit-translate-y {
|
70
|
+
syntax: '*';
|
71
|
+
inherits: false;
|
72
|
+
initial-value: 0;
|
73
|
+
}
|
74
|
+
}
|
75
|
+
|
76
|
+
@theme inline {
|
77
|
+
/* Predefined values */
|
78
|
+
|
79
|
+
--animation-delay-0: 0s;
|
80
|
+
--animation-delay-75: 75ms;
|
81
|
+
--animation-delay-100: 0.1s;
|
82
|
+
--animation-delay-150: 0.15s;
|
83
|
+
--animation-delay-200: 0.2s;
|
84
|
+
--animation-delay-300: 0.3s;
|
85
|
+
--animation-delay-500: 0.5s;
|
86
|
+
--animation-delay-700: 0.7s;
|
87
|
+
--animation-delay-1000: 1s;
|
88
|
+
|
89
|
+
--animation-repeat-0: 0;
|
90
|
+
--animation-repeat-1: 1;
|
91
|
+
--animation-repeat-infinite: infinite;
|
92
|
+
|
93
|
+
--animation-direction-normal: normal;
|
94
|
+
--animation-direction-reverse: reverse;
|
95
|
+
--animation-direction-alternate: alternate;
|
96
|
+
--animation-direction-alternate-reverse: alternate-reverse;
|
97
|
+
|
98
|
+
--animation-fill-mode-none: none;
|
99
|
+
--animation-fill-mode-forwards: forwards;
|
100
|
+
--animation-fill-mode-backwards: backwards;
|
101
|
+
--animation-fill-mode-both: both;
|
102
|
+
|
103
|
+
--percentage-0: 0;
|
104
|
+
--percentage-5: 0.05;
|
105
|
+
--percentage-10: 0.1;
|
106
|
+
--percentage-15: 0.15;
|
107
|
+
--percentage-20: 0.2;
|
108
|
+
--percentage-25: 0.25;
|
109
|
+
--percentage-30: 0.3;
|
110
|
+
--percentage-35: 0.35;
|
111
|
+
--percentage-40: 0.4;
|
112
|
+
--percentage-45: 0.45;
|
113
|
+
--percentage-50: 0.5;
|
114
|
+
--percentage-55: 0.55;
|
115
|
+
--percentage-60: 0.6;
|
116
|
+
--percentage-65: 0.65;
|
117
|
+
--percentage-70: 0.7;
|
118
|
+
--percentage-75: 0.75;
|
119
|
+
--percentage-80: 0.8;
|
120
|
+
--percentage-85: 0.85;
|
121
|
+
--percentage-90: 0.9;
|
122
|
+
--percentage-95: 0.95;
|
123
|
+
--percentage-100: 1;
|
124
|
+
--percentage-translate-full: 1;
|
125
|
+
|
126
|
+
/* Animations and keyframes */
|
127
|
+
|
128
|
+
--animate-in: enter var(--tw-animation-duration, var(--tw-duration, 150ms))
|
129
|
+
var(--tw-ease, ease);
|
130
|
+
--animate-out: exit var(--tw-animation-duration, var(--tw-duration, 150ms))
|
131
|
+
var(--tw-ease, ease);
|
132
|
+
|
133
|
+
@keyframes enter {
|
134
|
+
from {
|
135
|
+
opacity: var(--tw-enter-opacity, 1);
|
136
|
+
transform: translate3d(
|
137
|
+
var(--tw-enter-translate-x, 0),
|
138
|
+
var(--tw-enter-translate-y, 0),
|
139
|
+
0
|
140
|
+
)
|
141
|
+
scale3d(
|
142
|
+
var(--tw-enter-scale, 1),
|
143
|
+
var(--tw-enter-scale, 1),
|
144
|
+
var(--tw-enter-scale, 1)
|
145
|
+
)
|
146
|
+
rotate(var(--tw-enter-rotate, 0));
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
@keyframes exit {
|
151
|
+
to {
|
152
|
+
opacity: var(--tw-exit-opacity, 1);
|
153
|
+
transform: translate3d(
|
154
|
+
var(--tw-exit-translate-x, 0),
|
155
|
+
var(--tw-exit-translate-y, 0),
|
156
|
+
0
|
157
|
+
)
|
158
|
+
scale3d(
|
159
|
+
var(--tw-exit-scale, 1),
|
160
|
+
var(--tw-exit-scale, 1),
|
161
|
+
var(--tw-exit-scale, 1)
|
162
|
+
)
|
163
|
+
rotate(var(--tw-exit-rotate, 0));
|
164
|
+
}
|
165
|
+
}
|
166
|
+
|
167
|
+
/*
|
168
|
+
* Radix, Bits UI and Reka UI utilize CSS variables to define the height of Accordion and Collapsible
|
169
|
+
* content during open/close animations. The `--radix/bits/reka-accordion-content-height` variables
|
170
|
+
* control the height of Accordion content, while `collapsible` variables are used for Collapsibles.
|
171
|
+
*
|
172
|
+
* The fallback value `auto` is used here, but it depends on the `interpolate-size: allow-keywords`
|
173
|
+
* property, which currently has limited browser support. For more details, see:
|
174
|
+
* <https://developer.mozilla.org/en-US/docs/Web/CSS/interpolate-size>
|
175
|
+
*/
|
176
|
+
|
177
|
+
--animate-accordion-down: accordion-down
|
178
|
+
var(--tw-animation-duration, var(--tw-duration, 200ms)) ease-out;
|
179
|
+
--animate-accordion-up: accordion-up
|
180
|
+
var(--tw-animation-duration, var(--tw-duration, 200ms)) ease-out;
|
181
|
+
--animate-collapsible-down: collapsible-down
|
182
|
+
var(--tw-animation-duration, var(--tw-duration, 200ms)) ease-out;
|
183
|
+
--animate-collapsible-up: collapsible-up
|
184
|
+
var(--tw-animation-duration, var(--tw-duration, 200ms)) ease-out;
|
185
|
+
|
186
|
+
@keyframes accordion-down {
|
187
|
+
from {
|
188
|
+
height: 0;
|
189
|
+
}
|
190
|
+
to {
|
191
|
+
height: var(
|
192
|
+
--radix-accordion-content-height,
|
193
|
+
var(
|
194
|
+
--bits-accordion-content-height,
|
195
|
+
var(--reka-accordion-content-height, auto)
|
196
|
+
)
|
197
|
+
);
|
198
|
+
}
|
199
|
+
}
|
200
|
+
|
201
|
+
@keyframes accordion-up {
|
202
|
+
from {
|
203
|
+
height: var(
|
204
|
+
--radix-accordion-content-height,
|
205
|
+
var(
|
206
|
+
--bits-accordion-content-height,
|
207
|
+
var(--reka-accordion-content-height, auto)
|
208
|
+
)
|
209
|
+
);
|
210
|
+
}
|
211
|
+
to {
|
212
|
+
height: 0;
|
213
|
+
}
|
214
|
+
}
|
215
|
+
|
216
|
+
@keyframes collapsible-down {
|
217
|
+
from {
|
218
|
+
height: 0;
|
219
|
+
}
|
220
|
+
to {
|
221
|
+
height: var(
|
222
|
+
--radix-collapsible-content-height,
|
223
|
+
var(
|
224
|
+
--bits-collapsible-content-height,
|
225
|
+
var(--reka-collapsible-content-height, auto)
|
226
|
+
)
|
227
|
+
);
|
228
|
+
}
|
229
|
+
}
|
230
|
+
|
231
|
+
@keyframes collapsible-up {
|
232
|
+
from {
|
233
|
+
height: var(
|
234
|
+
--radix-collapsible-content-height,
|
235
|
+
var(
|
236
|
+
--bits-collapsible-content-height,
|
237
|
+
var(--reka-collapsible-content-height, auto)
|
238
|
+
)
|
239
|
+
);
|
240
|
+
}
|
241
|
+
to {
|
242
|
+
height: 0;
|
243
|
+
}
|
244
|
+
}
|
245
|
+
|
246
|
+
--animate-caret-blink: caret-blink 1.25s ease-out infinite;
|
247
|
+
|
248
|
+
@keyframes caret-blink {
|
249
|
+
0%,
|
250
|
+
70%,
|
251
|
+
100% {
|
252
|
+
opacity: 1;
|
253
|
+
}
|
254
|
+
20%,
|
255
|
+
50% {
|
256
|
+
opacity: 0;
|
257
|
+
}
|
258
|
+
}
|
259
|
+
}
|
260
|
+
|
261
|
+
/* Utility classes */
|
262
|
+
|
263
|
+
@utility animation-duration-* {
|
264
|
+
--tw-animation-duration: calc(--value(number) * 1ms);
|
265
|
+
--tw-animation-duration: --value(
|
266
|
+
--animation-duration- *,
|
267
|
+
[duration],
|
268
|
+
'initial',
|
269
|
+
[ *]
|
270
|
+
);
|
271
|
+
animation-duration: calc(--value(number) * 1ms);
|
272
|
+
animation-duration: --value(
|
273
|
+
--animation-duration- *,
|
274
|
+
[duration],
|
275
|
+
'initial',
|
276
|
+
[ *]
|
277
|
+
);
|
278
|
+
}
|
279
|
+
|
280
|
+
@utility delay-* {
|
281
|
+
animation-delay: calc(--value(number) * 1ms);
|
282
|
+
animation-delay: --value(--animation-delay- *, [duration], 'initial', [ *]);
|
283
|
+
}
|
284
|
+
|
285
|
+
@utility repeat-* {
|
286
|
+
animation-iteration-count: --value(
|
287
|
+
--animation-repeat- *,
|
288
|
+
number,
|
289
|
+
'initial',
|
290
|
+
[ *]
|
291
|
+
);
|
292
|
+
}
|
293
|
+
|
294
|
+
@utility direction-* {
|
295
|
+
animation-direction: --value(--animation-direction- *, 'initial', [ *]);
|
296
|
+
}
|
297
|
+
|
298
|
+
@utility fill-mode-* {
|
299
|
+
animation-fill-mode: --value(--animation-fill-mode- *, 'initial', [ *]);
|
300
|
+
}
|
301
|
+
|
302
|
+
@utility running {
|
303
|
+
animation-play-state: running;
|
304
|
+
}
|
305
|
+
@utility paused {
|
306
|
+
animation-play-state: paused;
|
307
|
+
}
|
308
|
+
@utility play-state-* {
|
309
|
+
animation-play-state: --value('initial', [ *]);
|
310
|
+
}
|
311
|
+
|
312
|
+
@utility fade-in {
|
313
|
+
--tw-enter-opacity: 0;
|
314
|
+
}
|
315
|
+
@utility fade-in-* {
|
316
|
+
--tw-enter-opacity: calc(--value(number) / 100);
|
317
|
+
--tw-enter-opacity: --value(--percentage- *, [ *]);
|
318
|
+
}
|
319
|
+
|
320
|
+
@utility fade-out {
|
321
|
+
--tw-exit-opacity: 0;
|
322
|
+
}
|
323
|
+
@utility fade-out-* {
|
324
|
+
--tw-exit-opacity: calc(--value(number) / 100);
|
325
|
+
--tw-exit-opacity: --value(--percentage- *, [ *]);
|
326
|
+
}
|
327
|
+
|
328
|
+
@utility zoom-in {
|
329
|
+
--tw-enter-scale: 0;
|
330
|
+
}
|
331
|
+
@utility zoom-in-* {
|
332
|
+
--tw-enter-scale: calc(--value(number) * 1%);
|
333
|
+
--tw-enter-scale: calc(--value(ratio));
|
334
|
+
--tw-enter-scale: --value(--percentage- *, [ *]);
|
335
|
+
}
|
336
|
+
@utility -zoom-in-* {
|
337
|
+
--tw-enter-scale: calc(--value(number) * -1%);
|
338
|
+
--tw-enter-scale: calc(--value(ratio) * -1);
|
339
|
+
--tw-enter-scale: --value(--percentage- *, [ *]);
|
340
|
+
}
|
341
|
+
|
342
|
+
@utility zoom-out {
|
343
|
+
--tw-exit-scale: 0;
|
344
|
+
}
|
345
|
+
@utility zoom-out-* {
|
346
|
+
--tw-exit-scale: calc(--value(number) * 1%);
|
347
|
+
--tw-exit-scale: calc(--value(ratio));
|
348
|
+
--tw-exit-scale: --value(--percentage- *, [ *]);
|
349
|
+
}
|
350
|
+
@utility -zoom-out-* {
|
351
|
+
--tw-exit-scale: calc(--value(number) * -1%);
|
352
|
+
--tw-exit-scale: calc(--value(ratio) * -1);
|
353
|
+
--tw-exit-scale: --value(--percentage- *, [ *]);
|
354
|
+
}
|
355
|
+
|
356
|
+
@utility spin-in {
|
357
|
+
--tw-enter-rotate: 30deg;
|
358
|
+
}
|
359
|
+
@utility spin-in-* {
|
360
|
+
--tw-enter-rotate: calc(--value(number) * 1deg);
|
361
|
+
--tw-enter-rotate: calc(--value(ratio) * 360deg);
|
362
|
+
--tw-enter-rotate: --value(--rotate- *, [ *]);
|
363
|
+
}
|
364
|
+
@utility -spin-in {
|
365
|
+
--tw-enter-rotate: -30deg;
|
366
|
+
}
|
367
|
+
@utility -spin-in-* {
|
368
|
+
--tw-enter-rotate: calc(--value(number) * -1deg);
|
369
|
+
--tw-enter-rotate: calc(--value(ratio) * -360deg);
|
370
|
+
--tw-enter-rotate: --value(--rotate- *, [ *]);
|
371
|
+
}
|
372
|
+
|
373
|
+
@utility spin-out {
|
374
|
+
--tw-exit-rotate: 30deg;
|
375
|
+
}
|
376
|
+
@utility spin-out-* {
|
377
|
+
--tw-exit-rotate: calc(--value(number) * 1deg);
|
378
|
+
--tw-exit-rotate: calc(--value(ratio) * 360deg);
|
379
|
+
--tw-exit-rotate: --value(--rotate- *, [ *]);
|
380
|
+
}
|
381
|
+
@utility -spin-out {
|
382
|
+
--tw-exit-rotate: -30deg;
|
383
|
+
}
|
384
|
+
@utility -spin-out-* {
|
385
|
+
--tw-exit-rotate: calc(--value(number) * -1deg);
|
386
|
+
--tw-exit-rotate: calc(--value(ratio) * -360deg);
|
387
|
+
--tw-exit-rotate: --value(--rotate- *, [ *]);
|
388
|
+
}
|
389
|
+
|
390
|
+
@utility slide-in-from-top {
|
391
|
+
--tw-enter-translate-y: -100%;
|
392
|
+
}
|
393
|
+
@utility slide-in-from-top-* {
|
394
|
+
--tw-enter-translate-y: calc(--value(integer) * var(--spacing) * -1);
|
395
|
+
--tw-enter-translate-y: calc(
|
396
|
+
--value(--percentage- *, --percentage-translate- *) * -100%
|
397
|
+
);
|
398
|
+
--tw-enter-translate-y: calc(--value(ratio) * -100%);
|
399
|
+
--tw-enter-translate-y: calc(
|
400
|
+
--value(--translate- *, [percentage], [length]) * -1
|
401
|
+
);
|
402
|
+
}
|
403
|
+
@utility slide-in-from-bottom {
|
404
|
+
--tw-enter-translate-y: 100%;
|
405
|
+
}
|
406
|
+
@utility slide-in-from-bottom-* {
|
407
|
+
--tw-enter-translate-y: calc(--value(integer) * var(--spacing));
|
408
|
+
--tw-enter-translate-y: calc(
|
409
|
+
--value(--percentage- *, --percentage-translate- *) * 100%
|
410
|
+
);
|
411
|
+
--tw-enter-translate-y: calc(--value(ratio) * 100%);
|
412
|
+
--tw-enter-translate-y: --value(--translate- *, [percentage], [length]);
|
413
|
+
}
|
414
|
+
@utility slide-in-from-left {
|
415
|
+
--tw-enter-translate-x: -100%;
|
416
|
+
}
|
417
|
+
@utility slide-in-from-left-* {
|
418
|
+
--tw-enter-translate-x: calc(--value(integer) * var(--spacing) * -1);
|
419
|
+
--tw-enter-translate-x: calc(
|
420
|
+
--value(--percentage- *, --percentage-translate- *) * -100%
|
421
|
+
);
|
422
|
+
--tw-enter-translate-x: calc(--value(ratio) * 100%);
|
423
|
+
--tw-enter-translate-x: calc(
|
424
|
+
--value(--translate- *, [percentage], [length]) * -1
|
425
|
+
);
|
426
|
+
}
|
427
|
+
@utility slide-in-from-right {
|
428
|
+
--tw-enter-translate-x: 100%;
|
429
|
+
}
|
430
|
+
@utility slide-in-from-right-* {
|
431
|
+
--tw-enter-translate-x: calc(--value(integer) * var(--spacing));
|
432
|
+
--tw-enter-translate-x: calc(
|
433
|
+
--value(--percentage- *, --percentage-translate- *) * 100%
|
434
|
+
);
|
435
|
+
--tw-enter-translate-x: calc(--value(ratio) * 100%);
|
436
|
+
--tw-enter-translate-x: --value(--translate- *, [percentage], [length]);
|
437
|
+
}
|
438
|
+
|
439
|
+
@utility slide-out-to-top {
|
440
|
+
--tw-exit-translate-y: -100%;
|
441
|
+
}
|
442
|
+
@utility slide-out-to-top-* {
|
443
|
+
--tw-exit-translate-y: calc(--value(integer) * var(--spacing) * -1);
|
444
|
+
--tw-exit-translate-y: calc(
|
445
|
+
--value(--percentage- *, --percentage-translate- *) * -100%
|
446
|
+
);
|
447
|
+
--tw-exit-translate-y: calc(--value(ratio) * 100%);
|
448
|
+
--tw-exit-translate-y: calc(
|
449
|
+
--value(--translate- *, [percentage], [length]) * -1
|
450
|
+
);
|
451
|
+
}
|
452
|
+
@utility slide-out-to-bottom {
|
453
|
+
--tw-exit-translate-y: 100%;
|
454
|
+
}
|
455
|
+
@utility slide-out-to-bottom-* {
|
456
|
+
--tw-exit-translate-y: calc(--value(integer) * var(--spacing));
|
457
|
+
--tw-exit-translate-y: calc(
|
458
|
+
--value(--percentage- *, --percentage-translate- *) * 100%
|
459
|
+
);
|
460
|
+
--tw-exit-translate-y: calc(--value(ratio) * 100%);
|
461
|
+
--tw-exit-translate-y: --value(--translate- *, [percentage], [length]);
|
462
|
+
}
|
463
|
+
@utility slide-out-to-left {
|
464
|
+
--tw-exit-translate-x: -100%;
|
465
|
+
}
|
466
|
+
@utility slide-out-to-left-* {
|
467
|
+
--tw-exit-translate-x: calc(--value(integer) * var(--spacing) * -1);
|
468
|
+
--tw-exit-translate-x: calc(
|
469
|
+
--value(--percentage- *, --percentage-translate- *) * -100%
|
470
|
+
);
|
471
|
+
--tw-exit-translate-x: calc(--value(ratio) * 100%);
|
472
|
+
--tw-exit-translate-x: calc(
|
473
|
+
--value(--translate- *, [percentage], [length]) * -1
|
474
|
+
);
|
475
|
+
}
|
476
|
+
@utility slide-out-to-right {
|
477
|
+
--tw-exit-translate-x: 100%;
|
478
|
+
}
|
479
|
+
@utility slide-out-to-right-* {
|
480
|
+
--tw-exit-translate-x: calc(--value(integer) * var(--spacing));
|
481
|
+
--tw-exit-translate-x: calc(
|
482
|
+
--value(--percentage- *, --percentage-translate- *) * 100%
|
483
|
+
);
|
484
|
+
--tw-exit-translate-x: calc(--value(ratio) * 100%);
|
485
|
+
--tw-exit-translate-x: --value(--translate- *, [percentage], [length]);
|
486
|
+
}
|
@@ -1,12 +1,25 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
components_path = File.expand_path("../components", __dir__)
|
4
|
-
components_install_path = Rails.root.join("vendor/shadcn_phlexcomponents")
|
5
|
-
stimulus_controllers_path = File.expand_path("../../app/javascript
|
6
|
-
stimulus_controllers_install_path = Rails.root.join("
|
7
|
-
|
8
|
-
|
3
|
+
components_path = File.expand_path("../shadcn_phlexcomponents/components", __dir__)
|
4
|
+
components_install_path = Rails.root.join("vendor/shadcn_phlexcomponents/components")
|
5
|
+
stimulus_controllers_path = File.expand_path("../../app/javascript", __dir__)
|
6
|
+
stimulus_controllers_install_path = Rails.root.join("vendor/shadcn_phlexcomponents/javascript")
|
7
|
+
css_path = File.expand_path("../../app/stylesheets", __dir__)
|
8
|
+
css_install_path = Rails.root.join("vendor/shadcn_phlexcomponents/stylesheets")
|
9
|
+
initializer_file_path = File.expand_path("../shadcn_phlexcomponents/initializers/shadcn_phlexcomponents.rb", __dir__)
|
10
|
+
initializer_file_install_path = Rails.root.join("config/initializers/shadcn_phlexcomponents.rb")
|
9
11
|
|
10
|
-
directory
|
11
|
-
directory
|
12
|
-
|
12
|
+
say "Running the install command will copy a lot of files to your working directory.", :blue
|
13
|
+
say "Please make sure to commit or stash your existing changes in your working directory.", :blue
|
14
|
+
|
15
|
+
if ENV["ENVIRONMENT"] == "test"
|
16
|
+
directory(components_path, components_install_path)
|
17
|
+
directory(stimulus_controllers_path, stimulus_controllers_install_path)
|
18
|
+
directory(css_path, css_install_path)
|
19
|
+
copy_file(initializer_file_path, initializer_file_install_path)
|
20
|
+
elsif yes?("Do you want to continue? (y/n)")
|
21
|
+
directory(components_path, components_install_path)
|
22
|
+
directory(stimulus_controllers_path, stimulus_controllers_install_path)
|
23
|
+
directory(css_path, css_install_path)
|
24
|
+
copy_file(initializer_file_path, initializer_file_install_path)
|
25
|
+
end
|
@@ -13,11 +13,13 @@ Card = ShadcnPhlexcomponents::Card
|
|
13
13
|
CheckboxGroup = ShadcnPhlexcomponents::CheckboxGroup
|
14
14
|
Checkbox = ShadcnPhlexcomponents::Checkbox
|
15
15
|
Collapsible = ShadcnPhlexcomponents::Collapsible
|
16
|
+
Command = ShadcnPhlexcomponents::Command
|
16
17
|
Combobox = ShadcnPhlexcomponents::Combobox
|
17
18
|
DatePicker = ShadcnPhlexcomponents::DatePicker
|
18
19
|
DateRangePicker = ShadcnPhlexcomponents::DateRangePicker
|
19
20
|
Dialog = ShadcnPhlexcomponents::Dialog
|
20
21
|
DropdownMenu = ShadcnPhlexcomponents::DropdownMenu
|
22
|
+
DropdownMenuSub = ShadcnPhlexcomponents::DropdownMenuSub
|
21
23
|
Form = ShadcnPhlexcomponents::Form
|
22
24
|
HoverCard = ShadcnPhlexcomponents::HoverCard
|
23
25
|
Input = ShadcnPhlexcomponents::Input
|
@@ -31,8 +33,8 @@ RadioGroup = ShadcnPhlexcomponents::RadioGroup
|
|
31
33
|
Select = ShadcnPhlexcomponents::Select
|
32
34
|
Separator = ShadcnPhlexcomponents::Separator
|
33
35
|
Sheet = ShadcnPhlexcomponents::Sheet
|
34
|
-
Sidebar = ShadcnPhlexcomponents::Sidebar
|
35
36
|
Skeleton = ShadcnPhlexcomponents::Skeleton
|
37
|
+
Slider = ShadcnPhlexcomponents::Slider
|
36
38
|
Switch = ShadcnPhlexcomponents::Switch
|
37
39
|
Table = ShadcnPhlexcomponents::Table
|
38
40
|
Tabs = ShadcnPhlexcomponents::Tabs
|