@razorpay/blade 9.1.2 → 9.3.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.
@@ -1457,7 +1457,8 @@ type StyledPropsBlade$1 = Partial<
1457
1457
  | 'gridColumnStart'
1458
1458
  | 'gridColumnEnd'
1459
1459
  | 'gridArea'
1460
- >,
1460
+ > &
1461
+ Pick<LayoutProps$1, 'display'>,
1461
1462
  '__brand__'
1462
1463
  >
1463
1464
  >;
@@ -2671,7 +2672,7 @@ declare type BoxVisualProps = MakeObjectResponsive<{
2671
2672
  }> & {
2672
2673
  as: BoxAsType;
2673
2674
  };
2674
- declare type StyledPropsBlade = Partial<Omit<MarginProps & Pick<FlexboxProps, 'alignSelf' | 'justifySelf' | 'placeSelf' | 'order'> & PositionProps & Pick<GridProps, 'gridColumn' | 'gridRow' | 'gridRowStart' | 'gridRowEnd' | 'gridColumnStart' | 'gridColumnEnd' | 'gridArea'>, '__brand__'>>;
2675
+ declare type StyledPropsBlade = Partial<Omit<MarginProps & Pick<FlexboxProps, 'alignSelf' | 'justifySelf' | 'placeSelf' | 'order'> & PositionProps & Pick<GridProps, 'gridColumn' | 'gridRow' | 'gridRowStart' | 'gridRowEnd' | 'gridColumnStart' | 'gridColumnEnd' | 'gridArea'> & Pick<LayoutProps, 'display'>, '__brand__'>>;
2675
2676
  declare type BoxCallbackProps = Omit<Platform.Select<{
2676
2677
  web: {
2677
2678
  /**
@@ -3687,7 +3688,7 @@ declare type IconButtonProps = {
3687
3688
  *
3688
3689
  * @default 'medium'
3689
3690
  */
3690
- size?: 'medium' | 'large';
3691
+ size?: 'small' | 'medium' | 'large';
3691
3692
  /**
3692
3693
  * Icon contrast
3693
3694
  *
@@ -3698,6 +3699,10 @@ declare type IconButtonProps = {
3698
3699
  * Sets aria-label to help users know what the action does, eg 'Dismiss alert'
3699
3700
  */
3700
3701
  accessibilityLabel: string;
3702
+ /**
3703
+ * Disabled state for IconButton
3704
+ */
3705
+ isDisabled?: boolean;
3701
3706
  } & BladeCommonEvents$1;
3702
3707
  declare const IconButton: React__default.ForwardRefExoticComponent<{
3703
3708
  /**
@@ -3710,7 +3715,7 @@ declare const IconButton: React__default.ForwardRefExoticComponent<{
3710
3715
  *
3711
3716
  * @default 'medium'
3712
3717
  */
3713
- size?: "medium" | "large" | undefined;
3718
+ size?: "small" | "medium" | "large" | undefined;
3714
3719
  /**
3715
3720
  * Icon contrast
3716
3721
  *
@@ -3721,6 +3726,10 @@ declare const IconButton: React__default.ForwardRefExoticComponent<{
3721
3726
  * Sets aria-label to help users know what the action does, eg 'Dismiss alert'
3722
3727
  */
3723
3728
  accessibilityLabel: string;
3729
+ /**
3730
+ * Disabled state for IconButton
3731
+ */
3732
+ isDisabled?: boolean | undefined;
3724
3733
  } & BladeCommonEvents$1 & React__default.RefAttributes<BladeElementRef>>;
3725
3734
 
3726
3735
  declare type OnChange$1 = ({ isChecked, event, value, }: {
@@ -4071,7 +4080,104 @@ declare const Checkbox: React__default.ForwardRefExoticComponent<{
4071
4080
  readonly l?: "platform-web" | undefined;
4072
4081
  readonly xl?: "platform-web" | undefined;
4073
4082
  } | undefined;
4074
- }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
4083
+ }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
4084
+ width: SpacingValueType | {
4085
+ readonly base?: SpacingValueType | undefined;
4086
+ readonly xs?: SpacingValueType | undefined;
4087
+ readonly s?: SpacingValueType | undefined;
4088
+ readonly m?: SpacingValueType | undefined;
4089
+ readonly l?: SpacingValueType | undefined;
4090
+ readonly xl?: SpacingValueType | undefined;
4091
+ };
4092
+ display?: csstype.Property.Display | {
4093
+ readonly base?: csstype.Property.Display | undefined;
4094
+ readonly xs?: csstype.Property.Display | undefined;
4095
+ readonly s?: csstype.Property.Display | undefined;
4096
+ readonly m?: csstype.Property.Display | undefined;
4097
+ readonly l?: csstype.Property.Display | undefined;
4098
+ readonly xl?: csstype.Property.Display | undefined;
4099
+ } | undefined;
4100
+ height: SpacingValueType | {
4101
+ readonly base?: SpacingValueType | undefined;
4102
+ readonly xs?: SpacingValueType | undefined;
4103
+ readonly s?: SpacingValueType | undefined;
4104
+ readonly m?: SpacingValueType | undefined;
4105
+ readonly l?: SpacingValueType | undefined;
4106
+ readonly xl?: SpacingValueType | undefined;
4107
+ };
4108
+ maxHeight: SpacingValueType | {
4109
+ readonly base?: SpacingValueType | undefined;
4110
+ readonly xs?: SpacingValueType | undefined;
4111
+ readonly s?: SpacingValueType | undefined;
4112
+ readonly m?: SpacingValueType | undefined;
4113
+ readonly l?: SpacingValueType | undefined;
4114
+ readonly xl?: SpacingValueType | undefined;
4115
+ };
4116
+ maxWidth: SpacingValueType | {
4117
+ readonly base?: SpacingValueType | undefined;
4118
+ readonly xs?: SpacingValueType | undefined;
4119
+ readonly s?: SpacingValueType | undefined;
4120
+ readonly m?: SpacingValueType | undefined;
4121
+ readonly l?: SpacingValueType | undefined;
4122
+ readonly xl?: SpacingValueType | undefined;
4123
+ };
4124
+ minHeight: SpacingValueType | {
4125
+ readonly base?: SpacingValueType | undefined;
4126
+ readonly xs?: SpacingValueType | undefined;
4127
+ readonly s?: SpacingValueType | undefined;
4128
+ readonly m?: SpacingValueType | undefined;
4129
+ readonly l?: SpacingValueType | undefined;
4130
+ readonly xl?: SpacingValueType | undefined;
4131
+ };
4132
+ minWidth: SpacingValueType | {
4133
+ readonly base?: SpacingValueType | undefined;
4134
+ readonly xs?: SpacingValueType | undefined;
4135
+ readonly s?: SpacingValueType | undefined;
4136
+ readonly m?: SpacingValueType | undefined;
4137
+ readonly l?: SpacingValueType | undefined;
4138
+ readonly xl?: SpacingValueType | undefined;
4139
+ };
4140
+ overflowX?: csstype.Property.OverflowX | {
4141
+ readonly base?: csstype.Property.OverflowX | undefined;
4142
+ readonly xs?: csstype.Property.OverflowX | undefined;
4143
+ readonly s?: csstype.Property.OverflowX | undefined;
4144
+ readonly m?: csstype.Property.OverflowX | undefined;
4145
+ readonly l?: csstype.Property.OverflowX | undefined;
4146
+ readonly xl?: csstype.Property.OverflowX | undefined;
4147
+ } | undefined;
4148
+ overflowY?: csstype.Property.OverflowY | {
4149
+ readonly base?: csstype.Property.OverflowY | undefined;
4150
+ readonly xs?: csstype.Property.OverflowY | undefined;
4151
+ readonly s?: csstype.Property.OverflowY | undefined;
4152
+ readonly m?: csstype.Property.OverflowY | undefined;
4153
+ readonly l?: csstype.Property.OverflowY | undefined;
4154
+ readonly xl?: csstype.Property.OverflowY | undefined;
4155
+ } | undefined;
4156
+ textAlign?: csstype.Property.TextAlign | {
4157
+ readonly base?: csstype.Property.TextAlign | undefined;
4158
+ readonly xs?: csstype.Property.TextAlign | undefined;
4159
+ readonly s?: csstype.Property.TextAlign | undefined;
4160
+ readonly m?: csstype.Property.TextAlign | undefined;
4161
+ readonly l?: csstype.Property.TextAlign | undefined;
4162
+ readonly xl?: csstype.Property.TextAlign | undefined;
4163
+ } | undefined;
4164
+ overflow?: csstype.Property.Overflow | {
4165
+ readonly base?: csstype.Property.Overflow | undefined;
4166
+ readonly xs?: csstype.Property.Overflow | undefined;
4167
+ readonly s?: csstype.Property.Overflow | undefined;
4168
+ readonly m?: csstype.Property.Overflow | undefined;
4169
+ readonly l?: csstype.Property.Overflow | undefined;
4170
+ readonly xl?: csstype.Property.Overflow | undefined;
4171
+ } | undefined;
4172
+ __brand__?: "platform-web" | {
4173
+ readonly base?: "platform-web" | undefined;
4174
+ readonly xs?: "platform-web" | undefined;
4175
+ readonly s?: "platform-web" | undefined;
4176
+ readonly m?: "platform-web" | undefined;
4177
+ readonly l?: "platform-web" | undefined;
4178
+ readonly xl?: "platform-web" | undefined;
4179
+ } | undefined;
4180
+ }, "display">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
4075
4181
 
