@razorpay/blade 11.32.0 → 11.34.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/lib/native/components/BottomNav/BottomNav.native.js +17 -0
- package/build/lib/native/components/BottomNav/BottomNav.native.js.map +1 -0
- package/build/lib/native/components/Button/IconButton/IconButton.js +1 -1
- package/build/lib/native/components/Button/IconButton/IconButton.js.map +1 -1
- package/build/lib/native/components/Table/TableContext.js +1 -1
- package/build/lib/native/components/Table/TableContext.js.map +1 -1
- package/build/lib/native/components/Table/tokens.js.map +1 -1
- package/build/lib/native/components/index.js +1 -0
- package/build/lib/native/components/index.js.map +1 -1
- package/build/lib/native/utils/componentZIndices.js +1 -1
- package/build/lib/native/utils/componentZIndices.js.map +1 -1
- package/build/lib/native/utils/metaAttribute/metaConstants.js +1 -1
- package/build/lib/native/utils/metaAttribute/metaConstants.js.map +1 -1
- package/build/lib/web/development/components/BottomNav/BottomNav.web.js +136 -0
- package/build/lib/web/development/components/BottomNav/BottomNav.web.js.map +1 -0
- package/build/lib/web/development/components/BottomNav/index.js +2 -0
- package/build/lib/web/development/components/BottomNav/index.js.map +1 -0
- package/build/lib/web/development/components/Button/IconButton/IconButton.js +2 -0
- package/build/lib/web/development/components/Button/IconButton/IconButton.js.map +1 -1
- package/build/lib/web/development/components/Button/IconButton/StyledIconButton.web.js +25 -3
- package/build/lib/web/development/components/Button/IconButton/StyledIconButton.web.js.map +1 -1
- package/build/lib/web/development/components/Button/IconButton/tokens.js +14 -0
- package/build/lib/web/development/components/Button/IconButton/tokens.js.map +1 -0
- package/build/lib/web/development/components/Table/Table.web.js +12 -3
- package/build/lib/web/development/components/Table/Table.web.js.map +1 -1
- package/build/lib/web/development/components/Table/TableBody.web.js +214 -70
- package/build/lib/web/development/components/Table/TableBody.web.js.map +1 -1
- package/build/lib/web/development/components/Table/TableContext.js +3 -1
- package/build/lib/web/development/components/Table/TableContext.js.map +1 -1
- package/build/lib/web/development/components/Table/TableHeader.web.js +14 -6
- package/build/lib/web/development/components/Table/TableHeader.web.js.map +1 -1
- package/build/lib/web/development/components/Table/tokens.js +6 -1
- package/build/lib/web/development/components/Table/tokens.js.map +1 -1
- package/build/lib/web/development/components/index.js +2 -0
- package/build/lib/web/development/components/index.js.map +1 -1
- package/build/lib/web/development/utils/componentZIndices.js +2 -0
- package/build/lib/web/development/utils/componentZIndices.js.map +1 -1
- package/build/lib/web/development/utils/metaAttribute/metaConstants.js +2 -0
- package/build/lib/web/development/utils/metaAttribute/metaConstants.js.map +1 -1
- package/build/lib/web/production/components/BottomNav/BottomNav.web.js +136 -0
- package/build/lib/web/production/components/BottomNav/BottomNav.web.js.map +1 -0
- package/build/lib/web/production/components/BottomNav/index.js +2 -0
- package/build/lib/web/production/components/BottomNav/index.js.map +1 -0
- package/build/lib/web/production/components/Button/IconButton/IconButton.js +2 -0
- package/build/lib/web/production/components/Button/IconButton/IconButton.js.map +1 -1
- package/build/lib/web/production/components/Button/IconButton/StyledIconButton.web.js +25 -3
- package/build/lib/web/production/components/Button/IconButton/StyledIconButton.web.js.map +1 -1
- package/build/lib/web/production/components/Button/IconButton/tokens.js +14 -0
- package/build/lib/web/production/components/Button/IconButton/tokens.js.map +1 -0
- package/build/lib/web/production/components/Table/Table.web.js +12 -3
- package/build/lib/web/production/components/Table/Table.web.js.map +1 -1
- package/build/lib/web/production/components/Table/TableBody.web.js +214 -70
- package/build/lib/web/production/components/Table/TableBody.web.js.map +1 -1
- package/build/lib/web/production/components/Table/TableContext.js +3 -1
- package/build/lib/web/production/components/Table/TableContext.js.map +1 -1
- package/build/lib/web/production/components/Table/TableHeader.web.js +14 -6
- package/build/lib/web/production/components/Table/TableHeader.web.js.map +1 -1
- package/build/lib/web/production/components/Table/tokens.js +6 -1
- package/build/lib/web/production/components/Table/tokens.js.map +1 -1
- package/build/lib/web/production/components/index.js +2 -0
- package/build/lib/web/production/components/index.js.map +1 -1
- package/build/lib/web/production/utils/componentZIndices.js +2 -0
- package/build/lib/web/production/utils/componentZIndices.js.map +1 -1
- package/build/lib/web/production/utils/metaAttribute/metaConstants.js +2 -0
- package/build/lib/web/production/utils/metaAttribute/metaConstants.js.map +1 -1
- package/build/types/components/index.d.ts +144 -18
- package/build/types/components/index.native.d.ts +96 -15
- package/package.json +1 -1
|
@@ -4461,6 +4461,111 @@ type LinkButtonVariantProps = LinkPropsWithOrWithoutIcon & {
|
|
|
4461
4461
|
type LinkProps = LinkAnchorVariantProps | LinkButtonVariantProps;
|
|
4462
4462
|
declare const Link: React__default.ForwardRefExoticComponent<LinkProps & React__default.RefAttributes<BladeElementRef>>;
|
|
4463
4463
|
|
|
4464
|
+
type BottomNavProps = {
|
|
4465
|
+
/**
|
|
4466
|
+
* children slot of BottomNav, accepts BottomNavItem
|
|
4467
|
+
*/
|
|
4468
|
+
children: React__default.ReactNode;
|
|
4469
|
+
/**
|
|
4470
|
+
* zIndex of BottomNav
|
|
4471
|
+
*
|
|
4472
|
+
* @default 100
|
|
4473
|
+
*/
|
|
4474
|
+
zIndex?: number;
|
|
4475
|
+
} & StyledPropsBlade & TestID;
|
|
4476
|
+
type BottomNavItemProps = {
|
|
4477
|
+
/**
|
|
4478
|
+
* Title text of the BottomNavItem
|
|
4479
|
+
*/
|
|
4480
|
+
title: string;
|
|
4481
|
+
/**
|
|
4482
|
+
* Icon rendered above the title.
|
|
4483
|
+
*
|
|
4484
|
+
* Accepts icon component from blade
|
|
4485
|
+
*/
|
|
4486
|
+
icon: IconComponent;
|
|
4487
|
+
/**
|
|
4488
|
+
* href property of link
|
|
4489
|
+
*
|
|
4490
|
+
* maps to `to` property when react router is being used
|
|
4491
|
+
*/
|
|
4492
|
+
href?: LinkProps['href'];
|
|
4493
|
+
/**
|
|
4494
|
+
* HTML's `target` attribute for anchor links
|
|
4495
|
+
*/
|
|
4496
|
+
target?: LinkProps['target'];
|
|
4497
|
+
/**
|
|
4498
|
+
* HTML's `rel` tag of anchor links
|
|
4499
|
+
*/
|
|
4500
|
+
rel?: LinkProps['rel'];
|
|
4501
|
+
/**
|
|
4502
|
+
* as prop to pass ReactRouter's Link component.
|
|
4503
|
+
*
|
|
4504
|
+
* ```jsx
|
|
4505
|
+
* import { NavLink } from 'react-router-dom';
|
|
4506
|
+
*
|
|
4507
|
+
* <BottomNavItem as={Link} />
|
|
4508
|
+
* ```
|
|
4509
|
+
*/
|
|
4510
|
+
as?: React__default.ComponentType<any>;
|
|
4511
|
+
/**
|
|
4512
|
+
* Active state of the BottomNavItem.
|
|
4513
|
+
*
|
|
4514
|
+
* Use this to set the current page's active state using react router
|
|
4515
|
+
*/
|
|
4516
|
+
isActive?: boolean;
|
|
4517
|
+
/**
|
|
4518
|
+
* onClick handler of BottomNavItem
|
|
4519
|
+
*/
|
|
4520
|
+
onClick?: Platform.Select<{
|
|
4521
|
+
web: React__default.MouseEventHandler;
|
|
4522
|
+
native: undefined;
|
|
4523
|
+
}>;
|
|
4524
|
+
} & TestID;
|
|
4525
|
+
|
|
4526
|
+
/**
|
|
4527
|
+
* ### BottomNav component
|
|
4528
|
+
*
|
|
4529
|
+
* Bottom navigation component is a persistent user interface element at the bottom of a mobile app screen, providing quick access to core functionalities through icons and labels.
|
|
4530
|
+
*
|
|
4531
|
+
* ---
|
|
4532
|
+
*
|
|
4533
|
+
* #### Usage
|
|
4534
|
+
*
|
|
4535
|
+
* ```jsx
|
|
4536
|
+
* import { NavLink } from 'react-router-dom';
|
|
4537
|
+
*
|
|
4538
|
+
* <BottomNav>
|
|
4539
|
+
* <BottomNavItem
|
|
4540
|
+
* as={NavLink}
|
|
4541
|
+
* isActive={true}
|
|
4542
|
+
* title="Payments"
|
|
4543
|
+
* icon={WalletIcon}
|
|
4544
|
+
* href="/payments"
|
|
4545
|
+
* />
|
|
4546
|
+
* <BottomNavItem
|
|
4547
|
+
* as={NavLink}
|
|
4548
|
+
* title="Transactions"
|
|
4549
|
+
* icon={TransactionsIcon}
|
|
4550
|
+
* href="/transactions"
|
|
4551
|
+
* />
|
|
4552
|
+
* <BottomNavItem
|
|
4553
|
+
* title="More"
|
|
4554
|
+
* icon={MoreIcon}
|
|
4555
|
+
* onClick={() => {
|
|
4556
|
+
* // This can be used to open SideNav drawer
|
|
4557
|
+
* setIsSideNavOpen(true)
|
|
4558
|
+
* }}
|
|
4559
|
+
* />
|
|
4560
|
+
* </BottomNav>
|
|
4561
|
+
* ```
|
|
4562
|
+
*
|
|
4563
|
+
* Checkout {@link https://blade.razorpay.com/??path=/docs/components-bottomnav--doc BottomNav Documentation}
|
|
4564
|
+
|
|
4565
|
+
*/
|
|
4566
|
+
declare const BottomNav: ({ children, zIndex, testID, ...styledProps }: BottomNavProps) => React__default.ReactElement;
|
|
4567
|
+
declare const BottomNavItem: ({ title, href, rel, target, as, isActive, onClick, icon: Icon, testID, }: BottomNavItemProps) => React__default.ReactElement;
|
|
4568
|
+
|
|
4464
4569
|
type BreadcrumbProps = StyledPropsBlade & {
|
|
4465
4570
|
/**
|
|
4466
4571
|
* Size of the Breadcrumb
|
|
@@ -4555,9 +4660,16 @@ type IconButtonProps = {
|
|
|
4555
4660
|
} & BladeCommonEvents & Platform.Select<{
|
|
4556
4661
|
web: {
|
|
4557
4662
|
onClick: (event: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
4663
|
+
/**
|
|
4664
|
+
* This changes the hover interaction to highlight icon more
|
|
4665
|
+
*
|
|
4666
|
+
* **Only available on web currently**
|
|
4667
|
+
*/
|
|
4668
|
+
isHighlighted?: boolean;
|
|
4558
4669
|
};
|
|
4559
4670
|
native: {
|
|
4560
4671
|
onClick: (event: GestureResponderEvent) => void;
|
|
4672
|
+
isHighlighted?: undefined;
|
|
4561
4673
|
};
|
|
4562
4674
|
}>;
|
|
4563
4675
|
declare const IconButton: React__default.ForwardRefExoticComponent<{
|
|
@@ -4591,6 +4703,12 @@ declare const IconButton: React__default.ForwardRefExoticComponent<{
|
|
|
4591
4703
|
_tabIndex?: number | undefined;
|
|
4592
4704
|
} & BladeCommonEvents & {
|
|
4593
4705
|
onClick: (event: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
4706
|
+
/**
|
|
4707
|
+
* This changes the hover interaction to highlight icon more
|
|
4708
|
+
*
|
|
4709
|
+
* **Only available on web currently**
|
|
4710
|
+
*/
|
|
4711
|
+
isHighlighted?: boolean | undefined;
|
|
4594
4712
|
} & {
|
|
4595
4713
|
__brand__?: "platform-web" | undefined;
|
|
4596
4714
|
} & React__default.RefAttributes<BladeElementRef>>;
|
|
@@ -11879,7 +11997,7 @@ type TableHeaderProps = {
|
|
|
11879
11997
|
* </TableHeaderRow>
|
|
11880
11998
|
* </TableHeader>
|
|
11881
11999
|
**/
|
|
11882
|
-
children:
|
|
12000
|
+
children: React__default.ReactNode;
|
|
11883
12001
|
};
|
|
11884
12002
|
type TableHeaderRowProps = {
|
|
11885
12003
|
/**
|
|
@@ -11891,7 +12009,7 @@ type TableHeaderRowProps = {
|
|
|
11891
12009
|
* </TableHeaderRow>
|
|
11892
12010
|
* </TableHeader>
|
|
11893
12011
|
**/
|
|
11894
|
-
children:
|
|
12012
|
+
children: React__default.ReactNode;
|
|
11895
12013
|
/**
|
|
11896
12014
|
* The rowDensity prop determines the density of the table.
|
|
11897
12015
|
* The rowDensity prop can be 'compact', 'normal', or'comfortable'.
|
|
@@ -11903,20 +12021,21 @@ type TableHeaderCellProps = {
|
|
|
11903
12021
|
/**
|
|
11904
12022
|
* The children of TableHeaderCell can be a string or a ReactNode.
|
|
11905
12023
|
**/
|
|
11906
|
-
children: string |
|
|
12024
|
+
children: string | React__default.ReactNode;
|
|
11907
12025
|
/**
|
|
11908
12026
|
* The unique key of the column.
|
|
11909
12027
|
* This is used to identify the column for sorting in sortFunctions prop of Table.
|
|
11910
12028
|
* Sorting is enabled only for columns whose key is present in sortableColumns prop of Table.
|
|
11911
12029
|
**/
|
|
11912
12030
|
headerKey?: string;
|
|
12031
|
+
_hasPadding?: boolean;
|
|
11913
12032
|
};
|
|
11914
12033
|
type TableProps<Item> = {
|
|
11915
12034
|
/**
|
|
11916
12035
|
* The children of the Table component should be a function that returns TableHeader, TableBody and TableFooter components.
|
|
11917
12036
|
* The function will be called with the tableData prop.
|
|
11918
12037
|
*/
|
|
11919
|
-
children: (tableData: TableNode<Item>[]) =>
|
|
12038
|
+
children: (tableData: TableNode<Item>[]) => React__default.ReactElement;
|
|
11920
12039
|
/**
|
|
11921
12040
|
* The data prop is an object with a nodes property that is an array of objects.
|
|
11922
12041
|
* Each object in the array is a row in the table.
|
|
@@ -11994,12 +12113,12 @@ type TableProps<Item> = {
|
|
|
11994
12113
|
* The toolbar prop is a React element that is rendered above the table.
|
|
11995
12114
|
* The toolbar prop should be a `TableToolbar` component.
|
|
11996
12115
|
**/
|
|
11997
|
-
toolbar?:
|
|
12116
|
+
toolbar?: React__default.ReactElement;
|
|
11998
12117
|
/**
|
|
11999
12118
|
* The pagination prop is a React element that is rendered below the table.
|
|
12000
12119
|
* The pagination prop should be a `TablePagination` component.
|
|
12001
12120
|
**/
|
|
12002
|
-
pagination?:
|
|
12121
|
+
pagination?: React__default.ReactElement;
|
|
12003
12122
|
/**
|
|
12004
12123
|
* The height prop is a responsive styled prop that determines the height of the table.
|
|
12005
12124
|
**/
|
|
@@ -12044,7 +12163,7 @@ type TableBodyProps = {
|
|
|
12044
12163
|
* </TableRow>
|
|
12045
12164
|
* </TableBody>
|
|
12046
12165
|
**/
|
|
12047
|
-
children:
|
|
12166
|
+
children: React__default.ReactNode;
|
|
12048
12167
|
};
|
|
12049
12168
|
type TableRowProps<Item> = {
|
|
12050
12169
|
/**
|
|
@@ -12054,7 +12173,7 @@ type TableRowProps<Item> = {
|
|
|
12054
12173
|
* <TableCell>...</TableCell>
|
|
12055
12174
|
* </TableRow>
|
|
12056
12175
|
**/
|
|
12057
|
-
children:
|
|
12176
|
+
children: React__default.ReactNode;
|
|
12058
12177
|
/**
|
|
12059
12178
|
* The item prop is used to pass the individual table item to the TableRow component.
|
|
12060
12179
|
* @example
|
|
@@ -12085,6 +12204,7 @@ type TableRowProps<Item> = {
|
|
|
12085
12204
|
onClick?: ({ item }: {
|
|
12086
12205
|
item: TableNode<Item>;
|
|
12087
12206
|
}) => void;
|
|
12207
|
+
hoverActions?: React__default.ReactElement;
|
|
12088
12208
|
} & TestID;
|
|
12089
12209
|
type TableCellProps = {
|
|
12090
12210
|
/**
|
|
@@ -12098,7 +12218,13 @@ type TableCellProps = {
|
|
|
12098
12218
|
* <Button>...</Button>
|
|
12099
12219
|
* </TableCell>
|
|
12100
12220
|
**/
|
|
12101
|
-
children:
|
|
12221
|
+
children: React__default.ReactNode;
|
|
12222
|
+
/**
|
|
12223
|
+
* Removes padding from CellWrapper
|
|
12224
|
+
*
|
|
12225
|
+
* @private
|
|
12226
|
+
*/
|
|
12227
|
+
_hasPadding?: boolean;
|
|
12102
12228
|
};
|
|
12103
12229
|
type TableEditableCellProps = Pick<BaseInputProps, 'validationState' | 'placeholder' | 'defaultValue' | 'name' | 'onChange' | 'onFocus' | 'onBlur' | 'value' | 'isDisabled' | 'isRequired' | 'prefix' | 'suffix' | 'maxCharacters' | 'autoFocus' | 'keyboardReturnKeyType' | 'autoCompleteSuggestionType' | 'onSubmit' | 'autoCapitalize' | 'testID' | 'onClick' | 'leadingIcon' | 'trailingButton' | 'errorText' | 'successText'> & {
|
|
12104
12230
|
accessibilityLabel: NonNullable<BaseInputProps['accessibilityLabel']>;
|
|
@@ -12114,7 +12240,7 @@ type TableFooterProps = {
|
|
|
12114
12240
|
* </TableFooterRow>
|
|
12115
12241
|
* </TableFooter>
|
|
12116
12242
|
**/
|
|
12117
|
-
children:
|
|
12243
|
+
children: React__default.ReactNode;
|
|
12118
12244
|
};
|
|
12119
12245
|
type TableFooterRowProps = {
|
|
12120
12246
|
/**
|
|
@@ -12126,13 +12252,13 @@ type TableFooterRowProps = {
|
|
|
12126
12252
|
* </TableFooterRow>
|
|
12127
12253
|
* </TableFooter>
|
|
12128
12254
|
**/
|
|
12129
|
-
children:
|
|
12255
|
+
children: React__default.ReactNode;
|
|
12130
12256
|
};
|
|
12131
12257
|
type TableFooterCellProps = {
|
|
12132
12258
|
/**
|
|
12133
12259
|
* The children of TableHeaderCell can be a string or a ReactNode.
|
|
12134
12260
|
**/
|
|
12135
|
-
children: string |
|
|
12261
|
+
children: string | React__default.ReactNode;
|
|
12136
12262
|
};
|
|
12137
12263
|
type TablePaginationCommonProps = {
|
|
12138
12264
|
/**
|
|
@@ -12220,7 +12346,7 @@ type TableToolbarProps = {
|
|
|
12220
12346
|
/**
|
|
12221
12347
|
* The children of TableToolbar should be TableToolbarActions
|
|
12222
12348
|
*/
|
|
12223
|
-
children?:
|
|
12349
|
+
children?: React__default.ReactNode;
|
|
12224
12350
|
/**
|
|
12225
12351
|
* The title of the TableToolbar. If not provided, it will show the default title.
|
|
12226
12352
|
* @default `Showing 1 to ${totalItems} Items`
|
|
@@ -12233,18 +12359,18 @@ type TableToolbarProps = {
|
|
|
12233
12359
|
selectedTitle?: string;
|
|
12234
12360
|
};
|
|
12235
12361
|
type TableToolbarActionsProps = {
|
|
12236
|
-
children?:
|
|
12362
|
+
children?: React__default.ReactNode;
|
|
12237
12363
|
} & StyledPropsBlade;
|
|
12238
12364
|
|
|
12239
12365
|
declare const Table: <Item>({ children, data, multiSelectTrigger, selectionType, onSelectionChange, isHeaderSticky, isFooterSticky, isFirstColumnSticky, rowDensity, onSortChange, sortFunctions, toolbar, pagination, height, showStripedRows, gridTemplateColumns, isLoading, isRefreshing, showBorderedCells, defaultSelectedIds, ...styledProps }: TableProps<Item>) => React__default.ReactElement;
|
|
12240
12366
|
|
|
12241
12367
|
declare const TableHeader: ({ children }: TableHeaderRowProps) => React__default.ReactElement;
|
|
12242
|
-
declare const TableHeaderCell: ({ children, headerKey }: TableHeaderCellProps) => React__default.ReactElement;
|
|
12368
|
+
declare const TableHeaderCell: ({ children, headerKey, _hasPadding, }: TableHeaderCellProps) => React__default.ReactElement;
|
|
12243
12369
|
declare const TableHeaderRow: ({ children, rowDensity }: TableHeaderRowProps) => React__default.ReactElement;
|
|
12244
12370
|
|
|
12245
12371
|
declare const TableBody: ({ children }: TableBodyProps) => React__default.ReactElement;
|
|
12246
|
-
declare const TableCell: ({ children }: TableCellProps) => React__default.ReactElement;
|
|
12247
|
-
declare const TableRow: <Item>({ children, item, isDisabled, onHover, onClick, testID, }: TableRowProps<Item>) => React__default.ReactElement;
|
|
12372
|
+
declare const TableCell: ({ children, _hasPadding }: TableCellProps) => React__default.ReactElement;
|
|
12373
|
+
declare const TableRow: <Item>({ children, item, isDisabled, onHover, onClick, hoverActions, testID, }: TableRowProps<Item>) => React__default.ReactElement;
|
|
12248
12374
|
|
|
12249
12375
|
declare const TableFooter: ({ children }: TableFooterProps) => React__default.ReactElement;
|
|
12250
12376
|
declare const TableFooterRow: ({ children }: TableFooterRowProps) => React__default.ReactElement;
|
|
@@ -13246,4 +13372,4 @@ declare const VisuallyHidden: ({ children, testID }: VisuallyHiddenProps) => Rea
|
|
|
13246
13372
|
*/
|
|
13247
13373
|
declare const screenReaderStyles: CSSObject;
|
|
13248
13374
|
|
|
13249
|
-
export { AcceptPaymentsIcon, Accordion, AccordionItem, AccordionItemBody, AccordionItemHeader, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemAvatar, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionProps, ActivityIcon, AddressBookIcon, AffordabilityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AttachmentIcon, AutoComplete, AutoCompleteProps, AutomateAccountingIcon, AutomatePayrollIcon, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, AwardIcon, Badge, BadgeProps, BankAccountVerificationIcon, BankIcon, BarChartAltIcon, BarChartIcon, BarCodeIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BfsiIcon, BillIcon, BladeCommonEvents, BladeFile, BladeFileList, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, Breadcrumb, BreadcrumbItem, BreadcrumbItemProps, BreadcrumbProps, BriefcaseIcon, BugIcon, BuildingIcon, BulkPayoutsIcon, BusinessBankingIcon, BusinessSpendManagementIcon, Button, ButtonGroup, ButtonGroupProps, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderAmount, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, Carousel, CarouselItem, CarouselProps, CashIcon, CastIcon, CheckCircle2Icon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, ClosedCaptioningIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodeSnippetIcon, CodepenIcon, CoinIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompanyRegistrationIcon, CompassIcon, ComponentIds, ConfettiIcon, ContactlessPaymentIcon, CookieIcon, CopyIcon, CopyrightIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CreditsAndLoansIcon, CropIcon, CrosshairIcon, CurrentAccountIcon, CustomersIcon, CutIcon, DashboardIcon, DatePicker, DatePickerProps, DeleteIcon, DigitalLendingIcon, DisbursePaymentsIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DotIcon, DownloadCloudIcon, DownloadIcon, Drawer, DrawerBody, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EcommerceIcon, EditComposeIcon, EditIcon, EditInlineIcon, EducationIcon, EqualsIcon, EscrowAccountIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FileUpload, FileUploadProps, FileZipIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, ForexManagementIcon, FreelanceIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphoneIcon, HeadphonesIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconColors, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InstantSettlementIcon, InternationalPaymentsIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, LoaderIcon, LoansForBusinessesIcon, LockIcon, LogInIcon, LogOutIcon, MagicCheckoutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, Menu, MenuDivider, MenuDotsIcon, MenuFooter, MenuFooterProps, MenuHeader, MenuHeaderProps, MenuIcon, MenuItem, MenuItemProps, MenuOverlay, MenuOverlayProps, MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MobileAppIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputCommonProps, OTPInputProps, OctagonIcon, OffersIcon, OptimizerIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonIcon, PaymentButtonsIcon, PaymentGatewayIcon, PaymentLinkIcon, PaymentLinksIcon, PaymentPagesIcon, PayoutLinkIcon, PayrollAddonsIcon, PayrollForCaIcon, PayrollForStartupOrSmeIcon, PercentIcon, PettyCashBudgetIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneNumberInput, PhoneNumberInputProps, PhoneOffIcon, PhoneOutgoingIcon, PictureInPictureIcon, PieChartIcon, PinIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, PosIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RazorpayxPayrollIcon, RefreshIcon, RepeatIcon, ReportsIcon, ResizerIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RouteIcon, RoutesIcon, RupeeIcon, RupeesIcon, SIDE_NAV_EXPANDED_L1_WIDTH_BASE, SIDE_NAV_EXPANDED_L1_WIDTH_XL, SaasIcon, SaveIcon, ScissorsIcon, SearchIcon, SearchInput, SearchInputProps, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SideNav, SideNavBody, SideNavFooter, SideNavFooterProps, SideNavItem, SideNavItemProps, SideNavLevel, SideNavLink, SideNavLinkProps, SideNavProps, SideNavSection, SideNavSectionProps, SidebarIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SolutionsIcon, SourceToPayIcon, SparklesIcon, SpeakerIcon, Spinner, SpinnerProps, SpotlightPopoverStepRenderProps, SpotlightPopoverTour, SpotlightPopoverTourFooter, SpotlightPopoverTourProps, SpotlightPopoverTourStep, SpotlightPopoverTourSteps, SquareIcon, StampIcon, StarIcon, StepGroup, StepGroupProps, StepItem, StepItemIcon, StepItemIndicator, StepItemProps, StopCircleIcon, StorefrontIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabNav, TabNavItem, TabNavItemData, TabNavItemProps, TabNavItems, TabNavProps, TabPanel, TabPanelProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableEditableCell, TableEditableCellProps, TableEditableDropdownCell, TableEditableDropdownCellProps, 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, TaxPaymentsIcon, TestIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, TicketIcon, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, TokenHqIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TopNav, TopNavActions, TopNavBrand, TopNavContent, TopNavProps, TrademarkIcon, TrademarkRegisteredIcon, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TrustedBadgeIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UpiAutopayIcon, UploadCloudIcon, UploadIcon, UseToastReturn, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VendorPaymentsIcon, VideoIcon, VideoOffIcon, ViewLiveDemoIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WalletIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, drawerPadding, getHeadingProps, getTextProps, screenReaderStyles, useTheme, useToast };
|
|
13375
|
+
export { AcceptPaymentsIcon, Accordion, AccordionItem, AccordionItemBody, AccordionItemHeader, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemAvatar, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionProps, ActivityIcon, AddressBookIcon, AffordabilityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AttachmentIcon, AutoComplete, AutoCompleteProps, AutomateAccountingIcon, AutomatePayrollIcon, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, AwardIcon, Badge, BadgeProps, BankAccountVerificationIcon, BankIcon, BarChartAltIcon, BarChartIcon, BarCodeIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BfsiIcon, BillIcon, BladeCommonEvents, BladeFile, BladeFileList, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomNav, BottomNavItem, BottomNavItemProps, BottomNavProps, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, Breadcrumb, BreadcrumbItem, BreadcrumbItemProps, BreadcrumbProps, BriefcaseIcon, BugIcon, BuildingIcon, BulkPayoutsIcon, BusinessBankingIcon, BusinessSpendManagementIcon, Button, ButtonGroup, ButtonGroupProps, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderAmount, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, Carousel, CarouselItem, CarouselProps, CashIcon, CastIcon, CheckCircle2Icon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, ClosedCaptioningIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodeSnippetIcon, CodepenIcon, CoinIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompanyRegistrationIcon, CompassIcon, ComponentIds, ConfettiIcon, ContactlessPaymentIcon, CookieIcon, CopyIcon, CopyrightIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CreditsAndLoansIcon, CropIcon, CrosshairIcon, CurrentAccountIcon, CustomersIcon, CutIcon, DashboardIcon, DatePicker, DatePickerProps, DeleteIcon, DigitalLendingIcon, DisbursePaymentsIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DotIcon, DownloadCloudIcon, DownloadIcon, Drawer, DrawerBody, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EcommerceIcon, EditComposeIcon, EditIcon, EditInlineIcon, EducationIcon, EqualsIcon, EscrowAccountIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FileUpload, FileUploadProps, FileZipIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, ForexManagementIcon, FreelanceIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphoneIcon, HeadphonesIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconColors, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InstantSettlementIcon, InternationalPaymentsIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, LoaderIcon, LoansForBusinessesIcon, LockIcon, LogInIcon, LogOutIcon, MagicCheckoutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, Menu, MenuDivider, MenuDotsIcon, MenuFooter, MenuFooterProps, MenuHeader, MenuHeaderProps, MenuIcon, MenuItem, MenuItemProps, MenuOverlay, MenuOverlayProps, MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MobileAppIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputCommonProps, OTPInputProps, OctagonIcon, OffersIcon, OptimizerIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonIcon, PaymentButtonsIcon, PaymentGatewayIcon, PaymentLinkIcon, PaymentLinksIcon, PaymentPagesIcon, PayoutLinkIcon, PayrollAddonsIcon, PayrollForCaIcon, PayrollForStartupOrSmeIcon, PercentIcon, PettyCashBudgetIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneNumberInput, PhoneNumberInputProps, PhoneOffIcon, PhoneOutgoingIcon, PictureInPictureIcon, PieChartIcon, PinIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, PosIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RazorpayxPayrollIcon, RefreshIcon, RepeatIcon, ReportsIcon, ResizerIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RouteIcon, RoutesIcon, RupeeIcon, RupeesIcon, SIDE_NAV_EXPANDED_L1_WIDTH_BASE, SIDE_NAV_EXPANDED_L1_WIDTH_XL, SaasIcon, SaveIcon, ScissorsIcon, SearchIcon, SearchInput, SearchInputProps, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SideNav, SideNavBody, SideNavFooter, SideNavFooterProps, SideNavItem, SideNavItemProps, SideNavLevel, SideNavLink, SideNavLinkProps, SideNavProps, SideNavSection, SideNavSectionProps, SidebarIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SolutionsIcon, SourceToPayIcon, SparklesIcon, SpeakerIcon, Spinner, SpinnerProps, SpotlightPopoverStepRenderProps, SpotlightPopoverTour, SpotlightPopoverTourFooter, SpotlightPopoverTourProps, SpotlightPopoverTourStep, SpotlightPopoverTourSteps, SquareIcon, StampIcon, StarIcon, StepGroup, StepGroupProps, StepItem, StepItemIcon, StepItemIndicator, StepItemProps, StopCircleIcon, StorefrontIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabNav, TabNavItem, TabNavItemData, TabNavItemProps, TabNavItems, TabNavProps, TabPanel, TabPanelProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableEditableCell, TableEditableCellProps, TableEditableDropdownCell, TableEditableDropdownCellProps, 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, TaxPaymentsIcon, TestIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, TicketIcon, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, TokenHqIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TopNav, TopNavActions, TopNavBrand, TopNavContent, TopNavProps, TrademarkIcon, TrademarkRegisteredIcon, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TrustedBadgeIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UpiAutopayIcon, UploadCloudIcon, UploadIcon, UseToastReturn, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VendorPaymentsIcon, VideoIcon, VideoOffIcon, ViewLiveDemoIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WalletIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, drawerPadding, getHeadingProps, getTextProps, screenReaderStyles, useTheme, useToast };
|
|
@@ -3623,6 +3623,71 @@ type LinkButtonVariantProps = LinkPropsWithOrWithoutIcon & {
|
|
|
3623
3623
|
type LinkProps = LinkAnchorVariantProps | LinkButtonVariantProps;
|
|
3624
3624
|
declare const Link: React__default.ForwardRefExoticComponent<LinkProps & React__default.RefAttributes<BladeElementRef>>;
|
|
3625
3625
|
|
|
3626
|
+
type BottomNavProps = {
|
|
3627
|
+
/**
|
|
3628
|
+
* children slot of BottomNav, accepts BottomNavItem
|
|
3629
|
+
*/
|
|
3630
|
+
children: React__default.ReactNode;
|
|
3631
|
+
/**
|
|
3632
|
+
* zIndex of BottomNav
|
|
3633
|
+
*
|
|
3634
|
+
* @default 100
|
|
3635
|
+
*/
|
|
3636
|
+
zIndex?: number;
|
|
3637
|
+
} & StyledPropsBlade & TestID;
|
|
3638
|
+
type BottomNavItemProps = {
|
|
3639
|
+
/**
|
|
3640
|
+
* Title text of the BottomNavItem
|
|
3641
|
+
*/
|
|
3642
|
+
title: string;
|
|
3643
|
+
/**
|
|
3644
|
+
* Icon rendered above the title.
|
|
3645
|
+
*
|
|
3646
|
+
* Accepts icon component from blade
|
|
3647
|
+
*/
|
|
3648
|
+
icon: IconComponent;
|
|
3649
|
+
/**
|
|
3650
|
+
* href property of link
|
|
3651
|
+
*
|
|
3652
|
+
* maps to `to` property when react router is being used
|
|
3653
|
+
*/
|
|
3654
|
+
href?: LinkProps['href'];
|
|
3655
|
+
/**
|
|
3656
|
+
* HTML's `target` attribute for anchor links
|
|
3657
|
+
*/
|
|
3658
|
+
target?: LinkProps['target'];
|
|
3659
|
+
/**
|
|
3660
|
+
* HTML's `rel` tag of anchor links
|
|
3661
|
+
*/
|
|
3662
|
+
rel?: LinkProps['rel'];
|
|
3663
|
+
/**
|
|
3664
|
+
* as prop to pass ReactRouter's Link component.
|
|
3665
|
+
*
|
|
3666
|
+
* ```jsx
|
|
3667
|
+
* import { NavLink } from 'react-router-dom';
|
|
3668
|
+
*
|
|
3669
|
+
* <BottomNavItem as={Link} />
|
|
3670
|
+
* ```
|
|
3671
|
+
*/
|
|
3672
|
+
as?: React__default.ComponentType<any>;
|
|
3673
|
+
/**
|
|
3674
|
+
* Active state of the BottomNavItem.
|
|
3675
|
+
*
|
|
3676
|
+
* Use this to set the current page's active state using react router
|
|
3677
|
+
*/
|
|
3678
|
+
isActive?: boolean;
|
|
3679
|
+
/**
|
|
3680
|
+
* onClick handler of BottomNavItem
|
|
3681
|
+
*/
|
|
3682
|
+
onClick?: Platform.Select<{
|
|
3683
|
+
web: React__default.MouseEventHandler;
|
|
3684
|
+
native: undefined;
|
|
3685
|
+
}>;
|
|
3686
|
+
} & TestID;
|
|
3687
|
+
|
|
3688
|
+
declare const BottomNav: (_props: BottomNavProps) => React.ReactElement;
|
|
3689
|
+
declare const BottomNavItem: (_props: BottomNavItemProps) => React.ReactElement;
|
|
3690
|
+
|
|
3626
3691
|
type BreadcrumbProps = StyledPropsBlade & {
|
|
3627
3692
|
/**
|
|
3628
3693
|
* Size of the Breadcrumb
|
|
@@ -3717,9 +3782,16 @@ type IconButtonProps = {
|
|
|
3717
3782
|
} & BladeCommonEvents & Platform.Select<{
|
|
3718
3783
|
web: {
|
|
3719
3784
|
onClick: (event: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
3785
|
+
/**
|
|
3786
|
+
* This changes the hover interaction to highlight icon more
|
|
3787
|
+
*
|
|
3788
|
+
* **Only available on web currently**
|
|
3789
|
+
*/
|
|
3790
|
+
isHighlighted?: boolean;
|
|
3720
3791
|
};
|
|
3721
3792
|
native: {
|
|
3722
3793
|
onClick: (event: GestureResponderEvent) => void;
|
|
3794
|
+
isHighlighted?: undefined;
|
|
3723
3795
|
};
|
|
3724
3796
|
}>;
|
|
3725
3797
|
declare const IconButton: React__default.ForwardRefExoticComponent<{
|
|
@@ -3753,6 +3825,7 @@ declare const IconButton: React__default.ForwardRefExoticComponent<{
|
|
|
3753
3825
|
_tabIndex?: number | undefined;
|
|
3754
3826
|
} & BladeCommonEvents & {
|
|
3755
3827
|
onClick: (event: GestureResponderEvent) => void;
|
|
3828
|
+
isHighlighted?: undefined;
|
|
3756
3829
|
} & {
|
|
3757
3830
|
__brand__?: "platform-native" | undefined;
|
|
3758
3831
|
} & React__default.RefAttributes<BladeElementRef>>;
|
|
@@ -8705,7 +8778,7 @@ type TableHeaderProps = {
|
|
|
8705
8778
|
* </TableHeaderRow>
|
|
8706
8779
|
* </TableHeader>
|
|
8707
8780
|
**/
|
|
8708
|
-
children:
|
|
8781
|
+
children: React__default.ReactNode;
|
|
8709
8782
|
};
|
|
8710
8783
|
type TableHeaderRowProps = {
|
|
8711
8784
|
/**
|
|
@@ -8717,7 +8790,7 @@ type TableHeaderRowProps = {
|
|
|
8717
8790
|
* </TableHeaderRow>
|
|
8718
8791
|
* </TableHeader>
|
|
8719
8792
|
**/
|
|
8720
|
-
children:
|
|
8793
|
+
children: React__default.ReactNode;
|
|
8721
8794
|
/**
|
|
8722
8795
|
* The rowDensity prop determines the density of the table.
|
|
8723
8796
|
* The rowDensity prop can be 'compact', 'normal', or'comfortable'.
|
|
@@ -8729,20 +8802,21 @@ type TableHeaderCellProps = {
|
|
|
8729
8802
|
/**
|
|
8730
8803
|
* The children of TableHeaderCell can be a string or a ReactNode.
|
|
8731
8804
|
**/
|
|
8732
|
-
children: string |
|
|
8805
|
+
children: string | React__default.ReactNode;
|
|
8733
8806
|
/**
|
|
8734
8807
|
* The unique key of the column.
|
|
8735
8808
|
* This is used to identify the column for sorting in sortFunctions prop of Table.
|
|
8736
8809
|
* Sorting is enabled only for columns whose key is present in sortableColumns prop of Table.
|
|
8737
8810
|
**/
|
|
8738
8811
|
headerKey?: string;
|
|
8812
|
+
_hasPadding?: boolean;
|
|
8739
8813
|
};
|
|
8740
8814
|
type TableProps<Item> = {
|
|
8741
8815
|
/**
|
|
8742
8816
|
* The children of the Table component should be a function that returns TableHeader, TableBody and TableFooter components.
|
|
8743
8817
|
* The function will be called with the tableData prop.
|
|
8744
8818
|
*/
|
|
8745
|
-
children: (tableData: TableNode<Item>[]) =>
|
|
8819
|
+
children: (tableData: TableNode<Item>[]) => React__default.ReactElement;
|
|
8746
8820
|
/**
|
|
8747
8821
|
* The data prop is an object with a nodes property that is an array of objects.
|
|
8748
8822
|
* Each object in the array is a row in the table.
|
|
@@ -8820,12 +8894,12 @@ type TableProps<Item> = {
|
|
|
8820
8894
|
* The toolbar prop is a React element that is rendered above the table.
|
|
8821
8895
|
* The toolbar prop should be a `TableToolbar` component.
|
|
8822
8896
|
**/
|
|
8823
|
-
toolbar?:
|
|
8897
|
+
toolbar?: React__default.ReactElement;
|
|
8824
8898
|
/**
|
|
8825
8899
|
* The pagination prop is a React element that is rendered below the table.
|
|
8826
8900
|
* The pagination prop should be a `TablePagination` component.
|
|
8827
8901
|
**/
|
|
8828
|
-
pagination?:
|
|
8902
|
+
pagination?: React__default.ReactElement;
|
|
8829
8903
|
/**
|
|
8830
8904
|
* The height prop is a responsive styled prop that determines the height of the table.
|
|
8831
8905
|
**/
|
|
@@ -8870,7 +8944,7 @@ type TableBodyProps = {
|
|
|
8870
8944
|
* </TableRow>
|
|
8871
8945
|
* </TableBody>
|
|
8872
8946
|
**/
|
|
8873
|
-
children:
|
|
8947
|
+
children: React__default.ReactNode;
|
|
8874
8948
|
};
|
|
8875
8949
|
type TableRowProps<Item> = {
|
|
8876
8950
|
/**
|
|
@@ -8880,7 +8954,7 @@ type TableRowProps<Item> = {
|
|
|
8880
8954
|
* <TableCell>...</TableCell>
|
|
8881
8955
|
* </TableRow>
|
|
8882
8956
|
**/
|
|
8883
|
-
children:
|
|
8957
|
+
children: React__default.ReactNode;
|
|
8884
8958
|
/**
|
|
8885
8959
|
* The item prop is used to pass the individual table item to the TableRow component.
|
|
8886
8960
|
* @example
|
|
@@ -8911,6 +8985,7 @@ type TableRowProps<Item> = {
|
|
|
8911
8985
|
onClick?: ({ item }: {
|
|
8912
8986
|
item: TableNode<Item>;
|
|
8913
8987
|
}) => void;
|
|
8988
|
+
hoverActions?: React__default.ReactElement;
|
|
8914
8989
|
} & TestID;
|
|
8915
8990
|
type TableCellProps = {
|
|
8916
8991
|
/**
|
|
@@ -8924,7 +8999,13 @@ type TableCellProps = {
|
|
|
8924
8999
|
* <Button>...</Button>
|
|
8925
9000
|
* </TableCell>
|
|
8926
9001
|
**/
|
|
8927
|
-
children:
|
|
9002
|
+
children: React__default.ReactNode;
|
|
9003
|
+
/**
|
|
9004
|
+
* Removes padding from CellWrapper
|
|
9005
|
+
*
|
|
9006
|
+
* @private
|
|
9007
|
+
*/
|
|
9008
|
+
_hasPadding?: boolean;
|
|
8928
9009
|
};
|
|
8929
9010
|
type TableEditableCellProps = Pick<BaseInputProps, 'validationState' | 'placeholder' | 'defaultValue' | 'name' | 'onChange' | 'onFocus' | 'onBlur' | 'value' | 'isDisabled' | 'isRequired' | 'prefix' | 'suffix' | 'maxCharacters' | 'autoFocus' | 'keyboardReturnKeyType' | 'autoCompleteSuggestionType' | 'onSubmit' | 'autoCapitalize' | 'testID' | 'onClick' | 'leadingIcon' | 'trailingButton' | 'errorText' | 'successText'> & {
|
|
8930
9011
|
accessibilityLabel: NonNullable<BaseInputProps['accessibilityLabel']>;
|
|
@@ -8940,7 +9021,7 @@ type TableFooterProps = {
|
|
|
8940
9021
|
* </TableFooterRow>
|
|
8941
9022
|
* </TableFooter>
|
|
8942
9023
|
**/
|
|
8943
|
-
children:
|
|
9024
|
+
children: React__default.ReactNode;
|
|
8944
9025
|
};
|
|
8945
9026
|
type TableFooterRowProps = {
|
|
8946
9027
|
/**
|
|
@@ -8952,13 +9033,13 @@ type TableFooterRowProps = {
|
|
|
8952
9033
|
* </TableFooterRow>
|
|
8953
9034
|
* </TableFooter>
|
|
8954
9035
|
**/
|
|
8955
|
-
children:
|
|
9036
|
+
children: React__default.ReactNode;
|
|
8956
9037
|
};
|
|
8957
9038
|
type TableFooterCellProps = {
|
|
8958
9039
|
/**
|
|
8959
9040
|
* The children of TableHeaderCell can be a string or a ReactNode.
|
|
8960
9041
|
**/
|
|
8961
|
-
children: string |
|
|
9042
|
+
children: string | React__default.ReactNode;
|
|
8962
9043
|
};
|
|
8963
9044
|
type TablePaginationCommonProps = {
|
|
8964
9045
|
/**
|
|
@@ -9046,7 +9127,7 @@ type TableToolbarProps = {
|
|
|
9046
9127
|
/**
|
|
9047
9128
|
* The children of TableToolbar should be TableToolbarActions
|
|
9048
9129
|
*/
|
|
9049
|
-
children?:
|
|
9130
|
+
children?: React__default.ReactNode;
|
|
9050
9131
|
/**
|
|
9051
9132
|
* The title of the TableToolbar. If not provided, it will show the default title.
|
|
9052
9133
|
* @default `Showing 1 to ${totalItems} Items`
|
|
@@ -9059,7 +9140,7 @@ type TableToolbarProps = {
|
|
|
9059
9140
|
selectedTitle?: string;
|
|
9060
9141
|
};
|
|
9061
9142
|
type TableToolbarActionsProps = {
|
|
9062
|
-
children?:
|
|
9143
|
+
children?: React__default.ReactNode;
|
|
9063
9144
|
} & StyledPropsBlade;
|
|
9064
9145
|
|
|
9065
9146
|
declare const Table: <Item>(props: TableProps<Item>) => React__default.ReactElement;
|
|
@@ -9444,4 +9525,4 @@ declare const VisuallyHidden: ({ children, testID }: VisuallyHiddenProps) => Rea
|
|
|
9444
9525
|
*/
|
|
9445
9526
|
declare const screenReaderStyles: CSSObject;
|
|
9446
9527
|
|
|
9447
|
-
export { AcceptPaymentsIcon, Accordion, AccordionItem, AccordionItemBody, AccordionItemHeader, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemAvatar, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionProps, ActivityIcon, AddressBookIcon, AffordabilityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AttachmentIcon, AutoComplete, AutoCompleteProps, AutomateAccountingIcon, AutomatePayrollIcon, Avatar, AvatarGroup, AwardIcon, Badge, BadgeProps, BankAccountVerificationIcon, BankIcon, BarChartAltIcon, BarChartIcon, BarCodeIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BfsiIcon, BillIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, Breadcrumb, BreadcrumbItem, BreadcrumbItemProps, BreadcrumbProps, BriefcaseIcon, BugIcon, BuildingIcon, BulkPayoutsIcon, BusinessBankingIcon, BusinessSpendManagementIcon, Button, ButtonGroup, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderAmount, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, Carousel, CarouselItem, CarouselProps, CashIcon, CastIcon, CheckCircle2Icon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, ClosedCaptioningIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodeSnippetIcon, CodepenIcon, CoinIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompanyRegistrationIcon, CompassIcon, ComponentIds, ConfettiIcon, ContactlessPaymentIcon, CookieIcon, CopyIcon, CopyrightIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CreditsAndLoansIcon, CropIcon, CrosshairIcon, CurrentAccountIcon, CustomersIcon, CutIcon, DashboardIcon, DatePicker, DatePickerProps, DeleteIcon, DigitalLendingIcon, DisbursePaymentsIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DotIcon, DownloadCloudIcon, DownloadIcon, Drawer, DrawerBody, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EcommerceIcon, EditComposeIcon, EditIcon, EditInlineIcon, EducationIcon, EqualsIcon, EscrowAccountIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FileUpload, FileZipIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, ForexManagementIcon, FreelanceIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphoneIcon, HeadphonesIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconColors, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InstantSettlementIcon, InternationalPaymentsIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, LoaderIcon, LoansForBusinessesIcon, LockIcon, LogInIcon, LogOutIcon, MagicCheckoutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, Menu, MenuDivider, MenuDotsIcon, MenuFooter, MenuFooterProps, MenuHeader, MenuHeaderProps, MenuIcon, MenuItem, MenuItemProps, MenuOverlay, MenuOverlayProps, MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MobileAppIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputCommonProps, OTPInputProps, OctagonIcon, OffersIcon, OptimizerIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonIcon, PaymentButtonsIcon, PaymentGatewayIcon, PaymentLinkIcon, PaymentLinksIcon, PaymentPagesIcon, PayoutLinkIcon, PayrollAddonsIcon, PayrollForCaIcon, PayrollForStartupOrSmeIcon, PercentIcon, PettyCashBudgetIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneNumberInput, PhoneNumberInputProps, PhoneOffIcon, PhoneOutgoingIcon, PictureInPictureIcon, PieChartIcon, PinIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, PosIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RazorpayxPayrollIcon, RefreshIcon, RepeatIcon, ReportsIcon, ResizerIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RouteIcon, RoutesIcon, RupeeIcon, RupeesIcon, SIDE_NAV_EXPANDED_L1_WIDTH_BASE, SIDE_NAV_EXPANDED_L1_WIDTH_XL, SaasIcon, SaveIcon, ScissorsIcon, SearchIcon, SearchInput, SearchInputProps, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SideNav, SideNavBody, SideNavFooter, SideNavFooterProps, SideNavItem, SideNavItemProps, SideNavLevel, SideNavLink, SideNavLinkProps, SideNavProps, SideNavSection, SideNavSectionProps, SidebarIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SolutionsIcon, SourceToPayIcon, SparklesIcon, SpeakerIcon, Spinner, SpinnerProps, SpotlightPopoverStepRenderProps, SpotlightPopoverTourFooter, SpotlightPopoverTourProps, SpotlightPopoverTourStep, SpotlightPopoverTourSteps, SquareIcon, StampIcon, StarIcon, StepGroup, StepGroupProps, StepItem, StepItemIcon, StepItemIndicator, StepItemProps, StopCircleIcon, StorefrontIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabNav, TabNavItem, TabNavItemData, TabNavItemProps, TabNavProps, TabPanel, TabPanelProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableEditableCell, TableEditableCellProps, TableEditableDropdownCell, TableEditableDropdownCellProps, TableFooter, TableFooterCell, TableFooterCellProps, TableFooterProps, TableFooterRow, TableFooterRowProps, TableHeader, TableHeaderCell, TableHeaderCellProps, TableHeaderProps, TableHeaderRow, TableHeaderRowProps, TableNode, TablePagination, TablePaginationProps$1 as TablePaginationProps, TableProps, TableRow, TableRowProps, TableToolbar, TableToolbarActions, TableToolbarActionsProps, TableToolbarProps, TabletIcon, Tabs, TabsProps, Tag, TagIcon, TagProps, TargetIcon, TaxPaymentsIcon, TestIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, TicketIcon, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, TokenHqIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TopNav, Tour, TrademarkIcon, TrademarkRegisteredIcon, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TrustedBadgeIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UpiAutopayIcon, UploadCloudIcon, UploadIcon, UseToastReturn, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VendorPaymentsIcon, VideoIcon, VideoOffIcon, ViewLiveDemoIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WalletIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getHeadingProps, getTextProps, screenReaderStyles, useTheme, useToast };
|
|
9528
|
+
export { AcceptPaymentsIcon, Accordion, AccordionItem, AccordionItemBody, AccordionItemHeader, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemAvatar, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionProps, ActivityIcon, AddressBookIcon, AffordabilityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AttachmentIcon, AutoComplete, AutoCompleteProps, AutomateAccountingIcon, AutomatePayrollIcon, Avatar, AvatarGroup, AwardIcon, Badge, BadgeProps, BankAccountVerificationIcon, BankIcon, BarChartAltIcon, BarChartIcon, BarCodeIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BfsiIcon, BillIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomNav, BottomNavItem, BottomNavItemProps, BottomNavProps, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, Breadcrumb, BreadcrumbItem, BreadcrumbItemProps, BreadcrumbProps, BriefcaseIcon, BugIcon, BuildingIcon, BulkPayoutsIcon, BusinessBankingIcon, BusinessSpendManagementIcon, Button, ButtonGroup, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderAmount, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, Carousel, CarouselItem, CarouselProps, CashIcon, CastIcon, CheckCircle2Icon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, ClosedCaptioningIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodeSnippetIcon, CodepenIcon, CoinIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompanyRegistrationIcon, CompassIcon, ComponentIds, ConfettiIcon, ContactlessPaymentIcon, CookieIcon, CopyIcon, CopyrightIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CreditsAndLoansIcon, CropIcon, CrosshairIcon, CurrentAccountIcon, CustomersIcon, CutIcon, DashboardIcon, DatePicker, DatePickerProps, DeleteIcon, DigitalLendingIcon, DisbursePaymentsIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DotIcon, DownloadCloudIcon, DownloadIcon, Drawer, DrawerBody, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EcommerceIcon, EditComposeIcon, EditIcon, EditInlineIcon, EducationIcon, EqualsIcon, EscrowAccountIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FileUpload, FileZipIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, ForexManagementIcon, FreelanceIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphoneIcon, HeadphonesIcon, HeadsetIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconColors, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InstantSettlementIcon, InternationalPaymentsIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, LoaderIcon, LoansForBusinessesIcon, LockIcon, LogInIcon, LogOutIcon, MagicCheckoutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, Menu, MenuDivider, MenuDotsIcon, MenuFooter, MenuFooterProps, MenuHeader, MenuHeaderProps, MenuIcon, MenuItem, MenuItemProps, MenuOverlay, MenuOverlayProps, MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MobileAppIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputCommonProps, OTPInputProps, OctagonIcon, OffersIcon, OptimizerIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonIcon, PaymentButtonsIcon, PaymentGatewayIcon, PaymentLinkIcon, PaymentLinksIcon, PaymentPagesIcon, PayoutLinkIcon, PayrollAddonsIcon, PayrollForCaIcon, PayrollForStartupOrSmeIcon, PercentIcon, PettyCashBudgetIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneNumberInput, PhoneNumberInputProps, PhoneOffIcon, PhoneOutgoingIcon, PictureInPictureIcon, PieChartIcon, PinIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, PosIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RazorpayxPayrollIcon, RefreshIcon, RepeatIcon, ReportsIcon, ResizerIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RouteIcon, RoutesIcon, RupeeIcon, RupeesIcon, SIDE_NAV_EXPANDED_L1_WIDTH_BASE, SIDE_NAV_EXPANDED_L1_WIDTH_XL, SaasIcon, SaveIcon, ScissorsIcon, SearchIcon, SearchInput, SearchInputProps, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SideNav, SideNavBody, SideNavFooter, SideNavFooterProps, SideNavItem, SideNavItemProps, SideNavLevel, SideNavLink, SideNavLinkProps, SideNavProps, SideNavSection, SideNavSectionProps, SidebarIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SolutionsIcon, SourceToPayIcon, SparklesIcon, SpeakerIcon, Spinner, SpinnerProps, SpotlightPopoverStepRenderProps, SpotlightPopoverTourFooter, SpotlightPopoverTourProps, SpotlightPopoverTourStep, SpotlightPopoverTourSteps, SquareIcon, StampIcon, StarIcon, StepGroup, StepGroupProps, StepItem, StepItemIcon, StepItemIndicator, StepItemProps, StopCircleIcon, StorefrontIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabItem, TabItemProps, TabList, TabNav, TabNavItem, TabNavItemData, TabNavItemProps, TabNavProps, TabPanel, TabPanelProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableEditableCell, TableEditableCellProps, TableEditableDropdownCell, TableEditableDropdownCellProps, TableFooter, TableFooterCell, TableFooterCellProps, TableFooterProps, TableFooterRow, TableFooterRowProps, TableHeader, TableHeaderCell, TableHeaderCellProps, TableHeaderProps, TableHeaderRow, TableHeaderRowProps, TableNode, TablePagination, TablePaginationProps$1 as TablePaginationProps, TableProps, TableRow, TableRowProps, TableToolbar, TableToolbarActions, TableToolbarActionsProps, TableToolbarProps, TabletIcon, Tabs, TabsProps, Tag, TagIcon, TagProps, TargetIcon, TaxPaymentsIcon, TestIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, TicketIcon, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, TokenHqIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TopNav, Tour, TrademarkIcon, TrademarkRegisteredIcon, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TrustedBadgeIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UpiAutopayIcon, UploadCloudIcon, UploadIcon, UseToastReturn, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VendorPaymentsIcon, VideoIcon, VideoOffIcon, ViewLiveDemoIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WalletIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getHeadingProps, getTextProps, screenReaderStyles, useTheme, useToast };
|