@nattstack/ui 0.0.59 → 0.0.61
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.
|
@@ -21,9 +21,10 @@ interface ButtonInternalProps extends Omit<ComponentProps<"button">, "aria-press
|
|
|
21
21
|
isIconOnly?: boolean;
|
|
22
22
|
isLoading?: boolean;
|
|
23
23
|
isRounded?: boolean;
|
|
24
|
-
size?:
|
|
24
|
+
size?: ButtonSize;
|
|
25
25
|
variant?: "ghost" | "primary" | "secondary";
|
|
26
26
|
}
|
|
27
|
+
type ButtonSize = keyof typeof BUTTON_CLASS_NAME.SIZE;
|
|
27
28
|
type ButtonUnionProps = ButtonIconProps | ButtonProps;
|
|
28
29
|
declare function Button(props: ButtonUnionProps): JSX.Element;
|
|
29
30
|
declare const BUTTON_CLASS_NAME: {
|
|
@@ -101,8 +102,9 @@ interface InputProps extends Omit<ComponentProps<"input">, "aria-pressed" | "dis
|
|
|
101
102
|
isRequired?: boolean;
|
|
102
103
|
isRounded?: boolean;
|
|
103
104
|
isValid?: boolean;
|
|
104
|
-
size?:
|
|
105
|
+
size?: InputSize;
|
|
105
106
|
}
|
|
107
|
+
type InputSize = keyof typeof INPUT_CLASS_NAME.SIZE;
|
|
106
108
|
declare function Input(props: InputProps): JSX.Element;
|
|
107
109
|
declare const INPUT_CLASS_NAME: {
|
|
108
110
|
readonly BASE: string;
|
|
@@ -294,8 +296,9 @@ interface SwitchProps extends Omit<ComponentProps<typeof Switch$1.Root>, "checke
|
|
|
294
296
|
isDisabled?: boolean;
|
|
295
297
|
isReadOnly?: boolean;
|
|
296
298
|
isRequired?: boolean;
|
|
297
|
-
size?:
|
|
299
|
+
size?: SwitchSize;
|
|
298
300
|
}
|
|
301
|
+
type SwitchSize = keyof typeof SWITCH_CLASS_NAME.SIZE;
|
|
299
302
|
declare function Switch(props: SwitchProps): JSX.Element;
|
|
300
303
|
declare const SWITCH_CLASS_NAME: {
|
|
301
304
|
readonly BASE: string;
|
package/dist/components/index.js
CHANGED
|
@@ -11,13 +11,13 @@ import { Drawer, Menu as Menu$1, OTPFieldPreview, Switch as Switch$1, Tabs as Ta
|
|
|
11
11
|
* @returns {string} The normalized string with excess whitespace removed.
|
|
12
12
|
*/
|
|
13
13
|
function normalizeWhitespace(value) {
|
|
14
|
-
return value.replaceAll(/\s+/
|
|
14
|
+
return value.replaceAll(/\s+/gu, " ").trim();
|
|
15
15
|
}
|
|
16
16
|
//#endregion
|
|
17
17
|
//#region src/components/button/button-spinner.module.css
|
|
18
18
|
var button_spinner_module_default = {
|
|
19
|
-
"button_spinner": "button-spinner-
|
|
20
|
-
"spinner": "button-spinner-
|
|
19
|
+
"button_spinner": "button-spinner-module_button_spinner_UApLZa",
|
|
20
|
+
"spinner": "button-spinner-module_spinner_UApLZa"
|
|
21
21
|
};
|
|
22
22
|
//#endregion
|
|
23
23
|
//#region src/components/button/button-spinner.tsx
|
|
@@ -32,20 +32,20 @@ function ButtonSpinner(props) {
|
|
|
32
32
|
//#endregion
|
|
33
33
|
//#region src/components/button/button.module.css
|
|
34
34
|
var button_module_default = {
|
|
35
|
-
"button": "button-
|
|
36
|
-
"button__icon_only": "button-
|
|
37
|
-
"button__rounded_base": "button-
|
|
38
|
-
"button__rounded_full": "button-
|
|
39
|
-
"button__size_32": "button-
|
|
40
|
-
"button__size_36": "button-
|
|
41
|
-
"button__size_40": "button-
|
|
42
|
-
"button__size_44": "button-
|
|
43
|
-
"button__size_48": "button-
|
|
44
|
-
"button__variant_ghost": "button-
|
|
45
|
-
"button__variant_primary": "button-
|
|
46
|
-
"button__variant_secondary": "button-
|
|
47
|
-
"button__width_base": "button-
|
|
48
|
-
"button__width_full": "button-
|
|
35
|
+
"button": "button-module_button_4nLWdW",
|
|
36
|
+
"button__icon_only": "button-module_button__icon_only_4nLWdW",
|
|
37
|
+
"button__rounded_base": "button-module_button__rounded_base_4nLWdW",
|
|
38
|
+
"button__rounded_full": "button-module_button__rounded_full_4nLWdW",
|
|
39
|
+
"button__size_32": "button-module_button__size_32_4nLWdW",
|
|
40
|
+
"button__size_36": "button-module_button__size_36_4nLWdW",
|
|
41
|
+
"button__size_40": "button-module_button__size_40_4nLWdW",
|
|
42
|
+
"button__size_44": "button-module_button__size_44_4nLWdW",
|
|
43
|
+
"button__size_48": "button-module_button__size_48_4nLWdW",
|
|
44
|
+
"button__variant_ghost": "button-module_button__variant_ghost_4nLWdW",
|
|
45
|
+
"button__variant_primary": "button-module_button__variant_primary_4nLWdW",
|
|
46
|
+
"button__variant_secondary": "button-module_button__variant_secondary_4nLWdW",
|
|
47
|
+
"button__width_base": "button-module_button__width_base_4nLWdW",
|
|
48
|
+
"button__width_full": "button-module_button__width_full_4nLWdW"
|
|
49
49
|
};
|
|
50
50
|
//#endregion
|
|
51
51
|
//#region src/components/button/button.tsx
|
|
@@ -116,7 +116,7 @@ function ButtonLink(props) {
|
|
|
116
116
|
}
|
|
117
117
|
//#endregion
|
|
118
118
|
//#region src/components/column/column.module.css
|
|
119
|
-
var column_module_default = { "column": "column-
|
|
119
|
+
var column_module_default = { "column": "column-module_column_CgFaGG" };
|
|
120
120
|
//#endregion
|
|
121
121
|
//#region src/components/column/column.tsx
|
|
122
122
|
function Column(props) {
|
|
@@ -153,7 +153,7 @@ function DialogResponsive(props) {
|
|
|
153
153
|
}
|
|
154
154
|
//#endregion
|
|
155
155
|
//#region src/components/dialog-responsive/dialog-responsive-backdrop.module.css
|
|
156
|
-
var dialog_responsive_backdrop_module_default = { "dialog_responsive_backdrop": "dialog-responsive-backdrop-
|
|
156
|
+
var dialog_responsive_backdrop_module_default = { "dialog_responsive_backdrop": "dialog-responsive-backdrop-module_dialog_responsive_backdrop_-X7FOq" };
|
|
157
157
|
//#endregion
|
|
158
158
|
//#region src/components/dialog-responsive/dialog-responsive-backdrop.tsx
|
|
159
159
|
function DialogResponsiveBackdrop(props) {
|
|
@@ -171,7 +171,7 @@ function DialogResponsiveBackdrop(props) {
|
|
|
171
171
|
const DIALOG_RESPONSIVE_BACKDROP_CLASS_NAME = { BASE: dialog_responsive_backdrop_module_default.dialog_responsive_backdrop };
|
|
172
172
|
//#endregion
|
|
173
173
|
//#region src/components/dialog-responsive/dialog-responsive-bar.module.css
|
|
174
|
-
var dialog_responsive_bar_module_default = { "dialog_responsive_bar": "dialog-responsive-bar-
|
|
174
|
+
var dialog_responsive_bar_module_default = { "dialog_responsive_bar": "dialog-responsive-bar-module_dialog_responsive_bar_iUwUCq" };
|
|
175
175
|
//#endregion
|
|
176
176
|
//#region src/components/dialog-responsive/dialog-responsive-bar.tsx
|
|
177
177
|
function DialogResponsiveBar(props) {
|
|
@@ -188,7 +188,7 @@ function DialogResponsiveBar(props) {
|
|
|
188
188
|
const DIALOG_RESPONSIVE_BAR_CLASS_NAME = { BASE: dialog_responsive_bar_module_default.dialog_responsive_bar };
|
|
189
189
|
//#endregion
|
|
190
190
|
//#region src/components/dialog-responsive/dialog-responsive-portal.module.css
|
|
191
|
-
var dialog_responsive_portal_module_default = { "dialog_responsive_portal": "dialog-responsive-portal-
|
|
191
|
+
var dialog_responsive_portal_module_default = { "dialog_responsive_portal": "dialog-responsive-portal-module_dialog_responsive_portal_keH0Tq" };
|
|
192
192
|
//#endregion
|
|
193
193
|
//#region src/components/dialog-responsive/dialog-responsive-portal.tsx
|
|
194
194
|
function DialogResponsivePortal(props) {
|
|
@@ -206,7 +206,7 @@ function DialogResponsivePortal(props) {
|
|
|
206
206
|
const DIALOG_RESPONSIVE_PORTAL_CLASS_NAME = { BASE: dialog_responsive_portal_module_default.dialog_responsive_portal };
|
|
207
207
|
//#endregion
|
|
208
208
|
//#region src/components/dialog-responsive/dialog-responsive-viewport.module.css
|
|
209
|
-
var dialog_responsive_viewport_module_default = { "dialog_responsive_viewport": "dialog-responsive-viewport-
|
|
209
|
+
var dialog_responsive_viewport_module_default = { "dialog_responsive_viewport": "dialog-responsive-viewport-module_dialog_responsive_viewport_b5ZINa" };
|
|
210
210
|
//#endregion
|
|
211
211
|
//#region src/components/dialog-responsive/dialog-responsive-viewport.tsx
|
|
212
212
|
function DialogResponsiveViewport(props) {
|
|
@@ -224,7 +224,7 @@ function DialogResponsiveViewport(props) {
|
|
|
224
224
|
const DIALOG_RESPONSIVE_VIEWPORT_CLASS_NAME = { BASE: dialog_responsive_viewport_module_default.dialog_responsive_viewport };
|
|
225
225
|
//#endregion
|
|
226
226
|
//#region src/components/dialog-responsive/dialog-responsive-popup.module.css
|
|
227
|
-
var dialog_responsive_popup_module_default = { "dialog_responsive_popup": "dialog-responsive-popup-
|
|
227
|
+
var dialog_responsive_popup_module_default = { "dialog_responsive_popup": "dialog-responsive-popup-module_dialog_responsive_popup_cgfWTq" };
|
|
228
228
|
//#endregion
|
|
229
229
|
//#region src/components/dialog-responsive/dialog-responsive-popup.tsx
|
|
230
230
|
function DialogResponsivePopup(props) {
|
|
@@ -253,14 +253,14 @@ function DialogResponsiveTrigger(props) {
|
|
|
253
253
|
//#endregion
|
|
254
254
|
//#region src/components/input/input.module.css
|
|
255
255
|
var input_module_default = {
|
|
256
|
-
"input": "input-
|
|
257
|
-
"input__rounded_base": "input-
|
|
258
|
-
"input__rounded_full": "input-
|
|
259
|
-
"input__size_32": "input-
|
|
260
|
-
"input__size_36": "input-
|
|
261
|
-
"input__size_40": "input-
|
|
262
|
-
"input__size_44": "input-
|
|
263
|
-
"input__size_48": "input-
|
|
256
|
+
"input": "input-module_input_o34hyq",
|
|
257
|
+
"input__rounded_base": "input-module_input__rounded_base_o34hyq",
|
|
258
|
+
"input__rounded_full": "input-module_input__rounded_full_o34hyq",
|
|
259
|
+
"input__size_32": "input-module_input__size_32_o34hyq",
|
|
260
|
+
"input__size_36": "input-module_input__size_36_o34hyq",
|
|
261
|
+
"input__size_40": "input-module_input__size_40_o34hyq",
|
|
262
|
+
"input__size_44": "input-module_input__size_44_o34hyq",
|
|
263
|
+
"input__size_48": "input-module_input__size_48_o34hyq"
|
|
264
264
|
};
|
|
265
265
|
//#endregion
|
|
266
266
|
//#region src/components/input/input.tsx
|
|
@@ -299,7 +299,7 @@ const INPUT_CLASS_NAME = {
|
|
|
299
299
|
};
|
|
300
300
|
//#endregion
|
|
301
301
|
//#region src/components/label/label.module.css
|
|
302
|
-
var label_module_default = { "label": "label-
|
|
302
|
+
var label_module_default = { "label": "label-module_label_iQZ4sG" };
|
|
303
303
|
//#endregion
|
|
304
304
|
//#region src/components/label/label.tsx
|
|
305
305
|
function Label(props) {
|
|
@@ -331,24 +331,24 @@ const createMenuHandle = Menu$1.createHandle;
|
|
|
331
331
|
//#endregion
|
|
332
332
|
//#region src/components/menu/menu.module.css
|
|
333
333
|
var menu_module_default = {
|
|
334
|
-
"menu_checkbox_item": "menu-
|
|
335
|
-
"menu_content": "menu-
|
|
336
|
-
"menu_content_arrow": "menu-
|
|
337
|
-
"menu_content_arrow__icon": "menu-
|
|
338
|
-
"menu_content_positioner": "menu-
|
|
339
|
-
"menu_group": "menu-
|
|
340
|
-
"menu_group_label": "menu-
|
|
341
|
-
"menu_item": "menu-
|
|
342
|
-
"menu_item__icon": "menu-
|
|
343
|
-
"menu_item__indicator": "menu-
|
|
344
|
-
"menu_item__label": "menu-
|
|
345
|
-
"menu_link_item": "menu-
|
|
346
|
-
"menu_radio_group": "menu-
|
|
347
|
-
"menu_radio_item": "menu-
|
|
348
|
-
"menu_separator": "menu-
|
|
349
|
-
"menu_submenu_trigger": "menu-
|
|
350
|
-
"menu_trigger": "menu-
|
|
351
|
-
"menu_viewport": "menu-
|
|
334
|
+
"menu_checkbox_item": "menu-module_menu_checkbox_item_7pJHya",
|
|
335
|
+
"menu_content": "menu-module_menu_content_7pJHya",
|
|
336
|
+
"menu_content_arrow": "menu-module_menu_content_arrow_7pJHya",
|
|
337
|
+
"menu_content_arrow__icon": "menu-module_menu_content_arrow__icon_7pJHya",
|
|
338
|
+
"menu_content_positioner": "menu-module_menu_content_positioner_7pJHya",
|
|
339
|
+
"menu_group": "menu-module_menu_group_7pJHya",
|
|
340
|
+
"menu_group_label": "menu-module_menu_group_label_7pJHya",
|
|
341
|
+
"menu_item": "menu-module_menu_item_7pJHya",
|
|
342
|
+
"menu_item__icon": "menu-module_menu_item__icon_7pJHya",
|
|
343
|
+
"menu_item__indicator": "menu-module_menu_item__indicator_7pJHya",
|
|
344
|
+
"menu_item__label": "menu-module_menu_item__label_7pJHya",
|
|
345
|
+
"menu_link_item": "menu-module_menu_link_item_7pJHya",
|
|
346
|
+
"menu_radio_group": "menu-module_menu_radio_group_7pJHya",
|
|
347
|
+
"menu_radio_item": "menu-module_menu_radio_item_7pJHya",
|
|
348
|
+
"menu_separator": "menu-module_menu_separator_7pJHya",
|
|
349
|
+
"menu_submenu_trigger": "menu-module_menu_submenu_trigger_7pJHya",
|
|
350
|
+
"menu_trigger": "menu-module_menu_trigger_7pJHya",
|
|
351
|
+
"menu_viewport": "menu-module_menu_viewport_7pJHya"
|
|
352
352
|
};
|
|
353
353
|
//#endregion
|
|
354
354
|
//#region src/components/menu/menu-class-names.ts
|
|
@@ -603,8 +603,8 @@ function MenuViewport(props) {
|
|
|
603
603
|
//#endregion
|
|
604
604
|
//#region src/components/otp-field/otp-field.module.css
|
|
605
605
|
var otp_field_module_default = {
|
|
606
|
-
"otp_field": "otp-field-
|
|
607
|
-
"otp_field__masked": "otp-field-
|
|
606
|
+
"otp_field": "otp-field-module_otp_field_6ylpka",
|
|
607
|
+
"otp_field__masked": "otp-field-module_otp_field__masked_6ylpka"
|
|
608
608
|
};
|
|
609
609
|
//#endregion
|
|
610
610
|
//#region src/components/otp-field/otp-field.tsx
|
|
@@ -628,7 +628,7 @@ const OTP_FIELD_CLASS_NAME = {
|
|
|
628
628
|
};
|
|
629
629
|
//#endregion
|
|
630
630
|
//#region src/components/otp-field/otp-field-input.module.css
|
|
631
|
-
var otp_field_input_module_default = { "otp_field_input": "otp-field-input-
|
|
631
|
+
var otp_field_input_module_default = { "otp_field_input": "otp-field-input-module_otp_field_input_7VaNVa" };
|
|
632
632
|
//#endregion
|
|
633
633
|
//#region src/components/otp-field/otp-field-input.tsx
|
|
634
634
|
function OTPFieldInput(props) {
|
|
@@ -645,7 +645,7 @@ function OTPFieldInput(props) {
|
|
|
645
645
|
const OTP_FIELD_INPUT_CLASS_NAME = { BASE: otp_field_input_module_default.otp_field_input };
|
|
646
646
|
//#endregion
|
|
647
647
|
//#region src/components/row/row.module.css
|
|
648
|
-
var row_module_default = { "row": "row-
|
|
648
|
+
var row_module_default = { "row": "row-module_row_FQp50q" };
|
|
649
649
|
//#endregion
|
|
650
650
|
//#region src/components/row/row.tsx
|
|
651
651
|
function Row(props) {
|
|
@@ -670,7 +670,7 @@ function Row(props) {
|
|
|
670
670
|
const ROW_CLASS_NAME = { BASE: row_module_default.row };
|
|
671
671
|
//#endregion
|
|
672
672
|
//#region src/components/spacer/spacer.module.css
|
|
673
|
-
var spacer_module_default = { "spacer": "spacer-
|
|
673
|
+
var spacer_module_default = { "spacer": "spacer-module_spacer_liXYKW" };
|
|
674
674
|
//#endregion
|
|
675
675
|
//#region src/components/spacer/spacer.tsx
|
|
676
676
|
function Spacer(props) {
|
|
@@ -692,10 +692,10 @@ const SPACER_CLASS_NAME = { BASE: spacer_module_default.spacer };
|
|
|
692
692
|
//#endregion
|
|
693
693
|
//#region src/components/switch/switch.module.css
|
|
694
694
|
var switch_module_default = {
|
|
695
|
-
"switch": "switch-
|
|
696
|
-
"switch__size_18": "switch-
|
|
697
|
-
"switch__size_24": "switch-
|
|
698
|
-
"switch__thumb": "switch-
|
|
695
|
+
"switch": "switch-module_switch_K0d9Sa",
|
|
696
|
+
"switch__size_18": "switch-module_switch__size_18_K0d9Sa",
|
|
697
|
+
"switch__size_24": "switch-module_switch__size_24_K0d9Sa",
|
|
698
|
+
"switch__thumb": "switch-module_switch__thumb_K0d9Sa"
|
|
699
699
|
};
|
|
700
700
|
//#endregion
|
|
701
701
|
//#region src/components/switch/switch.tsx
|
|
@@ -726,7 +726,7 @@ const SWITCH_CLASS_NAME = {
|
|
|
726
726
|
};
|
|
727
727
|
//#endregion
|
|
728
728
|
//#region src/components/tabs-pill/tabs-pill-indicator.module.css
|
|
729
|
-
var tabs_pill_indicator_module_default = { "tabs_pill_indicator": "tabs-pill-indicator-
|
|
729
|
+
var tabs_pill_indicator_module_default = { "tabs_pill_indicator": "tabs-pill-indicator-module_tabs_pill_indicator_PiFilW" };
|
|
730
730
|
//#endregion
|
|
731
731
|
//#region src/components/tabs-pill/tabs-pill-indicator.tsx
|
|
732
732
|
function TabsPillIndicator(props) {
|
|
@@ -745,7 +745,7 @@ function TabsPillIndicator(props) {
|
|
|
745
745
|
const TABS_PILL_INDICATOR_CLASS_NAME = { BASE: tabs_pill_indicator_module_default.tabs_pill_indicator };
|
|
746
746
|
//#endregion
|
|
747
747
|
//#region src/components/tabs-pill/tabs-pill-list.module.css
|
|
748
|
-
var tabs_pill_list_module_default = { "tabs_pill_list": "tabs-pill-list-
|
|
748
|
+
var tabs_pill_list_module_default = { "tabs_pill_list": "tabs-pill-list-module_tabs_pill_list_3ahKPW" };
|
|
749
749
|
//#endregion
|
|
750
750
|
//#region src/components/tabs-pill/tabs-pill-list.tsx
|
|
751
751
|
function TabsPillList(props) {
|
|
@@ -765,9 +765,9 @@ const TABS_PILL_LIST_CLASS_NAME = { BASE: tabs_pill_list_module_default.tabs_pil
|
|
|
765
765
|
//#endregion
|
|
766
766
|
//#region src/components/tabs-pill/tabs-pill-tab.module.css
|
|
767
767
|
var tabs_pill_tab_module_default = {
|
|
768
|
-
"tabs_pill_tab": "tabs-pill-tab-
|
|
769
|
-
"tabs_pill_tab_background": "tabs-pill-tab-
|
|
770
|
-
"tabs_pill_tab_wrapper": "tabs-pill-tab-
|
|
768
|
+
"tabs_pill_tab": "tabs-pill-tab-module_tabs_pill_tab_nxQ-sW",
|
|
769
|
+
"tabs_pill_tab_background": "tabs-pill-tab-module_tabs_pill_tab_background_nxQ-sW",
|
|
770
|
+
"tabs_pill_tab_wrapper": "tabs-pill-tab-module_tabs_pill_tab_wrapper_nxQ-sW"
|
|
771
771
|
};
|
|
772
772
|
//#endregion
|
|
773
773
|
//#region src/components/tabs-pill/tabs-pill-tab.tsx
|
|
@@ -794,7 +794,7 @@ const TABS_PILL_TAB_CLASS_NAME = {
|
|
|
794
794
|
};
|
|
795
795
|
//#endregion
|
|
796
796
|
//#region src/components/tabs-segmented/tabs-segmented-indicator.module.css
|
|
797
|
-
var tabs_segmented_indicator_module_default = { "tabs_segmented_indicator": "tabs-segmented-indicator-
|
|
797
|
+
var tabs_segmented_indicator_module_default = { "tabs_segmented_indicator": "tabs-segmented-indicator-module_tabs_segmented_indicator_3DY8Ta" };
|
|
798
798
|
//#endregion
|
|
799
799
|
//#region src/components/tabs-segmented/tabs-segmented-indicator.tsx
|
|
800
800
|
function TabsSegmentedIndicator(props) {
|
|
@@ -813,7 +813,7 @@ function TabsSegmentedIndicator(props) {
|
|
|
813
813
|
const TABS_SEGMENTED_INDICATOR_CLASS_NAME = { BASE: tabs_segmented_indicator_module_default.tabs_segmented_indicator };
|
|
814
814
|
//#endregion
|
|
815
815
|
//#region src/components/tabs-segmented/tabs-segmented-list.module.css
|
|
816
|
-
var tabs_segmented_list_module_default = { "tabs_segmented_list": "tabs-segmented-list-
|
|
816
|
+
var tabs_segmented_list_module_default = { "tabs_segmented_list": "tabs-segmented-list-module_tabs_segmented_list_wG8CPq" };
|
|
817
817
|
//#endregion
|
|
818
818
|
//#region src/components/tabs-segmented/tabs-segmented-list.tsx
|
|
819
819
|
function TabsSegmentedList(props) {
|
|
@@ -832,7 +832,7 @@ function TabsSegmentedList(props) {
|
|
|
832
832
|
const TABS_SEGMENTED_LIST_CLASS_NAME = { BASE: tabs_segmented_list_module_default.tabs_segmented_list };
|
|
833
833
|
//#endregion
|
|
834
834
|
//#region src/components/tabs-segmented/tabs-segmented-tab.module.css
|
|
835
|
-
var tabs_segmented_tab_module_default = { "tabs_segmented_tab": "tabs-segmented-tab-
|
|
835
|
+
var tabs_segmented_tab_module_default = { "tabs_segmented_tab": "tabs-segmented-tab-module_tabs_segmented_tab_du-IJG" };
|
|
836
836
|
//#endregion
|
|
837
837
|
//#region src/components/tabs-segmented/tabs-segmented-tab.tsx
|
|
838
838
|
function TabsSegmentedTab(props) {
|
|
@@ -851,7 +851,7 @@ function TabsSegmentedTab(props) {
|
|
|
851
851
|
const TABS_SEGMENTED_TAB_CLASS_NAME = { BASE: tabs_segmented_tab_module_default.tabs_segmented_tab };
|
|
852
852
|
//#endregion
|
|
853
853
|
//#region src/components/tabs-underline/tabs-underline-indicator.module.css
|
|
854
|
-
var tabs_underline_indicator_module_default = { "tabs_underline_indicator": "tabs-underline-indicator-
|
|
854
|
+
var tabs_underline_indicator_module_default = { "tabs_underline_indicator": "tabs-underline-indicator-module_tabs_underline_indicator_Gl55Ba" };
|
|
855
855
|
//#endregion
|
|
856
856
|
//#region src/components/tabs-underline/tabs-underline-indicator.tsx
|
|
857
857
|
function TabsUnderlineIndicator(props) {
|
|
@@ -870,7 +870,7 @@ function TabsUnderlineIndicator(props) {
|
|
|
870
870
|
const TABS_UNDERLINE_INDICATOR_CLASS_NAME = { BASE: tabs_underline_indicator_module_default.tabs_underline_indicator };
|
|
871
871
|
//#endregion
|
|
872
872
|
//#region src/components/tabs-underline/tabs-underline-list.module.css
|
|
873
|
-
var tabs_underline_list_module_default = { "tabs_underline_list": "tabs-underline-list-
|
|
873
|
+
var tabs_underline_list_module_default = { "tabs_underline_list": "tabs-underline-list-module_tabs_underline_list_3MpMpG" };
|
|
874
874
|
//#endregion
|
|
875
875
|
//#region src/components/tabs-underline/tabs-underline-list.tsx
|
|
876
876
|
function TabsUnderlineList(props) {
|
|
@@ -889,7 +889,7 @@ function TabsUnderlineList(props) {
|
|
|
889
889
|
const TABS_UNDERLINE_LIST_CLASS_NAME = { BASE: tabs_underline_list_module_default.tabs_underline_list };
|
|
890
890
|
//#endregion
|
|
891
891
|
//#region src/components/tabs-underline/tabs-underline-tab.module.css
|
|
892
|
-
var tabs_underline_tab_module_default = { "tabs_underline_tab": "tabs-underline-tab-
|
|
892
|
+
var tabs_underline_tab_module_default = { "tabs_underline_tab": "tabs-underline-tab-module_tabs_underline_tab_lcqfQW" };
|
|
893
893
|
//#endregion
|
|
894
894
|
//#region src/components/tabs-underline/tabs-underline-tab.tsx
|
|
895
895
|
function TabsUnderlineTab(props) {
|
|
@@ -908,7 +908,7 @@ function TabsUnderlineTab(props) {
|
|
|
908
908
|
const TABS_UNDERLINE_TAB_CLASS_NAME = { BASE: tabs_underline_tab_module_default.tabs_underline_tab };
|
|
909
909
|
//#endregion
|
|
910
910
|
//#region src/components/tabs/tabs.module.css
|
|
911
|
-
var tabs_module_default = { "tabs": "tabs-
|
|
911
|
+
var tabs_module_default = { "tabs": "tabs-module_tabs__1Jl1W" };
|
|
912
912
|
//#endregion
|
|
913
913
|
//#region src/components/tabs/tabs.tsx
|
|
914
914
|
function Tabs(props) {
|
|
@@ -926,7 +926,7 @@ function Tabs(props) {
|
|
|
926
926
|
const TABS_CLASS_NAME = { BASE: tabs_module_default.tabs };
|
|
927
927
|
//#endregion
|
|
928
928
|
//#region src/components/tabs/tabs-panel.module.css
|
|
929
|
-
var tabs_panel_module_default = { "tabs_panel": "tabs-panel-
|
|
929
|
+
var tabs_panel_module_default = { "tabs_panel": "tabs-panel-module_tabs_panel_AXj2FW" };
|
|
930
930
|
//#endregion
|
|
931
931
|
//#region src/components/tabs/tabs-panel.tsx
|
|
932
932
|
function TabsPanel(props) {
|
|
@@ -944,7 +944,7 @@ function TabsPanel(props) {
|
|
|
944
944
|
const TABS_PANEL_CLASS_NAME = { BASE: tabs_panel_module_default.tabs_panel };
|
|
945
945
|
//#endregion
|
|
946
946
|
//#region src/components/textarea/textarea.module.css
|
|
947
|
-
var textarea_module_default = { "textarea": "textarea-
|
|
947
|
+
var textarea_module_default = { "textarea": "textarea-module_textarea_jT_oOq" };
|
|
948
948
|
//#endregion
|
|
949
949
|
//#region src/components/textarea/textarea.tsx
|
|
950
950
|
function Textarea(props) {
|
|
@@ -988,8 +988,8 @@ function Tooltip(props) {
|
|
|
988
988
|
//#endregion
|
|
989
989
|
//#region src/components/tooltip/tooltip-popup.module.css
|
|
990
990
|
var tooltip_popup_module_default = {
|
|
991
|
-
"tooltip_popup": "tooltip-popup-
|
|
992
|
-
"tooltip_popup_portal": "tooltip-popup-
|
|
991
|
+
"tooltip_popup": "tooltip-popup-module_tooltip_popup_SLo08q",
|
|
992
|
+
"tooltip_popup_portal": "tooltip-popup-module_tooltip_popup_portal_SLo08q"
|
|
993
993
|
};
|
|
994
994
|
//#endregion
|
|
995
995
|
//#region src/components/tooltip/tooltip-popup.tsx
|