@razorpay/blade 9.3.0 → 9.4.1

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.
@@ -4648,7 +4648,7 @@ declare type FormInputLabelProps = {
4648
4648
  /**
4649
4649
  * Label to be shown for the input field
4650
4650
  */
4651
- label: string;
4651
+ label?: string;
4652
4652
  /**
4653
4653
  * Desktop only prop. Default value on mobile will be `top`
4654
4654
  */
@@ -4706,7 +4706,7 @@ type FormInputOnKeyDownEvent = {
4706
4706
 
4707
4707
  declare type CommonAutoCompleteSuggestionTypes = 'none' | 'name' | 'email' | 'username' | 'password' | 'newPassword' | 'oneTimeCode' | 'telephone' | 'postalCode' | 'countryName' | 'creditCardNumber' | 'creditCardCSC' | 'creditCardExpiry' | 'creditCardExpiryMonth' | 'creditCardExpiryYear';
4708
4708
  declare type WebAutoCompleteSuggestionType = CommonAutoCompleteSuggestionTypes | 'on';
4709
- declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
4709
+ declare type BaseInputCommonProps = FormInputLabelProps & FormInputValidationProps & {
4710
4710
  /**
4711
4711
  * Determines if it needs to be rendered as input, textarea or button
4712
4712
  */
@@ -4922,9 +4922,30 @@ declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
4922
4922
  autoCompleteSuggestionType?: WebAutoCompleteSuggestionType;
4923
4923
  };
4924
4924
  }> & StyledPropsBlade$1;
4925
+ declare type BaseInputPropsWithA11yLabel = {
4926
+ /**
4927
+ * Label to be shown for the input field
4928
+ */
4929
+ label?: undefined;
4930
+ /**
4931
+ * Accessibility label for the input
4932
+ */
4933
+ accessibilityLabel: string;
4934
+ };
4935
+ declare type BaseInputPropsWithLabel = {
4936
+ /**
4937
+ * Label to be shown for the input field
4938
+ */
4939
+ label: string;
4940
+ /**
4941
+ * Accessibility label for the input
4942
+ */
4943
+ accessibilityLabel?: string;
4944
+ };
4945
+ declare type BaseInputProps = (BaseInputPropsWithA11yLabel | BaseInputPropsWithLabel) & BaseInputCommonProps;
4925
4946
 
4926
4947
  declare type Type = Exclude<BaseInputProps['type'], 'password'>;
4927
- declare type TextInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'necessityIndicator' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'placeholder' | 'defaultValue' | 'name' | 'onChange' | 'onFocus' | 'onBlur' | 'value' | 'isDisabled' | 'isRequired' | 'prefix' | 'suffix' | 'maxCharacters' | 'autoFocus' | 'keyboardReturnKeyType' | 'autoCompleteSuggestionType' | 'onSubmit' | 'autoCapitalize' | 'testID'> & {
4948
+ declare type TextInputCommonProps = Pick<BaseInputProps, 'label' | 'accessibilityLabel' | 'labelPosition' | 'necessityIndicator' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'placeholder' | 'defaultValue' | 'name' | 'onChange' | 'onFocus' | 'onBlur' | 'value' | 'isDisabled' | 'isRequired' | 'prefix' | 'suffix' | 'maxCharacters' | 'autoFocus' | 'keyboardReturnKeyType' | 'autoCompleteSuggestionType' | 'onSubmit' | 'autoCapitalize' | 'testID'> & {
4928
4949
  /**
4929
4950
  * Decides whether to render a clear icon button
4930
4951
  */
@@ -4956,195 +4977,28 @@ declare type TextInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | '
4956
4977
  */
4957
4978
  type?: Type;
4958
4979
  } & StyledPropsBlade$1;
4959
- declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "prefix" | "value" | "label" | "onBlur" | "onFocus" | "onChange" | "onSubmit" | "defaultValue" | "autoCapitalize" | "autoFocus" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "necessityIndicator" | "helpText" | "errorText" | "successText" | "suffix" | "maxCharacters" | "keyboardReturnKeyType" | "autoCompleteSuggestionType"> & {
4960
- /**
4961
- * Decides whether to render a clear icon button
4962
- */
4963
- showClearButton?: boolean | undefined;
4980
+ declare type TextInputPropsWithA11yLabel = {
4964
4981
  /**
4965
- * Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
4982
+ * Label to be shown for the input field
4966
4983
  */
4967
- onClearButtonClick?: (() => void) | undefined;
4984
+ label?: undefined;
4968
4985
  /**
4969
- * Decides whether to show a loading spinner for the input field.
4986
+ * Accessibility label for the input
4970
4987
  */
4971
- isLoading?: boolean | undefined;
4988
+ accessibilityLabel: string;
4989
+ };
4990
+ declare type TextInputPropsWithLabel = {
4972
4991
  /**
4973
- * Icon that will be rendered at the beginning of the input field
4992
+ * Label to be shown for the input field
4974
4993
  */
4975
- icon?: IconComponent$1 | undefined;
4994
+ label: string;
4976
4995
  /**
4977
- * Type of Input Field to be rendered. Use `PasswordInput` for type `password`
4978
- *
4979
- *
4980
- * **Note on number type**
4981
- *
4982
- * `type="number"` internally uses `inputMode="numeric"` instead of HTML's `type="number"` which also allows text characters.
4983
- * If you have a usecase where you only want to support number input, you can handle it on validations end.
4984
- *
4985
- * Check out [Why the GOV.UK Design System team changed the input type for numbers](https://technology.blog.gov.uk/2020/02/24/why-the-gov-uk-design-system-team-changed-the-input-type-for-numbers/) for reasoning
4986
- *
4987
- * @default text
4996
+ * Accessibility label for the input
4988
4997
  */
4989
- type?: Type;
4990
- } & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
4991
- bottom: SpacingValueType | {
4992
- readonly base?: SpacingValueType | undefined;
4993
- readonly xs?: SpacingValueType | undefined;
4994
- readonly s?: SpacingValueType | undefined;
4995
- readonly m?: SpacingValueType | undefined;
4996
- readonly l?: SpacingValueType | undefined;
4997
- readonly xl?: SpacingValueType | undefined;
4998
- };
4999
- left: SpacingValueType | {
5000
- readonly base?: SpacingValueType | undefined;
5001
- readonly xs?: SpacingValueType | undefined;
5002
- readonly s?: SpacingValueType | undefined;
5003
- readonly m?: SpacingValueType | undefined;
5004
- readonly l?: SpacingValueType | undefined;
5005
- readonly xl?: SpacingValueType | undefined;
5006
- };
5007
- position?: "absolute" | "relative" | {
5008
- readonly base?: "absolute" | "relative" | undefined;
5009
- readonly xs?: "absolute" | "relative" | undefined;
5010
- readonly s?: "absolute" | "relative" | undefined;
5011
- readonly m?: "absolute" | "relative" | undefined;
5012
- readonly l?: "absolute" | "relative" | undefined;
5013
- readonly xl?: "absolute" | "relative" | undefined;
5014
- } | undefined;
5015
- right: SpacingValueType | {
5016
- readonly base?: SpacingValueType | undefined;
5017
- readonly xs?: SpacingValueType | undefined;
5018
- readonly s?: SpacingValueType | undefined;
5019
- readonly m?: SpacingValueType | undefined;
5020
- readonly l?: SpacingValueType | undefined;
5021
- readonly xl?: SpacingValueType | undefined;
5022
- };
5023
- top: SpacingValueType | {
5024
- readonly base?: SpacingValueType | undefined;
5025
- readonly xs?: SpacingValueType | undefined;
5026
- readonly s?: SpacingValueType | undefined;
5027
- readonly m?: SpacingValueType | undefined;
5028
- readonly l?: SpacingValueType | undefined;
5029
- readonly xl?: SpacingValueType | undefined;
5030
- };
5031
- zIndex?: number | {
5032
- readonly base?: number | undefined;
5033
- readonly xs?: number | undefined;
5034
- readonly s?: number | undefined;
5035
- readonly m?: number | undefined;
5036
- readonly l?: number | undefined;
5037
- readonly xl?: number | undefined;
5038
- } | undefined;
5039
- __brand__?: "platform-native" | {
5040
- readonly base?: "platform-native" | undefined;
5041
- readonly xs?: "platform-native" | undefined;
5042
- readonly s?: "platform-native" | undefined;
5043
- readonly m?: "platform-native" | undefined;
5044
- readonly l?: "platform-native" | undefined;
5045
- readonly xl?: "platform-native" | undefined;
5046
- } | undefined;
5047
- } & Pick<{
5048
- gridAutoColumns: never;
5049
- gridAutoFlow: never;
5050
- gridAutoRows: never;
5051
- gridColumnEnd: never;
5052
- gridColumnStart: never;
5053
- gridRowEnd: never;
5054
- gridRowStart: never;
5055
- gridTemplateAreas: never;
5056
- gridTemplateColumns: never;
5057
- gridTemplateRows: never;
5058
- grid: never;
5059
- gridArea: never;
5060
- gridColumn: never;
5061
- gridRow: never;
5062
- gridTemplate: never;
5063
- __brand__?: "platform-native" | {
5064
- readonly base?: "platform-native" | undefined;
5065
- readonly xs?: "platform-native" | undefined;
5066
- readonly s?: "platform-native" | undefined;
5067
- readonly m?: "platform-native" | undefined;
5068
- readonly l?: "platform-native" | undefined;
5069
- readonly xl?: "platform-native" | undefined;
5070
- } | undefined;
5071
- }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
5072
- width: SpacingValueType | {
5073
- readonly base?: SpacingValueType | undefined;
5074
- readonly xs?: SpacingValueType | undefined;
5075
- readonly s?: SpacingValueType | undefined;
5076
- readonly m?: SpacingValueType | undefined;
5077
- readonly l?: SpacingValueType | undefined;
5078
- readonly xl?: SpacingValueType | undefined;
5079
- };
5080
- display?: "none" | "flex" | {
5081
- readonly base?: "none" | "flex" | undefined;
5082
- readonly xs?: "none" | "flex" | undefined;
5083
- readonly s?: "none" | "flex" | undefined;
5084
- readonly m?: "none" | "flex" | undefined;
5085
- readonly l?: "none" | "flex" | undefined;
5086
- readonly xl?: "none" | "flex" | undefined;
5087
- } | undefined;
5088
- height: SpacingValueType | {
5089
- readonly base?: SpacingValueType | undefined;
5090
- readonly xs?: SpacingValueType | undefined;
5091
- readonly s?: SpacingValueType | undefined;
5092
- readonly m?: SpacingValueType | undefined;
5093
- readonly l?: SpacingValueType | undefined;
5094
- readonly xl?: SpacingValueType | undefined;
5095
- };
5096
- maxHeight: SpacingValueType | {
5097
- readonly base?: SpacingValueType | undefined;
5098
- readonly xs?: SpacingValueType | undefined;
5099
- readonly s?: SpacingValueType | undefined;
5100
- readonly m?: SpacingValueType | undefined;
5101
- readonly l?: SpacingValueType | undefined;
5102
- readonly xl?: SpacingValueType | undefined;
5103
- };
5104
- maxWidth: SpacingValueType | {
5105
- readonly base?: SpacingValueType | undefined;
5106
- readonly xs?: SpacingValueType | undefined;
5107
- readonly s?: SpacingValueType | undefined;
5108
- readonly m?: SpacingValueType | undefined;
5109
- readonly l?: SpacingValueType | undefined;
5110
- readonly xl?: SpacingValueType | undefined;
5111
- };
5112
- minHeight: SpacingValueType | {
5113
- readonly base?: SpacingValueType | undefined;
5114
- readonly xs?: SpacingValueType | undefined;
5115
- readonly s?: SpacingValueType | undefined;
5116
- readonly m?: SpacingValueType | undefined;
5117
- readonly l?: SpacingValueType | undefined;
5118
- readonly xl?: SpacingValueType | undefined;
5119
- };
5120
- minWidth: SpacingValueType | {
5121
- readonly base?: SpacingValueType | undefined;
5122
- readonly xs?: SpacingValueType | undefined;
5123
- readonly s?: SpacingValueType | undefined;
5124
- readonly m?: SpacingValueType | undefined;
5125
- readonly l?: SpacingValueType | undefined;
5126
- readonly xl?: SpacingValueType | undefined;
5127
- };
5128
- overflowX: never;
5129
- overflowY: never;
5130
- textAlign: never;
5131
- overflow?: "hidden" | "scroll" | "visible" | {
5132
- readonly base?: "hidden" | "scroll" | "visible" | undefined;
5133
- readonly xs?: "hidden" | "scroll" | "visible" | undefined;
5134
- readonly s?: "hidden" | "scroll" | "visible" | undefined;
5135
- readonly m?: "hidden" | "scroll" | "visible" | undefined;
5136
- readonly l?: "hidden" | "scroll" | "visible" | undefined;
5137
- readonly xl?: "hidden" | "scroll" | "visible" | undefined;
5138
- } | undefined;
5139
- __brand__?: "platform-native" | {
5140
- readonly base?: "platform-native" | undefined;
5141
- readonly xs?: "platform-native" | undefined;
5142
- readonly s?: "platform-native" | undefined;
5143
- readonly m?: "platform-native" | undefined;
5144
- readonly l?: "platform-native" | undefined;
5145
- readonly xl?: "platform-native" | undefined;
5146
- } | undefined;
5147
- }, "display">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
4998
+ accessibilityLabel?: string;
4999
+ };
5000
+ declare type TextInputProps = (TextInputPropsWithA11yLabel | TextInputPropsWithLabel) & TextInputCommonProps;
5001
+ declare const TextInput: React__default.ForwardRefExoticComponent<TextInputProps & React__default.RefAttributes<BladeElementRef>>;
5148
5002
 
