@sikka/hawa 0.11.9-next → 0.11.11-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 +71 -62
- package/dist/index.d.ts +71 -62
- package/dist/index.js +594 -766
- package/dist/index.mjs +371 -562
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -12,7 +12,6 @@ import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
|
12
12
|
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
13
13
|
import { RowData, ColumnDef } from '@tanstack/react-table';
|
|
14
14
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
15
|
-
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
16
15
|
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
17
16
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
18
17
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
@@ -543,7 +542,11 @@ declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<AccordionPri
|
|
|
543
542
|
declare const AccordionTrigger: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
544
543
|
declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
545
544
|
|
|
546
|
-
|
|
545
|
+
type SeparatorProps = {
|
|
546
|
+
className?: string;
|
|
547
|
+
orientation?: "horizontal" | "vertical";
|
|
548
|
+
};
|
|
549
|
+
declare const Separator: React$1.FC<SeparatorProps>;
|
|
547
550
|
|
|
548
551
|
declare const Progress: React$1.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
549
552
|
|
|
@@ -902,31 +905,39 @@ type NavbarType = {
|
|
|
902
905
|
};
|
|
903
906
|
declare const Navbar: React__default.FC<NavbarType>;
|
|
904
907
|
|
|
908
|
+
type ThirdPartyAuthTextsTypes = {
|
|
909
|
+
continueWithGoogle?: string;
|
|
910
|
+
continueWithTwitter?: string;
|
|
911
|
+
continueWithApple?: string;
|
|
912
|
+
continueWithMicrosoft?: string;
|
|
913
|
+
continueWithGithub?: string;
|
|
914
|
+
continueWithEmail?: string;
|
|
915
|
+
continueWithPhone?: string;
|
|
916
|
+
};
|
|
917
|
+
|
|
918
|
+
type LoginFormTextsTypes = ThirdPartyAuthTextsTypes & {
|
|
919
|
+
emailLabel?: string;
|
|
920
|
+
emailPlaceholder?: string;
|
|
921
|
+
emailRequired?: string;
|
|
922
|
+
emailInvalid?: string;
|
|
923
|
+
usernameLabel?: string;
|
|
924
|
+
usernamePlaceholder?: string;
|
|
925
|
+
usernameRequired?: string;
|
|
926
|
+
usernameInvalid?: string;
|
|
927
|
+
phoneRequired?: string;
|
|
928
|
+
phoneInvalid?: string;
|
|
929
|
+
phoneLabel?: string;
|
|
930
|
+
passwordLabel?: string;
|
|
931
|
+
passwordPlaceholder?: string;
|
|
932
|
+
passwordRequired?: string;
|
|
933
|
+
passwordTooShort?: string;
|
|
934
|
+
forgotPassword?: string;
|
|
935
|
+
newUserText?: string;
|
|
936
|
+
createAccount?: string;
|
|
937
|
+
loginText?: string;
|
|
938
|
+
};
|
|
905
939
|
type LoginFormTypes = {
|
|
906
|
-
texts?:
|
|
907
|
-
emailLabel?: string;
|
|
908
|
-
emailPlaceholder?: string;
|
|
909
|
-
emailRequired?: string;
|
|
910
|
-
emailInvalid?: string;
|
|
911
|
-
usernameLabel?: string;
|
|
912
|
-
usernamePlaceholder?: string;
|
|
913
|
-
usernameRequired?: string;
|
|
914
|
-
usernameInvalid?: string;
|
|
915
|
-
phoneRequired?: string;
|
|
916
|
-
phoneInvalid?: string;
|
|
917
|
-
phoneLabel?: string;
|
|
918
|
-
passwordLabel?: string;
|
|
919
|
-
passwordPlaceholder?: string;
|
|
920
|
-
passwordRequired?: string;
|
|
921
|
-
passwordTooShort?: string;
|
|
922
|
-
forgotPassword?: string;
|
|
923
|
-
newUserText?: string;
|
|
924
|
-
createAccount?: string;
|
|
925
|
-
loginText?: string;
|
|
926
|
-
loginViaGoogleLabel?: string;
|
|
927
|
-
loginViaGithubLabel?: string;
|
|
928
|
-
loginViaTwitterLabel?: string;
|
|
929
|
-
};
|
|
940
|
+
texts?: LoginFormTextsTypes;
|
|
930
941
|
/** Function to handle language change. */
|
|
931
942
|
handleLanguage?: () => void;
|
|
932
943
|
/** Current selected language. */
|
|
@@ -983,7 +994,40 @@ type LoginFormTypes = {
|
|
|
983
994
|
};
|
|
984
995
|
declare const LoginForm: FC<LoginFormTypes>;
|
|
985
996
|
|
|
997
|
+
type RegisterFormTextsTypes = ThirdPartyAuthTextsTypes & {
|
|
998
|
+
fullNameLabel: string;
|
|
999
|
+
fullNamePlaceholder: string;
|
|
1000
|
+
emailLabel: string;
|
|
1001
|
+
emailPlaceholder: string;
|
|
1002
|
+
emailRequired: string;
|
|
1003
|
+
emailInvalid: string;
|
|
1004
|
+
usernameLabel: string;
|
|
1005
|
+
usernamePlaceholder: string;
|
|
1006
|
+
usernameInvalid: string;
|
|
1007
|
+
usernameRequired: string;
|
|
1008
|
+
passwordLabel: string;
|
|
1009
|
+
passwordPlaceholder: string;
|
|
1010
|
+
passwordRequired: string;
|
|
1011
|
+
passwordTooShort: string;
|
|
1012
|
+
passwordsDontMatch: string;
|
|
1013
|
+
confirmPasswordLabel: string;
|
|
1014
|
+
confirmPasswordPlaceholder: string;
|
|
1015
|
+
confirmPasswordRequired: string;
|
|
1016
|
+
subscribeToNewsletter: string;
|
|
1017
|
+
termsRequired: string;
|
|
1018
|
+
refCode: string;
|
|
1019
|
+
refCodePlaceholder: string;
|
|
1020
|
+
userReferenceLabel: string;
|
|
1021
|
+
userReferencePlaceholder: string;
|
|
1022
|
+
existingUserText: string;
|
|
1023
|
+
termsText: string;
|
|
1024
|
+
iAcceptText: string;
|
|
1025
|
+
registerText: string;
|
|
1026
|
+
loginText: string;
|
|
1027
|
+
};
|
|
986
1028
|
type RegisterFormTypes = {
|
|
1029
|
+
/** Object containing text labels used throughout the form. */
|
|
1030
|
+
texts: RegisterFormTextsTypes;
|
|
987
1031
|
/** Callback function triggered to handle language changes.*/
|
|
988
1032
|
handleLanguage?: () => void;
|
|
989
1033
|
/** The current language being used in the application. */
|
|
@@ -1044,41 +1088,6 @@ type RegisterFormTypes = {
|
|
|
1044
1088
|
additionalButtons?: any;
|
|
1045
1089
|
/** To add more custom input fields */
|
|
1046
1090
|
additionalInputs?: any;
|
|
1047
|
-
/** Object containing text labels used throughout the form. */
|
|
1048
|
-
texts: {
|
|
1049
|
-
fullNameLabel: string;
|
|
1050
|
-
fullNamePlaceholder: string;
|
|
1051
|
-
emailLabel: string;
|
|
1052
|
-
emailPlaceholder: string;
|
|
1053
|
-
emailRequired: string;
|
|
1054
|
-
emailInvalid: string;
|
|
1055
|
-
usernameLabel: string;
|
|
1056
|
-
usernamePlaceholder: string;
|
|
1057
|
-
usernameInvalid: string;
|
|
1058
|
-
usernameRequired: string;
|
|
1059
|
-
passwordLabel: string;
|
|
1060
|
-
passwordPlaceholder: string;
|
|
1061
|
-
passwordRequired: string;
|
|
1062
|
-
passwordTooShort: string;
|
|
1063
|
-
passwordsDontMatch: string;
|
|
1064
|
-
confirmPasswordLabel: string;
|
|
1065
|
-
confirmPasswordPlaceholder: string;
|
|
1066
|
-
confirmPasswordRequired: string;
|
|
1067
|
-
subscribeToNewsletter: string;
|
|
1068
|
-
termsRequired: string;
|
|
1069
|
-
registerViaGoogleLabel: string;
|
|
1070
|
-
registerViaGithubLabel: string;
|
|
1071
|
-
registerViaTwitterLabel: string;
|
|
1072
|
-
refCode: string;
|
|
1073
|
-
refCodePlaceholder: string;
|
|
1074
|
-
userReferenceLabel: string;
|
|
1075
|
-
userReferencePlaceholder: string;
|
|
1076
|
-
existingUserText: string;
|
|
1077
|
-
termsText: string;
|
|
1078
|
-
iAcceptText: string;
|
|
1079
|
-
registerText: string;
|
|
1080
|
-
loginText: string;
|
|
1081
|
-
};
|
|
1082
1091
|
};
|
|
1083
1092
|
declare const RegisterForm: FC<RegisterFormTypes>;
|
|
1084
1093
|
|
|
@@ -1518,4 +1527,4 @@ declare function useTabs(initialTab?: string): {
|
|
|
1518
1527
|
handleTabChange: (index: any) => void;
|
|
1519
1528
|
};
|
|
1520
1529
|
|
|
1521
|
-
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, DropdownMenu, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, 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, 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 };
|
|
1530
|
+
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, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,6 @@ import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
|
12
12
|
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
13
13
|
import { RowData, ColumnDef } from '@tanstack/react-table';
|
|
14
14
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
15
|
-
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
16
15
|
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
17
16
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
18
17
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
@@ -543,7 +542,11 @@ declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<AccordionPri
|
|
|
543
542
|
declare const AccordionTrigger: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
544
543
|
declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
545
544
|
|
|
546
|
-
|
|
545
|
+
type SeparatorProps = {
|
|
546
|
+
className?: string;
|
|
547
|
+
orientation?: "horizontal" | "vertical";
|
|
548
|
+
};
|
|
549
|
+
declare const Separator: React$1.FC<SeparatorProps>;
|
|
547
550
|
|
|
548
551
|
declare const Progress: React$1.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
549
552
|
|
|
@@ -902,31 +905,39 @@ type NavbarType = {
|
|
|
902
905
|
};
|
|
903
906
|
declare const Navbar: React__default.FC<NavbarType>;
|
|
904
907
|
|
|
908
|
+
type ThirdPartyAuthTextsTypes = {
|
|
909
|
+
continueWithGoogle?: string;
|
|
910
|
+
continueWithTwitter?: string;
|
|
911
|
+
continueWithApple?: string;
|
|
912
|
+
continueWithMicrosoft?: string;
|
|
913
|
+
continueWithGithub?: string;
|
|
914
|
+
continueWithEmail?: string;
|
|
915
|
+
continueWithPhone?: string;
|
|
916
|
+
};
|
|
917
|
+
|
|
918
|
+
type LoginFormTextsTypes = ThirdPartyAuthTextsTypes & {
|
|
919
|
+
emailLabel?: string;
|
|
920
|
+
emailPlaceholder?: string;
|
|
921
|
+
emailRequired?: string;
|
|
922
|
+
emailInvalid?: string;
|
|
923
|
+
usernameLabel?: string;
|
|
924
|
+
usernamePlaceholder?: string;
|
|
925
|
+
usernameRequired?: string;
|
|
926
|
+
usernameInvalid?: string;
|
|
927
|
+
phoneRequired?: string;
|
|
928
|
+
phoneInvalid?: string;
|
|
929
|
+
phoneLabel?: string;
|
|
930
|
+
passwordLabel?: string;
|
|
931
|
+
passwordPlaceholder?: string;
|
|
932
|
+
passwordRequired?: string;
|
|
933
|
+
passwordTooShort?: string;
|
|
934
|
+
forgotPassword?: string;
|
|
935
|
+
newUserText?: string;
|
|
936
|
+
createAccount?: string;
|
|
937
|
+
loginText?: string;
|
|
938
|
+
};
|
|
905
939
|
type LoginFormTypes = {
|
|
906
|
-
texts?:
|
|
907
|
-
emailLabel?: string;
|
|
908
|
-
emailPlaceholder?: string;
|
|
909
|
-
emailRequired?: string;
|
|
910
|
-
emailInvalid?: string;
|
|
911
|
-
usernameLabel?: string;
|
|
912
|
-
usernamePlaceholder?: string;
|
|
913
|
-
usernameRequired?: string;
|
|
914
|
-
usernameInvalid?: string;
|
|
915
|
-
phoneRequired?: string;
|
|
916
|
-
phoneInvalid?: string;
|
|
917
|
-
phoneLabel?: string;
|
|
918
|
-
passwordLabel?: string;
|
|
919
|
-
passwordPlaceholder?: string;
|
|
920
|
-
passwordRequired?: string;
|
|
921
|
-
passwordTooShort?: string;
|
|
922
|
-
forgotPassword?: string;
|
|
923
|
-
newUserText?: string;
|
|
924
|
-
createAccount?: string;
|
|
925
|
-
loginText?: string;
|
|
926
|
-
loginViaGoogleLabel?: string;
|
|
927
|
-
loginViaGithubLabel?: string;
|
|
928
|
-
loginViaTwitterLabel?: string;
|
|
929
|
-
};
|
|
940
|
+
texts?: LoginFormTextsTypes;
|
|
930
941
|
/** Function to handle language change. */
|
|
931
942
|
handleLanguage?: () => void;
|
|
932
943
|
/** Current selected language. */
|
|
@@ -983,7 +994,40 @@ type LoginFormTypes = {
|
|
|
983
994
|
};
|
|
984
995
|
declare const LoginForm: FC<LoginFormTypes>;
|
|
985
996
|
|
|
997
|
+
type RegisterFormTextsTypes = ThirdPartyAuthTextsTypes & {
|
|
998
|
+
fullNameLabel: string;
|
|
999
|
+
fullNamePlaceholder: string;
|
|
1000
|
+
emailLabel: string;
|
|
1001
|
+
emailPlaceholder: string;
|
|
1002
|
+
emailRequired: string;
|
|
1003
|
+
emailInvalid: string;
|
|
1004
|
+
usernameLabel: string;
|
|
1005
|
+
usernamePlaceholder: string;
|
|
1006
|
+
usernameInvalid: string;
|
|
1007
|
+
usernameRequired: string;
|
|
1008
|
+
passwordLabel: string;
|
|
1009
|
+
passwordPlaceholder: string;
|
|
1010
|
+
passwordRequired: string;
|
|
1011
|
+
passwordTooShort: string;
|
|
1012
|
+
passwordsDontMatch: string;
|
|
1013
|
+
confirmPasswordLabel: string;
|
|
1014
|
+
confirmPasswordPlaceholder: string;
|
|
1015
|
+
confirmPasswordRequired: string;
|
|
1016
|
+
subscribeToNewsletter: string;
|
|
1017
|
+
termsRequired: string;
|
|
1018
|
+
refCode: string;
|
|
1019
|
+
refCodePlaceholder: string;
|
|
1020
|
+
userReferenceLabel: string;
|
|
1021
|
+
userReferencePlaceholder: string;
|
|
1022
|
+
existingUserText: string;
|
|
1023
|
+
termsText: string;
|
|
1024
|
+
iAcceptText: string;
|
|
1025
|
+
registerText: string;
|
|
1026
|
+
loginText: string;
|
|
1027
|
+
};
|
|
986
1028
|
type RegisterFormTypes = {
|
|
1029
|
+
/** Object containing text labels used throughout the form. */
|
|
1030
|
+
texts: RegisterFormTextsTypes;
|
|
987
1031
|
/** Callback function triggered to handle language changes.*/
|
|
988
1032
|
handleLanguage?: () => void;
|
|
989
1033
|
/** The current language being used in the application. */
|
|
@@ -1044,41 +1088,6 @@ type RegisterFormTypes = {
|
|
|
1044
1088
|
additionalButtons?: any;
|
|
1045
1089
|
/** To add more custom input fields */
|
|
1046
1090
|
additionalInputs?: any;
|
|
1047
|
-
/** Object containing text labels used throughout the form. */
|
|
1048
|
-
texts: {
|
|
1049
|
-
fullNameLabel: string;
|
|
1050
|
-
fullNamePlaceholder: string;
|
|
1051
|
-
emailLabel: string;
|
|
1052
|
-
emailPlaceholder: string;
|
|
1053
|
-
emailRequired: string;
|
|
1054
|
-
emailInvalid: string;
|
|
1055
|
-
usernameLabel: string;
|
|
1056
|
-
usernamePlaceholder: string;
|
|
1057
|
-
usernameInvalid: string;
|
|
1058
|
-
usernameRequired: string;
|
|
1059
|
-
passwordLabel: string;
|
|
1060
|
-
passwordPlaceholder: string;
|
|
1061
|
-
passwordRequired: string;
|
|
1062
|
-
passwordTooShort: string;
|
|
1063
|
-
passwordsDontMatch: string;
|
|
1064
|
-
confirmPasswordLabel: string;
|
|
1065
|
-
confirmPasswordPlaceholder: string;
|
|
1066
|
-
confirmPasswordRequired: string;
|
|
1067
|
-
subscribeToNewsletter: string;
|
|
1068
|
-
termsRequired: string;
|
|
1069
|
-
registerViaGoogleLabel: string;
|
|
1070
|
-
registerViaGithubLabel: string;
|
|
1071
|
-
registerViaTwitterLabel: string;
|
|
1072
|
-
refCode: string;
|
|
1073
|
-
refCodePlaceholder: string;
|
|
1074
|
-
userReferenceLabel: string;
|
|
1075
|
-
userReferencePlaceholder: string;
|
|
1076
|
-
existingUserText: string;
|
|
1077
|
-
termsText: string;
|
|
1078
|
-
iAcceptText: string;
|
|
1079
|
-
registerText: string;
|
|
1080
|
-
loginText: string;
|
|
1081
|
-
};
|
|
1082
1091
|
};
|
|
1083
1092
|
declare const RegisterForm: FC<RegisterFormTypes>;
|
|
1084
1093
|
|
|
@@ -1518,4 +1527,4 @@ declare function useTabs(initialTab?: string): {
|
|
|
1518
1527
|
handleTabChange: (index: any) => void;
|
|
1519
1528
|
};
|
|
1520
1529
|
|
|
1521
|
-
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, DropdownMenu, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, 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, 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 };
|
|
1530
|
+
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, 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 };
|