@sikka/hawa 0.4.4-next → 0.4.5-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 +7 -0
- package/dist/index.d.mts +15 -1
- package/dist/index.d.ts +15 -1
- package/dist/index.js +304 -285
- package/dist/index.mjs +193 -186
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -810,6 +810,10 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
810
810
|
margin-top: 0.25rem;
|
|
811
811
|
margin-bottom: 0.25rem;
|
|
812
812
|
}
|
|
813
|
+
.hawa-my-2 {
|
|
814
|
+
margin-top: 0.5rem;
|
|
815
|
+
margin-bottom: 0.5rem;
|
|
816
|
+
}
|
|
813
817
|
.hawa-my-4 {
|
|
814
818
|
margin-top: 1rem;
|
|
815
819
|
margin-bottom: 1rem;
|
|
@@ -1344,6 +1348,9 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
1344
1348
|
.hawa-justify-start {
|
|
1345
1349
|
justify-content: flex-start;
|
|
1346
1350
|
}
|
|
1351
|
+
.hawa-justify-end {
|
|
1352
|
+
justify-content: flex-end;
|
|
1353
|
+
}
|
|
1347
1354
|
.hawa-justify-center {
|
|
1348
1355
|
justify-content: center;
|
|
1349
1356
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -722,6 +722,20 @@ type SubItem = {
|
|
|
722
722
|
};
|
|
723
723
|
declare const AppLayout: React__default.FunctionComponent<AppLayoutTypes>;
|
|
724
724
|
|
|
725
|
+
type CopyRightsTypes = {
|
|
726
|
+
/** A text used as the version of the app, for example: v1.0.0 */
|
|
727
|
+
version?: string;
|
|
728
|
+
/** Credit to the creator of the app, for example: Sikka Software */
|
|
729
|
+
credits?: string;
|
|
730
|
+
/** The URL of the logo in the copyrights */
|
|
731
|
+
logoURL?: string;
|
|
732
|
+
/** Enable/Disable the existance of the logo */
|
|
733
|
+
withLogo?: boolean;
|
|
734
|
+
/** Fires when the logo is clicked, usually goes to the website of the creator of the app */
|
|
735
|
+
onLogoClicked?: any;
|
|
736
|
+
};
|
|
737
|
+
declare const Copyrights: FC<CopyRightsTypes>;
|
|
738
|
+
|
|
725
739
|
type LoginFormTypes = {
|
|
726
740
|
texts?: {
|
|
727
741
|
emailLabel?: string;
|
|
@@ -1077,4 +1091,4 @@ type UsageCardTypes = {
|
|
|
1077
1091
|
};
|
|
1078
1092
|
declare const Usage: FC<UsageCardTypes>;
|
|
1079
1093
|
|
|
1080
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActionCard, 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, DataTable, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Input, InterfaceSettings, Label, LeadGenerator, LegalTexts, Loading, LoginForm, Logos, MenuItemType, NewPasswordForm, NoPermission, NotFound, PhoneInput, PinInput, Popover, PopoverContent, PopoverTrigger, Progress, Radio, RadioOptionsTypes, RegisterForm, ResetPasswordForm, ScrollArea, ScrollBar, Select, Separator, SidebarGroup, SidebarItem, SimpleTable, Skeleton, Slider, SortButton, Stats, SubItem$2 as SubItem, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Testimonial, Textarea, TextareaProps, Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, Usage, UserReferralSource, buttonVariants, useFormField };
|
|
1094
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActionCard, 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, Copyrights, DataTable, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Input, InterfaceSettings, Label, LeadGenerator, LegalTexts, Loading, LoginForm, Logos, MenuItemType, NewPasswordForm, NoPermission, NotFound, PhoneInput, PinInput, Popover, PopoverContent, PopoverTrigger, Progress, Radio, RadioOptionsTypes, RegisterForm, ResetPasswordForm, ScrollArea, ScrollBar, Select, Separator, SidebarGroup, SidebarItem, SimpleTable, Skeleton, Slider, SortButton, Stats, SubItem$2 as SubItem, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Testimonial, Textarea, TextareaProps, Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, Usage, UserReferralSource, buttonVariants, useFormField };
|
package/dist/index.d.ts
CHANGED
|
@@ -722,6 +722,20 @@ type SubItem = {
|
|
|
722
722
|
};
|
|
723
723
|
declare const AppLayout: React__default.FunctionComponent<AppLayoutTypes>;
|
|
724
724
|
|
|
725
|
+
type CopyRightsTypes = {
|
|
726
|
+
/** A text used as the version of the app, for example: v1.0.0 */
|
|
727
|
+
version?: string;
|
|
728
|
+
/** Credit to the creator of the app, for example: Sikka Software */
|
|
729
|
+
credits?: string;
|
|
730
|
+
/** The URL of the logo in the copyrights */
|
|
731
|
+
logoURL?: string;
|
|
732
|
+
/** Enable/Disable the existance of the logo */
|
|
733
|
+
withLogo?: boolean;
|
|
734
|
+
/** Fires when the logo is clicked, usually goes to the website of the creator of the app */
|
|
735
|
+
onLogoClicked?: any;
|
|
736
|
+
};
|
|
737
|
+
declare const Copyrights: FC<CopyRightsTypes>;
|
|
738
|
+
|
|
725
739
|
type LoginFormTypes = {
|
|
726
740
|
texts?: {
|
|
727
741
|
emailLabel?: string;
|
|
@@ -1077,4 +1091,4 @@ type UsageCardTypes = {
|
|
|
1077
1091
|
};
|
|
1078
1092
|
declare const Usage: FC<UsageCardTypes>;
|
|
1079
1093
|
|
|
1080
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActionCard, 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, DataTable, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Input, InterfaceSettings, Label, LeadGenerator, LegalTexts, Loading, LoginForm, Logos, MenuItemType, NewPasswordForm, NoPermission, NotFound, PhoneInput, PinInput, Popover, PopoverContent, PopoverTrigger, Progress, Radio, RadioOptionsTypes, RegisterForm, ResetPasswordForm, ScrollArea, ScrollBar, Select, Separator, SidebarGroup, SidebarItem, SimpleTable, Skeleton, Slider, SortButton, Stats, SubItem$2 as SubItem, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Testimonial, Textarea, TextareaProps, Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, Usage, UserReferralSource, buttonVariants, useFormField };
|
|
1094
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActionCard, 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, Copyrights, DataTable, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Input, InterfaceSettings, Label, LeadGenerator, LegalTexts, Loading, LoginForm, Logos, MenuItemType, NewPasswordForm, NoPermission, NotFound, PhoneInput, PinInput, Popover, PopoverContent, PopoverTrigger, Progress, Radio, RadioOptionsTypes, RegisterForm, ResetPasswordForm, ScrollArea, ScrollBar, Select, Separator, SidebarGroup, SidebarItem, SimpleTable, Skeleton, Slider, SortButton, Stats, SubItem$2 as SubItem, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Testimonial, Textarea, TextareaProps, Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, Usage, UserReferralSource, buttonVariants, useFormField };
|