@org-design-system/components 0.1.4 → 0.1.6

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/README.md CHANGED
@@ -1,43 +1,50 @@
1
- # @org-design-system/components
1
+ # @org-design-system/components
2
2
 
3
- The core component library for the design system, built on **Tailwind CSS v4** and **Radix UI**.
3
+ The core UI component library for the Antaris Design System. Engineered with a focus on accessibility, customizability, and performance.
4
4
 
5
- ## 🎨 Design Philosophy
6
- - **Standardized**: Built using consolidated design tokens for total consistency.
7
- - **Compound Components**: Built using the `asChild` pattern for maximum flexibility.
8
- - **Type-Safe**: Enhanced IntelliSense using the `Prettify` utility for clear prop documentation.
5
+ ## 🏛️ Architecture
9
6
 
10
- ## ⚙️ Professional Integration (v0.1.7+)
7
+ Our components are built on top of a modern technology stack designed for the next decade of web development:
11
8
 
12
- We use a "bundled CSS" approach. When you install `@org-design-system/components`, it automatically brings along its own styles and the required tokens.
9
+ - **Radix UI**: Provides the accessible, unstyled foundation for complex primitives (Dialogs, Selects, Popovers, etc.).
10
+ - **Tailwind CSS v4**: Utilizes the latest CSS-in-CSS features, high-performance compilation, and native CSS variable integration.
11
+ - **CVA (Class Variance Authority)**: Manages component variants, sizes, and intents in a type-safe manner.
12
+ - **Lucide React**: Integrated as the default iconography engine.
13
13
 
14
- ### Setup
15
- In your main `globals.css`:
16
- ```css
17
- @import "tailwindcss"; /* Your local tailwind */
18
- @import "@org-design-system/components/index.css"; /* Our design system */
19
- ```
14
+ ## 🎨 Styling System
15
+
16
+ This package leverages the `@org-design-system/styles` engine. Components are not utility-heavy; instead, they use semantic abstraction:
17
+
18
+ - **Semantic Tokens**: We don't use `bg-blue-500`. We use `bg-[var(--color-surface-focus)]`.
19
+ - **Theme Integration**: All colors are defined in the OKLCH color space for superior visual consistency.
20
20
 
21
- ## 🛠️ Building Components
22
- Components are built using **CVA (Class Variance Authority)** to handle variants and intents.
21
+ ## 📦 Usage
22
+
23
+ While this package can be used standalone, it is recommended to consume it via the `org-design-system` metapackage.
23
24
 
24
- ### Example: Button
25
25
  ```tsx
26
- import { Button } from "@org-design-system/components";
27
-
28
- <Button
29
- variant="solid"
30
- intent="primary"
31
- size="lg"
32
- >
33
- Click Me
34
- </Button>
26
+ import { Button, Badge, Toggle } from "@org-design-system/components";
27
+
28
+ function MyComponent() {
29
+ return (
30
+ <Button variant="solid" intent="primary">
31
+ Professional Action
32
+ </Button>
33
+ );
34
+ }
35
35
  ```
36
36
 
37
- ## 🔧 Internal Setup
38
- - **Build**: `npm run build` (Generates JS and bundled CSS).
39
- - **Styles**: Defined in `src/index.css` which leverages Tailwind v4 `@theme`.
40
- - **Prettify**: A internal utility that makes VS Code hover menus much more readable by resolving complex TypeScript types.
37
+ ## 🛠️ Internal Development
38
+
39
+ ### Adding a New Component
40
+ 1. Create the component in `src/components/[name].tsx`.
41
+ 2. Export it from `src/index.ts`.
42
+ 3. Add a story in `apps/storybook` for testing.
43
+ 4. Run `npm run build` to generate the bundled CSS and JS.
44
+
45
+ ### Build Process
46
+ - uses `tsup` for bundling JS/TS.
47
+ - uses a custom sync process to bundle component-specific CSS into `dist/index.css`.
41
48
 
42
49
  ---
43
50
  *Built for the next generation of web applications.*
