buildgrid-ui 1.20.0 → 1.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/buildgrid-ui.css +1 -1
- package/dist/buildgrid-ui.es.js +12830 -9880
- package/dist/buildgrid-ui.umd.js +92 -87
- package/dist/components/aspect-ratio/aspect-ratio.d.ts +4 -0
- package/dist/components/aspect-ratio/index.d.ts +1 -0
- package/dist/components/breadcrumb/breadcrumb.d.ts +11 -0
- package/dist/components/breadcrumb/index.d.ts +1 -0
- package/dist/components/button-group/button-group.d.ts +6 -0
- package/dist/components/button-group/index.d.ts +1 -0
- package/dist/components/context-menu/context-menu.d.ts +27 -0
- package/dist/components/context-menu/index.d.ts +1 -0
- package/dist/components/drawer/drawer.d.ts +18 -0
- package/dist/components/drawer/index.d.ts +1 -0
- package/dist/components/hover-card/hover-card.d.ts +6 -0
- package/dist/components/hover-card/index.d.ts +1 -0
- package/dist/components/index.d.ts +12 -0
- package/dist/components/input-otp/index.d.ts +1 -0
- package/dist/components/input-otp/input-otp.d.ts +29 -0
- package/dist/components/kbd/index.d.ts +1 -0
- package/dist/components/kbd/kbd.d.ts +4 -0
- package/dist/components/menubar/index.d.ts +1 -0
- package/dist/components/menubar/menubar.d.ts +33 -0
- package/dist/components/resizable/index.d.ts +1 -0
- package/dist/components/resizable/resizable.d.ts +17 -0
- package/dist/components/scroll-area/index.d.ts +1 -0
- package/dist/components/scroll-area/scroll-area.d.ts +5 -0
- package/dist/components/typography/index.d.ts +1 -0
- package/dist/components/typography/typography.d.ts +14 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './aspect-ratio';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare function Breadcrumb({ ...props }: React.ComponentProps<'nav'>): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
declare function BreadcrumbList({ className, ...props }: React.ComponentProps<'ol'>): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function BreadcrumbItem({ className, ...props }: React.ComponentProps<'li'>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare function BreadcrumbLink({ asChild, className, ...props }: React.ComponentProps<'a'> & {
|
|
6
|
+
asChild?: boolean;
|
|
7
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
declare function BreadcrumbPage({ className, ...props }: React.ComponentProps<'span'>): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare function BreadcrumbSeparator({ children, className, ...props }: React.ComponentProps<'li'>): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare function BreadcrumbEllipsis({ className, ...props }: React.ComponentProps<'span'>): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export { Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './breadcrumb';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
type ButtonGroupProps = React.ComponentProps<'div'> & {
|
|
3
|
+
orientation?: 'horizontal' | 'vertical';
|
|
4
|
+
};
|
|
5
|
+
declare function ButtonGroup({ className, orientation, ...props }: ButtonGroupProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export { ButtonGroup, type ButtonGroupProps };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './button-group';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
declare const ContextMenu: React.FC<ContextMenuPrimitive.ContextMenuProps>;
|
|
4
|
+
declare const ContextMenuTrigger: React.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuTriggerProps & React.RefAttributes<HTMLSpanElement>>;
|
|
5
|
+
declare const ContextMenuGroup: React.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
6
|
+
declare const ContextMenuPortal: React.FC<ContextMenuPrimitive.ContextMenuPortalProps>;
|
|
7
|
+
declare const ContextMenuSub: React.FC<ContextMenuPrimitive.ContextMenuSubProps>;
|
|
8
|
+
declare const ContextMenuRadioGroup: React.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
9
|
+
declare const ContextMenuSubTrigger: React.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
10
|
+
inset?: boolean;
|
|
11
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
12
|
+
declare const ContextMenuSubContent: React.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
13
|
+
declare const ContextMenuContent: React.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
14
|
+
declare const ContextMenuItem: React.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
15
|
+
inset?: boolean;
|
|
16
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
17
|
+
declare const ContextMenuCheckboxItem: React.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
18
|
+
declare const ContextMenuRadioItem: React.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
19
|
+
declare const ContextMenuLabel: React.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
20
|
+
inset?: boolean;
|
|
21
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
22
|
+
declare const ContextMenuSeparator: React.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
23
|
+
declare const ContextMenuShortcut: {
|
|
24
|
+
({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): import("react/jsx-runtime").JSX.Element;
|
|
25
|
+
displayName: string;
|
|
26
|
+
};
|
|
27
|
+
export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './context-menu';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
declare function Drawer({ ...props }: React.ComponentProps<typeof DialogPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function DrawerTrigger({ ...props }: React.ComponentProps<typeof DialogPrimitive.Trigger>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare function DrawerClose({ ...props }: React.ComponentProps<typeof DialogPrimitive.Close>): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
declare function DrawerPortal({ ...props }: React.ComponentProps<typeof DialogPrimitive.Portal>): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function DrawerOverlay({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Overlay>): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
type DrawerDirection = 'top' | 'bottom' | 'left' | 'right';
|
|
9
|
+
interface DrawerContentProps extends React.ComponentProps<typeof DialogPrimitive.Content> {
|
|
10
|
+
direction?: DrawerDirection;
|
|
11
|
+
}
|
|
12
|
+
declare function DrawerContent({ className, children, direction, ...props }: DrawerContentProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
declare function DrawerHeader({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
declare function DrawerFooter({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
declare function DrawerTitle({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Title>): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
declare function DrawerDescription({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Description>): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, };
|
|
18
|
+
export type { DrawerContentProps, DrawerDirection };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './drawer';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
declare function HoverCard({ ...props }: React.ComponentProps<typeof HoverCardPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function HoverCardTrigger({ ...props }: React.ComponentProps<typeof HoverCardPrimitive.Trigger>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare function HoverCardContent({ className, align, sideOffset, ...props }: React.ComponentProps<typeof HoverCardPrimitive.Content>): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export { HoverCard, HoverCardContent, HoverCardTrigger };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './hover-card';
|
|
@@ -2,22 +2,31 @@ export * from './accordion';
|
|
|
2
2
|
export * from './adaptive-input';
|
|
3
3
|
export * from './alert';
|
|
4
4
|
export * from './alert-dialog';
|
|
5
|
+
export * from './aspect-ratio';
|
|
5
6
|
export * from './autocomplete';
|
|
6
7
|
export * from './avatar';
|
|
7
8
|
export * from './badge';
|
|
9
|
+
export * from './breadcrumb';
|
|
8
10
|
export * from './button';
|
|
11
|
+
export * from './button-group';
|
|
9
12
|
export * from './calendar';
|
|
10
13
|
export * from './card';
|
|
11
14
|
export * from './carousel';
|
|
12
15
|
export * from './checkbox';
|
|
13
16
|
export * from './collapsible';
|
|
14
17
|
export * from './command';
|
|
18
|
+
export * from './context-menu';
|
|
15
19
|
export * from './currency-input';
|
|
16
20
|
export * from './date-picker';
|
|
17
21
|
export * from './dialog';
|
|
22
|
+
export * from './drawer';
|
|
18
23
|
export * from './dropdown-menu';
|
|
24
|
+
export * from './hover-card';
|
|
19
25
|
export * from './input';
|
|
26
|
+
export * from './input-otp';
|
|
27
|
+
export * from './kbd';
|
|
20
28
|
export * from './label';
|
|
29
|
+
export * from './menubar';
|
|
21
30
|
export * from './multi-select';
|
|
22
31
|
export * from './navigation-menu';
|
|
23
32
|
export * from './pagination';
|
|
@@ -25,6 +34,8 @@ export * from './password-input';
|
|
|
25
34
|
export * from './popover';
|
|
26
35
|
export * from './progress';
|
|
27
36
|
export * from './radio-group';
|
|
37
|
+
export * from './resizable';
|
|
38
|
+
export * from './scroll-area';
|
|
28
39
|
export * from './select';
|
|
29
40
|
export * from './separator';
|
|
30
41
|
export * from './sheet';
|
|
@@ -40,3 +51,4 @@ export * from './toaster';
|
|
|
40
51
|
export * from './toggle';
|
|
41
52
|
export * from './toggle-group';
|
|
42
53
|
export * from './tooltip';
|
|
54
|
+
export * from './typography';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './input-otp';
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { OneTimePasswordFieldInput } from '@radix-ui/react-one-time-password-field';
|
|
3
|
+
interface InputOTPProps {
|
|
4
|
+
length?: number;
|
|
5
|
+
value?: string;
|
|
6
|
+
onValueChange?: (value: string) => void;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
placeholder?: string;
|
|
9
|
+
className?: string;
|
|
10
|
+
validationType?: 'alpha' | 'numeric' | 'alphanumeric' | 'none';
|
|
11
|
+
autoFocus?: boolean;
|
|
12
|
+
autoSubmit?: boolean;
|
|
13
|
+
onAutoSubmit?: (value: string) => void;
|
|
14
|
+
name?: string;
|
|
15
|
+
form?: string;
|
|
16
|
+
}
|
|
17
|
+
interface InputOTPRootProps extends InputOTPProps {
|
|
18
|
+
children?: React.ReactNode;
|
|
19
|
+
}
|
|
20
|
+
declare function InputOTP({ length, value, onValueChange, disabled, placeholder, className, validationType, autoFocus, autoSubmit, onAutoSubmit, name, form, children, }: InputOTPRootProps): import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
interface InputOTPSlotProps extends Omit<React.ComponentProps<typeof OneTimePasswordFieldInput>, 'index'> {
|
|
22
|
+
index: number;
|
|
23
|
+
className?: string;
|
|
24
|
+
}
|
|
25
|
+
declare function InputOTPSlot({ index, className, ...props }: InputOTPSlotProps): import("react/jsx-runtime").JSX.Element;
|
|
26
|
+
declare function InputOTPGroup({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
27
|
+
declare function InputOTPSeparator({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
28
|
+
export { InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot };
|
|
29
|
+
export type { InputOTPProps, InputOTPSlotProps };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './kbd';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './menubar';
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
declare const Menubar: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
4
|
+
declare const MenubarMenu: {
|
|
5
|
+
(props: MenubarPrimitive.MenubarMenuProps & {
|
|
6
|
+
__scopeMenubar?: import("@radix-ui/react-context").Scope;
|
|
7
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
declare const MenubarGroup: React.ForwardRefExoticComponent<MenubarPrimitive.MenubarGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
11
|
+
declare const MenubarPortal: React.FC<MenubarPrimitive.MenubarPortalProps>;
|
|
12
|
+
declare const MenubarSub: React.FC<MenubarPrimitive.MenubarSubProps>;
|
|
13
|
+
declare const MenubarRadioGroup: React.ForwardRefExoticComponent<MenubarPrimitive.MenubarRadioGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
14
|
+
declare const MenubarTrigger: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
15
|
+
declare const MenubarSubTrigger: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSubTriggerProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
16
|
+
inset?: boolean;
|
|
17
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
18
|
+
declare const MenubarSubContent: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
19
|
+
declare const MenubarContent: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
20
|
+
declare const MenubarItem: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
21
|
+
inset?: boolean;
|
|
22
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
23
|
+
declare const MenubarCheckboxItem: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
24
|
+
declare const MenubarRadioItem: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
25
|
+
declare const MenubarLabel: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
26
|
+
inset?: boolean;
|
|
27
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
28
|
+
declare const MenubarSeparator: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
29
|
+
declare const MenubarShortcut: {
|
|
30
|
+
({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
displayName: string;
|
|
32
|
+
};
|
|
33
|
+
export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './resizable';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface ResizablePanelGroupProps extends React.ComponentProps<'div'> {
|
|
3
|
+
direction?: 'horizontal' | 'vertical';
|
|
4
|
+
}
|
|
5
|
+
declare function ResizablePanelGroup({ className, direction, children, ...props }: ResizablePanelGroupProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
interface ResizablePanelProps extends React.ComponentProps<'div'> {
|
|
7
|
+
defaultSize?: number;
|
|
8
|
+
minSize?: number;
|
|
9
|
+
}
|
|
10
|
+
declare function ResizablePanel({ className, defaultSize, minSize, style, ...props }: ResizablePanelProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
interface ResizableHandleProps extends React.ComponentProps<'div'> {
|
|
12
|
+
withHandle?: boolean;
|
|
13
|
+
direction?: 'horizontal' | 'vertical';
|
|
14
|
+
}
|
|
15
|
+
declare function ResizableHandle({ className, withHandle, direction, ...props }: ResizableHandleProps): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export { ResizableHandle, ResizablePanel, ResizablePanelGroup };
|
|
17
|
+
export type { ResizableHandleProps, ResizablePanelGroupProps, ResizablePanelProps };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './scroll-area';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
declare function ScrollArea({ className, children, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function ScrollBar({ className, orientation, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export { ScrollArea, ScrollBar };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './typography';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare function TypographyH1({ className, ...props }: React.ComponentProps<'h1'>): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
declare function TypographyH2({ className, ...props }: React.ComponentProps<'h2'>): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare function TypographyH3({ className, ...props }: React.ComponentProps<'h3'>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare function TypographyH4({ className, ...props }: React.ComponentProps<'h4'>): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
declare function TypographyP({ className, ...props }: React.ComponentProps<'p'>): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function TypographyLead({ className, ...props }: React.ComponentProps<'p'>): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
declare function TypographyLarge({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare function TypographySmall({ className, ...props }: React.ComponentProps<'small'>): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare function TypographyMuted({ className, ...props }: React.ComponentProps<'p'>): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
declare function TypographyBlockquote({ className, ...props }: React.ComponentProps<'blockquote'>): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
declare function TypographyCode({ className, ...props }: React.ComponentProps<'code'>): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
declare function TypographyList({ className, ...props }: React.ComponentProps<'ul'>): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export { TypographyH1, TypographyH2, TypographyH3, TypographyH4, TypographyP, TypographyLead, TypographyLarge, TypographySmall, TypographyMuted, TypographyBlockquote, TypographyCode, TypographyList, };
|