4076
4182
  declare type CheckboxGroupProps = {
4077
4183
  /**
@@ -4195,19 +4301,19 @@ declare type DividerProps = {
4195
4301
  *
4196
4302
  */
4197
4303
  width?: CSSObject['width'];
4198
- };
4199
- declare const Divider: ({ orientation, dividerStyle, variant, thickness, contrast, height, width, }: DividerProps) => React__default.ReactElement;
4304
+ } & TestID$1 & StyledPropsBlade$1;
4305
+ declare const Divider: ({ orientation, dividerStyle, variant, thickness, contrast, height, width, testID, ...styledProps }: DividerProps) => React__default.ReactElement;
4200
4306
 
4201
4307
  declare type DropdownProps = {
4202
4308
  selectionType?: 'single' | 'multiple';
4203
4309
  onDismiss?: () => void;
4204
4310
  children: React.ReactNode[];
4205
- } & StyledPropsBlade$1;
4311
+ } & TestID$1 & StyledPropsBlade$1;
4206
4312
  declare type DropdownOverlayProps = {
4207
4313
  children: React.ReactElement[] | React.ReactElement;
4208
4314
  } & TestID$1;
4209
4315
 
4210
- declare const Dropdown: ({ children, selectionType, onDismiss, ...styledProps }: DropdownProps) => JSX.Element;
4316
+ declare const Dropdown: ({ children, selectionType, onDismiss, testID, ...styledProps }: DropdownProps) => JSX.Element;
4211
4317
 
4212
4318
  declare const DropdownOverlay: ({ children, testID }: DropdownOverlayProps) => JSX.Element;
4213
4319
 
@@ -5354,7 +5460,104 @@ declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInput
5354
5460
  readonly l?: "platform-web" | undefined;
5355
5461
  readonly xl?: "platform-web" | undefined;
5356
5462
  } | undefined;
5357
- }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
5463
+ }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
5464
+ width: SpacingValueType | {
5465
+ readonly base?: SpacingValueType | undefined;
5466
+ readonly xs?: SpacingValueType | undefined;
5467
+ readonly s?: SpacingValueType | undefined;
5468
+ readonly m?: SpacingValueType | undefined;
5469
+ readonly l?: SpacingValueType | undefined;
5470
+ readonly xl?: SpacingValueType | undefined;
5471
+ };
5472
+ display?: csstype.Property.Display | {
5473
+ readonly base?: csstype.Property.Display | undefined;
5474
+ readonly xs?: csstype.Property.Display | undefined;
5475
+ readonly s?: csstype.Property.Display | undefined;
5476
+ readonly m?: csstype.Property.Display | undefined;
5477
+ readonly l?: csstype.Property.Display | undefined;
5478
+ readonly xl?: csstype.Property.Display | undefined;
5479
+ } | undefined;
5480
+ height: SpacingValueType | {
5481
+ readonly base?: SpacingValueType | undefined;
5482
+ readonly xs?: SpacingValueType | undefined;
5483
+ readonly s?: SpacingValueType | undefined;
5484
+ readonly m?: SpacingValueType | undefined;
5485
+ readonly l?: SpacingValueType | undefined;
5486
+ readonly xl?: SpacingValueType | undefined;
5487
+ };
5488
+ maxHeight: SpacingValueType | {
5489
+ readonly base?: SpacingValueType | undefined;
5490
+ readonly xs?: SpacingValueType | undefined;
5491
+ readonly s?: SpacingValueType | undefined;
5492
+ readonly m?: SpacingValueType | undefined;
5493
+ readonly l?: SpacingValueType | undefined;
5494
+ readonly xl?: SpacingValueType | undefined;
5495
+ };
5496
+ maxWidth: SpacingValueType | {
5497
+ readonly base?: SpacingValueType | undefined;
5498
+ readonly xs?: SpacingValueType | undefined;
5499
+ readonly s?: SpacingValueType | undefined;
5500
+ readonly m?: SpacingValueType | undefined;
5501
+ readonly l?: SpacingValueType | undefined;
5502
+ readonly xl?: SpacingValueType | undefined;
5503
+ };
5504
+ minHeight: SpacingValueType | {
5505
+ readonly base?: SpacingValueType | undefined;
5506
+ readonly xs?: SpacingValueType | undefined;
5507
+ readonly s?: SpacingValueType | undefined;
5508
+ readonly m?: SpacingValueType | undefined;
5509
+ readonly l?: SpacingValueType | undefined;
5510
+ readonly xl?: SpacingValueType | undefined;
5511
+ };
5512
+ minWidth: SpacingValueType | {
5513
+ readonly base?: SpacingValueType | undefined;
5514
+ readonly xs?: SpacingValueType | undefined;
5515
+ readonly s?: SpacingValueType | undefined;
5516
+ readonly m?: SpacingValueType | undefined;
5517
+ readonly l?: SpacingValueType | undefined;
5518
+ readonly xl?: SpacingValueType | undefined;
5519
+ };
5520
+ overflowX?: csstype.Property.OverflowX | {
5521
+ readonly base?: csstype.Property.OverflowX | undefined;
5522
+ readonly xs?: csstype.Property.OverflowX | undefined;
5523
+ readonly s?: csstype.Property.OverflowX | undefined;
5524
+ readonly m?: csstype.Property.OverflowX | undefined;
5525
+ readonly l?: csstype.Property.OverflowX | undefined;
5526
+ readonly xl?: csstype.Property.OverflowX | undefined;
5527
+ } | undefined;
5528
+ overflowY?: csstype.Property.OverflowY | {
5529
+ readonly base?: csstype.Property.OverflowY | undefined;
5530
+ readonly xs?: csstype.Property.OverflowY | undefined;
5531
+ readonly s?: csstype.Property.OverflowY | undefined;
5532
+ readonly m?: csstype.Property.OverflowY | undefined;
5533
+ readonly l?: csstype.Property.OverflowY | undefined;
5534
+ readonly xl?: csstype.Property.OverflowY | undefined;
5535
+ } | undefined;
5536
+ textAlign?: csstype.Property.TextAlign | {
5537
+ readonly base?: csstype.Property.TextAlign | undefined;
5538
+ readonly xs?: csstype.Property.TextAlign | undefined;
5539
+ readonly s?: csstype.Property.TextAlign | undefined;
5540
+ readonly m?: csstype.Property.TextAlign | undefined;
5541
+ readonly l?: csstype.Property.TextAlign | undefined;
5542
+ readonly xl?: csstype.Property.TextAlign | undefined;
5543
+ } | undefined;
5544
+ overflow?: csstype.Property.Overflow | {
5545
+ readonly base?: csstype.Property.Overflow | undefined;
5546
+ readonly xs?: csstype.Property.Overflow | undefined;
5547
+ readonly s?: csstype.Property.Overflow | undefined;
5548
+ readonly m?: csstype.Property.Overflow | undefined;
5549
+ readonly l?: csstype.Property.Overflow | undefined;
5550
+ readonly xl?: csstype.Property.Overflow | undefined;
5551
+ } | undefined;
5552
+ __brand__?: "platform-web" | {
5553
+ readonly base?: "platform-web" | undefined;
5554
+ readonly xs?: "platform-web" | undefined;
5555
+ readonly s?: "platform-web" | undefined;
5556
+ readonly m?: "platform-web" | undefined;
5557
+ readonly l?: "platform-web" | undefined;
5558
+ readonly xl?: "platform-web" | undefined;
5559
+ } | undefined;
5560
+ }, "display">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
5358
5561
 
