@mandolop97/constructor-nexora 1.1.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/NexoraBuilderApp.d.ts +9 -1
- package/dist/components/builder/BuilderCanvas.d.ts +8 -1
- package/dist/components/builder/BuilderEditorShell.d.ts +5 -1
- package/dist/components/builder/CustomStylesInjector.d.ts +12 -0
- package/dist/components/builder/GradientEditor.d.ts +6 -0
- package/dist/components/builder/ImageUploadField.d.ts +7 -0
- package/dist/components/builder/Inspector.d.ts +3 -1
- package/dist/components/builder/LayersPanel.d.ts +2 -1
- package/dist/components/builder/MediaGallery.d.ts +7 -0
- package/dist/components/builder/ProductPicker.d.ts +19 -0
- package/dist/components/schema/PageRenderer.d.ts +6 -2
- package/dist/components/schema/SortableNodeWrapper.d.ts +6 -1
- package/dist/components/schema/nodes/ContentNodes.d.ts +3 -0
- package/dist/components/ui/badge.d.ts +1 -1
- package/dist/components/ui/button.d.ts +2 -2
- package/dist/components/ui/command.d.ts +1 -1
- package/dist/components/ui/input-otp.d.ts +2 -2
- package/dist/components/ui/resizable.d.ts +1 -1
- package/dist/components/ui/sheet.d.ts +1 -1
- package/dist/components/ui/sidebar.d.ts +1 -1
- package/dist/components/ui/toggle-group.d.ts +2 -2
- package/dist/components/ui/toggle.d.ts +2 -2
- package/dist/index-DjKwM6DM.js +18350 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +40 -15726
- package/dist/integrations/supabase/client.d.ts +78 -0
- package/dist/integrations/supabase/types.d.ts +78 -0
- package/dist/lib/block-registry.d.ts +18 -34
- package/dist/lib/style-utils.d.ts +16 -0
- package/dist/lucide-react-Cg3_Ko9l.js +19114 -0
- package/dist/types/schema.d.ts +102 -39
- package/package.json +1 -1
|
@@ -20,5 +20,13 @@ export interface NexoraBuilderAppProps {
|
|
|
20
20
|
locale?: 'es' | 'en' | BuilderLocale;
|
|
21
21
|
customComponents?: CustomComponentMap;
|
|
22
22
|
extraBlocks?: BlockDefinition[];
|
|
23
|
+
/** URLs of external CSS stylesheets to inject into the canvas */
|
|
24
|
+
customStylesheets?: string[];
|
|
25
|
+
/** Raw CSS string to inject into the canvas */
|
|
26
|
+
customCSS?: string;
|
|
27
|
+
/** Callback for image uploads from inspector fields */
|
|
28
|
+
onImageUpload?: (file: File) => Promise<string>;
|
|
29
|
+
/** Resolve asset paths to full URLs */
|
|
30
|
+
resolveAssetUrl?: (path: string) => string;
|
|
23
31
|
}
|
|
24
|
-
export declare function NexoraBuilderApp({ initialSchema, domain, pageSlug, onSave, onPublish, onPreview, onExport, className, pages, activePage, onPageChange, onSaveWithSlug, onPublishSubmit, locale: localeProp, customComponents, extraBlocks, }: NexoraBuilderAppProps): import("react/jsx-runtime").JSX.Element;
|
|
32
|
+
export declare function NexoraBuilderApp({ initialSchema, domain, pageSlug, onSave, onPublish, onPreview, onExport, className, pages, activePage, onPageChange, onSaveWithSlug, onPublishSubmit, locale: localeProp, customComponents, extraBlocks, customStylesheets, customCSS, onImageUpload, resolveAssetUrl, }: NexoraBuilderAppProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -12,6 +12,13 @@ interface BuilderCanvasProps {
|
|
|
12
12
|
height: number;
|
|
13
13
|
};
|
|
14
14
|
mockData?: Record<string, any>;
|
|
15
|
+
customStylesheets?: string[];
|
|
16
|
+
customCSS?: string;
|
|
17
|
+
onCopyNode?: (nodeId: string) => void;
|
|
18
|
+
onPasteNode?: (nodeId: string) => void;
|
|
19
|
+
onDuplicateNode?: (nodeId: string) => void;
|
|
20
|
+
onDeleteNode?: (nodeId: string) => void;
|
|
21
|
+
canPaste?: boolean;
|
|
15
22
|
}
|
|
16
|
-
export declare function BuilderCanvas({ schema, device, selectedNodeId, onSelectNode, customComponents, templateType, canvasSize, mockData }: BuilderCanvasProps): import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export declare function BuilderCanvas({ schema, device, selectedNodeId, onSelectNode, customComponents, templateType, canvasSize, mockData, customStylesheets, customCSS, onCopyNode, onPasteNode, onDuplicateNode, onDeleteNode, canPaste }: BuilderCanvasProps): import("react/jsx-runtime").JSX.Element;
|
|
17
24
|
export {};
|
|
@@ -15,5 +15,9 @@ export interface BuilderEditorShellProps {
|
|
|
15
15
|
pageTitle?: string;
|
|
16
16
|
customComponents?: CustomComponentMap;
|
|
17
17
|
onBack?: () => void;
|
|
18
|
+
customStylesheets?: string[];
|
|
19
|
+
customCSS?: string;
|
|
20
|
+
onImageUpload?: (file: File) => Promise<string>;
|
|
21
|
+
resolveAssetUrl?: (path: string) => string;
|
|
18
22
|
}
|
|
19
|
-
export declare function BuilderEditorShell({ initialSchema, onSave: onSaveExternal, onPublish, onPreview, onExport, className, onPublishSubmit, pages, activePage, onPageChange, pageTitle, customComponents, onBack, }: BuilderEditorShellProps): import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export declare function BuilderEditorShell({ initialSchema, onSave: onSaveExternal, onPublish, onPreview, onExport, className, onPublishSubmit, pages, activePage, onPageChange, pageTitle, customComponents, onBack, customStylesheets, customCSS, onImageUpload, resolveAssetUrl, }: BuilderEditorShellProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
interface CustomStylesInjectorProps {
|
|
2
|
+
/** External CSS stylesheet URLs to load */
|
|
3
|
+
stylesheets?: string[];
|
|
4
|
+
/** Raw CSS string to inject */
|
|
5
|
+
css?: string;
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* Injects custom stylesheets (<link>) and raw CSS (<style>) into the
|
|
9
|
+
* canvas so builder preview matches the real site appearance.
|
|
10
|
+
*/
|
|
11
|
+
export declare function CustomStylesInjector({ stylesheets, css }: CustomStylesInjectorProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -5,6 +5,8 @@ interface InspectorProps {
|
|
|
5
5
|
onUpdateStyle: (style: Partial<NodeStyle>) => void;
|
|
6
6
|
onDelete: () => void;
|
|
7
7
|
onDuplicate?: () => void;
|
|
8
|
+
onImageUpload?: (file: File) => Promise<string>;
|
|
9
|
+
onUpdateCustomCSS?: (css: string) => void;
|
|
8
10
|
}
|
|
9
|
-
export declare function Inspector({ node, onUpdateProps, onUpdateStyle, onDelete, onDuplicate }: InspectorProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare function Inspector({ node, onUpdateProps, onUpdateStyle, onDelete, onDuplicate, onImageUpload, onUpdateCustomCSS }: InspectorProps): import("react/jsx-runtime").JSX.Element;
|
|
10
12
|
export {};
|
|
@@ -8,6 +8,7 @@ interface LayersPanelProps {
|
|
|
8
8
|
onDeleteNode?: (nodeId: string) => void;
|
|
9
9
|
onMoveNode?: (nodeId: string, newParentId: string, index: number) => void;
|
|
10
10
|
onRenameNode?: (nodeId: string, newName: string) => void;
|
|
11
|
+
onToggleVisibility?: (nodeId: string) => void;
|
|
11
12
|
}
|
|
12
|
-
export declare function LayersPanel({ schema, selectedNodeId, onSelectNode, onReorderChildren, onDuplicateNode, onDeleteNode, onMoveNode, onRenameNode, }: LayersPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export declare function LayersPanel({ schema, selectedNodeId, onSelectNode, onReorderChildren, onDuplicateNode, onDeleteNode, onMoveNode, onRenameNode, onToggleVisibility, }: LayersPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
13
14
|
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
interface Product {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
price: number;
|
|
6
|
+
original_price: number | null;
|
|
7
|
+
badge: string;
|
|
8
|
+
image_url: string;
|
|
9
|
+
category: string;
|
|
10
|
+
sku: string;
|
|
11
|
+
in_stock: boolean;
|
|
12
|
+
}
|
|
13
|
+
interface ProductPickerProps {
|
|
14
|
+
open: boolean;
|
|
15
|
+
onClose: () => void;
|
|
16
|
+
onSelect: (product: Product) => void;
|
|
17
|
+
}
|
|
18
|
+
export declare function ProductPicker({ open, onClose, onSelect }: ProductPickerProps): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export {};
|
|
@@ -6,8 +6,12 @@ interface PageRendererProps {
|
|
|
6
6
|
selectedNodeId?: string | null;
|
|
7
7
|
onSelectNode?: (nodeId: string) => void;
|
|
8
8
|
customComponents?: CustomComponentMap;
|
|
9
|
-
/** Mock data passed to custom components in edit/preview mode */
|
|
10
9
|
mockData?: Record<string, any>;
|
|
10
|
+
onCopyNode?: (nodeId: string) => void;
|
|
11
|
+
onPasteNode?: (nodeId: string) => void;
|
|
12
|
+
onDuplicateNode?: (nodeId: string) => void;
|
|
13
|
+
onDeleteNode?: (nodeId: string) => void;
|
|
14
|
+
canPaste?: boolean;
|
|
11
15
|
}
|
|
12
|
-
export declare function PageRenderer({ schema, mode, selectedNodeId, onSelectNode, customComponents, mockData }: PageRendererProps): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export declare function PageRenderer({ schema, mode, selectedNodeId, onSelectNode, customComponents, mockData, onCopyNode, onPasteNode, onDuplicateNode, onDeleteNode, canPaste }: PageRendererProps): import("react/jsx-runtime").JSX.Element;
|
|
13
17
|
export {};
|
|
@@ -5,6 +5,11 @@ interface SortableNodeWrapperProps {
|
|
|
5
5
|
isSelected: boolean;
|
|
6
6
|
nodeType: string;
|
|
7
7
|
onSelect: (id: string) => void;
|
|
8
|
+
onCopy?: (id: string) => void;
|
|
9
|
+
onPaste?: (id: string) => void;
|
|
10
|
+
onDuplicate?: (id: string) => void;
|
|
11
|
+
onDelete?: (id: string) => void;
|
|
12
|
+
canPaste?: boolean;
|
|
8
13
|
}
|
|
9
|
-
export declare function SortableNodeWrapper({ nodeId, children, isSelected, nodeType, onSelect }: SortableNodeWrapperProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export declare function SortableNodeWrapper({ nodeId, children, isSelected, nodeType, onSelect, onCopy, onPaste, onDuplicate, onDelete, canPaste }: SortableNodeWrapperProps): import("react/jsx-runtime").JSX.Element;
|
|
10
15
|
export {};
|
|
@@ -9,4 +9,7 @@ export declare function TextNode({ node }: NodeComponentProps): import("react/js
|
|
|
9
9
|
export declare function ImageNode({ node }: NodeComponentProps): import("react/jsx-runtime").JSX.Element;
|
|
10
10
|
export declare function DividerNode({ node }: NodeComponentProps): import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
export declare function BadgeNode({ node }: NodeComponentProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare function SpacerNode({ node }: NodeComponentProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export declare function IconNode({ node }: NodeComponentProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export declare function SocialIconsNode({ node }: NodeComponentProps): import("react/jsx-runtime").JSX.Element;
|
|
12
15
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { type VariantProps } from "class-variance-authority";
|
|
3
3
|
declare const badgeVariants: (props?: {
|
|
4
|
-
variant?: "
|
|
4
|
+
variant?: "outline" | "default" | "destructive" | "secondary";
|
|
5
5
|
} & import("class-variance-authority/types").ClassProp) => string;
|
|
6
6
|
export interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
7
7
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { type VariantProps } from "class-variance-authority";
|
|
3
3
|
declare const buttonVariants: (props?: {
|
|
4
|
-
variant?: "
|
|
5
|
-
size?: "default" | "
|
|
4
|
+
variant?: "outline" | "link" | "default" | "destructive" | "secondary" | "ghost";
|
|
5
|
+
size?: "default" | "icon" | "sm" | "lg";
|
|
6
6
|
} & import("class-variance-authority/types").ClassProp) => string;
|
|
7
7
|
export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
8
8
|
asChild?: boolean;
|
|
@@ -50,7 +50,7 @@ declare const CommandGroup: React.ForwardRefExoticComponent<Omit<{
|
|
|
50
50
|
ref?: React.Ref<HTMLDivElement>;
|
|
51
51
|
} & {
|
|
52
52
|
asChild?: boolean;
|
|
53
|
-
}, "key" | "asChild" | keyof React.HTMLAttributes<HTMLDivElement>>, "
|
|
53
|
+
}, "key" | "asChild" | keyof React.HTMLAttributes<HTMLDivElement>>, "heading" | "value"> & {
|
|
54
54
|
heading?: React.ReactNode;
|
|
55
55
|
value?: string;
|
|
56
56
|
forceMount?: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
declare const InputOTP: React.ForwardRefExoticComponent<(Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "
|
|
2
|
+
declare const InputOTP: React.ForwardRefExoticComponent<(Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "textAlign" | "onChange" | "value" | "maxLength" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
3
3
|
value?: string;
|
|
4
4
|
onChange?: (newValue: string) => unknown;
|
|
5
5
|
maxLength: number;
|
|
@@ -12,7 +12,7 @@ declare const InputOTP: React.ForwardRefExoticComponent<(Omit<Omit<React.InputHT
|
|
|
12
12
|
} & {
|
|
13
13
|
render: (props: import("input-otp").RenderProps) => React.ReactNode;
|
|
14
14
|
children?: never;
|
|
15
|
-
} & React.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "
|
|
15
|
+
} & React.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "textAlign" | "onChange" | "value" | "maxLength" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
16
16
|
value?: string;
|
|
17
17
|
onChange?: (newValue: string) => unknown;
|
|
18
18
|
maxLength: number;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as ResizablePrimitive from "react-resizable-panels";
|
|
2
2
|
declare const ResizablePanelGroup: ({ className, ...props }: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
declare const ResizablePanel: import("react").ForwardRefExoticComponent<Omit<import("react").HTMLAttributes<HTMLObjectElement | HTMLElement | HTMLHeadingElement | HTMLParagraphElement | HTMLSpanElement | HTMLSelectElement | HTMLAnchorElement | HTMLAreaElement | HTMLAudioElement | HTMLBaseElement | HTMLQuoteElement | HTMLBodyElement | HTMLBRElement | HTMLButtonElement | HTMLCanvasElement | HTMLTableColElement | HTMLDataElement | HTMLDataListElement | HTMLModElement | HTMLDetailsElement | HTMLDialogElement | HTMLDivElement | HTMLDListElement | HTMLEmbedElement | HTMLFieldSetElement | HTMLFormElement | HTMLHeadElement | HTMLHRElement | HTMLHtmlElement | HTMLIFrameElement | HTMLImageElement | HTMLInputElement |
|
|
3
|
+
declare const ResizablePanel: import("react").ForwardRefExoticComponent<Omit<import("react").HTMLAttributes<HTMLObjectElement | HTMLElement | HTMLLabelElement | HTMLHeadingElement | HTMLParagraphElement | HTMLSpanElement | HTMLLinkElement | HTMLSelectElement | HTMLTextAreaElement | HTMLAnchorElement | HTMLAreaElement | HTMLAudioElement | HTMLBaseElement | HTMLQuoteElement | HTMLBodyElement | HTMLBRElement | HTMLButtonElement | HTMLCanvasElement | HTMLTableColElement | HTMLDataElement | HTMLDataListElement | HTMLModElement | HTMLDetailsElement | HTMLDialogElement | HTMLDivElement | HTMLDListElement | HTMLEmbedElement | HTMLFieldSetElement | HTMLFormElement | HTMLHeadElement | HTMLHRElement | HTMLHtmlElement | HTMLIFrameElement | HTMLImageElement | HTMLInputElement | HTMLLegendElement | HTMLLIElement | HTMLMapElement | HTMLMetaElement | HTMLMeterElement | HTMLOListElement | HTMLOptGroupElement | HTMLOptionElement | HTMLOutputElement | HTMLPreElement | HTMLProgressElement | HTMLSlotElement | HTMLScriptElement | HTMLSourceElement | HTMLStyleElement | HTMLTableElement | HTMLTemplateElement | HTMLTableSectionElement | HTMLTableCellElement | HTMLTimeElement | HTMLTitleElement | HTMLTableRowElement | HTMLTrackElement | HTMLUListElement | HTMLVideoElement | HTMLTableCaptionElement | HTMLMenuElement | HTMLPictureElement>, "id" | "onResize"> & {
|
|
4
4
|
className?: string | undefined;
|
|
5
5
|
collapsedSize?: number | undefined;
|
|
6
6
|
collapsible?: boolean | undefined;
|
|
@@ -7,7 +7,7 @@ declare const SheetClose: React.ForwardRefExoticComponent<SheetPrimitive.DialogC
|
|
|
7
7
|
declare const SheetPortal: React.FC<SheetPrimitive.DialogPortalProps>;
|
|
8
8
|
declare const SheetOverlay: React.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
9
9
|
declare const sheetVariants: (props?: {
|
|
10
|
-
side?: "
|
|
10
|
+
side?: "top" | "left" | "right" | "bottom";
|
|
11
11
|
} & import("class-variance-authority/types").ClassProp) => string;
|
|
12
12
|
interface SheetContentProps extends React.ComponentPropsWithoutRef<typeof SheetPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
13
13
|
}
|
|
@@ -45,7 +45,7 @@ declare const SidebarMenuButton: React.ForwardRefExoticComponent<Omit<React.Clas
|
|
|
45
45
|
isActive?: boolean;
|
|
46
46
|
tooltip?: string | React.ComponentProps<typeof TooltipContent>;
|
|
47
47
|
} & VariantProps<(props?: {
|
|
48
|
-
variant?: "
|
|
48
|
+
variant?: "outline" | "default";
|
|
49
49
|
size?: "default" | "sm" | "lg";
|
|
50
50
|
} & import("class-variance-authority/types").ClassProp) => string>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
51
51
|
declare const SidebarMenuAction: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLButtonElement> & React.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
@@ -2,11 +2,11 @@ import * as React from "react";
|
|
|
2
2
|
import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group";
|
|
3
3
|
import { type VariantProps } from "class-variance-authority";
|
|
4
4
|
declare const ToggleGroup: React.ForwardRefExoticComponent<((Omit<ToggleGroupPrimitive.ToggleGroupSingleProps & React.RefAttributes<HTMLDivElement>, "ref"> | Omit<ToggleGroupPrimitive.ToggleGroupMultipleProps & React.RefAttributes<HTMLDivElement>, "ref">) & VariantProps<(props?: {
|
|
5
|
-
variant?: "
|
|
5
|
+
variant?: "outline" | "default";
|
|
6
6
|
size?: "default" | "sm" | "lg";
|
|
7
7
|
} & import("class-variance-authority/types").ClassProp) => string>) & React.RefAttributes<HTMLDivElement>>;
|
|
8
8
|
declare const ToggleGroupItem: React.ForwardRefExoticComponent<Omit<ToggleGroupPrimitive.ToggleGroupItemProps & React.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: {
|
|
9
|
-
variant?: "
|
|
9
|
+
variant?: "outline" | "default";
|
|
10
10
|
size?: "default" | "sm" | "lg";
|
|
11
11
|
} & import("class-variance-authority/types").ClassProp) => string> & React.RefAttributes<HTMLButtonElement>>;
|
|
12
12
|
export { ToggleGroup, ToggleGroupItem };
|
|
@@ -2,11 +2,11 @@ import * as React from "react";
|
|
|
2
2
|
import * as TogglePrimitive from "@radix-ui/react-toggle";
|
|
3
3
|
import { type VariantProps } from "class-variance-authority";
|
|
4
4
|
declare const toggleVariants: (props?: {
|
|
5
|
-
variant?: "
|
|
5
|
+
variant?: "outline" | "default";
|
|
6
6
|
size?: "default" | "sm" | "lg";
|
|
7
7
|
} & import("class-variance-authority/types").ClassProp) => string;
|
|
8
8
|
declare const Toggle: React.ForwardRefExoticComponent<Omit<TogglePrimitive.ToggleProps & React.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: {
|
|
9
|
-
variant?: "
|
|
9
|
+
variant?: "outline" | "default";
|
|
10
10
|
size?: "default" | "sm" | "lg";
|
|
11
11
|
} & import("class-variance-authority/types").ClassProp) => string> & React.RefAttributes<HTMLButtonElement>>;
|
|
12
12
|
export { Toggle, toggleVariants };
|