@nattstack/ui 0.0.31 → 0.0.32

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.
@@ -27,27 +27,27 @@ interface ButtonInternalProps extends Omit<ComponentProps<"button">, "aria-press
27
27
  type ButtonUnionProps = ButtonIconProps | ButtonProps;
28
28
  declare function Button(props: ButtonUnionProps): JSX.Element;
29
29
  declare const BUTTON_CLASS_NAME: {
30
- readonly BASE: any;
31
- readonly ICON_ONLY: any;
30
+ readonly BASE: string;
31
+ readonly ICON_ONLY: string;
32
32
  readonly ROUNDED: {
33
- readonly BASE: any;
34
- readonly FULL: any;
33
+ readonly BASE: string;
34
+ readonly FULL: string;
35
35
  };
36
36
  readonly SIZE: {
37
- readonly 32: any;
38
- readonly 36: any;
39
- readonly 40: any;
40
- readonly 44: any;
41
- readonly 48: any;
37
+ readonly 32: string;
38
+ readonly 36: string;
39
+ readonly 40: string;
40
+ readonly 44: string;
41
+ readonly 48: string;
42
42
  };
43
43
  readonly VARIANT: {
44
- readonly GHOST: any;
45
- readonly PRIMARY: any;
46
- readonly SECONDARY: any;
44
+ readonly GHOST: string;
45
+ readonly PRIMARY: string;
46
+ readonly SECONDARY: string;
47
47
  };
48
48
  readonly WIDTH: {
49
- readonly BASE: any;
50
- readonly FULL: any;
49
+ readonly BASE: string;
50
+ readonly FULL: string;
51
51
  };
52
52
  };
53
53
  //#endregion
@@ -71,7 +71,7 @@ interface ColumnInternalProps {
71
71
  }
72
72
  declare function Column(props: ColumnProps): JSX.Element;
73
73
  declare const COLUMN_CLASS_NAME: {
74
- readonly BASE: any;
74
+ readonly BASE: string;
75
75
  };
76
76
  //#endregion
77
77
  //#region src/components/dialog-responsive/dialog-responsive.d.ts
@@ -85,7 +85,7 @@ declare function DialogResponsive(props: DialogResponsiveProps): JSX.Element;
85
85
  interface DialogResponsivePopupProps extends Drawer.Popup.Props {}
86
86
  declare function DialogResponsivePopup(props: DialogResponsivePopupProps): JSX.Element;
87
87
  declare const DIALOG_RESPONSIVE_POPUP_CLASS_NAME: {
88
- readonly BASE: any;
88
+ readonly BASE: string;
89
89
  };
90
90
  //#endregion
91
91
  //#region src/components/dialog-responsive/dialog-responsive-trigger.d.ts
@@ -105,17 +105,17 @@ interface InputProps extends Omit<ComponentProps<"input">, "aria-pressed" | "dis
105
105
  }
106
106
  declare function Input(props: InputProps): JSX.Element;
107
107
  declare const INPUT_CLASS_NAME: {
108
- readonly BASE: any;
108
+ readonly BASE: string;
109
109
  readonly ROUNDED: {
110
- readonly BASE: any;
111
- readonly FULL: any;
110
+ readonly BASE: string;
111
+ readonly FULL: string;
112
112
  };
113
113
  readonly SIZE: {
114
- readonly 32: any;
115
- readonly 36: any;
116
- readonly 40: any;
117
- readonly 44: any;
118
- readonly 48: any;
114
+ readonly 32: string;
115
+ readonly 36: string;
116
+ readonly 40: string;
117
+ readonly 44: string;
118
+ readonly 48: string;
119
119
  };
120
120
  };
121
121
  //#endregion
@@ -123,7 +123,7 @@ declare const INPUT_CLASS_NAME: {
123
123
  interface LabelProps extends ComponentProps<"label"> {}
124
124
  declare function Label(props: LabelProps): JSX.Element;
125
125
  declare const LABEL_CLASS_NAME: {
126
- readonly BASE: any;
126
+ readonly BASE: string;
127
127
  };
128
128
  //#endregion
129
129
  //#region src/components/row/row.d.ts
@@ -139,7 +139,7 @@ interface RowInternalProps {
139
139
  }
140
140
  declare function Row(props: RowProps): JSX.Element;
141
141
  declare const ROW_CLASS_NAME: {
142
- readonly BASE: any;
142
+ readonly BASE: string;
143
143
  };
144
144
  //#endregion
145
145
  //#region src/components/spacer/spacer.d.ts
@@ -149,7 +149,7 @@ interface SpacerProps extends Omit<ComponentProps<"div">, "children"> {
149
149
  }
150
150
  declare function Spacer(props: SpacerProps): JSX.Element;
151
151
  declare const SPACER_CLASS_NAME: {
152
- readonly BASE: any;
152
+ readonly BASE: string;
153
153
  };
154
154
  //#endregion
155
155
  //#region src/components/switch/switch.d.ts
@@ -163,10 +163,10 @@ interface SwitchProps extends Omit<ComponentProps<typeof Switch$1.Root>, "checke
163
163
  }
164
164
  declare function Switch(props: SwitchProps): JSX.Element;
165
165
  declare const SWITCH_CLASS_NAME: {
166
- readonly BASE: any;
166
+ readonly BASE: string;
167
167
  readonly SIZE: {
168
- readonly 18: any;
169
- readonly 24: any;
168
+ readonly 18: string;
169
+ readonly 24: string;
170
170
  };
171
171
  };
172
172
  //#endregion
@@ -174,7 +174,7 @@ declare const SWITCH_CLASS_NAME: {
174
174
  interface TabsPillListProps extends Tabs$1.List.Props {}
175
175
  declare function TabsPillList(props: TabsPillListProps): JSX.Element;
176
176
  declare const TABS_PILL_LIST_CLASS_NAME: {
177
- readonly BASE: any;
177
+ readonly BASE: string;
178
178
  };
179
179
  //#endregion
180
180
  //#region src/components/tabs-pill/tabs-pill-tab.d.ts
@@ -183,16 +183,16 @@ interface TabsPillTabProps extends Omit<Tabs$1.Tab.Props, "nativeButton"> {
183
183
  }
184
184
  declare function TabsPillTab(props: TabsPillTabProps): JSX.Element;
185
185
  declare const TABS_PILL_TAB_CLASS_NAME: {
186
- readonly BACKGROUND: any;
187
- readonly BASE: any;
188
- readonly WRAPPER: any;
186
+ readonly BACKGROUND: string;
187
+ readonly BASE: string;
188
+ readonly WRAPPER: string;
189
189
  };
190
190
  //#endregion
191
191
  //#region src/components/tabs-segmented/tabs-segmented-list.d.ts
192
192
  interface TabsSegmentedListProps extends Tabs$1.List.Props {}
193
193
  declare function TabsSegmentedList(props: TabsSegmentedListProps): JSX.Element;
194
194
  declare const TABS_SEGMENTED_LIST_CLASS_NAME: {
195
- readonly BASE: any;
195
+ readonly BASE: string;
196
196
  };
197
197
  //#endregion
198
198
  //#region src/components/tabs-segmented/tabs-segmented-tab.d.ts
@@ -201,14 +201,14 @@ interface TabsSegmentedTabProps extends Omit<Tabs$1.Tab.Props, "nativeButton"> {
201
201
  }
202
202
  declare function TabsSegmentedTab(props: TabsSegmentedTabProps): JSX.Element;
203
203
  declare const TABS_SEGMENTED_TAB_CLASS_NAME: {
204
- readonly BASE: any;
204
+ readonly BASE: string;
205
205
  };
206
206
  //#endregion
207
207
  //#region src/components/tabs-underline/tabs-underline-list.d.ts
208
208
  interface TabsUnderlineListProps extends Tabs$1.List.Props {}
209
209
  declare function TabsUnderlineList(props: TabsUnderlineListProps): JSX.Element;
210
210
  declare const TABS_UNDERLINE_LIST_CLASS_NAME: {
211
- readonly BASE: any;
211
+ readonly BASE: string;
212
212
  };
213
213
  //#endregion
214
214
  //#region src/components/tabs-underline/tabs-underline-tab.d.ts
@@ -217,21 +217,21 @@ interface TabsUnderlineTabProps extends Omit<Tabs$1.Tab.Props, "nativeButton"> {
217
217
  }
218
218
  declare function TabsUnderlineTab(props: TabsUnderlineTabProps): JSX.Element;
219
219
  declare const TABS_UNDERLINE_TAB_CLASS_NAME: {
220
- readonly BASE: any;
220
+ readonly BASE: string;
221
221
  };
222
222
  //#endregion
223
223
  //#region src/components/tabs/tabs.d.ts
224
224
  interface TabsProps extends Tabs$1.Root.Props {}
225
225
  declare function Tabs(props: TabsProps): JSX.Element;
226
226
  declare const TABS_CLASS_NAME: {
227
- readonly BASE: any;
227
+ readonly BASE: string;
228
228
  };
229
229
  //#endregion
230
230
  //#region src/components/tabs/tabs-panel.d.ts
231
231
  interface TabsPanelProps extends Tabs$1.Panel.Props {}
232
232
  declare function TabsPanel(props: TabsPanelProps): JSX.Element;
233
233
  declare const TABS_PANEL_CLASS_NAME: {
234
- readonly BASE: any;
234
+ readonly BASE: string;
235
235
  };
236
236
  //#endregion
237
237
  //#region src/components/textarea/textarea.d.ts
@@ -246,11 +246,11 @@ interface TextareaProps extends Omit<ComponentProps<"textarea">, "aria-pressed"
246
246
  }