5359
5562
  declare type PasswordInputExtraProps = {
5360
5563
  /**
@@ -5573,29 +5776,8 @@ declare const PasswordInput: React__default.ForwardRefExoticComponent<Pick<BaseI
5573
5776
  readonly l?: "platform-web" | undefined;
5574
5777
  readonly xl?: "platform-web" | undefined;
5575
5778
  } | undefined;
5576
- }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
5577
-
5578
- declare type TextAreaProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'necessityIndicator' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'placeholder' | 'defaultValue' | 'name' | 'onChange' | 'onFocus' | 'onBlur' | 'onSubmit' | 'value' | 'isDisabled' | 'isRequired' | 'maxCharacters' | 'autoFocus' | 'numberOfLines' | 'testID'> & {
5579
- /**
5580
- * Decides whether to render a clear icon button
5581
- */
5582
- showClearButton?: boolean;
5583
- /**
5584
- * Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
5585
- */
5586
- onClearButtonClick?: () => void;
5587
- } & StyledPropsBlade$1;
5588
- declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "onBlur" | "onFocus" | "defaultValue" | "onChange" | "onSubmit" | "autoFocus" | "numberOfLines" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "necessityIndicator" | "helpText" | "errorText" | "successText" | "maxCharacters"> & {
5589
- /**
5590
- * Decides whether to render a clear icon button
5591
- */
5592
- showClearButton?: boolean | undefined;
5593
- /**
5594
- * Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
5595
- */
5596
- onClearButtonClick?: (() => void) | undefined;
5597
- } & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
5598
- bottom: SpacingValueType | {
5779
+ }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
5780
+ width: SpacingValueType | {
5599
5781
  readonly base?: SpacingValueType | undefined;
5600
5782
  readonly xs?: SpacingValueType | undefined;
5601
5783
  readonly s?: SpacingValueType | undefined;
@@ -5603,7 +5785,15 @@ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputP
5603
5785
  readonly l?: SpacingValueType | undefined;
5604
5786
  readonly xl?: SpacingValueType | undefined;
5605
5787
  };
