@razorpay/blade 8.7.0 → 8.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/components/index.d.ts +2235 -260
- package/build/components/index.native.d.ts +1386 -259
- package/build/components/index.native.js +19 -13
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +4399 -1603
- package/build/components/index.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +2 -2
- package/build/css/bankingThemeDarkMobile.css +2 -2
- package/build/css/bankingThemeLightDesktop.css +33 -33
- package/build/css/bankingThemeLightMobile.css +33 -33
- package/build/css/paymentThemeDarkDesktop.css +2 -2
- package/build/css/paymentThemeDarkMobile.css +2 -2
- package/build/css/paymentThemeLightDesktop.css +33 -33
- package/build/css/paymentThemeLightMobile.css +33 -33
- package/build/tokens/index.d.ts +11 -4
- package/build/tokens/index.native.d.ts +11 -4
- package/build/tokens/index.native.js +5 -5
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.web.js +92 -77
- package/build/tokens/index.web.js.map +1 -1
- package/build/utils/index.d.ts +10 -0
- package/build/utils/index.native.d.ts +10 -0
- package/build/utils/index.native.js +1 -1
- package/build/utils/index.native.js.map +1 -1
- package/build/utils/index.web.js +10 -0
- package/build/utils/index.web.js.map +1 -1
- package/package.json +2 -1
|
@@ -2,8 +2,8 @@
|
|
|
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';
|
|
6
5
|
import { CSSObject } from 'styled-components';
|
|
6
|
+
import * as csstype from 'csstype';
|
|
7
7
|
import { ReactDOMAttributes } from '@use-gesture/react/dist/declarations/src/types';
|
|
8
8
|
|
|
9
9
|
type BorderRadius = Readonly<{
|
|
@@ -984,7 +984,7 @@ type TestID = {
|
|
|
984
984
|
* native: PickIfExist<ViewStyle, T>;
|
|
985
985
|
* ```
|
|
986
986
|
*/
|
|
987
|
-
type PickIfExist
|
|
987
|
+
type PickIfExist<T, K extends keyof T> = {
|
|
988
988
|
[P in K]: P extends keyof T ? T[P] : never;
|
|
989
989
|
};
|
|
990
990
|
|
|
@@ -998,10 +998,10 @@ type PickIfExist$1<T, K extends keyof T> = {
|
|
|
998
998
|
* // On Native --> This will be just `flex` and `none`
|
|
999
999
|
* ```
|
|
1000
1000
|
*/
|
|
1001
|
-
type PickCSSByPlatform
|
|
1002
|
-
web: PickIfExist
|
|
1001
|
+
type PickCSSByPlatform<T extends keyof React__default.CSSProperties | keyof ViewStyle> = Platform.Select<{
|
|
1002
|
+
web: PickIfExist<CSSObject, T>;
|
|
1003
1003
|
// @ts-expect-error: T passed here may not neccessarily exist. We return `never` type when it doesn't
|
|
1004
|
-
native: PickIfExist
|
|
1004
|
+
native: PickIfExist<ViewStyle, T>;
|
|
1005
1005
|
}>;
|
|
1006
1006
|
|
|
1007
1007
|
declare type ActionListContextProp = Pick<ActionListProps, 'surfaceLevel'>;
|
|
@@ -1073,14 +1073,22 @@ type MakeValueResponsive$1<T> = [T] extends [never]
|
|
|
1073
1073
|
* }
|
|
1074
1074
|
* ```
|
|
1075
1075
|
*/
|
|
1076
|
-
type MakeObjectResponsive$1<
|
|
1076
|
+
type MakeObjectResponsive$1<
|
|
1077
|
+
T,
|
|
1078
|
+
// using this workaround to preserve the jsdocs
|
|
1079
|
+
// https://github.com/microsoft/TypeScript/issues/31992
|
|
1080
|
+
K extends keyof T = Extract<keyof T, string>
|
|
1081
|
+
> = {
|
|
1082
|
+
[P in K]: MakeValueResponsive$1<T[P]>;
|
|
1083
|
+
};
|
|
1077
1084
|
|
|
1078
1085
|
type ArrayOfMaxLength4$1<T> = readonly [T?, T?, T?, T?];
|
|
1079
|
-
type SpaceUnits$1 =
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
}
|
|
1083
|
-
|
|
1086
|
+
type SpaceUnits$1 = 'px' | '%' | 'fr' | 'rem' | 'em' | 'vh' | 'vw';
|
|
1087
|
+
type SpacingValueType$1 =
|
|
1088
|
+
| DotNotationSpacingStringToken
|
|
1089
|
+
| `${string}${SpaceUnits$1}`
|
|
1090
|
+
| `calc(${string})`
|
|
1091
|
+
| 'auto';
|
|
1084
1092
|
|
|
1085
1093
|
type MarginProps$1 = MakeObjectResponsive$1<{
|
|
1086
1094
|
/**
|
|
@@ -1321,7 +1329,7 @@ type FlexboxProps$1 = MakeObjectResponsive$1<
|
|
|
1321
1329
|
* @see https://developer.mozilla.org/docs/Web/CSS/flex
|
|
1322
1330
|
*/
|
|
1323
1331
|
flex: string | number;
|
|
1324
|
-
} & PickCSSByPlatform
|
|
1332
|
+
} & PickCSSByPlatform<
|
|
1325
1333
|
| 'flexWrap'
|
|
1326
1334
|
| 'flexDirection'
|
|
1327
1335
|
| 'flexGrow'
|
|
@@ -1344,11 +1352,11 @@ type PositionProps$1 = MakeObjectResponsive$1<
|
|
|
1344
1352
|
right: SpacingValueType$1;
|
|
1345
1353
|
bottom: SpacingValueType$1;
|
|
1346
1354
|
left: SpacingValueType$1;
|
|
1347
|
-
} & PickCSSByPlatform
|
|
1355
|
+
} & PickCSSByPlatform<'position' | 'zIndex'>
|
|
1348
1356
|
>;
|
|
1349
1357
|
|
|
1350
1358
|
type GridProps$1 = MakeObjectResponsive$1<
|
|
1351
|
-
PickCSSByPlatform
|
|
1359
|
+
PickCSSByPlatform<
|
|
1352
1360
|
| 'grid'
|
|
1353
1361
|
| 'gridColumn'
|
|
1354
1362
|
| 'gridRow'
|
|
@@ -1725,16 +1733,13 @@ declare type MakeValueResponsive<T> = [T] extends [never] ? never : T | {
|
|
|
1725
1733
|
* }
|
|
1726
1734
|
* ```
|
|
1727
1735
|
*/
|
|
1728
|
-
declare type MakeObjectResponsive<T
|
|
1729
|
-
[P in
|
|
1736
|
+
declare type MakeObjectResponsive<T, K extends keyof T = Extract<keyof T, string>> = {
|
|
1737
|
+
[P in K]: MakeValueResponsive<T[P]>;
|
|
1730
1738
|
};
|
|
1731
1739
|
|
|
1732
1740
|
declare type ArrayOfMaxLength4<T> = readonly [T?, T?, T?, T?];
|
|
1733
|
-
declare type SpaceUnits =
|
|
1734
|
-
|
|
1735
|
-
native: 'px' | '%';
|
|
1736
|
-
}>;
|
|
1737
|
-
declare type SpacingValueType = DotNotationSpacingStringToken | `${string}${SpaceUnits}` | 'auto';
|
|
1741
|
+
declare type SpaceUnits = 'px' | '%' | 'fr' | 'rem' | 'em' | 'vh' | 'vw';
|
|
1742
|
+
declare type SpacingValueType = DotNotationSpacingStringToken | `${string}${SpaceUnits}` | `calc(${string})` | 'auto';
|
|
1738
1743
|
/**
|
|
1739
1744
|
* @IMPORTANT
|
|
1740
1745
|
*
|
|
@@ -2172,7 +2177,7 @@ declare type LayoutProps = MakeObjectResponsive<{
|
|
|
2172
2177
|
width: SpacingValueType;
|
|
2173
2178
|
minWidth: SpacingValueType;
|
|
2174
2179
|
maxWidth: SpacingValueType;
|
|
2175
|
-
} & PickCSSByPlatform
|
|
2180
|
+
} & PickCSSByPlatform<'display' | 'overflow' | 'overflowX' | 'overflowY' | 'textAlign'>>;
|
|
2176
2181
|
declare type FlexboxProps = MakeObjectResponsive<{
|
|
2177
2182
|
/**
|
|
2178
2183
|
* This uses the native gap property which might not work on older browsers.
|
|
@@ -2201,14 +2206,14 @@ declare type FlexboxProps = MakeObjectResponsive<{
|
|
|
2201
2206
|
* @see https://developer.mozilla.org/docs/Web/CSS/flex
|
|
2202
2207
|
*/
|
|
2203
2208
|
flex: string | number;
|
|
2204
|
-
} & PickCSSByPlatform
|
|
2209
|
+
} & PickCSSByPlatform<'flexWrap' | 'flexDirection' | 'flexGrow' | 'flexShrink' | 'flexBasis' | 'alignItems' | 'alignContent' | 'alignSelf' | 'justifyItems' | 'justifyContent' | 'justifySelf' | 'placeSelf' | 'order'>>;
|
|
2205
2210
|
declare type PositionProps = MakeObjectResponsive<{
|
|
2206
2211
|
top: SpacingValueType;
|
|
2207
2212
|
right: SpacingValueType;
|
|
2208
2213
|
bottom: SpacingValueType;
|
|
2209
2214
|
left: SpacingValueType;
|
|
2210
|
-
} & PickCSSByPlatform
|
|
2211
|
-
declare type GridProps = MakeObjectResponsive<PickCSSByPlatform
|
|
2215
|
+
} & PickCSSByPlatform<'position' | 'zIndex'>>;
|
|
2216
|
+
declare type GridProps = MakeObjectResponsive<PickCSSByPlatform<'grid' | 'gridColumn' | 'gridRow' | 'gridRowStart' | 'gridRowEnd' | 'gridColumnStart' | 'gridColumnEnd' | 'gridArea' | 'gridAutoFlow' | 'gridAutoRows' | 'gridAutoColumns' | 'gridTemplate' | 'gridTemplateAreas' | 'gridTemplateColumns' | 'gridTemplateRows'>>;
|
|
2212
2217
|
declare type ColorObjects = 'feedback' | 'surface' | 'action';
|
|
2213
2218
|
declare type BackgroundColorString<T extends ColorObjects> = `${T}.background.${DotNotationColorStringToken<Theme$1['colors'][T]['background']>}`;
|
|
2214
2219
|
declare type BorderColorString<T extends ColorObjects> = `${T}.border.${DotNotationColorStringToken<Theme$1['colors'][T]['border']>}`;
|
|
@@ -2275,46 +2280,435 @@ declare type BoxRefType = Platform.Select<{
|
|
|
2275
2280
|
native: View;
|
|
2276
2281
|
}>;
|
|
2277
2282
|
|
|
2278
|
-
declare const Box: React__default.ForwardRefExoticComponent<Partial<
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
}
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
}
|
|
2295
|
-
height: SpacingValueType
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
}
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2283
|
+
declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps & MarginProps & {
|
|
2284
|
+
width: SpacingValueType | {
|
|
2285
|
+
readonly base?: SpacingValueType | undefined;
|
|
2286
|
+
readonly xs?: SpacingValueType | undefined;
|
|
2287
|
+
readonly s?: SpacingValueType | undefined;
|
|
2288
|
+
readonly m?: SpacingValueType | undefined;
|
|
2289
|
+
readonly l?: SpacingValueType | undefined;
|
|
2290
|
+
readonly xl?: SpacingValueType | undefined;
|
|
2291
|
+
};
|
|
2292
|
+
display?: csstype.Property.Display | {
|
|
2293
|
+
readonly base?: csstype.Property.Display | undefined;
|
|
2294
|
+
readonly xs?: csstype.Property.Display | undefined;
|
|
2295
|
+
readonly s?: csstype.Property.Display | undefined;
|
|
2296
|
+
readonly m?: csstype.Property.Display | undefined;
|
|
2297
|
+
readonly l?: csstype.Property.Display | undefined;
|
|
2298
|
+
readonly xl?: csstype.Property.Display | undefined;
|
|
2299
|
+
} | undefined;
|
|
2300
|
+
height: SpacingValueType | {
|
|
2301
|
+
readonly base?: SpacingValueType | undefined;
|
|
2302
|
+
readonly xs?: SpacingValueType | undefined;
|
|
2303
|
+
readonly s?: SpacingValueType | undefined;
|
|
2304
|
+
readonly m?: SpacingValueType | undefined;
|
|
2305
|
+
readonly l?: SpacingValueType | undefined;
|
|
2306
|
+
readonly xl?: SpacingValueType | undefined;
|
|
2307
|
+
};
|
|
2308
|
+
maxHeight: SpacingValueType | {
|
|
2309
|
+
readonly base?: SpacingValueType | undefined;
|
|
2310
|
+
readonly xs?: SpacingValueType | undefined;
|
|
2311
|
+
readonly s?: SpacingValueType | undefined;
|
|
2312
|
+
readonly m?: SpacingValueType | undefined;
|
|
2313
|
+
readonly l?: SpacingValueType | undefined;
|
|
2314
|
+
readonly xl?: SpacingValueType | undefined;
|
|
2315
|
+
};
|
|
2316
|
+
maxWidth: SpacingValueType | {
|
|
2317
|
+
readonly base?: SpacingValueType | undefined;
|
|
2318
|
+
readonly xs?: SpacingValueType | undefined;
|
|
2319
|
+
readonly s?: SpacingValueType | undefined;
|
|
2320
|
+
readonly m?: SpacingValueType | undefined;
|
|
2321
|
+
readonly l?: SpacingValueType | undefined;
|
|
2322
|
+
readonly xl?: SpacingValueType | undefined;
|
|
2323
|
+
};
|
|
2324
|
+
minHeight: SpacingValueType | {
|
|
2325
|
+
readonly base?: SpacingValueType | undefined;
|
|
2326
|
+
readonly xs?: SpacingValueType | undefined;
|
|
2327
|
+
readonly s?: SpacingValueType | undefined;
|
|
2328
|
+
readonly m?: SpacingValueType | undefined;
|
|
2329
|
+
readonly l?: SpacingValueType | undefined;
|
|
2330
|
+
readonly xl?: SpacingValueType | undefined;
|
|
2331
|
+
};
|
|
2332
|
+
minWidth: SpacingValueType | {
|
|
2333
|
+
readonly base?: SpacingValueType | undefined;
|
|
2334
|
+
readonly xs?: SpacingValueType | undefined;
|
|
2335
|
+
readonly s?: SpacingValueType | undefined;
|
|
2336
|
+
readonly m?: SpacingValueType | undefined;
|
|
2337
|
+
readonly l?: SpacingValueType | undefined;
|
|
2338
|
+
readonly xl?: SpacingValueType | undefined;
|
|
2339
|
+
};
|
|
2340
|
+
overflowX?: csstype.Property.OverflowX | {
|
|
2341
|
+
readonly base?: csstype.Property.OverflowX | undefined;
|
|
2342
|
+
readonly xs?: csstype.Property.OverflowX | undefined;
|
|
2343
|
+
readonly s?: csstype.Property.OverflowX | undefined;
|
|
2344
|
+
readonly m?: csstype.Property.OverflowX | undefined;
|
|
2345
|
+
readonly l?: csstype.Property.OverflowX | undefined;
|
|
2346
|
+
readonly xl?: csstype.Property.OverflowX | undefined;
|
|
2347
|
+
} | undefined;
|
|
2348
|
+
overflowY?: csstype.Property.OverflowY | {
|
|
2349
|
+
readonly base?: csstype.Property.OverflowY | undefined;
|
|
2350
|
+
readonly xs?: csstype.Property.OverflowY | undefined;
|
|
2351
|
+
readonly s?: csstype.Property.OverflowY | undefined;
|
|
2352
|
+
readonly m?: csstype.Property.OverflowY | undefined;
|
|
2353
|
+
readonly l?: csstype.Property.OverflowY | undefined;
|
|
2354
|
+
readonly xl?: csstype.Property.OverflowY | undefined;
|
|
2355
|
+
} | undefined;
|
|
2356
|
+
textAlign?: csstype.Property.TextAlign | {
|
|
2357
|
+
readonly base?: csstype.Property.TextAlign | undefined;
|
|
2358
|
+
readonly xs?: csstype.Property.TextAlign | undefined;
|
|
2359
|
+
readonly s?: csstype.Property.TextAlign | undefined;
|
|
2360
|
+
readonly m?: csstype.Property.TextAlign | undefined;
|
|
2361
|
+
readonly l?: csstype.Property.TextAlign | undefined;
|
|
2362
|
+
readonly xl?: csstype.Property.TextAlign | undefined;
|
|
2363
|
+
} | undefined;
|
|
2364
|
+
overflow?: csstype.Property.Overflow | {
|
|
2365
|
+
readonly base?: csstype.Property.Overflow | undefined;
|
|
2366
|
+
readonly xs?: csstype.Property.Overflow | undefined;
|
|
2367
|
+
readonly s?: csstype.Property.Overflow | undefined;
|
|
2368
|
+
readonly m?: csstype.Property.Overflow | undefined;
|
|
2369
|
+
readonly l?: csstype.Property.Overflow | undefined;
|
|
2370
|
+
readonly xl?: csstype.Property.Overflow | undefined;
|
|
2371
|
+
} | undefined;
|
|
2372
|
+
__brand__?: "platform-web" | {
|
|
2373
|
+
readonly base?: "platform-web" | undefined;
|
|
2374
|
+
readonly xs?: "platform-web" | undefined;
|
|
2375
|
+
readonly s?: "platform-web" | undefined;
|
|
2376
|
+
readonly m?: "platform-web" | undefined;
|
|
2377
|
+
readonly l?: "platform-web" | undefined;
|
|
2378
|
+
readonly xl?: "platform-web" | undefined;
|
|
2379
|
+
} | undefined;
|
|
2380
|
+
} & {
|
|
2381
|
+
alignContent?: csstype.Property.AlignContent | {
|
|
2382
|
+
readonly base?: csstype.Property.AlignContent | undefined;
|
|
2383
|
+
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
2384
|
+
readonly s?: csstype.Property.AlignContent | undefined;
|
|
2385
|
+
readonly m?: csstype.Property.AlignContent | undefined;
|
|
2386
|
+
readonly l?: csstype.Property.AlignContent | undefined;
|
|
2387
|
+
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
2388
|
+
} | undefined;
|
|
2389
|
+
alignItems?: csstype.Property.AlignItems | {
|
|
2390
|
+
readonly base?: csstype.Property.AlignItems | undefined;
|
|
2391
|
+
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
2392
|
+
readonly s?: csstype.Property.AlignItems | undefined;
|
|
2393
|
+
readonly m?: csstype.Property.AlignItems | undefined;
|
|
2394
|
+
readonly l?: csstype.Property.AlignItems | undefined;
|
|
2395
|
+
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
2396
|
+
} | undefined;
|
|
2397
|
+
alignSelf?: csstype.Property.AlignSelf | {
|
|
2398
|
+
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
2399
|
+
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
2400
|
+
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
2401
|
+
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
2402
|
+
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
2403
|
+
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
2404
|
+
} | undefined;
|
|
2405
|
+
columnGap: SpacingValueType | {
|
|
2406
|
+
readonly base?: SpacingValueType | undefined;
|
|
2407
|
+
readonly xs?: SpacingValueType | undefined;
|
|
2408
|
+
readonly s?: SpacingValueType | undefined;
|
|
2409
|
+
readonly m?: SpacingValueType | undefined;
|
|
2410
|
+
readonly l?: SpacingValueType | undefined;
|
|
2411
|
+
readonly xl?: SpacingValueType | undefined;
|
|
2412
|
+
};
|
|
2413
|
+
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
2414
|
+
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
2415
|
+
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
2416
|
+
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
2417
|
+
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
2418
|
+
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
2419
|
+
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
2420
|
+
} | undefined;
|
|
2421
|
+
flexDirection?: csstype.Property.FlexDirection | {
|
|
2422
|
+
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
2423
|
+
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
2424
|
+
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
2425
|
+
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
2426
|
+
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
2427
|
+
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
2428
|
+
} | undefined;
|
|
2429
|
+
flexGrow?: csstype.Property.FlexGrow | {
|
|
2430
|
+
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
2431
|
+
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
2432
|
+
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
2433
|
+
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
2434
|
+
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
2435
|
+
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
2436
|
+
} | undefined;
|
|
2437
|
+
flexShrink?: csstype.Property.FlexShrink | {
|
|
2438
|
+
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
2439
|
+
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
2440
|
+
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
2441
|
+
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
2442
|
+
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
2443
|
+
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
2444
|
+
} | undefined;
|
|
2445
|
+
flexWrap?: csstype.Property.FlexWrap | {
|
|
2446
|
+
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
2447
|
+
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
2448
|
+
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
2449
|
+
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
2450
|
+
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
2451
|
+
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
2452
|
+
} | undefined;
|
|
2453
|
+
justifyContent?: csstype.Property.JustifyContent | {
|
|
2454
|
+
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
2455
|
+
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
2456
|
+
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
2457
|
+
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
2458
|
+
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
2459
|
+
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
2460
|
+
} | undefined;
|
|
2461
|
+
justifyItems?: csstype.Property.JustifyItems | {
|
|
2462
|
+
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
2463
|
+
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
2464
|
+
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
2465
|
+
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
2466
|
+
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
2467
|
+
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
2468
|
+
} | undefined;
|
|
2469
|
+
justifySelf?: csstype.Property.JustifySelf | {
|
|
2470
|
+
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
2471
|
+
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
2472
|
+
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
2473
|
+
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
2474
|
+
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
2475
|
+
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
2476
|
+
} | undefined;
|
|
2477
|
+
order?: csstype.Property.Order | {
|
|
2478
|
+
readonly base?: csstype.Property.Order | undefined;
|
|
2479
|
+
readonly xs?: csstype.Property.Order | undefined;
|
|
2480
|
+
readonly s?: csstype.Property.Order | undefined;
|
|
2481
|
+
readonly m?: csstype.Property.Order | undefined;
|
|
2482
|
+
readonly l?: csstype.Property.Order | undefined;
|
|
2483
|
+
readonly xl?: csstype.Property.Order | undefined;
|
|
2484
|
+
} | undefined;
|
|
2485
|
+
rowGap: SpacingValueType | {
|
|
2486
|
+
readonly base?: SpacingValueType | undefined;
|
|
2487
|
+
readonly xs?: SpacingValueType | undefined;
|
|
2488
|
+
readonly s?: SpacingValueType | undefined;
|
|
2489
|
+
readonly m?: SpacingValueType | undefined;
|
|
2490
|
+
readonly l?: SpacingValueType | undefined;
|
|
2491
|
+
readonly xl?: SpacingValueType | undefined;
|
|
2492
|
+
};
|
|
2493
|
+
flex: string | number | {
|
|
2494
|
+
readonly base?: string | number | undefined;
|
|
2495
|
+
readonly xs?: string | number | undefined;
|
|
2496
|
+
readonly s?: string | number | undefined;
|
|
2497
|
+
readonly m?: string | number | undefined;
|
|
2498
|
+
readonly l?: string | number | undefined;
|
|
2499
|
+
readonly xl?: string | number | undefined;
|
|
2500
|
+
};
|
|
2501
|
+
gap: SpacingValueType | {
|
|
2502
|
+
readonly base?: SpacingValueType | undefined;
|
|
2503
|
+
readonly xs?: SpacingValueType | undefined;
|
|
2504
|
+
readonly s?: SpacingValueType | undefined;
|
|
2505
|
+
readonly m?: SpacingValueType | undefined;
|
|
2506
|
+
readonly l?: SpacingValueType | undefined;
|
|
2507
|
+
readonly xl?: SpacingValueType | undefined;
|
|
2508
|
+
};
|
|
2509
|
+
placeSelf?: csstype.Property.PlaceSelf | {
|
|
2510
|
+
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
2511
|
+
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
2512
|
+
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
2513
|
+
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
2514
|
+
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
2515
|
+
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
2516
|
+
} | undefined;
|
|
2517
|
+
__brand__?: "platform-web" | {
|
|
2518
|
+
readonly base?: "platform-web" | undefined;
|
|
2519
|
+
readonly xs?: "platform-web" | undefined;
|
|
2520
|
+
readonly s?: "platform-web" | undefined;
|
|
2521
|
+
readonly m?: "platform-web" | undefined;
|
|
2522
|
+
readonly l?: "platform-web" | undefined;
|
|
2523
|
+
readonly xl?: "platform-web" | undefined;
|
|
2524
|
+
} | undefined;
|
|
2525
|
+
} & {
|
|
2526
|
+
bottom: SpacingValueType | {
|
|
2527
|
+
readonly base?: SpacingValueType | undefined;
|
|
2528
|
+
readonly xs?: SpacingValueType | undefined;
|
|
2529
|
+
readonly s?: SpacingValueType | undefined;
|
|
2530
|
+
readonly m?: SpacingValueType | undefined;
|
|
2531
|
+
readonly l?: SpacingValueType | undefined;
|
|
2532
|
+
readonly xl?: SpacingValueType | undefined;
|
|
2533
|
+
};
|
|
2534
|
+
left: SpacingValueType | {
|
|
2535
|
+
readonly base?: SpacingValueType | undefined;
|
|
2536
|
+
readonly xs?: SpacingValueType | undefined;
|
|
2537
|
+
readonly s?: SpacingValueType | undefined;
|
|
2538
|
+
readonly m?: SpacingValueType | undefined;
|
|
2539
|
+
readonly l?: SpacingValueType | undefined;
|
|
2540
|
+
readonly xl?: SpacingValueType | undefined;
|
|
2541
|
+
};
|
|
2542
|
+
position?: csstype.Property.Position | {
|
|
2543
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
2544
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
2545
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
2546
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
2547
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
2548
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
2549
|
+
} | undefined;
|
|
2550
|
+
right: SpacingValueType | {
|
|
2551
|
+
readonly base?: SpacingValueType | undefined;
|
|
2552
|
+
readonly xs?: SpacingValueType | undefined;
|
|
2553
|
+
readonly s?: SpacingValueType | undefined;
|
|
2554
|
+
readonly m?: SpacingValueType | undefined;
|
|
2555
|
+
readonly l?: SpacingValueType | undefined;
|
|
2556
|
+
readonly xl?: SpacingValueType | undefined;
|
|
2557
|
+
};
|
|
2558
|
+
top: SpacingValueType | {
|
|
2559
|
+
readonly base?: SpacingValueType | undefined;
|
|
2560
|
+
readonly xs?: SpacingValueType | undefined;
|
|
2561
|
+
readonly s?: SpacingValueType | undefined;
|
|
2562
|
+
readonly m?: SpacingValueType | undefined;
|
|
2563
|
+
readonly l?: SpacingValueType | undefined;
|
|
2564
|
+
readonly xl?: SpacingValueType | undefined;
|
|
2565
|
+
};
|
|
2566
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
2567
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
2568
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
2569
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
2570
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
2571
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
2572
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
2573
|
+
} | undefined;
|
|
2574
|
+
__brand__?: "platform-web" | {
|
|
2575
|
+
readonly base?: "platform-web" | undefined;
|
|
2576
|
+
readonly xs?: "platform-web" | undefined;
|
|
2577
|
+
readonly s?: "platform-web" | undefined;
|
|
2578
|
+
readonly m?: "platform-web" | undefined;
|
|
2579
|
+
readonly l?: "platform-web" | undefined;
|
|
2580
|
+
readonly xl?: "platform-web" | undefined;
|
|
2581
|
+
} | undefined;
|
|
2582
|
+
} & {
|
|
2583
|
+
grid?: csstype.Property.Grid | {
|
|
2584
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
2585
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
2586
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
2587
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
2588
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
2589
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
2590
|
+
} | undefined;
|
|
2591
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
2592
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
2593
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
2594
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
2595
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
2596
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
2597
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
2598
|
+
} | undefined;
|
|
2599
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
2600
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
2601
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
2602
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
2603
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
2604
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
2605
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
2606
|
+
} | undefined;
|
|
2607
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
2608
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
2609
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
2610
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
2611
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
2612
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
2613
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
2614
|
+
} | undefined;
|
|
2615
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
2616
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
2617
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
2618
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
2619
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
2620
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
2621
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
2622
|
+
} | undefined;
|
|
2623
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
2624
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
2625
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
2626
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
2627
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
2628
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
2629
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
2630
|
+
} | undefined;
|
|
2631
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
2632
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
2633
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
2634
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
2635
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
2636
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
2637
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
2638
|
+
} | undefined;
|
|
2639
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
2640
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
2641
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
2642
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
2643
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
2644
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
2645
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
2646
|
+
} | undefined;
|
|
2647
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
2648
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
2649
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
2650
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
2651
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
2652
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
2653
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
2654
|
+
} | undefined;
|
|
2655
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
2656
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
2657
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
2658
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
2659
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
2660
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
2661
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
2662
|
+
} | undefined;
|
|
2663
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
2664
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
2665
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
2666
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
2667
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
2668
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
2669
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
2670
|
+
} | undefined;
|
|
2671
|
+
gridArea?: csstype.Property.GridArea | {
|
|
2672
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
2673
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
2674
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
2675
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
2676
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
2677
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
2678
|
+
} | undefined;
|
|
2679
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
2680
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
2681
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
2682
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
2683
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
2684
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
2685
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
2686
|
+
} | undefined;
|
|
2687
|
+
gridRow?: csstype.Property.GridRow | {
|
|
2688
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
2689
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
2690
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
2691
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
2692
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
2693
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
2694
|
+
} | undefined;
|
|
2695
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
2696
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
2697
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
2698
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
2699
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
2700
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
2701
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
2702
|
+
} | undefined;
|
|
2703
|
+
__brand__?: "platform-web" | {
|
|
2704
|
+
readonly base?: "platform-web" | undefined;
|
|
2705
|
+
readonly xs?: "platform-web" | undefined;
|
|
2706
|
+
readonly s?: "platform-web" | undefined;
|
|
2707
|
+
readonly m?: "platform-web" | undefined;
|
|
2708
|
+
readonly l?: "platform-web" | undefined;
|
|
2709
|
+
readonly xl?: "platform-web" | undefined;
|
|
2710
|
+
} | undefined;
|
|
2711
|
+
} & {
|
|
2318
2712
|
onMouseOver: React__default.MouseEventHandler<HTMLElement>;
|
|
2319
2713
|
onMouseEnter: React__default.MouseEventHandler<HTMLElement>;
|
|
2320
2714
|
onMouseLeave: React__default.MouseEventHandler<HTMLElement>;
|
|
@@ -2336,7 +2730,7 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<MakeObjectRe
|
|
|
2336
2730
|
borderTopRightRadius: "none" | "small" | "medium" | "large" | "max" | "round";
|
|
2337
2731
|
borderBottomRightRadius: "none" | "small" | "medium" | "large" | "max" | "round";
|
|
2338
2732
|
borderBottomLeftRadius: "none" | "small" | "medium" | "large" | "max" | "round";
|
|
2339
|
-
}> & {
|
|
2733
|
+
}, "backgroundColor" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomWidth" | "borderLeftColor" | "borderLeftWidth" | "borderRightColor" | "borderRightWidth" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopWidth" | "borderColor" | "borderRadius" | "borderWidth"> & {
|
|
2340
2734
|
as: "header" | "main" | "label" | "aside" | "div" | "footer" | "nav" | "section" | "span";
|
|
2341
2735
|
} & {
|
|
2342
2736
|
children?: React__default.ReactNode | React__default.ReactNode[];
|
|
@@ -3018,29 +3412,338 @@ declare const Checkbox: React__default.ForwardRefExoticComponent<{
|
|
|
3018
3412
|
*
|
|
3019
3413
|
*/
|
|
3020
3414
|
tabIndex?: number | undefined;
|
|
3021
|
-
} & TestID & Partial<Omit<
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
}
|
|
3030
|
-
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3415
|
+
} & TestID & Partial<Omit<MarginProps & Pick<{
|
|
3416
|
+
alignContent?: csstype.Property.AlignContent | {
|
|
3417
|
+
readonly base?: csstype.Property.AlignContent | undefined;
|
|
3418
|
+
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
3419
|
+
readonly s?: csstype.Property.AlignContent | undefined;
|
|
3420
|
+
readonly m?: csstype.Property.AlignContent | undefined;
|
|
3421
|
+
readonly l?: csstype.Property.AlignContent | undefined;
|
|
3422
|
+
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
3423
|
+
} | undefined;
|
|
3424
|
+
alignItems?: csstype.Property.AlignItems | {
|
|
3425
|
+
readonly base?: csstype.Property.AlignItems | undefined;
|
|
3426
|
+
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
3427
|
+
readonly s?: csstype.Property.AlignItems | undefined;
|
|
3428
|
+
readonly m?: csstype.Property.AlignItems | undefined;
|
|
3429
|
+
readonly l?: csstype.Property.AlignItems | undefined;
|
|
3430
|
+
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
3431
|
+
} | undefined;
|
|
3432
|
+
alignSelf?: csstype.Property.AlignSelf | {
|
|
3433
|
+
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
3434
|
+
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
3435
|
+
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
3436
|
+
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
3437
|
+
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
3438
|
+
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
3439
|
+
} | undefined;
|
|
3440
|
+
columnGap: SpacingValueType | {
|
|
3441
|
+
readonly base?: SpacingValueType | undefined;
|
|
3442
|
+
readonly xs?: SpacingValueType | undefined;
|
|
3443
|
+
readonly s?: SpacingValueType | undefined;
|
|
3444
|
+
readonly m?: SpacingValueType | undefined;
|
|
3445
|
+
readonly l?: SpacingValueType | undefined;
|
|
3446
|
+
readonly xl?: SpacingValueType | undefined;
|
|
3447
|
+
};
|
|
3448
|
+
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
3449
|
+
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
3450
|
+
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
3451
|
+
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
3452
|
+
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
3453
|
+
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
3454
|
+
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
3455
|
+
} | undefined;
|
|
3456
|
+
flexDirection?: csstype.Property.FlexDirection | {
|
|
3457
|
+
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
3458
|
+
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
3459
|
+
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
3460
|
+
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
3461
|
+
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
3462
|
+
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
3463
|
+
} | undefined;
|
|
3464
|
+
flexGrow?: csstype.Property.FlexGrow | {
|
|
3465
|
+
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
3466
|
+
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
3467
|
+
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
3468
|
+
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
3469
|
+
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
3470
|
+
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
3471
|
+
} | undefined;
|
|
3472
|
+
flexShrink?: csstype.Property.FlexShrink | {
|
|
3473
|
+
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
3474
|
+
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
3475
|
+
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
3476
|
+
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
3477
|
+
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
3478
|
+
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
3479
|
+
} | undefined;
|
|
3480
|
+
flexWrap?: csstype.Property.FlexWrap | {
|
|
3481
|
+
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
3482
|
+
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
3483
|
+
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
3484
|
+
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
3485
|
+
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
3486
|
+
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
3487
|
+
} | undefined;
|
|
3488
|
+
justifyContent?: csstype.Property.JustifyContent | {
|
|
3489
|
+
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
3490
|
+
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
3491
|
+
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
3492
|
+
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
3493
|
+
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
3494
|
+
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
3495
|
+
} | undefined;
|
|
3496
|
+
justifyItems?: csstype.Property.JustifyItems | {
|
|
3497
|
+
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
3498
|
+
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
3499
|
+
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
3500
|
+
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
3501
|
+
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
3502
|
+
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
3503
|
+
} | undefined;
|
|
3504
|
+
justifySelf?: csstype.Property.JustifySelf | {
|
|
3505
|
+
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
3506
|
+
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
3507
|
+
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
3508
|
+
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
3509
|
+
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
3510
|
+
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
3511
|
+
} | undefined;
|
|
3512
|
+
order?: csstype.Property.Order | {
|
|
3513
|
+
readonly base?: csstype.Property.Order | undefined;
|
|
3514
|
+
readonly xs?: csstype.Property.Order | undefined;
|
|
3515
|
+
readonly s?: csstype.Property.Order | undefined;
|
|
3516
|
+
readonly m?: csstype.Property.Order | undefined;
|
|
3517
|
+
readonly l?: csstype.Property.Order | undefined;
|
|
3518
|
+
readonly xl?: csstype.Property.Order | undefined;
|
|
3519
|
+
} | undefined;
|
|
3520
|
+
rowGap: SpacingValueType | {
|
|
3521
|
+
readonly base?: SpacingValueType | undefined;
|
|
3522
|
+
readonly xs?: SpacingValueType | undefined;
|
|
3523
|
+
readonly s?: SpacingValueType | undefined;
|
|
3524
|
+
readonly m?: SpacingValueType | undefined;
|
|
3525
|
+
readonly l?: SpacingValueType | undefined;
|
|
3526
|
+
readonly xl?: SpacingValueType | undefined;
|
|
3527
|
+
};
|
|
3528
|
+
flex: string | number | {
|
|
3529
|
+
readonly base?: string | number | undefined;
|
|
3530
|
+
readonly xs?: string | number | undefined;
|
|
3531
|
+
readonly s?: string | number | undefined;
|
|
3532
|
+
readonly m?: string | number | undefined;
|
|
3533
|
+
readonly l?: string | number | undefined;
|
|
3534
|
+
readonly xl?: string | number | undefined;
|
|
3535
|
+
};
|
|
3536
|
+
gap: SpacingValueType | {
|
|
3537
|
+
readonly base?: SpacingValueType | undefined;
|
|
3538
|
+
readonly xs?: SpacingValueType | undefined;
|
|
3539
|
+
readonly s?: SpacingValueType | undefined;
|
|
3540
|
+
readonly m?: SpacingValueType | undefined;
|
|
3541
|
+
readonly l?: SpacingValueType | undefined;
|
|
3542
|
+
readonly xl?: SpacingValueType | undefined;
|
|
3543
|
+
};
|
|
3544
|
+
placeSelf?: csstype.Property.PlaceSelf | {
|
|
3545
|
+
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
3546
|
+
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
3547
|
+
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
3548
|
+
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
3549
|
+
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
3550
|
+
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
3551
|
+
} | undefined;
|
|
3552
|
+
__brand__?: "platform-web" | {
|
|
3553
|
+
readonly base?: "platform-web" | undefined;
|
|
3554
|
+
readonly xs?: "platform-web" | undefined;
|
|
3555
|
+
readonly s?: "platform-web" | undefined;
|
|
3556
|
+
readonly m?: "platform-web" | undefined;
|
|
3557
|
+
readonly l?: "platform-web" | undefined;
|
|
3558
|
+
readonly xl?: "platform-web" | undefined;
|
|
3559
|
+
} | undefined;
|
|
3560
|
+
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
3561
|
+
bottom: SpacingValueType | {
|
|
3562
|
+
readonly base?: SpacingValueType | undefined;
|
|
3563
|
+
readonly xs?: SpacingValueType | undefined;
|
|
3564
|
+
readonly s?: SpacingValueType | undefined;
|
|
3565
|
+
readonly m?: SpacingValueType | undefined;
|
|
3566
|
+
readonly l?: SpacingValueType | undefined;
|
|
3567
|
+
readonly xl?: SpacingValueType | undefined;
|
|
3568
|
+
};
|
|
3569
|
+
left: SpacingValueType | {
|
|
3570
|
+
readonly base?: SpacingValueType | undefined;
|
|
3571
|
+
readonly xs?: SpacingValueType | undefined;
|
|
3572
|
+
readonly s?: SpacingValueType | undefined;
|
|
3573
|
+
readonly m?: SpacingValueType | undefined;
|
|
3574
|
+
readonly l?: SpacingValueType | undefined;
|
|
3575
|
+
readonly xl?: SpacingValueType | undefined;
|
|
3576
|
+
};
|
|
3577
|
+
position?: csstype.Property.Position | {
|
|
3578
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
3579
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
3580
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
3581
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
3582
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
3583
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
3584
|
+
} | undefined;
|
|
3585
|
+
right: SpacingValueType | {
|
|
3586
|
+
readonly base?: SpacingValueType | undefined;
|
|
3587
|
+
readonly xs?: SpacingValueType | undefined;
|
|
3588
|
+
readonly s?: SpacingValueType | undefined;
|
|
3589
|
+
readonly m?: SpacingValueType | undefined;
|
|
3590
|
+
readonly l?: SpacingValueType | undefined;
|
|
3591
|
+
readonly xl?: SpacingValueType | undefined;
|
|
3592
|
+
};
|
|
3593
|
+
top: SpacingValueType | {
|
|
3594
|
+
readonly base?: SpacingValueType | undefined;
|
|
3595
|
+
readonly xs?: SpacingValueType | undefined;
|
|
3596
|
+
readonly s?: SpacingValueType | undefined;
|
|
3597
|
+
readonly m?: SpacingValueType | undefined;
|
|
3598
|
+
readonly l?: SpacingValueType | undefined;
|
|
3599
|
+
readonly xl?: SpacingValueType | undefined;
|
|
3600
|
+
};
|
|
3601
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
3602
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
3603
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
3604
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
3605
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
3606
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
3607
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
3608
|
+
} | undefined;
|
|
3609
|
+
__brand__?: "platform-web" | {
|
|
3610
|
+
readonly base?: "platform-web" | undefined;
|
|
3611
|
+
readonly xs?: "platform-web" | undefined;
|
|
3612
|
+
readonly s?: "platform-web" | undefined;
|
|
3613
|
+
readonly m?: "platform-web" | undefined;
|
|
3614
|
+
readonly l?: "platform-web" | undefined;
|
|
3615
|
+
readonly xl?: "platform-web" | undefined;
|
|
3616
|
+
} | undefined;
|
|
3617
|
+
} & Pick<{
|
|
3618
|
+
grid?: csstype.Property.Grid | {
|
|
3619
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
3620
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
3621
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
3622
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
3623
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
3624
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
3625
|
+
} | undefined;
|
|
3626
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
3627
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
3628
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
3629
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
3630
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
3631
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
3632
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
3633
|
+
} | undefined;
|
|
3634
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
3635
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
3636
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
3637
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
3638
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
3639
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
3640
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
3641
|
+
} | undefined;
|
|
3642
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
3643
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
3644
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
3645
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
3646
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
3647
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
3648
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
3649
|
+
} | undefined;
|
|
3650
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
3651
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
3652
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
3653
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
3654
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
3655
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
3656
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
3657
|
+
} | undefined;
|
|
3658
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
3659
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
3660
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
3661
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
3662
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
3663
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
3664
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
3665
|
+
} | undefined;
|
|
3666
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
3667
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
3668
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
3669
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
3670
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
3671
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
3672
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
3673
|
+
} | undefined;
|
|
3674
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
3675
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
3676
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
3677
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
3678
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
3679
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
3680
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
3681
|
+
} | undefined;
|
|
3682
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
3683
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
3684
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
3685
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
3686
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
3687
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
3688
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
3689
|
+
} | undefined;
|
|
3690
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
3691
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
3692
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
3693
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
3694
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
3695
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
3696
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
3697
|
+
} | undefined;
|
|
3698
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
3699
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
3700
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
3701
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
3702
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
3703
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
3704
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
3705
|
+
} | undefined;
|
|
3706
|
+
gridArea?: csstype.Property.GridArea | {
|
|
3707
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
3708
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
3709
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
3710
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
3711
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
3712
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
3713
|
+
} | undefined;
|
|
3714
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
3715
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
3716
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
3717
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
3718
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
3719
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
3720
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
3721
|
+
} | undefined;
|
|
3722
|
+
gridRow?: csstype.Property.GridRow | {
|
|
3723
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
3724
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
3725
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
3726
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
3727
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
3728
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
3729
|
+
} | undefined;
|
|
3730
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
3731
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
3732
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
3733
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
3734
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
3735
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
3736
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
3737
|
+
} | undefined;
|
|
3738
|
+
__brand__?: "platform-web" | {
|
|
3739
|
+
readonly base?: "platform-web" | undefined;
|
|
3740
|
+
readonly xs?: "platform-web" | undefined;
|
|
3741
|
+
readonly s?: "platform-web" | undefined;
|
|
3742
|
+
readonly m?: "platform-web" | undefined;
|
|
3743
|
+
readonly l?: "platform-web" | undefined;
|
|
3744
|
+
readonly xl?: "platform-web" | undefined;
|
|
3745
|
+
} | undefined;
|
|
3746
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
3044
3747
|
|
|
3045
3748
|
declare type CheckboxGroupProps = {
|
|
3046
3749
|
/**
|
|
@@ -3700,36 +4403,6 @@ declare type IconProps = {
|
|
|
3700
4403
|
} & StyledPropsBlade;
|
|
3701
4404
|
declare type IconComponent = React.ComponentType<IconProps>;
|
|
3702
4405
|
|
|
3703
|
-
/**
|
|
3704
|
-
* Similar to `Pick` except this returns `never` when value doesn't exist (native `Pick` returns `unknown`).
|
|
3705
|
-
*
|
|
3706
|
-
* You might have to ts-ignore the non-existing type error while using this. This is done so that you can get jsdoc from actual type.
|
|
3707
|
-
*
|
|
3708
|
-
* E.g. This will pick from ViewStyle prop if value exists else returns undefined.
|
|
3709
|
-
*
|
|
3710
|
-
* ```ts
|
|
3711
|
-
* // @ts-expect-error: T passed here may not neccessarily exist. We return `never` type when it doesn't
|
|
3712
|
-
* native: PickIfExist<ViewStyle, T>;
|
|
3713
|
-
* ```
|
|
3714
|
-
*/
|
|
3715
|
-
declare type PickIfExist<T, K extends keyof T> = {
|
|
3716
|
-
[P in K]: P extends keyof T ? T[P] : never;
|
|
3717
|
-
};
|
|
3718
|
-
/**
|
|
3719
|
-
* Picks the types based on the platform (web / native).
|
|
3720
|
-
*
|
|
3721
|
-
* E.g.
|
|
3722
|
-
* ```ts
|
|
3723
|
-
* type CSSObject = PickCSSByPlatform<'display'>
|
|
3724
|
-
* // On Web --> This will be all possible web display properties like `block`, `flex`, `inline`, and more.
|
|
3725
|
-
* // On Native --> This will be just `flex` and `none`
|
|
3726
|
-
* ```
|
|
3727
|
-
*/
|
|
3728
|
-
declare type PickCSSByPlatform<T extends keyof React__default.CSSProperties | keyof ViewStyle> = Platform.Select<{
|
|
3729
|
-
web: PickIfExist<CSSObject, T>;
|
|
3730
|
-
native: PickIfExist<ViewStyle, T>;
|
|
3731
|
-
}>;
|
|
3732
|
-
|
|
3733
4406
|
declare type FormInputLabelProps = {
|
|
3734
4407
|
/**
|
|
3735
4408
|
* Label to be shown for the input field
|
|
@@ -3790,6 +4463,8 @@ type FormInputOnKeyDownEvent = {
|
|
|
3790
4463
|
event: KeyboardEvent<HTMLInputElement>;
|
|
3791
4464
|
};
|
|
3792
4465
|
|
|
4466
|
+
declare type CommonAutoCompleteSuggestionTypes = 'none' | 'name' | 'email' | 'username' | 'password' | 'newPassword' | 'oneTimeCode' | 'telephone' | 'postalCode' | 'countryName' | 'creditCardNumber' | 'creditCardCSC' | 'creditCardExpiry' | 'creditCardExpiryMonth' | 'creditCardExpiryYear';
|
|
4467
|
+
declare type WebAutoCompleteSuggestionType = CommonAutoCompleteSuggestionTypes | 'on';
|
|
3793
4468
|
declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
|
|
3794
4469
|
/**
|
|
3795
4470
|
* Determines if it needs to be rendered as input, textarea or button
|
|
@@ -3915,17 +4590,6 @@ declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
|
|
|
3915
4590
|
* `previous` is only available on native android
|
|
3916
4591
|
*/
|
|
3917
4592
|
keyboardReturnKeyType?: 'default' | 'go' | 'done' | 'next' | 'previous' | 'search' | 'send';
|
|
3918
|
-
/**
|
|
3919
|
-
* determines what autoComplete suggestion type to show
|
|
3920
|
-
*
|
|
3921
|
-
* Internally it'll render platform specific attributes:
|
|
3922
|
-
*
|
|
3923
|
-
* - web: `autocomplete`
|
|
3924
|
-
* - iOS: `textContentType`
|
|
3925
|
-
* - android: `autoComplete`
|
|
3926
|
-
*
|
|
3927
|
-
*/
|
|
3928
|
-
autoCompleteSuggestionType?: 'none' | 'name' | 'email' | 'username' | 'password' | 'newPassword' | 'oneTimeCode' | 'telephone' | 'postalCode' | 'countryName' | 'creditCardNumber' | 'creditCardCSC' | 'creditCardExpiry' | 'creditCardExpiryMonth' | 'creditCardExpiryYear';
|
|
3929
4593
|
/**
|
|
3930
4594
|
* Element to be rendered on the trailing slot of input field label
|
|
3931
4595
|
*/
|
|
@@ -3987,12 +4651,34 @@ declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
|
|
|
3987
4651
|
* The callback function to be invoked when the value of the input field is submitted.
|
|
3988
4652
|
*/
|
|
3989
4653
|
onSubmit?: FormInputOnEvent;
|
|
4654
|
+
/**
|
|
4655
|
+
* determines what autoComplete suggestion type to show
|
|
4656
|
+
*
|
|
4657
|
+
* Internally it'll render platform specific attributes:
|
|
4658
|
+
*
|
|
4659
|
+
* - web: `autocomplete`
|
|
4660
|
+
* - iOS: `textContentType`
|
|
4661
|
+
* - android: `autoComplete`
|
|
4662
|
+
*
|
|
4663
|
+
*/
|
|
4664
|
+
autoCompleteSuggestionType?: CommonAutoCompleteSuggestionTypes;
|
|
3990
4665
|
};
|
|
3991
4666
|
web: {
|
|
3992
4667
|
/**
|
|
3993
4668
|
* This is a react-native only prop and has no effect on web.
|
|
3994
4669
|
*/
|
|
3995
4670
|
onSubmit?: undefined;
|
|
4671
|
+
/**
|
|
4672
|
+
* determines what autoComplete suggestion type to show
|
|
4673
|
+
*
|
|
4674
|
+
* Internally it'll render platform specific attributes:
|
|
4675
|
+
*
|
|
4676
|
+
* - web: `autocomplete`
|
|
4677
|
+
* - iOS: `textContentType`
|
|
4678
|
+
* - android: `autoComplete`
|
|
4679
|
+
*
|
|
4680
|
+
*/
|
|
4681
|
+
autoCompleteSuggestionType?: WebAutoCompleteSuggestionType;
|
|
3996
4682
|
};
|
|
3997
4683
|
}> & StyledPropsBlade;
|
|
3998
4684
|
|
|
@@ -4060,29 +4746,338 @@ declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInput
|
|
|
4060
4746
|
* @default text
|
|
4061
4747
|
*/
|
|
4062
4748
|
type?: Type;
|
|
4063
|
-
} & Partial<Omit<
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
|
|
4068
|
-
|
|
4069
|
-
|
|
4070
|
-
|
|
4071
|
-
}
|
|
4072
|
-
|
|
4073
|
-
|
|
4074
|
-
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
|
|
4081
|
-
|
|
4082
|
-
|
|
4083
|
-
|
|
4084
|
-
|
|
4085
|
-
|
|
4749
|
+
} & Partial<Omit<MarginProps & Pick<{
|
|
4750
|
+
alignContent?: csstype.Property.AlignContent | {
|
|
4751
|
+
readonly base?: csstype.Property.AlignContent | undefined;
|
|
4752
|
+
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
4753
|
+
readonly s?: csstype.Property.AlignContent | undefined;
|
|
4754
|
+
readonly m?: csstype.Property.AlignContent | undefined;
|
|
4755
|
+
readonly l?: csstype.Property.AlignContent | undefined;
|
|
4756
|
+
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
4757
|
+
} | undefined;
|
|
4758
|
+
alignItems?: csstype.Property.AlignItems | {
|
|
4759
|
+
readonly base?: csstype.Property.AlignItems | undefined;
|
|
4760
|
+
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
4761
|
+
readonly s?: csstype.Property.AlignItems | undefined;
|
|
4762
|
+
readonly m?: csstype.Property.AlignItems | undefined;
|
|
4763
|
+
readonly l?: csstype.Property.AlignItems | undefined;
|
|
4764
|
+
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
4765
|
+
} | undefined;
|
|
4766
|
+
alignSelf?: csstype.Property.AlignSelf | {
|
|
4767
|
+
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
4768
|
+
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
4769
|
+
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
4770
|
+
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
4771
|
+
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
4772
|
+
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
4773
|
+
} | undefined;
|
|
4774
|
+
columnGap: SpacingValueType | {
|
|
4775
|
+
readonly base?: SpacingValueType | undefined;
|
|
4776
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4777
|
+
readonly s?: SpacingValueType | undefined;
|
|
4778
|
+
readonly m?: SpacingValueType | undefined;
|
|
4779
|
+
readonly l?: SpacingValueType | undefined;
|
|
4780
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4781
|
+
};
|
|
4782
|
+
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
4783
|
+
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4784
|
+
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4785
|
+
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4786
|
+
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4787
|
+
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4788
|
+
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4789
|
+
} | undefined;
|
|
4790
|
+
flexDirection?: csstype.Property.FlexDirection | {
|
|
4791
|
+
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
4792
|
+
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
4793
|
+
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
4794
|
+
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
4795
|
+
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
4796
|
+
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
4797
|
+
} | undefined;
|
|
4798
|
+
flexGrow?: csstype.Property.FlexGrow | {
|
|
4799
|
+
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
4800
|
+
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
4801
|
+
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
4802
|
+
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
4803
|
+
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
4804
|
+
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
4805
|
+
} | undefined;
|
|
4806
|
+
flexShrink?: csstype.Property.FlexShrink | {
|
|
4807
|
+
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
4808
|
+
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
4809
|
+
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
4810
|
+
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
4811
|
+
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
4812
|
+
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
4813
|
+
} | undefined;
|
|
4814
|
+
flexWrap?: csstype.Property.FlexWrap | {
|
|
4815
|
+
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
4816
|
+
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
4817
|
+
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
4818
|
+
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
4819
|
+
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
4820
|
+
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
4821
|
+
} | undefined;
|
|
4822
|
+
justifyContent?: csstype.Property.JustifyContent | {
|
|
4823
|
+
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
4824
|
+
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
4825
|
+
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
4826
|
+
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
4827
|
+
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
4828
|
+
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
4829
|
+
} | undefined;
|
|
4830
|
+
justifyItems?: csstype.Property.JustifyItems | {
|
|
4831
|
+
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
4832
|
+
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
4833
|
+
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
4834
|
+
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
4835
|
+
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
4836
|
+
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
4837
|
+
} | undefined;
|
|
4838
|
+
justifySelf?: csstype.Property.JustifySelf | {
|
|
4839
|
+
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
4840
|
+
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
4841
|
+
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
4842
|
+
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
4843
|
+
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
4844
|
+
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
4845
|
+
} | undefined;
|
|
4846
|
+
order?: csstype.Property.Order | {
|
|
4847
|
+
readonly base?: csstype.Property.Order | undefined;
|
|
4848
|
+
readonly xs?: csstype.Property.Order | undefined;
|
|
4849
|
+
readonly s?: csstype.Property.Order | undefined;
|
|
4850
|
+
readonly m?: csstype.Property.Order | undefined;
|
|
4851
|
+
readonly l?: csstype.Property.Order | undefined;
|
|
4852
|
+
readonly xl?: csstype.Property.Order | undefined;
|
|
4853
|
+
} | undefined;
|
|
4854
|
+
rowGap: SpacingValueType | {
|
|
4855
|
+
readonly base?: SpacingValueType | undefined;
|
|
4856
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4857
|
+
readonly s?: SpacingValueType | undefined;
|
|
4858
|
+
readonly m?: SpacingValueType | undefined;
|
|
4859
|
+
readonly l?: SpacingValueType | undefined;
|
|
4860
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4861
|
+
};
|
|
4862
|
+
flex: string | number | {
|
|
4863
|
+
readonly base?: string | number | undefined;
|
|
4864
|
+
readonly xs?: string | number | undefined;
|
|
4865
|
+
readonly s?: string | number | undefined;
|
|
4866
|
+
readonly m?: string | number | undefined;
|
|
4867
|
+
readonly l?: string | number | undefined;
|
|
4868
|
+
readonly xl?: string | number | undefined;
|
|
4869
|
+
};
|
|
4870
|
+
gap: SpacingValueType | {
|
|
4871
|
+
readonly base?: SpacingValueType | undefined;
|
|
4872
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4873
|
+
readonly s?: SpacingValueType | undefined;
|
|
4874
|
+
readonly m?: SpacingValueType | undefined;
|
|
4875
|
+
readonly l?: SpacingValueType | undefined;
|
|
4876
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4877
|
+
};
|
|
4878
|
+
placeSelf?: csstype.Property.PlaceSelf | {
|
|
4879
|
+
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
4880
|
+
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
4881
|
+
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
4882
|
+
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
4883
|
+
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
4884
|
+
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
4885
|
+
} | undefined;
|
|
4886
|
+
__brand__?: "platform-web" | {
|
|
4887
|
+
readonly base?: "platform-web" | undefined;
|
|
4888
|
+
readonly xs?: "platform-web" | undefined;
|
|
4889
|
+
readonly s?: "platform-web" | undefined;
|
|
4890
|
+
readonly m?: "platform-web" | undefined;
|
|
4891
|
+
readonly l?: "platform-web" | undefined;
|
|
4892
|
+
readonly xl?: "platform-web" | undefined;
|
|
4893
|
+
} | undefined;
|
|
4894
|
+
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
4895
|
+
bottom: SpacingValueType | {
|
|
4896
|
+
readonly base?: SpacingValueType | undefined;
|
|
4897
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4898
|
+
readonly s?: SpacingValueType | undefined;
|
|
4899
|
+
readonly m?: SpacingValueType | undefined;
|
|
4900
|
+
readonly l?: SpacingValueType | undefined;
|
|
4901
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4902
|
+
};
|
|
4903
|
+
left: SpacingValueType | {
|
|
4904
|
+
readonly base?: SpacingValueType | undefined;
|
|
4905
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4906
|
+
readonly s?: SpacingValueType | undefined;
|
|
4907
|
+
readonly m?: SpacingValueType | undefined;
|
|
4908
|
+
readonly l?: SpacingValueType | undefined;
|
|
4909
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4910
|
+
};
|
|
4911
|
+
position?: csstype.Property.Position | {
|
|
4912
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
4913
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
4914
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
4915
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
4916
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
4917
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
4918
|
+
} | undefined;
|
|
4919
|
+
right: SpacingValueType | {
|
|
4920
|
+
readonly base?: SpacingValueType | undefined;
|
|
4921
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4922
|
+
readonly s?: SpacingValueType | undefined;
|
|
4923
|
+
readonly m?: SpacingValueType | undefined;
|
|
4924
|
+
readonly l?: SpacingValueType | undefined;
|
|
4925
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4926
|
+
};
|
|
4927
|
+
top: SpacingValueType | {
|
|
4928
|
+
readonly base?: SpacingValueType | undefined;
|
|
4929
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4930
|
+
readonly s?: SpacingValueType | undefined;
|
|
4931
|
+
readonly m?: SpacingValueType | undefined;
|
|
4932
|
+
readonly l?: SpacingValueType | undefined;
|
|
4933
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4934
|
+
};
|
|
4935
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
4936
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
4937
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
4938
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
4939
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
4940
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
4941
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
4942
|
+
} | undefined;
|
|
4943
|
+
__brand__?: "platform-web" | {
|
|
4944
|
+
readonly base?: "platform-web" | undefined;
|
|
4945
|
+
readonly xs?: "platform-web" | undefined;
|
|
4946
|
+
readonly s?: "platform-web" | undefined;
|
|
4947
|
+
readonly m?: "platform-web" | undefined;
|
|
4948
|
+
readonly l?: "platform-web" | undefined;
|
|
4949
|
+
readonly xl?: "platform-web" | undefined;
|
|
4950
|
+
} | undefined;
|
|
4951
|
+
} & Pick<{
|
|
4952
|
+
grid?: csstype.Property.Grid | {
|
|
4953
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
4954
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
4955
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
4956
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
4957
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
4958
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
4959
|
+
} | undefined;
|
|
4960
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
4961
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4962
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4963
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4964
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4965
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4966
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4967
|
+
} | undefined;
|
|
4968
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
4969
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
4970
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
4971
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
4972
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
4973
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
4974
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
4975
|
+
} | undefined;
|
|
4976
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
4977
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4978
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4979
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4980
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4981
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4982
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4983
|
+
} | undefined;
|
|
4984
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
4985
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
4986
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
4987
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
4988
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
4989
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
4990
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
4991
|
+
} | undefined;
|
|
4992
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
4993
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
4994
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
4995
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
4996
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
4997
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
4998
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
4999
|
+
} | undefined;
|
|
5000
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
5001
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
5002
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
5003
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
5004
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
5005
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
5006
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
5007
|
+
} | undefined;
|
|
5008
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
5009
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
5010
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
5011
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
5012
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
5013
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
5014
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
5015
|
+
} | undefined;
|
|
5016
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
5017
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
5018
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
5019
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
5020
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
5021
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
5022
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
5023
|
+
} | undefined;
|
|
5024
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
5025
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5026
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5027
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5028
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5029
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5030
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5031
|
+
} | undefined;
|
|
5032
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
5033
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5034
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5035
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5036
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5037
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5038
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5039
|
+
} | undefined;
|
|
5040
|
+
gridArea?: csstype.Property.GridArea | {
|
|
5041
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
5042
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
5043
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
5044
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
5045
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
5046
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
5047
|
+
} | undefined;
|
|
5048
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
5049
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
5050
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
5051
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
5052
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
5053
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
5054
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
5055
|
+
} | undefined;
|
|
5056
|
+
gridRow?: csstype.Property.GridRow | {
|
|
5057
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
5058
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
5059
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
5060
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
5061
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
5062
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
5063
|
+
} | undefined;
|
|
5064
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
5065
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
5066
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
5067
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
5068
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
5069
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
5070
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
5071
|
+
} | undefined;
|
|
5072
|
+
__brand__?: "platform-web" | {
|
|
5073
|
+
readonly base?: "platform-web" | undefined;
|
|
5074
|
+
readonly xs?: "platform-web" | undefined;
|
|
5075
|
+
readonly s?: "platform-web" | undefined;
|
|
5076
|
+
readonly m?: "platform-web" | undefined;
|
|
5077
|
+
readonly l?: "platform-web" | undefined;
|
|
5078
|
+
readonly xl?: "platform-web" | undefined;
|
|
5079
|
+
} | undefined;
|
|
5080
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
4086
5081
|
|
|
4087
5082
|
declare type PasswordInputExtraProps = {
|
|
4088
5083
|
/**
|
|
@@ -4115,29 +5110,338 @@ declare type PasswordInputExtraProps = {
|
|
|
4115
5110
|
autoCompleteSuggestionType?: Extract<BaseInputProps['autoCompleteSuggestionType'], 'none' | 'password' | 'newPassword'>;
|
|
4116
5111
|
};
|
|
4117
5112
|
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;
|
|
4118
|
-
declare const PasswordInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "name" | "testID" | "placeholder" | "label" | "value" | "defaultValue" | "onFocus" | "onBlur" | "onChange" | "onSubmit" | "autoFocus" | "isDisabled" | "labelPosition" | "validationState" | "helpText" | "errorText" | "successText" | "isRequired" | "maxCharacters" | "keyboardReturnKeyType" | "autoCompleteSuggestionType"> & PasswordInputExtraProps & Partial<Omit<
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
|
|
4126
|
-
}
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
|
|
5113
|
+
declare const PasswordInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "name" | "testID" | "placeholder" | "label" | "value" | "defaultValue" | "onFocus" | "onBlur" | "onChange" | "onSubmit" | "autoFocus" | "isDisabled" | "labelPosition" | "validationState" | "helpText" | "errorText" | "successText" | "isRequired" | "maxCharacters" | "keyboardReturnKeyType" | "autoCompleteSuggestionType"> & PasswordInputExtraProps & Partial<Omit<MarginProps & Pick<{
|
|
5114
|
+
alignContent?: csstype.Property.AlignContent | {
|
|
5115
|
+
readonly base?: csstype.Property.AlignContent | undefined;
|
|
5116
|
+
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
5117
|
+
readonly s?: csstype.Property.AlignContent | undefined;
|
|
5118
|
+
readonly m?: csstype.Property.AlignContent | undefined;
|
|
5119
|
+
readonly l?: csstype.Property.AlignContent | undefined;
|
|
5120
|
+
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
5121
|
+
} | undefined;
|
|
5122
|
+
alignItems?: csstype.Property.AlignItems | {
|
|
5123
|
+
readonly base?: csstype.Property.AlignItems | undefined;
|
|
5124
|
+
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
5125
|
+
readonly s?: csstype.Property.AlignItems | undefined;
|
|
5126
|
+
readonly m?: csstype.Property.AlignItems | undefined;
|
|
5127
|
+
readonly l?: csstype.Property.AlignItems | undefined;
|
|
5128
|
+
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
5129
|
+
} | undefined;
|
|
5130
|
+
alignSelf?: csstype.Property.AlignSelf | {
|
|
5131
|
+
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
5132
|
+
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
5133
|
+
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
5134
|
+
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
5135
|
+
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
5136
|
+
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
5137
|
+
} | undefined;
|
|
5138
|
+
columnGap: SpacingValueType | {
|
|
5139
|
+
readonly base?: SpacingValueType | undefined;
|
|
5140
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5141
|
+
readonly s?: SpacingValueType | undefined;
|
|
5142
|
+
readonly m?: SpacingValueType | undefined;
|
|
5143
|
+
readonly l?: SpacingValueType | undefined;
|
|
5144
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5145
|
+
};
|
|
5146
|
+
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
5147
|
+
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5148
|
+
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5149
|
+
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5150
|
+
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5151
|
+
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5152
|
+
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5153
|
+
} | undefined;
|
|
5154
|
+
flexDirection?: csstype.Property.FlexDirection | {
|
|
5155
|
+
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
5156
|
+
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
5157
|
+
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
5158
|
+
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
5159
|
+
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
5160
|
+
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
5161
|
+
} | undefined;
|
|
5162
|
+
flexGrow?: csstype.Property.FlexGrow | {
|
|
5163
|
+
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
5164
|
+
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
5165
|
+
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
5166
|
+
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
5167
|
+
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
5168
|
+
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
5169
|
+
} | undefined;
|
|
5170
|
+
flexShrink?: csstype.Property.FlexShrink | {
|
|
5171
|
+
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
5172
|
+
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
5173
|
+
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
5174
|
+
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
5175
|
+
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
5176
|
+
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
5177
|
+
} | undefined;
|
|
5178
|
+
flexWrap?: csstype.Property.FlexWrap | {
|
|
5179
|
+
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
5180
|
+
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
5181
|
+
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
5182
|
+
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
5183
|
+
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
5184
|
+
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
5185
|
+
} | undefined;
|
|
5186
|
+
justifyContent?: csstype.Property.JustifyContent | {
|
|
5187
|
+
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
5188
|
+
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
5189
|
+
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
5190
|
+
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
5191
|
+
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
5192
|
+
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
5193
|
+
} | undefined;
|
|
5194
|
+
justifyItems?: csstype.Property.JustifyItems | {
|
|
5195
|
+
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
5196
|
+
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
5197
|
+
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
5198
|
+
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
5199
|
+
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
5200
|
+
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
5201
|
+
} | undefined;
|
|
5202
|
+
justifySelf?: csstype.Property.JustifySelf | {
|
|
5203
|
+
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
5204
|
+
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
5205
|
+
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
5206
|
+
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
5207
|
+
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
5208
|
+
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
5209
|
+
} | undefined;
|
|
5210
|
+
order?: csstype.Property.Order | {
|
|
5211
|
+
readonly base?: csstype.Property.Order | undefined;
|
|
5212
|
+
readonly xs?: csstype.Property.Order | undefined;
|
|
5213
|
+
readonly s?: csstype.Property.Order | undefined;
|
|
5214
|
+
readonly m?: csstype.Property.Order | undefined;
|
|
5215
|
+
readonly l?: csstype.Property.Order | undefined;
|
|
5216
|
+
readonly xl?: csstype.Property.Order | undefined;
|
|
5217
|
+
} | undefined;
|
|
5218
|
+
rowGap: SpacingValueType | {
|
|
5219
|
+
readonly base?: SpacingValueType | undefined;
|
|
5220
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5221
|
+
readonly s?: SpacingValueType | undefined;
|
|
5222
|
+
readonly m?: SpacingValueType | undefined;
|
|
5223
|
+
readonly l?: SpacingValueType | undefined;
|
|
5224
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5225
|
+
};
|
|
5226
|
+
flex: string | number | {
|
|
5227
|
+
readonly base?: string | number | undefined;
|
|
5228
|
+
readonly xs?: string | number | undefined;
|
|
5229
|
+
readonly s?: string | number | undefined;
|
|
5230
|
+
readonly m?: string | number | undefined;
|
|
5231
|
+
readonly l?: string | number | undefined;
|
|
5232
|
+
readonly xl?: string | number | undefined;
|
|
5233
|
+
};
|
|
5234
|
+
gap: SpacingValueType | {
|
|
5235
|
+
readonly base?: SpacingValueType | undefined;
|
|
5236
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5237
|
+
readonly s?: SpacingValueType | undefined;
|
|
5238
|
+
readonly m?: SpacingValueType | undefined;
|
|
5239
|
+
readonly l?: SpacingValueType | undefined;
|
|
5240
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5241
|
+
};
|
|
5242
|
+
placeSelf?: csstype.Property.PlaceSelf | {
|
|
5243
|
+
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
5244
|
+
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
5245
|
+
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
5246
|
+
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
5247
|
+
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
5248
|
+
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
5249
|
+
} | undefined;
|
|
5250
|
+
__brand__?: "platform-web" | {
|
|
5251
|
+
readonly base?: "platform-web" | undefined;
|
|
5252
|
+
readonly xs?: "platform-web" | undefined;
|
|
5253
|
+
readonly s?: "platform-web" | undefined;
|
|
5254
|
+
readonly m?: "platform-web" | undefined;
|
|
5255
|
+
readonly l?: "platform-web" | undefined;
|
|
5256
|
+
readonly xl?: "platform-web" | undefined;
|
|
5257
|
+
} | undefined;
|
|
5258
|
+
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5259
|
+
bottom: SpacingValueType | {
|
|
5260
|
+
readonly base?: SpacingValueType | undefined;
|
|
5261
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5262
|
+
readonly s?: SpacingValueType | undefined;
|
|
5263
|
+
readonly m?: SpacingValueType | undefined;
|
|
5264
|
+
readonly l?: SpacingValueType | undefined;
|
|
5265
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5266
|
+
};
|
|
5267
|
+
left: SpacingValueType | {
|
|
5268
|
+
readonly base?: SpacingValueType | undefined;
|
|
5269
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5270
|
+
readonly s?: SpacingValueType | undefined;
|
|
5271
|
+
readonly m?: SpacingValueType | undefined;
|
|
5272
|
+
readonly l?: SpacingValueType | undefined;
|
|
5273
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5274
|
+
};
|
|
5275
|
+
position?: csstype.Property.Position | {
|
|
5276
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
5277
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
5278
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
5279
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
5280
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
5281
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
5282
|
+
} | undefined;
|
|
5283
|
+
right: SpacingValueType | {
|
|
5284
|
+
readonly base?: SpacingValueType | undefined;
|
|
5285
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5286
|
+
readonly s?: SpacingValueType | undefined;
|
|
5287
|
+
readonly m?: SpacingValueType | undefined;
|
|
5288
|
+
readonly l?: SpacingValueType | undefined;
|
|
5289
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5290
|
+
};
|
|
5291
|
+
top: SpacingValueType | {
|
|
5292
|
+
readonly base?: SpacingValueType | undefined;
|
|
5293
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5294
|
+
readonly s?: SpacingValueType | undefined;
|
|
5295
|
+
readonly m?: SpacingValueType | undefined;
|
|
5296
|
+
readonly l?: SpacingValueType | undefined;
|
|
5297
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5298
|
+
};
|
|
5299
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
5300
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
5301
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
5302
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
5303
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
5304
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
5305
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
5306
|
+
} | undefined;
|
|
5307
|
+
__brand__?: "platform-web" | {
|
|
5308
|
+
readonly base?: "platform-web" | undefined;
|
|
5309
|
+
readonly xs?: "platform-web" | undefined;
|
|
5310
|
+
readonly s?: "platform-web" | undefined;
|
|
5311
|
+
readonly m?: "platform-web" | undefined;
|
|
5312
|
+
readonly l?: "platform-web" | undefined;
|
|
5313
|
+
readonly xl?: "platform-web" | undefined;
|
|
5314
|
+
} | undefined;
|
|
5315
|
+
} & Pick<{
|
|
5316
|
+
grid?: csstype.Property.Grid | {
|
|
5317
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
5318
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
5319
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
5320
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
5321
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
5322
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
5323
|
+
} | undefined;
|
|
5324
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
5325
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5326
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5327
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5328
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5329
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5330
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5331
|
+
} | undefined;
|
|
5332
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
5333
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
5334
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
5335
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
5336
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
5337
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
5338
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
5339
|
+
} | undefined;
|
|
5340
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
5341
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5342
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5343
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5344
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5345
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5346
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5347
|
+
} | undefined;
|
|
5348
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
5349
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
5350
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
5351
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
5352
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
5353
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
5354
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
5355
|
+
} | undefined;
|
|
5356
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
5357
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
5358
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
5359
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
5360
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
5361
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
5362
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
5363
|
+
} | undefined;
|
|
5364
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
5365
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
5366
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
5367
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
5368
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
5369
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
5370
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
5371
|
+
} | undefined;
|
|
5372
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
5373
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
5374
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
5375
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
5376
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
5377
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
5378
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
5379
|
+
} | undefined;
|
|
5380
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
5381
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
5382
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
5383
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
5384
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
5385
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
5386
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
5387
|
+
} | undefined;
|
|
5388
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
5389
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5390
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5391
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5392
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5393
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5394
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5395
|
+
} | undefined;
|
|
5396
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
5397
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5398
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5399
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5400
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5401
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5402
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5403
|
+
} | undefined;
|
|
5404
|
+
gridArea?: csstype.Property.GridArea | {
|
|
5405
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
5406
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
5407
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
5408
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
5409
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
5410
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
5411
|
+
} | undefined;
|
|
5412
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
5413
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
5414
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
5415
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
5416
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
5417
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
5418
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
5419
|
+
} | undefined;
|
|
5420
|
+
gridRow?: csstype.Property.GridRow | {
|
|
5421
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
5422
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
5423
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
5424
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
5425
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
5426
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
5427
|
+
} | undefined;
|
|
5428
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
5429
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
5430
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
5431
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
5432
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
5433
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
5434
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
5435
|
+
} | undefined;
|
|
5436
|
+
__brand__?: "platform-web" | {
|
|
5437
|
+
readonly base?: "platform-web" | undefined;
|
|
5438
|
+
readonly xs?: "platform-web" | undefined;
|
|
5439
|
+
readonly s?: "platform-web" | undefined;
|
|
5440
|
+
readonly m?: "platform-web" | undefined;
|
|
5441
|
+
readonly l?: "platform-web" | undefined;
|
|
5442
|
+
readonly xl?: "platform-web" | undefined;
|
|
5443
|
+
} | undefined;
|
|
5444
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
4141
5445
|
|
|
4142
5446
|
declare type TextAreaProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'necessityIndicator' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'placeholder' | 'defaultValue' | 'name' | 'onChange' | 'onFocus' | 'onBlur' | 'onSubmit' | 'value' | 'isDisabled' | 'isRequired' | 'maxCharacters' | 'autoFocus' | 'numberOfLines' | 'testID'> & {
|
|
4143
5447
|
/**
|
|
@@ -4158,29 +5462,338 @@ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputP
|
|
|
4158
5462
|
* Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
|
|
4159
5463
|
*/
|
|
4160
5464
|
onClearButtonClick?: (() => void) | undefined;
|
|
4161
|
-
} & Partial<Omit<
|
|
4162
|
-
|
|
4163
|
-
|
|
4164
|
-
|
|
4165
|
-
|
|
4166
|
-
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
}
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4173
|
-
|
|
4174
|
-
|
|
4175
|
-
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
|
|
4179
|
-
|
|
4180
|
-
|
|
4181
|
-
|
|
4182
|
-
|
|
4183
|
-
|
|
5465
|
+
} & Partial<Omit<MarginProps & Pick<{
|
|
5466
|
+
alignContent?: csstype.Property.AlignContent | {
|
|
5467
|
+
readonly base?: csstype.Property.AlignContent | undefined;
|
|
5468
|
+
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
5469
|
+
readonly s?: csstype.Property.AlignContent | undefined;
|
|
5470
|
+
readonly m?: csstype.Property.AlignContent | undefined;
|
|
5471
|
+
readonly l?: csstype.Property.AlignContent | undefined;
|
|
5472
|
+
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
5473
|
+
} | undefined;
|
|
5474
|
+
alignItems?: csstype.Property.AlignItems | {
|
|
5475
|
+
readonly base?: csstype.Property.AlignItems | undefined;
|
|
5476
|
+
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
5477
|
+
readonly s?: csstype.Property.AlignItems | undefined;
|
|
5478
|
+
readonly m?: csstype.Property.AlignItems | undefined;
|
|
5479
|
+
readonly l?: csstype.Property.AlignItems | undefined;
|
|
5480
|
+
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
5481
|
+
} | undefined;
|
|
5482
|
+
alignSelf?: csstype.Property.AlignSelf | {
|
|
5483
|
+
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
5484
|
+
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
5485
|
+
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
5486
|
+
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
5487
|
+
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
5488
|
+
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
5489
|
+
} | undefined;
|
|
5490
|
+
columnGap: SpacingValueType | {
|
|
5491
|
+
readonly base?: SpacingValueType | undefined;
|
|
5492
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5493
|
+
readonly s?: SpacingValueType | undefined;
|
|
5494
|
+
readonly m?: SpacingValueType | undefined;
|
|
5495
|
+
readonly l?: SpacingValueType | undefined;
|
|
5496
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5497
|
+
};
|
|
5498
|
+
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
5499
|
+
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5500
|
+
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5501
|
+
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5502
|
+
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5503
|
+
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5504
|
+
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5505
|
+
} | undefined;
|
|
5506
|
+
flexDirection?: csstype.Property.FlexDirection | {
|
|
5507
|
+
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
5508
|
+
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
5509
|
+
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
5510
|
+
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
5511
|
+
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
5512
|
+
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
5513
|
+
} | undefined;
|
|
5514
|
+
flexGrow?: csstype.Property.FlexGrow | {
|
|
5515
|
+
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
5516
|
+
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
5517
|
+
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
5518
|
+
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
5519
|
+
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
5520
|
+
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
5521
|
+
} | undefined;
|
|
5522
|
+
flexShrink?: csstype.Property.FlexShrink | {
|
|
5523
|
+
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
5524
|
+
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
5525
|
+
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
5526
|
+
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
5527
|
+
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
5528
|
+
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
5529
|
+
} | undefined;
|
|
5530
|
+
flexWrap?: csstype.Property.FlexWrap | {
|
|
5531
|
+
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
5532
|
+
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
5533
|
+
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
5534
|
+
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
5535
|
+
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
5536
|
+
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
5537
|
+
} | undefined;
|
|
5538
|
+
justifyContent?: csstype.Property.JustifyContent | {
|
|
5539
|
+
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
5540
|
+
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
5541
|
+
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
5542
|
+
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
5543
|
+
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
5544
|
+
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
5545
|
+
} | undefined;
|
|
5546
|
+
justifyItems?: csstype.Property.JustifyItems | {
|
|
5547
|
+
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
5548
|
+
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
5549
|
+
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
5550
|
+
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
5551
|
+
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
5552
|
+
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
5553
|
+
} | undefined;
|
|
5554
|
+
justifySelf?: csstype.Property.JustifySelf | {
|
|
5555
|
+
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
5556
|
+
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
5557
|
+
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
5558
|
+
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
5559
|
+
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
5560
|
+
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
5561
|
+
} | undefined;
|
|
5562
|
+
order?: csstype.Property.Order | {
|
|
5563
|
+
readonly base?: csstype.Property.Order | undefined;
|
|
5564
|
+
readonly xs?: csstype.Property.Order | undefined;
|
|
5565
|
+
readonly s?: csstype.Property.Order | undefined;
|
|
5566
|
+
readonly m?: csstype.Property.Order | undefined;
|
|
5567
|
+
readonly l?: csstype.Property.Order | undefined;
|
|
5568
|
+
readonly xl?: csstype.Property.Order | undefined;
|
|
5569
|
+
} | undefined;
|
|
5570
|
+
rowGap: SpacingValueType | {
|
|
5571
|
+
readonly base?: SpacingValueType | undefined;
|
|
5572
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5573
|
+
readonly s?: SpacingValueType | undefined;
|
|
5574
|
+
readonly m?: SpacingValueType | undefined;
|
|
5575
|
+
readonly l?: SpacingValueType | undefined;
|
|
5576
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5577
|
+
};
|
|
5578
|
+
flex: string | number | {
|
|
5579
|
+
readonly base?: string | number | undefined;
|
|
5580
|
+
readonly xs?: string | number | undefined;
|
|
5581
|
+
readonly s?: string | number | undefined;
|
|
5582
|
+
readonly m?: string | number | undefined;
|
|
5583
|
+
readonly l?: string | number | undefined;
|
|
5584
|
+
readonly xl?: string | number | undefined;
|
|
5585
|
+
};
|
|
5586
|
+
gap: SpacingValueType | {
|
|
5587
|
+
readonly base?: SpacingValueType | undefined;
|
|
5588
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5589
|
+
readonly s?: SpacingValueType | undefined;
|
|
5590
|
+
readonly m?: SpacingValueType | undefined;
|
|
5591
|
+
readonly l?: SpacingValueType | undefined;
|
|
5592
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5593
|
+
};
|
|
5594
|
+
placeSelf?: csstype.Property.PlaceSelf | {
|
|
5595
|
+
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
5596
|
+
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
5597
|
+
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
5598
|
+
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
5599
|
+
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
5600
|
+
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
5601
|
+
} | undefined;
|
|
5602
|
+
__brand__?: "platform-web" | {
|
|
5603
|
+
readonly base?: "platform-web" | undefined;
|
|
5604
|
+
readonly xs?: "platform-web" | undefined;
|
|
5605
|
+
readonly s?: "platform-web" | undefined;
|
|
5606
|
+
readonly m?: "platform-web" | undefined;
|
|
5607
|
+
readonly l?: "platform-web" | undefined;
|
|
5608
|
+
readonly xl?: "platform-web" | undefined;
|
|
5609
|
+
} | undefined;
|
|
5610
|
+
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5611
|
+
bottom: SpacingValueType | {
|
|
5612
|
+
readonly base?: SpacingValueType | undefined;
|
|
5613
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5614
|
+
readonly s?: SpacingValueType | undefined;
|
|
5615
|
+
readonly m?: SpacingValueType | undefined;
|
|
5616
|
+
readonly l?: SpacingValueType | undefined;
|
|
5617
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5618
|
+
};
|
|
5619
|
+
left: SpacingValueType | {
|
|
5620
|
+
readonly base?: SpacingValueType | undefined;
|
|
5621
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5622
|
+
readonly s?: SpacingValueType | undefined;
|
|
5623
|
+
readonly m?: SpacingValueType | undefined;
|
|
5624
|
+
readonly l?: SpacingValueType | undefined;
|
|
5625
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5626
|
+
};
|
|
5627
|
+
position?: csstype.Property.Position | {
|
|
5628
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
5629
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
5630
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
5631
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
5632
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
5633
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
5634
|
+
} | undefined;
|
|
5635
|
+
right: SpacingValueType | {
|
|
5636
|
+
readonly base?: SpacingValueType | undefined;
|
|
5637
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5638
|
+
readonly s?: SpacingValueType | undefined;
|
|
5639
|
+
readonly m?: SpacingValueType | undefined;
|
|
5640
|
+
readonly l?: SpacingValueType | undefined;
|
|
5641
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5642
|
+
};
|
|
5643
|
+
top: SpacingValueType | {
|
|
5644
|
+
readonly base?: SpacingValueType | undefined;
|
|
5645
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5646
|
+
readonly s?: SpacingValueType | undefined;
|
|
5647
|
+
readonly m?: SpacingValueType | undefined;
|
|
5648
|
+
readonly l?: SpacingValueType | undefined;
|
|
5649
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5650
|
+
};
|
|
5651
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
5652
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
5653
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
5654
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
5655
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
5656
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
5657
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
5658
|
+
} | undefined;
|
|
5659
|
+
__brand__?: "platform-web" | {
|
|
5660
|
+
readonly base?: "platform-web" | undefined;
|
|
5661
|
+
readonly xs?: "platform-web" | undefined;
|
|
5662
|
+
readonly s?: "platform-web" | undefined;
|
|
5663
|
+
readonly m?: "platform-web" | undefined;
|
|
5664
|
+
readonly l?: "platform-web" | undefined;
|
|
5665
|
+
readonly xl?: "platform-web" | undefined;
|
|
5666
|
+
} | undefined;
|
|
5667
|
+
} & Pick<{
|
|
5668
|
+
grid?: csstype.Property.Grid | {
|
|
5669
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
5670
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
5671
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
5672
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
5673
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
5674
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
5675
|
+
} | undefined;
|
|
5676
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
5677
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5678
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5679
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5680
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5681
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5682
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5683
|
+
} | undefined;
|
|
5684
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
5685
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
5686
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
5687
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
5688
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
5689
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
5690
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
5691
|
+
} | undefined;
|
|
5692
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
5693
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5694
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5695
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5696
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5697
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5698
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5699
|
+
} | undefined;
|
|
5700
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
5701
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
5702
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
5703
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
5704
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
5705
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
5706
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
5707
|
+
} | undefined;
|
|
5708
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
5709
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
5710
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
5711
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
5712
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
5713
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
5714
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
5715
|
+
} | undefined;
|
|
5716
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
5717
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
5718
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
5719
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
5720
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
5721
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
5722
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
5723
|
+
} | undefined;
|
|
5724
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
5725
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
5726
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
5727
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
5728
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
5729
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
5730
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
5731
|
+
} | undefined;
|
|
5732
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
5733
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
5734
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
5735
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
5736
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
5737
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
5738
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
5739
|
+
} | undefined;
|
|
5740
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
5741
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5742
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5743
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5744
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5745
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5746
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5747
|
+
} | undefined;
|
|
5748
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
5749
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5750
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5751
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5752
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5753
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5754
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5755
|
+
} | undefined;
|
|
5756
|
+
gridArea?: csstype.Property.GridArea | {
|
|
5757
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
5758
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
5759
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
5760
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
5761
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
5762
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
5763
|
+
} | undefined;
|
|
5764
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
5765
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
5766
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
5767
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
5768
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
5769
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
5770
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
5771
|
+
} | undefined;
|
|
5772
|
+
gridRow?: csstype.Property.GridRow | {
|
|
5773
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
5774
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
5775
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
5776
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
5777
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
5778
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
5779
|
+
} | undefined;
|
|
5780
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
5781
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
5782
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
5783
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
5784
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
5785
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
5786
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
5787
|
+
} | undefined;
|
|
5788
|
+
__brand__?: "platform-web" | {
|
|
5789
|
+
readonly base?: "platform-web" | undefined;
|
|
5790
|
+
readonly xs?: "platform-web" | undefined;
|
|
5791
|
+
readonly s?: "platform-web" | undefined;
|
|
5792
|
+
readonly m?: "platform-web" | undefined;
|
|
5793
|
+
readonly l?: "platform-web" | undefined;
|
|
5794
|
+
readonly xl?: "platform-web" | undefined;
|
|
5795
|
+
} | undefined;
|
|
5796
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
4184
5797
|
|
|
4185
5798
|
declare type FormInputOnEventWithIndex = ({ name, value, inputIndex, }: {
|
|
4186
5799
|
name?: string;
|
|
@@ -4608,6 +6221,95 @@ declare function clearAnnouncer(assertiveness: Assertiveness): void;
|
|
|
4608
6221
|
*/
|
|
4609
6222
|
declare function destroyAnnouncer(): void;
|
|
4610
6223
|
|
|
6224
|
+
declare type BaseHeaderProps = {
|
|
6225
|
+
title?: string;
|
|
6226
|
+
subtitle?: string;
|
|
6227
|
+
/**
|
|
6228
|
+
* Leading part of the header placed at the left most side of the header
|
|
6229
|
+
*/
|
|
6230
|
+
leading?: React__default.ReactNode;
|
|
6231
|
+
/**
|
|
6232
|
+
* Trailing part of the header placed at the right most side of the header
|
|
6233
|
+
*/
|
|
6234
|
+
trailing?: React__default.ReactNode;
|
|
6235
|
+
/**
|
|
6236
|
+
* Placed adjacent to the title text
|
|
6237
|
+
*/
|
|
6238
|
+
titleSuffix?: React__default.ReactNode;
|
|
6239
|
+
/**
|
|
6240
|
+
* @default true
|
|
6241
|
+
*/
|
|
6242
|
+
showDivider?: boolean;
|
|
6243
|
+
/**
|
|
6244
|
+
* @default false
|
|
6245
|
+
*/
|
|
6246
|
+
showBackButton?: boolean;
|
|
6247
|
+
/**
|
|
6248
|
+
* @default true
|
|
6249
|
+
*/
|
|
6250
|
+
showCloseButton?: boolean;
|
|
6251
|
+
onCloseButtonClick?: () => void;
|
|
6252
|
+
onBackButtonClick?: () => void;
|
|
6253
|
+
closeButtonRef: React__default.MutableRefObject<any>;
|
|
6254
|
+
metaComponentName?: string;
|
|
6255
|
+
} & Pick<ReactDOMAttributes, 'onClickCapture' | 'onKeyDown' | 'onKeyUp' | 'onLostPointerCapture' | 'onPointerCancel' | 'onPointerDown' | 'onPointerMove' | 'onPointerUp'>;
|
|
6256
|
+
|
|
6257
|
+
declare type ModalHeaderProps = Pick<BaseHeaderProps, 'title' | 'subtitle' | 'leading' | 'trailing' | 'titleSuffix'>;
|
|
6258
|
+
declare const ModalHeader: ({ leading, subtitle, title, titleSuffix, trailing, }: ModalHeaderProps) => React.ReactElement;
|
|
6259
|
+
|
|
6260
|
+
declare type BaseFooterProps$1 = {
|
|
6261
|
+
children: React__default.ReactNode;
|
|
6262
|
+
metaComponentName?: string;
|
|
6263
|
+
showDivider?: boolean;
|
|
6264
|
+
};
|
|
6265
|
+
|
|
6266
|
+
declare type ModalFooterProps = Pick<BaseFooterProps$1, 'children'>;
|
|
6267
|
+
declare const ModalFooter: (props: ModalFooterProps) => React__default.ReactElement;
|
|
6268
|
+
|
|
6269
|
+
declare type ModalBodyProps = {
|
|
6270
|
+
children: React__default.ReactNode;
|
|
6271
|
+
/**
|
|
6272
|
+
* Sets the padding equally on all sides. Only few `spacing` tokens are allowed deliberately
|
|
6273
|
+
* @default `spacing.6`
|
|
6274
|
+
*
|
|
6275
|
+
* **Links:**
|
|
6276
|
+
* - Docs: https://blade.razorpay.com/?path=/docs/tokens-spacing--page
|
|
6277
|
+
*/
|
|
6278
|
+
padding?: Extract<SpacingValueType$1, 'spacing.0' | 'spacing.6'>;
|
|
6279
|
+
};
|
|
6280
|
+
declare const ModalBody: ({ children, padding }: ModalBodyProps) => React__default.ReactElement;
|
|
6281
|
+
|
|
6282
|
+
declare type ModalProps = {
|
|
6283
|
+
/**
|
|
6284
|
+
* Children of Modal
|
|
6285
|
+
* Only ModalHeader, ModalBody and ModalFooter are allowed as children
|
|
6286
|
+
*/
|
|
6287
|
+
children: React__default.ReactNode;
|
|
6288
|
+
/**
|
|
6289
|
+
Sets the modal to open or close
|
|
6290
|
+
* @default false
|
|
6291
|
+
*/
|
|
6292
|
+
isOpen: boolean;
|
|
6293
|
+
/**
|
|
6294
|
+
* Callback function when user clicks on close button or outside the modal or on pressing escape key.
|
|
6295
|
+
*/
|
|
6296
|
+
onDismiss: () => void;
|
|
6297
|
+
/**
|
|
6298
|
+
* Ref to the element to be focused on opening the modal.
|
|
6299
|
+
*/
|
|
6300
|
+
initialFocusRef?: React__default.MutableRefObject<any>;
|
|
6301
|
+
/**
|
|
6302
|
+
* Size of the modal
|
|
6303
|
+
* @default 'small'
|
|
6304
|
+
*/
|
|
6305
|
+
size?: 'small' | 'medium' | 'large';
|
|
6306
|
+
/**
|
|
6307
|
+
* Accessibility label for the modal
|
|
6308
|
+
*/
|
|
6309
|
+
accessibilityLabel?: string;
|
|
6310
|
+
};
|
|
6311
|
+
declare const Modal: ({ isOpen, children, onDismiss, initialFocusRef, size, accessibilityLabel, }: ModalProps) => React__default.ReactElement;
|
|
6312
|
+
|
|
4611
6313
|
declare type ProgressBarCommonProps = {
|
|
4612
6314
|
/**
|
|
4613
6315
|
* Sets aria-label to help users know what the progress bar is for. Default value is the same as the `label` passed.
|
|
@@ -4738,29 +6440,338 @@ declare const Radio: React__default.ForwardRefExoticComponent<{
|
|
|
4738
6440
|
* @default "medium"
|
|
4739
6441
|
*/
|
|
4740
6442
|
size?: "small" | "medium" | undefined;
|
|
4741
|
-
} & TestID & Partial<Omit<
|
|
4742
|
-
|
|
4743
|
-
|
|
4744
|
-
|
|
4745
|
-
|
|
4746
|
-
|
|
4747
|
-
|
|
4748
|
-
|
|
4749
|
-
}
|
|
4750
|
-
|
|
4751
|
-
|
|
4752
|
-
|
|
4753
|
-
|
|
4754
|
-
|
|
4755
|
-
|
|
4756
|
-
|
|
4757
|
-
|
|
4758
|
-
|
|
4759
|
-
|
|
4760
|
-
|
|
4761
|
-
|
|
4762
|
-
|
|
4763
|
-
|
|
6443
|
+
} & TestID & Partial<Omit<MarginProps & Pick<{
|
|
6444
|
+
alignContent?: csstype.Property.AlignContent | {
|
|
6445
|
+
readonly base?: csstype.Property.AlignContent | undefined;
|
|
6446
|
+
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
6447
|
+
readonly s?: csstype.Property.AlignContent | undefined;
|
|
6448
|
+
readonly m?: csstype.Property.AlignContent | undefined;
|
|
6449
|
+
readonly l?: csstype.Property.AlignContent | undefined;
|
|
6450
|
+
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
6451
|
+
} | undefined;
|
|
6452
|
+
alignItems?: csstype.Property.AlignItems | {
|
|
6453
|
+
readonly base?: csstype.Property.AlignItems | undefined;
|
|
6454
|
+
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
6455
|
+
readonly s?: csstype.Property.AlignItems | undefined;
|
|
6456
|
+
readonly m?: csstype.Property.AlignItems | undefined;
|
|
6457
|
+
readonly l?: csstype.Property.AlignItems | undefined;
|
|
6458
|
+
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
6459
|
+
} | undefined;
|
|
6460
|
+
alignSelf?: csstype.Property.AlignSelf | {
|
|
6461
|
+
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
6462
|
+
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
6463
|
+
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
6464
|
+
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
6465
|
+
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
6466
|
+
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
6467
|
+
} | undefined;
|
|
6468
|
+
columnGap: SpacingValueType | {
|
|
6469
|
+
readonly base?: SpacingValueType | undefined;
|
|
6470
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6471
|
+
readonly s?: SpacingValueType | undefined;
|
|
6472
|
+
readonly m?: SpacingValueType | undefined;
|
|
6473
|
+
readonly l?: SpacingValueType | undefined;
|
|
6474
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6475
|
+
};
|
|
6476
|
+
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
6477
|
+
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6478
|
+
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6479
|
+
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6480
|
+
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6481
|
+
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6482
|
+
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6483
|
+
} | undefined;
|
|
6484
|
+
flexDirection?: csstype.Property.FlexDirection | {
|
|
6485
|
+
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
6486
|
+
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
6487
|
+
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
6488
|
+
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
6489
|
+
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
6490
|
+
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
6491
|
+
} | undefined;
|
|
6492
|
+
flexGrow?: csstype.Property.FlexGrow | {
|
|
6493
|
+
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
6494
|
+
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
6495
|
+
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
6496
|
+
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
6497
|
+
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
6498
|
+
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
6499
|
+
} | undefined;
|
|
6500
|
+
flexShrink?: csstype.Property.FlexShrink | {
|
|
6501
|
+
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
6502
|
+
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
6503
|
+
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
6504
|
+
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
6505
|
+
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
6506
|
+
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
6507
|
+
} | undefined;
|
|
6508
|
+
flexWrap?: csstype.Property.FlexWrap | {
|
|
6509
|
+
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
6510
|
+
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
6511
|
+
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
6512
|
+
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
6513
|
+
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
6514
|
+
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
6515
|
+
} | undefined;
|
|
6516
|
+
justifyContent?: csstype.Property.JustifyContent | {
|
|
6517
|
+
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
6518
|
+
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
6519
|
+
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
6520
|
+
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
6521
|
+
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
6522
|
+
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
6523
|
+
} | undefined;
|
|
6524
|
+
justifyItems?: csstype.Property.JustifyItems | {
|
|
6525
|
+
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
6526
|
+
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
6527
|
+
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
6528
|
+
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
6529
|
+
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
6530
|
+
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
6531
|
+
} | undefined;
|
|
6532
|
+
justifySelf?: csstype.Property.JustifySelf | {
|
|
6533
|
+
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
6534
|
+
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
6535
|
+
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
6536
|
+
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
6537
|
+
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
6538
|
+
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
6539
|
+
} | undefined;
|
|
6540
|
+
order?: csstype.Property.Order | {
|
|
6541
|
+
readonly base?: csstype.Property.Order | undefined;
|
|
6542
|
+
readonly xs?: csstype.Property.Order | undefined;
|
|
6543
|
+
readonly s?: csstype.Property.Order | undefined;
|
|
6544
|
+
readonly m?: csstype.Property.Order | undefined;
|
|
6545
|
+
readonly l?: csstype.Property.Order | undefined;
|
|
6546
|
+
readonly xl?: csstype.Property.Order | undefined;
|
|
6547
|
+
} | undefined;
|
|
6548
|
+
rowGap: SpacingValueType | {
|
|
6549
|
+
readonly base?: SpacingValueType | undefined;
|
|
6550
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6551
|
+
readonly s?: SpacingValueType | undefined;
|
|
6552
|
+
readonly m?: SpacingValueType | undefined;
|
|
6553
|
+
readonly l?: SpacingValueType | undefined;
|
|
6554
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6555
|
+
};
|
|
6556
|
+
flex: string | number | {
|
|
6557
|
+
readonly base?: string | number | undefined;
|
|
6558
|
+
readonly xs?: string | number | undefined;
|
|
6559
|
+
readonly s?: string | number | undefined;
|
|
6560
|
+
readonly m?: string | number | undefined;
|
|
6561
|
+
readonly l?: string | number | undefined;
|
|
6562
|
+
readonly xl?: string | number | undefined;
|
|
6563
|
+
};
|
|
6564
|
+
gap: SpacingValueType | {
|
|
6565
|
+
readonly base?: SpacingValueType | undefined;
|
|
6566
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6567
|
+
readonly s?: SpacingValueType | undefined;
|
|
6568
|
+
readonly m?: SpacingValueType | undefined;
|
|
6569
|
+
readonly l?: SpacingValueType | undefined;
|
|
6570
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6571
|
+
};
|
|
6572
|
+
placeSelf?: csstype.Property.PlaceSelf | {
|
|
6573
|
+
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
6574
|
+
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
6575
|
+
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
6576
|
+
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
6577
|
+
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
6578
|
+
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
6579
|
+
} | undefined;
|
|
6580
|
+
__brand__?: "platform-web" | {
|
|
6581
|
+
readonly base?: "platform-web" | undefined;
|
|
6582
|
+
readonly xs?: "platform-web" | undefined;
|
|
6583
|
+
readonly s?: "platform-web" | undefined;
|
|
6584
|
+
readonly m?: "platform-web" | undefined;
|
|
6585
|
+
readonly l?: "platform-web" | undefined;
|
|
6586
|
+
readonly xl?: "platform-web" | undefined;
|
|
6587
|
+
} | undefined;
|
|
6588
|
+
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
6589
|
+
bottom: SpacingValueType | {
|
|
6590
|
+
readonly base?: SpacingValueType | undefined;
|
|
6591
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6592
|
+
readonly s?: SpacingValueType | undefined;
|
|
6593
|
+
readonly m?: SpacingValueType | undefined;
|
|
6594
|
+
readonly l?: SpacingValueType | undefined;
|
|
6595
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6596
|
+
};
|
|
6597
|
+
left: SpacingValueType | {
|
|
6598
|
+
readonly base?: SpacingValueType | undefined;
|
|
6599
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6600
|
+
readonly s?: SpacingValueType | undefined;
|
|
6601
|
+
readonly m?: SpacingValueType | undefined;
|
|
6602
|
+
readonly l?: SpacingValueType | undefined;
|
|
6603
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6604
|
+
};
|
|
6605
|
+
position?: csstype.Property.Position | {
|
|
6606
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
6607
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
6608
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
6609
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
6610
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
6611
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
6612
|
+
} | undefined;
|
|
6613
|
+
right: SpacingValueType | {
|
|
6614
|
+
readonly base?: SpacingValueType | undefined;
|
|
6615
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6616
|
+
readonly s?: SpacingValueType | undefined;
|
|
6617
|
+
readonly m?: SpacingValueType | undefined;
|
|
6618
|
+
readonly l?: SpacingValueType | undefined;
|
|
6619
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6620
|
+
};
|
|
6621
|
+
top: SpacingValueType | {
|
|
6622
|
+
readonly base?: SpacingValueType | undefined;
|
|
6623
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6624
|
+
readonly s?: SpacingValueType | undefined;
|
|
6625
|
+
readonly m?: SpacingValueType | undefined;
|
|
6626
|
+
readonly l?: SpacingValueType | undefined;
|
|
6627
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6628
|
+
};
|
|
6629
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
6630
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
6631
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
6632
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
6633
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
6634
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
6635
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
6636
|
+
} | undefined;
|
|
6637
|
+
__brand__?: "platform-web" | {
|
|
6638
|
+
readonly base?: "platform-web" | undefined;
|
|
6639
|
+
readonly xs?: "platform-web" | undefined;
|
|
6640
|
+
readonly s?: "platform-web" | undefined;
|
|
6641
|
+
readonly m?: "platform-web" | undefined;
|
|
6642
|
+
readonly l?: "platform-web" | undefined;
|
|
6643
|
+
readonly xl?: "platform-web" | undefined;
|
|
6644
|
+
} | undefined;
|
|
6645
|
+
} & Pick<{
|
|
6646
|
+
grid?: csstype.Property.Grid | {
|
|
6647
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
6648
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
6649
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
6650
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
6651
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
6652
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
6653
|
+
} | undefined;
|
|
6654
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
6655
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
6656
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
6657
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
6658
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
6659
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
6660
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
6661
|
+
} | undefined;
|
|
6662
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
6663
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
6664
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
6665
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
6666
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
6667
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
6668
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
6669
|
+
} | undefined;
|
|
6670
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
6671
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
6672
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
6673
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
6674
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
6675
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
6676
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
6677
|
+
} | undefined;
|
|
6678
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
6679
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
6680
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
6681
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
6682
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
6683
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
6684
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
6685
|
+
} | undefined;
|
|
6686
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
6687
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
6688
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
6689
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
6690
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
6691
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
6692
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
6693
|
+
} | undefined;
|
|
6694
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
6695
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
6696
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
6697
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
6698
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
6699
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
6700
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
6701
|
+
} | undefined;
|
|
6702
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
6703
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
6704
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
6705
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
6706
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
6707
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
6708
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
6709
|
+
} | undefined;
|
|
6710
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
6711
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
6712
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
6713
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
6714
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
6715
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
6716
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
6717
|
+
} | undefined;
|
|
6718
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
6719
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
6720
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
6721
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
6722
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
6723
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
6724
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
6725
|
+
} | undefined;
|
|
6726
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
6727
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
6728
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
6729
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
6730
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
6731
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
6732
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
6733
|
+
} | undefined;
|
|
6734
|
+
gridArea?: csstype.Property.GridArea | {
|
|
6735
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
6736
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
6737
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
6738
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
6739
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
6740
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
6741
|
+
} | undefined;
|
|
6742
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
6743
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
6744
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
6745
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
6746
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
6747
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
6748
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
6749
|
+
} | undefined;
|
|
6750
|
+
gridRow?: csstype.Property.GridRow | {
|
|
6751
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
6752
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
6753
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
6754
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
6755
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
6756
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
6757
|
+
} | undefined;
|
|
6758
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
6759
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
6760
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
6761
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
6762
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
6763
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
6764
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
6765
|
+
} | undefined;
|
|
6766
|
+
__brand__?: "platform-web" | {
|
|
6767
|
+
readonly base?: "platform-web" | undefined;
|
|
6768
|
+
readonly xs?: "platform-web" | undefined;
|
|
6769
|
+
readonly s?: "platform-web" | undefined;
|
|
6770
|
+
readonly m?: "platform-web" | undefined;
|
|
6771
|
+
readonly l?: "platform-web" | undefined;
|
|
6772
|
+
readonly xl?: "platform-web" | undefined;
|
|
6773
|
+
} | undefined;
|
|
6774
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
4764
6775
|
|
|
4765
6776
|
declare type RadioGroupProps = {
|
|
4766
6777
|
/**
|
|
@@ -4999,43 +7010,6 @@ declare type AmountProps = {
|
|
|
4999
7010
|
} & TestID & StyledPropsBlade;
|
|
5000
7011
|
declare const Amount: ({ value, suffix, size, isAffixSubtle, intent, prefix, testID, currency, ...styledProps }: AmountProps) => ReactElement;
|
|
5001
7012
|
|
|
5002
|
-
declare type BaseHeaderProps = {
|
|
5003
|
-
title?: string;
|
|
5004
|
-
subtitle?: string;
|
|
5005
|
-
/**
|
|
5006
|
-
* Leading part of the header placed at the left most side of the header
|
|
5007
|
-
*/
|
|
5008
|
-
leading?: React__default.ReactNode;
|
|
5009
|
-
/**
|
|
5010
|
-
* Trailing part of the header placed at the right most side of the header
|
|
5011
|
-
*/
|
|
5012
|
-
trailing?: React__default.ReactNode;
|
|
5013
|
-
/**
|
|
5014
|
-
* Placed adjacent to the title text
|
|
5015
|
-
*/
|
|
5016
|
-
titleSuffix?: React__default.ReactNode;
|
|
5017
|
-
/**
|
|
5018
|
-
* @default true
|
|
5019
|
-
*/
|
|
5020
|
-
showDivider?: boolean;
|
|
5021
|
-
/**
|
|
5022
|
-
* @default false
|
|
5023
|
-
*/
|
|
5024
|
-
showBackButton?: boolean;
|
|
5025
|
-
/**
|
|
5026
|
-
* @default true
|
|
5027
|
-
*/
|
|
5028
|
-
showCloseButton?: boolean;
|
|
5029
|
-
onCloseButtonClick?: () => void;
|
|
5030
|
-
onBackButtonClick?: () => void;
|
|
5031
|
-
closeButtonRef: React__default.MutableRefObject<any>;
|
|
5032
|
-
} & Pick<ReactDOMAttributes, 'onClickCapture' | 'onKeyDown' | 'onKeyUp' | 'onLostPointerCapture' | 'onPointerCancel' | 'onPointerDown' | 'onPointerMove' | 'onPointerUp'>;
|
|
5033
|
-
|
|
5034
|
-
declare type BaseFooterProps$1 = {
|
|
5035
|
-
children: React__default.ReactNode;
|
|
5036
|
-
showDivider?: boolean;
|
|
5037
|
-
};
|
|
5038
|
-
|
|
5039
7013
|
declare type SnapPoints = [number, number, number];
|
|
5040
7014
|
|
|
5041
7015
|
declare type BottomSheetProps = {
|
|
@@ -5086,6 +7060,7 @@ declare const BottomSheetHeader: ({ title, subtitle, leading, titleSuffix, trail
|
|
|
5086
7060
|
|
|
5087
7061
|
type BaseFooterProps = {
|
|
5088
7062
|
children: React__default.ReactNode;
|
|
7063
|
+
metaComponentName?: string;
|
|
5089
7064
|
showDivider?: boolean;
|
|
5090
7065
|
};
|
|
5091
7066
|
|
|
@@ -5097,4 +7072,4 @@ declare const BottomSheetBody: ({ children }: {
|
|
|
5097
7072
|
|
|
5098
7073
|
declare const BottomSheet: ({ isOpen, onDismiss, children, initialFocusRef, snapPoints, }: BottomSheetProps) => React__default.ReactElement;
|
|
5099
7074
|
|
|
5100
|
-
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, 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, 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, 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 };
|
|
7075
|
+
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, 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, 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 };
|