@razorpay/blade 10.3.1 → 10.4.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/components/index.d.ts +516 -72
- package/build/components/index.development.web.js +2609 -1882
- package/build/components/index.development.web.js.map +1 -1
- package/build/components/index.native.d.ts +355 -37
- package/build/components/index.native.js +322 -300
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.production.web.js +2586 -1889
- package/build/components/index.production.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +2 -1
- package/build/css/bankingThemeDarkMobile.css +2 -1
- package/build/css/bankingThemeLightDesktop.css +2 -1
- package/build/css/bankingThemeLightMobile.css +2 -1
- package/build/css/paymentThemeDarkDesktop.css +2 -1
- package/build/css/paymentThemeDarkMobile.css +2 -1
- package/build/css/paymentThemeLightDesktop.css +2 -1
- package/build/css/paymentThemeLightMobile.css +2 -1
- package/build/tokens/index.d.ts +4 -0
- package/build/tokens/index.development.web.js +2 -1
- package/build/tokens/index.development.web.js.map +1 -1
- package/build/tokens/index.native.d.ts +4 -0
- package/build/tokens/index.native.js +1 -1
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.production.web.js +2 -1
- package/build/tokens/index.production.web.js.map +1 -1
- package/build/utils/index.d.ts +2 -0
- package/build/utils/index.native.d.ts +2 -0
- package/package.json +2 -2
|
@@ -32,6 +32,8 @@ type BorderWidth = Readonly<{
|
|
|
32
32
|
thin: 1;
|
|
33
33
|
/** thick: 1.5(px/rem/pt) */
|
|
34
34
|
thick: 1.5;
|
|
35
|
+
/** thicker: 2(px/rem/pt) */
|
|
36
|
+
thicker: 2;
|
|
35
37
|
}>;
|
|
36
38
|
|
|
37
39
|
type Border = Readonly<{
|
|
@@ -3120,13 +3122,13 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3120
3122
|
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3121
3123
|
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3122
3124
|
};
|
|
3123
|
-
borderBottomWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
3124
|
-
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3125
|
-
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3126
|
-
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3127
|
-
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3128
|
-
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3129
|
-
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3125
|
+
borderBottomWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
3126
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3127
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3128
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3129
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3130
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3131
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3130
3132
|
};
|
|
3131
3133
|
borderLeftColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
3132
3134
|
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
@@ -3136,13 +3138,13 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3136
3138
|
readonly l?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
3137
3139
|
readonly xl?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
3138
3140
|
};
|
|
3139
|
-
borderLeftWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
3140
|
-
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3141
|
-
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3142
|
-
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3143
|
-
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3144
|
-
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3145
|
-
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3141
|
+
borderLeftWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
3142
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3143
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3144
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3145
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3146
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3147
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3146
3148
|
};
|
|
3147
3149
|
borderRightColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
3148
3150
|
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
@@ -3152,13 +3154,13 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3152
3154
|
readonly l?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
3153
3155
|
readonly xl?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
3154
3156
|
};
|
|
3155
|
-
borderRightWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
3156
|
-
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3157
|
-
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3158
|
-
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3159
|
-
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3160
|
-
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3161
|
-
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3157
|
+
borderRightWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
3158
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3159
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3160
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3161
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3162
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3163
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3162
3164
|
};
|
|
3163
3165
|
borderTopColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
3164
3166
|
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
@@ -3184,13 +3186,13 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3184
3186
|
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3185
3187
|
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3186
3188
|
};
|
|
3187
|
-
borderTopWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
3188
|
-
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3189
|
-
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3190
|
-
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3191
|
-
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3192
|
-
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3193
|
-
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3189
|
+
borderTopWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
3190
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3191
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3192
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3193
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3194
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3195
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3194
3196
|
};
|
|
3195
3197
|
pointerEvents?: csstype.Property.PointerEvents | {
|
|
3196
3198
|
readonly base?: csstype.Property.PointerEvents | undefined;
|
|
@@ -3224,13 +3226,13 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3224
3226
|
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3225
3227
|
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3226
3228
|
};
|
|
3227
|
-
borderWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
3228
|
-
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3229
|
-
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3230
|
-
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3231
|
-
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3232
|
-
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3233
|
-
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3229
|
+
borderWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
3230
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3231
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3232
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3233
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3234
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3235
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
3234
3236
|
};
|
|
3235
3237
|
__brand__?: "platform-web" | {
|
|
3236
3238
|
readonly base?: "platform-web" | undefined;
|
|
@@ -3305,10 +3307,68 @@ declare type CardProps = {
|
|
|
3305
3307
|
* - Docs: https://blade.razorpay.com/?path=/docs/tokens-spacing--page
|
|
3306
3308
|
*/
|
|
3307
3309
|
padding?: Extract<SpacingValueType$1, 'spacing.0' | 'spacing.3' | 'spacing.5' | 'spacing.7'>;
|
|
3310
|
+
/**
|
|
3311
|
+
* Sets the width of the card
|
|
3312
|
+
*/
|
|
3308
3313
|
width?: BoxProps$1['width'];
|
|
3314
|
+
/**
|
|
3315
|
+
* Sets the height of the card
|
|
3316
|
+
*/
|
|
3309
3317
|
height?: BoxProps$1['height'];
|
|
3318
|
+
/**
|
|
3319
|
+
* If `true`, the card will be in selected state
|
|
3320
|
+
* Card will have a primary color border around it.
|
|
3321
|
+
*
|
|
3322
|
+
* @default false
|
|
3323
|
+
*/
|
|
3324
|
+
isSelected?: boolean;
|
|
3325
|
+
/**
|
|
3326
|
+
* Makes the Card linkable by setting the `href` prop
|
|
3327
|
+
*
|
|
3328
|
+
* @default undefined
|
|
3329
|
+
*/
|
|
3330
|
+
href?: string;
|
|
3331
|
+
/**
|
|
3332
|
+
* Sets the `target` attribute for the linkable card
|
|
3333
|
+
*/
|
|
3334
|
+
target?: string;
|
|
3335
|
+
/**
|
|
3336
|
+
* Sets the `rel` attribute for the linkable card
|
|
3337
|
+
*/
|
|
3338
|
+
rel?: string;
|
|
3339
|
+
/**
|
|
3340
|
+
* Sets the accessibility label for the card
|
|
3341
|
+
* This is useful when the card has an `href` or `onClick` prop
|
|
3342
|
+
* Setting this will announce the label when the card is focused
|
|
3343
|
+
*/
|
|
3344
|
+
accessibilityLabel?: string;
|
|
3345
|
+
/**
|
|
3346
|
+
* If `true`, the card will scale up on hover
|
|
3347
|
+
*
|
|
3348
|
+
* On mobile devices it will scale down on press
|
|
3349
|
+
*
|
|
3350
|
+
* @default false
|
|
3351
|
+
*/
|
|
3352
|
+
shouldScaleOnHover?: boolean;
|
|
3353
|
+
/**
|
|
3354
|
+
* Callback triggered when the card is hovered
|
|
3355
|
+
*/
|
|
3356
|
+
onHover?: () => void;
|
|
3357
|
+
/**
|
|
3358
|
+
* Callback triggered when the card is clicked
|
|
3359
|
+
*/
|
|
3360
|
+
onClick?: () => void;
|
|
3361
|
+
/**
|
|
3362
|
+
* Sets the HTML element for the Card
|
|
3363
|
+
*
|
|
3364
|
+
* When `as` is set to `label`, the card will be rendered as a label element
|
|
3365
|
+
* This can be used to create a custom checkbox or radio button using the card
|
|
3366
|
+
*
|
|
3367
|
+
* @default undefined
|
|
3368
|
+
*/
|
|
3369
|
+
as?: 'label';
|
|
3310
3370
|
} & TestID$1 & StyledPropsBlade$1;
|
|
3311
|
-
declare const Card: ({ children, surfaceLevel, elevation, testID, padding, width, height, ...styledProps }: CardProps) => React__default.ReactElement;
|
|
3371
|
+
declare const Card: ({ children, surfaceLevel, elevation, testID, padding, width, height, onClick, isSelected, accessibilityLabel, shouldScaleOnHover, onHover, href, target, rel, as, ...styledProps }: CardProps) => React__default.ReactElement;
|
|
3312
3372
|
declare type CardBodyProps = {
|
|
3313
3373
|
children: React__default.ReactNode;
|
|
3314
3374
|
height?: BoxProps$1['height'];
|
|
@@ -4435,6 +4495,390 @@ declare type CarouselItemProps = {
|
|
|
4435
4495
|
};
|
|
4436
4496
|
declare const CarouselItem: ({ children, shouldHaveStartSpacing, shouldHaveEndSpacing, id, index, }: CarouselItemProps) => React__default.ReactElement;
|
|
4437
4497
|
|
|
4498
|
+
declare type ChipProps = {
|
|
4499
|
+
/**
|
|
4500
|
+
* Sets the label of the Chip
|
|
4501
|
+
*/
|
|
4502
|
+
children: StringChildrenType;
|
|
4503
|
+
/**
|
|
4504
|
+
* Displays the Blade Icon component within the Chip
|
|
4505
|
+
* Accepts a component of type `IconComponent` from Blade.
|
|
4506
|
+
*
|
|
4507
|
+
*/
|
|
4508
|
+
icon?: IconComponent$1;
|
|
4509
|
+
/**
|
|
4510
|
+
* Sets the Chip's visual intent
|
|
4511
|
+
*
|
|
4512
|
+
*/
|
|
4513
|
+
intent?: 'positive' | 'negative' | 'none';
|
|
4514
|
+
/**
|
|
4515
|
+
* If `true`, the Chip will be disabled
|
|
4516
|
+
*
|
|
4517
|
+
* @default false
|
|
4518
|
+
*/
|
|
4519
|
+
isDisabled?: boolean;
|
|
4520
|
+
/**
|
|
4521
|
+
* The value to be used in the Chip input.
|
|
4522
|
+
* This is the value that will be returned on form submission.
|
|
4523
|
+
* Use `onChange` to update its value
|
|
4524
|
+
*/
|
|
4525
|
+
value?: string;
|
|
4526
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
4527
|
+
declare type ChipGroupProps = {
|
|
4528
|
+
/**
|
|
4529
|
+
* Accessibility label for the ChipGroup
|
|
4530
|
+
*/
|
|
4531
|
+
accessibilityLabel: string;
|
|
4532
|
+
/**
|
|
4533
|
+
* Accepts multiple Chip components as children
|
|
4534
|
+
*/
|
|
4535
|
+
children: React.ReactNode;
|
|
4536
|
+
/**
|
|
4537
|
+
* Sets the initial value of the ChipGroup component.
|
|
4538
|
+
*/
|
|
4539
|
+
defaultValue?: string | string[];
|
|
4540
|
+
/**
|
|
4541
|
+
* Controls the interactive state of the ChipGroup. When set to true, all contained Chip elements become non-interactive and visually disabled.
|
|
4542
|
+
* Setting it to false enables normal user interaction. Useful for temporarily disabling user input within the ChipGroup.
|
|
4543
|
+
*
|
|
4544
|
+
* @default false
|
|
4545
|
+
*/
|
|
4546
|
+
isDisabled?: boolean;
|
|
4547
|
+
/**
|
|
4548
|
+
* Specifies the name attribute for the ChipGroup component.
|
|
4549
|
+
* When provided, this attribute ensures that the Chip elements within the group are semantically associated, allowing them to be grouped logically for form submission.
|
|
4550
|
+
* This can be particularly useful in scenarios where the ChipGroup is part of a larger form and needs to be identified as a distinct entity when the form is submitted.
|
|
4551
|
+
* If not provided, a default unique identifier will be generated internally.
|
|
4552
|
+
*/
|
|
4553
|
+
name?: string;
|
|
4554
|
+
/**
|
|
4555
|
+
* The callback invoked on any state change within the ChipGroup
|
|
4556
|
+
*/
|
|
4557
|
+
onChange?: ({ name, values }: {
|
|
4558
|
+
name: string;
|
|
4559
|
+
values: string[];
|
|
4560
|
+
}) => void;
|
|
4561
|
+
/**
|
|
4562
|
+
* Defines the selection behavior within the ChipGroup component.
|
|
4563
|
+
* When set to 'single', only one Chip can be selected at a time, akin to a radio button group.
|
|
4564
|
+
* When set to 'multiple', multiple Chips can be concurrently selected, simulating checkbox-like behavior within the group.
|
|
4565
|
+
*
|
|
4566
|
+
* @default "single"
|
|
4567
|
+
*/
|
|
4568
|
+
selectionType?: 'single' | 'multiple';
|
|
4569
|
+
/**
|
|
4570
|
+
* Specifies the size of the rendered Chips withing the ChipGroup
|
|
4571
|
+
*
|
|
4572
|
+
* @default "small"
|
|
4573
|
+
*/
|
|
4574
|
+
size?: 'xsmall' | 'small' | 'medium' | 'large';
|
|
4575
|
+
/**
|
|
4576
|
+
* Value of the Chip group
|
|
4577
|
+
* Acts as a controlled component by specifying the ChipGroup value
|
|
4578
|
+
* Use `onChange` to update its value
|
|
4579
|
+
*/
|
|
4580
|
+
value?: string | string[];
|
|
4581
|
+
/**
|
|
4582
|
+
* Sets the ChipGroups's visual intent, it will propagate down to all the Chips
|
|
4583
|
+
*
|
|
4584
|
+
* @default "none"
|
|
4585
|
+
*/
|
|
4586
|
+
intent?: 'positive' | 'negative' | 'none';
|
|
4587
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
4588
|
+
|
|
4589
|
+
declare const Chip: React__default.ForwardRefExoticComponent<{
|
|
4590
|
+
children: StringChildrenType;
|
|
4591
|
+
icon?: IconComponent | undefined;
|
|
4592
|
+
intent?: "none" | "negative" | "positive" | undefined;
|
|
4593
|
+
isDisabled?: boolean | undefined;
|
|
4594
|
+
value?: string | undefined;
|
|
4595
|
+
} & TestID$1 & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
4596
|
+
bottom: SpacingValueType | {
|
|
4597
|
+
readonly base?: SpacingValueType | undefined;
|
|
4598
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4599
|
+
readonly s?: SpacingValueType | undefined;
|
|
4600
|
+
readonly m?: SpacingValueType | undefined;
|
|
4601
|
+
readonly l?: SpacingValueType | undefined;
|
|
4602
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4603
|
+
};
|
|
4604
|
+
left: SpacingValueType | {
|
|
4605
|
+
readonly base?: SpacingValueType | undefined;
|
|
4606
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4607
|
+
readonly s?: SpacingValueType | undefined;
|
|
4608
|
+
readonly m?: SpacingValueType | undefined;
|
|
4609
|
+
readonly l?: SpacingValueType | undefined;
|
|
4610
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4611
|
+
};
|
|
4612
|
+
position?: csstype.Property.Position | {
|
|
4613
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
4614
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
4615
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
4616
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
4617
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
4618
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
4619
|
+
} | undefined;
|
|
4620
|
+
right: SpacingValueType | {
|
|
4621
|
+
readonly base?: SpacingValueType | undefined;
|
|
4622
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4623
|
+
readonly s?: SpacingValueType | undefined;
|
|
4624
|
+
readonly m?: SpacingValueType | undefined;
|
|
4625
|
+
readonly l?: SpacingValueType | undefined;
|
|
4626
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4627
|
+
};
|
|
4628
|
+
top: SpacingValueType | {
|
|
4629
|
+
readonly base?: SpacingValueType | undefined;
|
|
4630
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4631
|
+
readonly s?: SpacingValueType | undefined;
|
|
4632
|
+
readonly m?: SpacingValueType | undefined;
|
|
4633
|
+
readonly l?: SpacingValueType | undefined;
|
|
4634
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4635
|
+
};
|
|
4636
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
4637
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
4638
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
4639
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
4640
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
4641
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
4642
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
4643
|
+
} | undefined;
|
|
4644
|
+
__brand__?: "platform-web" | {
|
|
4645
|
+
readonly base?: "platform-web" | undefined;
|
|
4646
|
+
readonly xs?: "platform-web" | undefined;
|
|
4647
|
+
readonly s?: "platform-web" | undefined;
|
|
4648
|
+
readonly m?: "platform-web" | undefined;
|
|
4649
|
+
readonly l?: "platform-web" | undefined;
|
|
4650
|
+
readonly xl?: "platform-web" | undefined;
|
|
4651
|
+
} | undefined;
|
|
4652
|
+
} & Pick<{
|
|
4653
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
4654
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4655
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4656
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4657
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4658
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4659
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4660
|
+
} | undefined;
|
|
4661
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
4662
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
4663
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
4664
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
4665
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
4666
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
4667
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
4668
|
+
} | undefined;
|
|
4669
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
4670
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4671
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4672
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4673
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4674
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4675
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4676
|
+
} | undefined;
|
|
4677
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
4678
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
4679
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
4680
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
4681
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
4682
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
4683
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
4684
|
+
} | undefined;
|
|
4685
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
4686
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
4687
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
4688
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
4689
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
4690
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
4691
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
4692
|
+
} | undefined;
|
|
4693
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
4694
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
4695
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
4696
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
4697
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
4698
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
4699
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
4700
|
+
} | undefined;
|
|
4701
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
4702
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
4703
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
4704
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
4705
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
4706
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
4707
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
4708
|
+
} | undefined;
|
|
4709
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
4710
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
4711
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
4712
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
4713
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
4714
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
4715
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
4716
|
+
} | undefined;
|
|
4717
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
4718
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
4719
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
4720
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
4721
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
4722
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
4723
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
4724
|
+
} | undefined;
|
|
4725
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
4726
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
4727
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
4728
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
4729
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
4730
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
4731
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
4732
|
+
} | undefined;
|
|
4733
|
+
grid?: csstype.Property.Grid | {
|
|
4734
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
4735
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
4736
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
4737
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
4738
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
4739
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
4740
|
+
} | undefined;
|
|
4741
|
+
gridArea?: csstype.Property.GridArea | {
|
|
4742
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
4743
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
4744
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
4745
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
4746
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
4747
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
4748
|
+
} | undefined;
|
|
4749
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
4750
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
4751
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
4752
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
4753
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
4754
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
4755
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
4756
|
+
} | undefined;
|
|
4757
|
+
gridRow?: csstype.Property.GridRow | {
|
|
4758
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
4759
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
4760
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
4761
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
4762
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
4763
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
4764
|
+
} | undefined;
|
|
4765
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
4766
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
4767
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
4768
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
4769
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
4770
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
4771
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
4772
|
+
} | undefined;
|
|
4773
|
+
__brand__?: "platform-web" | {
|
|
4774
|
+
readonly base?: "platform-web" | undefined;
|
|
4775
|
+
readonly xs?: "platform-web" | undefined;
|
|
4776
|
+
readonly s?: "platform-web" | undefined;
|
|
4777
|
+
readonly m?: "platform-web" | undefined;
|
|
4778
|
+
readonly l?: "platform-web" | undefined;
|
|
4779
|
+
readonly xl?: "platform-web" | undefined;
|
|
4780
|
+
} | undefined;
|
|
4781
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
|
|
4782
|
+
width: SpacingValueType | {
|
|
4783
|
+
readonly base?: SpacingValueType | undefined;
|
|
4784
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4785
|
+
readonly s?: SpacingValueType | undefined;
|
|
4786
|
+
readonly m?: SpacingValueType | undefined;
|
|
4787
|
+
readonly l?: SpacingValueType | undefined;
|
|
4788
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4789
|
+
};
|
|
4790
|
+
display?: csstype.Property.Display | {
|
|
4791
|
+
readonly base?: csstype.Property.Display | undefined;
|
|
4792
|
+
readonly xs?: csstype.Property.Display | undefined;
|
|
4793
|
+
readonly s?: csstype.Property.Display | undefined;
|
|
4794
|
+
readonly m?: csstype.Property.Display | undefined;
|
|
4795
|
+
readonly l?: csstype.Property.Display | undefined;
|
|
4796
|
+
readonly xl?: csstype.Property.Display | undefined;
|
|
4797
|
+
} | undefined;
|
|
4798
|
+
height: SpacingValueType | {
|
|
4799
|
+
readonly base?: SpacingValueType | undefined;
|
|
4800
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4801
|
+
readonly s?: SpacingValueType | undefined;
|
|
4802
|
+
readonly m?: SpacingValueType | undefined;
|
|
4803
|
+
readonly l?: SpacingValueType | undefined;
|
|
4804
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4805
|
+
};
|
|
4806
|
+
maxHeight: SpacingValueType | {
|
|
4807
|
+
readonly base?: SpacingValueType | undefined;
|
|
4808
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4809
|
+
readonly s?: SpacingValueType | undefined;
|
|
4810
|
+
readonly m?: SpacingValueType | undefined;
|
|
4811
|
+
readonly l?: SpacingValueType | undefined;
|
|
4812
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4813
|
+
};
|
|
4814
|
+
maxWidth: SpacingValueType | {
|
|
4815
|
+
readonly base?: SpacingValueType | undefined;
|
|
4816
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4817
|
+
readonly s?: SpacingValueType | undefined;
|
|
4818
|
+
readonly m?: SpacingValueType | undefined;
|
|
4819
|
+
readonly l?: SpacingValueType | undefined;
|
|
4820
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4821
|
+
};
|
|
4822
|
+
minHeight: SpacingValueType | {
|
|
4823
|
+
readonly base?: SpacingValueType | undefined;
|
|
4824
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4825
|
+
readonly s?: SpacingValueType | undefined;
|
|
4826
|
+
readonly m?: SpacingValueType | undefined;
|
|
4827
|
+
readonly l?: SpacingValueType | undefined;
|
|
4828
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4829
|
+
};
|
|
4830
|
+
minWidth: SpacingValueType | {
|
|
4831
|
+
readonly base?: SpacingValueType | undefined;
|
|
4832
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4833
|
+
readonly s?: SpacingValueType | undefined;
|
|
4834
|
+
readonly m?: SpacingValueType | undefined;
|
|
4835
|
+
readonly l?: SpacingValueType | undefined;
|
|
4836
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4837
|
+
};
|
|
4838
|
+
overflowX?: csstype.Property.OverflowX | {
|
|
4839
|
+
readonly base?: csstype.Property.OverflowX | undefined;
|
|
4840
|
+
readonly xs?: csstype.Property.OverflowX | undefined;
|
|
4841
|
+
readonly s?: csstype.Property.OverflowX | undefined;
|
|
4842
|
+
readonly m?: csstype.Property.OverflowX | undefined;
|
|
4843
|
+
readonly l?: csstype.Property.OverflowX | undefined;
|
|
4844
|
+
readonly xl?: csstype.Property.OverflowX | undefined;
|
|
4845
|
+
} | undefined;
|
|
4846
|
+
overflowY?: csstype.Property.OverflowY | {
|
|
4847
|
+
readonly base?: csstype.Property.OverflowY | undefined;
|
|
4848
|
+
readonly xs?: csstype.Property.OverflowY | undefined;
|
|
4849
|
+
readonly s?: csstype.Property.OverflowY | undefined;
|
|
4850
|
+
readonly m?: csstype.Property.OverflowY | undefined;
|
|
4851
|
+
readonly l?: csstype.Property.OverflowY | undefined;
|
|
4852
|
+
readonly xl?: csstype.Property.OverflowY | undefined;
|
|
4853
|
+
} | undefined;
|
|
4854
|
+
textAlign?: csstype.Property.TextAlign | {
|
|
4855
|
+
readonly base?: csstype.Property.TextAlign | undefined;
|
|
4856
|
+
readonly xs?: csstype.Property.TextAlign | undefined;
|
|
4857
|
+
readonly s?: csstype.Property.TextAlign | undefined;
|
|
4858
|
+
readonly m?: csstype.Property.TextAlign | undefined;
|
|
4859
|
+
readonly l?: csstype.Property.TextAlign | undefined;
|
|
4860
|
+
readonly xl?: csstype.Property.TextAlign | undefined;
|
|
4861
|
+
} | undefined;
|
|
4862
|
+
overflow?: csstype.Property.Overflow | {
|
|
4863
|
+
readonly base?: csstype.Property.Overflow | undefined;
|
|
4864
|
+
readonly xs?: csstype.Property.Overflow | undefined;
|
|
4865
|
+
readonly s?: csstype.Property.Overflow | undefined;
|
|
4866
|
+
readonly m?: csstype.Property.Overflow | undefined;
|
|
4867
|
+
readonly l?: csstype.Property.Overflow | undefined;
|
|
4868
|
+
readonly xl?: csstype.Property.Overflow | undefined;
|
|
4869
|
+
} | undefined;
|
|
4870
|
+
__brand__?: "platform-web" | {
|
|
4871
|
+
readonly base?: "platform-web" | undefined;
|
|
4872
|
+
readonly xs?: "platform-web" | undefined;
|
|
4873
|
+
readonly s?: "platform-web" | undefined;
|
|
4874
|
+
readonly m?: "platform-web" | undefined;
|
|
4875
|
+
readonly l?: "platform-web" | undefined;
|
|
4876
|
+
readonly xl?: "platform-web" | undefined;
|
|
4877
|
+
} | undefined;
|
|
4878
|
+
}, "display">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
4879
|
+
|
|
4880
|
+
declare const ChipGroup: ({ accessibilityLabel, children, isDisabled, name, defaultValue, onChange, value, size, intent, testID, selectionType, ...styledProps }: ChipGroupProps) => React__default.ReactElement;
|
|
4881
|
+
|
|
4438
4882
|
declare type DividerProps = {
|
|
4439
4883
|
/**
|
|
4440
4884
|
* Sets the orientation of divider
|
|
@@ -8084,13 +8528,13 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
8084
8528
|
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
8085
8529
|
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
8086
8530
|
};
|
|
8087
|
-
borderBottomWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
8088
|
-
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8089
|
-
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8090
|
-
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8091
|
-
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8092
|
-
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8093
|
-
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8531
|
+
borderBottomWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
8532
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8533
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8534
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8535
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8536
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8537
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8094
8538
|
};
|
|
8095
8539
|
borderLeftColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
8096
8540
|
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
@@ -8100,13 +8544,13 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
8100
8544
|
readonly l?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
8101
8545
|
readonly xl?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
8102
8546
|
};
|
|
8103
|
-
borderLeftWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
8104
|
-
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8105
|
-
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8106
|
-
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8107
|
-
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8108
|
-
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8109
|
-
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8547
|
+
borderLeftWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
8548
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8549
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8550
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8551
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8552
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8553
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8110
8554
|
};
|
|
8111
8555
|
borderRightColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
8112
8556
|
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
@@ -8116,13 +8560,13 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
8116
8560
|
readonly l?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
8117
8561
|
readonly xl?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
8118
8562
|
};
|
|
8119
|
-
borderRightWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
8120
|
-
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8121
|
-
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8122
|
-
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8123
|
-
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8124
|
-
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8125
|
-
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8563
|
+
borderRightWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
8564
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8565
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8566
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8567
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8568
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8569
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8126
8570
|
};
|
|
8127
8571
|
borderTopColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
8128
8572
|
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
@@ -8148,13 +8592,13 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
8148
8592
|
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
8149
8593
|
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
8150
8594
|
};
|
|
8151
|
-
borderTopWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
8152
|
-
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8153
|
-
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8154
|
-
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8155
|
-
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8156
|
-
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8157
|
-
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8595
|
+
borderTopWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
8596
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8597
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8598
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8599
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8600
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8601
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8158
8602
|
};
|
|
8159
8603
|
pointerEvents?: csstype.Property.PointerEvents | {
|
|
8160
8604
|
readonly base?: csstype.Property.PointerEvents | undefined;
|
|
@@ -8188,13 +8632,13 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
8188
8632
|
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
8189
8633
|
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
8190
8634
|
};
|
|
8191
|
-
borderWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
8192
|
-
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8193
|
-
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8194
|
-
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8195
|
-
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8196
|
-
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8197
|
-
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8635
|
+
borderWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
8636
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8637
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8638
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8639
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8640
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8641
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8198
8642
|
};
|
|
8199
8643
|
__brand__?: "platform-web" | {
|
|
8200
8644
|
readonly base?: "platform-web" | undefined;
|
|
@@ -8318,4 +8762,4 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
8318
8762
|
tabIndex: -1;
|
|
8319
8763
|
}, "tabIndex" | "data-testid" | "data-blade-component">;
|
|
8320
8764
|
|
|
8321
|
-
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, Carousel, CarouselItem, CarouselProps, 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 };
|
|
8765
|
+
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, Carousel, CarouselItem, CarouselProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, 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 };
|