247
247
  declare function Textarea(props: TextareaProps): JSX.Element;
248
248
  declare const TEXTAREA_CLASS_NAME: {
249
- readonly BASE: any;
250
- readonly INPUT: any;
249
+ readonly BASE: string;
250
+ readonly INPUT: string;
251
251
  readonly ROUNDED: {
252
- readonly BASE: any;
253
- readonly FULL: any;
252
+ readonly BASE: string;
253
+ readonly FULL: string;
254
254
  };
255
255
  };
256
256
  //#endregion
@@ -264,7 +264,7 @@ declare function Tooltip(props: TooltipProps): JSX.Element;
264
264
  interface TooltipContentProps extends Pick<Tooltip$1.Positioner.Props, "side" | "sideOffset">, Tooltip$1.Popup.Props {}
265
265
  declare function TooltipContent(props: TooltipContentProps): JSX.Element;
266
266
  declare const TOOLTIP_CONTENT_CLASS_NAME: {
267
- readonly BASE: any;
267
+ readonly BASE: string;
268
268
  };
269
269
  //#endregion
270
270
  //#region src/components/tooltip/tooltip-provider.d.ts
@@ -2,10 +2,22 @@ import './style.css';
2
2
  import { createElement } from "react";
3
3
  import { jsx, jsxs } from "react/jsx-runtime";
4
4
  import { Drawer, Switch as Switch$1, Tabs as Tabs$1, Tooltip as Tooltip$1 } from "@base-ui/react";
5
+ //#region src/utils/normalize-whitespace.ts
6
+ /**
7
+ * Collapses consecutive whitespace characters into single spaces and trims
8
+ * leading and trailing whitespace.
9
+ *
10
+ * @param {string} value - The string to normalize.
11
+ * @returns {string} The normalized string with excess whitespace removed.
12
+ */
13
+ function normalizeWhitespace(value) {
14
+ return value.replaceAll(/\s+/g, " ").trim();
15
+ }
16
+ //#endregion
5
17
  //#region src/components/button/button-spinner.module.css
6
18
  var button_spinner_module_default = {
7
- "button_spinner": "Eu3QVW_button_spinner",
8
- "spinner": "Eu3QVW_spinner"
19
+ "button_spinner": "button-spinner-module_button_spinner_Eu3QVW",
20
+ "spinner": "button-spinner-module_spinner_Eu3QVW"
9
21
  };
10
22
  //#endregion
11
23
  //#region src/components/button/button-spinner.tsx
@@ -18,34 +30,22 @@ function ButtonSpinner(props) {
18
30
  });
19
31
  }
20
32
  //#endregion
21
- //#region src/utils/normalize-whitespace.ts
22
- /**
23
- * Collapses consecutive whitespace characters into single spaces and trims
24
- * leading and trailing whitespace.
25
- *
26
- * @param {string} value - The string to normalize.
27
- * @returns {string} The normalized string with excess whitespace removed.
28
- */
29
- function normalizeWhitespace(value) {
30
- return value.replaceAll(/\s+/g, " ").trim();
31
- }
32
- //#endregion
33
33
  //#region src/components/button/button.module.css
