@sikka/hawa 0.46.4-next → 0.47.0-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/{Radio-Dyvlywnk.d.mts → Radio-BPHTeDMz.d.mts} +8 -7
- package/dist/{Radio-DlPwVCG4.d.ts → Radio-cRcIH8_L.d.ts} +8 -7
- package/dist/blocks/auth/index.d.mts +8 -8
- package/dist/blocks/auth/index.d.ts +8 -8
- package/dist/blocks/auth/index.js +85 -128
- package/dist/blocks/auth/index.mjs +18 -50
- package/dist/blocks/feedback/index.js +68 -79
- package/dist/blocks/feedback/index.mjs +1 -1
- package/dist/blocks/index.d.mts +3 -3
- package/dist/blocks/index.d.ts +3 -3
- package/dist/blocks/index.js +85 -128
- package/dist/blocks/index.mjs +5 -24
- package/dist/blocks/misc/index.js +68 -79
- package/dist/blocks/misc/index.mjs +1 -1
- package/dist/{chunk-5CTMGPEF.mjs → chunk-342KIV4R.mjs} +81 -105
- package/dist/{chunk-6TG2PHZK.mjs → chunk-AWJSHOYU.mjs} +68 -79
- package/dist/elements/index.d.mts +2 -2
- package/dist/elements/index.d.ts +2 -2
- package/dist/elements/index.js +81 -105
- package/dist/elements/index.mjs +1 -1
- package/dist/index.d.mts +10 -9
- package/dist/index.d.ts +10 -9
- package/dist/index.js +85 -128
- package/dist/index.mjs +85 -128
- package/dist/phoneInput/index.d.mts +7 -7
- package/dist/phoneInput/index.d.ts +7 -7
- package/dist/phoneInput/index.js +78 -85
- package/dist/phoneInput/index.js.map +1 -1
- package/dist/phoneInput/index.mjs +78 -85
- package/dist/phoneInput/index.mjs.map +1 -1
- package/dist/pinInput/index.js +3 -20
- package/dist/pinInput/index.js.map +1 -1
- package/dist/pinInput/index.mjs +3 -20
- package/dist/pinInput/index.mjs.map +1 -1
- package/dist/select/index.d.mts +1 -0
- package/dist/select/index.d.ts +1 -0
- package/dist/select/index.js +68 -79
- package/dist/select/index.js.map +1 -1
- package/dist/select/index.mjs +68 -79
- package/dist/select/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/elements/index.js
CHANGED
@@ -5263,6 +5263,7 @@ var import_clsx3 = __toESM(require("clsx"));
|
|
5263
5263
|
var Select = ({
|
5264
5264
|
labelProps,
|
5265
5265
|
labelKey = "label",
|
5266
|
+
valueKey = "value",
|
5266
5267
|
...props
|
5267
5268
|
}) => {
|
5268
5269
|
const NoOption = () => {
|
@@ -5282,13 +5283,7 @@ var Select = ({
|
|
5282
5283
|
children
|
5283
5284
|
);
|
5284
5285
|
};
|
5285
|
-
const Option = ({
|
5286
|
-
children,
|
5287
|
-
innerProps,
|
5288
|
-
innerRef,
|
5289
|
-
isFocused,
|
5290
|
-
isSelected
|
5291
|
-
}) => {
|
5286
|
+
const Option = ({ children, innerProps, innerRef, isFocused, isSelected }) => {
|
5292
5287
|
return /* @__PURE__ */ import_react35.default.createElement(
|
5293
5288
|
"div",
|
5294
5289
|
{
|
@@ -5303,14 +5298,7 @@ var Select = ({
|
|
5303
5298
|
children
|
5304
5299
|
);
|
5305
5300
|
};
|
5306
|
-
const Menu = ({
|
5307
|
-
cx,
|
5308
|
-
children,
|
5309
|
-
getStyles,
|
5310
|
-
innerProps,
|
5311
|
-
innerRef,
|
5312
|
-
...menuProps
|
5313
|
-
}) => {
|
5301
|
+
const Menu = ({ cx, children, getStyles, innerProps, innerRef, ...menuProps }) => {
|
5314
5302
|
const menuOpen = menuProps.selectProps.menuIsOpen;
|
5315
5303
|
return /* @__PURE__ */ import_react35.default.createElement(
|
5316
5304
|
"div",
|
@@ -5339,71 +5327,72 @@ var Select = ({
|
|
5339
5327
|
)
|
5340
5328
|
},
|
5341
5329
|
props.label && /* @__PURE__ */ import_react35.default.createElement(Label2, { ...labelProps }, props.label),
|
5342
|
-
props.isLoading ? /* @__PURE__ */ import_react35.default.createElement(Skeleton, { className: "hawa-h-[40px] hawa-w-full" }) : !props.isCreatable ? (
|
5343
|
-
|
5344
|
-
|
5345
|
-
|
5346
|
-
{
|
5347
|
-
|
5348
|
-
|
5349
|
-
|
5350
|
-
|
5351
|
-
|
5352
|
-
|
5353
|
-
|
5354
|
-
|
5355
|
-
|
5356
|
-
|
5357
|
-
|
5358
|
-
|
5359
|
-
|
5360
|
-
|
5361
|
-
|
5362
|
-
|
5363
|
-
|
5364
|
-
|
5365
|
-
|
5366
|
-
|
5367
|
-
|
5368
|
-
props.hideIndicator ? "hawa-invisible" : "hawa-px-1",
|
5369
|
-
props.disabled && "hawa-opacity-30"
|
5370
|
-
)
|
5371
|
-
},
|
5372
|
-
unstyled: true,
|
5373
|
-
autoFocus: false,
|
5374
|
-
components: props.hideIndicator ? { Option, Menu, IndicatorsContainer: () => null } : {
|
5330
|
+
props.isLoading ? /* @__PURE__ */ import_react35.default.createElement(Skeleton, { className: "hawa-h-[40px] hawa-w-full" }) : !props.isCreatable ? /* @__PURE__ */ import_react35.default.createElement(
|
5331
|
+
import_react_select.default,
|
5332
|
+
{
|
5333
|
+
noOptionsMessage: NoOption,
|
5334
|
+
classNames: {
|
5335
|
+
control: () => cn(props.phoneCode && "hawa-rounded-r-none", props.controlClassNames),
|
5336
|
+
container: () => cn(
|
5337
|
+
selectContainerStyles,
|
5338
|
+
props.phoneCode && phoneCodeStyles,
|
5339
|
+
props.isMulti && "hawa-ps-0 "
|
5340
|
+
),
|
5341
|
+
placeholder: () => cn(selectPlaceholderStyles, props.disabled && "hawa-text-muted-foreground"),
|
5342
|
+
valueContainer: () => "hawa-text-foreground hawa-px-1",
|
5343
|
+
singleValue: () => cn(
|
5344
|
+
props.disabled ? "hawa-text-muted-foreground hawa-opacity-30" : "hawa-text-foreground"
|
5345
|
+
),
|
5346
|
+
indicatorsContainer: () => cn(
|
5347
|
+
selectIndicatorContainerStyles,
|
5348
|
+
props.hideIndicator ? "hawa-invisible" : "hawa-px-1",
|
5349
|
+
props.disabled && "hawa-opacity-30"
|
5350
|
+
)
|
5351
|
+
},
|
5352
|
+
unstyled: true,
|
5353
|
+
autoFocus: false,
|
5354
|
+
components: props.hideIndicator ? {
|
5355
|
+
Option: (optionProps) => /* @__PURE__ */ import_react35.default.createElement(
|
5375
5356
|
Option,
|
5376
|
-
|
5377
|
-
|
5378
|
-
|
5379
|
-
|
5380
|
-
|
5381
|
-
|
5382
|
-
|
5383
|
-
|
5384
|
-
|
5385
|
-
|
5386
|
-
|
5387
|
-
|
5388
|
-
|
5389
|
-
|
5390
|
-
className
|
5391
|
-
|
5392
|
-
|
5393
|
-
|
5394
|
-
|
5395
|
-
|
5396
|
-
|
5397
|
-
|
5398
|
-
|
5399
|
-
|
5400
|
-
|
5401
|
-
|
5402
|
-
|
5403
|
-
|
5404
|
-
|
5405
|
-
|
5406
|
-
|
5357
|
+
{
|
5358
|
+
...optionProps,
|
5359
|
+
isSelected: optionProps.data[valueKey] === props.value[valueKey]
|
5360
|
+
}
|
5361
|
+
),
|
5362
|
+
Menu,
|
5363
|
+
IndicatorsContainer: () => null
|
5364
|
+
} : {
|
5365
|
+
Option,
|
5366
|
+
Menu,
|
5367
|
+
ValueContainer: (e) => /* @__PURE__ */ import_react35.default.createElement(
|
5368
|
+
"div",
|
5369
|
+
{
|
5370
|
+
className: cn(
|
5371
|
+
e.className,
|
5372
|
+
"hawa-gap-1 hawa-flex hawa-flex-row hawa-flex-wrap hawa-p-2 hawa-w-full hawa-cursor-pointer"
|
5373
|
+
),
|
5374
|
+
...e
|
5375
|
+
}
|
5376
|
+
),
|
5377
|
+
MultiValueContainer: (e) => /* @__PURE__ */ import_react35.default.createElement(
|
5378
|
+
"div",
|
5379
|
+
{
|
5380
|
+
className: "hawa-rounded hawa-border hawa-p-1 hawa-px-2 hawa-flex hawa-flex-row",
|
5381
|
+
...e
|
5382
|
+
}
|
5383
|
+
)
|
5384
|
+
},
|
5385
|
+
onChange: (newValue, action) => props.onChange(newValue, action),
|
5386
|
+
options: props.options,
|
5387
|
+
getOptionLabel: props.getOptionLabel,
|
5388
|
+
defaultValue: props.defaultValue,
|
5389
|
+
value: props.value,
|
5390
|
+
placeholder: props.placeholder,
|
5391
|
+
isDisabled: props.disabled,
|
5392
|
+
isClearable: props.isClearable,
|
5393
|
+
isMulti: props.isMulti,
|
5394
|
+
isSearchable: props.isSearchable
|
5395
|
+
}
|
5407
5396
|
) : /* @__PURE__ */ import_react35.default.createElement(
|
5408
5397
|
import_creatable.default,
|
5409
5398
|
{
|
@@ -7393,11 +7382,13 @@ var PhoneInput = ({
|
|
7393
7382
|
countryCodes,
|
7394
7383
|
...props
|
7395
7384
|
}) => {
|
7385
|
+
var _a;
|
7396
7386
|
const [phoneNumber, setPhoneNumber] = (0, import_react39.useState)("");
|
7397
|
-
const [countryCode, setCountryCode] = (0, import_react39.useState)(
|
7387
|
+
const [countryCode, setCountryCode] = (0, import_react39.useState)(
|
7388
|
+
props.preferredCountry || { label: "+966" }
|
7389
|
+
);
|
7398
7390
|
const inputRef = (0, import_react39.useRef)(null);
|
7399
7391
|
const handleInputChange = (e) => {
|
7400
|
-
console.log("test e ", e.target.value);
|
7401
7392
|
const validChars = /^[0-9-()]+$/;
|
7402
7393
|
const input = e.target.value;
|
7403
7394
|
if (input === "" || validChars.test(input)) {
|
@@ -7419,11 +7410,13 @@ var PhoneInput = ({
|
|
7419
7410
|
isMulti: false,
|
7420
7411
|
isSearchable: true,
|
7421
7412
|
isClearable: false,
|
7422
|
-
placeholder:
|
7413
|
+
placeholder: (_a = props.preferredCountry) == null ? void 0 : _a.label,
|
7423
7414
|
options: countryCodes || countries_default,
|
7424
|
-
onChange: setCountryCode,
|
7425
|
-
|
7426
|
-
|
7415
|
+
onChange: (e) => setCountryCode({ label: e.label, value: e.label }),
|
7416
|
+
valueKey: "label",
|
7417
|
+
labelKey: "label",
|
7418
|
+
value: { label: countryCode == null ? void 0 : countryCode.label, value: countryCode == null ? void 0 : countryCode.label },
|
7419
|
+
defaultValue: { label: countryCode == null ? void 0 : countryCode.label, value: countryCode == null ? void 0 : countryCode.label }
|
7427
7420
|
}
|
7428
7421
|
), /* @__PURE__ */ import_react39.default.createElement("div", { className: "hawa-relative hawa-flex hawa-h-fit hawa-w-full hawa-flex-col hawa-justify-center hawa-gap-0" }, /* @__PURE__ */ import_react39.default.createElement(
|
7429
7422
|
"input",
|
@@ -7536,14 +7529,7 @@ var PinInputRoot = React50.forwardRef(({ className, containerClassName, ...props
|
|
7536
7529
|
}
|
7537
7530
|
));
|
7538
7531
|
PinInputRoot.displayName = "PinInputRoot";
|
7539
|
-
var PinInputGroup = React50.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ React50.createElement(
|
7540
|
-
"div",
|
7541
|
-
{
|
7542
|
-
ref,
|
7543
|
-
className: cn("hawa-flex hawa-items-center", className),
|
7544
|
-
...props
|
7545
|
-
}
|
7546
|
-
));
|
7532
|
+
var PinInputGroup = React50.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ React50.createElement("div", { ref, className: cn("hawa-flex hawa-items-center", className), ...props }));
|
7547
7533
|
PinInputGroup.displayName = "PinInputGroup";
|
7548
7534
|
var PinInputSlot = React50.forwardRef(({ index, className, ...props }, ref) => {
|
7549
7535
|
const pinInputContext = React50.useContext(import_input_otp.OTPInputContext);
|
@@ -7566,22 +7552,12 @@ var PinInputSlot = React50.forwardRef(({ index, className, ...props }, ref) => {
|
|
7566
7552
|
PinInputSlot.displayName = "PinInputSlot";
|
7567
7553
|
var PinInputSeperator = React50.forwardRef(({ ...props }, ref) => /* @__PURE__ */ React50.createElement("div", { ref, role: "separator", ...props }, /* @__PURE__ */ React50.createElement(Dot, null)));
|
7568
7554
|
PinInputSeperator.displayName = "PinInputSeperator";
|
7569
|
-
var PinInput = ({
|
7570
|
-
separatorPosition = 0,
|
7571
|
-
...props
|
7572
|
-
}) => {
|
7555
|
+
var PinInput = ({ separatorPosition = 0, ...props }) => {
|
7573
7556
|
const maxLength = props.maxLength || 6;
|
7574
7557
|
const clampedSeparatorPosition = Math.min(separatorPosition, maxLength);
|
7575
7558
|
const firstGroupLength = clampedSeparatorPosition > 0 ? clampedSeparatorPosition : 0;
|
7576
7559
|
const secondGroupLength = maxLength - firstGroupLength;
|
7577
|
-
return /* @__PURE__ */ React50.createElement("div", { className: "hawa-flex hawa-flex-col hawa-gap-2" }, /* @__PURE__ */ React50.createElement(PinInputRoot, { ...props }, firstGroupLength > 0 && /* @__PURE__ */ React50.createElement(PinInputGroup, { className: "hawa-w-full hawa-gap-2" }, [...Array(firstGroupLength)].map((_, index) => /* @__PURE__ */ React50.createElement(
|
7578
|
-
PinInputSlot,
|
7579
|
-
{
|
7580
|
-
key: index,
|
7581
|
-
index,
|
7582
|
-
className: "hawa-w-full hawa-border"
|
7583
|
-
}
|
7584
|
-
))), separatorPosition > 0 && separatorPosition < props.maxLength && /* @__PURE__ */ React50.createElement(PinInputSeperator, null), secondGroupLength > 0 && /* @__PURE__ */ React50.createElement(PinInputGroup, { className: "hawa-w-full hawa-gap-2" }, [...Array(secondGroupLength)].map((_, index) => /* @__PURE__ */ React50.createElement(
|
7560
|
+
return /* @__PURE__ */ React50.createElement("div", { className: "hawa-flex hawa-flex-col hawa-gap-2", dir: "ltr" }, /* @__PURE__ */ React50.createElement(PinInputRoot, { ...props }, firstGroupLength > 0 && /* @__PURE__ */ React50.createElement(PinInputGroup, { className: "hawa-w-full hawa-gap-2" }, [...Array(firstGroupLength)].map((_, index) => /* @__PURE__ */ React50.createElement(PinInputSlot, { key: index, index, className: "hawa-w-full hawa-border" }))), separatorPosition > 0 && separatorPosition < props.maxLength && /* @__PURE__ */ React50.createElement(PinInputSeperator, null), secondGroupLength > 0 && /* @__PURE__ */ React50.createElement(PinInputGroup, { className: "hawa-w-full hawa-gap-2" }, [...Array(secondGroupLength)].map((_, index) => /* @__PURE__ */ React50.createElement(
|
7585
7561
|
PinInputSlot,
|
7586
7562
|
{
|
7587
7563
|
key: index + firstGroupLength,
|
package/dist/elements/index.mjs
CHANGED
package/dist/index.d.mts
CHANGED
@@ -884,6 +884,7 @@ type SelectTypes = {
|
|
884
884
|
hideHelperText?: boolean;
|
885
885
|
options: SelectOptionProps[];
|
886
886
|
labelKey?: string;
|
887
|
+
valueKey?: string;
|
887
888
|
isCreatable?: boolean;
|
888
889
|
isClearable?: boolean;
|
889
890
|
isMulti?: boolean;
|
@@ -968,19 +969,19 @@ type BadgeTypes = {
|
|
968
969
|
declare const Badge: FC<BadgeTypes>;
|
969
970
|
declare const BadgedComponent: ({ children, className, hideBadge, position, size, text, }: any) => React__default.JSX.Element;
|
970
971
|
|
972
|
+
type PhoneCodeValue = {
|
973
|
+
label: string;
|
974
|
+
value?: string;
|
975
|
+
};
|
971
976
|
type PhoneInputProps = {
|
972
|
-
preferredCountry?:
|
973
|
-
label: string;
|
974
|
-
};
|
977
|
+
preferredCountry?: PhoneCodeValue;
|
975
978
|
helperText?: any;
|
976
979
|
label?: string;
|
977
980
|
labelProps?: LabelProps;
|
978
981
|
placeholder?: string;
|
979
982
|
handleChange?: (value: string) => void;
|
980
983
|
inputProps?: React__default.InputHTMLAttributes<HTMLInputElement>;
|
981
|
-
countryCodes?:
|
982
|
-
label: string;
|
983
|
-
}[];
|
984
|
+
countryCodes?: PhoneCodeValue[];
|
984
985
|
};
|
985
986
|
declare const PhoneInput: FC<PhoneInputProps>;
|
986
987
|
|
@@ -1862,7 +1863,7 @@ declare const ResetPasswordForm: FC<ResetPasswordType>;
|
|
1862
1863
|
|
1863
1864
|
type TConfirmation = {
|
1864
1865
|
texts?: {
|
1865
|
-
|
1866
|
+
checkYourIdentifier?: string;
|
1866
1867
|
weSentCode?: string;
|
1867
1868
|
didntGetCode?: string;
|
1868
1869
|
resendCode?: string;
|
@@ -1876,7 +1877,7 @@ type TConfirmation = {
|
|
1876
1877
|
showError?: any;
|
1877
1878
|
errorTitle?: any;
|
1878
1879
|
errorText?: any;
|
1879
|
-
|
1880
|
+
identifier?: string;
|
1880
1881
|
confirmLoading?: boolean;
|
1881
1882
|
onConfirm?: any;
|
1882
1883
|
onResend?: any;
|
@@ -2324,4 +2325,4 @@ declare function useViewportSize(): {
|
|
2324
2325
|
height: number;
|
2325
2326
|
};
|
2326
2327
|
|
2327
|
-
export { Accordion, AccordionContent, AccordionItem, type AccordionItemProps, AccordionRoot, AccordionTrigger, ActionCard, AdCard, Alert, Announcement, AppCommand, AppLanding, AppLayout, type AppSidebarItemProps, AppStores, AppTabs, AppTopbar, AuthButtons, Avatar, BackToTop, Badge, BadgedComponent, Breadcrumb, type BreadcrumbItemProps, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CheckEmail, Checkbox, Chip, type ChipColors, type ChipTypes, CodeBlock, CodeConfirmation, ColorPicker, Combobox, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, type CommandInputProps, CommandItem, CommandList, CommandSeparator, CommandShortcut, ComparingPlans, ContactForm, type ContentRect, Copyrights, Count, DataTable, DestroyableCard, Dialog, DialogBody, DialogCarousel, DialogCarouselContent, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogPortal, DialogStep, DialogSteps, DialogTitle, DialogTrigger, DocsLayout, DocsSidebar, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadio, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuRoot, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, FileUploader, FullCommand, type FullCommandItem, HorizontalPricing, type Hotkey, type HotkeyItem, type HotkeyItemOptions, Input, type InputFieldProps, InterfaceSettings, ItemCard, type KeyboardModifiers, Label, type LabelProps, LandingCard, LeadGenerator, LegalTexts, Loading, LoginForm, Logos, type MenuItemType, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Navbar, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem$1 as NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuRoot, NavigationMenuTrigger, NavigationMenuViewport, NewPasswordForm, NoPermission, NotFound, Pagination, PasswordInput, PasswordStrengthIndicator, PhoneInput, type PhoneInputProps, PhoneMockup, PinInput, PinInputGroup, PinInputRoot, PinInputSeperator, PinInputSlot, Popover, PopoverContent, PopoverPortal, PopoverRoot, PopoverTrigger, PricingCard, PricingPlans, Progress, ProgressCircle, Radio, type RadioOptionsTypes, RegisterForm, ResetPasswordForm, ScrollArea, ScrollBar, ScrollIndicator, Select, type SelectOptionProps, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SidebarGroup, SidebarItem, SimpleTable, Skeleton, Slider, SortButton, StandardNavigationMenuItem, Stats, StopPropagationWrapper, type SubItem$1 as SubItem, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Testimonial, Textarea, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, type ToasterToastProps, Tooltip, Usage, type UseFocusWithinOptions, type UseMediaQueryOptions, UserReferralSource, buttonVariants, getHotkeyHandler, getHotkeyMatcher, navigationMenuTriggerStyle, parseHotkey, reducer, toast, useBreakpoint, useClickOutside, useClipboard, useDialogCarousel, useFocusWithin, useIsomorphicEffect, useMeasureDirty, useMediaQuery, useMultiStepDialog, useShortcuts, useTabs, useToast, useViewportSize, useWindowEvent, useWindowSize };
|
2328
|
+
export { Accordion, AccordionContent, AccordionItem, type AccordionItemProps, AccordionRoot, AccordionTrigger, ActionCard, AdCard, Alert, Announcement, AppCommand, AppLanding, AppLayout, type AppSidebarItemProps, AppStores, AppTabs, AppTopbar, AuthButtons, Avatar, BackToTop, Badge, BadgedComponent, Breadcrumb, type BreadcrumbItemProps, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CheckEmail, Checkbox, Chip, type ChipColors, type ChipTypes, CodeBlock, CodeConfirmation, ColorPicker, Combobox, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, type CommandInputProps, CommandItem, CommandList, CommandSeparator, CommandShortcut, ComparingPlans, ContactForm, type ContentRect, Copyrights, Count, DataTable, DestroyableCard, Dialog, DialogBody, DialogCarousel, DialogCarouselContent, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogPortal, DialogStep, DialogSteps, DialogTitle, DialogTrigger, DocsLayout, DocsSidebar, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadio, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuRoot, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, FileUploader, FullCommand, type FullCommandItem, HorizontalPricing, type Hotkey, type HotkeyItem, type HotkeyItemOptions, Input, type InputFieldProps, InterfaceSettings, ItemCard, type KeyboardModifiers, Label, type LabelProps, LandingCard, LeadGenerator, LegalTexts, Loading, LoginForm, Logos, type MenuItemType, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Navbar, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem$1 as NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuRoot, NavigationMenuTrigger, NavigationMenuViewport, NewPasswordForm, NoPermission, NotFound, Pagination, PasswordInput, PasswordStrengthIndicator, type PhoneCodeValue, PhoneInput, type PhoneInputProps, PhoneMockup, PinInput, PinInputGroup, PinInputRoot, PinInputSeperator, PinInputSlot, Popover, PopoverContent, PopoverPortal, PopoverRoot, PopoverTrigger, PricingCard, PricingPlans, Progress, ProgressCircle, Radio, type RadioOptionsTypes, RegisterForm, ResetPasswordForm, ScrollArea, ScrollBar, ScrollIndicator, Select, type SelectOptionProps, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SidebarGroup, SidebarItem, SimpleTable, Skeleton, Slider, SortButton, StandardNavigationMenuItem, Stats, StopPropagationWrapper, type SubItem$1 as SubItem, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Testimonial, Textarea, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, type ToasterToastProps, Tooltip, Usage, type UseFocusWithinOptions, type UseMediaQueryOptions, UserReferralSource, buttonVariants, getHotkeyHandler, getHotkeyMatcher, navigationMenuTriggerStyle, parseHotkey, reducer, toast, useBreakpoint, useClickOutside, useClipboard, useDialogCarousel, useFocusWithin, useIsomorphicEffect, useMeasureDirty, useMediaQuery, useMultiStepDialog, useShortcuts, useTabs, useToast, useViewportSize, useWindowEvent, useWindowSize };
|
package/dist/index.d.ts
CHANGED
@@ -884,6 +884,7 @@ type SelectTypes = {
|
|
884
884
|
hideHelperText?: boolean;
|
885
885
|
options: SelectOptionProps[];
|
886
886
|
labelKey?: string;
|
887
|
+
valueKey?: string;
|
887
888
|
isCreatable?: boolean;
|
888
889
|
isClearable?: boolean;
|
889
890
|
isMulti?: boolean;
|
@@ -968,19 +969,19 @@ type BadgeTypes = {
|
|
968
969
|
declare const Badge: FC<BadgeTypes>;
|
969
970
|
declare const BadgedComponent: ({ children, className, hideBadge, position, size, text, }: any) => React__default.JSX.Element;
|
970
971
|
|
972
|
+
type PhoneCodeValue = {
|
973
|
+
label: string;
|
974
|
+
value?: string;
|
975
|
+
};
|
971
976
|
type PhoneInputProps = {
|
972
|
-
preferredCountry?:
|
973
|
-
label: string;
|
974
|
-
};
|
977
|
+
preferredCountry?: PhoneCodeValue;
|
975
978
|
helperText?: any;
|
976
979
|
label?: string;
|
977
980
|
labelProps?: LabelProps;
|
978
981
|
placeholder?: string;
|
979
982
|
handleChange?: (value: string) => void;
|
980
983
|
inputProps?: React__default.InputHTMLAttributes<HTMLInputElement>;
|
981
|
-
countryCodes?:
|
982
|
-
label: string;
|
983
|
-
}[];
|
984
|
+
countryCodes?: PhoneCodeValue[];
|
984
985
|
};
|
985
986
|
declare const PhoneInput: FC<PhoneInputProps>;
|
986
987
|
|
@@ -1862,7 +1863,7 @@ declare const ResetPasswordForm: FC<ResetPasswordType>;
|
|
1862
1863
|
|
1863
1864
|
type TConfirmation = {
|
1864
1865
|
texts?: {
|
1865
|
-
|
1866
|
+
checkYourIdentifier?: string;
|
1866
1867
|
weSentCode?: string;
|
1867
1868
|
didntGetCode?: string;
|
1868
1869
|
resendCode?: string;
|
@@ -1876,7 +1877,7 @@ type TConfirmation = {
|
|
1876
1877
|
showError?: any;
|
1877
1878
|
errorTitle?: any;
|
1878
1879
|
errorText?: any;
|
1879
|
-
|
1880
|
+
identifier?: string;
|
1880
1881
|
confirmLoading?: boolean;
|
1881
1882
|
onConfirm?: any;
|
1882
1883
|
onResend?: any;
|
@@ -2324,4 +2325,4 @@ declare function useViewportSize(): {
|
|
2324
2325
|
height: number;
|
2325
2326
|
};
|
2326
2327
|
|
2327
|
-
export { Accordion, AccordionContent, AccordionItem, type AccordionItemProps, AccordionRoot, AccordionTrigger, ActionCard, AdCard, Alert, Announcement, AppCommand, AppLanding, AppLayout, type AppSidebarItemProps, AppStores, AppTabs, AppTopbar, AuthButtons, Avatar, BackToTop, Badge, BadgedComponent, Breadcrumb, type BreadcrumbItemProps, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CheckEmail, Checkbox, Chip, type ChipColors, type ChipTypes, CodeBlock, CodeConfirmation, ColorPicker, Combobox, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, type CommandInputProps, CommandItem, CommandList, CommandSeparator, CommandShortcut, ComparingPlans, ContactForm, type ContentRect, Copyrights, Count, DataTable, DestroyableCard, Dialog, DialogBody, DialogCarousel, DialogCarouselContent, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogPortal, DialogStep, DialogSteps, DialogTitle, DialogTrigger, DocsLayout, DocsSidebar, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadio, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuRoot, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, FileUploader, FullCommand, type FullCommandItem, HorizontalPricing, type Hotkey, type HotkeyItem, type HotkeyItemOptions, Input, type InputFieldProps, InterfaceSettings, ItemCard, type KeyboardModifiers, Label, type LabelProps, LandingCard, LeadGenerator, LegalTexts, Loading, LoginForm, Logos, type MenuItemType, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Navbar, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem$1 as NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuRoot, NavigationMenuTrigger, NavigationMenuViewport, NewPasswordForm, NoPermission, NotFound, Pagination, PasswordInput, PasswordStrengthIndicator, PhoneInput, type PhoneInputProps, PhoneMockup, PinInput, PinInputGroup, PinInputRoot, PinInputSeperator, PinInputSlot, Popover, PopoverContent, PopoverPortal, PopoverRoot, PopoverTrigger, PricingCard, PricingPlans, Progress, ProgressCircle, Radio, type RadioOptionsTypes, RegisterForm, ResetPasswordForm, ScrollArea, ScrollBar, ScrollIndicator, Select, type SelectOptionProps, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SidebarGroup, SidebarItem, SimpleTable, Skeleton, Slider, SortButton, StandardNavigationMenuItem, Stats, StopPropagationWrapper, type SubItem$1 as SubItem, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Testimonial, Textarea, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, type ToasterToastProps, Tooltip, Usage, type UseFocusWithinOptions, type UseMediaQueryOptions, UserReferralSource, buttonVariants, getHotkeyHandler, getHotkeyMatcher, navigationMenuTriggerStyle, parseHotkey, reducer, toast, useBreakpoint, useClickOutside, useClipboard, useDialogCarousel, useFocusWithin, useIsomorphicEffect, useMeasureDirty, useMediaQuery, useMultiStepDialog, useShortcuts, useTabs, useToast, useViewportSize, useWindowEvent, useWindowSize };
|
2328
|
+
export { Accordion, AccordionContent, AccordionItem, type AccordionItemProps, AccordionRoot, AccordionTrigger, ActionCard, AdCard, Alert, Announcement, AppCommand, AppLanding, AppLayout, type AppSidebarItemProps, AppStores, AppTabs, AppTopbar, AuthButtons, Avatar, BackToTop, Badge, BadgedComponent, Breadcrumb, type BreadcrumbItemProps, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CheckEmail, Checkbox, Chip, type ChipColors, type ChipTypes, CodeBlock, CodeConfirmation, ColorPicker, Combobox, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, type CommandInputProps, CommandItem, CommandList, CommandSeparator, CommandShortcut, ComparingPlans, ContactForm, type ContentRect, Copyrights, Count, DataTable, DestroyableCard, Dialog, DialogBody, DialogCarousel, DialogCarouselContent, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogPortal, DialogStep, DialogSteps, DialogTitle, DialogTrigger, DocsLayout, DocsSidebar, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadio, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuRoot, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, FeedbackEmoji, FeedbackForm, FeedbackRating, FileDropzone, FileUploader, FullCommand, type FullCommandItem, HorizontalPricing, type Hotkey, type HotkeyItem, type HotkeyItemOptions, Input, type InputFieldProps, InterfaceSettings, ItemCard, type KeyboardModifiers, Label, type LabelProps, LandingCard, LeadGenerator, LegalTexts, Loading, LoginForm, Logos, type MenuItemType, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Navbar, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem$1 as NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuRoot, NavigationMenuTrigger, NavigationMenuViewport, NewPasswordForm, NoPermission, NotFound, Pagination, PasswordInput, PasswordStrengthIndicator, type PhoneCodeValue, PhoneInput, type PhoneInputProps, PhoneMockup, PinInput, PinInputGroup, PinInputRoot, PinInputSeperator, PinInputSlot, Popover, PopoverContent, PopoverPortal, PopoverRoot, PopoverTrigger, PricingCard, PricingPlans, Progress, ProgressCircle, Radio, type RadioOptionsTypes, RegisterForm, ResetPasswordForm, ScrollArea, ScrollBar, ScrollIndicator, Select, type SelectOptionProps, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SidebarGroup, SidebarItem, SimpleTable, Skeleton, Slider, SortButton, StandardNavigationMenuItem, Stats, StopPropagationWrapper, type SubItem$1 as SubItem, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Testimonial, Textarea, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, type ToasterToastProps, Tooltip, Usage, type UseFocusWithinOptions, type UseMediaQueryOptions, UserReferralSource, buttonVariants, getHotkeyHandler, getHotkeyMatcher, navigationMenuTriggerStyle, parseHotkey, reducer, toast, useBreakpoint, useClickOutside, useClipboard, useDialogCarousel, useFocusWithin, useIsomorphicEffect, useMeasureDirty, useMediaQuery, useMultiStepDialog, useShortcuts, useTabs, useToast, useViewportSize, useWindowEvent, useWindowSize };
|