@sikka/hawa 0.12.12-next → 0.12.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 +3 -12
- package/dist/index.d.mts +30 -20
- package/dist/index.d.ts +30 -20
- package/dist/index.js +598 -519
- package/dist/index.mjs +458 -338
- package/package.json +2 -1
package/dist/index.css
CHANGED
|
@@ -772,9 +772,6 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
772
772
|
.hawa-left-5 {
|
|
773
773
|
left: 1.25rem;
|
|
774
774
|
}
|
|
775
|
-
.hawa-left-7 {
|
|
776
|
-
left: 1.75rem;
|
|
777
|
-
}
|
|
778
775
|
.hawa-left-\[50\%\] {
|
|
779
776
|
left: 50%;
|
|
780
777
|
}
|
|
@@ -796,9 +793,6 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
796
793
|
.hawa-right-5 {
|
|
797
794
|
right: 1.25rem;
|
|
798
795
|
}
|
|
799
|
-
.hawa-right-7 {
|
|
800
|
-
right: 1.75rem;
|
|
801
|
-
}
|
|
802
796
|
.hawa-top-0 {
|
|
803
797
|
top: 0px;
|
|
804
798
|
}
|
|
@@ -820,9 +814,6 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
820
814
|
.hawa-top-5 {
|
|
821
815
|
top: 1.25rem;
|
|
822
816
|
}
|
|
823
|
-
.hawa-top-7 {
|
|
824
|
-
top: 1.75rem;
|
|
825
|
-
}
|
|
826
817
|
.hawa-top-\[1px\] {
|
|
827
818
|
top: 1px;
|
|
828
819
|
}
|
|
@@ -838,9 +829,6 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
838
829
|
.hawa-top-\[60\%\] {
|
|
839
830
|
top: 60%;
|
|
840
831
|
}
|
|
841
|
-
.hawa-top-\[76px\] {
|
|
842
|
-
top: 76px;
|
|
843
|
-
}
|
|
844
832
|
.hawa-top-full {
|
|
845
833
|
top: 100%;
|
|
846
834
|
}
|
|
@@ -1153,6 +1141,9 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
1153
1141
|
.hawa-h-\[44px\] {
|
|
1154
1142
|
height: 44px;
|
|
1155
1143
|
}
|
|
1144
|
+
.hawa-h-\[calc\(100dvh\)\] {
|
|
1145
|
+
height: calc(100dvh);
|
|
1146
|
+
}
|
|
1156
1147
|
.hawa-h-\[calc\(60vh\)\] {
|
|
1157
1148
|
height: calc(60vh);
|
|
1158
1149
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -853,6 +853,27 @@ declare const SidebarItem: React$1.FC<{
|
|
|
853
853
|
isOpen?: boolean;
|
|
854
854
|
}>;
|
|
855
855
|
|
|
856
|
+
type CopyRightsTypes = {
|
|
857
|
+
/** A text used as the version of the app, for example: v1.0.0 */
|
|
858
|
+
version?: string;
|
|
859
|
+
/** Credit to the creator of the app, for example: Sikka Software */
|
|
860
|
+
credits?: string;
|
|
861
|
+
/** The URL of the logo in the copyrights */
|
|
862
|
+
logoURL?: string;
|
|
863
|
+
/** Enable/Disable the existance of the logo */
|
|
864
|
+
withLogo?: boolean;
|
|
865
|
+
/** Fires when the logo is clicked, usually goes to the website of the creator of the app */
|
|
866
|
+
onLogoClicked?: any;
|
|
867
|
+
};
|
|
868
|
+
declare const Copyrights: FC<CopyRightsTypes>;
|
|
869
|
+
|
|
870
|
+
type NavbarType = {
|
|
871
|
+
logo?: any;
|
|
872
|
+
buttons?: any;
|
|
873
|
+
menuItems?: any;
|
|
874
|
+
};
|
|
875
|
+
declare const Navbar: React__default.FC<NavbarType>;
|
|
876
|
+
|
|
856
877
|
type AppLayoutTypes$1 = {
|
|
857
878
|
design?: "default" | "bubbles" | "floating";
|
|
858
879
|
/** The pages of the side drawer */
|
|
@@ -932,26 +953,15 @@ type SubItem = {
|
|
|
932
953
|
};
|
|
933
954
|
declare const AppLayout: React__default.FunctionComponent<AppLayoutTypes$1>;
|
|
934
955
|
|
|
935
|
-
type
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
/** Enable/Disable the existance of the logo */
|
|
943
|
-
withLogo?: boolean;
|
|
944
|
-
/** Fires when the logo is clicked, usually goes to the website of the creator of the app */
|
|
945
|
-
onLogoClicked?: any;
|
|
946
|
-
};
|
|
947
|
-
declare const Copyrights: FC<CopyRightsTypes>;
|
|
948
|
-
|
|
949
|
-
type NavbarType = {
|
|
950
|
-
logo?: any;
|
|
951
|
-
buttons?: any;
|
|
952
|
-
menuItems?: any;
|
|
956
|
+
type AppTopbarType = {
|
|
957
|
+
direction?: "rtl" | "ltr";
|
|
958
|
+
size?: number;
|
|
959
|
+
username?: string;
|
|
960
|
+
email?: string;
|
|
961
|
+
profileMenuItems: MenuItemType[];
|
|
962
|
+
avatarImage: string;
|
|
953
963
|
};
|
|
954
|
-
declare const
|
|
964
|
+
declare const AppTopbar: React__default.FC<AppTopbarType>;
|
|
955
965
|
|
|
956
966
|
type AppLayoutTypes = {
|
|
957
967
|
/** The direction of the layout */
|
|
@@ -1625,4 +1635,4 @@ declare function useTabs(initialTab?: string): {
|
|
|
1625
1635
|
handleTabChange: (index: any) => void;
|
|
1626
1636
|
};
|
|
1627
1637
|
|
|
1628
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionRoot, 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, Gauge, HorizontalPricing, Input, InterfaceSettings, ItemCard, Label, LandingCard, LeadGenerator, LegalTexts, Loading, LoginForm, Logos, MenuItemType, NavMenuItem, Navbar, NavigationMenu, NavigationMenuLink, NewPasswordForm, NoPermission, NotFound, PhoneInput, PinInput, Popover, PopoverContent, PopoverTrigger, PricingCard, PricingPlans, Progress, Radio, RadioOptionsTypes, RegisterForm, ResetPasswordForm, ScrollArea, ScrollBar, ScrollIndicator, Select, SelectOptionProps, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SidebarGroup, SidebarItem, SimpleTable, Skeleton, Slider, SortButton, SplitButton, 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 };
|
|
1638
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionRoot, AccordionTrigger, ActionCard, AdCard, Alert, Announcement, AppLanding, AppLayout, AppStores, AppTopbar, 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, Gauge, HorizontalPricing, Input, InterfaceSettings, ItemCard, Label, LandingCard, LeadGenerator, LegalTexts, Loading, LoginForm, Logos, MenuItemType, NavMenuItem, Navbar, NavigationMenu, NavigationMenuLink, NewPasswordForm, NoPermission, NotFound, PhoneInput, PinInput, Popover, PopoverContent, PopoverTrigger, PricingCard, PricingPlans, Progress, Radio, RadioOptionsTypes, RegisterForm, ResetPasswordForm, ScrollArea, ScrollBar, ScrollIndicator, Select, SelectOptionProps, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SidebarGroup, SidebarItem, SimpleTable, Skeleton, Slider, SortButton, SplitButton, 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
|
@@ -853,6 +853,27 @@ declare const SidebarItem: React$1.FC<{
|
|
|
853
853
|
isOpen?: boolean;
|
|
854
854
|
}>;
|
|
855
855
|
|
|
856
|
+
type CopyRightsTypes = {
|
|
857
|
+
/** A text used as the version of the app, for example: v1.0.0 */
|
|
858
|
+
version?: string;
|
|
859
|
+
/** Credit to the creator of the app, for example: Sikka Software */
|
|
860
|
+
credits?: string;
|
|
861
|
+
/** The URL of the logo in the copyrights */
|
|
862
|
+
logoURL?: string;
|
|
863
|
+
/** Enable/Disable the existance of the logo */
|
|
864
|
+
withLogo?: boolean;
|
|
865
|
+
/** Fires when the logo is clicked, usually goes to the website of the creator of the app */
|
|
866
|
+
onLogoClicked?: any;
|
|
867
|
+
};
|
|
868
|
+
declare const Copyrights: FC<CopyRightsTypes>;
|
|
869
|
+
|
|
870
|
+
type NavbarType = {
|
|
871
|
+
logo?: any;
|
|
872
|
+
buttons?: any;
|
|
873
|
+
menuItems?: any;
|
|
874
|
+
};
|
|
875
|
+
declare const Navbar: React__default.FC<NavbarType>;
|
|
876
|
+
|
|
856
877
|
type AppLayoutTypes$1 = {
|
|
857
878
|
design?: "default" | "bubbles" | "floating";
|
|
858
879
|
/** The pages of the side drawer */
|
|
@@ -932,26 +953,15 @@ type SubItem = {
|
|
|
932
953
|
};
|
|
933
954
|
declare const AppLayout: React__default.FunctionComponent<AppLayoutTypes$1>;
|
|
934
955
|
|
|
935
|
-
type
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
/** Enable/Disable the existance of the logo */
|
|
943
|
-
withLogo?: boolean;
|
|
944
|
-
/** Fires when the logo is clicked, usually goes to the website of the creator of the app */
|
|
945
|
-
onLogoClicked?: any;
|
|
946
|
-
};
|
|
947
|
-
declare const Copyrights: FC<CopyRightsTypes>;
|
|
948
|
-
|
|
949
|
-
type NavbarType = {
|
|
950
|
-
logo?: any;
|
|
951
|
-
buttons?: any;
|
|
952
|
-
menuItems?: any;
|
|
956
|
+
type AppTopbarType = {
|
|
957
|
+
direction?: "rtl" | "ltr";
|
|
958
|
+
size?: number;
|
|
959
|
+
username?: string;
|
|
960
|
+
email?: string;
|
|
961
|
+
profileMenuItems: MenuItemType[];
|
|
962
|
+
avatarImage: string;
|
|
953
963
|
};
|
|
954
|
-
declare const
|
|
964
|
+
declare const AppTopbar: React__default.FC<AppTopbarType>;
|
|
955
965
|
|
|
956
966
|
type AppLayoutTypes = {
|
|
957
967
|
/** The direction of the layout */
|
|
@@ -1625,4 +1635,4 @@ declare function useTabs(initialTab?: string): {
|
|
|
1625
1635
|
handleTabChange: (index: any) => void;
|
|
1626
1636
|
};
|
|
1627
1637
|
|
|
1628
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionRoot, 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, Gauge, HorizontalPricing, Input, InterfaceSettings, ItemCard, Label, LandingCard, LeadGenerator, LegalTexts, Loading, LoginForm, Logos, MenuItemType, NavMenuItem, Navbar, NavigationMenu, NavigationMenuLink, NewPasswordForm, NoPermission, NotFound, PhoneInput, PinInput, Popover, PopoverContent, PopoverTrigger, PricingCard, PricingPlans, Progress, Radio, RadioOptionsTypes, RegisterForm, ResetPasswordForm, ScrollArea, ScrollBar, ScrollIndicator, Select, SelectOptionProps, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SidebarGroup, SidebarItem, SimpleTable, Skeleton, Slider, SortButton, SplitButton, 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 };
|
|
1638
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionRoot, AccordionTrigger, ActionCard, AdCard, Alert, Announcement, AppLanding, AppLayout, AppStores, AppTopbar, 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, Gauge, HorizontalPricing, Input, InterfaceSettings, ItemCard, Label, LandingCard, LeadGenerator, LegalTexts, Loading, LoginForm, Logos, MenuItemType, NavMenuItem, Navbar, NavigationMenu, NavigationMenuLink, NewPasswordForm, NoPermission, NotFound, PhoneInput, PinInput, Popover, PopoverContent, PopoverTrigger, PricingCard, PricingPlans, Progress, Radio, RadioOptionsTypes, RegisterForm, ResetPasswordForm, ScrollArea, ScrollBar, ScrollIndicator, Select, SelectOptionProps, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SidebarGroup, SidebarItem, SimpleTable, Skeleton, Slider, SortButton, SplitButton, 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 };
|