@razorpay/blade 8.7.0 → 8.8.0
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/build/components/index.d.ts +123 -59
- package/build/components/index.native.d.ts +94 -59
- package/build/components/index.native.js +16 -10
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +4397 -1594
- package/build/components/index.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +2 -2
- package/build/css/bankingThemeDarkMobile.css +2 -2
- package/build/css/bankingThemeLightDesktop.css +2 -2
- package/build/css/bankingThemeLightMobile.css +2 -2
- package/build/css/paymentThemeDarkDesktop.css +2 -2
- package/build/css/paymentThemeDarkMobile.css +2 -2
- package/build/css/paymentThemeLightDesktop.css +2 -2
- package/build/css/paymentThemeLightMobile.css +2 -2
- package/build/tokens/index.d.ts +11 -4
- package/build/tokens/index.native.d.ts +11 -4
- package/build/tokens/index.native.js +5 -5
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.web.js +30 -15
- package/build/tokens/index.web.js.map +1 -1
- package/build/utils/index.d.ts +10 -0
- package/build/utils/index.native.d.ts +10 -0
- package/build/utils/index.native.js +1 -1
- package/build/utils/index.native.js.map +1 -1
- package/build/utils/index.web.js +10 -0
- package/build/utils/index.web.js.map +1 -1
- package/package.json +2 -1
|
@@ -1076,11 +1076,12 @@ type MakeValueResponsive$1<T> = [T] extends [never]
|
|
|
1076
1076
|
type MakeObjectResponsive$1<T> = { [P in keyof T]: MakeValueResponsive$1<T[P]> };
|
|
1077
1077
|
|
|
1078
1078
|
type ArrayOfMaxLength4$1<T> = readonly [T?, T?, T?, T?];
|
|
1079
|
-
type SpaceUnits$1 =
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
}
|
|
1083
|
-
|
|
1079
|
+
type SpaceUnits$1 = 'px' | '%' | 'fr' | 'rem' | 'em' | 'vh' | 'vw';
|
|
1080
|
+
type SpacingValueType$1 =
|
|
1081
|
+
| DotNotationSpacingStringToken
|
|
1082
|
+
| `${string}${SpaceUnits$1}`
|
|
1083
|
+
| `calc(${string})`
|
|
1084
|
+
| 'auto';
|
|
1084
1085
|
|
|
1085
1086
|
type MarginProps$1 = MakeObjectResponsive$1<{
|
|
1086
1087
|
/**
|
|
@@ -1730,11 +1731,8 @@ declare type MakeObjectResponsive<T> = {
|
|
|
1730
1731
|
};
|
|
1731
1732
|
|
|
1732
1733
|
declare type ArrayOfMaxLength4<T> = readonly [T?, T?, T?, T?];
|
|
1733
|
-
declare type SpaceUnits =
|
|
1734
|
-
|
|
1735
|
-
native: 'px' | '%';
|
|
1736
|
-
}>;
|
|
1737
|
-
declare type SpacingValueType = DotNotationSpacingStringToken | `${string}${SpaceUnits}` | 'auto';
|
|
1734
|
+
declare type SpaceUnits = 'px' | '%' | 'fr' | 'rem' | 'em' | 'vh' | 'vw';
|
|
1735
|
+
declare type SpacingValueType = DotNotationSpacingStringToken | `${string}${SpaceUnits}` | `calc(${string})` | 'auto';
|
|
1738
1736
|
/**
|
|
1739
1737
|
* @IMPORTANT
|
|
1740
1738
|
*
|
|
@@ -3790,6 +3788,8 @@ type FormInputOnKeyDownEvent = {
|
|
|
3790
3788
|
event: KeyboardEvent<HTMLInputElement>;
|
|
3791
3789
|
};
|
|
3792
3790
|
|
|
3791
|
+
declare type CommonAutoCompleteSuggestionTypes = 'none' | 'name' | 'email' | 'username' | 'password' | 'newPassword' | 'oneTimeCode' | 'telephone' | 'postalCode' | 'countryName' | 'creditCardNumber' | 'creditCardCSC' | 'creditCardExpiry' | 'creditCardExpiryMonth' | 'creditCardExpiryYear';
|
|
3792
|
+
declare type WebAutoCompleteSuggestionType = CommonAutoCompleteSuggestionTypes | 'on';
|
|
3793
3793
|
declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
|
|
3794
3794
|
/**
|
|
3795
3795
|
* Determines if it needs to be rendered as input, textarea or button
|
|
@@ -3915,17 +3915,6 @@ declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
|
|
|
3915
3915
|
* `previous` is only available on native android
|
|
3916
3916
|
*/
|
|
3917
3917
|
keyboardReturnKeyType?: 'default' | 'go' | 'done' | 'next' | 'previous' | 'search' | 'send';
|
|
3918
|
-
/**
|
|
3919
|
-
* determines what autoComplete suggestion type to show
|
|
3920
|
-
*
|
|
3921
|
-
* Internally it'll render platform specific attributes:
|
|
3922
|
-
*
|
|
3923
|
-
* - web: `autocomplete`
|
|
3924
|
-
* - iOS: `textContentType`
|
|
3925
|
-
* - android: `autoComplete`
|
|
3926
|
-
*
|
|
3927
|
-
*/
|
|
3928
|
-
autoCompleteSuggestionType?: 'none' | 'name' | 'email' | 'username' | 'password' | 'newPassword' | 'oneTimeCode' | 'telephone' | 'postalCode' | 'countryName' | 'creditCardNumber' | 'creditCardCSC' | 'creditCardExpiry' | 'creditCardExpiryMonth' | 'creditCardExpiryYear';
|
|
3929
3918
|
/**
|
|
3930
3919
|
* Element to be rendered on the trailing slot of input field label
|
|
3931
3920
|
*/
|
|
@@ -3987,12 +3976,34 @@ declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
|
|
|
3987
3976
|
* The callback function to be invoked when the value of the input field is submitted.
|
|
3988
3977
|
*/
|
|
3989
3978
|
onSubmit?: FormInputOnEvent;
|
|
3979
|
+
/**
|
|
3980
|
+
* determines what autoComplete suggestion type to show
|
|
3981
|
+
*
|
|
3982
|
+
* Internally it'll render platform specific attributes:
|
|
3983
|
+
*
|
|
3984
|
+
* - web: `autocomplete`
|
|
3985
|
+
* - iOS: `textContentType`
|
|
3986
|
+
* - android: `autoComplete`
|
|
3987
|
+
*
|
|
3988
|
+
*/
|
|
3989
|
+
autoCompleteSuggestionType?: CommonAutoCompleteSuggestionTypes;
|
|
3990
3990
|
};
|
|
3991
3991
|
web: {
|
|
3992
3992
|
/**
|
|
3993
3993
|
* This is a react-native only prop and has no effect on web.
|
|
3994
3994
|
*/
|
|
3995
3995
|
onSubmit?: undefined;
|
|
3996
|
+
/**
|
|
3997
|
+
* determines what autoComplete suggestion type to show
|
|
3998
|
+
*
|
|
3999
|
+
* Internally it'll render platform specific attributes:
|
|
4000
|
+
*
|
|
4001
|
+
* - web: `autocomplete`
|
|
4002
|
+
* - iOS: `textContentType`
|
|
4003
|
+
* - android: `autoComplete`
|
|
4004
|
+
*
|
|
4005
|
+
*/
|
|
4006
|
+
autoCompleteSuggestionType?: WebAutoCompleteSuggestionType;
|
|
3996
4007
|
};
|
|
3997
4008
|
}> & StyledPropsBlade;
|
|
3998
4009
|
|
|
@@ -4608,6 +4619,95 @@ declare function clearAnnouncer(assertiveness: Assertiveness): void;
|
|
|
4608
4619
|
*/
|
|
4609
4620
|
declare function destroyAnnouncer(): void;
|
|
4610
4621
|
|
|
4622
|
+
declare type BaseHeaderProps = {
|
|
4623
|
+
title?: string;
|
|
4624
|
+
subtitle?: string;
|
|
4625
|
+
/**
|
|
4626
|
+
* Leading part of the header placed at the left most side of the header
|
|
4627
|
+
*/
|
|
4628
|
+
leading?: React__default.ReactNode;
|
|
4629
|
+
/**
|
|
4630
|
+
* Trailing part of the header placed at the right most side of the header
|
|
4631
|
+
*/
|
|
4632
|
+
trailing?: React__default.ReactNode;
|
|
4633
|
+
/**
|
|
4634
|
+
* Placed adjacent to the title text
|
|
4635
|
+
*/
|
|
4636
|
+
titleSuffix?: React__default.ReactNode;
|
|
4637
|
+
/**
|
|
4638
|
+
* @default true
|
|
4639
|
+
*/
|
|
4640
|
+
showDivider?: boolean;
|
|
4641
|
+
/**
|
|
4642
|
+
* @default false
|
|
4643
|
+
*/
|
|
4644
|
+
showBackButton?: boolean;
|
|
4645
|
+
/**
|
|
4646
|
+
* @default true
|
|
4647
|
+
*/
|
|
4648
|
+
showCloseButton?: boolean;
|
|
4649
|
+
onCloseButtonClick?: () => void;
|
|
4650
|
+
onBackButtonClick?: () => void;
|
|
4651
|
+
closeButtonRef: React__default.MutableRefObject<any>;
|
|
4652
|
+
metaComponentName?: string;
|
|
4653
|
+
} & Pick<ReactDOMAttributes, 'onClickCapture' | 'onKeyDown' | 'onKeyUp' | 'onLostPointerCapture' | 'onPointerCancel' | 'onPointerDown' | 'onPointerMove' | 'onPointerUp'>;
|
|
4654
|
+
|
|
4655
|
+
declare type ModalHeaderProps = Pick<BaseHeaderProps, 'title' | 'subtitle' | 'leading' | 'trailing' | 'titleSuffix'>;
|
|
4656
|
+
declare const ModalHeader: ({ leading, subtitle, title, titleSuffix, trailing, }: ModalHeaderProps) => React.ReactElement;
|
|
4657
|
+
|
|
4658
|
+
declare type BaseFooterProps$1 = {
|
|
4659
|
+
children: React__default.ReactNode;
|
|
4660
|
+
metaComponentName?: string;
|
|
4661
|
+
showDivider?: boolean;
|
|
4662
|
+
};
|
|
4663
|
+
|
|
4664
|
+
declare type ModalFooterProps = Pick<BaseFooterProps$1, 'children'>;
|
|
4665
|
+
declare const ModalFooter: (props: ModalFooterProps) => React__default.ReactElement;
|
|
4666
|
+
|
|
4667
|
+
declare type ModalBodyProps = {
|
|
4668
|
+
children: React__default.ReactNode;
|
|
4669
|
+
/**
|
|
4670
|
+
* Sets the padding equally on all sides. Only few `spacing` tokens are allowed deliberately
|
|
4671
|
+
* @default `spacing.6`
|
|
4672
|
+
*
|
|
4673
|
+
* **Links:**
|
|
4674
|
+
* - Docs: https://blade.razorpay.com/?path=/docs/tokens-spacing--page
|
|
4675
|
+
*/
|
|
4676
|
+
padding?: Extract<SpacingValueType$1, 'spacing.0' | 'spacing.6'>;
|
|
4677
|
+
};
|
|
4678
|
+
declare const ModalBody: ({ children, padding }: ModalBodyProps) => React__default.ReactElement;
|
|
4679
|
+
|
|
4680
|
+
declare type ModalProps = {
|
|
4681
|
+
/**
|
|
4682
|
+
* Children of Modal
|
|
4683
|
+
* Only ModalHeader, ModalBody and ModalFooter are allowed as children
|
|
4684
|
+
*/
|
|
4685
|
+
children: React__default.ReactNode;
|
|
4686
|
+
/**
|
|
4687
|
+
Sets the modal to open or close
|
|
4688
|
+
* @default false
|
|
4689
|
+
*/
|
|
4690
|
+
isOpen: boolean;
|
|
4691
|
+
/**
|
|
4692
|
+
* Callback function when user clicks on close button or outside the modal or on pressing escape key.
|
|
4693
|
+
*/
|
|
4694
|
+
onDismiss: () => void;
|
|
4695
|
+
/**
|
|
4696
|
+
* Ref to the element to be focused on opening the modal.
|
|
4697
|
+
*/
|
|
4698
|
+
initialFocusRef?: React__default.MutableRefObject<any>;
|
|
4699
|
+
/**
|
|
4700
|
+
* Size of the modal
|
|
4701
|
+
* @default 'small'
|
|
4702
|
+
*/
|
|
4703
|
+
size?: 'small' | 'medium' | 'large';
|
|
4704
|
+
/**
|
|
4705
|
+
* Accessibility label for the modal
|
|
4706
|
+
*/
|
|
4707
|
+
accessibilityLabel?: string;
|
|
4708
|
+
};
|
|
4709
|
+
declare const Modal: ({ isOpen, children, onDismiss, initialFocusRef, size, accessibilityLabel, }: ModalProps) => React__default.ReactElement;
|
|
4710
|
+
|
|
4611
4711
|
declare type ProgressBarCommonProps = {
|
|
4612
4712
|
/**
|
|
4613
4713
|
* Sets aria-label to help users know what the progress bar is for. Default value is the same as the `label` passed.
|
|
@@ -4999,43 +5099,6 @@ declare type AmountProps = {
|
|
|
4999
5099
|
} & TestID & StyledPropsBlade;
|
|
5000
5100
|
declare const Amount: ({ value, suffix, size, isAffixSubtle, intent, prefix, testID, currency, ...styledProps }: AmountProps) => ReactElement;
|
|
5001
5101
|
|
|
5002
|
-
declare type BaseHeaderProps = {
|
|
5003
|
-
title?: string;
|
|
5004
|
-
subtitle?: string;
|
|
5005
|
-
/**
|
|
5006
|
-
* Leading part of the header placed at the left most side of the header
|
|
5007
|
-
*/
|
|
5008
|
-
leading?: React__default.ReactNode;
|
|
5009
|
-
/**
|
|
5010
|
-
* Trailing part of the header placed at the right most side of the header
|
|
5011
|
-
*/
|
|
5012
|
-
trailing?: React__default.ReactNode;
|
|
5013
|
-
/**
|
|
5014
|
-
* Placed adjacent to the title text
|
|
5015
|
-
*/
|
|
5016
|
-
titleSuffix?: React__default.ReactNode;
|
|
5017
|
-
/**
|
|
5018
|
-
* @default true
|
|
5019
|
-
*/
|
|
5020
|
-
showDivider?: boolean;
|
|
5021
|
-
/**
|
|
5022
|
-
* @default false
|
|
5023
|
-
*/
|
|
5024
|
-
showBackButton?: boolean;
|
|
5025
|
-
/**
|
|
5026
|
-
* @default true
|
|
5027
|
-
*/
|
|
5028
|
-
showCloseButton?: boolean;
|
|
5029
|
-
onCloseButtonClick?: () => void;
|
|
5030
|
-
onBackButtonClick?: () => void;
|
|
5031
|
-
closeButtonRef: React__default.MutableRefObject<any>;
|
|
5032
|
-
} & Pick<ReactDOMAttributes, 'onClickCapture' | 'onKeyDown' | 'onKeyUp' | 'onLostPointerCapture' | 'onPointerCancel' | 'onPointerDown' | 'onPointerMove' | 'onPointerUp'>;
|
|
5033
|
-
|
|
5034
|
-
declare type BaseFooterProps$1 = {
|
|
5035
|
-
children: React__default.ReactNode;
|
|
5036
|
-
showDivider?: boolean;
|
|
5037
|
-
};
|
|
5038
|
-
|
|
5039
5102
|
declare type SnapPoints = [number, number, number];
|
|
5040
5103
|
|
|
5041
5104
|
declare type BottomSheetProps = {
|
|
@@ -5086,6 +5149,7 @@ declare const BottomSheetHeader: ({ title, subtitle, leading, titleSuffix, trail
|
|
|
5086
5149
|
|
|
5087
5150
|
type BaseFooterProps = {
|
|
5088
5151
|
children: React__default.ReactNode;
|
|
5152
|
+
metaComponentName?: string;
|
|
5089
5153
|
showDivider?: boolean;
|
|
5090
5154
|
};
|
|
5091
5155
|
|
|
@@ -5097,4 +5161,4 @@ declare const BottomSheetBody: ({ children }: {
|
|
|
5097
5161
|
|
|
5098
5162
|
declare const BottomSheet: ({ isOpen, onDismiss, children, initialFocusRef, snapPoints, }: BottomSheetProps) => React__default.ReactElement;
|
|
5099
5163
|
|
|
5100
|
-
export { ActionList, ActionListFooter, ActionListFooterIcon, ActionListFooterProps, ActionListHeader, ActionListHeaderIcon, ActionListHeaderProps, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionDivider, ActionListSectionProps, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputProps, OctagonIcon, OffersIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonsIcon, PaymentLinksIcon, PaymentPagesIcon, PercentIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, TagIcon, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useActionListContext, useTheme };
|
|
5164
|
+
export { ActionList, ActionListFooter, ActionListFooterIcon, ActionListFooterProps, ActionListHeader, ActionListHeaderIcon, ActionListHeaderProps, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionDivider, ActionListSectionProps, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputProps, OctagonIcon, OffersIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonsIcon, PaymentLinksIcon, PaymentPagesIcon, PercentIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, TagIcon, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useActionListContext, useTheme };
|
|
@@ -1076,11 +1076,12 @@ type MakeValueResponsive$1<T> = [T] extends [never]
|
|
|
1076
1076
|
type MakeObjectResponsive$1<T> = { [P in keyof T]: MakeValueResponsive$1<T[P]> };
|
|
1077
1077
|
|
|
1078
1078
|
type ArrayOfMaxLength4$1<T> = readonly [T?, T?, T?, T?];
|
|
1079
|
-
type SpaceUnits$1 =
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
}
|
|
1083
|
-
|
|
1079
|
+
type SpaceUnits$1 = 'px' | '%' | 'fr' | 'rem' | 'em' | 'vh' | 'vw';
|
|
1080
|
+
type SpacingValueType$1 =
|
|
1081
|
+
| DotNotationSpacingStringToken
|
|
1082
|
+
| `${string}${SpaceUnits$1}`
|
|
1083
|
+
| `calc(${string})`
|
|
1084
|
+
| 'auto';
|
|
1084
1085
|
|
|
1085
1086
|
type MarginProps$1 = MakeObjectResponsive$1<{
|
|
1086
1087
|
/**
|
|
@@ -1732,11 +1733,8 @@ declare type MakeObjectResponsive<T> = {
|
|
|
1732
1733
|
};
|
|
1733
1734
|
|
|
1734
1735
|
declare type ArrayOfMaxLength4<T> = readonly [T?, T?, T?, T?];
|
|
1735
|
-
declare type SpaceUnits =
|
|
1736
|
-
|
|
1737
|
-
native: 'px' | '%';
|
|
1738
|
-
}>;
|
|
1739
|
-
declare type SpacingValueType = DotNotationSpacingStringToken | `${string}${SpaceUnits}` | 'auto';
|
|
1736
|
+
declare type SpaceUnits = 'px' | '%' | 'fr' | 'rem' | 'em' | 'vh' | 'vw';
|
|
1737
|
+
declare type SpacingValueType = DotNotationSpacingStringToken | `${string}${SpaceUnits}` | `calc(${string})` | 'auto';
|
|
1740
1738
|
/**
|
|
1741
1739
|
* @IMPORTANT
|
|
1742
1740
|
*
|
|
@@ -3793,6 +3791,8 @@ type FormInputOnKeyDownEvent = {
|
|
|
3793
3791
|
event: KeyboardEvent<HTMLInputElement>;
|
|
3794
3792
|
};
|
|
3795
3793
|
|
|
3794
|
+
declare type CommonAutoCompleteSuggestionTypes = 'none' | 'name' | 'email' | 'username' | 'password' | 'newPassword' | 'oneTimeCode' | 'telephone' | 'postalCode' | 'countryName' | 'creditCardNumber' | 'creditCardCSC' | 'creditCardExpiry' | 'creditCardExpiryMonth' | 'creditCardExpiryYear';
|
|
3795
|
+
declare type WebAutoCompleteSuggestionType = CommonAutoCompleteSuggestionTypes | 'on';
|
|
3796
3796
|
declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
|
|
3797
3797
|
/**
|
|
3798
3798
|
* Determines if it needs to be rendered as input, textarea or button
|
|
@@ -3918,17 +3918,6 @@ declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
|
|
|
3918
3918
|
* `previous` is only available on native android
|
|
3919
3919
|
*/
|
|
3920
3920
|
keyboardReturnKeyType?: 'default' | 'go' | 'done' | 'next' | 'previous' | 'search' | 'send';
|
|
3921
|
-
/**
|
|
3922
|
-
* determines what autoComplete suggestion type to show
|
|
3923
|
-
*
|
|
3924
|
-
* Internally it'll render platform specific attributes:
|
|
3925
|
-
*
|
|
3926
|
-
* - web: `autocomplete`
|
|
3927
|
-
* - iOS: `textContentType`
|
|
3928
|
-
* - android: `autoComplete`
|
|
3929
|
-
*
|
|
3930
|
-
*/
|
|
3931
|
-
autoCompleteSuggestionType?: 'none' | 'name' | 'email' | 'username' | 'password' | 'newPassword' | 'oneTimeCode' | 'telephone' | 'postalCode' | 'countryName' | 'creditCardNumber' | 'creditCardCSC' | 'creditCardExpiry' | 'creditCardExpiryMonth' | 'creditCardExpiryYear';
|
|
3932
3921
|
/**
|
|
3933
3922
|
* Element to be rendered on the trailing slot of input field label
|
|
3934
3923
|
*/
|
|
@@ -3990,12 +3979,34 @@ declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
|
|
|
3990
3979
|
* The callback function to be invoked when the value of the input field is submitted.
|
|
3991
3980
|
*/
|
|
3992
3981
|
onSubmit?: FormInputOnEvent;
|
|
3982
|
+
/**
|
|
3983
|
+
* determines what autoComplete suggestion type to show
|
|
3984
|
+
*
|
|
3985
|
+
* Internally it'll render platform specific attributes:
|
|
3986
|
+
*
|
|
3987
|
+
* - web: `autocomplete`
|
|
3988
|
+
* - iOS: `textContentType`
|
|
3989
|
+
* - android: `autoComplete`
|
|
3990
|
+
*
|
|
3991
|
+
*/
|
|
3992
|
+
autoCompleteSuggestionType?: CommonAutoCompleteSuggestionTypes;
|
|
3993
3993
|
};
|
|
3994
3994
|
web: {
|
|
3995
3995
|
/**
|
|
3996
3996
|
* This is a react-native only prop and has no effect on web.
|
|
3997
3997
|
*/
|
|
3998
3998
|
onSubmit?: undefined;
|
|
3999
|
+
/**
|
|
4000
|
+
* determines what autoComplete suggestion type to show
|
|
4001
|
+
*
|
|
4002
|
+
* Internally it'll render platform specific attributes:
|
|
4003
|
+
*
|
|
4004
|
+
* - web: `autocomplete`
|
|
4005
|
+
* - iOS: `textContentType`
|
|
4006
|
+
* - android: `autoComplete`
|
|
4007
|
+
*
|
|
4008
|
+
*/
|
|
4009
|
+
autoCompleteSuggestionType?: WebAutoCompleteSuggestionType;
|
|
3999
4010
|
};
|
|
4000
4011
|
}> & StyledPropsBlade;
|
|
4001
4012
|
|
|
@@ -4602,6 +4613,67 @@ declare function announce(message: string, _assertiveness?: Assertiveness): void
|
|
|
4602
4613
|
declare function clearAnnouncer(_assertiveness: Assertiveness): void;
|
|
4603
4614
|
declare function destroyAnnouncer(): void;
|
|
4604
4615
|
|
|
4616
|
+
declare type BaseHeaderProps = {
|
|
4617
|
+
title?: string;
|
|
4618
|
+
subtitle?: string;
|
|
4619
|
+
/**
|
|
4620
|
+
* Leading part of the header placed at the left most side of the header
|
|
4621
|
+
*/
|
|
4622
|
+
leading?: React__default.ReactNode;
|
|
4623
|
+
/**
|
|
4624
|
+
* Trailing part of the header placed at the right most side of the header
|
|
4625
|
+
*/
|
|
4626
|
+
trailing?: React__default.ReactNode;
|
|
4627
|
+
/**
|
|
4628
|
+
* Placed adjacent to the title text
|
|
4629
|
+
*/
|
|
4630
|
+
titleSuffix?: React__default.ReactNode;
|
|
4631
|
+
/**
|
|
4632
|
+
* @default true
|
|
4633
|
+
*/
|
|
4634
|
+
showDivider?: boolean;
|
|
4635
|
+
/**
|
|
4636
|
+
* @default false
|
|
4637
|
+
*/
|
|
4638
|
+
showBackButton?: boolean;
|
|
4639
|
+
/**
|
|
4640
|
+
* @default true
|
|
4641
|
+
*/
|
|
4642
|
+
showCloseButton?: boolean;
|
|
4643
|
+
onCloseButtonClick?: () => void;
|
|
4644
|
+
onBackButtonClick?: () => void;
|
|
4645
|
+
closeButtonRef: React__default.MutableRefObject<any>;
|
|
4646
|
+
metaComponentName?: string;
|
|
4647
|
+
} & Pick<ReactDOMAttributes, 'onClickCapture' | 'onKeyDown' | 'onKeyUp' | 'onLostPointerCapture' | 'onPointerCancel' | 'onPointerDown' | 'onPointerMove' | 'onPointerUp'>;
|
|
4648
|
+
|
|
4649
|
+
declare type ModalHeaderProps = Pick<BaseHeaderProps, 'title' | 'subtitle' | 'leading' | 'trailing' | 'titleSuffix'>;
|
|
4650
|
+
declare const ModalHeader: () => React__default.ReactElement;
|
|
4651
|
+
|
|
4652
|
+
declare type BaseFooterProps = {
|
|
4653
|
+
children: React__default.ReactNode;
|
|
4654
|
+
metaComponentName?: string;
|
|
4655
|
+
showDivider?: boolean;
|
|
4656
|
+
};
|
|
4657
|
+
|
|
4658
|
+
declare type ModalFooterProps = Pick<BaseFooterProps, 'children'>;
|
|
4659
|
+
declare const ModalFooter: () => React__default.ReactElement;
|
|
4660
|
+
|
|
4661
|
+
declare type ModalBodyProps = {
|
|
4662
|
+
children: React__default.ReactNode;
|
|
4663
|
+
padding?: Extract<SpacingValueType$1, 'spacing.0' | 'spacing.6'>;
|
|
4664
|
+
};
|
|
4665
|
+
declare const ModalBody: (props: ModalBodyProps) => React__default.ReactElement;
|
|
4666
|
+
|
|
4667
|
+
declare type ModalProps = {
|
|
4668
|
+
children: React__default.ReactNode;
|
|
4669
|
+
isOpen: boolean;
|
|
4670
|
+
onDismiss: () => void;
|
|
4671
|
+
initialFocusRef?: React__default.MutableRefObject<any>;
|
|
4672
|
+
size?: 'small' | 'medium' | 'large';
|
|
4673
|
+
accessibilityLabel?: string;
|
|
4674
|
+
};
|
|
4675
|
+
declare const Modal: (props: ModalProps) => React__default.ReactElement;
|
|
4676
|
+
|
|
4605
4677
|
declare type ProgressBarCommonProps = {
|
|
4606
4678
|
/**
|
|
4607
4679
|
* Sets aria-label to help users know what the progress bar is for. Default value is the same as the `label` passed.
|
|
@@ -4990,43 +5062,6 @@ declare type AmountProps = {
|
|
|
4990
5062
|
} & TestID & StyledPropsBlade;
|
|
4991
5063
|
declare const Amount: ({ value, suffix, size, isAffixSubtle, intent, prefix, testID, currency, ...styledProps }: AmountProps) => ReactElement;
|
|
4992
5064
|
|
|
4993
|
-
declare type BaseHeaderProps = {
|
|
4994
|
-
title?: string;
|
|
4995
|
-
subtitle?: string;
|
|
4996
|
-
/**
|
|
4997
|
-
* Leading part of the header placed at the left most side of the header
|
|
4998
|
-
*/
|
|
4999
|
-
leading?: React__default.ReactNode;
|
|
5000
|
-
/**
|
|
5001
|
-
* Trailing part of the header placed at the right most side of the header
|
|
5002
|
-
*/
|
|
5003
|
-
trailing?: React__default.ReactNode;
|
|
5004
|
-
/**
|
|
5005
|
-
* Placed adjacent to the title text
|
|
5006
|
-
*/
|
|
5007
|
-
titleSuffix?: React__default.ReactNode;
|
|
5008
|
-
/**
|
|
5009
|
-
* @default true
|
|
5010
|
-
*/
|
|
5011
|
-
showDivider?: boolean;
|
|
5012
|
-
/**
|
|
5013
|
-
* @default false
|
|
5014
|
-
*/
|
|
5015
|
-
showBackButton?: boolean;
|
|
5016
|
-
/**
|
|
5017
|
-
* @default true
|
|
5018
|
-
*/
|
|
5019
|
-
showCloseButton?: boolean;
|
|
5020
|
-
onCloseButtonClick?: () => void;
|
|
5021
|
-
onBackButtonClick?: () => void;
|
|
5022
|
-
closeButtonRef: React__default.MutableRefObject<any>;
|
|
5023
|
-
} & Pick<ReactDOMAttributes, 'onClickCapture' | 'onKeyDown' | 'onKeyUp' | 'onLostPointerCapture' | 'onPointerCancel' | 'onPointerDown' | 'onPointerMove' | 'onPointerUp'>;
|
|
5024
|
-
|
|
5025
|
-
declare type BaseFooterProps = {
|
|
5026
|
-
children: React__default.ReactNode;
|
|
5027
|
-
showDivider?: boolean;
|
|
5028
|
-
};
|
|
5029
|
-
|
|
5030
5065
|
declare type SnapPoints = [number, number, number];
|
|
5031
5066
|
|
|
5032
5067
|
declare type BottomSheetProps = {
|
|
@@ -5083,4 +5118,4 @@ declare const BottomSheetFooter: ({ children }: BottomSheetFooterProps) => React
|
|
|
5083
5118
|
|
|
5084
5119
|
declare const BottomSheet: ({ children, snapPoints, isOpen, onDismiss, initialFocusRef, }: BottomSheetProps) => React__default.ReactElement;
|
|
5085
5120
|
|
|
5086
|
-
export { ActionList, ActionListFooter, ActionListFooterIcon, ActionListFooterProps, ActionListHeader, ActionListHeaderIcon, ActionListHeaderProps, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionDivider, ActionListSectionProps, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputProps, OctagonIcon, OffersIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonsIcon, PaymentLinksIcon, PaymentPagesIcon, PercentIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, TagIcon, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useActionListContext, useTheme };
|
|
5121
|
+
export { ActionList, ActionListFooter, ActionListFooterIcon, ActionListFooterProps, ActionListHeader, ActionListHeaderIcon, ActionListHeaderProps, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionDivider, ActionListSectionProps, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputProps, OctagonIcon, OffersIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonsIcon, PaymentLinksIcon, PaymentPagesIcon, PercentIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, TagIcon, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useActionListContext, useTheme };
|