34
34
  var button_module_default = {
35
- "button": "_9qaCYq_button",
36
- "button__icon_only": "_9qaCYq_button__icon_only",
37
- "button__rounded_base": "_9qaCYq_button__rounded_base",
38
- "button__rounded_full": "_9qaCYq_button__rounded_full",
39
- "button__size_32": "_9qaCYq_button__size_32",
40
- "button__size_36": "_9qaCYq_button__size_36",
41
- "button__size_40": "_9qaCYq_button__size_40",
42
- "button__size_44": "_9qaCYq_button__size_44",
43
- "button__size_48": "_9qaCYq_button__size_48",
44
- "button__variant_ghost": "_9qaCYq_button__variant_ghost",
45
- "button__variant_primary": "_9qaCYq_button__variant_primary",
46
- "button__variant_secondary": "_9qaCYq_button__variant_secondary",
47
- "button__width_base": "_9qaCYq_button__width_base",
48
- "button__width_full": "_9qaCYq_button__width_full"
35
+ "button": "button-module_button_9qaCYq",
36
+ "button__icon_only": "button-module_button__icon_only_9qaCYq",
37
+ "button__rounded_base": "button-module_button__rounded_base_9qaCYq",
38
+ "button__rounded_full": "button-module_button__rounded_full_9qaCYq",
39
+ "button__size_32": "button-module_button__size_32_9qaCYq",
40
+ "button__size_36": "button-module_button__size_36_9qaCYq",
41
+ "button__size_40": "button-module_button__size_40_9qaCYq",
42
+ "button__size_44": "button-module_button__size_44_9qaCYq",
43
+ "button__size_48": "button-module_button__size_48_9qaCYq",
44
+ "button__variant_ghost": "button-module_button__variant_ghost_9qaCYq",
45
+ "button__variant_primary": "button-module_button__variant_primary_9qaCYq",
46
+ "button__variant_secondary": "button-module_button__variant_secondary_9qaCYq",
47
+ "button__width_base": "button-module_button__width_base_9qaCYq",
48
+ "button__width_full": "button-module_button__width_full_9qaCYq"
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": "_1ANk3W_column" };
119
+ var column_module_default = { "column": "column-module_column_1ANk3W" };
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": "eSc3Ma_dialog_responsive_backdrop" };
156
+ var dialog_responsive_backdrop_module_default = { "dialog_responsive_backdrop": "dialog-responsive-backdrop-module_dialog_responsive_backdrop_eSc3Ma" };
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": "jTrvVq_dialog_responsive_bar" };
174
+ var dialog_responsive_bar_module_default = { "dialog_responsive_bar": "dialog-responsive-bar-module_dialog_responsive_bar_jTrvVq" };
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": "_5Oatkq_dialog_responsive_portal" };
191
+ var dialog_responsive_portal_module_default = { "dialog_responsive_portal": "dialog-responsive-portal-module_dialog_responsive_portal_5Oatkq" };
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": "xMwQyW_dialog_responsive_viewport" };
209
+ var dialog_responsive_viewport_module_default = { "dialog_responsive_viewport": "dialog-responsive-viewport-module_dialog_responsive_viewport_xMwQyW" };
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": "_G8xla_dialog_responsive_popup" };
227
+ var dialog_responsive_popup_module_default = { "dialog_responsive_popup": "dialog-responsive-popup-module_dialog_responsive_popup__G8xla" };
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": "dWvcHW_input",
257
- "input__rounded_base": "dWvcHW_input__rounded_base",
258
- "input__rounded_full": "dWvcHW_input__rounded_full",
259
- "input__size_32": "dWvcHW_input__size_32",
260
- "input__size_36": "dWvcHW_input__size_36",
261
- "input__size_40": "dWvcHW_input__size_40",
262
- "input__size_44": "dWvcHW_input__size_44",
263
- "input__size_48": "dWvcHW_input__size_48"
256
+ "input": "input-module_input_dWvcHW",
257
+ "input__rounded_base": "input-module_input__rounded_base_dWvcHW",
258
+ "input__rounded_full": "input-module_input__rounded_full_dWvcHW",
259
+ "input__size_32": "input-module_input__size_32_dWvcHW",
260
+ "input__size_36": "input-module_input__size_36_dWvcHW",
261
+ "input__size_40": "input-module_input__size_40_dWvcHW",
262
+ "input__size_44": "input-module_input__size_44_dWvcHW",
263
+ "input__size_48": "input-module_input__size_48_dWvcHW"
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": "x4PeXa_label" };
302
+ var label_module_default = { "label": "label-module_label_x4PeXa" };
303
303
  //#endregion
304
304
  //#region src/components/label/label.tsx
305
305
  function Label(props) {
@@ -317,7 +317,7 @@ function Label(props) {
317
317
  const LABEL_CLASS_NAME = { BASE: label_module_default.label };
318
318
  //#endregion
319
319
  //#region src/components/row/row.module.css
320
- var row_module_default = { "row": "sYCFIW_row" };
320
+ var row_module_default = { "row": "row-module_row_sYCFIW" };
321
321
  //#endregion
322
322
  //#region src/components/row/row.tsx
323
323
  function Row(props) {
@@ -342,7 +342,7 @@ function Row(props) {
342
342
  const ROW_CLASS_NAME = { BASE: row_module_default.row };
343
343
  //#endregion
344
344
  //#region src/components/spacer/spacer.module.css
345
- var spacer_module_default = { "spacer": "nFLKVq_spacer" };
345
+ var spacer_module_default = { "spacer": "spacer-module_spacer_nFLKVq" };
346
346
  //#endregion
347
347
  //#region src/components/spacer/spacer.tsx
348
348
  function Spacer(props) {
@@ -364,10 +364,10 @@ const SPACER_CLASS_NAME = { BASE: spacer_module_default.spacer };
364
364
  //#endregion
365
365
  //#region src/components/switch/switch.module.css
366
366
  var switch_module_default = {
367
- "switch": "R3gLLG_switch",
368
- "switch__size_18": "R3gLLG_switch__size_18",
369
- "switch__size_24": "R3gLLG_switch__size_24",
370
- "switch__thumb": "R3gLLG_switch__thumb"
367
+ "switch": "switch-module_switch_R3gLLG",
368
+ "switch__size_18": "switch-module_switch__size_18_R3gLLG",
369
+ "switch__size_24": "switch-module_switch__size_24_R3gLLG",
370
+ "switch__thumb": "switch-module_switch__thumb_R3gLLG"
371
371
  };
372
372
  //#endregion
373
373
  //#region src/components/switch/switch.tsx
@@ -398,7 +398,7 @@ const SWITCH_CLASS_NAME = {
398
398
  };
399
399
  //#endregion
400
400
  //#region src/components/tabs-pill/tabs-pill-indicator.module.css
401
- var tabs_pill_indicator_module_default = { "tabs_pill_indicator": "Dg56ja_tabs_pill_indicator" };
401
+ var tabs_pill_indicator_module_default = { "tabs_pill_indicator": "tabs-pill-indicator-module_tabs_pill_indicator_Dg56ja" };
402
402
  //#endregion
403
403
  //#region src/components/tabs-pill/tabs-pill-indicator.tsx
404
404
  function TabsPillIndicator(props) {
@@ -417,7 +417,7 @@ function TabsPillIndicator(props) {
417
417
  const TABS_PILL_INDICATOR_CLASS_NAME = { BASE: tabs_pill_indicator_module_default.tabs_pill_indicator };
418
418
  //#endregion
419
419
  //#region src/components/tabs-pill/tabs-pill-list.module.css
420
- var tabs_pill_list_module_default = { "tabs_pill_list": "I12aAq_tabs_pill_list" };
420
+ var tabs_pill_list_module_default = { "tabs_pill_list": "tabs-pill-list-module_tabs_pill_list_I12aAq" };
421
421
  //#endregion
422
422
  //#region src/components/tabs-pill/tabs-pill-list.tsx
423
423
  function TabsPillList(props) {
@@ -437,9 +437,9 @@ const TABS_PILL_LIST_CLASS_NAME = { BASE: tabs_pill_list_module_default.tabs_pil
437
437
  //#endregion
438
438
  //#region src/components/tabs-pill/tabs-pill-tab.module.css
439
439
  var tabs_pill_tab_module_default = {
440
- "tabs_pill_tab": "ABaxVG_tabs_pill_tab",
441
- "tabs_pill_tab_background": "ABaxVG_tabs_pill_tab_background",
442
- "tabs_pill_tab_wrapper": "ABaxVG_tabs_pill_tab_wrapper"
440
+ "tabs_pill_tab": "tabs-pill-tab-module_tabs_pill_tab_ABaxVG",
441
+ "tabs_pill_tab_background": "tabs-pill-tab-module_tabs_pill_tab_background_ABaxVG",
442
+ "tabs_pill_tab_wrapper": "tabs-pill-tab-module_tabs_pill_tab_wrapper_ABaxVG"
443
443
  };
444
444
  //#endregion
445
445
  //#region src/components/tabs-pill/tabs-pill-tab.tsx
@@ -466,7 +466,7 @@ const TABS_PILL_TAB_CLASS_NAME = {
466
466
  };
467
467
  //#endregion
468
468
  //#region src/components/tabs-segmented/tabs-segmented-indicator.module.css
469
- var tabs_segmented_indicator_module_default = { "tabs_segmented_indicator": "wVi_Qq_tabs_segmented_indicator" };
469
+ var tabs_segmented_indicator_module_default = { "tabs_segmented_indicator": "tabs-segmented-indicator-module_tabs_segmented_indicator_wVi_Qq" };
470
470
  //#endregion
471
471
  //#region src/components/tabs-segmented/tabs-segmented-indicator.tsx
472
472
  function TabsSegmentedIndicator(props) {
@@ -485,7 +485,7 @@ function TabsSegmentedIndicator(props) {
485
485
  const TABS_SEGMENTED_INDICATOR_CLASS_NAME = { BASE: tabs_segmented_indicator_module_default.tabs_segmented_indicator };
486
486
  //#endregion
487
487
  //#region src/components/tabs-segmented/tabs-segmented-list.module.css
488
- var tabs_segmented_list_module_default = { "tabs_segmented_list": "AZApxW_tabs_segmented_list" };
488
+ var tabs_segmented_list_module_default = { "tabs_segmented_list": "tabs-segmented-list-module_tabs_segmented_list_AZApxW" };
489
489
  //#endregion
490
490
  //#region src/components/tabs-segmented/tabs-segmented-list.tsx
491
491
  function TabsSegmentedList(props) {
@@ -504,7 +504,7 @@ function TabsSegmentedList(props) {
504
504
  const TABS_SEGMENTED_LIST_CLASS_NAME = { BASE: tabs_segmented_list_module_default.tabs_segmented_list };
505
505
  //#endregion
506
506
  //#region src/components/tabs-segmented/tabs-segmented-tab.module.css
507
- var tabs_segmented_tab_module_default = { "tabs_segmented_tab": "MWdXWq_tabs_segmented_tab" };
507
+ var tabs_segmented_tab_module_default = { "tabs_segmented_tab": "tabs-segmented-tab-module_tabs_segmented_tab_MWdXWq" };
508
508
  //#endregion
509
509
  //#region src/components/tabs-segmented/tabs-segmented-tab.tsx
510
510
  function TabsSegmentedTab(props) {
@@ -523,7 +523,7 @@ function TabsSegmentedTab(props) {
523
523
  const TABS_SEGMENTED_TAB_CLASS_NAME = { BASE: tabs_segmented_tab_module_default.tabs_segmented_tab };
524
524
  //#endregion
525
525
  //#region src/components/tabs-underline/tabs-underline-indicator.module.css
526
- var tabs_underline_indicator_module_default = { "tabs_underline_indicator": "Y_MyBG_tabs_underline_indicator" };
526
+ var tabs_underline_indicator_module_default = { "tabs_underline_indicator": "tabs-underline-indicator-module_tabs_underline_indicator_Y_MyBG" };
527
527
  //#endregion
528
528
  //#region src/components/tabs-underline/tabs-underline-indicator.tsx
529
529
  function TabsUnderlineIndicator(props) {
@@ -542,7 +542,7 @@ function TabsUnderlineIndicator(props) {
542
542
  const TABS_UNDERLINE_INDICATOR_CLASS_NAME = { BASE: tabs_underline_indicator_module_default.tabs_underline_indicator };
543
543
  //#endregion
544
544
  //#region src/components/tabs-underline/tabs-underline-list.module.css
545
- var tabs_underline_list_module_default = { "tabs_underline_list": "z1YTsW_tabs_underline_list" };
545
+ var tabs_underline_list_module_default = { "tabs_underline_list": "tabs-underline-list-module_tabs_underline_list_z1YTsW" };
546
546
  //#endregion
547
547
  //#region src/components/tabs-underline/tabs-underline-list.tsx
548
548
  function TabsUnderlineList(props) {
@@ -561,7 +561,7 @@ function TabsUnderlineList(props) {
561
561
  const TABS_UNDERLINE_LIST_CLASS_NAME = { BASE: tabs_underline_list_module_default.tabs_underline_list };
562
562
  //#endregion
563
563
  //#region src/components/tabs-underline/tabs-underline-tab.module.css
564
- var tabs_underline_tab_module_default = { "tabs_underline_tab": "RxaKNW_tabs_underline_tab" };
564
+ var tabs_underline_tab_module_default = { "tabs_underline_tab": "tabs-underline-tab-module_tabs_underline_tab_RxaKNW" };
565
565
  //#endregion
566
566
  //#region src/components/tabs-underline/tabs-underline-tab.tsx
567
567
  function TabsUnderlineTab(props) {
@@ -580,7 +580,7 @@ function TabsUnderlineTab(props) {
580
580
  const TABS_UNDERLINE_TAB_CLASS_NAME = { BASE: tabs_underline_tab_module_default.tabs_underline_tab };
581
581
  //#endregion
582
582
  //#region src/components/tabs/tabs.module.css
583
- var tabs_module_default = { "tabs": "Zs0xEq_tabs" };
583
+ var tabs_module_default = { "tabs": "tabs-module_tabs_Zs0xEq" };
584
584
  //#endregion
585
585
  //#region src/components/tabs/tabs.tsx
586
586
  function Tabs(props) {
@@ -598,7 +598,7 @@ function Tabs(props) {
598
598
  const TABS_CLASS_NAME = { BASE: tabs_module_default.tabs };
599
599
  //#endregion
600
600
  //#region src/components/tabs/tabs-panel.module.css
601
- var tabs_panel_module_default = { "tabs_panel": "dWZGWq_tabs_panel" };
601
+ var tabs_panel_module_default = { "tabs_panel": "tabs-panel-module_tabs_panel_dWZGWq" };
602
602
  //#endregion
603
603
  //#region src/components/tabs/tabs-panel.tsx
604
604
  function TabsPanel(props) {
@@ -616,7 +616,7 @@ function TabsPanel(props) {
616
616
  const TABS_PANEL_CLASS_NAME = { BASE: tabs_panel_module_default.tabs_panel };
617
617
  //#endregion
618
618
  //#region src/components/textarea/textarea.module.css
619
- var textarea_module_default = { "textarea": "JqpxFq_textarea" };
619
+ var textarea_module_default = { "textarea": "textarea-module_textarea_JqpxFq" };
620
620
  //#endregion
621
621
  //#region src/components/textarea/textarea.tsx
622
622
  function Textarea(props) {
@@ -660,8 +660,8 @@ function Tooltip(props) {
660
660
  //#endregion
661
661
  //#region src/components/tooltip/tooltip-content.module.css
662
662
  var tooltip_content_module_default = {
663
- "tooltip_content": "j-Z8kW_tooltip_content",
664
- "tooltip_content_positioner": "j-Z8kW_tooltip_content_positioner"
663
+ "tooltip_content": "tooltip-content-module_tooltip_content_j-Z8kW",
664
+ "tooltip_content_positioner": "tooltip-content-module_tooltip_content_positioner_j-Z8kW"
665
665
  };
666
666
  //#endregion
667
667
  //#region src/components/tooltip/tooltip-content.tsx
@@ -1,18 +1,18 @@
1
- .Eu3QVW_button_spinner {
1
+ .button-spinner-module_button_spinner_Eu3QVW {
2
2
  width: var(--size);
3
3
  height: var(--size);
4
- animation: 1s steps(12, end) infinite Eu3QVW_spinner;
4
+ animation: 1s steps(12, end) infinite button-spinner-module_spinner_Eu3QVW;
5
5
  position: relative;
6
6
  scale: -1 1;
7
7
  }
8
8
 
9
- @keyframes Eu3QVW_spinner {
9
+ @keyframes button-spinner-module_spinner_Eu3QVW {
10
10
  to {
11
11
  rotate: 1turn;
12
12
  }
13
13
  }
14
14
 
15
- .Eu3QVW_button_spinner > div {
15
+ .button-spinner-module_button_spinner_Eu3QVW > div {
16
16
  width: calc(var(--size) / 2);
17
17
  height: calc(var(--size) / 12);
18
18
  pointer-events: none;
@@ -24,7 +24,7 @@
24
24
  translate: 0 -50%;
25
25
  }
26
26
 
27
- .Eu3QVW_button_spinner > div:after {
27
+ .button-spinner-module_button_spinner_Eu3QVW > div:after {
28
28
  content: "";
29
29
  background-color: currentColor;
30
30
  border-radius: 9999px;
@@ -34,66 +34,66 @@
34
34
  right: 0;
35
35
  }
36
36
 
37
- .Eu3QVW_button_spinner > div:first-child {
37
+ .button-spinner-module_button_spinner_Eu3QVW > div:first-child {
38
38
  opacity: 1;
39
39
  rotate: 0deg;
40
40
  }
41
41
 
42
- .Eu3QVW_button_spinner > div:nth-child(2) {
42
+ .button-spinner-module_button_spinner_Eu3QVW > div:nth-child(2) {
43
43
  opacity: .925;
44
44
  rotate: 30deg;
45
45
  }
46
46
 
47
- .Eu3QVW_button_spinner > div:nth-child(3) {
47
+ .button-spinner-module_button_spinner_Eu3QVW > div:nth-child(3) {
48
48
  opacity: .85;
49
49
  rotate: 60deg;
50
50
  }
51
51
 
52
- .Eu3QVW_button_spinner > div:nth-child(4) {
52
+ .button-spinner-module_button_spinner_Eu3QVW > div:nth-child(4) {
53
53
  opacity: .775;
54
54
  rotate: 90deg;
55
55
  }
56
56
 
57
- .Eu3QVW_button_spinner > div:nth-child(5) {
57
+ .button-spinner-module_button_spinner_Eu3QVW > div:nth-child(5) {
58
58
  opacity: .7;
59
59
  rotate: 120deg;
60
60
  }
61
61
 
62
- .Eu3QVW_button_spinner > div:nth-child(6) {
62
+ .button-spinner-module_button_spinner_Eu3QVW > div:nth-child(6) {
63
63
  opacity: .625;
64
64
  rotate: 150deg;
65
65
  }
66
66
 
67
- .Eu3QVW_button_spinner > div:nth-child(7) {
67
+ .button-spinner-module_button_spinner_Eu3QVW > div:nth-child(7) {
68
68
  opacity: .55;
69
69
  rotate: 180deg;
70
70
  }
71
71
 
72
- .Eu3QVW_button_spinner > div:nth-child(8) {
72
+ .button-spinner-module_button_spinner_Eu3QVW > div:nth-child(8) {
73
73
  opacity: .475;
74
74
  rotate: 210deg;
75
75
  }
76
76
 
77
- .Eu3QVW_button_spinner > div:nth-child(9) {
77
+ .button-spinner-module_button_spinner_Eu3QVW > div:nth-child(9) {
78
78
  opacity: .4;
79
79
  rotate: 240deg;
80
80
  }
81
81
 
82
- .Eu3QVW_button_spinner > div:nth-child(10) {
82
+ .button-spinner-module_button_spinner_Eu3QVW > div:nth-child(10) {
83
83
  opacity: .325;
84
84
  rotate: 270deg;
85
85
  }
86
86
 
87
- .Eu3QVW_button_spinner > div:nth-child(11) {
87
+ .button-spinner-module_button_spinner_Eu3QVW > div:nth-child(11) {
88
88
  opacity: .25;
89
89
  rotate: 300deg;
90
90
  }
91
91
 
92
- .Eu3QVW_button_spinner > div:nth-child(12) {
92
+ .button-spinner-module_button_spinner_Eu3QVW > div:nth-child(12) {
93
93
  opacity: .15;
94
94
  rotate: 330deg;
95
95
  }
96
- ._9qaCYq_button {
96
+ .button-module_button_9qaCYq {
97
97
  cursor: pointer;
98
98
  font-family: var(--font-body);
99
99
  height: var(--size-button);
@@ -116,123 +116,123 @@
116
116
  overflow: hidden;
117
117
  }
118
118
 
119
- ._9qaCYq_button:active:not(:disabled), ._9qaCYq_button[aria-pressed="true"]:not(:disabled) {
119
+ .button-module_button_9qaCYq:active:not(:disabled), .button-module_button_9qaCYq[aria-pressed="true"]:not(:disabled) {
120
120
  translate: 0 1px;
121
121
  }
122
122
 
123
- ._9qaCYq_button:disabled {
123
+ .button-module_button_9qaCYq:disabled {
124
124
  cursor: not-allowed;
125
125
  opacity: .5;
126
126
  }
127
127
 
128
- ._9qaCYq_button:focus-visible {
128
+ .button-module_button_9qaCYq:focus-visible {
129
129
  outline-width: 2px;
130
130
  }
131
131
 
132
- ._9qaCYq_button > svg {
132
+ .button-module_button_9qaCYq > svg {
133
133
  --size-icon: 20px;
134
134
  height: var(--size-icon);
135
135
  width: var(--size-icon);
136
136
  }
137
137
 
138
- ._9qaCYq_button__icon_only {
138
+ .button-module_button__icon_only_9qaCYq {
139
139
  width: var(--size-button) !important;
140
140
  padding: 0 !important;
141
141
  }
142
142
 
143
- ._9qaCYq_button__rounded_base {
143
+ .button-module_button__rounded_base_9qaCYq {
144
144
  border-radius: 12px;
145
145
  }
146
146
 
147
- ._9qaCYq_button__rounded_full {
147
+ .button-module_button__rounded_full_9qaCYq {
148
148
  border-radius: 9999px !important;
149
149
  }
150
150
 
151
- ._9qaCYq_button__size_32 {
151
+ .button-module_button__size_32_9qaCYq {
152
152
  --size-button: 32px;
153
153
  border-radius: 6px;
154
154
  padding: 0 10px;
155
155
  }
156
156
 
157
- ._9qaCYq_button__size_36 {
157
+ .button-module_button__size_36_9qaCYq {
158
158
  --size-button: 36px;
159
159
  border-radius: 8px;
160
160
  padding: 0 12px;
161
161
  }
162
162
 
163
- ._9qaCYq_button__size_40 {
163
+ .button-module_button__size_40_9qaCYq {
164
164
  --size-button: 40px;
165
165
  border-radius: 10px;
166
166
  padding: 0 14px;
167
167
  }
168
168
 
169
- ._9qaCYq_button__size_44 {
169
+ .button-module_button__size_44_9qaCYq {
170
170
  --size-button: 44px;
171
171
  border-radius: 12px;
172
172
  padding: 0 16px;
173
173
  }
174
174
 
175
- ._9qaCYq_button__size_48 {
175
+ .button-module_button__size_48_9qaCYq {
176
176
  --size-button: 48px;
177
177
  border-radius: 14px;
178
178
  padding: 0 18px;
179
179
  }
180
180
 
181
- ._9qaCYq_button__variant_ghost {
181
+ .button-module_button__variant_ghost_9qaCYq {
182
182
  color: #000;
183
183
  background-color: #0000;
184
184
  }
185
185
 
186
- ._9qaCYq_button__variant_ghost:active:not(:disabled), ._9qaCYq_button__variant_ghost:hover:not(:disabled), ._9qaCYq_button__variant_ghost[aria-pressed="true"]:not(:disabled) {
186
+ .button-module_button__variant_ghost_9qaCYq:active:not(:disabled), .button-module_button__variant_ghost_9qaCYq:hover:not(:disabled), .button-module_button__variant_ghost_9qaCYq[aria-pressed="true"]:not(:disabled) {
187
187
  background-color: var(--color-gray-3);
188
188
  }
189
189
 
190
- .dark ._9qaCYq_button__variant_ghost {
190
+ .dark .button-module_button__variant_ghost_9qaCYq {
191
191
  color: #fff;
192
192
  }
193
193
 
194
- ._9qaCYq_button__variant_primary {
194
+ .button-module_button__variant_primary_9qaCYq {
195
195
  color: #fff;
196
196
  background-color: var(--color-primary-9);
197
197
  background-image: linear-gradient(oklab(100% 0 5.96046e-8 / .0476191) 50%, oklab(0% 0 0 / 0) 50%);
198
198
  }
199
199
 
200
- ._9qaCYq_button__variant_primary:active:not(:disabled), ._9qaCYq_button__variant_primary:hover:not(:disabled), ._9qaCYq_button__variant_primary[aria-pressed="true"]:not(:disabled) {
200
+ .button-module_button__variant_primary_9qaCYq:active:not(:disabled), .button-module_button__variant_primary_9qaCYq:hover:not(:disabled), .button-module_button__variant_primary_9qaCYq[aria-pressed="true"]:not(:disabled) {
201
201
  background-color: color-mix(in oklab, var(--color-primary-9) 100%, #fff 10%);
202
202
  }
203
203
 
204
- .dark ._9qaCYq_button__variant_primary {
204
+ .dark .button-module_button__variant_primary_9qaCYq {
205
205
  background-image: linear-gradient(oklab(0% none none / 0) 50%, oklab(0% none none / .0476191) 50%);
206
206
  }
207
207
 
208
- ._9qaCYq_button__variant_secondary {
208
+ .button-module_button__variant_secondary_9qaCYq {
209
209
  color: #000;
210
210
  background-color: var(--color-gray-2);
211
211
  box-shadow: 0 0 0 1px var(--color-gray-4) inset;
212
212
  background-image: linear-gradient(oklab(0% none none / 0) 50%, oklab(0% none none / .0196078) 50%);
213
213
  }
214
214
 
215
- ._9qaCYq_button__variant_secondary:active:not(:disabled), ._9qaCYq_button__variant_secondary:hover:not(:disabled), ._9qaCYq_button__variant_secondary[aria-pressed="true"]:not(:disabled) {
215
+ .button-module_button__variant_secondary_9qaCYq:active:not(:disabled), .button-module_button__variant_secondary_9qaCYq:hover:not(:disabled), .button-module_button__variant_secondary_9qaCYq[aria-pressed="true"]:not(:disabled) {
216
216
  background-color: var(--color-gray-3);
217
217
  }
218
218
 
219
- .dark ._9qaCYq_button__variant_secondary {
219
+ .dark .button-module_button__variant_secondary_9qaCYq {
220
220
  color: #fff;
221
221
  background-image: linear-gradient(oklab(100% 0 5.96046e-8 / .00990099) 50%, oklab(0% 0 0 / 0) 50%);
222
222
  }
223
223
 
224
- ._9qaCYq_button__width_base {
224
+ .button-module_button__width_base_9qaCYq {
225
225
  width: max-content;
226
226
  }
227
227
 
228
- ._9qaCYq_button__width_full {
228
+ .button-module_button__width_full_9qaCYq {
229
229
  width: 100%;
230
230
  }
231
- ._1ANk3W_column {
231
+ .column-module_column_1ANk3W {
232
232
  flex-direction: column;
233
233
  display: flex;
234
234
  }
235
- .eSc3Ma_dialog_responsive_backdrop {
235
+ .dialog-responsive-backdrop-module_dialog_responsive_backdrop_eSc3Ma {
236
236
  --backdrop-opacity: .25;
237
237
  opacity: calc(var(--backdrop-opacity) * (1 - var(--drawer-swipe-progress)));
238
238
  outline-color: var(--color-primary-9);
@@ -243,22 +243,22 @@
243
243
  inset: 0;
244
244
  }
245
245
 
246
- .eSc3Ma_dialog_responsive_backdrop[data-ending-style], .eSc3Ma_dialog_responsive_backdrop[data-starting-style] {
246
+ .dialog-responsive-backdrop-module_dialog_responsive_backdrop_eSc3Ma[data-ending-style], .dialog-responsive-backdrop-module_dialog_responsive_backdrop_eSc3Ma[data-starting-style] {
247
247
  opacity: 0;
248
248
  }
249
249
 
250
- .eSc3Ma_dialog_responsive_backdrop[data-ending-style] {
250
+ .dialog-responsive-backdrop-module_dialog_responsive_backdrop_eSc3Ma[data-ending-style] {
251
251
  transition-duration: calc(var(--drawer-swipe-strength) * .4s);
252
252
  }
253
253
 
254
- .eSc3Ma_dialog_responsive_backdrop[data-swiping] {
254
+ .dialog-responsive-backdrop-module_dialog_responsive_backdrop_eSc3Ma[data-swiping] {
255
255
  transition-duration: 0s;
256
256
  }
257
257
 
258
- .dark .eSc3Ma_dialog_responsive_backdrop {
258
+ .dark .dialog-responsive-backdrop-module_dialog_responsive_backdrop_eSc3Ma {
259
259
  --backdrop-opacity: .75;
260
260
  }
261
- .jTrvVq_dialog_responsive_bar {
261
+ .dialog-responsive-bar-module_dialog_responsive_bar_jTrvVq {
262
262
  background-color: var(--color-gray-4);
263
263
  border-radius: 9999px;
264
264
  width: 48px;
@@ -268,16 +268,16 @@
268
268
  }
269
269
 
270
270
  @media (width <= 640px) {
271
- .jTrvVq_dialog_responsive_bar {
271
+ .dialog-responsive-bar-module_dialog_responsive_bar_jTrvVq {
272
272
  display: block;
273
273
  }
274
274
  }
275
- ._5Oatkq_dialog_responsive_portal {
275
+ .dialog-responsive-portal-module_dialog_responsive_portal_5Oatkq {
276
276
  isolation: isolate;
277
277
  z-index: 30;
278
278
  position: relative;
279
279
  }
280
- .xMwQyW_dialog_responsive_viewport {
280
+ .dialog-responsive-viewport-module_dialog_responsive_viewport_xMwQyW {
281
281
  cursor: pointer;
282
282
  justify-content: safe center;
283
283
  align-items: safe center;
@@ -288,12 +288,12 @@
288
288
  }
289
289
 
290
290
  @media (width <= 640px) {
291
- .xMwQyW_dialog_responsive_viewport {
291
+ .dialog-responsive-viewport-module_dialog_responsive_viewport_xMwQyW {
292
292
  align-items: safe flex-end;
293
293
  padding: 48px 0 0;
294
294
  }
295
295
  }
296
- ._G8xla_dialog_responsive_popup {
296
+ .dialog-responsive-popup-module_dialog_responsive_popup__G8xla {
297
297
  background-color: var(--color-gray-1);
298
298
  cursor: auto;
299
299
  outline-color: var(--color-primary-9);
@@ -311,21 +311,21 @@
311
311
  display: flex;
312
312
  }
313
313
 
314
- ._G8xla_dialog_responsive_popup:focus-visible {
314
+ .dialog-responsive-popup-module_dialog_responsive_popup__G8xla:focus-visible {
315
315
  outline-width: 2px;
316
316
  }
317
317
 
318
- ._G8xla_dialog_responsive_popup[data-ending-style], ._G8xla_dialog_responsive_popup[data-starting-style] {
318
+ .dialog-responsive-popup-module_dialog_responsive_popup__G8xla[data-ending-style], .dialog-responsive-popup-module_dialog_responsive_popup__G8xla[data-starting-style] {
319
319
  opacity: 0;
320
320
  transform: scale(.975);
321
321
  }
322
322
 
323
- ._G8xla_dialog_responsive_popup[data-swiping] {
323
+ .dialog-responsive-popup-module_dialog_responsive_popup__G8xla[data-swiping] {
324
324
  user-select: none;
325
325
  }
326
326
 
327
327
  @media (width <= 640px) {
328
- ._G8xla_dialog_responsive_popup {
328
+ .dialog-responsive-popup-module_dialog_responsive_popup__G8xla {
329
329
  --radius-mobile: 24px;
330
330
  border-bottom-right-radius: 0;
331
331
  border-bottom-left-radius: 0;
@@ -338,16 +338,16 @@
338
338
  transition-timing-function: cubic-bezier(.32, .72, 0, 1);
339
339
  }
340
340
 
341
- ._G8xla_dialog_responsive_popup[data-ending-style], ._G8xla_dialog_responsive_popup[data-starting-style] {
341
+ .dialog-responsive-popup-module_dialog_responsive_popup__G8xla[data-ending-style], .dialog-responsive-popup-module_dialog_responsive_popup__G8xla[data-starting-style] {
342
342
  opacity: 1;
343
343
  transform: scale(1) translateY(100%);
344
344
  }
345
345
 
346
- ._G8xla_dialog_responsive_popup[data-ending-style] {
346
+ .dialog-responsive-popup-module_dialog_responsive_popup__G8xla[data-ending-style] {
347
347
  transition-duration: calc(var(--drawer-swipe-strength) * .3s);
348
348
  }
349
349
  }
350
- .dWvcHW_input {
350
+ .input-module_input_dWvcHW {
351
351
  appearance: none;
352
352
  background-color: var(--color-bg-primary);
353
353
  box-shadow: 0 0 0 1px var(--color-border) inset;
@@ -366,82 +366,82 @@
366
366
  transition-duration: .15s;
367
367
  }
368
368
 
369
- .dWvcHW_input::placeholder {
369
+ .input-module_input_dWvcHW::placeholder {
370
370
  color: var(--color-gray-9);
371
371
  user-select: none;
372
372
  }
373
373
 
374
- .dWvcHW_input:disabled {
374
+ .input-module_input_dWvcHW:disabled {
375
375
  cursor: not-allowed;
376
376
  opacity: .5;
377
377
  }
378
378
 
379
- .dWvcHW_input:enabled:active, .dWvcHW_input:enabled:focus, .dWvcHW_input:enabled:hover, .dWvcHW_input:enabled[data-is-active="true"] {
379
+ .input-module_input_dWvcHW:enabled:active, .input-module_input_dWvcHW:enabled:focus, .input-module_input_dWvcHW:enabled:hover, .input-module_input_dWvcHW:enabled[data-is-active="true"] {
380
380
  box-shadow: 0 0 0 1px var(--color-gray-6) inset;
381
381
  }
382
382
 
383
- .dWvcHW_input[data-is-valid="true"] {
383
+ .input-module_input_dWvcHW[data-is-valid="true"] {
384
384
  outline-color: #30a46c;
385
385
  }
386
386
 
387
- .dWvcHW_input[data-is-invalid="true"] {
387
+ .input-module_input_dWvcHW[data-is-invalid="true"] {
388
388
  outline-color: #e5484d;
389
389
  }
390
390
 
391
- .dWvcHW_input:focus-visible {
391
+ .input-module_input_dWvcHW:focus-visible {
392
392
  outline-color: var(--color-outline);
393
393
  }
394
394
 
395
- .dWvcHW_input__rounded_base {
395
+ .input-module_input__rounded_base_dWvcHW {
396
396
  border-radius: 12px;
397
397
  }
398
398
 
399
- .dWvcHW_input__rounded_full {
399
+ .input-module_input__rounded_full_dWvcHW {
400
400
  border-radius: 9999px;
401
401
  }
402
402
 
403
- .dWvcHW_input__size_32 {
403
+ .input-module_input__size_32_dWvcHW {
404
404
  border-radius: 8px;
405
405
  min-height: 32px;
406
406
  padding: 0 8px;
407
407
  }
408
408
 
409
- .dWvcHW_input__size_36 {
409
+ .input-module_input__size_36_dWvcHW {
410
410
  border-radius: 10px;
411
411
  min-height: 36px;
412
412
  padding: 0 10px;
413
413
  }
414
414
 
415
- .dWvcHW_input__size_40 {
415
+ .input-module_input__size_40_dWvcHW {
416
416
  border-radius: 12px;
417
417
  min-height: 40px;
418
418
  padding: 0 12px;
419
419
  }
420
420
 
421
- .dWvcHW_input__size_44 {
421
+ .input-module_input__size_44_dWvcHW {
422
422
  border-radius: 14px;
423
423
  min-height: 44px;
424
424
  padding: 0 14px;
425
425
  }
426
426
 
427
- .dWvcHW_input__size_48 {
427
+ .input-module_input__size_48_dWvcHW {
428
428
  border-radius: 16px;
429
429
  min-height: 48px;
430
430
  padding: 0 16px;
431
431
  }
432
- .x4PeXa_label {
432
+ .label-module_label_x4PeXa {
433
433
  color: var(--color-text-secondary);
434
434
  width: fit-content;
435
435
  font-size: 14px;
436
436
  }
437
- .sYCFIW_row {
437
+ .row-module_row_sYCFIW {
438
438
  flex-direction: row;
439
439
  display: flex;
440
440
  }
441
- .nFLKVq_spacer {
441
+ .spacer-module_spacer_nFLKVq {
442
442
  flex-shrink: 0;
443
443
  }
444
- .R3gLLG_switch {
444
+ .switch-module_switch_R3gLLG {
445
445
  background-color: var(--color-gray-6);
446
446
  cursor: pointer;
447
447
  outline-color: var(--color-primary-9);
@@ -456,20 +456,20 @@
456
456
  overflow: hidden;
457
457
  }
458
458
 
459
- .R3gLLG_switch:focus-visible {
459
+ .switch-module_switch_R3gLLG:focus-visible {
460
460
  outline-width: 2px;
461
461
  }
462
462
 
463
- .R3gLLG_switch[data-checked] {
463
+ .switch-module_switch_R3gLLG[data-checked] {
464
464
  background-color: var(--color-primary-9);
465
465
  }
466
466
 
467
- .R3gLLG_switch[data-disabled] {
467
+ .switch-module_switch_R3gLLG[data-disabled] {
468
468
  cursor: not-allowed;
469
469
  opacity: .5;
470
470
  }
471
471
 
472
- .R3gLLG_switch__thumb {
472
+ .switch-module_switch__thumb_R3gLLG {
473
473
  aspect-ratio: 1;
474
474
  background-color: #fff;
475
475
  border-radius: 9999px;
@@ -478,22 +478,22 @@
478
478
  transition-duration: .15s;
479
479
  }
480
480
 
481
- .R3gLLG_switch__thumb[data-checked] {
481
+ .switch-module_switch__thumb_R3gLLG[data-checked] {
482
482
  transform: translateX(var(--translateX));
483
483
  }
484
484
 
485
- .R3gLLG_switch__size_18 {
485
+ .switch-module_switch__size_18_R3gLLG {
486
486
  --translateX: 12px;
487
487
  width: 30px;
488
488
  height: 18px;
489
489
  }
490
490
 
491
- .R3gLLG_switch__size_24 {
491
+ .switch-module_switch__size_24_R3gLLG {
492
492
  --translateX: 16px;
493
493
  width: 40px;
494
494
  height: 24px;
495
495
  }
496
- .Dg56ja_tabs_pill_indicator {
496
+ .tabs-pill-indicator-module_tabs_pill_indicator_Dg56ja {
497
497
  background-color: var(--color-gray-12);
498
498
  height: var(--active-tab-height);
499
499
  left: var(--active-tab-left);
@@ -505,14 +505,14 @@
505
505
  transition-duration: .15s;
506
506
  position: absolute;
507
507
  }
508
- .I12aAq_tabs_pill_list {
508
+ .tabs-pill-list-module_tabs_pill_list_I12aAq {
509
509
  isolation: isolate;
510
510
  column-gap: 8px;
511
511
  display: flex;
512
512
  position: relative;
513
513
  overflow-x: auto;
514
514
  }
515
- .ABaxVG_tabs_pill_tab {
515
+ .tabs-pill-tab-module_tabs_pill_tab_ABaxVG {
516
516
  border-radius: var(--border-radius);
517
517
  color: #000;
518
518
  cursor: pointer;
@@ -533,34 +533,34 @@
533
533
  display: flex;
534
534
  }
535
535
 
536
- .ABaxVG_tabs_pill_tab:focus-visible {
536
+ .tabs-pill-tab-module_tabs_pill_tab_ABaxVG:focus-visible {
537
537
  outline-width: 2px;
538
538
  }
539
539
 
540
- .ABaxVG_tabs_pill_tab:hover {
540
+ .tabs-pill-tab-module_tabs_pill_tab_ABaxVG:hover {
541
541
  background-color: var(--color-gray-4);
542
542
  }
543
543
 
544
- .ABaxVG_tabs_pill_tab[data-active] {
544
+ .tabs-pill-tab-module_tabs_pill_tab_ABaxVG[data-active] {
545
545
  color: #fff;
546
546
  background-color: #0000;
547
547
  }
548
548
 
549
- .dark .ABaxVG_tabs_pill_tab {
549
+ .dark .tabs-pill-tab-module_tabs_pill_tab_ABaxVG {
550
550
  color: #fff;
551
551
  }
552
552
 
553
- .dark .ABaxVG_tabs_pill_tab[data-active] {
553
+ .dark .tabs-pill-tab-module_tabs_pill_tab_ABaxVG[data-active] {
554
554
  color: #000;
555
555
  }
556
556
 
557
- .ABaxVG_tabs_pill_tab > svg {
557
+ .tabs-pill-tab-module_tabs_pill_tab_ABaxVG > svg {
558
558
  --size-icon: 16px;
559
559
  height: var(--size-icon);
560
560
  width: var(--size-icon);
561
561
  }
562
562
 
563
- .ABaxVG_tabs_pill_tab_wrapper {
563
+ .tabs-pill-tab-module_tabs_pill_tab_wrapper_ABaxVG {
564
564
  --border-radius: 12px;
565
565
  border-radius: var(--border-radius);
566
566
  flex-shrink: 0;
@@ -569,13 +569,13 @@
569
569
  overflow: hidden;
570
570
  }
571
571
 
572
- .ABaxVG_tabs_pill_tab_background {
572
+ .tabs-pill-tab-module_tabs_pill_tab_background_ABaxVG {
573
573
  background-color: var(--color-gray-3);
574
574
  z-index: -2;
575
575
  position: absolute;
576
576
  inset: 0;
577
577
  }
578
- .wVi_Qq_tabs_segmented_indicator {
578
+ .tabs-segmented-indicator-module_tabs_segmented_indicator_wVi_Qq {
579
579
  background-color: var(--color-gray-1);
580
580
  height: var(--active-tab-height);
581
581
  left: var(--active-tab-left);
@@ -587,7 +587,7 @@
587
587
  transition-duration: .15s;
588
588
  position: absolute;
589
589
  }
590
- .AZApxW_tabs_segmented_list {
590
+ .tabs-segmented-list-module_tabs_segmented_list_AZApxW {
591
591
  background-color: var(--color-gray-3);
592
592
  isolation: isolate;
593
593
  border-radius: 12px;
@@ -598,7 +598,7 @@
598
598
  position: relative;
599
599
  overflow-x: auto;
600
600
  }
601
- .MWdXWq_tabs_segmented_tab {
601
+ .tabs-segmented-tab-module_tabs_segmented_tab_MWdXWq {
602
602
  color: var(--color-gray-11);
603
603
  cursor: pointer;
604
604
  outline-color: var(--color-primary-9);
@@ -619,20 +619,20 @@
619
619
  display: flex;
620
620
  }
621
621
 
622
- .MWdXWq_tabs_segmented_tab:focus-visible {
622
+ .tabs-segmented-tab-module_tabs_segmented_tab_MWdXWq:focus-visible {
623
623
  outline-width: 2px;
624
624
  }
625
625
 
626
- .MWdXWq_tabs_segmented_tab:hover, .MWdXWq_tabs_segmented_tab[data-active] {
626
+ .tabs-segmented-tab-module_tabs_segmented_tab_MWdXWq:hover, .tabs-segmented-tab-module_tabs_segmented_tab_MWdXWq[data-active] {
627
627
  color: var(--color-gray-12);
628
628
  }
629
629
 
630
- .MWdXWq_tabs_segmented_tab > svg {
630
+ .tabs-segmented-tab-module_tabs_segmented_tab_MWdXWq > svg {
631
631
  --size-icon: 16px;
632
632
  height: var(--size-icon);
633
633
  width: var(--size-icon);
634
634
  }
635
- .Y_MyBG_tabs_underline_indicator {
635
+ .tabs-underline-indicator-module_tabs_underline_indicator_Y_MyBG {
636
636
  background-color: var(--color-primary-9);
637
637
  height: 2px;
638
638
  bottom: 0;
@@ -642,7 +642,7 @@
642
642
  transition-duration: .15s;
643
643
  position: absolute;
644
644
  }
645
- .z1YTsW_tabs_underline_list {
645
+ .tabs-underline-list-module_tabs_underline_list_z1YTsW {
646
646
  border-bottom-color: var(--color-gray-4);
647
647
  border-bottom-style: solid;
648
648
  border-bottom-width: 1px;
@@ -650,7 +650,7 @@
650
650
  position: relative;
651
651
  overflow-x: auto;
652
652
  }
653
- .RxaKNW_tabs_underline_tab {
653
+ .tabs-underline-tab-module_tabs_underline_tab_RxaKNW {
654
654
  color: var(--color-gray-11);
655
655
  cursor: pointer;
656
656
  outline-color: var(--color-primary-9);
@@ -670,25 +670,25 @@
670
670
  display: flex;
671
671
  }
672
672
 
673
- .RxaKNW_tabs_underline_tab:focus-visible {
673
+ .tabs-underline-tab-module_tabs_underline_tab_RxaKNW:focus-visible {
674
674
  outline-width: 2px;
675
675
  }
676
676
 
677
- .RxaKNW_tabs_underline_tab:hover, .RxaKNW_tabs_underline_tab[data-active] {
677
+ .tabs-underline-tab-module_tabs_underline_tab_RxaKNW:hover, .tabs-underline-tab-module_tabs_underline_tab_RxaKNW[data-active] {
678
678
  color: var(--color-gray-12);
679
679
  }
680
680
 
681
- .RxaKNW_tabs_underline_tab > svg {
681
+ .tabs-underline-tab-module_tabs_underline_tab_RxaKNW > svg {
682
682
  --size-icon: 16px;
683
683
  height: var(--size-icon);
684
684
  width: var(--size-icon);
685
685
  }
686
- .Zs0xEq_tabs {
686
+ .tabs-module_tabs_Zs0xEq {
687
687
  flex-direction: column;
688
688
  width: 100%;
689
689
  display: flex;
690
690
  }
691
- .dWZGWq_tabs_panel {
691
+ .tabs-panel-module_tabs_panel_dWZGWq {
692
692
  outline-color: var(--color-primary-9);
693
693
  outline-offset: -2px;
694
694
  outline-width: 0;
@@ -697,17 +697,17 @@
697
697
  display: flex;
698
698
  }
699
699
 
700
- .dWZGWq_tabs_panel:focus-visible {
700
+ .tabs-panel-module_tabs_panel_dWZGWq:focus-visible {
701
701
  outline-width: 2px;
702
702
  }
703
- .JqpxFq_textarea {
703
+ .textarea-module_textarea_JqpxFq {
704
704
  resize: vertical;
705
705
  height: auto;
706
706
  min-height: 66px;
707
707
  max-height: none;
708
708
  padding: 12px !important;
709
709
  }
710
- .j-Z8kW_tooltip_content {
710
+ .tooltip-content-module_tooltip_content_j-Z8kW {
711
711
  background-color: var(--color-gray-dark-1);
712
712
  color: var(--color-gray-dark-12);
713
713
  border-radius: 8px;
@@ -716,12 +716,12 @@
716
716
  font-weight: 500;
717
717
  }
718
718
 
719
- .j-Z8kW_tooltip_content_positioner {
719
+ .tooltip-content-module_tooltip_content_positioner_j-Z8kW {
720
720
  isolation: isolate;
721
721
  z-index: 50;
722
722
  }
723
723
 
724
- .dark .j-Z8kW_tooltip_content {
724
+ .dark .tooltip-content-module_tooltip_content_j-Z8kW {
725
725
  background-color: var(--color-gray-light-1);
726
726
  color: var(--color-gray-light-12);
727
727
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nattstack/ui",
3
- "version": "0.0.31",
3
+ "version": "0.0.32",
4
4
  "description": "A collection of reusable React components built with Base UI, TypeScript, and CSS Modules",
5
5
  "keywords": [
6
6
  "base-ui",
@@ -54,7 +54,7 @@
54
54
  "@tsdown/css": "0.21.8",
55
55
  "@types/bun": "1.3.12",
56
56
  "tsdown": "0.21.8",
57
- "typescript": "5.9.3"
57
+ "typescript": "6.0.2"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "@types/react": "^18 || ^19",