5606
- left: SpacingValueType | {
5788
+ display?: csstype.Property.Display | {
5789
+ readonly base?: csstype.Property.Display | undefined;
5790
+ readonly xs?: csstype.Property.Display | undefined;
5791
+ readonly s?: csstype.Property.Display | undefined;
5792
+ readonly m?: csstype.Property.Display | undefined;
5793
+ readonly l?: csstype.Property.Display | undefined;
5794
+ readonly xl?: csstype.Property.Display | undefined;
5795
+ } | undefined;
5796
+ height: SpacingValueType | {
5607
5797
  readonly base?: SpacingValueType | undefined;
5608
5798
  readonly xs?: SpacingValueType | undefined;
5609
5799
  readonly s?: SpacingValueType | undefined;
@@ -5611,15 +5801,7 @@ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputP
5611
5801
  readonly l?: SpacingValueType | undefined;
5612
5802
  readonly xl?: SpacingValueType | undefined;
5613
5803
  };
5614
- position?: csstype.Property.Position | {
5615
- readonly base?: csstype.Property.Position | undefined;
5616
- readonly xs?: csstype.Property.Position | undefined;
5617
- readonly s?: csstype.Property.Position | undefined;
5618
- readonly m?: csstype.Property.Position | undefined;
5619
- readonly l?: csstype.Property.Position | undefined;
5620
- readonly xl?: csstype.Property.Position | undefined;
5621
- } | undefined;
5622
- right: SpacingValueType | {
5804
+ maxHeight: SpacingValueType | {
5623
5805
  readonly base?: SpacingValueType | undefined;
5624
5806
  readonly xs?: SpacingValueType | undefined;
5625
5807
  readonly s?: SpacingValueType | undefined;
@@ -5627,7 +5809,7 @@ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputP
5627
5809
  readonly l?: SpacingValueType | undefined;
5628
5810
  readonly xl?: SpacingValueType | undefined;
5629
5811
  };
5630
- top: SpacingValueType | {
5812
+ maxWidth: SpacingValueType | {
5631
5813
  readonly base?: SpacingValueType | undefined;
5632
5814
  readonly xs?: SpacingValueType | undefined;
5633
5815
  readonly s?: SpacingValueType | undefined;
@@ -5635,13 +5817,131 @@ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputP
5635
5817
  readonly l?: SpacingValueType | undefined;
5636
5818
  readonly xl?: SpacingValueType | undefined;
5637
5819
  };
5638
- zIndex?: csstype.Property.ZIndex | {
5639
- readonly base?: csstype.Property.ZIndex | undefined;
5640
- readonly xs?: csstype.Property.ZIndex | undefined;
5641
- readonly s?: csstype.Property.ZIndex | undefined;
5642
- readonly m?: csstype.Property.ZIndex | undefined;
5643
- readonly l?: csstype.Property.ZIndex | undefined;
5644
- readonly xl?: csstype.Property.ZIndex | undefined;
5820
+ minHeight: SpacingValueType | {
5821
+ readonly base?: SpacingValueType | undefined;
5822
+ readonly xs?: SpacingValueType | undefined;
5823
+ readonly s?: SpacingValueType | undefined;
5824
+ readonly m?: SpacingValueType | undefined;
5825
+ readonly l?: SpacingValueType | undefined;
5826
+ readonly xl?: SpacingValueType | undefined;
5827
+ };
5828
+ minWidth: SpacingValueType | {
5829
+ readonly base?: SpacingValueType | undefined;
5830
+ readonly xs?: SpacingValueType | undefined;
5831
+ readonly s?: SpacingValueType | undefined;
5832
+ readonly m?: SpacingValueType | undefined;
5833
+ readonly l?: SpacingValueType | undefined;
5834
+ readonly xl?: SpacingValueType | undefined;
5835
+ };
5836
+ overflowX?: csstype.Property.OverflowX | {
5837
+ readonly base?: csstype.Property.OverflowX | undefined;
5838
+ readonly xs?: csstype.Property.OverflowX | undefined;
5839
+ readonly s?: csstype.Property.OverflowX | undefined;
5840
+ readonly m?: csstype.Property.OverflowX | undefined;
5841
+ readonly l?: csstype.Property.OverflowX | undefined;
5842
+ readonly xl?: csstype.Property.OverflowX | undefined;
5843
+ } | undefined;
5844
+ overflowY?: csstype.Property.OverflowY | {
5845
+ readonly base?: csstype.Property.OverflowY | undefined;
5846
+ readonly xs?: csstype.Property.OverflowY | undefined;
5847
+ readonly s?: csstype.Property.OverflowY | undefined;
5848
+ readonly m?: csstype.Property.OverflowY | undefined;
5849
+ readonly l?: csstype.Property.OverflowY | undefined;
5850
+ readonly xl?: csstype.Property.OverflowY | undefined;
5851
+ } | undefined;
5852
+ textAlign?: csstype.Property.TextAlign | {
5853
+ readonly base?: csstype.Property.TextAlign | undefined;
5854
+ readonly xs?: csstype.Property.TextAlign | undefined;
5855
+ readonly s?: csstype.Property.TextAlign | undefined;
5856
+ readonly m?: csstype.Property.TextAlign | undefined;
5857
+ readonly l?: csstype.Property.TextAlign | undefined;
5858
+ readonly xl?: csstype.Property.TextAlign | undefined;
5859
+ } | undefined;
5860
+ overflow?: csstype.Property.Overflow | {
5861
+ readonly base?: csstype.Property.Overflow | undefined;
5862
+ readonly xs?: csstype.Property.Overflow | undefined;
5863
+ readonly s?: csstype.Property.Overflow | undefined;
5864
+ readonly m?: csstype.Property.Overflow | undefined;
5865
+ readonly l?: csstype.Property.Overflow | undefined;
5866
+ readonly xl?: csstype.Property.Overflow | undefined;
5867
+ } | undefined;
5868
+ __brand__?: "platform-web" | {
5869
+ readonly base?: "platform-web" | undefined;
5870
+ readonly xs?: "platform-web" | undefined;
5871
+ readonly s?: "platform-web" | undefined;
5872
+ readonly m?: "platform-web" | undefined;
5873
+ readonly l?: "platform-web" | undefined;
5874
+ readonly xl?: "platform-web" | undefined;
5875
+ } | undefined;
5876
+ }, "display">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
5877
+
5878
+ declare type TextAreaProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'necessityIndicator' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'placeholder' | 'defaultValue' | 'name' | 'onChange' | 'onFocus' | 'onBlur' | 'onSubmit' | 'value' | 'isDisabled' | 'isRequired' | 'maxCharacters' | 'autoFocus' | 'numberOfLines' | 'testID'> & {
5879
+ /**
5880
+ * Decides whether to render a clear icon button
5881
+ */
5882
+ showClearButton?: boolean;
5883
+ /**
5884
+ * Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
5885
+ */
5886
+ onClearButtonClick?: () => void;
5887
+ } & StyledPropsBlade$1;
5888
+ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "onBlur" | "onFocus" | "defaultValue" | "onChange" | "onSubmit" | "autoFocus" | "numberOfLines" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "necessityIndicator" | "helpText" | "errorText" | "successText" | "maxCharacters"> & {
5889
+ /**
5890
+ * Decides whether to render a clear icon button
5891
+ */
5892
+ showClearButton?: boolean | undefined;
5893
+ /**
5894
+ * Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
5895
+ */
5896
+ onClearButtonClick?: (() => void) | undefined;
5897
+ } & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
5898
+ bottom: SpacingValueType | {
5899
+ readonly base?: SpacingValueType | undefined;
5900
+ readonly xs?: SpacingValueType | undefined;
5901
+ readonly s?: SpacingValueType | undefined;
5902
+ readonly m?: SpacingValueType | undefined;
5903
+ readonly l?: SpacingValueType | undefined;
5904
+ readonly xl?: SpacingValueType | undefined;
5905
+ };
5906
+ left: SpacingValueType | {
5907
+ readonly base?: SpacingValueType | undefined;
5908
+ readonly xs?: SpacingValueType | undefined;
5909
+ readonly s?: SpacingValueType | undefined;
5910
+ readonly m?: SpacingValueType | undefined;
5911
+ readonly l?: SpacingValueType | undefined;
5912
+ readonly xl?: SpacingValueType | undefined;
5913
+ };
5914
+ position?: csstype.Property.Position | {
5915
+ readonly base?: csstype.Property.Position | undefined;
5916
+ readonly xs?: csstype.Property.Position | undefined;
5917
+ readonly s?: csstype.Property.Position | undefined;
5918
+ readonly m?: csstype.Property.Position | undefined;
5919
+ readonly l?: csstype.Property.Position | undefined;
5920
+ readonly xl?: csstype.Property.Position | undefined;
5921
+ } | undefined;
5922
+ right: SpacingValueType | {
5923
+ readonly base?: SpacingValueType | undefined;
5924
+ readonly xs?: SpacingValueType | undefined;
5925
+ readonly s?: SpacingValueType | undefined;
5926
+ readonly m?: SpacingValueType | undefined;
5927
+ readonly l?: SpacingValueType | undefined;
5928
+ readonly xl?: SpacingValueType | undefined;
5929
+ };
5930
+ top: SpacingValueType | {
5931
+ readonly base?: SpacingValueType | undefined;
5932
+ readonly xs?: SpacingValueType | undefined;
5933
+ readonly s?: SpacingValueType | undefined;
5934
+ readonly m?: SpacingValueType | undefined;
5935
+ readonly l?: SpacingValueType | undefined;
5936
+ readonly xl?: SpacingValueType | undefined;
5937
+ };
5938
+ zIndex?: csstype.Property.ZIndex | {
5939
+ readonly base?: csstype.Property.ZIndex | undefined;
5940
+ readonly xs?: csstype.Property.ZIndex | undefined;
5941
+ readonly s?: csstype.Property.ZIndex | undefined;
5942
+ readonly m?: csstype.Property.ZIndex | undefined;
5943
+ readonly l?: csstype.Property.ZIndex | undefined;
5944
+ readonly xl?: csstype.Property.ZIndex | undefined;
5645
5945
  } | undefined;
5646
5946
  __brand__?: "platform-web" | {
5647
5947
  readonly base?: "platform-web" | undefined;
@@ -5780,7 +6080,104 @@ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputP
5780
6080
  readonly l?: "platform-web" | undefined;
5781
6081
  readonly xl?: "platform-web" | undefined;
5782
6082
  } | undefined;
5783
- }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
6083
+ }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
6084
+ width: SpacingValueType | {
6085
+ readonly base?: SpacingValueType | undefined;
6086
+ readonly xs?: SpacingValueType | undefined;
6087
+ readonly s?: SpacingValueType | undefined;
6088
+ readonly m?: SpacingValueType | undefined;
6089
+ readonly l?: SpacingValueType | undefined;
6090
+ readonly xl?: SpacingValueType | undefined;
6091
+ };
6092
+ display?: csstype.Property.Display | {
6093
+ readonly base?: csstype.Property.Display | undefined;
6094
+ readonly xs?: csstype.Property.Display | undefined;
6095
+ readonly s?: csstype.Property.Display | undefined;
6096
+ readonly m?: csstype.Property.Display | undefined;
6097
+ readonly l?: csstype.Property.Display | undefined;
6098
+ readonly xl?: csstype.Property.Display | undefined;
6099
+ } | undefined;
6100
+ height: SpacingValueType | {
6101
+ readonly base?: SpacingValueType | undefined;
6102
+ readonly xs?: SpacingValueType | undefined;
6103
+ readonly s?: SpacingValueType | undefined;
6104
+ readonly m?: SpacingValueType | undefined;
6105
+ readonly l?: SpacingValueType | undefined;
6106
+ readonly xl?: SpacingValueType | undefined;
6107
+ };
6108
+ maxHeight: SpacingValueType | {
6109
+ readonly base?: SpacingValueType | undefined;
6110
+ readonly xs?: SpacingValueType | undefined;
6111
+ readonly s?: SpacingValueType | undefined;
6112
+ readonly m?: SpacingValueType | undefined;
6113
+ readonly l?: SpacingValueType | undefined;
6114
+ readonly xl?: SpacingValueType | undefined;
6115
+ };
6116
+ maxWidth: SpacingValueType | {
6117
+ readonly base?: SpacingValueType | undefined;
6118
+ readonly xs?: SpacingValueType | undefined;
6119
+ readonly s?: SpacingValueType | undefined;
6120
+ readonly m?: SpacingValueType | undefined;
6121
+ readonly l?: SpacingValueType | undefined;
6122
+ readonly xl?: SpacingValueType | undefined;
6123
+ };
6124
+ minHeight: SpacingValueType | {
6125
+ readonly base?: SpacingValueType | undefined;
6126
+ readonly xs?: SpacingValueType | undefined;
6127
+ readonly s?: SpacingValueType | undefined;
6128
+ readonly m?: SpacingValueType | undefined;
6129
+ readonly l?: SpacingValueType | undefined;
6130
+ readonly xl?: SpacingValueType | undefined;
6131
+ };
6132
+ minWidth: SpacingValueType | {
6133
+ readonly base?: SpacingValueType | undefined;
6134
+ readonly xs?: SpacingValueType | undefined;
6135
+ readonly s?: SpacingValueType | undefined;
6136
+ readonly m?: SpacingValueType | undefined;
6137
+ readonly l?: SpacingValueType | undefined;
6138
+ readonly xl?: SpacingValueType | undefined;
6139
+ };
6140
+ overflowX?: csstype.Property.OverflowX | {
6141
+ readonly base?: csstype.Property.OverflowX | undefined;
6142
+ readonly xs?: csstype.Property.OverflowX | undefined;
6143
+ readonly s?: csstype.Property.OverflowX | undefined;
6144
+ readonly m?: csstype.Property.OverflowX | undefined;
6145
+ readonly l?: csstype.Property.OverflowX | undefined;
6146
+ readonly xl?: csstype.Property.OverflowX | undefined;
6147
+ } | undefined;
6148
+ overflowY?: csstype.Property.OverflowY | {
6149
+ readonly base?: csstype.Property.OverflowY | undefined;
6150
+ readonly xs?: csstype.Property.OverflowY | undefined;
6151
+ readonly s?: csstype.Property.OverflowY | undefined;
6152
+ readonly m?: csstype.Property.OverflowY | undefined;
6153
+ readonly l?: csstype.Property.OverflowY | undefined;
6154
+ readonly xl?: csstype.Property.OverflowY | undefined;
6155
+ } | undefined;
6156
+ textAlign?: csstype.Property.TextAlign | {
6157
+ readonly base?: csstype.Property.TextAlign | undefined;
6158
+ readonly xs?: csstype.Property.TextAlign | undefined;
6159
+ readonly s?: csstype.Property.TextAlign | undefined;
6160
+ readonly m?: csstype.Property.TextAlign | undefined;
6161
+ readonly l?: csstype.Property.TextAlign | undefined;
6162
+ readonly xl?: csstype.Property.TextAlign | undefined;
6163
+ } | undefined;
6164
+ overflow?: csstype.Property.Overflow | {
6165
+ readonly base?: csstype.Property.Overflow | undefined;
6166
+ readonly xs?: csstype.Property.Overflow | undefined;
6167
+ readonly s?: csstype.Property.Overflow | undefined;
6168
+ readonly m?: csstype.Property.Overflow | undefined;
6169
+ readonly l?: csstype.Property.Overflow | undefined;
6170
+ readonly xl?: csstype.Property.Overflow | undefined;
6171
+ } | undefined;
6172
+ __brand__?: "platform-web" | {
6173
+ readonly base?: "platform-web" | undefined;
6174
+ readonly xs?: "platform-web" | undefined;
6175
+ readonly s?: "platform-web" | undefined;
6176
+ readonly m?: "platform-web" | undefined;
6177
+ readonly l?: "platform-web" | undefined;
6178
+ readonly xl?: "platform-web" | undefined;
6179
+ } | undefined;
6180
+ }, "display">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
5784
6181
 
