@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
|
@@ -1347,11 +1347,11 @@ type GridProps$1 = MakeObjectResponsive$1<
|
|
|
1347
1347
|
>
|
|
1348
1348
|
>;
|
|
1349
1349
|
|
|
1350
|
-
type ColorObjects$
|
|
1351
|
-
type BackgroundColorString$
|
|
1350
|
+
type ColorObjects$2 = 'feedback' | 'surface' | 'action';
|
|
1351
|
+
type BackgroundColorString$2<T extends ColorObjects$2> = `${T}.background.${DotNotationColorStringToken<
|
|
1352
1352
|
Theme$1['colors'][T]['background']
|
|
1353
1353
|
>}`;
|
|
1354
|
-
type BorderColorString$1<T extends ColorObjects$
|
|
1354
|
+
type BorderColorString$1<T extends ColorObjects$2> = `${T}.border.${DotNotationColorStringToken<
|
|
1355
1355
|
Theme$1['colors'][T]['border']
|
|
1356
1356
|
>}`;
|
|
1357
1357
|
|
|
@@ -1370,7 +1370,7 @@ declare const validBoxAsValues$1 = [
|
|
|
1370
1370
|
|
|
1371
1371
|
type BoxAsType$1 = typeof validBoxAsValues$1[number];
|
|
1372
1372
|
|
|
1373
|
-
type BrandColorString$
|
|
1373
|
+
type BrandColorString$2 = `brand.${DotNotationColorStringToken<Theme$1['colors']['brand']>}`;
|
|
1374
1374
|
|
|
1375
1375
|
// Visual props that are common for both Box and BaseBox
|
|
1376
1376
|
type CommonBoxVisualProps$1 = MakeObjectResponsive$1<
|
|
@@ -1417,10 +1417,10 @@ type CommonBoxVisualProps$1 = MakeObjectResponsive$1<
|
|
|
1417
1417
|
type BaseBoxVisualProps$1 = MakeObjectResponsive$1<
|
|
1418
1418
|
{
|
|
1419
1419
|
backgroundColor:
|
|
1420
|
-
| BackgroundColorString$
|
|
1421
|
-
| BackgroundColorString$
|
|
1422
|
-
| BackgroundColorString$
|
|
1423
|
-
| BrandColorString$
|
|
1420
|
+
| BackgroundColorString$2<'feedback'>
|
|
1421
|
+
| BackgroundColorString$2<'surface'>
|
|
1422
|
+
| BackgroundColorString$2<'action'>
|
|
1423
|
+
| BrandColorString$2
|
|
1424
1424
|
| 'transparent'
|
|
1425
1425
|
| (string & Record<never, never>);
|
|
1426
1426
|
lineHeight: SpacingValueType$1;
|
|
@@ -1439,7 +1439,7 @@ type BaseBoxVisualProps$1 = MakeObjectResponsive$1<
|
|
|
1439
1439
|
|
|
1440
1440
|
// Visual props that are specific to Box
|
|
1441
1441
|
type BoxVisualProps$1 = MakeObjectResponsive$1<{
|
|
1442
|
-
backgroundColor: BackgroundColorString$
|
|
1442
|
+
backgroundColor: BackgroundColorString$2<'surface'> | BrandColorString$2 | 'transparent';
|
|
1443
1443
|
}> & {
|
|
1444
1444
|
// Intentionally keeping this outside of MakeObjectResponsive since we only want as to be string and not responsive object
|
|
1445
1445
|
// 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
|
};
|
|
@@ -3307,12 +3307,15 @@ declare type CardProps = {
|
|
|
3307
3307
|
* - Docs: https://blade.razorpay.com/?path=/docs/tokens-spacing--page
|
|
3308
3308
|
*/
|
|
3309
3309
|
padding?: Extract<SpacingValueType$1, 'spacing.0' | 'spacing.3' | 'spacing.5' | 'spacing.7'>;
|
|
3310
|
+
width?: BoxProps$1['width'];
|
|
3311
|
+
height?: BoxProps$1['height'];
|
|
3310
3312
|
} & TestID$1 & StyledPropsBlade$1;
|
|
3311
|
-
declare const Card: ({ children, surfaceLevel, elevation, testID, padding, ...styledProps }: CardProps) => React__default.ReactElement;
|
|
3313
|
+
declare const Card: ({ children, surfaceLevel, elevation, testID, padding, width, height, ...styledProps }: CardProps) => React__default.ReactElement;
|
|
3312
3314
|
declare type CardBodyProps = {
|
|
3313
3315
|
children: React__default.ReactNode;
|
|
3316
|
+
height?: BoxProps$1['height'];
|
|
3314
3317
|
} & TestID$1;
|
|
3315
|
-
declare const CardBody: ({ children, testID }: CardBodyProps) => React__default.ReactElement;
|
|
3318
|
+
declare const CardBody: ({ height, children, testID }: CardBodyProps) => React__default.ReactElement;
|
|
3316
3319
|
|
|
3317
3320
|
type FeedbackColors$1 = `feedback.text.${DotNotationColorStringToken<
|
|
3318
3321
|
Theme$1['colors']['feedback']['text']
|
|
@@ -4331,6 +4334,109 @@ declare type CheckboxGroupProps = {
|
|
|
4331
4334
|
} & TestID$1 & StyledPropsBlade$1;
|
|
4332
4335
|
declare const CheckboxGroup: ({ children, label, helpText, isDisabled, isRequired, necessityIndicator, labelPosition, validationState, errorText, name, defaultValue, onChange, value, size, testID, ...styledProps }: CheckboxGroupProps) => React__default.ReactElement;
|
|
4333
4336
|
|
|
4337
|
+
declare type ColorObjects = 'feedback' | 'surface' | 'action';
|
|
4338
|
+
declare type BackgroundColorString<T extends ColorObjects> = `${T}.background.${DotNotationColorStringToken<Theme$1['colors'][T]['background']>}`;
|
|
4339
|
+
declare type BrandColorString = `brand.${DotNotationColorStringToken<Theme$1['colors']['brand']>}`;
|
|
4340
|
+
declare type OverlayColor = BackgroundColorString<'surface'> | BrandColorString;
|
|
4341
|
+
declare type CarouselProps = {
|
|
4342
|
+
/**
|
|
4343
|
+
* Accepts CarouselItem
|
|
4344
|
+
*/
|
|
4345
|
+
children: React.ReactNode;
|
|
4346
|
+
/**
|
|
4347
|
+
* Total number of carousel items to show at once,
|
|
4348
|
+
* if set to 1,2 or 3 all the CarouselItem's width will remain the same,
|
|
4349
|
+
* but if set to `autofit` the carousel items will take up space responsively
|
|
4350
|
+
*
|
|
4351
|
+
* @default 1
|
|
4352
|
+
*/
|
|
4353
|
+
visibleItems?: 1 | 2 | 3 | 'autofit';
|
|
4354
|
+
/**
|
|
4355
|
+
* If true, adds extra margin before and after the first/last slides so that they align in center
|
|
4356
|
+
* This prop is only effective on desktop screen sizes
|
|
4357
|
+
*
|
|
4358
|
+
* @default false
|
|
4359
|
+
*/
|
|
4360
|
+
shouldAddStartEndSpacing?: boolean;
|
|
4361
|
+
/**
|
|
4362
|
+
* If true, the carousel will automatically slide to the next slide, default interval is 6 seconds
|
|
4363
|
+
*
|
|
4364
|
+
* @default false
|
|
4365
|
+
*/
|
|
4366
|
+
autoPlay?: boolean;
|
|
4367
|
+
/**
|
|
4368
|
+
* Toggles the visibility of indicators
|
|
4369
|
+
*
|
|
4370
|
+
* @default true
|
|
4371
|
+
*/
|
|
4372
|
+
showIndicators?: boolean;
|
|
4373
|
+
/**
|
|
4374
|
+
* Changes the color of the overlay, so that carousel can blend with the background color
|
|
4375
|
+
* If set to undefined overlay won't be shown
|
|
4376
|
+
*
|
|
4377
|
+
* This prop is only effective on desktop screen sizes
|
|
4378
|
+
*
|
|
4379
|
+
* @default undefined
|
|
4380
|
+
*/
|
|
4381
|
+
scrollOverlayColor?: OverlayColor;
|
|
4382
|
+
/**
|
|
4383
|
+
* Sets the position of navigation button
|
|
4384
|
+
*
|
|
4385
|
+
* @default 'bottom'
|
|
4386
|
+
*/
|
|
4387
|
+
navigationButtonPosition?: 'bottom' | 'side';
|
|
4388
|
+
/**
|
|
4389
|
+
* Variant to be used depending on the emphasis you want to give to the navigation buttons
|
|
4390
|
+
*
|
|
4391
|
+
* @default 'filled'
|
|
4392
|
+
*/
|
|
4393
|
+
navigationButtonVariant?: 'filled' | 'stroked';
|
|
4394
|
+
/**
|
|
4395
|
+
* Variant to be used depending on the emphasis you want to give to the indicators
|
|
4396
|
+
*
|
|
4397
|
+
* @default 'gray'
|
|
4398
|
+
*/
|
|
4399
|
+
indicatorVariant?: 'gray' | 'white' | 'blue';
|
|
4400
|
+
/**
|
|
4401
|
+
* Sets the width of the carousel items, this can be used with visibleItems: auto to achive automatic bleed
|
|
4402
|
+
*
|
|
4403
|
+
* @default undefined
|
|
4404
|
+
*/
|
|
4405
|
+
carouselItemWidth?: Platform.Select<{
|
|
4406
|
+
web: BoxProps$1['width'];
|
|
4407
|
+
native: `${number}%`;
|
|
4408
|
+
}>;
|
|
4409
|
+
/**
|
|
4410
|
+
* Sets the align-items CSS property on carousel container which specifies how the carousel items will align if their heights are different
|
|
4411
|
+
*
|
|
4412
|
+
* @default 'start'
|
|
4413
|
+
*/
|
|
4414
|
+
carouselItemAlignment?: BoxProps$1['alignItems'];
|
|
4415
|
+
/**
|
|
4416
|
+
* Callback which gets fired everytime a slide changes, useful for analytic events (only runs on user interaction not on autoPlay)
|
|
4417
|
+
*
|
|
4418
|
+
* @default undefined
|
|
4419
|
+
*/
|
|
4420
|
+
onChange?: (slideIndex: number) => void;
|
|
4421
|
+
/**
|
|
4422
|
+
* Accessibility label for the carousel, this will let screen reader users know what content the carousel holds (eg: "Product carousel")
|
|
4423
|
+
*
|
|
4424
|
+
* @default undefined
|
|
4425
|
+
*/
|
|
4426
|
+
accessibilityLabel?: string;
|
|
4427
|
+
};
|
|
4428
|
+
|
|
4429
|
+
declare const Carousel: ({ autoPlay, visibleItems, showIndicators, navigationButtonPosition, children, shouldAddStartEndSpacing, carouselItemWidth, scrollOverlayColor, accessibilityLabel, onChange, indicatorVariant, navigationButtonVariant, carouselItemAlignment, }: CarouselProps) => React__default.ReactElement;
|
|
4430
|
+
|
|
4431
|
+
declare type CarouselItemProps = {
|
|
4432
|
+
id?: string;
|
|
4433
|
+
index?: number;
|
|
4434
|
+
children: React__default.ReactNode;
|
|
4435
|
+
shouldHaveStartSpacing?: boolean;
|
|
4436
|
+
shouldHaveEndSpacing?: boolean;
|
|
4437
|
+
};
|
|
4438
|
+
declare const CarouselItem: ({ children, shouldHaveStartSpacing, shouldHaveEndSpacing, id, index, }: CarouselItemProps) => React__default.ReactElement;
|
|
4439
|
+
|
|
4334
4440
|
declare type DividerProps = {
|
|
4335
4441
|
/**
|
|
4336
4442
|
* Sets the orientation of divider
|
|
@@ -8207,4 +8313,4 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
8207
8313
|
tabIndex: -1;
|
|
8208
8314
|
}, "tabIndex" | "data-testid" | "data-blade-component">;
|
|
8209
8315
|
|
|
8210
|
-
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 };
|
|
8316
|
+
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 };
|