@razorpay/blade 11.9.1 → 11.10.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.
Files changed (115) hide show
  1. package/build/lib/native/components/Box/Box.js +1 -1
  2. package/build/lib/native/components/Box/Box.js.map +1 -1
  3. package/build/lib/native/components/Button/BaseButton/BaseButton.js +1 -1
  4. package/build/lib/native/components/Button/BaseButton/BaseButton.js.map +1 -1
  5. package/build/lib/native/components/Dropdown/Dropdown.js +1 -1
  6. package/build/lib/native/components/Dropdown/Dropdown.js.map +1 -1
  7. package/build/lib/native/components/Dropdown/dropdownComponentIds.js +1 -1
  8. package/build/lib/native/components/Dropdown/dropdownComponentIds.js.map +1 -1
  9. package/build/lib/native/components/Input/BaseInput/BaseInput.js +1 -1
  10. package/build/lib/native/components/Input/BaseInput/BaseInput.js.map +1 -1
  11. package/build/lib/native/components/Input/BaseInput/BaseInputVisuals.js +1 -1
  12. package/build/lib/native/components/Input/BaseInput/BaseInputVisuals.js.map +1 -1
  13. package/build/lib/native/components/Input/BaseInput/StyledBaseInput.native.js +1 -1
  14. package/build/lib/native/components/Input/BaseInput/StyledBaseInput.native.js.map +1 -1
  15. package/build/lib/native/components/Input/BaseInput/baseInputStyles.js +2 -2
  16. package/build/lib/native/components/Input/BaseInput/baseInputStyles.js.map +1 -1
  17. package/build/lib/native/components/Input/BaseInput/utils.js +4 -0
  18. package/build/lib/native/components/Input/BaseInput/utils.js.map +1 -0
  19. package/build/lib/native/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js +1 -1
  20. package/build/lib/native/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js.map +1 -1
  21. package/build/lib/native/components/Input/PasswordInput/PasswordInput.js +1 -1
  22. package/build/lib/native/components/Input/PasswordInput/PasswordInput.js.map +1 -1
  23. package/build/lib/native/components/Input/PhoneNumberInput/PhoneNumberInput.native.js +7 -0
  24. package/build/lib/native/components/Input/PhoneNumberInput/PhoneNumberInput.native.js.map +1 -0
  25. package/build/lib/native/components/Input/TextArea/TextArea.js +1 -1
  26. package/build/lib/native/components/Input/TextArea/TextArea.js.map +1 -1
  27. package/build/lib/native/components/Input/TextInput/TextInput.js +2 -1
  28. package/build/lib/native/components/Input/TextInput/TextInput.js.map +1 -1
  29. package/build/lib/native/components/index.js +1 -0
  30. package/build/lib/native/components/index.js.map +1 -1
  31. package/build/lib/native/utils/metaAttribute/metaConstants.js +1 -1
  32. package/build/lib/native/utils/metaAttribute/metaConstants.js.map +1 -1
  33. package/build/lib/web/development/components/Box/BaseBox/BaseBox.web.js +6 -1
  34. package/build/lib/web/development/components/Box/BaseBox/BaseBox.web.js.map +1 -1
  35. package/build/lib/web/development/components/Box/Box.js +2 -1
  36. package/build/lib/web/development/components/Box/Box.js.map +1 -1
  37. package/build/lib/web/development/components/Button/BaseButton/BaseButton.js +8 -6
  38. package/build/lib/web/development/components/Button/BaseButton/BaseButton.js.map +1 -1
  39. package/build/lib/web/development/components/Dropdown/Dropdown.js +3 -1
  40. package/build/lib/web/development/components/Dropdown/Dropdown.js.map +1 -1
  41. package/build/lib/web/development/components/Dropdown/DropdownOverlay.web.js +7 -6
  42. package/build/lib/web/development/components/Dropdown/DropdownOverlay.web.js.map +1 -1
  43. package/build/lib/web/development/components/Dropdown/dropdownComponentIds.js +1 -0
  44. package/build/lib/web/development/components/Dropdown/dropdownComponentIds.js.map +1 -1
  45. package/build/lib/web/development/components/Input/BaseInput/BaseInput.js +8 -5
  46. package/build/lib/web/development/components/Input/BaseInput/BaseInput.js.map +1 -1
  47. package/build/lib/web/development/components/Input/BaseInput/BaseInputVisuals.js +43 -28
  48. package/build/lib/web/development/components/Input/BaseInput/BaseInputVisuals.js.map +1 -1
  49. package/build/lib/web/development/components/Input/BaseInput/StyledBaseInput.web.js +2 -1
  50. package/build/lib/web/development/components/Input/BaseInput/StyledBaseInput.web.js.map +1 -1
  51. package/build/lib/web/development/components/Input/BaseInput/baseInputStyles.js +9 -7
  52. package/build/lib/web/development/components/Input/BaseInput/baseInputStyles.js.map +1 -1
  53. package/build/lib/web/development/components/Input/BaseInput/utils.js +73 -0
  54. package/build/lib/web/development/components/Input/BaseInput/utils.js.map +1 -0
  55. package/build/lib/web/development/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js +1 -1
  56. package/build/lib/web/development/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js.map +1 -1
  57. package/build/lib/web/development/components/Input/PasswordInput/PasswordInput.js +1 -1
  58. package/build/lib/web/development/components/Input/PasswordInput/PasswordInput.js.map +1 -1
  59. package/build/lib/web/development/components/Input/PhoneNumberInput/CountrySelector.web.js +111 -0
  60. package/build/lib/web/development/components/Input/PhoneNumberInput/CountrySelector.web.js.map +1 -0
  61. package/build/lib/web/development/components/Input/PhoneNumberInput/PhoneNumberInput.web.js +242 -0
  62. package/build/lib/web/development/components/Input/PhoneNumberInput/PhoneNumberInput.web.js.map +1 -0
  63. package/build/lib/web/development/components/Input/PhoneNumberInput/index.js +2 -0
  64. package/build/lib/web/development/components/Input/PhoneNumberInput/index.js.map +1 -0
  65. package/build/lib/web/development/components/Input/TextArea/TextArea.js +1 -1
  66. package/build/lib/web/development/components/Input/TextArea/TextArea.js.map +1 -1
  67. package/build/lib/web/development/components/Input/TextInput/TextInput.js +45 -115
  68. package/build/lib/web/development/components/Input/TextInput/TextInput.js.map +1 -1
  69. package/build/lib/web/development/components/index.js +2 -0
  70. package/build/lib/web/development/components/index.js.map +1 -1
  71. package/build/lib/web/development/utils/metaAttribute/metaConstants.js +1 -0
  72. package/build/lib/web/development/utils/metaAttribute/metaConstants.js.map +1 -1
  73. package/build/lib/web/production/components/Box/BaseBox/BaseBox.web.js +6 -1
  74. package/build/lib/web/production/components/Box/BaseBox/BaseBox.web.js.map +1 -1
  75. package/build/lib/web/production/components/Box/Box.js +2 -1
  76. package/build/lib/web/production/components/Box/Box.js.map +1 -1
  77. package/build/lib/web/production/components/Button/BaseButton/BaseButton.js +8 -6
  78. package/build/lib/web/production/components/Button/BaseButton/BaseButton.js.map +1 -1
  79. package/build/lib/web/production/components/Dropdown/Dropdown.js +3 -1
  80. package/build/lib/web/production/components/Dropdown/Dropdown.js.map +1 -1
  81. package/build/lib/web/production/components/Dropdown/DropdownOverlay.web.js +7 -6
  82. package/build/lib/web/production/components/Dropdown/DropdownOverlay.web.js.map +1 -1
  83. package/build/lib/web/production/components/Dropdown/dropdownComponentIds.js +1 -0
  84. package/build/lib/web/production/components/Dropdown/dropdownComponentIds.js.map +1 -1
  85. package/build/lib/web/production/components/Input/BaseInput/BaseInput.js +8 -5
  86. package/build/lib/web/production/components/Input/BaseInput/BaseInput.js.map +1 -1
  87. package/build/lib/web/production/components/Input/BaseInput/BaseInputVisuals.js +43 -28
  88. package/build/lib/web/production/components/Input/BaseInput/BaseInputVisuals.js.map +1 -1
  89. package/build/lib/web/production/components/Input/BaseInput/StyledBaseInput.web.js +2 -1
  90. package/build/lib/web/production/components/Input/BaseInput/StyledBaseInput.web.js.map +1 -1
  91. package/build/lib/web/production/components/Input/BaseInput/baseInputStyles.js +9 -7
  92. package/build/lib/web/production/components/Input/BaseInput/baseInputStyles.js.map +1 -1
  93. package/build/lib/web/production/components/Input/BaseInput/utils.js +73 -0
  94. package/build/lib/web/production/components/Input/BaseInput/utils.js.map +1 -0
  95. package/build/lib/web/production/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js +1 -1
  96. package/build/lib/web/production/components/Input/DropdownInputTriggers/BaseDropdownInputTrigger.js.map +1 -1
  97. package/build/lib/web/production/components/Input/PasswordInput/PasswordInput.js +1 -1
  98. package/build/lib/web/production/components/Input/PasswordInput/PasswordInput.js.map +1 -1
  99. package/build/lib/web/production/components/Input/PhoneNumberInput/CountrySelector.web.js +111 -0
  100. package/build/lib/web/production/components/Input/PhoneNumberInput/CountrySelector.web.js.map +1 -0
  101. package/build/lib/web/production/components/Input/PhoneNumberInput/PhoneNumberInput.web.js +242 -0
  102. package/build/lib/web/production/components/Input/PhoneNumberInput/PhoneNumberInput.web.js.map +1 -0
  103. package/build/lib/web/production/components/Input/PhoneNumberInput/index.js +2 -0
  104. package/build/lib/web/production/components/Input/PhoneNumberInput/index.js.map +1 -0
  105. package/build/lib/web/production/components/Input/TextArea/TextArea.js +1 -1
  106. package/build/lib/web/production/components/Input/TextArea/TextArea.js.map +1 -1
  107. package/build/lib/web/production/components/Input/TextInput/TextInput.js +45 -115
  108. package/build/lib/web/production/components/Input/TextInput/TextInput.js.map +1 -1
  109. package/build/lib/web/production/components/index.js +2 -0
  110. package/build/lib/web/production/components/index.js.map +1 -1
  111. package/build/lib/web/production/utils/metaAttribute/metaConstants.js +1 -0
  112. package/build/lib/web/production/utils/metaAttribute/metaConstants.js.map +1 -1
  113. package/build/types/components/index.d.ts +442 -3
  114. package/build/types/components/index.native.d.ts +98 -2
  115. package/package.json +4 -4