5785
6182
  declare type FormInputOnEventWithIndex = ({ name, value, inputIndex, }: {
5786
6183
  name?: string;
@@ -6588,43 +6985,140 @@ declare const Radio: React__default.ForwardRefExoticComponent<{
6588
6985
  readonly l?: "platform-web" | undefined;
6589
6986
  readonly xl?: "platform-web" | undefined;
6590
6987
  } | undefined;
6591
- }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
6592
-
6593
- declare type RadioGroupProps = {
6594
- /**
6595
- * Accepts multiple radios as children
6596
- */
6597
- children: React__default.ReactNode;
6598
- /**
6599
- * Help text of the radio group
6600
- */
6601
- helpText?: string;
6602
- /**
6603
- * Error text of the radio group
6604
- * Renders when `validationState` is set to 'error'
6605
- *
6606
- * Overrides helpText
6607
- */
6608
- errorText?: string;
6609
- /**
6610
- * Sets the error state of the radioGroup
6611
- * If set to `error` it will render the `errorText` of the group,
6612
- * and propagate `invalid` prop to every radio
6613
- */
6614
- validationState?: 'error' | 'none';
6615
- /**
6616
- * Renders a necessity indicator after radioGroup label
6617
- *
6618
- * If set to `undefined` it renders nothing.
6619
- */
6620
- necessityIndicator?: 'required' | 'optional' | 'none';
6621
- /**
6622
- * Sets the disabled state of the radioGroup
6623
- * If set to `true` it propagate down to all the radios
6624
- *
6625
- * @default false
6626
- */
6627
- isDisabled?: boolean;
6988
+ }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
6989
+ width: SpacingValueType | {
6990
+ readonly base?: SpacingValueType | undefined;
6991
+ readonly xs?: SpacingValueType | undefined;
6992
+ readonly s?: SpacingValueType | undefined;
6993
+ readonly m?: SpacingValueType | undefined;
6994
+ readonly l?: SpacingValueType | undefined;
6995
+ readonly xl?: SpacingValueType | undefined;
6996
+ };
6997
+ display?: csstype.Property.Display | {
6998
+ readonly base?: csstype.Property.Display | undefined;
6999
+ readonly xs?: csstype.Property.Display | undefined;
7000
+ readonly s?: csstype.Property.Display | undefined;
7001
+ readonly m?: csstype.Property.Display | undefined;
7002
+ readonly l?: csstype.Property.Display | undefined;
7003
+ readonly xl?: csstype.Property.Display | undefined;
7004
+ } | undefined;
7005
+ height: SpacingValueType | {
7006
+ readonly base?: SpacingValueType | undefined;
7007
+ readonly xs?: SpacingValueType | undefined;
7008
+ readonly s?: SpacingValueType | undefined;
7009
+ readonly m?: SpacingValueType | undefined;
7010
+ readonly l?: SpacingValueType | undefined;
7011
+ readonly xl?: SpacingValueType | undefined;
7012
+ };
7013
+ maxHeight: SpacingValueType | {
7014
+ readonly base?: SpacingValueType | undefined;
7015
+ readonly xs?: SpacingValueType | undefined;
7016
+ readonly s?: SpacingValueType | undefined;
7017
+ readonly m?: SpacingValueType | undefined;
7018
+ readonly l?: SpacingValueType | undefined;
7019
+ readonly xl?: SpacingValueType | undefined;
7020
+ };
7021
+ maxWidth: SpacingValueType | {
7022
+ readonly base?: SpacingValueType | undefined;
7023
+ readonly xs?: SpacingValueType | undefined;
7024
+ readonly s?: SpacingValueType | undefined;
7025
+ readonly m?: SpacingValueType | undefined;
7026
+ readonly l?: SpacingValueType | undefined;
7027
+ readonly xl?: SpacingValueType | undefined;
7028
+ };
7029
+ minHeight: SpacingValueType | {
7030
+ readonly base?: SpacingValueType | undefined;
7031
+ readonly xs?: SpacingValueType | undefined;
7032
+ readonly s?: SpacingValueType | undefined;
7033
+ readonly m?: SpacingValueType | undefined;
7034
+ readonly l?: SpacingValueType | undefined;
7035
+ readonly xl?: SpacingValueType | undefined;
7036
+ };
7037
+ minWidth: SpacingValueType | {
7038
+ readonly base?: SpacingValueType | undefined;
7039
+ readonly xs?: SpacingValueType | undefined;
7040
+ readonly s?: SpacingValueType | undefined;
7041
+ readonly m?: SpacingValueType | undefined;
7042
+ readonly l?: SpacingValueType | undefined;
7043
+ readonly xl?: SpacingValueType | undefined;
7044
+ };
7045
+ overflowX?: csstype.Property.OverflowX | {
7046
+ readonly base?: csstype.Property.OverflowX | undefined;
7047
+ readonly xs?: csstype.Property.OverflowX | undefined;
7048
+ readonly s?: csstype.Property.OverflowX | undefined;
7049
+ readonly m?: csstype.Property.OverflowX | undefined;
7050
+ readonly l?: csstype.Property.OverflowX | undefined;
7051
+ readonly xl?: csstype.Property.OverflowX | undefined;
7052
+ } | undefined;
7053
+ overflowY?: csstype.Property.OverflowY | {
7054
+ readonly base?: csstype.Property.OverflowY | undefined;
7055
+ readonly xs?: csstype.Property.OverflowY | undefined;
7056
+ readonly s?: csstype.Property.OverflowY | undefined;
7057
+ readonly m?: csstype.Property.OverflowY | undefined;
7058
+ readonly l?: csstype.Property.OverflowY | undefined;
7059
+ readonly xl?: csstype.Property.OverflowY | undefined;
7060
+ } | undefined;
7061
+ textAlign?: csstype.Property.TextAlign | {
7062
+ readonly base?: csstype.Property.TextAlign | undefined;
7063
+ readonly xs?: csstype.Property.TextAlign | undefined;
7064
+ readonly s?: csstype.Property.TextAlign | undefined;
7065
+ readonly m?: csstype.Property.TextAlign | undefined;
7066
+ readonly l?: csstype.Property.TextAlign | undefined;
7067
+ readonly xl?: csstype.Property.TextAlign | undefined;
7068
+ } | undefined;
7069
+ overflow?: csstype.Property.Overflow | {
7070
+ readonly base?: csstype.Property.Overflow | undefined;
7071
+ readonly xs?: csstype.Property.Overflow | undefined;
7072
+ readonly s?: csstype.Property.Overflow | undefined;
7073
+ readonly m?: csstype.Property.Overflow | undefined;
7074
+ readonly l?: csstype.Property.Overflow | undefined;
7075
+ readonly xl?: csstype.Property.Overflow | undefined;
7076
+ } | undefined;
7077
+ __brand__?: "platform-web" | {
7078
+ readonly base?: "platform-web" | undefined;
7079
+ readonly xs?: "platform-web" | undefined;
7080
+ readonly s?: "platform-web" | undefined;
7081
+ readonly m?: "platform-web" | undefined;
7082
+ readonly l?: "platform-web" | undefined;
7083
+ readonly xl?: "platform-web" | undefined;
7084
+ } | undefined;
7085
+ }, "display">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
7086
+
7087
+ declare type RadioGroupProps = {
7088
+ /**
7089
+ * Accepts multiple radios as children
7090
+ */
7091
+ children: React__default.ReactNode;
7092
+ /**
7093
+ * Help text of the radio group
7094
+ */
7095
+ helpText?: string;
7096
+ /**
7097
+ * Error text of the radio group
7098
+ * Renders when `validationState` is set to 'error'
7099
+ *
7100
+ * Overrides helpText
7101
+ */
7102
+ errorText?: string;
7103
+ /**
7104
+ * Sets the error state of the radioGroup
7105
+ * If set to `error` it will render the `errorText` of the group,
7106
+ * and propagate `invalid` prop to every radio
7107
+ */
7108
+ validationState?: 'error' | 'none';
7109
+ /**
7110
+ * Renders a necessity indicator after radioGroup label
7111
+ *
7112
+ * If set to `undefined` it renders nothing.
7113
+ */
7114
+ necessityIndicator?: 'required' | 'optional' | 'none';
7115
+ /**
7116
+ * Sets the disabled state of the radioGroup
7117
+ * If set to `true` it propagate down to all the radios
7118
+ *
7119
+ * @default false
7120
+ */
7121
+ isDisabled?: boolean;
6628
7122
  /**
6629
7123
  * Sets the required state of the radioGroup
6630
7124
  * @default false
@@ -6769,10 +7263,366 @@ declare type SwitchProps = {
6769
7263
  * The id of the input field in a switch, useful for associating a label element with the input via htmlFor prop
6770
7264
  */
6771
7265
  id?: string;
6772
- testID?: string;
6773
- };
7266
+ } & TestID$1 & StyledPropsBlade$1;
6774
7267
 
