@etus/ui 0.4.0-beta.13 → 0.4.0-beta.15
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/chunk-FES2I2OT.js +3 -0
- package/dist/{chunk-6Z73ZQOP.js.map → chunk-FES2I2OT.js.map} +1 -1
- package/dist/chunk-K4MYVFWQ.js +109 -0
- package/dist/chunk-K4MYVFWQ.js.map +1 -0
- package/dist/chunk-KDJCZXLB.js +91 -0
- package/dist/chunk-KDJCZXLB.js.map +1 -0
- package/dist/{chunk-P27ERD6W.js → chunk-MDIXY44D.js} +2 -2
- package/dist/{chunk-P27ERD6W.js.map → chunk-MDIXY44D.js.map} +1 -1
- package/dist/chunk-OOJO4QGD.js +3 -0
- package/dist/{chunk-ATIEGLR2.js.map → chunk-OOJO4QGD.js.map} +1 -1
- package/dist/chunk-VORFH6HQ.js +46 -0
- package/dist/chunk-VORFH6HQ.js.map +1 -0
- package/dist/components/advanced/index.js +6 -6
- package/dist/components/data-display/DataTable/index.js +1 -1
- package/dist/components/data-display/FeatureItem/index.js +6 -0
- package/dist/components/data-display/index.js +15 -13
- package/dist/components/feedback/index.js +2 -2
- package/dist/components/forms/index.js +14 -14
- package/dist/components/index.js +90 -88
- package/dist/components/layout/index.js +1 -1
- package/dist/components/navigation/LogoConta/index.js +5 -0
- package/dist/components/navigation/LogoConta/index.js.map +1 -0
- package/dist/components/navigation/index.js +5 -4
- package/dist/components/primitives/ArrowAnimated/index.js +2 -89
- package/dist/components/primitives/ArrowAnimated/index.js.map +1 -1
- package/dist/components/primitives/index.js +12 -12
- package/dist/components/workflow/index.js +4 -4
- package/dist/index.d.ts +444 -306
- package/dist/index.js +90 -88
- package/dist/styles.css +27 -48
- package/package.json +2 -2
- package/dist/chunk-6Z73ZQOP.js +0 -3
- package/dist/chunk-ATIEGLR2.js +0 -3
- package/dist/chunk-N23L6UDK.js +0 -108
- package/dist/chunk-N23L6UDK.js.map +0 -1
- package/dist/components/data-display/DashboardFilterbar/index.js +0 -111
- package/dist/components/data-display/DashboardFilterbar/index.js.map +0 -1
- package/dist/components/navigation/MobileSidebar/index.js +0 -190
- package/dist/components/navigation/MobileSidebar/index.js.map +0 -1
- package/dist/components/navigation/UserProfileDropdown/index.js +0 -224
- package/dist/components/navigation/UserProfileDropdown/index.js.map +0 -1
- package/dist/components/navigation/WorkspaceDropdown/index.js +0 -192
- package/dist/components/navigation/WorkspaceDropdown/index.js.map +0 -1
- package/dist/components/primitives/FeatureItem/index.js +0 -5
- /package/dist/components/{primitives → data-display}/FeatureItem/index.js.map +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
|
4
|
+
export { VariantProps as GaugeChartVariantProps } from 'class-variance-authority';
|
|
2
5
|
import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
|
|
3
6
|
import * as React$1 from 'react';
|
|
4
7
|
import React__default, { ComponentProps, ReactNode, CSSProperties, Ref, ComponentPropsWithoutRef, ComponentRef, MouseEvent as MouseEvent$1, HTMLAttributes, ReactElement, RefObject, ComponentType, ErrorInfo, Component, SVGProps } from 'react';
|
|
5
|
-
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
6
8
|
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
7
|
-
import { VariantProps } from 'class-variance-authority';
|
|
8
|
-
export { VariantProps as GaugeChartVariantProps } from 'class-variance-authority';
|
|
9
9
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
10
10
|
import { LucideIcon, LucideProps } from 'lucide-react';
|
|
11
11
|
export { LucideIcon, LucideProps } from 'lucide-react';
|
|
@@ -58,6 +58,62 @@ import { Editor, JSONContent } from '@tiptap/react';
|
|
|
58
58
|
export { cn } from './lib/utils.js';
|
|
59
59
|
import 'clsx';
|
|
60
60
|
|
|
61
|
+
/**
|
|
62
|
+
* ArrowAnimated style variants using CVA
|
|
63
|
+
*/
|
|
64
|
+
declare const arrowAnimatedVariants: (props?: ({
|
|
65
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
66
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
67
|
+
declare const arrowAnimatedLineVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
68
|
+
declare const arrowAnimatedHeadVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
69
|
+
declare const arrowAnimatedHeadTransforms: {
|
|
70
|
+
readonly right: "group-hover:translate-x-[3px]";
|
|
71
|
+
readonly left: "group-hover:-translate-x-[3px]";
|
|
72
|
+
readonly up: "group-hover:-translate-y-[3px]";
|
|
73
|
+
readonly down: "group-hover:translate-y-[3px]";
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Props for ArrowAnimated
|
|
78
|
+
*/
|
|
79
|
+
interface ArrowAnimatedProps extends React.SVGProps<SVGSVGElement>, VariantProps<typeof arrowAnimatedVariants> {
|
|
80
|
+
/** Additional CSS classes */
|
|
81
|
+
className?: string;
|
|
82
|
+
/** Arrow direction */
|
|
83
|
+
direction?: "down" | "left" | "right" | "up";
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* ArrowAnimated - Animated arrow icon for CTAs and links
|
|
88
|
+
*
|
|
89
|
+
* An SVG arrow that animates on hover (when parent has `group` class).
|
|
90
|
+
* The line fades in and the arrow head translates in the direction of the arrow.
|
|
91
|
+
*
|
|
92
|
+
* @example
|
|
93
|
+
* ```tsx
|
|
94
|
+
* // Basic usage (requires parent with 'group' class)
|
|
95
|
+
* <a href="/link" className="group flex items-center">
|
|
96
|
+
* Learn more
|
|
97
|
+
* <ArrowAnimated className="ml-1" />
|
|
98
|
+
* </a>
|
|
99
|
+
*
|
|
100
|
+
* // Different directions
|
|
101
|
+
* <ArrowAnimated direction="right" />
|
|
102
|
+
* <ArrowAnimated direction="left" />
|
|
103
|
+
* <ArrowAnimated direction="up" />
|
|
104
|
+
* <ArrowAnimated direction="down" />
|
|
105
|
+
*
|
|
106
|
+
* // Different sizes
|
|
107
|
+
* <ArrowAnimated size="sm" />
|
|
108
|
+
* <ArrowAnimated size="md" />
|
|
109
|
+
* <ArrowAnimated size="lg" />
|
|
110
|
+
* ```
|
|
111
|
+
*/
|
|
112
|
+
declare function ArrowAnimated({ direction, size, className, ...props }: ArrowAnimatedProps): react_jsx_runtime.JSX.Element;
|
|
113
|
+
declare namespace ArrowAnimated {
|
|
114
|
+
var displayName: string;
|
|
115
|
+
}
|
|
116
|
+
|
|
61
117
|
declare function AspectRatio({ ...props }: React.ComponentProps<typeof AspectRatioPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
62
118
|
|
|
63
119
|
/**
|
|
@@ -189,7 +245,7 @@ type AvatarSize = NonNullable<VariantProps<typeof avatarVariants>["size"]>;
|
|
|
189
245
|
type AvatarShape = NonNullable<VariantProps<typeof avatarVariants>["shape"]>;
|
|
190
246
|
|
|
191
247
|
declare const avatarVariants: (props?: ({
|
|
192
|
-
size?: "
|
|
248
|
+
size?: "sm" | "lg" | "default" | "xs" | "xl" | "3xl" | "4xl" | null | undefined;
|
|
193
249
|
shape?: "circle" | null | undefined;
|
|
194
250
|
bordered?: boolean | null | undefined;
|
|
195
251
|
interactive?: boolean | null | undefined;
|
|
@@ -203,7 +259,7 @@ declare function AvatarFallback({ className, colorScheme, ...props }: AvatarFall
|
|
|
203
259
|
|
|
204
260
|
declare const avatarStatusVariants: (props?: ({
|
|
205
261
|
status?: "online" | "offline" | "busy" | "away" | null | undefined;
|
|
206
|
-
size?: "
|
|
262
|
+
size?: "sm" | "lg" | "default" | "xs" | "xl" | null | undefined;
|
|
207
263
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
208
264
|
interface AvatarStatusProps extends React$1.ComponentProps<"span"> {
|
|
209
265
|
/**
|
|
@@ -221,7 +277,7 @@ declare function AvatarStatus({ className, status, size, ...props }: AvatarStatu
|
|
|
221
277
|
|
|
222
278
|
declare const avatarBadgeVariants: (props?: ({
|
|
223
279
|
variant?: "company" | "verified" | null | undefined;
|
|
224
|
-
size?: "
|
|
280
|
+
size?: "sm" | "lg" | "default" | "xs" | "xl" | null | undefined;
|
|
225
281
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
226
282
|
interface AvatarBadgeProps extends React$1.ComponentProps<"span"> {
|
|
227
283
|
/**
|
|
@@ -238,7 +294,7 @@ interface AvatarBadgeProps extends React$1.ComponentProps<"span"> {
|
|
|
238
294
|
declare function AvatarBadge({ className, variant, size, children, ...props }: AvatarBadgeProps): react_jsx_runtime.JSX.Element;
|
|
239
295
|
|
|
240
296
|
declare const avatarGroupVariants: (props?: ({
|
|
241
|
-
size?: "
|
|
297
|
+
size?: "sm" | "lg" | "default" | "xs" | "xl" | "3xl" | "4xl" | null | undefined;
|
|
242
298
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
243
299
|
interface AvatarGroupProps extends React$1.ComponentProps<"div"> {
|
|
244
300
|
/**
|
|
@@ -321,7 +377,7 @@ declare function getInitials(name: string): string;
|
|
|
321
377
|
declare function AvatarLabelGroup({ className, src, alt, name, description, size, status, badge, interactive, onClick, tooltip, ...props }: AvatarLabelGroupProps): react_jsx_runtime.JSX.Element;
|
|
322
378
|
|
|
323
379
|
declare const avatarAddButtonVariants: (props?: ({
|
|
324
|
-
size?: "
|
|
380
|
+
size?: "sm" | "lg" | "default" | "xs" | "xl" | "3xl" | "4xl" | null | undefined;
|
|
325
381
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
326
382
|
interface AvatarAddButtonProps extends React$1.ComponentProps<"button"> {
|
|
327
383
|
size?: "3xl" | "4xl" | "default" | "lg" | "sm" | "xl" | "xs";
|
|
@@ -458,7 +514,7 @@ type BadgeLegacyVariant = NonNullable<BadgeProps["variant"]>;
|
|
|
458
514
|
declare const badgeVariants: (props?: ({
|
|
459
515
|
type?: "pill-color" | "pill-outline" | "badge-color" | "badge-outline" | "badge-modern" | null | undefined;
|
|
460
516
|
color?: "destructive" | "primary" | "secondary" | "success" | "warning" | "info" | "tip" | "muted" | null | undefined;
|
|
461
|
-
size?: "
|
|
517
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
462
518
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
463
519
|
declare function Badge({ className, type, color, size, disabled, dot, icon, leadingIcon, trailingIcon, country, avatar, iconOnly, onDismiss, dismissLabel, interactive, tooltip, variant, asChild, children, onClick, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
464
520
|
|
|
@@ -580,8 +636,8 @@ type ButtonSize = NonNullable<VariantProps<typeof buttonVariants>["size"]>;
|
|
|
580
636
|
declare const buttonVariants: (props?: ({
|
|
581
637
|
fullWidth?: boolean | null | undefined;
|
|
582
638
|
variant?: "link" | "default" | "destructive" | "primary" | "secondary" | "success" | "warning" | "outline" | "dashed" | "secondary-gray" | "secondary-color" | "ghost" | "link-gray" | "link-color" | "tertiary-gray" | "tertiary-color" | "unstyled" | null | undefined;
|
|
583
|
-
size?: "
|
|
584
|
-
shape?: "
|
|
639
|
+
size?: "sm" | "lg" | "default" | "icon" | "icon-sm" | null | undefined;
|
|
640
|
+
shape?: "square" | "circle" | "default" | null | undefined;
|
|
585
641
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
586
642
|
declare function Button({ className, variant, tone, size, shape, fullWidth, asChild, badge, badgeColor, badgeSize, loading, loadingText, icon, leftIcon, rightIcon, disabled, children, tooltip, onClick, onFocus, onBlur, onKeyDown, "data-id": dataId, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
587
643
|
|
|
@@ -664,7 +720,7 @@ declare const dividerLineVariants: (props?: ({
|
|
|
664
720
|
* CVA variants for the content container
|
|
665
721
|
*/
|
|
666
722
|
declare const dividerContentVariants: (props?: ({
|
|
667
|
-
type?: "button" | "
|
|
723
|
+
type?: "button" | "heading" | "line" | "text" | "button-group" | "button-group-icon" | "button-icon" | null | undefined;
|
|
668
724
|
visualStyle?: "background-fill" | "dual-line" | "single-line" | null | undefined;
|
|
669
725
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
670
726
|
/**
|
|
@@ -672,7 +728,7 @@ declare const dividerContentVariants: (props?: ({
|
|
|
672
728
|
*/
|
|
673
729
|
declare const dividerWrapperVariants: (props?: ({
|
|
674
730
|
orientation?: "vertical" | "horizontal" | null | undefined;
|
|
675
|
-
labelPosition?: "
|
|
731
|
+
labelPosition?: "left" | "right" | "center" | null | undefined;
|
|
676
732
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
677
733
|
|
|
678
734
|
/**
|
|
@@ -835,7 +891,7 @@ declare const buttonGroupVariants: (props?: ({
|
|
|
835
891
|
orientation?: "vertical" | "horizontal" | null | undefined;
|
|
836
892
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
837
893
|
declare const buttonGroupItemVariants: (props?: ({
|
|
838
|
-
size?: "sm" | "
|
|
894
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
839
895
|
iconMode?: "none" | "dot" | "leading" | "only" | null | undefined;
|
|
840
896
|
current?: boolean | null | undefined;
|
|
841
897
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -955,41 +1011,8 @@ type ConfirmButtonSize = NonNullable<VariantProps<typeof buttonVariants>["size"]
|
|
|
955
1011
|
*/
|
|
956
1012
|
declare function ConfirmButton({ className, variant, size, leftIcon, rightIcon, disabled, children, confirmTitle, confirmDescription, confirmLabel, cancelLabel, confirmVariant, requireTyping, typingPlaceholder, typingLabel, caseSensitive, loading, open: controlledOpen, onOpenChange: controlledOnOpenChange, onConfirm, onCancel, ...props }: ConfirmButtonProps): react_jsx_runtime.JSX.Element;
|
|
957
1013
|
|
|
958
|
-
declare const featureItemVariants: (props?: ({
|
|
959
|
-
tone?: "warning" | "info" | "subtle" | "brand" | null | undefined;
|
|
960
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
961
|
-
declare const featureItemIconVariants: (props?: ({
|
|
962
|
-
tone?: "warning" | "info" | "subtle" | "brand" | null | undefined;
|
|
963
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
964
|
-
|
|
965
|
-
interface FeatureItemProps extends Omit<ComponentProps<"div">, "title">, VariantProps<typeof featureItemVariants> {
|
|
966
|
-
/**
|
|
967
|
-
* Optional CTA action. Renders below the description as an inline link.
|
|
968
|
-
*/
|
|
969
|
-
action?: {
|
|
970
|
-
href?: string;
|
|
971
|
-
label: ReactNode;
|
|
972
|
-
onClick?: () => void;
|
|
973
|
-
};
|
|
974
|
-
/**
|
|
975
|
-
* Feature description (13px / muted).
|
|
976
|
-
*/
|
|
977
|
-
description?: ReactNode;
|
|
978
|
-
/**
|
|
979
|
-
* Icon node (typically a Lucide icon component).
|
|
980
|
-
*/
|
|
981
|
-
icon: ReactNode;
|
|
982
|
-
/**
|
|
983
|
-
* Feature title — short noun phrase (14px / semibold).
|
|
984
|
-
*/
|
|
985
|
-
title: ReactNode;
|
|
986
|
-
}
|
|
987
|
-
type FeatureItemTone = NonNullable<VariantProps<typeof featureItemVariants>["tone"]>;
|
|
988
|
-
|
|
989
|
-
declare function FeatureItem({ className, tone, icon, title, description, action, ...props }: FeatureItemProps): react_jsx_runtime.JSX.Element;
|
|
990
|
-
|
|
991
1014
|
declare const featuredIconVariants: (props?: ({
|
|
992
|
-
size?: "
|
|
1015
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | null | undefined;
|
|
993
1016
|
shape?: "circle" | "default" | null | undefined;
|
|
994
1017
|
tone?: "default" | "destructive" | "success" | "warning" | "info" | "brand" | null | undefined;
|
|
995
1018
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -1007,7 +1030,7 @@ type FeaturedIconTone = NonNullable<VariantProps<typeof featuredIconVariants>["t
|
|
|
1007
1030
|
declare function FeaturedIcon({ className, size, shape, tone, children, ...props }: FeaturedIconProps): react_jsx_runtime.JSX.Element;
|
|
1008
1031
|
|
|
1009
1032
|
declare const folderStackVariants: (props?: ({
|
|
1010
|
-
size?: "
|
|
1033
|
+
size?: "sm" | "lg" | "default" | "xs" | "xl" | null | undefined;
|
|
1011
1034
|
interactive?: boolean | null | undefined;
|
|
1012
1035
|
active?: boolean | null | undefined;
|
|
1013
1036
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -1095,9 +1118,9 @@ interface HeadingProps extends Omit<ComponentProps<"h1">, "color">, VariantProps
|
|
|
1095
1118
|
|
|
1096
1119
|
declare const headingVariants: (props?: ({
|
|
1097
1120
|
level?: 1 | 4 | 3 | 2 | 5 | 6 | null | undefined;
|
|
1098
|
-
size?: "
|
|
1121
|
+
size?: "sm" | "lg" | "base" | "xl" | "3xl" | "4xl" | "2xl" | null | undefined;
|
|
1099
1122
|
weight?: "bold" | "normal" | "medium" | "semibold" | "extrabold" | null | undefined;
|
|
1100
|
-
align?: "
|
|
1123
|
+
align?: "left" | "right" | "center" | null | undefined;
|
|
1101
1124
|
color?: "default" | "destructive" | "primary" | "muted" | null | undefined;
|
|
1102
1125
|
gradient?: "none" | "primary" | "secondary" | "accent" | "rainbow" | null | undefined;
|
|
1103
1126
|
truncate?: boolean | null | undefined;
|
|
@@ -1159,7 +1182,7 @@ type IconSize = NonNullable<VariantProps<typeof iconVariants>["size"]>;
|
|
|
1159
1182
|
|
|
1160
1183
|
declare const iconVariants: (props?: ({
|
|
1161
1184
|
variant?: "default" | "destructive" | "primary" | "success" | "warning" | "muted" | null | undefined;
|
|
1162
|
-
size?: "
|
|
1185
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | null | undefined;
|
|
1163
1186
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1164
1187
|
declare function Icon({ name: IconComponent, variant, size, spin, pulse, decorative, className, "aria-label": ariaLabel, "aria-hidden": ariaHidden, role, ref, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
1165
1188
|
|
|
@@ -1222,8 +1245,8 @@ type ImageVariant = NonNullable<VariantProps<typeof imageVariants>["variant"]>;
|
|
|
1222
1245
|
type ImageSize = NonNullable<VariantProps<typeof imageVariants>["size"]>;
|
|
1223
1246
|
|
|
1224
1247
|
declare const imageVariants: (props?: ({
|
|
1225
|
-
variant?: "
|
|
1226
|
-
size?: "
|
|
1248
|
+
variant?: "square" | "circle" | "default" | "rounded" | null | undefined;
|
|
1249
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | "full" | null | undefined;
|
|
1227
1250
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1228
1251
|
/**
|
|
1229
1252
|
* Image - A component for displaying images with lazy loading, fallback, and aspect ratio support.
|
|
@@ -1254,7 +1277,7 @@ declare function Image(props: ImageProps): react_jsx_runtime.JSX.Element;
|
|
|
1254
1277
|
* Kbd variants using CVA
|
|
1255
1278
|
*/
|
|
1256
1279
|
declare const kbdVariants: (props?: ({
|
|
1257
|
-
size?: "
|
|
1280
|
+
size?: "sm" | "md" | "lg" | "xs" | null | undefined;
|
|
1258
1281
|
variant?: "default" | "outline" | "ghost" | null | undefined;
|
|
1259
1282
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1260
1283
|
type KbdVariants = VariantProps<typeof kbdVariants>;
|
|
@@ -1432,7 +1455,7 @@ type LinkUnderline = NonNullable<VariantProps<typeof linkVariants>["underline"]>
|
|
|
1432
1455
|
|
|
1433
1456
|
declare const linkVariants: (props?: ({
|
|
1434
1457
|
variant?: "nav" | "default" | "inline" | "muted" | "unstyled" | "subtle" | null | undefined;
|
|
1435
|
-
size?: "
|
|
1458
|
+
size?: "sm" | "lg" | "inherit" | "default" | "xs" | null | undefined;
|
|
1436
1459
|
underline?: "none" | "always" | "hover" | null | undefined;
|
|
1437
1460
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1438
1461
|
declare function Link({ className, variant, size, underline, asChild, external, leftIcon, rightIcon, showExternalIcon, children, onClick, href, rel, "data-id": dataId, ...props }: LinkProps): react_jsx_runtime.JSX.Element;
|
|
@@ -1508,10 +1531,10 @@ interface ParagraphProps extends Omit<ComponentProps<"p">, "color">, VariantProp
|
|
|
1508
1531
|
}
|
|
1509
1532
|
|
|
1510
1533
|
declare const paragraphVariants: (props?: ({
|
|
1511
|
-
size?: "
|
|
1534
|
+
size?: "sm" | "lg" | "base" | "xs" | "xl" | null | undefined;
|
|
1512
1535
|
weight?: "bold" | "normal" | "medium" | "semibold" | null | undefined;
|
|
1513
1536
|
color?: "default" | "destructive" | "primary" | "success" | "muted" | null | undefined;
|
|
1514
|
-
align?: "
|
|
1537
|
+
align?: "left" | "right" | "center" | "justify" | null | undefined;
|
|
1515
1538
|
leading?: "normal" | "loose" | "tight" | "snug" | "relaxed" | null | undefined;
|
|
1516
1539
|
spacing?: "none" | "normal" | "tight" | "relaxed" | null | undefined;
|
|
1517
1540
|
prose?: boolean | null | undefined;
|
|
@@ -1541,7 +1564,7 @@ declare function Paragraph({ className, size, weight, color, align, leading, spa
|
|
|
1541
1564
|
* plate via `[&_svg]:size-full`.
|
|
1542
1565
|
*/
|
|
1543
1566
|
declare const paymentMethodIconVariants: (props?: ({
|
|
1544
|
-
size?: "sm" | "
|
|
1567
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
1545
1568
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1546
1569
|
|
|
1547
1570
|
/**
|
|
@@ -1708,7 +1731,7 @@ declare function ProgressBar({ className, value, max, size, color, label, format
|
|
|
1708
1731
|
* ProgressBar root (track) variants
|
|
1709
1732
|
*/
|
|
1710
1733
|
declare const progressBarVariants: (props?: ({
|
|
1711
|
-
size?: "
|
|
1734
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
1712
1735
|
color?: "default" | "primary" | "secondary" | "success" | "warning" | "info" | "error" | null | undefined;
|
|
1713
1736
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1714
1737
|
/**
|
|
@@ -1721,7 +1744,7 @@ declare const progressBarIndicatorVariants: (props?: ({
|
|
|
1721
1744
|
* Label container variants for different positions
|
|
1722
1745
|
*/
|
|
1723
1746
|
declare const progressBarLabelVariants: (props?: ({
|
|
1724
|
-
position?: "
|
|
1747
|
+
position?: "right" | "none" | "bottom" | "bottom-floating" | "top-floating" | null | undefined;
|
|
1725
1748
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1726
1749
|
/**
|
|
1727
1750
|
* Floating tooltip variants (for top-floating and bottom-floating)
|
|
@@ -1937,7 +1960,7 @@ declare const PROGRESS_CIRCLE_SIZES: {
|
|
|
1937
1960
|
* Uses CSS custom properties from @etus/tokens for sizing
|
|
1938
1961
|
*/
|
|
1939
1962
|
declare const progressCircleContainerVariants: (props?: ({
|
|
1940
|
-
size?: "
|
|
1963
|
+
size?: "sm" | "md" | "lg" | "xs" | "xxs" | null | undefined;
|
|
1941
1964
|
shape?: "circle" | "half-circle" | null | undefined;
|
|
1942
1965
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1943
1966
|
/**
|
|
@@ -1957,13 +1980,13 @@ declare const progressCircleIndicatorVariants: (props?: ({
|
|
|
1957
1980
|
* Value text variants (percentage in center)
|
|
1958
1981
|
*/
|
|
1959
1982
|
declare const progressCircleValueVariants: (props?: ({
|
|
1960
|
-
size?: "
|
|
1983
|
+
size?: "sm" | "md" | "lg" | "xs" | "xxs" | null | undefined;
|
|
1961
1984
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1962
1985
|
/**
|
|
1963
1986
|
* Label text variants (below percentage)
|
|
1964
1987
|
*/
|
|
1965
1988
|
declare const progressCircleLabelVariants: (props?: ({
|
|
1966
|
-
size?: "
|
|
1989
|
+
size?: "sm" | "md" | "lg" | "xs" | "xxs" | null | undefined;
|
|
1967
1990
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1968
1991
|
type ProgressCircleContainerVariants = VariantProps<typeof progressCircleContainerVariants>;
|
|
1969
1992
|
type ProgressCircleTrackVariants = VariantProps<typeof progressCircleTrackVariants>;
|
|
@@ -1973,8 +1996,8 @@ type ProgressCircleIndicatorVariants = VariantProps<typeof progressCircleIndicat
|
|
|
1973
1996
|
* SkeletonLoader variants using CVA
|
|
1974
1997
|
*/
|
|
1975
1998
|
declare const skeletonLoaderVariants: (props?: ({
|
|
1976
|
-
shape?: "
|
|
1977
|
-
size?: "
|
|
1999
|
+
shape?: "heading" | "square" | "circle" | "text" | "rectangle" | "pill" | null | undefined;
|
|
2000
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | "full" | null | undefined;
|
|
1978
2001
|
animation?: "none" | "pulse" | "shimmer" | "wave" | null | undefined;
|
|
1979
2002
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1980
2003
|
type SkeletonLoaderVariants = VariantProps<typeof skeletonLoaderVariants>;
|
|
@@ -2103,7 +2126,7 @@ interface SpacerProps extends Omit<ComponentProps<"div">, "style">, Omit<Variant
|
|
|
2103
2126
|
}
|
|
2104
2127
|
|
|
2105
2128
|
declare const spacerVariants: (props?: ({
|
|
2106
|
-
size?: "
|
|
2129
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | "2xl" | null | undefined;
|
|
2107
2130
|
axis?: "vertical" | "both" | "horizontal" | null | undefined;
|
|
2108
2131
|
flex?: "none" | "grow" | "shrink" | null | undefined;
|
|
2109
2132
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -2136,14 +2159,14 @@ declare function Spacer({ className, size, axis, flex, style, ref, ...props }: S
|
|
|
2136
2159
|
* Spinner variants using CVA
|
|
2137
2160
|
*/
|
|
2138
2161
|
declare const spinnerVariants: (props?: ({
|
|
2139
|
-
size?: "
|
|
2162
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
2140
2163
|
color?: "current" | "default" | "primary" | "secondary" | "success" | "warning" | "error" | null | undefined;
|
|
2141
2164
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2142
2165
|
/**
|
|
2143
2166
|
* Gradient spinner container variants
|
|
2144
2167
|
*/
|
|
2145
2168
|
declare const gradientSpinnerVariants: (props?: ({
|
|
2146
|
-
size?: "
|
|
2169
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
2147
2170
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2148
2171
|
type SpinnerVariants = VariantProps<typeof spinnerVariants>;
|
|
2149
2172
|
type GradientSpinnerVariants = VariantProps<typeof gradientSpinnerVariants>;
|
|
@@ -2340,7 +2363,7 @@ type SplitButtonSize = NonNullable<VariantProps<typeof splitButtonVariants>["siz
|
|
|
2340
2363
|
*/
|
|
2341
2364
|
declare const splitButtonVariants: (props?: ({
|
|
2342
2365
|
variant?: "default" | "destructive" | "primary" | "secondary" | "outline" | "ghost" | null | undefined;
|
|
2343
|
-
size?: "sm" | "
|
|
2366
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2344
2367
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2345
2368
|
|
|
2346
2369
|
declare function SplitButton({ className, variant, size, children, onClick, menuItems, loading, loadingText, disabled, leftIcon, "data-id": dataId, triggerAriaLabel, defaultOpen, open, onOpenChange, ...props }: SplitButtonProps): react_jsx_runtime.JSX.Element;
|
|
@@ -2353,7 +2376,7 @@ declare function SplitButton({ className, variant, size, children, onClick, menu
|
|
|
2353
2376
|
declare const statusIndicatorVariants: (props?: ({
|
|
2354
2377
|
variant?: "destructive" | "success" | "warning" | "info" | "error" | "neutral" | null | undefined;
|
|
2355
2378
|
shape?: "dot" | "bar-vertical" | "bar-horizontal" | null | undefined;
|
|
2356
|
-
size?: "
|
|
2379
|
+
size?: "sm" | "lg" | "default" | "xs" | "xl" | "2xl" | null | undefined;
|
|
2357
2380
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2358
2381
|
|
|
2359
2382
|
/**
|
|
@@ -2392,7 +2415,7 @@ declare function StatusIndicator({ className, variant, shape, size, pulse, label
|
|
|
2392
2415
|
* @see https://cva.style/docs
|
|
2393
2416
|
*/
|
|
2394
2417
|
declare const tagVariants: (props?: ({
|
|
2395
|
-
size?: "sm" | "
|
|
2418
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2396
2419
|
checked?: boolean | null | undefined;
|
|
2397
2420
|
disabled?: boolean | null | undefined;
|
|
2398
2421
|
interactive?: boolean | null | undefined;
|
|
@@ -2401,13 +2424,13 @@ declare const tagVariants: (props?: ({
|
|
|
2401
2424
|
* Tag count pill styles
|
|
2402
2425
|
*/
|
|
2403
2426
|
declare const tagCountVariants: (props?: ({
|
|
2404
|
-
size?: "sm" | "
|
|
2427
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2405
2428
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2406
2429
|
/**
|
|
2407
2430
|
* Tag checkbox styles
|
|
2408
2431
|
*/
|
|
2409
2432
|
declare const tagCheckboxVariants: (props?: ({
|
|
2410
|
-
size?: "sm" | "
|
|
2433
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2411
2434
|
checked?: boolean | null | undefined;
|
|
2412
2435
|
disabled?: boolean | null | undefined;
|
|
2413
2436
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -2416,8 +2439,8 @@ declare const tagCheckboxVariants: (props?: ({
|
|
|
2416
2439
|
*/
|
|
2417
2440
|
declare const tagGroupVariants: (props?: ({
|
|
2418
2441
|
layout?: "inline" | "wrap" | "stack" | null | undefined;
|
|
2419
|
-
gap?: "
|
|
2420
|
-
align?: "
|
|
2442
|
+
gap?: "sm" | "md" | "lg" | "none" | "xs" | null | undefined;
|
|
2443
|
+
align?: "end" | "start" | "center" | null | undefined;
|
|
2421
2444
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2422
2445
|
|
|
2423
2446
|
/**
|
|
@@ -2577,8 +2600,8 @@ declare namespace TagGroup {
|
|
|
2577
2600
|
}
|
|
2578
2601
|
|
|
2579
2602
|
declare const textVariants: (props?: ({
|
|
2580
|
-
variant?: "
|
|
2581
|
-
size?: "
|
|
2603
|
+
variant?: "small" | "body" | "code" | "muted" | "large" | "display1" | "display2" | "display3" | "p1" | "p2" | "p3" | "caption1" | "caption2" | "lead" | null | undefined;
|
|
2604
|
+
size?: "sm" | "lg" | "base" | "xs" | "xl" | "3xl" | "4xl" | "2xl" | null | undefined;
|
|
2582
2605
|
weight?: "bold" | "normal" | "medium" | "semibold" | null | undefined;
|
|
2583
2606
|
color?: "default" | "muted" | null | undefined;
|
|
2584
2607
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -2724,9 +2747,9 @@ type ThumbnailSizeVariant = NonNullable<VariantProps<typeof thumbnailVariants>["
|
|
|
2724
2747
|
type ThumbnailRoundedVariant = NonNullable<VariantProps<typeof thumbnailVariants>["rounded"]>;
|
|
2725
2748
|
|
|
2726
2749
|
declare const thumbnailVariants: (props?: ({
|
|
2727
|
-
size?: "
|
|
2728
|
-
aspectRatio?: "
|
|
2729
|
-
rounded?: "
|
|
2750
|
+
size?: "sm" | "lg" | "default" | "xs" | "xl" | null | undefined;
|
|
2751
|
+
aspectRatio?: "square" | "video" | "wide" | null | undefined;
|
|
2752
|
+
rounded?: "sm" | "lg" | "none" | "default" | "full" | null | undefined;
|
|
2730
2753
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2731
2754
|
/**
|
|
2732
2755
|
* Thumbnail - A small preview component with `image` (loads src) or `tint` (colored tile) modes.
|
|
@@ -2942,7 +2965,7 @@ type ToggleItemProps = ComponentProps<typeof ToggleGroupPrimitive.Item> & Varian
|
|
|
2942
2965
|
|
|
2943
2966
|
declare const toggleVariants: (props?: ({
|
|
2944
2967
|
variant?: "default" | "outline" | null | undefined;
|
|
2945
|
-
size?: "
|
|
2968
|
+
size?: "sm" | "md" | "lg" | "default" | null | undefined;
|
|
2946
2969
|
shape?: "rounded" | "pill" | null | undefined;
|
|
2947
2970
|
connected?: boolean | null | undefined;
|
|
2948
2971
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -3174,10 +3197,10 @@ type CheckboxState = "indeterminate" | boolean;
|
|
|
3174
3197
|
declare function Checkbox({ className, size, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
|
|
3175
3198
|
|
|
3176
3199
|
declare const checkboxVariants: (props?: ({
|
|
3177
|
-
size?: "sm" | "
|
|
3200
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3178
3201
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3179
3202
|
declare const checkboxIconVariants: (props?: ({
|
|
3180
|
-
size?: "sm" | "
|
|
3203
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3181
3204
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3182
3205
|
type CheckboxVariantProps = VariantProps<typeof checkboxVariants>;
|
|
3183
3206
|
|
|
@@ -3357,13 +3380,13 @@ declare const checkboxGroupItemWrapperVariants: (props?: ({
|
|
|
3357
3380
|
hasDescription?: boolean | null | undefined;
|
|
3358
3381
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3359
3382
|
declare const checkboxGroupLabelVariants: (props?: ({
|
|
3360
|
-
size?: "sm" | "
|
|
3383
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3361
3384
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3362
3385
|
declare const checkboxGroupDescriptionVariants: (props?: ({
|
|
3363
|
-
size?: "sm" | "
|
|
3386
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3364
3387
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3365
3388
|
declare const checkboxGroupHeaderVariants: (props?: ({
|
|
3366
|
-
size?: "sm" | "
|
|
3389
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3367
3390
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3368
3391
|
type CheckboxGroupVariantProps = VariantProps<typeof checkboxGroupVariants>;
|
|
3369
3392
|
type CheckboxGroupItemWrapperVariantProps = VariantProps<typeof checkboxGroupItemWrapperVariants>;
|
|
@@ -3465,20 +3488,20 @@ declare function ColorPicker({ className, value, defaultValue, placeholder, disa
|
|
|
3465
3488
|
* ColorPicker trigger variant styles using CVA
|
|
3466
3489
|
*/
|
|
3467
3490
|
declare const colorPickerTriggerVariants: (props?: ({
|
|
3468
|
-
size?: "sm" | "
|
|
3491
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3469
3492
|
variant?: "default" | "filled" | "flushed" | null | undefined;
|
|
3470
3493
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3471
3494
|
/**
|
|
3472
3495
|
* ColorPicker swatch styles using CVA
|
|
3473
3496
|
*/
|
|
3474
3497
|
declare const colorPickerSwatchVariants: (props?: ({
|
|
3475
|
-
size?: "sm" | "
|
|
3498
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3476
3499
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3477
3500
|
/**
|
|
3478
3501
|
* ColorPicker preview swatch (in trigger) styles
|
|
3479
3502
|
*/
|
|
3480
3503
|
declare const colorPickerPreviewVariants: (props?: ({
|
|
3481
|
-
size?: "sm" | "
|
|
3504
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3482
3505
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3483
3506
|
type ColorPickerTriggerVariantProps = VariantProps<typeof colorPickerTriggerVariants>;
|
|
3484
3507
|
type ColorPickerSwatchVariantProps = VariantProps<typeof colorPickerSwatchVariants>;
|
|
@@ -3782,7 +3805,7 @@ declare function DatePicker({ ref, className, align, dialogLabel, value, default
|
|
|
3782
3805
|
* DatePicker trigger variant styles using CVA
|
|
3783
3806
|
*/
|
|
3784
3807
|
declare const datePickerTriggerVariants: (props?: ({
|
|
3785
|
-
size?: "sm" | "
|
|
3808
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3786
3809
|
variant?: "default" | "filled" | "flushed" | null | undefined;
|
|
3787
3810
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3788
3811
|
type DatePickerTriggerVariantProps = VariantProps<typeof datePickerTriggerVariants>;
|
|
@@ -3842,7 +3865,7 @@ declare function CalendarDayButton({ className, day, modifiers, children, ...pro
|
|
|
3842
3865
|
* Calendar container styles
|
|
3843
3866
|
*/
|
|
3844
3867
|
declare const calendarContainerVariants: (props?: ({
|
|
3845
|
-
size?: "
|
|
3868
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
3846
3869
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3847
3870
|
/**
|
|
3848
3871
|
* Calendar day button styles
|
|
@@ -4032,7 +4055,7 @@ declare const defaultPresets: DateRangePreset[];
|
|
|
4032
4055
|
* DateRangePicker trigger variant styles using CVA
|
|
4033
4056
|
*/
|
|
4034
4057
|
declare const dateRangePickerTriggerVariants: (props?: ({
|
|
4035
|
-
size?: "sm" | "
|
|
4058
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
4036
4059
|
variant?: "default" | "outline" | "ghost" | null | undefined;
|
|
4037
4060
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4038
4061
|
type DateRangePickerTriggerVariantProps = VariantProps<typeof dateRangePickerTriggerVariants>;
|
|
@@ -4057,7 +4080,7 @@ declare const dateRangeInputContainerVariants: (props?: ({} & class_variance_aut
|
|
|
4057
4080
|
* Range input field styles
|
|
4058
4081
|
*/
|
|
4059
4082
|
declare const dateRangeInputFieldVariants: (props?: ({
|
|
4060
|
-
size?: "sm" | "
|
|
4083
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
4061
4084
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4062
4085
|
type DateRangeInputFieldVariantProps = VariantProps<typeof dateRangeInputFieldVariants>;
|
|
4063
4086
|
|
|
@@ -4167,7 +4190,7 @@ declare function EmailInput({ className, size, variant, validationState, showVal
|
|
|
4167
4190
|
*/
|
|
4168
4191
|
declare const emailValidationIconVariants: (props?: ({
|
|
4169
4192
|
validationState?: "invalid" | "idle" | "valid" | null | undefined;
|
|
4170
|
-
size?: "
|
|
4193
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
4171
4194
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4172
4195
|
type EmailValidationIconVariantProps = VariantProps<typeof emailValidationIconVariants>;
|
|
4173
4196
|
|
|
@@ -4226,20 +4249,20 @@ interface ErrorMessageProps extends ComponentProps<"span"> {
|
|
|
4226
4249
|
*/
|
|
4227
4250
|
declare const errorMessageVariants: (props?: ({
|
|
4228
4251
|
variant?: "default" | "bordered" | "inline" | "critical" | null | undefined;
|
|
4229
|
-
size?: "sm" | "
|
|
4252
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
4230
4253
|
animated?: boolean | null | undefined;
|
|
4231
4254
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4232
4255
|
/**
|
|
4233
4256
|
* ErrorMessage icon variant styles using CVA
|
|
4234
4257
|
*/
|
|
4235
4258
|
declare const errorMessageIconVariants: (props?: ({
|
|
4236
|
-
size?: "sm" | "
|
|
4259
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
4237
4260
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4238
4261
|
/**
|
|
4239
4262
|
* ErrorMessage list variant styles for errors array
|
|
4240
4263
|
*/
|
|
4241
4264
|
declare const errorMessageListVariants: (props?: ({
|
|
4242
|
-
size?: "sm" | "
|
|
4265
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
4243
4266
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4244
4267
|
type ErrorMessageVariantProps = VariantProps<typeof errorMessageVariants>;
|
|
4245
4268
|
type ErrorMessageIconVariantProps = VariantProps<typeof errorMessageIconVariants>;
|
|
@@ -4577,14 +4600,14 @@ interface HelpTextProps extends ComponentProps<"span"> {
|
|
|
4577
4600
|
*/
|
|
4578
4601
|
declare const helpTextVariants: (props?: ({
|
|
4579
4602
|
variant?: "default" | "success" | "warning" | "info" | "muted" | "error" | null | undefined;
|
|
4580
|
-
size?: "
|
|
4603
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
4581
4604
|
srOnly?: boolean | null | undefined;
|
|
4582
4605
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4583
4606
|
/**
|
|
4584
4607
|
* HelpText icon variant styles
|
|
4585
4608
|
*/
|
|
4586
4609
|
declare const helpTextIconVariants: (props?: ({
|
|
4587
|
-
size?: "
|
|
4610
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
4588
4611
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4589
4612
|
type HelpTextVariantProps = VariantProps<typeof helpTextVariants>;
|
|
4590
4613
|
type HelpTextIconVariantProps = VariantProps<typeof helpTextIconVariants>;
|
|
@@ -4814,7 +4837,7 @@ declare function TextInput({ className, type, size, variant, leadingIcon, traili
|
|
|
4814
4837
|
* Input variant styles using CVA
|
|
4815
4838
|
*/
|
|
4816
4839
|
declare const inputVariants: (props?: ({
|
|
4817
|
-
size?: "
|
|
4840
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
4818
4841
|
variant?: "default" | "unstyled" | "filled" | "flushed" | null | undefined;
|
|
4819
4842
|
hasLeadingIcon?: boolean | null | undefined;
|
|
4820
4843
|
hasTrailingIcon?: boolean | null | undefined;
|
|
@@ -4828,7 +4851,7 @@ declare const inputWrapperVariants: (props?: class_variance_authority_types.Clas
|
|
|
4828
4851
|
*/
|
|
4829
4852
|
declare const inputIconVariants: (props?: ({
|
|
4830
4853
|
position?: "leading" | "trailing" | null | undefined;
|
|
4831
|
-
size?: "
|
|
4854
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
4832
4855
|
interactive?: boolean | null | undefined;
|
|
4833
4856
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4834
4857
|
type InputVariantProps = VariantProps<typeof inputVariants>;
|
|
@@ -4838,7 +4861,7 @@ type InputIconVariantProps = VariantProps<typeof inputIconVariants>;
|
|
|
4838
4861
|
* InputGroup container variant styles using CVA
|
|
4839
4862
|
*/
|
|
4840
4863
|
declare const inputGroupVariants: (props?: ({
|
|
4841
|
-
size?: "sm" | "
|
|
4864
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
4842
4865
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4843
4866
|
/**
|
|
4844
4867
|
* InputGroupAddon variant styles using CVA
|
|
@@ -4850,7 +4873,7 @@ declare const inputGroupAddonVariants: (props?: ({
|
|
|
4850
4873
|
* InputGroupButton variant styles using CVA
|
|
4851
4874
|
*/
|
|
4852
4875
|
declare const inputGroupButtonVariants: (props?: ({
|
|
4853
|
-
size?: "
|
|
4876
|
+
size?: "sm" | "xs" | "icon-sm" | "icon-xs" | null | undefined;
|
|
4854
4877
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4855
4878
|
/**
|
|
4856
4879
|
* InputGroupInput variant styles (for the input within the group)
|
|
@@ -4994,13 +5017,13 @@ declare function InputOTPSeparator({ children, ...props }: InputOTPSeparatorProp
|
|
|
4994
5017
|
* InputOTP slot variant styles using CVA
|
|
4995
5018
|
*/
|
|
4996
5019
|
declare const inputOTPSlotVariants: (props?: ({
|
|
4997
|
-
size?: "sm" | "
|
|
5020
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
4998
5021
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4999
5022
|
/**
|
|
5000
5023
|
* InputOTP container variant styles using CVA
|
|
5001
5024
|
*/
|
|
5002
5025
|
declare const inputOTPContainerVariants: (props?: ({
|
|
5003
|
-
size?: "sm" | "
|
|
5026
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5004
5027
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5005
5028
|
/**
|
|
5006
5029
|
* InputOTP group styles
|
|
@@ -5123,25 +5146,25 @@ declare function InputOTPField({ label, description, errorMessage, required, dig
|
|
|
5123
5146
|
* Wraps the Field + InputOTP combination with consistent spacing
|
|
5124
5147
|
*/
|
|
5125
5148
|
declare const inputOTPFieldVariants: (props?: ({
|
|
5126
|
-
size?: "sm" | "
|
|
5149
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5127
5150
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5128
5151
|
/**
|
|
5129
5152
|
* InputOTPField label variant styles using CVA
|
|
5130
5153
|
*/
|
|
5131
5154
|
declare const inputOTPFieldLabelVariants: (props?: ({
|
|
5132
|
-
size?: "sm" | "
|
|
5155
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5133
5156
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5134
5157
|
/**
|
|
5135
5158
|
* InputOTPField description variant styles using CVA
|
|
5136
5159
|
*/
|
|
5137
5160
|
declare const inputOTPFieldDescriptionVariants: (props?: ({
|
|
5138
|
-
size?: "sm" | "
|
|
5161
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5139
5162
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5140
5163
|
/**
|
|
5141
5164
|
* InputOTPField error variant styles using CVA
|
|
5142
5165
|
*/
|
|
5143
5166
|
declare const inputOTPFieldErrorVariants: (props?: ({
|
|
5144
|
-
size?: "sm" | "
|
|
5167
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5145
5168
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5146
5169
|
type InputOTPFieldVariantProps = VariantProps<typeof inputOTPFieldVariants>;
|
|
5147
5170
|
type InputOTPFieldLabelVariantProps = VariantProps<typeof inputOTPFieldLabelVariants>;
|
|
@@ -5314,7 +5337,7 @@ declare function NativeSelectOptGroup({ className, ...props }: NativeSelectOptGr
|
|
|
5314
5337
|
* NativeSelect variant styles using CVA
|
|
5315
5338
|
*/
|
|
5316
5339
|
declare const nativeSelectVariants: (props?: ({
|
|
5317
|
-
size?: "
|
|
5340
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
5318
5341
|
variant?: "default" | "filled" | "flushed" | null | undefined;
|
|
5319
5342
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5320
5343
|
/**
|
|
@@ -5325,13 +5348,13 @@ declare const nativeSelectWrapperVariants: (props?: ({} & class_variance_authori
|
|
|
5325
5348
|
* Icon styles based on size
|
|
5326
5349
|
*/
|
|
5327
5350
|
declare const nativeSelectIconVariants: (props?: ({
|
|
5328
|
-
size?: "
|
|
5351
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
5329
5352
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5330
5353
|
/**
|
|
5331
5354
|
* Left icon styles based on size
|
|
5332
5355
|
*/
|
|
5333
5356
|
declare const nativeSelectLeftIconVariants: (props?: ({
|
|
5334
|
-
size?: "
|
|
5357
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
5335
5358
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5336
5359
|
/**
|
|
5337
5360
|
* Additional padding-left when leftIcon is present
|
|
@@ -5410,14 +5433,14 @@ declare function NumberInput({ className, size, variant, showStepper, incrementI
|
|
|
5410
5433
|
* Contains increment/decrement buttons stacked vertically
|
|
5411
5434
|
*/
|
|
5412
5435
|
declare const numberStepperVariants: (props?: ({
|
|
5413
|
-
size?: "
|
|
5436
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
5414
5437
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5415
5438
|
/**
|
|
5416
5439
|
* Number stepper button variant styles using CVA
|
|
5417
5440
|
* Individual increment/decrement button styles
|
|
5418
5441
|
*/
|
|
5419
5442
|
declare const numberStepperButtonVariants: (props?: ({
|
|
5420
|
-
size?: "
|
|
5443
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
5421
5444
|
position?: "bottom" | "top" | null | undefined;
|
|
5422
5445
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5423
5446
|
/**
|
|
@@ -5425,7 +5448,7 @@ declare const numberStepperButtonVariants: (props?: ({
|
|
|
5425
5448
|
* Used to add extra right padding when stepper is visible
|
|
5426
5449
|
*/
|
|
5427
5450
|
declare const numberInputPaddingVariants: (props?: ({
|
|
5428
|
-
size?: "
|
|
5451
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
5429
5452
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5430
5453
|
type NumberStepperVariantProps = VariantProps<typeof numberStepperVariants>;
|
|
5431
5454
|
type NumberStepperButtonVariantProps = VariantProps<typeof numberStepperButtonVariants>;
|
|
@@ -5475,7 +5498,7 @@ declare function PasswordInput({ className, size, variant, showToggle, showIcon,
|
|
|
5475
5498
|
* Sizes match the input sizes for proper alignment
|
|
5476
5499
|
*/
|
|
5477
5500
|
declare const passwordToggleVariants: (props?: ({
|
|
5478
|
-
size?: "
|
|
5501
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
5479
5502
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5480
5503
|
type PasswordToggleVariantProps = VariantProps<typeof passwordToggleVariants>;
|
|
5481
5504
|
|
|
@@ -5607,20 +5630,20 @@ declare function PaymentInput({ value: controlledValue, defaultValue, onChange,
|
|
|
5607
5630
|
* PaymentInput container variant styles using CVA
|
|
5608
5631
|
*/
|
|
5609
5632
|
declare const paymentInputVariants: (props?: ({
|
|
5610
|
-
size?: "sm" | "
|
|
5633
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5611
5634
|
variant?: "default" | "filled" | "flushed" | null | undefined;
|
|
5612
5635
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5613
5636
|
/**
|
|
5614
5637
|
* PaymentInput inner input styles
|
|
5615
5638
|
*/
|
|
5616
5639
|
declare const paymentInputInputVariants: (props?: ({
|
|
5617
|
-
size?: "sm" | "
|
|
5640
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5618
5641
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5619
5642
|
/**
|
|
5620
5643
|
* PaymentInput card icon styles
|
|
5621
5644
|
*/
|
|
5622
5645
|
declare const paymentInputIconVariants: (props?: ({
|
|
5623
|
-
size?: "sm" | "
|
|
5646
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5624
5647
|
hasCard?: boolean | null | undefined;
|
|
5625
5648
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5626
5649
|
type PaymentInputVariantProps = VariantProps<typeof paymentInputVariants>;
|
|
@@ -5749,20 +5772,20 @@ declare function PhoneInput({ value: controlledValue, defaultValue, onChange, on
|
|
|
5749
5772
|
* PhoneInput container variant styles using CVA
|
|
5750
5773
|
*/
|
|
5751
5774
|
declare const phoneInputVariants: (props?: ({
|
|
5752
|
-
size?: "sm" | "
|
|
5775
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5753
5776
|
variant?: "default" | "filled" | "flushed" | null | undefined;
|
|
5754
5777
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5755
5778
|
/**
|
|
5756
5779
|
* Country selector button styles
|
|
5757
5780
|
*/
|
|
5758
5781
|
declare const phoneInputCountryButtonVariants: (props?: ({
|
|
5759
|
-
size?: "sm" | "
|
|
5782
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5760
5783
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5761
5784
|
/**
|
|
5762
5785
|
* Phone number input styles
|
|
5763
5786
|
*/
|
|
5764
5787
|
declare const phoneInputInputVariants: (props?: ({
|
|
5765
|
-
size?: "sm" | "
|
|
5788
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5766
5789
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5767
5790
|
/**
|
|
5768
5791
|
* Country dropdown styles
|
|
@@ -5811,16 +5834,16 @@ interface RadioButtonProps extends Omit<ComponentProps<"input">, "size" | "type"
|
|
|
5811
5834
|
declare function RadioButton({ className, size, label, description, id, ref, "aria-describedby": ariaDescribedBy, ...props }: RadioButtonProps): react_jsx_runtime.JSX.Element;
|
|
5812
5835
|
|
|
5813
5836
|
declare const radioButtonVariants: (props?: ({
|
|
5814
|
-
size?: "sm" | "
|
|
5837
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5815
5838
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5816
5839
|
declare const radioButtonIndicatorVariants: (props?: ({
|
|
5817
|
-
size?: "sm" | "
|
|
5840
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5818
5841
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5819
5842
|
declare const radioButtonWrapperVariants: (props?: ({
|
|
5820
|
-
size?: "sm" | "
|
|
5843
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5821
5844
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5822
5845
|
declare const radioButtonLabelVariants: (props?: ({
|
|
5823
|
-
size?: "sm" | "
|
|
5846
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5824
5847
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5825
5848
|
type RadioButtonVariantProps = VariantProps<typeof radioButtonVariants>;
|
|
5826
5849
|
type RadioButtonIndicatorVariantProps = VariantProps<typeof radioButtonIndicatorVariants>;
|
|
@@ -5914,33 +5937,33 @@ declare const radioCardGroupVariants: (props?: ({
|
|
|
5914
5937
|
columns?: 1 | 4 | 3 | 2 | null | undefined;
|
|
5915
5938
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5916
5939
|
declare const radioCardGroupItemVariants: (props?: ({
|
|
5917
|
-
size?: "sm" | "
|
|
5940
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5918
5941
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5919
5942
|
declare const radioCardGroupItemIndicatorVariants: (props?: ({
|
|
5920
|
-
size?: "sm" | "
|
|
5943
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5921
5944
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5922
5945
|
declare const radioCardGroupItemDotVariants: (props?: ({
|
|
5923
|
-
size?: "sm" | "
|
|
5946
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5924
5947
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5925
5948
|
declare const radioCardGroupItemContentVariants: (props?: ({} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5926
5949
|
declare const radioCardGroupItemIconVariants: (props?: ({
|
|
5927
|
-
size?: "sm" | "
|
|
5950
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5928
5951
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5929
5952
|
declare const radioCardGroupItemTitleVariants: (props?: ({
|
|
5930
|
-
size?: "sm" | "
|
|
5953
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5931
5954
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5932
5955
|
declare const radioCardGroupItemDescriptionVariants: (props?: ({
|
|
5933
|
-
size?: "sm" | "
|
|
5956
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5934
5957
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5935
5958
|
|
|
5936
5959
|
declare const radioGroupVariants: (props?: ({
|
|
5937
5960
|
orientation?: "vertical" | "horizontal" | null | undefined;
|
|
5938
5961
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5939
5962
|
declare const radioGroupItemVariants: (props?: ({
|
|
5940
|
-
size?: "sm" | "
|
|
5963
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5941
5964
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5942
5965
|
declare const radioGroupIndicatorVariants: (props?: ({
|
|
5943
|
-
size?: "sm" | "
|
|
5966
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
5944
5967
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
5945
5968
|
type RadioGroupVariantProps = VariantProps<typeof radioGroupVariants>;
|
|
5946
5969
|
type RadioGroupItemVariantProps = VariantProps<typeof radioGroupItemVariants>;
|
|
@@ -6066,7 +6089,7 @@ interface RatingItemProps {
|
|
|
6066
6089
|
declare function Rating({ className, value: controlledValue, defaultValue, max, size, allowHalf, readOnly, disabled, emptyIcon, filledIcon, halfIcon, onChange, onHover, name, ...props }: RatingProps): react_jsx_runtime.JSX.Element;
|
|
6067
6090
|
|
|
6068
6091
|
declare const ratingVariants: (props?: ({
|
|
6069
|
-
size?: "sm" | "
|
|
6092
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6070
6093
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6071
6094
|
declare const ratingItemVariants: (props?: ({
|
|
6072
6095
|
filled?: "full" | "empty" | "half" | null | undefined;
|
|
@@ -6124,13 +6147,13 @@ declare function SearchInput({ className, size, variant, showClearButton, onClea
|
|
|
6124
6147
|
* Search icon visual variants
|
|
6125
6148
|
*/
|
|
6126
6149
|
declare const searchIconVariants: (props?: ({
|
|
6127
|
-
size?: "
|
|
6150
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
6128
6151
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6129
6152
|
/**
|
|
6130
6153
|
* Clear button visual variants
|
|
6131
6154
|
*/
|
|
6132
6155
|
declare const searchClearButtonVariants: (props?: ({
|
|
6133
|
-
size?: "
|
|
6156
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
6134
6157
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6135
6158
|
type SearchIconVariantProps = VariantProps<typeof searchIconVariants>;
|
|
6136
6159
|
type SearchClearButtonVariantProps = VariantProps<typeof searchClearButtonVariants>;
|
|
@@ -6220,7 +6243,7 @@ declare function SelectScrollDownButton({ className, ...props }: SelectScrollDow
|
|
|
6220
6243
|
* SelectTrigger variant styles using CVA
|
|
6221
6244
|
*/
|
|
6222
6245
|
declare const selectTriggerVariants: (props?: ({
|
|
6223
|
-
size?: "sm" | "
|
|
6246
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6224
6247
|
variant?: "default" | "filled" | "flushed" | null | undefined;
|
|
6225
6248
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6226
6249
|
/**
|
|
@@ -6376,38 +6399,38 @@ type SliderValue = number[];
|
|
|
6376
6399
|
declare function Slider({ className, defaultValue, value, min, max, step, size, labelType, color, formatValue, marks, getAriaValueText, onValueChange, orientation, ...props }: SliderProps): react_jsx_runtime.JSX.Element;
|
|
6377
6400
|
|
|
6378
6401
|
declare const sliderRootVariants: (props?: ({
|
|
6379
|
-
size?: "sm" | "
|
|
6380
|
-
labelType?: "
|
|
6402
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6403
|
+
labelType?: "none" | "tooltip" | "text" | null | undefined;
|
|
6381
6404
|
hasMarks?: boolean | null | undefined;
|
|
6382
6405
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6383
6406
|
declare const sliderTrackVariants: (props?: ({
|
|
6384
|
-
size?: "sm" | "
|
|
6407
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6385
6408
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6386
6409
|
declare const sliderRangeVariants: (props?: ({
|
|
6387
|
-
size?: "sm" | "
|
|
6410
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6388
6411
|
color?: "default" | "primary" | "success" | "warning" | "error" | null | undefined;
|
|
6389
6412
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6390
6413
|
declare const sliderThumbVariants: (props?: ({
|
|
6391
|
-
size?: "sm" | "
|
|
6414
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6392
6415
|
color?: "default" | "primary" | "success" | "warning" | "error" | null | undefined;
|
|
6393
6416
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6394
6417
|
declare const sliderLabelVariants: (props?: ({
|
|
6395
|
-
size?: "sm" | "
|
|
6418
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6396
6419
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6397
6420
|
declare const sliderTooltipVariants: (props?: ({
|
|
6398
|
-
size?: "sm" | "
|
|
6421
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6399
6422
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6400
6423
|
declare const sliderMarkContainerVariants: (props?: ({
|
|
6401
|
-
size?: "sm" | "
|
|
6424
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6402
6425
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6403
6426
|
declare const sliderMarkVariants: (props?: ({
|
|
6404
|
-
size?: "sm" | "
|
|
6427
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6405
6428
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6406
6429
|
declare const sliderMarkTickVariants: (props?: ({
|
|
6407
|
-
size?: "sm" | "
|
|
6430
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6408
6431
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6409
6432
|
declare const sliderMarkLabelVariants: (props?: ({
|
|
6410
|
-
size?: "sm" | "
|
|
6433
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6411
6434
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6412
6435
|
type SliderRootVariantProps = VariantProps<typeof sliderRootVariants>;
|
|
6413
6436
|
type SliderTrackVariantProps = VariantProps<typeof sliderTrackVariants>;
|
|
@@ -6499,10 +6522,10 @@ type SwitchState = boolean;
|
|
|
6499
6522
|
declare function Switch({ className, size, type, switchText, descriptionText, showText, showDescription, id, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
|
|
6500
6523
|
|
|
6501
6524
|
declare const switchVariants: (props?: ({
|
|
6502
|
-
size?: "sm" | "
|
|
6525
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6503
6526
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6504
6527
|
declare const switchThumbVariants: (props?: ({
|
|
6505
|
-
size?: "sm" | "
|
|
6528
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6506
6529
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6507
6530
|
type SwitchVariantProps = VariantProps<typeof switchVariants>;
|
|
6508
6531
|
type SwitchThumbVariantProps = VariantProps<typeof switchThumbVariants>;
|
|
@@ -6603,14 +6626,14 @@ declare function TagsInput({ value: controlledValue, defaultValue, onChange, onT
|
|
|
6603
6626
|
* TagsInput container variant styles using CVA
|
|
6604
6627
|
*/
|
|
6605
6628
|
declare const tagsInputVariants: (props?: ({
|
|
6606
|
-
size?: "sm" | "
|
|
6629
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6607
6630
|
variant?: "default" | "filled" | "flushed" | null | undefined;
|
|
6608
6631
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6609
6632
|
/**
|
|
6610
6633
|
* TagsInput inner input variant styles
|
|
6611
6634
|
*/
|
|
6612
6635
|
declare const tagsInputInputVariants: (props?: ({
|
|
6613
|
-
size?: "sm" | "
|
|
6636
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6614
6637
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6615
6638
|
type TagsInputVariantProps = VariantProps<typeof tagsInputVariants>;
|
|
6616
6639
|
type TagsInputInputVariantProps = VariantProps<typeof tagsInputInputVariants>;
|
|
@@ -6654,7 +6677,7 @@ declare function Textarea({ className, size, variant, resize, ...props }: Textar
|
|
|
6654
6677
|
* Textarea variant styles using CVA
|
|
6655
6678
|
*/
|
|
6656
6679
|
declare const textareaVariants: (props?: ({
|
|
6657
|
-
size?: "sm" | "
|
|
6680
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6658
6681
|
variant?: "default" | "unstyled" | "filled" | "flushed" | null | undefined;
|
|
6659
6682
|
resize?: "none" | "vertical" | "both" | "horizontal" | null | undefined;
|
|
6660
6683
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -6716,25 +6739,25 @@ declare function TextareaField({ label, description, errorMessage, required, id:
|
|
|
6716
6739
|
* Wraps the Field + Textarea combination with consistent spacing
|
|
6717
6740
|
*/
|
|
6718
6741
|
declare const textareaFieldVariants: (props?: ({
|
|
6719
|
-
size?: "sm" | "
|
|
6742
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6720
6743
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6721
6744
|
/**
|
|
6722
6745
|
* TextareaField label variant styles using CVA
|
|
6723
6746
|
*/
|
|
6724
6747
|
declare const textareaFieldLabelVariants: (props?: ({
|
|
6725
|
-
size?: "sm" | "
|
|
6748
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6726
6749
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6727
6750
|
/**
|
|
6728
6751
|
* TextareaField description variant styles using CVA
|
|
6729
6752
|
*/
|
|
6730
6753
|
declare const textareaFieldDescriptionVariants: (props?: ({
|
|
6731
|
-
size?: "sm" | "
|
|
6754
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6732
6755
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6733
6756
|
/**
|
|
6734
6757
|
* TextareaField error variant styles using CVA
|
|
6735
6758
|
*/
|
|
6736
6759
|
declare const textareaFieldErrorVariants: (props?: ({
|
|
6737
|
-
size?: "sm" | "
|
|
6760
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6738
6761
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6739
6762
|
type TextareaFieldVariantProps = VariantProps<typeof textareaFieldVariants>;
|
|
6740
6763
|
type TextareaFieldLabelVariantProps = VariantProps<typeof textareaFieldLabelVariants>;
|
|
@@ -6825,7 +6848,7 @@ declare function TimePicker({ className, value, defaultValue, placeholder, disab
|
|
|
6825
6848
|
* TimePicker trigger variant styles using CVA
|
|
6826
6849
|
*/
|
|
6827
6850
|
declare const timePickerTriggerVariants: (props?: ({
|
|
6828
|
-
size?: "sm" | "
|
|
6851
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
6829
6852
|
variant?: "default" | "filled" | "flushed" | null | undefined;
|
|
6830
6853
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6831
6854
|
/**
|
|
@@ -6850,7 +6873,7 @@ type TimeItemVariantProps = VariantProps<typeof timeItemVariants>;
|
|
|
6850
6873
|
*/
|
|
6851
6874
|
declare const toggleGroupItemVariants: (props?: ({
|
|
6852
6875
|
variant?: "default" | "outline" | null | undefined;
|
|
6853
|
-
size?: "
|
|
6876
|
+
size?: "sm" | "md" | "lg" | "default" | null | undefined;
|
|
6854
6877
|
connected?: boolean | null | undefined;
|
|
6855
6878
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6856
6879
|
type ToggleGroupItemVariantProps = VariantProps<typeof toggleGroupItemVariants>;
|
|
@@ -6912,14 +6935,14 @@ declare function URLInput({ className, size, variant, validationState, showValid
|
|
|
6912
6935
|
* URL link icon visual variants
|
|
6913
6936
|
*/
|
|
6914
6937
|
declare const urlLinkIconVariants: (props?: ({
|
|
6915
|
-
size?: "
|
|
6938
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
6916
6939
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6917
6940
|
/**
|
|
6918
6941
|
* URL validation icon visual variants
|
|
6919
6942
|
*/
|
|
6920
6943
|
declare const urlValidationIconVariants: (props?: ({
|
|
6921
6944
|
validationState?: "invalid" | "idle" | "valid" | null | undefined;
|
|
6922
|
-
size?: "
|
|
6945
|
+
size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
|
|
6923
6946
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6924
6947
|
type URLLinkIconVariantProps = VariantProps<typeof urlLinkIconVariants>;
|
|
6925
6948
|
type URLValidationIconVariantProps = VariantProps<typeof urlValidationIconVariants>;
|
|
@@ -6937,7 +6960,7 @@ declare const cardVariants: (props?: ({
|
|
|
6937
6960
|
* Bleeds to the card edges (overflow:hidden on Card root + zero padding here).
|
|
6938
6961
|
*/
|
|
6939
6962
|
declare const cardMediaVariants: (props?: ({
|
|
6940
|
-
aspect?: "
|
|
6963
|
+
aspect?: "auto" | "square" | "video" | "portrait" | "wide" | null | undefined;
|
|
6941
6964
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6942
6965
|
/**
|
|
6943
6966
|
* CardHeader variant styles
|
|
@@ -7109,8 +7132,8 @@ declare function CollapsibleContent({ className, animation, ...props }: Collapsi
|
|
|
7109
7132
|
* Layout component for centering and limiting content width
|
|
7110
7133
|
*/
|
|
7111
7134
|
declare const containerVariants: (props?: ({
|
|
7112
|
-
maxWidth?: "sm" | "
|
|
7113
|
-
padding?: "
|
|
7135
|
+
maxWidth?: "sm" | "md" | "lg" | "xl" | "2xl" | "full" | null | undefined;
|
|
7136
|
+
padding?: "sm" | "md" | "lg" | "none" | null | undefined;
|
|
7114
7137
|
centered?: boolean | null | undefined;
|
|
7115
7138
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
7116
7139
|
type ContainerVariantProps = VariantProps<typeof containerVariants>;
|
|
@@ -7147,9 +7170,9 @@ declare function Container({ as: Component, maxWidth, padding, centered, classNa
|
|
|
7147
7170
|
*/
|
|
7148
7171
|
declare const flexVariants: (props?: ({
|
|
7149
7172
|
display?: "inline" | "flex" | null | undefined;
|
|
7150
|
-
direction?: "
|
|
7151
|
-
justify?: "
|
|
7152
|
-
align?: "
|
|
7173
|
+
direction?: "row" | "col" | "row-reverse" | "col-reverse" | null | undefined;
|
|
7174
|
+
justify?: "end" | "start" | "center" | "around" | "between" | "evenly" | null | undefined;
|
|
7175
|
+
align?: "end" | "baseline" | "start" | "center" | "stretch" | null | undefined;
|
|
7153
7176
|
wrap?: boolean | "nowrap" | "wrap" | "wrap-reverse" | null | undefined;
|
|
7154
7177
|
gap?: 0 | 1 | 4 | 3 | 2 | 6 | 8 | null | undefined;
|
|
7155
7178
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -7216,9 +7239,9 @@ declare const gridVariants: (props?: ({
|
|
|
7216
7239
|
gap?: 0 | 1 | 4 | 2 | 6 | 8 | null | undefined;
|
|
7217
7240
|
gapX?: 0 | 1 | 4 | 2 | 6 | 8 | null | undefined;
|
|
7218
7241
|
gapY?: 0 | 1 | 4 | 2 | 6 | 8 | null | undefined;
|
|
7219
|
-
items?: "
|
|
7220
|
-
justify?: "
|
|
7221
|
-
flow?: "
|
|
7242
|
+
items?: "end" | "start" | "center" | "stretch" | null | undefined;
|
|
7243
|
+
justify?: "end" | "start" | "center" | "stretch" | null | undefined;
|
|
7244
|
+
flow?: "row" | "col" | "dense" | "row-dense" | "col-dense" | null | undefined;
|
|
7222
7245
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
7223
7246
|
type GridVariantProps = VariantProps<typeof gridVariants>;
|
|
7224
7247
|
|
|
@@ -7280,9 +7303,9 @@ declare function Grid({ as, cols, rows, gap, gapX, gapY, items, justify, flow, c
|
|
|
7280
7303
|
* Layout container for sidebars, inspectors, and section panels
|
|
7281
7304
|
*/
|
|
7282
7305
|
declare const panelVariants: (props?: ({
|
|
7283
|
-
variant?: "default" | "
|
|
7284
|
-
size?: "
|
|
7285
|
-
position?: "
|
|
7306
|
+
variant?: "default" | "inset" | "subtle" | "elevated" | "outlined" | null | undefined;
|
|
7307
|
+
size?: "sm" | "md" | "lg" | "auto" | "xs" | "xl" | "full" | null | undefined;
|
|
7308
|
+
position?: "left" | "right" | "center" | "bottom" | "top" | null | undefined;
|
|
7286
7309
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
7287
7310
|
/**
|
|
7288
7311
|
* PanelHeader variant styles
|
|
@@ -7419,9 +7442,9 @@ declare function ResizableHandle({ withHandle, variant, className, ...props }: R
|
|
|
7419
7442
|
*/
|
|
7420
7443
|
declare const responsiveContainerVariants: (props?: ({
|
|
7421
7444
|
variant?: "default" | "fluid" | "constrained" | null | undefined;
|
|
7422
|
-
maxWidth?: "sm" | "
|
|
7445
|
+
maxWidth?: "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
|
|
7423
7446
|
padding?: boolean | null | undefined;
|
|
7424
|
-
breakpoint?: "
|
|
7447
|
+
breakpoint?: "sm" | "md" | "lg" | "none" | null | undefined;
|
|
7425
7448
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
7426
7449
|
type ResponsiveContainerVariantProps = VariantProps<typeof responsiveContainerVariants>;
|
|
7427
7450
|
|
|
@@ -7543,7 +7566,7 @@ declare function ScrollBar({ className, orientation, size, ...props }: ScrollBar
|
|
|
7543
7566
|
*/
|
|
7544
7567
|
declare const sectionVariants: (props?: ({
|
|
7545
7568
|
variant?: "default" | "bordered" | "muted" | "elevated" | null | undefined;
|
|
7546
|
-
size?: "
|
|
7569
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
7547
7570
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
7548
7571
|
type SectionVariantProps = VariantProps<typeof sectionVariants>;
|
|
7549
7572
|
|
|
@@ -7588,8 +7611,8 @@ declare const sheetOverlayVariants: (props?: ({
|
|
|
7588
7611
|
* Controls the slide-out panel position and size
|
|
7589
7612
|
*/
|
|
7590
7613
|
declare const sheetContentVariants: (props?: ({
|
|
7591
|
-
side?: "
|
|
7592
|
-
size?: "
|
|
7614
|
+
side?: "left" | "right" | "bottom" | "top" | null | undefined;
|
|
7615
|
+
size?: "sm" | "lg" | "default" | "full" | null | undefined;
|
|
7593
7616
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
7594
7617
|
type SheetOverlayVariantProps = VariantProps<typeof sheetOverlayVariants>;
|
|
7595
7618
|
type SheetContentVariantProps = VariantProps<typeof sheetContentVariants>;
|
|
@@ -7682,8 +7705,8 @@ declare function SheetDescription({ className, ...props }: SheetDescriptionProps
|
|
|
7682
7705
|
declare const stackVariants: (props?: ({
|
|
7683
7706
|
direction?: "row" | "column" | "wrap" | null | undefined;
|
|
7684
7707
|
spacing?: 0 | 1 | 4 | 3 | 2 | 6 | 8 | null | undefined;
|
|
7685
|
-
align?: "
|
|
7686
|
-
justify?: "
|
|
7708
|
+
align?: "end" | "start" | "center" | "stretch" | null | undefined;
|
|
7709
|
+
justify?: "end" | "start" | "center" | "around" | "between" | null | undefined;
|
|
7687
7710
|
grow?: boolean | null | undefined;
|
|
7688
7711
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
7689
7712
|
type StackVariantProps = VariantProps<typeof stackVariants>;
|
|
@@ -8589,7 +8612,7 @@ interface FileTreeProps extends Omit<React$1.ComponentProps<"div">, "onSelect" |
|
|
|
8589
8612
|
|
|
8590
8613
|
declare const fileTreeShellVariants: (props?: ({
|
|
8591
8614
|
variant?: "outline" | "ide" | "notion" | null | undefined;
|
|
8592
|
-
size?: "
|
|
8615
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
8593
8616
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
8594
8617
|
declare const fileTreeRowVariants: (props?: ({
|
|
8595
8618
|
variant?: "outline" | "ide" | "notion" | null | undefined;
|
|
@@ -8750,9 +8773,73 @@ declare const headerNavVariants: (props?: class_variance_authority_types.ClassPr
|
|
|
8750
8773
|
* header with actions (e.g. the Mobile layout: logo + icons) hugs to 76px.
|
|
8751
8774
|
*/
|
|
8752
8775
|
declare const headerActionsVariants: (props?: ({
|
|
8753
|
-
align?: "
|
|
8776
|
+
align?: "end" | "start" | "center" | null | undefined;
|
|
8754
8777
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
8755
8778
|
|
|
8779
|
+
/**
|
|
8780
|
+
* LogoConta root styles.
|
|
8781
|
+
*
|
|
8782
|
+
* Figma: `Core Components — Seven > Logo-Conta` (node 1138:2959). A circular,
|
|
8783
|
+
* colour-filled badge that frames a brand logo/symbol — used in the app shell
|
|
8784
|
+
* (sidebar header / account switcher).
|
|
8785
|
+
*
|
|
8786
|
+
* The circle diameter comes from `--logo-conta-size` (24px in Figma). Each
|
|
8787
|
+
* `tone` reuses an existing global token pair, mirroring the three example
|
|
8788
|
+
* accounts in Figma — no new colour tokens are introduced:
|
|
8789
|
+
* - `mint` → Plusdin → `--primary` (Figma default/green/500)
|
|
8790
|
+
* - `blue` → Brius → `--status-info-background` (Figma status/info)
|
|
8791
|
+
* - `lime` → Got All Cards → `--secondary`
|
|
8792
|
+
*
|
|
8793
|
+
* Tone backgrounds are tokenised presets for the documented example accounts;
|
|
8794
|
+
* for an account whose brand colour is none of the three, override the
|
|
8795
|
+
* background via `className`/`style`.
|
|
8796
|
+
*/
|
|
8797
|
+
declare const logoContaVariants: (props?: ({
|
|
8798
|
+
tone?: "blue" | "lime" | "mint" | null | undefined;
|
|
8799
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
8800
|
+
|
|
8801
|
+
interface LogoContaProps extends Omit<ComponentProps<"span">, "aria-hidden" | "aria-label" | "color" | "role">, VariantProps<typeof logoContaVariants> {
|
|
8802
|
+
/**
|
|
8803
|
+
* Nome acessível da conta (ex.: "Plusdin"). Quando informado, o badge expõe
|
|
8804
|
+
* `role="img"` + `aria-label`. Omita (ou passe `""`) quando o logo for
|
|
8805
|
+
* decorativo e a conta já estiver nomeada por texto adjacente — nesse caso o
|
|
8806
|
+
* badge recebe `aria-hidden`.
|
|
8807
|
+
*/
|
|
8808
|
+
alt?: string;
|
|
8809
|
+
/**
|
|
8810
|
+
* Marca/símbolo renderizado dentro do círculo colorido (caminho recomendado).
|
|
8811
|
+
* Dimensione o mark (ex.: `className="size-3.5"`) para revelar o anel
|
|
8812
|
+
* colorido ao redor.
|
|
8813
|
+
*/
|
|
8814
|
+
children?: ReactNode;
|
|
8815
|
+
/**
|
|
8816
|
+
* URL de imagem do logo (alternativa a `children`). Renderiza como `<img>`
|
|
8817
|
+
* com `object-contain`, preenchendo o círculo.
|
|
8818
|
+
*/
|
|
8819
|
+
src?: string;
|
|
8820
|
+
}
|
|
8821
|
+
type LogoContaTone = NonNullable<VariantProps<typeof logoContaVariants>["tone"]>;
|
|
8822
|
+
|
|
8823
|
+
/**
|
|
8824
|
+
* LogoConta — circular, colour-filled badge that frames an account's brand
|
|
8825
|
+
* logo/symbol. Part of the app shell (sidebar header / account switcher).
|
|
8826
|
+
*
|
|
8827
|
+
* Pass the mark via `children` (recommended — compose any SVG/letter over the
|
|
8828
|
+
* `tone` background) or via `src` (image URL). Provide `alt` with the account
|
|
8829
|
+
* name to expose `role="img"`; omit it for a decorative badge (`aria-hidden`).
|
|
8830
|
+
*
|
|
8831
|
+
* @example
|
|
8832
|
+
* // Symbol composed over the tone circle
|
|
8833
|
+
* <LogoConta alt="Plusdin" tone="mint">
|
|
8834
|
+
* <span className="text-xs font-bold">p</span>
|
|
8835
|
+
* </LogoConta>
|
|
8836
|
+
*
|
|
8837
|
+
* @example
|
|
8838
|
+
* // Image logo
|
|
8839
|
+
* <LogoConta alt="Brius" src="/logos/brius.svg" tone="blue" />
|
|
8840
|
+
*/
|
|
8841
|
+
declare function LogoConta({ className, tone, src, alt, children, ...props }: LogoContaProps): react_jsx_runtime.JSX.Element;
|
|
8842
|
+
|
|
8756
8843
|
/**
|
|
8757
8844
|
* Menu root props
|
|
8758
8845
|
*/
|
|
@@ -9210,7 +9297,7 @@ declare function NavbarMenu({ className, isOpen, children, ...props }: NavbarMen
|
|
|
9210
9297
|
*/
|
|
9211
9298
|
declare const navbarVariants: (props?: ({
|
|
9212
9299
|
variant?: "default" | "bordered" | "transparent" | "floating" | null | undefined;
|
|
9213
|
-
size?: "sm" | "
|
|
9300
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
9214
9301
|
sticky?: boolean | null | undefined;
|
|
9215
9302
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
9216
9303
|
/**
|
|
@@ -9227,7 +9314,7 @@ declare const navbarBrandVariants: (props?: class_variance_authority_types.Class
|
|
|
9227
9314
|
* NavbarContent variant styles
|
|
9228
9315
|
*/
|
|
9229
9316
|
declare const navbarContentVariants: (props?: ({
|
|
9230
|
-
justify?: "
|
|
9317
|
+
justify?: "end" | "start" | "center" | null | undefined;
|
|
9231
9318
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
9232
9319
|
/**
|
|
9233
9320
|
* NavbarItem variant styles
|
|
@@ -9781,7 +9868,7 @@ declare const sidebarMenuItemVariants: (props?: class_variance_authority_types.C
|
|
|
9781
9868
|
*/
|
|
9782
9869
|
declare const sidebarMenuButtonVariants: (props?: ({
|
|
9783
9870
|
variant?: "default" | "outline" | null | undefined;
|
|
9784
|
-
size?: "
|
|
9871
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
9785
9872
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
9786
9873
|
/**
|
|
9787
9874
|
* SidebarRailButton variant styles
|
|
@@ -10964,7 +11051,7 @@ declare const accordionItemVariants: (props?: ({
|
|
|
10964
11051
|
* @see https://cva.style/docs
|
|
10965
11052
|
*/
|
|
10966
11053
|
declare const accordionTriggerVariants: (props?: ({
|
|
10967
|
-
size?: "
|
|
11054
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
10968
11055
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10969
11056
|
/**
|
|
10970
11057
|
* AccordionContent style variants using CVA
|
|
@@ -10972,13 +11059,13 @@ declare const accordionTriggerVariants: (props?: ({
|
|
|
10972
11059
|
* @see https://cva.style/docs
|
|
10973
11060
|
*/
|
|
10974
11061
|
declare const accordionContentVariants: (props?: ({
|
|
10975
|
-
size?: "
|
|
11062
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
10976
11063
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10977
11064
|
/**
|
|
10978
11065
|
* AccordionContent inner wrapper style variants using CVA
|
|
10979
11066
|
*/
|
|
10980
11067
|
declare const accordionContentInnerVariants: (props?: ({
|
|
10981
|
-
size?: "
|
|
11068
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
10982
11069
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10983
11070
|
type AccordionItemVariantProps = VariantProps<typeof accordionItemVariants>;
|
|
10984
11071
|
type AccordionTriggerVariantProps = VariantProps<typeof accordionTriggerVariants>;
|
|
@@ -11631,7 +11718,7 @@ declare namespace BarList {
|
|
|
11631
11718
|
*/
|
|
11632
11719
|
declare const calloutVariants: (props?: ({
|
|
11633
11720
|
variant?: "default" | "success" | "warning" | "info" | "tip" | "transparent" | "error" | null | undefined;
|
|
11634
|
-
size?: "sm" | "
|
|
11721
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
11635
11722
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
11636
11723
|
|
|
11637
11724
|
interface CalloutProps$1 extends React.ComponentProps<"div">, VariantProps<typeof calloutVariants> {
|
|
@@ -12254,7 +12341,7 @@ type ChartLegendProps = RechartsPrimitive.LegendProps;
|
|
|
12254
12341
|
*/
|
|
12255
12342
|
declare const dashboardCardVariants: (props?: ({
|
|
12256
12343
|
variant?: "default" | "outline" | "ghost" | "elevated" | null | undefined;
|
|
12257
|
-
size?: "sm" | "
|
|
12344
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
12258
12345
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
12259
12346
|
declare const dashboardCardHeaderVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
12260
12347
|
declare const dashboardCardTitleVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
@@ -13383,12 +13470,63 @@ declare function EmptyTitle({ className, ...props }: React.ComponentProps<"div">
|
|
|
13383
13470
|
declare function EmptyDescription({ className, ...props }: React.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
13384
13471
|
declare function EmptyContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
13385
13472
|
|
|
13473
|
+
/**
|
|
13474
|
+
* FeatureItem root layout. The leading visual (FeaturedIcon / Badge) is stacked
|
|
13475
|
+
* above the text body for the `feature-icon` and `badge` styles, separated by
|
|
13476
|
+
* `--feature-item-root-gap`. The `icon` style has no stacked leading element, so
|
|
13477
|
+
* its single body uses the tighter `--feature-item-body-gap`.
|
|
13478
|
+
*/
|
|
13479
|
+
declare const featureItemVariants: (props?: ({
|
|
13480
|
+
variant?: "badge" | "icon" | "feature-icon" | null | undefined;
|
|
13481
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
13482
|
+
|
|
13483
|
+
interface FeatureItemProps extends Omit<ComponentProps<"div">, "title">, VariantProps<typeof featureItemVariants> {
|
|
13484
|
+
/**
|
|
13485
|
+
* Badge label. Only rendered by the `badge` variant; ignored otherwise.
|
|
13486
|
+
*/
|
|
13487
|
+
badge?: ReactNode;
|
|
13488
|
+
/**
|
|
13489
|
+
* Supporting description shown beneath the title.
|
|
13490
|
+
*/
|
|
13491
|
+
description?: ReactNode;
|
|
13492
|
+
/**
|
|
13493
|
+
* Icon glyph (typically a Lucide icon). For the `feature-icon` variant it is
|
|
13494
|
+
* wrapped in a FeaturedIcon plate; for the `icon` variant it renders inline
|
|
13495
|
+
* beside the title. Ignored by the `badge` variant. Pass the icon without an
|
|
13496
|
+
* explicit size — it is sized via CSS.
|
|
13497
|
+
*/
|
|
13498
|
+
icon?: ReactNode;
|
|
13499
|
+
/**
|
|
13500
|
+
* Tone of the wrapping FeaturedIcon. Only applies to the `feature-icon`
|
|
13501
|
+
* variant.
|
|
13502
|
+
* @default "default"
|
|
13503
|
+
*/
|
|
13504
|
+
iconTone?: FeaturedIconTone;
|
|
13505
|
+
/**
|
|
13506
|
+
* Feature title. Rendered as the heading line of the item.
|
|
13507
|
+
*/
|
|
13508
|
+
title: ReactNode;
|
|
13509
|
+
}
|
|
13510
|
+
type FeatureItemVariant = NonNullable<VariantProps<typeof featureItemVariants>["variant"]>;
|
|
13511
|
+
|
|
13512
|
+
/**
|
|
13513
|
+
* FeatureItem is a promotional card pairing a leading visual with a title and
|
|
13514
|
+
* description. The leading visual is selected via `variant`:
|
|
13515
|
+
*
|
|
13516
|
+
* - `feature-icon` — an icon inside a FeaturedIcon plate, stacked above the text
|
|
13517
|
+
* - `badge` — a status badge, stacked above the text
|
|
13518
|
+
* - `icon` — a small icon rendered inline, to the left of the title
|
|
13519
|
+
*
|
|
13520
|
+
* All spacing, color and type come from `--feature-item-*` design tokens.
|
|
13521
|
+
*/
|
|
13522
|
+
declare function FeatureItem({ badge, className, description, icon, iconTone, title, variant, ...props }: FeatureItemProps): react_jsx_runtime.JSX.Element;
|
|
13523
|
+
|
|
13386
13524
|
declare const feedVariants: (props?: ({
|
|
13387
13525
|
variant?: "default" | "compact" | "highlighted" | null | undefined;
|
|
13388
|
-
size?: "
|
|
13526
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
13389
13527
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
13390
13528
|
declare const feedItemVariants: (props?: ({
|
|
13391
|
-
size?: "
|
|
13529
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
13392
13530
|
isActive?: boolean | null | undefined;
|
|
13393
13531
|
isHighlighted?: boolean | null | undefined;
|
|
13394
13532
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -13753,7 +13891,7 @@ interface GaugeChartProps {
|
|
|
13753
13891
|
}
|
|
13754
13892
|
|
|
13755
13893
|
declare const gaugeChartVariants: (props?: ({
|
|
13756
|
-
size?: "sm" | "
|
|
13894
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
13757
13895
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
13758
13896
|
/**
|
|
13759
13897
|
* GaugeChart - A speedometer-style gauge for displaying values on a scale
|
|
@@ -14044,7 +14182,7 @@ declare function ItemGroup({ className, ...props }: React$1.ComponentProps<"div"
|
|
|
14044
14182
|
declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Divider>): react_jsx_runtime.JSX.Element;
|
|
14045
14183
|
declare const itemVariants: (props?: ({
|
|
14046
14184
|
variant?: "default" | "muted" | "outline" | "active" | null | undefined;
|
|
14047
|
-
size?: "
|
|
14185
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
14048
14186
|
interactive?: boolean | null | undefined;
|
|
14049
14187
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
14050
14188
|
interface ItemEventPayload {
|
|
@@ -14426,7 +14564,7 @@ declare const listVariants: (props?: ({
|
|
|
14426
14564
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
14427
14565
|
declare const listItemVariants: (props?: ({
|
|
14428
14566
|
variant?: "flat" | "default" | "card" | "minimal" | null | undefined;
|
|
14429
|
-
size?: "
|
|
14567
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
14430
14568
|
selectable?: boolean | null | undefined;
|
|
14431
14569
|
selected?: boolean | null | undefined;
|
|
14432
14570
|
disabled?: boolean | null | undefined;
|
|
@@ -14550,17 +14688,17 @@ declare namespace MarkerBar {
|
|
|
14550
14688
|
}
|
|
14551
14689
|
|
|
14552
14690
|
declare const markerBarContainerVariants: (props?: ({
|
|
14553
|
-
size?: "sm" | "
|
|
14691
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
14554
14692
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
14555
14693
|
declare const markerBarRangeVariants: (props?: ({
|
|
14556
14694
|
animated?: boolean | null | undefined;
|
|
14557
14695
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
14558
14696
|
declare const markerBarMarkerWrapperVariants: (props?: ({
|
|
14559
|
-
size?: "sm" | "
|
|
14697
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
14560
14698
|
animated?: boolean | null | undefined;
|
|
14561
14699
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
14562
14700
|
declare const markerBarMarkerVariants: (props?: ({
|
|
14563
|
-
size?: "sm" | "
|
|
14701
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
14564
14702
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
14565
14703
|
|
|
14566
14704
|
/**
|
|
@@ -15340,7 +15478,7 @@ declare const tableHeadVariants: (props?: ({
|
|
|
15340
15478
|
* Table cell style variants
|
|
15341
15479
|
*/
|
|
15342
15480
|
declare const tableCellVariants: (props?: ({
|
|
15343
|
-
align?: "
|
|
15481
|
+
align?: "left" | "right" | "center" | null | undefined;
|
|
15344
15482
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
15345
15483
|
type TableContainerVariantProps = VariantProps<typeof tableContainerVariants>;
|
|
15346
15484
|
type TableVariantProps = VariantProps<typeof tableVariants>;
|
|
@@ -15369,21 +15507,21 @@ declare function TableCaption({ className, ...props }: React$1.ComponentProps<"c
|
|
|
15369
15507
|
*/
|
|
15370
15508
|
declare const timelineVariants: (props?: ({
|
|
15371
15509
|
variant?: "default" | "horizontal" | "compact" | "detailed" | null | undefined;
|
|
15372
|
-
size?: "
|
|
15510
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
15373
15511
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
15374
15512
|
/**
|
|
15375
15513
|
* Timeline item variants
|
|
15376
15514
|
*/
|
|
15377
15515
|
declare const timelineItemVariants: (props?: ({
|
|
15378
15516
|
variant?: "default" | "horizontal" | "compact" | "detailed" | null | undefined;
|
|
15379
|
-
size?: "
|
|
15517
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
15380
15518
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
15381
15519
|
/**
|
|
15382
15520
|
* Timeline marker variants based on status
|
|
15383
15521
|
*/
|
|
15384
15522
|
declare const timelineMarkerVariants: (props?: ({
|
|
15385
15523
|
status?: "current" | "error" | "pending" | "complete" | null | undefined;
|
|
15386
|
-
size?: "
|
|
15524
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
15387
15525
|
hasIcon?: boolean | null | undefined;
|
|
15388
15526
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
15389
15527
|
|
|
@@ -16918,7 +17056,7 @@ declare function UpdatesWidget({ className, items, emptyState, menu, title, ...p
|
|
|
16918
17056
|
* AssetManager root container variants
|
|
16919
17057
|
*/
|
|
16920
17058
|
declare const assetManagerVariants: (props?: ({
|
|
16921
|
-
size?: "sm" | "
|
|
17059
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
16922
17060
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
16923
17061
|
/**
|
|
16924
17062
|
* AssetManager toolbar variants
|
|
@@ -17259,7 +17397,7 @@ declare namespace AssetManagerEmpty {
|
|
|
17259
17397
|
* @see https://cva.style/docs
|
|
17260
17398
|
*/
|
|
17261
17399
|
declare const commandVariants: (props?: ({
|
|
17262
|
-
size?: "
|
|
17400
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
17263
17401
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
17264
17402
|
/**
|
|
17265
17403
|
* Command input wrapper style variants using CVA
|
|
@@ -17267,19 +17405,19 @@ declare const commandVariants: (props?: ({
|
|
|
17267
17405
|
* Controls the height and padding of the input container.
|
|
17268
17406
|
*/
|
|
17269
17407
|
declare const commandInputWrapperVariants: (props?: ({
|
|
17270
|
-
size?: "
|
|
17408
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
17271
17409
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
17272
17410
|
/**
|
|
17273
17411
|
* Command input style variants using CVA
|
|
17274
17412
|
*/
|
|
17275
17413
|
declare const commandInputVariants: (props?: ({
|
|
17276
|
-
size?: "
|
|
17414
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
17277
17415
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
17278
17416
|
/**
|
|
17279
17417
|
* Command input icon style variants using CVA
|
|
17280
17418
|
*/
|
|
17281
17419
|
declare const commandInputIconVariants: (props?: ({
|
|
17282
|
-
size?: "
|
|
17420
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
17283
17421
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
17284
17422
|
/**
|
|
17285
17423
|
* Command input clear button (Icon/X) style variants using CVA
|
|
@@ -17288,25 +17426,25 @@ declare const commandInputIconVariants: (props?: ({
|
|
|
17288
17426
|
* `Command/Input` Icon/X (16×16) shown to the right of the search input.
|
|
17289
17427
|
*/
|
|
17290
17428
|
declare const commandInputClearVariants: (props?: ({
|
|
17291
|
-
size?: "
|
|
17429
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
17292
17430
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
17293
17431
|
/**
|
|
17294
17432
|
* Command list style variants using CVA
|
|
17295
17433
|
*/
|
|
17296
17434
|
declare const commandListVariants: (props?: ({
|
|
17297
|
-
size?: "
|
|
17435
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
17298
17436
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
17299
17437
|
/**
|
|
17300
17438
|
* Command empty state style variants using CVA
|
|
17301
17439
|
*/
|
|
17302
17440
|
declare const commandEmptyVariants: (props?: ({
|
|
17303
|
-
size?: "
|
|
17441
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
17304
17442
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
17305
17443
|
/**
|
|
17306
17444
|
* Command group style variants using CVA
|
|
17307
17445
|
*/
|
|
17308
17446
|
declare const commandGroupVariants: (props?: ({
|
|
17309
|
-
size?: "
|
|
17447
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
17310
17448
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
17311
17449
|
/**
|
|
17312
17450
|
* Command item style variants using CVA
|
|
@@ -17314,20 +17452,20 @@ declare const commandGroupVariants: (props?: ({
|
|
|
17314
17452
|
* Supports both size and visual variant options.
|
|
17315
17453
|
*/
|
|
17316
17454
|
declare const commandItemVariants: (props?: ({
|
|
17317
|
-
size?: "
|
|
17455
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
17318
17456
|
variant?: "default" | "destructive" | null | undefined;
|
|
17319
17457
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
17320
17458
|
/**
|
|
17321
17459
|
* Command separator style variants using CVA
|
|
17322
17460
|
*/
|
|
17323
17461
|
declare const commandSeparatorVariants: (props?: ({
|
|
17324
|
-
size?: "
|
|
17462
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
17325
17463
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
17326
17464
|
/**
|
|
17327
17465
|
* Command shortcut style variants using CVA
|
|
17328
17466
|
*/
|
|
17329
17467
|
declare const commandShortcutVariants: (props?: ({
|
|
17330
|
-
size?: "
|
|
17468
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
17331
17469
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
17332
17470
|
type CommandVariantProps = VariantProps<typeof commandVariants>;
|
|
17333
17471
|
type CommandInputWrapperVariantProps = VariantProps<typeof commandInputWrapperVariants>;
|
|
@@ -17964,33 +18102,33 @@ declare class ErrorBoundary extends Component<ErrorBoundaryProps, ErrorBoundaryS
|
|
|
17964
18102
|
* ErrorBoundary fallback container variants
|
|
17965
18103
|
*/
|
|
17966
18104
|
declare const errorBoundaryFallbackVariants: (props?: ({
|
|
17967
|
-
variant?: "
|
|
18105
|
+
variant?: "minimal" | "action" | "detailed" | "fullscreen" | null | undefined;
|
|
17968
18106
|
severity?: "warning" | "info" | "error" | null | undefined;
|
|
17969
18107
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
17970
18108
|
/**
|
|
17971
18109
|
* ErrorBoundary fallback card variants
|
|
17972
18110
|
*/
|
|
17973
18111
|
declare const errorBoundaryCardVariants: (props?: ({
|
|
17974
|
-
variant?: "
|
|
18112
|
+
variant?: "minimal" | "action" | "detailed" | "fullscreen" | null | undefined;
|
|
17975
18113
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
17976
18114
|
/**
|
|
17977
18115
|
* ErrorBoundary icon variants
|
|
17978
18116
|
*/
|
|
17979
18117
|
declare const errorBoundaryIconVariants: (props?: ({
|
|
17980
|
-
size?: "sm" | "
|
|
18118
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
17981
18119
|
severity?: "warning" | "info" | "error" | null | undefined;
|
|
17982
18120
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
17983
18121
|
/**
|
|
17984
18122
|
* ErrorBoundary title variants
|
|
17985
18123
|
*/
|
|
17986
18124
|
declare const errorBoundaryTitleVariants: (props?: ({
|
|
17987
|
-
size?: "sm" | "
|
|
18125
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
17988
18126
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
17989
18127
|
/**
|
|
17990
18128
|
* ErrorBoundary message variants
|
|
17991
18129
|
*/
|
|
17992
18130
|
declare const errorBoundaryMessageVariants: (props?: ({
|
|
17993
|
-
size?: "sm" | "
|
|
18131
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
17994
18132
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
17995
18133
|
/**
|
|
17996
18134
|
* ErrorBoundary stack trace variants
|
|
@@ -18003,7 +18141,7 @@ declare const errorBoundaryStackVariants: (props?: ({
|
|
|
18003
18141
|
*/
|
|
18004
18142
|
declare const errorBoundaryActionVariants: (props?: ({
|
|
18005
18143
|
variant?: "primary" | "outline" | "ghost" | null | undefined;
|
|
18006
|
-
size?: "sm" | "
|
|
18144
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
18007
18145
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18008
18146
|
|
|
18009
18147
|
/**
|
|
@@ -18235,7 +18373,7 @@ declare function EventCalendar({ events, view: controlledView, date: controlledD
|
|
|
18235
18373
|
* EventCalendar container variants
|
|
18236
18374
|
*/
|
|
18237
18375
|
declare const eventCalendarVariants: (props?: ({
|
|
18238
|
-
size?: "sm" | "
|
|
18376
|
+
size?: "sm" | "md" | "lg" | "full" | null | undefined;
|
|
18239
18377
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18240
18378
|
/**
|
|
18241
18379
|
* Calendar header variants
|
|
@@ -18386,7 +18524,7 @@ declare const fileDropzoneVariants: (props?: ({
|
|
|
18386
18524
|
*/
|
|
18387
18525
|
declare const filePreviewVariants: (props?: ({
|
|
18388
18526
|
variant?: "inline" | "full" | "thumbnail" | "card" | null | undefined;
|
|
18389
|
-
size?: "sm" | "
|
|
18527
|
+
size?: "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
18390
18528
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18391
18529
|
/**
|
|
18392
18530
|
* FilePreview content area variants (for image/video preview)
|
|
@@ -18399,7 +18537,7 @@ declare const filePreviewContentVariants: (props?: ({
|
|
|
18399
18537
|
*/
|
|
18400
18538
|
declare const filePreviewFallbackVariants: (props?: ({
|
|
18401
18539
|
variant?: "inline" | "full" | "thumbnail" | "card" | null | undefined;
|
|
18402
|
-
size?: "sm" | "
|
|
18540
|
+
size?: "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
18403
18541
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18404
18542
|
/**
|
|
18405
18543
|
* FilePreview info section variants
|
|
@@ -18524,7 +18662,7 @@ declare const fileUploadVariants: (props?: ({
|
|
|
18524
18662
|
*/
|
|
18525
18663
|
declare const fileUploadTriggerVariants: (props?: ({
|
|
18526
18664
|
variant?: "default" | "secondary" | "outline" | "ghost" | null | undefined;
|
|
18527
|
-
size?: "sm" | "
|
|
18665
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
18528
18666
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18529
18667
|
/**
|
|
18530
18668
|
* FileUpload dropzone area variants
|
|
@@ -18543,7 +18681,7 @@ declare const fileUploadPreviewVariants: (props?: ({
|
|
|
18543
18681
|
* FileUpload avatar preview variants
|
|
18544
18682
|
*/
|
|
18545
18683
|
declare const fileUploadAvatarVariants: (props?: ({
|
|
18546
|
-
size?: "sm" | "
|
|
18684
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
18547
18685
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18548
18686
|
/**
|
|
18549
18687
|
* FileUpload progress bar variants
|
|
@@ -18859,76 +18997,76 @@ declare namespace FileUploadInline {
|
|
|
18859
18997
|
* FilterBuilder root container variants
|
|
18860
18998
|
*/
|
|
18861
18999
|
declare const filterBuilderVariants: (props?: ({
|
|
18862
|
-
size?: "
|
|
19000
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
18863
19001
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18864
19002
|
/**
|
|
18865
19003
|
* FilterGroup container variants
|
|
18866
19004
|
*/
|
|
18867
19005
|
declare const filterGroupVariants: (props?: ({
|
|
18868
|
-
size?: "
|
|
19006
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
18869
19007
|
isRoot?: boolean | null | undefined;
|
|
18870
19008
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18871
19009
|
/**
|
|
18872
19010
|
* FilterGroup header (combinator toggle) variants
|
|
18873
19011
|
*/
|
|
18874
19012
|
declare const filterGroupHeaderVariants: (props?: ({
|
|
18875
|
-
size?: "
|
|
19013
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
18876
19014
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18877
19015
|
/**
|
|
18878
19016
|
* Combinator toggle button variants
|
|
18879
19017
|
*/
|
|
18880
19018
|
declare const combinatorToggleVariants: (props?: ({
|
|
18881
|
-
size?: "
|
|
19019
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
18882
19020
|
active?: boolean | null | undefined;
|
|
18883
19021
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18884
19022
|
/**
|
|
18885
19023
|
* FilterRule container variants
|
|
18886
19024
|
*/
|
|
18887
19025
|
declare const filterRuleVariants: (props?: ({
|
|
18888
|
-
size?: "
|
|
19026
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
18889
19027
|
invalid?: boolean | null | undefined;
|
|
18890
19028
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18891
19029
|
/**
|
|
18892
19030
|
* Rule field select variants
|
|
18893
19031
|
*/
|
|
18894
19032
|
declare const ruleFieldVariants: (props?: ({
|
|
18895
|
-
size?: "
|
|
19033
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
18896
19034
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18897
19035
|
/**
|
|
18898
19036
|
* Rule operator select variants
|
|
18899
19037
|
*/
|
|
18900
19038
|
declare const ruleOperatorVariants: (props?: ({
|
|
18901
|
-
size?: "
|
|
19039
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
18902
19040
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18903
19041
|
/**
|
|
18904
19042
|
* Rule value input variants
|
|
18905
19043
|
*/
|
|
18906
19044
|
declare const ruleValueVariants: (props?: ({
|
|
18907
|
-
size?: "
|
|
19045
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
18908
19046
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18909
19047
|
/**
|
|
18910
19048
|
* Rules container variants
|
|
18911
19049
|
*/
|
|
18912
19050
|
declare const rulesContainerVariants: (props?: ({
|
|
18913
|
-
size?: "
|
|
19051
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
18914
19052
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18915
19053
|
/**
|
|
18916
19054
|
* FilterToolbar variants
|
|
18917
19055
|
*/
|
|
18918
19056
|
declare const filterToolbarVariants: (props?: ({
|
|
18919
|
-
size?: "
|
|
19057
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
18920
19058
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18921
19059
|
/**
|
|
18922
19060
|
* FilterPreview variants
|
|
18923
19061
|
*/
|
|
18924
19062
|
declare const filterPreviewVariants: (props?: ({
|
|
18925
|
-
size?: "
|
|
19063
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
18926
19064
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18927
19065
|
/**
|
|
18928
19066
|
* Empty state variants
|
|
18929
19067
|
*/
|
|
18930
19068
|
declare const emptyStateVariants: (props?: ({
|
|
18931
|
-
size?: "
|
|
19069
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
18932
19070
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18933
19071
|
type FilterBuilderVariantProps = VariantProps<typeof filterBuilderVariants>;
|
|
18934
19072
|
type FilterGroupVariantProps = VariantProps<typeof filterGroupVariants>;
|
|
@@ -19372,7 +19510,7 @@ declare function Portal({ children, container, disabled }: PortalProps): react_j
|
|
|
19372
19510
|
*/
|
|
19373
19511
|
declare const portalContainerVariants: (props?: ({
|
|
19374
19512
|
position?: "fixed" | "relative" | "absolute" | null | undefined;
|
|
19375
|
-
zIndex?: "
|
|
19513
|
+
zIndex?: "max" | "tooltip" | "base" | "popover" | "sticky" | "modal" | "overlay" | "dropdown" | "toast" | null | undefined;
|
|
19376
19514
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19377
19515
|
/**
|
|
19378
19516
|
* Portal overlay variants
|
|
@@ -19387,8 +19525,8 @@ declare const portalOverlayVariants: (props?: ({
|
|
|
19387
19525
|
* Used for centering or positioning portaled content
|
|
19388
19526
|
*/
|
|
19389
19527
|
declare const portalContentVariants: (props?: ({
|
|
19390
|
-
position?: "
|
|
19391
|
-
padding?: "
|
|
19528
|
+
position?: "left" | "right" | "center" | "bottom" | "top" | "bottom-left" | "bottom-right" | "top-left" | "top-right" | null | undefined;
|
|
19529
|
+
padding?: "sm" | "md" | "lg" | "none" | null | undefined;
|
|
19392
19530
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19393
19531
|
|
|
19394
19532
|
type ReportBuilderFieldKind = "dimension" | "metric";
|
|
@@ -19573,7 +19711,7 @@ declare function RichTextEditor({ "aria-label": ariaLabel, autofocus, className,
|
|
|
19573
19711
|
* RichTextEditor container variants
|
|
19574
19712
|
*/
|
|
19575
19713
|
declare const richTextEditorVariants: (props?: ({
|
|
19576
|
-
size?: "sm" | "
|
|
19714
|
+
size?: "sm" | "md" | "lg" | "full" | null | undefined;
|
|
19577
19715
|
disabled?: boolean | null | undefined;
|
|
19578
19716
|
focused?: boolean | null | undefined;
|
|
19579
19717
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -19589,7 +19727,7 @@ declare const richTextEditorToolbarVariants: (props?: ({
|
|
|
19589
19727
|
*/
|
|
19590
19728
|
declare const richTextEditorToolbarButtonVariants: (props?: ({
|
|
19591
19729
|
variant?: "default" | "active" | null | undefined;
|
|
19592
|
-
size?: "sm" | "
|
|
19730
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
19593
19731
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19594
19732
|
/**
|
|
19595
19733
|
* RichTextEditor content area variants
|
|
@@ -19845,77 +19983,77 @@ interface SearchHighlightProps {
|
|
|
19845
19983
|
*/
|
|
19846
19984
|
declare const searchVariants: (props?: ({
|
|
19847
19985
|
variant?: "inline" | "command" | "fullscreen" | null | undefined;
|
|
19848
|
-
size?: "
|
|
19986
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
19849
19987
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19850
19988
|
/**
|
|
19851
19989
|
* Search input wrapper variants
|
|
19852
19990
|
*/
|
|
19853
19991
|
declare const searchInputWrapperVariants: (props?: ({
|
|
19854
|
-
size?: "
|
|
19992
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
19855
19993
|
variant?: "inline" | "command" | "fullscreen" | null | undefined;
|
|
19856
19994
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19857
19995
|
/**
|
|
19858
19996
|
* Search input field variants
|
|
19859
19997
|
*/
|
|
19860
19998
|
declare const searchInputVariants: (props?: ({
|
|
19861
|
-
size?: "
|
|
19999
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
19862
20000
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19863
20001
|
/**
|
|
19864
20002
|
* Search results container variants
|
|
19865
20003
|
*/
|
|
19866
20004
|
declare const searchResultsVariants: (props?: ({
|
|
19867
|
-
size?: "
|
|
20005
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
19868
20006
|
variant?: "inline" | "command" | "fullscreen" | null | undefined;
|
|
19869
20007
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19870
20008
|
/**
|
|
19871
20009
|
* Search result item variants
|
|
19872
20010
|
*/
|
|
19873
20011
|
declare const searchResultItemVariants: (props?: ({
|
|
19874
|
-
size?: "
|
|
20012
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
19875
20013
|
selected?: boolean | null | undefined;
|
|
19876
20014
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19877
20015
|
/**
|
|
19878
20016
|
* Search result icon variants
|
|
19879
20017
|
*/
|
|
19880
20018
|
declare const searchResultIconVariants: (props?: ({
|
|
19881
|
-
size?: "
|
|
20019
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
19882
20020
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19883
20021
|
/**
|
|
19884
20022
|
* Search result group heading variants
|
|
19885
20023
|
*/
|
|
19886
20024
|
declare const searchGroupHeadingVariants: (props?: ({
|
|
19887
|
-
size?: "
|
|
20025
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
19888
20026
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19889
20027
|
/**
|
|
19890
20028
|
* Search empty state variants
|
|
19891
20029
|
*/
|
|
19892
20030
|
declare const searchEmptyVariants: (props?: ({
|
|
19893
|
-
size?: "
|
|
20031
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
19894
20032
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19895
20033
|
/**
|
|
19896
20034
|
* Search loading variants
|
|
19897
20035
|
*/
|
|
19898
20036
|
declare const searchLoadingVariants: (props?: ({
|
|
19899
|
-
size?: "
|
|
20037
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
19900
20038
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19901
20039
|
/**
|
|
19902
20040
|
* Search filter button variants
|
|
19903
20041
|
*/
|
|
19904
20042
|
declare const searchFilterVariants: (props?: ({
|
|
19905
|
-
size?: "
|
|
20043
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
19906
20044
|
active?: boolean | null | undefined;
|
|
19907
20045
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19908
20046
|
/**
|
|
19909
20047
|
* Search filters container variants
|
|
19910
20048
|
*/
|
|
19911
20049
|
declare const searchFiltersContainerVariants: (props?: ({
|
|
19912
|
-
size?: "
|
|
20050
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
19913
20051
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19914
20052
|
/**
|
|
19915
20053
|
* Search history header variants
|
|
19916
20054
|
*/
|
|
19917
20055
|
declare const searchHistoryHeaderVariants: (props?: ({
|
|
19918
|
-
size?: "
|
|
20056
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
19919
20057
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
19920
20058
|
/**
|
|
19921
20059
|
* Search highlight match variants
|
|
@@ -20152,14 +20290,14 @@ declare const sortableListOverlayVariants: (props?: ({} & class_variance_authori
|
|
|
20152
20290
|
*/
|
|
20153
20291
|
declare const versionControlVariants: (props?: ({
|
|
20154
20292
|
variant?: "list" | "compact" | "timeline" | "diff" | null | undefined;
|
|
20155
|
-
size?: "
|
|
20293
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
20156
20294
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
20157
20295
|
/**
|
|
20158
20296
|
* VersionItem variants
|
|
20159
20297
|
*/
|
|
20160
20298
|
declare const versionItemVariants: (props?: ({
|
|
20161
20299
|
variant?: "list" | "compact" | "timeline" | "diff" | null | undefined;
|
|
20162
|
-
size?: "
|
|
20300
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
20163
20301
|
isCurrent?: boolean | null | undefined;
|
|
20164
20302
|
isSelected?: boolean | null | undefined;
|
|
20165
20303
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -20168,14 +20306,14 @@ declare const versionItemVariants: (props?: ({
|
|
|
20168
20306
|
*/
|
|
20169
20307
|
declare const versionBadgeVariants: (props?: ({
|
|
20170
20308
|
variant?: "previous" | "current" | "selected" | null | undefined;
|
|
20171
|
-
size?: "
|
|
20309
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
20172
20310
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
20173
20311
|
/**
|
|
20174
20312
|
* Diff line variants
|
|
20175
20313
|
*/
|
|
20176
20314
|
declare const diffLineVariants: (props?: ({
|
|
20177
20315
|
type?: "context" | "addition" | "deletion" | null | undefined;
|
|
20178
|
-
size?: "
|
|
20316
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
20179
20317
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
20180
20318
|
/**
|
|
20181
20319
|
* Change indicator variants (additions/deletions)
|
|
@@ -20188,14 +20326,14 @@ declare const changeIndicatorVariants: (props?: ({
|
|
|
20188
20326
|
*/
|
|
20189
20327
|
declare const versionTimelineConnectorVariants: (props?: ({
|
|
20190
20328
|
status?: "previous" | "current" | null | undefined;
|
|
20191
|
-
size?: "
|
|
20329
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
20192
20330
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
20193
20331
|
/**
|
|
20194
20332
|
* Version timeline marker variants
|
|
20195
20333
|
*/
|
|
20196
20334
|
declare const versionTimelineMarkerVariants: (props?: ({
|
|
20197
20335
|
status?: "previous" | "current" | null | undefined;
|
|
20198
|
-
size?: "
|
|
20336
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
20199
20337
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
20200
20338
|
|
|
20201
20339
|
/**
|
|
@@ -20450,7 +20588,7 @@ declare const approvalFlowStepVariants: (props?: ({
|
|
|
20450
20588
|
*/
|
|
20451
20589
|
declare const approvalFlowMarkerVariants: (props?: ({
|
|
20452
20590
|
status?: "pending" | "in_progress" | "awaiting" | "approved" | "rejected" | "escalated" | "skipped" | null | undefined;
|
|
20453
|
-
size?: "
|
|
20591
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
20454
20592
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
20455
20593
|
/**
|
|
20456
20594
|
* Connector line variants between steps
|
|
@@ -20731,7 +20869,7 @@ declare function ApprovalFlow({ "aria-label": ariaLabel, className, steps, curre
|
|
|
20731
20869
|
* ApprovalStatus variant styles using CVA
|
|
20732
20870
|
*/
|
|
20733
20871
|
declare const approvalStatusVariants: (props?: ({
|
|
20734
|
-
size?: "sm" | "
|
|
20872
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
20735
20873
|
variant?: "default" | "compact" | "detailed" | "timeline" | null | undefined;
|
|
20736
20874
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
20737
20875
|
|
|
@@ -21236,7 +21374,7 @@ declare const dashboardGridVariants: (props?: ({
|
|
|
21236
21374
|
* Dashboard sidebar variants
|
|
21237
21375
|
*/
|
|
21238
21376
|
declare const dashboardSidebarVariants: (props?: ({
|
|
21239
|
-
width?: "sm" | "
|
|
21377
|
+
width?: "sm" | "md" | "lg" | null | undefined;
|
|
21240
21378
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
21241
21379
|
/**
|
|
21242
21380
|
* Dashboard content variants
|
|
@@ -21575,7 +21713,7 @@ declare const dashboardBuilderWidgetVariants: (props?: ({
|
|
|
21575
21713
|
*/
|
|
21576
21714
|
declare const dashboardBuilderResizeHandleVariants: (props?: ({
|
|
21577
21715
|
position?: "s" | "e" | "se" | "sw" | "ne" | "nw" | "w" | "n" | null | undefined;
|
|
21578
|
-
size?: "
|
|
21716
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
21579
21717
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
21580
21718
|
/**
|
|
21581
21719
|
* Drop zone indicator variants
|
|
@@ -22262,7 +22400,7 @@ declare function KanbanBoard({ allowAddColumn, allowAddItem, allowColumnReorder,
|
|
|
22262
22400
|
*/
|
|
22263
22401
|
declare const progressStepsVariants: (props?: ({
|
|
22264
22402
|
orientation?: "vertical" | "horizontal" | null | undefined;
|
|
22265
|
-
size?: "sm" | "
|
|
22403
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
22266
22404
|
variant?: "default" | "dot" | "icon" | "bar" | "numbered" | null | undefined;
|
|
22267
22405
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22268
22406
|
/**
|
|
@@ -22270,14 +22408,14 @@ declare const progressStepsVariants: (props?: ({
|
|
|
22270
22408
|
*/
|
|
22271
22409
|
declare const stepItemVariants$1: (props?: ({
|
|
22272
22410
|
orientation?: "vertical" | "horizontal" | null | undefined;
|
|
22273
|
-
size?: "sm" | "
|
|
22411
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
22274
22412
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22275
22413
|
/**
|
|
22276
22414
|
* Step circle/marker variants
|
|
22277
22415
|
*/
|
|
22278
22416
|
declare const stepCircleVariants: (props?: ({
|
|
22279
22417
|
animated?: boolean | null | undefined;
|
|
22280
|
-
size?: "sm" | "
|
|
22418
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
22281
22419
|
status?: "current" | "error" | "completed" | "skipped" | "upcoming" | null | undefined;
|
|
22282
22420
|
variant?: "default" | "dot" | "icon" | "bar" | "numbered" | null | undefined;
|
|
22283
22421
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -22286,14 +22424,14 @@ declare const stepCircleVariants: (props?: ({
|
|
|
22286
22424
|
*/
|
|
22287
22425
|
declare const stepDotVariants: (props?: ({
|
|
22288
22426
|
animated?: boolean | null | undefined;
|
|
22289
|
-
size?: "sm" | "
|
|
22427
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
22290
22428
|
status?: "current" | "error" | "completed" | "skipped" | "upcoming" | null | undefined;
|
|
22291
22429
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22292
22430
|
/**
|
|
22293
22431
|
* Connector line variants (horizontal)
|
|
22294
22432
|
*/
|
|
22295
22433
|
declare const stepConnectorHorizontalVariants: (props?: ({
|
|
22296
|
-
size?: "sm" | "
|
|
22434
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
22297
22435
|
status?: "current" | "error" | "completed" | "skipped" | "upcoming" | null | undefined;
|
|
22298
22436
|
variant?: "default" | "dot" | "icon" | "bar" | "numbered" | null | undefined;
|
|
22299
22437
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -22301,7 +22439,7 @@ declare const stepConnectorHorizontalVariants: (props?: ({
|
|
|
22301
22439
|
* Connector line variants (vertical)
|
|
22302
22440
|
*/
|
|
22303
22441
|
declare const stepConnectorVerticalVariants: (props?: ({
|
|
22304
|
-
size?: "sm" | "
|
|
22442
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
22305
22443
|
status?: "current" | "error" | "completed" | "skipped" | "upcoming" | null | undefined;
|
|
22306
22444
|
variant?: "default" | "dot" | "icon" | "bar" | "numbered" | null | undefined;
|
|
22307
22445
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -22309,14 +22447,14 @@ declare const stepConnectorVerticalVariants: (props?: ({
|
|
|
22309
22447
|
* Step label variants
|
|
22310
22448
|
*/
|
|
22311
22449
|
declare const stepLabelVariants: (props?: ({
|
|
22312
|
-
size?: "sm" | "
|
|
22450
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
22313
22451
|
status?: "current" | "error" | "completed" | "skipped" | "upcoming" | null | undefined;
|
|
22314
22452
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22315
22453
|
/**
|
|
22316
22454
|
* Step description variants
|
|
22317
22455
|
*/
|
|
22318
22456
|
declare const stepDescriptionVariants: (props?: ({
|
|
22319
|
-
size?: "sm" | "
|
|
22457
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
22320
22458
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22321
22459
|
/**
|
|
22322
22460
|
* Bar segment variants (for bar variant)
|
|
@@ -22419,14 +22557,14 @@ declare function ProgressSteps({ animated, className, currentStep, orientation,
|
|
|
22419
22557
|
* ReportGenerator container variants
|
|
22420
22558
|
*/
|
|
22421
22559
|
declare const reportGeneratorVariants: (props?: ({
|
|
22422
|
-
size?: "
|
|
22560
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22423
22561
|
layout?: "default" | "full" | "compact" | null | undefined;
|
|
22424
22562
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22425
22563
|
/**
|
|
22426
22564
|
* Step indicator variants
|
|
22427
22565
|
*/
|
|
22428
22566
|
declare const stepIndicatorVariants: (props?: ({
|
|
22429
|
-
size?: "
|
|
22567
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22430
22568
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22431
22569
|
/**
|
|
22432
22570
|
* Step item variants
|
|
@@ -22440,7 +22578,7 @@ declare const stepItemVariants: (props?: ({
|
|
|
22440
22578
|
*/
|
|
22441
22579
|
declare const stepBadgeVariants: (props?: ({
|
|
22442
22580
|
state?: "active" | "pending" | "complete" | null | undefined;
|
|
22443
|
-
size?: "
|
|
22581
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22444
22582
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22445
22583
|
/**
|
|
22446
22584
|
* Template grid variants
|
|
@@ -22458,31 +22596,31 @@ declare const templateCardVariants: (props?: ({
|
|
|
22458
22596
|
* Configuration section variants
|
|
22459
22597
|
*/
|
|
22460
22598
|
declare const configSectionVariants: (props?: ({
|
|
22461
|
-
size?: "
|
|
22599
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22462
22600
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22463
22601
|
/**
|
|
22464
22602
|
* Preview container variants
|
|
22465
22603
|
*/
|
|
22466
22604
|
declare const previewContainerVariants: (props?: ({
|
|
22467
|
-
size?: "
|
|
22605
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22468
22606
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22469
22607
|
/**
|
|
22470
22608
|
* Preview header variants
|
|
22471
22609
|
*/
|
|
22472
22610
|
declare const previewHeaderVariants: (props?: ({
|
|
22473
|
-
size?: "
|
|
22611
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22474
22612
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22475
22613
|
/**
|
|
22476
22614
|
* Preview content variants
|
|
22477
22615
|
*/
|
|
22478
22616
|
declare const previewContentVariants: (props?: ({
|
|
22479
|
-
size?: "
|
|
22617
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22480
22618
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22481
22619
|
/**
|
|
22482
22620
|
* Export button group variants
|
|
22483
22621
|
*/
|
|
22484
22622
|
declare const exportButtonGroupVariants: (props?: ({
|
|
22485
|
-
align?: "
|
|
22623
|
+
align?: "end" | "start" | "center" | null | undefined;
|
|
22486
22624
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22487
22625
|
/**
|
|
22488
22626
|
* Form actions variants
|
|
@@ -22494,13 +22632,13 @@ declare const formActionsVariants: (props?: ({
|
|
|
22494
22632
|
* Loading state variants
|
|
22495
22633
|
*/
|
|
22496
22634
|
declare const loadingStateVariants: (props?: ({
|
|
22497
|
-
size?: "
|
|
22635
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22498
22636
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22499
22637
|
/**
|
|
22500
22638
|
* Error state variants
|
|
22501
22639
|
*/
|
|
22502
22640
|
declare const errorStateVariants: (props?: ({
|
|
22503
|
-
size?: "
|
|
22641
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22504
22642
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22505
22643
|
type ReportGeneratorVariantProps = VariantProps<typeof reportGeneratorVariants>;
|
|
22506
22644
|
type StepIndicatorVariantProps = VariantProps<typeof stepIndicatorVariants>;
|
|
@@ -22788,49 +22926,49 @@ declare function ReportGenerator({ templates, dataSource, defaultTemplate, expor
|
|
|
22788
22926
|
* Stepper container variants
|
|
22789
22927
|
*/
|
|
22790
22928
|
declare const stepperVariants: (props?: ({
|
|
22791
|
-
size?: "
|
|
22929
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22792
22930
|
variant?: "vertical" | "default" | "compact" | null | undefined;
|
|
22793
22931
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22794
22932
|
/**
|
|
22795
22933
|
* Step item container variants
|
|
22796
22934
|
*/
|
|
22797
22935
|
declare const stepperItemVariants: (props?: ({
|
|
22798
|
-
size?: "
|
|
22936
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22799
22937
|
variant?: "vertical" | "default" | "compact" | null | undefined;
|
|
22800
22938
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22801
22939
|
/**
|
|
22802
22940
|
* Step indicator (circle) variants
|
|
22803
22941
|
*/
|
|
22804
22942
|
declare const stepperIndicatorVariants: (props?: ({
|
|
22805
|
-
size?: "
|
|
22943
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22806
22944
|
status?: "active" | "error" | "pending" | "complete" | null | undefined;
|
|
22807
22945
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22808
22946
|
/**
|
|
22809
22947
|
* Horizontal connector variants
|
|
22810
22948
|
*/
|
|
22811
22949
|
declare const stepperConnectorHorizontalVariants: (props?: ({
|
|
22812
|
-
size?: "
|
|
22950
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22813
22951
|
status?: "active" | "error" | "pending" | "complete" | null | undefined;
|
|
22814
22952
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22815
22953
|
/**
|
|
22816
22954
|
* Vertical connector variants
|
|
22817
22955
|
*/
|
|
22818
22956
|
declare const stepperConnectorVerticalVariants: (props?: ({
|
|
22819
|
-
size?: "
|
|
22957
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22820
22958
|
status?: "active" | "error" | "pending" | "complete" | null | undefined;
|
|
22821
22959
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22822
22960
|
/**
|
|
22823
22961
|
* Step label variants
|
|
22824
22962
|
*/
|
|
22825
22963
|
declare const stepperLabelVariants: (props?: ({
|
|
22826
|
-
size?: "
|
|
22964
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22827
22965
|
status?: "active" | "error" | "pending" | "complete" | null | undefined;
|
|
22828
22966
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22829
22967
|
/**
|
|
22830
22968
|
* Step description variants
|
|
22831
22969
|
*/
|
|
22832
22970
|
declare const stepperDescriptionVariants: (props?: ({
|
|
22833
|
-
size?: "
|
|
22971
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22834
22972
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22835
22973
|
type StepperVariantProps = VariantProps<typeof stepperVariants>;
|
|
22836
22974
|
type StepperItemVariantProps = VariantProps<typeof stepperItemVariants>;
|
|
@@ -22901,7 +23039,7 @@ declare function Stepper({ children, className, clickable, completed, currentSte
|
|
|
22901
23039
|
* TaskCard variant styles using CVA
|
|
22902
23040
|
*/
|
|
22903
23041
|
declare const taskCardVariants: (props?: ({
|
|
22904
|
-
size?: "
|
|
23042
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
22905
23043
|
variant?: "default" | "elevated" | "highlighted" | "minimal" | null | undefined;
|
|
22906
23044
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
22907
23045
|
/**
|
|
@@ -22998,26 +23136,26 @@ declare function TaskCard({ assignee, children, className, completed, descriptio
|
|
|
22998
23136
|
* TaskList container variant styles using CVA
|
|
22999
23137
|
*/
|
|
23000
23138
|
declare const taskListVariants: (props?: ({
|
|
23001
|
-
size?: "
|
|
23139
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
23002
23140
|
variant?: "default" | "compact" | "grouped" | null | undefined;
|
|
23003
23141
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
23004
23142
|
/**
|
|
23005
23143
|
* TaskList header styles
|
|
23006
23144
|
*/
|
|
23007
23145
|
declare const taskListHeaderVariants: (props?: ({
|
|
23008
|
-
size?: "
|
|
23146
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
23009
23147
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
23010
23148
|
/**
|
|
23011
23149
|
* TaskList title styles
|
|
23012
23150
|
*/
|
|
23013
23151
|
declare const taskListTitleVariants: (props?: ({
|
|
23014
|
-
size?: "
|
|
23152
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
23015
23153
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
23016
23154
|
/**
|
|
23017
23155
|
* TaskList item wrapper styles
|
|
23018
23156
|
*/
|
|
23019
23157
|
declare const taskListItemVariants: (props?: ({
|
|
23020
|
-
size?: "
|
|
23158
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
23021
23159
|
variant?: "default" | "compact" | "grouped" | null | undefined;
|
|
23022
23160
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
23023
23161
|
/**
|
|
@@ -23127,7 +23265,7 @@ declare function TaskList({ className, empty, filterable, groupBy, loading, onSe
|
|
|
23127
23265
|
declare const taskStatusVariants: (props?: ({
|
|
23128
23266
|
disabled?: boolean | null | undefined;
|
|
23129
23267
|
interactive?: boolean | null | undefined;
|
|
23130
|
-
size?: "
|
|
23268
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
23131
23269
|
variant?: "default" | "outline" | "subtle" | "pill" | null | undefined;
|
|
23132
23270
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
23133
23271
|
/**
|
|
@@ -23141,19 +23279,19 @@ declare const taskStatusColorVariants: (props?: ({
|
|
|
23141
23279
|
* Icon container variants
|
|
23142
23280
|
*/
|
|
23143
23281
|
declare const taskStatusIconVariants: (props?: ({
|
|
23144
|
-
size?: "
|
|
23282
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
23145
23283
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
23146
23284
|
/**
|
|
23147
23285
|
* Label variants
|
|
23148
23286
|
*/
|
|
23149
23287
|
declare const taskStatusLabelVariants: (props?: ({
|
|
23150
|
-
size?: "
|
|
23288
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
23151
23289
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
23152
23290
|
/**
|
|
23153
23291
|
* Trigger button variants (for interactive mode)
|
|
23154
23292
|
*/
|
|
23155
23293
|
declare const taskStatusTriggerVariants: (props?: ({
|
|
23156
|
-
size?: "
|
|
23294
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
23157
23295
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
23158
23296
|
/**
|
|
23159
23297
|
* Dropdown menu item variants
|
|
@@ -23265,34 +23403,34 @@ declare function TaskStatus({ children, className, customStatuses, disabled, int
|
|
|
23265
23403
|
*/
|
|
23266
23404
|
declare const wizardVariants: (props?: ({
|
|
23267
23405
|
variant?: "vertical" | "default" | "card" | null | undefined;
|
|
23268
|
-
size?: "
|
|
23406
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
23269
23407
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
23270
23408
|
/**
|
|
23271
23409
|
* Wizard content area variants
|
|
23272
23410
|
*/
|
|
23273
23411
|
declare const wizardContentVariants: (props?: ({
|
|
23274
23412
|
variant?: "vertical" | "default" | "card" | null | undefined;
|
|
23275
|
-
size?: "
|
|
23413
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
23276
23414
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
23277
23415
|
/**
|
|
23278
23416
|
* Wizard stepper area variants
|
|
23279
23417
|
*/
|
|
23280
23418
|
declare const wizardStepperVariants: (props?: ({
|
|
23281
23419
|
variant?: "vertical" | "default" | "card" | null | undefined;
|
|
23282
|
-
size?: "
|
|
23420
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
23283
23421
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
23284
23422
|
/**
|
|
23285
23423
|
* Wizard actions area variants
|
|
23286
23424
|
*/
|
|
23287
23425
|
declare const wizardActionsVariants: (props?: ({
|
|
23288
23426
|
variant?: "vertical" | "default" | "card" | null | undefined;
|
|
23289
|
-
size?: "
|
|
23427
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
23290
23428
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
23291
23429
|
/**
|
|
23292
23430
|
* Wizard step content wrapper variants
|
|
23293
23431
|
*/
|
|
23294
23432
|
declare const wizardStepContentVariants: (props?: ({
|
|
23295
|
-
size?: "
|
|
23433
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
23296
23434
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
23297
23435
|
|
|
23298
23436
|
/**
|
|
@@ -23532,4 +23670,4 @@ declare function getColorClassName(color: ChartColor, type: ColorUtility): strin
|
|
|
23532
23670
|
*/
|
|
23533
23671
|
declare function getYAxisDomain(autoMinValue: boolean, minValue?: number, maxValue?: number): ["auto" | number, "auto" | number];
|
|
23534
23672
|
|
|
23535
|
-
export { ALL_STATUSES, Accordion, AccordionContent, type AccordionContentProps, type AccordionEventPayload, AccordionItem, type AccordionItemProps, type AccordionItemVariantProps, type AccordionProps, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionTriggerVariantProps, type AccordionVariant, type AccordionVariantProps, AccountSwitch, type AccountSwitchAccount, type AccountSwitchProps, type ActiveDatesMatcher, type ActiveItem, AdvancedSearchInput, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, type AlertDialogPortalProps, type AlertDialogProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, type AlertProps, AlertTitle, type AlertTitleProps, type AlertVariant, type ApprovalAction, type ApprovalCondition, ApprovalFlow, type ApprovalFlowActionsVariantProps, type Approver$1 as ApprovalFlowApprover, ApprovalFlowConnector, type ApprovalFlowConnectorVariantProps, ApprovalFlowMarker, type ApprovalFlowMarkerVariantProps, type ApprovalFlowProps, ApprovalFlowStep, type ApprovalFlowStepCardVariantProps, type ApprovalFlowStepProps, type ApprovalFlowStepVariantProps, type ApprovalFlowVariantProps, type ApprovalHistory, ApprovalStatus, type ApprovalStatusProps, type ApprovalStatusType, type ApprovalStep, type ApprovalStepStatus, type ApprovePayload, type Approver, AreaChart, type AreaChartCurveType, type AreaChartEventProps, type AreaChartFill, type AreaChartIntervalType, type AreaChartLegendPosition, type AreaChartProps, type AreaChartSeriesConfig, type AreaChartTooltipCallbackProps, type AreaChartTooltipIndicator, type AreaChartVariant, AspectRatio, type AspectRatioPreset, type AspectRatioProps, type Asset, type AssetFilter, AssetManager, type AssetManagerContextValue, type AssetManagerDataSlot, AssetManagerEmpty, type AssetManagerEmptyProps, AssetManagerGrid, type AssetManagerGridProps, type AssetManagerGridVariantProps, AssetManagerItem, type AssetManagerItemProps, type AssetManagerItemVariantProps, AssetManagerList, type AssetManagerListProps, type AssetManagerProps, AssetManagerSidebar, type AssetManagerSidebarProps, type AssetManagerSidebarVariantProps, AssetManagerToolbar, type AssetManagerToolbarProps, type AssetManagerToolbarVariantProps, AssetManagerUploader, type AssetManagerUploaderProps, type AssetManagerUploaderVariantProps, type AssetManagerVariantProps, type AssetSort, type AssetSortDirection, type AssetSortField, type AssetView, Autocomplete, type AutocompleteOption, type AutocompleteProps, type AutocompleteSize, type AutocompleteVariant, Avatar, AvatarAddButton, type AvatarAddButtonProps, AvatarBadge, type AvatarBadgeProps, type AvatarColorScheme, AvatarFallback, type AvatarFallbackProps, AvatarGroup, type AvatarGroupProps, AvatarImage, type AvatarImageProps, AvatarLabelGroup, type AvatarLabelGroupProps, AvatarLabelGroupSkeleton, type AvatarLabelGroupSkeletonProps, type AvatarProps, type AvatarShape, type AvatarSize, AvatarSkeleton, type AvatarSkeletonProps, AvatarStatus, type AvatarStatusProps, Badge, type BadgeAvatarProps, type BadgeColor, type BadgeLegacyVariant, type BadgeProps, type BadgeSize, type BadgeType, Banner, type BannerProps$1 as BannerComponentProps, type BannerPosition, type BannerProps, type BannerVariant, BarChart, type BarChartEventProps, type BarChartIntervalType, type BarChartLayout, type BarChartLegendPosition, type BarChartProps, type BarChartSeriesConfig, type BarChartTooltipCallbackProps, type BarChartTooltipIndicator, type BarChartVariant, BarList, type BarListDataItem, type BarListProps, type BarListSortOrder, type BrandingConfig, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, type BreadcrumbEllipsisVariantProps, BreadcrumbItem, type BreadcrumbItemProps, type BreadcrumbItemVariantProps, BreadcrumbLink, type BreadcrumbLinkProps, type BreadcrumbLinkVariantProps, BreadcrumbList, type BreadcrumbListProps, type BreadcrumbListVariantProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbPageVariantProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, type BreadcrumbSeparatorVariantProps, type BuilderDataSource, type BuilderLayoutConfig, type BuilderMode, type BuilderPosition, type BuilderSavePayload, type BuilderState, type BuilderWidget, type BuilderWidgetAddPayload, type BuilderWidgetDefinition, type BuilderWidgetLayout, type BuilderWidgetProps, type BuilderWidgetRemovePayload, type BuilderWidgetUpdatePayload, Button, type ButtonCVAVariant, type ButtonEventPayload, ButtonGroup, ButtonGroupContext, type ButtonGroupContextValue, ButtonGroupItem, type ButtonGroupItemIconMode, type ButtonGroupItemProps, type ButtonGroupItemState, type ButtonGroupOrientation, type ButtonGroupProps, ButtonGroupSeparator, type ButtonGroupSeparatorProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonGroupVariant, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, type CalendarButtonVariant, type CalendarCaptionLayout, CalendarDayButton, type CalendarDayButtonProps, type CalendarEvent, type CalendarMode, type CalendarPassthroughProps, type CalendarProps, type CalendarRef, Callout, type CalloutProps$1 as CalloutComponentProps, type CalloutProps, type CalloutSize, type CalloutVariant, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, type CardSelectablePayload, CardTitle, type CardTitleProps, type CardType, type CardTypeConfig, type CardVariant, type CardVariantProps, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryBar, type CategoryBarDataItem, type CategoryBarProps, type CategoryBarSize, type CellEditParams, ChangeIndicator, type ChangeSet, ChartCard, type ChartCardComparisonPeriod, type ChartCardDataPoint, type ChartCardProps, type ChartCardValueFormatter, type ChartColor, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, type ChartLegendContentProps, type ChartLegendProps, ChartStyle, ChartTooltip, ChartTooltipContent, type ChartTooltipContentProps, Checkbox, CheckboxGroup, type CheckboxGroupDescriptionVariantProps, type CheckboxGroupHeaderVariantProps, CheckboxGroupItem, type CheckboxGroupItemProps, type CheckboxGroupItemWrapperVariantProps, type CheckboxGroupLabelVariantProps, type CheckboxGroupOption, type CheckboxGroupOrientation, type CheckboxGroupProps, type CheckboxGroupVariantProps, type CheckboxProps, type CheckboxSize, type CheckboxState, type CheckboxVariantProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleContentVariantProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, type CollapsibleTriggerVariantProps, type CollapsibleVariantProps, ColorPicker, type ColorPickerPreviewVariantProps, type ColorPickerProps, type ColorPickerSize, type ColorPickerSwatchVariantProps, type ColorPickerTriggerVariantProps, type ColorPickerVariant, type ColorUtility, type ColumnDefinition, type ColumnDeletePayload, type ColumnReorderPayload, type ColumnUpdatePayload, type CombinatorToggleVariantProps, ComboChart, type ComboChartBarSeries, type ComboChartBarSeriesConfig, type ComboChartBarVariant, type ComboChartCurveType, type ComboChartEventProps, type ComboChartIntervalType, type ComboChartLegendPosition, type ComboChartLineSeries, type ComboChartLineSeriesConfig, type ComboChartProps, type ComboChartSeriesType, type ComboChartTooltipCallbackProps, type ComboChartTooltipIndicator, Combobox, type ComboboxOption, type ComboboxProps, type ComboboxSize, type ComboboxVariant, Command, type CommandCombinedVariantProps, type CommandDataSlot, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, type CommandEmptyVariantProps, CommandGroup, type CommandGroupData, type CommandGroupProps, type CommandGroupVariantProps, CommandInput, type CommandInputClearVariantProps, type CommandInputIconVariantProps, type CommandInputPayload, type CommandInputProps, type CommandInputVariantProps, type CommandInputWrapperVariantProps, CommandItem, type CommandItemCombinedVariantProps, type CommandItemData, type CommandItemProps, type CommandItemVariant, type CommandItemVariantProps, CommandList, type CommandListProps, type CommandListVariantProps, type CommandProps, type CommandSelectPayload, CommandSeparator, type CommandSeparatorProps, type CommandSeparatorVariantProps, CommandShortcut, type CommandShortcutProps, type CommandShortcutVariantProps, type CommandSize, type CommandVariantProps, type Comment, type CommentAttachment, type CommentDeletePayload, type CommentEditPayload, CommentInput, type CommentInputProps, CommentItem, type CommentItemProps, type CommentMentionPayload, type CommentReactPayload, type CommentReaction, CommentReactions, type CommentSubmitPayload, CommentSystem, type CommentSystemProps, type CommentUser, type CompletePayload, type ConfigChangePayload, type ConfigField, type ConfigFieldType, type ConfigSchema, type ConfigurationFormProps, ConfirmButton, type ConfirmButtonProps, type ConfirmButtonSize, type ConfirmButtonVariant, ConfirmModal, type ConfirmModalProps, type ConfirmModalSize, type ConfirmModalVariant, Container, type ContainerElement, type ContainerMaxWidth, type ContainerPadding, type ContainerProps, type ContainerVariantProps, ContextMenu, ContextMenuCheckboxItem, type ContextMenuCheckboxItemProps, ContextMenuContent, type ContextMenuContentProps, ContextMenuGroup, type ContextMenuGroupProps, ContextMenuItem, type ContextMenuItemProps, type ContextMenuItemVariant, type ContextMenuItemVariantProps, ContextMenuLabel, type ContextMenuLabelProps, type ContextMenuLabelVariantProps, ContextMenuPortal, type ContextMenuPortalProps, type ContextMenuProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, type ContextMenuRadioItemProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuShortcut, type ContextMenuShortcutProps, ContextMenuSub, ContextMenuSubContent, type ContextMenuSubContentProps, type ContextMenuSubProps, ContextMenuSubTrigger, type ContextMenuSubTriggerProps, type ContextMenuSubTriggerVariantProps, ContextMenuTrigger, type ContextMenuTriggerProps, type Country, DEFAULT_STATUS_CONFIGS, Dashboard, DashboardBuilder, DashboardBuilderCanvas, type DashboardBuilderCanvasProps, type DashboardBuilderCanvasVariantProps, type DashboardBuilderDropZoneVariantProps, type DashboardBuilderEmptyStateVariantProps, DashboardBuilderPropertiesPanel, type DashboardBuilderPropertiesPanelProps, type DashboardBuilderPropertiesPanelVariantProps, type DashboardBuilderProps, type DashboardBuilderResizeHandleVariantProps, DashboardBuilderToolbar, type DashboardBuilderToolbarProps, type DashboardBuilderToolbarVariantProps, type DashboardBuilderVariantProps, type DashboardBuilderWidgetCardVariantProps, DashboardBuilderWidgetComponent, type DashboardBuilderWidgetComponentProps, DashboardBuilderWidgetLibrary, type DashboardBuilderWidgetLibraryProps, type DashboardBuilderWidgetLibraryVariantProps, type DashboardBuilderWidgetVariantProps, DashboardCard, DashboardCardContent, type DashboardCardContentProps, DashboardCardFooter, type DashboardCardFooterProps, DashboardCardHeader, type DashboardCardHeaderProps, type DashboardCardProps, DashboardCardTitle, type DashboardCardTitleProps, DashboardCardValue, type DashboardCardValueProps, DashboardEmptyState, DashboardErrorState, DashboardHeader, type DashboardHeaderProps, DashboardLoadingState, type DashboardProps, type DashboardState, type DashboardVariantProps, DashboardWidget, type DashboardWidgetAddPayload, type DashboardWidgetClickPayload, type DashboardWidgetConfig, type DashboardWidgetData, type DashboardWidgetProps, type DashboardWidgetRemovePayload, type DashboardWidgetType, type DashboardWidgetVariantProps, type DataSource, DataTable, DataTableBooleanCell, type DataTableBooleanCellProps, type DataTableColumnMeta, DataTableCurrencyCell, type DataTableCurrencyCellProps, DataTableDateCell, type DataTableDateCellProps, type DataTableFilterVariant, type DataTablePaginationInfo, DataTableProgressCell, type DataTableProgressCellProps, type DataTableProps, DataTableRatingCell, type DataTableRatingCellProps, DatePicker, type DatePickerProps, type DatePickerSize, type DatePickerTriggerVariantProps, type DatePickerVariant, type DateRange, DateRangeInput, type DateRangeInputFieldVariantProps, type DateRangeInputProps, DateRangePicker, type DateRangePickerProps, type DateRangePickerTriggerVariantProps, type DateRangePreset, type DateRangePresetVariantProps, DateRangePresets, type DateRangePresetsProps, DefaultFallback, type DelegatePayload, DeltaBar, type DeltaBarProps, type DeltaBarSize, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, DialogPortal, type DialogPortalProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, type DiffLine, Divider, type DividerLabelPosition, type DividerLineType, type DividerOrientation, type DividerProps, type DividerType, type DividerVisualStyle, DndContext, type DndContextProps, type DragAndDropDataSlot, DragHandle, type DragHandleProps, type DragHandleVariantProps, DragOverlay, type DragOverlayProps, type DragOverlayVariantProps, Draggable, type DraggableProps, type DraggableRenderProps, type DraggableVariantProps, Drawer, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerOverlay, type DrawerOverlayProps, DrawerPortal, type DrawerPortalProps, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuItemVariantProps, DropdownMenuLabel, type DropdownMenuLabelProps, type DropdownMenuLabelVariantProps, DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, type DropdownMenuSubTriggerVariantProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, Droppable, type DroppableProps, type DroppableRenderProps, type DroppableVariantProps, type DropzoneRenderFn, type DropzoneState, type EditableColumnMeta, EmailInput, type EmailInputProps, type EmailInputValidationState, type EmailValidationIconVariantProps, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, ErrorBoundary, type ErrorBoundaryProps, type ErrorBoundaryState, type ErrorDefault, ErrorMessage, type ErrorMessageIconVariantProps, type ErrorMessageProps, type ErrorMessageSize, type ErrorMessageVariant, type ErrorMessageVariantProps, type ErrorObject, ErrorPage, type ErrorPageProps, type ErrorType, type EscalatePayload, EventCalendar, EventCalendarAgenda, type EventCalendarAgendaProps, EventCalendarDay, type EventCalendarDayProps, EventCalendarEvent, type EventCalendarEventProps, EventCalendarHeader, type EventCalendarHeaderProps, EventCalendarMonth, type EventCalendarMonthProps, type EventCalendarProps, type EventCalendarView, EventCalendarWeek, type EventCalendarWeekProps, type ExportFormat$1 as ExportFormat, type ExportOptions, type ExportPayload, type FallbackProps, type FallbackRender, FeatureItem, type FeatureItemProps, type FeatureItemTone, FeaturedIcon, type FeaturedIconProps, type FeaturedIconShape, type FeaturedIconSize, type FeaturedIconTone, Feed, type FeedProps$1 as FeedComponentProps, FeedItemComponent as FeedItem, type FeedItemProps$1 as FeedItemComponentProps, type FeedItemData, type FeedItem as FeedItemDataType, type FeedItemProps, type FeedProps, type FeedSize, FeedSkeleton, type FeedVariant, Field, FieldContent, type FieldContentProps, type FieldDefinition, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorItem, type FieldErrorProps, FieldGroup, type FieldGroupProps, FieldLabel, type FieldLabelProps, FieldLegend, type FieldLegendProps, type FieldLegendVariant, type FieldLegendVariantProps, type FieldOption, type FieldOrientation, type FieldProps, FieldSeparator, type FieldSeparatorProps, FieldSet, type FieldSetProps, FieldTitle, type FieldTitleProps, type FieldType, type FieldVariantProps, type FileChange, FileDropzone, type FileDropzoneProps, type FileInfo, FilePreview, type FilePreviewActionButtonVariantProps, type FilePreviewActionsVariantProps, type FilePreviewContentVariantProps, type FilePreviewDataSlot, type FilePreviewFallbackVariantProps, type FilePreviewInfoVariantProps, type FilePreviewProps, type FilePreviewState, type FilePreviewVariantProps, FileTree, FileTreeAction, FileTreeBody, FileTreeFooter, FileTreeHeader, type FileTreeNode, FileTreeProjectBadge, FileTreeProjectMeta, type FileTreeProps, type FileTreeRowContext, FileTreeSearch, type FileTreeSelectEventPayload, type FileTreeSize, type FileTreeToggleEventPayload, FileTreeToolbar, type FileTreeVariant, type FileTypeCategory, FileUpload, FileUploadAvatar, type FileUploadAvatarVariantProps, type FileUploadChangePayload, type FileUploadCompletePayload, type FileUploadContextValue, type FileUploadDataSlot, FileUploadDropzone, type FileUploadDropzoneProps, type FileUploadDropzoneVariantProps, type FileUploadErrorPayload, FileUploadInline, FileUploadList, type FileUploadListProps, FileUploadPreview, type FileUploadPreviewProps, type FileUploadPreviewVariantProps, FileUploadProgressBar, type FileUploadProgressPayload, type FileUploadProgressProps, type FileUploadProgressVariantProps, type FileUploadProps, type FileUploadRemovePayload, FileUploadTrigger, type FileUploadTriggerProps, type FileUploadTriggerVariantProps, type FileUploadVariantProps, type FileValidationError, FilterBuilder, type FilterBuilderEventPayload, type FilterBuilderProps, type FilterBuilderVariantProps, FilterGroupComponent as FilterGroup, type FilterGroupProps, type FilterGroup as FilterGroupType, type FilterGroupVariantProps, FilterPreview, type FilterPreviewProps, FilterRuleComponent as FilterRule, type FilterRuleEventPayload, type FilterRuleProps, type FilterRule as FilterRuleType, type FilterRuleVariantProps, FilterToolbar, type FilterToolbarProps, Flex, type FlexAlign, type FlexDirection, type FlexElement, type FlexGap, type FlexJustify, type FlexProps, type FlexVariantProps, type FlexWrap, FloatLabel, type FloatLabelProps, type FloatLabelVariant, FocusTrap, type FocusTrapProps, type FocusedCell, FolderStack, type FolderStackEventPayload, type FolderStackProps, Form, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, type FormDescriptionVariantProps, FormField, FormFieldContext, type FormFieldContextValue, type FormFieldProps, FormItem, FormItemContext, type FormItemContextValue, type FormItemProps, type FormItemVariantProps, FormLabel, type FormLabelProps, type FormLabelVariantProps, FormMessage, type FormMessageProps, type FormMessageVariantProps, type FormProps, FormValidation, type FormValidationProps, type FormValidationState, type FormValidationVariantProps, FunnelChart, type FunnelChartDataItem, type FunnelChartLabelPosition, type FunnelChartLegendPosition, type FunnelChartProps, type FunnelChartTooltipCallbackProps, type FunnelChartTooltipIndicator, GaugeChart, type GaugeChartProps, type GaugeSize, type GaugeVariant, type GaugeZone, type GeneratePayload, GradientSpinner, type GradientSpinnerVariants, Grid, type GridAlign, type GridCols, type GridElement, type GridFlow, type GridGap, type GridProps, type GridRows, type GridVariantProps, Header, HeaderActions, type HeaderActionsProps, HeaderBrand, type HeaderBrandProps, HeaderNav, type HeaderNavProps, type HeaderProps, Heading, type HeadingAlign, type HeadingColor, type HeadingGradient, type HeadingLevel, type HeadingProps, type HeadingSize, type HeadingWeight, Heatmap, HeatmapCell, type HeatmapCellEventPayload, type HeatmapCellProps, type HeatmapData, HeatmapLegend, type HeatmapLegendPosition, type HeatmapProps, type HeatmapSelectedCell, HelpText, type HelpTextIconVariantProps, type HelpTextProps, type HelpTextSize, type HelpTextVariant, type HelpTextVariantProps, HoverCard, HoverCardContent, HoverCardTrigger, Icon, type IconProps, type IconSize, type IconVariant, IftaLabel, type IftaLabelProps, Image, type ImageAspectRatio, ImageGallery, type ImageGalleryGap, ImageGalleryItem, type ImageGalleryItemProps, type ImageGalleryLayout, type ImageGalleryProps, type ImageItem, type ImageObjectFit, type ImageProps, type ImageSize, type ImageVariant, type InputEventPayload, InputGroup, InputGroupAddon, type InputGroupAddonAlign, type InputGroupAddonProps, type InputGroupAddonVariantProps, InputGroupButton, type InputGroupButtonProps, type InputGroupButtonSize, type InputGroupButtonVariantProps, InputGroupInput, type InputGroupInputProps, type InputGroupInputVariantProps, type InputGroupProps, type InputGroupSize, InputGroupText, type InputGroupTextProps, InputGroupTextarea, type InputGroupTextareaProps, type InputGroupTextareaVariantProps, type InputGroupVariantProps, type InputIconVariantProps, InputOTP, type InputOTPContainerVariantProps, type InputOTPDigits, type InputOTPExtraProps, InputOTPField, type InputOTPFieldDescriptionVariantProps, type InputOTPFieldErrorVariantProps, type InputOTPFieldLabelVariantProps, type InputOTPFieldProps, type InputOTPFieldVariantProps, InputOTPGroup, type InputOTPGroupProps, type InputOTPProps, InputOTPSeparator, type InputOTPSeparatorProps, type InputOTPSize, InputOTPSlot, type InputOTPSlotProps, type InputOTPSlotVariantProps, type InputSize, type InputVariant, type InputVariantProps, Item, ItemActions, type ItemAddPayload, type ItemClickPayload, ItemContent, type ItemDeletePayload, ItemDescription, type ItemEventPayload, ItemFooter, ItemGroup, ItemHeader, ItemMedia, type ItemMovePayload, ItemSeparator, ItemTitle, type ItemUpdatePayload, KPICard, KPICardGroup, type KPICardGroupProps, type KPICardProps, type KPICardSize, type KPICardTrend, type KPICardVariant, KanbanBoard, type KanbanBoardProps, KanbanCard, type KanbanCardProps, type KanbanColumn, type KanbanColumnProps, type KanbanFilterConfig, type KanbanItem, type KanbanLabel, type KanbanSubtasks, type KanbanUser, Kbd, KbdGroup, type KbdGroupProps, type KbdProps, type KbdSize, type KbdVariant, type KbdVariants, type KeyboardShortcuts, Label, type LabelProps, type LayoutChangePayload, type LayoutItem, type LegendPayloadItem, Lightbox, type LightboxImage, type LightboxProps, LineChart, type LineChartCurveType, type LineChartProps, type LineChartSeriesConfig, type LineChartTooltipIndicator, type LineChartVariant, Link, type LinkEventPayload, type LinkProps, type LinkSize, type LinkUnderline, type LinkVariant, List, ListItem, ListItemActions, ListItemContent, type ListItemProps, ListItem as ListItemType, type ListProps, MarkdownEditor, type MarkdownEditorMode, type MarkdownEditorProps, type MarkdownEditorRef, MarkdownHelp, type MarkdownHelpProps, MarkdownPreview, type MarkdownPreviewProps, MarkdownToolbar, type MarkdownToolbarProps, MarkerBar, type MarkerBarProps, type MarkerBarSize, Menu, MenuGroup, type MenuGroupProps, MenuItem, type MenuItemProps, MenuLabel, type MenuLabelProps, type MenuProps, MenuSeparator, type MenuSeparatorProps, MenuShortcut, type MenuShortcutProps, Menubar, MenubarCheckboxItem, type MenubarCheckboxItemProps, MenubarContent, type MenubarContentProps, MenubarGroup, type MenubarGroupProps, MenubarItem, type MenubarItemProps, type MenubarItemVariantProps, MenubarLabel, type MenubarLabelProps, type MenubarLabelVariantProps, MenubarMenu, type MenubarMenuProps, MenubarPortal, type MenubarPortalProps, type MenubarProps, MenubarRadioGroup, type MenubarRadioGroupProps, MenubarRadioItem, type MenubarRadioItemProps, MenubarSeparator, type MenubarSeparatorProps, MenubarShortcut, type MenubarShortcutProps, MenubarSub, MenubarSubContent, type MenubarSubContentProps, type MenubarSubProps, MenubarSubTrigger, type MenubarSubTriggerProps, type MenubarSubTriggerVariantProps, MenubarTrigger, type MenubarTriggerProps, Message, type MessageProps, type MessageSize, type MessageVariant, Modal, type ModalIntent, type ModalProps, type ModalSize, MultiSelect, type MultiSelectOption, type MultiSelectProps, type MultiSelectSize, type MultiSelectVariant, NativeSelect, NativeSelectOptGroup, type NativeSelectOptGroupProps, NativeSelectOption, type NativeSelectOptionProps, type NativeSelectProps, type NativeSelectSize$1 as NativeSelectSize, type NativeSelectVariant, type NativeSelectVariantProps, Navbar, NavbarBrand, type NavbarBrandProps, NavbarContent, type NavbarContentProps, NavbarItem, type NavbarItemProps, NavbarLink, type NavbarLinkProps, NavbarMenu, type NavbarMenuProps, NavbarMenuToggle, type NavbarMenuToggleProps, type NavbarProps, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuIndicator, type NavigationMenuIndicatorProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, NavigationMenuViewport, type NavigationMenuViewportProps, Notification, NotificationDismissButton, type NotificationItem, type NotificationProps, type NotificationVariant, NumberInput, type NumberInputProps, type NumberStepperButtonVariantProps, type NumberStepperVariantProps, type OperatorInfo, type OperatorType, type OperatorsByType, PROGRESS_CIRCLE_SIZES, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, Panel, PanelContent, type PanelContentProps, type PanelContentVariantProps, PanelFooter, type PanelFooterProps, PanelHeader, type PanelHeaderProps, type PanelPosition, type PanelProps, type PanelSize, type PanelVariant, type PanelVariantProps, Paragraph, type ParagraphAlign, type ParagraphColor, type ParagraphLeading, type ParagraphProps, type ParagraphSize, type ParagraphSpacing, type ParagraphWeight, PasswordInput, type PasswordInputProps, type PasswordToggleVariantProps, PaymentInput, type PaymentInputProps, type PaymentInputSize, type PaymentInputVariant, type PaymentInputVariantProps, type PaymentMethod, PaymentMethodIcon, type PaymentMethodIconProps, type PaymentMethodIconSize, PhoneInput, type PhoneInputProps, type PhoneInputSize, type PhoneInputVariant, type PhoneInputVariantProps, PieChart, type PieChartActiveShape, type PieChartCenterLabel, type PieChartDataItem, type PieChartLabelConfig, type PieChartProps, type PieChartTooltipCallbackProps, type PieChartTooltipIndicator, type PieChartVariant, Popover, type PopoverAlign, PopoverAnchor, type PopoverAnchorProps, type PopoverCloseProps, PopoverContent, type PopoverContentProps, type PopoverPortalProps, type PopoverProps, type PopoverSide, PopoverTrigger, type PopoverTriggerProps, Portal, type PortalProps, type PreviewContainerVariantProps, type PreviewPanelProps, ProgressBar, type ProgressBarColor, type ProgressBarLabelPosition, type ProgressBarLabelProps, type ProgressBarProps, type ProgressBarSize, ProgressCircle, type ProgressCircleColor, type ProgressCircleContainerVariants, type ProgressCircleIndicatorVariants, type ProgressCircleProps, type ProgressCircleShape, type ProgressCircleSize, type ProgressCircleTrackVariants, ProgressSteps, type ProgressStepsProps, type ProgressStepsVariantProps, RadarChart, type RadarChartProps, RadialChart, type RadialChartProps, RadioButton, type RadioButtonIndicatorVariantProps, type RadioButtonLabelVariantProps, type RadioButtonProps, type RadioButtonSize, type RadioButtonVariantProps, type RadioButtonWrapperVariantProps, RadioCardGroup, RadioCardGroupItem, type RadioCardGroupItemProps, type RadioCardGroupProps, type RadioCardGroupSize, RadioGroup, type RadioGroupIndicatorVariantProps, RadioGroupItem, type RadioGroupItemProps, type RadioGroupItemVariantProps, type RadioGroupOrientation, type RadioGroupProps, type RadioGroupSize, type RadioGroupVariantProps, type RangeCalendarProps, Rating, type RatingItemProps, type RatingItemVariantProps, type RatingProps, type RatingSize, type RatingVariantProps, type Reaction, type RecurrenceRule, type RefreshPayload, type RejectPayload, ReportBuilder, type ReportBuilderField, type ReportBuilderFieldKind, type ReportBuilderFilter, type ReportBuilderFilterField, type ReportBuilderFilterOp, type ReportBuilderFilterType, type ReportBuilderNumberOp, type ReportBuilderProps, type ReportChartConfig, type ReportConfig, type ReportErrorPayload, type ReportExportPayload, ReportGenerator, type ReportGeneratorProps, type ReportGeneratorState, type ReportGeneratorVariantProps, type ReportTemplate, ResizableHandle, type ResizableHandleProps, type ResizableHandleVariant, type ResizableHandleVariantProps, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, type ResizablePanelGroupVariantProps, type ResizablePanelProps, type ResizablePanelVariantProps, type ResponsiveColumns, ResponsiveContainer, type ResponsiveContainerBreakpoint, type ResponsiveContainerElement, type ResponsiveContainerMaxWidth, type ResponsiveContainerProps, type ResponsiveContainerVariant, type ResponsiveContainerVariantProps, RichTextBubbleMenuContent as RichTextBubbleMenu, type RichTextBubbleMenuProps, RichTextEditor, type RichTextEditorProps, type RichTextEditorRef, RichTextFloatingMenuContent as RichTextFloatingMenu, type RichTextFloatingMenuProps, RichTextToolbar, type RichTextToolbarProps, ScatterChart, type ScatterChartEventProps, type ScatterChartIntervalType, type ScatterChartLegendPosition, type ScatterChartProps, type ScatterChartSeriesConfig, type ScatterChartShape, type ScatterChartTooltipCallbackProps, type ScatterChartTooltipIndicator, type ScatterChartValueFormatter, type ScheduleConfig, type SchedulePayload, ScrollArea, type ScrollAreaProps, type ScrollAreaVariantProps, type ScrollAreaViewportVariantProps, ScrollBar, type ScrollBarOrientation, type ScrollBarProps, type ScrollBarSize, type ScrollBarThumbVariantProps, type ScrollBarVariantProps, Search, type SearchClearButtonVariantProps, SearchEmpty, type SearchEmptyProps, type SearchFilter, SearchFilters, type SearchFiltersProps, type SearchGroup, SearchHighlight, type SearchHighlightProps, SearchHistory, type SearchHistoryProps, type SearchIconVariantProps, SearchInput, type SearchInputProps$1 as SearchInputProps, SearchLoading, type SearchLoadingProps, type SearchProps, type SearchResult, SearchResultGroup, type SearchResultGroupProps, SearchResultItem, type SearchResultItemProps, SearchResults, type SearchResultsProps, type SearchSize, type SearchState, type SearchVariant, Section, type SectionProps, type SectionSize, type SectionVariant, type SectionVariantProps, Select, SelectContent, type SelectContentProps, type SelectContentVariantProps, SelectGroup, type SelectGroupProps, SelectItem, type SelectItemProps, type SelectItemVariantProps, SelectLabel, type SelectLabelProps, type SelectLabelVariantProps, type SelectProps, type SelectScrollButtonVariantProps, SelectScrollDownButton, type SelectScrollDownButtonProps, SelectScrollUpButton, type SelectScrollUpButtonProps, SelectSeparator, type SelectSeparatorProps, type SelectSeparatorVariantProps, type SelectSize, SelectTrigger, type SelectTriggerProps, type SelectTriggerVariantProps, SelectValue, type SelectValueProps, type SelectVariant, Sheet, SheetBody, type SheetBodyProps, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, type SheetContentVariantProps, SheetDescription, type SheetDescriptionProps, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, SheetOverlay, type SheetOverlayProps, type SheetOverlayVariant, type SheetOverlayVariantProps, SheetPortal, type SheetPortalProps, type SheetProps, type SheetSide, type SheetSize, SheetTitle, type SheetTitleProps, SheetTrigger, type SheetTriggerProps, Sidebar, SidebarAvatar, SidebarContent, type SidebarContentProps, type SidebarContextProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupAction, type SidebarGroupActionProps, SidebarGroupContent, type SidebarGroupContentProps, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarInput, type SidebarInputProps, SidebarInset, type SidebarInsetProps, SidebarLogo, SidebarMenu, SidebarMenuAction, type SidebarMenuActionProps, SidebarMenuBadge, type SidebarMenuBadgeProps, SidebarMenuButton, type SidebarMenuButtonProps, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, SidebarMenuSkeleton, type SidebarMenuSkeletonProps, SidebarMenuSub, SidebarMenuSubButton, type SidebarMenuSubButtonProps, SidebarMenuSubItem, type SidebarMenuSubItemProps, type SidebarMenuSubProps, SidebarPanelContent, type SidebarPanelContentProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarRail, SidebarRailButton, type SidebarRailButtonProps, SidebarRailContent, type SidebarRailContentProps, type SidebarRailProps, SidebarSeparator, type SidebarSeparatorProps, type SidebarState, SidebarThemeToggle, SidebarTrigger, type SidebarTriggerProps, SingleStat, type SingleStatProps, type SingleStatSize, type SingleStatVariant, SkeletonLoader, type SkeletonLoaderAnimation, type SkeletonLoaderProps, type SkeletonLoaderShape, type SkeletonLoaderSize, type SkeletonLoaderVariants, SkipLink, type SkipLinkItem, type SkipLinkProps, SkipLinksList, type SkipLinksListProps, Slider, type SliderColor, type SliderFormatValue, type SliderGetAriaValueText, type SliderLabelType, type SliderLabelVariantProps, type SliderMark, type SliderMarkContainerVariantProps, type SliderMarkLabelVariantProps, type SliderMarkTickVariantProps, type SliderMarkVariantProps, type SliderOrientation, type SliderProps, type SliderRangeVariantProps, type SliderRootVariantProps, type SliderSize, type SliderThumbVariantProps, type SliderTooltipVariantProps, type SliderTrackVariantProps, type SliderValue, SortableContext, type SortableContextProps, SortableItem, type SortableItemProps, type SortableItemRenderProps, type SortableItemState, type SortableItemVariantProps, SortableList, type SortableListDataSlot, SortableListDragHandle, type SortableListDragHandleProps, type SortableListHandleContextValue, SortableListItem, type SortableListItemProps, type SortableListProps, type SortableListReorderEvent, Spacer, type SpacerAxis, type SpacerFlex, type SpacerNumericSize, type SpacerProps, type SpacerSize, type SpacerTokenSize, type SpanColumnMeta, Sparkline, type SparklineData, type SparklineDataPoint, type SparklineFill, type SparklineProps, type SparklineSize, type SparklineVariant, SpeedDial, type SpeedDialAction, type SpeedDialDirection, type SpeedDialProps, Spinner, type SpinnerColor, type SpinnerProps, type SpinnerSize, type SpinnerVariant, type SpinnerVariants, SplitButton, type SplitButtonEventPayload, type SplitButtonMenuItem, type SplitButtonProps, type SplitButtonSize, type SplitButtonVariant, Stack, type StackAlign, type StackDirection, type StackElement, type StackJustify, type StackProps, type StackSpacing, type StackVariantProps, type StatusConfig, StatusIndicator, type StatusIndicatorProps, type StatusIndicatorSize, type StatusIndicatorVariant, type StatusType, type Step, type StepBadgeVariantProps, type StepChangePayload, type StepCircleVariantProps, type StepConnectorHorizontalVariantProps, type StepConnectorVerticalVariantProps, type StepIndicatorProps, type StepIndicatorVariantProps, type StepItem, type StepItemProps, type StepItemVariantProps, Stepper, type StepperConnectorHorizontalVariantProps, type StepperConnectorVerticalVariantProps, type StepperIndicatorVariantProps, type StepperItemVariantProps, type StepperProps, type StepperVariantProps, SuccessMessage, type SuccessMessageProps, type SuccessMessageVariantProps, Switch, type SwitchProps, type SwitchSize, type SwitchState, type SwitchThumbVariantProps, type SwitchVariantProps, TabNavigation, TabNavigationLink, type TabNavigationLinkProps, type TabNavigationProps, type TabNavigationVariant, TabPanel, TabPanelList, type TabPanelListProps, type TabPanelProps, TabPanelRoot, type TabPanelRootProps, TabPanelTrigger, type TabPanelTriggerProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, type TabsVariant, Tag, type TagAvatarProps, type TagDotColor, TagGroup, type TagGroupContextValue, type TagGroupProps, type TagProps, type TagSize, TagsInput, type TagsInputInputVariantProps, type TagsInputProps, type TagsInputSize, type TagsInputVariant, type TagsInputVariantProps, type TaskAssignee, TaskCard, type TaskCardAssignee, type TaskCardProps, type TaskCardStatus, type TaskGroupBy, type TaskItem, TaskList, type TaskListPriority, type TaskListProps, type TaskListStatus, type TaskPriority, TaskStatus, type TaskStatusColorVariantProps, type TaskStatusConfig, type TaskStatusConfigMap, type TaskStatusIconVariantProps, type TaskStatusLabelVariantProps, type TaskStatusMenuItemVariantProps, type TaskStatusMenuProps, type TaskStatusProps, type TaskStatusTriggerVariantProps, type TaskStatusVariantProps, type TemplateCardVariantProps, type TemplateSelectorProps, Text, type TextColor, type TextElement, TextInput, type TextInputProps, type TextProps, type TextSize, type TextVariant, type TextWeight, Textarea, TextareaField, type TextareaFieldDescriptionVariantProps, type TextareaFieldErrorVariantProps, type TextareaFieldLabelVariantProps, type TextareaFieldProps, type TextareaFieldVariantProps, type TextareaProps, type TextareaResize, type TextareaSize, type TextareaVariant, type TextareaVariantProps, Thumbnail, type ThumbnailAspectRatio, ThumbnailBadge, ThumbnailCheckbox, type ThumbnailMode, ThumbnailPin, ThumbnailPlayOverlay, type ThumbnailProps, type ThumbnailRounded, type ThumbnailRoundedVariant, type ThumbnailSize, type ThumbnailSizeVariant, ThumbnailTag, type TimeItemVariantProps, TimePicker, type TimePickerProps, type TimePickerSize, type TimePickerTriggerVariantProps, type TimePickerVariant, type TimeScrollListVariantProps, type TimeSlot, Timeline, TimelineConnector, TimelineContent, TimelineItemComponent as TimelineItem, type TimelineItem as TimelineItemData, type TimelineItemProps, TimelineMarker, type TimelineProps, type ToastOptions, type ToastPosition, type ToastPromiseOptions, type ToastTheme, Toaster, type ToasterProps, Toggle, ToggleGroup, type ToggleGroupItemVariantProps, type ToggleGroupMultipleProps, type ToggleGroupProps, type ToggleGroupSingleProps, ToggleItem, type ToggleItemProps, type ToggleProps, type ToggleSize, type ToggleVariant, Toolbar, type ToolbarAction, ToolbarButton, type ToolbarButtonProps, ToolbarGroup, type ToolbarGroupProps, ToolbarLink, type ToolbarLinkProps, type ToolbarProps, ToolbarSeparator, type ToolbarSeparatorProps, ToolbarToggleGroup, type ToolbarToggleGroupProps, ToolbarToggleItem, type ToolbarToggleItemProps, Tooltip, type TooltipAlign, TooltipArrow, type TooltipArrowProps, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, type TooltipProviderProps, type TooltipSide, TooltipTrigger, type TooltipTriggerProps, Topbar, TopbarLeading, type TopbarLeadingProps, type TopbarProps, TopbarTrailing, type TopbarTrailingProps, Tracker, type TrackerBlockData, type TrackerProps, URLInput, type URLInputProps, type URLInputValidationState, type URLLinkIconVariantProps, type URLValidationIconVariantProps, UpdatesWidget, type UpdatesWidgetItem, type UpdatesWidgetProps, type UploadProgress, type UploadResult, type UseFormFieldReturn, type ValidationRule, type Version, VersionActions, type VersionActionsProps, type VersionAuthor, VersionBadge, VersionControl, type VersionControlProps, VersionDiff, type VersionDiffProps, VersionItem, type VersionItemProps, VersionList, VersionTimeline, type VersionTimelineProps, VirtualTable, type VirtualTableProps, Wizard, type WizardProps, type WizardStep, accordionContentInnerVariants, accordionContentVariants, accordionItemVariants, accordionTriggerVariants, alertVariants, approvalFlowActionsVariants, approvalFlowConnectorVariants, approvalFlowMarkerVariants, approvalFlowStepCardVariants, approvalFlowStepVariants, approvalFlowVariants, approvalStatusVariants, arrayMove, aspectRatios, assetManagerContentVariants, assetManagerEmptyVariants, assetManagerGridVariants, assetManagerItemInfoVariants, assetManagerItemVariants, assetManagerLoadingVariants, assetManagerSidebarVariants, assetManagerThumbnailVariants, assetManagerToolbarVariants, assetManagerUploaderVariants, assetManagerVariants, availableChartColors, avatarAddButtonVariants, avatarBadgeVariants, avatarFallbackVariants, avatarGroupVariants, avatarLabelGroupVariants, avatarStatusVariants, avatarVariants, badgeVariants, bannerVariants, breadcrumbEllipsisVariants, breadcrumbItemVariants, breadcrumbLinkVariants, breadcrumbListVariants, breadcrumbPageVariants, breadcrumbSeparatorVariants, buttonGroupItemVariants, buttonGroupVariants, buttonVariants, calculateRatio, calendarContainerVariants, calendarDayButtonVariants, calendarDayCellVariants, calendarDisabledVariants, calendarNavButtonVariants, calendarOutsideVariants, calendarRangeEndVariants, calendarRangeMiddleVariants, calendarRangeStartVariants, calendarTodayIndicatorVariants, calendarTodayVariants, calloutVariants, cardActionVariants, cardContentVariants, cardDescriptionVariants, cardFooterVariants, cardHeaderVariants, cardMediaVariants, cardTitleVariants, cardTypes, cardVariants, changeIndicatorVariants, chartCardChartVariants, chartCardHeaderVariants, chartCardPreviousValueVariants, chartCardTitleVariants, chartCardValueContainerVariants, chartCardValueVariants, chartCardVariants, chartColors, checkboxGroupDescriptionVariants, checkboxGroupHeaderVariants, checkboxGroupItemWrapperVariants, checkboxGroupLabelVariants, checkboxGroupVariants, checkboxIconVariants, checkboxVariants, collapsibleContentVariants, collapsibleTriggerVariants, collapsibleVariants, colorPickerPreviewVariants, colorPickerSwatchVariants, colorPickerTriggerVariants, combinatorToggleVariants, commandEmptyVariants, commandGroupVariants, commandInputClearVariants, commandInputIconVariants, commandInputVariants, commandInputWrapperVariants, commandItemVariants, commandListVariants, commandSeparatorVariants, commandShortcutVariants, commandVariants, commentActionsVariants, commentContentVariants, commentEmptyStateVariants, commentHeaderVariants, commentInputContainerVariants, commentItemVariants, commentMentionVariants, commentReactionVariants, commentRepliesVariants, commentSystemVariants, commentThreadLineVariants, commentTimelineMarkerVariants, completedStyles, configSectionVariants, constructCategoryColors, containerVariants, contextMenuCheckboxItemVariants, contextMenuContentVariants, contextMenuIndicatorWrapperVariants, contextMenuItemVariants, contextMenuLabelVariants, contextMenuRadioItemVariants, contextMenuSeparatorVariants, contextMenuShortcutVariants, contextMenuSubContentVariants, contextMenuSubTriggerVariants, dashboardBuilderCanvasVariants, dashboardBuilderDropZoneVariants, dashboardBuilderEmptyStateVariants, dashboardBuilderPropertiesPanelVariants, dashboardBuilderResizeHandleVariants, dashboardBuilderToolbarVariants, dashboardBuilderVariants, dashboardBuilderWidgetCardVariants, dashboardBuilderWidgetLibraryVariants, dashboardBuilderWidgetVariants, dashboardCardContentVariants, dashboardCardFooterVariants, dashboardCardHeaderVariants, dashboardCardTitleVariants, dashboardCardValueVariants, dashboardCardVariants, dashboardContentVariants, dashboardEmptyVariants, dashboardGridVariants, dashboardHeaderVariants, dashboardLoadingVariants, dashboardSidebarVariants, dashboardVariants, dashboardWidgetHeaderVariants, dashboardWidgetVariants, datePickerTriggerVariants, dateRangeInputContainerVariants, dateRangeInputFieldVariants, dateRangePickerFooterVariants, dateRangePickerTriggerVariants, dateRangePresetVariants, dateRangePresetsContainerVariants, defaultChartColors, defaultCountries, defaultPresets, defaultReactions, defaultWidgets, detectCardType, diffLineVariants, dividerContentVariants, dividerLineVariants, dividerWrapperVariants, downloadFile, dragHandleVariants, dragOverlayVariants, draggableVariants, drawerContentBaseVariants, drawerDescriptionVariants, drawerFooterVariants, drawerHandleVariants, drawerHeaderVariants, drawerOverlayVariants, drawerTitleVariants, dropdownMenuCheckboxItemVariants, dropdownMenuContentVariants, dropdownMenuIndicatorWrapperVariants, dropdownMenuItemVariants, dropdownMenuLabelVariants, dropdownMenuRadioItemVariants, dropdownMenuSeparatorVariants, dropdownMenuShortcutVariants, dropdownMenuSubContentVariants, dropdownMenuSubTriggerVariants, droppableVariants, emailValidationIconVariants, emptyMediaVariants, emptyStateStyles, emptyStateVariants, errorBoundaryActionVariants, errorBoundaryCardVariants, errorBoundaryFallbackVariants, errorBoundaryIconVariants, errorBoundaryMessageVariants, errorBoundaryStackVariants, errorBoundaryTitleVariants, errorDefaults, errorMessageIconVariants, errorMessageListVariants, errorMessageVariants, errorStateVariants, eventCalendarAgendaItemVariants, eventCalendarCellVariants, eventCalendarDayNumberVariants, eventCalendarEventVariants, eventCalendarHeaderVariants, eventCalendarTimeSlotVariants, eventCalendarVariants, eventCalendarViewButtonVariants, exportButtonGroupVariants, exportToCSV, exportToExcel, exportToPDF, featureItemIconVariants, featureItemVariants, featuredIconVariants, feedItemVariants, feedVariants, fieldContentVariants, fieldDescriptionVariants, fieldErrorVariants, fieldGroupVariants, fieldLabelVariants, fieldLegendVariants, fieldSeparatorVariants, fieldSetVariants, fieldTitleVariants, fieldVariants, fileDropzoneVariants, filePreviewActionButtonVariants, filePreviewActionsVariants, filePreviewContentVariants, filePreviewFallbackVariants, filePreviewInfoVariants, filePreviewVariants, fileTreeRowVariants, fileTreeShellVariants, filterBuilderVariants, filterGroupHeaderVariants, filterGroupVariants, filterPreviewVariants, filterRuleVariants, filterToolbarVariants, findCountryByCode, findCountryByDialCode, flexVariants, folderStackVariants, formActionsVariants, formDescriptionVariants, formItemVariants, formLabelVariants, formMessageVariants, formValidationVariants, formatCardNumber, formatPhoneNumber, gaugeChartVariants, getCardBrandName, getCardConfig, getCardDigits, getColorClassName, getEventVariant, getInitials, getPhoneDigits, getRatio, getYAxisDomain, gradientSpinnerVariants, gridVariants, groupHeaderStyles, headerActionsVariants, headerBrandVariants, headerContainerVariants, headerNavVariants, headerVariants, headingVariants, heatmapVariants, helpTextIconVariants, helpTextVariants, iconVariants, imageVariants, inputGroupAddonVariants, inputGroupButtonVariants, inputGroupInputVariants, inputGroupTextareaVariants, inputGroupVariants, inputIconVariants, inputOTPCaretInnerStyles, inputOTPCaretStyles, inputOTPContainerVariants, inputOTPFieldDescriptionVariants, inputOTPFieldErrorVariants, inputOTPFieldLabelVariants, inputOTPFieldVariants, inputOTPGroupVariants, inputOTPSlotVariants, inputVariants, inputWrapperVariants, isEditableColumnMeta, isFilterGroup, isFilterRule, isSpanColumnMeta, itemMediaVariants, itemVariants, kanbanAddButtonVariants, kanbanBoardVariants, kanbanCardDescriptionVariants, kanbanCardMetaVariants, kanbanCardTitleVariants, kanbanCardVariants, kanbanColumnContentVariants, kanbanColumnHeaderVariants, kanbanColumnVariants, kanbanDropIndicatorVariants, kanbanLabelVariants, kanbanSearchVariants, kanbanSwimlaneVariants, kbdVariants, linkVariants, listItemVariants, listVariants, loadingStateVariants, loadingStyles, markerBarContainerVariants, markerBarMarkerVariants, markerBarMarkerWrapperVariants, markerBarRangeVariants, mentionSuggestionItemVariants, mentionSuggestionsVariants, menuGroupVariants, menuItemVariants, menuLabelVariants, menuSeparatorVariants, menuShortcutVariants, menuVariants, menubarCheckboxItemVariants, menubarContentVariants, menubarIndicatorWrapperVariants, menubarItemVariants, menubarLabelVariants, menubarRadioItemVariants, menubarSeparatorVariants, menubarShortcutVariants, menubarSubContentVariants, menubarSubTriggerVariants, menubarTriggerVariants, menubarVariants, messageVariants, nativeSelectIconVariants, nativeSelectLeftIconVariants, nativeSelectVariants, nativeSelectWithLeftIconPadding, nativeSelectWrapperVariants, navbarBrandVariants, navbarContainerVariants, navbarContentVariants, navbarItemVariants, navbarLinkVariants, navbarMenuToggleVariants, navbarMenuVariants, navbarVariants, navigationMenuContentVariants, navigationMenuIndicatorArrowVariants, navigationMenuIndicatorVariants, navigationMenuItemVariants, navigationMenuLinkVariants, navigationMenuListVariants, navigationMenuTriggerStyle, navigationMenuVariants, navigationMenuViewportVariants, navigationMenuViewportWrapperVariants, notificationVariants, numberInputPaddingVariants, numberStepperButtonVariants, numberStepperVariants, paginationContentVariants, paginationEllipsisVariants, paginationNextVariants, paginationPreviousVariants, paginationVariants, panelContentVariants, panelFooterVariants, panelHeaderVariants, panelVariants, paragraphVariants, parseRatio, passwordToggleVariants, paymentInputIconVariants, paymentInputInputVariants, paymentInputVariants, paymentMethodIconVariants, paymentMethodLabels, paymentMethodLogos, phoneInputCountryButtonVariants, phoneInputDropdownVariants, phoneInputInputVariants, phoneInputOptionVariants, phoneInputVariants, portalContainerVariants, portalContentVariants, portalOverlayVariants, previewContainerVariants, previewContentVariants, previewHeaderVariants, priorityStyles, progressBarIndicatorVariants, progressBarLabelVariants, progressBarTooltipVariants, progressBarVariants, progressCircleContainerVariants, progressCircleIndicatorVariants, progressCircleLabelVariants, progressCircleTrackVariants, progressCircleValueVariants, progressStepsVariants, radioButtonIndicatorVariants, radioButtonLabelVariants, radioButtonVariants, radioButtonWrapperVariants, radioCardGroupItemContentVariants, radioCardGroupItemDescriptionVariants, radioCardGroupItemDotVariants, radioCardGroupItemIconVariants, radioCardGroupItemIndicatorVariants, radioCardGroupItemTitleVariants, radioCardGroupItemVariants, radioCardGroupVariants, radioGroupIndicatorVariants, radioGroupItemVariants, radioGroupVariants, ratingItemVariants, ratingVariants, reportGeneratorVariants, stepBadgeVariants as reportStepBadgeVariants, stepIndicatorVariants as reportStepIndicatorVariants, stepItemVariants as reportStepItemVariants, resizableHandleGripVariants, resizableHandleVariants, resizablePanelGroupVariants, resizablePanelVariants, responsiveContainerVariants, richTextEditorBubbleMenuVariants, richTextEditorContentVariants, richTextEditorFloatingMenuVariants, richTextEditorPlaceholderVariants, richTextEditorToolbarButtonVariants, richTextEditorToolbarVariants, richTextEditorVariants, ruleFieldVariants, ruleOperatorVariants, ruleValueVariants, rulesContainerVariants, scrollAreaCornerVariants, scrollAreaVariants, scrollAreaViewportVariants, scrollBarThumbVariants, scrollBarVariants, searchClearButtonVariants, searchEmptyVariants, searchFilterVariants, searchFiltersContainerVariants, searchGroupHeadingVariants, searchHighlightVariants, searchHistoryHeaderVariants, searchIconVariants, searchInputVariants, searchInputWrapperVariants, searchLoadingVariants, searchResultIconVariants, searchResultItemVariants, searchResultsVariants, searchVariants, sectionVariants, selectContentVariants, selectItemVariants, selectLabelVariants, selectScrollButtonVariants, selectSeparatorVariants, selectTriggerVariants, selectedItemStyles, selectedStyles, sheetContentVariants, sheetOverlayVariants, sidebarContainerVariants, sidebarContentVariants, sidebarDesktopVariants, sidebarFooterVariants, sidebarGapVariants, sidebarGroupActionVariants, sidebarGroupContentVariants, sidebarGroupLabelVariants, sidebarGroupVariants, sidebarHeaderVariants, sidebarInnerVariants, sidebarInputVariants, sidebarInsetVariants, sidebarMenuActionShowOnHoverVariants, sidebarMenuActionVariants, sidebarMenuBadgeVariants, sidebarMenuButtonVariants, sidebarMenuItemVariants, sidebarMenuSkeletonVariants, sidebarMenuSubButtonVariants, sidebarMenuSubItemVariants, sidebarMenuSubVariants, sidebarMenuVariants, sidebarMobileVariants, sidebarNonCollapsibleVariants, sidebarProviderVariants, sidebarRailButtonVariants, sidebarRailVariants, sidebarSeparatorVariants, sidebarTriggerVariants, skeletonLoaderVariants, skipLinkVariants, skipLinksListInnerVariants, skipLinksListItemVariants, skipLinksListVariants, sliderLabelVariants, sliderMarkContainerVariants, sliderMarkLabelVariants, sliderMarkTickVariants, sliderMarkVariants, sliderRangeVariants, sliderRootVariants, sliderThumbVariants, sliderTooltipVariants, sliderTrackVariants, sortableItemVariants, sortableListHandleVariants, sortableListItemVariants, sortableListOverlayVariants, sortableListVariants, spacerVariants, spinnerVariants, splitButtonVariants, stackVariants, statusConfig, statusIndicatorVariants, statusStyles, stepBarSegmentVariants, stepCircleVariants, stepConnectorHorizontalVariants, stepConnectorVerticalVariants, stepDescriptionVariants, stepDotVariants, stepItemVariants$1 as stepItemVariants, stepLabelVariants, stepperConnectorHorizontalVariants, stepperConnectorVerticalVariants, stepperDescriptionVariants, stepperIndicatorVariants, stepperItemVariants, stepperLabelVariants, stepperVariants, successMessageVariants, switchThumbVariants, switchVariants, tabNavigationLinkVariants, tabNavigationVariants, tabPanelListVariants, tabPanelRootVariants, tabPanelTriggerVariants, tabPanelVariants, tableToCSV, tabsContentVariants, tabsListVariants, tabsTriggerVariants, tabsVariants, tagCheckboxVariants, tagCountVariants, tagGroupVariants, tagVariants, tagsInputInputVariants, tagsInputVariants, taskCardVariants, taskListHeaderVariants, taskListItemVariants, taskListTitleVariants, taskListVariants, taskStatusColorVariants, taskStatusIconVariants, taskStatusLabelVariants, taskStatusMenuItemVariants, taskStatusTriggerVariants, taskStatusVariants, templateCardVariants, templateGridVariants, textVariants, textareaFieldDescriptionVariants, textareaFieldErrorVariants, textareaFieldLabelVariants, textareaFieldVariants, textareaVariants, thumbnailVariants, timeItemVariants, timePickerTriggerVariants, timeScrollListVariants, timelineItemVariants, timelineMarkerVariants, timelineVariants, toggleGroupItemVariants, toggleVariants, toolbarButtonVariants, toolbarGroupVariants, toolbarLinkVariants, toolbarSeparatorVariants, toolbarToggleGroupVariants, toolbarToggleItemVariants, toolbarVariants, tooltipArrowVariants, tooltipContentVariants, topbarLeadingVariants, topbarTrailingVariants, topbarVariants, unreadDotVariants, urlLinkIconVariants, urlValidationIconVariants, useButtonGroup, useFormField, useIsMobile, useMediaQuery, useOnWindowResize, useSidebar, useTagGroup, validateCardNumber, versionBadgeVariants, versionControlVariants, versionItemVariants, versionTimelineConnectorVariants, versionTimelineMarkerVariants, wizardActionsVariants, wizardContentVariants, wizardStepContentVariants, wizardStepperVariants, wizardVariants };
|
|
23673
|
+
export { ALL_STATUSES, Accordion, AccordionContent, type AccordionContentProps, type AccordionEventPayload, AccordionItem, type AccordionItemProps, type AccordionItemVariantProps, type AccordionProps, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionTriggerVariantProps, type AccordionVariant, type AccordionVariantProps, AccountSwitch, type AccountSwitchAccount, type AccountSwitchProps, type ActiveDatesMatcher, type ActiveItem, AdvancedSearchInput, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, type AlertDialogPortalProps, type AlertDialogProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, type AlertProps, AlertTitle, type AlertTitleProps, type AlertVariant, type ApprovalAction, type ApprovalCondition, ApprovalFlow, type ApprovalFlowActionsVariantProps, type Approver$1 as ApprovalFlowApprover, ApprovalFlowConnector, type ApprovalFlowConnectorVariantProps, ApprovalFlowMarker, type ApprovalFlowMarkerVariantProps, type ApprovalFlowProps, ApprovalFlowStep, type ApprovalFlowStepCardVariantProps, type ApprovalFlowStepProps, type ApprovalFlowStepVariantProps, type ApprovalFlowVariantProps, type ApprovalHistory, ApprovalStatus, type ApprovalStatusProps, type ApprovalStatusType, type ApprovalStep, type ApprovalStepStatus, type ApprovePayload, type Approver, AreaChart, type AreaChartCurveType, type AreaChartEventProps, type AreaChartFill, type AreaChartIntervalType, type AreaChartLegendPosition, type AreaChartProps, type AreaChartSeriesConfig, type AreaChartTooltipCallbackProps, type AreaChartTooltipIndicator, type AreaChartVariant, ArrowAnimated, type ArrowAnimatedProps, AspectRatio, type AspectRatioPreset, type AspectRatioProps, type Asset, type AssetFilter, AssetManager, type AssetManagerContextValue, type AssetManagerDataSlot, AssetManagerEmpty, type AssetManagerEmptyProps, AssetManagerGrid, type AssetManagerGridProps, type AssetManagerGridVariantProps, AssetManagerItem, type AssetManagerItemProps, type AssetManagerItemVariantProps, AssetManagerList, type AssetManagerListProps, type AssetManagerProps, AssetManagerSidebar, type AssetManagerSidebarProps, type AssetManagerSidebarVariantProps, AssetManagerToolbar, type AssetManagerToolbarProps, type AssetManagerToolbarVariantProps, AssetManagerUploader, type AssetManagerUploaderProps, type AssetManagerUploaderVariantProps, type AssetManagerVariantProps, type AssetSort, type AssetSortDirection, type AssetSortField, type AssetView, Autocomplete, type AutocompleteOption, type AutocompleteProps, type AutocompleteSize, type AutocompleteVariant, Avatar, AvatarAddButton, type AvatarAddButtonProps, AvatarBadge, type AvatarBadgeProps, type AvatarColorScheme, AvatarFallback, type AvatarFallbackProps, AvatarGroup, type AvatarGroupProps, AvatarImage, type AvatarImageProps, AvatarLabelGroup, type AvatarLabelGroupProps, AvatarLabelGroupSkeleton, type AvatarLabelGroupSkeletonProps, type AvatarProps, type AvatarShape, type AvatarSize, AvatarSkeleton, type AvatarSkeletonProps, AvatarStatus, type AvatarStatusProps, Badge, type BadgeAvatarProps, type BadgeColor, type BadgeLegacyVariant, type BadgeProps, type BadgeSize, type BadgeType, Banner, type BannerProps$1 as BannerComponentProps, type BannerPosition, type BannerProps, type BannerVariant, BarChart, type BarChartEventProps, type BarChartIntervalType, type BarChartLayout, type BarChartLegendPosition, type BarChartProps, type BarChartSeriesConfig, type BarChartTooltipCallbackProps, type BarChartTooltipIndicator, type BarChartVariant, BarList, type BarListDataItem, type BarListProps, type BarListSortOrder, type BrandingConfig, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, type BreadcrumbEllipsisVariantProps, BreadcrumbItem, type BreadcrumbItemProps, type BreadcrumbItemVariantProps, BreadcrumbLink, type BreadcrumbLinkProps, type BreadcrumbLinkVariantProps, BreadcrumbList, type BreadcrumbListProps, type BreadcrumbListVariantProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbPageVariantProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, type BreadcrumbSeparatorVariantProps, type BuilderDataSource, type BuilderLayoutConfig, type BuilderMode, type BuilderPosition, type BuilderSavePayload, type BuilderState, type BuilderWidget, type BuilderWidgetAddPayload, type BuilderWidgetDefinition, type BuilderWidgetLayout, type BuilderWidgetProps, type BuilderWidgetRemovePayload, type BuilderWidgetUpdatePayload, Button, type ButtonCVAVariant, type ButtonEventPayload, ButtonGroup, ButtonGroupContext, type ButtonGroupContextValue, ButtonGroupItem, type ButtonGroupItemIconMode, type ButtonGroupItemProps, type ButtonGroupItemState, type ButtonGroupOrientation, type ButtonGroupProps, ButtonGroupSeparator, type ButtonGroupSeparatorProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonGroupVariant, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, type CalendarButtonVariant, type CalendarCaptionLayout, CalendarDayButton, type CalendarDayButtonProps, type CalendarEvent, type CalendarMode, type CalendarPassthroughProps, type CalendarProps, type CalendarRef, Callout, type CalloutProps$1 as CalloutComponentProps, type CalloutProps, type CalloutSize, type CalloutVariant, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, type CardSelectablePayload, CardTitle, type CardTitleProps, type CardType, type CardTypeConfig, type CardVariant, type CardVariantProps, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryBar, type CategoryBarDataItem, type CategoryBarProps, type CategoryBarSize, type CellEditParams, ChangeIndicator, type ChangeSet, ChartCard, type ChartCardComparisonPeriod, type ChartCardDataPoint, type ChartCardProps, type ChartCardValueFormatter, type ChartColor, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, type ChartLegendContentProps, type ChartLegendProps, ChartStyle, ChartTooltip, ChartTooltipContent, type ChartTooltipContentProps, Checkbox, CheckboxGroup, type CheckboxGroupDescriptionVariantProps, type CheckboxGroupHeaderVariantProps, CheckboxGroupItem, type CheckboxGroupItemProps, type CheckboxGroupItemWrapperVariantProps, type CheckboxGroupLabelVariantProps, type CheckboxGroupOption, type CheckboxGroupOrientation, type CheckboxGroupProps, type CheckboxGroupVariantProps, type CheckboxProps, type CheckboxSize, type CheckboxState, type CheckboxVariantProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleContentVariantProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, type CollapsibleTriggerVariantProps, type CollapsibleVariantProps, ColorPicker, type ColorPickerPreviewVariantProps, type ColorPickerProps, type ColorPickerSize, type ColorPickerSwatchVariantProps, type ColorPickerTriggerVariantProps, type ColorPickerVariant, type ColorUtility, type ColumnDefinition, type ColumnDeletePayload, type ColumnReorderPayload, type ColumnUpdatePayload, type CombinatorToggleVariantProps, ComboChart, type ComboChartBarSeries, type ComboChartBarSeriesConfig, type ComboChartBarVariant, type ComboChartCurveType, type ComboChartEventProps, type ComboChartIntervalType, type ComboChartLegendPosition, type ComboChartLineSeries, type ComboChartLineSeriesConfig, type ComboChartProps, type ComboChartSeriesType, type ComboChartTooltipCallbackProps, type ComboChartTooltipIndicator, Combobox, type ComboboxOption, type ComboboxProps, type ComboboxSize, type ComboboxVariant, Command, type CommandCombinedVariantProps, type CommandDataSlot, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, type CommandEmptyVariantProps, CommandGroup, type CommandGroupData, type CommandGroupProps, type CommandGroupVariantProps, CommandInput, type CommandInputClearVariantProps, type CommandInputIconVariantProps, type CommandInputPayload, type CommandInputProps, type CommandInputVariantProps, type CommandInputWrapperVariantProps, CommandItem, type CommandItemCombinedVariantProps, type CommandItemData, type CommandItemProps, type CommandItemVariant, type CommandItemVariantProps, CommandList, type CommandListProps, type CommandListVariantProps, type CommandProps, type CommandSelectPayload, CommandSeparator, type CommandSeparatorProps, type CommandSeparatorVariantProps, CommandShortcut, type CommandShortcutProps, type CommandShortcutVariantProps, type CommandSize, type CommandVariantProps, type Comment, type CommentAttachment, type CommentDeletePayload, type CommentEditPayload, CommentInput, type CommentInputProps, CommentItem, type CommentItemProps, type CommentMentionPayload, type CommentReactPayload, type CommentReaction, CommentReactions, type CommentSubmitPayload, CommentSystem, type CommentSystemProps, type CommentUser, type CompletePayload, type ConfigChangePayload, type ConfigField, type ConfigFieldType, type ConfigSchema, type ConfigurationFormProps, ConfirmButton, type ConfirmButtonProps, type ConfirmButtonSize, type ConfirmButtonVariant, ConfirmModal, type ConfirmModalProps, type ConfirmModalSize, type ConfirmModalVariant, Container, type ContainerElement, type ContainerMaxWidth, type ContainerPadding, type ContainerProps, type ContainerVariantProps, ContextMenu, ContextMenuCheckboxItem, type ContextMenuCheckboxItemProps, ContextMenuContent, type ContextMenuContentProps, ContextMenuGroup, type ContextMenuGroupProps, ContextMenuItem, type ContextMenuItemProps, type ContextMenuItemVariant, type ContextMenuItemVariantProps, ContextMenuLabel, type ContextMenuLabelProps, type ContextMenuLabelVariantProps, ContextMenuPortal, type ContextMenuPortalProps, type ContextMenuProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, type ContextMenuRadioItemProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuShortcut, type ContextMenuShortcutProps, ContextMenuSub, ContextMenuSubContent, type ContextMenuSubContentProps, type ContextMenuSubProps, ContextMenuSubTrigger, type ContextMenuSubTriggerProps, type ContextMenuSubTriggerVariantProps, ContextMenuTrigger, type ContextMenuTriggerProps, type Country, DEFAULT_STATUS_CONFIGS, Dashboard, DashboardBuilder, DashboardBuilderCanvas, type DashboardBuilderCanvasProps, type DashboardBuilderCanvasVariantProps, type DashboardBuilderDropZoneVariantProps, type DashboardBuilderEmptyStateVariantProps, DashboardBuilderPropertiesPanel, type DashboardBuilderPropertiesPanelProps, type DashboardBuilderPropertiesPanelVariantProps, type DashboardBuilderProps, type DashboardBuilderResizeHandleVariantProps, DashboardBuilderToolbar, type DashboardBuilderToolbarProps, type DashboardBuilderToolbarVariantProps, type DashboardBuilderVariantProps, type DashboardBuilderWidgetCardVariantProps, DashboardBuilderWidgetComponent, type DashboardBuilderWidgetComponentProps, DashboardBuilderWidgetLibrary, type DashboardBuilderWidgetLibraryProps, type DashboardBuilderWidgetLibraryVariantProps, type DashboardBuilderWidgetVariantProps, DashboardCard, DashboardCardContent, type DashboardCardContentProps, DashboardCardFooter, type DashboardCardFooterProps, DashboardCardHeader, type DashboardCardHeaderProps, type DashboardCardProps, DashboardCardTitle, type DashboardCardTitleProps, DashboardCardValue, type DashboardCardValueProps, DashboardEmptyState, DashboardErrorState, DashboardHeader, type DashboardHeaderProps, DashboardLoadingState, type DashboardProps, type DashboardState, type DashboardVariantProps, DashboardWidget, type DashboardWidgetAddPayload, type DashboardWidgetClickPayload, type DashboardWidgetConfig, type DashboardWidgetData, type DashboardWidgetProps, type DashboardWidgetRemovePayload, type DashboardWidgetType, type DashboardWidgetVariantProps, type DataSource, DataTable, DataTableBooleanCell, type DataTableBooleanCellProps, type DataTableColumnMeta, DataTableCurrencyCell, type DataTableCurrencyCellProps, DataTableDateCell, type DataTableDateCellProps, type DataTableFilterVariant, type DataTablePaginationInfo, DataTableProgressCell, type DataTableProgressCellProps, type DataTableProps, DataTableRatingCell, type DataTableRatingCellProps, DatePicker, type DatePickerProps, type DatePickerSize, type DatePickerTriggerVariantProps, type DatePickerVariant, type DateRange, DateRangeInput, type DateRangeInputFieldVariantProps, type DateRangeInputProps, DateRangePicker, type DateRangePickerProps, type DateRangePickerTriggerVariantProps, type DateRangePreset, type DateRangePresetVariantProps, DateRangePresets, type DateRangePresetsProps, DefaultFallback, type DelegatePayload, DeltaBar, type DeltaBarProps, type DeltaBarSize, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, DialogPortal, type DialogPortalProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, type DiffLine, Divider, type DividerLabelPosition, type DividerLineType, type DividerOrientation, type DividerProps, type DividerType, type DividerVisualStyle, DndContext, type DndContextProps, type DragAndDropDataSlot, DragHandle, type DragHandleProps, type DragHandleVariantProps, DragOverlay, type DragOverlayProps, type DragOverlayVariantProps, Draggable, type DraggableProps, type DraggableRenderProps, type DraggableVariantProps, Drawer, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerOverlay, type DrawerOverlayProps, DrawerPortal, type DrawerPortalProps, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuItemVariantProps, DropdownMenuLabel, type DropdownMenuLabelProps, type DropdownMenuLabelVariantProps, DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, type DropdownMenuSubTriggerVariantProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, Droppable, type DroppableProps, type DroppableRenderProps, type DroppableVariantProps, type DropzoneRenderFn, type DropzoneState, type EditableColumnMeta, EmailInput, type EmailInputProps, type EmailInputValidationState, type EmailValidationIconVariantProps, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, ErrorBoundary, type ErrorBoundaryProps, type ErrorBoundaryState, type ErrorDefault, ErrorMessage, type ErrorMessageIconVariantProps, type ErrorMessageProps, type ErrorMessageSize, type ErrorMessageVariant, type ErrorMessageVariantProps, type ErrorObject, ErrorPage, type ErrorPageProps, type ErrorType, type EscalatePayload, EventCalendar, EventCalendarAgenda, type EventCalendarAgendaProps, EventCalendarDay, type EventCalendarDayProps, EventCalendarEvent, type EventCalendarEventProps, EventCalendarHeader, type EventCalendarHeaderProps, EventCalendarMonth, type EventCalendarMonthProps, type EventCalendarProps, type EventCalendarView, EventCalendarWeek, type EventCalendarWeekProps, type ExportFormat$1 as ExportFormat, type ExportOptions, type ExportPayload, type FallbackProps, type FallbackRender, FeatureItem, type FeatureItemProps, type FeatureItemVariant, FeaturedIcon, type FeaturedIconProps, type FeaturedIconShape, type FeaturedIconSize, type FeaturedIconTone, Feed, type FeedProps$1 as FeedComponentProps, FeedItemComponent as FeedItem, type FeedItemProps$1 as FeedItemComponentProps, type FeedItemData, type FeedItem as FeedItemDataType, type FeedItemProps, type FeedProps, type FeedSize, FeedSkeleton, type FeedVariant, Field, FieldContent, type FieldContentProps, type FieldDefinition, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorItem, type FieldErrorProps, FieldGroup, type FieldGroupProps, FieldLabel, type FieldLabelProps, FieldLegend, type FieldLegendProps, type FieldLegendVariant, type FieldLegendVariantProps, type FieldOption, type FieldOrientation, type FieldProps, FieldSeparator, type FieldSeparatorProps, FieldSet, type FieldSetProps, FieldTitle, type FieldTitleProps, type FieldType, type FieldVariantProps, type FileChange, FileDropzone, type FileDropzoneProps, type FileInfo, FilePreview, type FilePreviewActionButtonVariantProps, type FilePreviewActionsVariantProps, type FilePreviewContentVariantProps, type FilePreviewDataSlot, type FilePreviewFallbackVariantProps, type FilePreviewInfoVariantProps, type FilePreviewProps, type FilePreviewState, type FilePreviewVariantProps, FileTree, FileTreeAction, FileTreeBody, FileTreeFooter, FileTreeHeader, type FileTreeNode, FileTreeProjectBadge, FileTreeProjectMeta, type FileTreeProps, type FileTreeRowContext, FileTreeSearch, type FileTreeSelectEventPayload, type FileTreeSize, type FileTreeToggleEventPayload, FileTreeToolbar, type FileTreeVariant, type FileTypeCategory, FileUpload, FileUploadAvatar, type FileUploadAvatarVariantProps, type FileUploadChangePayload, type FileUploadCompletePayload, type FileUploadContextValue, type FileUploadDataSlot, FileUploadDropzone, type FileUploadDropzoneProps, type FileUploadDropzoneVariantProps, type FileUploadErrorPayload, FileUploadInline, FileUploadList, type FileUploadListProps, FileUploadPreview, type FileUploadPreviewProps, type FileUploadPreviewVariantProps, FileUploadProgressBar, type FileUploadProgressPayload, type FileUploadProgressProps, type FileUploadProgressVariantProps, type FileUploadProps, type FileUploadRemovePayload, FileUploadTrigger, type FileUploadTriggerProps, type FileUploadTriggerVariantProps, type FileUploadVariantProps, type FileValidationError, FilterBuilder, type FilterBuilderEventPayload, type FilterBuilderProps, type FilterBuilderVariantProps, FilterGroupComponent as FilterGroup, type FilterGroupProps, type FilterGroup as FilterGroupType, type FilterGroupVariantProps, FilterPreview, type FilterPreviewProps, FilterRuleComponent as FilterRule, type FilterRuleEventPayload, type FilterRuleProps, type FilterRule as FilterRuleType, type FilterRuleVariantProps, FilterToolbar, type FilterToolbarProps, Flex, type FlexAlign, type FlexDirection, type FlexElement, type FlexGap, type FlexJustify, type FlexProps, type FlexVariantProps, type FlexWrap, FloatLabel, type FloatLabelProps, type FloatLabelVariant, FocusTrap, type FocusTrapProps, type FocusedCell, FolderStack, type FolderStackEventPayload, type FolderStackProps, Form, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, type FormDescriptionVariantProps, FormField, FormFieldContext, type FormFieldContextValue, type FormFieldProps, FormItem, FormItemContext, type FormItemContextValue, type FormItemProps, type FormItemVariantProps, FormLabel, type FormLabelProps, type FormLabelVariantProps, FormMessage, type FormMessageProps, type FormMessageVariantProps, type FormProps, FormValidation, type FormValidationProps, type FormValidationState, type FormValidationVariantProps, FunnelChart, type FunnelChartDataItem, type FunnelChartLabelPosition, type FunnelChartLegendPosition, type FunnelChartProps, type FunnelChartTooltipCallbackProps, type FunnelChartTooltipIndicator, GaugeChart, type GaugeChartProps, type GaugeSize, type GaugeVariant, type GaugeZone, type GeneratePayload, GradientSpinner, type GradientSpinnerVariants, Grid, type GridAlign, type GridCols, type GridElement, type GridFlow, type GridGap, type GridProps, type GridRows, type GridVariantProps, Header, HeaderActions, type HeaderActionsProps, HeaderBrand, type HeaderBrandProps, HeaderNav, type HeaderNavProps, type HeaderProps, Heading, type HeadingAlign, type HeadingColor, type HeadingGradient, type HeadingLevel, type HeadingProps, type HeadingSize, type HeadingWeight, Heatmap, HeatmapCell, type HeatmapCellEventPayload, type HeatmapCellProps, type HeatmapData, HeatmapLegend, type HeatmapLegendPosition, type HeatmapProps, type HeatmapSelectedCell, HelpText, type HelpTextIconVariantProps, type HelpTextProps, type HelpTextSize, type HelpTextVariant, type HelpTextVariantProps, HoverCard, HoverCardContent, HoverCardTrigger, Icon, type IconProps, type IconSize, type IconVariant, IftaLabel, type IftaLabelProps, Image, type ImageAspectRatio, ImageGallery, type ImageGalleryGap, ImageGalleryItem, type ImageGalleryItemProps, type ImageGalleryLayout, type ImageGalleryProps, type ImageItem, type ImageObjectFit, type ImageProps, type ImageSize, type ImageVariant, type InputEventPayload, InputGroup, InputGroupAddon, type InputGroupAddonAlign, type InputGroupAddonProps, type InputGroupAddonVariantProps, InputGroupButton, type InputGroupButtonProps, type InputGroupButtonSize, type InputGroupButtonVariantProps, InputGroupInput, type InputGroupInputProps, type InputGroupInputVariantProps, type InputGroupProps, type InputGroupSize, InputGroupText, type InputGroupTextProps, InputGroupTextarea, type InputGroupTextareaProps, type InputGroupTextareaVariantProps, type InputGroupVariantProps, type InputIconVariantProps, InputOTP, type InputOTPContainerVariantProps, type InputOTPDigits, type InputOTPExtraProps, InputOTPField, type InputOTPFieldDescriptionVariantProps, type InputOTPFieldErrorVariantProps, type InputOTPFieldLabelVariantProps, type InputOTPFieldProps, type InputOTPFieldVariantProps, InputOTPGroup, type InputOTPGroupProps, type InputOTPProps, InputOTPSeparator, type InputOTPSeparatorProps, type InputOTPSize, InputOTPSlot, type InputOTPSlotProps, type InputOTPSlotVariantProps, type InputSize, type InputVariant, type InputVariantProps, Item, ItemActions, type ItemAddPayload, type ItemClickPayload, ItemContent, type ItemDeletePayload, ItemDescription, type ItemEventPayload, ItemFooter, ItemGroup, ItemHeader, ItemMedia, type ItemMovePayload, ItemSeparator, ItemTitle, type ItemUpdatePayload, KPICard, KPICardGroup, type KPICardGroupProps, type KPICardProps, type KPICardSize, type KPICardTrend, type KPICardVariant, KanbanBoard, type KanbanBoardProps, KanbanCard, type KanbanCardProps, type KanbanColumn, type KanbanColumnProps, type KanbanFilterConfig, type KanbanItem, type KanbanLabel, type KanbanSubtasks, type KanbanUser, Kbd, KbdGroup, type KbdGroupProps, type KbdProps, type KbdSize, type KbdVariant, type KbdVariants, type KeyboardShortcuts, Label, type LabelProps, type LayoutChangePayload, type LayoutItem, type LegendPayloadItem, Lightbox, type LightboxImage, type LightboxProps, LineChart, type LineChartCurveType, type LineChartProps, type LineChartSeriesConfig, type LineChartTooltipIndicator, type LineChartVariant, Link, type LinkEventPayload, type LinkProps, type LinkSize, type LinkUnderline, type LinkVariant, List, ListItem, ListItemActions, ListItemContent, type ListItemProps, ListItem as ListItemType, type ListProps, LogoConta, type LogoContaProps, type LogoContaTone, MarkdownEditor, type MarkdownEditorMode, type MarkdownEditorProps, type MarkdownEditorRef, MarkdownHelp, type MarkdownHelpProps, MarkdownPreview, type MarkdownPreviewProps, MarkdownToolbar, type MarkdownToolbarProps, MarkerBar, type MarkerBarProps, type MarkerBarSize, Menu, MenuGroup, type MenuGroupProps, MenuItem, type MenuItemProps, MenuLabel, type MenuLabelProps, type MenuProps, MenuSeparator, type MenuSeparatorProps, MenuShortcut, type MenuShortcutProps, Menubar, MenubarCheckboxItem, type MenubarCheckboxItemProps, MenubarContent, type MenubarContentProps, MenubarGroup, type MenubarGroupProps, MenubarItem, type MenubarItemProps, type MenubarItemVariantProps, MenubarLabel, type MenubarLabelProps, type MenubarLabelVariantProps, MenubarMenu, type MenubarMenuProps, MenubarPortal, type MenubarPortalProps, type MenubarProps, MenubarRadioGroup, type MenubarRadioGroupProps, MenubarRadioItem, type MenubarRadioItemProps, MenubarSeparator, type MenubarSeparatorProps, MenubarShortcut, type MenubarShortcutProps, MenubarSub, MenubarSubContent, type MenubarSubContentProps, type MenubarSubProps, MenubarSubTrigger, type MenubarSubTriggerProps, type MenubarSubTriggerVariantProps, MenubarTrigger, type MenubarTriggerProps, Message, type MessageProps, type MessageSize, type MessageVariant, Modal, type ModalIntent, type ModalProps, type ModalSize, MultiSelect, type MultiSelectOption, type MultiSelectProps, type MultiSelectSize, type MultiSelectVariant, NativeSelect, NativeSelectOptGroup, type NativeSelectOptGroupProps, NativeSelectOption, type NativeSelectOptionProps, type NativeSelectProps, type NativeSelectSize$1 as NativeSelectSize, type NativeSelectVariant, type NativeSelectVariantProps, Navbar, NavbarBrand, type NavbarBrandProps, NavbarContent, type NavbarContentProps, NavbarItem, type NavbarItemProps, NavbarLink, type NavbarLinkProps, NavbarMenu, type NavbarMenuProps, NavbarMenuToggle, type NavbarMenuToggleProps, type NavbarProps, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuIndicator, type NavigationMenuIndicatorProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, NavigationMenuViewport, type NavigationMenuViewportProps, Notification, NotificationDismissButton, type NotificationItem, type NotificationProps, type NotificationVariant, NumberInput, type NumberInputProps, type NumberStepperButtonVariantProps, type NumberStepperVariantProps, type OperatorInfo, type OperatorType, type OperatorsByType, PROGRESS_CIRCLE_SIZES, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, Panel, PanelContent, type PanelContentProps, type PanelContentVariantProps, PanelFooter, type PanelFooterProps, PanelHeader, type PanelHeaderProps, type PanelPosition, type PanelProps, type PanelSize, type PanelVariant, type PanelVariantProps, Paragraph, type ParagraphAlign, type ParagraphColor, type ParagraphLeading, type ParagraphProps, type ParagraphSize, type ParagraphSpacing, type ParagraphWeight, PasswordInput, type PasswordInputProps, type PasswordToggleVariantProps, PaymentInput, type PaymentInputProps, type PaymentInputSize, type PaymentInputVariant, type PaymentInputVariantProps, type PaymentMethod, PaymentMethodIcon, type PaymentMethodIconProps, type PaymentMethodIconSize, PhoneInput, type PhoneInputProps, type PhoneInputSize, type PhoneInputVariant, type PhoneInputVariantProps, PieChart, type PieChartActiveShape, type PieChartCenterLabel, type PieChartDataItem, type PieChartLabelConfig, type PieChartProps, type PieChartTooltipCallbackProps, type PieChartTooltipIndicator, type PieChartVariant, Popover, type PopoverAlign, PopoverAnchor, type PopoverAnchorProps, type PopoverCloseProps, PopoverContent, type PopoverContentProps, type PopoverPortalProps, type PopoverProps, type PopoverSide, PopoverTrigger, type PopoverTriggerProps, Portal, type PortalProps, type PreviewContainerVariantProps, type PreviewPanelProps, ProgressBar, type ProgressBarColor, type ProgressBarLabelPosition, type ProgressBarLabelProps, type ProgressBarProps, type ProgressBarSize, ProgressCircle, type ProgressCircleColor, type ProgressCircleContainerVariants, type ProgressCircleIndicatorVariants, type ProgressCircleProps, type ProgressCircleShape, type ProgressCircleSize, type ProgressCircleTrackVariants, ProgressSteps, type ProgressStepsProps, type ProgressStepsVariantProps, RadarChart, type RadarChartProps, RadialChart, type RadialChartProps, RadioButton, type RadioButtonIndicatorVariantProps, type RadioButtonLabelVariantProps, type RadioButtonProps, type RadioButtonSize, type RadioButtonVariantProps, type RadioButtonWrapperVariantProps, RadioCardGroup, RadioCardGroupItem, type RadioCardGroupItemProps, type RadioCardGroupProps, type RadioCardGroupSize, RadioGroup, type RadioGroupIndicatorVariantProps, RadioGroupItem, type RadioGroupItemProps, type RadioGroupItemVariantProps, type RadioGroupOrientation, type RadioGroupProps, type RadioGroupSize, type RadioGroupVariantProps, type RangeCalendarProps, Rating, type RatingItemProps, type RatingItemVariantProps, type RatingProps, type RatingSize, type RatingVariantProps, type Reaction, type RecurrenceRule, type RefreshPayload, type RejectPayload, ReportBuilder, type ReportBuilderField, type ReportBuilderFieldKind, type ReportBuilderFilter, type ReportBuilderFilterField, type ReportBuilderFilterOp, type ReportBuilderFilterType, type ReportBuilderNumberOp, type ReportBuilderProps, type ReportChartConfig, type ReportConfig, type ReportErrorPayload, type ReportExportPayload, ReportGenerator, type ReportGeneratorProps, type ReportGeneratorState, type ReportGeneratorVariantProps, type ReportTemplate, ResizableHandle, type ResizableHandleProps, type ResizableHandleVariant, type ResizableHandleVariantProps, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, type ResizablePanelGroupVariantProps, type ResizablePanelProps, type ResizablePanelVariantProps, type ResponsiveColumns, ResponsiveContainer, type ResponsiveContainerBreakpoint, type ResponsiveContainerElement, type ResponsiveContainerMaxWidth, type ResponsiveContainerProps, type ResponsiveContainerVariant, type ResponsiveContainerVariantProps, RichTextBubbleMenuContent as RichTextBubbleMenu, type RichTextBubbleMenuProps, RichTextEditor, type RichTextEditorProps, type RichTextEditorRef, RichTextFloatingMenuContent as RichTextFloatingMenu, type RichTextFloatingMenuProps, RichTextToolbar, type RichTextToolbarProps, ScatterChart, type ScatterChartEventProps, type ScatterChartIntervalType, type ScatterChartLegendPosition, type ScatterChartProps, type ScatterChartSeriesConfig, type ScatterChartShape, type ScatterChartTooltipCallbackProps, type ScatterChartTooltipIndicator, type ScatterChartValueFormatter, type ScheduleConfig, type SchedulePayload, ScrollArea, type ScrollAreaProps, type ScrollAreaVariantProps, type ScrollAreaViewportVariantProps, ScrollBar, type ScrollBarOrientation, type ScrollBarProps, type ScrollBarSize, type ScrollBarThumbVariantProps, type ScrollBarVariantProps, Search, type SearchClearButtonVariantProps, SearchEmpty, type SearchEmptyProps, type SearchFilter, SearchFilters, type SearchFiltersProps, type SearchGroup, SearchHighlight, type SearchHighlightProps, SearchHistory, type SearchHistoryProps, type SearchIconVariantProps, SearchInput, type SearchInputProps$1 as SearchInputProps, SearchLoading, type SearchLoadingProps, type SearchProps, type SearchResult, SearchResultGroup, type SearchResultGroupProps, SearchResultItem, type SearchResultItemProps, SearchResults, type SearchResultsProps, type SearchSize, type SearchState, type SearchVariant, Section, type SectionProps, type SectionSize, type SectionVariant, type SectionVariantProps, Select, SelectContent, type SelectContentProps, type SelectContentVariantProps, SelectGroup, type SelectGroupProps, SelectItem, type SelectItemProps, type SelectItemVariantProps, SelectLabel, type SelectLabelProps, type SelectLabelVariantProps, type SelectProps, type SelectScrollButtonVariantProps, SelectScrollDownButton, type SelectScrollDownButtonProps, SelectScrollUpButton, type SelectScrollUpButtonProps, SelectSeparator, type SelectSeparatorProps, type SelectSeparatorVariantProps, type SelectSize, SelectTrigger, type SelectTriggerProps, type SelectTriggerVariantProps, SelectValue, type SelectValueProps, type SelectVariant, Sheet, SheetBody, type SheetBodyProps, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, type SheetContentVariantProps, SheetDescription, type SheetDescriptionProps, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, SheetOverlay, type SheetOverlayProps, type SheetOverlayVariant, type SheetOverlayVariantProps, SheetPortal, type SheetPortalProps, type SheetProps, type SheetSide, type SheetSize, SheetTitle, type SheetTitleProps, SheetTrigger, type SheetTriggerProps, Sidebar, SidebarAvatar, SidebarContent, type SidebarContentProps, type SidebarContextProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupAction, type SidebarGroupActionProps, SidebarGroupContent, type SidebarGroupContentProps, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarInput, type SidebarInputProps, SidebarInset, type SidebarInsetProps, SidebarLogo, SidebarMenu, SidebarMenuAction, type SidebarMenuActionProps, SidebarMenuBadge, type SidebarMenuBadgeProps, SidebarMenuButton, type SidebarMenuButtonProps, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, SidebarMenuSkeleton, type SidebarMenuSkeletonProps, SidebarMenuSub, SidebarMenuSubButton, type SidebarMenuSubButtonProps, SidebarMenuSubItem, type SidebarMenuSubItemProps, type SidebarMenuSubProps, SidebarPanelContent, type SidebarPanelContentProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarRail, SidebarRailButton, type SidebarRailButtonProps, SidebarRailContent, type SidebarRailContentProps, type SidebarRailProps, SidebarSeparator, type SidebarSeparatorProps, type SidebarState, SidebarThemeToggle, SidebarTrigger, type SidebarTriggerProps, SingleStat, type SingleStatProps, type SingleStatSize, type SingleStatVariant, SkeletonLoader, type SkeletonLoaderAnimation, type SkeletonLoaderProps, type SkeletonLoaderShape, type SkeletonLoaderSize, type SkeletonLoaderVariants, SkipLink, type SkipLinkItem, type SkipLinkProps, SkipLinksList, type SkipLinksListProps, Slider, type SliderColor, type SliderFormatValue, type SliderGetAriaValueText, type SliderLabelType, type SliderLabelVariantProps, type SliderMark, type SliderMarkContainerVariantProps, type SliderMarkLabelVariantProps, type SliderMarkTickVariantProps, type SliderMarkVariantProps, type SliderOrientation, type SliderProps, type SliderRangeVariantProps, type SliderRootVariantProps, type SliderSize, type SliderThumbVariantProps, type SliderTooltipVariantProps, type SliderTrackVariantProps, type SliderValue, SortableContext, type SortableContextProps, SortableItem, type SortableItemProps, type SortableItemRenderProps, type SortableItemState, type SortableItemVariantProps, SortableList, type SortableListDataSlot, SortableListDragHandle, type SortableListDragHandleProps, type SortableListHandleContextValue, SortableListItem, type SortableListItemProps, type SortableListProps, type SortableListReorderEvent, Spacer, type SpacerAxis, type SpacerFlex, type SpacerNumericSize, type SpacerProps, type SpacerSize, type SpacerTokenSize, type SpanColumnMeta, Sparkline, type SparklineData, type SparklineDataPoint, type SparklineFill, type SparklineProps, type SparklineSize, type SparklineVariant, SpeedDial, type SpeedDialAction, type SpeedDialDirection, type SpeedDialProps, Spinner, type SpinnerColor, type SpinnerProps, type SpinnerSize, type SpinnerVariant, type SpinnerVariants, SplitButton, type SplitButtonEventPayload, type SplitButtonMenuItem, type SplitButtonProps, type SplitButtonSize, type SplitButtonVariant, Stack, type StackAlign, type StackDirection, type StackElement, type StackJustify, type StackProps, type StackSpacing, type StackVariantProps, type StatusConfig, StatusIndicator, type StatusIndicatorProps, type StatusIndicatorSize, type StatusIndicatorVariant, type StatusType, type Step, type StepBadgeVariantProps, type StepChangePayload, type StepCircleVariantProps, type StepConnectorHorizontalVariantProps, type StepConnectorVerticalVariantProps, type StepIndicatorProps, type StepIndicatorVariantProps, type StepItem, type StepItemProps, type StepItemVariantProps, Stepper, type StepperConnectorHorizontalVariantProps, type StepperConnectorVerticalVariantProps, type StepperIndicatorVariantProps, type StepperItemVariantProps, type StepperProps, type StepperVariantProps, SuccessMessage, type SuccessMessageProps, type SuccessMessageVariantProps, Switch, type SwitchProps, type SwitchSize, type SwitchState, type SwitchThumbVariantProps, type SwitchVariantProps, TabNavigation, TabNavigationLink, type TabNavigationLinkProps, type TabNavigationProps, type TabNavigationVariant, TabPanel, TabPanelList, type TabPanelListProps, type TabPanelProps, TabPanelRoot, type TabPanelRootProps, TabPanelTrigger, type TabPanelTriggerProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, type TabsVariant, Tag, type TagAvatarProps, type TagDotColor, TagGroup, type TagGroupContextValue, type TagGroupProps, type TagProps, type TagSize, TagsInput, type TagsInputInputVariantProps, type TagsInputProps, type TagsInputSize, type TagsInputVariant, type TagsInputVariantProps, type TaskAssignee, TaskCard, type TaskCardAssignee, type TaskCardProps, type TaskCardStatus, type TaskGroupBy, type TaskItem, TaskList, type TaskListPriority, type TaskListProps, type TaskListStatus, type TaskPriority, TaskStatus, type TaskStatusColorVariantProps, type TaskStatusConfig, type TaskStatusConfigMap, type TaskStatusIconVariantProps, type TaskStatusLabelVariantProps, type TaskStatusMenuItemVariantProps, type TaskStatusMenuProps, type TaskStatusProps, type TaskStatusTriggerVariantProps, type TaskStatusVariantProps, type TemplateCardVariantProps, type TemplateSelectorProps, Text, type TextColor, type TextElement, TextInput, type TextInputProps, type TextProps, type TextSize, type TextVariant, type TextWeight, Textarea, TextareaField, type TextareaFieldDescriptionVariantProps, type TextareaFieldErrorVariantProps, type TextareaFieldLabelVariantProps, type TextareaFieldProps, type TextareaFieldVariantProps, type TextareaProps, type TextareaResize, type TextareaSize, type TextareaVariant, type TextareaVariantProps, Thumbnail, type ThumbnailAspectRatio, ThumbnailBadge, ThumbnailCheckbox, type ThumbnailMode, ThumbnailPin, ThumbnailPlayOverlay, type ThumbnailProps, type ThumbnailRounded, type ThumbnailRoundedVariant, type ThumbnailSize, type ThumbnailSizeVariant, ThumbnailTag, type TimeItemVariantProps, TimePicker, type TimePickerProps, type TimePickerSize, type TimePickerTriggerVariantProps, type TimePickerVariant, type TimeScrollListVariantProps, type TimeSlot, Timeline, TimelineConnector, TimelineContent, TimelineItemComponent as TimelineItem, type TimelineItem as TimelineItemData, type TimelineItemProps, TimelineMarker, type TimelineProps, type ToastOptions, type ToastPosition, type ToastPromiseOptions, type ToastTheme, Toaster, type ToasterProps, Toggle, ToggleGroup, type ToggleGroupItemVariantProps, type ToggleGroupMultipleProps, type ToggleGroupProps, type ToggleGroupSingleProps, ToggleItem, type ToggleItemProps, type ToggleProps, type ToggleSize, type ToggleVariant, Toolbar, type ToolbarAction, ToolbarButton, type ToolbarButtonProps, ToolbarGroup, type ToolbarGroupProps, ToolbarLink, type ToolbarLinkProps, type ToolbarProps, ToolbarSeparator, type ToolbarSeparatorProps, ToolbarToggleGroup, type ToolbarToggleGroupProps, ToolbarToggleItem, type ToolbarToggleItemProps, Tooltip, type TooltipAlign, TooltipArrow, type TooltipArrowProps, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, type TooltipProviderProps, type TooltipSide, TooltipTrigger, type TooltipTriggerProps, Topbar, TopbarLeading, type TopbarLeadingProps, type TopbarProps, TopbarTrailing, type TopbarTrailingProps, Tracker, type TrackerBlockData, type TrackerProps, URLInput, type URLInputProps, type URLInputValidationState, type URLLinkIconVariantProps, type URLValidationIconVariantProps, UpdatesWidget, type UpdatesWidgetItem, type UpdatesWidgetProps, type UploadProgress, type UploadResult, type UseFormFieldReturn, type ValidationRule, type Version, VersionActions, type VersionActionsProps, type VersionAuthor, VersionBadge, VersionControl, type VersionControlProps, VersionDiff, type VersionDiffProps, VersionItem, type VersionItemProps, VersionList, VersionTimeline, type VersionTimelineProps, VirtualTable, type VirtualTableProps, Wizard, type WizardProps, type WizardStep, accordionContentInnerVariants, accordionContentVariants, accordionItemVariants, accordionTriggerVariants, alertVariants, approvalFlowActionsVariants, approvalFlowConnectorVariants, approvalFlowMarkerVariants, approvalFlowStepCardVariants, approvalFlowStepVariants, approvalFlowVariants, approvalStatusVariants, arrayMove, arrowAnimatedHeadTransforms, arrowAnimatedHeadVariants, arrowAnimatedLineVariants, arrowAnimatedVariants, aspectRatios, assetManagerContentVariants, assetManagerEmptyVariants, assetManagerGridVariants, assetManagerItemInfoVariants, assetManagerItemVariants, assetManagerLoadingVariants, assetManagerSidebarVariants, assetManagerThumbnailVariants, assetManagerToolbarVariants, assetManagerUploaderVariants, assetManagerVariants, availableChartColors, avatarAddButtonVariants, avatarBadgeVariants, avatarFallbackVariants, avatarGroupVariants, avatarLabelGroupVariants, avatarStatusVariants, avatarVariants, badgeVariants, bannerVariants, breadcrumbEllipsisVariants, breadcrumbItemVariants, breadcrumbLinkVariants, breadcrumbListVariants, breadcrumbPageVariants, breadcrumbSeparatorVariants, buttonGroupItemVariants, buttonGroupVariants, buttonVariants, calculateRatio, calendarContainerVariants, calendarDayButtonVariants, calendarDayCellVariants, calendarDisabledVariants, calendarNavButtonVariants, calendarOutsideVariants, calendarRangeEndVariants, calendarRangeMiddleVariants, calendarRangeStartVariants, calendarTodayIndicatorVariants, calendarTodayVariants, calloutVariants, cardActionVariants, cardContentVariants, cardDescriptionVariants, cardFooterVariants, cardHeaderVariants, cardMediaVariants, cardTitleVariants, cardTypes, cardVariants, changeIndicatorVariants, chartCardChartVariants, chartCardHeaderVariants, chartCardPreviousValueVariants, chartCardTitleVariants, chartCardValueContainerVariants, chartCardValueVariants, chartCardVariants, chartColors, checkboxGroupDescriptionVariants, checkboxGroupHeaderVariants, checkboxGroupItemWrapperVariants, checkboxGroupLabelVariants, checkboxGroupVariants, checkboxIconVariants, checkboxVariants, collapsibleContentVariants, collapsibleTriggerVariants, collapsibleVariants, colorPickerPreviewVariants, colorPickerSwatchVariants, colorPickerTriggerVariants, combinatorToggleVariants, commandEmptyVariants, commandGroupVariants, commandInputClearVariants, commandInputIconVariants, commandInputVariants, commandInputWrapperVariants, commandItemVariants, commandListVariants, commandSeparatorVariants, commandShortcutVariants, commandVariants, commentActionsVariants, commentContentVariants, commentEmptyStateVariants, commentHeaderVariants, commentInputContainerVariants, commentItemVariants, commentMentionVariants, commentReactionVariants, commentRepliesVariants, commentSystemVariants, commentThreadLineVariants, commentTimelineMarkerVariants, completedStyles, configSectionVariants, constructCategoryColors, containerVariants, contextMenuCheckboxItemVariants, contextMenuContentVariants, contextMenuIndicatorWrapperVariants, contextMenuItemVariants, contextMenuLabelVariants, contextMenuRadioItemVariants, contextMenuSeparatorVariants, contextMenuShortcutVariants, contextMenuSubContentVariants, contextMenuSubTriggerVariants, dashboardBuilderCanvasVariants, dashboardBuilderDropZoneVariants, dashboardBuilderEmptyStateVariants, dashboardBuilderPropertiesPanelVariants, dashboardBuilderResizeHandleVariants, dashboardBuilderToolbarVariants, dashboardBuilderVariants, dashboardBuilderWidgetCardVariants, dashboardBuilderWidgetLibraryVariants, dashboardBuilderWidgetVariants, dashboardCardContentVariants, dashboardCardFooterVariants, dashboardCardHeaderVariants, dashboardCardTitleVariants, dashboardCardValueVariants, dashboardCardVariants, dashboardContentVariants, dashboardEmptyVariants, dashboardGridVariants, dashboardHeaderVariants, dashboardLoadingVariants, dashboardSidebarVariants, dashboardVariants, dashboardWidgetHeaderVariants, dashboardWidgetVariants, datePickerTriggerVariants, dateRangeInputContainerVariants, dateRangeInputFieldVariants, dateRangePickerFooterVariants, dateRangePickerTriggerVariants, dateRangePresetVariants, dateRangePresetsContainerVariants, defaultChartColors, defaultCountries, defaultPresets, defaultReactions, defaultWidgets, detectCardType, diffLineVariants, dividerContentVariants, dividerLineVariants, dividerWrapperVariants, downloadFile, dragHandleVariants, dragOverlayVariants, draggableVariants, drawerContentBaseVariants, drawerDescriptionVariants, drawerFooterVariants, drawerHandleVariants, drawerHeaderVariants, drawerOverlayVariants, drawerTitleVariants, dropdownMenuCheckboxItemVariants, dropdownMenuContentVariants, dropdownMenuIndicatorWrapperVariants, dropdownMenuItemVariants, dropdownMenuLabelVariants, dropdownMenuRadioItemVariants, dropdownMenuSeparatorVariants, dropdownMenuShortcutVariants, dropdownMenuSubContentVariants, dropdownMenuSubTriggerVariants, droppableVariants, emailValidationIconVariants, emptyMediaVariants, emptyStateStyles, emptyStateVariants, errorBoundaryActionVariants, errorBoundaryCardVariants, errorBoundaryFallbackVariants, errorBoundaryIconVariants, errorBoundaryMessageVariants, errorBoundaryStackVariants, errorBoundaryTitleVariants, errorDefaults, errorMessageIconVariants, errorMessageListVariants, errorMessageVariants, errorStateVariants, eventCalendarAgendaItemVariants, eventCalendarCellVariants, eventCalendarDayNumberVariants, eventCalendarEventVariants, eventCalendarHeaderVariants, eventCalendarTimeSlotVariants, eventCalendarVariants, eventCalendarViewButtonVariants, exportButtonGroupVariants, exportToCSV, exportToExcel, exportToPDF, featureItemVariants, featuredIconVariants, feedItemVariants, feedVariants, fieldContentVariants, fieldDescriptionVariants, fieldErrorVariants, fieldGroupVariants, fieldLabelVariants, fieldLegendVariants, fieldSeparatorVariants, fieldSetVariants, fieldTitleVariants, fieldVariants, fileDropzoneVariants, filePreviewActionButtonVariants, filePreviewActionsVariants, filePreviewContentVariants, filePreviewFallbackVariants, filePreviewInfoVariants, filePreviewVariants, fileTreeRowVariants, fileTreeShellVariants, filterBuilderVariants, filterGroupHeaderVariants, filterGroupVariants, filterPreviewVariants, filterRuleVariants, filterToolbarVariants, findCountryByCode, findCountryByDialCode, flexVariants, folderStackVariants, formActionsVariants, formDescriptionVariants, formItemVariants, formLabelVariants, formMessageVariants, formValidationVariants, formatCardNumber, formatPhoneNumber, gaugeChartVariants, getCardBrandName, getCardConfig, getCardDigits, getColorClassName, getEventVariant, getInitials, getPhoneDigits, getRatio, getYAxisDomain, gradientSpinnerVariants, gridVariants, groupHeaderStyles, headerActionsVariants, headerBrandVariants, headerContainerVariants, headerNavVariants, headerVariants, headingVariants, heatmapVariants, helpTextIconVariants, helpTextVariants, iconVariants, imageVariants, inputGroupAddonVariants, inputGroupButtonVariants, inputGroupInputVariants, inputGroupTextareaVariants, inputGroupVariants, inputIconVariants, inputOTPCaretInnerStyles, inputOTPCaretStyles, inputOTPContainerVariants, inputOTPFieldDescriptionVariants, inputOTPFieldErrorVariants, inputOTPFieldLabelVariants, inputOTPFieldVariants, inputOTPGroupVariants, inputOTPSlotVariants, inputVariants, inputWrapperVariants, isEditableColumnMeta, isFilterGroup, isFilterRule, isSpanColumnMeta, itemMediaVariants, itemVariants, kanbanAddButtonVariants, kanbanBoardVariants, kanbanCardDescriptionVariants, kanbanCardMetaVariants, kanbanCardTitleVariants, kanbanCardVariants, kanbanColumnContentVariants, kanbanColumnHeaderVariants, kanbanColumnVariants, kanbanDropIndicatorVariants, kanbanLabelVariants, kanbanSearchVariants, kanbanSwimlaneVariants, kbdVariants, linkVariants, listItemVariants, listVariants, loadingStateVariants, loadingStyles, logoContaVariants, markerBarContainerVariants, markerBarMarkerVariants, markerBarMarkerWrapperVariants, markerBarRangeVariants, mentionSuggestionItemVariants, mentionSuggestionsVariants, menuGroupVariants, menuItemVariants, menuLabelVariants, menuSeparatorVariants, menuShortcutVariants, menuVariants, menubarCheckboxItemVariants, menubarContentVariants, menubarIndicatorWrapperVariants, menubarItemVariants, menubarLabelVariants, menubarRadioItemVariants, menubarSeparatorVariants, menubarShortcutVariants, menubarSubContentVariants, menubarSubTriggerVariants, menubarTriggerVariants, menubarVariants, messageVariants, nativeSelectIconVariants, nativeSelectLeftIconVariants, nativeSelectVariants, nativeSelectWithLeftIconPadding, nativeSelectWrapperVariants, navbarBrandVariants, navbarContainerVariants, navbarContentVariants, navbarItemVariants, navbarLinkVariants, navbarMenuToggleVariants, navbarMenuVariants, navbarVariants, navigationMenuContentVariants, navigationMenuIndicatorArrowVariants, navigationMenuIndicatorVariants, navigationMenuItemVariants, navigationMenuLinkVariants, navigationMenuListVariants, navigationMenuTriggerStyle, navigationMenuVariants, navigationMenuViewportVariants, navigationMenuViewportWrapperVariants, notificationVariants, numberInputPaddingVariants, numberStepperButtonVariants, numberStepperVariants, paginationContentVariants, paginationEllipsisVariants, paginationNextVariants, paginationPreviousVariants, paginationVariants, panelContentVariants, panelFooterVariants, panelHeaderVariants, panelVariants, paragraphVariants, parseRatio, passwordToggleVariants, paymentInputIconVariants, paymentInputInputVariants, paymentInputVariants, paymentMethodIconVariants, paymentMethodLabels, paymentMethodLogos, phoneInputCountryButtonVariants, phoneInputDropdownVariants, phoneInputInputVariants, phoneInputOptionVariants, phoneInputVariants, portalContainerVariants, portalContentVariants, portalOverlayVariants, previewContainerVariants, previewContentVariants, previewHeaderVariants, priorityStyles, progressBarIndicatorVariants, progressBarLabelVariants, progressBarTooltipVariants, progressBarVariants, progressCircleContainerVariants, progressCircleIndicatorVariants, progressCircleLabelVariants, progressCircleTrackVariants, progressCircleValueVariants, progressStepsVariants, radioButtonIndicatorVariants, radioButtonLabelVariants, radioButtonVariants, radioButtonWrapperVariants, radioCardGroupItemContentVariants, radioCardGroupItemDescriptionVariants, radioCardGroupItemDotVariants, radioCardGroupItemIconVariants, radioCardGroupItemIndicatorVariants, radioCardGroupItemTitleVariants, radioCardGroupItemVariants, radioCardGroupVariants, radioGroupIndicatorVariants, radioGroupItemVariants, radioGroupVariants, ratingItemVariants, ratingVariants, reportGeneratorVariants, stepBadgeVariants as reportStepBadgeVariants, stepIndicatorVariants as reportStepIndicatorVariants, stepItemVariants as reportStepItemVariants, resizableHandleGripVariants, resizableHandleVariants, resizablePanelGroupVariants, resizablePanelVariants, responsiveContainerVariants, richTextEditorBubbleMenuVariants, richTextEditorContentVariants, richTextEditorFloatingMenuVariants, richTextEditorPlaceholderVariants, richTextEditorToolbarButtonVariants, richTextEditorToolbarVariants, richTextEditorVariants, ruleFieldVariants, ruleOperatorVariants, ruleValueVariants, rulesContainerVariants, scrollAreaCornerVariants, scrollAreaVariants, scrollAreaViewportVariants, scrollBarThumbVariants, scrollBarVariants, searchClearButtonVariants, searchEmptyVariants, searchFilterVariants, searchFiltersContainerVariants, searchGroupHeadingVariants, searchHighlightVariants, searchHistoryHeaderVariants, searchIconVariants, searchInputVariants, searchInputWrapperVariants, searchLoadingVariants, searchResultIconVariants, searchResultItemVariants, searchResultsVariants, searchVariants, sectionVariants, selectContentVariants, selectItemVariants, selectLabelVariants, selectScrollButtonVariants, selectSeparatorVariants, selectTriggerVariants, selectedItemStyles, selectedStyles, sheetContentVariants, sheetOverlayVariants, sidebarContainerVariants, sidebarContentVariants, sidebarDesktopVariants, sidebarFooterVariants, sidebarGapVariants, sidebarGroupActionVariants, sidebarGroupContentVariants, sidebarGroupLabelVariants, sidebarGroupVariants, sidebarHeaderVariants, sidebarInnerVariants, sidebarInputVariants, sidebarInsetVariants, sidebarMenuActionShowOnHoverVariants, sidebarMenuActionVariants, sidebarMenuBadgeVariants, sidebarMenuButtonVariants, sidebarMenuItemVariants, sidebarMenuSkeletonVariants, sidebarMenuSubButtonVariants, sidebarMenuSubItemVariants, sidebarMenuSubVariants, sidebarMenuVariants, sidebarMobileVariants, sidebarNonCollapsibleVariants, sidebarProviderVariants, sidebarRailButtonVariants, sidebarRailVariants, sidebarSeparatorVariants, sidebarTriggerVariants, skeletonLoaderVariants, skipLinkVariants, skipLinksListInnerVariants, skipLinksListItemVariants, skipLinksListVariants, sliderLabelVariants, sliderMarkContainerVariants, sliderMarkLabelVariants, sliderMarkTickVariants, sliderMarkVariants, sliderRangeVariants, sliderRootVariants, sliderThumbVariants, sliderTooltipVariants, sliderTrackVariants, sortableItemVariants, sortableListHandleVariants, sortableListItemVariants, sortableListOverlayVariants, sortableListVariants, spacerVariants, spinnerVariants, splitButtonVariants, stackVariants, statusConfig, statusIndicatorVariants, statusStyles, stepBarSegmentVariants, stepCircleVariants, stepConnectorHorizontalVariants, stepConnectorVerticalVariants, stepDescriptionVariants, stepDotVariants, stepItemVariants$1 as stepItemVariants, stepLabelVariants, stepperConnectorHorizontalVariants, stepperConnectorVerticalVariants, stepperDescriptionVariants, stepperIndicatorVariants, stepperItemVariants, stepperLabelVariants, stepperVariants, successMessageVariants, switchThumbVariants, switchVariants, tabNavigationLinkVariants, tabNavigationVariants, tabPanelListVariants, tabPanelRootVariants, tabPanelTriggerVariants, tabPanelVariants, tableToCSV, tabsContentVariants, tabsListVariants, tabsTriggerVariants, tabsVariants, tagCheckboxVariants, tagCountVariants, tagGroupVariants, tagVariants, tagsInputInputVariants, tagsInputVariants, taskCardVariants, taskListHeaderVariants, taskListItemVariants, taskListTitleVariants, taskListVariants, taskStatusColorVariants, taskStatusIconVariants, taskStatusLabelVariants, taskStatusMenuItemVariants, taskStatusTriggerVariants, taskStatusVariants, templateCardVariants, templateGridVariants, textVariants, textareaFieldDescriptionVariants, textareaFieldErrorVariants, textareaFieldLabelVariants, textareaFieldVariants, textareaVariants, thumbnailVariants, timeItemVariants, timePickerTriggerVariants, timeScrollListVariants, timelineItemVariants, timelineMarkerVariants, timelineVariants, toggleGroupItemVariants, toggleVariants, toolbarButtonVariants, toolbarGroupVariants, toolbarLinkVariants, toolbarSeparatorVariants, toolbarToggleGroupVariants, toolbarToggleItemVariants, toolbarVariants, tooltipArrowVariants, tooltipContentVariants, topbarLeadingVariants, topbarTrailingVariants, topbarVariants, unreadDotVariants, urlLinkIconVariants, urlValidationIconVariants, useButtonGroup, useFormField, useIsMobile, useMediaQuery, useOnWindowResize, useSidebar, useTagGroup, validateCardNumber, versionBadgeVariants, versionControlVariants, versionItemVariants, versionTimelineConnectorVariants, versionTimelineMarkerVariants, wizardActionsVariants, wizardContentVariants, wizardStepContentVariants, wizardStepperVariants, wizardVariants };
|