@razorpay/blade 10.18.2 → 10.19.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.
@@ -7264,6 +7264,320 @@ declare const TabList: ({ children, ...props }: {
7264
7264
 
7265
7265
  declare const TabPanel: ({ children, value }: TabPanelProps) => React__default.ReactElement;
7266
7266
 
7267
+ declare type TableNode<Item> = Item & {
7268
+ id: Identifier;
7269
+ };
7270
+ declare type TableData<Item> = {
7271
+ nodes: TableNode<Item>[];
7272
+ };
7273
+ declare type TableHeaderProps = {
7274
+ /**
7275
+ * The children of TableHeader should be TableHeaderRow
7276
+ * @example
7277
+ * <TableHeader>
7278
+ * <TableHeaderRow>
7279
+ * <TableHeaderCell>Header Cell 1</TableHeaderCell>
7280
+ * </TableHeaderRow>
7281
+ * </TableHeader>
7282
+ **/
7283
+ children: React.ReactNode;
7284
+ };
7285
+ declare type TableHeaderRowProps = {
7286
+ /**
7287
+ * The children of TableHeaderRow should be TableHeaderCell
7288
+ * @example
7289
+ * <TableHeader>
7290
+ * <TableHeaderRow>
7291
+ * <TableHeaderCell>Header Cell 1</TableHeaderCell>
7292
+ * </TableHeaderRow>
7293
+ * </TableHeader>
7294
+ **/
7295
+ children: React.ReactNode;
7296
+ };
7297
+ declare type TableHeaderCellProps = {
7298
+ /**
7299
+ * The children of TableHeaderCell can be a string or a ReactNode.
7300
+ **/
7301
+ children: string | React.ReactNode;
7302
+ /**
7303
+ * The unique key of the column.
7304
+ * This is used to identify the column for sorting in sortFunctions prop of Table.
7305
+ * Sorting is enabled only for columns whose key is present in sortableColumns prop of Table.
7306
+ **/
7307
+ headerKey?: string;
7308
+ };
7309
+ declare type TableProps<Item> = {
7310
+ /**
7311
+ * The children of the Table component should be a function that returns TableHeader, TableBody and TableFooter components.
7312
+ * The function will be called with the tableData prop.
7313
+ */
7314
+ children: (tableData: TableNode<Item>[]) => React.ReactElement;
7315
+ /**
7316
+ * The data prop is an object with a nodes property that is an array of objects.
7317
+ * Each object in the array is a row in the table.
7318
+ * The object should have an id property that is a unique identifier for the row.
7319
+ */
7320
+ data: TableData<Item>;
7321
+ /**
7322
+ * The selectionType prop determines the type of selection that is allowed on the table.
7323
+ * The selectionType prop can be 'none', 'single' or 'multiple'.
7324
+ * @default 'none'
7325
+ **/
7326
+ selectionType?: 'none' | 'single' | 'multiple';
7327
+ /**
7328
+ * The onSelectionChange prop is a function that is called when the selection changes.
7329
+ * The function is called with an object that has a values property that is an array of the selected rows.
7330
+ **/
7331
+ onSelectionChange?: ({ values }: {
7332
+ values: TableNode<Item>[];
7333
+ }) => void;
7334
+ /**
7335
+ * The isHeaderSticky prop determines whether the table header is sticky or not.
7336
+ * The default value is `false`.
7337
+ **/
7338
+ isHeaderSticky?: boolean;
7339
+ /**
7340
+ * The isFooterSticky prop determines whether the table footer is sticky or not.
7341
+ * The default value is `false`.
7342
+ **/
7343
+ isFooterSticky?: boolean;
7344
+ /**
7345
+ * The isFirstColumnSticky prop determines whether the first column is sticky or not.
7346
+ * The default value is `false`.
7347
+ **/
7348
+ isFirstColumnSticky?: boolean;
7349
+ /**
7350
+ * The rowDensity prop determines the density of the table.
7351
+ * The rowDensity prop can be 'normal' or 'comfortable'.
7352
+ * The default value is `normal`.
7353
+ **/
7354
+ rowDensity?: 'normal' | 'comfortable';
7355
+ /**
7356
+ * The onSortChange prop is a function that is called when the sort changes.
7357
+ * The function is called with an object that has a sortKey property that is the key of the column that is sorted and a isSortReversed property that is a boolean that determines whether the sort is reversed or not.
7358
+ **/
7359
+ onSortChange?: ({ sortKey, isSortReversed, }: {
7360
+ sortKey: TableHeaderCellProps['headerKey'];
7361
+ isSortReversed: boolean;
7362
+ }) => void;
7363
+ /**
7364
+ * The sortFunctions prop is an object that has a key for each column that is sortable.
7365
+ * The value of each key is a function that is called when the column is sorted.
7366
+ * The function is called with an array of the rows in the table.
7367
+ * The function should return an array of the rows in the table.
7368
+ **/
7369
+ sortFunctions?: Record<string, (array: TableNode<Item>[]) => TableNode<Item>[]>;
7370
+ /**
7371
+ * The toolbar prop is a React element that is rendered above the table.
7372
+ * The toolbar prop should be a `TableToolbar` component.
7373
+ **/
7374
+ toolbar?: React.ReactElement;
7375
+ /**
7376
+ * The pagination prop is a React element that is rendered below the table.
7377
+ * The pagination prop should be a `TablePagination` component.
7378
+ **/
7379
+ pagination?: React.ReactElement;
7380
+ /**
7381
+ * The height prop is a responsive styled prop that determines the height of the table.
7382
+ **/
7383
+ height?: BoxProps['height'];
7384
+ /**
7385
+ * The showStripedRows prop determines whether the table should have striped rows or not.
7386
+ * The default value is `false`.
7387
+ **/
7388
+ showStripedRows?: boolean;
7389
+ /**
7390
+ * The gridTemplateColumns prop determines the grid-template-columns CSS property of the table.
7391
+ * The default value is `repeat(${columnCount},minmax(100px, 1fr))`.
7392
+ **/
7393
+ gridTemplateColumns?: string;
7394
+ /**
7395
+ * The surfaceLevel prop determines the surface level of the table.
7396
+ * The surfaceLevel prop can be 1, 2, 3, 4 or 5.
7397
+ * The default value is `2`.
7398
+ **/
7399
+ surfaceLevel?: SurfaceLevels;
7400
+ /**
7401
+ * The isLoading prop determines whether the table is loading or not.
7402
+ * The default value is `false`.
7403
+ **/
7404
+ isLoading?: boolean;
7405
+ /**
7406
+ * The isRefreshing prop determines whether the table is refreshing or not.
7407
+ * The default value is `false`.
7408
+ **/
7409
+ isRefreshing?: boolean;
7410
+ } & StyledPropsBlade;
7411
+ declare type Identifier = string | number;
7412
+ declare type TableBodyProps = {
7413
+ /**
7414
+ * The children of the TableBody component should be TableRow components.
7415
+ * @example
7416
+ * <TableBody>
7417
+ * <TableRow>
7418
+ * <TableCell>...</TableCell>
7419
+ * </TableRow>
7420
+ * </TableBody>
7421
+ **/
7422
+ children: React.ReactNode;
7423
+ };
7424
+ declare type TableRowProps<Item> = {
7425
+ /**
7426
+ * The children of the TableRow component should be TableCell components.
7427
+ * @example
7428
+ * <TableRow>
7429
+ * <TableCell>...</TableCell>
7430
+ * </TableRow>
7431
+ **/
7432
+ children: React.ReactNode;
7433
+ /**
7434
+ * The item prop is used to pass the individual table item to the TableRow component.
7435
+ * @example
7436
+ * tableData.map((tableItem) => (
7437
+ * <TableRow item={item}>
7438
+ * <TableCell>...</TableCell>
7439
+ * </TableRow>
7440
+ * ));
7441
+ **/
7442
+ item: TableNode<Item>;
7443
+ /**
7444
+ * The isDisabled prop is used to disable the TableRow component.
7445
+ * @example
7446
+ * <TableRow isDisabled>
7447
+ * <TableCell>...</TableCell>
7448
+ * </TableRow>
7449
+ **/
7450
+ isDisabled?: boolean;
7451
+ };
7452
+ declare type TableCellProps = {
7453
+ /**
7454
+ * The children of the TableCell component should be a string or a ReactNode.
7455
+ * @example
7456
+ * <TableCell>{'Hello'}</TableCell>
7457
+ * <TableCell>
7458
+ * <Text>...</Text>
7459
+ * </TableCell>
7460
+ * <TableCell>
7461
+ * <Button>...</Button>
7462
+ * </TableCell>
7463
+ **/
7464
+ children: React.ReactNode;
7465
+ };
7466
+ declare type TableFooterProps = {
7467
+ /**
7468
+ * The children of TableFooter should be TableFooterRow
7469
+ * @example
7470
+ * <TableFooter>
7471
+ * <TableFooterRow>
7472
+ * <TableFooterCell>Footer Cell 1</TableFooterCell>
7473
+ * </TableFooterRow>
7474
+ * </TableFooter>
7475
+ **/
7476
+ children: React.ReactNode;
7477
+ };
7478
+ declare type TableFooterRowProps = {
7479
+ /**
7480
+ * The children of TableFooterRow should be TableFooterCell
7481
+ * @example
7482
+ * <TableFooter>
7483
+ * <TableFooterRow>
7484
+ * <TableFooterCell>Footer Cell 1</TableFooterCell>
7485
+ * </TableFooterRow>
7486
+ * </TableFooter>
7487
+ **/
7488
+ children: React.ReactNode;
7489
+ };
7490
+ declare type TableFooterCellProps = {
7491
+ /**
7492
+ * The children of TableHeaderCell can be a string or a ReactNode.
7493
+ **/
7494
+ children: string | React.ReactNode;
7495
+ };
7496
+ declare type TablePaginationProps = {
7497
+ /**
7498
+ * The default page size.
7499
+ * Page size controls how rows are shown per page.
7500
+ * @default 10
7501
+ **/
7502
+ defaultPageSize?: 10 | 25 | 50;
7503
+ /**
7504
+ * The current page. Passing this prop will make the component controlled and will not update the page on its own.
7505
+ **/
7506
+ currentPage?: number;
7507
+ /**
7508
+ * Callback function that is called when the page is changed
7509
+ */
7510
+ onPageChange?: ({ page }: {
7511
+ page: number;
7512
+ }) => void;
7513
+ /**
7514
+ * Callback function that is called when the page size is changed
7515
+ */
7516
+ onPageSizeChange?: ({ pageSize }: {
7517
+ pageSize: number;
7518
+ }) => void;
7519
+ /**
7520
+ * Whether to show the page size picker. It will be always be hidden on mobile.
7521
+ * Page size picker controls how rows are shown per page.
7522
+ * @default true
7523
+ */
7524
+ showPageSizePicker?: boolean;
7525
+ /**
7526
+ * Whether to show the page number selector. It will be always be hidden on mobile.
7527
+ * Page number selectors is a group of buttons that allows the user to jump to a specific page.
7528
+ * @default false
7529
+ */
7530
+ showPageNumberSelector?: boolean;
7531
+ /**
7532
+ * Content of the label to be shown in the pagination component
7533
+ * @default `Showing 1 to ${totalItems} Items`
7534
+ */
7535
+ label?: string;
7536
+ /**
7537
+ * Whether to show the label. It will be always be hidden on mobile.
7538
+ * @default false
7539
+ */
7540
+ showLabel?: boolean;
7541
+ };
7542
+ declare type TableToolbarProps = {
7543
+ /**
7544
+ * The children of TableToolbar should be TableToolbarActions
7545
+ */
7546
+ children?: React.ReactNode;
7547
+ /**
7548
+ * The title of the TableToolbar. If not provided, it will show the default title.
7549
+ * @default `Showing 1 to ${totalItems} Items`
7550
+ */
7551
+ title?: string;
7552
+ /**
7553
+ * The title to show when items are selected. If not provided, it will show the default title.
7554
+ * @default `${selectedRows.length} 'Items'} Selected`
7555
+ */
7556
+ selectedTitle?: string;
7557
+ };
7558
+ declare type TableToolbarActionsProps = {
7559
+ children?: React.ReactNode;
7560
+ } & StyledPropsBlade;
7561
+
7562
+ declare const Table: <Item>({ children, data, selectionType, onSelectionChange, isHeaderSticky, isFooterSticky, isFirstColumnSticky, rowDensity, onSortChange, sortFunctions, toolbar, pagination, height, showStripedRows, gridTemplateColumns, surfaceLevel, isLoading, isRefreshing, ...styledProps }: TableProps<Item>) => React__default.ReactElement;
7563
+
7564
+ declare const TableHeader: ({ children }: TableHeaderRowProps) => React__default.ReactElement;
7565
+ declare const TableHeaderCell: ({ children, headerKey }: TableHeaderCellProps) => React__default.ReactElement;
7566
+ declare const TableHeaderRow: ({ children }: TableHeaderRowProps) => React__default.ReactElement;
7567
+
7568
+ declare const TableBody: ({ children }: TableBodyProps) => React__default.ReactElement;
7569
+ declare const TableCell: ({ children }: TableCellProps) => React__default.ReactElement;
7570
+ declare const TableRow: <Item>({ children, item, isDisabled, }: TableRowProps<Item>) => React__default.ReactElement;
7571
+
7572
+ declare const TableFooter: ({ children }: TableFooterProps) => React__default.ReactElement;
7573
+ declare const TableFooterRow: ({ children }: TableFooterRowProps) => React__default.ReactElement;
7574
+ declare const TableFooterCell: ({ children }: TableFooterCellProps) => React__default.ReactElement;
7575
+
7576
+ declare const TablePagination: ({ currentPage, onPageChange, onPageSizeChange, defaultPageSize, showPageSizePicker, showPageNumberSelector, showLabel, label, }: TablePaginationProps) => React__default.ReactElement;
7577
+
7578
+ declare const TableToolbarActions: ({ children, ...styledProps }: TableToolbarActionsProps) => React__default.ReactElement;
7579
+ declare const TableToolbar: ({ children, title, selectedTitle, }: TableToolbarProps) => React__default.ReactElement;
7580
+
7267
7581
  declare type SkeletonProps = StyledPropsBlade & Pick<BaseBoxProps, 'width' | 'maxWidth' | 'minWidth' | 'height' | 'maxHeight' | 'minHeight' | 'borderRadius'> & Partial<FlexboxProps> & {
7268
7582
  contrast?: 'low' | 'high';
7269
7583
  testID?: string;
@@ -8787,4 +9101,4 @@ declare const SpotlightPopoverTourFooter: ({ activeStep, totalSteps, actions, }:
8787
9101
 
8788
9102
  declare const SpotlightPopoverTourStep: React__default.MemoExoticComponent<({ name, children, }: SpotlightPopoverTourStepProps) => React__default.ReactElement>;
8789
9103
 
8790
- export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, 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, AutoComplete, AutoCompleteProps, 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, Chip, ChipGroup, ChipGroupProps, ChipProps, 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, Display, DisplayProps, 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, FileZipIcon, 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, 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, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, 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, SpotlightPopoverStepRenderProps, SpotlightPopoverTour, SpotlightPopoverTourFooter, SpotlightPopoverTourProps, SpotlightPopoverTourStep, SpotlightPopoverTourSteps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabPanel, TabPanelProps, TabletIcon, Tabs, TabsProps, 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 };
9104
+ export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, 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, AutoComplete, AutoCompleteProps, 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, Chip, ChipGroup, ChipGroupProps, ChipProps, 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, Display, DisplayProps, 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, FileZipIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, Identifier, 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, 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, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, 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, SpotlightPopoverStepRenderProps, SpotlightPopoverTour, SpotlightPopoverTourFooter, SpotlightPopoverTourProps, SpotlightPopoverTourStep, SpotlightPopoverTourSteps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabPanel, TabPanelProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableFooter, TableFooterCell, TableFooterCellProps, TableFooterProps, TableFooterRow, TableFooterRowProps, TableHeader, TableHeaderCell, TableHeaderCellProps, TableHeaderProps, TableHeaderRow, TableHeaderRowProps, TableNode, TablePagination, TablePaginationProps, TableProps, TableRow, TableRowProps, TableToolbar, TableToolbarActions, TableToolbarActionsProps, TableToolbarProps, TabletIcon, Tabs, TabsProps, 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 };