@aviala-design/spiral 2.4.1 → 2.6.0

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.
package/dist/index.d.cts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as react from 'react';
2
- import { ReactNode, ButtonHTMLAttributes, InputHTMLAttributes, ChangeEvent, TextareaHTMLAttributes, ComponentPropsWithoutRef, HTMLAttributes, ImgHTMLAttributes, MouseEvent, AnchorHTMLAttributes } from 'react';
2
+ import { ReactNode, CSSProperties, ButtonHTMLAttributes, InputHTMLAttributes, ChangeEvent, TextareaHTMLAttributes, ComponentPropsWithoutRef, HTMLAttributes, ImgHTMLAttributes, MouseEvent, AnchorHTMLAttributes, Ref, ReactElement } from 'react';
3
3
  import { ThemeMode, PaletteConfig, BaseNumbersDensity, ThemePreset } from '@aviala-design/tokens';
4
4
  export { BaseNumbersDensity, DEFAULT_PALETTE_CONFIG, HueFamily, PALETTE_HUE_FAMILIES, PaletteConfig } from '@aviala-design/tokens';
5
5
  import * as class_variance_authority_types from 'class-variance-authority/types';
@@ -9,6 +9,8 @@ import * as LabelPrimitive from '@radix-ui/react-label';
9
9
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
10
10
  import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
11
11
  import * as SwitchPrimitive from '@radix-ui/react-switch';
12
+ import * as react_hook_form from 'react-hook-form';
13
+ import { FieldValues, FieldPath, UseControllerProps, Control, ControllerRenderProps, ControllerFieldState, UseFormStateReturn } from 'react-hook-form';
12
14
  import * as PopoverPrimitive from '@radix-ui/react-popover';
13
15
  import * as DialogPrimitive from '@radix-ui/react-dialog';
14
16
  import * as TooltipPrimitive from '@radix-ui/react-tooltip';
@@ -53,11 +55,172 @@ declare function ThemeScript({ storageKey, defaultMode, defaultPrimary, defaultD
53
55
  defaultDensity?: BaseNumbersDensity;
54
56
  }): react.JSX.Element;
55
57
 
58
+ /** Spiral locale pack — Semi-style component dictionaries + BCP 47 `code` for Intl. */
59
+ type LocaleDatePicker = {
60
+ placeholder: string;
61
+ placeholderWithTime: string;
62
+ rangePlaceholder: string;
63
+ selectDate: string;
64
+ selectDateRange: string;
65
+ rangeTo: string;
66
+ calendar: string;
67
+ dateTimeSwitch: string;
68
+ previousMonth: string;
69
+ nextMonth: string;
70
+ previousYear: string;
71
+ nextYear: string;
72
+ selectMonthYear: string;
73
+ closeMonthYear: string;
74
+ /** Monday-first weekday short labels (7). */
75
+ weekdays: readonly [string, string, string, string, string, string, string];
76
+ year: string;
77
+ month: string;
78
+ selectYearMonth: string;
79
+ };
80
+ type LocaleTimePicker = {
81
+ placeholder: string;
82
+ panel: string;
83
+ selectTime: string;
84
+ hour: string;
85
+ minute: string;
86
+ };
87
+ type LocalePagination = {
88
+ jumpTo: string;
89
+ pageSize: string;
90
+ /** Template: `${size}` */
91
+ items: string;
92
+ pagePlaceholder: string;
93
+ morePages: string;
94
+ previous: string;
95
+ next: string;
96
+ pagination: string;
97
+ pageSizeAria: string;
98
+ };
99
+ type LocaleUpload = {
100
+ label: string;
101
+ title: string;
102
+ description: string;
103
+ };
104
+ type LocaleColorPicker = {
105
+ placeholder: string;
106
+ hue: string;
107
+ opacity: string;
108
+ saturationBrightness: string;
109
+ pickFromScreen: string;
110
+ hex: string;
111
+ rgb: string;
112
+ hsl: string;
113
+ opacityPercent: string;
114
+ };
115
+ type Locale = {
116
+ code: string;
117
+ DatePicker: LocaleDatePicker;
118
+ TimePicker: LocaleTimePicker;
119
+ Pagination: LocalePagination;
120
+ Upload: LocaleUpload;
121
+ Modal: {
122
+ close: string;
123
+ };
124
+ Feedback: {
125
+ close: string;
126
+ };
127
+ Alert: {
128
+ close: string;
129
+ };
130
+ ColorPicker: LocaleColorPicker;
131
+ Cascader: {
132
+ placeholder: string;
133
+ };
134
+ Loading: {
135
+ label: string;
136
+ };
137
+ Tag: {
138
+ remove: string;
139
+ };
140
+ NumberInput: {
141
+ increment: string;
142
+ decrement: string;
143
+ };
144
+ Textarea: {
145
+ resize: string;
146
+ };
147
+ Card: {
148
+ more: string;
149
+ };
150
+ List: {
151
+ more: string;
152
+ };
153
+ Breadcrumb: {
154
+ label: string;
155
+ showMore: string;
156
+ };
157
+ };
158
+ type LocaleComponentName = Exclude<keyof Locale, "code">;
159
+
160
+ /** Replace `${name}` placeholders (Semi-style). Unknown keys stay as-is. */
161
+ declare function interpolate(template: string, values: Record<string, string | number>): string;
162
+
163
+ type LocaleProviderProps = {
164
+ children: ReactNode;
165
+ /** Locale pack. Defaults to `zhCN`. */
166
+ locale?: Locale;
167
+ };
168
+ declare function LocaleProvider({ children, locale }: LocaleProviderProps): react.JSX.Element;
169
+
170
+ /** Current locale pack (falls back to zh-CN when no Provider). */
171
+ declare function useLocale(): Locale;
172
+ /** Messages for one component block (e.g. `Pagination`). */
173
+ declare function useLocaleMessages<K extends LocaleComponentName>(component: K): Locale[K];
174
+
175
+ declare const zhCN: Locale;
176
+
177
+ declare const enUS: Locale;
178
+
179
+ type Direction = "ltr" | "rtl";
180
+
181
+ type ConfigProviderProps = {
182
+ children: ReactNode;
183
+ /** Writing direction. Defaults to `ltr`. */
184
+ direction?: Direction;
185
+ /**
186
+ * When true (default), the outermost ConfigProvider that opts in writes
187
+ * `document.documentElement.dir` so portalled overlays inherit direction.
188
+ * Nested providers only set `dir` on their local wrapper.
189
+ */
190
+ syncDocumentDir?: boolean;
191
+ /** Optional locale pack — nests `LocaleProvider` when provided. */
192
+ locale?: Locale;
193
+ className?: string;
194
+ style?: CSSProperties;
195
+ };
196
+ declare function ConfigProvider({ children, direction, syncDocumentDir, locale, className, style, }: ConfigProviderProps): react.JSX.Element;
197
+
198
+ /** Current writing direction (`ltr` when no ConfigProvider). */
199
+ declare function useDirection(): Direction;
200
+ /** Convenience: `true` when direction is `rtl`. */
201
+ declare function useRtl(): boolean;
202
+
203
+ type PhysicalSide = "left" | "right";
204
+ /** Mirror a physical side under RTL (left ↔ right). */
205
+ declare function mirrorSide(side: PhysicalSide, rtl: boolean): PhysicalSide;
206
+ /** Same as `mirrorSide` but from a Direction value. */
207
+ declare function mirrorSideForDirection(side: PhysicalSide, direction: Direction): PhysicalSide;
208
+ /**
209
+ * Chevron that points toward "forward" / "expand" / "next" in the reading direction.
210
+ * LTR → right; RTL → left.
211
+ */
212
+ declare function forwardChevronSide(direction: Direction): PhysicalSide;
213
+ /**
214
+ * Chevron that points toward "back" / "previous" in the reading direction.
215
+ * LTR → left; RTL → right.
216
+ */
217
+ declare function backChevronSide(direction: Direction): PhysicalSide;
218
+
56
219
  /** Figma Components → Basic Input → Button */
