@geomak/ui 5.9.0 → 6.0.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.cjs +244 -141
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +124 -37
- package/dist/index.d.ts +124 -37
- package/dist/index.js +245 -142
- package/dist/index.js.map +1 -1
- package/dist/styles.css +79 -27
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -707,6 +707,8 @@ interface TooltipProps {
|
|
|
707
707
|
delayDuration?: number;
|
|
708
708
|
/** Offset from trigger in px (default 8) */
|
|
709
709
|
sideOffset?: number;
|
|
710
|
+
/** Extra classes merged onto the tooltip content bubble. */
|
|
711
|
+
className?: string;
|
|
710
712
|
}
|
|
711
713
|
/**
|
|
712
714
|
* Tooltip powered by Radix Tooltip.
|
|
@@ -723,42 +725,105 @@ interface TooltipProps {
|
|
|
723
725
|
* </Tooltip>
|
|
724
726
|
* </TooltipProvider>
|
|
725
727
|
*/
|
|
726
|
-
declare function Tooltip({ children, title, placement, delayDuration, sideOffset, }: TooltipProps): react_jsx_runtime.JSX.Element;
|
|
728
|
+
declare function Tooltip({ children, title, placement, delayDuration, sideOffset, className, }: TooltipProps): react_jsx_runtime.JSX.Element;
|
|
727
729
|
|
|
728
730
|
declare const TooltipProvider: React__default.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
729
731
|
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
content: React__default.ReactNode;
|
|
734
|
-
}
|
|
732
|
+
type TabsVariant = 'underline' | 'segmented' | 'enclosed';
|
|
733
|
+
type TabsSize = 'sm' | 'md' | 'lg';
|
|
734
|
+
type TabsOrientation = 'horizontal' | 'vertical';
|
|
735
735
|
interface TabsProps {
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
736
|
+
/** Controlled active tab value. */
|
|
737
|
+
value?: string;
|
|
738
|
+
/** Uncontrolled initial active tab value. */
|
|
739
|
+
defaultValue?: string;
|
|
740
|
+
/** Fires with the next active value. */
|
|
741
|
+
onValueChange?: (value: string) => void;
|
|
742
|
+
/** Visual style. `'underline'` (default) | `'segmented'` | `'enclosed'`. */
|
|
743
|
+
variant?: TabsVariant;
|
|
744
|
+
/** Size preset. Default `'md'`. */
|
|
745
|
+
size?: TabsSize;
|
|
746
|
+
/** `'horizontal'` (default) strip + panel below, or `'vertical'` rail + panel beside. */
|
|
747
|
+
orientation?: TabsOrientation;
|
|
748
|
+
/** Extra classes merged onto the root. */
|
|
749
|
+
className?: string;
|
|
750
|
+
/** Inline style on the root. */
|
|
751
|
+
style?: React__default.CSSProperties;
|
|
752
|
+
children: React__default.ReactNode;
|
|
743
753
|
}
|
|
744
754
|
/**
|
|
745
|
-
*
|
|
755
|
+
* Compositional, motion-forward tab system on Radix Tabs.
|
|
746
756
|
*
|
|
747
|
-
*
|
|
748
|
-
*
|
|
749
|
-
*
|
|
757
|
+
* The active tab is marked by a thin cobalt indicator that *slides* between
|
|
758
|
+
* tabs (the design system's "one rare accent" rule, not a full-fill pill).
|
|
759
|
+
* Three variants — `underline` (signature), `segmented` (lifted-pill track),
|
|
760
|
+
* `enclosed` (folder tabs) — plus horizontal/vertical orientation, icons,
|
|
761
|
+
* count badges, closeable + add-tab, and overflow scrolling with chevrons that
|
|
762
|
+
* appear only when the strip actually overflows.
|
|
750
763
|
*
|
|
751
764
|
* @example
|
|
752
|
-
*
|
|
753
|
-
*
|
|
754
|
-
*
|
|
755
|
-
*
|
|
756
|
-
*
|
|
757
|
-
*
|
|
758
|
-
*
|
|
759
|
-
*
|
|
765
|
+
* ```tsx
|
|
766
|
+
* <Tabs defaultValue="overview" variant="underline">
|
|
767
|
+
* <Tabs.List aria-label="Sections">
|
|
768
|
+
* <Tabs.Trigger value="overview" icon={<HomeIcon />}>Overview</Tabs.Trigger>
|
|
769
|
+
* <Tabs.Trigger value="activity" badge={12}>Activity</Tabs.Trigger>
|
|
770
|
+
* </Tabs.List>
|
|
771
|
+
* <Tabs.Panel value="overview">…</Tabs.Panel>
|
|
772
|
+
* <Tabs.Panel value="activity">…</Tabs.Panel>
|
|
773
|
+
* </Tabs>
|
|
774
|
+
* ```
|
|
760
775
|
*/
|
|
761
|
-
declare function Tabs({
|
|
776
|
+
declare function Tabs({ value, defaultValue, onValueChange, variant, size, orientation, className, style, children, }: TabsProps): react_jsx_runtime.JSX.Element;
|
|
777
|
+
declare namespace Tabs {
|
|
778
|
+
var List: typeof TabsList;
|
|
779
|
+
var Trigger: typeof TabsTrigger;
|
|
780
|
+
var Panel: typeof TabsPanel;
|
|
781
|
+
var Add: typeof TabsAdd;
|
|
782
|
+
}
|
|
783
|
+
interface TabsListProps {
|
|
784
|
+
children: React__default.ReactNode;
|
|
785
|
+
/** Accessible name for the tab list. */
|
|
786
|
+
'aria-label'?: string;
|
|
787
|
+
/** Extra classes merged onto the tab strip. */
|
|
788
|
+
className?: string;
|
|
789
|
+
}
|
|
790
|
+
declare function TabsList({ children, 'aria-label': ariaLabel, className }: TabsListProps): react_jsx_runtime.JSX.Element;
|
|
791
|
+
interface TabsTriggerProps {
|
|
792
|
+
/** Value that activates this tab and its matching `<Tabs.Panel>`. */
|
|
793
|
+
value: string;
|
|
794
|
+
/** Optional leading icon. */
|
|
795
|
+
icon?: React__default.ReactNode;
|
|
796
|
+
/** Optional trailing count badge (number or node). */
|
|
797
|
+
badge?: React__default.ReactNode;
|
|
798
|
+
/** Render a × close button and call `onClose`. */
|
|
799
|
+
closeable?: boolean;
|
|
800
|
+
onClose?: () => void;
|
|
801
|
+
disabled?: boolean;
|
|
802
|
+
/** Extra classes merged onto the trigger. */
|
|
803
|
+
className?: string;
|
|
804
|
+
children: React__default.ReactNode;
|
|
805
|
+
}
|
|
806
|
+
declare function TabsTrigger({ value, icon, badge, closeable, onClose, disabled, className, children }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
|
|
807
|
+
interface TabsAddProps {
|
|
808
|
+
onClick?: () => void;
|
|
809
|
+
'aria-label'?: string;
|
|
810
|
+
className?: string;
|
|
811
|
+
}
|
|
812
|
+
declare function TabsAdd({ onClick, 'aria-label': ariaLabel, className }: TabsAddProps): react_jsx_runtime.JSX.Element;
|
|
813
|
+
interface TabsPanelProps {
|
|
814
|
+
/** Value of the tab this panel belongs to. */
|
|
815
|
+
value: string;
|
|
816
|
+
/**
|
|
817
|
+
* Keep the panel mounted when inactive (preserves scroll / form state).
|
|
818
|
+
* Default `false` — panels mount lazily on first activation.
|
|
819
|
+
*/
|
|
820
|
+
keepMounted?: boolean;
|
|
821
|
+
/** Extra classes merged onto the panel. */
|
|
822
|
+
className?: string;
|
|
823
|
+
style?: React__default.CSSProperties;
|
|
824
|
+
children: React__default.ReactNode;
|
|
825
|
+
}
|
|
826
|
+
declare function TabsPanel({ value, keepMounted, className, style, children }: TabsPanelProps): react_jsx_runtime.JSX.Element;
|
|
762
827
|
|
|
763
828
|
interface TreeNode {
|
|
764
829
|
key: string;
|
|
@@ -779,6 +844,10 @@ interface TreeProps {
|
|
|
779
844
|
onNodeClick: (payload: TreeItemClickPayload) => void;
|
|
780
845
|
defaultExpandAll?: boolean;
|
|
781
846
|
defaultExpandedKeys?: string[];
|
|
847
|
+
/** Extra classes merged onto the tree root. */
|
|
848
|
+
className?: string;
|
|
849
|
+
/** Inline style on the tree root. */
|
|
850
|
+
style?: React__default.CSSProperties;
|
|
782
851
|
}
|
|
783
852
|
/** ─────────────────── public component ─────────────────── */
|
|
784
853
|
/**
|
|
@@ -795,7 +864,7 @@ interface TreeProps {
|
|
|
795
864
|
* defaultExpandAll
|
|
796
865
|
* />
|
|
797
866
|
*/
|
|
798
|
-
declare function Tree({ nodes, onNodeClick, defaultExpandAll, defaultExpandedKeys, }: TreeProps): react_jsx_runtime.JSX.Element;
|
|
867
|
+
declare function Tree({ nodes, onNodeClick, defaultExpandAll, defaultExpandedKeys, className, style, }: TreeProps): react_jsx_runtime.JSX.Element;
|
|
799
868
|
|
|
800
869
|
/** ─────────────────── types ─────────────────── */
|
|
801
870
|
type NotificationType = 'info' | 'success' | 'warning' | 'danger';
|
|
@@ -873,6 +942,8 @@ interface LoadingSpinnerProps {
|
|
|
873
942
|
* previous state. Ignored when `inline` is true.
|
|
874
943
|
*/
|
|
875
944
|
backdropOpacity?: number;
|
|
945
|
+
/** Extra classes merged onto the spinner root. */
|
|
946
|
+
className?: string;
|
|
876
947
|
}
|
|
877
948
|
/**
|
|
878
949
|
* Enterprise-grade loading indicator.
|
|
@@ -917,7 +988,7 @@ interface LoadingSpinnerProps {
|
|
|
917
988
|
* />
|
|
918
989
|
* ```
|
|
919
990
|
*/
|
|
920
|
-
declare function LoadingSpinner({ prompt, size, inline, spinnerColor, textColor, backdropOpacity, }: LoadingSpinnerProps): react_jsx_runtime.JSX.Element;
|
|
991
|
+
declare function LoadingSpinner({ prompt, size, inline, spinnerColor, textColor, backdropOpacity, className, }: LoadingSpinnerProps): react_jsx_runtime.JSX.Element;
|
|
921
992
|
|
|
922
993
|
interface FadingBaseProps {
|
|
923
994
|
className?: string;
|
|
@@ -1039,6 +1110,8 @@ interface ScalableContainerProps {
|
|
|
1039
1110
|
* Default `'top-right'` — matches the OS-window convention.
|
|
1040
1111
|
*/
|
|
1041
1112
|
togglePosition?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
|
|
1113
|
+
/** Extra classes merged onto the container root. */
|
|
1114
|
+
className?: string;
|
|
1042
1115
|
}
|
|
1043
1116
|
/**
|
|
1044
1117
|
* Container that smoothly expands to fill its parent on click and
|
|
@@ -1065,7 +1138,7 @@ interface ScalableContainerProps {
|
|
|
1065
1138
|
* </ScalableContainer>
|
|
1066
1139
|
* ```
|
|
1067
1140
|
*/
|
|
1068
|
-
declare function ScalableContainer({ width, height, expandedWidth, expandedHeight, expanded, onExpandedChange, children, assignClassOnClick, expandIcon, collapseIcon, togglePosition, }: ScalableContainerProps): react_jsx_runtime.JSX.Element;
|
|
1141
|
+
declare function ScalableContainer({ width, height, expandedWidth, expandedHeight, expanded, onExpandedChange, children, assignClassOnClick, expandIcon, collapseIcon, togglePosition, className, }: ScalableContainerProps): react_jsx_runtime.JSX.Element;
|
|
1069
1142
|
|
|
1070
1143
|
interface GridCardItem {
|
|
1071
1144
|
key: string | number;
|
|
@@ -1106,6 +1179,8 @@ interface OpaqueGridCardProps {
|
|
|
1106
1179
|
isRight?: boolean;
|
|
1107
1180
|
buttonText?: string;
|
|
1108
1181
|
onOpen?: (item: GridCardItem) => void;
|
|
1182
|
+
/** Extra classes merged onto the card root. */
|
|
1183
|
+
className?: string;
|
|
1109
1184
|
}
|
|
1110
1185
|
/**
|
|
1111
1186
|
* Opaque carousel variant of GridCard (left or right edge of the carousel).
|
|
@@ -1116,29 +1191,33 @@ interface OpaqueGridCardProps {
|
|
|
1116
1191
|
* @example
|
|
1117
1192
|
* <OpaqueGridCard item={sideItem} isRight onOpen={({ to }) => navigate(to!)} />
|
|
1118
1193
|
*/
|
|
1119
|
-
declare function OpaqueGridCard({ item, isRight, buttonText, onOpen, }: OpaqueGridCardProps): react_jsx_runtime.JSX.Element;
|
|
1194
|
+
declare function OpaqueGridCard({ item, isRight, buttonText, onOpen, className, }: OpaqueGridCardProps): react_jsx_runtime.JSX.Element;
|
|
1120
1195
|
|
|
1121
1196
|
interface CatalogGridProps {
|
|
1122
1197
|
items: GridCardItem[];
|
|
1123
1198
|
buttonText?: string;
|
|
1124
1199
|
onOpen?: (item: GridCardItem) => void;
|
|
1200
|
+
/** Extra classes merged onto the grid root. */
|
|
1201
|
+
className?: string;
|
|
1125
1202
|
}
|
|
1126
1203
|
/**
|
|
1127
1204
|
* Wrapping flex grid of `GridCard` tiles.
|
|
1128
1205
|
*/
|
|
1129
|
-
declare function CatalogGrid({ items, buttonText, onOpen }: CatalogGridProps): react_jsx_runtime.JSX.Element;
|
|
1206
|
+
declare function CatalogGrid({ items, buttonText, onOpen, className }: CatalogGridProps): react_jsx_runtime.JSX.Element;
|
|
1130
1207
|
|
|
1131
1208
|
interface CatalogCarouselProps {
|
|
1132
1209
|
items: GridCardItem[];
|
|
1133
1210
|
buttonText?: string;
|
|
1134
1211
|
onOpen?: (item: GridCardItem) => void;
|
|
1212
|
+
/** Extra classes merged onto the carousel root. */
|
|
1213
|
+
className?: string;
|
|
1135
1214
|
}
|
|
1136
1215
|
/**
|
|
1137
1216
|
* Three-card carousel (previous → active (scaled) → next).
|
|
1138
1217
|
*
|
|
1139
1218
|
* Decoupled from ThemeContext — uses CSS `dark:` classes.
|
|
1140
1219
|
*/
|
|
1141
|
-
declare function CatalogCarousel({ items, buttonText, onOpen }: CatalogCarouselProps): react_jsx_runtime.JSX.Element;
|
|
1220
|
+
declare function CatalogCarousel({ items, buttonText, onOpen, className }: CatalogCarouselProps): react_jsx_runtime.JSX.Element;
|
|
1142
1221
|
|
|
1143
1222
|
interface CatalogProps {
|
|
1144
1223
|
/** 'grid' | 'carousel' */
|
|
@@ -1146,6 +1225,8 @@ interface CatalogProps {
|
|
|
1146
1225
|
items?: GridCardItem[];
|
|
1147
1226
|
buttonText?: string;
|
|
1148
1227
|
onOpen?: (item: GridCardItem) => void;
|
|
1228
|
+
/** Extra classes merged onto the catalog root. */
|
|
1229
|
+
className?: string;
|
|
1149
1230
|
}
|
|
1150
1231
|
/**
|
|
1151
1232
|
* Switches between grid and carousel layouts for a list of application tiles.
|
|
@@ -1153,7 +1234,7 @@ interface CatalogProps {
|
|
|
1153
1234
|
* @example
|
|
1154
1235
|
* <Catalog display="carousel" items={apps} onOpen={({ to }) => navigate(to!)} />
|
|
1155
1236
|
*/
|
|
1156
|
-
declare function Catalog({ display, items, buttonText, onOpen }: CatalogProps): react_jsx_runtime.JSX.Element;
|
|
1237
|
+
declare function Catalog({ display, items, buttonText, onOpen, className }: CatalogProps): react_jsx_runtime.JSX.Element;
|
|
1157
1238
|
|
|
1158
1239
|
/**
|
|
1159
1240
|
* A single action in the context menu.
|
|
@@ -1184,6 +1265,8 @@ interface ContextMenuProps {
|
|
|
1184
1265
|
* component / div / image — anything you can right-click on.
|
|
1185
1266
|
*/
|
|
1186
1267
|
children: React__default.ReactNode;
|
|
1268
|
+
/** Extra classes merged onto the menu content panel. */
|
|
1269
|
+
className?: string;
|
|
1187
1270
|
}
|
|
1188
1271
|
/**
|
|
1189
1272
|
* Right-click context menu, built on `@radix-ui/react-context-menu`.
|
|
@@ -1222,7 +1305,7 @@ interface ContextMenuProps {
|
|
|
1222
1305
|
* </ContextMenu>
|
|
1223
1306
|
* ```
|
|
1224
1307
|
*/
|
|
1225
|
-
declare function ContextMenu({ items, children }: ContextMenuProps): react_jsx_runtime.JSX.Element;
|
|
1308
|
+
declare function ContextMenu({ items, children, className }: ContextMenuProps): react_jsx_runtime.JSX.Element;
|
|
1226
1309
|
/** @deprecated The Radix rewrite positions the menu automatically — no coordinates needed. */
|
|
1227
1310
|
interface ContextMenuPosition {
|
|
1228
1311
|
x: number;
|
|
@@ -1449,6 +1532,8 @@ interface ThemeSwitchProps {
|
|
|
1449
1532
|
}) => void;
|
|
1450
1533
|
/** Optional accessible label (defaults to "Toggle dark mode") */
|
|
1451
1534
|
label?: string;
|
|
1535
|
+
/** Extra classes merged onto the root label. */
|
|
1536
|
+
className?: string;
|
|
1452
1537
|
}
|
|
1453
1538
|
/**
|
|
1454
1539
|
* Theme (dark-mode) toggle switch powered by Radix Switch.
|
|
@@ -1460,7 +1545,7 @@ interface ThemeSwitchProps {
|
|
|
1460
1545
|
* @example
|
|
1461
1546
|
* <ThemeSwitch checked={isDark} onChange={({ target }) => setDark(target.checked)} />
|
|
1462
1547
|
*/
|
|
1463
|
-
declare function ThemeSwitch({ checked, onChange, label }: ThemeSwitchProps): react_jsx_runtime.JSX.Element;
|
|
1548
|
+
declare function ThemeSwitch({ checked, onChange, label, className }: ThemeSwitchProps): react_jsx_runtime.JSX.Element;
|
|
1464
1549
|
|
|
1465
1550
|
interface TopBarProps {
|
|
1466
1551
|
/** Brand area — logo, wordmark, or app name. Rendered on the leading edge. */
|
|
@@ -2772,6 +2857,8 @@ interface DatePickerProps {
|
|
|
2772
2857
|
clearable?: boolean;
|
|
2773
2858
|
/** Size preset. Default `'md'`. */
|
|
2774
2859
|
size?: FieldSize;
|
|
2860
|
+
/** Extra classes merged onto the component root. */
|
|
2861
|
+
className?: string;
|
|
2775
2862
|
}
|
|
2776
2863
|
type TemporalPickerProps = DatePickerProps;
|
|
2777
2864
|
/**
|
|
@@ -2809,7 +2896,7 @@ type TemporalPickerProps = DatePickerProps;
|
|
|
2809
2896
|
* />
|
|
2810
2897
|
* ```
|
|
2811
2898
|
*/
|
|
2812
|
-
declare function DatePicker({ value, onChange, label, placeholder, htmlFor, name: _name, layout, helperText, required, disabled, errorMessage, min, max, style, format, weekStartsOn, clearable, size, }: DatePickerProps): react_jsx_runtime.JSX.Element;
|
|
2899
|
+
declare function DatePicker({ value, onChange, label, placeholder, htmlFor, name: _name, layout, helperText, required, disabled, errorMessage, min, max, style, format, weekStartsOn, clearable, size, className, }: DatePickerProps): react_jsx_runtime.JSX.Element;
|
|
2813
2900
|
|
|
2814
2901
|
interface TextAreaProps {
|
|
2815
2902
|
/** Controlled value. */
|
|
@@ -3744,4 +3831,4 @@ declare function expiryError(value: string, now?: Date): string | undefined;
|
|
|
3744
3831
|
/** Validate the CVV against the detected brand's expected length. */
|
|
3745
3832
|
declare function cvvError(value: string, cardNumber: string): string | undefined;
|
|
3746
3833
|
|
|
3747
|
-
export { AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarStatus, Box, type BoxBackground, type BoxBorder, type BoxProps, type BoxRadius, type BoxShadow, Button, type ButtonProps, CARD_BRANDS, type CardBrand, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, Checkbox, type CheckboxProps, ColorPicker, type ColorPickerProps, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, CreditCardForm, type CreditCardFormProps, type CreditCardValue, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, type DateRangePreset, Drawer, type DrawerProps, Dropdown, type DropdownItem, type DropdownProps, type ErrorMap, type ExpandRowOptions, FadingBase, type FadingBaseProps, Field, type FieldArrayItem, type FieldBindings, FieldHelpIcon, type FieldKind, FieldLabel, type FieldLabelProps, type FieldProps, type FieldRule, type FieldRules, type FieldShellOptions, type FieldSize, type FieldSnapshot, FileInput, type FileInputProps, Flex, type FlexAlign, type FlexDirection, type FlexJustify, type FlexProps, type FlexWrap, Form, FormContext, FormField, type FormFieldProps, type FormProps, FormStore, type FormStoreOptions, type FormValues, Grid, GridCard, type GridCardItem, type GridCardProps, type GridProps, Icon, IconButton, type IconButtonProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, Modal, type ModalProps, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, OtpInput, type OtpInputProps, type PaginationOptions, Password, type PasswordProps, Portal, type PortalProps, RadioGroup, type RadioGroupProps, type RadioOption, Rating, type RatingProps, type RulesMap, ScalableContainer, type ScalableContainerProps, SearchInput, type SearchInputProps, SegmentedControl, type SegmentedControlProps, type SegmentedOption, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, Slider, type SliderMark, type SliderProps, type SliderValue, type Spacing, Switch, type SwitchInputProps,
|
|
3834
|
+
export { AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarStatus, Box, type BoxBackground, type BoxBorder, type BoxProps, type BoxRadius, type BoxShadow, Button, type ButtonProps, CARD_BRANDS, type CardBrand, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, Checkbox, type CheckboxProps, ColorPicker, type ColorPickerProps, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, CreditCardForm, type CreditCardFormProps, type CreditCardValue, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, type DateRangePreset, Drawer, type DrawerProps, Dropdown, type DropdownItem, type DropdownProps, type ErrorMap, type ExpandRowOptions, FadingBase, type FadingBaseProps, Field, type FieldArrayItem, type FieldBindings, FieldHelpIcon, type FieldKind, FieldLabel, type FieldLabelProps, type FieldProps, type FieldRule, type FieldRules, type FieldShellOptions, type FieldSize, type FieldSnapshot, FileInput, type FileInputProps, Flex, type FlexAlign, type FlexDirection, type FlexJustify, type FlexProps, type FlexWrap, Form, FormContext, FormField, type FormFieldProps, type FormProps, FormStore, type FormStoreOptions, type FormValues, Grid, GridCard, type GridCardItem, type GridCardProps, type GridProps, Icon, IconButton, type IconButtonProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, Modal, type ModalProps, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, OtpInput, type OtpInputProps, type PaginationOptions, Password, type PasswordProps, Portal, type PortalProps, RadioGroup, type RadioGroupProps, type RadioOption, Rating, type RatingProps, type RulesMap, ScalableContainer, type ScalableContainerProps, SearchInput, type SearchInputProps, SegmentedControl, type SegmentedControlProps, type SegmentedOption, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, Slider, type SliderMark, type SliderProps, type SliderValue, type Spacing, Switch, type SwitchInputProps, Table, type TableColumn, type TableProps, Tabs, type TabsAddProps, type TabsListProps, type TabsOrientation, type TabsPanelProps, type TabsProps, type TabsSize, type TabsTriggerProps, type TabsVariant, TagsInput, type TagsInputProps, DatePicker as Temporal, type TemporalPickerProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, type ThemeColors, type ThemeConfig, type ThemeDensity, type ThemeMotion, ThemeProvider, type ThemeProviderProps, type ThemeRadius, type ThemeShadows, ThemeSwitch, type ThemeSwitchProps, type ThemeTypography, TimePicker, type TimePickerProps, Tooltip, type TooltipProps, TooltipProvider, TopBar, type TopBarProps, Tree, type TreeItemClickPayload, type TreeNode, type TreeProps, TreeSelect, type TreeSelectProps, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, type TypographyWeight, type UseFieldArrayReturn, type UseFormFieldOptions, type UseFormReturn, type ValidateTrigger, Wizard, type WizardProps, type WizardStep, cardNumberError, cvvError, detectBrand, expiryError, fieldShell, formatCardNumber, formatExpiry, isRequired, luhnValid, onlyDigits, patterns, runFieldRules, useFieldArray, useForm, useFormField, useFormStore, useNotification };
|
package/dist/index.d.ts
CHANGED
|
@@ -707,6 +707,8 @@ interface TooltipProps {
|
|
|
707
707
|
delayDuration?: number;
|
|
708
708
|
/** Offset from trigger in px (default 8) */
|
|
709
709
|
sideOffset?: number;
|
|
710
|
+
/** Extra classes merged onto the tooltip content bubble. */
|
|
711
|
+
className?: string;
|
|
710
712
|
}
|
|
711
713
|
/**
|
|
712
714
|
* Tooltip powered by Radix Tooltip.
|
|
@@ -723,42 +725,105 @@ interface TooltipProps {
|
|
|
723
725
|
* </Tooltip>
|
|
724
726
|
* </TooltipProvider>
|
|
725
727
|
*/
|
|
726
|
-
declare function Tooltip({ children, title, placement, delayDuration, sideOffset, }: TooltipProps): react_jsx_runtime.JSX.Element;
|
|
728
|
+
declare function Tooltip({ children, title, placement, delayDuration, sideOffset, className, }: TooltipProps): react_jsx_runtime.JSX.Element;
|
|
727
729
|
|
|
728
730
|
declare const TooltipProvider: React__default.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
729
731
|
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
content: React__default.ReactNode;
|
|
734
|
-
}
|
|
732
|
+
type TabsVariant = 'underline' | 'segmented' | 'enclosed';
|
|
733
|
+
type TabsSize = 'sm' | 'md' | 'lg';
|
|
734
|
+
type TabsOrientation = 'horizontal' | 'vertical';
|
|
735
735
|
interface TabsProps {
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
736
|
+
/** Controlled active tab value. */
|
|
737
|
+
value?: string;
|
|
738
|
+
/** Uncontrolled initial active tab value. */
|
|
739
|
+
defaultValue?: string;
|
|
740
|
+
/** Fires with the next active value. */
|
|
741
|
+
onValueChange?: (value: string) => void;
|
|
742
|
+
/** Visual style. `'underline'` (default) | `'segmented'` | `'enclosed'`. */
|
|
743
|
+
variant?: TabsVariant;
|
|
744
|
+
/** Size preset. Default `'md'`. */
|
|
745
|
+
size?: TabsSize;
|
|
746
|
+
/** `'horizontal'` (default) strip + panel below, or `'vertical'` rail + panel beside. */
|
|
747
|
+
orientation?: TabsOrientation;
|
|
748
|
+
/** Extra classes merged onto the root. */
|
|
749
|
+
className?: string;
|
|
750
|
+
/** Inline style on the root. */
|
|
751
|
+
style?: React__default.CSSProperties;
|
|
752
|
+
children: React__default.ReactNode;
|
|
743
753
|
}
|
|
744
754
|
/**
|
|
745
|
-
*
|
|
755
|
+
* Compositional, motion-forward tab system on Radix Tabs.
|
|
746
756
|
*
|
|
747
|
-
*
|
|
748
|
-
*
|
|
749
|
-
*
|
|
757
|
+
* The active tab is marked by a thin cobalt indicator that *slides* between
|
|
758
|
+
* tabs (the design system's "one rare accent" rule, not a full-fill pill).
|
|
759
|
+
* Three variants — `underline` (signature), `segmented` (lifted-pill track),
|
|
760
|
+
* `enclosed` (folder tabs) — plus horizontal/vertical orientation, icons,
|
|
761
|
+
* count badges, closeable + add-tab, and overflow scrolling with chevrons that
|
|
762
|
+
* appear only when the strip actually overflows.
|
|
750
763
|
*
|
|
751
764
|
* @example
|
|
752
|
-
*
|
|
753
|
-
*
|
|
754
|
-
*
|
|
755
|
-
*
|
|
756
|
-
*
|
|
757
|
-
*
|
|
758
|
-
*
|
|
759
|
-
*
|
|
765
|
+
* ```tsx
|
|
766
|
+
* <Tabs defaultValue="overview" variant="underline">
|
|
767
|
+
* <Tabs.List aria-label="Sections">
|
|
768
|
+
* <Tabs.Trigger value="overview" icon={<HomeIcon />}>Overview</Tabs.Trigger>
|
|
769
|
+
* <Tabs.Trigger value="activity" badge={12}>Activity</Tabs.Trigger>
|
|
770
|
+
* </Tabs.List>
|
|
771
|
+
* <Tabs.Panel value="overview">…</Tabs.Panel>
|
|
772
|
+
* <Tabs.Panel value="activity">…</Tabs.Panel>
|
|
773
|
+
* </Tabs>
|
|
774
|
+
* ```
|
|
760
775
|
*/
|
|
761
|
-
declare function Tabs({
|
|
776
|
+
declare function Tabs({ value, defaultValue, onValueChange, variant, size, orientation, className, style, children, }: TabsProps): react_jsx_runtime.JSX.Element;
|
|
777
|
+
declare namespace Tabs {
|
|
778
|
+
var List: typeof TabsList;
|
|
779
|
+
var Trigger: typeof TabsTrigger;
|
|
780
|
+
var Panel: typeof TabsPanel;
|
|
781
|
+
var Add: typeof TabsAdd;
|
|
782
|
+
}
|
|
783
|
+
interface TabsListProps {
|
|
784
|
+
children: React__default.ReactNode;
|
|
785
|
+
/** Accessible name for the tab list. */
|
|
786
|
+
'aria-label'?: string;
|
|
787
|
+
/** Extra classes merged onto the tab strip. */
|
|
788
|
+
className?: string;
|
|
789
|
+
}
|
|
790
|
+
declare function TabsList({ children, 'aria-label': ariaLabel, className }: TabsListProps): react_jsx_runtime.JSX.Element;
|
|
791
|
+
interface TabsTriggerProps {
|
|
792
|
+
/** Value that activates this tab and its matching `<Tabs.Panel>`. */
|
|
793
|
+
value: string;
|
|
794
|
+
/** Optional leading icon. */
|
|
795
|
+
icon?: React__default.ReactNode;
|
|
796
|
+
/** Optional trailing count badge (number or node). */
|
|
797
|
+
badge?: React__default.ReactNode;
|
|
798
|
+
/** Render a × close button and call `onClose`. */
|
|
799
|
+
closeable?: boolean;
|
|
800
|
+
onClose?: () => void;
|
|
801
|
+
disabled?: boolean;
|
|
802
|
+
/** Extra classes merged onto the trigger. */
|
|
803
|
+
className?: string;
|
|
804
|
+
children: React__default.ReactNode;
|
|
805
|
+
}
|
|
806
|
+
declare function TabsTrigger({ value, icon, badge, closeable, onClose, disabled, className, children }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
|
|
807
|
+
interface TabsAddProps {
|
|
808
|
+
onClick?: () => void;
|
|
809
|
+
'aria-label'?: string;
|
|
810
|
+
className?: string;
|
|
811
|
+
}
|
|
812
|
+
declare function TabsAdd({ onClick, 'aria-label': ariaLabel, className }: TabsAddProps): react_jsx_runtime.JSX.Element;
|
|
813
|
+
interface TabsPanelProps {
|
|
814
|
+
/** Value of the tab this panel belongs to. */
|
|
815
|
+
value: string;
|
|
816
|
+
/**
|
|
817
|
+
* Keep the panel mounted when inactive (preserves scroll / form state).
|
|
818
|
+
* Default `false` — panels mount lazily on first activation.
|
|
819
|
+
*/
|
|
820
|
+
keepMounted?: boolean;
|
|
821
|
+
/** Extra classes merged onto the panel. */
|
|
822
|
+
className?: string;
|
|
823
|
+
style?: React__default.CSSProperties;
|
|
824
|
+
children: React__default.ReactNode;
|
|
825
|
+
}
|
|
826
|
+
declare function TabsPanel({ value, keepMounted, className, style, children }: TabsPanelProps): react_jsx_runtime.JSX.Element;
|
|
762
827
|
|
|
763
828
|
interface TreeNode {
|
|
764
829
|
key: string;
|
|
@@ -779,6 +844,10 @@ interface TreeProps {
|
|
|
779
844
|
onNodeClick: (payload: TreeItemClickPayload) => void;
|
|
780
845
|
defaultExpandAll?: boolean;
|
|
781
846
|
defaultExpandedKeys?: string[];
|
|
847
|
+
/** Extra classes merged onto the tree root. */
|
|
848
|
+
className?: string;
|
|
849
|
+
/** Inline style on the tree root. */
|
|
850
|
+
style?: React__default.CSSProperties;
|
|
782
851
|
}
|
|
783
852
|
/** ─────────────────── public component ─────────────────── */
|
|
784
853
|
/**
|
|
@@ -795,7 +864,7 @@ interface TreeProps {
|
|
|
795
864
|
* defaultExpandAll
|
|
796
865
|
* />
|
|
797
866
|
*/
|
|
798
|
-
declare function Tree({ nodes, onNodeClick, defaultExpandAll, defaultExpandedKeys, }: TreeProps): react_jsx_runtime.JSX.Element;
|
|
867
|
+
declare function Tree({ nodes, onNodeClick, defaultExpandAll, defaultExpandedKeys, className, style, }: TreeProps): react_jsx_runtime.JSX.Element;
|
|
799
868
|
|
|
800
869
|
/** ─────────────────── types ─────────────────── */
|
|
801
870
|
type NotificationType = 'info' | 'success' | 'warning' | 'danger';
|
|
@@ -873,6 +942,8 @@ interface LoadingSpinnerProps {
|
|
|
873
942
|
* previous state. Ignored when `inline` is true.
|
|
874
943
|
*/
|
|
875
944
|
backdropOpacity?: number;
|
|
945
|
+
/** Extra classes merged onto the spinner root. */
|
|
946
|
+
className?: string;
|
|
876
947
|
}
|
|
877
948
|
/**
|
|
878
949
|
* Enterprise-grade loading indicator.
|
|
@@ -917,7 +988,7 @@ interface LoadingSpinnerProps {
|
|
|
917
988
|
* />
|
|
918
989
|
* ```
|
|
919
990
|
*/
|
|
920
|
-
declare function LoadingSpinner({ prompt, size, inline, spinnerColor, textColor, backdropOpacity, }: LoadingSpinnerProps): react_jsx_runtime.JSX.Element;
|
|
991
|
+
declare function LoadingSpinner({ prompt, size, inline, spinnerColor, textColor, backdropOpacity, className, }: LoadingSpinnerProps): react_jsx_runtime.JSX.Element;
|
|
921
992
|
|
|
922
993
|
interface FadingBaseProps {
|
|
923
994
|
className?: string;
|
|
@@ -1039,6 +1110,8 @@ interface ScalableContainerProps {
|
|
|
1039
1110
|
* Default `'top-right'` — matches the OS-window convention.
|
|
1040
1111
|
*/
|
|
1041
1112
|
togglePosition?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
|
|
1113
|
+
/** Extra classes merged onto the container root. */
|
|
1114
|
+
className?: string;
|
|
1042
1115
|
}
|
|
1043
1116
|
/**
|
|
1044
1117
|
* Container that smoothly expands to fill its parent on click and
|
|
@@ -1065,7 +1138,7 @@ interface ScalableContainerProps {
|
|
|
1065
1138
|
* </ScalableContainer>
|
|
1066
1139
|
* ```
|
|
1067
1140
|
*/
|
|
1068
|
-
declare function ScalableContainer({ width, height, expandedWidth, expandedHeight, expanded, onExpandedChange, children, assignClassOnClick, expandIcon, collapseIcon, togglePosition, }: ScalableContainerProps): react_jsx_runtime.JSX.Element;
|
|
1141
|
+
declare function ScalableContainer({ width, height, expandedWidth, expandedHeight, expanded, onExpandedChange, children, assignClassOnClick, expandIcon, collapseIcon, togglePosition, className, }: ScalableContainerProps): react_jsx_runtime.JSX.Element;
|
|
1069
1142
|
|
|
1070
1143
|
interface GridCardItem {
|
|
1071
1144
|
key: string | number;
|
|
@@ -1106,6 +1179,8 @@ interface OpaqueGridCardProps {
|
|
|
1106
1179
|
isRight?: boolean;
|
|
1107
1180
|
buttonText?: string;
|
|
1108
1181
|
onOpen?: (item: GridCardItem) => void;
|
|
1182
|
+
/** Extra classes merged onto the card root. */
|
|
1183
|
+
className?: string;
|
|
1109
1184
|
}
|
|
1110
1185
|
/**
|
|
1111
1186
|
* Opaque carousel variant of GridCard (left or right edge of the carousel).
|
|
@@ -1116,29 +1191,33 @@ interface OpaqueGridCardProps {
|
|
|
1116
1191
|
* @example
|
|
1117
1192
|
* <OpaqueGridCard item={sideItem} isRight onOpen={({ to }) => navigate(to!)} />
|
|
1118
1193
|
*/
|
|
1119
|
-
declare function OpaqueGridCard({ item, isRight, buttonText, onOpen, }: OpaqueGridCardProps): react_jsx_runtime.JSX.Element;
|
|
1194
|
+
declare function OpaqueGridCard({ item, isRight, buttonText, onOpen, className, }: OpaqueGridCardProps): react_jsx_runtime.JSX.Element;
|
|
1120
1195
|
|
|
1121
1196
|
interface CatalogGridProps {
|
|
1122
1197
|
items: GridCardItem[];
|
|
1123
1198
|
buttonText?: string;
|
|
1124
1199
|
onOpen?: (item: GridCardItem) => void;
|
|
1200
|
+
/** Extra classes merged onto the grid root. */
|
|
1201
|
+
className?: string;
|
|
1125
1202
|
}
|
|
1126
1203
|
/**
|
|
1127
1204
|
* Wrapping flex grid of `GridCard` tiles.
|
|
1128
1205
|
*/
|
|
1129
|
-
declare function CatalogGrid({ items, buttonText, onOpen }: CatalogGridProps): react_jsx_runtime.JSX.Element;
|
|
1206
|
+
declare function CatalogGrid({ items, buttonText, onOpen, className }: CatalogGridProps): react_jsx_runtime.JSX.Element;
|
|
1130
1207
|
|
|
1131
1208
|
interface CatalogCarouselProps {
|
|
1132
1209
|
items: GridCardItem[];
|
|
1133
1210
|
buttonText?: string;
|
|
1134
1211
|
onOpen?: (item: GridCardItem) => void;
|
|
1212
|
+
/** Extra classes merged onto the carousel root. */
|
|
1213
|
+
className?: string;
|
|
1135
1214
|
}
|
|
1136
1215
|
/**
|
|
1137
1216
|
* Three-card carousel (previous → active (scaled) → next).
|
|
1138
1217
|
*
|
|
1139
1218
|
* Decoupled from ThemeContext — uses CSS `dark:` classes.
|
|
1140
1219
|
*/
|
|
1141
|
-
declare function CatalogCarousel({ items, buttonText, onOpen }: CatalogCarouselProps): react_jsx_runtime.JSX.Element;
|
|
1220
|
+
declare function CatalogCarousel({ items, buttonText, onOpen, className }: CatalogCarouselProps): react_jsx_runtime.JSX.Element;
|
|
1142
1221
|
|
|
1143
1222
|
interface CatalogProps {
|
|
1144
1223
|
/** 'grid' | 'carousel' */
|
|
@@ -1146,6 +1225,8 @@ interface CatalogProps {
|
|
|
1146
1225
|
items?: GridCardItem[];
|
|
1147
1226
|
buttonText?: string;
|
|
1148
1227
|
onOpen?: (item: GridCardItem) => void;
|
|
1228
|
+
/** Extra classes merged onto the catalog root. */
|
|
1229
|
+
className?: string;
|
|
1149
1230
|
}
|
|
1150
1231
|
/**
|
|
1151
1232
|
* Switches between grid and carousel layouts for a list of application tiles.
|
|
@@ -1153,7 +1234,7 @@ interface CatalogProps {
|
|
|
1153
1234
|
* @example
|
|
1154
1235
|
* <Catalog display="carousel" items={apps} onOpen={({ to }) => navigate(to!)} />
|
|
1155
1236
|
*/
|
|
1156
|
-
declare function Catalog({ display, items, buttonText, onOpen }: CatalogProps): react_jsx_runtime.JSX.Element;
|
|
1237
|
+
declare function Catalog({ display, items, buttonText, onOpen, className }: CatalogProps): react_jsx_runtime.JSX.Element;
|
|
1157
1238
|
|
|
1158
1239
|
/**
|
|
1159
1240
|
* A single action in the context menu.
|
|
@@ -1184,6 +1265,8 @@ interface ContextMenuProps {
|
|
|
1184
1265
|
* component / div / image — anything you can right-click on.
|
|
1185
1266
|
*/
|
|
1186
1267
|
children: React__default.ReactNode;
|
|
1268
|
+
/** Extra classes merged onto the menu content panel. */
|
|
1269
|
+
className?: string;
|
|
1187
1270
|
}
|
|
1188
1271
|
/**
|
|
1189
1272
|
* Right-click context menu, built on `@radix-ui/react-context-menu`.
|
|
@@ -1222,7 +1305,7 @@ interface ContextMenuProps {
|
|
|
1222
1305
|
* </ContextMenu>
|
|
1223
1306
|
* ```
|
|
1224
1307
|
*/
|
|
1225
|
-
declare function ContextMenu({ items, children }: ContextMenuProps): react_jsx_runtime.JSX.Element;
|
|
1308
|
+
declare function ContextMenu({ items, children, className }: ContextMenuProps): react_jsx_runtime.JSX.Element;
|
|
1226
1309
|
/** @deprecated The Radix rewrite positions the menu automatically — no coordinates needed. */
|
|
1227
1310
|
interface ContextMenuPosition {
|
|
1228
1311
|
x: number;
|
|
@@ -1449,6 +1532,8 @@ interface ThemeSwitchProps {
|
|
|
1449
1532
|
}) => void;
|
|
1450
1533
|
/** Optional accessible label (defaults to "Toggle dark mode") */
|
|
1451
1534
|
label?: string;
|
|
1535
|
+
/** Extra classes merged onto the root label. */
|
|
1536
|
+
className?: string;
|
|
1452
1537
|
}
|
|
1453
1538
|
/**
|
|
1454
1539
|
* Theme (dark-mode) toggle switch powered by Radix Switch.
|
|
@@ -1460,7 +1545,7 @@ interface ThemeSwitchProps {
|
|
|
1460
1545
|
* @example
|
|
1461
1546
|
* <ThemeSwitch checked={isDark} onChange={({ target }) => setDark(target.checked)} />
|
|
1462
1547
|
*/
|
|
1463
|
-
declare function ThemeSwitch({ checked, onChange, label }: ThemeSwitchProps): react_jsx_runtime.JSX.Element;
|
|
1548
|
+
declare function ThemeSwitch({ checked, onChange, label, className }: ThemeSwitchProps): react_jsx_runtime.JSX.Element;
|
|
1464
1549
|
|
|
1465
1550
|
interface TopBarProps {
|
|
1466
1551
|
/** Brand area — logo, wordmark, or app name. Rendered on the leading edge. */
|
|
@@ -2772,6 +2857,8 @@ interface DatePickerProps {
|
|
|
2772
2857
|
clearable?: boolean;
|
|
2773
2858
|
/** Size preset. Default `'md'`. */
|
|
2774
2859
|
size?: FieldSize;
|
|
2860
|
+
/** Extra classes merged onto the component root. */
|
|
2861
|
+
className?: string;
|
|
2775
2862
|
}
|
|
2776
2863
|
type TemporalPickerProps = DatePickerProps;
|
|
2777
2864
|
/**
|
|
@@ -2809,7 +2896,7 @@ type TemporalPickerProps = DatePickerProps;
|
|
|
2809
2896
|
* />
|
|
2810
2897
|
* ```
|
|
2811
2898
|
*/
|
|
2812
|
-
declare function DatePicker({ value, onChange, label, placeholder, htmlFor, name: _name, layout, helperText, required, disabled, errorMessage, min, max, style, format, weekStartsOn, clearable, size, }: DatePickerProps): react_jsx_runtime.JSX.Element;
|
|
2899
|
+
declare function DatePicker({ value, onChange, label, placeholder, htmlFor, name: _name, layout, helperText, required, disabled, errorMessage, min, max, style, format, weekStartsOn, clearable, size, className, }: DatePickerProps): react_jsx_runtime.JSX.Element;
|
|
2813
2900
|
|
|
2814
2901
|
interface TextAreaProps {
|
|
2815
2902
|
/** Controlled value. */
|
|
@@ -3744,4 +3831,4 @@ declare function expiryError(value: string, now?: Date): string | undefined;
|
|
|
3744
3831
|
/** Validate the CVV against the detected brand's expected length. */
|
|
3745
3832
|
declare function cvvError(value: string, cardNumber: string): string | undefined;
|
|
3746
3833
|
|
|
3747
|
-
export { AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarStatus, Box, type BoxBackground, type BoxBorder, type BoxProps, type BoxRadius, type BoxShadow, Button, type ButtonProps, CARD_BRANDS, type CardBrand, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, Checkbox, type CheckboxProps, ColorPicker, type ColorPickerProps, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, CreditCardForm, type CreditCardFormProps, type CreditCardValue, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, type DateRangePreset, Drawer, type DrawerProps, Dropdown, type DropdownItem, type DropdownProps, type ErrorMap, type ExpandRowOptions, FadingBase, type FadingBaseProps, Field, type FieldArrayItem, type FieldBindings, FieldHelpIcon, type FieldKind, FieldLabel, type FieldLabelProps, type FieldProps, type FieldRule, type FieldRules, type FieldShellOptions, type FieldSize, type FieldSnapshot, FileInput, type FileInputProps, Flex, type FlexAlign, type FlexDirection, type FlexJustify, type FlexProps, type FlexWrap, Form, FormContext, FormField, type FormFieldProps, type FormProps, FormStore, type FormStoreOptions, type FormValues, Grid, GridCard, type GridCardItem, type GridCardProps, type GridProps, Icon, IconButton, type IconButtonProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, Modal, type ModalProps, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, OtpInput, type OtpInputProps, type PaginationOptions, Password, type PasswordProps, Portal, type PortalProps, RadioGroup, type RadioGroupProps, type RadioOption, Rating, type RatingProps, type RulesMap, ScalableContainer, type ScalableContainerProps, SearchInput, type SearchInputProps, SegmentedControl, type SegmentedControlProps, type SegmentedOption, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, Slider, type SliderMark, type SliderProps, type SliderValue, type Spacing, Switch, type SwitchInputProps,
|
|
3834
|
+
export { AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarStatus, Box, type BoxBackground, type BoxBorder, type BoxProps, type BoxRadius, type BoxShadow, Button, type ButtonProps, CARD_BRANDS, type CardBrand, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, Checkbox, type CheckboxProps, ColorPicker, type ColorPickerProps, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, CreditCardForm, type CreditCardFormProps, type CreditCardValue, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, type DateRangePreset, Drawer, type DrawerProps, Dropdown, type DropdownItem, type DropdownProps, type ErrorMap, type ExpandRowOptions, FadingBase, type FadingBaseProps, Field, type FieldArrayItem, type FieldBindings, FieldHelpIcon, type FieldKind, FieldLabel, type FieldLabelProps, type FieldProps, type FieldRule, type FieldRules, type FieldShellOptions, type FieldSize, type FieldSnapshot, FileInput, type FileInputProps, Flex, type FlexAlign, type FlexDirection, type FlexJustify, type FlexProps, type FlexWrap, Form, FormContext, FormField, type FormFieldProps, type FormProps, FormStore, type FormStoreOptions, type FormValues, Grid, GridCard, type GridCardItem, type GridCardProps, type GridProps, Icon, IconButton, type IconButtonProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, Modal, type ModalProps, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, OtpInput, type OtpInputProps, type PaginationOptions, Password, type PasswordProps, Portal, type PortalProps, RadioGroup, type RadioGroupProps, type RadioOption, Rating, type RatingProps, type RulesMap, ScalableContainer, type ScalableContainerProps, SearchInput, type SearchInputProps, SegmentedControl, type SegmentedControlProps, type SegmentedOption, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, Slider, type SliderMark, type SliderProps, type SliderValue, type Spacing, Switch, type SwitchInputProps, Table, type TableColumn, type TableProps, Tabs, type TabsAddProps, type TabsListProps, type TabsOrientation, type TabsPanelProps, type TabsProps, type TabsSize, type TabsTriggerProps, type TabsVariant, TagsInput, type TagsInputProps, DatePicker as Temporal, type TemporalPickerProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, type ThemeColors, type ThemeConfig, type ThemeDensity, type ThemeMotion, ThemeProvider, type ThemeProviderProps, type ThemeRadius, type ThemeShadows, ThemeSwitch, type ThemeSwitchProps, type ThemeTypography, TimePicker, type TimePickerProps, Tooltip, type TooltipProps, TooltipProvider, TopBar, type TopBarProps, Tree, type TreeItemClickPayload, type TreeNode, type TreeProps, TreeSelect, type TreeSelectProps, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, type TypographyWeight, type UseFieldArrayReturn, type UseFormFieldOptions, type UseFormReturn, type ValidateTrigger, Wizard, type WizardProps, type WizardStep, cardNumberError, cvvError, detectBrand, expiryError, fieldShell, formatCardNumber, formatExpiry, isRequired, luhnValid, onlyDigits, patterns, runFieldRules, useFieldArray, useForm, useFormField, useFormStore, useNotification };
|