5149
5003
  declare type PasswordInputExtraProps = {
5150
5004
  /**
@@ -5176,167 +5030,31 @@ declare type PasswordInputExtraProps = {
5176
5030
  */
5177
5031
  autoCompleteSuggestionType?: Extract<BaseInputProps['autoCompleteSuggestionType'], 'none' | 'password' | 'newPassword'>;
5178
5032
  };
5179
- declare type PasswordInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'maxCharacters' | 'validationState' | 'errorText' | 'successText' | 'helpText' | 'isDisabled' | 'defaultValue' | 'placeholder' | 'isRequired' | 'value' | 'onChange' | 'onBlur' | 'onSubmit' | 'onFocus' | 'name' | 'autoFocus' | 'keyboardReturnKeyType' | 'autoCompleteSuggestionType' | 'testID'> & PasswordInputExtraProps & StyledPropsBlade$1;
5180
- declare const PasswordInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "onBlur" | "onFocus" | "onChange" | "onSubmit" | "defaultValue" | "autoFocus" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "helpText" | "errorText" | "successText" | "maxCharacters" | "keyboardReturnKeyType" | "autoCompleteSuggestionType"> & PasswordInputExtraProps & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
5181
- bottom: SpacingValueType | {
5182
- readonly base?: SpacingValueType | undefined;
5183
- readonly xs?: SpacingValueType | undefined;
5184
- readonly s?: SpacingValueType | undefined;
5185
- readonly m?: SpacingValueType | undefined;
5186
- readonly l?: SpacingValueType | undefined;
5187
- readonly xl?: SpacingValueType | undefined;
5188
- };
5189
- left: SpacingValueType | {
5190
- readonly base?: SpacingValueType | undefined;
5191
- readonly xs?: SpacingValueType | undefined;
5192
- readonly s?: SpacingValueType | undefined;
5193
- readonly m?: SpacingValueType | undefined;
5194
- readonly l?: SpacingValueType | undefined;
5195
- readonly xl?: SpacingValueType | undefined;
5196
- };
5197
- position?: "absolute" | "relative" | {
5198
- readonly base?: "absolute" | "relative" | undefined;
5199
- readonly xs?: "absolute" | "relative" | undefined;
5200
- readonly s?: "absolute" | "relative" | undefined;
5201
- readonly m?: "absolute" | "relative" | undefined;
5202
- readonly l?: "absolute" | "relative" | undefined;
5203
- readonly xl?: "absolute" | "relative" | undefined;
5204
- } | undefined;
5205
- right: SpacingValueType | {
5206
- readonly base?: SpacingValueType | undefined;
5207
- readonly xs?: SpacingValueType | undefined;
5208
- readonly s?: SpacingValueType | undefined;
5209
- readonly m?: SpacingValueType | undefined;
5210
- readonly l?: SpacingValueType | undefined;
5211
- readonly xl?: SpacingValueType | undefined;
5212
- };
5213
- top: SpacingValueType | {
5214
- readonly base?: SpacingValueType | undefined;
5215
- readonly xs?: SpacingValueType | undefined;
5216
- readonly s?: SpacingValueType | undefined;
5217
- readonly m?: SpacingValueType | undefined;
5218
- readonly l?: SpacingValueType | undefined;
5219
- readonly xl?: SpacingValueType | undefined;
5220
- };
5221
- zIndex?: number | {
5222
- readonly base?: number | undefined;
5223
- readonly xs?: number | undefined;
5224
- readonly s?: number | undefined;
5225
- readonly m?: number | undefined;
5226
- readonly l?: number | undefined;
5227
- readonly xl?: number | undefined;
5228
- } | undefined;
5229
- __brand__?: "platform-native" | {
5230
- readonly base?: "platform-native" | undefined;
5231
- readonly xs?: "platform-native" | undefined;
5232
- readonly s?: "platform-native" | undefined;
5233
- readonly m?: "platform-native" | undefined;
5234
- readonly l?: "platform-native" | undefined;
5235
- readonly xl?: "platform-native" | undefined;
5236
- } | undefined;
5237
- } & Pick<{
5238
- gridAutoColumns: never;
5239
- gridAutoFlow: never;
5240
- gridAutoRows: never;
5241
- gridColumnEnd: never;
5242
- gridColumnStart: never;
5243
- gridRowEnd: never;
5244
- gridRowStart: never;
5245
- gridTemplateAreas: never;
5246
- gridTemplateColumns: never;
5247
- gridTemplateRows: never;
5248
- grid: never;
5249
- gridArea: never;
5250
- gridColumn: never;
5251
- gridRow: never;
5252
- gridTemplate: never;
5253
- __brand__?: "platform-native" | {
5254
- readonly base?: "platform-native" | undefined;
5255
- readonly xs?: "platform-native" | undefined;
5256
- readonly s?: "platform-native" | undefined;
5257
- readonly m?: "platform-native" | undefined;
5258
- readonly l?: "platform-native" | undefined;
5259
- readonly xl?: "platform-native" | undefined;
5260
- } | undefined;
5261
- }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
5262
- width: SpacingValueType | {
5263
- readonly base?: SpacingValueType | undefined;
5264
- readonly xs?: SpacingValueType | undefined;
5265
- readonly s?: SpacingValueType | undefined;
5266
- readonly m?: SpacingValueType | undefined;
5267
- readonly l?: SpacingValueType | undefined;
5268
- readonly xl?: SpacingValueType | undefined;
5269
- };
5270
- display?: "none" | "flex" | {
5271
- readonly base?: "none" | "flex" | undefined;
5272
- readonly xs?: "none" | "flex" | undefined;
5273
- readonly s?: "none" | "flex" | undefined;
5274
- readonly m?: "none" | "flex" | undefined;
5275
- readonly l?: "none" | "flex" | undefined;
5276
- readonly xl?: "none" | "flex" | undefined;
5277
- } | undefined;
5278
- height: SpacingValueType | {
5279
- readonly base?: SpacingValueType | undefined;
5280
- readonly xs?: SpacingValueType | undefined;
5281
- readonly s?: SpacingValueType | undefined;
5282
- readonly m?: SpacingValueType | undefined;
5283
- readonly l?: SpacingValueType | undefined;
5284
- readonly xl?: SpacingValueType | undefined;
5285
- };
5286
- maxHeight: SpacingValueType | {
5287
- readonly base?: SpacingValueType | undefined;
5288
- readonly xs?: SpacingValueType | undefined;
5289
- readonly s?: SpacingValueType | undefined;
5290
- readonly m?: SpacingValueType | undefined;
5291
- readonly l?: SpacingValueType | undefined;
5292
- readonly xl?: SpacingValueType | undefined;
5293
- };
5294
- maxWidth: SpacingValueType | {
5295
- readonly base?: SpacingValueType | undefined;
5296
- readonly xs?: SpacingValueType | undefined;
5297
- readonly s?: SpacingValueType | undefined;
5298
- readonly m?: SpacingValueType | undefined;
5299
- readonly l?: SpacingValueType | undefined;
5300
- readonly xl?: SpacingValueType | undefined;
5301
- };
5302
- minHeight: SpacingValueType | {
5303
- readonly base?: SpacingValueType | undefined;
5304
- readonly xs?: SpacingValueType | undefined;
5305
- readonly s?: SpacingValueType | undefined;
5306
- readonly m?: SpacingValueType | undefined;
5307
- readonly l?: SpacingValueType | undefined;
5308
- readonly xl?: SpacingValueType | undefined;
5309
- };
5310
- minWidth: SpacingValueType | {
5311
- readonly base?: SpacingValueType | undefined;
5312
- readonly xs?: SpacingValueType | undefined;
5313
- readonly s?: SpacingValueType | undefined;
5314
- readonly m?: SpacingValueType | undefined;
5315
- readonly l?: SpacingValueType | undefined;
5316
- readonly xl?: SpacingValueType | undefined;
5317
- };
5318
- overflowX: never;
5319
- overflowY: never;
5320
- textAlign: never;
5321
- overflow?: "hidden" | "scroll" | "visible" | {
5322
- readonly base?: "hidden" | "scroll" | "visible" | undefined;
5323
- readonly xs?: "hidden" | "scroll" | "visible" | undefined;
5324
- readonly s?: "hidden" | "scroll" | "visible" | undefined;
5325
- readonly m?: "hidden" | "scroll" | "visible" | undefined;
5326
- readonly l?: "hidden" | "scroll" | "visible" | undefined;
5327
- readonly xl?: "hidden" | "scroll" | "visible" | undefined;
5328
- } | undefined;
5329
- __brand__?: "platform-native" | {
5330
- readonly base?: "platform-native" | undefined;
5331
- readonly xs?: "platform-native" | undefined;
5332
- readonly s?: "platform-native" | undefined;
5333
- readonly m?: "platform-native" | undefined;
5334
- readonly l?: "platform-native" | undefined;
5335
- readonly xl?: "platform-native" | undefined;
5336
- } | undefined;
5337
- }, "display">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
5033
+ declare type PasswordInputCommonProps = Pick<BaseInputProps, 'label' | 'accessibilityLabel' | 'labelPosition' | 'maxCharacters' | 'validationState' | 'errorText' | 'successText' | 'helpText' | 'isDisabled' | 'defaultValue' | 'placeholder' | 'isRequired' | 'value' | 'onChange' | 'onBlur' | 'onSubmit' | 'onFocus' | 'name' | 'autoFocus' | 'keyboardReturnKeyType' | 'autoCompleteSuggestionType' | 'testID'> & PasswordInputExtraProps & StyledPropsBlade$1;
5034
+ declare type PasswordInputPropsWithA11yLabel = {
5035
+ /**
5036
+ * Label to be shown for the input field
5037
+ */
5038
+ label?: undefined;
5039
+ /**
5040
+ * Accessibility label for the input
5041
+ */
5042
+ accessibilityLabel: string;
5043
+ };
5044
+ declare type PasswordInputPropsWithLabel = {
5045
+ /**
5046
+ * Label to be shown for the input field
5047
+ */
5048
+ label: string;
5049
+ /**
5050
+ * Accessibility label for the input
5051
+ */
5052
+ accessibilityLabel?: string;
5053
+ };
5054
+ declare type PasswordInputProps = (PasswordInputPropsWithA11yLabel | PasswordInputPropsWithLabel) & PasswordInputCommonProps;
5055
+ declare const PasswordInput: React__default.ForwardRefExoticComponent<PasswordInputProps & React__default.RefAttributes<BladeElementRef>>;
5338
5056
 