6775
- declare const Switch: React__default.ForwardRefExoticComponent<SwitchProps & React__default.RefAttributes<BladeElementRef>>;
7268
+ declare const Switch: React__default.ForwardRefExoticComponent<{
7269
+ isChecked?: boolean | undefined;
7270
+ defaultChecked?: boolean | undefined;
7271
+ onChange?: OnChange | undefined;
7272
+ name?: string | undefined;
7273
+ value?: string | undefined;
7274
+ isDisabled?: boolean | undefined;
7275
+ size?: "small" | "medium" | undefined;
7276
+ accessibilityLabel: string;
7277
+ id?: string | undefined;
7278
+ } & TestID$1 & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
7279
+ bottom: SpacingValueType | {
7280
+ readonly base?: SpacingValueType | undefined;
7281
+ readonly xs?: SpacingValueType | undefined;
7282
+ readonly s?: SpacingValueType | undefined;
7283
+ readonly m?: SpacingValueType | undefined;
7284
+ readonly l?: SpacingValueType | undefined;
7285
+ readonly xl?: SpacingValueType | undefined;
7286
+ };
7287
+ left: SpacingValueType | {
7288
+ readonly base?: SpacingValueType | undefined;
7289
+ readonly xs?: SpacingValueType | undefined;
7290
+ readonly s?: SpacingValueType | undefined;
7291
+ readonly m?: SpacingValueType | undefined;
7292
+ readonly l?: SpacingValueType | undefined;
7293
+ readonly xl?: SpacingValueType | undefined;
7294
+ };
7295
+ position?: csstype.Property.Position | {
7296
+ readonly base?: csstype.Property.Position | undefined;
7297
+ readonly xs?: csstype.Property.Position | undefined;
7298
+ readonly s?: csstype.Property.Position | undefined;
7299
+ readonly m?: csstype.Property.Position | undefined;
7300
+ readonly l?: csstype.Property.Position | undefined;
7301
+ readonly xl?: csstype.Property.Position | undefined;
7302
+ } | undefined;
7303
+ right: SpacingValueType | {
7304
+ readonly base?: SpacingValueType | undefined;
7305
+ readonly xs?: SpacingValueType | undefined;
7306
+ readonly s?: SpacingValueType | undefined;
7307
+ readonly m?: SpacingValueType | undefined;
7308
+ readonly l?: SpacingValueType | undefined;
7309
+ readonly xl?: SpacingValueType | undefined;
7310
+ };
7311
+ top: SpacingValueType | {
7312
+ readonly base?: SpacingValueType | undefined;
7313
+ readonly xs?: SpacingValueType | undefined;
7314
+ readonly s?: SpacingValueType | undefined;
7315
+ readonly m?: SpacingValueType | undefined;
7316
+ readonly l?: SpacingValueType | undefined;
7317
+ readonly xl?: SpacingValueType | undefined;
7318
+ };
7319
+ zIndex?: csstype.Property.ZIndex | {
7320
+ readonly base?: csstype.Property.ZIndex | undefined;
7321
+ readonly xs?: csstype.Property.ZIndex | undefined;
7322
+ readonly s?: csstype.Property.ZIndex | undefined;
7323
+ readonly m?: csstype.Property.ZIndex | undefined;
7324
+ readonly l?: csstype.Property.ZIndex | undefined;
7325
+ readonly xl?: csstype.Property.ZIndex | undefined;
7326
+ } | undefined;
7327
+ __brand__?: "platform-web" | {
7328
+ readonly base?: "platform-web" | undefined;
7329
+ readonly xs?: "platform-web" | undefined;
7330
+ readonly s?: "platform-web" | undefined;
7331
+ readonly m?: "platform-web" | undefined;
7332
+ readonly l?: "platform-web" | undefined;
7333
+ readonly xl?: "platform-web" | undefined;
7334
+ } | undefined;
7335
+ } & Pick<{
7336
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
7337
+ readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
7338
+ readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
7339
+ readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
7340
+ readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
7341
+ readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
7342
+ readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
7343
+ } | undefined;
7344
+ gridAutoFlow?: csstype.Property.GridAutoFlow | {
7345
+ readonly base?: csstype.Property.GridAutoFlow | undefined;
7346
+ readonly xs?: csstype.Property.GridAutoFlow | undefined;
7347
+ readonly s?: csstype.Property.GridAutoFlow | undefined;
7348
+ readonly m?: csstype.Property.GridAutoFlow | undefined;
7349
+ readonly l?: csstype.Property.GridAutoFlow | undefined;
7350
+ readonly xl?: csstype.Property.GridAutoFlow | undefined;
7351
+ } | undefined;
7352
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
7353
+ readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
7354
+ readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
7355
+ readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
7356
+ readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
7357
+ readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
7358
+ readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
7359
+ } | undefined;
7360
+ gridColumnEnd?: csstype.Property.GridColumnEnd | {
7361
+ readonly base?: csstype.Property.GridColumnEnd | undefined;
7362
+ readonly xs?: csstype.Property.GridColumnEnd | undefined;
7363
+ readonly s?: csstype.Property.GridColumnEnd | undefined;
7364
+ readonly m?: csstype.Property.GridColumnEnd | undefined;
7365
+ readonly l?: csstype.Property.GridColumnEnd | undefined;
7366
+ readonly xl?: csstype.Property.GridColumnEnd | undefined;
7367
+ } | undefined;
7368
+ gridColumnStart?: csstype.Property.GridColumnStart | {
7369
+ readonly base?: csstype.Property.GridColumnStart | undefined;
7370
+ readonly xs?: csstype.Property.GridColumnStart | undefined;
7371
+ readonly s?: csstype.Property.GridColumnStart | undefined;
7372
+ readonly m?: csstype.Property.GridColumnStart | undefined;
7373
+ readonly l?: csstype.Property.GridColumnStart | undefined;
7374
+ readonly xl?: csstype.Property.GridColumnStart | undefined;
7375
+ } | undefined;
7376
+ gridRowEnd?: csstype.Property.GridRowEnd | {
7377
+ readonly base?: csstype.Property.GridRowEnd | undefined;
7378
+ readonly xs?: csstype.Property.GridRowEnd | undefined;
7379
+ readonly s?: csstype.Property.GridRowEnd | undefined;
7380
+ readonly m?: csstype.Property.GridRowEnd | undefined;
7381
+ readonly l?: csstype.Property.GridRowEnd | undefined;
7382
+ readonly xl?: csstype.Property.GridRowEnd | undefined;
7383
+ } | undefined;
7384
+ gridRowStart?: csstype.Property.GridRowStart | {
7385
+ readonly base?: csstype.Property.GridRowStart | undefined;
7386
+ readonly xs?: csstype.Property.GridRowStart | undefined;
7387
+ readonly s?: csstype.Property.GridRowStart | undefined;
7388
+ readonly m?: csstype.Property.GridRowStart | undefined;
7389
+ readonly l?: csstype.Property.GridRowStart | undefined;
7390
+ readonly xl?: csstype.Property.GridRowStart | undefined;
7391
+ } | undefined;
7392
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
7393
+ readonly base?: csstype.Property.GridTemplateAreas | undefined;
7394
+ readonly xs?: csstype.Property.GridTemplateAreas | undefined;
7395
+ readonly s?: csstype.Property.GridTemplateAreas | undefined;
7396
+ readonly m?: csstype.Property.GridTemplateAreas | undefined;
7397
+ readonly l?: csstype.Property.GridTemplateAreas | undefined;
7398
+ readonly xl?: csstype.Property.GridTemplateAreas | undefined;
7399
+ } | undefined;
7400
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
7401
+ readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
7402
+ readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
7403
+ readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
7404
+ readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
7405
+ readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
7406
+ readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
7407
+ } | undefined;
7408
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
7409
+ readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
7410
+ readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
7411
+ readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
7412
+ readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
7413
+ readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
7414
+ readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
7415
+ } | undefined;
7416
+ grid?: csstype.Property.Grid | {
7417
+ readonly base?: csstype.Property.Grid | undefined;
7418
+ readonly xs?: csstype.Property.Grid | undefined;
7419
+ readonly s?: csstype.Property.Grid | undefined;
7420
+ readonly m?: csstype.Property.Grid | undefined;
7421
+ readonly l?: csstype.Property.Grid | undefined;
7422
+ readonly xl?: csstype.Property.Grid | undefined;
7423
+ } | undefined;
7424
+ gridArea?: csstype.Property.GridArea | {
7425
+ readonly base?: csstype.Property.GridArea | undefined;
7426
+ readonly xs?: csstype.Property.GridArea | undefined;
7427
+ readonly s?: csstype.Property.GridArea | undefined;
7428
+ readonly m?: csstype.Property.GridArea | undefined;
7429
+ readonly l?: csstype.Property.GridArea | undefined;
7430
+ readonly xl?: csstype.Property.GridArea | undefined;
7431
+ } | undefined;
7432
+ gridColumn?: csstype.Property.GridColumn | {
7433
+ readonly base?: csstype.Property.GridColumn | undefined;
7434
+ readonly xs?: csstype.Property.GridColumn | undefined;
7435
+ readonly s?: csstype.Property.GridColumn | undefined;
7436
+ readonly m?: csstype.Property.GridColumn | undefined;
7437
+ readonly l?: csstype.Property.GridColumn | undefined;
7438
+ readonly xl?: csstype.Property.GridColumn | undefined;
7439
+ } | undefined;
7440
+ gridRow?: csstype.Property.GridRow | {
7441
+ readonly base?: csstype.Property.GridRow | undefined;
7442
+ readonly xs?: csstype.Property.GridRow | undefined;
7443
+ readonly s?: csstype.Property.GridRow | undefined;
7444
+ readonly m?: csstype.Property.GridRow | undefined;
7445
+ readonly l?: csstype.Property.GridRow | undefined;
7446
+ readonly xl?: csstype.Property.GridRow | undefined;
7447
+ } | undefined;
7448
+ gridTemplate?: csstype.Property.GridTemplate | {
7449
+ readonly base?: csstype.Property.GridTemplate | undefined;
7450
+ readonly xs?: csstype.Property.GridTemplate | undefined;
7451
+ readonly s?: csstype.Property.GridTemplate | undefined;
7452
+ readonly m?: csstype.Property.GridTemplate | undefined;
7453
+ readonly l?: csstype.Property.GridTemplate | undefined;
7454
+ readonly xl?: csstype.Property.GridTemplate | undefined;
7455
+ } | undefined;
7456
+ __brand__?: "platform-web" | {
7457
+ readonly base?: "platform-web" | undefined;
7458
+ readonly xs?: "platform-web" | undefined;
7459
+ readonly s?: "platform-web" | undefined;
7460
+ readonly m?: "platform-web" | undefined;
7461
+ readonly l?: "platform-web" | undefined;
7462
+ readonly xl?: "platform-web" | undefined;
7463
+ } | undefined;
7464
+ }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
7465
+ width: SpacingValueType | {
7466
+ readonly base?: SpacingValueType | undefined;
7467
+ readonly xs?: SpacingValueType | undefined;
7468
+ readonly s?: SpacingValueType | undefined;
7469
+ readonly m?: SpacingValueType | undefined;
7470
+ readonly l?: SpacingValueType | undefined;
7471
+ readonly xl?: SpacingValueType | undefined;
7472
+ };
7473
+ display?: csstype.Property.Display | {
7474
+ readonly base?: csstype.Property.Display | undefined;
7475
+ readonly xs?: csstype.Property.Display | undefined;
7476
+ readonly s?: csstype.Property.Display | undefined;
7477
+ readonly m?: csstype.Property.Display | undefined;
7478
+ readonly l?: csstype.Property.Display | undefined;
7479
+ readonly xl?: csstype.Property.Display | undefined;
7480
+ } | undefined;
7481
+ height: SpacingValueType | {
7482
+ readonly base?: SpacingValueType | undefined;
7483
+ readonly xs?: SpacingValueType | undefined;
7484
+ readonly s?: SpacingValueType | undefined;
7485
+ readonly m?: SpacingValueType | undefined;
7486
+ readonly l?: SpacingValueType | undefined;
7487
+ readonly xl?: SpacingValueType | undefined;
7488
+ };
7489
+ maxHeight: SpacingValueType | {
7490
+ readonly base?: SpacingValueType | undefined;
7491
+ readonly xs?: SpacingValueType | undefined;
7492
+ readonly s?: SpacingValueType | undefined;
7493
+ readonly m?: SpacingValueType | undefined;
7494
+ readonly l?: SpacingValueType | undefined;
7495
+ readonly xl?: SpacingValueType | undefined;
7496
+ };
7497
+ maxWidth: SpacingValueType | {
7498
+ readonly base?: SpacingValueType | undefined;
7499
+ readonly xs?: SpacingValueType | undefined;
7500
+ readonly s?: SpacingValueType | undefined;
7501
+ readonly m?: SpacingValueType | undefined;
7502
+ readonly l?: SpacingValueType | undefined;
7503
+ readonly xl?: SpacingValueType | undefined;
7504
+ };
7505
+ minHeight: SpacingValueType | {
7506
+ readonly base?: SpacingValueType | undefined;
7507
+ readonly xs?: SpacingValueType | undefined;
7508
+ readonly s?: SpacingValueType | undefined;
7509
+ readonly m?: SpacingValueType | undefined;
7510
+ readonly l?: SpacingValueType | undefined;
7511
+ readonly xl?: SpacingValueType | undefined;
7512
+ };
7513
+ minWidth: SpacingValueType | {
7514
+ readonly base?: SpacingValueType | undefined;
7515
+ readonly xs?: SpacingValueType | undefined;
7516
+ readonly s?: SpacingValueType | undefined;
7517
+ readonly m?: SpacingValueType | undefined;
7518
+ readonly l?: SpacingValueType | undefined;
7519
+ readonly xl?: SpacingValueType | undefined;
7520
+ };
7521
+ overflowX?: csstype.Property.OverflowX | {
7522
+ readonly base?: csstype.Property.OverflowX | undefined;
7523
+ readonly xs?: csstype.Property.OverflowX | undefined;
7524
+ readonly s?: csstype.Property.OverflowX | undefined;
7525
+ readonly m?: csstype.Property.OverflowX | undefined;
7526
+ readonly l?: csstype.Property.OverflowX | undefined;
7527
+ readonly xl?: csstype.Property.OverflowX | undefined;
7528
+ } | undefined;
7529
+ overflowY?: csstype.Property.OverflowY | {
7530
+ readonly base?: csstype.Property.OverflowY | undefined;
7531
+ readonly xs?: csstype.Property.OverflowY | undefined;
7532
+ readonly s?: csstype.Property.OverflowY | undefined;
7533
+ readonly m?: csstype.Property.OverflowY | undefined;
7534
+ readonly l?: csstype.Property.OverflowY | undefined;
7535
+ readonly xl?: csstype.Property.OverflowY | undefined;
7536
+ } | undefined;
7537
+ textAlign?: csstype.Property.TextAlign | {
7538
+ readonly base?: csstype.Property.TextAlign | undefined;
7539
+ readonly xs?: csstype.Property.TextAlign | undefined;
7540
+ readonly s?: csstype.Property.TextAlign | undefined;
7541
+ readonly m?: csstype.Property.TextAlign | undefined;
7542
+ readonly l?: csstype.Property.TextAlign | undefined;
7543
+ readonly xl?: csstype.Property.TextAlign | undefined;
7544
+ } | undefined;
7545
+ overflow?: csstype.Property.Overflow | {
7546
+ readonly base?: csstype.Property.Overflow | undefined;
7547
+ readonly xs?: csstype.Property.Overflow | undefined;
7548
+ readonly s?: csstype.Property.Overflow | undefined;
7549
+ readonly m?: csstype.Property.Overflow | undefined;
7550
+ readonly l?: csstype.Property.Overflow | undefined;
7551
+ readonly xl?: csstype.Property.Overflow | undefined;
7552
+ } | undefined;
7553
+ __brand__?: "platform-web" | {
7554
+ readonly base?: "platform-web" | undefined;
7555
+ readonly xs?: "platform-web" | undefined;
7556
+ readonly s?: "platform-web" | undefined;
7557
+ readonly m?: "platform-web" | undefined;
7558
+ readonly l?: "platform-web" | undefined;
7559
+ readonly xl?: "platform-web" | undefined;
7560
+ } | undefined;
7561
+ }, "display">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
7562
+
7563
+ declare type TagProps = {
7564
+ /**
7565
+ * Decides the size of Tag
7566
+ *
7567
+ * @default medium
7568
+ */
7569
+ size?: 'medium' | 'large';
7570
+ /**
7571
+ * Leading icon for your Tag
7572
+ */
7573
+ icon?: IconComponent$1;
7574
+ /**
7575
+ * Callback when close icon on Tag is clicked
7576
+ */
7577
+ onDismiss: () => void;
7578
+ /**
7579
+ * Text that renders inside Tag
7580
+ */
7581
+ children: StringChildrenType;
7582
+ /**
7583
+ * Disable tag
7584
+ */
7585
+ isDisabled?: boolean;
7586
+ /**
7587
+ * Private property for Blade.
7588
+ *
7589
+ * Should not be used by consumers.
7590
+ *
7591
+ * Used for adding virtual focus on tag.
7592
+ *
7593
+ * @private
7594
+ *
7595
+ */
7596
+ _isTagFocussed?: boolean;
7597
+ } & StyledPropsBlade$1 & TestID$1;
7598
+ /**
7599
+ * ## Tags
7600
+ *
7601
+ * Tag component can be used to display selected items on UI.
7602
+ *
7603
+ * ### Usage
7604
+ *
7605
+ * ***Note:*** _Make sure to handle state when using Tag_
7606
+ *
7607
+ * ```jsx
7608
+ * const [showTag, setShowTag] = React.useState(true);
7609
+ *
7610
+ * // ...
7611
+ *
7612
+ * {showTag && (
7613
+ * <Tag
7614
+ * icon={CheckIcon}
7615
+ * onDismiss={() => setShowTag(false)}
7616
+ * >
7617
+ * Transactions
7618
+ * </Tag>
7619
+ * )}
7620
+ * ```
7621
+ *
7622
+ * Checkout [Tags Documentation](https://blade.razorpay.com/?path=/story/components-tag--default) for more info.
7623
+ *
7624
+ */
7625
+ declare const Tag: ({ size, icon, onDismiss, children, isDisabled, testID, _isTagFocussed, ...styledProps }: TagProps) => React__default.ReactElement | null;
6776
7626
 
6777
7627
  declare type BladeCommonEvents = {
6778
7628
  onBlur?: Platform.Select<{
@@ -7646,4 +8496,4 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
7646
8496
  tabIndex: -1;
7647
8497
  }, "tabIndex">;
7648
8498
 
7649
- export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionDivider, ActionListSectionProps, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, Divider, DividerProps, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, 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, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, TagIcon, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useActionListContext, useTheme };
8499
+ export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionDivider, ActionListSectionProps, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, Divider, DividerProps, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, 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, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, Tag, TagIcon, TagProps, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useActionListContext, useTheme };