@thesage/ui 1.0.3 → 1.1.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/README.md +1 -1
- package/dist/forms.js.map +1 -1
- package/dist/forms.mjs.map +1 -1
- package/dist/index.d.mts +229 -20
- package/dist/index.d.ts +229 -20
- package/dist/index.js +1920 -553
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2000 -653
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ Components that feel alive. Themes with real personality. Motion your users cont
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
-
**Sage Design Engine** is a component library and design system built on **Radix UI** primitives and **Tailwind CSS**.
|
|
19
|
+
**Sage Design Engine** is a component library and design system built on **Radix UI** primitives and **Tailwind CSS**. 92 accessible components across 11 functional categories, three distinct themes with runtime switching, and a user-controlled motion system — all wired through a 4-layer design token architecture.
|
|
20
20
|
|
|
21
21
|
## Features
|
|
22
22
|
|
package/dist/forms.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/forms.ts","../src/components/forms/Form.tsx","../src/lib/utils.ts","../src/components/forms/Label.tsx"],"sourcesContent":["export * from './components/forms/Form';\n","\"use client\";\nimport * as React from \"react\"\nimport * as LabelPrimitive from \"@radix-ui/react-label\"\nimport { Slot } from \"@radix-ui/react-slot\"\nimport {\n Controller,\n ControllerProps,\n FieldPath,\n FieldValues,\n FormProvider,\n useFormContext,\n} from \"react-hook-form\"\n\nimport { cn } from \"../../lib/utils\"\nimport { Label } from \"./Label\"\n\nconst Form: typeof FormProvider = FormProvider\n\ntype FormFieldContextValue<\n TFieldValues extends FieldValues = FieldValues,\n TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>\n> = {\n name: TName\n}\n\nconst FormFieldContext = React.createContext<FormFieldContextValue>(\n {} as FormFieldContextValue\n)\n\nconst FormField = <\n TFieldValues extends FieldValues = FieldValues,\n TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>\n>({\n ...props\n}: ControllerProps<TFieldValues, TName>) => {\n return (\n <FormFieldContext.Provider value={{ name: props.name }}>\n <Controller {...props} />\n </FormFieldContext.Provider>\n )\n}\n\nconst useFormField = () => {\n const fieldContext = React.useContext(FormFieldContext)\n const itemContext = React.useContext(FormItemContext)\n const { getFieldState, formState } = useFormContext()\n\n const fieldState = getFieldState(fieldContext.name, formState)\n\n if (!fieldContext) {\n throw new Error(\"useFormField should be used within <FormField>\")\n }\n\n const { id } = itemContext\n\n return {\n id,\n name: fieldContext.name,\n formItemId: `${id}-form-item`,\n formDescriptionId: `${id}-form-item-description`,\n formMessageId: `${id}-form-item-message`,\n ...fieldState,\n }\n}\n\ntype FormItemContextValue = {\n id: string\n}\n\nconst FormItemContext = React.createContext<FormItemContextValue>(\n {} as FormItemContextValue\n)\n\nconst FormItem = (\n {\n ref,\n className,\n ...props\n }: React.HTMLAttributes<HTMLDivElement> & {\n ref?: React.Ref<HTMLDivElement>;\n }\n) => {\n const id = React.useId()\n\n return (\n <FormItemContext.Provider value={{ id }}>\n <div ref={ref} className={cn(\"space-y-2\", className)} {...props} />\n </FormItemContext.Provider>\n )\n}\n\nconst FormLabel = (\n {\n ref,\n className,\n ...props\n }: React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> & {\n ref?: React.Ref<React.ElementRef<typeof LabelPrimitive.Root>>;\n }\n) => {\n const { error, formItemId } = useFormField()\n\n return (\n <Label\n ref={ref}\n className={cn(error && \"text-destructive\", className)}\n htmlFor={formItemId}\n {...props}\n />\n )\n}\n\nconst FormControl = (\n {\n ref,\n ...props\n }: React.ComponentPropsWithoutRef<typeof Slot> & {\n ref?: React.Ref<React.ElementRef<typeof Slot>>;\n }\n) => {\n const { error, formItemId, formDescriptionId, formMessageId } = useFormField()\n\n return (\n <Slot\n ref={ref}\n id={formItemId}\n aria-describedby={\n !error\n ? `${formDescriptionId}`\n : `${formDescriptionId} ${formMessageId}`\n }\n aria-invalid={!!error}\n {...props}\n />\n )\n}\n\nconst FormDescription = (\n {\n ref,\n className,\n ...props\n }: React.HTMLAttributes<HTMLParagraphElement> & {\n ref?: React.Ref<HTMLParagraphElement>;\n }\n) => {\n const { formDescriptionId } = useFormField()\n\n return (\n <p\n ref={ref}\n id={formDescriptionId}\n className={cn(\"text-sm text-muted-foreground\", className)}\n {...props}\n />\n )\n}\n\nconst FormMessage = (\n {\n ref,\n className,\n children,\n ...props\n }: React.HTMLAttributes<HTMLParagraphElement> & {\n ref?: React.Ref<HTMLParagraphElement>;\n }\n) => {\n const { error, formMessageId } = useFormField()\n const body = error ? String(error?.message) : children\n\n if (!body) {\n return null\n }\n\n return (\n <p\n ref={ref}\n id={formMessageId}\n className={cn(\"text-sm font-medium text-destructive\", className)}\n {...props}\n >\n {body}\n </p>\n )\n}\n\nexport {\n useFormField,\n Form,\n FormItem,\n FormLabel,\n FormControl,\n FormDescription,\n FormMessage,\n FormField,\n}\n","import { type ClassValue, clsx } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\n\nexport function cn(...inputs: ClassValue[]) {\n return twMerge(clsx(inputs));\n}\n","import * as React from \"react\"\nimport { cva, type VariantProps } from \"class-variance-authority\"\nimport * as LabelPrimitive from \"@radix-ui/react-label\"\nimport { cn } from \"../../lib/utils\"\n\nconst labelVariants = cva(\n \"text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70\"\n)\n\nconst Label = (\n {\n ref,\n className,\n ...props\n }: React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> &\n VariantProps<typeof labelVariants> & {\n ref?: React.Ref<React.ElementRef<typeof LabelPrimitive.Root>>;\n }\n) => (<LabelPrimitive.Root\n ref={ref}\n className={cn(labelVariants(), className)}\n {...props}\n/>)\n\nexport { Label }\n"],"mappings":"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","names":["import_jsx_runtime"]}
|
|
1
|
+
{"version":3,"sources":["../src/forms.ts","../src/components/forms/Form.tsx","../src/lib/utils.ts","../src/components/forms/Label.tsx"],"sourcesContent":["export * from './components/forms/Form';\n","\"use client\";\nimport * as React from \"react\"\nimport * as LabelPrimitive from \"@radix-ui/react-label\"\nimport { Slot } from \"@radix-ui/react-slot\"\nimport {\n Controller,\n ControllerProps,\n FieldPath,\n FieldValues,\n FormProvider,\n useFormContext,\n} from \"react-hook-form\"\n\nimport { cn } from \"../../lib/utils\"\nimport { Label } from \"./Label\"\n\nconst Form: typeof FormProvider = FormProvider\n\ntype FormFieldContextValue<\n TFieldValues extends FieldValues = FieldValues,\n TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>\n> = {\n name: TName\n}\n\nconst FormFieldContext = React.createContext<FormFieldContextValue>(\n {} as FormFieldContextValue\n)\n\nconst FormField = <\n TFieldValues extends FieldValues = FieldValues,\n TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>\n>({\n ...props\n}: ControllerProps<TFieldValues, TName>) => {\n return (\n <FormFieldContext.Provider value={{ name: props.name }}>\n <Controller {...props} />\n </FormFieldContext.Provider>\n )\n}\n\nconst useFormField = () => {\n const fieldContext = React.useContext(FormFieldContext)\n const itemContext = React.useContext(FormItemContext)\n const { getFieldState, formState } = useFormContext()\n\n const fieldState = getFieldState(fieldContext.name, formState)\n\n if (!fieldContext) {\n throw new Error(\"useFormField should be used within <FormField>\")\n }\n\n const { id } = itemContext\n\n return {\n id,\n name: fieldContext.name,\n formItemId: `${id}-form-item`,\n formDescriptionId: `${id}-form-item-description`,\n formMessageId: `${id}-form-item-message`,\n ...fieldState,\n }\n}\n\ntype FormItemContextValue = {\n id: string\n}\n\nconst FormItemContext = React.createContext<FormItemContextValue>(\n {} as FormItemContextValue\n)\n\nconst FormItem = (\n {\n ref,\n className,\n ...props\n }: React.HTMLAttributes<HTMLDivElement> & {\n ref?: React.Ref<HTMLDivElement>;\n }\n) => {\n const id = React.useId()\n\n return (\n <FormItemContext.Provider value={{ id }}>\n <div ref={ref} className={cn(\"space-y-2\", className)} {...props} />\n </FormItemContext.Provider>\n )\n}\n\nconst FormLabel = (\n {\n ref,\n className,\n ...props\n }: React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> & {\n ref?: React.Ref<React.ElementRef<typeof LabelPrimitive.Root>>;\n }\n) => {\n const { error, formItemId } = useFormField()\n\n return (\n <Label\n ref={ref}\n className={cn(error && \"text-destructive\", className)}\n htmlFor={formItemId}\n {...props}\n />\n )\n}\n\nconst FormControl = (\n {\n ref,\n ...props\n }: React.ComponentPropsWithoutRef<typeof Slot> & {\n ref?: React.Ref<React.ElementRef<typeof Slot>>;\n }\n) => {\n const { error, formItemId, formDescriptionId, formMessageId } = useFormField()\n\n return (\n <Slot\n ref={ref}\n id={formItemId}\n aria-describedby={\n !error\n ? `${formDescriptionId}`\n : `${formDescriptionId} ${formMessageId}`\n }\n aria-invalid={!!error}\n {...props}\n />\n )\n}\n\nconst FormDescription = (\n {\n ref,\n className,\n ...props\n }: React.HTMLAttributes<HTMLParagraphElement> & {\n ref?: React.Ref<HTMLParagraphElement>;\n }\n) => {\n const { formDescriptionId } = useFormField()\n\n return (\n <p\n ref={ref}\n id={formDescriptionId}\n className={cn(\"text-sm text-muted-foreground\", className)}\n {...props}\n />\n )\n}\n\nconst FormMessage = (\n {\n ref,\n className,\n children,\n ...props\n }: React.HTMLAttributes<HTMLParagraphElement> & {\n ref?: React.Ref<HTMLParagraphElement>;\n }\n) => {\n const { error, formMessageId } = useFormField()\n const body = error ? String(error?.message) : children\n\n if (!body) {\n return null\n }\n\n return (\n <p\n ref={ref}\n id={formMessageId}\n className={cn(\"text-sm font-medium text-destructive\", className)}\n {...props}\n >\n {body}\n </p>\n )\n}\n\nexport {\n useFormField,\n Form,\n FormItem,\n FormLabel,\n FormControl,\n FormDescription,\n FormMessage,\n FormField,\n}\n","import { type ClassValue, clsx } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\n\nexport function cn(...inputs: ClassValue[]) {\n return twMerge(clsx(inputs));\n}\n","import * as React from \"react\"\nimport { cva, type VariantProps } from \"class-variance-authority\"\nimport * as LabelPrimitive from \"@radix-ui/react-label\"\nimport { cn } from \"../../lib/utils\"\n\nconst labelVariants = cva(\n \"text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70\"\n)\n\nconst Label = (\n {\n ref,\n className,\n ...props\n }: React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> &\n VariantProps<typeof labelVariants> & {\n ref?: React.Ref<React.ElementRef<typeof LabelPrimitive.Root>>;\n }\n) => (<LabelPrimitive.Root\n ref={ref}\n className={cn(labelVariants(), className)}\n {...props}\n/>)\n\nexport { Label, labelVariants }\n"],"mappings":"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","names":["import_jsx_runtime"]}
|
package/dist/forms.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/components/forms/Form.tsx","../src/lib/utils.ts","../src/components/forms/Label.tsx"],"sourcesContent":["\"use client\";\nimport * as React from \"react\"\nimport * as LabelPrimitive from \"@radix-ui/react-label\"\nimport { Slot } from \"@radix-ui/react-slot\"\nimport {\n Controller,\n ControllerProps,\n FieldPath,\n FieldValues,\n FormProvider,\n useFormContext,\n} from \"react-hook-form\"\n\nimport { cn } from \"../../lib/utils\"\nimport { Label } from \"./Label\"\n\nconst Form: typeof FormProvider = FormProvider\n\ntype FormFieldContextValue<\n TFieldValues extends FieldValues = FieldValues,\n TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>\n> = {\n name: TName\n}\n\nconst FormFieldContext = React.createContext<FormFieldContextValue>(\n {} as FormFieldContextValue\n)\n\nconst FormField = <\n TFieldValues extends FieldValues = FieldValues,\n TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>\n>({\n ...props\n}: ControllerProps<TFieldValues, TName>) => {\n return (\n <FormFieldContext.Provider value={{ name: props.name }}>\n <Controller {...props} />\n </FormFieldContext.Provider>\n )\n}\n\nconst useFormField = () => {\n const fieldContext = React.useContext(FormFieldContext)\n const itemContext = React.useContext(FormItemContext)\n const { getFieldState, formState } = useFormContext()\n\n const fieldState = getFieldState(fieldContext.name, formState)\n\n if (!fieldContext) {\n throw new Error(\"useFormField should be used within <FormField>\")\n }\n\n const { id } = itemContext\n\n return {\n id,\n name: fieldContext.name,\n formItemId: `${id}-form-item`,\n formDescriptionId: `${id}-form-item-description`,\n formMessageId: `${id}-form-item-message`,\n ...fieldState,\n }\n}\n\ntype FormItemContextValue = {\n id: string\n}\n\nconst FormItemContext = React.createContext<FormItemContextValue>(\n {} as FormItemContextValue\n)\n\nconst FormItem = (\n {\n ref,\n className,\n ...props\n }: React.HTMLAttributes<HTMLDivElement> & {\n ref?: React.Ref<HTMLDivElement>;\n }\n) => {\n const id = React.useId()\n\n return (\n <FormItemContext.Provider value={{ id }}>\n <div ref={ref} className={cn(\"space-y-2\", className)} {...props} />\n </FormItemContext.Provider>\n )\n}\n\nconst FormLabel = (\n {\n ref,\n className,\n ...props\n }: React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> & {\n ref?: React.Ref<React.ElementRef<typeof LabelPrimitive.Root>>;\n }\n) => {\n const { error, formItemId } = useFormField()\n\n return (\n <Label\n ref={ref}\n className={cn(error && \"text-destructive\", className)}\n htmlFor={formItemId}\n {...props}\n />\n )\n}\n\nconst FormControl = (\n {\n ref,\n ...props\n }: React.ComponentPropsWithoutRef<typeof Slot> & {\n ref?: React.Ref<React.ElementRef<typeof Slot>>;\n }\n) => {\n const { error, formItemId, formDescriptionId, formMessageId } = useFormField()\n\n return (\n <Slot\n ref={ref}\n id={formItemId}\n aria-describedby={\n !error\n ? `${formDescriptionId}`\n : `${formDescriptionId} ${formMessageId}`\n }\n aria-invalid={!!error}\n {...props}\n />\n )\n}\n\nconst FormDescription = (\n {\n ref,\n className,\n ...props\n }: React.HTMLAttributes<HTMLParagraphElement> & {\n ref?: React.Ref<HTMLParagraphElement>;\n }\n) => {\n const { formDescriptionId } = useFormField()\n\n return (\n <p\n ref={ref}\n id={formDescriptionId}\n className={cn(\"text-sm text-muted-foreground\", className)}\n {...props}\n />\n )\n}\n\nconst FormMessage = (\n {\n ref,\n className,\n children,\n ...props\n }: React.HTMLAttributes<HTMLParagraphElement> & {\n ref?: React.Ref<HTMLParagraphElement>;\n }\n) => {\n const { error, formMessageId } = useFormField()\n const body = error ? String(error?.message) : children\n\n if (!body) {\n return null\n }\n\n return (\n <p\n ref={ref}\n id={formMessageId}\n className={cn(\"text-sm font-medium text-destructive\", className)}\n {...props}\n >\n {body}\n </p>\n )\n}\n\nexport {\n useFormField,\n Form,\n FormItem,\n FormLabel,\n FormControl,\n FormDescription,\n FormMessage,\n FormField,\n}\n","import { type ClassValue, clsx } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\n\nexport function cn(...inputs: ClassValue[]) {\n return twMerge(clsx(inputs));\n}\n","import * as React from \"react\"\nimport { cva, type VariantProps } from \"class-variance-authority\"\nimport * as LabelPrimitive from \"@radix-ui/react-label\"\nimport { cn } from \"../../lib/utils\"\n\nconst labelVariants = cva(\n \"text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70\"\n)\n\nconst Label = (\n {\n ref,\n className,\n ...props\n }: React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> &\n VariantProps<typeof labelVariants> & {\n ref?: React.Ref<React.ElementRef<typeof LabelPrimitive.Root>>;\n }\n) => (<LabelPrimitive.Root\n ref={ref}\n className={cn(labelVariants(), className)}\n {...props}\n/>)\n\nexport { Label }\n"],"mappings":"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","names":["jsx"]}
|
|
1
|
+
{"version":3,"sources":["../src/components/forms/Form.tsx","../src/lib/utils.ts","../src/components/forms/Label.tsx"],"sourcesContent":["\"use client\";\nimport * as React from \"react\"\nimport * as LabelPrimitive from \"@radix-ui/react-label\"\nimport { Slot } from \"@radix-ui/react-slot\"\nimport {\n Controller,\n ControllerProps,\n FieldPath,\n FieldValues,\n FormProvider,\n useFormContext,\n} from \"react-hook-form\"\n\nimport { cn } from \"../../lib/utils\"\nimport { Label } from \"./Label\"\n\nconst Form: typeof FormProvider = FormProvider\n\ntype FormFieldContextValue<\n TFieldValues extends FieldValues = FieldValues,\n TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>\n> = {\n name: TName\n}\n\nconst FormFieldContext = React.createContext<FormFieldContextValue>(\n {} as FormFieldContextValue\n)\n\nconst FormField = <\n TFieldValues extends FieldValues = FieldValues,\n TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>\n>({\n ...props\n}: ControllerProps<TFieldValues, TName>) => {\n return (\n <FormFieldContext.Provider value={{ name: props.name }}>\n <Controller {...props} />\n </FormFieldContext.Provider>\n )\n}\n\nconst useFormField = () => {\n const fieldContext = React.useContext(FormFieldContext)\n const itemContext = React.useContext(FormItemContext)\n const { getFieldState, formState } = useFormContext()\n\n const fieldState = getFieldState(fieldContext.name, formState)\n\n if (!fieldContext) {\n throw new Error(\"useFormField should be used within <FormField>\")\n }\n\n const { id } = itemContext\n\n return {\n id,\n name: fieldContext.name,\n formItemId: `${id}-form-item`,\n formDescriptionId: `${id}-form-item-description`,\n formMessageId: `${id}-form-item-message`,\n ...fieldState,\n }\n}\n\ntype FormItemContextValue = {\n id: string\n}\n\nconst FormItemContext = React.createContext<FormItemContextValue>(\n {} as FormItemContextValue\n)\n\nconst FormItem = (\n {\n ref,\n className,\n ...props\n }: React.HTMLAttributes<HTMLDivElement> & {\n ref?: React.Ref<HTMLDivElement>;\n }\n) => {\n const id = React.useId()\n\n return (\n <FormItemContext.Provider value={{ id }}>\n <div ref={ref} className={cn(\"space-y-2\", className)} {...props} />\n </FormItemContext.Provider>\n )\n}\n\nconst FormLabel = (\n {\n ref,\n className,\n ...props\n }: React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> & {\n ref?: React.Ref<React.ElementRef<typeof LabelPrimitive.Root>>;\n }\n) => {\n const { error, formItemId } = useFormField()\n\n return (\n <Label\n ref={ref}\n className={cn(error && \"text-destructive\", className)}\n htmlFor={formItemId}\n {...props}\n />\n )\n}\n\nconst FormControl = (\n {\n ref,\n ...props\n }: React.ComponentPropsWithoutRef<typeof Slot> & {\n ref?: React.Ref<React.ElementRef<typeof Slot>>;\n }\n) => {\n const { error, formItemId, formDescriptionId, formMessageId } = useFormField()\n\n return (\n <Slot\n ref={ref}\n id={formItemId}\n aria-describedby={\n !error\n ? `${formDescriptionId}`\n : `${formDescriptionId} ${formMessageId}`\n }\n aria-invalid={!!error}\n {...props}\n />\n )\n}\n\nconst FormDescription = (\n {\n ref,\n className,\n ...props\n }: React.HTMLAttributes<HTMLParagraphElement> & {\n ref?: React.Ref<HTMLParagraphElement>;\n }\n) => {\n const { formDescriptionId } = useFormField()\n\n return (\n <p\n ref={ref}\n id={formDescriptionId}\n className={cn(\"text-sm text-muted-foreground\", className)}\n {...props}\n />\n )\n}\n\nconst FormMessage = (\n {\n ref,\n className,\n children,\n ...props\n }: React.HTMLAttributes<HTMLParagraphElement> & {\n ref?: React.Ref<HTMLParagraphElement>;\n }\n) => {\n const { error, formMessageId } = useFormField()\n const body = error ? String(error?.message) : children\n\n if (!body) {\n return null\n }\n\n return (\n <p\n ref={ref}\n id={formMessageId}\n className={cn(\"text-sm font-medium text-destructive\", className)}\n {...props}\n >\n {body}\n </p>\n )\n}\n\nexport {\n useFormField,\n Form,\n FormItem,\n FormLabel,\n FormControl,\n FormDescription,\n FormMessage,\n FormField,\n}\n","import { type ClassValue, clsx } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\n\nexport function cn(...inputs: ClassValue[]) {\n return twMerge(clsx(inputs));\n}\n","import * as React from \"react\"\nimport { cva, type VariantProps } from \"class-variance-authority\"\nimport * as LabelPrimitive from \"@radix-ui/react-label\"\nimport { cn } from \"../../lib/utils\"\n\nconst labelVariants = cva(\n \"text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70\"\n)\n\nconst Label = (\n {\n ref,\n className,\n ...props\n }: React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> &\n VariantProps<typeof labelVariants> & {\n ref?: React.Ref<React.ElementRef<typeof LabelPrimitive.Root>>;\n }\n) => (<LabelPrimitive.Root\n ref={ref}\n className={cn(labelVariants(), className)}\n {...props}\n/>)\n\nexport { Label, labelVariants }\n"],"mappings":"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","names":["jsx"]}
|
package/dist/index.d.mts
CHANGED
|
@@ -15,6 +15,7 @@ import * as _radix_ui_react_select from '@radix-ui/react-select';
|
|
|
15
15
|
import { Trigger, Content, Label as Label$1, Item, Separator as Separator$1, ScrollUpButton, ScrollDownButton } from '@radix-ui/react-select';
|
|
16
16
|
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
17
17
|
import * as SwitchPrimitives from '@radix-ui/react-switch';
|
|
18
|
+
import { Accept, FileRejection } from 'react-dropzone';
|
|
18
19
|
import { S as SyntaxType, a as SyntaxToken, B as BreadcrumbItemLegacy, b as Breadcrumbs, c as BreadcrumbsProps } from './utils-DlJKRVzQ.mjs';
|
|
19
20
|
export { U as Language, R as RouteConfig, T as Transition, V as Variant, d as Variants, G as adjustLightness, J as adjustOpacity, H as adjustSaturation, N as cn, j as collapseVariants, q as colorTokens, M as colorUtils, k as createAnimation, Q as detectLanguage, i as drawerVariants, e as durations, f as easings, g as fadeVariants, o as generateBreadcrumbs, L as generateColorScale, u as getCSSVariable, C as getContrastRatio, w as getForegroundColor, A as getLuminance, K as getOptimalForeground, y as getSemanticColorPair, E as hexToHSL, z as hexToRgb, F as hslToHex, l as listVariants, D as meetsContrastRequirements, m as modalVariants, O as parseCode, p as presets, I as rotateHue, r as rotateVariants, n as scaleDuration, h as scaleVariants, x as semanticColors, v as setCSSVariable, s as slideVariants, P as tokenize, t as transitions } from './utils-DlJKRVzQ.mjs';
|
|
20
21
|
import { Command as Command$1 } from 'cmdk';
|
|
@@ -447,6 +448,34 @@ interface ThemeToggleProps {
|
|
|
447
448
|
*/
|
|
448
449
|
declare const ThemeToggle: React__default.FC<ThemeToggleProps>;
|
|
449
450
|
|
|
451
|
+
declare const fileUploadZoneVariants: (props?: ({
|
|
452
|
+
state?: "disabled" | "active" | "idle" | "reject" | null | undefined;
|
|
453
|
+
size?: "lg" | "sm" | "default" | null | undefined;
|
|
454
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
455
|
+
interface FileUploadProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onDrop'> {
|
|
456
|
+
/** Accepted file types (MIME types) */
|
|
457
|
+
accept?: Accept;
|
|
458
|
+
/** Max file size in bytes */
|
|
459
|
+
maxSize?: number;
|
|
460
|
+
/** Max number of files */
|
|
461
|
+
maxFiles?: number;
|
|
462
|
+
/** Allow multiple file selection */
|
|
463
|
+
multiple?: boolean;
|
|
464
|
+
/** Disabled state */
|
|
465
|
+
disabled?: boolean;
|
|
466
|
+
/** Called when valid files are dropped/selected */
|
|
467
|
+
onFilesSelected?: (files: File[]) => void;
|
|
468
|
+
/** Called when files are rejected */
|
|
469
|
+
onFilesRejected?: (rejections: FileRejection[]) => void;
|
|
470
|
+
/** Label text */
|
|
471
|
+
label?: string;
|
|
472
|
+
/** Description text shown in the drop zone */
|
|
473
|
+
description?: string;
|
|
474
|
+
/** Size variant */
|
|
475
|
+
size?: "sm" | "default" | "lg";
|
|
476
|
+
}
|
|
477
|
+
declare function FileUpload({ className, accept, maxSize, maxFiles, multiple, disabled, onFilesSelected, onFilesRejected, label, description, size, ...props }: FileUploadProps): react_jsx_runtime.JSX.Element;
|
|
478
|
+
|
|
450
479
|
declare const Breadcrumb: ({ ref, ...props }: React$1.ComponentPropsWithoutRef<"nav"> & {
|
|
451
480
|
separator?: React$1.ReactNode;
|
|
452
481
|
} & {
|
|
@@ -1025,6 +1054,36 @@ declare const TooltipContent: ({ ref, className, sideOffset, ...props }: React$1
|
|
|
1025
1054
|
ref?: React$1.Ref<React$1.ElementRef<typeof TooltipPrimitive.Content>>;
|
|
1026
1055
|
}) => react_jsx_runtime.JSX.Element;
|
|
1027
1056
|
|
|
1057
|
+
interface NotificationItem {
|
|
1058
|
+
id: string;
|
|
1059
|
+
title: string;
|
|
1060
|
+
description?: string;
|
|
1061
|
+
timestamp: string | Date;
|
|
1062
|
+
read?: boolean;
|
|
1063
|
+
icon?: React$1.ReactNode;
|
|
1064
|
+
action?: {
|
|
1065
|
+
label: string;
|
|
1066
|
+
onClick: () => void;
|
|
1067
|
+
};
|
|
1068
|
+
}
|
|
1069
|
+
interface NotificationCenterProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1070
|
+
/** Array of notification items */
|
|
1071
|
+
notifications: NotificationItem[];
|
|
1072
|
+
/** Callback when a notification is marked as read */
|
|
1073
|
+
onMarkRead?: (id: string) => void;
|
|
1074
|
+
/** Callback to mark all notifications as read */
|
|
1075
|
+
onMarkAllRead?: () => void;
|
|
1076
|
+
/** Callback when a notification is dismissed */
|
|
1077
|
+
onDismiss?: (id: string) => void;
|
|
1078
|
+
/** Custom trigger element (defaults to bell icon with badge) */
|
|
1079
|
+
trigger?: React$1.ReactNode;
|
|
1080
|
+
/** Maximum height of the notification list */
|
|
1081
|
+
maxHeight?: number;
|
|
1082
|
+
/** Empty state message */
|
|
1083
|
+
emptyMessage?: string;
|
|
1084
|
+
}
|
|
1085
|
+
declare function NotificationCenter({ className, notifications, onMarkRead, onMarkAllRead, onDismiss, trigger, maxHeight, emptyMessage, ...props }: NotificationCenterProps): react_jsx_runtime.JSX.Element;
|
|
1086
|
+
|
|
1028
1087
|
declare const alertVariants: (props?: ({
|
|
1029
1088
|
variant?: "default" | "destructive" | null | undefined;
|
|
1030
1089
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -1219,6 +1278,49 @@ declare const useToast: () => {
|
|
|
1219
1278
|
toasts: Toast[];
|
|
1220
1279
|
};
|
|
1221
1280
|
|
|
1281
|
+
declare const emptyStateVariants: (props?: ({
|
|
1282
|
+
size?: "lg" | "sm" | "default" | null | undefined;
|
|
1283
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1284
|
+
interface EmptyStateProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof emptyStateVariants> {
|
|
1285
|
+
/** Icon displayed above the title */
|
|
1286
|
+
icon?: React$1.ReactNode;
|
|
1287
|
+
/** Primary message */
|
|
1288
|
+
title: string;
|
|
1289
|
+
/** Secondary explanation text */
|
|
1290
|
+
description?: string;
|
|
1291
|
+
/** Call-to-action element (e.g. Button) */
|
|
1292
|
+
action?: React$1.ReactNode;
|
|
1293
|
+
}
|
|
1294
|
+
declare function EmptyState({ className, size, icon, title, description, action, children, ...props }: EmptyStateProps): react_jsx_runtime.JSX.Element;
|
|
1295
|
+
|
|
1296
|
+
declare const stepperVariants: (props?: ({
|
|
1297
|
+
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
1298
|
+
size?: "lg" | "sm" | "default" | null | undefined;
|
|
1299
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1300
|
+
interface StepperProps extends React$1.HTMLAttributes<HTMLOListElement>, VariantProps<typeof stepperVariants> {
|
|
1301
|
+
/** Zero-based index of the current step */
|
|
1302
|
+
currentStep: number;
|
|
1303
|
+
/** Called when a step is clicked (only when clickable is true) */
|
|
1304
|
+
onStepClick?: (step: number) => void;
|
|
1305
|
+
/** Allow clicking steps to navigate */
|
|
1306
|
+
clickable?: boolean;
|
|
1307
|
+
}
|
|
1308
|
+
interface StepperStepProps extends React$1.HTMLAttributes<HTMLLIElement> {
|
|
1309
|
+
/** Step label text */
|
|
1310
|
+
label: string;
|
|
1311
|
+
/** Optional description below the label */
|
|
1312
|
+
description?: string;
|
|
1313
|
+
/** Custom icon for the indicator */
|
|
1314
|
+
icon?: React$1.ReactNode;
|
|
1315
|
+
/** Status (auto-computed from currentStep if not provided) */
|
|
1316
|
+
status?: "pending" | "active" | "completed" | "error";
|
|
1317
|
+
/** Mark step as optional */
|
|
1318
|
+
optional?: boolean;
|
|
1319
|
+
}
|
|
1320
|
+
declare function Stepper({ className, orientation, size, currentStep, onStepClick, clickable, children, ...props }: StepperProps): react_jsx_runtime.JSX.Element;
|
|
1321
|
+
/** Public sub-component for declaring steps */
|
|
1322
|
+
declare function StepperStep(_props: StepperStepProps): null;
|
|
1323
|
+
|
|
1222
1324
|
interface AspectImageProps extends React__default.ImgHTMLAttributes<HTMLImageElement> {
|
|
1223
1325
|
/**
|
|
1224
1326
|
* Aspect ratio (width / height)
|
|
@@ -1693,6 +1795,82 @@ interface TypewriterProps {
|
|
|
1693
1795
|
}
|
|
1694
1796
|
declare function Typewriter({ text, speed, delay, loop, loopDelay, cursor, showCursor, className, as: Component, }: TypewriterProps): react_jsx_runtime.JSX.Element;
|
|
1695
1797
|
|
|
1798
|
+
declare const statCardVariants: (props?: ({
|
|
1799
|
+
variant?: "default" | "outline" | "glass" | null | undefined;
|
|
1800
|
+
size?: "lg" | "sm" | "default" | null | undefined;
|
|
1801
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1802
|
+
interface StatCardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof statCardVariants> {
|
|
1803
|
+
/** The metric label (e.g. "Revenue", "Active Users") */
|
|
1804
|
+
label: string;
|
|
1805
|
+
/** The metric value (e.g. "$1.2M", "12,345") */
|
|
1806
|
+
value: string | number;
|
|
1807
|
+
/** Percentage change (e.g. 5.2 for +5.2%, -3.1 for -3.1%) */
|
|
1808
|
+
change?: number;
|
|
1809
|
+
/** Direction of the trend */
|
|
1810
|
+
trend?: "up" | "down" | "flat";
|
|
1811
|
+
/** Optional icon displayed in the top-right */
|
|
1812
|
+
icon?: React$1.ReactNode;
|
|
1813
|
+
/** Additional description text below the value */
|
|
1814
|
+
description?: string;
|
|
1815
|
+
}
|
|
1816
|
+
declare function StatCard({ className, variant, size, label, value, change, trend, icon, description, ...props }: StatCardProps): react_jsx_runtime.JSX.Element;
|
|
1817
|
+
declare function StatCardGroup({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
1818
|
+
|
|
1819
|
+
declare const timelineVariants: (props?: ({
|
|
1820
|
+
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
1821
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1822
|
+
interface TimelineProps extends React$1.HTMLAttributes<HTMLOListElement>, VariantProps<typeof timelineVariants> {
|
|
1823
|
+
}
|
|
1824
|
+
interface TimelineItemProps extends React$1.HTMLAttributes<HTMLLIElement> {
|
|
1825
|
+
/** Event title */
|
|
1826
|
+
title: string;
|
|
1827
|
+
/** Event description */
|
|
1828
|
+
description?: string;
|
|
1829
|
+
/** Timestamp text */
|
|
1830
|
+
timestamp?: string;
|
|
1831
|
+
/** Custom icon for the indicator */
|
|
1832
|
+
icon?: React$1.ReactNode;
|
|
1833
|
+
/** Status of this event */
|
|
1834
|
+
status?: "pending" | "active" | "completed" | "error";
|
|
1835
|
+
/** Whether this is the last item (hides connector) */
|
|
1836
|
+
isLast?: boolean;
|
|
1837
|
+
/** Size variant */
|
|
1838
|
+
size?: "sm" | "default" | "lg";
|
|
1839
|
+
}
|
|
1840
|
+
declare function Timeline({ className, orientation, children, ...props }: TimelineProps): react_jsx_runtime.JSX.Element;
|
|
1841
|
+
declare function TimelineItem({ className, title, description, timestamp, icon, status, isLast, size, ...props }: TimelineItemProps): react_jsx_runtime.JSX.Element;
|
|
1842
|
+
|
|
1843
|
+
interface TreeNode {
|
|
1844
|
+
/** Unique identifier */
|
|
1845
|
+
id: string;
|
|
1846
|
+
/** Display label */
|
|
1847
|
+
label: string;
|
|
1848
|
+
/** Optional icon */
|
|
1849
|
+
icon?: React$1.ReactNode;
|
|
1850
|
+
/** Child nodes */
|
|
1851
|
+
children?: TreeNode[];
|
|
1852
|
+
/** Whether the node is disabled */
|
|
1853
|
+
disabled?: boolean;
|
|
1854
|
+
}
|
|
1855
|
+
interface TreeViewProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1856
|
+
/** Tree data structure */
|
|
1857
|
+
nodes: TreeNode[];
|
|
1858
|
+
/** Expanded node IDs (controlled) */
|
|
1859
|
+
expanded?: string[];
|
|
1860
|
+
/** Default expanded node IDs (uncontrolled) */
|
|
1861
|
+
defaultExpanded?: string[];
|
|
1862
|
+
/** Called when expanded state changes */
|
|
1863
|
+
onExpandChange?: (expanded: string[]) => void;
|
|
1864
|
+
/** Currently selected node ID */
|
|
1865
|
+
selected?: string;
|
|
1866
|
+
/** Called when selection changes */
|
|
1867
|
+
onSelectChange?: (nodeId: string) => void;
|
|
1868
|
+
}
|
|
1869
|
+
declare const treeNodeVariants: (props?: ({
|
|
1870
|
+
state?: "disabled" | "idle" | "selected" | null | undefined;
|
|
1871
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1872
|
+
declare function TreeView({ className, nodes, expanded: controlledExpanded, defaultExpanded, onExpandChange, selected: controlledSelected, onSelectChange, ...props }: TreeViewProps): react_jsx_runtime.JSX.Element;
|
|
1873
|
+
|
|
1696
1874
|
interface GradientConfig {
|
|
1697
1875
|
type: 'linear' | 'radial';
|
|
1698
1876
|
angle?: number;
|
|
@@ -2636,7 +2814,7 @@ declare const useCustomizer: zustand.UseBoundStore<Omit<zustand.StoreApi<Customi
|
|
|
2636
2814
|
* - Updating MCP server registry
|
|
2637
2815
|
* - Version bumping and npm publishing
|
|
2638
2816
|
*
|
|
2639
|
-
* Last Updated: 2026-
|
|
2817
|
+
* Last Updated: 2026-02-15
|
|
2640
2818
|
*/
|
|
2641
2819
|
declare const BRAND: {
|
|
2642
2820
|
readonly productName: "Sage Design Engine";
|
|
@@ -2653,7 +2831,7 @@ declare const COMPONENT_REGISTRY: {
|
|
|
2653
2831
|
/**
|
|
2654
2832
|
* Total count of all exported UI components from @thesage/ui
|
|
2655
2833
|
*/
|
|
2656
|
-
readonly totalCount:
|
|
2834
|
+
readonly totalCount: 96;
|
|
2657
2835
|
/**
|
|
2658
2836
|
* Core categories following functional organization pattern
|
|
2659
2837
|
* (what components DO, not abstract hierarchy)
|
|
@@ -2665,9 +2843,9 @@ declare const COMPONENT_REGISTRY: {
|
|
|
2665
2843
|
readonly examples: readonly ["Button", "Link", "Toggle", "ToggleGroup", "Magnetic"];
|
|
2666
2844
|
};
|
|
2667
2845
|
readonly forms: {
|
|
2668
|
-
readonly count:
|
|
2846
|
+
readonly count: 19;
|
|
2669
2847
|
readonly description: "Components that collect user input";
|
|
2670
|
-
readonly examples: readonly ["Input", "Select", "Checkbox", "Switch", "Textarea", "ColorPicker", "SearchBar"];
|
|
2848
|
+
readonly examples: readonly ["Input", "Select", "Checkbox", "Switch", "Textarea", "ColorPicker", "SearchBar", "FileUpload"];
|
|
2671
2849
|
};
|
|
2672
2850
|
readonly navigation: {
|
|
2673
2851
|
readonly count: 10;
|
|
@@ -2675,19 +2853,19 @@ declare const COMPONENT_REGISTRY: {
|
|
|
2675
2853
|
readonly examples: readonly ["Tabs", "Breadcrumb", "Pagination", "NavigationMenu", "Command"];
|
|
2676
2854
|
};
|
|
2677
2855
|
readonly overlays: {
|
|
2678
|
-
readonly count:
|
|
2856
|
+
readonly count: 12;
|
|
2679
2857
|
readonly description: "Components that display contextual content";
|
|
2680
|
-
readonly examples: readonly ["Dialog", "Tooltip", "Popover", "Drawer", "Modal", "Sheet"];
|
|
2858
|
+
readonly examples: readonly ["Dialog", "Tooltip", "Popover", "Drawer", "Modal", "Sheet", "NotificationCenter"];
|
|
2681
2859
|
};
|
|
2682
2860
|
readonly feedback: {
|
|
2683
|
-
readonly count:
|
|
2861
|
+
readonly count: 9;
|
|
2684
2862
|
readonly description: "Components that communicate system state";
|
|
2685
|
-
readonly examples: readonly ["Alert", "Toast", "Progress", "Spinner", "Skeleton"];
|
|
2863
|
+
readonly examples: readonly ["Alert", "Toast", "Progress", "Spinner", "Skeleton", "EmptyState", "Stepper"];
|
|
2686
2864
|
};
|
|
2687
2865
|
readonly 'data-display': {
|
|
2688
|
-
readonly count:
|
|
2866
|
+
readonly count: 19;
|
|
2689
2867
|
readonly description: "Components that present information";
|
|
2690
|
-
readonly examples: readonly ["Card", "Table", "Badge", "Avatar", "Heading", "Text", "Code", "Calendar"];
|
|
2868
|
+
readonly examples: readonly ["Card", "Table", "Badge", "Avatar", "Heading", "Text", "Code", "Calendar", "StatCard", "Timeline", "TreeView"];
|
|
2691
2869
|
};
|
|
2692
2870
|
readonly layout: {
|
|
2693
2871
|
readonly count: 17;
|
|
@@ -2731,21 +2909,21 @@ declare const COMPONENT_REGISTRY: {
|
|
|
2731
2909
|
declare const COMPONENT_COUNTS: {
|
|
2732
2910
|
readonly core: number;
|
|
2733
2911
|
readonly specialty: number;
|
|
2734
|
-
readonly total:
|
|
2912
|
+
readonly total: 96;
|
|
2735
2913
|
};
|
|
2736
2914
|
/**
|
|
2737
2915
|
* Marketing-friendly descriptions
|
|
2738
2916
|
*/
|
|
2739
2917
|
declare const MARKETING_COPY: {
|
|
2740
|
-
readonly short: "
|
|
2741
|
-
readonly medium: "
|
|
2742
|
-
readonly long: "
|
|
2918
|
+
readonly short: "96 production-ready components";
|
|
2919
|
+
readonly medium: "96 components across 7 core categories, plus specialty backgrounds and motion effects";
|
|
2920
|
+
readonly long: "96 thoughtfully designed components organized by function: actions, forms, navigation, overlays, feedback, data display, and layout—plus specialty components for backgrounds, cursor interactions, and animated effects.";
|
|
2743
2921
|
};
|
|
2744
2922
|
/**
|
|
2745
2923
|
* Documentation usage examples
|
|
2746
2924
|
*/
|
|
2747
2925
|
declare const DOC_EXAMPLES: {
|
|
2748
|
-
readonly overview: `
|
|
2926
|
+
readonly overview: `96 components across ${number} core categories`;
|
|
2749
2927
|
readonly breakdown: string;
|
|
2750
2928
|
};
|
|
2751
2929
|
|
|
@@ -2777,6 +2955,8 @@ declare const index$7_DragDropList: typeof DragDropList;
|
|
|
2777
2955
|
declare const index$7_DragDropListProps: typeof DragDropListProps;
|
|
2778
2956
|
declare const index$7_DragDropTable: typeof DragDropTable;
|
|
2779
2957
|
declare const index$7_DragDropTableProps: typeof DragDropTableProps;
|
|
2958
|
+
declare const index$7_FileUpload: typeof FileUpload;
|
|
2959
|
+
type index$7_FileUploadProps = FileUploadProps;
|
|
2780
2960
|
declare const index$7_FilterButton: typeof FilterButton;
|
|
2781
2961
|
type index$7_FilterButtonProps = FilterButtonProps;
|
|
2782
2962
|
declare const index$7_Form: typeof Form;
|
|
@@ -2816,9 +2996,11 @@ declare const index$7_ThemeSwitcher: typeof ThemeSwitcher;
|
|
|
2816
2996
|
type index$7_ThemeSwitcherProps = ThemeSwitcherProps;
|
|
2817
2997
|
declare const index$7_ThemeToggle: typeof ThemeToggle;
|
|
2818
2998
|
type index$7_ThemeToggleProps = ThemeToggleProps;
|
|
2999
|
+
declare const index$7_fileUploadZoneVariants: typeof fileUploadZoneVariants;
|
|
3000
|
+
declare const index$7_labelVariants: typeof labelVariants;
|
|
2819
3001
|
declare const index$7_useFormField: typeof useFormField;
|
|
2820
3002
|
declare namespace index$7 {
|
|
2821
|
-
export { index$7_Checkbox as Checkbox, index$7_ColorPicker as ColorPicker, type index$7_ColorPickerProps as ColorPickerProps, index$7_Combobox as Combobox, type index$7_ComboboxOption as ComboboxOption, type index$7_ComboboxProps as ComboboxProps, index$7_DragDropHandle as DragDropHandle, index$7_DragDropHandleProps as DragDropHandleProps, index$7_DragDropItem as DragDropItem, index$7_DragDropList as DragDropList, index$7_DragDropListProps as DragDropListProps, index$7_DragDropTable as DragDropTable, index$7_DragDropTableProps as DragDropTableProps, index$7_FilterButton as FilterButton, type index$7_FilterButtonProps as FilterButtonProps, index$7_Form as Form, index$7_FormControl as FormControl, index$7_FormDescription as FormDescription, index$7_FormField as FormField, index$7_FormItem as FormItem, index$7_FormLabel as FormLabel, index$7_FormMessage as FormMessage, index$7_Input as Input, index$7_InputOTP as InputOTP, index$7_InputOTPGroup as InputOTPGroup, index$7_InputOTPSeparator as InputOTPSeparator, index$7_InputOTPSlot as InputOTPSlot, type index$7_InputProps as InputProps, index$7_Label as Label, index$7_RadioGroup as RadioGroup, index$7_RadioGroupItem as RadioGroupItem, index$7_SearchBar as SearchBar, type index$7_SearchBarProps as SearchBarProps, index$7_Select as Select, index$7_SelectContent as SelectContent, index$7_SelectGroup as SelectGroup, index$7_SelectItem as SelectItem, index$7_SelectLabel as SelectLabel, index$7_SelectScrollDownButton as SelectScrollDownButton, index$7_SelectScrollUpButton as SelectScrollUpButton, SelectSeparatorComp as SelectSeparator, index$7_SelectTrigger as SelectTrigger, index$7_SelectValue as SelectValue, index$7_Slider as Slider, index$7_Switch as Switch, index$7_TextField as TextField, type index$7_TextFieldProps as TextFieldProps, index$7_Textarea as Textarea, type index$7_TextareaProps as TextareaProps, index$7_ThemeSwitcher as ThemeSwitcher, type index$7_ThemeSwitcherProps as ThemeSwitcherProps, index$7_ThemeToggle as ThemeToggle, type index$7_ThemeToggleProps as ThemeToggleProps, index$7_useFormField as useFormField };
|
|
3003
|
+
export { index$7_Checkbox as Checkbox, index$7_ColorPicker as ColorPicker, type index$7_ColorPickerProps as ColorPickerProps, index$7_Combobox as Combobox, type index$7_ComboboxOption as ComboboxOption, type index$7_ComboboxProps as ComboboxProps, index$7_DragDropHandle as DragDropHandle, index$7_DragDropHandleProps as DragDropHandleProps, index$7_DragDropItem as DragDropItem, index$7_DragDropList as DragDropList, index$7_DragDropListProps as DragDropListProps, index$7_DragDropTable as DragDropTable, index$7_DragDropTableProps as DragDropTableProps, index$7_FileUpload as FileUpload, type index$7_FileUploadProps as FileUploadProps, index$7_FilterButton as FilterButton, type index$7_FilterButtonProps as FilterButtonProps, index$7_Form as Form, index$7_FormControl as FormControl, index$7_FormDescription as FormDescription, index$7_FormField as FormField, index$7_FormItem as FormItem, index$7_FormLabel as FormLabel, index$7_FormMessage as FormMessage, index$7_Input as Input, index$7_InputOTP as InputOTP, index$7_InputOTPGroup as InputOTPGroup, index$7_InputOTPSeparator as InputOTPSeparator, index$7_InputOTPSlot as InputOTPSlot, type index$7_InputProps as InputProps, index$7_Label as Label, index$7_RadioGroup as RadioGroup, index$7_RadioGroupItem as RadioGroupItem, index$7_SearchBar as SearchBar, type index$7_SearchBarProps as SearchBarProps, index$7_Select as Select, index$7_SelectContent as SelectContent, index$7_SelectGroup as SelectGroup, index$7_SelectItem as SelectItem, index$7_SelectLabel as SelectLabel, index$7_SelectScrollDownButton as SelectScrollDownButton, index$7_SelectScrollUpButton as SelectScrollUpButton, SelectSeparatorComp as SelectSeparator, index$7_SelectTrigger as SelectTrigger, index$7_SelectValue as SelectValue, index$7_Slider as Slider, index$7_Switch as Switch, index$7_TextField as TextField, type index$7_TextFieldProps as TextFieldProps, index$7_Textarea as Textarea, type index$7_TextareaProps as TextareaProps, index$7_ThemeSwitcher as ThemeSwitcher, type index$7_ThemeSwitcherProps as ThemeSwitcherProps, index$7_ThemeToggle as ThemeToggle, type index$7_ThemeToggleProps as ThemeToggleProps, index$7_fileUploadZoneVariants as fileUploadZoneVariants, index$7_labelVariants as labelVariants, index$7_useFormField as useFormField };
|
|
2822
3004
|
}
|
|
2823
3005
|
|
|
2824
3006
|
declare const index$6_Breadcrumb: typeof Breadcrumb;
|
|
@@ -2952,6 +3134,9 @@ declare const index$5_HoverCardContent: typeof HoverCardContent;
|
|
|
2952
3134
|
declare const index$5_HoverCardTrigger: typeof HoverCardTrigger;
|
|
2953
3135
|
declare const index$5_Modal: typeof Modal;
|
|
2954
3136
|
type index$5_ModalProps = ModalProps;
|
|
3137
|
+
declare const index$5_NotificationCenter: typeof NotificationCenter;
|
|
3138
|
+
type index$5_NotificationCenterProps = NotificationCenterProps;
|
|
3139
|
+
type index$5_NotificationItem = NotificationItem;
|
|
2955
3140
|
declare const index$5_Popover: typeof Popover;
|
|
2956
3141
|
declare const index$5_PopoverAnchor: typeof PopoverAnchor;
|
|
2957
3142
|
declare const index$5_PopoverContent: typeof PopoverContent;
|
|
@@ -2970,13 +3155,16 @@ declare const index$5_Tooltip: typeof Tooltip;
|
|
|
2970
3155
|
declare const index$5_TooltipContent: typeof TooltipContent;
|
|
2971
3156
|
declare const index$5_TooltipProvider: typeof TooltipProvider;
|
|
2972
3157
|
declare const index$5_TooltipTrigger: typeof TooltipTrigger;
|
|
3158
|
+
declare const index$5_sheetVariants: typeof sheetVariants;
|
|
2973
3159
|
declare namespace index$5 {
|
|
2974
|
-
export { index$5_AlertDialog as AlertDialog, index$5_AlertDialogAction as AlertDialogAction, index$5_AlertDialogCancel as AlertDialogCancel, index$5_AlertDialogContent as AlertDialogContent, index$5_AlertDialogDescription as AlertDialogDescription, index$5_AlertDialogFooter as AlertDialogFooter, index$5_AlertDialogHeader as AlertDialogHeader, index$5_AlertDialogOverlay as AlertDialogOverlay, index$5_AlertDialogPortal as AlertDialogPortal, index$5_AlertDialogTitle as AlertDialogTitle, index$5_AlertDialogTrigger as AlertDialogTrigger, index$5_ContextMenu as ContextMenu, index$5_ContextMenuCheckboxItem as ContextMenuCheckboxItem, index$5_ContextMenuContent as ContextMenuContent, index$5_ContextMenuGroup as ContextMenuGroup, index$5_ContextMenuItem as ContextMenuItem, index$5_ContextMenuLabel as ContextMenuLabel, index$5_ContextMenuPortal as ContextMenuPortal, index$5_ContextMenuRadioGroup as ContextMenuRadioGroup, index$5_ContextMenuRadioItem as ContextMenuRadioItem, index$5_ContextMenuSeparator as ContextMenuSeparator, index$5_ContextMenuShortcut as ContextMenuShortcut, index$5_ContextMenuSub as ContextMenuSub, index$5_ContextMenuSubContent as ContextMenuSubContent, index$5_ContextMenuSubTrigger as ContextMenuSubTrigger, index$5_ContextMenuTrigger as ContextMenuTrigger, index$5_Dialog as Dialog, index$5_DialogClose as DialogClose, index$5_DialogContent as DialogContent, index$5_DialogDescription as DialogDescription, index$5_DialogFooter as DialogFooter, index$5_DialogHeader as DialogHeader, index$5_DialogOverlay as DialogOverlay, index$5_DialogPortal as DialogPortal, index$5_DialogTitle as DialogTitle, index$5_DialogTrigger as DialogTrigger, index$5_Drawer as Drawer, index$5_DrawerClose as DrawerClose, index$5_DrawerContent as DrawerContent, index$5_DrawerDescription as DrawerDescription, index$5_DrawerFooter as DrawerFooter, index$5_DrawerHeader as DrawerHeader, index$5_DrawerOverlay as DrawerOverlay, index$5_DrawerPortal as DrawerPortal, index$5_DrawerTitle as DrawerTitle, index$5_DrawerTrigger as DrawerTrigger, index$5_Dropdown as Dropdown, type index$5_DropdownItem as DropdownItem, index$5_DropdownMenu as DropdownMenu, index$5_DropdownMenuCheckboxItem as DropdownMenuCheckboxItem, index$5_DropdownMenuContent as DropdownMenuContent, index$5_DropdownMenuGroup as DropdownMenuGroup, index$5_DropdownMenuItem as DropdownMenuItem, index$5_DropdownMenuLabel as DropdownMenuLabel, index$5_DropdownMenuPortal as DropdownMenuPortal, index$5_DropdownMenuRadioGroup as DropdownMenuRadioGroup, index$5_DropdownMenuRadioItem as DropdownMenuRadioItem, index$5_DropdownMenuSeparator as DropdownMenuSeparator, index$5_DropdownMenuShortcut as DropdownMenuShortcut, index$5_DropdownMenuSub as DropdownMenuSub, index$5_DropdownMenuSubContent as DropdownMenuSubContent, index$5_DropdownMenuSubTrigger as DropdownMenuSubTrigger, index$5_DropdownMenuTrigger as DropdownMenuTrigger, type index$5_DropdownProps as DropdownProps, index$5_HoverCard as HoverCard, index$5_HoverCardContent as HoverCardContent, index$5_HoverCardTrigger as HoverCardTrigger, index$5_Modal as Modal, type index$5_ModalProps as ModalProps, index$5_Popover as Popover, index$5_PopoverAnchor as PopoverAnchor, index$5_PopoverContent as PopoverContent, index$5_PopoverTrigger as PopoverTrigger, index$5_Sheet as Sheet, index$5_SheetClose as SheetClose, index$5_SheetContent as SheetContent, index$5_SheetDescription as SheetDescription, index$5_SheetFooter as SheetFooter, index$5_SheetHeader as SheetHeader, index$5_SheetOverlay as SheetOverlay, index$5_SheetPortal as SheetPortal, index$5_SheetTitle as SheetTitle, index$5_SheetTrigger as SheetTrigger, index$5_Tooltip as Tooltip, index$5_TooltipContent as TooltipContent, index$5_TooltipProvider as TooltipProvider, index$5_TooltipTrigger as TooltipTrigger };
|
|
3160
|
+
export { index$5_AlertDialog as AlertDialog, index$5_AlertDialogAction as AlertDialogAction, index$5_AlertDialogCancel as AlertDialogCancel, index$5_AlertDialogContent as AlertDialogContent, index$5_AlertDialogDescription as AlertDialogDescription, index$5_AlertDialogFooter as AlertDialogFooter, index$5_AlertDialogHeader as AlertDialogHeader, index$5_AlertDialogOverlay as AlertDialogOverlay, index$5_AlertDialogPortal as AlertDialogPortal, index$5_AlertDialogTitle as AlertDialogTitle, index$5_AlertDialogTrigger as AlertDialogTrigger, index$5_ContextMenu as ContextMenu, index$5_ContextMenuCheckboxItem as ContextMenuCheckboxItem, index$5_ContextMenuContent as ContextMenuContent, index$5_ContextMenuGroup as ContextMenuGroup, index$5_ContextMenuItem as ContextMenuItem, index$5_ContextMenuLabel as ContextMenuLabel, index$5_ContextMenuPortal as ContextMenuPortal, index$5_ContextMenuRadioGroup as ContextMenuRadioGroup, index$5_ContextMenuRadioItem as ContextMenuRadioItem, index$5_ContextMenuSeparator as ContextMenuSeparator, index$5_ContextMenuShortcut as ContextMenuShortcut, index$5_ContextMenuSub as ContextMenuSub, index$5_ContextMenuSubContent as ContextMenuSubContent, index$5_ContextMenuSubTrigger as ContextMenuSubTrigger, index$5_ContextMenuTrigger as ContextMenuTrigger, index$5_Dialog as Dialog, index$5_DialogClose as DialogClose, index$5_DialogContent as DialogContent, index$5_DialogDescription as DialogDescription, index$5_DialogFooter as DialogFooter, index$5_DialogHeader as DialogHeader, index$5_DialogOverlay as DialogOverlay, index$5_DialogPortal as DialogPortal, index$5_DialogTitle as DialogTitle, index$5_DialogTrigger as DialogTrigger, index$5_Drawer as Drawer, index$5_DrawerClose as DrawerClose, index$5_DrawerContent as DrawerContent, index$5_DrawerDescription as DrawerDescription, index$5_DrawerFooter as DrawerFooter, index$5_DrawerHeader as DrawerHeader, index$5_DrawerOverlay as DrawerOverlay, index$5_DrawerPortal as DrawerPortal, index$5_DrawerTitle as DrawerTitle, index$5_DrawerTrigger as DrawerTrigger, index$5_Dropdown as Dropdown, type index$5_DropdownItem as DropdownItem, index$5_DropdownMenu as DropdownMenu, index$5_DropdownMenuCheckboxItem as DropdownMenuCheckboxItem, index$5_DropdownMenuContent as DropdownMenuContent, index$5_DropdownMenuGroup as DropdownMenuGroup, index$5_DropdownMenuItem as DropdownMenuItem, index$5_DropdownMenuLabel as DropdownMenuLabel, index$5_DropdownMenuPortal as DropdownMenuPortal, index$5_DropdownMenuRadioGroup as DropdownMenuRadioGroup, index$5_DropdownMenuRadioItem as DropdownMenuRadioItem, index$5_DropdownMenuSeparator as DropdownMenuSeparator, index$5_DropdownMenuShortcut as DropdownMenuShortcut, index$5_DropdownMenuSub as DropdownMenuSub, index$5_DropdownMenuSubContent as DropdownMenuSubContent, index$5_DropdownMenuSubTrigger as DropdownMenuSubTrigger, index$5_DropdownMenuTrigger as DropdownMenuTrigger, type index$5_DropdownProps as DropdownProps, index$5_HoverCard as HoverCard, index$5_HoverCardContent as HoverCardContent, index$5_HoverCardTrigger as HoverCardTrigger, index$5_Modal as Modal, type index$5_ModalProps as ModalProps, index$5_NotificationCenter as NotificationCenter, type index$5_NotificationCenterProps as NotificationCenterProps, type index$5_NotificationItem as NotificationItem, index$5_Popover as Popover, index$5_PopoverAnchor as PopoverAnchor, index$5_PopoverContent as PopoverContent, index$5_PopoverTrigger as PopoverTrigger, index$5_Sheet as Sheet, index$5_SheetClose as SheetClose, index$5_SheetContent as SheetContent, index$5_SheetDescription as SheetDescription, index$5_SheetFooter as SheetFooter, index$5_SheetHeader as SheetHeader, index$5_SheetOverlay as SheetOverlay, index$5_SheetPortal as SheetPortal, index$5_SheetTitle as SheetTitle, index$5_SheetTrigger as SheetTrigger, index$5_Tooltip as Tooltip, index$5_TooltipContent as TooltipContent, index$5_TooltipProvider as TooltipProvider, index$5_TooltipTrigger as TooltipTrigger, index$5_sheetVariants as sheetVariants };
|
|
2975
3161
|
}
|
|
2976
3162
|
|
|
2977
3163
|
declare const index$4_Alert: typeof Alert;
|
|
2978
3164
|
declare const index$4_AlertDescription: typeof AlertDescription;
|
|
2979
3165
|
declare const index$4_AlertTitle: typeof AlertTitle;
|
|
3166
|
+
declare const index$4_EmptyState: typeof EmptyState;
|
|
3167
|
+
type index$4_EmptyStateProps = EmptyStateProps;
|
|
2980
3168
|
declare const index$4_Progress: typeof Progress;
|
|
2981
3169
|
declare const index$4_ProgressBar: typeof ProgressBar;
|
|
2982
3170
|
type index$4_ProgressBarProps = ProgressBarProps;
|
|
@@ -2984,14 +3172,21 @@ declare const index$4_Skeleton: typeof Skeleton;
|
|
|
2984
3172
|
type index$4_SkeletonProps = SkeletonProps;
|
|
2985
3173
|
declare const index$4_Spinner: typeof Spinner;
|
|
2986
3174
|
type index$4_SpinnerProps = SpinnerProps;
|
|
3175
|
+
declare const index$4_Stepper: typeof Stepper;
|
|
3176
|
+
type index$4_StepperProps = StepperProps;
|
|
3177
|
+
declare const index$4_StepperStep: typeof StepperStep;
|
|
3178
|
+
type index$4_StepperStepProps = StepperStepProps;
|
|
2987
3179
|
type index$4_Toast = Toast;
|
|
2988
3180
|
declare const index$4_ToastProvider: typeof ToastProvider;
|
|
2989
3181
|
type index$4_ToastProviderProps = ToastProviderProps;
|
|
2990
3182
|
type index$4_ToastType = ToastType;
|
|
2991
3183
|
declare const index$4_Toaster: typeof Toaster;
|
|
3184
|
+
declare const index$4_alertVariants: typeof alertVariants;
|
|
3185
|
+
declare const index$4_emptyStateVariants: typeof emptyStateVariants;
|
|
3186
|
+
declare const index$4_stepperVariants: typeof stepperVariants;
|
|
2992
3187
|
declare const index$4_useToast: typeof useToast;
|
|
2993
3188
|
declare namespace index$4 {
|
|
2994
|
-
export { index$4_Alert as Alert, index$4_AlertDescription as AlertDescription, index$4_AlertTitle as AlertTitle, index$4_Progress as Progress, index$4_ProgressBar as ProgressBar, type index$4_ProgressBarProps as ProgressBarProps, index$4_Skeleton as Skeleton, type index$4_SkeletonProps as SkeletonProps, index$4_Spinner as Spinner, type index$4_SpinnerProps as SpinnerProps, type index$4_Toast as Toast, index$4_ToastProvider as ToastProvider, type index$4_ToastProviderProps as ToastProviderProps, type index$4_ToastType as ToastType, index$4_Toaster as Toaster, index$4_useToast as useToast };
|
|
3189
|
+
export { index$4_Alert as Alert, index$4_AlertDescription as AlertDescription, index$4_AlertTitle as AlertTitle, index$4_EmptyState as EmptyState, type index$4_EmptyStateProps as EmptyStateProps, index$4_Progress as Progress, index$4_ProgressBar as ProgressBar, type index$4_ProgressBarProps as ProgressBarProps, index$4_Skeleton as Skeleton, type index$4_SkeletonProps as SkeletonProps, index$4_Spinner as Spinner, type index$4_SpinnerProps as SpinnerProps, index$4_Stepper as Stepper, type index$4_StepperProps as StepperProps, index$4_StepperStep as StepperStep, type index$4_StepperStepProps as StepperStepProps, type index$4_Toast as Toast, index$4_ToastProvider as ToastProvider, type index$4_ToastProviderProps as ToastProviderProps, type index$4_ToastType as ToastType, index$4_Toaster as Toaster, index$4_alertVariants as alertVariants, index$4_emptyStateVariants as emptyStateVariants, index$4_stepperVariants as stepperVariants, index$4_useToast as useToast };
|
|
2995
3190
|
}
|
|
2996
3191
|
|
|
2997
3192
|
declare const index$3_AspectImage: typeof AspectImage;
|
|
@@ -3024,6 +3219,9 @@ declare const index$3_GitHubIcon: typeof GitHubIcon;
|
|
|
3024
3219
|
type index$3_GitHubIconProps = GitHubIconProps;
|
|
3025
3220
|
declare const index$3_Heading: typeof Heading;
|
|
3026
3221
|
type index$3_HeadingProps = HeadingProps;
|
|
3222
|
+
declare const index$3_StatCard: typeof StatCard;
|
|
3223
|
+
declare const index$3_StatCardGroup: typeof StatCardGroup;
|
|
3224
|
+
type index$3_StatCardProps = StatCardProps;
|
|
3027
3225
|
declare const index$3_Table: typeof Table;
|
|
3028
3226
|
declare const index$3_TableBody: typeof TableBody;
|
|
3029
3227
|
declare const index$3_TableCaption: typeof TableCaption;
|
|
@@ -3034,12 +3232,23 @@ declare const index$3_TableHeader: typeof TableHeader;
|
|
|
3034
3232
|
declare const index$3_TableRow: typeof TableRow;
|
|
3035
3233
|
declare const index$3_Text: typeof Text;
|
|
3036
3234
|
type index$3_TextProps = TextProps;
|
|
3235
|
+
declare const index$3_Timeline: typeof Timeline;
|
|
3236
|
+
declare const index$3_TimelineItem: typeof TimelineItem;
|
|
3237
|
+
type index$3_TimelineItemProps = TimelineItemProps;
|
|
3238
|
+
type index$3_TimelineProps = TimelineProps;
|
|
3239
|
+
type index$3_TreeNode = TreeNode;
|
|
3240
|
+
declare const index$3_TreeView: typeof TreeView;
|
|
3241
|
+
type index$3_TreeViewProps = TreeViewProps;
|
|
3037
3242
|
declare const index$3_Typewriter: typeof Typewriter;
|
|
3038
3243
|
type index$3_TypewriterProps = TypewriterProps;
|
|
3039
3244
|
declare const index$3_VariableWeightText: typeof VariableWeightText;
|
|
3040
3245
|
declare const index$3_badgeVariants: typeof badgeVariants;
|
|
3246
|
+
declare const index$3_cardVariants: typeof cardVariants;
|
|
3247
|
+
declare const index$3_statCardVariants: typeof statCardVariants;
|
|
3248
|
+
declare const index$3_timelineVariants: typeof timelineVariants;
|
|
3249
|
+
declare const index$3_treeNodeVariants: typeof treeNodeVariants;
|
|
3041
3250
|
declare namespace index$3 {
|
|
3042
|
-
export { index$3_AspectImage as AspectImage, type index$3_AspectImageProps as AspectImageProps, index$3_Avatar as Avatar, index$3_AvatarFallback as AvatarFallback, index$3_AvatarImage as AvatarImage, index$3_Badge as Badge, type index$3_BadgeProps as BadgeProps, index$3_Brand as Brand, type index$3_BrandProps as BrandProps, index$3_Calendar as Calendar, index$3_CalendarProps as CalendarProps, index$3_Card as Card, index$3_CardContent as CardContent, index$3_CardDescription as CardDescription, index$3_CardFooter as CardFooter, index$3_CardHeader as CardHeader, type index$3_CardProps as CardProps, index$3_CardTitle as CardTitle, index$3_Code as Code, type index$3_CodeProps as CodeProps, index$3_CollapsibleCodeBlock as CollapsibleCodeBlock, type index$3_CollapsibleCodeBlockProps as CollapsibleCodeBlockProps, index$3_DataTable as DataTable, index$3_DescriptionList as DescriptionList, type index$3_DescriptionListItem as DescriptionListItem, type index$3_DescriptionListProps as DescriptionListProps, index$3_GitHubIcon as GitHubIcon, type index$3_GitHubIconProps as GitHubIconProps, index$3_Heading as Heading, type index$3_HeadingProps as HeadingProps, index$3_Table as Table, index$3_TableBody as TableBody, index$3_TableCaption as TableCaption, index$3_TableCell as TableCell, index$3_TableFooter as TableFooter, index$3_TableHead as TableHead, index$3_TableHeader as TableHeader, index$3_TableRow as TableRow, index$3_Text as Text, type index$3_TextProps as TextProps, index$3_Typewriter as Typewriter, type index$3_TypewriterProps as TypewriterProps, index$3_VariableWeightText as VariableWeightText, index$3_badgeVariants as badgeVariants };
|
|
3251
|
+
export { index$3_AspectImage as AspectImage, type index$3_AspectImageProps as AspectImageProps, index$3_Avatar as Avatar, index$3_AvatarFallback as AvatarFallback, index$3_AvatarImage as AvatarImage, index$3_Badge as Badge, type index$3_BadgeProps as BadgeProps, index$3_Brand as Brand, type index$3_BrandProps as BrandProps, index$3_Calendar as Calendar, index$3_CalendarProps as CalendarProps, index$3_Card as Card, index$3_CardContent as CardContent, index$3_CardDescription as CardDescription, index$3_CardFooter as CardFooter, index$3_CardHeader as CardHeader, type index$3_CardProps as CardProps, index$3_CardTitle as CardTitle, index$3_Code as Code, type index$3_CodeProps as CodeProps, index$3_CollapsibleCodeBlock as CollapsibleCodeBlock, type index$3_CollapsibleCodeBlockProps as CollapsibleCodeBlockProps, index$3_DataTable as DataTable, index$3_DescriptionList as DescriptionList, type index$3_DescriptionListItem as DescriptionListItem, type index$3_DescriptionListProps as DescriptionListProps, index$3_GitHubIcon as GitHubIcon, type index$3_GitHubIconProps as GitHubIconProps, index$3_Heading as Heading, type index$3_HeadingProps as HeadingProps, index$3_StatCard as StatCard, index$3_StatCardGroup as StatCardGroup, type index$3_StatCardProps as StatCardProps, index$3_Table as Table, index$3_TableBody as TableBody, index$3_TableCaption as TableCaption, index$3_TableCell as TableCell, index$3_TableFooter as TableFooter, index$3_TableHead as TableHead, index$3_TableHeader as TableHeader, index$3_TableRow as TableRow, index$3_Text as Text, type index$3_TextProps as TextProps, index$3_Timeline as Timeline, index$3_TimelineItem as TimelineItem, type index$3_TimelineItemProps as TimelineItemProps, type index$3_TimelineProps as TimelineProps, type index$3_TreeNode as TreeNode, index$3_TreeView as TreeView, type index$3_TreeViewProps as TreeViewProps, index$3_Typewriter as Typewriter, type index$3_TypewriterProps as TypewriterProps, index$3_VariableWeightText as VariableWeightText, index$3_badgeVariants as badgeVariants, index$3_cardVariants as cardVariants, index$3_statCardVariants as statCardVariants, index$3_timelineVariants as timelineVariants, index$3_treeNodeVariants as treeNodeVariants };
|
|
3043
3252
|
}
|
|
3044
3253
|
|
|
3045
3254
|
declare const index$2_Accordion: typeof Accordion;
|
|
@@ -3111,4 +3320,4 @@ declare namespace index {
|
|
|
3111
3320
|
export { index_SplashCursor as SplashCursor, index_TargetCursor as TargetCursor };
|
|
3112
3321
|
}
|
|
3113
3322
|
|
|
3114
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, index$8 as Actions, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AspectImage, type AspectImageProps, AspectRatio, Avatar, AvatarFallback, AvatarImage, BRAND, index$1 as Backgrounds, Badge, type BadgeProps, Brand, type BrandProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbItemLegacy, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Breadcrumbs, BreadcrumbsProps, Button, type ButtonProps, COMPONENT_COUNTS, COMPONENT_REGISTRY, Calendar, CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Code, type CodeProps, Collapsible, CollapsibleCodeBlock, type CollapsibleCodeBlockProps, CollapsibleContent, CollapsibleTrigger, ColorMode$1 as ColorMode, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, type ContainerProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CustomizerPanel, type CustomizerPanelProps, DOC_EXAMPLES, index$3 as DataDisplay, DataTable, DatePicker, DatePickerProps, DescriptionList, type DescriptionListItem, type DescriptionListProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DragDropHandle, DragDropHandleProps, DragDropItem, DragDropList, DragDropListProps, DragDropTable, DragDropTableProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, Dropdown, type DropdownItem, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type DropdownProps, FaultyTerminal, index$4 as Feedback, FilterButton, type FilterButtonProps, Footer, type FooterLink, type FooterProps, type FooterSection, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, index$7 as Forms, GitHubIcon, type GitHubIconProps, type GradientConfig, Grid, GridItem, type GridItemProps, type GridProps, Header, type HeaderNavLink, type HeaderProps, Heading, type HeadingProps, HeroBlock, type HeroBlockProps, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, index$2 as Layout, Link, type LinkProps, MARKETING_COPY, Magnetic, type MagneticProps, Menubar, MenubarContent, MenubarGroup, MenubarItem, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarTrigger, Modal, type ModalProps, index as Motion, NavLink, type NavLinkProps, index$6 as Navigation, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, OpenGraphCard, type OpenGraphCardProps, OrbBackground, type OrbBackgroundProps, index$5 as Overlays, PageLayout, type PageLayoutProps, PageTemplate, type PageTemplateHeaderConfig, type PageTemplateProps, type PageTemplateSecondaryNavConfig, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, ProgressBar, type ProgressBarProps, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SearchBar, type SearchBarProps, SecondaryNav, type SecondaryNavItem, type SecondaryNavProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparatorComp as SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarItem, SidebarOverlay, Skeleton, type SkeletonProps, Slider, Spinner, type SpinnerProps, SplashCursor, Stack, type StackProps, Switch, SyntaxToken, SyntaxType, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TargetCursor, TertiaryNav, type TertiaryNavItem, type TertiaryNavProps, Text, TextField, type TextFieldProps, type TextProps, Textarea, type TextareaProps, ThemeName$1 as ThemeName, ThemeSwitcher, type ThemeSwitcherProps, ThemeToggle, type ThemeToggleProps, type Toast, ToastProvider, type ToastProviderProps, type ToastType, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, Typewriter, type TypewriterProps, VariableWeightText, WarpBackground, badgeVariants, buttonVariants, navigationMenuTriggerStyle, toggleVariants, useCustomizer, useFormField, useThemeStore, useToast };
|
|
3323
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, index$8 as Actions, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AspectImage, type AspectImageProps, AspectRatio, Avatar, AvatarFallback, AvatarImage, BRAND, index$1 as Backgrounds, Badge, type BadgeProps, Brand, type BrandProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbItemLegacy, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Breadcrumbs, BreadcrumbsProps, Button, type ButtonProps, COMPONENT_COUNTS, COMPONENT_REGISTRY, Calendar, CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Code, type CodeProps, Collapsible, CollapsibleCodeBlock, type CollapsibleCodeBlockProps, CollapsibleContent, CollapsibleTrigger, ColorMode$1 as ColorMode, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, type ContainerProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CustomizerPanel, type CustomizerPanelProps, DOC_EXAMPLES, index$3 as DataDisplay, DataTable, DatePicker, DatePickerProps, DescriptionList, type DescriptionListItem, type DescriptionListProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DragDropHandle, DragDropHandleProps, DragDropItem, DragDropList, DragDropListProps, DragDropTable, DragDropTableProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, Dropdown, type DropdownItem, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type DropdownProps, EmptyState, type EmptyStateProps, FaultyTerminal, index$4 as Feedback, FileUpload, type FileUploadProps, FilterButton, type FilterButtonProps, Footer, type FooterLink, type FooterProps, type FooterSection, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, index$7 as Forms, GitHubIcon, type GitHubIconProps, type GradientConfig, Grid, GridItem, type GridItemProps, type GridProps, Header, type HeaderNavLink, type HeaderProps, Heading, type HeadingProps, HeroBlock, type HeroBlockProps, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, index$2 as Layout, Link, type LinkProps, MARKETING_COPY, Magnetic, type MagneticProps, Menubar, MenubarContent, MenubarGroup, MenubarItem, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarTrigger, Modal, type ModalProps, index as Motion, NavLink, type NavLinkProps, index$6 as Navigation, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NotificationCenter, type NotificationCenterProps, type NotificationItem, OpenGraphCard, type OpenGraphCardProps, OrbBackground, type OrbBackgroundProps, index$5 as Overlays, PageLayout, type PageLayoutProps, PageTemplate, type PageTemplateHeaderConfig, type PageTemplateProps, type PageTemplateSecondaryNavConfig, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, ProgressBar, type ProgressBarProps, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SearchBar, type SearchBarProps, SecondaryNav, type SecondaryNavItem, type SecondaryNavProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparatorComp as SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarItem, SidebarOverlay, Skeleton, type SkeletonProps, Slider, Spinner, type SpinnerProps, SplashCursor, Stack, type StackProps, StatCard, StatCardGroup, type StatCardProps, Stepper, type StepperProps, StepperStep, type StepperStepProps, Switch, SyntaxToken, SyntaxType, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TargetCursor, TertiaryNav, type TertiaryNavItem, type TertiaryNavProps, Text, TextField, type TextFieldProps, type TextProps, Textarea, type TextareaProps, ThemeName$1 as ThemeName, ThemeSwitcher, type ThemeSwitcherProps, ThemeToggle, type ThemeToggleProps, Timeline, TimelineItem, type TimelineItemProps, type TimelineProps, type Toast, ToastProvider, type ToastProviderProps, type ToastType, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type TreeNode, TreeView, type TreeViewProps, Typewriter, type TypewriterProps, VariableWeightText, WarpBackground, alertVariants, badgeVariants, buttonVariants, cardVariants, emptyStateVariants, fileUploadZoneVariants, labelVariants, navigationMenuTriggerStyle, sheetVariants, statCardVariants, stepperVariants, timelineVariants, toggleVariants, treeNodeVariants, useCustomizer, useFormField, useThemeStore, useToast };
|