5339
- 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'> & {
5057
+ declare type TextAreaCommonProps = Pick<BaseInputProps, 'label' | 'accessibilityLabel' | 'labelPosition' | 'necessityIndicator' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'placeholder' | 'defaultValue' | 'name' | 'onChange' | 'onFocus' | 'onBlur' | 'onSubmit' | 'value' | 'isDisabled' | 'isRequired' | 'maxCharacters' | 'autoFocus' | 'numberOfLines' | 'testID'> & {
5340
5058
  /**
5341
5059
  * Decides whether to render a clear icon button
5342
5060
  */
@@ -5346,180 +5064,35 @@ declare type TextAreaProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'n
5346
5064
  */
5347
5065
  onClearButtonClick?: () => void;
5348
5066
  } & StyledPropsBlade$1;
5349
- declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "onBlur" | "onFocus" | "onChange" | "onSubmit" | "defaultValue" | "autoFocus" | "numberOfLines" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "necessityIndicator" | "helpText" | "errorText" | "successText" | "maxCharacters"> & {
5067
+ declare type TextAreaPropsWithA11yLabel = {
5350
5068
  /**
5351
- * Decides whether to render a clear icon button
5069
+ * Label to be shown for the input field
5352
5070
  */
5353
- showClearButton?: boolean | undefined;
5071
+ label?: undefined;
5354
5072
  /**
5355
- * Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
5073
+ * Accessibility label for the input
5356
5074
  */
5357
- onClearButtonClick?: (() => void) | undefined;
5358
- } & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
5359
- bottom: SpacingValueType | {
5360
- readonly base?: SpacingValueType | undefined;
5361
- readonly xs?: SpacingValueType | undefined;
5362
- readonly s?: SpacingValueType | undefined;
5363
- readonly m?: SpacingValueType | undefined;
5364
- readonly l?: SpacingValueType | undefined;
5365
- readonly xl?: SpacingValueType | undefined;
5366
- };
5367
- left: SpacingValueType | {
5368
- readonly base?: SpacingValueType | undefined;
5369
- readonly xs?: SpacingValueType | undefined;
5370
- readonly s?: SpacingValueType | undefined;
5371
- readonly m?: SpacingValueType | undefined;
5372
- readonly l?: SpacingValueType | undefined;
5373
- readonly xl?: SpacingValueType | undefined;
5374
- };
5375
- position?: "absolute" | "relative" | {
5376
- readonly base?: "absolute" | "relative" | undefined;
5377
- readonly xs?: "absolute" | "relative" | undefined;
5378
- readonly s?: "absolute" | "relative" | undefined;
5379
- readonly m?: "absolute" | "relative" | undefined;
5380
- readonly l?: "absolute" | "relative" | undefined;
5381
- readonly xl?: "absolute" | "relative" | undefined;
5382
- } | undefined;
5383
- right: SpacingValueType | {
5384
- readonly base?: SpacingValueType | undefined;
5385
- readonly xs?: SpacingValueType | undefined;
5386
- readonly s?: SpacingValueType | undefined;
5387
- readonly m?: SpacingValueType | undefined;
5388
- readonly l?: SpacingValueType | undefined;
5389
- readonly xl?: SpacingValueType | undefined;
5390
- };
5391
- top: SpacingValueType | {
5392
- readonly base?: SpacingValueType | undefined;
5393
- readonly xs?: SpacingValueType | undefined;
5394
- readonly s?: SpacingValueType | undefined;
5395
- readonly m?: SpacingValueType | undefined;
5396
- readonly l?: SpacingValueType | undefined;
5397
- readonly xl?: SpacingValueType | undefined;
5398
- };
5399
- zIndex?: number | {
5400
- readonly base?: number | undefined;
5401
- readonly xs?: number | undefined;
5402
- readonly s?: number | undefined;
5403
- readonly m?: number | undefined;
5404
- readonly l?: number | undefined;
5405
- readonly xl?: number | undefined;
5406
- } | undefined;
5407
- __brand__?: "platform-native" | {
5408
- readonly base?: "platform-native" | undefined;
5409
- readonly xs?: "platform-native" | undefined;
5410
- readonly s?: "platform-native" | undefined;
5411
- readonly m?: "platform-native" | undefined;
5412
- readonly l?: "platform-native" | undefined;
5413
- readonly xl?: "platform-native" | undefined;
5414
- } | undefined;
5415
- } & Pick<{
5416
- gridAutoColumns: never;
5417
- gridAutoFlow: never;
5418
- gridAutoRows: never;
5419
- gridColumnEnd: never;
5420
- gridColumnStart: never;
5421
- gridRowEnd: never;
5422
- gridRowStart: never;
5423
- gridTemplateAreas: never;
5424
- gridTemplateColumns: never;
5425
- gridTemplateRows: never;
5426
- grid: never;
5427
- gridArea: never;
5428
- gridColumn: never;
5429
- gridRow: never;
5430
- gridTemplate: never;
5431
- __brand__?: "platform-native" | {
5432
- readonly base?: "platform-native" | undefined;
5433
- readonly xs?: "platform-native" | undefined;
5434
- readonly s?: "platform-native" | undefined;
5435
- readonly m?: "platform-native" | undefined;
5436
- readonly l?: "platform-native" | undefined;
5437
- readonly xl?: "platform-native" | undefined;
5438
- } | undefined;
5439
- }, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
5440
- width: SpacingValueType | {
5441
- readonly base?: SpacingValueType | undefined;
5442
- readonly xs?: SpacingValueType | undefined;
5443
- readonly s?: SpacingValueType | undefined;
5444
- readonly m?: SpacingValueType | undefined;
5445
- readonly l?: SpacingValueType | undefined;
5446
- readonly xl?: SpacingValueType | undefined;
5447
- };
5448
- display?: "none" | "flex" | {
5449
- readonly base?: "none" | "flex" | undefined;
5450
- readonly xs?: "none" | "flex" | undefined;
5451
- readonly s?: "none" | "flex" | undefined;
5452
- readonly m?: "none" | "flex" | undefined;
5453
- readonly l?: "none" | "flex" | undefined;
5454
- readonly xl?: "none" | "flex" | undefined;
5455
- } | undefined;
5456
- height: SpacingValueType | {
5457
- readonly base?: SpacingValueType | undefined;
5458
- readonly xs?: SpacingValueType | undefined;
5459
- readonly s?: SpacingValueType | undefined;
5460
- readonly m?: SpacingValueType | undefined;
5461
- readonly l?: SpacingValueType | undefined;
5462
- readonly xl?: SpacingValueType | undefined;
5463
- };
5464
- maxHeight: 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
- maxWidth: SpacingValueType | {
5473
- readonly base?: SpacingValueType | undefined;
5474
- readonly xs?: SpacingValueType | undefined;
5475
- readonly s?: SpacingValueType | undefined;
5476
- readonly m?: SpacingValueType | undefined;
5477
- readonly l?: SpacingValueType | undefined;
5478
- readonly xl?: SpacingValueType | undefined;
5479
- };
5480
- minHeight: 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
- minWidth: 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
- overflowX: never;
5497
- overflowY: never;
5498
- textAlign: never;
5499
- overflow?: "hidden" | "scroll" | "visible" | {
5500
- readonly base?: "hidden" | "scroll" | "visible" | undefined;
5501
- readonly xs?: "hidden" | "scroll" | "visible" | undefined;
5502
- readonly s?: "hidden" | "scroll" | "visible" | undefined;
5503
- readonly m?: "hidden" | "scroll" | "visible" | undefined;
5504
- readonly l?: "hidden" | "scroll" | "visible" | undefined;
5505
- readonly xl?: "hidden" | "scroll" | "visible" | undefined;
5506
- } | undefined;
5507
- __brand__?: "platform-native" | {
5508
- readonly base?: "platform-native" | undefined;
5509
- readonly xs?: "platform-native" | undefined;
5510
- readonly s?: "platform-native" | undefined;
5511
- readonly m?: "platform-native" | undefined;
5512
- readonly l?: "platform-native" | undefined;
5513
- readonly xl?: "platform-native" | undefined;
5514
- } | undefined;
5515
- }, "display">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
5075
+ accessibilityLabel: string;
5076
+ };
5077
+ declare type TextAreaPropsWithLabel = {
5078
+ /**
5079
+ * Label to be shown for the input field
5080
+ */
5081
+ label: string;
5082
+ /**
5083
+ * Accessibility label for the input
5084
+ */
5085
+ accessibilityLabel?: string;
5086
+ };
5087
+ declare type TextAreaProps = (TextAreaPropsWithA11yLabel | TextAreaPropsWithLabel) & TextAreaCommonProps;
5088
+ declare const TextArea: React__default.ForwardRefExoticComponent<TextAreaProps & React__default.RefAttributes<BladeElementRef>>;
5516
5089
 
