@sikka/hawa 0.10.3-next → 0.10.6-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.d.mts +11 -17
- package/dist/index.d.ts +11 -17
- package/dist/index.js +1061 -1022
- package/dist/index.mjs +745 -714
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { FC, ReactNode, ChangeEvent, InputHTMLAttributes, RefObject
|
|
2
|
+
import React__default, { FC, ReactNode, ChangeEvent, InputHTMLAttributes, RefObject } from 'react';
|
|
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';
|
|
@@ -134,6 +134,14 @@ interface ItemCardTypes {
|
|
|
134
134
|
}
|
|
135
135
|
declare const ItemCard: FC<ItemCardTypes>;
|
|
136
136
|
|
|
137
|
+
interface LandingCardTypes {
|
|
138
|
+
title?: string;
|
|
139
|
+
subtitle?: string;
|
|
140
|
+
icon?: any;
|
|
141
|
+
className?: string;
|
|
142
|
+
}
|
|
143
|
+
declare const LandingCard: FC<LandingCardTypes>;
|
|
144
|
+
|
|
137
145
|
declare const buttonVariants: (props?: ({
|
|
138
146
|
variant?: "link" | "combobox" | "default" | "light" | "destructive" | "outline" | "secondary" | "ghost" | "neoBrutalism" | null | undefined;
|
|
139
147
|
size?: "xs" | "sm" | "lg" | "xl" | "default" | "heightless" | "icon" | "smallIcon" | null | undefined;
|
|
@@ -536,7 +544,7 @@ type BackToTopTypes = {
|
|
|
536
544
|
};
|
|
537
545
|
declare const BackToTop: FC<BackToTopTypes>;
|
|
538
546
|
|
|
539
|
-
type TextFieldTypes = {
|
|
547
|
+
type TextFieldTypes = React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
540
548
|
isLoading?: boolean;
|
|
541
549
|
containerClassName?: string;
|
|
542
550
|
margin?: "none" | "normal" | "large";
|
|
@@ -547,25 +555,11 @@ type TextFieldTypes = {
|
|
|
547
555
|
multiline?: boolean;
|
|
548
556
|
/** The small red text under the input field to show validation or a hint. */
|
|
549
557
|
helperText?: any;
|
|
550
|
-
/** The value of the input field */
|
|
551
|
-
value?: any;
|
|
552
|
-
props?: PropsWithRef<"input">;
|
|
553
|
-
/** The type of input field. Same as the types of the HTML input element */
|
|
554
|
-
type?: any;
|
|
555
|
-
/** The placeholder of the input field */
|
|
556
|
-
placeholder?: any;
|
|
557
|
-
defaultValue?: any;
|
|
558
|
-
name?: any;
|
|
559
558
|
inputProps?: any;
|
|
560
|
-
onChange?: any;
|
|
561
|
-
ref?: any;
|
|
562
559
|
/** The icon inside the input field */
|
|
563
560
|
icon?: any;
|
|
564
561
|
/** Boolean to enable/disable editing the input field and using it as a text field */
|
|
565
562
|
preview?: boolean;
|
|
566
|
-
autoComplete?: any;
|
|
567
|
-
maxLength?: any;
|
|
568
|
-
className?: any;
|
|
569
563
|
iconInside?: React__default.ReactNode;
|
|
570
564
|
};
|
|
571
565
|
declare const Input: FC<TextFieldTypes>;
|
|
@@ -1503,4 +1497,4 @@ declare function useTabs(initialTab?: string): {
|
|
|
1503
1497
|
handleTabChange: (index: any) => void;
|
|
1504
1498
|
};
|
|
1505
1499
|
|
|
1506
|
-
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, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HorizontalPricing, Input, InterfaceSettings, ItemCard, Label, LeadGenerator, LegalTexts, Loading, LoginForm, Logos, MenuItemType, NavMenuItem, NavigationMenu, NavigationMenuLink, NewPasswordForm, NoPermission, NotFound, PhoneInput, PinInput, Popover, PopoverContent, PopoverTrigger, PricingCard, PricingPlans, Progress, Radio, RadioOptionsTypes, RegisterForm, 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, useFormField, useMediaQuery, useTabs, useToast, useWindowSize };
|
|
1500
|
+
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, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HorizontalPricing, Input, InterfaceSettings, ItemCard, Label, LandingCard, LeadGenerator, LegalTexts, Loading, LoginForm, Logos, MenuItemType, NavMenuItem, NavigationMenu, NavigationMenuLink, NewPasswordForm, NoPermission, NotFound, PhoneInput, PinInput, Popover, PopoverContent, PopoverTrigger, PricingCard, PricingPlans, Progress, Radio, RadioOptionsTypes, RegisterForm, 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, useFormField, useMediaQuery, useTabs, useToast, useWindowSize };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { FC, ReactNode, ChangeEvent, InputHTMLAttributes, RefObject
|
|
2
|
+
import React__default, { FC, ReactNode, ChangeEvent, InputHTMLAttributes, RefObject } from 'react';
|
|
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';
|
|
@@ -134,6 +134,14 @@ interface ItemCardTypes {
|
|
|
134
134
|
}
|
|
135
135
|
declare const ItemCard: FC<ItemCardTypes>;
|
|
136
136
|
|
|
137
|
+
interface LandingCardTypes {
|
|
138
|
+
title?: string;
|
|
139
|
+
subtitle?: string;
|
|
140
|
+
icon?: any;
|
|
141
|
+
className?: string;
|
|
142
|
+
}
|
|
143
|
+
declare const LandingCard: FC<LandingCardTypes>;
|
|
144
|
+
|
|
137
145
|
declare const buttonVariants: (props?: ({
|
|
138
146
|
variant?: "link" | "combobox" | "default" | "light" | "destructive" | "outline" | "secondary" | "ghost" | "neoBrutalism" | null | undefined;
|
|
139
147
|
size?: "xs" | "sm" | "lg" | "xl" | "default" | "heightless" | "icon" | "smallIcon" | null | undefined;
|
|
@@ -536,7 +544,7 @@ type BackToTopTypes = {
|
|
|
536
544
|
};
|
|
537
545
|
declare const BackToTop: FC<BackToTopTypes>;
|
|
538
546
|
|
|
539
|
-
type TextFieldTypes = {
|
|
547
|
+
type TextFieldTypes = React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
540
548
|
isLoading?: boolean;
|
|
541
549
|
containerClassName?: string;
|
|
542
550
|
margin?: "none" | "normal" | "large";
|
|
@@ -547,25 +555,11 @@ type TextFieldTypes = {
|
|
|
547
555
|
multiline?: boolean;
|
|
548
556
|
/** The small red text under the input field to show validation or a hint. */
|
|
549
557
|
helperText?: any;
|
|
550
|
-
/** The value of the input field */
|
|
551
|
-
value?: any;
|
|
552
|
-
props?: PropsWithRef<"input">;
|
|
553
|
-
/** The type of input field. Same as the types of the HTML input element */
|
|
554
|
-
type?: any;
|
|
555
|
-
/** The placeholder of the input field */
|
|
556
|
-
placeholder?: any;
|
|
557
|
-
defaultValue?: any;
|
|
558
|
-
name?: any;
|
|
559
558
|
inputProps?: any;
|
|
560
|
-
onChange?: any;
|
|
561
|
-
ref?: any;
|
|
562
559
|
/** The icon inside the input field */
|
|
563
560
|
icon?: any;
|
|
564
561
|
/** Boolean to enable/disable editing the input field and using it as a text field */
|
|
565
562
|
preview?: boolean;
|
|
566
|
-
autoComplete?: any;
|
|
567
|
-
maxLength?: any;
|
|
568
|
-
className?: any;
|
|
569
563
|
iconInside?: React__default.ReactNode;
|
|
570
564
|
};
|
|
571
565
|
declare const Input: FC<TextFieldTypes>;
|
|
@@ -1503,4 +1497,4 @@ declare function useTabs(initialTab?: string): {
|
|
|
1503
1497
|
handleTabChange: (index: any) => void;
|
|
1504
1498
|
};
|
|
1505
1499
|
|
|
1506
|
-
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, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HorizontalPricing, Input, InterfaceSettings, ItemCard, Label, LeadGenerator, LegalTexts, Loading, LoginForm, Logos, MenuItemType, NavMenuItem, NavigationMenu, NavigationMenuLink, NewPasswordForm, NoPermission, NotFound, PhoneInput, PinInput, Popover, PopoverContent, PopoverTrigger, PricingCard, PricingPlans, Progress, Radio, RadioOptionsTypes, RegisterForm, 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, useFormField, useMediaQuery, useTabs, useToast, useWindowSize };
|
|
1500
|
+
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, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HorizontalPricing, Input, InterfaceSettings, ItemCard, Label, LandingCard, LeadGenerator, LegalTexts, Loading, LoginForm, Logos, MenuItemType, NavMenuItem, NavigationMenu, NavigationMenuLink, NewPasswordForm, NoPermission, NotFound, PhoneInput, PinInput, Popover, PopoverContent, PopoverTrigger, PricingCard, PricingPlans, Progress, Radio, RadioOptionsTypes, RegisterForm, 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, useFormField, useMediaQuery, useTabs, useToast, useWindowSize };
|