@@ -8,6 +8,7 @@ import { ReactDOMAttributes } from '@use-gesture/react/dist/declarations/src/typ
8
8
  import { CurrencyCodeType } from '@razorpay/i18nify-js/currency';
9
9
  import * as csstype from 'csstype';
10
10
  import { Placement, UseFloatingOptions } from '@floating-ui/react';
11
+ import { CountryCodeType } from '@razorpay/i18nify-js';
11
12
  import { Toast } from 'react-hot-toast';
12
13
 
13
14
  type BorderRadius = Readonly<{
@@ -5356,6 +5357,13 @@ type DropdownOverlayProps = {
5356
5357
  */
5357
5358
  zIndex?: number;
5358
5359
  width?: BoxProps['width'];
5360
+ /**
5361
+ * Reference to the element which triggers the DropdownOverlay
5362
+ *
5363
+ * This is used to position the DropdownOverlay relative to a specific element,
5364
+ * for example in PhoneNumberInput the DropdownOverlay is positioned relative to the input element
5365
+ */
5366
+ referenceRef?: React__default.MutableRefObject<ContainerElementType | null>;
5359
5367
  /**
5360
5368
  * Sets the placement of the DropdownOverlay
5361
5369
  *
@@ -5366,7 +5374,7 @@ type DropdownOverlayProps = {
5366
5374
 
5367
5375
  declare const Dropdown: ({ children, isOpen: isOpenControlled, onOpenChange, selectionType, testID, ...styledProps }: DropdownProps) => React__default.ReactElement;
5368
5376
 
5369
- declare const DropdownOverlay: ({ children, testID, zIndex, width, defaultPlacement, }: DropdownOverlayProps) => React__default.ReactElement | null;
5377
+ declare const DropdownOverlay: ({ children, testID, zIndex, width, referenceRef, defaultPlacement, }: DropdownOverlayProps) => React__default.ReactElement | null;
5370
5378
 
5371
5379
  type DropdownButtonProps = ButtonProps & {
5372
5380
  onBlur?: BaseButtonProps['onBlur'];
@@ -5754,7 +5762,13 @@ type BaseInputCommonProps = FormInputLabelProps & FormInputValidationProps & {
5754
5762
  *
5755
5763
  * eg: consumers can render a loader or they could render a clear button
5756
5764
  */
5757
- interactionElement?: ReactNode;
5765
+ trailingInteractionElement?: ReactNode;
5766
+ /**
5767
+ * Element to be rendered before prefix. This is decided by the component which is extending BaseInput
5768
+ *
5769
+ * eg: consumers can render a country selector or button
5770
+ */
5771
+ leadingInteractionElement?: ReactNode;
5758
5772
  /**
5759
5773
  * Suffix symbol to be displayed at the end of the input field. If trailingIcon is provided it'll be placed before it
5760
5774
  */
@@ -6362,6 +6376,431 @@ type TextInputPropsWithLabel = {
6362
6376
  type TextInputProps = (TextInputPropsWithA11yLabel | TextInputPropsWithLabel) & TextInputCommonProps;
6363
6377
  declare const TextInput: React__default.ForwardRefExoticComponent<TextInputProps & React__default.RefAttributes<BladeElementRef>>;
6364
6378
 
6379
+ /**
6380
+ * PhoneNumberInput is a component that allows users to input phone numbers.
6381
+ * It provides a country selector dropdown to select the country code.
6382
+ *
6383
+ * @example
6384
+ *
6385
+ * ```ts
6386
+ * <PhoneNumberInput />
6387
+ * ```
6388
+ */
6389
+ declare const PhoneNumberInput: React__default.ForwardRefExoticComponent<Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
6390
+ bottom: SpacingValueType | {
6391
+ readonly base?: SpacingValueType | undefined;
6392
+ readonly xs?: SpacingValueType | undefined;
6393
+ readonly s?: SpacingValueType | undefined;
6394
+ readonly m?: SpacingValueType | undefined;
6395
+ readonly l?: SpacingValueType | undefined;
6396
+ readonly xl?: SpacingValueType | undefined;
6397
+ };
6398
+ left: SpacingValueType | {
6399
+ readonly base?: SpacingValueType | undefined;
6400
+ readonly xs?: SpacingValueType | undefined;
6401
+ readonly s?: SpacingValueType | undefined;
6402
+ readonly m?: SpacingValueType | undefined;
6403
+ readonly l?: SpacingValueType | undefined;
6404
+ readonly xl?: SpacingValueType | undefined;
6405
+ };
6406
+ position?: csstype.Property.Position | {
6407
+ readonly base?: csstype.Property.Position | undefined;
6408
+ readonly xs?: csstype.Property.Position | undefined;
6409
+ readonly s?: csstype.Property.Position | undefined;
6410
+ readonly m?: csstype.Property.Position | undefined;
6411
+ readonly l?: csstype.Property.Position | undefined;
6412
+ readonly xl?: csstype.Property.Position | undefined;
6413
+ } | undefined;
6414
+ right: SpacingValueType | {
6415
+ readonly base?: SpacingValueType | undefined;
6416
+ readonly xs?: SpacingValueType | undefined;
6417
+ readonly s?: SpacingValueType | undefined;
6418
+ readonly m?: SpacingValueType | undefined;
6419
+ readonly l?: SpacingValueType | undefined;
6420
+ readonly xl?: SpacingValueType | undefined;
6421
+ };
6422
+ top: SpacingValueType | {
6423
+ readonly base?: SpacingValueType | undefined;
6424
+ readonly xs?: SpacingValueType | undefined;
6425
+ readonly s?: SpacingValueType | undefined;
6426
+ readonly m?: SpacingValueType | undefined;
6427
+ readonly l?: SpacingValueType | undefined;
6428
+ readonly xl?: SpacingValueType | undefined;
6429
+ };
6430
+ zIndex?: csstype.Property.ZIndex | {
6431
+ readonly base?: csstype.Property.ZIndex | undefined;
6432
+ readonly xs?: csstype.Property.ZIndex | undefined;
6433
+ readonly s?: csstype.Property.ZIndex | undefined;
6434
+ readonly m?: csstype.Property.ZIndex | undefined;
6435
+ readonly l?: csstype.Property.ZIndex | undefined;
6436
+ readonly xl?: csstype.Property.ZIndex | undefined;
6437
+ } | undefined;
6438
+ __brand__?: "platform-web" | {
6439
+ readonly base?: "platform-web" | undefined;
6440
+ readonly xs?: "platform-web" | undefined;
6441
+ readonly s?: "platform-web" | undefined;
6442
+ readonly m?: "platform-web" | undefined;
6443
+ readonly l?: "platform-web" | undefined;
6444
+ readonly xl?: "platform-web" | undefined;
6445
+ } | undefined;
6446
+ } & Pick<{
6447
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
6448
+ readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
6449
+ readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
6450
+ readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
6451
+ readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
6452
+ readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
6453
+ readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
6454
+ } | undefined;
6455
+ gridAutoFlow?: csstype.Property.GridAutoFlow | {
6456
+ readonly base?: csstype.Property.GridAutoFlow | undefined;
6457
+ readonly xs?: csstype.Property.GridAutoFlow | undefined;
6458
+ readonly s?: csstype.Property.GridAutoFlow | undefined;
6459
+ readonly m?: csstype.Property.GridAutoFlow | undefined;
6460
+ readonly l?: csstype.Property.GridAutoFlow | undefined;
6461
+ readonly xl?: csstype.Property.GridAutoFlow | undefined;
6462
+ } | undefined;
6463
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
6464
+ readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
6465
+ readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
6466
+ readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
6467
+ readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
6468
+ readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
6469
+ readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
6470
+ } | undefined;
6471
+ gridColumnEnd?: csstype.Property.GridColumnEnd | {
6472
+ readonly base?: csstype.Property.GridColumnEnd | undefined;
6473
+ readonly xs?: csstype.Property.GridColumnEnd | undefined;
6474
+ readonly s?: csstype.Property.GridColumnEnd | undefined;
6475
+ readonly m?: csstype.Property.GridColumnEnd | undefined;
6476
+ readonly l?: csstype.Property.GridColumnEnd | undefined;
6477
+ readonly xl?: csstype.Property.GridColumnEnd | undefined;
6478
+ } | undefined;
6479
+ gridColumnStart?: csstype.Property.GridColumnStart | {
6480
+ readonly base?: csstype.Property.GridColumnStart | undefined;
6481
+ readonly xs?: csstype.Property.GridColumnStart | undefined;
6482
+ readonly s?: csstype.Property.GridColumnStart | undefined;
6483
+ readonly m?: csstype.Property.GridColumnStart | undefined;
6484
+ readonly l?: csstype.Property.GridColumnStart | undefined;
6485
+ readonly xl?: csstype.Property.GridColumnStart | undefined;
6486
+ } | undefined;
6487
+ gridRowEnd?: csstype.Property.GridRowEnd | {
6488
+ readonly base?: csstype.Property.GridRowEnd | undefined;
6489
+ readonly xs?: csstype.Property.GridRowEnd | undefined;
6490
+ readonly s?: csstype.Property.GridRowEnd | undefined;
6491
+ readonly m?: csstype.Property.GridRowEnd | undefined;
6492
+ readonly l?: csstype.Property.GridRowEnd | undefined;
6493
+ readonly xl?: csstype.Property.GridRowEnd | undefined;
6494
+ } | undefined;
6495
+ gridRowStart?: csstype.Property.GridRowStart | {
6496
+ readonly base?: csstype.Property.GridRowStart | undefined;
6497
+ readonly xs?: csstype.Property.GridRowStart | undefined;
6498
+ readonly s?: csstype.Property.GridRowStart | undefined;
6499
+ readonly m?: csstype.Property.GridRowStart | undefined;
6500
+ readonly l?: csstype.Property.GridRowStart | undefined;
6501
+ readonly xl?: csstype.Property.GridRowStart | undefined;
6502
+ } | undefined;
6503
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
6504
+ readonly base?: csstype.Property.GridTemplateAreas | undefined;
6505
+ readonly xs?: csstype.Property.GridTemplateAreas | undefined;
6506
+ readonly s?: csstype.Property.GridTemplateAreas | undefined;
6507
+ readonly m?: csstype.Property.GridTemplateAreas | undefined;
6508
+ readonly l?: csstype.Property.GridTemplateAreas | undefined;
6509
+ readonly xl?: csstype.Property.GridTemplateAreas | undefined;
6510
+ } | undefined;
6511
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
6512
+ readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
6513
+ readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
6514
+ readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
6515
+ readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
6516
+ readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
6517
+ readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
6518
+ } | undefined;
6519
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
6520
+ readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
6521
+ readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
6522
+ readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
6523
+ readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
6524
+ readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
6525
+ readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
6526
+ } | undefined;
6527
+ grid?: csstype.Property.Grid | {
6528
+ readonly base?: csstype.Property.Grid | undefined;
6529
+ readonly xs?: csstype.Property.Grid | undefined;
6530
+ readonly s?: csstype.Property.Grid | undefined;
6531
+ readonly m?: csstype.Property.Grid | undefined;
6532
+ readonly l?: csstype.Property.Grid | undefined;
6533
+ readonly xl?: csstype.Property.Grid | undefined;
6534
+ } | undefined;
6535
+ gridArea?: csstype.Property.GridArea | {
6536
+ readonly base?: csstype.Property.GridArea | undefined;
6537
+ readonly xs?: csstype.Property.GridArea | undefined;
6538
+ readonly s?: csstype.Property.GridArea | undefined;
6539
+ readonly m?: csstype.Property.GridArea | undefined;
6540
+ readonly l?: csstype.Property.GridArea | undefined;
6541
+ readonly xl?: csstype.Property.GridArea | undefined;
6542
+ } | undefined;
6543
+ gridColumn?: csstype.Property.GridColumn | {
6544
+ readonly base?: csstype.Property.GridColumn | undefined;
6545
+ readonly xs?: csstype.Property.GridColumn | undefined;
6546
+ readonly s?: csstype.Property.GridColumn | undefined;
6547
+ readonly m?: csstype.Property.GridColumn | undefined;
6548
+ readonly l?: csstype.Property.GridColumn | undefined;
6549
+ readonly xl?: csstype.Property.GridColumn | undefined;
6550
+ } | undefined;
6551
+ gridRow?: csstype.Property.GridRow | {
6552
+ readonly base?: csstype.Property.GridRow | undefined;
6553
+ readonly xs?: csstype.Property.GridRow | undefined;
6554
+ readonly s?: csstype.Property.GridRow | undefined;
6555
+ readonly m?: csstype.Property.GridRow | undefined;
6556
+ readonly l?: csstype.Property.GridRow | undefined;
6557
+ readonly xl?: csstype.Property.GridRow | undefined;
6558
+ } | undefined;
6559
+ gridTemplate?: csstype.Property.GridTemplate | {
6560
+ readonly base?: csstype.Property.GridTemplate | undefined;
6561
+ readonly xs?: csstype.Property.GridTemplate | undefined;
6562
+ readonly s?: csstype.Property.GridTemplate | undefined;
6563
+ readonly m?: csstype.Property.GridTemplate | undefined;
6564
+ readonly l?: csstype.Property.GridTemplate | undefined;
6565
+ readonly xl?: csstype.Property.GridTemplate | undefined;
6566
+ } | undefined;
6567
+ __brand__?: "platform-web" | {
6568
+ readonly base?: "platform-web" | undefined;
6569
+ readonly xs?: "platform-web" | undefined;
6570
+ readonly s?: "platform-web" | undefined;
6571
+ readonly m?: "platform-web" | undefined;
6572
+ readonly l?: "platform-web" | undefined;
6573
+ readonly xl?: "platform-web" | undefined;
6574
+ } | undefined;
6575
+ }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
6576
+ width: SpacingValueType | {
6577
+ readonly base?: SpacingValueType | undefined;
6578
+ readonly xs?: SpacingValueType | undefined;
6579
+ readonly s?: SpacingValueType | undefined;
6580
+ readonly m?: SpacingValueType | undefined;
6581
+ readonly l?: SpacingValueType | undefined;
6582
+ readonly xl?: SpacingValueType | undefined;
6583
+ };
6584
+ display?: csstype.Property.Display | {
6585
+ readonly base?: csstype.Property.Display | undefined;
6586
+ readonly xs?: csstype.Property.Display | undefined;
6587
+ readonly s?: csstype.Property.Display | undefined;
6588
+ readonly m?: csstype.Property.Display | undefined;
6589
+ readonly l?: csstype.Property.Display | undefined;
6590
+ readonly xl?: csstype.Property.Display | undefined;
6591
+ } | undefined;
6592
+ height: SpacingValueType | {
6593
+ readonly base?: SpacingValueType | undefined;
6594
+ readonly xs?: SpacingValueType | undefined;
6595
+ readonly s?: SpacingValueType | undefined;
6596
+ readonly m?: SpacingValueType | undefined;
6597
+ readonly l?: SpacingValueType | undefined;
6598
+ readonly xl?: SpacingValueType | undefined;
6599
+ };
6600
+ maxHeight: SpacingValueType | {
6601
+ readonly base?: SpacingValueType | undefined;
6602
+ readonly xs?: SpacingValueType | undefined;
6603
+ readonly s?: SpacingValueType | undefined;
6604
+ readonly m?: SpacingValueType | undefined;
6605
+ readonly l?: SpacingValueType | undefined;
6606
+ readonly xl?: SpacingValueType | undefined;
6607
+ };
6608
+ maxWidth: SpacingValueType | {
6609
+ readonly base?: SpacingValueType | undefined;
6610
+ readonly xs?: SpacingValueType | undefined;
6611
+ readonly s?: SpacingValueType | undefined;
6612
+ readonly m?: SpacingValueType | undefined;
6613
+ readonly l?: SpacingValueType | undefined;
6614
+ readonly xl?: SpacingValueType | undefined;
6615
+ };
6616
+ minHeight: SpacingValueType | {
6617
+ readonly base?: SpacingValueType | undefined;
6618
+ readonly xs?: SpacingValueType | undefined;
6619
+ readonly s?: SpacingValueType | undefined;
6620
+ readonly m?: SpacingValueType | undefined;
6621
+ readonly l?: SpacingValueType | undefined;
6622
+ readonly xl?: SpacingValueType | undefined;
6623
+ };
6624
+ minWidth: SpacingValueType | {
6625
+ readonly base?: SpacingValueType | undefined;
6626
+ readonly xs?: SpacingValueType | undefined;
6627
+ readonly s?: SpacingValueType | undefined;
6628
+ readonly m?: SpacingValueType | undefined;
6629
+ readonly l?: SpacingValueType | undefined;
6630
+ readonly xl?: SpacingValueType | undefined;
6631
+ };
6632
+ overflowX?: csstype.Property.OverflowX | {
6633
+ readonly base?: csstype.Property.OverflowX | undefined;
6634
+ readonly xs?: csstype.Property.OverflowX | undefined;
6635
+ readonly s?: csstype.Property.OverflowX | undefined;
6636
+ readonly m?: csstype.Property.OverflowX | undefined;
6637
+ readonly l?: csstype.Property.OverflowX | undefined;
6638
+ readonly xl?: csstype.Property.OverflowX | undefined;
6639
+ } | undefined;
6640
+ overflowY?: csstype.Property.OverflowY | {
6641
+ readonly base?: csstype.Property.OverflowY | undefined;
6642
+ readonly xs?: csstype.Property.OverflowY | undefined;
6643
+ readonly s?: csstype.Property.OverflowY | undefined;
6644
+ readonly m?: csstype.Property.OverflowY | undefined;
6645
+ readonly l?: csstype.Property.OverflowY | undefined;
6646
+ readonly xl?: csstype.Property.OverflowY | undefined;
6647
+ } | undefined;
6648
+ textAlign?: csstype.Property.TextAlign | {
6649
+ readonly base?: csstype.Property.TextAlign | undefined;
6650
+ readonly xs?: csstype.Property.TextAlign | undefined;
6651
+ readonly s?: csstype.Property.TextAlign | undefined;
6652
+ readonly m?: csstype.Property.TextAlign | undefined;
6653
+ readonly l?: csstype.Property.TextAlign | undefined;
6654
+ readonly xl?: csstype.Property.TextAlign | undefined;
6655
+ } | undefined;
6656
+ whiteSpace?: csstype.Property.WhiteSpace | {
6657
+ readonly base?: csstype.Property.WhiteSpace | undefined;
6658
+ readonly xs?: csstype.Property.WhiteSpace | undefined;
6659
+ readonly s?: csstype.Property.WhiteSpace | undefined;
6660
+ readonly m?: csstype.Property.WhiteSpace | undefined;
6661
+ readonly l?: csstype.Property.WhiteSpace | undefined;
6662
+ readonly xl?: csstype.Property.WhiteSpace | undefined;
6663
+ } | undefined;
6664
+ overflow?: csstype.Property.Overflow | {
6665
+ readonly base?: csstype.Property.Overflow | undefined;
6666
+ readonly xs?: csstype.Property.Overflow | undefined;
6667
+ readonly s?: csstype.Property.Overflow | undefined;
6668
+ readonly m?: csstype.Property.Overflow | undefined;
6669
+ readonly l?: csstype.Property.Overflow | undefined;
6670
+ readonly xl?: csstype.Property.Overflow | undefined;
6671
+ } | undefined;
6672
+ __brand__?: "platform-web" | {
6673
+ readonly base?: "platform-web" | undefined;
6674
+ readonly xs?: "platform-web" | undefined;
6675
+ readonly s?: "platform-web" | undefined;
6676
+ readonly m?: "platform-web" | undefined;
6677
+ readonly l?: "platform-web" | undefined;
6678
+ readonly xl?: "platform-web" | undefined;
6679
+ } | undefined;
6680
+ }, "display">, "__brand__">> & {
6681
+ name?: string | undefined;
6682
+ label?: string | undefined;
6683
+ testID?: string | undefined;
6684
+ size?: "medium" | "large" | undefined;
6685
+ onBlur?: FormInputOnEvent | undefined;
6686
+ onFocus?: FormInputOnEvent | undefined;
6687
+ onClick?: FormInputOnEvent | undefined;
6688
+ defaultValue?: string | undefined;
6689
+ autoFocus?: boolean | undefined;
6690
+ isDisabled?: boolean | undefined;
6691
+ accessibilityLabel?: string | undefined;
6692
+ labelPosition?: "left" | "top" | undefined;
6693
+ isRequired?: boolean | undefined;
6694
+ validationState?: "none" | "error" | "success" | undefined;
6695
+ necessityIndicator?: "none" | "required" | "optional" | undefined;
6696
+ helpText?: string | undefined;
6697
+ errorText?: string | undefined;
6698
+ successText?: string | undefined;
6699
+ leadingIcon?: IconComponent | undefined;
6700
+ trailingIcon?: IconComponent | undefined;
6701
+ keyboardReturnKeyType?: "search" | "default" | "done" | "next" | "previous" | "go" | "send" | undefined;
6702
+ autoCompleteSuggestionType?: ("on" | ("none" | "name" | "email" | "password" | "username" | "telephone" | "newPassword" | "oneTimeCode" | "postalCode" | "countryName" | "creditCardNumber" | "creditCardCSC" | "creditCardExpiry" | "creditCardExpiryMonth" | "creditCardExpiryYear")) | undefined;
6703
+ } & {
6704
+ defaultValue?: string | undefined;
6705
+ value?: string | undefined;
6706
+ defaultCountry?: CountryCodeType | undefined;
6707
+ country?: CountryCodeType | undefined;
6708
+ onCountryChange?: (({ country }: {
6709
+ country: CountryCodeType;
6710
+ }) => void) | undefined;
6711
+ allowedCountries?: CountryCodeType[] | undefined;
6712
+ onChange?: ((event: {
6713
+ phoneNumber: string;
6714
+ dialCode: string;
6715
+ country: CountryCodeType;
6716
+ value: string;
6717
+ name: string;
6718
+ }) => void) | undefined;
6719
+ showDialCode?: boolean | undefined;
6720
+ showCountrySelector?: boolean | undefined;
6721
+ onClearButtonClick?: (() => void) | undefined;
6722
+ } & React__default.RefAttributes<BladeElementRef>>;
6723
+
6724
+ type CommonProps = Pick<BaseInputProps, 'size' | 'label' | 'labelPosition' | 'name' | 'validationState' | 'errorText' | 'successText' | 'helpText' | 'defaultValue' | 'necessityIndicator' | 'isRequired' | 'isDisabled' | 'onFocus' | 'onBlur' | 'onClick' | 'leadingIcon' | 'trailingIcon' | 'accessibilityLabel' | 'autoFocus' | 'testID' | 'keyboardReturnKeyType' | 'autoCompleteSuggestionType'>;
6725
+ type PhoneNumberInputProps = StyledPropsBlade & CommonProps & {
6726
+ /**
6727
+ * Default value of the input, Used to set the default value of input field when it's uncontrolled
6728
+ */
6729
+ defaultValue?: string;
6730
+ /**
6731
+ * Value of the input, Used to turn the input field to controlled so user can control the value
6732
+ */
6733
+ value?: string;
6734
+ /**
6735
+ * The default country code to be used in the input.
6736
+ * Uncontrolled state of the country code.
6737
+ *
6738
+ * @default "IN" or autodetect based on the user's locale
6739
+ */
6740
+ defaultCountry?: CountryCodeType;
6741
+ /**
6742
+ * Controlled state of the country code to be used in the input.
6743
+ */
6744
+ country?: CountryCodeType;
6745
+ /**
6746
+ * Callback that is called when the country is selected from the country selector.
6747
+ */
6748
+ onCountryChange?: ({ country }: {
6749
+ country: CountryCodeType;
6750
+ }) => void;
6751
+ /**
6752
+ * List of countries to be shown in the country selector.
6753
+ */
6754
+ allowedCountries?: CountryCodeType[];
6755
+ /**
6756
+ * Callback that is called when the value of the input changes.
6757
+ */
6758
+ onChange?: (event: {
6759
+ /**
6760
+ * formatted phone number with dial code
6761
+ *
6762
+ * @example: "+91 123456789"
6763
+ */
6764
+ phoneNumber: string;
6765
+ /**
6766
+ * dial code of the country
6767
+ *
6768
+ * @example: 91 for India
6769
+ */
6770
+ dialCode: string;
6771
+ /**
6772
+ * country code of the country
6773
+ *
6774
+ * @example: "IN" for India
6775
+ */
6776
+ country: CountryCodeType;
6777
+ /**
6778
+ * raw value of the input
6779
+ */
6780
+ value: string;
6781
+ /**
6782
+ * name of the input
6783
+ */
6784
+ name: string;
6785
+ }) => void;
6786
+ /**
6787
+ * If true, the dial code text will be shown in the leading text.
6788
+ *
6789
+ * @default true
6790
+ */
6791
+ showDialCode?: boolean;
6792
+ /**
6793
+ * If true, the country selector will be shown.
6794
+ *
6795
+ * @default true
6796
+ */
6797
+ showCountrySelector?: boolean;
6798
+ /**
6799
+ * Callback that is called when the clear button is clicked.
6800
+ */
6801
+ onClearButtonClick?: () => void;
6802
+ };
6803
+
6365
6804
  type ListItemProps = {
6366
6805
  /**
6367
6806
  * Children to be rendered for ListItem. This can be a text, ListItemLink or another List.
@@ -9246,4 +9685,4 @@ declare const VisuallyHidden: ({ children, testID }: VisuallyHiddenProps) => Rea
9246
9685
  */
9247
9686
  declare const screenReaderStyles: CSSObject;
9248
9687
 
9249
- export { Accordion, AccordionItem, AccordionItemBody, AccordionItemHeader, 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, 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, BulkPayoutsIcon, 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, 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, Drawer, DrawerBody, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FileUpload, FileUploadProps, FileZipIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconColors, 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, TableBackgroundColors, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableFooter, TableFooterCell, TableFooterCellProps, TableFooterProps, TableFooterRow, TableFooterRowProps, TableHeader, TableHeaderCell, TableHeaderCellProps, TableHeaderProps, TableHeaderRow, TableHeaderRowProps, TableNode, TablePagination, TablePaginationCommonProps, TablePaginationProps, TablePaginationType, 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, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UseToastReturn, 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, getHeadingProps, getTextProps, screenReaderStyles, useTheme, useToast };
9688
+ export { Accordion, AccordionItem, AccordionItemBody, AccordionItemHeader, 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, 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, BulkPayoutsIcon, 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, 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, Drawer, DrawerBody, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FileUpload, FileUploadProps, FileZipIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconColors, 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, PhoneNumberInput, PhoneNumberInputProps, 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, TableBackgroundColors, TableBody, TableBodyProps, TableCell, TableCellProps, TableData, TableFooter, TableFooterCell, TableFooterCellProps, TableFooterProps, TableFooterRow, TableFooterRowProps, TableHeader, TableHeaderCell, TableHeaderCellProps, TableHeaderProps, TableHeaderRow, TableHeaderRowProps, TableNode, TablePagination, TablePaginationCommonProps, TablePaginationProps, TablePaginationType, 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, ToastContainer, ToastProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UseToastReturn, 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, getHeadingProps, getTextProps, screenReaderStyles, useTheme, useToast };