5517
5090
  declare type FormInputOnEventWithIndex = ({ name, value, inputIndex, }: {
5518
5091
  name?: string;
5519
5092
  value?: string;
5520
5093
  inputIndex: number;
5521
5094
  }) => void;
5522
- declare type OTPInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'name' | 'onChange' | 'value' | 'isDisabled' | 'autoFocus' | 'keyboardReturnKeyType' | 'keyboardType' | 'placeholder' | 'testID'> & {
5095
+ declare type OTPInputCommonProps = Pick<BaseInputProps, 'label' | 'accessibilityLabel' | 'labelPosition' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'name' | 'onChange' | 'value' | 'isDisabled' | 'autoFocus' | 'keyboardReturnKeyType' | 'keyboardType' | 'placeholder' | 'testID'> & {
5523
5096
  /**
5524
5097
  * Determines the number of input fields to show for the OTP
5525
5098
  * @default 6
@@ -5556,6 +5129,27 @@ declare type OTPInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'v
5556
5129
  */
5557
5130
  onBlur?: FormInputOnEventWithIndex;
5558
5131
  } & StyledPropsBlade$1;
5132
+ declare type OTPInputPropsWithA11yLabel = {
5133
+ /**
5134
+ * Label to be shown for the input field
5135
+ */
5136
+ label?: undefined;
5137
+ /**
5138
+ * Accessibility label for the input
5139
+ */
5140
+ accessibilityLabel: string;
5141
+ };
5142
+ declare type OTPInputPropsWithLabel = {
5143
+ /**
5144
+ * Label to be shown for the input field
5145
+ */
5146
+ label: string;
5147
+ /**
5148
+ * Accessibility label for the input
5149
+ */
5150
+ accessibilityLabel?: string;
5151
+ };
5152
+ declare type OTPInputProps = (OTPInputPropsWithA11yLabel | OTPInputPropsWithLabel) & OTPInputCommonProps;
5559
5153
  /**
5560
5154
  * OTPInput component can be used for accepting OTPs sent to users for authentication/verification purposes.
5561
5155
  *
@@ -5570,9 +5164,9 @@ declare type OTPInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'v
5570
5164
  * />
5571
5165
  * ```
5572
5166
  */
5573
- declare const OTPInput: ({ autoFocus, errorText, helpText, isDisabled, keyboardReturnKeyType, keyboardType, label, labelPosition, name, onChange, onFocus, onBlur, onOTPFilled, otpLength, placeholder, successText, validationState, value, isMasked, autoCompleteSuggestionType, testID, ...styledProps }: OTPInputProps) => React__default.ReactElement;
5167
+ declare const OTPInput: ({ autoFocus, errorText, helpText, isDisabled, keyboardReturnKeyType, keyboardType, label, accessibilityLabel, labelPosition, name, onChange, onFocus, onBlur, onOTPFilled, otpLength, placeholder, successText, validationState, value, isMasked, autoCompleteSuggestionType, testID, ...styledProps }: OTPInputProps) => React__default.ReactElement;
5574
5168
 
5575
- declare type SelectInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'necessityIndicator' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'name' | 'isDisabled' | 'isRequired' | 'prefix' | 'suffix' | 'autoFocus' | 'onClick' | 'onFocus' | 'onBlur' | 'placeholder' | 'testID'> & {
5169
+ declare type SelectInputCommonProps = Pick<BaseInputProps, 'label' | 'accessibilityLabel' | 'labelPosition' | 'necessityIndicator' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'name' | 'isDisabled' | 'isRequired' | 'prefix' | 'suffix' | 'autoFocus' | 'onClick' | 'onFocus' | 'onBlur' | 'placeholder' | 'testID'> & {
5576
5170
  icon?: IconComponent$1;
5577
5171
  /**
5578
5172
  * Controlled value of the Select. Use it in combination of `onChange`.
@@ -5589,6 +5183,27 @@ declare type SelectInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' |
5589
5183
  values: string[];
5590
5184
  }) => void;
5591
5185
  };
5186
+ declare type SelectInputPropsWithA11yLabel = {
5187
+ /**
5188
+ * Label to be shown for the input field
5189
+ */
5190
+ label?: undefined;
5191
+ /**
5192
+ * Accessibility label for the input
5193
+ */
5194
+ accessibilityLabel: string;
5195
+ };
5196
+ declare type SelectInputPropsWithLabel = {
5197
+ /**
5198
+ * Label to be shown for the input field
5199
+ */
5200
+ label: string;
5201
+ /**
5202
+ * Accessibility label for the input
5203
+ */
5204
+ accessibilityLabel?: string;
5205
+ };
5206
+ declare type SelectInputProps = (SelectInputPropsWithA11yLabel | SelectInputPropsWithLabel) & SelectInputCommonProps;
5592
5207
  /**
5593
5208
  * ### SelectInput
5594
5209
  *
@@ -5616,23 +5231,7 @@ declare type SelectInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' |
5616
5231
  *
5617
5232
  * Checkout {@link https://blade.razorpay.com/?path=/docs/components-dropdown-with-select--with-single-select SelectInput Documentation}.
5618
5233
  */
5619
- declare const SelectInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "prefix" | "label" | "onBlur" | "onFocus" | "onClick" | "autoFocus" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "necessityIndicator" | "helpText" | "errorText" | "successText" | "suffix"> & {
5620
- icon?: IconComponent$1 | undefined;
5621
- /**
5622
- * Controlled value of the Select. Use it in combination of `onChange`.
5623
- *
5624
- * Check out [Controlled Dropdown Documentation](https://blade.razorpay.com/?path=/story/components-dropdown-with-select--controlled-dropdown&globals=measureEnabled:false) for example.
5625
- */
5626
- value?: string | string[] | undefined;
5627
- /**
5628
- * Used to set the default value of SelectInput when it's uncontrolled. Use `value` instead for controlled SelectInput
5629
- */
5630
- defaultValue?: string | string[] | undefined;
5631
- onChange?: (({ name, values }: {
5632
- name?: string | undefined;
5633
- values: string[];
5634
- }) => void) | undefined;
5635
- } & React__default.RefAttributes<BladeElementRef>>;
5234
+ declare const SelectInput: React__default.ForwardRefExoticComponent<SelectInputProps & React__default.RefAttributes<BladeElementRef>>;
5636
5235
 
5637
5236
  declare type IndicatorCommonProps = {
5638
5237
  /**
@@ -6960,4 +6559,4 @@ declare type BladeCommonEvents = {
6960
6559
  }>;
6961
6560
  };
6962
6561
 
6963
- 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 };
6562
+ export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionDivider, ActionListSectionProps, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, Divider, DividerProps, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListItemText, ListItemTextProps, ListProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputCommonProps, OctagonIcon, OffersIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonsIcon, PaymentLinksIcon, PaymentPagesIcon, PercentIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, Tag, TagIcon, TagProps, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useActionListContext, useTheme };