@razorpay/blade 8.13.0 → 8.15.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 +168 -156
- package/build/components/index.native.d.ts +130 -113
- package/build/components/index.native.js +70 -78
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +5189 -5290
- package/build/components/index.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.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.web.js +1 -0
- package/build/tokens/index.web.js.map +1 -1
- package/package.json +1 -1
|
@@ -26,6 +26,8 @@ type BorderRadius = Readonly<{
|
|
|
26
26
|
type BorderWidth = Readonly<{
|
|
27
27
|
/** none: 0(px/rem/pt) */
|
|
28
28
|
none: 0;
|
|
29
|
+
/** thinner: 0.5(px/rem/pt) */
|
|
30
|
+
thinner: 0.5;
|
|
29
31
|
/** thin: 1(px/rem/pt) */
|
|
30
32
|
thin: 1;
|
|
31
33
|
/** thick: 1.5(px/rem/pt) */
|
|
@@ -1931,40 +1933,6 @@ declare const ActionListItemText: ({ children, }: {
|
|
|
1931
1933
|
}) => React__default.ReactElement;
|
|
1932
1934
|
declare const ActionListItem: React__default.MemoExoticComponent<(props: ActionListItemProps) => JSX.Element>;
|
|
1933
1935
|
|
|
1934
|
-
declare type ActionListHeaderProps = {
|
|
1935
|
-
title: string;
|
|
1936
|
-
/**
|
|
1937
|
-
* Asset to be added on left side of Header.
|
|
1938
|
-
*
|
|
1939
|
-
* Valid children - `ActionListHeaderIcon`
|
|
1940
|
-
*/
|
|
1941
|
-
leading?: React__default.ReactNode;
|
|
1942
|
-
} & TestID$1;
|
|
1943
|
-
declare const ActionListHeader: (props: ActionListHeaderProps) => JSX.Element;
|
|
1944
|
-
declare const ActionListHeaderIcon: ({ icon }: {
|
|
1945
|
-
icon: IconComponent$1;
|
|
1946
|
-
}) => React__default.ReactElement;
|
|
1947
|
-
|
|
1948
|
-
declare type ActionListFooterProps = {
|
|
1949
|
-
title?: string;
|
|
1950
|
-
/**
|
|
1951
|
-
* Asset to be added on left side of Footer.
|
|
1952
|
-
*
|
|
1953
|
-
* Valid children - `ActionListFooterIcon`
|
|
1954
|
-
*/
|
|
1955
|
-
leading?: React__default.ReactNode;
|
|
1956
|
-
/**
|
|
1957
|
-
* Elements to be added on right side of Footer.
|
|
1958
|
-
*
|
|
1959
|
-
* Anything can be passed here but maybe don't? Should ideally have Button or Tick Icon Buttons.
|
|
1960
|
-
*/
|
|
1961
|
-
trailing?: React__default.ReactNode;
|
|
1962
|
-
} & TestID$1;
|
|
1963
|
-
declare const ActionListFooter: (props: ActionListFooterProps) => JSX.Element;
|
|
1964
|
-
declare const ActionListFooterIcon: ({ icon }: {
|
|
1965
|
-
icon: IconComponent$1;
|
|
1966
|
-
}) => React__default.ReactElement;
|
|
1967
|
-
|
|
1968
1936
|
declare type ActionListItemAssetProps = {
|
|
1969
1937
|
/**
|
|
1970
1938
|
* Source of the image.
|
|
@@ -3199,13 +3167,13 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3199
3167
|
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3200
3168
|
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3201
3169
|
};
|
|
3202
|
-
borderBottomWidth: "none" | "thin" | "thick" | {
|
|
3203
|
-
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
3204
|
-
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
3205
|
-
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
3206
|
-
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
3207
|
-
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
3208
|
-
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
3170
|
+
borderBottomWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
3171
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3172
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3173
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3174
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3175
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3176
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3209
3177
|
};
|
|
3210
3178
|
borderLeftColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
3211
3179
|
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
@@ -3215,13 +3183,13 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3215
3183
|
readonly l?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
3216
3184
|
readonly xl?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
3217
3185
|
};
|
|
3218
|
-
borderLeftWidth: "none" | "thin" | "thick" | {
|
|
3219
|
-
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
3220
|
-
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
3221
|
-
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
3222
|
-
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
3223
|
-
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
3224
|
-
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
3186
|
+
borderLeftWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
3187
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3188
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3189
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3190
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3191
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3192
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3225
3193
|
};
|
|
3226
3194
|
borderRightColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
3227
3195
|
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
@@ -3231,13 +3199,13 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3231
3199
|
readonly l?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
3232
3200
|
readonly xl?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
3233
3201
|
};
|
|
3234
|
-
borderRightWidth: "none" | "thin" | "thick" | {
|
|
3235
|
-
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
3236
|
-
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
3237
|
-
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
3238
|
-
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
3239
|
-
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
3240
|
-
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
3202
|
+
borderRightWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
3203
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3204
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3205
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3206
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3207
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3208
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3241
3209
|
};
|
|
3242
3210
|
borderTopColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
3243
3211
|
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
@@ -3263,13 +3231,13 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3263
3231
|
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3264
3232
|
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3265
3233
|
};
|
|
3266
|
-
borderTopWidth: "none" | "thin" | "thick" | {
|
|
3267
|
-
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
3268
|
-
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
3269
|
-
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
3270
|
-
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
3271
|
-
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
3272
|
-
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
3234
|
+
borderTopWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
3235
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3236
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3237
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3238
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3239
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3240
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3273
3241
|
};
|
|
3274
3242
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | {
|
|
3275
3243
|
readonly base?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
@@ -3295,13 +3263,13 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3295
3263
|
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3296
3264
|
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
3297
3265
|
};
|
|
3298
|
-
borderWidth: "none" | "thin" | "thick" | {
|
|
3299
|
-
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
3300
|
-
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
3301
|
-
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
3302
|
-
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
3303
|
-
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
3304
|
-
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
3266
|
+
borderWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
3267
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3268
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3269
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3270
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3271
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3272
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
3305
3273
|
};
|
|
3306
3274
|
__brand__?: "platform-web" | {
|
|
3307
3275
|
readonly base?: "platform-web" | undefined;
|
|
@@ -4406,16 +4374,61 @@ declare type CheckboxGroupProps = {
|
|
|
4406
4374
|
} & TestID$1 & StyledPropsBlade;
|
|
4407
4375
|
declare const CheckboxGroup: ({ children, label, helpText, isDisabled, necessityIndicator, labelPosition, validationState, errorText, name, defaultValue, onChange, value, size, testID, ...styledProps }: CheckboxGroupProps) => React__default.ReactElement;
|
|
4408
4376
|
|
|
4377
|
+
declare type DividerProps = {
|
|
4378
|
+
/**
|
|
4379
|
+
* Sets the orientation of divider
|
|
4380
|
+
*
|
|
4381
|
+
* @default 'horizontal'
|
|
4382
|
+
*/
|
|
4383
|
+
orientation?: 'horizontal' | 'vertical';
|
|
4384
|
+
/**
|
|
4385
|
+
* Sets the style of divider
|
|
4386
|
+
*
|
|
4387
|
+
* @default 'solid'
|
|
4388
|
+
*/
|
|
4389
|
+
dividerStyle?: 'solid' | 'dashed';
|
|
4390
|
+
/**
|
|
4391
|
+
* Sets the variant of divider
|
|
4392
|
+
*
|
|
4393
|
+
* @default 'normal'
|
|
4394
|
+
*/
|
|
4395
|
+
variant?: 'normal' | 'subtle';
|
|
4396
|
+
/**
|
|
4397
|
+
* Sets the thickness of divider
|
|
4398
|
+
*
|
|
4399
|
+
* @default 'thin'
|
|
4400
|
+
*/
|
|
4401
|
+
thickness?: 'thinner' | 'thin' | 'thick';
|
|
4402
|
+
/**
|
|
4403
|
+
* Sets the contrast of divider
|
|
4404
|
+
*
|
|
4405
|
+
* @default 'low'
|
|
4406
|
+
*/
|
|
4407
|
+
contrast?: 'low' | 'high';
|
|
4408
|
+
/**
|
|
4409
|
+
* Sets the height of divider. Divider uses Flex by default, use height only when parent is not flex.
|
|
4410
|
+
*
|
|
4411
|
+
*/
|
|
4412
|
+
height?: CSSObject['height'];
|
|
4413
|
+
/**
|
|
4414
|
+
* Sets the width of divider. Divider uses Flex by default, use width only when parent is not flex.
|
|
4415
|
+
*
|
|
4416
|
+
*/
|
|
4417
|
+
width?: CSSObject['width'];
|
|
4418
|
+
};
|
|
4419
|
+
declare const Divider: ({ orientation, dividerStyle, variant, thickness, contrast, height, width, }: DividerProps) => React__default.ReactElement;
|
|
4420
|
+
|
|
4409
4421
|
declare type DropdownProps = {
|
|
4410
4422
|
selectionType?: 'single' | 'multiple';
|
|
4411
4423
|
onDismiss?: () => void;
|
|
4412
|
-
children:
|
|
4424
|
+
children: React.ReactNode[];
|
|
4413
4425
|
} & StyledPropsBlade;
|
|
4414
|
-
declare const Dropdown: ({ children, selectionType, onDismiss, ...styledProps }: DropdownProps) => JSX.Element;
|
|
4415
|
-
|
|
4416
4426
|
declare type DropdownOverlayProps = {
|
|
4417
|
-
children:
|
|
4427
|
+
children: React.ReactElement[] | React.ReactElement;
|
|
4418
4428
|
} & TestID$1;
|
|
4429
|
+
|
|
4430
|
+
declare const Dropdown: ({ children, selectionType, onDismiss, ...styledProps }: DropdownProps) => JSX.Element;
|
|
4431
|
+
|
|
4419
4432
|
declare const DropdownOverlay: ({ children, testID }: DropdownOverlayProps) => JSX.Element;
|
|
4420
4433
|
|
|
4421
4434
|
declare type DropdownButtonProps = ButtonProps & {
|
|
@@ -4430,6 +4443,50 @@ declare type DropdownLinkProps = LinkButtonVariantProps & {
|
|
|
4430
4443
|
};
|
|
4431
4444
|
declare const DropdownLink: ({ children, icon, iconPosition, onClick, onBlur, onKeyDown, isDisabled, href, target, rel, accessibilityLabel, size, testID, hitSlop, htmlTitle, ...styledProps }: DropdownLinkProps) => JSX.Element;
|
|
4432
4445
|
|
|
4446
|
+
declare type BaseHeaderProps = {
|
|
4447
|
+
title?: string;
|
|
4448
|
+
subtitle?: string;
|
|
4449
|
+
/**
|
|
4450
|
+
* Leading part of the header placed at the left most side of the header
|
|
4451
|
+
*/
|
|
4452
|
+
leading?: React__default.ReactNode;
|
|
4453
|
+
/**
|
|
4454
|
+
* Trailing part of the header placed at the right most side of the header
|
|
4455
|
+
*/
|
|
4456
|
+
trailing?: React__default.ReactNode;
|
|
4457
|
+
/**
|
|
4458
|
+
* Placed adjacent to the title text
|
|
4459
|
+
*/
|
|
4460
|
+
titleSuffix?: React__default.ReactNode;
|
|
4461
|
+
/**
|
|
4462
|
+
* @default true
|
|
4463
|
+
*/
|
|
4464
|
+
showDivider?: boolean;
|
|
4465
|
+
/**
|
|
4466
|
+
* @default false
|
|
4467
|
+
*/
|
|
4468
|
+
showBackButton?: boolean;
|
|
4469
|
+
/**
|
|
4470
|
+
* @default true
|
|
4471
|
+
*/
|
|
4472
|
+
showCloseButton?: boolean;
|
|
4473
|
+
onCloseButtonClick?: () => void;
|
|
4474
|
+
onBackButtonClick?: () => void;
|
|
4475
|
+
closeButtonRef?: React__default.MutableRefObject<any>;
|
|
4476
|
+
metaComponentName?: string;
|
|
4477
|
+
} & Pick<ReactDOMAttributes, 'onClickCapture' | 'onKeyDown' | 'onKeyUp' | 'onLostPointerCapture' | 'onPointerCancel' | 'onPointerDown' | 'onPointerMove' | 'onPointerUp'> & TestID$1;
|
|
4478
|
+
|
|
4479
|
+
declare type BaseFooterProps = {
|
|
4480
|
+
children: React__default.ReactNode;
|
|
4481
|
+
metaComponentName?: string;
|
|
4482
|
+
showDivider?: boolean;
|
|
4483
|
+
} & TestID$1;
|
|
4484
|
+
|
|
4485
|
+
declare type DropdownHeaderProps = Pick<BaseHeaderProps, 'title' | 'subtitle' | 'leading' | 'trailing' | 'titleSuffix' | 'testID'>;
|
|
4486
|
+
declare const DropdownHeader: ({ title, subtitle, leading, titleSuffix, trailing, testID, }: DropdownHeaderProps) => React__default.ReactElement;
|
|
4487
|
+
declare type DropdownFooter = Pick<BaseFooterProps, 'children' | 'testID'>;
|
|
4488
|
+
declare const DropdownFooter: ({ children, testID }: DropdownFooter) => React__default.ReactElement;
|
|
4489
|
+
|
|
4433
4490
|
declare const ArrowDownIcon: IconComponent;
|
|
4434
4491
|
|
|
4435
4492
|
declare const ArrowLeftIcon: IconComponent;
|
|
@@ -6814,49 +6871,10 @@ declare function clearAnnouncer(assertiveness: Assertiveness): void;
|
|
|
6814
6871
|
*/
|
|
6815
6872
|
declare function destroyAnnouncer(): void;
|
|
6816
6873
|
|
|
6817
|
-
declare type BaseHeaderProps = {
|
|
6818
|
-
title?: string;
|
|
6819
|
-
subtitle?: string;
|
|
6820
|
-
/**
|
|
6821
|
-
* Leading part of the header placed at the left most side of the header
|
|
6822
|
-
*/
|
|
6823
|
-
leading?: React__default.ReactNode;
|
|
6824
|
-
/**
|
|
6825
|
-
* Trailing part of the header placed at the right most side of the header
|
|
6826
|
-
*/
|
|
6827
|
-
trailing?: React__default.ReactNode;
|
|
6828
|
-
/**
|
|
6829
|
-
* Placed adjacent to the title text
|
|
6830
|
-
*/
|
|
6831
|
-
titleSuffix?: React__default.ReactNode;
|
|
6832
|
-
/**
|
|
6833
|
-
* @default true
|
|
6834
|
-
*/
|
|
6835
|
-
showDivider?: boolean;
|
|
6836
|
-
/**
|
|
6837
|
-
* @default false
|
|
6838
|
-
*/
|
|
6839
|
-
showBackButton?: boolean;
|
|
6840
|
-
/**
|
|
6841
|
-
* @default true
|
|
6842
|
-
*/
|
|
6843
|
-
showCloseButton?: boolean;
|
|
6844
|
-
onCloseButtonClick?: () => void;
|
|
6845
|
-
onBackButtonClick?: () => void;
|
|
6846
|
-
closeButtonRef: React__default.MutableRefObject<any>;
|
|
6847
|
-
metaComponentName?: string;
|
|
6848
|
-
} & Pick<ReactDOMAttributes, 'onClickCapture' | 'onKeyDown' | 'onKeyUp' | 'onLostPointerCapture' | 'onPointerCancel' | 'onPointerDown' | 'onPointerMove' | 'onPointerUp'>;
|
|
6849
|
-
|
|
6850
6874
|
declare type ModalHeaderProps = Pick<BaseHeaderProps, 'title' | 'subtitle' | 'leading' | 'trailing' | 'titleSuffix'>;
|
|
6851
6875
|
declare const ModalHeader: ({ leading, subtitle, title, titleSuffix, trailing, }: ModalHeaderProps) => React.ReactElement;
|
|
6852
6876
|
|
|
6853
|
-
declare type
|
|
6854
|
-
children: React__default.ReactNode;
|
|
6855
|
-
metaComponentName?: string;
|
|
6856
|
-
showDivider?: boolean;
|
|
6857
|
-
};
|
|
6858
|
-
|
|
6859
|
-
declare type ModalFooterProps = Pick<BaseFooterProps$1, 'children'>;
|
|
6877
|
+
declare type ModalFooterProps = Pick<BaseFooterProps, 'children'>;
|
|
6860
6878
|
declare const ModalFooter: (props: ModalFooterProps) => React__default.ReactElement;
|
|
6861
6879
|
|
|
6862
6880
|
declare type ModalBodyProps = {
|
|
@@ -7647,7 +7665,7 @@ declare type BottomSheetHeaderProps = Pick<BaseHeaderProps, 'title' | 'subtitle'
|
|
|
7647
7665
|
*/
|
|
7648
7666
|
titleSuffix?: BaseHeaderProps['titleSuffix'];
|
|
7649
7667
|
};
|
|
7650
|
-
declare type BottomSheetFooterProps = Pick<BaseFooterProps
|
|
7668
|
+
declare type BottomSheetFooterProps = Pick<BaseFooterProps, 'children'>;
|
|
7651
7669
|
declare type BottomSheetBodyProps = {
|
|
7652
7670
|
children: React.ReactNode;
|
|
7653
7671
|
/**
|
|
@@ -7662,12 +7680,6 @@ declare type BottomSheetBodyProps = {
|
|
|
7662
7680
|
|
|
7663
7681
|
declare const BottomSheetHeader: ({ title, subtitle, leading, titleSuffix, trailing, showBackButton, onBackButtonClick, }: BottomSheetHeaderProps) => React__default.ReactElement;
|
|
7664
7682
|
|
|
7665
|
-
type BaseFooterProps = {
|
|
7666
|
-
children: React__default.ReactNode;
|
|
7667
|
-
metaComponentName?: string;
|
|
7668
|
-
showDivider?: boolean;
|
|
7669
|
-
};
|
|
7670
|
-
|
|
7671
7683
|
declare const BottomSheetFooter: ({ children }: BaseFooterProps) => React__default.ReactElement;
|
|
7672
7684
|
|
|
7673
7685
|
declare const BottomSheetBody: ({ children, padding, }: BottomSheetBodyProps) => React__default.ReactElement;
|
|
@@ -8321,13 +8333,13 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
8321
8333
|
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
8322
8334
|
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
8323
8335
|
};
|
|
8324
|
-
borderBottomWidth: "none" | "thin" | "thick" | {
|
|
8325
|
-
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
8326
|
-
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
8327
|
-
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
8328
|
-
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
8329
|
-
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
8330
|
-
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
8336
|
+
borderBottomWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
8337
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8338
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8339
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8340
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8341
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8342
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8331
8343
|
};
|
|
8332
8344
|
borderLeftColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
8333
8345
|
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
@@ -8337,13 +8349,13 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
8337
8349
|
readonly l?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
8338
8350
|
readonly xl?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
8339
8351
|
};
|
|
8340
|
-
borderLeftWidth: "none" | "thin" | "thick" | {
|
|
8341
|
-
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
8342
|
-
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
8343
|
-
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
8344
|
-
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
8345
|
-
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
8346
|
-
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
8352
|
+
borderLeftWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
8353
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8354
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8355
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8356
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8357
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8358
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8347
8359
|
};
|
|
8348
8360
|
borderRightColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
8349
8361
|
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
@@ -8353,13 +8365,13 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
8353
8365
|
readonly l?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
8354
8366
|
readonly xl?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
8355
8367
|
};
|
|
8356
|
-
borderRightWidth: "none" | "thin" | "thick" | {
|
|
8357
|
-
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
8358
|
-
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
8359
|
-
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
8360
|
-
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
8361
|
-
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
8362
|
-
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
8368
|
+
borderRightWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
8369
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8370
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8371
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8372
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8373
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8374
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8363
8375
|
};
|
|
8364
8376
|
borderTopColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
8365
8377
|
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
@@ -8385,13 +8397,13 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
8385
8397
|
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
8386
8398
|
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
8387
8399
|
};
|
|
8388
|
-
borderTopWidth: "none" | "thin" | "thick" | {
|
|
8389
|
-
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
8390
|
-
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
8391
|
-
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
8392
|
-
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
8393
|
-
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
8394
|
-
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
8400
|
+
borderTopWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
8401
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8402
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8403
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8404
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8405
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8406
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8395
8407
|
};
|
|
8396
8408
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | {
|
|
8397
8409
|
readonly base?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
@@ -8417,13 +8429,13 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
8417
8429
|
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
8418
8430
|
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
8419
8431
|
};
|
|
8420
|
-
borderWidth: "none" | "thin" | "thick" | {
|
|
8421
|
-
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
8422
|
-
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
8423
|
-
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
8424
|
-
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
8425
|
-
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
8426
|
-
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
8432
|
+
borderWidth: "none" | "thinner" | "thin" | "thick" | {
|
|
8433
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8434
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8435
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8436
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8437
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8438
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | undefined;
|
|
8427
8439
|
};
|
|
8428
8440
|
__brand__?: "platform-web" | {
|
|
8429
8441
|
readonly base?: "platform-web" | undefined;
|
|
@@ -8545,4 +8557,4 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
8545
8557
|
tabIndex: -1;
|
|
8546
8558
|
}, "tabIndex">;
|
|
8547
8559
|
|
|
8548
|
-
export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList,
|
|
8560
|
+
export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionDivider, ActionListSectionProps, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, Divider, DividerProps, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputProps, OctagonIcon, OffersIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonsIcon, PaymentLinksIcon, PaymentPagesIcon, PercentIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, TagIcon, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useActionListContext, useTheme };
|