@razorpay/blade 8.8.3 → 8.9.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 +839 -55
- package/build/components/index.native.d.ts +115 -14
- package/build/components/index.native.js +341 -322
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +1630 -3678
- package/build/components/index.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +1 -1
- package/build/css/bankingThemeDarkMobile.css +1 -1
- package/build/css/bankingThemeLightDesktop.css +1 -1
- package/build/css/bankingThemeLightMobile.css +1 -1
- package/build/css/paymentThemeDarkDesktop.css +1 -1
- package/build/css/paymentThemeDarkMobile.css +1 -1
- package/build/css/paymentThemeLightDesktop.css +1 -1
- package/build/css/paymentThemeLightMobile.css +1 -1
- package/build/tokens/index.d.ts +6 -0
- package/build/tokens/index.native.d.ts +6 -0
- package/build/tokens/index.native.js +1 -1
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.web.js +9 -0
- package/build/tokens/index.web.js.map +1 -1
- package/build/utils/index.d.ts +2 -0
- package/build/utils/index.native.d.ts +2 -0
- package/build/utils/index.native.js +1 -1
- package/build/utils/index.native.js.map +1 -1
- package/build/utils/index.web.js +2 -0
- package/build/utils/index.web.js.map +1 -1
- package/package.json +7 -4
|
@@ -2,9 +2,11 @@
|
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
3
|
import React__default, { ReactChild, ReactElement, ReactNode, SyntheticEvent, KeyboardEvent } from 'react';
|
|
4
4
|
import { AccessibilityRole, ViewStyle, View, GestureResponderEvent } from 'react-native';
|
|
5
|
+
import * as styled_components from 'styled-components';
|
|
5
6
|
import { CSSObject } from 'styled-components';
|
|
6
7
|
import * as csstype from 'csstype';
|
|
7
8
|
import { ReactDOMAttributes } from '@use-gesture/react/dist/declarations/src/types';
|
|
9
|
+
import { UseFloatingOptions } from '@floating-ui/react';
|
|
8
10
|
|
|
9
11
|
type BorderRadius = Readonly<{
|
|
10
12
|
/** none: 0(px/rem/pt) */
|
|
@@ -968,7 +970,7 @@ type StringChildrenType = React__default.ReactText | React__default.ReactText[];
|
|
|
968
970
|
*/
|
|
969
971
|
type StringWithAutocomplete = string & Record<never, never>;
|
|
970
972
|
|
|
971
|
-
type TestID = {
|
|
973
|
+
type TestID$1 = {
|
|
972
974
|
testID?: string;
|
|
973
975
|
};
|
|
974
976
|
|
|
@@ -1012,7 +1014,7 @@ declare type ActionListProps = {
|
|
|
1012
1014
|
* Decides the backgroundColor of ActionList
|
|
1013
1015
|
*/
|
|
1014
1016
|
surfaceLevel?: Exclude<SurfaceLevels, 1>;
|
|
1015
|
-
} & TestID;
|
|
1017
|
+
} & TestID$1;
|
|
1016
1018
|
declare const ActionList: React__default.MemoExoticComponent<({ children, surfaceLevel, testID }: ActionListProps) => JSX.Element>;
|
|
1017
1019
|
|
|
1018
1020
|
type Theme$1 = {
|
|
@@ -1300,6 +1302,32 @@ type MarginProps$1 = MakeObjectResponsive$1<{
|
|
|
1300
1302
|
marginLeft: SpacingValueType$1;
|
|
1301
1303
|
}>;
|
|
1302
1304
|
|
|
1305
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
1306
|
+
|
|
1307
|
+
|
|
1308
|
+
type BladeCommonEvents$1 = {
|
|
1309
|
+
onBlur?: Platform.Select<{
|
|
1310
|
+
native: undefined | ((event: any) => void);
|
|
1311
|
+
web: React.FocusEventHandler;
|
|
1312
|
+
}>;
|
|
1313
|
+
onFocus?: Platform.Select<{
|
|
1314
|
+
native: undefined | ((event: any) => void);
|
|
1315
|
+
web: React.FocusEventHandler;
|
|
1316
|
+
}>;
|
|
1317
|
+
onMouseLeave?: Platform.Select<{ web: React.MouseEventHandler; native: undefined }>;
|
|
1318
|
+
onMouseMove?: Platform.Select<{ web: React.MouseEventHandler; native: undefined }>;
|
|
1319
|
+
onPointerDown?: Platform.Select<{ web: React.PointerEventHandler; native: undefined }>;
|
|
1320
|
+
onPointerEnter?: Platform.Select<{ web: React.PointerEventHandler; native: undefined }>;
|
|
1321
|
+
onTouchStart?: Platform.Select<{
|
|
1322
|
+
native: undefined | ((event: any) => void);
|
|
1323
|
+
web: React.TouchEventHandler;
|
|
1324
|
+
}>;
|
|
1325
|
+
onTouchEnd?: Platform.Select<{
|
|
1326
|
+
native: undefined | ((event: any) => void);
|
|
1327
|
+
web: React.TouchEventHandler;
|
|
1328
|
+
}>;
|
|
1329
|
+
};
|
|
1330
|
+
|
|
1303
1331
|
type FlexboxProps$1 = MakeObjectResponsive$1<
|
|
1304
1332
|
{
|
|
1305
1333
|
/**
|
|
@@ -1482,7 +1510,7 @@ declare type ActionListItemProps = {
|
|
|
1482
1510
|
* @private
|
|
1483
1511
|
*/
|
|
1484
1512
|
_index?: number;
|
|
1485
|
-
} & TestID;
|
|
1513
|
+
} & TestID$1;
|
|
1486
1514
|
declare const ActionListSectionDivider: () => JSX.Element;
|
|
1487
1515
|
declare type ActionListSectionProps = {
|
|
1488
1516
|
title: string;
|
|
@@ -1495,7 +1523,7 @@ declare type ActionListSectionProps = {
|
|
|
1495
1523
|
* @private
|
|
1496
1524
|
*/
|
|
1497
1525
|
_hideDivider?: boolean;
|
|
1498
|
-
} & TestID;
|
|
1526
|
+
} & TestID$1;
|
|
1499
1527
|
declare const ActionListSection: ({ title, children, testID, _hideDivider, }: ActionListSectionProps) => JSX.Element;
|
|
1500
1528
|
declare const ActionListItemIcon: ({ icon }: {
|
|
1501
1529
|
icon: IconComponent$1;
|
|
@@ -1513,7 +1541,7 @@ declare type ActionListHeaderProps = {
|
|
|
1513
1541
|
* Valid children - `ActionListHeaderIcon`
|
|
1514
1542
|
*/
|
|
1515
1543
|
leading?: React__default.ReactNode;
|
|
1516
|
-
} & TestID;
|
|
1544
|
+
} & TestID$1;
|
|
1517
1545
|
declare const ActionListHeader: (props: ActionListHeaderProps) => JSX.Element;
|
|
1518
1546
|
declare const ActionListHeaderIcon: ({ icon }: {
|
|
1519
1547
|
icon: IconComponent$1;
|
|
@@ -1533,7 +1561,7 @@ declare type ActionListFooterProps = {
|
|
|
1533
1561
|
* Anything can be passed here but maybe don't? Should ideally have Button or Tick Icon Buttons.
|
|
1534
1562
|
*/
|
|
1535
1563
|
trailing?: React__default.ReactNode;
|
|
1536
|
-
} & TestID;
|
|
1564
|
+
} & TestID$1;
|
|
1537
1565
|
declare const ActionListFooter: (props: ActionListFooterProps) => JSX.Element;
|
|
1538
1566
|
declare const ActionListFooterIcon: ({ icon }: {
|
|
1539
1567
|
icon: IconComponent$1;
|
|
@@ -1621,7 +1649,7 @@ declare type AlertProps = {
|
|
|
1621
1649
|
*/
|
|
1622
1650
|
secondary?: SecondaryAction;
|
|
1623
1651
|
};
|
|
1624
|
-
} & TestID & StyledPropsBlade;
|
|
1652
|
+
} & TestID$1 & StyledPropsBlade;
|
|
1625
1653
|
declare const Alert: ({ description, title, isDismissible, onDismiss, contrast, isFullWidth, intent, actions, testID, ...styledProps }: AlertProps) => ReactElement | null;
|
|
1626
1654
|
|
|
1627
1655
|
declare type BadgeProps = {
|
|
@@ -1660,7 +1688,7 @@ declare type BadgeProps = {
|
|
|
1660
1688
|
* @default 'regular'
|
|
1661
1689
|
*/
|
|
1662
1690
|
fontWeight?: 'regular' | 'bold';
|
|
1663
|
-
} & TestID & StyledPropsBlade;
|
|
1691
|
+
} & TestID$1 & StyledPropsBlade;
|
|
1664
1692
|
declare const Badge: ({ children, contrast, fontWeight, icon, size, variant, testID, ...styledProps }: BadgeProps) => ReactElement;
|
|
1665
1693
|
|
|
1666
1694
|
declare type BladeProviderProps = {
|
|
@@ -2274,7 +2302,8 @@ declare type BoxCallbackProps = Omit<Platform.Select<{
|
|
|
2274
2302
|
}>, '__brand__'>;
|
|
2275
2303
|
declare type BoxProps = Partial<PaddingProps & MarginProps & LayoutProps & FlexboxProps & PositionProps & GridProps & BoxCallbackProps & BoxVisualProps & {
|
|
2276
2304
|
children?: React.ReactNode | React.ReactNode[];
|
|
2277
|
-
|
|
2305
|
+
tabIndex?: number;
|
|
2306
|
+
} & TestID$1>;
|
|
2278
2307
|
declare type BoxRefType = Platform.Select<{
|
|
2279
2308
|
web: Omit<HTMLElement, 'style'>;
|
|
2280
2309
|
native: View;
|
|
@@ -2734,7 +2763,8 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
2734
2763
|
as: "header" | "main" | "label" | "aside" | "div" | "footer" | "nav" | "section" | "span";
|
|
2735
2764
|
} & {
|
|
2736
2765
|
children?: React__default.ReactNode | React__default.ReactNode[];
|
|
2737
|
-
|
|
2766
|
+
tabIndex?: number | undefined;
|
|
2767
|
+
} & TestID$1> & React__default.RefAttributes<BoxRefType>>;
|
|
2738
2768
|
|
|
2739
2769
|
declare const ComponentIds: {
|
|
2740
2770
|
CardHeader: string;
|
|
@@ -2792,18 +2822,20 @@ declare type CardProps = {
|
|
|
2792
2822
|
* - Docs: https://blade.razorpay.com/?path=/docs/tokens-spacing--page
|
|
2793
2823
|
*/
|
|
2794
2824
|
padding?: Extract<SpacingValueType$1, 'spacing.0' | 'spacing.3' | 'spacing.5' | 'spacing.7'>;
|
|
2795
|
-
} & TestID & StyledPropsBlade;
|
|
2825
|
+
} & TestID$1 & StyledPropsBlade;
|
|
2796
2826
|
declare const Card: ({ children, surfaceLevel, elevation, testID, padding, ...styledProps }: CardProps) => React__default.ReactElement;
|
|
2797
2827
|
declare type CardBodyProps = {
|
|
2798
2828
|
children: React__default.ReactNode;
|
|
2799
|
-
} & TestID;
|
|
2829
|
+
} & TestID$1;
|
|
2800
2830
|
declare const CardBody: ({ children, testID }: CardBodyProps) => React__default.ReactElement;
|
|
2801
2831
|
|
|
2802
2832
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2803
2833
|
|
|
2804
2834
|
|
|
2805
2835
|
type BladeElementRef = Platform.Select<{
|
|
2806
|
-
web:
|
|
2836
|
+
web:
|
|
2837
|
+
| Pick<HTMLElement, 'focus' | 'scrollIntoView' | 'getBoundingClientRect'>
|
|
2838
|
+
| Pick<View, 'focus'>;
|
|
2807
2839
|
native: React.MutableRefObject<any>;
|
|
2808
2840
|
}>;
|
|
2809
2841
|
|
|
@@ -2817,6 +2849,10 @@ declare type BaseLinkCommonProps = {
|
|
|
2817
2849
|
native: (event: GestureResponderEvent) => void;
|
|
2818
2850
|
web: (event: React__default.FocusEvent<HTMLButtonElement>) => void;
|
|
2819
2851
|
}>;
|
|
2852
|
+
onMouseLeave?: Platform.Select<{
|
|
2853
|
+
native: (event: GestureResponderEvent) => void;
|
|
2854
|
+
web: (event: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
2855
|
+
}>;
|
|
2820
2856
|
onKeyDown?: Platform.Select<{
|
|
2821
2857
|
native: (event: GestureResponderEvent) => void;
|
|
2822
2858
|
web: (event: React__default.KeyboardEvent<HTMLButtonElement>) => void;
|
|
@@ -2841,7 +2877,7 @@ declare type BaseLinkCommonProps = {
|
|
|
2841
2877
|
* The title of the link which is displayed as a tooltip. This is a web only prop and has no effect on react-native.
|
|
2842
2878
|
*/
|
|
2843
2879
|
htmlTitle?: string;
|
|
2844
|
-
} & TestID & StyledPropsBlade
|
|
2880
|
+
} & TestID$1 & StyledPropsBlade & Omit<BladeCommonEvents$1, 'onBlur' | 'onMouseLeave'>;
|
|
2845
2881
|
declare type BaseLinkWithoutIconProps = BaseLinkCommonProps & {
|
|
2846
2882
|
icon?: undefined;
|
|
2847
2883
|
children: StringChildrenType;
|
|
@@ -2882,7 +2918,7 @@ declare type LinkCommonProps = {
|
|
|
2882
2918
|
* @default medium
|
|
2883
2919
|
*/
|
|
2884
2920
|
size?: BaseLinkProps['size'];
|
|
2885
|
-
} & TestID & StyledPropsBlade & Platform.Select<{
|
|
2921
|
+
} & TestID$1 & StyledPropsBlade & BladeCommonEvents$1 & Platform.Select<{
|
|
2886
2922
|
native: {
|
|
2887
2923
|
/**
|
|
2888
2924
|
* Defines how far your touch can start away from the link
|
|
@@ -2933,7 +2969,7 @@ declare type LinkButtonVariantProps = LinkPropsWithOrWithoutIcon & {
|
|
|
2933
2969
|
rel?: undefined;
|
|
2934
2970
|
};
|
|
2935
2971
|
declare type LinkProps = LinkAnchorVariantProps | LinkButtonVariantProps;
|
|
2936
|
-
declare const Link:
|
|
2972
|
+
declare const Link: React__default.ForwardRefExoticComponent<LinkProps & React__default.RefAttributes<BladeElementRef>>;
|
|
2937
2973
|
|
|
2938
2974
|
declare type BaseButtonCommonProps = {
|
|
2939
2975
|
href?: BaseLinkProps['href'];
|
|
@@ -2943,10 +2979,6 @@ declare type BaseButtonCommonProps = {
|
|
|
2943
2979
|
iconPosition?: 'left' | 'right';
|
|
2944
2980
|
isDisabled?: boolean;
|
|
2945
2981
|
isFullWidth?: boolean;
|
|
2946
|
-
onBlur?: Platform.Select<{
|
|
2947
|
-
native: (event: GestureResponderEvent) => void;
|
|
2948
|
-
web: (event: React__default.FocusEvent<HTMLButtonElement>) => void;
|
|
2949
|
-
}>;
|
|
2950
2982
|
onKeyDown?: Platform.Select<{
|
|
2951
2983
|
native: (event: GestureResponderEvent) => void;
|
|
2952
2984
|
web: (event: React__default.KeyboardEvent<HTMLButtonElement>) => void;
|
|
@@ -2961,7 +2993,7 @@ declare type BaseButtonCommonProps = {
|
|
|
2961
2993
|
variant?: 'primary' | 'secondary' | 'tertiary';
|
|
2962
2994
|
contrast?: 'low' | 'high';
|
|
2963
2995
|
intent?: 'positive' | 'negative' | 'notice' | 'information' | 'neutral';
|
|
2964
|
-
} & TestID & StyledPropsBlade;
|
|
2996
|
+
} & TestID$1 & StyledPropsBlade & BladeCommonEvents$1;
|
|
2965
2997
|
declare type BaseButtonWithoutIconProps = BaseButtonCommonProps & {
|
|
2966
2998
|
icon?: undefined;
|
|
2967
2999
|
children: StringChildrenType;
|
|
@@ -3001,7 +3033,7 @@ declare type ButtonCommonProps = {
|
|
|
3001
3033
|
native: (event: GestureResponderEvent) => void;
|
|
3002
3034
|
web: (event: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
3003
3035
|
}>;
|
|
3004
|
-
} & TestID & StyledPropsBlade;
|
|
3036
|
+
} & TestID$1 & StyledPropsBlade & BladeCommonEvents$1;
|
|
3005
3037
|
declare type ButtonWithoutIconProps = ButtonCommonProps & {
|
|
3006
3038
|
icon?: undefined;
|
|
3007
3039
|
children: StringChildrenType;
|
|
@@ -3041,7 +3073,7 @@ declare type CounterProps = {
|
|
|
3041
3073
|
* @default 'medium'
|
|
3042
3074
|
*/
|
|
3043
3075
|
size?: 'small' | 'medium' | 'large';
|
|
3044
|
-
} & TestID & StyledPropsBlade;
|
|
3076
|
+
} & TestID$1 & StyledPropsBlade;
|
|
3045
3077
|
declare const Counter: ({ value, max, intent, contrast, size, testID, ...styledProps }: CounterProps) => React.ReactElement;
|
|
3046
3078
|
|
|
3047
3079
|
type FeedbackColors$1 = `feedback.text.${DotNotationColorStringToken<
|
|
@@ -3082,7 +3114,7 @@ type BaseTextProps$1 = {
|
|
|
3082
3114
|
*/
|
|
3083
3115
|
numberOfLines?: number;
|
|
3084
3116
|
componentName?: 'text' | 'title' | 'heading' | 'code';
|
|
3085
|
-
} & TestID &
|
|
3117
|
+
} & TestID$1 &
|
|
3086
3118
|
StyledPropsBlade;
|
|
3087
3119
|
|
|
3088
3120
|
/* eslint-disable @typescript-eslint/no-unnecessary-type-assertion */
|
|
@@ -3101,7 +3133,7 @@ type TextCommonProps$1 = {
|
|
|
3101
3133
|
*/
|
|
3102
3134
|
color?: BaseTextProps$1['color'];
|
|
3103
3135
|
textAlign?: BaseTextProps$1['textAlign'];
|
|
3104
|
-
} & TestID &
|
|
3136
|
+
} & TestID$1 &
|
|
3105
3137
|
StyledPropsBlade;
|
|
3106
3138
|
|
|
3107
3139
|
type TextVariant$1 = 'body' | 'caption';
|
|
@@ -3145,7 +3177,7 @@ declare type CardHeaderIconButtonProps = Omit<ButtonProps, 'variant' | 'size' |
|
|
|
3145
3177
|
declare const CardHeaderIconButton: (props: CardHeaderIconButtonProps) => React__default.ReactElement;
|
|
3146
3178
|
declare type CardHeaderProps = {
|
|
3147
3179
|
children?: React__default.ReactNode;
|
|
3148
|
-
} & TestID;
|
|
3180
|
+
} & TestID$1;
|
|
3149
3181
|
declare const CardHeader: ({ children, testID }: CardHeaderProps) => React__default.ReactElement;
|
|
3150
3182
|
declare type CardHeaderLeadingProps = {
|
|
3151
3183
|
title: string;
|
|
@@ -3179,7 +3211,7 @@ declare type CardFooterAction = Pick<ButtonProps, 'type' | 'accessibilityLabel'
|
|
|
3179
3211
|
};
|
|
3180
3212
|
declare type CardFooterProps = {
|
|
3181
3213
|
children?: React__default.ReactNode;
|
|
3182
|
-
} & TestID;
|
|
3214
|
+
} & TestID$1;
|
|
3183
3215
|
declare const CardFooter: ({ children, testID }: CardFooterProps) => React__default.ReactElement;
|
|
3184
3216
|
declare type CardFooterLeadingProps = {
|
|
3185
3217
|
title?: string;
|
|
@@ -3216,8 +3248,30 @@ declare type IconButtonProps = {
|
|
|
3216
3248
|
* Sets aria-label to help users know what the action does, eg 'Dismiss alert'
|
|
3217
3249
|
*/
|
|
3218
3250
|
accessibilityLabel: string;
|
|
3219
|
-
};
|
|
3220
|
-
declare const IconButton: React__default.ForwardRefExoticComponent<
|
|
3251
|
+
} & BladeCommonEvents$1;
|
|
3252
|
+
declare const IconButton: React__default.ForwardRefExoticComponent<{
|
|
3253
|
+
/**
|
|
3254
|
+
* Icon component to be rendered, eg. `CloseIcon`
|
|
3255
|
+
*/
|
|
3256
|
+
icon: IconComponent$1;
|
|
3257
|
+
onClick: () => void;
|
|
3258
|
+
/**
|
|
3259
|
+
* Icon size
|
|
3260
|
+
*
|
|
3261
|
+
* @default 'medium'
|
|
3262
|
+
*/
|
|
3263
|
+
size?: "medium" | "large" | undefined;
|
|
3264
|
+
/**
|
|
3265
|
+
* Icon contrast
|
|
3266
|
+
*
|
|
3267
|
+
* @default 'low'
|
|
3268
|
+
*/
|
|
3269
|
+
contrast?: "low" | "high" | undefined;
|
|
3270
|
+
/**
|
|
3271
|
+
* Sets aria-label to help users know what the action does, eg 'Dismiss alert'
|
|
3272
|
+
*/
|
|
3273
|
+
accessibilityLabel: string;
|
|
3274
|
+
} & BladeCommonEvents$1 & React__default.RefAttributes<BladeElementRef>>;
|
|
3221
3275
|
|
|
3222
3276
|
declare type OnChange$1 = ({ isChecked, event, value, }: {
|
|
3223
3277
|
isChecked: boolean;
|
|
@@ -3302,7 +3356,7 @@ declare type CheckboxProps = {
|
|
|
3302
3356
|
*
|
|
3303
3357
|
*/
|
|
3304
3358
|
tabIndex?: number;
|
|
3305
|
-
} & TestID & StyledPropsBlade;
|
|
3359
|
+
} & TestID$1 & StyledPropsBlade;
|
|
3306
3360
|
declare const Checkbox: React__default.ForwardRefExoticComponent<{
|
|
3307
3361
|
/**
|
|
3308
3362
|
* If `true`, The checkbox will be checked. This also makes the checkbox controlled
|
|
@@ -3381,7 +3435,7 @@ declare const Checkbox: React__default.ForwardRefExoticComponent<{
|
|
|
3381
3435
|
*
|
|
3382
3436
|
*/
|
|
3383
3437
|
tabIndex?: number | undefined;
|
|
3384
|
-
} & TestID & Partial<Omit<MarginProps & Pick<{
|
|
3438
|
+
} & TestID$1 & Partial<Omit<MarginProps & Pick<{
|
|
3385
3439
|
alignContent?: csstype.Property.AlignContent | {
|
|
3386
3440
|
readonly base?: csstype.Property.AlignContent | undefined;
|
|
3387
3441
|
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
@@ -3787,7 +3841,7 @@ declare type CheckboxGroupProps = {
|
|
|
3787
3841
|
* @default "medium"
|
|
3788
3842
|
*/
|
|
3789
3843
|
size?: 'small' | 'medium';
|
|
3790
|
-
} & TestID & StyledPropsBlade;
|
|
3844
|
+
} & TestID$1 & StyledPropsBlade;
|
|
3791
3845
|
declare const CheckboxGroup: ({ children, label, helpText, isDisabled, necessityIndicator, labelPosition, validationState, errorText, name, defaultValue, onChange, value, size, testID, ...styledProps }: CheckboxGroupProps) => React__default.ReactElement;
|
|
3792
3846
|
|
|
3793
3847
|
declare type DropdownProps = {
|
|
@@ -3799,7 +3853,7 @@ declare const Dropdown: ({ children, selectionType, onDismiss, ...styledProps }:
|
|
|
3799
3853
|
|
|
3800
3854
|
declare type DropdownOverlayProps = {
|
|
3801
3855
|
children: React__default.ReactNode;
|
|
3802
|
-
} & TestID;
|
|
3856
|
+
} & TestID$1;
|
|
3803
3857
|
declare const DropdownOverlay: ({ children, testID }: DropdownOverlayProps) => JSX.Element;
|
|
3804
3858
|
|
|
3805
3859
|
declare type DropdownButtonProps = ButtonProps & {
|
|
@@ -4614,7 +4668,7 @@ declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
|
|
|
4614
4668
|
* sets the autocapitalize behavior for the input
|
|
4615
4669
|
*/
|
|
4616
4670
|
autoCapitalize?: 'none' | 'sentences' | 'words' | 'characters';
|
|
4617
|
-
} & TestID & Platform.Select<{
|
|
4671
|
+
} & TestID$1 & Platform.Select<{
|
|
4618
4672
|
native: {
|
|
4619
4673
|
/**
|
|
4620
4674
|
* The callback function to be invoked when the value of the input field is submitted.
|
|
@@ -4684,7 +4738,7 @@ declare type TextInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | '
|
|
|
4684
4738
|
*/
|
|
4685
4739
|
type?: Type;
|
|
4686
4740
|
} & StyledPropsBlade;
|
|
4687
|
-
declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "name" | "testID" | "placeholder" | "label" | "value" | "prefix" | "
|
|
4741
|
+
declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "name" | "testID" | "placeholder" | "label" | "value" | "prefix" | "onBlur" | "onFocus" | "defaultValue" | "autoCapitalize" | "onChange" | "onSubmit" | "autoFocus" | "isDisabled" | "labelPosition" | "validationState" | "helpText" | "errorText" | "necessityIndicator" | "successText" | "isRequired" | "suffix" | "maxCharacters" | "keyboardReturnKeyType" | "autoCompleteSuggestionType"> & {
|
|
4688
4742
|
/**
|
|
4689
4743
|
* Decides whether to render a clear icon button
|
|
4690
4744
|
*/
|
|
@@ -5079,7 +5133,7 @@ declare type PasswordInputExtraProps = {
|
|
|
5079
5133
|
autoCompleteSuggestionType?: Extract<BaseInputProps['autoCompleteSuggestionType'], 'none' | 'password' | 'newPassword'>;
|
|
5080
5134
|
};
|
|
5081
5135
|
declare type PasswordInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'maxCharacters' | 'validationState' | 'errorText' | 'successText' | 'helpText' | 'isDisabled' | 'defaultValue' | 'placeholder' | 'isRequired' | 'value' | 'onChange' | 'onBlur' | 'onSubmit' | 'onFocus' | 'name' | 'autoFocus' | 'keyboardReturnKeyType' | 'autoCompleteSuggestionType' | 'testID'> & PasswordInputExtraProps & StyledPropsBlade;
|
|
5082
|
-
declare const PasswordInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "name" | "testID" | "placeholder" | "label" | "value" | "
|
|
5136
|
+
declare const PasswordInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "name" | "testID" | "placeholder" | "label" | "value" | "onBlur" | "onFocus" | "defaultValue" | "onChange" | "onSubmit" | "autoFocus" | "isDisabled" | "labelPosition" | "validationState" | "helpText" | "errorText" | "successText" | "isRequired" | "maxCharacters" | "keyboardReturnKeyType" | "autoCompleteSuggestionType"> & PasswordInputExtraProps & Partial<Omit<MarginProps & Pick<{
|
|
5083
5137
|
alignContent?: csstype.Property.AlignContent | {
|
|
5084
5138
|
readonly base?: csstype.Property.AlignContent | undefined;
|
|
5085
5139
|
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
@@ -5422,7 +5476,7 @@ declare type TextAreaProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'n
|
|
|
5422
5476
|
*/
|
|
5423
5477
|
onClearButtonClick?: () => void;
|
|
5424
5478
|
} & StyledPropsBlade;
|
|
5425
|
-
declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "name" | "testID" | "placeholder" | "label" | "value" | "
|
|
5479
|
+
declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "name" | "testID" | "placeholder" | "label" | "value" | "onBlur" | "onFocus" | "defaultValue" | "onChange" | "onSubmit" | "numberOfLines" | "autoFocus" | "isDisabled" | "labelPosition" | "validationState" | "helpText" | "errorText" | "necessityIndicator" | "successText" | "isRequired" | "maxCharacters"> & {
|
|
5426
5480
|
/**
|
|
5427
5481
|
* Decides whether to render a clear icon button
|
|
5428
5482
|
*/
|
|
@@ -5866,7 +5920,7 @@ declare type SelectInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' |
|
|
|
5866
5920
|
*
|
|
5867
5921
|
* Checkout {@link https://blade.razorpay.com/?path=/docs/components-dropdown-with-select--with-single-select SelectInput Documentation}.
|
|
5868
5922
|
*/
|
|
5869
|
-
declare const SelectInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "name" | "testID" | "placeholder" | "label" | "prefix" | "
|
|
5923
|
+
declare const SelectInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "name" | "testID" | "placeholder" | "label" | "prefix" | "onBlur" | "onFocus" | "onClick" | "autoFocus" | "isDisabled" | "labelPosition" | "validationState" | "helpText" | "errorText" | "necessityIndicator" | "successText" | "isRequired" | "suffix"> & {
|
|
5870
5924
|
icon?: IconComponent$1 | undefined;
|
|
5871
5925
|
/**
|
|
5872
5926
|
* Controlled value of the Select. Use it in combination of `onChange`.
|
|
@@ -5897,7 +5951,7 @@ declare type IndicatorCommonProps = {
|
|
|
5897
5951
|
* @default medium
|
|
5898
5952
|
*/
|
|
5899
5953
|
size?: 'small' | 'medium' | 'large';
|
|
5900
|
-
} & TestID & StyledPropsBlade;
|
|
5954
|
+
} & TestID$1 & StyledPropsBlade;
|
|
5901
5955
|
declare type IndicatorWithoutA11yLabel = {
|
|
5902
5956
|
/**
|
|
5903
5957
|
* A text label to show alongside the indicator dot
|
|
@@ -5937,7 +5991,7 @@ declare type ListItemProps = {
|
|
|
5937
5991
|
*
|
|
5938
5992
|
*/
|
|
5939
5993
|
_itemNumber?: undefined;
|
|
5940
|
-
} & TestID;
|
|
5994
|
+
} & TestID$1;
|
|
5941
5995
|
declare const ListItem: ({ children, icon, _itemNumber, testID, }: ListItemProps) => React__default.ReactElement;
|
|
5942
5996
|
|
|
5943
5997
|
declare type ListCommonProps = {
|
|
@@ -5958,7 +6012,7 @@ declare type ListCommonProps = {
|
|
|
5958
6012
|
* @default 'medium'
|
|
5959
6013
|
*/
|
|
5960
6014
|
size?: 'small' | 'medium';
|
|
5961
|
-
} & TestID & StyledPropsBlade;
|
|
6015
|
+
} & TestID$1 & StyledPropsBlade;
|
|
5962
6016
|
declare type ListWithIconProps = ListCommonProps & {
|
|
5963
6017
|
variant?: 'unordered';
|
|
5964
6018
|
icon?: IconComponent;
|
|
@@ -6002,7 +6056,7 @@ declare type BaseTextProps = {
|
|
|
6002
6056
|
*/
|
|
6003
6057
|
numberOfLines?: number;
|
|
6004
6058
|
componentName?: 'text' | 'title' | 'heading' | 'code';
|
|
6005
|
-
} & TestID & StyledPropsBlade;
|
|
6059
|
+
} & TestID$1 & StyledPropsBlade;
|
|
6006
6060
|
|
|
6007
6061
|
declare type TitleProps = {
|
|
6008
6062
|
/**
|
|
@@ -6015,7 +6069,7 @@ declare type TitleProps = {
|
|
|
6015
6069
|
contrast?: ColorContrastTypes;
|
|
6016
6070
|
type?: TextTypes;
|
|
6017
6071
|
children: StringChildrenType;
|
|
6018
|
-
} & TestID & StyledPropsBlade;
|
|
6072
|
+
} & TestID$1 & StyledPropsBlade;
|
|
6019
6073
|
declare const Title: ({ size, type, contrast, color, children, testID, ...styledProps }: TitleProps) => ReactElement;
|
|
6020
6074
|
|
|
6021
6075
|
declare type HeadingVariant = 'regular' | 'subheading';
|
|
@@ -6031,7 +6085,7 @@ declare type HeadingCommonProps = {
|
|
|
6031
6085
|
contrast?: ColorContrastTypes;
|
|
6032
6086
|
children: StringChildrenType;
|
|
6033
6087
|
textAlign?: BaseTextProps['textAlign'];
|
|
6034
|
-
} & TestID & StyledPropsBlade;
|
|
6088
|
+
} & TestID$1 & StyledPropsBlade;
|
|
6035
6089
|
declare type HeadingNormalVariant = HeadingCommonProps & {
|
|
6036
6090
|
variant?: Exclude<HeadingVariant, 'subheading'>;
|
|
6037
6091
|
/**
|
|
@@ -6073,7 +6127,7 @@ declare type TextCommonProps = {
|
|
|
6073
6127
|
*/
|
|
6074
6128
|
color?: BaseTextProps['color'];
|
|
6075
6129
|
textAlign?: BaseTextProps['textAlign'];
|
|
6076
|
-
} & TestID & StyledPropsBlade;
|
|
6130
|
+
} & TestID$1 & StyledPropsBlade;
|
|
6077
6131
|
declare type TextVariant = 'body' | 'caption';
|
|
6078
6132
|
declare type TextBodyVariant = TextCommonProps & {
|
|
6079
6133
|
variant?: Extract<TextVariant, 'body'>;
|
|
@@ -6118,7 +6172,7 @@ declare type CodeCommonProps = {
|
|
|
6118
6172
|
weight?: 'regular' | 'bold';
|
|
6119
6173
|
isHighlighted?: boolean;
|
|
6120
6174
|
color?: BaseTextProps['color'];
|
|
6121
|
-
} & TestID & StyledPropsBlade;
|
|
6175
|
+
} & TestID$1 & StyledPropsBlade;
|
|
6122
6176
|
declare type CodeHighlightedProps = CodeCommonProps & {
|
|
6123
6177
|
/**
|
|
6124
6178
|
* Adds background color to highlight the text
|
|
@@ -6317,7 +6371,7 @@ declare type ProgressBarCommonProps = {
|
|
|
6317
6371
|
* @default 100
|
|
6318
6372
|
*/
|
|
6319
6373
|
max?: number;
|
|
6320
|
-
} & TestID & StyledPropsBlade;
|
|
6374
|
+
} & TestID$1 & StyledPropsBlade;
|
|
6321
6375
|
declare type ProgressBarVariant = 'progress' | 'meter';
|
|
6322
6376
|
declare type ProgressBarProgressProps = ProgressBarCommonProps & {
|
|
6323
6377
|
/**
|
|
@@ -6382,7 +6436,7 @@ declare type RadioProps = {
|
|
|
6382
6436
|
* @default "medium"
|
|
6383
6437
|
*/
|
|
6384
6438
|
size?: 'small' | 'medium';
|
|
6385
|
-
} & TestID & StyledPropsBlade;
|
|
6439
|
+
} & TestID$1 & StyledPropsBlade;
|
|
6386
6440
|
declare const Radio: React__default.ForwardRefExoticComponent<{
|
|
6387
6441
|
/**
|
|
6388
6442
|
* Sets the label text of the Radio
|
|
@@ -6409,7 +6463,7 @@ declare const Radio: React__default.ForwardRefExoticComponent<{
|
|
|
6409
6463
|
* @default "medium"
|
|
6410
6464
|
*/
|
|
6411
6465
|
size?: "small" | "medium" | undefined;
|
|
6412
|
-
} & TestID & Partial<Omit<MarginProps & Pick<{
|
|
6466
|
+
} & TestID$1 & Partial<Omit<MarginProps & Pick<{
|
|
6413
6467
|
alignContent?: csstype.Property.AlignContent | {
|
|
6414
6468
|
readonly base?: csstype.Property.AlignContent | undefined;
|
|
6415
6469
|
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
@@ -6815,7 +6869,7 @@ declare type RadioGroupProps = {
|
|
|
6815
6869
|
* @default "medium"
|
|
6816
6870
|
*/
|
|
6817
6871
|
size?: 'small' | 'medium';
|
|
6818
|
-
} & TestID & StyledPropsBlade;
|
|
6872
|
+
} & TestID$1 & StyledPropsBlade;
|
|
6819
6873
|
declare const RadioGroup: ({ children, label, helpText, isDisabled, necessityIndicator, labelPosition, validationState, errorText, name, defaultValue, onChange, value, size, testID, ...styledProps }: RadioGroupProps) => React__default.ReactElement;
|
|
6820
6874
|
|
|
6821
6875
|
declare type BaseSpinnerProps = {
|
|
@@ -6848,7 +6902,7 @@ declare type BaseSpinnerProps = {
|
|
|
6848
6902
|
*
|
|
6849
6903
|
*/
|
|
6850
6904
|
accessibilityLabel: string;
|
|
6851
|
-
} & TestID & StyledPropsBlade;
|
|
6905
|
+
} & TestID$1 & StyledPropsBlade;
|
|
6852
6906
|
|
|
6853
6907
|
declare type SpinnerProps = Omit<BaseSpinnerProps, 'intent'>;
|
|
6854
6908
|
declare const Spinner: ({ label, labelPosition, accessibilityLabel, contrast, size, testID, ...styledProps }: SpinnerProps) => React.ReactElement;
|
|
@@ -6860,7 +6914,7 @@ declare type SkipNavLinkProps = {
|
|
|
6860
6914
|
declare const SkipNavLink: ({ id, children, }: SkipNavLinkProps) => JSX.Element;
|
|
6861
6915
|
declare type SkipNavContentProps = {
|
|
6862
6916
|
id?: string;
|
|
6863
|
-
} & TestID;
|
|
6917
|
+
} & TestID$1;
|
|
6864
6918
|
declare const SkipNavContent: ({ id, testID, }: SkipNavContentProps) => JSX.Element;
|
|
6865
6919
|
|
|
6866
6920
|
declare type OnChange = ({ isChecked, value, event, }: {
|
|
@@ -6923,7 +6977,7 @@ declare const Switch: React__default.ForwardRefExoticComponent<SwitchProps & Rea
|
|
|
6923
6977
|
|
|
6924
6978
|
declare type VisuallyHiddenProps = {
|
|
6925
6979
|
children: React.ReactNode;
|
|
6926
|
-
} & TestID;
|
|
6980
|
+
} & TestID$1;
|
|
6927
6981
|
|
|
6928
6982
|
declare const VisuallyHidden: ({ children, testID }: VisuallyHiddenProps) => JSX.Element;
|
|
6929
6983
|
|
|
@@ -6976,7 +7030,7 @@ declare type AmountProps = {
|
|
|
6976
7030
|
* @default 'INR'
|
|
6977
7031
|
* */
|
|
6978
7032
|
currency?: Currency;
|
|
6979
|
-
} & TestID & StyledPropsBlade;
|
|
7033
|
+
} & TestID$1 & StyledPropsBlade;
|
|
6980
7034
|
declare const Amount: ({ value, suffix, size, isAffixSubtle, intent, prefix, testID, currency, ...styledProps }: AmountProps) => ReactElement;
|
|
6981
7035
|
|
|
6982
7036
|
declare type SnapPoints = [number, number, number];
|
|
@@ -7041,4 +7095,734 @@ declare const BottomSheetBody: ({ children }: {
|
|
|
7041
7095
|
|
|
7042
7096
|
declare const BottomSheet: ({ isOpen, onDismiss, children, initialFocusRef, snapPoints, }: BottomSheetProps) => React__default.ReactElement;
|
|
7043
7097
|
|
|
7044
|
-
|
|
7098
|
+
declare type TooltipProps = {
|
|
7099
|
+
content: string;
|
|
7100
|
+
placement?: Exclude<UseFloatingOptions['placement'], 'left-end' | 'left-start' | 'right-end' | 'right-start'>;
|
|
7101
|
+
children: React.ReactElement;
|
|
7102
|
+
onOpenChange?: ({ isOpen }: {
|
|
7103
|
+
isOpen: boolean;
|
|
7104
|
+
}) => void;
|
|
7105
|
+
};
|
|
7106
|
+
|
|
7107
|
+
declare const Tooltip: ({ content, children, placement, onOpenChange, }: TooltipProps) => React__default.ReactElement;
|
|
7108
|
+
|
|
7109
|
+
declare type BladeCommonEvents = {
|
|
7110
|
+
onBlur?: Platform.Select<{
|
|
7111
|
+
native: undefined | ((event: any) => void);
|
|
7112
|
+
web: React.FocusEventHandler;
|
|
7113
|
+
}>;
|
|
7114
|
+
onFocus?: Platform.Select<{
|
|
7115
|
+
native: undefined | ((event: any) => void);
|
|
7116
|
+
web: React.FocusEventHandler;
|
|
7117
|
+
}>;
|
|
7118
|
+
onMouseLeave?: Platform.Select<{
|
|
7119
|
+
web: React.MouseEventHandler;
|
|
7120
|
+
native: undefined;
|
|
7121
|
+
}>;
|
|
7122
|
+
onMouseMove?: Platform.Select<{
|
|
7123
|
+
web: React.MouseEventHandler;
|
|
7124
|
+
native: undefined;
|
|
7125
|
+
}>;
|
|
7126
|
+
onPointerDown?: Platform.Select<{
|
|
7127
|
+
web: React.PointerEventHandler;
|
|
7128
|
+
native: undefined;
|
|
7129
|
+
}>;
|
|
7130
|
+
onPointerEnter?: Platform.Select<{
|
|
7131
|
+
web: React.PointerEventHandler;
|
|
7132
|
+
native: undefined;
|
|
7133
|
+
}>;
|
|
7134
|
+
onTouchStart?: Platform.Select<{
|
|
7135
|
+
native: undefined | ((event: any) => void);
|
|
7136
|
+
web: React.TouchEventHandler;
|
|
7137
|
+
}>;
|
|
7138
|
+
onTouchEnd?: Platform.Select<{
|
|
7139
|
+
native: undefined | ((event: any) => void);
|
|
7140
|
+
web: React.TouchEventHandler;
|
|
7141
|
+
}>;
|
|
7142
|
+
};
|
|
7143
|
+
|
|
7144
|
+
declare type TestID = {
|
|
7145
|
+
testID?: string;
|
|
7146
|
+
};
|
|
7147
|
+
|
|
7148
|
+
declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, Omit<Partial<PaddingProps & MarginProps & {
|
|
7149
|
+
width: SpacingValueType | {
|
|
7150
|
+
readonly base?: SpacingValueType | undefined;
|
|
7151
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7152
|
+
readonly s?: SpacingValueType | undefined;
|
|
7153
|
+
readonly m?: SpacingValueType | undefined;
|
|
7154
|
+
readonly l?: SpacingValueType | undefined;
|
|
7155
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7156
|
+
};
|
|
7157
|
+
display?: csstype.Property.Display | {
|
|
7158
|
+
readonly base?: csstype.Property.Display | undefined;
|
|
7159
|
+
readonly xs?: csstype.Property.Display | undefined;
|
|
7160
|
+
readonly s?: csstype.Property.Display | undefined;
|
|
7161
|
+
readonly m?: csstype.Property.Display | undefined;
|
|
7162
|
+
readonly l?: csstype.Property.Display | undefined;
|
|
7163
|
+
readonly xl?: csstype.Property.Display | undefined;
|
|
7164
|
+
} | undefined;
|
|
7165
|
+
height: SpacingValueType | {
|
|
7166
|
+
readonly base?: SpacingValueType | undefined;
|
|
7167
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7168
|
+
readonly s?: SpacingValueType | undefined;
|
|
7169
|
+
readonly m?: SpacingValueType | undefined;
|
|
7170
|
+
readonly l?: SpacingValueType | undefined;
|
|
7171
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7172
|
+
};
|
|
7173
|
+
maxHeight: SpacingValueType | {
|
|
7174
|
+
readonly base?: SpacingValueType | undefined;
|
|
7175
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7176
|
+
readonly s?: SpacingValueType | undefined;
|
|
7177
|
+
readonly m?: SpacingValueType | undefined;
|
|
7178
|
+
readonly l?: SpacingValueType | undefined;
|
|
7179
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7180
|
+
};
|
|
7181
|
+
maxWidth: SpacingValueType | {
|
|
7182
|
+
readonly base?: SpacingValueType | undefined;
|
|
7183
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7184
|
+
readonly s?: SpacingValueType | undefined;
|
|
7185
|
+
readonly m?: SpacingValueType | undefined;
|
|
7186
|
+
readonly l?: SpacingValueType | undefined;
|
|
7187
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7188
|
+
};
|
|
7189
|
+
minHeight: SpacingValueType | {
|
|
7190
|
+
readonly base?: SpacingValueType | undefined;
|
|
7191
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7192
|
+
readonly s?: SpacingValueType | undefined;
|
|
7193
|
+
readonly m?: SpacingValueType | undefined;
|
|
7194
|
+
readonly l?: SpacingValueType | undefined;
|
|
7195
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7196
|
+
};
|
|
7197
|
+
minWidth: SpacingValueType | {
|
|
7198
|
+
readonly base?: SpacingValueType | undefined;
|
|
7199
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7200
|
+
readonly s?: SpacingValueType | undefined;
|
|
7201
|
+
readonly m?: SpacingValueType | undefined;
|
|
7202
|
+
readonly l?: SpacingValueType | undefined;
|
|
7203
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7204
|
+
};
|
|
7205
|
+
overflowX?: csstype.Property.OverflowX | {
|
|
7206
|
+
readonly base?: csstype.Property.OverflowX | undefined;
|
|
7207
|
+
readonly xs?: csstype.Property.OverflowX | undefined;
|
|
7208
|
+
readonly s?: csstype.Property.OverflowX | undefined;
|
|
7209
|
+
readonly m?: csstype.Property.OverflowX | undefined;
|
|
7210
|
+
readonly l?: csstype.Property.OverflowX | undefined;
|
|
7211
|
+
readonly xl?: csstype.Property.OverflowX | undefined;
|
|
7212
|
+
} | undefined;
|
|
7213
|
+
overflowY?: csstype.Property.OverflowY | {
|
|
7214
|
+
readonly base?: csstype.Property.OverflowY | undefined;
|
|
7215
|
+
readonly xs?: csstype.Property.OverflowY | undefined;
|
|
7216
|
+
readonly s?: csstype.Property.OverflowY | undefined;
|
|
7217
|
+
readonly m?: csstype.Property.OverflowY | undefined;
|
|
7218
|
+
readonly l?: csstype.Property.OverflowY | undefined;
|
|
7219
|
+
readonly xl?: csstype.Property.OverflowY | undefined;
|
|
7220
|
+
} | undefined;
|
|
7221
|
+
textAlign?: csstype.Property.TextAlign | {
|
|
7222
|
+
readonly base?: csstype.Property.TextAlign | undefined;
|
|
7223
|
+
readonly xs?: csstype.Property.TextAlign | undefined;
|
|
7224
|
+
readonly s?: csstype.Property.TextAlign | undefined;
|
|
7225
|
+
readonly m?: csstype.Property.TextAlign | undefined;
|
|
7226
|
+
readonly l?: csstype.Property.TextAlign | undefined;
|
|
7227
|
+
readonly xl?: csstype.Property.TextAlign | undefined;
|
|
7228
|
+
} | undefined;
|
|
7229
|
+
overflow?: csstype.Property.Overflow | {
|
|
7230
|
+
readonly base?: csstype.Property.Overflow | undefined;
|
|
7231
|
+
readonly xs?: csstype.Property.Overflow | undefined;
|
|
7232
|
+
readonly s?: csstype.Property.Overflow | undefined;
|
|
7233
|
+
readonly m?: csstype.Property.Overflow | undefined;
|
|
7234
|
+
readonly l?: csstype.Property.Overflow | undefined;
|
|
7235
|
+
readonly xl?: csstype.Property.Overflow | undefined;
|
|
7236
|
+
} | undefined;
|
|
7237
|
+
__brand__?: "platform-web" | {
|
|
7238
|
+
readonly base?: "platform-web" | undefined;
|
|
7239
|
+
readonly xs?: "platform-web" | undefined;
|
|
7240
|
+
readonly s?: "platform-web" | undefined;
|
|
7241
|
+
readonly m?: "platform-web" | undefined;
|
|
7242
|
+
readonly l?: "platform-web" | undefined;
|
|
7243
|
+
readonly xl?: "platform-web" | undefined;
|
|
7244
|
+
} | undefined;
|
|
7245
|
+
} & {
|
|
7246
|
+
alignContent?: csstype.Property.AlignContent | {
|
|
7247
|
+
readonly base?: csstype.Property.AlignContent | undefined;
|
|
7248
|
+
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
7249
|
+
readonly s?: csstype.Property.AlignContent | undefined;
|
|
7250
|
+
readonly m?: csstype.Property.AlignContent | undefined;
|
|
7251
|
+
readonly l?: csstype.Property.AlignContent | undefined;
|
|
7252
|
+
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
7253
|
+
} | undefined;
|
|
7254
|
+
alignItems?: csstype.Property.AlignItems | {
|
|
7255
|
+
readonly base?: csstype.Property.AlignItems | undefined;
|
|
7256
|
+
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
7257
|
+
readonly s?: csstype.Property.AlignItems | undefined;
|
|
7258
|
+
readonly m?: csstype.Property.AlignItems | undefined;
|
|
7259
|
+
readonly l?: csstype.Property.AlignItems | undefined;
|
|
7260
|
+
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
7261
|
+
} | undefined;
|
|
7262
|
+
alignSelf?: csstype.Property.AlignSelf | {
|
|
7263
|
+
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
7264
|
+
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
7265
|
+
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
7266
|
+
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
7267
|
+
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
7268
|
+
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
7269
|
+
} | undefined;
|
|
7270
|
+
columnGap: SpacingValueType | {
|
|
7271
|
+
readonly base?: SpacingValueType | undefined;
|
|
7272
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7273
|
+
readonly s?: SpacingValueType | undefined;
|
|
7274
|
+
readonly m?: SpacingValueType | undefined;
|
|
7275
|
+
readonly l?: SpacingValueType | undefined;
|
|
7276
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7277
|
+
};
|
|
7278
|
+
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
7279
|
+
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
7280
|
+
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
7281
|
+
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
7282
|
+
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
7283
|
+
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
7284
|
+
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
7285
|
+
} | undefined;
|
|
7286
|
+
flexDirection?: csstype.Property.FlexDirection | {
|
|
7287
|
+
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
7288
|
+
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
7289
|
+
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
7290
|
+
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
7291
|
+
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
7292
|
+
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
7293
|
+
} | undefined;
|
|
7294
|
+
flexGrow?: csstype.Property.FlexGrow | {
|
|
7295
|
+
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
7296
|
+
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
7297
|
+
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
7298
|
+
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
7299
|
+
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
7300
|
+
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
7301
|
+
} | undefined;
|
|
7302
|
+
flexShrink?: csstype.Property.FlexShrink | {
|
|
7303
|
+
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
7304
|
+
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
7305
|
+
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
7306
|
+
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
7307
|
+
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
7308
|
+
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
7309
|
+
} | undefined;
|
|
7310
|
+
flexWrap?: csstype.Property.FlexWrap | {
|
|
7311
|
+
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
7312
|
+
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
7313
|
+
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
7314
|
+
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
7315
|
+
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
7316
|
+
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
7317
|
+
} | undefined;
|
|
7318
|
+
justifyContent?: csstype.Property.JustifyContent | {
|
|
7319
|
+
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
7320
|
+
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
7321
|
+
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
7322
|
+
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
7323
|
+
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
7324
|
+
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
7325
|
+
} | undefined;
|
|
7326
|
+
justifyItems?: csstype.Property.JustifyItems | {
|
|
7327
|
+
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
7328
|
+
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
7329
|
+
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
7330
|
+
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
7331
|
+
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
7332
|
+
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
7333
|
+
} | undefined;
|
|
7334
|
+
justifySelf?: csstype.Property.JustifySelf | {
|
|
7335
|
+
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
7336
|
+
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
7337
|
+
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
7338
|
+
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
7339
|
+
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
7340
|
+
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
7341
|
+
} | undefined;
|
|
7342
|
+
order?: csstype.Property.Order | {
|
|
7343
|
+
readonly base?: csstype.Property.Order | undefined;
|
|
7344
|
+
readonly xs?: csstype.Property.Order | undefined;
|
|
7345
|
+
readonly s?: csstype.Property.Order | undefined;
|
|
7346
|
+
readonly m?: csstype.Property.Order | undefined;
|
|
7347
|
+
readonly l?: csstype.Property.Order | undefined;
|
|
7348
|
+
readonly xl?: csstype.Property.Order | undefined;
|
|
7349
|
+
} | undefined;
|
|
7350
|
+
rowGap: SpacingValueType | {
|
|
7351
|
+
readonly base?: SpacingValueType | undefined;
|
|
7352
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7353
|
+
readonly s?: SpacingValueType | undefined;
|
|
7354
|
+
readonly m?: SpacingValueType | undefined;
|
|
7355
|
+
readonly l?: SpacingValueType | undefined;
|
|
7356
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7357
|
+
};
|
|
7358
|
+
flex: string | number | {
|
|
7359
|
+
readonly base?: string | number | undefined;
|
|
7360
|
+
readonly xs?: string | number | undefined;
|
|
7361
|
+
readonly s?: string | number | undefined;
|
|
7362
|
+
readonly m?: string | number | undefined;
|
|
7363
|
+
readonly l?: string | number | undefined;
|
|
7364
|
+
readonly xl?: string | number | undefined;
|
|
7365
|
+
};
|
|
7366
|
+
gap: SpacingValueType | {
|
|
7367
|
+
readonly base?: SpacingValueType | undefined;
|
|
7368
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7369
|
+
readonly s?: SpacingValueType | undefined;
|
|
7370
|
+
readonly m?: SpacingValueType | undefined;
|
|
7371
|
+
readonly l?: SpacingValueType | undefined;
|
|
7372
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7373
|
+
};
|
|
7374
|
+
placeSelf?: csstype.Property.PlaceSelf | {
|
|
7375
|
+
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
7376
|
+
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
7377
|
+
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
7378
|
+
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
7379
|
+
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
7380
|
+
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
7381
|
+
} | undefined;
|
|
7382
|
+
__brand__?: "platform-web" | {
|
|
7383
|
+
readonly base?: "platform-web" | undefined;
|
|
7384
|
+
readonly xs?: "platform-web" | undefined;
|
|
7385
|
+
readonly s?: "platform-web" | undefined;
|
|
7386
|
+
readonly m?: "platform-web" | undefined;
|
|
7387
|
+
readonly l?: "platform-web" | undefined;
|
|
7388
|
+
readonly xl?: "platform-web" | undefined;
|
|
7389
|
+
} | undefined;
|
|
7390
|
+
} & {
|
|
7391
|
+
bottom: SpacingValueType | {
|
|
7392
|
+
readonly base?: SpacingValueType | undefined;
|
|
7393
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7394
|
+
readonly s?: SpacingValueType | undefined;
|
|
7395
|
+
readonly m?: SpacingValueType | undefined;
|
|
7396
|
+
readonly l?: SpacingValueType | undefined;
|
|
7397
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7398
|
+
};
|
|
7399
|
+
left: SpacingValueType | {
|
|
7400
|
+
readonly base?: SpacingValueType | undefined;
|
|
7401
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7402
|
+
readonly s?: SpacingValueType | undefined;
|
|
7403
|
+
readonly m?: SpacingValueType | undefined;
|
|
7404
|
+
readonly l?: SpacingValueType | undefined;
|
|
7405
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7406
|
+
};
|
|
7407
|
+
position?: csstype.Property.Position | {
|
|
7408
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
7409
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
7410
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
7411
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
7412
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
7413
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
7414
|
+
} | undefined;
|
|
7415
|
+
right: SpacingValueType | {
|
|
7416
|
+
readonly base?: SpacingValueType | undefined;
|
|
7417
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7418
|
+
readonly s?: SpacingValueType | undefined;
|
|
7419
|
+
readonly m?: SpacingValueType | undefined;
|
|
7420
|
+
readonly l?: SpacingValueType | undefined;
|
|
7421
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7422
|
+
};
|
|
7423
|
+
top: SpacingValueType | {
|
|
7424
|
+
readonly base?: SpacingValueType | undefined;
|
|
7425
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7426
|
+
readonly s?: SpacingValueType | undefined;
|
|
7427
|
+
readonly m?: SpacingValueType | undefined;
|
|
7428
|
+
readonly l?: SpacingValueType | undefined;
|
|
7429
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7430
|
+
};
|
|
7431
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
7432
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
7433
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
7434
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
7435
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
7436
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
7437
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
7438
|
+
} | undefined;
|
|
7439
|
+
__brand__?: "platform-web" | {
|
|
7440
|
+
readonly base?: "platform-web" | undefined;
|
|
7441
|
+
readonly xs?: "platform-web" | undefined;
|
|
7442
|
+
readonly s?: "platform-web" | undefined;
|
|
7443
|
+
readonly m?: "platform-web" | undefined;
|
|
7444
|
+
readonly l?: "platform-web" | undefined;
|
|
7445
|
+
readonly xl?: "platform-web" | undefined;
|
|
7446
|
+
} | undefined;
|
|
7447
|
+
} & {
|
|
7448
|
+
grid?: csstype.Property.Grid | {
|
|
7449
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
7450
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
7451
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
7452
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
7453
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
7454
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
7455
|
+
} | undefined;
|
|
7456
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
7457
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7458
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7459
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7460
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7461
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7462
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7463
|
+
} | undefined;
|
|
7464
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
7465
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
7466
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
7467
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
7468
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
7469
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
7470
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
7471
|
+
} | undefined;
|
|
7472
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
7473
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7474
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7475
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7476
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7477
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7478
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7479
|
+
} | undefined;
|
|
7480
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
7481
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
7482
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
7483
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
7484
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
7485
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
7486
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
7487
|
+
} | undefined;
|
|
7488
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
7489
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
7490
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
7491
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
7492
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
7493
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
7494
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
7495
|
+
} | undefined;
|
|
7496
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
7497
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
7498
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
7499
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
7500
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
7501
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
7502
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
7503
|
+
} | undefined;
|
|
7504
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
7505
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
7506
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
7507
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
7508
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
7509
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
7510
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
7511
|
+
} | undefined;
|
|
7512
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
7513
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
7514
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
7515
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
7516
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
7517
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
7518
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
7519
|
+
} | undefined;
|
|
7520
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
7521
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7522
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7523
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7524
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7525
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7526
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7527
|
+
} | undefined;
|
|
7528
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
7529
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7530
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7531
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7532
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7533
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7534
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7535
|
+
} | undefined;
|
|
7536
|
+
gridArea?: csstype.Property.GridArea | {
|
|
7537
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
7538
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
7539
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
7540
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
7541
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
7542
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
7543
|
+
} | undefined;
|
|
7544
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
7545
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
7546
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
7547
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
7548
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
7549
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
7550
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
7551
|
+
} | undefined;
|
|
7552
|
+
gridRow?: csstype.Property.GridRow | {
|
|
7553
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
7554
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
7555
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
7556
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
7557
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
7558
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
7559
|
+
} | undefined;
|
|
7560
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
7561
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
7562
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
7563
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
7564
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
7565
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
7566
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
7567
|
+
} | undefined;
|
|
7568
|
+
__brand__?: "platform-web" | {
|
|
7569
|
+
readonly base?: "platform-web" | undefined;
|
|
7570
|
+
readonly xs?: "platform-web" | undefined;
|
|
7571
|
+
readonly s?: "platform-web" | undefined;
|
|
7572
|
+
readonly m?: "platform-web" | undefined;
|
|
7573
|
+
readonly l?: "platform-web" | undefined;
|
|
7574
|
+
readonly xl?: "platform-web" | undefined;
|
|
7575
|
+
} | undefined;
|
|
7576
|
+
} & {
|
|
7577
|
+
onMouseOver: React$1.MouseEventHandler<HTMLElement>;
|
|
7578
|
+
onMouseEnter: React$1.MouseEventHandler<HTMLElement>;
|
|
7579
|
+
onMouseLeave: React$1.MouseEventHandler<HTMLElement>;
|
|
7580
|
+
onScroll: React$1.UIEventHandler<HTMLElement>;
|
|
7581
|
+
} & MakeObjectResponsive<{
|
|
7582
|
+
backgroundColor: "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast";
|
|
7583
|
+
borderWidth: "none" | "thin" | "thick";
|
|
7584
|
+
borderColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast";
|
|
7585
|
+
borderTopWidth: "none" | "thin" | "thick";
|
|
7586
|
+
borderTopColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast";
|
|
7587
|
+
borderRightWidth: "none" | "thin" | "thick";
|
|
7588
|
+
borderRightColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast";
|
|
7589
|
+
borderBottomWidth: "none" | "thin" | "thick";
|
|
7590
|
+
borderBottomColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast";
|
|
7591
|
+
borderLeftWidth: "none" | "thin" | "thick";
|
|
7592
|
+
borderLeftColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast";
|
|
7593
|
+
borderRadius: "none" | "small" | "medium" | "large" | "max" | "round";
|
|
7594
|
+
borderTopLeftRadius: "none" | "small" | "medium" | "large" | "max" | "round";
|
|
7595
|
+
borderTopRightRadius: "none" | "small" | "medium" | "large" | "max" | "round";
|
|
7596
|
+
borderBottomRightRadius: "none" | "small" | "medium" | "large" | "max" | "round";
|
|
7597
|
+
borderBottomLeftRadius: "none" | "small" | "medium" | "large" | "max" | "round";
|
|
7598
|
+
}, "backgroundColor" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomWidth" | "borderLeftColor" | "borderLeftWidth" | "borderRightColor" | "borderRightWidth" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopWidth" | "borderColor" | "borderRadius" | "borderWidth"> & {
|
|
7599
|
+
as: "header" | "main" | "label" | "aside" | "div" | "footer" | "nav" | "section" | "span";
|
|
7600
|
+
} & {
|
|
7601
|
+
children?: React$1.ReactNode | React$1.ReactNode[];
|
|
7602
|
+
tabIndex?: number | undefined;
|
|
7603
|
+
} & TestID>, "backgroundColor" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomWidth" | "borderLeftColor" | "borderLeftWidth" | "borderRightColor" | "borderRightWidth" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopWidth" | "borderColor" | "borderRadius" | "borderWidth" | "as"> & Partial<{
|
|
7604
|
+
border?: csstype.Property.Border<string | number> | {
|
|
7605
|
+
readonly base?: csstype.Property.Border<string | number> | undefined;
|
|
7606
|
+
readonly xs?: csstype.Property.Border<string | number> | undefined;
|
|
7607
|
+
readonly s?: csstype.Property.Border<string | number> | undefined;
|
|
7608
|
+
readonly m?: csstype.Property.Border<string | number> | undefined;
|
|
7609
|
+
readonly l?: csstype.Property.Border<string | number> | undefined;
|
|
7610
|
+
readonly xl?: csstype.Property.Border<string | number> | undefined;
|
|
7611
|
+
} | undefined;
|
|
7612
|
+
backgroundColor: (string & Record<never, never>) | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.disabled" | "action.background.primary.hover" | "action.background.primary.focus" | "action.background.primary.active" | "action.background.secondary.default" | "action.background.secondary.disabled" | "action.background.secondary.hover" | "action.background.secondary.focus" | "action.background.secondary.active" | "action.background.tertiary.default" | "action.background.tertiary.disabled" | "action.background.tertiary.hover" | "action.background.tertiary.focus" | "action.background.tertiary.active" | {
|
|
7613
|
+
readonly base?: (string & Record<never, never>) | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.disabled" | "action.background.primary.hover" | "action.background.primary.focus" | "action.background.primary.active" | "action.background.secondary.default" | "action.background.secondary.disabled" | "action.background.secondary.hover" | "action.background.secondary.focus" | "action.background.secondary.active" | "action.background.tertiary.default" | "action.background.tertiary.disabled" | "action.background.tertiary.hover" | "action.background.tertiary.focus" | "action.background.tertiary.active" | undefined;
|
|
7614
|
+
readonly xs?: (string & Record<never, never>) | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.disabled" | "action.background.primary.hover" | "action.background.primary.focus" | "action.background.primary.active" | "action.background.secondary.default" | "action.background.secondary.disabled" | "action.background.secondary.hover" | "action.background.secondary.focus" | "action.background.secondary.active" | "action.background.tertiary.default" | "action.background.tertiary.disabled" | "action.background.tertiary.hover" | "action.background.tertiary.focus" | "action.background.tertiary.active" | undefined;
|
|
7615
|
+
readonly s?: (string & Record<never, never>) | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.disabled" | "action.background.primary.hover" | "action.background.primary.focus" | "action.background.primary.active" | "action.background.secondary.default" | "action.background.secondary.disabled" | "action.background.secondary.hover" | "action.background.secondary.focus" | "action.background.secondary.active" | "action.background.tertiary.default" | "action.background.tertiary.disabled" | "action.background.tertiary.hover" | "action.background.tertiary.focus" | "action.background.tertiary.active" | undefined;
|
|
7616
|
+
readonly m?: (string & Record<never, never>) | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.disabled" | "action.background.primary.hover" | "action.background.primary.focus" | "action.background.primary.active" | "action.background.secondary.default" | "action.background.secondary.disabled" | "action.background.secondary.hover" | "action.background.secondary.focus" | "action.background.secondary.active" | "action.background.tertiary.default" | "action.background.tertiary.disabled" | "action.background.tertiary.hover" | "action.background.tertiary.focus" | "action.background.tertiary.active" | undefined;
|
|
7617
|
+
readonly l?: (string & Record<never, never>) | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.disabled" | "action.background.primary.hover" | "action.background.primary.focus" | "action.background.primary.active" | "action.background.secondary.default" | "action.background.secondary.disabled" | "action.background.secondary.hover" | "action.background.secondary.focus" | "action.background.secondary.active" | "action.background.tertiary.default" | "action.background.tertiary.disabled" | "action.background.tertiary.hover" | "action.background.tertiary.focus" | "action.background.tertiary.active" | undefined;
|
|
7618
|
+
readonly xl?: (string & Record<never, never>) | "feedback.background.neutral.lowContrast" | "feedback.background.neutral.highContrast" | "feedback.background.information.lowContrast" | "feedback.background.information.highContrast" | "feedback.background.negative.lowContrast" | "feedback.background.negative.highContrast" | "feedback.background.notice.lowContrast" | "feedback.background.notice.highContrast" | "feedback.background.positive.lowContrast" | "feedback.background.positive.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast" | "action.background.primary.default" | "action.background.primary.disabled" | "action.background.primary.hover" | "action.background.primary.focus" | "action.background.primary.active" | "action.background.secondary.default" | "action.background.secondary.disabled" | "action.background.secondary.hover" | "action.background.secondary.focus" | "action.background.secondary.active" | "action.background.tertiary.default" | "action.background.tertiary.disabled" | "action.background.tertiary.hover" | "action.background.tertiary.focus" | "action.background.tertiary.active" | undefined;
|
|
7619
|
+
};
|
|
7620
|
+
borderBottomColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
7621
|
+
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7622
|
+
readonly xs?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7623
|
+
readonly s?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7624
|
+
readonly m?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7625
|
+
readonly l?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7626
|
+
readonly xl?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7627
|
+
};
|
|
7628
|
+
borderBottomLeftRadius: "none" | "small" | "medium" | "large" | "max" | "round" | {
|
|
7629
|
+
readonly base?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7630
|
+
readonly xs?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7631
|
+
readonly s?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7632
|
+
readonly m?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7633
|
+
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7634
|
+
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7635
|
+
};
|
|
7636
|
+
borderBottomRightRadius: "none" | "small" | "medium" | "large" | "max" | "round" | {
|
|
7637
|
+
readonly base?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7638
|
+
readonly xs?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7639
|
+
readonly s?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7640
|
+
readonly m?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7641
|
+
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7642
|
+
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7643
|
+
};
|
|
7644
|
+
borderBottomWidth: "none" | "thin" | "thick" | {
|
|
7645
|
+
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
7646
|
+
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
7647
|
+
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
7648
|
+
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
7649
|
+
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
7650
|
+
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
7651
|
+
};
|
|
7652
|
+
borderLeftColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
7653
|
+
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7654
|
+
readonly xs?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7655
|
+
readonly s?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7656
|
+
readonly m?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7657
|
+
readonly l?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7658
|
+
readonly xl?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7659
|
+
};
|
|
7660
|
+
borderLeftWidth: "none" | "thin" | "thick" | {
|
|
7661
|
+
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
7662
|
+
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
7663
|
+
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
7664
|
+
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
7665
|
+
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
7666
|
+
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
7667
|
+
};
|
|
7668
|
+
borderRightColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
7669
|
+
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7670
|
+
readonly xs?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7671
|
+
readonly s?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7672
|
+
readonly m?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7673
|
+
readonly l?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7674
|
+
readonly xl?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7675
|
+
};
|
|
7676
|
+
borderRightWidth: "none" | "thin" | "thick" | {
|
|
7677
|
+
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
7678
|
+
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
7679
|
+
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
7680
|
+
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
7681
|
+
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
7682
|
+
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
7683
|
+
};
|
|
7684
|
+
borderTopColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
7685
|
+
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7686
|
+
readonly xs?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7687
|
+
readonly s?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7688
|
+
readonly m?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7689
|
+
readonly l?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7690
|
+
readonly xl?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7691
|
+
};
|
|
7692
|
+
borderTopLeftRadius: "none" | "small" | "medium" | "large" | "max" | "round" | {
|
|
7693
|
+
readonly base?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7694
|
+
readonly xs?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7695
|
+
readonly s?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7696
|
+
readonly m?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7697
|
+
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7698
|
+
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7699
|
+
};
|
|
7700
|
+
borderTopRightRadius: "none" | "small" | "medium" | "large" | "max" | "round" | {
|
|
7701
|
+
readonly base?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7702
|
+
readonly xs?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7703
|
+
readonly s?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7704
|
+
readonly m?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7705
|
+
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7706
|
+
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7707
|
+
};
|
|
7708
|
+
borderTopWidth: "none" | "thin" | "thick" | {
|
|
7709
|
+
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
7710
|
+
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
7711
|
+
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
7712
|
+
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
7713
|
+
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
7714
|
+
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
7715
|
+
};
|
|
7716
|
+
lineHeight: SpacingValueType | {
|
|
7717
|
+
readonly base?: SpacingValueType | undefined;
|
|
7718
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7719
|
+
readonly s?: SpacingValueType | undefined;
|
|
7720
|
+
readonly m?: SpacingValueType | undefined;
|
|
7721
|
+
readonly l?: SpacingValueType | undefined;
|
|
7722
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7723
|
+
};
|
|
7724
|
+
opacity?: csstype.Property.Opacity | {
|
|
7725
|
+
readonly base?: csstype.Property.Opacity | undefined;
|
|
7726
|
+
readonly xs?: csstype.Property.Opacity | undefined;
|
|
7727
|
+
readonly s?: csstype.Property.Opacity | undefined;
|
|
7728
|
+
readonly m?: csstype.Property.Opacity | undefined;
|
|
7729
|
+
readonly l?: csstype.Property.Opacity | undefined;
|
|
7730
|
+
readonly xl?: csstype.Property.Opacity | undefined;
|
|
7731
|
+
} | undefined;
|
|
7732
|
+
pointerEvents?: csstype.Property.PointerEvents | {
|
|
7733
|
+
readonly base?: csstype.Property.PointerEvents | undefined;
|
|
7734
|
+
readonly xs?: csstype.Property.PointerEvents | undefined;
|
|
7735
|
+
readonly s?: csstype.Property.PointerEvents | undefined;
|
|
7736
|
+
readonly m?: csstype.Property.PointerEvents | undefined;
|
|
7737
|
+
readonly l?: csstype.Property.PointerEvents | undefined;
|
|
7738
|
+
readonly xl?: csstype.Property.PointerEvents | undefined;
|
|
7739
|
+
} | undefined;
|
|
7740
|
+
touchAction: csstype.Property.TouchAction | {
|
|
7741
|
+
readonly base?: csstype.Property.TouchAction | undefined;
|
|
7742
|
+
readonly xs?: csstype.Property.TouchAction | undefined;
|
|
7743
|
+
readonly s?: csstype.Property.TouchAction | undefined;
|
|
7744
|
+
readonly m?: csstype.Property.TouchAction | undefined;
|
|
7745
|
+
readonly l?: csstype.Property.TouchAction | undefined;
|
|
7746
|
+
readonly xl?: csstype.Property.TouchAction | undefined;
|
|
7747
|
+
} | undefined;
|
|
7748
|
+
userSelect: csstype.Property.UserSelect | {
|
|
7749
|
+
readonly base?: csstype.Property.UserSelect | undefined;
|
|
7750
|
+
readonly xs?: csstype.Property.UserSelect | undefined;
|
|
7751
|
+
readonly s?: csstype.Property.UserSelect | undefined;
|
|
7752
|
+
readonly m?: csstype.Property.UserSelect | undefined;
|
|
7753
|
+
readonly l?: csstype.Property.UserSelect | undefined;
|
|
7754
|
+
readonly xl?: csstype.Property.UserSelect | undefined;
|
|
7755
|
+
} | undefined;
|
|
7756
|
+
borderBottom?: csstype.Property.BorderBottom<string | number> | {
|
|
7757
|
+
readonly base?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
7758
|
+
readonly xs?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
7759
|
+
readonly s?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
7760
|
+
readonly m?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
7761
|
+
readonly l?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
7762
|
+
readonly xl?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
7763
|
+
} | undefined;
|
|
7764
|
+
borderColor: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | {
|
|
7765
|
+
readonly base?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7766
|
+
readonly xs?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7767
|
+
readonly s?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7768
|
+
readonly m?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7769
|
+
readonly l?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7770
|
+
readonly xl?: "surface.border.normal.lowContrast" | "surface.border.normal.highContrast" | "surface.border.subtle.lowContrast" | "surface.border.subtle.highContrast" | undefined;
|
|
7771
|
+
};
|
|
7772
|
+
borderLeft?: csstype.Property.BorderLeft<string | number> | {
|
|
7773
|
+
readonly base?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
7774
|
+
readonly xs?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
7775
|
+
readonly s?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
7776
|
+
readonly m?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
7777
|
+
readonly l?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
7778
|
+
readonly xl?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
7779
|
+
} | undefined;
|
|
7780
|
+
borderRadius: "none" | "small" | "medium" | "large" | "max" | "round" | {
|
|
7781
|
+
readonly base?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7782
|
+
readonly xs?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7783
|
+
readonly s?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7784
|
+
readonly m?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7785
|
+
readonly l?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7786
|
+
readonly xl?: "none" | "small" | "medium" | "large" | "max" | "round" | undefined;
|
|
7787
|
+
};
|
|
7788
|
+
borderRight?: csstype.Property.BorderRight<string | number> | {
|
|
7789
|
+
readonly base?: csstype.Property.BorderRight<string | number> | undefined;
|
|
7790
|
+
readonly xs?: csstype.Property.BorderRight<string | number> | undefined;
|
|
7791
|
+
readonly s?: csstype.Property.BorderRight<string | number> | undefined;
|
|
7792
|
+
readonly m?: csstype.Property.BorderRight<string | number> | undefined;
|
|
7793
|
+
readonly l?: csstype.Property.BorderRight<string | number> | undefined;
|
|
7794
|
+
readonly xl?: csstype.Property.BorderRight<string | number> | undefined;
|
|
7795
|
+
} | undefined;
|
|
7796
|
+
borderTop?: csstype.Property.BorderTop<string | number> | {
|
|
7797
|
+
readonly base?: csstype.Property.BorderTop<string | number> | undefined;
|
|
7798
|
+
readonly xs?: csstype.Property.BorderTop<string | number> | undefined;
|
|
7799
|
+
readonly s?: csstype.Property.BorderTop<string | number> | undefined;
|
|
7800
|
+
readonly m?: csstype.Property.BorderTop<string | number> | undefined;
|
|
7801
|
+
readonly l?: csstype.Property.BorderTop<string | number> | undefined;
|
|
7802
|
+
readonly xl?: csstype.Property.BorderTop<string | number> | undefined;
|
|
7803
|
+
} | undefined;
|
|
7804
|
+
borderWidth: "none" | "thin" | "thick" | {
|
|
7805
|
+
readonly base?: "none" | "thin" | "thick" | undefined;
|
|
7806
|
+
readonly xs?: "none" | "thin" | "thick" | undefined;
|
|
7807
|
+
readonly s?: "none" | "thin" | "thick" | undefined;
|
|
7808
|
+
readonly m?: "none" | "thin" | "thick" | undefined;
|
|
7809
|
+
readonly l?: "none" | "thin" | "thick" | undefined;
|
|
7810
|
+
readonly xl?: "none" | "thin" | "thick" | undefined;
|
|
7811
|
+
};
|
|
7812
|
+
__brand__?: "platform-web" | {
|
|
7813
|
+
readonly base?: "platform-web" | undefined;
|
|
7814
|
+
readonly xs?: "platform-web" | undefined;
|
|
7815
|
+
readonly s?: "platform-web" | undefined;
|
|
7816
|
+
readonly m?: "platform-web" | undefined;
|
|
7817
|
+
readonly l?: "platform-web" | undefined;
|
|
7818
|
+
readonly xl?: "platform-web" | undefined;
|
|
7819
|
+
} | undefined;
|
|
7820
|
+
} & {
|
|
7821
|
+
className?: string | undefined;
|
|
7822
|
+
id?: string | undefined;
|
|
7823
|
+
tabIndex?: number | undefined;
|
|
7824
|
+
}> & BladeCommonEvents & {
|
|
7825
|
+
tabIndex: -1;
|
|
7826
|
+
}, "tabIndex">;
|
|
7827
|
+
|
|
7828
|
+
export { ActionList, ActionListFooter, ActionListFooterIcon, ActionListFooterProps, ActionListHeader, ActionListHeaderIcon, ActionListHeaderProps, 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, 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, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, 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 };
|