@razorpay/blade 10.1.0 → 10.2.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 +124 -18
- package/build/components/index.development.web.js +2679 -1873
- package/build/components/index.development.web.js.map +1 -1
- package/build/components/index.native.d.ts +120 -18
- package/build/components/index.native.js +323 -299
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.production.web.js +2672 -1862
- package/build/components/index.production.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +1 -1
- package/build/css/bankingThemeDarkMobile.css +1 -1
- package/build/css/bankingThemeLightDesktop.css +1 -1
- package/build/css/bankingThemeLightMobile.css +1 -1
- package/build/css/paymentThemeDarkDesktop.css +1 -1
- package/build/css/paymentThemeDarkMobile.css +1 -1
- package/build/css/paymentThemeLightDesktop.css +1 -1
- package/build/css/paymentThemeLightMobile.css +1 -1
- package/build/utils/index.d.ts +6 -1
- package/build/utils/index.development.web.js +44 -2
- package/build/utils/index.development.web.js.map +1 -1
- package/build/utils/index.native.d.ts +6 -1
- package/build/utils/index.native.js +7 -2
- package/build/utils/index.native.js.map +1 -1
- package/build/utils/index.production.web.js +44 -2
- package/build/utils/index.production.web.js.map +1 -1
- package/package.json +18 -16
|
@@ -1345,11 +1345,11 @@ type GridProps$1 = MakeObjectResponsive$1<
|
|
|
1345
1345
|
>
|
|
1346
1346
|
>;
|
|
1347
1347
|
|
|
1348
|
-
type ColorObjects$
|
|
1349
|
-
type BackgroundColorString$
|
|
1348
|
+
type ColorObjects$2 = 'feedback' | 'surface' | 'action';
|
|
1349
|
+
type BackgroundColorString$2<T extends ColorObjects$2> = `${T}.background.${DotNotationColorStringToken<
|
|
1350
1350
|
Theme$1['colors'][T]['background']
|
|
1351
1351
|
>}`;
|
|
1352
|
-
type BorderColorString$1<T extends ColorObjects$
|
|
1352
|
+
type BorderColorString$1<T extends ColorObjects$2> = `${T}.border.${DotNotationColorStringToken<
|
|
1353
1353
|
Theme$1['colors'][T]['border']
|
|
1354
1354
|
>}`;
|
|
1355
1355
|
|
|
@@ -1368,7 +1368,7 @@ declare const validBoxAsValues$1 = [
|
|
|
1368
1368
|
|
|
1369
1369
|
type BoxAsType$1 = typeof validBoxAsValues$1[number];
|
|
1370
1370
|
|
|
1371
|
-
type BrandColorString$
|
|
1371
|
+
type BrandColorString$2 = `brand.${DotNotationColorStringToken<Theme$1['colors']['brand']>}`;
|
|
1372
1372
|
|
|
1373
1373
|
// Visual props that are common for both Box and BaseBox
|
|
1374
1374
|
type CommonBoxVisualProps$1 = MakeObjectResponsive$1<
|
|
@@ -1415,10 +1415,10 @@ type CommonBoxVisualProps$1 = MakeObjectResponsive$1<
|
|
|
1415
1415
|
type BaseBoxVisualProps$1 = MakeObjectResponsive$1<
|
|
1416
1416
|
{
|
|
1417
1417
|
backgroundColor:
|
|
1418
|
-
| BackgroundColorString$
|
|
1419
|
-
| BackgroundColorString$
|
|
1420
|
-
| BackgroundColorString$
|
|
1421
|
-
| BrandColorString$
|
|
1418
|
+
| BackgroundColorString$2<'feedback'>
|
|
1419
|
+
| BackgroundColorString$2<'surface'>
|
|
1420
|
+
| BackgroundColorString$2<'action'>
|
|
1421
|
+
| BrandColorString$2
|
|
1422
1422
|
| 'transparent'
|
|
1423
1423
|
| (string & Record<never, never>);
|
|
1424
1424
|
lineHeight: SpacingValueType$1;
|
|
@@ -1437,7 +1437,7 @@ type BaseBoxVisualProps$1 = MakeObjectResponsive$1<
|
|
|
1437
1437
|
|
|
1438
1438
|
// Visual props that are specific to Box
|
|
1439
1439
|
type BoxVisualProps$1 = MakeObjectResponsive$1<{
|
|
1440
|
-
backgroundColor: BackgroundColorString$
|
|
1440
|
+
backgroundColor: BackgroundColorString$2<'surface'> | BrandColorString$2 | 'transparent';
|
|
1441
1441
|
}> & {
|
|
1442
1442
|
// Intentionally keeping this outside of MakeObjectResponsive since we only want as to be string and not responsive object
|
|
1443
1443
|
// styled-components do not support passing `as` prop as an object
|
|
@@ -2655,12 +2655,12 @@ declare type PositionProps = MakeObjectResponsive<{
|
|
|
2655
2655
|
left: SpacingValueType;
|
|
2656
2656
|
} & PickCSSByPlatform<'position' | 'zIndex'>>;
|
|
2657
2657
|
declare type GridProps = MakeObjectResponsive<PickCSSByPlatform<'grid' | 'gridColumn' | 'gridRow' | 'gridRowStart' | 'gridRowEnd' | 'gridColumnStart' | 'gridColumnEnd' | 'gridArea' | 'gridAutoFlow' | 'gridAutoRows' | 'gridAutoColumns' | 'gridTemplate' | 'gridTemplateAreas' | 'gridTemplateColumns' | 'gridTemplateRows'>>;
|
|
2658
|
-
declare type ColorObjects = 'feedback' | 'surface' | 'action';
|
|
2659
|
-
declare type BackgroundColorString<T extends ColorObjects> = `${T}.background.${DotNotationColorStringToken<Theme$1['colors'][T]['background']>}`;
|
|
2660
|
-
declare type BorderColorString<T extends ColorObjects> = `${T}.border.${DotNotationColorStringToken<Theme$1['colors'][T]['border']>}`;
|
|
2658
|
+
declare type ColorObjects$1 = 'feedback' | 'surface' | 'action';
|
|
2659
|
+
declare type BackgroundColorString$1<T extends ColorObjects$1> = `${T}.background.${DotNotationColorStringToken<Theme$1['colors'][T]['background']>}`;
|
|
2660
|
+
declare type BorderColorString<T extends ColorObjects$1> = `${T}.border.${DotNotationColorStringToken<Theme$1['colors'][T]['border']>}`;
|
|
2661
2661
|
declare const validBoxAsValues: readonly ["div", "section", "footer", "header", "main", "aside", "nav", "span", "label"];
|
|
2662
2662
|
declare type BoxAsType = typeof validBoxAsValues[number];
|
|
2663
|
-
declare type BrandColorString = `brand.${DotNotationColorStringToken<Theme$1['colors']['brand']>}`;
|
|
2663
|
+
declare type BrandColorString$1 = `brand.${DotNotationColorStringToken<Theme$1['colors']['brand']>}`;
|
|
2664
2664
|
declare type CommonBoxVisualProps = MakeObjectResponsive<{
|
|
2665
2665
|
borderRadius: keyof Border['radius'];
|
|
2666
2666
|
borderWidth: keyof Border['width'];
|
|
@@ -2691,13 +2691,13 @@ declare type CommonBoxVisualProps = MakeObjectResponsive<{
|
|
|
2691
2691
|
elevation?: keyof Elevation;
|
|
2692
2692
|
}>;
|
|
2693
2693
|
declare type BaseBoxVisualProps = MakeObjectResponsive<{
|
|
2694
|
-
backgroundColor: BackgroundColorString<'feedback'> | BackgroundColorString<'surface'> | BackgroundColorString<'action'> | BrandColorString | 'transparent' | (string & Record<never, never>);
|
|
2694
|
+
backgroundColor: BackgroundColorString$1<'feedback'> | BackgroundColorString$1<'surface'> | BackgroundColorString$1<'action'> | BrandColorString$1 | 'transparent' | (string & Record<never, never>);
|
|
2695
2695
|
lineHeight: SpacingValueType;
|
|
2696
2696
|
touchAction: CSSObject['touchAction'];
|
|
2697
2697
|
userSelect: CSSObject['userSelect'];
|
|
2698
2698
|
} & PickCSSByPlatform<'border' | 'borderLeft' | 'borderRight' | 'borderTop' | 'borderBottom' | 'opacity' | 'pointerEvents'>>;
|
|
2699
2699
|
declare type BoxVisualProps = MakeObjectResponsive<{
|
|
2700
|
-
backgroundColor: BackgroundColorString<'surface'> | BrandColorString | 'transparent';
|
|
2700
|
+
backgroundColor: BackgroundColorString$1<'surface'> | BrandColorString$1 | 'transparent';
|
|
2701
2701
|
}> & {
|
|
2702
2702
|
as: BoxAsType;
|
|
2703
2703
|
};
|
|
@@ -3146,12 +3146,15 @@ declare type CardProps = {
|
|
|
3146
3146
|
* - Docs: https://blade.razorpay.com/?path=/docs/tokens-spacing--page
|
|
3147
3147
|
*/
|
|
3148
3148
|
padding?: Extract<SpacingValueType$1, 'spacing.0' | 'spacing.3' | 'spacing.5' | 'spacing.7'>;
|
|
3149
|
+
width?: BoxProps$1['width'];
|
|
3150
|
+
height?: BoxProps$1['height'];
|
|
3149
3151
|
} & TestID & StyledPropsBlade$1;
|
|
3150
|
-
declare const Card: ({ children, surfaceLevel, elevation, testID, padding, ...styledProps }: CardProps) => React__default.ReactElement;
|
|
3152
|
+
declare const Card: ({ children, surfaceLevel, elevation, testID, padding, width, height, ...styledProps }: CardProps) => React__default.ReactElement;
|
|
3151
3153
|
declare type CardBodyProps = {
|
|
3152
3154
|
children: React__default.ReactNode;
|
|
3155
|
+
height?: BoxProps$1['height'];
|
|
3153
3156
|
} & TestID;
|
|
3154
|
-
declare const CardBody: ({ children, testID }: CardBodyProps) => React__default.ReactElement;
|
|
3157
|
+
declare const CardBody: ({ height, children, testID }: CardBodyProps) => React__default.ReactElement;
|
|
3155
3158
|
|
|
3156
3159
|
type FeedbackColors$1 = `feedback.text.${DotNotationColorStringToken<
|
|
3157
3160
|
Theme$1['colors']['feedback']['text']
|
|
@@ -4044,6 +4047,105 @@ declare type CheckboxGroupProps = {
|
|
|
4044
4047
|
} & TestID & StyledPropsBlade$1;
|
|
4045
4048
|
declare const CheckboxGroup: ({ children, label, helpText, isDisabled, isRequired, necessityIndicator, labelPosition, validationState, errorText, name, defaultValue, onChange, value, size, testID, ...styledProps }: CheckboxGroupProps) => React__default.ReactElement;
|
|
4046
4049
|
|
|
4050
|
+
declare type ColorObjects = 'feedback' | 'surface' | 'action';
|
|
4051
|
+
declare type BackgroundColorString<T extends ColorObjects> = `${T}.background.${DotNotationColorStringToken<Theme$1['colors'][T]['background']>}`;
|
|
4052
|
+
declare type BrandColorString = `brand.${DotNotationColorStringToken<Theme$1['colors']['brand']>}`;
|
|
4053
|
+
declare type OverlayColor = BackgroundColorString<'surface'> | BrandColorString;
|
|
4054
|
+
declare type CarouselProps = {
|
|
4055
|
+
/**
|
|
4056
|
+
* Accepts CarouselItem
|
|
4057
|
+
*/
|
|
4058
|
+
children: React.ReactNode;
|
|
4059
|
+
/**
|
|
4060
|
+
* Total number of carousel items to show at once,
|
|
4061
|
+
* if set to 1,2 or 3 all the CarouselItem's width will remain the same,
|
|
4062
|
+
* but if set to `autofit` the carousel items will take up space responsively
|
|
4063
|
+
*
|
|
4064
|
+
* @default 1
|
|
4065
|
+
*/
|
|
4066
|
+
visibleItems?: 1 | 2 | 3 | 'autofit';
|
|
4067
|
+
/**
|
|
4068
|
+
* If true, adds extra margin before and after the first/last slides so that they align in center
|
|
4069
|
+
* This prop is only effective on desktop screen sizes
|
|
4070
|
+
*
|
|
4071
|
+
* @default false
|
|
4072
|
+
*/
|
|
4073
|
+
shouldAddStartEndSpacing?: boolean;
|
|
4074
|
+
/**
|
|
4075
|
+
* If true, the carousel will automatically slide to the next slide, default interval is 6 seconds
|
|
4076
|
+
*
|
|
4077
|
+
* @default false
|
|
4078
|
+
*/
|
|
4079
|
+
autoPlay?: boolean;
|
|
4080
|
+
/**
|
|
4081
|
+
* Toggles the visibility of indicators
|
|
4082
|
+
*
|
|
4083
|
+
* @default true
|
|
4084
|
+
*/
|
|
4085
|
+
showIndicators?: boolean;
|
|
4086
|
+
/**
|
|
4087
|
+
* Changes the color of the overlay, so that carousel can blend with the background color
|
|
4088
|
+
* If set to undefined overlay won't be shown
|
|
4089
|
+
*
|
|
4090
|
+
* This prop is only effective on desktop screen sizes
|
|
4091
|
+
*
|
|
4092
|
+
* @default undefined
|
|
4093
|
+
*/
|
|
4094
|
+
scrollOverlayColor?: OverlayColor;
|
|
4095
|
+
/**
|
|
4096
|
+
* Sets the position of navigation button
|
|
4097
|
+
*
|
|
4098
|
+
* @default 'bottom'
|
|
4099
|
+
*/
|
|
4100
|
+
navigationButtonPosition?: 'bottom' | 'side';
|
|
4101
|
+
/**
|
|
4102
|
+
* Variant to be used depending on the emphasis you want to give to the navigation buttons
|
|
4103
|
+
*
|
|
4104
|
+
* @default 'filled'
|
|
4105
|
+
*/
|
|
4106
|
+
navigationButtonVariant?: 'filled' | 'stroked';
|
|
4107
|
+
/**
|
|
4108
|
+
* Variant to be used depending on the emphasis you want to give to the indicators
|
|
4109
|
+
*
|
|
4110
|
+
* @default 'gray'
|
|
4111
|
+
*/
|
|
4112
|
+
indicatorVariant?: 'gray' | 'white' | 'blue';
|
|
4113
|
+
/**
|
|
4114
|
+
* Sets the width of the carousel items, this can be used with visibleItems: auto to achive automatic bleed
|
|
4115
|
+
*
|
|
4116
|
+
* @default undefined
|
|
4117
|
+
*/
|
|
4118
|
+
carouselItemWidth?: Platform.Select<{
|
|
4119
|
+
web: BoxProps$1['width'];
|
|
4120
|
+
native: `${number}%`;
|
|
4121
|
+
}>;
|
|
4122
|
+
/**
|
|
4123
|
+
* Sets the align-items CSS property on carousel container which specifies how the carousel items will align if their heights are different
|
|
4124
|
+
*
|
|
4125
|
+
* @default 'start'
|
|
4126
|
+
*/
|
|
4127
|
+
carouselItemAlignment?: BoxProps$1['alignItems'];
|
|
4128
|
+
/**
|
|
4129
|
+
* Callback which gets fired everytime a slide changes, useful for analytic events (only runs on user interaction not on autoPlay)
|
|
4130
|
+
*
|
|
4131
|
+
* @default undefined
|
|
4132
|
+
*/
|
|
4133
|
+
onChange?: (slideIndex: number) => void;
|
|
4134
|
+
/**
|
|
4135
|
+
* Accessibility label for the carousel, this will let screen reader users know what content the carousel holds (eg: "Product carousel")
|
|
4136
|
+
*
|
|
4137
|
+
* @default undefined
|
|
4138
|
+
*/
|
|
4139
|
+
accessibilityLabel?: string;
|
|
4140
|
+
};
|
|
4141
|
+
|
|
4142
|
+
declare const Carousel: ({ autoPlay, showIndicators, children, carouselItemWidth, accessibilityLabel, onChange, indicatorVariant, navigationButtonVariant, }: CarouselProps) => React__default.ReactElement;
|
|
4143
|
+
|
|
4144
|
+
declare type CarouselItemProps = {
|
|
4145
|
+
children: React__default.ReactNode;
|
|
4146
|
+
};
|
|
4147
|
+
declare const CarouselItem: ({ children }: CarouselItemProps) => React__default.ReactElement;
|
|
4148
|
+
|
|
4047
4149
|
declare type DividerProps = {
|
|
4048
4150
|
/**
|
|
4049
4151
|
* Sets the orientation of divider
|
|
@@ -7052,4 +7154,4 @@ declare type BladeCommonEvents = {
|
|
|
7052
7154
|
}>;
|
|
7053
7155
|
};
|
|
7054
7156
|
|
|
7055
|
-
export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, 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, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetBodyProps, 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, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, Divider, DividerProps, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, 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, ListItemText, ListItemTextProps, 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, OTPInputCommonProps, 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, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, Tag, TagIcon, TagProps, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, 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 };
|
|
7157
|
+
export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, 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, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetBodyProps, 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, Carousel, CarouselItem, CarouselProps, 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, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, Divider, DividerProps, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, 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, ListItemText, ListItemTextProps, 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, OTPInputCommonProps, 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, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, Tag, TagIcon, TagProps, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, 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 };
|