57
- type ButtonMode = "primary" | "second" | "default" | "defaultCustom" | "noBackground" | "noBackgroundCustom" | "destructive";
220
+ type ButtonMode = "primary" | "second" | "default" | "defaultCustom" | "outline" | "outlineCustom" | "noBackground" | "noBackgroundCustom" | "destructive";
58
221
  type ButtonSize = "tiny" | "small" | "regular" | "big";
59
222
  declare const buttonVariants: (props?: ({
60
- mode?: "default" | "primary" | "second" | "defaultCustom" | "noBackground" | "noBackgroundCustom" | "destructive" | null | undefined;
223
+ mode?: "default" | "primary" | "second" | "defaultCustom" | "outline" | "outlineCustom" | "noBackground" | "noBackgroundCustom" | "destructive" | null | undefined;
61
224
  allRound?: boolean | null | undefined;
62
225
  compact?: boolean | null | undefined;
63
226
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -82,7 +245,7 @@ type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & Omit<VariantProps<t
82
245
  asChild?: boolean;
83
246
  };
84
247
  declare const Button: react.ForwardRefExoticComponent<ButtonHTMLAttributes<HTMLButtonElement> & Omit<VariantProps<(props?: ({
85
- mode?: "default" | "primary" | "second" | "defaultCustom" | "noBackground" | "noBackgroundCustom" | "destructive" | null | undefined;
248
+ mode?: "default" | "primary" | "second" | "defaultCustom" | "outline" | "outlineCustom" | "noBackground" | "noBackgroundCustom" | "destructive" | null | undefined;
86
249
  allRound?: boolean | null | undefined;
87
250
  compact?: boolean | null | undefined;
88
251
  } & class_variance_authority_types.ClassProp) | undefined) => string>, "mode"> & {
@@ -572,13 +735,19 @@ declare const Loading: react.ForwardRefExoticComponent<HTMLAttributes<HTMLSpanEl
572
735
 
573
736
  /** Figma Components → Information Collect → Checkbox */
574
737
  type CheckboxGroupDirection = "vertical" | "horizontal";
738
+ /** Figma Checkbox `Size` — Default → `default`, Huge → `huge` */
739
+ type CheckboxSize = "default" | "huge";
575
740
  type CheckboxProps = ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root> & {
576
741
  /** Figma Checkbox `Round` */
577
742
  round?: boolean;
743
+ /** Figma Checkbox `Size` */
744
+ size?: CheckboxSize;
578
745
  };
579
746
  declare const Checkbox: react.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & react.RefAttributes<HTMLButtonElement>, "ref"> & {
580
747
  /** Figma Checkbox `Round` */
581
748
  round?: boolean;
749
+ /** Figma Checkbox `Size` */
750
+ size?: CheckboxSize;
582
751
  } & react.RefAttributes<HTMLButtonElement>>;
583
752
  type CheckboxGroupProps = ComponentPropsWithoutRef<"div"> & {
584
753
  /** Figma Checkbox Input Group `Direction` */
@@ -689,13 +858,16 @@ declare const AnchorItem: react.ForwardRefExoticComponent<Omit<AnchorHTMLAttribu
689
858
 
690
859
  /** Figma Components → Basic Input → Segmentator */
691
860
  type SegmentatorMode = "nested" | "tiled";
861
+ type SegmentatorDirection = "horizontal" | "vertical";
692
862
  type SegmentatorGroupProps = Omit<React.HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> & {
693
863
  value?: string;
694
864
  defaultValue?: string;
695
865
  onValueChange?: (value: string) => void;
696
866
  mode?: SegmentatorMode;
867
+ /** Figma `direction` — horizontal (default) or vertical stack. */
868
+ direction?: SegmentatorDirection;
697
869
  allRound?: boolean;
698
- /** When true, the group fills its container and items split the width equally. */
870
+ /** When true, the group fills its container and items split the main axis equally. */
699
871
  equalWidth?: boolean;
700
872
  disabled?: boolean;
701
873
  };
@@ -704,8 +876,10 @@ declare const SegmentatorGroup: react.ForwardRefExoticComponent<Omit<react.HTMLA
704
876
  defaultValue?: string;
705
877
  onValueChange?: (value: string) => void;
706
878
  mode?: SegmentatorMode;
879
+ /** Figma `direction` — horizontal (default) or vertical stack. */
880
+ direction?: SegmentatorDirection;
707
881
  allRound?: boolean;
708
- /** When true, the group fills its container and items split the width equally. */
882
+ /** When true, the group fills its container and items split the main axis equally. */
709
883
  equalWidth?: boolean;
710
884
  disabled?: boolean;
711
885
  } & react.RefAttributes<HTMLDivElement>>;
@@ -724,7 +898,8 @@ declare const SegmentatorItem: react.ForwardRefExoticComponent<Omit<ButtonHTMLAt
724
898
 
725
899
  /** Figma Components → System Composition → Form (527:57461 / 527:57641) */
726
900
  type FormFieldDirection = "vertical" | "horizontal";
727
- type FormFieldProps = HTMLAttributes<HTMLDivElement> & {
901
+ /** Layout mode the original props-driven wrapper */
902
+ type FormFieldLayoutProps = HTMLAttributes<HTMLDivElement> & {
728
903
  label?: ReactNode;
729
904
  htmlFor?: string;
730
905
  description?: ReactNode;
@@ -735,19 +910,64 @@ type FormFieldProps = HTMLAttributes<HTMLDivElement> & {
735
910
  required?: boolean;
736
911
  /** Figma `Direction` — vertical stacks label above control; horizontal places label beside */
737
912
  direction?: FormFieldDirection;
913
+ children?: ReactNode;
738
914
  };
739
- declare const FormField: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
740
- label?: ReactNode;
741
- htmlFor?: string;
742
- description?: ReactNode;
915
+ /** Render arguments passed to `render` in react-hook-form mode */
916
+ type FormFieldRenderProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> = {
917
+ field: ControllerRenderProps<TFieldValues, TName>;
918
+ fieldState: ControllerFieldState;
919
+ formState: UseFormStateReturn<TFieldValues>;
920
+ /**
921
+ * Auto-generated control id. The field label is already wired to it via
922
+ * `htmlFor` — pass it to the underlying input (`<Input id={id} />`).
923
+ */
924
+ id: string;
925
+ };
926
+ /**
927
+ * react-hook-form mode — bind the field to a form via `name` (+ optional
928
+ * `control`; falls back to the surrounding `<Form>` context). Validation
929
+ * errors from the resolver (zod etc.) are rendered automatically unless the
930
+ * `error` prop overrides them.
931
+ */
932
+ type FormFieldControlledProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> = Omit<FormFieldLayoutProps, "children" | "htmlFor"> & Pick<UseControllerProps<TFieldValues, TName>, "rules" | "defaultValue" | "shouldUnregister" | "disabled"> & {
933
+ name: TName;
934
+ control?: Control<TFieldValues>;
935
+ render: (props: FormFieldRenderProps<TFieldValues, TName>) => ReactNode;
936
+ /** Overrides the validation error message shown under the control */
743
937
  error?: ReactNode;
744
- info?: ReactNode;
745
- /** Optional Alert / Feedback under the control */
746
- alert?: ReactNode;
747
- required?: boolean;
748
- /** Figma `Direction` vertical stacks label above control; horizontal places label beside */
749
- direction?: FormFieldDirection;
750
- } & react.RefAttributes<HTMLDivElement>>;
938
+ };
939
+ type FormFieldProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> = FormFieldLayoutProps | FormFieldControlledProps<TFieldValues, TName>;
940
+ /**
941
+ * FormField — layout wrapper around a form control, or a react-hook-form
942
+ * bound field when given `name` + `render` (shadcn-style).
943
+ *
944
+ * @example Layout mode
945
+ * <FormField label="Email" htmlFor="email" description="...">
946
+ * <Input id="email" />
947
+ * </FormField>
948
+ *
949
+ * @example react-hook-form + zod mode
950
+ * <Form {...form}>
951
+ * <form onSubmit={form.handleSubmit(onSubmit)}>
952
+ * <FormField
953
+ * control={form.control}
954
+ * name="email"
955
+ * label="Email"
956
+ * render={({ field, fieldState, id }) => (
957
+ * <Input id={id} error={fieldState.invalid} {...field} />
958
+ * )}
959
+ * />
960
+ * </form>
961
+ * </Form>
962
+ */
963
+ declare const FormField: {
964
+ <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>(props: FormFieldProps<TFieldValues, TName> & {
965
+ ref?: Ref<HTMLDivElement>;
966
+ }): ReactElement | null;
967
+ displayName?: string;
968
+ };
969
+ /** Alias of react-hook-form's FormProvider — wrap your form with it (shadcn-style `<Form {...form}>`) */
970
+ declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>({ children, watch, getValues, getFieldState, setError, clearErrors, setValue, setValues, trigger, formState, resetField, reset, resetDefaultValues, handleSubmit, unregister, control, register, setFocus, subscribe, }: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
751
971
 
752
972
  /** Figma Components → System Composition → Typography (128:85) */
753
973
  type TypographyLevel = "display" | "headline1" | "headline2" | "title" | "subtitle" | "text" | "caption";
@@ -883,6 +1103,10 @@ type UseColorPickerStateOptions = {
883
1103
  defaultFormat?: ColorFormat;
884
1104
  onFormatChange?: (format: ColorFormat) => void;
885
1105
  };
1106
+ /**
1107
+ * Keep HSVA as interaction source of truth so hue 360° (≡ hex red / 0°) does
1108
+ * not snap the spectrum thumb back to the start after a hex round-trip.
1109
+ */
886
1110
  declare function useColorPickerState({ value: controlledValue, defaultValue, onChange, format: controlledFormat, defaultFormat, onFormatChange, }: UseColorPickerStateOptions): {
887
1111
  value: string;
888
1112
  format: ColorFormat;
@@ -1322,6 +1546,7 @@ declare function Popover({ open: openProp, defaultOpen, onOpenChange, modal, ...
1322
1546
  declare const PopoverTrigger: react.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & react.RefAttributes<HTMLButtonElement>>;
1323
1547
  declare const PopoverAnchor: react.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & react.RefAttributes<HTMLDivElement>>;
1324
1548
  type PopoverAppearance = "default" | "tooltip" | "primary";
1549
+ type PopoverContentLevel = "caption" | "text";
1325
1550
  type PopoverContentProps = ComponentPropsWithoutRef<typeof PopoverPrimitive.Content> & {
1326
1551
  /** Render without Portal — use inside nested overlays. */
1327
1552
  portalled?: boolean;
@@ -1332,10 +1557,15 @@ type PopoverContentProps = ComponentPropsWithoutRef<typeof PopoverPrimitive.Cont
1332
1557
  /**
1333
1558
  * Visual skin of the surface:
1334
1559
  * - `default` — light bordered panel (select-menu aligned), text typography, stroked caret.
1335
- * - `tooltip` — shared inverted tooltip skin (dark, caption text, borderless, solid caret).
1560
+ * - `tooltip` — shared inverted tooltip skin (dark, caption text by default, borderless, solid caret).
1336
1561
  * - `primary` — brand primary surface with white text, borderless, solid caret.
1337
1562
  */
1338
1563
  appearance?: PopoverAppearance;
1564
+ /**
1565
+ * Typography level for the surface copy.
1566
+ * Defaults to `caption` for `appearance="tooltip"`, otherwise `text`.
1567
+ */
1568
+ level?: PopoverContentLevel;
1339
1569
  };
1340
1570
  declare const PopoverContent: react.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & {
1341
1571
  /** Render without Portal — use inside nested overlays. */
@@ -1347,10 +1577,15 @@ declare const PopoverContent: react.ForwardRefExoticComponent<Omit<PopoverPrimit
1347
1577
  /**
1348
1578
  * Visual skin of the surface:
1349
1579
  * - `default` — light bordered panel (select-menu aligned), text typography, stroked caret.
1350
- * - `tooltip` — shared inverted tooltip skin (dark, caption text, borderless, solid caret).
1580
+ * - `tooltip` — shared inverted tooltip skin (dark, caption text by default, borderless, solid caret).
1351
1581
  * - `primary` — brand primary surface with white text, borderless, solid caret.
1352
1582
  */
1353
1583
  appearance?: PopoverAppearance;
1584
+ /**
1585
+ * Typography level for the surface copy.
1586
+ * Defaults to `caption` for `appearance="tooltip"`, otherwise `text`.
1587
+ */
1588
+ level?: PopoverContentLevel;
1354
1589
  } & react.RefAttributes<HTMLDivElement>>;
1355
1590
 
1356
1591
  interface HoverPopoverProps {
@@ -1478,21 +1713,54 @@ declare const ModalFooter: react.ForwardRefExoticComponent<ModalFooterProps & re
1478
1713
 
1479
1714
  /** Default show delay — 300ms per ALD / Radix convention. */
1480
1715
  declare const TOOLTIP_DELAY_DURATION = 300;
1481
- type TooltipProviderProps = ComponentPropsWithoutRef<typeof TooltipPrimitive.Provider>;
1482
- declare function TooltipProvider({ delayDuration, skipDelayDuration, ...props }: TooltipProviderProps): react.JSX.Element;
1716
+ interface TooltipProviderProps {
1717
+ children: ReactNode;
1718
+ /**
1719
+ * Delay before the tooltip opens on hover, in ms.
1720
+ * Defaults to `TOOLTIP_DELAY_DURATION` (300). Pass `0` for instant open on hover.
1721
+ */
1722
+ delayDuration?: number;
1723
+ /**
1724
+ * When moving between tooltips, skip the open delay within this window (ms).
1725
+ */
1726
+ skipDelayDuration?: number;
1727
+ /** When true, hovering the tooltip content itself does not keep it open. */
1728
+ disableHoverableContent?: boolean;
1729
+ }
1730
+ /**
1731
+ * Provides shared hover-delay state for nested Tooltips.
1732
+ * Pass `delayDuration={0}` for instant open on hover.
1733
+ */
1734
+ declare function TooltipProvider({ children, delayDuration, skipDelayDuration, ...props }: TooltipProviderProps): react.JSX.Element;
1483
1735
  declare const Tooltip: react.FC<TooltipPrimitive.TooltipProps>;
1484
1736
  declare const TooltipTrigger: react.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & react.RefAttributes<HTMLButtonElement>>;
1737
+ type TooltipContentLevel = "caption" | "text";
1485
1738
  type TooltipContentProps = ComponentPropsWithoutRef<typeof TooltipPrimitive.Content> & {
1486
1739
  /** Show a caret arrow pointing at the trigger (default true). */
1487
1740
  showArrow?: boolean;
1741
+ /**
1742
+ * Typography level for the surface copy.
1743
+ * Figma default is `caption`; pass `text` for body-sized tooltip copy.
1744
+ */
1745
+ level?: TooltipContentLevel;
1488
1746
  };
1489
1747
  declare const TooltipContent: react.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & {
1490
1748
  /** Show a caret arrow pointing at the trigger (default true). */
1491
1749
  showArrow?: boolean;
1750
+ /**
1751
+ * Typography level for the surface copy.
1752
+ * Figma default is `caption`; pass `text` for body-sized tooltip copy.
1753
+ */
1754
+ level?: TooltipContentLevel;
1492
1755
  } & react.RefAttributes<HTMLDivElement>>;
1493
1756
 
1757
+ /** Default hold duration before a touch tooltip opens. */
1758
+ declare const RESPONSIVE_TOOLTIP_LONG_PRESS_MS = 500;
1494
1759
  interface ResponsiveTooltipProps {
1495
- /** Tooltip body — the same content is shown on desktop (hover) and touch (tap). */
1760
+ /**
1761
+ * Tooltip body — the same content is shown on desktop (hover) and touch
1762
+ * (long-press).
1763
+ */
1496
1764
  content: ReactNode;
1497
1765
  /** The trigger element. Rendered with `asChild`, so pass a single element. */
1498
1766
  children: ReactNode;
@@ -1506,8 +1774,19 @@ interface ResponsiveTooltipProps {
1506
1774
  collisionPadding?: number;
1507
1775
  /** Show the caret arrow pointing at the trigger. */
1508
1776
  showArrow?: boolean;
1509
- /** Hover open delay on desktop, in ms (ignored on touch). Requires a TooltipProvider ancestor. */
1777
+ /** Typography level for the content surface (default `caption`). */
1778
+ level?: TooltipContentLevel;
1779
+ /**
1780
+ * Hover open delay on desktop, in ms (ignored on touch).
1781
+ * Defaults to 300 (`TOOLTIP_DELAY_DURATION`). Pass `0` for instant open on hover.
1782
+ * Requires a TooltipProvider ancestor for shared delay context.
1783
+ */
1510
1784
  delayDuration?: number;
1785
+ /**
1786
+ * Hold duration on touch before the tip opens, in ms.
1787
+ * Defaults to 500 (`RESPONSIVE_TOOLTIP_LONG_PRESS_MS`).
1788
+ */
1789
+ longPressMs?: number;
1511
1790
  /** Controlled open state. */
1512
1791
  open?: boolean;
1513
1792
  /** Uncontrolled initial open state. */
@@ -1525,8 +1804,9 @@ interface ResponsiveTooltipProps {
1525
1804
  * right primitive for the device:
1526
1805
  * - Desktop (`pointer: fine`): Radix Tooltip — opens on hover and keyboard focus.
1527
1806
  * - Touch (`pointer: coarse`): Radix Popover with `appearance="tooltip"` — opens on
1528
- * tap, dismisses on outside tap / Escape, but keeps the tooltip visual skin
1529
- * (dark surface, caption text, solid caret) so it looks identical to desktop.
1807
+ * **long-press** (short tap still reaches the trigger’s own `onClick`), dismisses
1808
+ * on outside tap / Escape, and keeps the tooltip visual skin (dark surface,
1809
+ * caption text, solid caret) so it looks identical to desktop.
1530
1810
  *
1531
1811
  * The consumer API and the look are unchanged between devices; only the trigger
1532
1812
  * gesture differs. Animations are handled by the respective effect CSS
@@ -1540,7 +1820,7 @@ interface ResponsiveTooltipProps {
1540
1820
  * </ResponsiveTooltip>
1541
1821
  * </TooltipProvider>
1542
1822
  */
1543
- declare function ResponsiveTooltip({ content, children, side, align, sideOffset, collisionPadding, showArrow, delayDuration, open, defaultOpen, onOpenChange, contentClassName, }: ResponsiveTooltipProps): react.JSX.Element;
1823
+ declare function ResponsiveTooltip({ content, children, side, align, sideOffset, collisionPadding, showArrow, level, delayDuration, longPressMs, open: openProp, defaultOpen, onOpenChange, contentClassName, }: ResponsiveTooltipProps): react.JSX.Element;
1544
1824
 
1545
1825
  /** Figma Components → Response And Feedback → Feedback (553:58620) */
1546
1826
  type FeedbackType = "information" | "warning" | "wrong" | "success" | "normal";
@@ -1840,7 +2120,7 @@ declare const NavigationItemMenuTrigger: react.ForwardRefExoticComponent<Omit<Om
1840
2120
  children: ReactNode;
1841
2121
  } & react.RefAttributes<HTMLButtonElement>>;
1842
2122
  type NavigationItemMenuContentProps = ComponentPropsWithoutRef<typeof PopoverPrimitive.Content>;
1843
- /** Flyout surface — right of the item in vertical, below it in horizontal. */
2123
+ /** Flyout surface — forward of the item in vertical (LTR right / RTL left), below it in horizontal. */
1844
2124
  declare const NavigationItemMenuContent: react.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
1845
2125
  type NavigationItemMenuItemProps = Omit<ComponentPropsWithoutRef<"button">, "children" | "value"> & {
1846
2126
  value: string;
@@ -1860,23 +2140,83 @@ declare const NavigationItemMenuItem: react.ForwardRefExoticComponent<Omit<Omit<
1860
2140
  children: ReactNode;
1861
2141
  } & react.RefAttributes<HTMLButtonElement>>;
1862
2142
 
2143
+ /** Figma Components → Structure Navigation → Tab `Style` */
2144
+ type TabStyle = "default" | "card" | "tiled";
2145
+ /** Figma Components → Structure Navigation → Tab `Background` */
2146
+ type TabBackground = "none" | "default";
2147
+ type TabProps = Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "style"> & {
2148
+ /** Figma `Style` */
2149
+ style?: TabStyle;
2150
+ /** Figma `Background` */
2151
+ background?: TabBackground;
2152
+ value?: string;
2153
+ defaultValue?: string;
2154
+ onValueChange?: (value: string) => void;
2155
+ disabled?: boolean;
2156
+ /** Leading accessory (Figma SoltRight — visual start). */
2157
+ startSlot?: ReactNode;
2158
+ /** Trailing accessory (Figma SoltLeft / SoltLeft2 — visual end). */
2159
+ endSlot?: ReactNode;
2160
+ };
2161
+ /** Figma Components → Structure Navigation → Tab */
2162
+ declare const Tab: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "style" | "onChange"> & {
2163
+ /** Figma `Style` */
2164
+ style?: TabStyle;
2165
+ /** Figma `Background` */
2166
+ background?: TabBackground;
2167
+ value?: string;
2168
+ defaultValue?: string;
2169
+ onValueChange?: (value: string) => void;
2170
+ disabled?: boolean;
2171
+ /** Leading accessory (Figma SoltRight — visual start). */
2172
+ startSlot?: ReactNode;
2173
+ /** Trailing accessory (Figma SoltLeft / SoltLeft2 — visual end). */
2174
+ endSlot?: ReactNode;
2175
+ } & react.RefAttributes<HTMLDivElement>>;
2176
+ type TabItemProps = Omit<ButtonHTMLAttributes<HTMLButtonElement>, "value" | "children"> & {
2177
+ value: string;
2178
+ leftIcon?: ReactNode;
2179
+ children?: ReactNode;
2180
+ };
2181
+ /** Figma Components → Structure Navigation → TabItem (nested Button). */
2182
+ declare const TabItem: react.ForwardRefExoticComponent<Omit<ButtonHTMLAttributes<HTMLButtonElement>, "children" | "value"> & {
2183
+ value: string;
2184
+ leftIcon?: ReactNode;
2185
+ children?: ReactNode;
2186
+ } & react.RefAttributes<HTMLButtonElement>>;
2187
+
1863
2188
  /** Figma Components → Information Collect → Slider (384:21585) */
1864
2189
  type SliderSize = "default" | "big";
1865
2190
  type SliderType = "default" | "range";
2191
+ type SliderRootProps = Omit<ComponentPropsWithoutRef<typeof SliderPrimitive.Root>, "orientation">;
1866
2192
  declare const sliderVariants: (props?: ({
1867
2193
  size?: "default" | "big" | null | undefined;
1868
2194
  type?: "default" | "range" | null | undefined;
1869
2195
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1870
- type SliderProps = Omit<ComponentPropsWithoutRef<typeof SliderPrimitive.Root>, "orientation"> & VariantProps<typeof sliderVariants> & {
2196
+ type SliderProps = SliderRootProps & VariantProps<typeof sliderVariants> & {
1871
2197
  /** Figma `Type` — single thumb vs range (two thumbs) */
1872
2198
  type?: SliderType;
2199
+ /**
2200
+ * When true, hovering a thumb (and while dragging it) shows a value
2201
+ * tooltip bound to that thumb.
2202
+ */
2203
+ showValueTooltip?: boolean;
2204
+ /** Format the value tooltip label. Defaults to `String(value)`. */
2205
+ formatValueTooltip?: (value: number, index: number) => ReactNode;
1873
2206
  };
1874
- declare const Slider: react.ForwardRefExoticComponent<Omit<Omit<SliderPrimitive.SliderProps & react.RefAttributes<HTMLSpanElement>, "ref">, "orientation"> & VariantProps<(props?: ({
2207
+ declare const Slider: react.ForwardRefExoticComponent<SliderRootProps & VariantProps<(props?: ({
1875
2208
  size?: "default" | "big" | null | undefined;
1876
2209
  type?: "default" | "range" | null | undefined;
1877
2210
  } & class_variance_authority_types.ClassProp) | undefined) => string> & {
1878
2211
  /** Figma `Type` — single thumb vs range (two thumbs) */
1879
2212
  type?: SliderType;
2213
+ /**
2214
+ * When true, hovering a thumb (and while dragging it) shows a value
2215
+ * tooltip bound to that thumb.
2216
+ */
2217
+ showValueTooltip?: boolean;
2218
+ /** Format the value tooltip label. Defaults to `String(value)`. */
2219
+ formatValueTooltip?: (value: number, index: number) => ReactNode;
1880
2220
  } & react.RefAttributes<HTMLSpanElement>>;
1881
2221
 
1882
2222
  /** Figma Components → Information Collect → Upload (527:56239) */
@@ -2198,4 +2538,4 @@ declare function cn(...inputs: ClassValue[]): string;
2198
2538
  */
2199
2539
  declare function initKeyboardFocus(): void;
2200
2540
 
2201
- export { Alert, type AlertAppearance, type AlertProps, type AlertSize, type AlertType, Anchor, type AnchorIndentLevel, AnchorItem, type AnchorItemProps, type AnchorProps, Avatar, type AvatarContent, type AvatarLevel, type AvatarProps, Badge, type BadgeLevel, type BadgeLineHeightFix, type BadgeProps, type BadgeStyle, Breadcrumb, BreadcrumbEllipsis, BreadcrumbEllipsisItem, type BreadcrumbEllipsisItemProps, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, type BreadcrumbSize, Button, type ButtonMode, type ButtonProps, type ButtonSize, Card, CardBody, type CardBodyProps, CardBottom, type CardBottomProps, CardHead, type CardHeadProps, type CardProps, type CardSlotType, Cascader, CascaderColumn, type CascaderColumnProps, CascaderContent, type CascaderContentProps, CascaderField, type CascaderFieldProps, CascaderItem, type CascaderItemFunction, CascaderItemGroup, type CascaderItemGroupProps, type CascaderItemLayout, type CascaderItemProps, CascaderMenu, type CascaderMenuProps, type CascaderOption, CascaderOptionsMenu, type CascaderOptionsMenuProps, type CascaderProps, type CascaderSize, CascaderTrigger, type CascaderTriggerProps, Checkbox, CheckboxGroup, type CheckboxGroupDirection, type CheckboxGroupProps, CheckboxInput, type CheckboxInputProps, type CheckboxProps, type ColorFormat, ColorPickButton, type ColorPickButtonProps, ColorPicker, ColorPickerArea, type ColorPickerAreaProps, ColorPickerContent, type ColorPickerContentProps, ColorPickerInputs, type ColorPickerInputsProps, ColorPickerPanel, type ColorPickerPanelProps, ColorPickerPresets, type ColorPickerPresetsProps, type ColorPickerProps, ColorPickerSlider, type ColorPickerSliderProps, ColorPickerTrigger, type ColorPickerTriggerProps, DEFAULT_COLOR, DatePicker, DatePickerCalendar, type DatePickerCalendarProps, DatePickerContent, type DatePickerContentProps, DatePickerField, type DatePickerFieldProps, type DatePickerMode, type DatePickerPanel, type DatePickerProps, type DatePickerRangeProps, type DatePickerSingleProps, type DatePickerSize, type DatePickerTimeValue, DatePickerTrigger, type DatePickerTriggerProps, type DateRange, Feedback, type FeedbackMode, type FeedbackProps, type FeedbackSize, type FeedbackType, Fieldset, type FieldsetProps, FormField, type FormFieldDirection, type FormFieldProps, type HSVA, HoverPopover, type HoverPopoverProps, Input, InputGroup, InputGroupAddon, type InputGroupProps, type InputProps, type InputSize, Label, Link, type LinkLevel, type LinkMode, type LinkProps, List, ListDivider, type ListDividerProps, ListGroup, type ListGroupProps, ListItem, ListItemGroup, type ListItemGroupProps, type ListItemLeading, type ListItemProps, type ListItemType, type ListProps, ListSeparator, type ListSeparatorProps, ListTitle, type ListTitleProps, Loading, type LoadingButtonSize, type LoadingLevel, type LoadingMode, type LoadingProps, Modal, ModalBody, type ModalBodyProps, ModalClose, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, ModalHeaderText, type ModalHeaderTextProps, ModalOverlay, type ModalOverlayProps, ModalPortal, type ModalProps, type ModalSize, ModalTitle, type ModalTitleProps, ModalTrigger, Navigation, NavigationActions, type NavigationActionsProps, NavigationActionsSlot, type NavigationActionsSlotProps, type NavigationBackground, NavigationBrand, type NavigationBrandProps, NavigationBrandTitle, type NavigationBrandTitleProps, type NavigationDirection, NavigationGroup, type NavigationGroupProps, NavigationItem, NavigationItemGroup, type NavigationItemGroupProps, NavigationItemMenu, NavigationItemMenuContent, type NavigationItemMenuContentProps, NavigationItemMenuItem, type NavigationItemMenuItemProps, type NavigationItemMenuProps, NavigationItemMenuTrigger, type NavigationItemMenuTriggerProps, type NavigationItemProps, type NavigationItemType, type NavigationProps, NavigationSection, type NavigationSectionProps, NumberInput, type NumberInputProps, type NumberInputStyle, Pagehead, type PageheadProps, Pagination, type PaginationProps, Popover, PopoverAnchor, type PopoverAppearance, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, Progress, type ProgressProps, type ProgressShape, type ProgressSize, type ProgressType, RadioGroup, type RadioGroupDirection, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, RadioInput, type RadioInputProps, type RadioInputVariant, ResponsiveTooltip, type ResponsiveTooltipProps, Scroll, type ScrollOrientation, ScrollPicker, ScrollPickerColumn, type ScrollPickerColumnProps, ScrollPickerItem, type ScrollPickerItemProps, type ScrollPickerProps, type ScrollProps, type ScrollSize, SegmentatorGroup, type SegmentatorGroupProps, SegmentatorItem, type SegmentatorItemProps, type SegmentatorMode, Select, SelectContent, type SelectContentProps, SelectGroup, SelectItem, type SelectItemFunction, SelectItemGroup, type SelectItemGroupProps, type SelectItemLayout, SelectItemPeople, type SelectItemPeopleProps, type SelectItemProps, SelectLabel, type SelectLabelProps, SelectSeparator, type SelectSeparatorProps, type SelectSize, SelectSubItem, SelectSubItemPeople, type SelectSubItemPeopleProps, type SelectSubItemProps, SelectSubMenu, type SelectSubMenuProps, SelectTrigger, type SelectTriggerProps, SelectValue, Slider, type SliderProps, type SliderSize, type SliderType, Stack, type StackProps, Steps, type StepsDirection, StepsIcon, type StepsIconProps, StepsItem, type StepsItemProps, type StepsProps, type StepsState, Switch, type SwitchProps, type SwitchSize, TOOLTIP_DELAY_DURATION, Table, TableCell, type TableCellContent, type TableCellProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tag, TagClose, type TagCloseProps, type TagContent, type TagLevel, type TagLineHeightFix, type TagProps, Textarea, type TextareaProps, type TextareaSize, ThemeProvider, type ThemeProviderProps, ThemeScript, TimePicker, TimePickerContent, type TimePickerContentProps, TimePickerField, type TimePickerFieldProps, TimePickerPanel, type TimePickerPanelProps, type TimePickerProps, type TimePickerSize, TimePickerTrigger, type TimePickerTriggerProps, type TimePickerValue, TimePickerWheels, type TimePickerWheelsValue, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, type TooltipProviderProps, TooltipTrigger, Typeface, type TypefaceContent, TypefacePair, type TypefacePairProps, type TypefaceProps, Typography, type TypographyContent, type TypographyLevel, type TypographyProps, type TypographyTone, Upload, type UploadProps, type UploadStyle, type UseColorPickerStateOptions, alertVariants, buttonVariants, cn, formatDisplayDate, formatMonthYear, formatTimeValue, initKeyboardFocus, inputRootVariants, loadingLevelForButtonSize, modalContentVariants, numberInputRootVariants, parseDateInput, parseDateRangeInput, typographyVariants, useColorPickerState, useTheme, useThemeLayoutKey };
2541
+ export { Alert, type AlertAppearance, type AlertProps, type AlertSize, type AlertType, Anchor, type AnchorIndentLevel, AnchorItem, type AnchorItemProps, type AnchorProps, Avatar, type AvatarContent, type AvatarLevel, type AvatarProps, Badge, type BadgeLevel, type BadgeLineHeightFix, type BadgeProps, type BadgeStyle, Breadcrumb, BreadcrumbEllipsis, BreadcrumbEllipsisItem, type BreadcrumbEllipsisItemProps, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, type BreadcrumbSize, Button, type ButtonMode, type ButtonProps, type ButtonSize, Card, CardBody, type CardBodyProps, CardBottom, type CardBottomProps, CardHead, type CardHeadProps, type CardProps, type CardSlotType, Cascader, CascaderColumn, type CascaderColumnProps, CascaderContent, type CascaderContentProps, CascaderField, type CascaderFieldProps, CascaderItem, type CascaderItemFunction, CascaderItemGroup, type CascaderItemGroupProps, type CascaderItemLayout, type CascaderItemProps, CascaderMenu, type CascaderMenuProps, type CascaderOption, CascaderOptionsMenu, type CascaderOptionsMenuProps, type CascaderProps, type CascaderSize, CascaderTrigger, type CascaderTriggerProps, Checkbox, CheckboxGroup, type CheckboxGroupDirection, type CheckboxGroupProps, CheckboxInput, type CheckboxInputProps, type CheckboxProps, type CheckboxSize, type ColorFormat, ColorPickButton, type ColorPickButtonProps, ColorPicker, ColorPickerArea, type ColorPickerAreaProps, ColorPickerContent, type ColorPickerContentProps, ColorPickerInputs, type ColorPickerInputsProps, ColorPickerPanel, type ColorPickerPanelProps, ColorPickerPresets, type ColorPickerPresetsProps, type ColorPickerProps, ColorPickerSlider, type ColorPickerSliderProps, ColorPickerTrigger, type ColorPickerTriggerProps, ConfigProvider, type ConfigProviderProps, DEFAULT_COLOR, DatePicker, DatePickerCalendar, type DatePickerCalendarProps, DatePickerContent, type DatePickerContentProps, DatePickerField, type DatePickerFieldProps, type DatePickerMode, type DatePickerPanel, type DatePickerProps, type DatePickerRangeProps, type DatePickerSingleProps, type DatePickerSize, type DatePickerTimeValue, DatePickerTrigger, type DatePickerTriggerProps, type DateRange, type Direction, Feedback, type FeedbackMode, type FeedbackProps, type FeedbackSize, type FeedbackType, Fieldset, type FieldsetProps, Form, FormField, type FormFieldControlledProps, type FormFieldDirection, type FormFieldLayoutProps, type FormFieldProps, type FormFieldRenderProps, type HSVA, HoverPopover, type HoverPopoverProps, Input, InputGroup, InputGroupAddon, type InputGroupProps, type InputProps, type InputSize, Label, Link, type LinkLevel, type LinkMode, type LinkProps, List, ListDivider, type ListDividerProps, ListGroup, type ListGroupProps, ListItem, ListItemGroup, type ListItemGroupProps, type ListItemLeading, type ListItemProps, type ListItemType, type ListProps, ListSeparator, type ListSeparatorProps, ListTitle, type ListTitleProps, Loading, type LoadingButtonSize, type LoadingLevel, type LoadingMode, type LoadingProps, type Locale, type LocaleComponentName, LocaleProvider, type LocaleProviderProps, Modal, ModalBody, type ModalBodyProps, ModalClose, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, ModalHeaderText, type ModalHeaderTextProps, ModalOverlay, type ModalOverlayProps, ModalPortal, type ModalProps, type ModalSize, ModalTitle, type ModalTitleProps, ModalTrigger, Navigation, NavigationActions, type NavigationActionsProps, NavigationActionsSlot, type NavigationActionsSlotProps, type NavigationBackground, NavigationBrand, type NavigationBrandProps, NavigationBrandTitle, type NavigationBrandTitleProps, type NavigationDirection, NavigationGroup, type NavigationGroupProps, NavigationItem, NavigationItemGroup, type NavigationItemGroupProps, NavigationItemMenu, NavigationItemMenuContent, type NavigationItemMenuContentProps, NavigationItemMenuItem, type NavigationItemMenuItemProps, type NavigationItemMenuProps, NavigationItemMenuTrigger, type NavigationItemMenuTriggerProps, type NavigationItemProps, type NavigationItemType, type NavigationProps, NavigationSection, type NavigationSectionProps, NumberInput, type NumberInputProps, type NumberInputStyle, Pagehead, type PageheadProps, Pagination, type PaginationProps, type PhysicalSide, Popover, PopoverAnchor, type PopoverAppearance, PopoverContent, type PopoverContentLevel, type PopoverContentProps, type PopoverProps, PopoverTrigger, Progress, type ProgressProps, type ProgressShape, type ProgressSize, type ProgressType, RESPONSIVE_TOOLTIP_LONG_PRESS_MS, RadioGroup, type RadioGroupDirection, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, RadioInput, type RadioInputProps, type RadioInputVariant, ResponsiveTooltip, type ResponsiveTooltipProps, Scroll, type ScrollOrientation, ScrollPicker, ScrollPickerColumn, type ScrollPickerColumnProps, ScrollPickerItem, type ScrollPickerItemProps, type ScrollPickerProps, type ScrollProps, type ScrollSize, type SegmentatorDirection, SegmentatorGroup, type SegmentatorGroupProps, SegmentatorItem, type SegmentatorItemProps, type SegmentatorMode, Select, SelectContent, type SelectContentProps, SelectGroup, SelectItem, type SelectItemFunction, SelectItemGroup, type SelectItemGroupProps, type SelectItemLayout, SelectItemPeople, type SelectItemPeopleProps, type SelectItemProps, SelectLabel, type SelectLabelProps, SelectSeparator, type SelectSeparatorProps, type SelectSize, SelectSubItem, SelectSubItemPeople, type SelectSubItemPeopleProps, type SelectSubItemProps, SelectSubMenu, type SelectSubMenuProps, SelectTrigger, type SelectTriggerProps, SelectValue, Slider, type SliderProps, type SliderSize, type SliderType, Stack, type StackProps, Steps, type StepsDirection, StepsIcon, type StepsIconProps, StepsItem, type StepsItemProps, type StepsProps, type StepsState, Switch, type SwitchProps, type SwitchSize, TOOLTIP_DELAY_DURATION, Tab, type TabBackground, TabItem, type TabItemProps, type TabProps, type TabStyle, Table, TableCell, type TableCellContent, type TableCellProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tag, TagClose, type TagCloseProps, type TagContent, type TagLevel, type TagLineHeightFix, type TagProps, Textarea, type TextareaProps, type TextareaSize, ThemeProvider, type ThemeProviderProps, ThemeScript, TimePicker, TimePickerContent, type TimePickerContentProps, TimePickerField, type TimePickerFieldProps, TimePickerPanel, type TimePickerPanelProps, type TimePickerProps, type TimePickerSize, TimePickerTrigger, type TimePickerTriggerProps, type TimePickerValue, TimePickerWheels, type TimePickerWheelsValue, Tooltip, TooltipContent, type TooltipContentLevel, type TooltipContentProps, TooltipProvider, type TooltipProviderProps, TooltipTrigger, Typeface, type TypefaceContent, TypefacePair, type TypefacePairProps, type TypefaceProps, Typography, type TypographyContent, type TypographyLevel, type TypographyProps, type TypographyTone, Upload, type UploadProps, type UploadStyle, type UseColorPickerStateOptions, alertVariants, backChevronSide, buttonVariants, cn, enUS, formatDisplayDate, formatMonthYear, formatTimeValue, forwardChevronSide, initKeyboardFocus, inputRootVariants, interpolate, loadingLevelForButtonSize, mirrorSide, mirrorSideForDirection, modalContentVariants, numberInputRootVariants, parseDateInput, parseDateRangeInput, typographyVariants, useColorPickerState, useDirection, useLocale, useLocaleMessages, useRtl, useTheme, useThemeLayoutKey, zhCN };