@etus/ui 1.0.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +457 -31
- package/dist/index.js +6092 -4665
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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';
|
|
@@ -994,6 +994,48 @@ type FeaturedIconTone = NonNullable<VariantProps<typeof featuredIconVariants>["t
|
|
|
994
994
|
|
|
995
995
|
declare function FeaturedIcon({ className, size, shape, tone, children, ...props }: FeaturedIconProps): react_jsx_runtime.JSX.Element;
|
|
996
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
|
+
|
|
997
1039
|
/**
|
|
998
1040
|
* Semantic heading level (h1-h6)
|
|
999
1041
|
*/
|
|
@@ -2254,11 +2296,11 @@ declare function SplitButton({ className, variant, size, children, onClick, menu
|
|
|
2254
2296
|
*/
|
|
2255
2297
|
interface StatusIndicatorProps extends Omit<ComponentProps<"span">, "children">, VariantProps<typeof statusIndicatorVariants> {
|
|
2256
2298
|
/**
|
|
2257
|
-
* 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).
|
|
2258
2300
|
*/
|
|
2259
2301
|
label?: string;
|
|
2260
2302
|
/**
|
|
2261
|
-
* Label position relative to the indicator dot
|
|
2303
|
+
* Label position relative to the indicator dot. Only applies when shape is `dot`.
|
|
2262
2304
|
* @default "right"
|
|
2263
2305
|
*/
|
|
2264
2306
|
labelPosition?: "left" | "right";
|
|
@@ -2279,9 +2321,10 @@ type StatusIndicatorSize = NonNullable<VariantProps<typeof statusIndicatorVarian
|
|
|
2279
2321
|
|
|
2280
2322
|
declare const statusIndicatorVariants: (props?: ({
|
|
2281
2323
|
variant?: "destructive" | "success" | "warning" | "info" | "error" | "neutral" | null | undefined;
|
|
2324
|
+
shape?: "dot" | "bar-vertical" | "bar-horizontal" | null | undefined;
|
|
2282
2325
|
size?: "default" | "xs" | "sm" | "lg" | "xl" | "2xl" | null | undefined;
|
|
2283
2326
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2284
|
-
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;
|
|
2285
2328
|
|
|
2286
2329
|
/**
|
|
2287
2330
|
* Tag style variants using CVA
|
|
@@ -2518,19 +2561,29 @@ type ThumbnailAspectRatio = "square" | "video" | "wide";
|
|
|
2518
2561
|
* Available border radius variants
|
|
2519
2562
|
*/
|
|
2520
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";
|
|
2521
2570
|
/**
|
|
2522
2571
|
* Thumbnail component props
|
|
2523
2572
|
*/
|
|
2524
2573
|
interface ThumbnailProps extends Omit<ComponentProps<"div">, "placeholder">, VariantProps<typeof thumbnailVariants> {
|
|
2525
2574
|
/**
|
|
2526
|
-
* Alternative text for accessibility (required)
|
|
2575
|
+
* Alternative text for accessibility (required when mode="image"; optional but recommended when mode="tint")
|
|
2527
2576
|
*/
|
|
2528
|
-
alt
|
|
2577
|
+
alt?: string;
|
|
2529
2578
|
/**
|
|
2530
2579
|
* Aspect ratio of the thumbnail
|
|
2531
2580
|
* @default "square"
|
|
2532
2581
|
*/
|
|
2533
2582
|
aspectRatio?: ThumbnailAspectRatio;
|
|
2583
|
+
/**
|
|
2584
|
+
* Children to render as overlays inside the thumbnail (Thumbnail.Tag, Thumbnail.PlayOverlay, etc).
|
|
2585
|
+
*/
|
|
2586
|
+
children?: ReactNode;
|
|
2534
2587
|
/**
|
|
2535
2588
|
* Whether the thumbnail is disabled
|
|
2536
2589
|
* @default false
|
|
@@ -2540,6 +2593,11 @@ interface ThumbnailProps extends Omit<ComponentProps<"div">, "placeholder">, Var
|
|
|
2540
2593
|
* Content to display when image fails to load
|
|
2541
2594
|
*/
|
|
2542
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;
|
|
2543
2601
|
/**
|
|
2544
2602
|
* Click handler for interactive thumbnails
|
|
2545
2603
|
*/
|
|
@@ -2564,9 +2622,13 @@ interface ThumbnailProps extends Omit<ComponentProps<"div">, "placeholder">, Var
|
|
|
2564
2622
|
*/
|
|
2565
2623
|
size?: ThumbnailSize;
|
|
2566
2624
|
/**
|
|
2567
|
-
* Image source URL
|
|
2625
|
+
* Image source URL. Required when `mode="image"`. Ignored when `mode="tint"`.
|
|
2568
2626
|
*/
|
|
2569
|
-
src
|
|
2627
|
+
src?: string;
|
|
2628
|
+
/**
|
|
2629
|
+
* CSS color used to fill the tile when `mode="tint"`. Required in tint mode.
|
|
2630
|
+
*/
|
|
2631
|
+
tint?: string;
|
|
2570
2632
|
}
|
|
2571
2633
|
/**
|
|
2572
2634
|
* Size type derived from thumbnailVariants
|
|
@@ -2583,34 +2645,76 @@ declare const thumbnailVariants: (props?: ({
|
|
|
2583
2645
|
rounded?: "none" | "default" | "sm" | "lg" | "full" | null | undefined;
|
|
2584
2646
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2585
2647
|
/**
|
|
2586
|
-
* Thumbnail - A small
|
|
2648
|
+
* Thumbnail - A small preview component with `image` (loads src) or `tint` (colored tile) modes.
|
|
2587
2649
|
*
|
|
2588
2650
|
* Features:
|
|
2651
|
+
* - Two modes: `image` (legacy — loads `src`) and `tint` (renders a colored tile)
|
|
2589
2652
|
* - Multiple size variants (xs, sm, default, lg, xl)
|
|
2590
2653
|
* - Aspect ratio control (square, video, wide)
|
|
2591
2654
|
* - Fallback content on error
|
|
2592
2655
|
* - Placeholder during loading
|
|
2593
2656
|
* - Click/select behavior for galleries
|
|
2594
2657
|
* - Selected and disabled states
|
|
2658
|
+
* - Sub-components for overlays: Thumbnail.Tag, Thumbnail.PlayOverlay, Thumbnail.Badge, Thumbnail.Checkbox, Thumbnail.Pin
|
|
2595
2659
|
*
|
|
2596
2660
|
* @example
|
|
2597
|
-
* //
|
|
2661
|
+
* // Image mode (legacy, backward compatible)
|
|
2598
2662
|
* <Thumbnail src="/photo.jpg" alt="Photo preview" />
|
|
2599
2663
|
*
|
|
2600
2664
|
* @example
|
|
2601
|
-
* //
|
|
2602
|
-
* <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>
|
|
2603
2670
|
*
|
|
2604
2671
|
* @example
|
|
2605
|
-
* //
|
|
2606
|
-
* <Thumbnail
|
|
2607
|
-
*
|
|
2608
|
-
*
|
|
2609
|
-
*
|
|
2610
|
-
*
|
|
2611
|
-
*
|
|
2612
|
-
*/
|
|
2613
|
-
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;
|
|
2614
2718
|
|
|
2615
2719
|
/**
|
|
2616
2720
|
* Toggle component props
|
|
@@ -6712,7 +6816,15 @@ type URLValidationIconVariantProps = VariantProps<typeof urlValidationIconVarian
|
|
|
6712
6816
|
* Container component for grouping related content
|
|
6713
6817
|
*/
|
|
6714
6818
|
declare const cardVariants: (props?: ({
|
|
6715
|
-
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;
|
|
6716
6828
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
6717
6829
|
/**
|
|
6718
6830
|
* CardHeader variant styles
|
|
@@ -6746,11 +6858,42 @@ declare const cardContentVariants: (props?: class_variance_authority_types.Class
|
|
|
6746
6858
|
declare const cardFooterVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
6747
6859
|
type CardVariantProps = VariantProps<typeof cardVariants>;
|
|
6748
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
|
+
}
|
|
6749
6872
|
/**
|
|
6750
6873
|
* Card component props
|
|
6751
6874
|
* Main container for grouping related content
|
|
6752
6875
|
*/
|
|
6753
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;
|
|
6754
6897
|
}
|
|
6755
6898
|
/**
|
|
6756
6899
|
* CardHeader component props
|
|
@@ -6793,7 +6936,10 @@ interface CardFooterProps extends ComponentProps<"div"> {
|
|
|
6793
6936
|
*/
|
|
6794
6937
|
type CardVariant = NonNullable<VariantProps<typeof cardVariants>["variant"]>;
|
|
6795
6938
|
|
|
6796
|
-
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;
|
|
6797
6943
|
declare function CardHeader({ className, ...props }: CardHeaderProps): react_jsx_runtime.JSX.Element;
|
|
6798
6944
|
declare function CardTitle({ className, ...props }: CardTitleProps): react_jsx_runtime.JSX.Element;
|
|
6799
6945
|
declare function CardDescription({ className, ...props }: CardDescriptionProps): react_jsx_runtime.JSX.Element;
|
|
@@ -8255,6 +8401,128 @@ type DropdownMenuItemVariantProps = VariantProps<typeof dropdownMenuItemVariants
|
|
|
8255
8401
|
type DropdownMenuSubTriggerVariantProps = VariantProps<typeof dropdownMenuSubTriggerVariants>;
|
|
8256
8402
|
type DropdownMenuLabelVariantProps = VariantProps<typeof dropdownMenuLabelVariants>;
|
|
8257
8403
|
|
|
8404
|
+
/**
|
|
8405
|
+
* Tree node — either a folder (with children) or a file (leaf).
|
|
8406
|
+
* `meta` is a free-form extension point for consumer-specific data
|
|
8407
|
+
* (file type, status, size, dam metadata, etc).
|
|
8408
|
+
*/
|
|
8409
|
+
interface FileTreeNode {
|
|
8410
|
+
/** Mark as currently selected (uncontrolled mode). */
|
|
8411
|
+
active?: boolean;
|
|
8412
|
+
/** Children — only meaningful when kind="folder". */
|
|
8413
|
+
children?: FileTreeNode[];
|
|
8414
|
+
/** Disabled state. */
|
|
8415
|
+
disabled?: boolean;
|
|
8416
|
+
kind: "file" | "folder";
|
|
8417
|
+
/** Free-form metadata: type, status, tags, etc. Read in render-props. */
|
|
8418
|
+
meta?: Record<string, unknown>;
|
|
8419
|
+
/** Modified indicator. */
|
|
8420
|
+
modified?: boolean;
|
|
8421
|
+
name: string;
|
|
8422
|
+
/** Initial open state (uncontrolled mode). */
|
|
8423
|
+
open?: boolean;
|
|
8424
|
+
/** Stable ID — used as React key + state key. Recommended: full path. */
|
|
8425
|
+
path: string;
|
|
8426
|
+
}
|
|
8427
|
+
interface FileTreeRowContext {
|
|
8428
|
+
depth: number;
|
|
8429
|
+
isActive: boolean;
|
|
8430
|
+
isExpanded: boolean;
|
|
8431
|
+
isFocused: boolean;
|
|
8432
|
+
isFolder: boolean;
|
|
8433
|
+
select: () => void;
|
|
8434
|
+
toggle: () => void;
|
|
8435
|
+
}
|
|
8436
|
+
interface FileTreeToggleEventPayload {
|
|
8437
|
+
next: boolean;
|
|
8438
|
+
path: string;
|
|
8439
|
+
timestamp: number;
|
|
8440
|
+
}
|
|
8441
|
+
interface FileTreeSelectEventPayload {
|
|
8442
|
+
node: FileTreeNode;
|
|
8443
|
+
path: string;
|
|
8444
|
+
timestamp: number;
|
|
8445
|
+
}
|
|
8446
|
+
type FileTreeVariant = "ide" | "notion" | "outline";
|
|
8447
|
+
type FileTreeSize = "default" | "lg" | "sm";
|
|
8448
|
+
interface FileTreeProps extends Omit<React$1.ComponentProps<"div">, "onSelect" | "onToggle"> {
|
|
8449
|
+
children?: React$1.ReactNode;
|
|
8450
|
+
/** Tree data root (or array of roots — we render its children). */
|
|
8451
|
+
data: FileTreeNode;
|
|
8452
|
+
/** Initial expand map (uncontrolled). Derived from `data.open` hints if omitted. */
|
|
8453
|
+
defaultExpanded?: Record<string, boolean>;
|
|
8454
|
+
/** Initial selected path (uncontrolled). */
|
|
8455
|
+
defaultSelectedPath?: string;
|
|
8456
|
+
/** Controlled expand map (path → boolean). */
|
|
8457
|
+
expanded?: Record<string, boolean>;
|
|
8458
|
+
/** Per-node attribute injector (data-tags, draggable, etc). */
|
|
8459
|
+
getNodeProps?: (node: FileTreeNode) => React$1.HTMLAttributes<HTMLDivElement>;
|
|
8460
|
+
/** Whether keyboard tree navigation is active. */
|
|
8461
|
+
keyboardNav?: boolean;
|
|
8462
|
+
/** Search input change. */
|
|
8463
|
+
onSearchChange?: (value: string) => void;
|
|
8464
|
+
/** Select handler (any row). */
|
|
8465
|
+
onSelect?: (path: string, payload: FileTreeSelectEventPayload) => void;
|
|
8466
|
+
/** Toggle handler (folder expand/collapse). */
|
|
8467
|
+
onToggle?: (path: string, next: boolean, payload: FileTreeToggleEventPayload) => void;
|
|
8468
|
+
/** Custom leading slot (folder icon, swatch, thumbnail, FolderStack). */
|
|
8469
|
+
renderLeading?: (node: FileTreeNode, ctx: FileTreeRowContext) => React$1.ReactNode;
|
|
8470
|
+
/** Custom row renderer — full control over row content. */
|
|
8471
|
+
renderRow?: (node: FileTreeNode, ctx: FileTreeRowContext) => React$1.ReactNode;
|
|
8472
|
+
/** Custom trailing slot (count, status, modified marker). */
|
|
8473
|
+
renderTrailing?: (node: FileTreeNode, ctx: FileTreeRowContext) => React$1.ReactNode;
|
|
8474
|
+
/** Search placeholder. */
|
|
8475
|
+
searchPlaceholder?: string;
|
|
8476
|
+
/** Controlled search input value. */
|
|
8477
|
+
searchValue?: string;
|
|
8478
|
+
/** Controlled selected path. */
|
|
8479
|
+
selectedPath?: string;
|
|
8480
|
+
size?: FileTreeSize;
|
|
8481
|
+
variant?: FileTreeVariant;
|
|
8482
|
+
}
|
|
8483
|
+
|
|
8484
|
+
declare const fileTreeShellVariants: (props?: ({
|
|
8485
|
+
variant?: "outline" | "ide" | "notion" | null | undefined;
|
|
8486
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
8487
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
8488
|
+
declare const fileTreeRowVariants: (props?: ({
|
|
8489
|
+
variant?: "outline" | "ide" | "notion" | null | undefined;
|
|
8490
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
8491
|
+
|
|
8492
|
+
declare function FileTreeHeader({ className, children, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element | null;
|
|
8493
|
+
declare function FileTreeProjectBadge({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
8494
|
+
declare function FileTreeProjectMeta({ name, sub }: {
|
|
8495
|
+
name: string;
|
|
8496
|
+
sub?: string;
|
|
8497
|
+
}): react_jsx_runtime.JSX.Element;
|
|
8498
|
+
declare function FileTreeToolbar({ className, children, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element | null;
|
|
8499
|
+
declare function FileTreeSearch({ shortcut, placeholder, value, onChange, }: {
|
|
8500
|
+
onChange?: (value: string) => void;
|
|
8501
|
+
placeholder?: string;
|
|
8502
|
+
shortcut?: string;
|
|
8503
|
+
value?: string;
|
|
8504
|
+
}): react_jsx_runtime.JSX.Element;
|
|
8505
|
+
declare function FileTreeAction({ icon, className, children, ...props }: React$1.ComponentProps<"button"> & {
|
|
8506
|
+
icon?: React$1.ReactNode;
|
|
8507
|
+
}): react_jsx_runtime.JSX.Element;
|
|
8508
|
+
declare function FileTreeBody({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
8509
|
+
declare function FileTreeFooter({ branch, indicator, children, }: {
|
|
8510
|
+
branch?: string;
|
|
8511
|
+
children?: React$1.ReactNode;
|
|
8512
|
+
indicator?: "dot" | "none";
|
|
8513
|
+
}): react_jsx_runtime.JSX.Element | null;
|
|
8514
|
+
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;
|
|
8515
|
+
declare namespace FileTree {
|
|
8516
|
+
var Header: typeof FileTreeHeader;
|
|
8517
|
+
var ProjectBadge: typeof FileTreeProjectBadge;
|
|
8518
|
+
var ProjectMeta: typeof FileTreeProjectMeta;
|
|
8519
|
+
var Toolbar: typeof FileTreeToolbar;
|
|
8520
|
+
var Search: typeof FileTreeSearch;
|
|
8521
|
+
var Action: typeof FileTreeAction;
|
|
8522
|
+
var Body: typeof FileTreeBody;
|
|
8523
|
+
var Footer: typeof FileTreeFooter;
|
|
8524
|
+
}
|
|
8525
|
+
|
|
8258
8526
|
/**
|
|
8259
8527
|
* Header layout per Figma — controla a posição/justificação dos slots Brand/Nav/Actions.
|
|
8260
8528
|
*
|
|
@@ -9756,6 +10024,80 @@ declare function SidebarRailButton({ isActive, tooltip, className, ...props }: S
|
|
|
9756
10024
|
* Collapses to width 0 when sidebar state is "collapsed".
|
|
9757
10025
|
*/
|
|
9758
10026
|
declare function SidebarPanelContent({ className, ...props }: SidebarPanelContentProps): react_jsx_runtime.JSX.Element;
|
|
10027
|
+
interface SidebarLogoProps extends Omit<React$1.ComponentProps<"div">, "onClick"> {
|
|
10028
|
+
brand?: string;
|
|
10029
|
+
collapseLabel?: string;
|
|
10030
|
+
mark?: React$1.ReactNode;
|
|
10031
|
+
onClick?: (event: React$1.MouseEvent) => void;
|
|
10032
|
+
showCollapse?: boolean;
|
|
10033
|
+
sub?: string;
|
|
10034
|
+
}
|
|
10035
|
+
/**
|
|
10036
|
+
* SidebarLogo — branding header inside `<SidebarHeader>`.
|
|
10037
|
+
*
|
|
10038
|
+
* Renders a logomark + brand name + (optional) sub line + (optional) collapse trigger.
|
|
10039
|
+
* Aligned with Figma node `Sidebar / Logo` (1087-323).
|
|
10040
|
+
*
|
|
10041
|
+
* Default `mark` is the Seven brand logo. Pass a custom `mark` to override.
|
|
10042
|
+
*
|
|
10043
|
+
* @example
|
|
10044
|
+
* <SidebarHeader>
|
|
10045
|
+
* <SidebarLogo brand="ETUS · DAM" showCollapse />
|
|
10046
|
+
* </SidebarHeader>
|
|
10047
|
+
*/
|
|
10048
|
+
declare function SidebarLogo({ mark, brand, sub, showCollapse, collapseLabel, onClick, className, ...props }: SidebarLogoProps): react_jsx_runtime.JSX.Element;
|
|
10049
|
+
interface SidebarAvatarProps {
|
|
10050
|
+
"aria-label"?: string;
|
|
10051
|
+
avatar?: React$1.ComponentProps<typeof Avatar>;
|
|
10052
|
+
className?: string;
|
|
10053
|
+
compact?: boolean;
|
|
10054
|
+
email?: string;
|
|
10055
|
+
name?: string;
|
|
10056
|
+
onClick?: (event: React$1.MouseEvent<HTMLButtonElement>) => void;
|
|
10057
|
+
showChevron?: boolean;
|
|
10058
|
+
}
|
|
10059
|
+
/**
|
|
10060
|
+
* SidebarAvatar — user-identity footer button inside `<SidebarFooter>`.
|
|
10061
|
+
*
|
|
10062
|
+
* Renders avatar + name + email + (optional) chevron, opens user menu on click.
|
|
10063
|
+
* Aligned with Figma node `Sidebar / Avatar` (1088-627).
|
|
10064
|
+
*
|
|
10065
|
+
* @example
|
|
10066
|
+
* <SidebarFooter>
|
|
10067
|
+
* <SidebarAvatar
|
|
10068
|
+
* avatar={{ initials: "CR", tone: "mint", size: "sm" }}
|
|
10069
|
+
* name="Camila Reis"
|
|
10070
|
+
* email="camila@etus.com.br"
|
|
10071
|
+
* onClick={() => userMenu.toggle()}
|
|
10072
|
+
* />
|
|
10073
|
+
* <SidebarThemeToggle />
|
|
10074
|
+
* </SidebarFooter>
|
|
10075
|
+
*/
|
|
10076
|
+
declare function SidebarAvatar({ avatar, name, email, showChevron, compact, onClick, className, "aria-label": ariaLabel, }: SidebarAvatarProps): react_jsx_runtime.JSX.Element;
|
|
10077
|
+
interface SidebarThemeToggleProps {
|
|
10078
|
+
className?: string;
|
|
10079
|
+
darkIcon?: React$1.ReactNode;
|
|
10080
|
+
label?: (mode: "dark" | "light") => string;
|
|
10081
|
+
lightIcon?: React$1.ReactNode;
|
|
10082
|
+
mode?: "dark" | "light";
|
|
10083
|
+
onToggle?: (next: "dark" | "light") => void;
|
|
10084
|
+
size?: "default" | "sm";
|
|
10085
|
+
}
|
|
10086
|
+
/**
|
|
10087
|
+
* SidebarThemeToggle — sun/moon button that flips `<html>` class between
|
|
10088
|
+
* `light` and `dark`. Use inside `<SidebarFooter>` next to `<SidebarAvatar>`.
|
|
10089
|
+
*
|
|
10090
|
+
* Aligned with Figma node `Sidebar / Color Mode Toggle` (1089-324).
|
|
10091
|
+
*
|
|
10092
|
+
* @example
|
|
10093
|
+
* // Uncontrolled — reads/writes html.classList + localStorage
|
|
10094
|
+
* <SidebarThemeToggle />
|
|
10095
|
+
*
|
|
10096
|
+
* @example
|
|
10097
|
+
* // Controlled
|
|
10098
|
+
* <SidebarThemeToggle mode={themeStore.mode} onToggle={themeStore.set} />
|
|
10099
|
+
*/
|
|
10100
|
+
declare function SidebarThemeToggle({ mode: controlledMode, onToggle, lightIcon, darkIcon, label, size, className, }: SidebarThemeToggleProps): react_jsx_runtime.JSX.Element;
|
|
9759
10101
|
|
|
9760
10102
|
/**
|
|
9761
10103
|
* SkipLink item definition
|
|
@@ -9830,7 +10172,7 @@ declare function SkipLinksList({ className, links, position, variant, ...props }
|
|
|
9830
10172
|
* SkipLink variant styles
|
|
9831
10173
|
*/
|
|
9832
10174
|
declare const skipLinkVariants: (props?: ({
|
|
9833
|
-
position?: "top-
|
|
10175
|
+
position?: "top-left" | "top-right" | "top-center" | null | undefined;
|
|
9834
10176
|
variant?: "default" | "primary" | null | undefined;
|
|
9835
10177
|
alwaysVisible?: boolean | null | undefined;
|
|
9836
10178
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -9842,7 +10184,7 @@ declare const skipLinksListVariants: (props?: class_variance_authority_types.Cla
|
|
|
9842
10184
|
* SkipLinksList inner container variant styles
|
|
9843
10185
|
*/
|
|
9844
10186
|
declare const skipLinksListInnerVariants: (props?: ({
|
|
9845
|
-
position?: "top-
|
|
10187
|
+
position?: "top-left" | "top-right" | "top-center" | null | undefined;
|
|
9846
10188
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
9847
10189
|
/**
|
|
9848
10190
|
* SkipLinksList item variant styles
|
|
@@ -10394,6 +10736,72 @@ declare function ToolbarSeparator({ className, ...props }: ToolbarSeparatorProps
|
|
|
10394
10736
|
*/
|
|
10395
10737
|
declare function ToolbarLink({ className, ...props }: ToolbarLinkProps): react_jsx_runtime.JSX.Element;
|
|
10396
10738
|
|
|
10739
|
+
/**
|
|
10740
|
+
* Topbar root props
|
|
10741
|
+
*/
|
|
10742
|
+
interface TopbarProps extends ComponentProps<"div"> {
|
|
10743
|
+
children: ReactNode;
|
|
10744
|
+
/** Visual variant — `default` for breadcrumb + actions row (56px), `filters` for filter-controls row (52px) */
|
|
10745
|
+
variant?: "default" | "filters";
|
|
10746
|
+
}
|
|
10747
|
+
/**
|
|
10748
|
+
* TopbarLeading props — left-aligned slot (typically Breadcrumb or page title)
|
|
10749
|
+
*/
|
|
10750
|
+
type TopbarLeadingProps = ComponentProps<"div">;
|
|
10751
|
+
/**
|
|
10752
|
+
* TopbarTrailing props — right-aligned slot (typically Search, AccountSwitch, filters)
|
|
10753
|
+
*/
|
|
10754
|
+
type TopbarTrailingProps = ComponentProps<"div">;
|
|
10755
|
+
|
|
10756
|
+
/**
|
|
10757
|
+
* Topbar — page-level horizontal bar combining a leading area (breadcrumb / title)
|
|
10758
|
+
* with a trailing area (search, account switcher, filters).
|
|
10759
|
+
*
|
|
10760
|
+
* Distinct from `Navbar` (primary site navigation) and `Header` (app chrome):
|
|
10761
|
+
* Topbar sits at the top of a content area to surface location + contextual actions.
|
|
10762
|
+
*
|
|
10763
|
+
* @example
|
|
10764
|
+
* <Topbar variant="default">
|
|
10765
|
+
* <TopbarLeading>
|
|
10766
|
+
* <Breadcrumb>...</Breadcrumb>
|
|
10767
|
+
* </TopbarLeading>
|
|
10768
|
+
* <TopbarTrailing>
|
|
10769
|
+
* <TextInput type="search" />
|
|
10770
|
+
* <AccountSwitch accounts={...} />
|
|
10771
|
+
* </TopbarTrailing>
|
|
10772
|
+
* </Topbar>
|
|
10773
|
+
*/
|
|
10774
|
+
declare function Topbar({ className, variant, children, ...props }: TopbarProps): react_jsx_runtime.JSX.Element;
|
|
10775
|
+
/**
|
|
10776
|
+
* TopbarLeading — left-aligned slot inside a Topbar.
|
|
10777
|
+
*/
|
|
10778
|
+
declare function TopbarLeading({ className, children, ...props }: TopbarLeadingProps): react_jsx_runtime.JSX.Element;
|
|
10779
|
+
/**
|
|
10780
|
+
* TopbarTrailing — right-aligned slot inside a Topbar.
|
|
10781
|
+
*/
|
|
10782
|
+
declare function TopbarTrailing({ className, children, ...props }: TopbarTrailingProps): react_jsx_runtime.JSX.Element;
|
|
10783
|
+
|
|
10784
|
+
/**
|
|
10785
|
+
* Topbar root variant styles.
|
|
10786
|
+
*
|
|
10787
|
+
* Figma: `Core Components — Seven > Topbar` (node 1403:15038).
|
|
10788
|
+
* All sizing/spacing/color values flow from `@etus/tokens` (`--topbar-*`) —
|
|
10789
|
+
* never hardcoded. Two variants share the same horizontal layout (breadcrumb
|
|
10790
|
+
* left, actions right), differing only in height.
|
|
10791
|
+
*/
|
|
10792
|
+
declare const topbarVariants: (props?: ({
|
|
10793
|
+
variant?: "default" | "filters" | null | undefined;
|
|
10794
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
10795
|
+
/**
|
|
10796
|
+
* TopbarLeading variant styles — left slot, typically holding a Breadcrumb.
|
|
10797
|
+
*/
|
|
10798
|
+
declare const topbarLeadingVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
10799
|
+
/**
|
|
10800
|
+
* TopbarTrailing variant styles — right slot, typically holding Search + AccountSwitch
|
|
10801
|
+
* (default variant) or DatePicker + Selects (filters variant).
|
|
10802
|
+
*/
|
|
10803
|
+
declare const topbarTrailingVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
10804
|
+
|
|
10397
10805
|
/**
|
|
10398
10806
|
* AccordionItem style variants using CVA
|
|
10399
10807
|
*
|
|
@@ -13445,12 +13853,30 @@ declare function ImageGallery({ aspectRatio, className, columns, enableLightbox,
|
|
|
13445
13853
|
declare function ItemGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
13446
13854
|
declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Divider>): react_jsx_runtime.JSX.Element;
|
|
13447
13855
|
declare const itemVariants: (props?: ({
|
|
13448
|
-
variant?: "default" | "muted" | "outline" | null | undefined;
|
|
13449
|
-
size?: "default" | "sm" | null | undefined;
|
|
13856
|
+
variant?: "default" | "muted" | "outline" | "active" | null | undefined;
|
|
13857
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
13858
|
+
interactive?: boolean | null | undefined;
|
|
13450
13859
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
13451
|
-
|
|
13860
|
+
interface ItemEventPayload {
|
|
13861
|
+
/** Whether the item is currently in active state */
|
|
13862
|
+
active: boolean;
|
|
13863
|
+
/** Reflects the `data-id` prop */
|
|
13864
|
+
id?: string;
|
|
13865
|
+
/** Event timestamp (Date.now()) */
|
|
13866
|
+
timestamp: number;
|
|
13867
|
+
}
|
|
13868
|
+
interface ItemProps extends Omit<React$1.ComponentProps<"div">, "onClick" | "onFocus" | "onKeyDown">, VariantProps<typeof itemVariants> {
|
|
13869
|
+
/** Shorthand for `variant="active"`. When both passed, `variant` wins. */
|
|
13870
|
+
active?: boolean;
|
|
13452
13871
|
asChild?: boolean;
|
|
13453
|
-
|
|
13872
|
+
/** Reflected to `data-id` and to the event payload. */
|
|
13873
|
+
"data-id"?: string;
|
|
13874
|
+
/** Click handler — receives the event + an ItemEventPayload. */
|
|
13875
|
+
onClick?: (event: React$1.MouseEvent<HTMLButtonElement | HTMLDivElement>, payload: ItemEventPayload) => void;
|
|
13876
|
+
onFocus?: (event: React$1.FocusEvent<HTMLButtonElement | HTMLDivElement>, payload: ItemEventPayload) => void;
|
|
13877
|
+
onKeyDown?: (event: React$1.KeyboardEvent<HTMLButtonElement | HTMLDivElement>, payload: ItemEventPayload) => void;
|
|
13878
|
+
}
|
|
13879
|
+
declare function Item({ className, variant, active, interactive, size, asChild, "data-id": dataId, onClick, onFocus, onKeyDown, ...props }: ItemProps): react_jsx_runtime.JSX.Element;
|
|
13454
13880
|
declare const itemMediaVariants: (props?: ({
|
|
13455
13881
|
variant?: "image" | "default" | "icon" | null | undefined;
|
|
13456
13882
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -18669,7 +19095,7 @@ declare const portalOverlayVariants: (props?: ({
|
|
|
18669
19095
|
* Used for centering or positioning portaled content
|
|
18670
19096
|
*/
|
|
18671
19097
|
declare const portalContentVariants: (props?: ({
|
|
18672
|
-
position?: "center" | "bottom" | "left" | "right" | "top" | "
|
|
19098
|
+
position?: "center" | "bottom" | "left" | "right" | "top" | "bottom-left" | "bottom-right" | "top-left" | "top-right" | null | undefined;
|
|
18673
19099
|
padding?: "none" | "sm" | "lg" | "md" | null | undefined;
|
|
18674
19100
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
18675
19101
|
|
|
@@ -22730,4 +23156,4 @@ declare function getColorClassName(color: ChartColor, type: ColorUtility): strin
|
|
|
22730
23156
|
*/
|
|
22731
23157
|
declare function getYAxisDomain(autoMinValue: boolean, minValue?: number, maxValue?: number): ["auto" | number, "auto" | number];
|
|
22732
23158
|
|
|
22733
|
-
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, 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, 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, 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, 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, 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, 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, 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, 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 };
|
|
23159
|
+
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 };
|