@etus/ui 0.3.2 → 0.4.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1035 -70
- package/dist/index.js +7597 -5227
- package/dist/index.js.map +1 -1
- package/package.json +16 -15
- package/styles.css +61 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
|
|
3
3
|
import * as React$1 from 'react';
|
|
4
|
-
import React__default, { ComponentProps, ReactNode, CSSProperties, Ref, ComponentPropsWithoutRef, ComponentRef, HTMLAttributes, ReactElement, RefObject, ComponentType, ErrorInfo, Component, SVGProps } from 'react';
|
|
4
|
+
import React__default, { ComponentProps, ReactNode, CSSProperties, Ref, ComponentPropsWithoutRef, ComponentRef, MouseEvent as MouseEvent$1, HTMLAttributes, ReactElement, RefObject, ComponentType, ErrorInfo, Component, SVGProps } from 'react';
|
|
5
5
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
6
6
|
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
7
7
|
import { VariantProps } from 'class-variance-authority';
|
|
@@ -15,7 +15,7 @@ import * as TogglePrimitive from '@radix-ui/react-toggle';
|
|
|
15
15
|
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
16
16
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
17
17
|
import { Locale } from 'date-fns';
|
|
18
|
-
import { DayPicker, DayButton } from 'react-day-picker';
|
|
18
|
+
import { DayPicker, DayButton, DateRange as DateRange$1 } from 'react-day-picker';
|
|
19
19
|
import * as react_hook_form from 'react-hook-form';
|
|
20
20
|
import { FieldValues, FieldPath, UseFormReturn, ControllerProps } from 'react-hook-form';
|
|
21
21
|
import { Slot } from '@radix-ui/react-slot';
|
|
@@ -445,7 +445,7 @@ type BadgeLegacyVariant = NonNullable<BadgeProps["variant"]>;
|
|
|
445
445
|
|
|
446
446
|
declare const badgeVariants: (props?: ({
|
|
447
447
|
type?: "pill-color" | "pill-outline" | "badge-color" | "badge-outline" | "badge-modern" | null | undefined;
|
|
448
|
-
color?: "destructive" | "primary" | "success" | "warning" | "muted" | "blue-gray" | "blue-light" | "blue" | "indigo" | "purple" | "pink" | "orange" | null | undefined;
|
|
448
|
+
color?: "destructive" | "primary" | "success" | "warning" | "info" | "tip" | "muted" | "blue-gray" | "blue-light" | "blue" | "indigo" | "purple" | "pink" | "orange" | null | undefined;
|
|
449
449
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
450
450
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
451
451
|
declare function Badge({ className, type, color, size, dot, icon, leadingIcon, trailingIcon, country, avatar, iconOnly, onDismiss, dismissLabel, interactive, tooltip, variant, asChild, children, onClick, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
@@ -662,6 +662,7 @@ declare const dividerWrapperVariants: (props?: ({
|
|
|
662
662
|
orientation?: "vertical" | "horizontal" | null | undefined;
|
|
663
663
|
labelPosition?: "center" | "left" | "right" | null | undefined;
|
|
664
664
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
665
|
+
|
|
665
666
|
/**
|
|
666
667
|
* Divider - A visual separator with optional content
|
|
667
668
|
*
|
|
@@ -750,6 +751,10 @@ type ButtonGroupItemIconMode = "dot" | "leading" | "none" | "only";
|
|
|
750
751
|
* State for ButtonGroupItem
|
|
751
752
|
*/
|
|
752
753
|
type ButtonGroupItemState = "default" | "disabled" | "focused" | "hover";
|
|
754
|
+
/**
|
|
755
|
+
* Size for ButtonGroupItem (h=32/36/40px per DES-1250 item 3)
|
|
756
|
+
*/
|
|
757
|
+
type ButtonGroupItemSize = "lg" | "md" | "sm";
|
|
753
758
|
/**
|
|
754
759
|
* ButtonGroupItem component props - individual segment in a segmented button group
|
|
755
760
|
*/
|
|
@@ -788,6 +793,11 @@ interface ButtonGroupItemProps extends Omit<ComponentProps<"button">, "children"
|
|
|
788
793
|
* @internal - set automatically by ButtonGroup
|
|
789
794
|
*/
|
|
790
795
|
isLast?: boolean;
|
|
796
|
+
/**
|
|
797
|
+
* Item size (h=32/36/40px per DES-1250 item 3)
|
|
798
|
+
* @default "md"
|
|
799
|
+
*/
|
|
800
|
+
size?: ButtonGroupItemSize;
|
|
791
801
|
}
|
|
792
802
|
/**
|
|
793
803
|
* Available button group orientations
|
|
@@ -809,10 +819,11 @@ declare const ButtonGroupContext: React$1.Context<ButtonGroupContextValue | null
|
|
|
809
819
|
*/
|
|
810
820
|
declare function useButtonGroup(): ButtonGroupContextValue | null;
|
|
811
821
|
declare const buttonGroupVariants: (props?: ({
|
|
812
|
-
variant?: "default" | "segmented" | null | undefined;
|
|
822
|
+
variant?: "default" | "primary" | "segmented" | null | undefined;
|
|
813
823
|
orientation?: "vertical" | "horizontal" | null | undefined;
|
|
814
824
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
815
825
|
declare const buttonGroupItemVariants: (props?: ({
|
|
826
|
+
size?: "sm" | "lg" | "md" | null | undefined;
|
|
816
827
|
iconMode?: "none" | "dot" | "leading" | "only" | null | undefined;
|
|
817
828
|
current?: boolean | null | undefined;
|
|
818
829
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -823,7 +834,7 @@ declare function ButtonGroupSeparator({ className, orientation, ...props }: Butt
|
|
|
823
834
|
* ButtonGroupItem - Individual segment in a segmented button group
|
|
824
835
|
* Use within ButtonGroup variant="segmented"
|
|
825
836
|
*/
|
|
826
|
-
declare function ButtonGroupItem({ className, current, iconMode, icon, dot, children, disabled, ...props }: ButtonGroupItemProps): react_jsx_runtime.JSX.Element;
|
|
837
|
+
declare function ButtonGroupItem({ className, current, iconMode, icon, dot, children, disabled, size, ...props }: ButtonGroupItemProps): react_jsx_runtime.JSX.Element;
|
|
827
838
|
|
|
828
839
|
/**
|
|
829
840
|
* ConfirmButton component props
|
|
@@ -932,6 +943,99 @@ type ConfirmButtonSize = NonNullable<VariantProps<typeof buttonVariants>["size"]
|
|
|
932
943
|
*/
|
|
933
944
|
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;
|
|
934
945
|
|
|
946
|
+
declare const featureItemVariants: (props?: ({
|
|
947
|
+
tone?: "warning" | "info" | "subtle" | "brand" | null | undefined;
|
|
948
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
949
|
+
declare const featureItemIconVariants: (props?: ({
|
|
950
|
+
tone?: "warning" | "info" | "subtle" | "brand" | null | undefined;
|
|
951
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
952
|
+
|
|
953
|
+
interface FeatureItemProps extends Omit<ComponentProps<"div">, "title">, VariantProps<typeof featureItemVariants> {
|
|
954
|
+
/**
|
|
955
|
+
* Optional CTA action. Renders below the description as an inline link.
|
|
956
|
+
*/
|
|
957
|
+
action?: {
|
|
958
|
+
href?: string;
|
|
959
|
+
label: ReactNode;
|
|
960
|
+
onClick?: () => void;
|
|
961
|
+
};
|
|
962
|
+
/**
|
|
963
|
+
* Feature description (13px / muted).
|
|
964
|
+
*/
|
|
965
|
+
description?: ReactNode;
|
|
966
|
+
/**
|
|
967
|
+
* Icon node (typically a Lucide icon component).
|
|
968
|
+
*/
|
|
969
|
+
icon: ReactNode;
|
|
970
|
+
/**
|
|
971
|
+
* Feature title — short noun phrase (14px / semibold).
|
|
972
|
+
*/
|
|
973
|
+
title: ReactNode;
|
|
974
|
+
}
|
|
975
|
+
type FeatureItemTone = NonNullable<VariantProps<typeof featureItemVariants>["tone"]>;
|
|
976
|
+
|
|
977
|
+
declare function FeatureItem({ className, tone, icon, title, description, action, ...props }: FeatureItemProps): react_jsx_runtime.JSX.Element;
|
|
978
|
+
|
|
979
|
+
declare const featuredIconVariants: (props?: ({
|
|
980
|
+
size?: "xs" | "sm" | "lg" | "xl" | "2xl" | "md" | null | undefined;
|
|
981
|
+
shape?: "circle" | "default" | null | undefined;
|
|
982
|
+
tone?: "default" | "destructive" | "success" | "warning" | "info" | "brand" | null | undefined;
|
|
983
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
984
|
+
|
|
985
|
+
interface FeaturedIconProps extends Omit<ComponentProps<"span">, "color">, VariantProps<typeof featuredIconVariants> {
|
|
986
|
+
/**
|
|
987
|
+
* Icon content (typically a Lucide icon). Sized via CSS — pass the icon component without explicit size.
|
|
988
|
+
*/
|
|
989
|
+
children: ReactNode;
|
|
990
|
+
}
|
|
991
|
+
type FeaturedIconSize = NonNullable<VariantProps<typeof featuredIconVariants>["size"]>;
|
|
992
|
+
type FeaturedIconShape = NonNullable<VariantProps<typeof featuredIconVariants>["shape"]>;
|
|
993
|
+
type FeaturedIconTone = NonNullable<VariantProps<typeof featuredIconVariants>["tone"]>;
|
|
994
|
+
|
|
995
|
+
declare function FeaturedIcon({ className, size, shape, tone, children, ...props }: FeaturedIconProps): react_jsx_runtime.JSX.Element;
|
|
996
|
+
|
|
997
|
+
declare const folderStackVariants: (props?: ({
|
|
998
|
+
size?: "default" | "xs" | "sm" | "lg" | "xl" | null | undefined;
|
|
999
|
+
interactive?: boolean | null | undefined;
|
|
1000
|
+
active?: boolean | null | undefined;
|
|
1001
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1002
|
+
|
|
1003
|
+
interface FolderStackEventPayload {
|
|
1004
|
+
timestamp: number;
|
|
1005
|
+
tints: string[];
|
|
1006
|
+
}
|
|
1007
|
+
interface FolderStackProps extends Omit<React$1.ComponentProps<"div">, "onClick">, VariantProps<typeof folderStackVariants> {
|
|
1008
|
+
/** Active ring (consumer is responsible — typically when this stack is the navigation target). */
|
|
1009
|
+
active?: boolean;
|
|
1010
|
+
/** Required when interactive (a11y). */
|
|
1011
|
+
"aria-label"?: string;
|
|
1012
|
+
/** When true, root becomes role="button" + tabbable + emits onClick payload. */
|
|
1013
|
+
interactive?: boolean;
|
|
1014
|
+
/** Click handler — only called when interactive=true. */
|
|
1015
|
+
onClick?: (event: React$1.MouseEvent<HTMLDivElement>, payload: FolderStackEventPayload) => void;
|
|
1016
|
+
/** Up to 4 CSS color strings representing the first 4 files of the folder. Excess ignored; missing slots get neutral fill. */
|
|
1017
|
+
tints: string[];
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
/**
|
|
1021
|
+
* FolderStack — 2×2 tile preview of folder contents.
|
|
1022
|
+
*
|
|
1023
|
+
* Renders 4 absolute-positioned tiles tinted with the colors passed in `tints`.
|
|
1024
|
+
* Excess tints are ignored; missing slots get a neutral empty fill. Used as
|
|
1025
|
+
* leading slot in file-tree rows, inside FolderCards, and as the visual for
|
|
1026
|
+
* ShortcutCard/Item nav targets.
|
|
1027
|
+
*
|
|
1028
|
+
* @example
|
|
1029
|
+
* <FolderStack tints={["#f97316", "#19e699", "#a78bfa", "#3b82f6"]} aria-label="Folder with 12 files" />
|
|
1030
|
+
*
|
|
1031
|
+
* @example
|
|
1032
|
+
* <FolderStack tints={collectTints(folder)} size="default" interactive onClick={navigate} aria-label={folder.name} />
|
|
1033
|
+
*/
|
|
1034
|
+
declare function FolderStack({ tints, size, interactive, active, className, "aria-label": ariaLabel, onClick, ...props }: FolderStackProps): react_jsx_runtime.JSX.Element;
|
|
1035
|
+
declare namespace FolderStack {
|
|
1036
|
+
var displayName: string;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
935
1039
|
/**
|
|
936
1040
|
* Semantic heading level (h1-h6)
|
|
937
1041
|
*/
|
|
@@ -1243,9 +1347,14 @@ interface LabelProps extends ComponentProps<typeof LabelPrimitive.Root> {
|
|
|
1243
1347
|
* @default false
|
|
1244
1348
|
*/
|
|
1245
1349
|
required?: boolean;
|
|
1350
|
+
/**
|
|
1351
|
+
* Size of the label. Maps to Figma canonical `Label/sm·md·lg` typography.
|
|
1352
|
+
* @default "md"
|
|
1353
|
+
*/
|
|
1354
|
+
size?: "lg" | "md" | "sm";
|
|
1246
1355
|
}
|
|
1247
1356
|
|
|
1248
|
-
declare function Label({ className, required, optional, optionalText, children, ...props }: LabelProps): react_jsx_runtime.JSX.Element;
|
|
1357
|
+
declare function Label({ className, size, required, optional, optionalText, children, ...props }: LabelProps): react_jsx_runtime.JSX.Element;
|
|
1249
1358
|
|
|
1250
1359
|
/**
|
|
1251
1360
|
* Event payload passed to Link callbacks
|
|
@@ -2118,6 +2227,11 @@ interface SplitButtonProps extends Omit<React__default.ComponentProps<"div">, "c
|
|
|
2118
2227
|
* Data identifier for event payloads
|
|
2119
2228
|
*/
|
|
2120
2229
|
"data-id"?: string;
|
|
2230
|
+
/**
|
|
2231
|
+
* Default open state for uncontrolled usage (DES-1306 item 7)
|
|
2232
|
+
* @default false
|
|
2233
|
+
*/
|
|
2234
|
+
defaultOpen?: boolean;
|
|
2121
2235
|
/**
|
|
2122
2236
|
* Disable both buttons
|
|
2123
2237
|
* @default false
|
|
@@ -2144,6 +2258,14 @@ interface SplitButtonProps extends Omit<React__default.ComponentProps<"div">, "c
|
|
|
2144
2258
|
* Primary button click handler
|
|
2145
2259
|
*/
|
|
2146
2260
|
onClick?: (event: React__default.MouseEvent<HTMLButtonElement>, payload: SplitButtonEventPayload) => void;
|
|
2261
|
+
/**
|
|
2262
|
+
* Callback when dropdown open state changes (DES-1306 item 7)
|
|
2263
|
+
*/
|
|
2264
|
+
onOpenChange?: (open: boolean) => void;
|
|
2265
|
+
/**
|
|
2266
|
+
* Controlled open state for the dropdown menu (DES-1306 item 7)
|
|
2267
|
+
*/
|
|
2268
|
+
open?: boolean;
|
|
2147
2269
|
/**
|
|
2148
2270
|
* Accessible label for the dropdown trigger
|
|
2149
2271
|
* @default "Open menu"
|
|
@@ -2159,22 +2281,26 @@ type SplitButtonVariant = NonNullable<VariantProps<typeof splitButtonVariants>["
|
|
|
2159
2281
|
*/
|
|
2160
2282
|
type SplitButtonSize = NonNullable<VariantProps<typeof splitButtonVariants>["size"]>;
|
|
2161
2283
|
|
|
2284
|
+
/**
|
|
2285
|
+
* Primary action button variants (left half of SplitButton).
|
|
2286
|
+
*/
|
|
2162
2287
|
declare const splitButtonVariants: (props?: ({
|
|
2163
|
-
variant?: "default" | "destructive" | "secondary" | "outline" | "ghost" | null | undefined;
|
|
2288
|
+
variant?: "default" | "destructive" | "primary" | "secondary" | "outline" | "ghost" | null | undefined;
|
|
2164
2289
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
2165
2290
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2166
|
-
|
|
2291
|
+
|
|
2292
|
+
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;
|
|
2167
2293
|
|
|
2168
2294
|
/**
|
|
2169
2295
|
* StatusIndicator component props
|
|
2170
2296
|
*/
|
|
2171
2297
|
interface StatusIndicatorProps extends Omit<ComponentProps<"span">, "children">, VariantProps<typeof statusIndicatorVariants> {
|
|
2172
2298
|
/**
|
|
2173
|
-
* Optional label text displayed next to indicator
|
|
2299
|
+
* Optional label text displayed next to indicator. Ignored when shape is `bar-vertical` or `bar-horizontal` (warns in dev).
|
|
2174
2300
|
*/
|
|
2175
2301
|
label?: string;
|
|
2176
2302
|
/**
|
|
2177
|
-
* Label position relative to the indicator dot
|
|
2303
|
+
* Label position relative to the indicator dot. Only applies when shape is `dot`.
|
|
2178
2304
|
* @default "right"
|
|
2179
2305
|
*/
|
|
2180
2306
|
labelPosition?: "left" | "right";
|
|
@@ -2194,10 +2320,11 @@ type StatusIndicatorVariant = NonNullable<VariantProps<typeof statusIndicatorVar
|
|
|
2194
2320
|
type StatusIndicatorSize = NonNullable<VariantProps<typeof statusIndicatorVariants>["size"]>;
|
|
2195
2321
|
|
|
2196
2322
|
declare const statusIndicatorVariants: (props?: ({
|
|
2197
|
-
variant?: "success" | "warning" | "
|
|
2198
|
-
|
|
2323
|
+
variant?: "destructive" | "success" | "warning" | "info" | "error" | "neutral" | null | undefined;
|
|
2324
|
+
shape?: "dot" | "bar-vertical" | "bar-horizontal" | null | undefined;
|
|
2325
|
+
size?: "default" | "xs" | "sm" | "lg" | "xl" | "2xl" | null | undefined;
|
|
2199
2326
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2200
|
-
declare function StatusIndicator({ className, variant, size, pulse, label, labelPosition, "aria-label": ariaLabel, ...props }: StatusIndicatorProps): react_jsx_runtime.JSX.Element;
|
|
2327
|
+
declare function StatusIndicator({ className, variant, shape, size, pulse, label, labelPosition, "aria-label": ariaLabel, ...props }: StatusIndicatorProps): react_jsx_runtime.JSX.Element;
|
|
2201
2328
|
|
|
2202
2329
|
/**
|
|
2203
2330
|
* Tag style variants using CVA
|
|
@@ -2391,7 +2518,7 @@ declare const textVariants: (props?: ({
|
|
|
2391
2518
|
size?: "base" | "xs" | "sm" | "lg" | "xl" | "2xl" | "4xl" | "3xl" | null | undefined;
|
|
2392
2519
|
weight?: "bold" | "normal" | "medium" | "semibold" | null | undefined;
|
|
2393
2520
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2394
|
-
type TextElement = "div" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "label" | "p" | "span";
|
|
2521
|
+
type TextElement = "code" | "div" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "label" | "p" | "span";
|
|
2395
2522
|
interface TextProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<typeof textVariants> {
|
|
2396
2523
|
as?: TextElement;
|
|
2397
2524
|
asChild?: boolean;
|
|
@@ -2399,7 +2526,7 @@ interface TextProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<ty
|
|
|
2399
2526
|
htmlFor?: string;
|
|
2400
2527
|
truncate?: boolean;
|
|
2401
2528
|
}
|
|
2402
|
-
declare function Text({ className, variant, size, weight, as
|
|
2529
|
+
declare function Text({ className, variant, size, weight, as, asChild, truncate, children, ...props }: TextProps): react_jsx_runtime.JSX.Element;
|
|
2403
2530
|
|
|
2404
2531
|
/**
|
|
2405
2532
|
* Variant type derived from textVariants
|
|
@@ -2434,19 +2561,29 @@ type ThumbnailAspectRatio = "square" | "video" | "wide";
|
|
|
2434
2561
|
* Available border radius variants
|
|
2435
2562
|
*/
|
|
2436
2563
|
type ThumbnailRounded = "default" | "full" | "lg" | "none" | "sm";
|
|
2564
|
+
/**
|
|
2565
|
+
* Render mode for the thumbnail
|
|
2566
|
+
* - `image` (default): loads `src` as an image (legacy behavior)
|
|
2567
|
+
* - `tint`: renders a tinted tile with `tint` color, no network request — useful for representing asset types without real previews
|
|
2568
|
+
*/
|
|
2569
|
+
type ThumbnailMode = "image" | "tint";
|
|
2437
2570
|
/**
|
|
2438
2571
|
* Thumbnail component props
|
|
2439
2572
|
*/
|
|
2440
2573
|
interface ThumbnailProps extends Omit<ComponentProps<"div">, "placeholder">, VariantProps<typeof thumbnailVariants> {
|
|
2441
2574
|
/**
|
|
2442
|
-
* Alternative text for accessibility (required)
|
|
2575
|
+
* Alternative text for accessibility (required when mode="image"; optional but recommended when mode="tint")
|
|
2443
2576
|
*/
|
|
2444
|
-
alt
|
|
2577
|
+
alt?: string;
|
|
2445
2578
|
/**
|
|
2446
2579
|
* Aspect ratio of the thumbnail
|
|
2447
2580
|
* @default "square"
|
|
2448
2581
|
*/
|
|
2449
2582
|
aspectRatio?: ThumbnailAspectRatio;
|
|
2583
|
+
/**
|
|
2584
|
+
* Children to render as overlays inside the thumbnail (Thumbnail.Tag, Thumbnail.PlayOverlay, etc).
|
|
2585
|
+
*/
|
|
2586
|
+
children?: ReactNode;
|
|
2450
2587
|
/**
|
|
2451
2588
|
* Whether the thumbnail is disabled
|
|
2452
2589
|
* @default false
|
|
@@ -2456,6 +2593,11 @@ interface ThumbnailProps extends Omit<ComponentProps<"div">, "placeholder">, Var
|
|
|
2456
2593
|
* Content to display when image fails to load
|
|
2457
2594
|
*/
|
|
2458
2595
|
fallback?: ReactNode;
|
|
2596
|
+
/**
|
|
2597
|
+
* Render mode. `image` loads `src`; `tint` paints a colored tile with no network request.
|
|
2598
|
+
* @default "image"
|
|
2599
|
+
*/
|
|
2600
|
+
mode?: ThumbnailMode;
|
|
2459
2601
|
/**
|
|
2460
2602
|
* Click handler for interactive thumbnails
|
|
2461
2603
|
*/
|
|
@@ -2480,9 +2622,13 @@ interface ThumbnailProps extends Omit<ComponentProps<"div">, "placeholder">, Var
|
|
|
2480
2622
|
*/
|
|
2481
2623
|
size?: ThumbnailSize;
|
|
2482
2624
|
/**
|
|
2483
|
-
* Image source URL
|
|
2625
|
+
* Image source URL. Required when `mode="image"`. Ignored when `mode="tint"`.
|
|
2484
2626
|
*/
|
|
2485
|
-
src
|
|
2627
|
+
src?: string;
|
|
2628
|
+
/**
|
|
2629
|
+
* CSS color used to fill the tile when `mode="tint"`. Required in tint mode.
|
|
2630
|
+
*/
|
|
2631
|
+
tint?: string;
|
|
2486
2632
|
}
|
|
2487
2633
|
/**
|
|
2488
2634
|
* Size type derived from thumbnailVariants
|
|
@@ -2499,34 +2645,76 @@ declare const thumbnailVariants: (props?: ({
|
|
|
2499
2645
|
rounded?: "none" | "default" | "sm" | "lg" | "full" | null | undefined;
|
|
2500
2646
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2501
2647
|
/**
|
|
2502
|
-
* Thumbnail - A small
|
|
2648
|
+
* Thumbnail - A small preview component with `image` (loads src) or `tint` (colored tile) modes.
|
|
2503
2649
|
*
|
|
2504
2650
|
* Features:
|
|
2651
|
+
* - Two modes: `image` (legacy — loads `src`) and `tint` (renders a colored tile)
|
|
2505
2652
|
* - Multiple size variants (xs, sm, default, lg, xl)
|
|
2506
2653
|
* - Aspect ratio control (square, video, wide)
|
|
2507
2654
|
* - Fallback content on error
|
|
2508
2655
|
* - Placeholder during loading
|
|
2509
2656
|
* - Click/select behavior for galleries
|
|
2510
2657
|
* - Selected and disabled states
|
|
2658
|
+
* - Sub-components for overlays: Thumbnail.Tag, Thumbnail.PlayOverlay, Thumbnail.Badge, Thumbnail.Checkbox, Thumbnail.Pin
|
|
2511
2659
|
*
|
|
2512
2660
|
* @example
|
|
2513
|
-
* //
|
|
2661
|
+
* // Image mode (legacy, backward compatible)
|
|
2514
2662
|
* <Thumbnail src="/photo.jpg" alt="Photo preview" />
|
|
2515
2663
|
*
|
|
2516
2664
|
* @example
|
|
2517
|
-
* //
|
|
2518
|
-
* <Thumbnail
|
|
2665
|
+
* // Tint mode for asset-type preview
|
|
2666
|
+
* <Thumbnail mode="tint" tint="rgb(249 115 22 / 0.16)">
|
|
2667
|
+
* <Thumbnail.Tag>JPG</Thumbnail.Tag>
|
|
2668
|
+
* <Thumbnail.PlayOverlay duration="0:15" />
|
|
2669
|
+
* </Thumbnail>
|
|
2519
2670
|
*
|
|
2520
2671
|
* @example
|
|
2521
|
-
* //
|
|
2522
|
-
* <Thumbnail
|
|
2523
|
-
*
|
|
2524
|
-
*
|
|
2525
|
-
*
|
|
2526
|
-
*
|
|
2527
|
-
*
|
|
2528
|
-
*/
|
|
2529
|
-
declare function Thumbnail({ src, alt, size, aspectRatio, rounded, fallback, placeholder, onClick, selected, disabled, className, ...props }: ThumbnailProps): react_jsx_runtime.JSX.Element;
|
|
2672
|
+
* // Selectable + pinnable card thumb
|
|
2673
|
+
* <Thumbnail mode="image" src="..." alt="hero">
|
|
2674
|
+
* <Thumbnail.Tag>JPG</Thumbnail.Tag>
|
|
2675
|
+
* <Thumbnail.Checkbox checked={isSel} onChange={toggle} />
|
|
2676
|
+
* <Thumbnail.Pin pinned={isPinned} onToggle={togglePin} />
|
|
2677
|
+
* <Thumbnail.Badge color="success">novo</Thumbnail.Badge>
|
|
2678
|
+
* </Thumbnail>
|
|
2679
|
+
*/
|
|
2680
|
+
declare function Thumbnail({ src, alt, size, aspectRatio, rounded, mode, tint, fallback, placeholder, onClick, selected, disabled, className, children, ...props }: ThumbnailProps): react_jsx_runtime.JSX.Element;
|
|
2681
|
+
declare namespace Thumbnail {
|
|
2682
|
+
var Tag: typeof ThumbnailTag;
|
|
2683
|
+
var PlayOverlay: typeof ThumbnailPlayOverlay;
|
|
2684
|
+
var Badge: typeof ThumbnailBadge;
|
|
2685
|
+
var Checkbox: typeof ThumbnailCheckbox;
|
|
2686
|
+
var Pin: typeof ThumbnailPin;
|
|
2687
|
+
}
|
|
2688
|
+
interface ThumbnailTagProps extends React$1.ComponentProps<"span"> {
|
|
2689
|
+
position?: "bottom-left" | "bottom-right";
|
|
2690
|
+
}
|
|
2691
|
+
declare function ThumbnailTag({ position, className, ...props }: ThumbnailTagProps): react_jsx_runtime.JSX.Element;
|
|
2692
|
+
interface ThumbnailPlayOverlayProps {
|
|
2693
|
+
className?: string;
|
|
2694
|
+
duration?: string;
|
|
2695
|
+
size?: "default" | "lg" | "sm";
|
|
2696
|
+
}
|
|
2697
|
+
declare function ThumbnailPlayOverlay({ duration, size, className, }: ThumbnailPlayOverlayProps): react_jsx_runtime.JSX.Element;
|
|
2698
|
+
interface ThumbnailBadgeProps extends React$1.ComponentProps<typeof Badge> {
|
|
2699
|
+
position?: "top-left" | "top-right";
|
|
2700
|
+
}
|
|
2701
|
+
declare function ThumbnailBadge({ position, className, ...props }: ThumbnailBadgeProps): react_jsx_runtime.JSX.Element;
|
|
2702
|
+
interface ThumbnailCheckboxProps {
|
|
2703
|
+
"aria-label"?: string;
|
|
2704
|
+
checked: boolean;
|
|
2705
|
+
className?: string;
|
|
2706
|
+
onChange: (checked: boolean, event: React$1.KeyboardEvent<HTMLButtonElement> | React$1.MouseEvent<HTMLButtonElement>) => void;
|
|
2707
|
+
position?: "top-left" | "top-right";
|
|
2708
|
+
}
|
|
2709
|
+
declare function ThumbnailCheckbox({ checked, onChange, position, className, "aria-label": ariaLabel, }: ThumbnailCheckboxProps): react_jsx_runtime.JSX.Element;
|
|
2710
|
+
interface ThumbnailPinProps {
|
|
2711
|
+
"aria-label"?: string;
|
|
2712
|
+
className?: string;
|
|
2713
|
+
onToggle: (pinned: boolean, event: React$1.KeyboardEvent<HTMLButtonElement> | React$1.MouseEvent<HTMLButtonElement>) => void;
|
|
2714
|
+
pinned: boolean;
|
|
2715
|
+
position?: "top-left" | "top-right";
|
|
2716
|
+
}
|
|
2717
|
+
declare function ThumbnailPin({ pinned, onToggle, position, className, "aria-label": ariaLabel, }: ThumbnailPinProps): react_jsx_runtime.JSX.Element;
|
|
2530
2718
|
|
|
2531
2719
|
/**
|
|
2532
2720
|
* Toggle component props
|
|
@@ -3253,6 +3441,17 @@ interface ComboboxProps extends Omit<ComponentProps<"button">, "onChange" | "val
|
|
|
3253
3441
|
* @default "No results found."
|
|
3254
3442
|
*/
|
|
3255
3443
|
emptyMessage?: string;
|
|
3444
|
+
/**
|
|
3445
|
+
* Keyboard shortcut hint shown inside the search input header
|
|
3446
|
+
* (Figma `Caption/C2` kbd indicator per DES-1258 item 3).
|
|
3447
|
+
*
|
|
3448
|
+
* Pass a string ("⌘K", "Ctrl+K") or a ReactNode to render a custom hint.
|
|
3449
|
+
* Omit to hide the hint.
|
|
3450
|
+
*
|
|
3451
|
+
* @example
|
|
3452
|
+
* <Combobox kbdHint="⌘K" ... />
|
|
3453
|
+
*/
|
|
3454
|
+
kbdHint?: React.ReactNode;
|
|
3256
3455
|
/**
|
|
3257
3456
|
* Callback when value changes
|
|
3258
3457
|
*/
|
|
@@ -3318,7 +3517,7 @@ interface ComboboxProps extends Omit<ComponentProps<"button">, "onChange" | "val
|
|
|
3318
3517
|
* />
|
|
3319
3518
|
* ```
|
|
3320
3519
|
*/
|
|
3321
|
-
declare function Combobox({ options, value: controlledValue, defaultValue, placeholder, searchPlaceholder, emptyMessage, disabled, open: controlledOpen, defaultOpen, onOpenChange, onChange, onSearch, size, variant, className, ...props }: ComboboxProps): react_jsx_runtime.JSX.Element;
|
|
3520
|
+
declare function Combobox({ options, value: controlledValue, defaultValue, placeholder, searchPlaceholder, emptyMessage, disabled, open: controlledOpen, defaultOpen, onOpenChange, onChange, onSearch, size, variant, kbdHint, className, ...props }: ComboboxProps): react_jsx_runtime.JSX.Element;
|
|
3322
3521
|
|
|
3323
3522
|
/**
|
|
3324
3523
|
* DatePicker size variants
|
|
@@ -4101,9 +4300,9 @@ declare function Field({ className, orientation, ...props }: FieldProps): react_
|
|
|
4101
4300
|
declare function FieldContent({ className, ...props }: FieldContentProps): react_jsx_runtime.JSX.Element;
|
|
4102
4301
|
declare function FieldLabel({ className, ...props }: FieldLabelProps): react_jsx_runtime.JSX.Element;
|
|
4103
4302
|
declare function FieldTitle({ className, ...props }: FieldTitleProps): react_jsx_runtime.JSX.Element;
|
|
4104
|
-
declare function FieldDescription({ className, ...props }: FieldDescriptionProps): react_jsx_runtime.JSX.Element;
|
|
4303
|
+
declare function FieldDescription({ className, id, ...props }: FieldDescriptionProps): react_jsx_runtime.JSX.Element;
|
|
4105
4304
|
declare function FieldSeparator({ children, className, ...props }: FieldSeparatorProps): react_jsx_runtime.JSX.Element;
|
|
4106
|
-
declare function FieldError({ className, children, errors, ...props }: FieldErrorProps): react_jsx_runtime.JSX.Element | null;
|
|
4305
|
+
declare function FieldError({ className, children, errors, id, ...props }: FieldErrorProps): react_jsx_runtime.JSX.Element | null;
|
|
4107
4306
|
|
|
4108
4307
|
/**
|
|
4109
4308
|
* FloatLabel variant determines label position behavior
|
|
@@ -4268,7 +4467,7 @@ interface HelpTextProps extends ComponentProps<"span"> {
|
|
|
4268
4467
|
* HelpText variant styles using CVA
|
|
4269
4468
|
*/
|
|
4270
4469
|
declare const helpTextVariants: (props?: ({
|
|
4271
|
-
variant?: "default" | "success" | "warning" | "
|
|
4470
|
+
variant?: "default" | "success" | "warning" | "info" | "muted" | "error" | null | undefined;
|
|
4272
4471
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
4273
4472
|
srOnly?: boolean | null | undefined;
|
|
4274
4473
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -4380,7 +4579,7 @@ declare const formDescriptionVariants: (props?: ({
|
|
|
4380
4579
|
* Styles validation messages with different states (error, success).
|
|
4381
4580
|
*/
|
|
4382
4581
|
declare const formMessageVariants: (props?: ({
|
|
4383
|
-
state?: "success" | "error" | null | undefined;
|
|
4582
|
+
state?: "success" | "info" | "error" | null | undefined;
|
|
4384
4583
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
4385
4584
|
type FormItemVariantProps = VariantProps<typeof formItemVariants>;
|
|
4386
4585
|
type FormLabelVariantProps = VariantProps<typeof formLabelVariants>;
|
|
@@ -4470,7 +4669,8 @@ interface UseFormFieldReturn {
|
|
|
4470
4669
|
formItemId: string;
|
|
4471
4670
|
formMessageId: string;
|
|
4472
4671
|
id: string;
|
|
4473
|
-
|
|
4672
|
+
/** Whether the field has validation errors. Always present (react-hook-form FieldState). DES-1270 item 5: was incorrectly optional. */
|
|
4673
|
+
invalid: boolean;
|
|
4474
4674
|
isDirty: boolean;
|
|
4475
4675
|
isTouched: boolean;
|
|
4476
4676
|
isValidating: boolean;
|
|
@@ -6143,22 +6343,47 @@ type SuccessMessageVariantProps = VariantProps<typeof successMessageVariants>;
|
|
|
6143
6343
|
* Switch size variants
|
|
6144
6344
|
*/
|
|
6145
6345
|
type SwitchSize = "lg" | "md" | "sm";
|
|
6346
|
+
/**
|
|
6347
|
+
* Switch composition type per Figma
|
|
6348
|
+
*/
|
|
6349
|
+
type SwitchType = "box" | "default";
|
|
6146
6350
|
/**
|
|
6147
6351
|
* Switch component props
|
|
6148
6352
|
*/
|
|
6149
|
-
interface SwitchProps extends ComponentProps<typeof SwitchPrimitive.Root> {
|
|
6353
|
+
interface SwitchProps extends Omit<ComponentProps<typeof SwitchPrimitive.Root>, "type"> {
|
|
6354
|
+
/**
|
|
6355
|
+
* Description text displayed below the label.
|
|
6356
|
+
*/
|
|
6357
|
+
descriptionText?: string;
|
|
6358
|
+
/**
|
|
6359
|
+
* Whether to render the descriptionText. Defaults to true when descriptionText is provided.
|
|
6360
|
+
*/
|
|
6361
|
+
showDescription?: boolean;
|
|
6362
|
+
/**
|
|
6363
|
+
* Whether to render the switchText label. Defaults to true when switchText is provided.
|
|
6364
|
+
*/
|
|
6365
|
+
showText?: boolean;
|
|
6150
6366
|
/**
|
|
6151
6367
|
* Visual size of the switch
|
|
6152
6368
|
* @default "md"
|
|
6153
6369
|
*/
|
|
6154
6370
|
size?: SwitchSize;
|
|
6371
|
+
/**
|
|
6372
|
+
* Label text displayed next to the switch. Renders as a `<label>` linked to the switch.
|
|
6373
|
+
*/
|
|
6374
|
+
switchText?: string;
|
|
6375
|
+
/**
|
|
6376
|
+
* Composition type per Figma. `box` wraps switch + label + description in a bordered container.
|
|
6377
|
+
* @default "default"
|
|
6378
|
+
*/
|
|
6379
|
+
type?: SwitchType;
|
|
6155
6380
|
}
|
|
6156
6381
|
/**
|
|
6157
6382
|
* Switch state for controlled usage
|
|
6158
6383
|
*/
|
|
6159
6384
|
type SwitchState = boolean;
|
|
6160
6385
|
|
|
6161
|
-
declare function Switch({ className, size, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
|
|
6386
|
+
declare function Switch({ className, size, type, switchText, descriptionText, showText, showDescription, id, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
|
|
6162
6387
|
|
|
6163
6388
|
declare const switchVariants: (props?: ({
|
|
6164
6389
|
size?: "sm" | "lg" | "md" | null | undefined;
|
|
@@ -6591,7 +6816,15 @@ type URLValidationIconVariantProps = VariantProps<typeof urlValidationIconVarian
|
|
|
6591
6816
|
* Container component for grouping related content
|
|
6592
6817
|
*/
|
|
6593
6818
|
declare const cardVariants: (props?: ({
|
|
6594
|
-
variant?: "default" | "ghost" | "elevated" | "outlined" | null | undefined;
|
|
6819
|
+
variant?: "default" | "ghost" | "elevated" | "outlined" | "selectable" | null | undefined;
|
|
6820
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6821
|
+
/**
|
|
6822
|
+
* CardMedia variant styles
|
|
6823
|
+
* Full-bleed media slot at the top of the card. Aspect ratio controls the shape.
|
|
6824
|
+
* Bleeds to the card edges (overflow:hidden on Card root + zero padding here).
|
|
6825
|
+
*/
|
|
6826
|
+
declare const cardMediaVariants: (props?: ({
|
|
6827
|
+
aspect?: "video" | "auto" | "portrait" | "square" | "wide" | null | undefined;
|
|
6595
6828
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6596
6829
|
/**
|
|
6597
6830
|
* CardHeader variant styles
|
|
@@ -6625,11 +6858,42 @@ declare const cardContentVariants: (props?: class_variance_authority_types.Class
|
|
|
6625
6858
|
declare const cardFooterVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
6626
6859
|
type CardVariantProps = VariantProps<typeof cardVariants>;
|
|
6627
6860
|
|
|
6861
|
+
/**
|
|
6862
|
+
* Payload emitted by selectable card toggle handlers
|
|
6863
|
+
*/
|
|
6864
|
+
interface CardSelectablePayload {
|
|
6865
|
+
/** Reflects the `data-id` prop on the Card */
|
|
6866
|
+
id?: string;
|
|
6867
|
+
/** Current state AFTER the toggle (so consumer doesn't have to flip it themselves) */
|
|
6868
|
+
next: boolean;
|
|
6869
|
+
/** Timestamp of the event */
|
|
6870
|
+
timestamp: number;
|
|
6871
|
+
}
|
|
6628
6872
|
/**
|
|
6629
6873
|
* Card component props
|
|
6630
6874
|
* Main container for grouping related content
|
|
6631
6875
|
*/
|
|
6632
6876
|
interface CardProps extends ComponentProps<"div">, VariantProps<typeof cardVariants> {
|
|
6877
|
+
/** When `variant="selectable"`, toggle handler for the pin overlay. */
|
|
6878
|
+
onTogglePin?: (next: boolean, payload: CardSelectablePayload, event: MouseEvent$1<HTMLButtonElement>) => void;
|
|
6879
|
+
/** When `variant="selectable"`, toggle handler for the checkbox overlay. */
|
|
6880
|
+
onToggleSelect?: (next: boolean, payload: CardSelectablePayload, event: MouseEvent$1<HTMLButtonElement>) => void;
|
|
6881
|
+
/** When `variant="selectable"`, controls pinned state. */
|
|
6882
|
+
pinned?: boolean;
|
|
6883
|
+
/** When `variant="selectable"`, optional custom labels for a11y. */
|
|
6884
|
+
selectableProps?: {
|
|
6885
|
+
checkboxLabel?: string;
|
|
6886
|
+
pinLabel?: string;
|
|
6887
|
+
};
|
|
6888
|
+
/** When `variant="selectable"`, controls selection state. */
|
|
6889
|
+
selected?: boolean;
|
|
6890
|
+
}
|
|
6891
|
+
/**
|
|
6892
|
+
* CardMedia component props
|
|
6893
|
+
* Full-bleed media slot at the top of the card.
|
|
6894
|
+
*/
|
|
6895
|
+
interface CardMediaProps extends ComponentProps<"div">, VariantProps<typeof cardMediaVariants> {
|
|
6896
|
+
children?: ReactNode;
|
|
6633
6897
|
}
|
|
6634
6898
|
/**
|
|
6635
6899
|
* CardHeader component props
|
|
@@ -6672,7 +6936,10 @@ interface CardFooterProps extends ComponentProps<"div"> {
|
|
|
6672
6936
|
*/
|
|
6673
6937
|
type CardVariant = NonNullable<VariantProps<typeof cardVariants>["variant"]>;
|
|
6674
6938
|
|
|
6675
|
-
declare function Card({ className, variant, ...props }: CardProps
|
|
6939
|
+
declare function Card({ className, variant, selected, pinned, onToggleSelect, onTogglePin, selectableProps, "data-id": dataId, children, ...props }: CardProps & {
|
|
6940
|
+
"data-id"?: string;
|
|
6941
|
+
}): react_jsx_runtime.JSX.Element;
|
|
6942
|
+
declare function CardMedia({ className, aspect, ...props }: CardMediaProps): react_jsx_runtime.JSX.Element;
|
|
6676
6943
|
declare function CardHeader({ className, ...props }: CardHeaderProps): react_jsx_runtime.JSX.Element;
|
|
6677
6944
|
declare function CardTitle({ className, ...props }: CardTitleProps): react_jsx_runtime.JSX.Element;
|
|
6678
6945
|
declare function CardDescription({ className, ...props }: CardDescriptionProps): react_jsx_runtime.JSX.Element;
|
|
@@ -6900,7 +7167,7 @@ declare function Grid({ as, cols, rows, gap, gapX, gapY, items, justify, flow, c
|
|
|
6900
7167
|
* Layout container for sidebars, inspectors, and section panels
|
|
6901
7168
|
*/
|
|
6902
7169
|
declare const panelVariants: (props?: ({
|
|
6903
|
-
variant?: "default" | "
|
|
7170
|
+
variant?: "default" | "subtle" | "inset" | "elevated" | "outlined" | null | undefined;
|
|
6904
7171
|
size?: "auto" | "xs" | "sm" | "lg" | "xl" | "md" | "full" | null | undefined;
|
|
6905
7172
|
position?: "center" | "bottom" | "left" | "right" | "top" | null | undefined;
|
|
6906
7173
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -7243,6 +7510,11 @@ interface SheetOverlayProps extends ComponentProps<typeof SheetPrimitive.Overlay
|
|
|
7243
7510
|
* Sheet content component props with variant and size support
|
|
7244
7511
|
*/
|
|
7245
7512
|
interface SheetContentProps extends ComponentProps<typeof SheetPrimitive.Content>, VariantProps<typeof sheetContentVariants> {
|
|
7513
|
+
/**
|
|
7514
|
+
* Background overlay style
|
|
7515
|
+
* @default "default"
|
|
7516
|
+
*/
|
|
7517
|
+
overlayVariant?: SheetOverlayVariant;
|
|
7246
7518
|
/**
|
|
7247
7519
|
* Whether to show the close button
|
|
7248
7520
|
* @default true
|
|
@@ -7287,7 +7559,7 @@ declare function SheetTrigger({ ...props }: SheetTriggerProps): react_jsx_runtim
|
|
|
7287
7559
|
declare function SheetClose({ ...props }: SheetCloseProps): react_jsx_runtime.JSX.Element;
|
|
7288
7560
|
declare function SheetPortal({ ...props }: SheetPortalProps): react_jsx_runtime.JSX.Element;
|
|
7289
7561
|
declare function SheetOverlay({ className, variant, ...props }: SheetOverlayProps): react_jsx_runtime.JSX.Element;
|
|
7290
|
-
declare function SheetContent({ className, children, side, size, showCloseButton, ...props }: SheetContentProps): react_jsx_runtime.JSX.Element;
|
|
7562
|
+
declare function SheetContent({ className, children, side, size, showCloseButton, overlayVariant, ...props }: SheetContentProps): react_jsx_runtime.JSX.Element;
|
|
7291
7563
|
declare function SheetHeader({ className, ...props }: SheetHeaderProps): react_jsx_runtime.JSX.Element;
|
|
7292
7564
|
declare function SheetBody({ className, ...props }: SheetBodyProps): react_jsx_runtime.JSX.Element;
|
|
7293
7565
|
declare function SheetFooter({ className, ...props }: SheetFooterProps): react_jsx_runtime.JSX.Element;
|
|
@@ -7360,6 +7632,41 @@ type StackJustify = NonNullable<VariantProps<typeof stackVariants>["justify"]>;
|
|
|
7360
7632
|
*/
|
|
7361
7633
|
declare function Stack({ as: Component, direction, spacing, align, justify, grow, className, ...props }: StackProps): react_jsx_runtime.JSX.Element;
|
|
7362
7634
|
|
|
7635
|
+
interface AccountSwitchAccount {
|
|
7636
|
+
avatarFallback?: string;
|
|
7637
|
+
avatarSrc?: string;
|
|
7638
|
+
email?: string;
|
|
7639
|
+
id: string;
|
|
7640
|
+
isCurrent?: boolean;
|
|
7641
|
+
name: string;
|
|
7642
|
+
plan?: string;
|
|
7643
|
+
}
|
|
7644
|
+
interface AccountSwitchProps extends Omit<ComponentProps<"button">, "onSelect"> {
|
|
7645
|
+
/**
|
|
7646
|
+
* Account list shown inside the dropdown.
|
|
7647
|
+
*/
|
|
7648
|
+
accounts: AccountSwitchAccount[];
|
|
7649
|
+
/**
|
|
7650
|
+
* Optional footer items (e.g., "Adicionar workspace", "Configurações", "Sair").
|
|
7651
|
+
*/
|
|
7652
|
+
footer?: ReactNode;
|
|
7653
|
+
/**
|
|
7654
|
+
* Optional header rendered above the account list (e.g., signed-in user identity).
|
|
7655
|
+
*/
|
|
7656
|
+
header?: ReactNode;
|
|
7657
|
+
/**
|
|
7658
|
+
* Called when a different account is selected.
|
|
7659
|
+
*/
|
|
7660
|
+
onSelect?: (account: AccountSwitchAccount) => void;
|
|
7661
|
+
/**
|
|
7662
|
+
* Trigger shape — pill (default, Figma node 1138:3077) or rect (variant).
|
|
7663
|
+
* @default "pill"
|
|
7664
|
+
*/
|
|
7665
|
+
triggerShape?: "pill" | "rect";
|
|
7666
|
+
}
|
|
7667
|
+
|
|
7668
|
+
declare function AccountSwitch({ className, accounts, triggerShape, header, footer, onSelect, ...props }: AccountSwitchProps): react_jsx_runtime.JSX.Element;
|
|
7669
|
+
|
|
7363
7670
|
/**
|
|
7364
7671
|
* Breadcrumb container props
|
|
7365
7672
|
*/
|
|
@@ -8099,6 +8406,137 @@ type DropdownMenuItemVariantProps = VariantProps<typeof dropdownMenuItemVariants
|
|
|
8099
8406
|
type DropdownMenuSubTriggerVariantProps = VariantProps<typeof dropdownMenuSubTriggerVariants>;
|
|
8100
8407
|
type DropdownMenuLabelVariantProps = VariantProps<typeof dropdownMenuLabelVariants>;
|
|
8101
8408
|
|
|
8409
|
+
/**
|
|
8410
|
+
* Tree node — either a folder (with children) or a file (leaf).
|
|
8411
|
+
* `meta` is a free-form extension point for consumer-specific data
|
|
8412
|
+
* (file type, status, size, dam metadata, etc).
|
|
8413
|
+
*/
|
|
8414
|
+
interface FileTreeNode {
|
|
8415
|
+
/** Mark as currently selected (uncontrolled mode). */
|
|
8416
|
+
active?: boolean;
|
|
8417
|
+
/** Children — only meaningful when kind="folder". */
|
|
8418
|
+
children?: FileTreeNode[];
|
|
8419
|
+
/** Disabled state. */
|
|
8420
|
+
disabled?: boolean;
|
|
8421
|
+
kind: "file" | "folder";
|
|
8422
|
+
/** Free-form metadata: type, status, tags, etc. Read in render-props. */
|
|
8423
|
+
meta?: Record<string, unknown>;
|
|
8424
|
+
/** Modified indicator. */
|
|
8425
|
+
modified?: boolean;
|
|
8426
|
+
name: string;
|
|
8427
|
+
/** Initial open state (uncontrolled mode). */
|
|
8428
|
+
open?: boolean;
|
|
8429
|
+
/** Stable ID — used as React key + state key. Recommended: full path. */
|
|
8430
|
+
path: string;
|
|
8431
|
+
}
|
|
8432
|
+
interface FileTreeRowContext {
|
|
8433
|
+
depth: number;
|
|
8434
|
+
isActive: boolean;
|
|
8435
|
+
isExpanded: boolean;
|
|
8436
|
+
isFocused: boolean;
|
|
8437
|
+
isFolder: boolean;
|
|
8438
|
+
select: () => void;
|
|
8439
|
+
toggle: () => void;
|
|
8440
|
+
}
|
|
8441
|
+
interface FileTreeToggleEventPayload {
|
|
8442
|
+
next: boolean;
|
|
8443
|
+
path: string;
|
|
8444
|
+
timestamp: number;
|
|
8445
|
+
}
|
|
8446
|
+
interface FileTreeSelectEventPayload {
|
|
8447
|
+
node: FileTreeNode;
|
|
8448
|
+
path: string;
|
|
8449
|
+
timestamp: number;
|
|
8450
|
+
}
|
|
8451
|
+
type FileTreeVariant = "ide" | "notion" | "outline";
|
|
8452
|
+
type FileTreeSize = "default" | "lg" | "sm";
|
|
8453
|
+
interface FileTreeProps extends Omit<React$1.ComponentProps<"div">, "onSelect" | "onToggle"> {
|
|
8454
|
+
children?: React$1.ReactNode;
|
|
8455
|
+
/** Tree data root (or array of roots — we render its children). */
|
|
8456
|
+
data: FileTreeNode;
|
|
8457
|
+
/** Initial expand map (uncontrolled). Derived from `data.open` hints if omitted. */
|
|
8458
|
+
defaultExpanded?: Record<string, boolean>;
|
|
8459
|
+
/** Initial selected path (uncontrolled). */
|
|
8460
|
+
defaultSelectedPath?: string;
|
|
8461
|
+
/** Controlled expand map (path → boolean). */
|
|
8462
|
+
expanded?: Record<string, boolean>;
|
|
8463
|
+
/** Per-node attribute injector (data-tags, draggable, etc). */
|
|
8464
|
+
getNodeProps?: (node: FileTreeNode) => React$1.HTMLAttributes<HTMLDivElement>;
|
|
8465
|
+
/** Whether keyboard tree navigation is active. */
|
|
8466
|
+
keyboardNav?: boolean;
|
|
8467
|
+
/** Search input change. */
|
|
8468
|
+
onSearchChange?: (value: string) => void;
|
|
8469
|
+
/** Select handler (any row). */
|
|
8470
|
+
onSelect?: (path: string, payload: FileTreeSelectEventPayload) => void;
|
|
8471
|
+
/** Toggle handler (folder expand/collapse). */
|
|
8472
|
+
onToggle?: (path: string, next: boolean, payload: FileTreeToggleEventPayload) => void;
|
|
8473
|
+
/** Custom leading slot (folder icon, swatch, thumbnail, FolderStack). */
|
|
8474
|
+
renderLeading?: (node: FileTreeNode, ctx: FileTreeRowContext) => React$1.ReactNode;
|
|
8475
|
+
/** Custom row renderer — full control over row content. */
|
|
8476
|
+
renderRow?: (node: FileTreeNode, ctx: FileTreeRowContext) => React$1.ReactNode;
|
|
8477
|
+
/** Custom trailing slot (count, status, modified marker). */
|
|
8478
|
+
renderTrailing?: (node: FileTreeNode, ctx: FileTreeRowContext) => React$1.ReactNode;
|
|
8479
|
+
/** Search placeholder. */
|
|
8480
|
+
searchPlaceholder?: string;
|
|
8481
|
+
/** Controlled search input value. */
|
|
8482
|
+
searchValue?: string;
|
|
8483
|
+
/** Controlled selected path. */
|
|
8484
|
+
selectedPath?: string;
|
|
8485
|
+
size?: FileTreeSize;
|
|
8486
|
+
variant?: FileTreeVariant;
|
|
8487
|
+
}
|
|
8488
|
+
|
|
8489
|
+
declare const fileTreeShellVariants: (props?: ({
|
|
8490
|
+
variant?: "outline" | "ide" | "notion" | null | undefined;
|
|
8491
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
8492
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
8493
|
+
declare const fileTreeRowVariants: (props?: ({
|
|
8494
|
+
variant?: "outline" | "ide" | "notion" | null | undefined;
|
|
8495
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
8496
|
+
|
|
8497
|
+
declare function FileTreeHeader({ className, children, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element | null;
|
|
8498
|
+
declare function FileTreeProjectBadge({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
8499
|
+
declare function FileTreeProjectMeta({ name, sub }: {
|
|
8500
|
+
name: string;
|
|
8501
|
+
sub?: string;
|
|
8502
|
+
}): react_jsx_runtime.JSX.Element;
|
|
8503
|
+
declare function FileTreeToolbar({ className, children, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element | null;
|
|
8504
|
+
declare function FileTreeSearch({ shortcut, placeholder, value, onChange, }: {
|
|
8505
|
+
onChange?: (value: string) => void;
|
|
8506
|
+
placeholder?: string;
|
|
8507
|
+
shortcut?: string;
|
|
8508
|
+
value?: string;
|
|
8509
|
+
}): react_jsx_runtime.JSX.Element;
|
|
8510
|
+
declare function FileTreeAction({ icon, className, children, ...props }: React$1.ComponentProps<"button"> & {
|
|
8511
|
+
icon?: React$1.ReactNode;
|
|
8512
|
+
}): react_jsx_runtime.JSX.Element;
|
|
8513
|
+
declare function FileTreeBody({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
8514
|
+
declare function FileTreeFooter({ branch, indicator, children, }: {
|
|
8515
|
+
branch?: string;
|
|
8516
|
+
children?: React$1.ReactNode;
|
|
8517
|
+
indicator?: "dot" | "none";
|
|
8518
|
+
}): react_jsx_runtime.JSX.Element | null;
|
|
8519
|
+
declare function FileTree({ data, variant, size, expanded: expandedProp, defaultExpanded, selectedPath: selectedPathProp, defaultSelectedPath, onToggle, onSelect, renderRow, renderLeading, renderTrailing, getNodeProps, searchValue: searchValueProp, onSearchChange, searchPlaceholder, keyboardNav, className, children, ...props }: FileTreeProps): react_jsx_runtime.JSX.Element;
|
|
8520
|
+
declare namespace FileTree {
|
|
8521
|
+
var Header: typeof FileTreeHeader;
|
|
8522
|
+
var ProjectBadge: typeof FileTreeProjectBadge;
|
|
8523
|
+
var ProjectMeta: typeof FileTreeProjectMeta;
|
|
8524
|
+
var Toolbar: typeof FileTreeToolbar;
|
|
8525
|
+
var Search: typeof FileTreeSearch;
|
|
8526
|
+
var Action: typeof FileTreeAction;
|
|
8527
|
+
var Body: typeof FileTreeBody;
|
|
8528
|
+
var Footer: typeof FileTreeFooter;
|
|
8529
|
+
}
|
|
8530
|
+
|
|
8531
|
+
/**
|
|
8532
|
+
* Header layout per Figma — controla a posição/justificação dos slots Brand/Nav/Actions.
|
|
8533
|
+
*
|
|
8534
|
+
* - `default`: Brand left, Nav middle, Actions right
|
|
8535
|
+
* - `logo-centered`: Brand center (Nav/Actions side, se providos)
|
|
8536
|
+
* - `links-left`: Nav left, Brand right, Actions inline (espelho do default)
|
|
8537
|
+
* - `centered`: Brand + Nav center, Actions right
|
|
8538
|
+
*/
|
|
8539
|
+
type HeaderLayout = "centered" | "default" | "links-left" | "logo-centered";
|
|
8102
8540
|
/**
|
|
8103
8541
|
* Header root props
|
|
8104
8542
|
*/
|
|
@@ -8108,6 +8546,8 @@ interface HeaderProps extends ComponentProps<"header"> {
|
|
|
8108
8546
|
contained?: boolean;
|
|
8109
8547
|
/** Class for inner container */
|
|
8110
8548
|
containerClassName?: string;
|
|
8549
|
+
/** Layout per Figma — posiciona Brand/Nav/Actions */
|
|
8550
|
+
layout?: HeaderLayout;
|
|
8111
8551
|
/** Height size */
|
|
8112
8552
|
size?: "lg" | "md" | "sm";
|
|
8113
8553
|
/** Fixed at top when scrolling */
|
|
@@ -8154,7 +8594,7 @@ interface HeaderActionsProps extends ComponentProps<"div"> {
|
|
|
8154
8594
|
* </HeaderActions>
|
|
8155
8595
|
* </Header>
|
|
8156
8596
|
*/
|
|
8157
|
-
declare function Header({ className, variant, size, sticky, contained, containerClassName, children, ...props }: HeaderProps): react_jsx_runtime.JSX.Element;
|
|
8597
|
+
declare function Header({ className, variant, size, sticky, contained, layout, containerClassName, children, ...props }: HeaderProps): react_jsx_runtime.JSX.Element;
|
|
8158
8598
|
/**
|
|
8159
8599
|
* HeaderBrand - Logo/brand area of the header.
|
|
8160
8600
|
*
|
|
@@ -8183,6 +8623,7 @@ declare const headerVariants: (props?: ({
|
|
|
8183
8623
|
*/
|
|
8184
8624
|
declare const headerContainerVariants: (props?: ({
|
|
8185
8625
|
contained?: boolean | null | undefined;
|
|
8626
|
+
layout?: "default" | "centered" | "links-left" | "logo-centered" | null | undefined;
|
|
8186
8627
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
8187
8628
|
/**
|
|
8188
8629
|
* HeaderBrand variant styles
|
|
@@ -9161,6 +9602,10 @@ declare const sidebarInsetVariants: (props?: class_variance_authority_types.Clas
|
|
|
9161
9602
|
declare const sidebarInputVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
9162
9603
|
/**
|
|
9163
9604
|
* SidebarHeader variant styles
|
|
9605
|
+
*
|
|
9606
|
+
* Dual mode consumes sidebar.tokens.json (Figma 1092:542 panel header):
|
|
9607
|
+
* - padding-x = 16px (--sidebar-panel-header-padding-x)
|
|
9608
|
+
* - padding-top = 28px (--sidebar-panel-padding-top) when at top of panel
|
|
9164
9609
|
*/
|
|
9165
9610
|
declare const sidebarHeaderVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
9166
9611
|
/**
|
|
@@ -9177,10 +9622,19 @@ declare const sidebarSeparatorVariants: (props?: class_variance_authority_types.
|
|
|
9177
9622
|
declare const sidebarContentVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
9178
9623
|
/**
|
|
9179
9624
|
* SidebarGroup variant styles
|
|
9625
|
+
*
|
|
9626
|
+
* Dual mode consumes sidebar.tokens.json (Figma 1092:542 Sub Categoria block):
|
|
9627
|
+
* - padding-x = 8px (--sidebar-section-padding-x)
|
|
9628
|
+
* - vertical gap with header handled by panel gap (--sidebar-panel-gap = 28px)
|
|
9180
9629
|
*/
|
|
9181
9630
|
declare const sidebarGroupVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
9182
9631
|
/**
|
|
9183
9632
|
* SidebarGroupLabel variant styles
|
|
9633
|
+
*
|
|
9634
|
+
* Dual mode consumes sidebar.tokens.json (Figma 1092:542 section title "Dashboards"):
|
|
9635
|
+
* - padding-x = 8px (--sidebar-section-title-padding-x)
|
|
9636
|
+
* - font 10px Regular leading-1 (not 12px uppercase!)
|
|
9637
|
+
* - color = muted-foreground tertiary
|
|
9184
9638
|
*/
|
|
9185
9639
|
declare const sidebarGroupLabelVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
9186
9640
|
/**
|
|
@@ -9193,6 +9647,10 @@ declare const sidebarGroupActionVariants: (props?: class_variance_authority_type
|
|
|
9193
9647
|
declare const sidebarGroupContentVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
9194
9648
|
/**
|
|
9195
9649
|
* SidebarMenu variant styles
|
|
9650
|
+
*
|
|
9651
|
+
* Figma spacing differs per variant:
|
|
9652
|
+
* - Single (Expanded 1091:8942): gap-y 20px between items (--sidebar-rail-item-gap)
|
|
9653
|
+
* - Dual panel (1092:542): gap-y 8px between sub-items (--sidebar-section-content-gap)
|
|
9196
9654
|
*/
|
|
9197
9655
|
declare const sidebarMenuVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
9198
9656
|
/**
|
|
@@ -9208,6 +9666,12 @@ declare const sidebarMenuButtonVariants: (props?: ({
|
|
|
9208
9666
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
9209
9667
|
/**
|
|
9210
9668
|
* SidebarRailButton variant styles
|
|
9669
|
+
*
|
|
9670
|
+
* Consumes sidebar.tokens.json sub-tokens (Figma 1087:204 Nav Item, status=Default/Active):
|
|
9671
|
+
* - padding 8px, radius 4px (rounded-md)
|
|
9672
|
+
* - icon size 20px (was 16px — Figma canonical)
|
|
9673
|
+
* - fg default = muted-foreground, active = foreground
|
|
9674
|
+
* - bg hover/active = muted
|
|
9211
9675
|
*/
|
|
9212
9676
|
declare const sidebarRailButtonVariants: (props?: ({
|
|
9213
9677
|
isActive?: boolean | null | undefined;
|
|
@@ -9252,7 +9716,21 @@ type SidebarState = "collapsed" | "expanded";
|
|
|
9252
9716
|
*/
|
|
9253
9717
|
interface SidebarContextProps {
|
|
9254
9718
|
isMobile: boolean;
|
|
9255
|
-
|
|
9719
|
+
/**
|
|
9720
|
+
* Sidebar layout mode — maps directly to Figma 1091:9106 status variants:
|
|
9721
|
+
*
|
|
9722
|
+
* - `"single"` (default) — Figma "Expanded" / "Collapsed":
|
|
9723
|
+
* single panel (272px expanded, 64px collapsed). Logo + text labels.
|
|
9724
|
+
* Use for: dashboards with few top-level items, settings pages,
|
|
9725
|
+
* simple apps. Compose with `<SidebarHeader>` + `<SidebarContent>`.
|
|
9726
|
+
*
|
|
9727
|
+
* - `"dual"` — Figma "Secondary":
|
|
9728
|
+
* rail (64px) + panel (216px) side-by-side. Top-level sections as
|
|
9729
|
+
* icons in rail, sub-items in panel. Use for: docs sites, multi-area
|
|
9730
|
+
* apps with rich categories. Compose with `<SidebarRailContent>` +
|
|
9731
|
+
* `<SidebarPanelContent>`.
|
|
9732
|
+
*/
|
|
9733
|
+
mode?: "dual" | "single";
|
|
9256
9734
|
open: boolean;
|
|
9257
9735
|
openMobile: boolean;
|
|
9258
9736
|
setOpen: (value: ((prev: boolean) => boolean) | boolean) => void;
|
|
@@ -9266,7 +9744,21 @@ interface SidebarContextProps {
|
|
|
9266
9744
|
interface SidebarProviderProps extends ComponentProps<"div"> {
|
|
9267
9745
|
defaultOpen?: boolean;
|
|
9268
9746
|
/** Enable dual mode: icon rail (56px) + toggleable text panel (216px) */
|
|
9269
|
-
|
|
9747
|
+
/**
|
|
9748
|
+
* Sidebar layout mode — maps directly to Figma 1091:9106 status variants:
|
|
9749
|
+
*
|
|
9750
|
+
* - `"single"` (default) — Figma "Expanded" / "Collapsed":
|
|
9751
|
+
* single panel (272px expanded, 64px collapsed). Logo + text labels.
|
|
9752
|
+
* Use for: dashboards with few top-level items, settings pages,
|
|
9753
|
+
* simple apps. Compose with `<SidebarHeader>` + `<SidebarContent>`.
|
|
9754
|
+
*
|
|
9755
|
+
* - `"dual"` — Figma "Secondary":
|
|
9756
|
+
* rail (64px) + panel (216px) side-by-side. Top-level sections as
|
|
9757
|
+
* icons in rail, sub-items in panel. Use for: docs sites, multi-area
|
|
9758
|
+
* apps with rich categories. Compose with `<SidebarRailContent>` +
|
|
9759
|
+
* `<SidebarPanelContent>`.
|
|
9760
|
+
*/
|
|
9761
|
+
mode?: "dual" | "single";
|
|
9270
9762
|
onOpenChange?: (open: boolean) => void;
|
|
9271
9763
|
open?: boolean;
|
|
9272
9764
|
}
|
|
@@ -9537,6 +10029,80 @@ declare function SidebarRailButton({ isActive, tooltip, className, ...props }: S
|
|
|
9537
10029
|
* Collapses to width 0 when sidebar state is "collapsed".
|
|
9538
10030
|
*/
|
|
9539
10031
|
declare function SidebarPanelContent({ className, ...props }: SidebarPanelContentProps): react_jsx_runtime.JSX.Element;
|
|
10032
|
+
interface SidebarLogoProps extends Omit<React$1.ComponentProps<"div">, "onClick"> {
|
|
10033
|
+
brand?: string;
|
|
10034
|
+
collapseLabel?: string;
|
|
10035
|
+
mark?: React$1.ReactNode;
|
|
10036
|
+
onClick?: (event: React$1.MouseEvent) => void;
|
|
10037
|
+
showCollapse?: boolean;
|
|
10038
|
+
sub?: string;
|
|
10039
|
+
}
|
|
10040
|
+
/**
|
|
10041
|
+
* SidebarLogo — branding header inside `<SidebarHeader>`.
|
|
10042
|
+
*
|
|
10043
|
+
* Renders a logomark + brand name + (optional) sub line + (optional) collapse trigger.
|
|
10044
|
+
* Aligned with Figma node `Sidebar / Logo` (1087-323).
|
|
10045
|
+
*
|
|
10046
|
+
* Default `mark` is the Seven brand logo. Pass a custom `mark` to override.
|
|
10047
|
+
*
|
|
10048
|
+
* @example
|
|
10049
|
+
* <SidebarHeader>
|
|
10050
|
+
* <SidebarLogo brand="ETUS · DAM" showCollapse />
|
|
10051
|
+
* </SidebarHeader>
|
|
10052
|
+
*/
|
|
10053
|
+
declare function SidebarLogo({ mark, brand, sub, showCollapse, collapseLabel, onClick, className, ...props }: SidebarLogoProps): react_jsx_runtime.JSX.Element;
|
|
10054
|
+
interface SidebarAvatarProps {
|
|
10055
|
+
"aria-label"?: string;
|
|
10056
|
+
avatar?: React$1.ComponentProps<typeof Avatar>;
|
|
10057
|
+
className?: string;
|
|
10058
|
+
compact?: boolean;
|
|
10059
|
+
email?: string;
|
|
10060
|
+
name?: string;
|
|
10061
|
+
onClick?: (event: React$1.MouseEvent<HTMLButtonElement>) => void;
|
|
10062
|
+
showChevron?: boolean;
|
|
10063
|
+
}
|
|
10064
|
+
/**
|
|
10065
|
+
* SidebarAvatar — user-identity footer button inside `<SidebarFooter>`.
|
|
10066
|
+
*
|
|
10067
|
+
* Renders avatar + name + email + (optional) chevron, opens user menu on click.
|
|
10068
|
+
* Aligned with Figma node `Sidebar / Avatar` (1088-627).
|
|
10069
|
+
*
|
|
10070
|
+
* @example
|
|
10071
|
+
* <SidebarFooter>
|
|
10072
|
+
* <SidebarAvatar
|
|
10073
|
+
* avatar={{ initials: "CR", tone: "mint", size: "sm" }}
|
|
10074
|
+
* name="Camila Reis"
|
|
10075
|
+
* email="camila@etus.com.br"
|
|
10076
|
+
* onClick={() => userMenu.toggle()}
|
|
10077
|
+
* />
|
|
10078
|
+
* <SidebarThemeToggle />
|
|
10079
|
+
* </SidebarFooter>
|
|
10080
|
+
*/
|
|
10081
|
+
declare function SidebarAvatar({ avatar, name, email, showChevron, compact, onClick, className, "aria-label": ariaLabel, }: SidebarAvatarProps): react_jsx_runtime.JSX.Element;
|
|
10082
|
+
interface SidebarThemeToggleProps {
|
|
10083
|
+
className?: string;
|
|
10084
|
+
darkIcon?: React$1.ReactNode;
|
|
10085
|
+
label?: (mode: "dark" | "light") => string;
|
|
10086
|
+
lightIcon?: React$1.ReactNode;
|
|
10087
|
+
mode?: "dark" | "light";
|
|
10088
|
+
onToggle?: (next: "dark" | "light") => void;
|
|
10089
|
+
size?: "default" | "sm";
|
|
10090
|
+
}
|
|
10091
|
+
/**
|
|
10092
|
+
* SidebarThemeToggle — sun/moon button that flips `<html>` class between
|
|
10093
|
+
* `light` and `dark`. Use inside `<SidebarFooter>` next to `<SidebarAvatar>`.
|
|
10094
|
+
*
|
|
10095
|
+
* Aligned with Figma node `Sidebar / Color Mode Toggle` (1089-324).
|
|
10096
|
+
*
|
|
10097
|
+
* @example
|
|
10098
|
+
* // Uncontrolled — reads/writes html.classList + localStorage
|
|
10099
|
+
* <SidebarThemeToggle />
|
|
10100
|
+
*
|
|
10101
|
+
* @example
|
|
10102
|
+
* // Controlled
|
|
10103
|
+
* <SidebarThemeToggle mode={themeStore.mode} onToggle={themeStore.set} />
|
|
10104
|
+
*/
|
|
10105
|
+
declare function SidebarThemeToggle({ mode: controlledMode, onToggle, lightIcon, darkIcon, label, size, className, }: SidebarThemeToggleProps): react_jsx_runtime.JSX.Element;
|
|
9540
10106
|
|
|
9541
10107
|
/**
|
|
9542
10108
|
* SkipLink item definition
|
|
@@ -9611,7 +10177,7 @@ declare function SkipLinksList({ className, links, position, variant, ...props }
|
|
|
9611
10177
|
* SkipLink variant styles
|
|
9612
10178
|
*/
|
|
9613
10179
|
declare const skipLinkVariants: (props?: ({
|
|
9614
|
-
position?: "top-
|
|
10180
|
+
position?: "top-left" | "top-right" | "top-center" | null | undefined;
|
|
9615
10181
|
variant?: "default" | "primary" | null | undefined;
|
|
9616
10182
|
alwaysVisible?: boolean | null | undefined;
|
|
9617
10183
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -9623,7 +10189,7 @@ declare const skipLinksListVariants: (props?: class_variance_authority_types.Cla
|
|
|
9623
10189
|
* SkipLinksList inner container variant styles
|
|
9624
10190
|
*/
|
|
9625
10191
|
declare const skipLinksListInnerVariants: (props?: ({
|
|
9626
|
-
position?: "top-
|
|
10192
|
+
position?: "top-left" | "top-right" | "top-center" | null | undefined;
|
|
9627
10193
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
9628
10194
|
/**
|
|
9629
10195
|
* SkipLinksList item variant styles
|
|
@@ -9985,6 +10551,15 @@ interface TabsListProps extends ComponentProps<typeof TabsPrimitive.List> {
|
|
|
9985
10551
|
* TabsTrigger props
|
|
9986
10552
|
*/
|
|
9987
10553
|
interface TabsTriggerProps extends ComponentProps<typeof TabsPrimitive.Trigger> {
|
|
10554
|
+
/**
|
|
10555
|
+
* Optional badge rendered after the label (count, status, etc.).
|
|
10556
|
+
* Receives default styling from `--tabs-trigger-badge-*` tokens.
|
|
10557
|
+
*/
|
|
10558
|
+
badge?: React$1.ReactNode;
|
|
10559
|
+
/**
|
|
10560
|
+
* Optional icon rendered before the label (Figma `Tabs / Trigger` icon slot).
|
|
10561
|
+
*/
|
|
10562
|
+
icon?: React$1.ReactNode;
|
|
9988
10563
|
}
|
|
9989
10564
|
/**
|
|
9990
10565
|
* TabsContent props
|
|
@@ -10028,8 +10603,12 @@ declare function Tabs({ className, variant, ...props }: TabsProps): react_jsx_ru
|
|
|
10028
10603
|
declare function TabsList({ className, ...props }: TabsListProps): react_jsx_runtime.JSX.Element;
|
|
10029
10604
|
/**
|
|
10030
10605
|
* TabsTrigger - Button that activates its associated tab content.
|
|
10606
|
+
*
|
|
10607
|
+
* Supports optional `icon` (before label) and `badge` (after label) slots
|
|
10608
|
+
* matching the Figma `Tabs / Trigger` anatomy. When neither slot is provided,
|
|
10609
|
+
* `children` is rendered directly so existing call sites keep working.
|
|
10031
10610
|
*/
|
|
10032
|
-
declare function TabsTrigger({ className, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
|
|
10611
|
+
declare function TabsTrigger({ className, children, icon, badge, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
|
|
10033
10612
|
/**
|
|
10034
10613
|
* TabsContent - Contains the content associated with each tab.
|
|
10035
10614
|
*/
|
|
@@ -10162,6 +10741,72 @@ declare function ToolbarSeparator({ className, ...props }: ToolbarSeparatorProps
|
|
|
10162
10741
|
*/
|
|
10163
10742
|
declare function ToolbarLink({ className, ...props }: ToolbarLinkProps): react_jsx_runtime.JSX.Element;
|
|
10164
10743
|
|
|
10744
|
+
/**
|
|
10745
|
+
* Topbar root props
|
|
10746
|
+
*/
|
|
10747
|
+
interface TopbarProps extends ComponentProps<"div"> {
|
|
10748
|
+
children: ReactNode;
|
|
10749
|
+
/** Visual variant — `default` for breadcrumb + actions row (56px), `filters` for filter-controls row (52px) */
|
|
10750
|
+
variant?: "default" | "filters";
|
|
10751
|
+
}
|
|
10752
|
+
/**
|
|
10753
|
+
* TopbarLeading props — left-aligned slot (typically Breadcrumb or page title)
|
|
10754
|
+
*/
|
|
10755
|
+
type TopbarLeadingProps = ComponentProps<"div">;
|
|
10756
|
+
/**
|
|
10757
|
+
* TopbarTrailing props — right-aligned slot (typically Search, AccountSwitch, filters)
|
|
10758
|
+
*/
|
|
10759
|
+
type TopbarTrailingProps = ComponentProps<"div">;
|
|
10760
|
+
|
|
10761
|
+
/**
|
|
10762
|
+
* Topbar — page-level horizontal bar combining a leading area (breadcrumb / title)
|
|
10763
|
+
* with a trailing area (search, account switcher, filters).
|
|
10764
|
+
*
|
|
10765
|
+
* Distinct from `Navbar` (primary site navigation) and `Header` (app chrome):
|
|
10766
|
+
* Topbar sits at the top of a content area to surface location + contextual actions.
|
|
10767
|
+
*
|
|
10768
|
+
* @example
|
|
10769
|
+
* <Topbar variant="default">
|
|
10770
|
+
* <TopbarLeading>
|
|
10771
|
+
* <Breadcrumb>...</Breadcrumb>
|
|
10772
|
+
* </TopbarLeading>
|
|
10773
|
+
* <TopbarTrailing>
|
|
10774
|
+
* <TextInput type="search" />
|
|
10775
|
+
* <AccountSwitch accounts={...} />
|
|
10776
|
+
* </TopbarTrailing>
|
|
10777
|
+
* </Topbar>
|
|
10778
|
+
*/
|
|
10779
|
+
declare function Topbar({ className, variant, children, ...props }: TopbarProps): react_jsx_runtime.JSX.Element;
|
|
10780
|
+
/**
|
|
10781
|
+
* TopbarLeading — left-aligned slot inside a Topbar.
|
|
10782
|
+
*/
|
|
10783
|
+
declare function TopbarLeading({ className, children, ...props }: TopbarLeadingProps): react_jsx_runtime.JSX.Element;
|
|
10784
|
+
/**
|
|
10785
|
+
* TopbarTrailing — right-aligned slot inside a Topbar.
|
|
10786
|
+
*/
|
|
10787
|
+
declare function TopbarTrailing({ className, children, ...props }: TopbarTrailingProps): react_jsx_runtime.JSX.Element;
|
|
10788
|
+
|
|
10789
|
+
/**
|
|
10790
|
+
* Topbar root variant styles.
|
|
10791
|
+
*
|
|
10792
|
+
* Figma: `Core Components — Seven > Topbar` (node 1403:15038).
|
|
10793
|
+
* All sizing/spacing/color values flow from `@etus/tokens` (`--topbar-*`) —
|
|
10794
|
+
* never hardcoded. Two variants share the same horizontal layout (breadcrumb
|
|
10795
|
+
* left, actions right), differing only in height.
|
|
10796
|
+
*/
|
|
10797
|
+
declare const topbarVariants: (props?: ({
|
|
10798
|
+
variant?: "default" | "filters" | null | undefined;
|
|
10799
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10800
|
+
/**
|
|
10801
|
+
* TopbarLeading variant styles — left slot, typically holding a Breadcrumb.
|
|
10802
|
+
*/
|
|
10803
|
+
declare const topbarLeadingVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
10804
|
+
/**
|
|
10805
|
+
* TopbarTrailing variant styles — right slot, typically holding Search + AccountSwitch
|
|
10806
|
+
* (default variant) or DatePicker + Selects (filters variant).
|
|
10807
|
+
*/
|
|
10808
|
+
declare const topbarTrailingVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
10809
|
+
|
|
10165
10810
|
/**
|
|
10166
10811
|
* AccordionItem style variants using CVA
|
|
10167
10812
|
*
|
|
@@ -10224,8 +10869,18 @@ declare function AccordionItem({ className, ...props }: AccordionItemProps): rea
|
|
|
10224
10869
|
declare namespace AccordionItem {
|
|
10225
10870
|
var displayName: string;
|
|
10226
10871
|
}
|
|
10227
|
-
type AccordionTriggerProps = React$1.ComponentProps<typeof AccordionPrimitive.Trigger
|
|
10228
|
-
|
|
10872
|
+
type AccordionTriggerProps = React$1.ComponentProps<typeof AccordionPrimitive.Trigger> & {
|
|
10873
|
+
/**
|
|
10874
|
+
* Custom icon to render in place of the default chevron.
|
|
10875
|
+
* When provided, the icon receives the same transition + transform
|
|
10876
|
+
* animations as the default chevron (rotates on expand).
|
|
10877
|
+
*
|
|
10878
|
+
* @example
|
|
10879
|
+
* <AccordionTrigger chevron={<PlusIcon />}>Section 1</AccordionTrigger>
|
|
10880
|
+
*/
|
|
10881
|
+
chevron?: React$1.ReactNode;
|
|
10882
|
+
};
|
|
10883
|
+
declare function AccordionTrigger({ className, children, chevron, ...props }: AccordionTriggerProps): react_jsx_runtime.JSX.Element;
|
|
10229
10884
|
declare namespace AccordionTrigger {
|
|
10230
10885
|
var displayName: string;
|
|
10231
10886
|
}
|
|
@@ -10494,10 +11149,16 @@ declare namespace AreaChart {
|
|
|
10494
11149
|
var displayName: string;
|
|
10495
11150
|
}
|
|
10496
11151
|
|
|
11152
|
+
/**
|
|
11153
|
+
* Banner style variants using CVA
|
|
11154
|
+
*
|
|
11155
|
+
* @see https://cva.style/docs
|
|
11156
|
+
*/
|
|
10497
11157
|
declare const bannerVariants: (props?: ({
|
|
10498
|
-
variant?: "default" | "success" | "warning" | "
|
|
11158
|
+
variant?: "default" | "success" | "warning" | "info" | "error" | "promo" | null | undefined;
|
|
10499
11159
|
position?: "bottom" | "top" | "inline" | null | undefined;
|
|
10500
11160
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
11161
|
+
|
|
10501
11162
|
interface BannerProps$1 extends React.ComponentProps<"div">, VariantProps<typeof bannerVariants> {
|
|
10502
11163
|
/** Action element to display (e.g., button) */
|
|
10503
11164
|
action?: React.ReactNode;
|
|
@@ -10816,10 +11477,16 @@ declare namespace BarList {
|
|
|
10816
11477
|
var displayName: string;
|
|
10817
11478
|
}
|
|
10818
11479
|
|
|
11480
|
+
/**
|
|
11481
|
+
* Callout style variants using CVA
|
|
11482
|
+
*
|
|
11483
|
+
* @see https://cva.style/docs
|
|
11484
|
+
*/
|
|
10819
11485
|
declare const calloutVariants: (props?: ({
|
|
10820
|
-
variant?: "default" | "success" | "warning" | "
|
|
11486
|
+
variant?: "default" | "success" | "warning" | "info" | "tip" | "error" | null | undefined;
|
|
10821
11487
|
size?: "sm" | "lg" | "md" | null | undefined;
|
|
10822
11488
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
11489
|
+
|
|
10823
11490
|
interface CalloutProps$1 extends React.ComponentProps<"div">, VariantProps<typeof calloutVariants> {
|
|
10824
11491
|
/** Custom icon to display (overrides variant icon) */
|
|
10825
11492
|
icon?: React.ReactNode;
|
|
@@ -10972,6 +11639,124 @@ declare namespace CategoryBar {
|
|
|
10972
11639
|
var displayName: string;
|
|
10973
11640
|
}
|
|
10974
11641
|
|
|
11642
|
+
/**
|
|
11643
|
+
* ChartCard container variants
|
|
11644
|
+
*/
|
|
11645
|
+
declare const chartCardVariants: (props?: ({
|
|
11646
|
+
variant?: "default" | "elevated" | "outlined" | null | undefined;
|
|
11647
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
11648
|
+
/**
|
|
11649
|
+
* ChartCard header variants
|
|
11650
|
+
*/
|
|
11651
|
+
declare const chartCardHeaderVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
11652
|
+
/**
|
|
11653
|
+
* ChartCard title variants
|
|
11654
|
+
*/
|
|
11655
|
+
declare const chartCardTitleVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
11656
|
+
/**
|
|
11657
|
+
* ChartCard value container variants
|
|
11658
|
+
*/
|
|
11659
|
+
declare const chartCardValueContainerVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
11660
|
+
/**
|
|
11661
|
+
* ChartCard value text variants
|
|
11662
|
+
*/
|
|
11663
|
+
declare const chartCardValueVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
11664
|
+
/**
|
|
11665
|
+
* ChartCard previous value variants
|
|
11666
|
+
*/
|
|
11667
|
+
declare const chartCardPreviousValueVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
11668
|
+
/**
|
|
11669
|
+
* ChartCard chart container variants
|
|
11670
|
+
*/
|
|
11671
|
+
declare const chartCardChartVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
11672
|
+
|
|
11673
|
+
/**
|
|
11674
|
+
* Value formatter function type
|
|
11675
|
+
*/
|
|
11676
|
+
type ChartCardValueFormatter = (value: number) => string;
|
|
11677
|
+
/**
|
|
11678
|
+
* Comparison period type
|
|
11679
|
+
*/
|
|
11680
|
+
type ChartCardComparisonPeriod = "no-comparison" | "previous-period" | "previous-year";
|
|
11681
|
+
/**
|
|
11682
|
+
* Data point structure for chart
|
|
11683
|
+
*/
|
|
11684
|
+
interface ChartCardDataPoint {
|
|
11685
|
+
/** Full data payload for custom access */
|
|
11686
|
+
[key: string]: unknown;
|
|
11687
|
+
/** Formatted date for display */
|
|
11688
|
+
formattedDate: string;
|
|
11689
|
+
/** The previous period value (for comparison) */
|
|
11690
|
+
previousValue?: null | number;
|
|
11691
|
+
/** The current period value */
|
|
11692
|
+
value: null | number;
|
|
11693
|
+
}
|
|
11694
|
+
/**
|
|
11695
|
+
* Props for ChartCard component
|
|
11696
|
+
*/
|
|
11697
|
+
interface ChartCardProps extends Omit<ComponentPropsWithoutRef<"div">, "title">, VariantProps<typeof chartCardVariants> {
|
|
11698
|
+
/** Custom badge to display (overrides auto-generated evolution badge) */
|
|
11699
|
+
badge?: ReactNode;
|
|
11700
|
+
/** Chart height class (default: "h-32") */
|
|
11701
|
+
chartHeight?: string;
|
|
11702
|
+
/** Additional CSS classes */
|
|
11703
|
+
className?: string;
|
|
11704
|
+
/** Current period comparison selection */
|
|
11705
|
+
comparisonPeriod?: ChartCardComparisonPeriod;
|
|
11706
|
+
/** Chart configuration with colors and labels */
|
|
11707
|
+
config: ChartConfig;
|
|
11708
|
+
/** Chart data array */
|
|
11709
|
+
data: ChartCardDataPoint[];
|
|
11710
|
+
/** Custom message rendered when `data` is empty (DES-1254 item 3) */
|
|
11711
|
+
emptyMessage?: ReactNode;
|
|
11712
|
+
/** Hide chart and show only the value */
|
|
11713
|
+
isThumbnail?: boolean;
|
|
11714
|
+
/** Loading state */
|
|
11715
|
+
loading?: boolean;
|
|
11716
|
+
/** Selected date range (for display purposes) */
|
|
11717
|
+
selectedDates?: DateRange$1;
|
|
11718
|
+
/** Show tooltip on chart hover */
|
|
11719
|
+
showTooltip?: boolean;
|
|
11720
|
+
/** Card title (required) */
|
|
11721
|
+
title: string;
|
|
11722
|
+
/** Value formatter function (e.g., currency, percentage) */
|
|
11723
|
+
valueFormatter?: ChartCardValueFormatter;
|
|
11724
|
+
/** Custom X-axis key in data (default: "formattedDate") */
|
|
11725
|
+
xAxisKey?: string;
|
|
11726
|
+
}
|
|
11727
|
+
|
|
11728
|
+
/**
|
|
11729
|
+
* ChartCard - Dashboard widget with integrated LineChart
|
|
11730
|
+
*
|
|
11731
|
+
* Displays a KPI value with trend chart and optional comparison period.
|
|
11732
|
+
* Matches the Tremor DashboardChartCard layout with evolution badge.
|
|
11733
|
+
*
|
|
11734
|
+
* @example
|
|
11735
|
+
* ```tsx
|
|
11736
|
+
* const data = [
|
|
11737
|
+
* { formattedDate: "01/01", value: 1000, previousValue: 900 },
|
|
11738
|
+
* { formattedDate: "02/01", value: 1200, previousValue: 1100 },
|
|
11739
|
+
* ]
|
|
11740
|
+
*
|
|
11741
|
+
* const config = {
|
|
11742
|
+
* value: { label: "Current", color: "hsl(var(--chart-1))" },
|
|
11743
|
+
* previousValue: { label: "Previous", color: "hsl(var(--chart-2))" },
|
|
11744
|
+
* }
|
|
11745
|
+
*
|
|
11746
|
+
* <ChartCard
|
|
11747
|
+
* title="Revenue"
|
|
11748
|
+
* data={data}
|
|
11749
|
+
* config={config}
|
|
11750
|
+
* valueFormatter={(v) => `$${v.toLocaleString()}`}
|
|
11751
|
+
* comparisonPeriod="previous-year"
|
|
11752
|
+
* />
|
|
11753
|
+
* ```
|
|
11754
|
+
*/
|
|
11755
|
+
declare function ChartCard({ title, data, config, valueFormatter, comparisonPeriod, isThumbnail, loading, badge, chartHeight, showTooltip, xAxisKey, emptyMessage, variant, className, ...props }: ChartCardProps): react_jsx_runtime.JSX.Element;
|
|
11756
|
+
declare namespace ChartCard {
|
|
11757
|
+
var displayName: string;
|
|
11758
|
+
}
|
|
11759
|
+
|
|
10975
11760
|
/**
|
|
10976
11761
|
* Curve type for the line series
|
|
10977
11762
|
*/
|
|
@@ -13073,12 +13858,30 @@ declare function ImageGallery({ aspectRatio, className, columns, enableLightbox,
|
|
|
13073
13858
|
declare function ItemGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
13074
13859
|
declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Divider>): react_jsx_runtime.JSX.Element;
|
|
13075
13860
|
declare const itemVariants: (props?: ({
|
|
13076
|
-
variant?: "default" | "muted" | "outline" | null | undefined;
|
|
13077
|
-
size?: "default" | "sm" | null | undefined;
|
|
13861
|
+
variant?: "default" | "muted" | "outline" | "active" | null | undefined;
|
|
13862
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
13863
|
+
interactive?: boolean | null | undefined;
|
|
13078
13864
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
13079
|
-
|
|
13865
|
+
interface ItemEventPayload {
|
|
13866
|
+
/** Whether the item is currently in active state */
|
|
13867
|
+
active: boolean;
|
|
13868
|
+
/** Reflects the `data-id` prop */
|
|
13869
|
+
id?: string;
|
|
13870
|
+
/** Event timestamp (Date.now()) */
|
|
13871
|
+
timestamp: number;
|
|
13872
|
+
}
|
|
13873
|
+
interface ItemProps extends Omit<React$1.ComponentProps<"div">, "onClick" | "onFocus" | "onKeyDown">, VariantProps<typeof itemVariants> {
|
|
13874
|
+
/** Shorthand for `variant="active"`. When both passed, `variant` wins. */
|
|
13875
|
+
active?: boolean;
|
|
13080
13876
|
asChild?: boolean;
|
|
13081
|
-
|
|
13877
|
+
/** Reflected to `data-id` and to the event payload. */
|
|
13878
|
+
"data-id"?: string;
|
|
13879
|
+
/** Click handler — receives the event + an ItemEventPayload. */
|
|
13880
|
+
onClick?: (event: React$1.MouseEvent<HTMLButtonElement | HTMLDivElement>, payload: ItemEventPayload) => void;
|
|
13881
|
+
onFocus?: (event: React$1.FocusEvent<HTMLButtonElement | HTMLDivElement>, payload: ItemEventPayload) => void;
|
|
13882
|
+
onKeyDown?: (event: React$1.KeyboardEvent<HTMLButtonElement | HTMLDivElement>, payload: ItemEventPayload) => void;
|
|
13883
|
+
}
|
|
13884
|
+
declare function Item({ className, variant, active, interactive, size, asChild, "data-id": dataId, onClick, onFocus, onKeyDown, ...props }: ItemProps): react_jsx_runtime.JSX.Element;
|
|
13082
13885
|
declare const itemMediaVariants: (props?: ({
|
|
13083
13886
|
variant?: "image" | "default" | "icon" | null | undefined;
|
|
13084
13887
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -13100,16 +13903,28 @@ interface KPICardProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
13100
13903
|
delta?: number;
|
|
13101
13904
|
/** Texto do delta */
|
|
13102
13905
|
deltaLabel?: string;
|
|
13906
|
+
/** Dropdown trigger icon (Figma composition flag — DES-1278 item 1) */
|
|
13907
|
+
dropdownIcon?: ReactNode;
|
|
13908
|
+
/** Featured icon — ícone com destaque visual em badge circular */
|
|
13909
|
+
featuredIcon?: ReactNode;
|
|
13910
|
+
/** Help/info tooltip ou texto secundário (Figma composition flag — DES-1278) */
|
|
13911
|
+
helpText?: ReactNode;
|
|
13103
13912
|
/** Ícone ilustrativo */
|
|
13104
13913
|
icon?: ReactNode;
|
|
13105
13914
|
/** Estado de loading */
|
|
13106
13915
|
loading?: boolean;
|
|
13107
13916
|
/** Valor anterior para cálculo de delta */
|
|
13108
13917
|
previousValue?: number;
|
|
13918
|
+
/** Progress bar inferior 0-100 ou ReactNode custom (Figma composition flag — DES-1278) */
|
|
13919
|
+
progressBar?: number | ReactNode;
|
|
13920
|
+
/** Mostra Delta como Badge pill colored (Figma literal) vs plain inline text. @default true */
|
|
13921
|
+
showBadge?: boolean;
|
|
13109
13922
|
/** Tamanho do card */
|
|
13110
13923
|
size?: KPICardSize;
|
|
13111
13924
|
/** Dados para mini gráfico (não implementado ainda) */
|
|
13112
13925
|
sparkline?: number[];
|
|
13926
|
+
/** Swap button (toggle entre comparison periods — Figma composition flag) */
|
|
13927
|
+
swap?: ReactNode;
|
|
13113
13928
|
/** Label do KPI */
|
|
13114
13929
|
title: string;
|
|
13115
13930
|
/** Direção da tendência (auto-detectada se não fornecida) */
|
|
@@ -13119,6 +13934,13 @@ interface KPICardProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
13119
13934
|
/** Estilo visual */
|
|
13120
13935
|
variant?: KPICardVariant;
|
|
13121
13936
|
}
|
|
13937
|
+
/** KPICardGroup — Multiple KPIs composition wrapper */
|
|
13938
|
+
interface KPICardGroupProps extends HTMLAttributes<HTMLDivElement> {
|
|
13939
|
+
/** Espaço entre cards */
|
|
13940
|
+
gap?: "lg" | "md" | "sm";
|
|
13941
|
+
/** Orientação do layout */
|
|
13942
|
+
orientation?: "horizontal" | "vertical";
|
|
13943
|
+
}
|
|
13122
13944
|
|
|
13123
13945
|
/**
|
|
13124
13946
|
* KPICard - Key Performance Indicator Card
|
|
@@ -13137,7 +13959,22 @@ interface KPICardProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
13137
13959
|
* />
|
|
13138
13960
|
* ```
|
|
13139
13961
|
*/
|
|
13140
|
-
declare function KPICard({ title, value, previousValue: _previousValue, delta, deltaLabel, trend, sparkline, icon, action, variant, size, loading, className, ...props }: KPICardProps): react_jsx_runtime.JSX.Element;
|
|
13962
|
+
declare function KPICard({ title, value, previousValue: _previousValue, delta, deltaLabel, trend, sparkline, icon, featuredIcon, dropdownIcon, helpText, progressBar, swap, showBadge, action, variant, size, loading, className, ...props }: KPICardProps): react_jsx_runtime.JSX.Element;
|
|
13963
|
+
/**
|
|
13964
|
+
* KPICardGroup — Multiple KPIs composition (Figma Type=Multiple KPIs)
|
|
13965
|
+
*
|
|
13966
|
+
* Wrapper que diagramra múltiplos `KPICard` em layout horizontal ou vertical.
|
|
13967
|
+
*
|
|
13968
|
+
* @example
|
|
13969
|
+
* ```tsx
|
|
13970
|
+
* <KPICardGroup orientation="horizontal" gap="md">
|
|
13971
|
+
* <KPICard title="Revenue" value="$45k" delta={12} />
|
|
13972
|
+
* <KPICard title="Orders" value={1240} delta={-3} />
|
|
13973
|
+
* <KPICard title="Users" value={892} delta={8} />
|
|
13974
|
+
* </KPICardGroup>
|
|
13975
|
+
* ```
|
|
13976
|
+
*/
|
|
13977
|
+
declare function KPICardGroup({ children, orientation, gap, className, ...props }: KPICardGroupProps): react_jsx_runtime.JSX.Element;
|
|
13141
13978
|
|
|
13142
13979
|
/**
|
|
13143
13980
|
* Represents an individual image in the lightbox
|
|
@@ -13697,6 +14534,84 @@ declare namespace PieChart {
|
|
|
13697
14534
|
var displayName: string;
|
|
13698
14535
|
}
|
|
13699
14536
|
|
|
14537
|
+
interface RadarChartProps extends Omit<ComponentPropsWithoutRef<"div">, "data"> {
|
|
14538
|
+
/**
|
|
14539
|
+
* Key used for the polar angle axis labels. Defaults to "subject".
|
|
14540
|
+
*/
|
|
14541
|
+
angleKey?: string;
|
|
14542
|
+
/**
|
|
14543
|
+
* Chart config mapping dataKey → label/color. Same shape as other charts.
|
|
14544
|
+
*/
|
|
14545
|
+
config: ChartConfig;
|
|
14546
|
+
/**
|
|
14547
|
+
* Array of data rows. Each row should have a `subject` (axis label) + numeric values for each series.
|
|
14548
|
+
*/
|
|
14549
|
+
data: Record<string, unknown>[];
|
|
14550
|
+
/**
|
|
14551
|
+
* Data keys for series to render. Each becomes a Radar polygon.
|
|
14552
|
+
*/
|
|
14553
|
+
dataKeys: string[];
|
|
14554
|
+
/**
|
|
14555
|
+
* Fill opacity of the radar polygons.
|
|
14556
|
+
* @default 0.3
|
|
14557
|
+
*/
|
|
14558
|
+
fillOpacity?: number;
|
|
14559
|
+
/**
|
|
14560
|
+
* Show value points on each vertex.
|
|
14561
|
+
* @default true
|
|
14562
|
+
*/
|
|
14563
|
+
showDots?: boolean;
|
|
14564
|
+
/**
|
|
14565
|
+
* Show gridlines.
|
|
14566
|
+
* @default true
|
|
14567
|
+
*/
|
|
14568
|
+
showGrid?: boolean;
|
|
14569
|
+
}
|
|
14570
|
+
|
|
14571
|
+
declare function RadarChart({ className, config, data, dataKeys, angleKey, showGrid, showDots, fillOpacity, ...props }: RadarChartProps): react_jsx_runtime.JSX.Element;
|
|
14572
|
+
|
|
14573
|
+
interface RadialChartProps extends Omit<ComponentPropsWithoutRef<"div">, "data"> {
|
|
14574
|
+
/**
|
|
14575
|
+
* Chart config mapping dataKey → label/color.
|
|
14576
|
+
*/
|
|
14577
|
+
config: ChartConfig;
|
|
14578
|
+
/**
|
|
14579
|
+
* Array of data rows. Each row should be a category with a numeric `value`.
|
|
14580
|
+
*/
|
|
14581
|
+
data: Record<string, unknown>[];
|
|
14582
|
+
/**
|
|
14583
|
+
* Data key for the value rendered. Defaults to "value".
|
|
14584
|
+
*/
|
|
14585
|
+
dataKey?: string;
|
|
14586
|
+
/**
|
|
14587
|
+
* End angle (degrees).
|
|
14588
|
+
* @default -270
|
|
14589
|
+
*/
|
|
14590
|
+
endAngle?: number;
|
|
14591
|
+
/**
|
|
14592
|
+
* Inner radius (% or px). Higher values produce thinner rings.
|
|
14593
|
+
* @default "30%"
|
|
14594
|
+
*/
|
|
14595
|
+
innerRadius?: number | string;
|
|
14596
|
+
/**
|
|
14597
|
+
* Outer radius (% or px).
|
|
14598
|
+
* @default "100%"
|
|
14599
|
+
*/
|
|
14600
|
+
outerRadius?: number | string;
|
|
14601
|
+
/**
|
|
14602
|
+
* Show background ring.
|
|
14603
|
+
* @default true
|
|
14604
|
+
*/
|
|
14605
|
+
showBackground?: boolean;
|
|
14606
|
+
/**
|
|
14607
|
+
* Start angle (degrees).
|
|
14608
|
+
* @default 90
|
|
14609
|
+
*/
|
|
14610
|
+
startAngle?: number;
|
|
14611
|
+
}
|
|
14612
|
+
|
|
14613
|
+
declare function RadialChart({ className, config, data, dataKey, innerRadius, outerRadius, startAngle, endAngle, showBackground, ...props }: RadialChartProps): react_jsx_runtime.JSX.Element;
|
|
14614
|
+
|
|
13700
14615
|
/**
|
|
13701
14616
|
* Shape types for scatter points
|
|
13702
14617
|
*/
|
|
@@ -14490,7 +15405,7 @@ declare function VirtualTable<TData>({ data, columns, rowHeight, overscan, estim
|
|
|
14490
15405
|
* Alert variant styles using CVA
|
|
14491
15406
|
*/
|
|
14492
15407
|
declare const alertVariants: (props?: ({
|
|
14493
|
-
variant?: "default" | "destructive" | null | undefined;
|
|
15408
|
+
variant?: "default" | "destructive" | "success" | "warning" | "info" | null | undefined;
|
|
14494
15409
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
14495
15410
|
|
|
14496
15411
|
/**
|
|
@@ -15109,7 +16024,7 @@ declare function FocusTrap({ active, allowOutsideClick, children, className, cli
|
|
|
15109
16024
|
* Inline feedback messages for forms and fields
|
|
15110
16025
|
*/
|
|
15111
16026
|
declare const messageVariants: (props?: ({
|
|
15112
|
-
variant?: "success" | "warning" | "
|
|
16027
|
+
variant?: "success" | "warning" | "info" | "error" | null | undefined;
|
|
15113
16028
|
size?: "sm" | "md" | null | undefined;
|
|
15114
16029
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
15115
16030
|
|
|
@@ -15180,6 +16095,12 @@ interface ModalProps {
|
|
|
15180
16095
|
* Additional CSS classes for the modal content
|
|
15181
16096
|
*/
|
|
15182
16097
|
className?: string;
|
|
16098
|
+
/**
|
|
16099
|
+
* Fallback accessible label for the close button when no title is provided (DES-1286 item 7 — i18n).
|
|
16100
|
+
* Useful for screen readers in non-English contexts.
|
|
16101
|
+
* @default "Close"
|
|
16102
|
+
*/
|
|
16103
|
+
closeLabel?: string;
|
|
15183
16104
|
/**
|
|
15184
16105
|
* Whether to close the modal when pressing Escape
|
|
15185
16106
|
* @default true
|
|
@@ -15199,6 +16120,16 @@ interface ModalProps {
|
|
|
15199
16120
|
* Optional description displayed below the title
|
|
15200
16121
|
*/
|
|
15201
16122
|
description?: string;
|
|
16123
|
+
/**
|
|
16124
|
+
* Accessible fallback description when `description` is omitted (rendered sr-only). DES-1286 item 7 — i18n.
|
|
16125
|
+
* @default "Use this dialog to complete the current action."
|
|
16126
|
+
*/
|
|
16127
|
+
fallbackDescription?: string;
|
|
16128
|
+
/**
|
|
16129
|
+
* Accessible fallback title when `title` is omitted (rendered sr-only). DES-1286 item 7 — i18n.
|
|
16130
|
+
* @default "Modal dialog"
|
|
16131
|
+
*/
|
|
16132
|
+
fallbackTitle?: string;
|
|
15202
16133
|
/**
|
|
15203
16134
|
* Footer content (typically action buttons)
|
|
15204
16135
|
*/
|
|
@@ -15264,14 +16195,14 @@ interface ModalProps {
|
|
|
15264
16195
|
* </Modal>
|
|
15265
16196
|
* ```
|
|
15266
16197
|
*/
|
|
15267
|
-
declare function Modal({ children, className, closeOnEscape, closeOnOverlayClick, defaultOpen, description, footer, onOpenChange, open, overlayClassName, showCloseButton, size, title, trigger, }: ModalProps): react_jsx_runtime.JSX.Element;
|
|
16198
|
+
declare function Modal({ children, className, closeLabel, closeOnEscape, closeOnOverlayClick, defaultOpen, description, fallbackDescription, fallbackTitle, footer, onOpenChange, open, overlayClassName, showCloseButton, size, title, trigger, }: ModalProps): react_jsx_runtime.JSX.Element;
|
|
15268
16199
|
|
|
15269
16200
|
/**
|
|
15270
16201
|
* Notification variant styles using CVA
|
|
15271
16202
|
* Individual notification items for lists, dropdowns, or feeds
|
|
15272
16203
|
*/
|
|
15273
16204
|
declare const notificationVariants: (props?: ({
|
|
15274
|
-
variant?: "default" | "success" | "warning" | "
|
|
16205
|
+
variant?: "default" | "success" | "warning" | "info" | "error" | null | undefined;
|
|
15275
16206
|
read?: boolean | null | undefined;
|
|
15276
16207
|
interactive?: boolean | null | undefined;
|
|
15277
16208
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -15279,7 +16210,7 @@ declare const notificationVariants: (props?: ({
|
|
|
15279
16210
|
* Unread indicator dot styles
|
|
15280
16211
|
*/
|
|
15281
16212
|
declare const unreadDotVariants: (props?: ({
|
|
15282
|
-
variant?: "default" | "success" | "warning" | "
|
|
16213
|
+
variant?: "default" | "success" | "warning" | "info" | "error" | null | undefined;
|
|
15283
16214
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
15284
16215
|
|
|
15285
16216
|
/**
|
|
@@ -15679,6 +16610,40 @@ interface ToastPromiseOptions<T> {
|
|
|
15679
16610
|
|
|
15680
16611
|
declare const Toaster: ({ theme, ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
|
|
15681
16612
|
|
|
16613
|
+
interface UpdatesWidgetItem {
|
|
16614
|
+
icon: ReactNode;
|
|
16615
|
+
id: string;
|
|
16616
|
+
/**
|
|
16617
|
+
* Main item content (typically short text).
|
|
16618
|
+
*/
|
|
16619
|
+
text: ReactNode;
|
|
16620
|
+
tone: "destructive" | "info" | "success" | "warning";
|
|
16621
|
+
/**
|
|
16622
|
+
* Optional timestamp string ("agora", "há 2h", etc).
|
|
16623
|
+
*/
|
|
16624
|
+
when?: string;
|
|
16625
|
+
}
|
|
16626
|
+
interface UpdatesWidgetProps extends Omit<ComponentProps<"div">, "title"> {
|
|
16627
|
+
/**
|
|
16628
|
+
* Custom empty-state content. Defaults to "Sem updates · Você está em dia".
|
|
16629
|
+
*/
|
|
16630
|
+
emptyState?: ReactNode;
|
|
16631
|
+
/**
|
|
16632
|
+
* Items shown inside the widget. Empty array renders the empty state.
|
|
16633
|
+
*/
|
|
16634
|
+
items: UpdatesWidgetItem[];
|
|
16635
|
+
/**
|
|
16636
|
+
* Optional menu trigger (3-dot more icon). Pass `null` to hide.
|
|
16637
|
+
*/
|
|
16638
|
+
menu?: ReactNode;
|
|
16639
|
+
/**
|
|
16640
|
+
* Optional title shown in the header.
|
|
16641
|
+
*/
|
|
16642
|
+
title?: ReactNode;
|
|
16643
|
+
}
|
|
16644
|
+
|
|
16645
|
+
declare function UpdatesWidget({ className, items, emptyState, menu, title, ...props }: UpdatesWidgetProps): react_jsx_runtime.JSX.Element;
|
|
16646
|
+
|
|
15682
16647
|
/**
|
|
15683
16648
|
* AssetManager root container variants
|
|
15684
16649
|
*/
|
|
@@ -16712,21 +17677,21 @@ declare class ErrorBoundary extends Component<ErrorBoundaryProps, ErrorBoundaryS
|
|
|
16712
17677
|
* ErrorBoundary fallback container variants
|
|
16713
17678
|
*/
|
|
16714
17679
|
declare const errorBoundaryFallbackVariants: (props?: ({
|
|
16715
|
-
variant?: "
|
|
16716
|
-
severity?: "warning" | "
|
|
17680
|
+
variant?: "action" | "minimal" | "detailed" | "fullscreen" | null | undefined;
|
|
17681
|
+
severity?: "warning" | "info" | "error" | null | undefined;
|
|
16717
17682
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
16718
17683
|
/**
|
|
16719
17684
|
* ErrorBoundary fallback card variants
|
|
16720
17685
|
*/
|
|
16721
17686
|
declare const errorBoundaryCardVariants: (props?: ({
|
|
16722
|
-
variant?: "
|
|
17687
|
+
variant?: "action" | "minimal" | "detailed" | "fullscreen" | null | undefined;
|
|
16723
17688
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
16724
17689
|
/**
|
|
16725
17690
|
* ErrorBoundary icon variants
|
|
16726
17691
|
*/
|
|
16727
17692
|
declare const errorBoundaryIconVariants: (props?: ({
|
|
16728
17693
|
size?: "sm" | "lg" | "md" | null | undefined;
|
|
16729
|
-
severity?: "warning" | "
|
|
17694
|
+
severity?: "warning" | "info" | "error" | null | undefined;
|
|
16730
17695
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
16731
17696
|
/**
|
|
16732
17697
|
* ErrorBoundary title variants
|
|
@@ -18135,7 +19100,7 @@ declare const portalOverlayVariants: (props?: ({
|
|
|
18135
19100
|
* Used for centering or positioning portaled content
|
|
18136
19101
|
*/
|
|
18137
19102
|
declare const portalContentVariants: (props?: ({
|
|
18138
|
-
position?: "center" | "bottom" | "left" | "right" | "top" | "
|
|
19103
|
+
position?: "center" | "bottom" | "left" | "right" | "top" | "bottom-left" | "bottom-right" | "top-left" | "top-right" | null | undefined;
|
|
18139
19104
|
padding?: "none" | "sm" | "lg" | "md" | null | undefined;
|
|
18140
19105
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18141
19106
|
|
|
@@ -22196,4 +23161,4 @@ declare function getColorClassName(color: ChartColor, type: ColorUtility): strin
|
|
|
22196
23161
|
*/
|
|
22197
23162
|
declare function getYAxisDomain(autoMinValue: boolean, minValue?: number, maxValue?: number): ["auto" | number, "auto" | number];
|
|
22198
23163
|
|
|
22199
|
-
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, 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 AspectRatioEventPayload, 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, type CardProps, 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, 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 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, type DrawerContentVariantProps, 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, 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, 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, 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, ItemFooter, ItemGroup, ItemHeader, ItemMedia, type ItemMovePayload, ItemSeparator, ItemTitle, type ItemUpdatePayload, KPICard, 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 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, 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, 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, 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, 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, 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, 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, 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 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, type ThumbnailProps, type ThumbnailRounded, type ThumbnailRoundedVariant, type ThumbnailSize, type ThumbnailSizeVariant, 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, 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, Tracker, type TrackerBlockData, type TrackerProps, URLInput, type URLInputProps, type URLInputValidationState, type URLLinkIconVariantProps, type URLValidationIconVariantProps, 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, cardTitleVariants, cardTypes, cardVariants, changeIndicatorVariants, chartColors, checkboxGroupDescriptionVariants, checkboxGroupHeaderVariants, checkboxGroupItemWrapperVariants, checkboxGroupLabelVariants, checkboxGroupVariants, checkboxIconVariants, checkboxVariants, collapsibleContentVariants, collapsibleTriggerVariants, collapsibleVariants, colorPickerPreviewVariants, colorPickerSwatchVariants, colorPickerTriggerVariants, combinatorToggleVariants, commandEmptyVariants, commandGroupVariants, 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, drawerContentVariants, 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, feedItemVariants, feedVariants, fieldContentVariants, fieldDescriptionVariants, fieldErrorVariants, fieldGroupVariants, fieldLabelVariants, fieldLegendVariants, fieldSeparatorVariants, fieldSetVariants, fieldTitleVariants, fieldVariants, fileDropzoneVariants, filePreviewActionButtonVariants, filePreviewActionsVariants, filePreviewContentVariants, filePreviewFallbackVariants, filePreviewInfoVariants, filePreviewVariants, filterBuilderVariants, filterGroupHeaderVariants, filterGroupVariants, filterPreviewVariants, filterRuleVariants, filterToolbarVariants, findCountryByCode, findCountryByDialCode, flexVariants, 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, passwordToggleVariants, paymentInputIconVariants, paymentInputInputVariants, paymentInputVariants, 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, toolbarLinkVariants, toolbarSeparatorVariants, toolbarToggleGroupVariants, toolbarToggleItemVariants, toolbarVariants, tooltipArrowVariants, tooltipContentVariants, unreadDotVariants, urlLinkIconVariants, urlValidationIconVariants, useButtonGroup, useFormField, useIsMobile, useMediaQuery, useOnWindowResize, useSidebar, useTagGroup, validateCardNumber, versionBadgeVariants, versionControlVariants, versionItemVariants, versionTimelineConnectorVariants, versionTimelineMarkerVariants, wizardActionsVariants, wizardContentVariants, wizardStepContentVariants, wizardStepperVariants, wizardVariants };
|
|
23164
|
+
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 AspectRatioEventPayload, 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 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, type DrawerContentVariantProps, 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 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, 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, 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, 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 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, 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, 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, drawerContentVariants, 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, passwordToggleVariants, paymentInputIconVariants, paymentInputInputVariants, paymentInputVariants, 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, 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 };
|