package/dist/index.d.mts CHANGED
@@ -45,11 +45,14 @@ declare function AvatarGroup({ className, ...props }: React$1.ComponentProps<"di
45
45
  declare function AvatarGroupCount({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
46
46
 
47
47
  declare const badgeVariants: (props?: ({
48
- variant?: "outline" | "ghost" | "link" | "default" | "secondary" | "destructive" | null | undefined;
48
+ variant?: "solid" | "soft" | "surface" | "outline" | null | undefined;
49
+ intent?: "primary" | "neutral" | "success" | "warning" | "error" | "info" | null | undefined;
50
+ size?: "lg" | "md" | "sm" | null | undefined;
49
51
  } & class_variance_authority_types.ClassProp) | undefined) => string;
50
- declare function Badge({ className, variant, asChild, ...props }: React$1.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & {
52
+ interface BadgeProps extends React$1.ComponentProps<"span">, VariantProps<typeof badgeVariants> {
51
53
  asChild?: boolean;
52
- }): react_jsx_runtime.JSX.Element;
54
+ }
55
+ declare function Badge({ className, variant, intent, size, asChild, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
53
56
 
54
57
  declare function Card({ className, size, ...props }: React$1.ComponentProps<"div"> & {
55
58
  size?: "default" | "sm";
package/dist/index.d.ts CHANGED
@@ -45,11 +45,14 @@ declare function AvatarGroup({ className, ...props }: React$1.ComponentProps<"di
45
45
  declare function AvatarGroupCount({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
46
46
 
47
47
  declare const badgeVariants: (props?: ({
48
- variant?: "outline" | "ghost" | "link" | "default" | "secondary" | "destructive" | null | undefined;
48
+ variant?: "solid" | "soft" | "surface" | "outline" | null | undefined;
49
+ intent?: "primary" | "neutral" | "success" | "warning" | "error" | "info" | null | undefined;
50
+ size?: "lg" | "md" | "sm" | null | undefined;
49
51
  } & class_variance_authority_types.ClassProp) | undefined) => string;
50
- declare function Badge({ className, variant, asChild, ...props }: React$1.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & {
52
+ interface BadgeProps extends React$1.ComponentProps<"span">, VariantProps<typeof badgeVariants> {
51
53
  asChild?: boolean;
52
- }): react_jsx_runtime.JSX.Element;
54
+ }
55
+ declare function Badge({ className, variant, intent, size, asChild, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
53
56
 
54
57
  declare function Card({ className, size, ...props }: React$1.ComponentProps<"div"> & {
55
58
  size?: "default" | "sm";
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- 'use strict';var radixUi=require('radix-ui'),clsx=require('clsx'),tailwindMerge=require('tailwind-merge'),classVarianceAuthority=require('class-variance-authority'),reactSlot=require('@radix-ui/react-slot'),jsxRuntime=require('react/jsx-runtime'),icons=require('@org-design-system/icons'),react=require('react');function t(...e){return tailwindMerge.twMerge(clsx.clsx(e))}var N=classVarianceAuthority.cva("group/button inline-flex shrink-0 items-center justify-center font-medium whitespace-nowrap transition-all outline-none select-none active:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0",{variants:{variant:{solid:"",soft:"",surface:"border",outline:"border bg-transparent",ghost:"bg-transparent",link:"bg-transparent underline-offset-4 hover:underline"},intent:{primary:"",neutral:"",success:"",warning:"",error:""},size:{xl:"h-12 px-[18px] text-base gap-2 rounded-[--radius-lg]",lg:"h-10 px-3.5 text-sm gap-1.5 rounded-[--radius-lg]",md:"h-9 px-3 text-sm gap-1 rounded-[--radius-md]",sm:"h-8 px-3 text-sm gap-1 rounded-[--radius-md]",xs:"h-6 px-1.5 text-xs gap-0.5 rounded-[--radius-md]",icon:"size-9 p-0"}},compoundVariants:[{variant:"solid",intent:"primary",className:"bg-[var(--color-blue-10)] text-white hover:bg-[var(--color-blue-9)]"},{variant:"solid",intent:"neutral",className:"bg-[var(--color-gray-12)] text-white hover:bg-[var(--color-gray-11)] dark:bg-[var(--color-gray-2)] dark:text-[var(--color-gray-12)] dark:hover:bg-[var(--color-gray-3)]"},{variant:"solid",intent:"success",className:"bg-[var(--color-green-9)] text-white hover:bg-[var(--color-green-10)]"},{variant:"solid",intent:"warning",className:"bg-[var(--color-yellow-9)] text-white hover:bg-[var(--color-yellow-10)]"},{variant:"solid",intent:"error",className:"bg-[var(--color-red-9)] text-white hover:bg-[var(--color-red-10)]"},{variant:"soft",intent:"primary",className:"bg-[var(--color-blue-alpha-2)] text-[var(--color-blue-11)] hover:bg-[var(--color-blue-alpha-3)]"},{variant:"soft",intent:"neutral",className:"bg-[var(--color-gray-alpha-2)] text-[var(--color-gray-12)] hover:bg-[var(--color-gray-alpha-3)]"},{variant:"soft",intent:"success",className:"bg-[var(--color-green-alpha-2)] text-[var(--color-green-11)] hover:bg-[var(--color-green-alpha-3)]"},{variant:"soft",intent:"warning",className:"bg-[var(--color-yellow-alpha-2)] text-[var(--color-yellow-11)] hover:bg-[var(--color-yellow-alpha-3)]"},{variant:"soft",intent:"error",className:"bg-[var(--color-red-alpha-2)] text-[var(--color-red-11)] hover:bg-[var(--color-red-alpha-3)]"},{variant:"outline",intent:"primary",className:"border-[var(--color-blue-alpha-4)] text-[var(--color-blue-11)] hover:bg-[var(--color-blue-alpha-2)]"},{variant:"outline",intent:"neutral",className:"border-[var(--color-gray-alpha-4)] text-[var(--color-gray-12)] hover:bg-[var(--color-gray-alpha-2)]"},{variant:"outline",intent:"success",className:"border-[var(--color-green-alpha-4)] text-[var(--color-green-11)] hover:bg-[var(--color-green-alpha-2)]"},{variant:"outline",intent:"warning",className:"border-[var(--color-yellow-alpha-4)] text-[var(--color-yellow-11)] hover:bg-[var(--color-yellow-alpha-2)]"},{variant:"outline",intent:"error",className:"border-[var(--color-red-alpha-4)] text-[var(--color-red-11)] hover:bg-[var(--color-red-alpha-2)]"},{variant:"ghost",intent:"primary",className:"text-[var(--color-blue-11)] hover:bg-[var(--color-blue-alpha-2)]"},{variant:"ghost",intent:"neutral",className:"text-[var(--color-gray-12)] hover:bg-[var(--color-gray-alpha-2)]"},{variant:"ghost",intent:"success",className:"text-[var(--color-green-11)] hover:bg-[var(--color-green-alpha-2)]"},{variant:"ghost",intent:"warning",className:"text-[var(--color-yellow-11)] hover:bg-[var(--color-yellow-alpha-2)]"},{variant:"ghost",intent:"error",className:"text-[var(--color-red-11)] hover:bg-[var(--color-red-alpha-2)]"}],defaultVariants:{variant:"solid",intent:"primary",size:"md"}});function b({className:e,variant:a,intent:o,size:d,asChild:s=false,leftIcon:i,rightIcon:P,children:w,...v}){return jsxRuntime.jsx(s?reactSlot.Slot:"button",{"data-slot":"button","data-variant":a,"data-intent":o,"data-size":d,className:t(N({variant:a,intent:o,size:d,className:e})),...v,children:s?w:jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[i&&jsxRuntime.jsx("span",{className:"inline-flex shrink-0",children:i}),w,P&&jsxRuntime.jsx("span",{className:"inline-flex shrink-0",children:P})]})})}function De({...e}){return jsxRuntime.jsx(radixUi.AlertDialog.Root,{"data-slot":"alert-dialog",...e})}function Fe({...e}){return jsxRuntime.jsx(radixUi.AlertDialog.Trigger,{"data-slot":"alert-dialog-trigger",...e})}function X({...e}){return jsxRuntime.jsx(radixUi.AlertDialog.Portal,{"data-slot":"alert-dialog-portal",...e})}function K({className:e,...a}){return jsxRuntime.jsx(radixUi.AlertDialog.Overlay,{"data-slot":"alert-dialog-overlay",className:t("fixed inset-0 z-50 bg-black/10 duration-100 supports-backdrop-filter:backdrop-blur-xs data-open:animate-in data-open:fade-in-0 data-closed:animate-out data-closed:fade-out-0",e),...a})}function Re({className:e,size:a="default",...o}){return jsxRuntime.jsxs(X,{children:[jsxRuntime.jsx(K,{}),jsxRuntime.jsx(radixUi.AlertDialog.Content,{"data-slot":"alert-dialog-content","data-size":a,className:t("group/alert-dialog-content fixed top-1/2 left-1/2 z-50 grid w-full -translate-x-1/2 -translate-y-1/2 gap-4 rounded-xl bg-background p-4 ring-1 ring-foreground/10 duration-100 outline-none data-[size=default]:max-w-xs data-[size=sm]:max-w-xs data-[size=default]:sm:max-w-sm data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",e),...o})]})}function Me({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"alert-dialog-header",className:t("grid grid-rows-[auto_1fr] place-items-center gap-1.5 text-center has-data-[slot=alert-dialog-media]:grid-rows-[auto_auto_1fr] has-data-[slot=alert-dialog-media]:gap-x-4 sm:group-data-[size=default]/alert-dialog-content:place-items-start sm:group-data-[size=default]/alert-dialog-content:text-left sm:group-data-[size=default]/alert-dialog-content:has-data-[slot=alert-dialog-media]:grid-rows-[auto_1fr]",e),...a})}function ye({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"alert-dialog-footer",className:t("-mx-4 -mb-4 flex flex-col-reverse gap-2 rounded-b-xl border-t bg-muted/50 p-4 group-data-[size=sm]/alert-dialog-content:grid group-data-[size=sm]/alert-dialog-content:grid-cols-2 sm:flex-row sm:justify-end",e),...a})}function Te({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"alert-dialog-media",className:t("mb-2 inline-flex size-10 items-center justify-center rounded-md bg-muted sm:group-data-[size=default]/alert-dialog-content:row-span-2 *:[svg:not([class*='size-'])]:size-6",e),...a})}function qe({className:e,...a}){return jsxRuntime.jsx(radixUi.AlertDialog.Title,{"data-slot":"alert-dialog-title",className:t("text-base font-medium sm:group-data-[size=default]/alert-dialog-content:group-has-data-[slot=alert-dialog-media]/alert-dialog-content:col-start-2",e),...a})}function Ue({className:e,...a}){return jsxRuntime.jsx(radixUi.AlertDialog.Description,{"data-slot":"alert-dialog-description",className:t("text-sm text-balance text-muted-foreground md:text-pretty *:[a]:underline *:[a]:underline-offset-3 *:[a]:hover:text-foreground",e),...a})}function Oe({className:e,variant:a="solid",size:o="md",...d}){return jsxRuntime.jsx(b,{variant:a,size:o,asChild:true,children:jsxRuntime.jsx(radixUi.AlertDialog.Action,{"data-slot":"alert-dialog-action",className:t(e),...d})})}function He({className:e,variant:a="outline",size:o="md",...d}){return jsxRuntime.jsx(b,{variant:a,size:o,asChild:true,children:jsxRuntime.jsx(radixUi.AlertDialog.Cancel,{"data-slot":"alert-dialog-cancel",className:t(e),...d})})}function We({className:e,size:a="default",...o}){return jsxRuntime.jsx(radixUi.Avatar.Root,{"data-slot":"avatar","data-size":a,className:t("group/avatar relative flex size-8 shrink-0 rounded-full select-none after:absolute after:inset-0 after:rounded-full after:border after:border-border after:mix-blend-darken data-[size=lg]:size-10 data-[size=sm]:size-6 dark:after:mix-blend-lighten",e),...o})}function Ee({className:e,...a}){return jsxRuntime.jsx(radixUi.Avatar.Image,{"data-slot":"avatar-image",className:t("aspect-square size-full rounded-full object-cover",e),...a})}function Xe({className:e,...a}){return jsxRuntime.jsx(radixUi.Avatar.Fallback,{"data-slot":"avatar-fallback",className:t("flex size-full items-center justify-center rounded-full bg-muted text-sm text-muted-foreground group-data-[size=sm]/avatar:text-xs",e),...a})}function Ke({className:e,...a}){return jsxRuntime.jsx("span",{"data-slot":"avatar-badge",className:t("absolute right-0 bottom-0 z-10 inline-flex items-center justify-center rounded-full bg-primary text-primary-foreground bg-blend-color ring-2 ring-background select-none","group-data-[size=sm]/avatar:size-2 group-data-[size=sm]/avatar:[&>svg]:hidden","group-data-[size=default]/avatar:size-2.5 group-data-[size=default]/avatar:[&>svg]:size-2","group-data-[size=lg]/avatar:size-3 group-data-[size=lg]/avatar:[&>svg]:size-2",e),...a})}function Ze({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"avatar-group",className:t("group/avatar-group flex -space-x-2 *:data-[slot=avatar]:ring-2 *:data-[slot=avatar]:ring-background",e),...a})}function Je({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"avatar-group-count",className:t("relative flex size-8 shrink-0 items-center justify-center rounded-full bg-muted text-sm text-muted-foreground ring-2 ring-background group-has-data-[size=lg]/avatar-group:size-10 group-has-data-[size=sm]/avatar-group:size-6 [&>svg]:size-4 group-has-data-[size=lg]/avatar-group:[&>svg]:size-5 group-has-data-[size=sm]/avatar-group:[&>svg]:size-3",e),...a})}var Q=classVarianceAuthority.cva("group/badge inline-flex h-5 w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-4xl border border-transparent px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-all focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&>svg]:pointer-events-none [&>svg]:size-3!",{variants:{variant:{default:"bg-primary text-primary-foreground [a]:hover:bg-primary/80",secondary:"bg-secondary text-secondary-foreground [a]:hover:bg-secondary/80",destructive:"bg-destructive/10 text-destructive focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:focus-visible:ring-destructive/40 [a]:hover:bg-destructive/20",outline:"border-border text-foreground [a]:hover:bg-muted [a]:hover:text-muted-foreground",ghost:"hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50",link:"text-primary underline-offset-4 hover:underline"}},defaultVariants:{variant:"default"}});function ea({className:e,variant:a="default",asChild:o=false,...d}){return jsxRuntime.jsx(o?reactSlot.Slot:"span",{"data-slot":"badge","data-variant":a,className:t(Q({variant:a}),e),...d})}function da({className:e,size:a="default",...o}){return jsxRuntime.jsx("div",{"data-slot":"card","data-size":a,className:t("group/card flex flex-col gap-4 overflow-hidden rounded-xl bg-card py-4 text-sm text-card-foreground ring-1 ring-foreground/10 has-data-[slot=card-footer]:pb-0 has-[>img:first-child]:pt-0 data-[size=sm]:gap-3 data-[size=sm]:py-3 data-[size=sm]:has-data-[slot=card-footer]:pb-0 *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl",e),...o})}function ua({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"card-header",className:t("group/card-header @container/card-header grid auto-rows-min items-start gap-1 rounded-t-xl px-4 group-data-[size=sm]/card:px-3 has-data-[slot=card-action]:grid-cols-[1fr_auto] has-data-[slot=card-description]:grid-rows-[auto_auto] [.border-b]:pb-4 group-data-[size=sm]/card:[.border-b]:pb-3",e),...a})}function la({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"card-title",className:t("text-base leading-snug font-medium group-data-[size=sm]/card:text-sm",e),...a})}function ra({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"card-description",className:t("text-sm text-muted-foreground",e),...a})}function sa({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"card-action",className:t("col-start-2 row-span-2 row-start-1 self-start justify-self-end",e),...a})}function fa({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"card-content",className:t("px-4 group-data-[size=sm]/card:px-3",e),...a})}function ia({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"card-footer",className:t("flex items-center rounded-b-xl border-t bg-muted/50 p-4 group-data-[size=sm]/card:p-3",e),...a})}function Ia({className:e,...a}){return jsxRuntime.jsx(radixUi.Checkbox.Root,{"data-slot":"checkbox",className:t("peer relative flex size-4 shrink-0 items-center justify-center rounded-sm border border-input transition-colors outline-none group-has-disabled/field:opacity-50 after:absolute after:-inset-x-3 after:-inset-y-2 focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 aria-invalid:aria-checked:border-primary dark:bg-input/30 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 data-checked:border-primary data-checked:bg-primary data-checked:text-primary-foreground dark:data-checked:bg-primary",e),...a,children:jsxRuntime.jsx(radixUi.Checkbox.Indicator,{"data-slot":"checkbox-indicator",className:"grid place-content-center text-current transition-none [&>svg]:size-3.5",children:jsxRuntime.jsx(icons.CheckIcon,{})})})}function ha({className:e,type:a,...o}){return jsxRuntime.jsx("input",{type:a,"data-slot":"input",className:t("h-8 w-full min-w-0 rounded-lg border border-input bg-transparent px-2.5 py-1 text-base transition-colors outline-none file:inline-flex file:h-6 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:pointer-events-none disabled:cursor-not-allowed disabled:bg-input/50 disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:bg-input/30 dark:disabled:bg-input/80 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40",e),...o})}function va({className:e,...a}){return jsxRuntime.jsx(radixUi.Label.Root,{"data-slot":"label",className:t("flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50",e),...a})}function Fa({...e}){return jsxRuntime.jsx(radixUi.Popover.Root,{"data-slot":"popover",...e})}function Ra({...e}){return jsxRuntime.jsx(radixUi.Popover.Trigger,{"data-slot":"popover-trigger",...e})}function Ma({className:e,align:a="center",sideOffset:o=4,...d}){return jsxRuntime.jsx(radixUi.Popover.Portal,{children:jsxRuntime.jsx(radixUi.Popover.Content,{"data-slot":"popover-content",align:a,sideOffset:o,className:t("z-50 flex w-72 origin-(--radix-popover-content-transform-origin) flex-col gap-2.5 rounded-lg bg-popover p-2.5 text-sm text-popover-foreground shadow-md ring-1 ring-foreground/10 outline-hidden duration-100 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",e),...d})})}function ya({...e}){return jsxRuntime.jsx(radixUi.Popover.Anchor,{"data-slot":"popover-anchor",...e})}function Ta({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"popover-header",className:t("flex flex-col gap-0.5 text-sm",e),...a})}function qa({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"popover-title",className:t("font-medium",e),...a})}function Ua({className:e,...a}){return jsxRuntime.jsx("p",{"data-slot":"popover-description",className:t("text-muted-foreground",e),...a})}var y=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),k=(...e)=>e.filter((a,o,d)=>!!a&&a.trim()!==""&&d.indexOf(a)===o).join(" ").trim();var T={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};var U=react.forwardRef(({color:e="currentColor",size:a=24,strokeWidth:o=2,absoluteStrokeWidth:d,className:s="",children:i,iconNode:P,...w},v)=>react.createElement("svg",{ref:v,...T,width:a,height:a,stroke:e,strokeWidth:d?Number(o)*24/Number(a):o,className:k("lucide",s),...w},[...P.map(([R,O])=>react.createElement(R,O)),...Array.isArray(i)?i:[i]]));var n=(e,a)=>{let o=react.forwardRef(({className:d,...s},i)=>react.createElement(U,{ref:i,iconNode:a,className:k(`lucide-${y(e)}`,d),...s}));return o.displayName=`${e}`,o};var ue=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],C=n("Check",ue);var le=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],I=n("ChevronDown",le);var re=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],h=n("ChevronUp",re);var se=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]],p=n("LoaderCircle",se);function ct({...e}){return jsxRuntime.jsx(radixUi.Select.Root,{"data-slot":"select",...e})}function nt({className:e,...a}){return jsxRuntime.jsx(radixUi.Select.Group,{"data-slot":"select-group",className:t("scroll-my-1 p-1",e),...a})}function pt({...e}){return jsxRuntime.jsx(radixUi.Select.Value,{"data-slot":"select-value",...e})}function mt({className:e,size:a="default",children:o,...d}){return jsxRuntime.jsxs(radixUi.Select.Trigger,{"data-slot":"select-trigger","data-size":a,className:t("flex w-fit items-center justify-between gap-1.5 rounded-lg border border-input bg-transparent py-2 pr-2 pl-2.5 text-sm whitespace-nowrap transition-colors outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 data-placeholder:text-muted-foreground data-[size=default]:h-8 data-[size=sm]:h-7 data-[size=sm]:rounded-[min(var(--radius-md),10px)] *:data-[slot=select-value]:line-clamp-1 *:data-[slot=select-value]:flex *:data-[slot=select-value]:items-center *:data-[slot=select-value]:gap-1.5 dark:bg-input/30 dark:hover:bg-input/50 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",e),...d,children:[o,jsxRuntime.jsx(radixUi.Select.Icon,{asChild:true,children:jsxRuntime.jsx(I,{className:"pointer-events-none size-4 text-muted-foreground"})})]})}function Lt({className:e,children:a,position:o="item-aligned",align:d="center",...s}){return jsxRuntime.jsx(radixUi.Select.Portal,{children:jsxRuntime.jsxs(radixUi.Select.Content,{"data-slot":"select-content","data-align-trigger":o==="item-aligned",className:t("relative z-50 max-h-(--radix-select-content-available-height) min-w-36 origin-(--radix-select-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-lg bg-popover text-popover-foreground shadow-md ring-1 ring-foreground/10 duration-100 data-[align-trigger=true]:animate-none data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",o==="popper"&&"data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",e),position:o,align:d,...s,children:[jsxRuntime.jsx(fe,{}),jsxRuntime.jsx(radixUi.Select.Viewport,{"data-position":o,className:t("data-[position=popper]:h-(--radix-select-trigger-height) data-[position=popper]:w-full data-[position=popper]:min-w-(--radix-select-trigger-width)",o==="popper"&&""),children:a}),jsxRuntime.jsx(ie,{})]})})}function It({className:e,...a}){return jsxRuntime.jsx(radixUi.Select.Label,{"data-slot":"select-label",className:t("px-1.5 py-1 text-xs text-muted-foreground",e),...a})}function xt({className:e,children:a,...o}){return jsxRuntime.jsxs(radixUi.Select.Item,{"data-slot":"select-item",className:t("relative flex w-full cursor-default items-center gap-1.5 rounded-md py-1 pr-8 pl-1.5 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground data-disabled:pointer-events-none data-disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 *:[span]:last:flex *:[span]:last:items-center *:[span]:last:gap-2",e),...o,children:[jsxRuntime.jsx("span",{className:"pointer-events-none absolute right-2 flex size-4 items-center justify-center",children:jsxRuntime.jsx(radixUi.Select.ItemIndicator,{children:jsxRuntime.jsx(C,{className:"pointer-events-none"})})}),jsxRuntime.jsx(radixUi.Select.ItemText,{children:a})]})}function gt({className:e,...a}){return jsxRuntime.jsx(radixUi.Select.Separator,{"data-slot":"select-separator",className:t("pointer-events-none -mx-1 my-1 h-px bg-border",e),...a})}function fe({className:e,...a}){return jsxRuntime.jsx(radixUi.Select.ScrollUpButton,{"data-slot":"select-scroll-up-button",className:t("z-10 flex cursor-default items-center justify-center bg-popover py-1 [&_svg:not([class*='size-'])]:size-4",e),...a,children:jsxRuntime.jsx(h,{})})}function ie({className:e,...a}){return jsxRuntime.jsx(radixUi.Select.ScrollDownButton,{"data-slot":"select-scroll-down-button",className:t("z-10 flex cursor-default items-center justify-center bg-popover py-1 [&_svg:not([class*='size-'])]:size-4",e),...a,children:jsxRuntime.jsx(I,{})})}function wt({className:e,...a}){return jsxRuntime.jsx(p,{role:"status","aria-label":"Loading",className:t("size-4 animate-spin",e),...a})}function bt({className:e,...a}){return jsxRuntime.jsx("textarea",{"data-slot":"textarea",className:t("flex field-sizing-content min-h-16 w-full rounded-lg border border-input bg-transparent px-2.5 py-2 text-base transition-colors outline-none placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:bg-input/50 disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:bg-input/30 dark:disabled:bg-input/80 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40",e),...a})}var Le=classVarianceAuthority.cva("group/toggle inline-flex items-center justify-center gap-1 rounded-lg text-sm font-medium whitespace-nowrap transition-all outline-none hover:bg-muted hover:text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 aria-pressed:bg-muted data-[state=on]:bg-muted dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",{variants:{variant:{default:"bg-transparent",outline:"border border-input bg-transparent hover:bg-muted"},size:{default:"h-8 min-w-8 px-2",sm:"h-7 min-w-7 rounded-[min(var(--radius-md),12px)] px-1.5 text-[0.8rem]",lg:"h-9 min-w-9 px-2.5"}},defaultVariants:{variant:"default",size:"default"}});function yt({className:e,variant:a="default",size:o="default",...d}){return jsxRuntime.jsx(radixUi.Toggle.Root,{"data-slot":"toggle",className:t(Le({variant:a,size:o,className:e})),...d})}function Ht({delayDuration:e=0,...a}){return jsxRuntime.jsx(radixUi.Tooltip.Provider,{"data-slot":"tooltip-provider",delayDuration:e,...a})}function zt({...e}){return jsxRuntime.jsx(radixUi.Tooltip.Root,{"data-slot":"tooltip",...e})}function Gt({...e}){return jsxRuntime.jsx(radixUi.Tooltip.Trigger,{"data-slot":"tooltip-trigger",...e})}function Vt({className:e,sideOffset:a=0,children:o,...d}){return jsxRuntime.jsx(radixUi.Tooltip.Portal,{children:jsxRuntime.jsxs(radixUi.Tooltip.Content,{"data-slot":"tooltip-content",sideOffset:a,className:t("z-50 inline-flex w-fit max-w-xs origin-(--radix-tooltip-content-transform-origin) items-center gap-1.5 rounded-md bg-foreground px-3 py-1.5 text-xs text-background has-data-[slot=kbd]:pr-1.5 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 **:data-[slot=kbd]:relative **:data-[slot=kbd]:isolate **:data-[slot=kbd]:z-50 **:data-[slot=kbd]:rounded-sm data-[state=delayed-open]:animate-in data-[state=delayed-open]:fade-in-0 data-[state=delayed-open]:zoom-in-95 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",e),...d,children:[o,jsxRuntime.jsx(radixUi.Tooltip.Arrow,{className:"z-50 size-2.5 translate-y-[calc(-50%_-_2px)] rotate-45 rounded-[2px] bg-foreground fill-foreground"})]})})}/*! Bundled license information:
1
+ 'use strict';var radixUi=require('radix-ui'),clsx=require('clsx'),tailwindMerge=require('tailwind-merge'),classVarianceAuthority=require('class-variance-authority'),reactSlot=require('@radix-ui/react-slot'),jsxRuntime=require('react/jsx-runtime'),icons=require('@org-design-system/icons'),react=require('react');function t(...e){return tailwindMerge.twMerge(clsx.clsx(e))}var N=classVarianceAuthority.cva("group/button inline-flex shrink-0 items-center justify-center font-medium whitespace-nowrap transition-all outline-none select-none active:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0",{variants:{variant:{solid:"",soft:"",surface:"border",outline:"border bg-transparent",ghost:"bg-transparent",link:"bg-transparent underline-offset-4 hover:underline"},intent:{primary:"",neutral:"",success:"",warning:"",error:""},size:{xl:"h-12 px-[18px] text-base gap-2 rounded-[var(--radius-lg)]",lg:"h-10 px-3.5 text-sm gap-1.5 rounded-[var(--radius-lg)]",md:"h-9 px-3 text-sm gap-1 rounded-[var(--radius-md)]",sm:"h-8 px-3 text-sm gap-1 rounded-[var(--radius-md)]",xs:"h-6 px-1.5 text-xs gap-0.5 rounded-[var(--radius-md)]",icon:"size-9 p-0 rounded-[var(--radius-md)]"}},compoundVariants:[{variant:"solid",intent:"primary",className:"bg-[var(--color-blue-10)] text-white hover:bg-[var(--color-blue-9)]"},{variant:"solid",intent:"neutral",className:"bg-[var(--color-gray-12)] text-white hover:bg-[var(--color-gray-11)] dark:bg-[var(--color-gray-2)] dark:text-[var(--color-gray-12)] dark:hover:bg-[var(--color-gray-3)]"},{variant:"solid",intent:"success",className:"bg-[var(--color-green-9)] text-white hover:bg-[var(--color-green-10)]"},{variant:"solid",intent:"warning",className:"bg-[var(--color-yellow-9)] text-white hover:bg-[var(--color-yellow-10)]"},{variant:"solid",intent:"error",className:"bg-[var(--color-red-9)] text-white hover:bg-[var(--color-red-10)]"},{variant:"soft",intent:"primary",className:"bg-[var(--color-blue-alpha-2)] text-[var(--color-blue-11)] hover:bg-[var(--color-blue-alpha-3)]"},{variant:"soft",intent:"neutral",className:"bg-[var(--color-gray-alpha-2)] text-[var(--color-gray-12)] hover:bg-[var(--color-gray-alpha-3)]"},{variant:"soft",intent:"success",className:"bg-[var(--color-green-alpha-2)] text-[var(--color-green-11)] hover:bg-[var(--color-green-alpha-3)]"},{variant:"soft",intent:"warning",className:"bg-[var(--color-yellow-alpha-2)] text-[var(--color-yellow-11)] hover:bg-[var(--color-yellow-alpha-3)]"},{variant:"soft",intent:"error",className:"bg-[var(--color-red-alpha-2)] text-[var(--color-red-11)] hover:bg-[var(--color-red-alpha-3)]"},{variant:"outline",intent:"primary",className:"border-[var(--color-blue-alpha-4)] text-[var(--color-blue-11)] hover:bg-[var(--color-blue-alpha-2)]"},{variant:"outline",intent:"neutral",className:"border-[var(--color-gray-alpha-4)] text-[var(--color-gray-12)] hover:bg-[var(--color-gray-alpha-2)]"},{variant:"outline",intent:"success",className:"border-[var(--color-green-alpha-4)] text-[var(--color-green-11)] hover:bg-[var(--color-green-alpha-2)]"},{variant:"outline",intent:"warning",className:"border-[var(--color-yellow-alpha-4)] text-[var(--color-yellow-11)] hover:bg-[var(--color-yellow-alpha-2)]"},{variant:"outline",intent:"error",className:"border-[var(--color-red-alpha-4)] text-[var(--color-red-11)] hover:bg-[var(--color-red-alpha-2)]"},{variant:"ghost",intent:"primary",className:"text-[var(--color-blue-11)] hover:bg-[var(--color-blue-alpha-2)]"},{variant:"ghost",intent:"neutral",className:"text-[var(--color-gray-12)] hover:bg-[var(--color-gray-alpha-2)]"},{variant:"ghost",intent:"success",className:"text-[var(--color-green-11)] hover:bg-[var(--color-green-alpha-2)]"},{variant:"ghost",intent:"warning",className:"text-[var(--color-yellow-11)] hover:bg-[var(--color-yellow-alpha-2)]"},{variant:"ghost",intent:"error",className:"text-[var(--color-red-11)] hover:bg-[var(--color-red-alpha-2)]"}],defaultVariants:{variant:"solid",intent:"primary",size:"md"}});function b({className:e,variant:a,intent:o,size:d,asChild:s=false,leftIcon:f,rightIcon:g,children:w,...v}){return jsxRuntime.jsx(s?reactSlot.Slot:"button",{"data-slot":"button","data-variant":a,"data-intent":o,"data-size":d,className:t(N({variant:a,intent:o,size:d,className:e})),...v,children:s?w:jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[f&&jsxRuntime.jsx("span",{className:"inline-flex shrink-0",children:f}),w,g&&jsxRuntime.jsx("span",{className:"inline-flex shrink-0",children:g})]})})}function De({...e}){return jsxRuntime.jsx(radixUi.AlertDialog.Root,{"data-slot":"alert-dialog",...e})}function Fe({...e}){return jsxRuntime.jsx(radixUi.AlertDialog.Trigger,{"data-slot":"alert-dialog-trigger",...e})}function X({...e}){return jsxRuntime.jsx(radixUi.AlertDialog.Portal,{"data-slot":"alert-dialog-portal",...e})}function K({className:e,...a}){return jsxRuntime.jsx(radixUi.AlertDialog.Overlay,{"data-slot":"alert-dialog-overlay",className:t("fixed inset-0 z-50 bg-black/10 duration-100 supports-backdrop-filter:backdrop-blur-xs data-open:animate-in data-open:fade-in-0 data-closed:animate-out data-closed:fade-out-0",e),...a})}function Re({className:e,size:a="default",...o}){return jsxRuntime.jsxs(X,{children:[jsxRuntime.jsx(K,{}),jsxRuntime.jsx(radixUi.AlertDialog.Content,{"data-slot":"alert-dialog-content","data-size":a,className:t("group/alert-dialog-content fixed top-1/2 left-1/2 z-50 grid w-full -translate-x-1/2 -translate-y-1/2 gap-4 rounded-xl bg-background p-4 ring-1 ring-foreground/10 duration-100 outline-none data-[size=default]:max-w-xs data-[size=sm]:max-w-xs data-[size=default]:sm:max-w-sm data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",e),...o})]})}function Me({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"alert-dialog-header",className:t("grid grid-rows-[auto_1fr] place-items-center gap-1.5 text-center has-data-[slot=alert-dialog-media]:grid-rows-[auto_auto_1fr] has-data-[slot=alert-dialog-media]:gap-x-4 sm:group-data-[size=default]/alert-dialog-content:place-items-start sm:group-data-[size=default]/alert-dialog-content:text-left sm:group-data-[size=default]/alert-dialog-content:has-data-[slot=alert-dialog-media]:grid-rows-[auto_1fr]",e),...a})}function ye({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"alert-dialog-footer",className:t("-mx-4 -mb-4 flex flex-col-reverse gap-2 rounded-b-xl border-t bg-muted/50 p-4 group-data-[size=sm]/alert-dialog-content:grid group-data-[size=sm]/alert-dialog-content:grid-cols-2 sm:flex-row sm:justify-end",e),...a})}function Te({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"alert-dialog-media",className:t("mb-2 inline-flex size-10 items-center justify-center rounded-md bg-muted sm:group-data-[size=default]/alert-dialog-content:row-span-2 *:[svg:not([class*='size-'])]:size-6",e),...a})}function qe({className:e,...a}){return jsxRuntime.jsx(radixUi.AlertDialog.Title,{"data-slot":"alert-dialog-title",className:t("text-base font-medium sm:group-data-[size=default]/alert-dialog-content:group-has-data-[slot=alert-dialog-media]/alert-dialog-content:col-start-2",e),...a})}function Ue({className:e,...a}){return jsxRuntime.jsx(radixUi.AlertDialog.Description,{"data-slot":"alert-dialog-description",className:t("text-sm text-balance text-muted-foreground md:text-pretty *:[a]:underline *:[a]:underline-offset-3 *:[a]:hover:text-foreground",e),...a})}function Oe({className:e,variant:a="solid",size:o="md",...d}){return jsxRuntime.jsx(b,{variant:a,size:o,asChild:true,children:jsxRuntime.jsx(radixUi.AlertDialog.Action,{"data-slot":"alert-dialog-action",className:t(e),...d})})}function He({className:e,variant:a="outline",size:o="md",...d}){return jsxRuntime.jsx(b,{variant:a,size:o,asChild:true,children:jsxRuntime.jsx(radixUi.AlertDialog.Cancel,{"data-slot":"alert-dialog-cancel",className:t(e),...d})})}function We({className:e,size:a="default",...o}){return jsxRuntime.jsx(radixUi.Avatar.Root,{"data-slot":"avatar","data-size":a,className:t("group/avatar relative flex size-8 shrink-0 rounded-full select-none after:absolute after:inset-0 after:rounded-full after:border after:border-border after:mix-blend-darken data-[size=lg]:size-10 data-[size=sm]:size-6 dark:after:mix-blend-lighten",e),...o})}function Ee({className:e,...a}){return jsxRuntime.jsx(radixUi.Avatar.Image,{"data-slot":"avatar-image",className:t("aspect-square size-full rounded-full object-cover",e),...a})}function Xe({className:e,...a}){return jsxRuntime.jsx(radixUi.Avatar.Fallback,{"data-slot":"avatar-fallback",className:t("flex size-full items-center justify-center rounded-full bg-muted text-sm text-muted-foreground group-data-[size=sm]/avatar:text-xs",e),...a})}function Ke({className:e,...a}){return jsxRuntime.jsx("span",{"data-slot":"avatar-badge",className:t("absolute right-0 bottom-0 z-10 inline-flex items-center justify-center rounded-full bg-primary text-primary-foreground bg-blend-color ring-2 ring-background select-none","group-data-[size=sm]/avatar:size-2 group-data-[size=sm]/avatar:[&>svg]:hidden","group-data-[size=default]/avatar:size-2.5 group-data-[size=default]/avatar:[&>svg]:size-2","group-data-[size=lg]/avatar:size-3 group-data-[size=lg]/avatar:[&>svg]:size-2",e),...a})}function Ze({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"avatar-group",className:t("group/avatar-group flex -space-x-2 *:data-[slot=avatar]:ring-2 *:data-[slot=avatar]:ring-background",e),...a})}function Je({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"avatar-group-count",className:t("relative flex size-8 shrink-0 items-center justify-center rounded-full bg-muted text-sm text-muted-foreground ring-2 ring-background group-has-data-[size=lg]/avatar-group:size-10 group-has-data-[size=sm]/avatar-group:size-6 [&>svg]:size-4 group-has-data-[size=lg]/avatar-group:[&>svg]:size-5 group-has-data-[size=sm]/avatar-group:[&>svg]:size-3",e),...a})}var Q=classVarianceAuthority.cva("inline-flex items-center justify-center gap-1 font-medium transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",{variants:{variant:{solid:"border-transparent",soft:"border-transparent text-foreground",surface:"border",outline:"border bg-transparent"},intent:{primary:"",success:"",warning:"",error:"",info:"",neutral:""},size:{sm:"h-5 px-1 py-0.5 text-[10px] min-w-[20px] rounded-[var(--radius-md)]",md:"h-6 px-1.5 py-1 text-[12px] min-w-[24px] rounded-[var(--radius-md)]",lg:"h-6 px-1.5 py-1 text-[13px] min-w-[24px] rounded-[var(--radius-md)]"}},compoundVariants:[{variant:"solid",intent:"primary",className:"bg-[var(--color-surface-focus)] text-[var(--color-text-focus-subtle)]"},{variant:"soft",intent:"primary",className:"bg-[var(--color-surface-selected)] text-[var(--color-text-focus)]"},{variant:"surface",intent:"primary",className:"bg-[var(--color-surface-selected)] border-[var(--color-stroke-selected)] text-[var(--color-text-focus)]"},{variant:"outline",intent:"primary",className:"border-[var(--color-stroke-selected)] text-[var(--color-text-focus)]"},{variant:"solid",intent:"success",className:"bg-[var(--color-surface-success)] text-white"},{variant:"soft",intent:"success",className:"bg-[var(--color-green-alpha-2)] text-[var(--color-text-selected)]"},{variant:"surface",intent:"success",className:"bg-[var(--color-green-alpha-2)] border-[var(--color-stroke-success)] text-[var(--color-text-selected)]"},{variant:"outline",intent:"success",className:"border-[var(--color-stroke-success)] text-[var(--color-text-selected)]"},{variant:"solid",intent:"warning",className:"bg-[var(--color-surface-warnig)] text-black"},{variant:"soft",intent:"warning",className:"bg-[var(--color-yellow-alpha-1)] text-[var(--color-text-warning)]"},{variant:"surface",intent:"warning",className:"bg-[var(--color-yellow-alpha-1)] border-[var(--color-stroke-warning)] text-[var(--color-text-warning)]"},{variant:"outline",intent:"warning",className:"border-[var(--color-stroke-warning)] text-[var(--color-text-warning)]"},{variant:"solid",intent:"error",className:"bg-[var(--color-surface-error)] text-white"},{variant:"soft",intent:"error",className:"bg-[var(--color-red-alpha-1)] text-[var(--color-text-error)]"},{variant:"surface",intent:"error",className:"bg-[var(--color-red-alpha-1)] border-[var(--color-stroke-error)] text-[var(--color-text-error)]"},{variant:"outline",intent:"error",className:"border-[var(--color-stroke-error)] text-[var(--color-text-error)]"},{variant:"solid",intent:"info",className:"bg-[var(--color-surface-info)] text-white"},{variant:"soft",intent:"info",className:"bg-[var(--color-blue-alpha-1)] text-[var(--color-text-info)]"},{variant:"surface",intent:"info",className:"bg-[var(--color-blue-alpha-1)] border-[var(--color-stroke-info)] text-[var(--color-text-info)]"},{variant:"outline",intent:"info",className:"border-[var(--color-stroke-info)] text-[var(--color-text-info)]"},{variant:"solid",intent:"neutral",className:"bg-[var(--color-gray-9)] text-white"},{variant:"soft",intent:"neutral",className:"bg-[var(--color-gray-alpha-3)] text-[var(--color-text-primary)]"},{variant:"surface",intent:"neutral",className:"bg-[var(--color-gray-alpha-3)] border-[var(--color-stroke-primary)] text-[var(--color-text-primary)]"},{variant:"outline",intent:"neutral",className:"border-[var(--color-stroke-primary)] text-[var(--color-text-secondary)]"}],defaultVariants:{variant:"soft",intent:"neutral",size:"md"}});function ea({className:e,variant:a,intent:o,size:d,asChild:s=false,...f}){return jsxRuntime.jsx(s?reactSlot.Slot:"span",{"data-slot":"badge",className:t(Q({variant:a,intent:o,size:d}),e),...f})}function da({className:e,size:a="default",...o}){return jsxRuntime.jsx("div",{"data-slot":"card","data-size":a,className:t("group/card flex flex-col gap-4 overflow-hidden rounded-xl bg-card py-4 text-sm text-card-foreground ring-1 ring-foreground/10 has-data-[slot=card-footer]:pb-0 has-[>img:first-child]:pt-0 data-[size=sm]:gap-3 data-[size=sm]:py-3 data-[size=sm]:has-data-[slot=card-footer]:pb-0 *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl",e),...o})}function la({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"card-header",className:t("group/card-header @container/card-header grid auto-rows-min items-start gap-1 rounded-t-xl px-4 group-data-[size=sm]/card:px-3 has-data-[slot=card-action]:grid-cols-[1fr_auto] has-data-[slot=card-description]:grid-rows-[auto_auto] [.border-b]:pb-4 group-data-[size=sm]/card:[.border-b]:pb-3",e),...a})}function ua({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"card-title",className:t("text-base leading-snug font-medium group-data-[size=sm]/card:text-sm",e),...a})}function ra({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"card-description",className:t("text-sm text-muted-foreground",e),...a})}function sa({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"card-action",className:t("col-start-2 row-span-2 row-start-1 self-start justify-self-end",e),...a})}function fa({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"card-content",className:t("px-4 group-data-[size=sm]/card:px-3",e),...a})}function ia({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"card-footer",className:t("flex items-center rounded-b-xl border-t bg-muted/50 p-4 group-data-[size=sm]/card:p-3",e),...a})}function xa({className:e,...a}){return jsxRuntime.jsx(radixUi.Checkbox.Root,{"data-slot":"checkbox",className:t("peer relative flex size-4 shrink-0 items-center justify-center rounded-sm border border-input transition-colors outline-none group-has-disabled/field:opacity-50 after:absolute after:-inset-x-3 after:-inset-y-2 focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 aria-invalid:aria-checked:border-primary dark:bg-input/30 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 data-checked:border-primary data-checked:bg-primary data-checked:text-primary-foreground dark:data-checked:bg-primary",e),...a,children:jsxRuntime.jsx(radixUi.Checkbox.Indicator,{"data-slot":"checkbox-indicator",className:"grid place-content-center text-current transition-none [&>svg]:size-3.5",children:jsxRuntime.jsx(icons.CheckIcon,{})})})}function ha({className:e,type:a,...o}){return jsxRuntime.jsx("input",{type:a,"data-slot":"input",className:t("h-8 w-full min-w-0 rounded-lg border border-input bg-transparent px-2.5 py-1 text-base transition-colors outline-none file:inline-flex file:h-6 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:pointer-events-none disabled:cursor-not-allowed disabled:bg-input/50 disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:bg-input/30 dark:disabled:bg-input/80 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40",e),...o})}function va({className:e,...a}){return jsxRuntime.jsx(radixUi.Label.Root,{"data-slot":"label",className:t("flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50",e),...a})}function Fa({...e}){return jsxRuntime.jsx(radixUi.Popover.Root,{"data-slot":"popover",...e})}function Ra({...e}){return jsxRuntime.jsx(radixUi.Popover.Trigger,{"data-slot":"popover-trigger",...e})}function Ma({className:e,align:a="center",sideOffset:o=4,...d}){return jsxRuntime.jsx(radixUi.Popover.Portal,{children:jsxRuntime.jsx(radixUi.Popover.Content,{"data-slot":"popover-content",align:a,sideOffset:o,className:t("z-50 flex w-72 origin-(--radix-popover-content-transform-origin) flex-col gap-2.5 rounded-lg bg-popover p-2.5 text-sm text-popover-foreground shadow-md ring-1 ring-foreground/10 outline-hidden duration-100 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",e),...d})})}function ya({...e}){return jsxRuntime.jsx(radixUi.Popover.Anchor,{"data-slot":"popover-anchor",...e})}function Ta({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"popover-header",className:t("flex flex-col gap-0.5 text-sm",e),...a})}function qa({className:e,...a}){return jsxRuntime.jsx("div",{"data-slot":"popover-title",className:t("font-medium",e),...a})}function Ua({className:e,...a}){return jsxRuntime.jsx("p",{"data-slot":"popover-description",className:t("text-muted-foreground",e),...a})}var y=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),k=(...e)=>e.filter((a,o,d)=>!!a&&a.trim()!==""&&d.indexOf(a)===o).join(" ").trim();var T={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};var U=react.forwardRef(({color:e="currentColor",size:a=24,strokeWidth:o=2,absoluteStrokeWidth:d,className:s="",children:f,iconNode:g,...w},v)=>react.createElement("svg",{ref:v,...T,width:a,height:a,stroke:e,strokeWidth:d?Number(o)*24/Number(a):o,className:k("lucide",s),...w},[...g.map(([R,O])=>react.createElement(R,O)),...Array.isArray(f)?f:[f]]));var c=(e,a)=>{let o=react.forwardRef(({className:d,...s},f)=>react.createElement(U,{ref:f,iconNode:a,className:k(`lucide-${y(e)}`,d),...s}));return o.displayName=`${e}`,o};var le=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],h=c("Check",le);var ue=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],x=c("ChevronDown",ue);var re=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],S=c("ChevronUp",re);var se=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]],p=c("LoaderCircle",se);function nt({...e}){return jsxRuntime.jsx(radixUi.Select.Root,{"data-slot":"select",...e})}function ct({className:e,...a}){return jsxRuntime.jsx(radixUi.Select.Group,{"data-slot":"select-group",className:t("scroll-my-1 p-1",e),...a})}function pt({...e}){return jsxRuntime.jsx(radixUi.Select.Value,{"data-slot":"select-value",...e})}function mt({className:e,size:a="default",children:o,...d}){return jsxRuntime.jsxs(radixUi.Select.Trigger,{"data-slot":"select-trigger","data-size":a,className:t("flex w-fit items-center justify-between gap-1.5 rounded-lg border border-input bg-transparent py-2 pr-2 pl-2.5 text-sm whitespace-nowrap transition-colors outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 data-placeholder:text-muted-foreground data-[size=default]:h-8 data-[size=sm]:h-7 data-[size=sm]:rounded-[min(var(--radius-md),10px)] *:data-[slot=select-value]:line-clamp-1 *:data-[slot=select-value]:flex *:data-[slot=select-value]:items-center *:data-[slot=select-value]:gap-1.5 dark:bg-input/30 dark:hover:bg-input/50 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",e),...d,children:[o,jsxRuntime.jsx(radixUi.Select.Icon,{asChild:true,children:jsxRuntime.jsx(x,{className:"pointer-events-none size-4 text-muted-foreground"})})]})}function Lt({className:e,children:a,position:o="item-aligned",align:d="center",...s}){return jsxRuntime.jsx(radixUi.Select.Portal,{children:jsxRuntime.jsxs(radixUi.Select.Content,{"data-slot":"select-content","data-align-trigger":o==="item-aligned",className:t("relative z-50 max-h-(--radix-select-content-available-height) min-w-36 origin-(--radix-select-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-lg bg-popover text-popover-foreground shadow-md ring-1 ring-foreground/10 duration-100 data-[align-trigger=true]:animate-none data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",o==="popper"&&"data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",e),position:o,align:d,...s,children:[jsxRuntime.jsx(fe,{}),jsxRuntime.jsx(radixUi.Select.Viewport,{"data-position":o,className:t("data-[position=popper]:h-(--radix-select-trigger-height) data-[position=popper]:w-full data-[position=popper]:min-w-(--radix-select-trigger-width)",o==="popper"&&""),children:a}),jsxRuntime.jsx(ie,{})]})})}function xt({className:e,...a}){return jsxRuntime.jsx(radixUi.Select.Label,{"data-slot":"select-label",className:t("px-1.5 py-1 text-xs text-muted-foreground",e),...a})}function It({className:e,children:a,...o}){return jsxRuntime.jsxs(radixUi.Select.Item,{"data-slot":"select-item",className:t("relative flex w-full cursor-default items-center gap-1.5 rounded-md py-1 pr-8 pl-1.5 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground data-disabled:pointer-events-none data-disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 *:[span]:last:flex *:[span]:last:items-center *:[span]:last:gap-2",e),...o,children:[jsxRuntime.jsx("span",{className:"pointer-events-none absolute right-2 flex size-4 items-center justify-center",children:jsxRuntime.jsx(radixUi.Select.ItemIndicator,{children:jsxRuntime.jsx(h,{className:"pointer-events-none"})})}),jsxRuntime.jsx(radixUi.Select.ItemText,{children:a})]})}function gt({className:e,...a}){return jsxRuntime.jsx(radixUi.Select.Separator,{"data-slot":"select-separator",className:t("pointer-events-none -mx-1 my-1 h-px bg-border",e),...a})}function fe({className:e,...a}){return jsxRuntime.jsx(radixUi.Select.ScrollUpButton,{"data-slot":"select-scroll-up-button",className:t("z-10 flex cursor-default items-center justify-center bg-popover py-1 [&_svg:not([class*='size-'])]:size-4",e),...a,children:jsxRuntime.jsx(S,{})})}function ie({className:e,...a}){return jsxRuntime.jsx(radixUi.Select.ScrollDownButton,{"data-slot":"select-scroll-down-button",className:t("z-10 flex cursor-default items-center justify-center bg-popover py-1 [&_svg:not([class*='size-'])]:size-4",e),...a,children:jsxRuntime.jsx(x,{})})}function wt({className:e,...a}){return jsxRuntime.jsx(p,{role:"status","aria-label":"Loading",className:t("size-4 animate-spin",e),...a})}function bt({className:e,...a}){return jsxRuntime.jsx("textarea",{"data-slot":"textarea",className:t("flex field-sizing-content min-h-16 w-full rounded-lg border border-input bg-transparent px-2.5 py-2 text-base transition-colors outline-none placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:bg-input/50 disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:bg-input/30 dark:disabled:bg-input/80 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40",e),...a})}var Le=classVarianceAuthority.cva("group/toggle inline-flex items-center justify-center gap-1 rounded-lg text-sm font-medium whitespace-nowrap transition-all outline-none hover:bg-muted hover:text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 aria-pressed:bg-muted data-[state=on]:bg-muted dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",{variants:{variant:{default:"bg-transparent",outline:"border border-input bg-transparent hover:bg-muted"},size:{default:"h-8 min-w-8 px-2",sm:"h-7 min-w-7 rounded-[min(var(--radius-md),12px)] px-1.5 text-[0.8rem]",lg:"h-9 min-w-9 px-2.5"}},defaultVariants:{variant:"default",size:"default"}});function yt({className:e,variant:a="default",size:o="default",...d}){return jsxRuntime.jsx(radixUi.Toggle.Root,{"data-slot":"toggle",className:t(Le({variant:a,size:o,className:e})),...d})}function Ht({delayDuration:e=0,...a}){return jsxRuntime.jsx(radixUi.Tooltip.Provider,{"data-slot":"tooltip-provider",delayDuration:e,...a})}function zt({...e}){return jsxRuntime.jsx(radixUi.Tooltip.Root,{"data-slot":"tooltip",...e})}function Gt({...e}){return jsxRuntime.jsx(radixUi.Tooltip.Trigger,{"data-slot":"tooltip-trigger",...e})}function Vt({className:e,sideOffset:a=0,children:o,...d}){return jsxRuntime.jsx(radixUi.Tooltip.Portal,{children:jsxRuntime.jsxs(radixUi.Tooltip.Content,{"data-slot":"tooltip-content",sideOffset:a,className:t("z-50 inline-flex w-fit max-w-xs origin-(--radix-tooltip-content-transform-origin) items-center gap-1.5 rounded-md bg-foreground px-3 py-1.5 text-xs text-background has-data-[slot=kbd]:pr-1.5 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 **:data-[slot=kbd]:relative **:data-[slot=kbd]:isolate **:data-[slot=kbd]:z-50 **:data-[slot=kbd]:rounded-sm data-[state=delayed-open]:animate-in data-[state=delayed-open]:fade-in-0 data-[state=delayed-open]:zoom-in-95 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",e),...d,children:[o,jsxRuntime.jsx(radixUi.Tooltip.Arrow,{className:"z-50 size-2.5 translate-y-[calc(-50%_-_2px)] rotate-45 rounded-[2px] bg-foreground fill-foreground"})]})})}/*! Bundled license information:
2
2
 
3
3
  lucide-react/dist/esm/shared/src/utils.js:
4
4
  lucide-react/dist/esm/defaultAttributes.js:
@@ -15,5 +15,5 @@ lucide-react/dist/esm/lucide-react.js:
15
15
  * This source code is licensed under the ISC license.
16
16
  * See the LICENSE file in the root directory of this source tree.
17
17
  *)
18
- */exports.AlertDialog=De;exports.AlertDialogAction=Oe;exports.AlertDialogCancel=He;exports.AlertDialogContent=Re;exports.AlertDialogDescription=Ue;exports.AlertDialogFooter=ye;exports.AlertDialogHeader=Me;exports.AlertDialogMedia=Te;exports.AlertDialogOverlay=K;exports.AlertDialogPortal=X;exports.AlertDialogTitle=qe;exports.AlertDialogTrigger=Fe;exports.Avatar=We;exports.AvatarBadge=Ke;exports.AvatarFallback=Xe;exports.AvatarGroup=Ze;exports.AvatarGroupCount=Je;exports.AvatarImage=Ee;exports.Badge=ea;exports.Button=b;exports.Card=da;exports.CardAction=sa;exports.CardContent=fa;exports.CardDescription=ra;exports.CardFooter=ia;exports.CardHeader=ua;exports.CardTitle=la;exports.Checkbox=Ia;exports.Input=ha;exports.Label=va;exports.Popover=Fa;exports.PopoverAnchor=ya;exports.PopoverContent=Ma;exports.PopoverDescription=Ua;exports.PopoverHeader=Ta;exports.PopoverTitle=qa;exports.PopoverTrigger=Ra;exports.Select=ct;exports.SelectContent=Lt;exports.SelectGroup=nt;exports.SelectItem=xt;exports.SelectLabel=It;exports.SelectScrollDownButton=ie;exports.SelectScrollUpButton=fe;exports.SelectSeparator=gt;exports.SelectTrigger=mt;exports.SelectValue=pt;exports.Spinner=wt;exports.Textarea=bt;exports.Toggle=yt;exports.Tooltip=zt;exports.TooltipContent=Vt;exports.TooltipProvider=Ht;exports.TooltipTrigger=Gt;exports.badgeVariants=Q;exports.buttonVariants=N;exports.cn=t;exports.toggleVariants=Le;//# sourceMappingURL=index.js.map
18
+ */exports.AlertDialog=De;exports.AlertDialogAction=Oe;exports.AlertDialogCancel=He;exports.AlertDialogContent=Re;exports.AlertDialogDescription=Ue;exports.AlertDialogFooter=ye;exports.AlertDialogHeader=Me;exports.AlertDialogMedia=Te;exports.AlertDialogOverlay=K;exports.AlertDialogPortal=X;exports.AlertDialogTitle=qe;exports.AlertDialogTrigger=Fe;exports.Avatar=We;exports.AvatarBadge=Ke;exports.AvatarFallback=Xe;exports.AvatarGroup=Ze;exports.AvatarGroupCount=Je;exports.AvatarImage=Ee;exports.Badge=ea;exports.Button=b;exports.Card=da;exports.CardAction=sa;exports.CardContent=fa;exports.CardDescription=ra;exports.CardFooter=ia;exports.CardHeader=la;exports.CardTitle=ua;exports.Checkbox=xa;exports.Input=ha;exports.Label=va;exports.Popover=Fa;exports.PopoverAnchor=ya;exports.PopoverContent=Ma;exports.PopoverDescription=Ua;exports.PopoverHeader=Ta;exports.PopoverTitle=qa;exports.PopoverTrigger=Ra;exports.Select=nt;exports.SelectContent=Lt;exports.SelectGroup=ct;exports.SelectItem=It;exports.SelectLabel=xt;exports.SelectScrollDownButton=ie;exports.SelectScrollUpButton=fe;exports.SelectSeparator=gt;exports.SelectTrigger=mt;exports.SelectValue=pt;exports.Spinner=wt;exports.Textarea=bt;exports.Toggle=yt;exports.Tooltip=zt;exports.TooltipContent=Vt;exports.TooltipProvider=Ht;exports.TooltipTrigger=Gt;exports.badgeVariants=Q;exports.buttonVariants=N;exports.cn=t;exports.toggleVariants=Le;//# sourceMappingURL=index.js.map
19
19
  //# sourceMappingURL=index.js.map