@razorpay/blade 12.0.3 → 12.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/lib/native/components/Button/IconButton/IconButton.js +1 -1
- package/build/lib/native/components/Button/IconButton/IconButton.js.map +1 -1
- package/build/lib/native/components/Radio/Radio.js +1 -1
- package/build/lib/native/components/Radio/Radio.js.map +1 -1
- package/build/lib/native/components/Radio/RadioGroup/RadioGroup.js.map +1 -1
- package/build/lib/native/components/Radio/RadioGroup/useRadioGroup.js +1 -1
- package/build/lib/native/components/Radio/RadioGroup/useRadioGroup.js.map +1 -1
- package/build/lib/native/components/Radio/useRadio.js.map +1 -1
- package/build/lib/native/utils/useControllable.js +1 -1
- package/build/lib/native/utils/useControllable.js.map +1 -1
- package/build/lib/web/development/components/BottomSheet/BottomSheet.web.js +17 -1
- package/build/lib/web/development/components/BottomSheet/BottomSheet.web.js.map +1 -1
- package/build/lib/web/development/components/Button/IconButton/IconButton.js +2 -2
- package/build/lib/web/development/components/Button/IconButton/IconButton.js.map +1 -1
- package/build/lib/web/development/components/Button/IconButton/StyledIconButton.web.js +7 -4
- package/build/lib/web/development/components/Button/IconButton/StyledIconButton.web.js.map +1 -1
- package/build/lib/web/development/components/ButtonGroup/ButtonGroup.web.js +7 -17
- package/build/lib/web/development/components/ButtonGroup/ButtonGroup.web.js.map +1 -1
- package/build/lib/web/development/components/Drawer/Drawer.web.js +6 -4
- package/build/lib/web/development/components/Drawer/Drawer.web.js.map +1 -1
- package/build/lib/web/development/components/Radio/Radio.js +3 -2
- package/build/lib/web/development/components/Radio/Radio.js.map +1 -1
- package/build/lib/web/development/components/Radio/RadioGroup/RadioGroup.js.map +1 -1
- package/build/lib/web/development/components/Radio/RadioGroup/useRadioGroup.js +7 -6
- package/build/lib/web/development/components/Radio/RadioGroup/useRadioGroup.js.map +1 -1
- package/build/lib/web/development/components/Radio/useRadio.js.map +1 -1
- package/build/lib/web/development/components/SideNav/SideNavItems/SideNavLink.web.js +14 -7
- package/build/lib/web/development/components/SideNav/SideNavItems/SideNavLink.web.js.map +1 -1
- package/build/lib/web/development/components/Tooltip/Tooltip.web.js +7 -1
- package/build/lib/web/development/components/Tooltip/Tooltip.web.js.map +1 -1
- package/build/lib/web/development/components/Tooltip/componentIds.js +6 -0
- package/build/lib/web/development/components/Tooltip/componentIds.js.map +1 -0
- package/build/lib/web/development/utils/useControllable.js +2 -1
- package/build/lib/web/development/utils/useControllable.js.map +1 -1
- package/build/lib/web/production/components/BottomSheet/BottomSheet.web.js +17 -1
- package/build/lib/web/production/components/BottomSheet/BottomSheet.web.js.map +1 -1
- package/build/lib/web/production/components/Button/IconButton/IconButton.js +2 -2
- package/build/lib/web/production/components/Button/IconButton/IconButton.js.map +1 -1
- package/build/lib/web/production/components/Button/IconButton/StyledIconButton.web.js +7 -4
- package/build/lib/web/production/components/Button/IconButton/StyledIconButton.web.js.map +1 -1
- package/build/lib/web/production/components/ButtonGroup/ButtonGroup.web.js +7 -17
- package/build/lib/web/production/components/ButtonGroup/ButtonGroup.web.js.map +1 -1
- package/build/lib/web/production/components/Drawer/Drawer.web.js +6 -4
- package/build/lib/web/production/components/Drawer/Drawer.web.js.map +1 -1
- package/build/lib/web/production/components/Radio/Radio.js +3 -2
- package/build/lib/web/production/components/Radio/Radio.js.map +1 -1
- package/build/lib/web/production/components/Radio/RadioGroup/RadioGroup.js.map +1 -1
- package/build/lib/web/production/components/Radio/RadioGroup/useRadioGroup.js +7 -6
- package/build/lib/web/production/components/Radio/RadioGroup/useRadioGroup.js.map +1 -1
- package/build/lib/web/production/components/Radio/useRadio.js.map +1 -1
- package/build/lib/web/production/components/SideNav/SideNavItems/SideNavLink.web.js +14 -7
- package/build/lib/web/production/components/SideNav/SideNavItems/SideNavLink.web.js.map +1 -1
- package/build/lib/web/production/components/Tooltip/Tooltip.web.js +7 -1
- package/build/lib/web/production/components/Tooltip/Tooltip.web.js.map +1 -1
- package/build/lib/web/production/components/Tooltip/componentIds.js +6 -0
- package/build/lib/web/production/components/Tooltip/componentIds.js.map +1 -0
- package/build/lib/web/production/utils/useControllable.js +2 -1
- package/build/lib/web/production/utils/useControllable.js.map +1 -1
- package/build/types/components/index.d.ts +1168 -45
- package/build/types/components/index.native.d.ts +345 -4
- package/package.json +1 -1
|
@@ -5101,7 +5101,7 @@ type IconButtonProps = {
|
|
|
5101
5101
|
* Sets tabindex property on button element
|
|
5102
5102
|
*/
|
|
5103
5103
|
_tabIndex?: number;
|
|
5104
|
-
} & DataAnalyticsAttribute & BladeCommonEvents & Platform.Select<{
|
|
5104
|
+
} & DataAnalyticsAttribute & BladeCommonEvents & StyledPropsBlade & Platform.Select<{
|
|
5105
5105
|
web: {
|
|
5106
5106
|
onClick: (event: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
5107
5107
|
/**
|
|
@@ -5145,7 +5145,346 @@ declare const IconButton: React__default.ForwardRefExoticComponent<{
|
|
|
5145
5145
|
* Sets tabindex property on button element
|
|
5146
5146
|
*/
|
|
5147
5147
|
_tabIndex?: number | undefined;
|
|
5148
|
-
} & DataAnalyticsAttribute & BladeCommonEvents & {
|
|
5148
|
+
} & DataAnalyticsAttribute & BladeCommonEvents & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5149
|
+
bottom: SpacingValueType | {
|
|
5150
|
+
readonly base?: SpacingValueType | undefined;
|
|
5151
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5152
|
+
readonly s?: SpacingValueType | undefined;
|
|
5153
|
+
readonly m?: SpacingValueType | undefined;
|
|
5154
|
+
readonly l?: SpacingValueType | undefined;
|
|
5155
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5156
|
+
};
|
|
5157
|
+
left: SpacingValueType | {
|
|
5158
|
+
readonly base?: SpacingValueType | undefined;
|
|
5159
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5160
|
+
readonly s?: SpacingValueType | undefined;
|
|
5161
|
+
readonly m?: SpacingValueType | undefined;
|
|
5162
|
+
readonly l?: SpacingValueType | undefined;
|
|
5163
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5164
|
+
};
|
|
5165
|
+
position?: "absolute" | "relative" | {
|
|
5166
|
+
readonly base?: "absolute" | "relative" | undefined;
|
|
5167
|
+
readonly xs?: "absolute" | "relative" | undefined;
|
|
5168
|
+
readonly s?: "absolute" | "relative" | undefined;
|
|
5169
|
+
readonly m?: "absolute" | "relative" | undefined;
|
|
5170
|
+
readonly l?: "absolute" | "relative" | undefined;
|
|
5171
|
+
readonly xl?: "absolute" | "relative" | undefined;
|
|
5172
|
+
} | undefined;
|
|
5173
|
+
right: SpacingValueType | {
|
|
5174
|
+
readonly base?: SpacingValueType | undefined;
|
|
5175
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5176
|
+
readonly s?: SpacingValueType | undefined;
|
|
5177
|
+
readonly m?: SpacingValueType | undefined;
|
|
5178
|
+
readonly l?: SpacingValueType | undefined;
|
|
5179
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5180
|
+
};
|
|
5181
|
+
top: 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
|
+
zIndex?: number | {
|
|
5190
|
+
readonly base?: number | undefined;
|
|
5191
|
+
readonly xs?: number | undefined;
|
|
5192
|
+
readonly s?: number | undefined;
|
|
5193
|
+
readonly m?: number | undefined;
|
|
5194
|
+
readonly l?: number | undefined;
|
|
5195
|
+
readonly xl?: number | undefined;
|
|
5196
|
+
} | undefined;
|
|
5197
|
+
__brand__?: "platform-native" | {
|
|
5198
|
+
readonly base?: "platform-native" | undefined;
|
|
5199
|
+
readonly xs?: "platform-native" | undefined;
|
|
5200
|
+
readonly s?: "platform-native" | undefined;
|
|
5201
|
+
readonly m?: "platform-native" | undefined;
|
|
5202
|
+
readonly l?: "platform-native" | undefined;
|
|
5203
|
+
readonly xl?: "platform-native" | undefined;
|
|
5204
|
+
} | undefined;
|
|
5205
|
+
} & Pick<{
|
|
5206
|
+
gridAutoColumns: never;
|
|
5207
|
+
gridAutoFlow: never;
|
|
5208
|
+
gridAutoRows: never;
|
|
5209
|
+
gridColumnEnd: never;
|
|
5210
|
+
gridColumnStart: never;
|
|
5211
|
+
gridRowEnd: never;
|
|
5212
|
+
gridRowStart: never;
|
|
5213
|
+
gridTemplateAreas: never;
|
|
5214
|
+
gridTemplateColumns: never;
|
|
5215
|
+
gridTemplateRows: never;
|
|
5216
|
+
grid: never;
|
|
5217
|
+
gridArea: never;
|
|
5218
|
+
gridColumn: never;
|
|
5219
|
+
gridRow: never;
|
|
5220
|
+
gridTemplate: never;
|
|
5221
|
+
__brand__?: "platform-native" | {
|
|
5222
|
+
readonly base?: "platform-native" | undefined;
|
|
5223
|
+
readonly xs?: "platform-native" | undefined;
|
|
5224
|
+
readonly s?: "platform-native" | undefined;
|
|
5225
|
+
readonly m?: "platform-native" | undefined;
|
|
5226
|
+
readonly l?: "platform-native" | undefined;
|
|
5227
|
+
readonly xl?: "platform-native" | undefined;
|
|
5228
|
+
} | undefined;
|
|
5229
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
|
|
5230
|
+
width: SpacingValueType | {
|
|
5231
|
+
readonly base?: SpacingValueType | undefined;
|
|
5232
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5233
|
+
readonly s?: SpacingValueType | undefined;
|
|
5234
|
+
readonly m?: SpacingValueType | undefined;
|
|
5235
|
+
readonly l?: SpacingValueType | undefined;
|
|
5236
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5237
|
+
};
|
|
5238
|
+
display?: "none" | "flex" | {
|
|
5239
|
+
readonly base?: "none" | "flex" | undefined;
|
|
5240
|
+
readonly xs?: "none" | "flex" | undefined;
|
|
5241
|
+
readonly s?: "none" | "flex" | undefined;
|
|
5242
|
+
readonly m?: "none" | "flex" | undefined;
|
|
5243
|
+
readonly l?: "none" | "flex" | undefined;
|
|
5244
|
+
readonly xl?: "none" | "flex" | undefined;
|
|
5245
|
+
} | undefined;
|
|
5246
|
+
height: SpacingValueType | {
|
|
5247
|
+
readonly base?: SpacingValueType | undefined;
|
|
5248
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5249
|
+
readonly s?: SpacingValueType | undefined;
|
|
5250
|
+
readonly m?: SpacingValueType | undefined;
|
|
5251
|
+
readonly l?: SpacingValueType | undefined;
|
|
5252
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5253
|
+
};
|
|
5254
|
+
maxHeight: SpacingValueType | {
|
|
5255
|
+
readonly base?: SpacingValueType | undefined;
|
|
5256
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5257
|
+
readonly s?: SpacingValueType | undefined;
|
|
5258
|
+
readonly m?: SpacingValueType | undefined;
|
|
5259
|
+
readonly l?: SpacingValueType | undefined;
|
|
5260
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5261
|
+
};
|
|
5262
|
+
maxWidth: 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
|
+
minHeight: SpacingValueType | {
|
|
5271
|
+
readonly base?: SpacingValueType | undefined;
|
|
5272
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5273
|
+
readonly s?: SpacingValueType | undefined;
|
|
5274
|
+
readonly m?: SpacingValueType | undefined;
|
|
5275
|
+
readonly l?: SpacingValueType | undefined;
|
|
5276
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5277
|
+
};
|
|
5278
|
+
minWidth: 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
|
+
overflowX: never;
|
|
5287
|
+
overflowY: never;
|
|
5288
|
+
textAlign: never;
|
|
5289
|
+
whiteSpace: never;
|
|
5290
|
+
overflow?: "hidden" | "scroll" | "visible" | {
|
|
5291
|
+
readonly base?: "hidden" | "scroll" | "visible" | undefined;
|
|
5292
|
+
readonly xs?: "hidden" | "scroll" | "visible" | undefined;
|
|
5293
|
+
readonly s?: "hidden" | "scroll" | "visible" | undefined;
|
|
5294
|
+
readonly m?: "hidden" | "scroll" | "visible" | undefined;
|
|
5295
|
+
readonly l?: "hidden" | "scroll" | "visible" | undefined;
|
|
5296
|
+
readonly xl?: "hidden" | "scroll" | "visible" | undefined;
|
|
5297
|
+
} | undefined;
|
|
5298
|
+
__brand__?: "platform-native" | {
|
|
5299
|
+
readonly base?: "platform-native" | undefined;
|
|
5300
|
+
readonly xs?: "platform-native" | undefined;
|
|
5301
|
+
readonly s?: "platform-native" | undefined;
|
|
5302
|
+
readonly m?: "platform-native" | undefined;
|
|
5303
|
+
readonly l?: "platform-native" | undefined;
|
|
5304
|
+
readonly xl?: "platform-native" | undefined;
|
|
5305
|
+
} | undefined;
|
|
5306
|
+
}, "display"> & Pick<{
|
|
5307
|
+
elevation?: ElevationLevels | {
|
|
5308
|
+
readonly base?: ElevationLevels | undefined;
|
|
5309
|
+
readonly xs?: ElevationLevels | undefined;
|
|
5310
|
+
readonly s?: ElevationLevels | undefined;
|
|
5311
|
+
readonly m?: ElevationLevels | undefined;
|
|
5312
|
+
readonly l?: ElevationLevels | undefined;
|
|
5313
|
+
readonly xl?: ElevationLevels | undefined;
|
|
5314
|
+
} | undefined;
|
|
5315
|
+
backgroundImage: never;
|
|
5316
|
+
backgroundOrigin: never;
|
|
5317
|
+
backgroundRepeat: never;
|
|
5318
|
+
backgroundSize: never;
|
|
5319
|
+
borderBottomColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
5320
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5321
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5322
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5323
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5324
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5325
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5326
|
+
};
|
|
5327
|
+
borderBottomLeftRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
5328
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5329
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5330
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5331
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5332
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5333
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5334
|
+
};
|
|
5335
|
+
borderBottomRightRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
5336
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5337
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5338
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5339
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5340
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5341
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5342
|
+
};
|
|
5343
|
+
borderBottomStyle: never;
|
|
5344
|
+
borderBottomWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
5345
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5346
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5347
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5348
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5349
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5350
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5351
|
+
};
|
|
5352
|
+
borderLeftColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
5353
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5354
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5355
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5356
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5357
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5358
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5359
|
+
};
|
|
5360
|
+
borderLeftStyle: never;
|
|
5361
|
+
borderLeftWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
5362
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5363
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5364
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5365
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5366
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5367
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5368
|
+
};
|
|
5369
|
+
borderRightColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
5370
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5371
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5372
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5373
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5374
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5375
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5376
|
+
};
|
|
5377
|
+
borderRightStyle: never;
|
|
5378
|
+
borderRightWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
5379
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5380
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5381
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5382
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5383
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5384
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5385
|
+
};
|
|
5386
|
+
borderTopColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
5387
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5388
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5389
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5390
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5391
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5392
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5393
|
+
};
|
|
5394
|
+
borderTopLeftRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
5395
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5396
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5397
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5398
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5399
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5400
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5401
|
+
};
|
|
5402
|
+
borderTopRightRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
5403
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5404
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5405
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5406
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5407
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5408
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5409
|
+
};
|
|
5410
|
+
borderTopStyle: never;
|
|
5411
|
+
borderTopWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
5412
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5413
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5414
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5415
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5416
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5417
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5418
|
+
};
|
|
5419
|
+
clipPath: never;
|
|
5420
|
+
opacity?: react_native.AnimatableNumericValue | {
|
|
5421
|
+
readonly base?: react_native.AnimatableNumericValue | undefined;
|
|
5422
|
+
readonly xs?: react_native.AnimatableNumericValue | undefined;
|
|
5423
|
+
readonly s?: react_native.AnimatableNumericValue | undefined;
|
|
5424
|
+
readonly m?: react_native.AnimatableNumericValue | undefined;
|
|
5425
|
+
readonly l?: react_native.AnimatableNumericValue | undefined;
|
|
5426
|
+
readonly xl?: react_native.AnimatableNumericValue | undefined;
|
|
5427
|
+
} | undefined;
|
|
5428
|
+
pointerEvents?: "none" | "auto" | "box-none" | "box-only" | {
|
|
5429
|
+
readonly base?: "none" | "auto" | "box-none" | "box-only" | undefined;
|
|
5430
|
+
readonly xs?: "none" | "auto" | "box-none" | "box-only" | undefined;
|
|
5431
|
+
readonly s?: "none" | "auto" | "box-none" | "box-only" | undefined;
|
|
5432
|
+
readonly m?: "none" | "auto" | "box-none" | "box-only" | undefined;
|
|
5433
|
+
readonly l?: "none" | "auto" | "box-none" | "box-only" | undefined;
|
|
5434
|
+
readonly xl?: "none" | "auto" | "box-none" | "box-only" | undefined;
|
|
5435
|
+
} | undefined;
|
|
5436
|
+
transform?: (react_native.PerpectiveTransform | react_native.RotateTransform | react_native.RotateXTransform | react_native.RotateYTransform | react_native.RotateZTransform | react_native.ScaleTransform | react_native.ScaleXTransform | react_native.ScaleYTransform | react_native.TranslateXTransform | react_native.TranslateYTransform | react_native.SkewXTransform | react_native.SkewYTransform | react_native.MatrixTransform)[] | {
|
|
5437
|
+
readonly base?: (react_native.PerpectiveTransform | react_native.RotateTransform | react_native.RotateXTransform | react_native.RotateYTransform | react_native.RotateZTransform | react_native.ScaleTransform | react_native.ScaleXTransform | react_native.ScaleYTransform | react_native.TranslateXTransform | react_native.TranslateYTransform | react_native.SkewXTransform | react_native.SkewYTransform | react_native.MatrixTransform)[] | undefined;
|
|
5438
|
+
readonly xs?: (react_native.PerpectiveTransform | react_native.RotateTransform | react_native.RotateXTransform | react_native.RotateYTransform | react_native.RotateZTransform | react_native.ScaleTransform | react_native.ScaleXTransform | react_native.ScaleYTransform | react_native.TranslateXTransform | react_native.TranslateYTransform | react_native.SkewXTransform | react_native.SkewYTransform | react_native.MatrixTransform)[] | undefined;
|
|
5439
|
+
readonly s?: (react_native.PerpectiveTransform | react_native.RotateTransform | react_native.RotateXTransform | react_native.RotateYTransform | react_native.RotateZTransform | react_native.ScaleTransform | react_native.ScaleXTransform | react_native.ScaleYTransform | react_native.TranslateXTransform | react_native.TranslateYTransform | react_native.SkewXTransform | react_native.SkewYTransform | react_native.MatrixTransform)[] | undefined;
|
|
5440
|
+
readonly m?: (react_native.PerpectiveTransform | react_native.RotateTransform | react_native.RotateXTransform | react_native.RotateYTransform | react_native.RotateZTransform | react_native.ScaleTransform | react_native.ScaleXTransform | react_native.ScaleYTransform | react_native.TranslateXTransform | react_native.TranslateYTransform | react_native.SkewXTransform | react_native.SkewYTransform | react_native.MatrixTransform)[] | undefined;
|
|
5441
|
+
readonly l?: (react_native.PerpectiveTransform | react_native.RotateTransform | react_native.RotateXTransform | react_native.RotateYTransform | react_native.RotateZTransform | react_native.ScaleTransform | react_native.ScaleXTransform | react_native.ScaleYTransform | react_native.TranslateXTransform | react_native.TranslateYTransform | react_native.SkewXTransform | react_native.SkewYTransform | react_native.MatrixTransform)[] | undefined;
|
|
5442
|
+
readonly xl?: (react_native.PerpectiveTransform | react_native.RotateTransform | react_native.RotateXTransform | react_native.RotateYTransform | react_native.RotateZTransform | react_native.ScaleTransform | react_native.ScaleXTransform | react_native.ScaleYTransform | react_native.TranslateXTransform | react_native.TranslateYTransform | react_native.SkewXTransform | react_native.SkewYTransform | react_native.MatrixTransform)[] | undefined;
|
|
5443
|
+
} | undefined;
|
|
5444
|
+
transformOrigin: never;
|
|
5445
|
+
visibility: never;
|
|
5446
|
+
backgroundPosition: never;
|
|
5447
|
+
borderColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
5448
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5449
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5450
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5451
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5452
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5453
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
5454
|
+
};
|
|
5455
|
+
borderRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
5456
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5457
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5458
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5459
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5460
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5461
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
5462
|
+
};
|
|
5463
|
+
borderStyle?: "dashed" | "dotted" | "solid" | {
|
|
5464
|
+
readonly base?: "dashed" | "dotted" | "solid" | undefined;
|
|
5465
|
+
readonly xs?: "dashed" | "dotted" | "solid" | undefined;
|
|
5466
|
+
readonly s?: "dashed" | "dotted" | "solid" | undefined;
|
|
5467
|
+
readonly m?: "dashed" | "dotted" | "solid" | undefined;
|
|
5468
|
+
readonly l?: "dashed" | "dotted" | "solid" | undefined;
|
|
5469
|
+
readonly xl?: "dashed" | "dotted" | "solid" | undefined;
|
|
5470
|
+
} | undefined;
|
|
5471
|
+
borderWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
5472
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5473
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5474
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5475
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5476
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5477
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
5478
|
+
};
|
|
5479
|
+
__brand__?: "platform-native" | {
|
|
5480
|
+
readonly base?: "platform-native" | undefined;
|
|
5481
|
+
readonly xs?: "platform-native" | undefined;
|
|
5482
|
+
readonly s?: "platform-native" | undefined;
|
|
5483
|
+
readonly m?: "platform-native" | undefined;
|
|
5484
|
+
readonly l?: "platform-native" | undefined;
|
|
5485
|
+
readonly xl?: "platform-native" | undefined;
|
|
5486
|
+
} | undefined;
|
|
5487
|
+
}, "visibility">, "__brand__">> & {
|
|
5149
5488
|
onClick: (event: GestureResponderEvent) => void;
|
|
5150
5489
|
isHighlighted?: undefined;
|
|
5151
5490
|
} & {
|
|
@@ -5189,7 +5528,7 @@ type ButtonGroupProps = {
|
|
|
5189
5528
|
* Test ID for automation
|
|
5190
5529
|
*/
|
|
5191
5530
|
testID?: string;
|
|
5192
|
-
} & DataAnalyticsAttribute;
|
|
5531
|
+
} & DataAnalyticsAttribute & StyledPropsBlade;
|
|
5193
5532
|
|
|
5194
5533
|
declare const ButtonGroup: (_props: ButtonGroupProps) => React.ReactElement;
|
|
5195
5534
|
|
|
@@ -12589,9 +12928,10 @@ type RadioGroupProps = {
|
|
|
12589
12928
|
/**
|
|
12590
12929
|
* The callback invoked when any of the radio's state changes
|
|
12591
12930
|
*/
|
|
12592
|
-
onChange?: ({ name, value }: {
|
|
12931
|
+
onChange?: ({ name, value, event, }: {
|
|
12593
12932
|
name: string | undefined;
|
|
12594
12933
|
value: string;
|
|
12934
|
+
event: React__default.ChangeEvent<HTMLInputElement>;
|
|
12595
12935
|
}) => void;
|
|
12596
12936
|
/**
|
|
12597
12937
|
* The name of the input field in a radio
|
|
@@ -12752,6 +13092,7 @@ type SideNavLinkProps = {
|
|
|
12752
13092
|
* ```
|
|
12753
13093
|
*/
|
|
12754
13094
|
tooltip?: Pick<TooltipProps, 'title' | 'content' | 'onOpenChange'>;
|
|
13095
|
+
onClick?: (event: React__default.MouseEvent) => void;
|
|
12755
13096
|
} & DataAnalyticsAttribute;
|
|
12756
13097
|
type SideNavSectionProps = {
|
|
12757
13098
|
title?: string;
|