@sikka/hawa 0.11.13-next → 0.11.14-next
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +59 -6
- package/dist/index.d.mts +29 -7
- package/dist/index.d.ts +29 -7
- package/dist/index.js +275 -106
- package/dist/index.mjs +514 -345
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -728,6 +728,14 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
728
728
|
.hawa-inset-0 {
|
|
729
729
|
inset: 0px;
|
|
730
730
|
}
|
|
731
|
+
.hawa-inset-x-0 {
|
|
732
|
+
left: 0px;
|
|
733
|
+
right: 0px;
|
|
734
|
+
}
|
|
735
|
+
.hawa-inset-y-0 {
|
|
736
|
+
top: 0px;
|
|
737
|
+
bottom: 0px;
|
|
738
|
+
}
|
|
731
739
|
.hawa--left-1 {
|
|
732
740
|
left: -0.25rem;
|
|
733
741
|
}
|
|
@@ -1772,8 +1780,8 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
1772
1780
|
.hawa-border-l-0 {
|
|
1773
1781
|
border-left-width: 0px;
|
|
1774
1782
|
}
|
|
1775
|
-
.hawa-border-l-
|
|
1776
|
-
border-left-width:
|
|
1783
|
+
.hawa-border-l-4 {
|
|
1784
|
+
border-left-width: 4px;
|
|
1777
1785
|
}
|
|
1778
1786
|
.hawa-border-r {
|
|
1779
1787
|
border-right-width: 1px;
|
|
@@ -1820,10 +1828,6 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
1820
1828
|
.hawa-border-primary {
|
|
1821
1829
|
border-color: hsl(var(--primary));
|
|
1822
1830
|
}
|
|
1823
|
-
.hawa-border-red-500 {
|
|
1824
|
-
--tw-border-opacity: 1;
|
|
1825
|
-
border-color: rgb(239 68 68 / var(--tw-border-opacity));
|
|
1826
|
-
}
|
|
1827
1831
|
.hawa-border-transparent {
|
|
1828
1832
|
border-color: transparent;
|
|
1829
1833
|
}
|
|
@@ -3173,6 +3177,9 @@ body {
|
|
|
3173
3177
|
.data-\[state\=open\]\:hawa-bg-accent[data-state=open] {
|
|
3174
3178
|
background-color: hsl(var(--accent));
|
|
3175
3179
|
}
|
|
3180
|
+
.data-\[state\=open\]\:hawa-bg-secondary[data-state=open] {
|
|
3181
|
+
background-color: hsl(var(--secondary));
|
|
3182
|
+
}
|
|
3176
3183
|
.data-\[state\=selected\]\:hawa-bg-muted[data-state=selected] {
|
|
3177
3184
|
background-color: hsl(var(--muted));
|
|
3178
3185
|
}
|
|
@@ -3196,6 +3203,12 @@ body {
|
|
|
3196
3203
|
.data-\[swipe\=move\]\:hawa-transition-none[data-swipe=move] {
|
|
3197
3204
|
transition-property: none;
|
|
3198
3205
|
}
|
|
3206
|
+
.data-\[state\=closed\]\:hawa-duration-300[data-state=closed] {
|
|
3207
|
+
transition-duration: 300ms;
|
|
3208
|
+
}
|
|
3209
|
+
.data-\[state\=open\]\:hawa-duration-300[data-state=open] {
|
|
3210
|
+
transition-duration: 300ms;
|
|
3211
|
+
}
|
|
3199
3212
|
.data-\[motion\^\=from-\]\:hawa-animate-in[data-motion^=from-] {
|
|
3200
3213
|
animation-name: enter;
|
|
3201
3214
|
animation-duration: 150ms;
|
|
@@ -3313,27 +3326,57 @@ body {
|
|
|
3313
3326
|
.data-\[side\=top\]\:hawa-slide-in-from-bottom-2[data-side=top] {
|
|
3314
3327
|
--tw-enter-translate-y: 0.5rem;
|
|
3315
3328
|
}
|
|
3329
|
+
.data-\[state\=closed\]\:hawa-slide-out-to-bottom[data-state=closed] {
|
|
3330
|
+
--tw-exit-translate-y: 100%;
|
|
3331
|
+
}
|
|
3332
|
+
.data-\[state\=closed\]\:hawa-slide-out-to-left[data-state=closed] {
|
|
3333
|
+
--tw-exit-translate-x: -100%;
|
|
3334
|
+
}
|
|
3316
3335
|
.data-\[state\=closed\]\:hawa-slide-out-to-left-1\/2[data-state=closed] {
|
|
3317
3336
|
--tw-exit-translate-x: -50%;
|
|
3318
3337
|
}
|
|
3319
3338
|
.data-\[state\=closed\]\:hawa-slide-out-to-left-full[data-state=closed] {
|
|
3320
3339
|
--tw-exit-translate-x: -100%;
|
|
3321
3340
|
}
|
|
3341
|
+
.data-\[state\=closed\]\:hawa-slide-out-to-right[data-state=closed] {
|
|
3342
|
+
--tw-exit-translate-x: 100%;
|
|
3343
|
+
}
|
|
3322
3344
|
.data-\[state\=closed\]\:hawa-slide-out-to-right-full[data-state=closed] {
|
|
3323
3345
|
--tw-exit-translate-x: 100%;
|
|
3324
3346
|
}
|
|
3347
|
+
.data-\[state\=closed\]\:hawa-slide-out-to-top[data-state=closed] {
|
|
3348
|
+
--tw-exit-translate-y: -100%;
|
|
3349
|
+
}
|
|
3325
3350
|
.data-\[state\=closed\]\:hawa-slide-out-to-top-\[48\%\][data-state=closed] {
|
|
3326
3351
|
--tw-exit-translate-y: -48%;
|
|
3327
3352
|
}
|
|
3353
|
+
.data-\[state\=open\]\:hawa-slide-in-from-bottom[data-state=open] {
|
|
3354
|
+
--tw-enter-translate-y: 100%;
|
|
3355
|
+
}
|
|
3356
|
+
.data-\[state\=open\]\:hawa-slide-in-from-left[data-state=open] {
|
|
3357
|
+
--tw-enter-translate-x: -100%;
|
|
3358
|
+
}
|
|
3328
3359
|
.data-\[state\=open\]\:hawa-slide-in-from-left-1\/2[data-state=open] {
|
|
3329
3360
|
--tw-enter-translate-x: -50%;
|
|
3330
3361
|
}
|
|
3362
|
+
.data-\[state\=open\]\:hawa-slide-in-from-right[data-state=open] {
|
|
3363
|
+
--tw-enter-translate-x: 100%;
|
|
3364
|
+
}
|
|
3365
|
+
.data-\[state\=open\]\:hawa-slide-in-from-top[data-state=open] {
|
|
3366
|
+
--tw-enter-translate-y: -100%;
|
|
3367
|
+
}
|
|
3331
3368
|
.data-\[state\=open\]\:hawa-slide-in-from-top-\[48\%\][data-state=open] {
|
|
3332
3369
|
--tw-enter-translate-y: -48%;
|
|
3333
3370
|
}
|
|
3334
3371
|
.data-\[state\=open\]\:hawa-slide-in-from-top-full[data-state=open] {
|
|
3335
3372
|
--tw-enter-translate-y: -100%;
|
|
3336
3373
|
}
|
|
3374
|
+
.data-\[state\=closed\]\:hawa-duration-300[data-state=closed] {
|
|
3375
|
+
animation-duration: 300ms;
|
|
3376
|
+
}
|
|
3377
|
+
.data-\[state\=open\]\:hawa-duration-300[data-state=open] {
|
|
3378
|
+
animation-duration: 300ms;
|
|
3379
|
+
}
|
|
3337
3380
|
.hawa-group[data-state=open] .group-data-\[state\=open\]\:hawa-rotate-180 {
|
|
3338
3381
|
--tw-rotate: 180deg;
|
|
3339
3382
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
@@ -3542,6 +3585,10 @@ body {
|
|
|
3542
3585
|
top: auto;
|
|
3543
3586
|
}
|
|
3544
3587
|
|
|
3588
|
+
.sm\:hawa-max-w-sm {
|
|
3589
|
+
max-width: 24rem;
|
|
3590
|
+
}
|
|
3591
|
+
|
|
3545
3592
|
.sm\:hawa-flex-row {
|
|
3546
3593
|
flex-direction: row;
|
|
3547
3594
|
}
|
|
@@ -3558,6 +3605,12 @@ body {
|
|
|
3558
3605
|
gap: 0.5rem;
|
|
3559
3606
|
}
|
|
3560
3607
|
|
|
3608
|
+
.sm\:hawa-space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
3609
|
+
--tw-space-x-reverse: 0;
|
|
3610
|
+
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
3611
|
+
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
3612
|
+
}
|
|
3613
|
+
|
|
3561
3614
|
.sm\:hawa-rounded {
|
|
3562
3615
|
border-radius: var(--radius);
|
|
3563
3616
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -3,7 +3,7 @@ import React__default, { FC, ReactNode, ChangeEvent, InputHTMLAttributes, RefObj
|
|
|
3
3
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
4
4
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
|
-
import * as
|
|
6
|
+
import * as SheetPrimitive from '@radix-ui/react-dialog';
|
|
7
7
|
import { DialogProps } from '@radix-ui/react-dialog';
|
|
8
8
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
9
9
|
import * as ToastPrimitives from '@radix-ui/react-toast';
|
|
@@ -148,17 +148,17 @@ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, V
|
|
|
148
148
|
}
|
|
149
149
|
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
150
150
|
|
|
151
|
-
declare const Dialog: React$1.FC<
|
|
152
|
-
declare const DialogTrigger: React$1.ForwardRefExoticComponent<
|
|
153
|
-
declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<
|
|
151
|
+
declare const Dialog: React$1.FC<SheetPrimitive.DialogProps>;
|
|
152
|
+
declare const DialogTrigger: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
153
|
+
declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
154
154
|
persist?: boolean | undefined;
|
|
155
155
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
156
156
|
declare const DialogHeader: {
|
|
157
157
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
158
158
|
displayName: string;
|
|
159
159
|
};
|
|
160
|
-
declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<
|
|
161
|
-
declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<
|
|
160
|
+
declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
161
|
+
declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
162
162
|
declare const DialogFooter: {
|
|
163
163
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
164
164
|
displayName: string;
|
|
@@ -735,6 +735,28 @@ type TypographyTypes = {
|
|
|
735
735
|
};
|
|
736
736
|
declare const InterfaceSettings: FC<TypographyTypes>;
|
|
737
737
|
|
|
738
|
+
declare const Sheet: React$1.FC<SheetPrimitive.DialogProps>;
|
|
739
|
+
declare const SheetTrigger: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
740
|
+
declare const SheetClose: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
741
|
+
declare const SheetPortal: React$1.FC<SheetPrimitive.DialogPortalProps>;
|
|
742
|
+
declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
743
|
+
declare const sheetVariants: (props?: ({
|
|
744
|
+
side?: "top" | "right" | "bottom" | "left" | null | undefined;
|
|
745
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
746
|
+
interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof SheetPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
747
|
+
}
|
|
748
|
+
declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
749
|
+
declare const SheetHeader: {
|
|
750
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
751
|
+
displayName: string;
|
|
752
|
+
};
|
|
753
|
+
declare const SheetFooter: {
|
|
754
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
755
|
+
displayName: string;
|
|
756
|
+
};
|
|
757
|
+
declare const SheetTitle: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
758
|
+
declare const SheetDescription: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
759
|
+
|
|
738
760
|
declare const NavigationMenuLink: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuLinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
739
761
|
type NavMenuItemTypes = {
|
|
740
762
|
icon?: any;
|
|
@@ -1592,4 +1614,4 @@ declare function useTabs(initialTab?: string): {
|
|
|
1592
1614
|
handleTabChange: (index: any) => void;
|
|
1593
1615
|
};
|
|
1594
1616
|
|
|
1595
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActionCard, AdCard, Alert, Announcement, AppLanding, AppLayout, AppStores, BackToTop, Breadcrumb, Button, ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CheckEmail, Checkbox, Chip, CodeBlock, CodeConfirmation, ColorPicker, Combobox, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ComparingPlans, Copyrights, Count, DataTable, DestroyableCard, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DocsLayout, DocsSidebar, DropdownMenu, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, HorizontalPricing, Input, InterfaceSettings, ItemCard, Label, LandingCard, LeadGenerator, LegalTexts, Loading, LoginForm, LoginFormTextsTypes, Logos, MenuItemType, NavMenuItem, Navbar, NavigationMenu, NavigationMenuLink, NewPasswordForm, NoPermission, NotFound, PhoneInput, PinInput, Popover, PopoverContent, PopoverTrigger, PricingCard, PricingPlans, Progress, Radio, RadioOptionsTypes, RegisterForm, RegisterFormTextsTypes, ResetPasswordForm, ScrollArea, ScrollBar, Select, SelectOptionProps, Separator, SidebarGroup, SidebarItem, SimpleTable, Skeleton, Slider, SortButton, Stats, StopPropagationWrapper, SubItem$2 as SubItem, Switch, TChipTypes, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Testimonial, Textarea, TextareaProps, Toast$1 as Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, Usage, UseFocusWithinOptions, UseMediaQueryOptions, UserReferralSource, buttonVariants, reducer, toast, useBreakpoint, useClipboard, useFocusWithin, useMediaQuery, useTabs, useToast, useWindowSize };
|
|
1617
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActionCard, AdCard, Alert, Announcement, AppLanding, AppLayout, AppStores, BackToTop, Breadcrumb, Button, ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CheckEmail, Checkbox, Chip, CodeBlock, CodeConfirmation, ColorPicker, Combobox, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ComparingPlans, Copyrights, Count, DataTable, DestroyableCard, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DocsLayout, DocsSidebar, DropdownMenu, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, HorizontalPricing, Input, InterfaceSettings, ItemCard, Label, LandingCard, LeadGenerator, LegalTexts, Loading, LoginForm, LoginFormTextsTypes, Logos, MenuItemType, NavMenuItem, Navbar, NavigationMenu, NavigationMenuLink, NewPasswordForm, NoPermission, NotFound, PhoneInput, PinInput, Popover, PopoverContent, PopoverTrigger, PricingCard, PricingPlans, Progress, Radio, RadioOptionsTypes, RegisterForm, RegisterFormTextsTypes, ResetPasswordForm, ScrollArea, ScrollBar, Select, SelectOptionProps, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SidebarGroup, SidebarItem, SimpleTable, Skeleton, Slider, SortButton, Stats, StopPropagationWrapper, SubItem$2 as SubItem, Switch, TChipTypes, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Testimonial, Textarea, TextareaProps, Toast$1 as Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, Usage, UseFocusWithinOptions, UseMediaQueryOptions, UserReferralSource, buttonVariants, reducer, toast, useBreakpoint, useClipboard, useFocusWithin, useMediaQuery, useTabs, useToast, useWindowSize };
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import React__default, { FC, ReactNode, ChangeEvent, InputHTMLAttributes, RefObj
|
|
|
3
3
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
4
4
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
|
-
import * as
|
|
6
|
+
import * as SheetPrimitive from '@radix-ui/react-dialog';
|
|
7
7
|
import { DialogProps } from '@radix-ui/react-dialog';
|
|
8
8
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
9
9
|
import * as ToastPrimitives from '@radix-ui/react-toast';
|
|
@@ -148,17 +148,17 @@ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, V
|
|
|
148
148
|
}
|
|
149
149
|
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
150
150
|
|
|
151
|
-
declare const Dialog: React$1.FC<
|
|
152
|
-
declare const DialogTrigger: React$1.ForwardRefExoticComponent<
|
|
153
|
-
declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<
|
|
151
|
+
declare const Dialog: React$1.FC<SheetPrimitive.DialogProps>;
|
|
152
|
+
declare const DialogTrigger: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
153
|
+
declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
154
154
|
persist?: boolean | undefined;
|
|
155
155
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
156
156
|
declare const DialogHeader: {
|
|
157
157
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
158
158
|
displayName: string;
|
|
159
159
|
};
|
|
160
|
-
declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<
|
|
161
|
-
declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<
|
|
160
|
+
declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
161
|
+
declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
162
162
|
declare const DialogFooter: {
|
|
163
163
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
164
164
|
displayName: string;
|
|
@@ -735,6 +735,28 @@ type TypographyTypes = {
|
|
|
735
735
|
};
|
|
736
736
|
declare const InterfaceSettings: FC<TypographyTypes>;
|
|
737
737
|
|
|
738
|
+
declare const Sheet: React$1.FC<SheetPrimitive.DialogProps>;
|
|
739
|
+
declare const SheetTrigger: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
740
|
+
declare const SheetClose: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
741
|
+
declare const SheetPortal: React$1.FC<SheetPrimitive.DialogPortalProps>;
|
|
742
|
+
declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
743
|
+
declare const sheetVariants: (props?: ({
|
|
744
|
+
side?: "top" | "right" | "bottom" | "left" | null | undefined;
|
|
745
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
746
|
+
interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof SheetPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
747
|
+
}
|
|
748
|
+
declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
749
|
+
declare const SheetHeader: {
|
|
750
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
751
|
+
displayName: string;
|
|
752
|
+
};
|
|
753
|
+
declare const SheetFooter: {
|
|
754
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
755
|
+
displayName: string;
|
|
756
|
+
};
|
|
757
|
+
declare const SheetTitle: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
758
|
+
declare const SheetDescription: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
759
|
+
|
|
738
760
|
declare const NavigationMenuLink: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuLinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
739
761
|
type NavMenuItemTypes = {
|
|
740
762
|
icon?: any;
|
|
@@ -1592,4 +1614,4 @@ declare function useTabs(initialTab?: string): {
|
|
|
1592
1614
|
handleTabChange: (index: any) => void;
|
|
1593
1615
|
};
|
|
1594
1616
|
|
|
1595
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActionCard, AdCard, Alert, Announcement, AppLanding, AppLayout, AppStores, BackToTop, Breadcrumb, Button, ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CheckEmail, Checkbox, Chip, CodeBlock, CodeConfirmation, ColorPicker, Combobox, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ComparingPlans, Copyrights, Count, DataTable, DestroyableCard, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DocsLayout, DocsSidebar, DropdownMenu, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, HorizontalPricing, Input, InterfaceSettings, ItemCard, Label, LandingCard, LeadGenerator, LegalTexts, Loading, LoginForm, LoginFormTextsTypes, Logos, MenuItemType, NavMenuItem, Navbar, NavigationMenu, NavigationMenuLink, NewPasswordForm, NoPermission, NotFound, PhoneInput, PinInput, Popover, PopoverContent, PopoverTrigger, PricingCard, PricingPlans, Progress, Radio, RadioOptionsTypes, RegisterForm, RegisterFormTextsTypes, ResetPasswordForm, ScrollArea, ScrollBar, Select, SelectOptionProps, Separator, SidebarGroup, SidebarItem, SimpleTable, Skeleton, Slider, SortButton, Stats, StopPropagationWrapper, SubItem$2 as SubItem, Switch, TChipTypes, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Testimonial, Textarea, TextareaProps, Toast$1 as Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, Usage, UseFocusWithinOptions, UseMediaQueryOptions, UserReferralSource, buttonVariants, reducer, toast, useBreakpoint, useClipboard, useFocusWithin, useMediaQuery, useTabs, useToast, useWindowSize };
|
|
1617
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActionCard, AdCard, Alert, Announcement, AppLanding, AppLayout, AppStores, BackToTop, Breadcrumb, Button, ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CheckEmail, Checkbox, Chip, CodeBlock, CodeConfirmation, ColorPicker, Combobox, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ComparingPlans, Copyrights, Count, DataTable, DestroyableCard, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DocsLayout, DocsSidebar, DropdownMenu, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, HorizontalPricing, Input, InterfaceSettings, ItemCard, Label, LandingCard, LeadGenerator, LegalTexts, Loading, LoginForm, LoginFormTextsTypes, Logos, MenuItemType, NavMenuItem, Navbar, NavigationMenu, NavigationMenuLink, NewPasswordForm, NoPermission, NotFound, PhoneInput, PinInput, Popover, PopoverContent, PopoverTrigger, PricingCard, PricingPlans, Progress, Radio, RadioOptionsTypes, RegisterForm, RegisterFormTextsTypes, ResetPasswordForm, ScrollArea, ScrollBar, Select, SelectOptionProps, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SidebarGroup, SidebarItem, SimpleTable, Skeleton, Slider, SortButton, Stats, StopPropagationWrapper, SubItem$2 as SubItem, Switch, TChipTypes, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Testimonial, Textarea, TextareaProps, Toast$1 as Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, Usage, UseFocusWithinOptions, UseMediaQueryOptions, UserReferralSource, buttonVariants, reducer, toast, useBreakpoint, useClipboard, useFocusWithin, useMediaQuery, useTabs, useToast, useWindowSize };
|