@razorpay/blade 8.8.0 → 8.8.2
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 +2144 -264
- package/build/components/index.native.d.ts +1324 -263
- package/build/components/index.native.js +11 -11
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +40 -46
- package/build/components/index.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +1 -1
- package/build/css/bankingThemeDarkMobile.css +1 -1
- package/build/css/bankingThemeLightDesktop.css +32 -32
- package/build/css/bankingThemeLightMobile.css +32 -32
- package/build/css/paymentThemeDarkDesktop.css +1 -1
- package/build/css/paymentThemeDarkMobile.css +1 -1
- package/build/css/paymentThemeLightDesktop.css +32 -32
- package/build/css/paymentThemeLightMobile.css +32 -32
- package/build/tokens/index.native.js +2 -2
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.web.js +62 -62
- package/build/tokens/index.web.js.map +1 -1
- package/package.json +1 -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,7 +1073,14 @@ 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
1086
|
type SpaceUnits$1 = 'px' | '%' | 'fr' | 'rem' | 'em' | 'vh' | 'vw';
|
|
@@ -1322,7 +1329,7 @@ type FlexboxProps$1 = MakeObjectResponsive$1<
|
|
|
1322
1329
|
* @see https://developer.mozilla.org/docs/Web/CSS/flex
|
|
1323
1330
|
*/
|
|
1324
1331
|
flex: string | number;
|
|
1325
|
-
} & PickCSSByPlatform
|
|
1332
|
+
} & PickCSSByPlatform<
|
|
1326
1333
|
| 'flexWrap'
|
|
1327
1334
|
| 'flexDirection'
|
|
1328
1335
|
| 'flexGrow'
|
|
@@ -1345,11 +1352,11 @@ type PositionProps$1 = MakeObjectResponsive$1<
|
|
|
1345
1352
|
right: SpacingValueType$1;
|
|
1346
1353
|
bottom: SpacingValueType$1;
|
|
1347
1354
|
left: SpacingValueType$1;
|
|
1348
|
-
} & PickCSSByPlatform
|
|
1355
|
+
} & PickCSSByPlatform<'position' | 'zIndex'>
|
|
1349
1356
|
>;
|
|
1350
1357
|
|
|
1351
1358
|
type GridProps$1 = MakeObjectResponsive$1<
|
|
1352
|
-
PickCSSByPlatform
|
|
1359
|
+
PickCSSByPlatform<
|
|
1353
1360
|
| 'grid'
|
|
1354
1361
|
| 'gridColumn'
|
|
1355
1362
|
| 'gridRow'
|
|
@@ -1726,8 +1733,8 @@ declare type MakeValueResponsive<T> = [T] extends [never] ? never : T | {
|
|
|
1726
1733
|
* }
|
|
1727
1734
|
* ```
|
|
1728
1735
|
*/
|
|
1729
|
-
declare type MakeObjectResponsive<T
|
|
1730
|
-
[P in
|
|
1736
|
+
declare type MakeObjectResponsive<T, K extends keyof T = Extract<keyof T, string>> = {
|
|
1737
|
+
[P in K]: MakeValueResponsive<T[P]>;
|
|
1731
1738
|
};
|
|
1732
1739
|
|
|
1733
1740
|
declare type ArrayOfMaxLength4<T> = readonly [T?, T?, T?, T?];
|
|
@@ -2170,7 +2177,7 @@ declare type LayoutProps = MakeObjectResponsive<{
|
|
|
2170
2177
|
width: SpacingValueType;
|
|
2171
2178
|
minWidth: SpacingValueType;
|
|
2172
2179
|
maxWidth: SpacingValueType;
|
|
2173
|
-
} & PickCSSByPlatform
|
|
2180
|
+
} & PickCSSByPlatform<'display' | 'overflow' | 'overflowX' | 'overflowY' | 'textAlign'>>;
|
|
2174
2181
|
declare type FlexboxProps = MakeObjectResponsive<{
|
|
2175
2182
|
/**
|
|
2176
2183
|
* This uses the native gap property which might not work on older browsers.
|
|
@@ -2199,14 +2206,14 @@ declare type FlexboxProps = MakeObjectResponsive<{
|
|
|
2199
2206
|
* @see https://developer.mozilla.org/docs/Web/CSS/flex
|
|
2200
2207
|
*/
|
|
2201
2208
|
flex: string | number;
|
|
2202
|
-
} & PickCSSByPlatform
|
|
2209
|
+
} & PickCSSByPlatform<'flexWrap' | 'flexDirection' | 'flexGrow' | 'flexShrink' | 'flexBasis' | 'alignItems' | 'alignContent' | 'alignSelf' | 'justifyItems' | 'justifyContent' | 'justifySelf' | 'placeSelf' | 'order'>>;
|
|
2203
2210
|
declare type PositionProps = MakeObjectResponsive<{
|
|
2204
2211
|
top: SpacingValueType;
|
|
2205
2212
|
right: SpacingValueType;
|
|
2206
2213
|
bottom: SpacingValueType;
|
|
2207
2214
|
left: SpacingValueType;
|
|
2208
|
-
} & PickCSSByPlatform
|
|
2209
|
-
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'>>;
|
|
2210
2217
|
declare type ColorObjects = 'feedback' | 'surface' | 'action';
|
|
2211
2218
|
declare type BackgroundColorString<T extends ColorObjects> = `${T}.background.${DotNotationColorStringToken<Theme$1['colors'][T]['background']>}`;
|
|
2212
2219
|
declare type BorderColorString<T extends ColorObjects> = `${T}.border.${DotNotationColorStringToken<Theme$1['colors'][T]['border']>}`;
|
|
@@ -2273,46 +2280,435 @@ declare type BoxRefType = Platform.Select<{
|
|
|
2273
2280
|
native: View;
|
|
2274
2281
|
}>;
|
|
2275
2282
|
|
|
2276
|
-
declare const Box: React__default.ForwardRefExoticComponent<Partial<
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
}
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
}
|
|
2293
|
-
height: SpacingValueType
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
}
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
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
|
+
} & {
|
|
2316
2712
|
onMouseOver: React__default.MouseEventHandler<HTMLElement>;
|
|
2317
2713
|
onMouseEnter: React__default.MouseEventHandler<HTMLElement>;
|
|
2318
2714
|
onMouseLeave: React__default.MouseEventHandler<HTMLElement>;
|
|
@@ -2334,7 +2730,7 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<MakeObjectRe
|
|
|
2334
2730
|
borderTopRightRadius: "none" | "small" | "medium" | "large" | "max" | "round";
|
|
2335
2731
|
borderBottomRightRadius: "none" | "small" | "medium" | "large" | "max" | "round";
|
|
2336
2732
|
borderBottomLeftRadius: "none" | "small" | "medium" | "large" | "max" | "round";
|
|
2337
|
-
}> & {
|
|
2733
|
+
}, "backgroundColor" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomWidth" | "borderLeftColor" | "borderLeftWidth" | "borderRightColor" | "borderRightWidth" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopWidth" | "borderColor" | "borderRadius" | "borderWidth"> & {
|
|
2338
2734
|
as: "header" | "main" | "label" | "aside" | "div" | "footer" | "nav" | "section" | "span";
|
|
2339
2735
|
} & {
|
|
2340
2736
|
children?: React__default.ReactNode | React__default.ReactNode[];
|
|
@@ -2617,6 +3013,37 @@ declare type ButtonWithIconProps = ButtonCommonProps & {
|
|
|
2617
3013
|
declare type ButtonProps = ButtonWithoutIconProps | ButtonWithIconProps;
|
|
2618
3014
|
declare const Button: React__default.ForwardRefExoticComponent<ButtonProps & React__default.RefAttributes<BladeElementRef>>;
|
|
2619
3015
|
|
|
3016
|
+
declare type CounterProps = {
|
|
3017
|
+
/**
|
|
3018
|
+
* Sets the value for the counter.
|
|
3019
|
+
*/
|
|
3020
|
+
value: number;
|
|
3021
|
+
/**
|
|
3022
|
+
* Sets the max value for the counter.
|
|
3023
|
+
* If value exceedes `max` it will render `value+`
|
|
3024
|
+
*/
|
|
3025
|
+
max?: number;
|
|
3026
|
+
/**
|
|
3027
|
+
* Sets the intent of the counter.
|
|
3028
|
+
*
|
|
3029
|
+
* @default 'neutral'
|
|
3030
|
+
*/
|
|
3031
|
+
intent?: Feedback;
|
|
3032
|
+
/**
|
|
3033
|
+
* Sets the contrast of the counter.
|
|
3034
|
+
*
|
|
3035
|
+
* @default 'low'
|
|
3036
|
+
*/
|
|
3037
|
+
contrast?: 'high' | 'low';
|
|
3038
|
+
/**
|
|
3039
|
+
* Sets the size of the counter.
|
|
3040
|
+
*
|
|
3041
|
+
* @default 'medium'
|
|
3042
|
+
*/
|
|
3043
|
+
size?: 'small' | 'medium' | 'large';
|
|
3044
|
+
} & TestID & StyledPropsBlade;
|
|
3045
|
+
declare const Counter: ({ value, max, intent, contrast, size, testID, ...styledProps }: CounterProps) => React.ReactElement;
|
|
3046
|
+
|
|
2620
3047
|
type FeedbackColors$1 = `feedback.text.${DotNotationColorStringToken<
|
|
2621
3048
|
Theme$1['colors']['feedback']['text']
|
|
2622
3049
|
>}`;
|
|
@@ -2703,41 +3130,10 @@ type TextProps$1<T> = T extends {
|
|
|
2703
3130
|
: T
|
|
2704
3131
|
: T;
|
|
2705
3132
|
|
|
2706
|
-
type CounterProps$1 = {
|
|
2707
|
-
/**
|
|
2708
|
-
* Sets the value for the counter.
|
|
2709
|
-
*/
|
|
2710
|
-
value: number;
|
|
2711
|
-
/**
|
|
2712
|
-
* Sets the max value for the counter.
|
|
2713
|
-
* If value exceedes `max` it will render `value+`
|
|
2714
|
-
*/
|
|
2715
|
-
max?: number;
|
|
2716
|
-
/**
|
|
2717
|
-
* Sets the intent of the counter.
|
|
2718
|
-
*
|
|
2719
|
-
* @default 'neutral'
|
|
2720
|
-
*/
|
|
2721
|
-
intent?: Feedback;
|
|
2722
|
-
/**
|
|
2723
|
-
* Sets the contrast of the counter.
|
|
2724
|
-
*
|
|
2725
|
-
* @default 'low'
|
|
2726
|
-
*/
|
|
2727
|
-
contrast?: 'high' | 'low';
|
|
2728
|
-
/**
|
|
2729
|
-
* Sets the size of the counter.
|
|
2730
|
-
*
|
|
2731
|
-
* @default 'medium'
|
|
2732
|
-
*/
|
|
2733
|
-
size?: 'small' | 'medium' | 'large';
|
|
2734
|
-
} & TestID &
|
|
2735
|
-
StyledPropsBlade;
|
|
2736
|
-
|
|
2737
3133
|
declare const CardHeaderIcon: ({ icon }: {
|
|
2738
3134
|
icon: IconComponent$1;
|
|
2739
3135
|
}) => React__default.ReactElement;
|
|
2740
|
-
declare const CardHeaderCounter: (props: CounterProps
|
|
3136
|
+
declare const CardHeaderCounter: (props: CounterProps) => React__default.ReactElement;
|
|
2741
3137
|
declare const CardHeaderBadge: (props: BadgeProps) => React__default.ReactElement;
|
|
2742
3138
|
declare const CardHeaderText: (props: TextProps$1<{
|
|
2743
3139
|
variant: TextVariant$1;
|
|
@@ -2823,37 +3219,6 @@ declare type IconButtonProps = {
|
|
|
2823
3219
|
};
|
|
2824
3220
|
declare const IconButton: React__default.ForwardRefExoticComponent<IconButtonProps & React__default.RefAttributes<BladeElementRef>>;
|
|
2825
3221
|
|
|
2826
|
-
declare type CounterProps = {
|
|
2827
|
-
/**
|
|
2828
|
-
* Sets the value for the counter.
|
|
2829
|
-
*/
|
|
2830
|
-
value: number;
|
|
2831
|
-
/**
|
|
2832
|
-
* Sets the max value for the counter.
|
|
2833
|
-
* If value exceedes `max` it will render `value+`
|
|
2834
|
-
*/
|
|
2835
|
-
max?: number;
|
|
2836
|
-
/**
|
|
2837
|
-
* Sets the intent of the counter.
|
|
2838
|
-
*
|
|
2839
|
-
* @default 'neutral'
|
|
2840
|
-
*/
|
|
2841
|
-
intent?: Feedback;
|
|
2842
|
-
/**
|
|
2843
|
-
* Sets the contrast of the counter.
|
|
2844
|
-
*
|
|
2845
|
-
* @default 'low'
|
|
2846
|
-
*/
|
|
2847
|
-
contrast?: 'high' | 'low';
|
|
2848
|
-
/**
|
|
2849
|
-
* Sets the size of the counter.
|
|
2850
|
-
*
|
|
2851
|
-
* @default 'medium'
|
|
2852
|
-
*/
|
|
2853
|
-
size?: 'small' | 'medium' | 'large';
|
|
2854
|
-
} & TestID & StyledPropsBlade;
|
|
2855
|
-
declare const Counter: ({ value, max, intent, contrast, size, testID, ...styledProps }: CounterProps) => React.ReactElement;
|
|
2856
|
-
|
|
2857
3222
|
declare type OnChange$1 = ({ isChecked, event, value, }: {
|
|
2858
3223
|
isChecked: boolean;
|
|
2859
3224
|
event?: React__default.ChangeEvent;
|
|
@@ -3016,29 +3381,338 @@ declare const Checkbox: React__default.ForwardRefExoticComponent<{
|
|
|
3016
3381
|
*
|
|
3017
3382
|
*/
|
|
3018
3383
|
tabIndex?: number | undefined;
|
|
3019
|
-
} & TestID & Partial<Omit<
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
}
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3384
|
+
} & TestID & Partial<Omit<MarginProps & Pick<{
|
|
3385
|
+
alignContent?: csstype.Property.AlignContent | {
|
|
3386
|
+
readonly base?: csstype.Property.AlignContent | undefined;
|
|
3387
|
+
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
3388
|
+
readonly s?: csstype.Property.AlignContent | undefined;
|
|
3389
|
+
readonly m?: csstype.Property.AlignContent | undefined;
|
|
3390
|
+
readonly l?: csstype.Property.AlignContent | undefined;
|
|
3391
|
+
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
3392
|
+
} | undefined;
|
|
3393
|
+
alignItems?: csstype.Property.AlignItems | {
|
|
3394
|
+
readonly base?: csstype.Property.AlignItems | undefined;
|
|
3395
|
+
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
3396
|
+
readonly s?: csstype.Property.AlignItems | undefined;
|
|
3397
|
+
readonly m?: csstype.Property.AlignItems | undefined;
|
|
3398
|
+
readonly l?: csstype.Property.AlignItems | undefined;
|
|
3399
|
+
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
3400
|
+
} | undefined;
|
|
3401
|
+
alignSelf?: csstype.Property.AlignSelf | {
|
|
3402
|
+
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
3403
|
+
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
3404
|
+
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
3405
|
+
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
3406
|
+
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
3407
|
+
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
3408
|
+
} | undefined;
|
|
3409
|
+
columnGap: SpacingValueType | {
|
|
3410
|
+
readonly base?: SpacingValueType | undefined;
|
|
3411
|
+
readonly xs?: SpacingValueType | undefined;
|
|
3412
|
+
readonly s?: SpacingValueType | undefined;
|
|
3413
|
+
readonly m?: SpacingValueType | undefined;
|
|
3414
|
+
readonly l?: SpacingValueType | undefined;
|
|
3415
|
+
readonly xl?: SpacingValueType | undefined;
|
|
3416
|
+
};
|
|
3417
|
+
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
3418
|
+
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
3419
|
+
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
3420
|
+
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
3421
|
+
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
3422
|
+
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
3423
|
+
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
3424
|
+
} | undefined;
|
|
3425
|
+
flexDirection?: csstype.Property.FlexDirection | {
|
|
3426
|
+
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
3427
|
+
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
3428
|
+
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
3429
|
+
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
3430
|
+
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
3431
|
+
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
3432
|
+
} | undefined;
|
|
3433
|
+
flexGrow?: csstype.Property.FlexGrow | {
|
|
3434
|
+
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
3435
|
+
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
3436
|
+
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
3437
|
+
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
3438
|
+
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
3439
|
+
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
3440
|
+
} | undefined;
|
|
3441
|
+
flexShrink?: csstype.Property.FlexShrink | {
|
|
3442
|
+
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
3443
|
+
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
3444
|
+
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
3445
|
+
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
3446
|
+
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
3447
|
+
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
3448
|
+
} | undefined;
|
|
3449
|
+
flexWrap?: csstype.Property.FlexWrap | {
|
|
3450
|
+
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
3451
|
+
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
3452
|
+
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
3453
|
+
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
3454
|
+
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
3455
|
+
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
3456
|
+
} | undefined;
|
|
3457
|
+
justifyContent?: csstype.Property.JustifyContent | {
|
|
3458
|
+
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
3459
|
+
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
3460
|
+
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
3461
|
+
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
3462
|
+
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
3463
|
+
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
3464
|
+
} | undefined;
|
|
3465
|
+
justifyItems?: csstype.Property.JustifyItems | {
|
|
3466
|
+
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
3467
|
+
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
3468
|
+
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
3469
|
+
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
3470
|
+
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
3471
|
+
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
3472
|
+
} | undefined;
|
|
3473
|
+
justifySelf?: csstype.Property.JustifySelf | {
|
|
3474
|
+
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
3475
|
+
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
3476
|
+
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
3477
|
+
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
3478
|
+
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
3479
|
+
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
3480
|
+
} | undefined;
|
|
3481
|
+
order?: csstype.Property.Order | {
|
|
3482
|
+
readonly base?: csstype.Property.Order | undefined;
|
|
3483
|
+
readonly xs?: csstype.Property.Order | undefined;
|
|
3484
|
+
readonly s?: csstype.Property.Order | undefined;
|
|
3485
|
+
readonly m?: csstype.Property.Order | undefined;
|
|
3486
|
+
readonly l?: csstype.Property.Order | undefined;
|
|
3487
|
+
readonly xl?: csstype.Property.Order | undefined;
|
|
3488
|
+
} | undefined;
|
|
3489
|
+
rowGap: SpacingValueType | {
|
|
3490
|
+
readonly base?: SpacingValueType | undefined;
|
|
3491
|
+
readonly xs?: SpacingValueType | undefined;
|
|
3492
|
+
readonly s?: SpacingValueType | undefined;
|
|
3493
|
+
readonly m?: SpacingValueType | undefined;
|
|
3494
|
+
readonly l?: SpacingValueType | undefined;
|
|
3495
|
+
readonly xl?: SpacingValueType | undefined;
|
|
3496
|
+
};
|
|
3497
|
+
flex: string | number | {
|
|
3498
|
+
readonly base?: string | number | undefined;
|
|
3499
|
+
readonly xs?: string | number | undefined;
|
|
3500
|
+
readonly s?: string | number | undefined;
|
|
3501
|
+
readonly m?: string | number | undefined;
|
|
3502
|
+
readonly l?: string | number | undefined;
|
|
3503
|
+
readonly xl?: string | number | undefined;
|
|
3504
|
+
};
|
|
3505
|
+
gap: SpacingValueType | {
|
|
3506
|
+
readonly base?: SpacingValueType | undefined;
|
|
3507
|
+
readonly xs?: SpacingValueType | undefined;
|
|
3508
|
+
readonly s?: SpacingValueType | undefined;
|
|
3509
|
+
readonly m?: SpacingValueType | undefined;
|
|
3510
|
+
readonly l?: SpacingValueType | undefined;
|
|
3511
|
+
readonly xl?: SpacingValueType | undefined;
|
|
3512
|
+
};
|
|
3513
|
+
placeSelf?: csstype.Property.PlaceSelf | {
|
|
3514
|
+
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
3515
|
+
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
3516
|
+
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
3517
|
+
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
3518
|
+
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
3519
|
+
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
3520
|
+
} | undefined;
|
|
3521
|
+
__brand__?: "platform-web" | {
|
|
3522
|
+
readonly base?: "platform-web" | undefined;
|
|
3523
|
+
readonly xs?: "platform-web" | undefined;
|
|
3524
|
+
readonly s?: "platform-web" | undefined;
|
|
3525
|
+
readonly m?: "platform-web" | undefined;
|
|
3526
|
+
readonly l?: "platform-web" | undefined;
|
|
3527
|
+
readonly xl?: "platform-web" | undefined;
|
|
3528
|
+
} | undefined;
|
|
3529
|
+
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
3530
|
+
bottom: SpacingValueType | {
|
|
3531
|
+
readonly base?: SpacingValueType | undefined;
|
|
3532
|
+
readonly xs?: SpacingValueType | undefined;
|
|
3533
|
+
readonly s?: SpacingValueType | undefined;
|
|
3534
|
+
readonly m?: SpacingValueType | undefined;
|
|
3535
|
+
readonly l?: SpacingValueType | undefined;
|
|
3536
|
+
readonly xl?: SpacingValueType | undefined;
|
|
3537
|
+
};
|
|
3538
|
+
left: SpacingValueType | {
|
|
3539
|
+
readonly base?: SpacingValueType | undefined;
|
|
3540
|
+
readonly xs?: SpacingValueType | undefined;
|
|
3541
|
+
readonly s?: SpacingValueType | undefined;
|
|
3542
|
+
readonly m?: SpacingValueType | undefined;
|
|
3543
|
+
readonly l?: SpacingValueType | undefined;
|
|
3544
|
+
readonly xl?: SpacingValueType | undefined;
|
|
3545
|
+
};
|
|
3546
|
+
position?: csstype.Property.Position | {
|
|
3547
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
3548
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
3549
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
3550
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
3551
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
3552
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
3553
|
+
} | undefined;
|
|
3554
|
+
right: SpacingValueType | {
|
|
3555
|
+
readonly base?: SpacingValueType | undefined;
|
|
3556
|
+
readonly xs?: SpacingValueType | undefined;
|
|
3557
|
+
readonly s?: SpacingValueType | undefined;
|
|
3558
|
+
readonly m?: SpacingValueType | undefined;
|
|
3559
|
+
readonly l?: SpacingValueType | undefined;
|
|
3560
|
+
readonly xl?: SpacingValueType | undefined;
|
|
3561
|
+
};
|
|
3562
|
+
top: SpacingValueType | {
|
|
3563
|
+
readonly base?: SpacingValueType | undefined;
|
|
3564
|
+
readonly xs?: SpacingValueType | undefined;
|
|
3565
|
+
readonly s?: SpacingValueType | undefined;
|
|
3566
|
+
readonly m?: SpacingValueType | undefined;
|
|
3567
|
+
readonly l?: SpacingValueType | undefined;
|
|
3568
|
+
readonly xl?: SpacingValueType | undefined;
|
|
3569
|
+
};
|
|
3570
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
3571
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
3572
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
3573
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
3574
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
3575
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
3576
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
3577
|
+
} | undefined;
|
|
3578
|
+
__brand__?: "platform-web" | {
|
|
3579
|
+
readonly base?: "platform-web" | undefined;
|
|
3580
|
+
readonly xs?: "platform-web" | undefined;
|
|
3581
|
+
readonly s?: "platform-web" | undefined;
|
|
3582
|
+
readonly m?: "platform-web" | undefined;
|
|
3583
|
+
readonly l?: "platform-web" | undefined;
|
|
3584
|
+
readonly xl?: "platform-web" | undefined;
|
|
3585
|
+
} | undefined;
|
|
3586
|
+
} & Pick<{
|
|
3587
|
+
grid?: csstype.Property.Grid | {
|
|
3588
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
3589
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
3590
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
3591
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
3592
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
3593
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
3594
|
+
} | undefined;
|
|
3595
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
3596
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
3597
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
3598
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
3599
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
3600
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
3601
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
3602
|
+
} | undefined;
|
|
3603
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
3604
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
3605
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
3606
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
3607
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
3608
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
3609
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
3610
|
+
} | undefined;
|
|
3611
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
3612
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
3613
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
3614
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
3615
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
3616
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
3617
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
3618
|
+
} | undefined;
|
|
3619
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
3620
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
3621
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
3622
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
3623
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
3624
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
3625
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
3626
|
+
} | undefined;
|
|
3627
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
3628
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
3629
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
3630
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
3631
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
3632
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
3633
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
3634
|
+
} | undefined;
|
|
3635
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
3636
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
3637
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
3638
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
3639
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
3640
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
3641
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
3642
|
+
} | undefined;
|
|
3643
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
3644
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
3645
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
3646
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
3647
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
3648
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
3649
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
3650
|
+
} | undefined;
|
|
3651
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
3652
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
3653
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
3654
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
3655
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
3656
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
3657
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
3658
|
+
} | undefined;
|
|
3659
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
3660
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
3661
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
3662
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
3663
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
3664
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
3665
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
3666
|
+
} | undefined;
|
|
3667
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
3668
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
3669
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
3670
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
3671
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
3672
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
3673
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
3674
|
+
} | undefined;
|
|
3675
|
+
gridArea?: csstype.Property.GridArea | {
|
|
3676
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
3677
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
3678
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
3679
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
3680
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
3681
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
3682
|
+
} | undefined;
|
|
3683
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
3684
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
3685
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
3686
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
3687
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
3688
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
3689
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
3690
|
+
} | undefined;
|
|
3691
|
+
gridRow?: csstype.Property.GridRow | {
|
|
3692
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
3693
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
3694
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
3695
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
3696
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
3697
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
3698
|
+
} | undefined;
|
|
3699
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
3700
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
3701
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
3702
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
3703
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
3704
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
3705
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
3706
|
+
} | undefined;
|
|
3707
|
+
__brand__?: "platform-web" | {
|
|
3708
|
+
readonly base?: "platform-web" | undefined;
|
|
3709
|
+
readonly xs?: "platform-web" | undefined;
|
|
3710
|
+
readonly s?: "platform-web" | undefined;
|
|
3711
|
+
readonly m?: "platform-web" | undefined;
|
|
3712
|
+
readonly l?: "platform-web" | undefined;
|
|
3713
|
+
readonly xl?: "platform-web" | undefined;
|
|
3714
|
+
} | undefined;
|
|
3715
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
3042
3716
|
|
|
3043
3717
|
declare type CheckboxGroupProps = {
|
|
3044
3718
|
/**
|
|
@@ -3698,36 +4372,6 @@ declare type IconProps = {
|
|
|
3698
4372
|
} & StyledPropsBlade;
|
|
3699
4373
|
declare type IconComponent = React.ComponentType<IconProps>;
|
|
3700
4374
|
|
|
3701
|
-
/**
|
|
3702
|
-
* Similar to `Pick` except this returns `never` when value doesn't exist (native `Pick` returns `unknown`).
|
|
3703
|
-
*
|
|
3704
|
-
* 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.
|
|
3705
|
-
*
|
|
3706
|
-
* E.g. This will pick from ViewStyle prop if value exists else returns undefined.
|
|
3707
|
-
*
|
|
3708
|
-
* ```ts
|
|
3709
|
-
* // @ts-expect-error: T passed here may not neccessarily exist. We return `never` type when it doesn't
|
|
3710
|
-
* native: PickIfExist<ViewStyle, T>;
|
|
3711
|
-
* ```
|
|
3712
|
-
*/
|
|
3713
|
-
declare type PickIfExist<T, K extends keyof T> = {
|
|
3714
|
-
[P in K]: P extends keyof T ? T[P] : never;
|
|
3715
|
-
};
|
|
3716
|
-
/**
|
|
3717
|
-
* Picks the types based on the platform (web / native).
|
|
3718
|
-
*
|
|
3719
|
-
* E.g.
|
|
3720
|
-
* ```ts
|
|
3721
|
-
* type CSSObject = PickCSSByPlatform<'display'>
|
|
3722
|
-
* // On Web --> This will be all possible web display properties like `block`, `flex`, `inline`, and more.
|
|
3723
|
-
* // On Native --> This will be just `flex` and `none`
|
|
3724
|
-
* ```
|
|
3725
|
-
*/
|
|
3726
|
-
declare type PickCSSByPlatform<T extends keyof React__default.CSSProperties | keyof ViewStyle> = Platform.Select<{
|
|
3727
|
-
web: PickIfExist<CSSObject, T>;
|
|
3728
|
-
native: PickIfExist<ViewStyle, T>;
|
|
3729
|
-
}>;
|
|
3730
|
-
|
|
3731
4375
|
declare type FormInputLabelProps = {
|
|
3732
4376
|
/**
|
|
3733
4377
|
* Label to be shown for the input field
|
|
@@ -4071,29 +4715,338 @@ declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInput
|
|
|
4071
4715
|
* @default text
|
|
4072
4716
|
*/
|
|
4073
4717
|
type?: Type;
|
|
4074
|
-
} & Partial<Omit<
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
|
|
4081
|
-
|
|
4082
|
-
}
|
|
4083
|
-
|
|
4084
|
-
|
|
4085
|
-
|
|
4086
|
-
|
|
4087
|
-
|
|
4088
|
-
|
|
4089
|
-
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
|
|
4093
|
-
|
|
4094
|
-
|
|
4095
|
-
|
|
4096
|
-
|
|
4718
|
+
} & Partial<Omit<MarginProps & Pick<{
|
|
4719
|
+
alignContent?: csstype.Property.AlignContent | {
|
|
4720
|
+
readonly base?: csstype.Property.AlignContent | undefined;
|
|
4721
|
+
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
4722
|
+
readonly s?: csstype.Property.AlignContent | undefined;
|
|
4723
|
+
readonly m?: csstype.Property.AlignContent | undefined;
|
|
4724
|
+
readonly l?: csstype.Property.AlignContent | undefined;
|
|
4725
|
+
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
4726
|
+
} | undefined;
|
|
4727
|
+
alignItems?: csstype.Property.AlignItems | {
|
|
4728
|
+
readonly base?: csstype.Property.AlignItems | undefined;
|
|
4729
|
+
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
4730
|
+
readonly s?: csstype.Property.AlignItems | undefined;
|
|
4731
|
+
readonly m?: csstype.Property.AlignItems | undefined;
|
|
4732
|
+
readonly l?: csstype.Property.AlignItems | undefined;
|
|
4733
|
+
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
4734
|
+
} | undefined;
|
|
4735
|
+
alignSelf?: csstype.Property.AlignSelf | {
|
|
4736
|
+
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
4737
|
+
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
4738
|
+
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
4739
|
+
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
4740
|
+
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
4741
|
+
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
4742
|
+
} | undefined;
|
|
4743
|
+
columnGap: SpacingValueType | {
|
|
4744
|
+
readonly base?: SpacingValueType | undefined;
|
|
4745
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4746
|
+
readonly s?: SpacingValueType | undefined;
|
|
4747
|
+
readonly m?: SpacingValueType | undefined;
|
|
4748
|
+
readonly l?: SpacingValueType | undefined;
|
|
4749
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4750
|
+
};
|
|
4751
|
+
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
4752
|
+
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4753
|
+
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4754
|
+
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4755
|
+
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4756
|
+
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4757
|
+
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
4758
|
+
} | undefined;
|
|
4759
|
+
flexDirection?: csstype.Property.FlexDirection | {
|
|
4760
|
+
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
4761
|
+
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
4762
|
+
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
4763
|
+
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
4764
|
+
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
4765
|
+
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
4766
|
+
} | undefined;
|
|
4767
|
+
flexGrow?: csstype.Property.FlexGrow | {
|
|
4768
|
+
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
4769
|
+
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
4770
|
+
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
4771
|
+
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
4772
|
+
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
4773
|
+
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
4774
|
+
} | undefined;
|
|
4775
|
+
flexShrink?: csstype.Property.FlexShrink | {
|
|
4776
|
+
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
4777
|
+
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
4778
|
+
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
4779
|
+
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
4780
|
+
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
4781
|
+
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
4782
|
+
} | undefined;
|
|
4783
|
+
flexWrap?: csstype.Property.FlexWrap | {
|
|
4784
|
+
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
4785
|
+
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
4786
|
+
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
4787
|
+
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
4788
|
+
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
4789
|
+
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
4790
|
+
} | undefined;
|
|
4791
|
+
justifyContent?: csstype.Property.JustifyContent | {
|
|
4792
|
+
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
4793
|
+
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
4794
|
+
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
4795
|
+
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
4796
|
+
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
4797
|
+
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
4798
|
+
} | undefined;
|
|
4799
|
+
justifyItems?: csstype.Property.JustifyItems | {
|
|
4800
|
+
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
4801
|
+
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
4802
|
+
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
4803
|
+
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
4804
|
+
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
4805
|
+
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
4806
|
+
} | undefined;
|
|
4807
|
+
justifySelf?: csstype.Property.JustifySelf | {
|
|
4808
|
+
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
4809
|
+
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
4810
|
+
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
4811
|
+
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
4812
|
+
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
4813
|
+
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
4814
|
+
} | undefined;
|
|
4815
|
+
order?: csstype.Property.Order | {
|
|
4816
|
+
readonly base?: csstype.Property.Order | undefined;
|
|
4817
|
+
readonly xs?: csstype.Property.Order | undefined;
|
|
4818
|
+
readonly s?: csstype.Property.Order | undefined;
|
|
4819
|
+
readonly m?: csstype.Property.Order | undefined;
|
|
4820
|
+
readonly l?: csstype.Property.Order | undefined;
|
|
4821
|
+
readonly xl?: csstype.Property.Order | undefined;
|
|
4822
|
+
} | undefined;
|
|
4823
|
+
rowGap: SpacingValueType | {
|
|
4824
|
+
readonly base?: SpacingValueType | undefined;
|
|
4825
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4826
|
+
readonly s?: SpacingValueType | undefined;
|
|
4827
|
+
readonly m?: SpacingValueType | undefined;
|
|
4828
|
+
readonly l?: SpacingValueType | undefined;
|
|
4829
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4830
|
+
};
|
|
4831
|
+
flex: string | number | {
|
|
4832
|
+
readonly base?: string | number | undefined;
|
|
4833
|
+
readonly xs?: string | number | undefined;
|
|
4834
|
+
readonly s?: string | number | undefined;
|
|
4835
|
+
readonly m?: string | number | undefined;
|
|
4836
|
+
readonly l?: string | number | undefined;
|
|
4837
|
+
readonly xl?: string | number | undefined;
|
|
4838
|
+
};
|
|
4839
|
+
gap: SpacingValueType | {
|
|
4840
|
+
readonly base?: SpacingValueType | undefined;
|
|
4841
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4842
|
+
readonly s?: SpacingValueType | undefined;
|
|
4843
|
+
readonly m?: SpacingValueType | undefined;
|
|
4844
|
+
readonly l?: SpacingValueType | undefined;
|
|
4845
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4846
|
+
};
|
|
4847
|
+
placeSelf?: csstype.Property.PlaceSelf | {
|
|
4848
|
+
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
4849
|
+
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
4850
|
+
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
4851
|
+
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
4852
|
+
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
4853
|
+
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
4854
|
+
} | undefined;
|
|
4855
|
+
__brand__?: "platform-web" | {
|
|
4856
|
+
readonly base?: "platform-web" | undefined;
|
|
4857
|
+
readonly xs?: "platform-web" | undefined;
|
|
4858
|
+
readonly s?: "platform-web" | undefined;
|
|
4859
|
+
readonly m?: "platform-web" | undefined;
|
|
4860
|
+
readonly l?: "platform-web" | undefined;
|
|
4861
|
+
readonly xl?: "platform-web" | undefined;
|
|
4862
|
+
} | undefined;
|
|
4863
|
+
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
4864
|
+
bottom: SpacingValueType | {
|
|
4865
|
+
readonly base?: SpacingValueType | undefined;
|
|
4866
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4867
|
+
readonly s?: SpacingValueType | undefined;
|
|
4868
|
+
readonly m?: SpacingValueType | undefined;
|
|
4869
|
+
readonly l?: SpacingValueType | undefined;
|
|
4870
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4871
|
+
};
|
|
4872
|
+
left: SpacingValueType | {
|
|
4873
|
+
readonly base?: SpacingValueType | undefined;
|
|
4874
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4875
|
+
readonly s?: SpacingValueType | undefined;
|
|
4876
|
+
readonly m?: SpacingValueType | undefined;
|
|
4877
|
+
readonly l?: SpacingValueType | undefined;
|
|
4878
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4879
|
+
};
|
|
4880
|
+
position?: csstype.Property.Position | {
|
|
4881
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
4882
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
4883
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
4884
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
4885
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
4886
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
4887
|
+
} | undefined;
|
|
4888
|
+
right: SpacingValueType | {
|
|
4889
|
+
readonly base?: SpacingValueType | undefined;
|
|
4890
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4891
|
+
readonly s?: SpacingValueType | undefined;
|
|
4892
|
+
readonly m?: SpacingValueType | undefined;
|
|
4893
|
+
readonly l?: SpacingValueType | undefined;
|
|
4894
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4895
|
+
};
|
|
4896
|
+
top: SpacingValueType | {
|
|
4897
|
+
readonly base?: SpacingValueType | undefined;
|
|
4898
|
+
readonly xs?: SpacingValueType | undefined;
|
|
4899
|
+
readonly s?: SpacingValueType | undefined;
|
|
4900
|
+
readonly m?: SpacingValueType | undefined;
|
|
4901
|
+
readonly l?: SpacingValueType | undefined;
|
|
4902
|
+
readonly xl?: SpacingValueType | undefined;
|
|
4903
|
+
};
|
|
4904
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
4905
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
4906
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
4907
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
4908
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
4909
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
4910
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
4911
|
+
} | undefined;
|
|
4912
|
+
__brand__?: "platform-web" | {
|
|
4913
|
+
readonly base?: "platform-web" | undefined;
|
|
4914
|
+
readonly xs?: "platform-web" | undefined;
|
|
4915
|
+
readonly s?: "platform-web" | undefined;
|
|
4916
|
+
readonly m?: "platform-web" | undefined;
|
|
4917
|
+
readonly l?: "platform-web" | undefined;
|
|
4918
|
+
readonly xl?: "platform-web" | undefined;
|
|
4919
|
+
} | undefined;
|
|
4920
|
+
} & Pick<{
|
|
4921
|
+
grid?: csstype.Property.Grid | {
|
|
4922
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
4923
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
4924
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
4925
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
4926
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
4927
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
4928
|
+
} | undefined;
|
|
4929
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
4930
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4931
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4932
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4933
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4934
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4935
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
4936
|
+
} | undefined;
|
|
4937
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
4938
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
4939
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
4940
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
4941
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
4942
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
4943
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
4944
|
+
} | undefined;
|
|
4945
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
4946
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4947
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4948
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4949
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4950
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4951
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
4952
|
+
} | undefined;
|
|
4953
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
4954
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
4955
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
4956
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
4957
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
4958
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
4959
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
4960
|
+
} | undefined;
|
|
4961
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
4962
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
4963
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
4964
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
4965
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
4966
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
4967
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
4968
|
+
} | undefined;
|
|
4969
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
4970
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
4971
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
4972
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
4973
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
4974
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
4975
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
4976
|
+
} | undefined;
|
|
4977
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
4978
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
4979
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
4980
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
4981
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
4982
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
4983
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
4984
|
+
} | undefined;
|
|
4985
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
4986
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
4987
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
4988
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
4989
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
4990
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
4991
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
4992
|
+
} | undefined;
|
|
4993
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
4994
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
4995
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
4996
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
4997
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
4998
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
4999
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5000
|
+
} | undefined;
|
|
5001
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
5002
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5003
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5004
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5005
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5006
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5007
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5008
|
+
} | undefined;
|
|
5009
|
+
gridArea?: csstype.Property.GridArea | {
|
|
5010
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
5011
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
5012
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
5013
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
5014
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
5015
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
5016
|
+
} | undefined;
|
|
5017
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
5018
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
5019
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
5020
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
5021
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
5022
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
5023
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
5024
|
+
} | undefined;
|
|
5025
|
+
gridRow?: csstype.Property.GridRow | {
|
|
5026
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
5027
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
5028
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
5029
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
5030
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
5031
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
5032
|
+
} | undefined;
|
|
5033
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
5034
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
5035
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
5036
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
5037
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
5038
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
5039
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
5040
|
+
} | undefined;
|
|
5041
|
+
__brand__?: "platform-web" | {
|
|
5042
|
+
readonly base?: "platform-web" | undefined;
|
|
5043
|
+
readonly xs?: "platform-web" | undefined;
|
|
5044
|
+
readonly s?: "platform-web" | undefined;
|
|
5045
|
+
readonly m?: "platform-web" | undefined;
|
|
5046
|
+
readonly l?: "platform-web" | undefined;
|
|
5047
|
+
readonly xl?: "platform-web" | undefined;
|
|
5048
|
+
} | undefined;
|
|
5049
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
4097
5050
|
|
|
4098
5051
|
declare type PasswordInputExtraProps = {
|
|
4099
5052
|
/**
|
|
@@ -4126,29 +5079,338 @@ declare type PasswordInputExtraProps = {
|
|
|
4126
5079
|
autoCompleteSuggestionType?: Extract<BaseInputProps['autoCompleteSuggestionType'], 'none' | 'password' | 'newPassword'>;
|
|
4127
5080
|
};
|
|
4128
5081
|
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;
|
|
4129
|
-
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<
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
}
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
|
|
4144
|
-
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
|
|
5082
|
+
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<{
|
|
5083
|
+
alignContent?: csstype.Property.AlignContent | {
|
|
5084
|
+
readonly base?: csstype.Property.AlignContent | undefined;
|
|
5085
|
+
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
5086
|
+
readonly s?: csstype.Property.AlignContent | undefined;
|
|
5087
|
+
readonly m?: csstype.Property.AlignContent | undefined;
|
|
5088
|
+
readonly l?: csstype.Property.AlignContent | undefined;
|
|
5089
|
+
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
5090
|
+
} | undefined;
|
|
5091
|
+
alignItems?: csstype.Property.AlignItems | {
|
|
5092
|
+
readonly base?: csstype.Property.AlignItems | undefined;
|
|
5093
|
+
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
5094
|
+
readonly s?: csstype.Property.AlignItems | undefined;
|
|
5095
|
+
readonly m?: csstype.Property.AlignItems | undefined;
|
|
5096
|
+
readonly l?: csstype.Property.AlignItems | undefined;
|
|
5097
|
+
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
5098
|
+
} | undefined;
|
|
5099
|
+
alignSelf?: csstype.Property.AlignSelf | {
|
|
5100
|
+
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
5101
|
+
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
5102
|
+
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
5103
|
+
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
5104
|
+
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
5105
|
+
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
5106
|
+
} | undefined;
|
|
5107
|
+
columnGap: SpacingValueType | {
|
|
5108
|
+
readonly base?: SpacingValueType | undefined;
|
|
5109
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5110
|
+
readonly s?: SpacingValueType | undefined;
|
|
5111
|
+
readonly m?: SpacingValueType | undefined;
|
|
5112
|
+
readonly l?: SpacingValueType | undefined;
|
|
5113
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5114
|
+
};
|
|
5115
|
+
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
5116
|
+
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5117
|
+
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5118
|
+
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5119
|
+
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5120
|
+
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5121
|
+
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5122
|
+
} | undefined;
|
|
5123
|
+
flexDirection?: csstype.Property.FlexDirection | {
|
|
5124
|
+
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
5125
|
+
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
5126
|
+
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
5127
|
+
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
5128
|
+
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
5129
|
+
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
5130
|
+
} | undefined;
|
|
5131
|
+
flexGrow?: csstype.Property.FlexGrow | {
|
|
5132
|
+
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
5133
|
+
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
5134
|
+
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
5135
|
+
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
5136
|
+
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
5137
|
+
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
5138
|
+
} | undefined;
|
|
5139
|
+
flexShrink?: csstype.Property.FlexShrink | {
|
|
5140
|
+
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
5141
|
+
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
5142
|
+
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
5143
|
+
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
5144
|
+
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
5145
|
+
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
5146
|
+
} | undefined;
|
|
5147
|
+
flexWrap?: csstype.Property.FlexWrap | {
|
|
5148
|
+
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
5149
|
+
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
5150
|
+
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
5151
|
+
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
5152
|
+
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
5153
|
+
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
5154
|
+
} | undefined;
|
|
5155
|
+
justifyContent?: csstype.Property.JustifyContent | {
|
|
5156
|
+
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
5157
|
+
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
5158
|
+
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
5159
|
+
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
5160
|
+
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
5161
|
+
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
5162
|
+
} | undefined;
|
|
5163
|
+
justifyItems?: csstype.Property.JustifyItems | {
|
|
5164
|
+
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
5165
|
+
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
5166
|
+
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
5167
|
+
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
5168
|
+
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
5169
|
+
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
5170
|
+
} | undefined;
|
|
5171
|
+
justifySelf?: csstype.Property.JustifySelf | {
|
|
5172
|
+
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
5173
|
+
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
5174
|
+
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
5175
|
+
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
5176
|
+
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
5177
|
+
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
5178
|
+
} | undefined;
|
|
5179
|
+
order?: csstype.Property.Order | {
|
|
5180
|
+
readonly base?: csstype.Property.Order | undefined;
|
|
5181
|
+
readonly xs?: csstype.Property.Order | undefined;
|
|
5182
|
+
readonly s?: csstype.Property.Order | undefined;
|
|
5183
|
+
readonly m?: csstype.Property.Order | undefined;
|
|
5184
|
+
readonly l?: csstype.Property.Order | undefined;
|
|
5185
|
+
readonly xl?: csstype.Property.Order | undefined;
|
|
5186
|
+
} | undefined;
|
|
5187
|
+
rowGap: SpacingValueType | {
|
|
5188
|
+
readonly base?: SpacingValueType | undefined;
|
|
5189
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5190
|
+
readonly s?: SpacingValueType | undefined;
|
|
5191
|
+
readonly m?: SpacingValueType | undefined;
|
|
5192
|
+
readonly l?: SpacingValueType | undefined;
|
|
5193
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5194
|
+
};
|
|
5195
|
+
flex: string | number | {
|
|
5196
|
+
readonly base?: string | number | undefined;
|
|
5197
|
+
readonly xs?: string | number | undefined;
|
|
5198
|
+
readonly s?: string | number | undefined;
|
|
5199
|
+
readonly m?: string | number | undefined;
|
|
5200
|
+
readonly l?: string | number | undefined;
|
|
5201
|
+
readonly xl?: string | number | undefined;
|
|
5202
|
+
};
|
|
5203
|
+
gap: SpacingValueType | {
|
|
5204
|
+
readonly base?: SpacingValueType | undefined;
|
|
5205
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5206
|
+
readonly s?: SpacingValueType | undefined;
|
|
5207
|
+
readonly m?: SpacingValueType | undefined;
|
|
5208
|
+
readonly l?: SpacingValueType | undefined;
|
|
5209
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5210
|
+
};
|
|
5211
|
+
placeSelf?: csstype.Property.PlaceSelf | {
|
|
5212
|
+
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
5213
|
+
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
5214
|
+
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
5215
|
+
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
5216
|
+
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
5217
|
+
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
5218
|
+
} | undefined;
|
|
5219
|
+
__brand__?: "platform-web" | {
|
|
5220
|
+
readonly base?: "platform-web" | undefined;
|
|
5221
|
+
readonly xs?: "platform-web" | undefined;
|
|
5222
|
+
readonly s?: "platform-web" | undefined;
|
|
5223
|
+
readonly m?: "platform-web" | undefined;
|
|
5224
|
+
readonly l?: "platform-web" | undefined;
|
|
5225
|
+
readonly xl?: "platform-web" | undefined;
|
|
5226
|
+
} | undefined;
|
|
5227
|
+
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5228
|
+
bottom: SpacingValueType | {
|
|
5229
|
+
readonly base?: SpacingValueType | undefined;
|
|
5230
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5231
|
+
readonly s?: SpacingValueType | undefined;
|
|
5232
|
+
readonly m?: SpacingValueType | undefined;
|
|
5233
|
+
readonly l?: SpacingValueType | undefined;
|
|
5234
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5235
|
+
};
|
|
5236
|
+
left: SpacingValueType | {
|
|
5237
|
+
readonly base?: SpacingValueType | undefined;
|
|
5238
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5239
|
+
readonly s?: SpacingValueType | undefined;
|
|
5240
|
+
readonly m?: SpacingValueType | undefined;
|
|
5241
|
+
readonly l?: SpacingValueType | undefined;
|
|
5242
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5243
|
+
};
|
|
5244
|
+
position?: csstype.Property.Position | {
|
|
5245
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
5246
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
5247
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
5248
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
5249
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
5250
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
5251
|
+
} | undefined;
|
|
5252
|
+
right: SpacingValueType | {
|
|
5253
|
+
readonly base?: SpacingValueType | undefined;
|
|
5254
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5255
|
+
readonly s?: SpacingValueType | undefined;
|
|
5256
|
+
readonly m?: SpacingValueType | undefined;
|
|
5257
|
+
readonly l?: SpacingValueType | undefined;
|
|
5258
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5259
|
+
};
|
|
5260
|
+
top: SpacingValueType | {
|
|
5261
|
+
readonly base?: SpacingValueType | undefined;
|
|
5262
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5263
|
+
readonly s?: SpacingValueType | undefined;
|
|
5264
|
+
readonly m?: SpacingValueType | undefined;
|
|
5265
|
+
readonly l?: SpacingValueType | undefined;
|
|
5266
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5267
|
+
};
|
|
5268
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
5269
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
5270
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
5271
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
5272
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
5273
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
5274
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
5275
|
+
} | undefined;
|
|
5276
|
+
__brand__?: "platform-web" | {
|
|
5277
|
+
readonly base?: "platform-web" | undefined;
|
|
5278
|
+
readonly xs?: "platform-web" | undefined;
|
|
5279
|
+
readonly s?: "platform-web" | undefined;
|
|
5280
|
+
readonly m?: "platform-web" | undefined;
|
|
5281
|
+
readonly l?: "platform-web" | undefined;
|
|
5282
|
+
readonly xl?: "platform-web" | undefined;
|
|
5283
|
+
} | undefined;
|
|
5284
|
+
} & Pick<{
|
|
5285
|
+
grid?: csstype.Property.Grid | {
|
|
5286
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
5287
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
5288
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
5289
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
5290
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
5291
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
5292
|
+
} | undefined;
|
|
5293
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
5294
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5295
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5296
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5297
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5298
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5299
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5300
|
+
} | undefined;
|
|
5301
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
5302
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
5303
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
5304
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
5305
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
5306
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
5307
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
5308
|
+
} | undefined;
|
|
5309
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
5310
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5311
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5312
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5313
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5314
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5315
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5316
|
+
} | undefined;
|
|
5317
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
5318
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
5319
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
5320
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
5321
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
5322
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
5323
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
5324
|
+
} | undefined;
|
|
5325
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
5326
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
5327
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
5328
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
5329
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
5330
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
5331
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
5332
|
+
} | undefined;
|
|
5333
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
5334
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
5335
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
5336
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
5337
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
5338
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
5339
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
5340
|
+
} | undefined;
|
|
5341
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
5342
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
5343
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
5344
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
5345
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
5346
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
5347
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
5348
|
+
} | undefined;
|
|
5349
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
5350
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
5351
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
5352
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
5353
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
5354
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
5355
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
5356
|
+
} | undefined;
|
|
5357
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
5358
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5359
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5360
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5361
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5362
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5363
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5364
|
+
} | undefined;
|
|
5365
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
5366
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5367
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5368
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5369
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5370
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5371
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5372
|
+
} | undefined;
|
|
5373
|
+
gridArea?: csstype.Property.GridArea | {
|
|
5374
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
5375
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
5376
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
5377
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
5378
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
5379
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
5380
|
+
} | undefined;
|
|
5381
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
5382
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
5383
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
5384
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
5385
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
5386
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
5387
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
5388
|
+
} | undefined;
|
|
5389
|
+
gridRow?: csstype.Property.GridRow | {
|
|
5390
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
5391
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
5392
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
5393
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
5394
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
5395
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
5396
|
+
} | undefined;
|
|
5397
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
5398
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
5399
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
5400
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
5401
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
5402
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
5403
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
5404
|
+
} | undefined;
|
|
5405
|
+
__brand__?: "platform-web" | {
|
|
5406
|
+
readonly base?: "platform-web" | undefined;
|
|
5407
|
+
readonly xs?: "platform-web" | undefined;
|
|
5408
|
+
readonly s?: "platform-web" | undefined;
|
|
5409
|
+
readonly m?: "platform-web" | undefined;
|
|
5410
|
+
readonly l?: "platform-web" | undefined;
|
|
5411
|
+
readonly xl?: "platform-web" | undefined;
|
|
5412
|
+
} | undefined;
|
|
5413
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
4152
5414
|
|
|
4153
5415
|
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'> & {
|
|
4154
5416
|
/**
|
|
@@ -4169,29 +5431,338 @@ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputP
|
|
|
4169
5431
|
* Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
|
|
4170
5432
|
*/
|
|
4171
5433
|
onClearButtonClick?: (() => void) | undefined;
|
|
4172
|
-
} & Partial<Omit<
|
|
4173
|
-
|
|
4174
|
-
|
|
4175
|
-
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
|
|
4179
|
-
|
|
4180
|
-
}
|
|
4181
|
-
|
|
4182
|
-
|
|
4183
|
-
|
|
4184
|
-
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4189
|
-
|
|
4190
|
-
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
|
|
4194
|
-
|
|
5434
|
+
} & Partial<Omit<MarginProps & Pick<{
|
|
5435
|
+
alignContent?: csstype.Property.AlignContent | {
|
|
5436
|
+
readonly base?: csstype.Property.AlignContent | undefined;
|
|
5437
|
+
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
5438
|
+
readonly s?: csstype.Property.AlignContent | undefined;
|
|
5439
|
+
readonly m?: csstype.Property.AlignContent | undefined;
|
|
5440
|
+
readonly l?: csstype.Property.AlignContent | undefined;
|
|
5441
|
+
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
5442
|
+
} | undefined;
|
|
5443
|
+
alignItems?: csstype.Property.AlignItems | {
|
|
5444
|
+
readonly base?: csstype.Property.AlignItems | undefined;
|
|
5445
|
+
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
5446
|
+
readonly s?: csstype.Property.AlignItems | undefined;
|
|
5447
|
+
readonly m?: csstype.Property.AlignItems | undefined;
|
|
5448
|
+
readonly l?: csstype.Property.AlignItems | undefined;
|
|
5449
|
+
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
5450
|
+
} | undefined;
|
|
5451
|
+
alignSelf?: csstype.Property.AlignSelf | {
|
|
5452
|
+
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
5453
|
+
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
5454
|
+
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
5455
|
+
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
5456
|
+
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
5457
|
+
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
5458
|
+
} | undefined;
|
|
5459
|
+
columnGap: SpacingValueType | {
|
|
5460
|
+
readonly base?: SpacingValueType | undefined;
|
|
5461
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5462
|
+
readonly s?: SpacingValueType | undefined;
|
|
5463
|
+
readonly m?: SpacingValueType | undefined;
|
|
5464
|
+
readonly l?: SpacingValueType | undefined;
|
|
5465
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5466
|
+
};
|
|
5467
|
+
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
5468
|
+
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5469
|
+
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5470
|
+
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5471
|
+
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5472
|
+
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5473
|
+
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
5474
|
+
} | undefined;
|
|
5475
|
+
flexDirection?: csstype.Property.FlexDirection | {
|
|
5476
|
+
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
5477
|
+
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
5478
|
+
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
5479
|
+
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
5480
|
+
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
5481
|
+
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
5482
|
+
} | undefined;
|
|
5483
|
+
flexGrow?: csstype.Property.FlexGrow | {
|
|
5484
|
+
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
5485
|
+
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
5486
|
+
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
5487
|
+
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
5488
|
+
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
5489
|
+
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
5490
|
+
} | undefined;
|
|
5491
|
+
flexShrink?: csstype.Property.FlexShrink | {
|
|
5492
|
+
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
5493
|
+
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
5494
|
+
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
5495
|
+
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
5496
|
+
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
5497
|
+
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
5498
|
+
} | undefined;
|
|
5499
|
+
flexWrap?: csstype.Property.FlexWrap | {
|
|
5500
|
+
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
5501
|
+
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
5502
|
+
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
5503
|
+
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
5504
|
+
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
5505
|
+
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
5506
|
+
} | undefined;
|
|
5507
|
+
justifyContent?: csstype.Property.JustifyContent | {
|
|
5508
|
+
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
5509
|
+
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
5510
|
+
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
5511
|
+
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
5512
|
+
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
5513
|
+
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
5514
|
+
} | undefined;
|
|
5515
|
+
justifyItems?: csstype.Property.JustifyItems | {
|
|
5516
|
+
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
5517
|
+
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
5518
|
+
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
5519
|
+
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
5520
|
+
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
5521
|
+
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
5522
|
+
} | undefined;
|
|
5523
|
+
justifySelf?: csstype.Property.JustifySelf | {
|
|
5524
|
+
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
5525
|
+
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
5526
|
+
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
5527
|
+
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
5528
|
+
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
5529
|
+
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
5530
|
+
} | undefined;
|
|
5531
|
+
order?: csstype.Property.Order | {
|
|
5532
|
+
readonly base?: csstype.Property.Order | undefined;
|
|
5533
|
+
readonly xs?: csstype.Property.Order | undefined;
|
|
5534
|
+
readonly s?: csstype.Property.Order | undefined;
|
|
5535
|
+
readonly m?: csstype.Property.Order | undefined;
|
|
5536
|
+
readonly l?: csstype.Property.Order | undefined;
|
|
5537
|
+
readonly xl?: csstype.Property.Order | undefined;
|
|
5538
|
+
} | undefined;
|
|
5539
|
+
rowGap: SpacingValueType | {
|
|
5540
|
+
readonly base?: SpacingValueType | undefined;
|
|
5541
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5542
|
+
readonly s?: SpacingValueType | undefined;
|
|
5543
|
+
readonly m?: SpacingValueType | undefined;
|
|
5544
|
+
readonly l?: SpacingValueType | undefined;
|
|
5545
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5546
|
+
};
|
|
5547
|
+
flex: string | number | {
|
|
5548
|
+
readonly base?: string | number | undefined;
|
|
5549
|
+
readonly xs?: string | number | undefined;
|
|
5550
|
+
readonly s?: string | number | undefined;
|
|
5551
|
+
readonly m?: string | number | undefined;
|
|
5552
|
+
readonly l?: string | number | undefined;
|
|
5553
|
+
readonly xl?: string | number | undefined;
|
|
5554
|
+
};
|
|
5555
|
+
gap: SpacingValueType | {
|
|
5556
|
+
readonly base?: SpacingValueType | undefined;
|
|
5557
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5558
|
+
readonly s?: SpacingValueType | undefined;
|
|
5559
|
+
readonly m?: SpacingValueType | undefined;
|
|
5560
|
+
readonly l?: SpacingValueType | undefined;
|
|
5561
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5562
|
+
};
|
|
5563
|
+
placeSelf?: csstype.Property.PlaceSelf | {
|
|
5564
|
+
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
5565
|
+
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
5566
|
+
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
5567
|
+
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
5568
|
+
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
5569
|
+
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
5570
|
+
} | undefined;
|
|
5571
|
+
__brand__?: "platform-web" | {
|
|
5572
|
+
readonly base?: "platform-web" | undefined;
|
|
5573
|
+
readonly xs?: "platform-web" | undefined;
|
|
5574
|
+
readonly s?: "platform-web" | undefined;
|
|
5575
|
+
readonly m?: "platform-web" | undefined;
|
|
5576
|
+
readonly l?: "platform-web" | undefined;
|
|
5577
|
+
readonly xl?: "platform-web" | undefined;
|
|
5578
|
+
} | undefined;
|
|
5579
|
+
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5580
|
+
bottom: SpacingValueType | {
|
|
5581
|
+
readonly base?: SpacingValueType | undefined;
|
|
5582
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5583
|
+
readonly s?: SpacingValueType | undefined;
|
|
5584
|
+
readonly m?: SpacingValueType | undefined;
|
|
5585
|
+
readonly l?: SpacingValueType | undefined;
|
|
5586
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5587
|
+
};
|
|
5588
|
+
left: SpacingValueType | {
|
|
5589
|
+
readonly base?: SpacingValueType | undefined;
|
|
5590
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5591
|
+
readonly s?: SpacingValueType | undefined;
|
|
5592
|
+
readonly m?: SpacingValueType | undefined;
|
|
5593
|
+
readonly l?: SpacingValueType | undefined;
|
|
5594
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5595
|
+
};
|
|
5596
|
+
position?: csstype.Property.Position | {
|
|
5597
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
5598
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
5599
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
5600
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
5601
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
5602
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
5603
|
+
} | undefined;
|
|
5604
|
+
right: SpacingValueType | {
|
|
5605
|
+
readonly base?: SpacingValueType | undefined;
|
|
5606
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5607
|
+
readonly s?: SpacingValueType | undefined;
|
|
5608
|
+
readonly m?: SpacingValueType | undefined;
|
|
5609
|
+
readonly l?: SpacingValueType | undefined;
|
|
5610
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5611
|
+
};
|
|
5612
|
+
top: SpacingValueType | {
|
|
5613
|
+
readonly base?: SpacingValueType | undefined;
|
|
5614
|
+
readonly xs?: SpacingValueType | undefined;
|
|
5615
|
+
readonly s?: SpacingValueType | undefined;
|
|
5616
|
+
readonly m?: SpacingValueType | undefined;
|
|
5617
|
+
readonly l?: SpacingValueType | undefined;
|
|
5618
|
+
readonly xl?: SpacingValueType | undefined;
|
|
5619
|
+
};
|
|
5620
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
5621
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
5622
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
5623
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
5624
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
5625
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
5626
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
5627
|
+
} | undefined;
|
|
5628
|
+
__brand__?: "platform-web" | {
|
|
5629
|
+
readonly base?: "platform-web" | undefined;
|
|
5630
|
+
readonly xs?: "platform-web" | undefined;
|
|
5631
|
+
readonly s?: "platform-web" | undefined;
|
|
5632
|
+
readonly m?: "platform-web" | undefined;
|
|
5633
|
+
readonly l?: "platform-web" | undefined;
|
|
5634
|
+
readonly xl?: "platform-web" | undefined;
|
|
5635
|
+
} | undefined;
|
|
5636
|
+
} & Pick<{
|
|
5637
|
+
grid?: csstype.Property.Grid | {
|
|
5638
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
5639
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
5640
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
5641
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
5642
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
5643
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
5644
|
+
} | undefined;
|
|
5645
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
5646
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5647
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5648
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5649
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5650
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5651
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
5652
|
+
} | undefined;
|
|
5653
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
5654
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
5655
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
5656
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
5657
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
5658
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
5659
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
5660
|
+
} | undefined;
|
|
5661
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
5662
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5663
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5664
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5665
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5666
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5667
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
5668
|
+
} | undefined;
|
|
5669
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
5670
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
5671
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
5672
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
5673
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
5674
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
5675
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
5676
|
+
} | undefined;
|
|
5677
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
5678
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
5679
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
5680
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
5681
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
5682
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
5683
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
5684
|
+
} | undefined;
|
|
5685
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
5686
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
5687
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
5688
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
5689
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
5690
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
5691
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
5692
|
+
} | undefined;
|
|
5693
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
5694
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
5695
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
5696
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
5697
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
5698
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
5699
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
5700
|
+
} | undefined;
|
|
5701
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
5702
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
5703
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
5704
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
5705
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
5706
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
5707
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
5708
|
+
} | undefined;
|
|
5709
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
5710
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5711
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5712
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5713
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5714
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5715
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
5716
|
+
} | undefined;
|
|
5717
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
5718
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5719
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5720
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5721
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5722
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5723
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
5724
|
+
} | undefined;
|
|
5725
|
+
gridArea?: csstype.Property.GridArea | {
|
|
5726
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
5727
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
5728
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
5729
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
5730
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
5731
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
5732
|
+
} | undefined;
|
|
5733
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
5734
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
5735
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
5736
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
5737
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
5738
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
5739
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
5740
|
+
} | undefined;
|
|
5741
|
+
gridRow?: csstype.Property.GridRow | {
|
|
5742
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
5743
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
5744
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
5745
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
5746
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
5747
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
5748
|
+
} | undefined;
|
|
5749
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
5750
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
5751
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
5752
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
5753
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
5754
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
5755
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
5756
|
+
} | undefined;
|
|
5757
|
+
__brand__?: "platform-web" | {
|
|
5758
|
+
readonly base?: "platform-web" | undefined;
|
|
5759
|
+
readonly xs?: "platform-web" | undefined;
|
|
5760
|
+
readonly s?: "platform-web" | undefined;
|
|
5761
|
+
readonly m?: "platform-web" | undefined;
|
|
5762
|
+
readonly l?: "platform-web" | undefined;
|
|
5763
|
+
readonly xl?: "platform-web" | undefined;
|
|
5764
|
+
} | undefined;
|
|
5765
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
4195
5766
|
|
|
4196
5767
|
declare type FormInputOnEventWithIndex = ({ name, value, inputIndex, }: {
|
|
4197
5768
|
name?: string;
|
|
@@ -4838,29 +6409,338 @@ declare const Radio: React__default.ForwardRefExoticComponent<{
|
|
|
4838
6409
|
* @default "medium"
|
|
4839
6410
|
*/
|
|
4840
6411
|
size?: "small" | "medium" | undefined;
|
|
4841
|
-
} & TestID & Partial<Omit<
|
|
4842
|
-
|
|
4843
|
-
|
|
4844
|
-
|
|
4845
|
-
|
|
4846
|
-
|
|
4847
|
-
|
|
4848
|
-
|
|
4849
|
-
}
|
|
4850
|
-
|
|
4851
|
-
|
|
4852
|
-
|
|
4853
|
-
|
|
4854
|
-
|
|
4855
|
-
|
|
4856
|
-
|
|
4857
|
-
|
|
4858
|
-
|
|
4859
|
-
|
|
4860
|
-
|
|
4861
|
-
|
|
4862
|
-
|
|
4863
|
-
|
|
6412
|
+
} & TestID & Partial<Omit<MarginProps & Pick<{
|
|
6413
|
+
alignContent?: csstype.Property.AlignContent | {
|
|
6414
|
+
readonly base?: csstype.Property.AlignContent | undefined;
|
|
6415
|
+
readonly xs?: csstype.Property.AlignContent | undefined;
|
|
6416
|
+
readonly s?: csstype.Property.AlignContent | undefined;
|
|
6417
|
+
readonly m?: csstype.Property.AlignContent | undefined;
|
|
6418
|
+
readonly l?: csstype.Property.AlignContent | undefined;
|
|
6419
|
+
readonly xl?: csstype.Property.AlignContent | undefined;
|
|
6420
|
+
} | undefined;
|
|
6421
|
+
alignItems?: csstype.Property.AlignItems | {
|
|
6422
|
+
readonly base?: csstype.Property.AlignItems | undefined;
|
|
6423
|
+
readonly xs?: csstype.Property.AlignItems | undefined;
|
|
6424
|
+
readonly s?: csstype.Property.AlignItems | undefined;
|
|
6425
|
+
readonly m?: csstype.Property.AlignItems | undefined;
|
|
6426
|
+
readonly l?: csstype.Property.AlignItems | undefined;
|
|
6427
|
+
readonly xl?: csstype.Property.AlignItems | undefined;
|
|
6428
|
+
} | undefined;
|
|
6429
|
+
alignSelf?: csstype.Property.AlignSelf | {
|
|
6430
|
+
readonly base?: csstype.Property.AlignSelf | undefined;
|
|
6431
|
+
readonly xs?: csstype.Property.AlignSelf | undefined;
|
|
6432
|
+
readonly s?: csstype.Property.AlignSelf | undefined;
|
|
6433
|
+
readonly m?: csstype.Property.AlignSelf | undefined;
|
|
6434
|
+
readonly l?: csstype.Property.AlignSelf | undefined;
|
|
6435
|
+
readonly xl?: csstype.Property.AlignSelf | undefined;
|
|
6436
|
+
} | undefined;
|
|
6437
|
+
columnGap: SpacingValueType | {
|
|
6438
|
+
readonly base?: SpacingValueType | undefined;
|
|
6439
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6440
|
+
readonly s?: SpacingValueType | undefined;
|
|
6441
|
+
readonly m?: SpacingValueType | undefined;
|
|
6442
|
+
readonly l?: SpacingValueType | undefined;
|
|
6443
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6444
|
+
};
|
|
6445
|
+
flexBasis?: csstype.Property.FlexBasis<string | number> | {
|
|
6446
|
+
readonly base?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6447
|
+
readonly xs?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6448
|
+
readonly s?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6449
|
+
readonly m?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6450
|
+
readonly l?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6451
|
+
readonly xl?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
6452
|
+
} | undefined;
|
|
6453
|
+
flexDirection?: csstype.Property.FlexDirection | {
|
|
6454
|
+
readonly base?: csstype.Property.FlexDirection | undefined;
|
|
6455
|
+
readonly xs?: csstype.Property.FlexDirection | undefined;
|
|
6456
|
+
readonly s?: csstype.Property.FlexDirection | undefined;
|
|
6457
|
+
readonly m?: csstype.Property.FlexDirection | undefined;
|
|
6458
|
+
readonly l?: csstype.Property.FlexDirection | undefined;
|
|
6459
|
+
readonly xl?: csstype.Property.FlexDirection | undefined;
|
|
6460
|
+
} | undefined;
|
|
6461
|
+
flexGrow?: csstype.Property.FlexGrow | {
|
|
6462
|
+
readonly base?: csstype.Property.FlexGrow | undefined;
|
|
6463
|
+
readonly xs?: csstype.Property.FlexGrow | undefined;
|
|
6464
|
+
readonly s?: csstype.Property.FlexGrow | undefined;
|
|
6465
|
+
readonly m?: csstype.Property.FlexGrow | undefined;
|
|
6466
|
+
readonly l?: csstype.Property.FlexGrow | undefined;
|
|
6467
|
+
readonly xl?: csstype.Property.FlexGrow | undefined;
|
|
6468
|
+
} | undefined;
|
|
6469
|
+
flexShrink?: csstype.Property.FlexShrink | {
|
|
6470
|
+
readonly base?: csstype.Property.FlexShrink | undefined;
|
|
6471
|
+
readonly xs?: csstype.Property.FlexShrink | undefined;
|
|
6472
|
+
readonly s?: csstype.Property.FlexShrink | undefined;
|
|
6473
|
+
readonly m?: csstype.Property.FlexShrink | undefined;
|
|
6474
|
+
readonly l?: csstype.Property.FlexShrink | undefined;
|
|
6475
|
+
readonly xl?: csstype.Property.FlexShrink | undefined;
|
|
6476
|
+
} | undefined;
|
|
6477
|
+
flexWrap?: csstype.Property.FlexWrap | {
|
|
6478
|
+
readonly base?: csstype.Property.FlexWrap | undefined;
|
|
6479
|
+
readonly xs?: csstype.Property.FlexWrap | undefined;
|
|
6480
|
+
readonly s?: csstype.Property.FlexWrap | undefined;
|
|
6481
|
+
readonly m?: csstype.Property.FlexWrap | undefined;
|
|
6482
|
+
readonly l?: csstype.Property.FlexWrap | undefined;
|
|
6483
|
+
readonly xl?: csstype.Property.FlexWrap | undefined;
|
|
6484
|
+
} | undefined;
|
|
6485
|
+
justifyContent?: csstype.Property.JustifyContent | {
|
|
6486
|
+
readonly base?: csstype.Property.JustifyContent | undefined;
|
|
6487
|
+
readonly xs?: csstype.Property.JustifyContent | undefined;
|
|
6488
|
+
readonly s?: csstype.Property.JustifyContent | undefined;
|
|
6489
|
+
readonly m?: csstype.Property.JustifyContent | undefined;
|
|
6490
|
+
readonly l?: csstype.Property.JustifyContent | undefined;
|
|
6491
|
+
readonly xl?: csstype.Property.JustifyContent | undefined;
|
|
6492
|
+
} | undefined;
|
|
6493
|
+
justifyItems?: csstype.Property.JustifyItems | {
|
|
6494
|
+
readonly base?: csstype.Property.JustifyItems | undefined;
|
|
6495
|
+
readonly xs?: csstype.Property.JustifyItems | undefined;
|
|
6496
|
+
readonly s?: csstype.Property.JustifyItems | undefined;
|
|
6497
|
+
readonly m?: csstype.Property.JustifyItems | undefined;
|
|
6498
|
+
readonly l?: csstype.Property.JustifyItems | undefined;
|
|
6499
|
+
readonly xl?: csstype.Property.JustifyItems | undefined;
|
|
6500
|
+
} | undefined;
|
|
6501
|
+
justifySelf?: csstype.Property.JustifySelf | {
|
|
6502
|
+
readonly base?: csstype.Property.JustifySelf | undefined;
|
|
6503
|
+
readonly xs?: csstype.Property.JustifySelf | undefined;
|
|
6504
|
+
readonly s?: csstype.Property.JustifySelf | undefined;
|
|
6505
|
+
readonly m?: csstype.Property.JustifySelf | undefined;
|
|
6506
|
+
readonly l?: csstype.Property.JustifySelf | undefined;
|
|
6507
|
+
readonly xl?: csstype.Property.JustifySelf | undefined;
|
|
6508
|
+
} | undefined;
|
|
6509
|
+
order?: csstype.Property.Order | {
|
|
6510
|
+
readonly base?: csstype.Property.Order | undefined;
|
|
6511
|
+
readonly xs?: csstype.Property.Order | undefined;
|
|
6512
|
+
readonly s?: csstype.Property.Order | undefined;
|
|
6513
|
+
readonly m?: csstype.Property.Order | undefined;
|
|
6514
|
+
readonly l?: csstype.Property.Order | undefined;
|
|
6515
|
+
readonly xl?: csstype.Property.Order | undefined;
|
|
6516
|
+
} | undefined;
|
|
6517
|
+
rowGap: SpacingValueType | {
|
|
6518
|
+
readonly base?: SpacingValueType | undefined;
|
|
6519
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6520
|
+
readonly s?: SpacingValueType | undefined;
|
|
6521
|
+
readonly m?: SpacingValueType | undefined;
|
|
6522
|
+
readonly l?: SpacingValueType | undefined;
|
|
6523
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6524
|
+
};
|
|
6525
|
+
flex: string | number | {
|
|
6526
|
+
readonly base?: string | number | undefined;
|
|
6527
|
+
readonly xs?: string | number | undefined;
|
|
6528
|
+
readonly s?: string | number | undefined;
|
|
6529
|
+
readonly m?: string | number | undefined;
|
|
6530
|
+
readonly l?: string | number | undefined;
|
|
6531
|
+
readonly xl?: string | number | undefined;
|
|
6532
|
+
};
|
|
6533
|
+
gap: SpacingValueType | {
|
|
6534
|
+
readonly base?: SpacingValueType | undefined;
|
|
6535
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6536
|
+
readonly s?: SpacingValueType | undefined;
|
|
6537
|
+
readonly m?: SpacingValueType | undefined;
|
|
6538
|
+
readonly l?: SpacingValueType | undefined;
|
|
6539
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6540
|
+
};
|
|
6541
|
+
placeSelf?: csstype.Property.PlaceSelf | {
|
|
6542
|
+
readonly base?: csstype.Property.PlaceSelf | undefined;
|
|
6543
|
+
readonly xs?: csstype.Property.PlaceSelf | undefined;
|
|
6544
|
+
readonly s?: csstype.Property.PlaceSelf | undefined;
|
|
6545
|
+
readonly m?: csstype.Property.PlaceSelf | undefined;
|
|
6546
|
+
readonly l?: csstype.Property.PlaceSelf | undefined;
|
|
6547
|
+
readonly xl?: csstype.Property.PlaceSelf | undefined;
|
|
6548
|
+
} | undefined;
|
|
6549
|
+
__brand__?: "platform-web" | {
|
|
6550
|
+
readonly base?: "platform-web" | undefined;
|
|
6551
|
+
readonly xs?: "platform-web" | undefined;
|
|
6552
|
+
readonly s?: "platform-web" | undefined;
|
|
6553
|
+
readonly m?: "platform-web" | undefined;
|
|
6554
|
+
readonly l?: "platform-web" | undefined;
|
|
6555
|
+
readonly xl?: "platform-web" | undefined;
|
|
6556
|
+
} | undefined;
|
|
6557
|
+
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
6558
|
+
bottom: SpacingValueType | {
|
|
6559
|
+
readonly base?: SpacingValueType | undefined;
|
|
6560
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6561
|
+
readonly s?: SpacingValueType | undefined;
|
|
6562
|
+
readonly m?: SpacingValueType | undefined;
|
|
6563
|
+
readonly l?: SpacingValueType | undefined;
|
|
6564
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6565
|
+
};
|
|
6566
|
+
left: SpacingValueType | {
|
|
6567
|
+
readonly base?: SpacingValueType | undefined;
|
|
6568
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6569
|
+
readonly s?: SpacingValueType | undefined;
|
|
6570
|
+
readonly m?: SpacingValueType | undefined;
|
|
6571
|
+
readonly l?: SpacingValueType | undefined;
|
|
6572
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6573
|
+
};
|
|
6574
|
+
position?: csstype.Property.Position | {
|
|
6575
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
6576
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
6577
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
6578
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
6579
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
6580
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
6581
|
+
} | undefined;
|
|
6582
|
+
right: SpacingValueType | {
|
|
6583
|
+
readonly base?: SpacingValueType | undefined;
|
|
6584
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6585
|
+
readonly s?: SpacingValueType | undefined;
|
|
6586
|
+
readonly m?: SpacingValueType | undefined;
|
|
6587
|
+
readonly l?: SpacingValueType | undefined;
|
|
6588
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6589
|
+
};
|
|
6590
|
+
top: SpacingValueType | {
|
|
6591
|
+
readonly base?: SpacingValueType | undefined;
|
|
6592
|
+
readonly xs?: SpacingValueType | undefined;
|
|
6593
|
+
readonly s?: SpacingValueType | undefined;
|
|
6594
|
+
readonly m?: SpacingValueType | undefined;
|
|
6595
|
+
readonly l?: SpacingValueType | undefined;
|
|
6596
|
+
readonly xl?: SpacingValueType | undefined;
|
|
6597
|
+
};
|
|
6598
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
6599
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
6600
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
6601
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
6602
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
6603
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
6604
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
6605
|
+
} | undefined;
|
|
6606
|
+
__brand__?: "platform-web" | {
|
|
6607
|
+
readonly base?: "platform-web" | undefined;
|
|
6608
|
+
readonly xs?: "platform-web" | undefined;
|
|
6609
|
+
readonly s?: "platform-web" | undefined;
|
|
6610
|
+
readonly m?: "platform-web" | undefined;
|
|
6611
|
+
readonly l?: "platform-web" | undefined;
|
|
6612
|
+
readonly xl?: "platform-web" | undefined;
|
|
6613
|
+
} | undefined;
|
|
6614
|
+
} & Pick<{
|
|
6615
|
+
grid?: csstype.Property.Grid | {
|
|
6616
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
6617
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
6618
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
6619
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
6620
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
6621
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
6622
|
+
} | undefined;
|
|
6623
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
6624
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
6625
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
6626
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
6627
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
6628
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
6629
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
6630
|
+
} | undefined;
|
|
6631
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
6632
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
6633
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
6634
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
6635
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
6636
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
6637
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
6638
|
+
} | undefined;
|
|
6639
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
6640
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
6641
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
6642
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
6643
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
6644
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
6645
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
6646
|
+
} | undefined;
|
|
6647
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
6648
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
6649
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
6650
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
6651
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
6652
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
6653
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
6654
|
+
} | undefined;
|
|
6655
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
6656
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
6657
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
6658
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
6659
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
6660
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
6661
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
6662
|
+
} | undefined;
|
|
6663
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
6664
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
6665
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
6666
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
6667
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
6668
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
6669
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
6670
|
+
} | undefined;
|
|
6671
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
6672
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
6673
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
6674
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
6675
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
6676
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
6677
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
6678
|
+
} | undefined;
|
|
6679
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
6680
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
6681
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
6682
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
6683
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
6684
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
6685
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
6686
|
+
} | undefined;
|
|
6687
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
6688
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
6689
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
6690
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
6691
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
6692
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
6693
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
6694
|
+
} | undefined;
|
|
6695
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
6696
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
6697
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
6698
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
6699
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
6700
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
6701
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
6702
|
+
} | undefined;
|
|
6703
|
+
gridArea?: csstype.Property.GridArea | {
|
|
6704
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
6705
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
6706
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
6707
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
6708
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
6709
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
6710
|
+
} | undefined;
|
|
6711
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
6712
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
6713
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
6714
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
6715
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
6716
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
6717
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
6718
|
+
} | undefined;
|
|
6719
|
+
gridRow?: csstype.Property.GridRow | {
|
|
6720
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
6721
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
6722
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
6723
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
6724
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
6725
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
6726
|
+
} | undefined;
|
|
6727
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
6728
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
6729
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
6730
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
6731
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
6732
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
6733
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
6734
|
+
} | undefined;
|
|
6735
|
+
__brand__?: "platform-web" | {
|
|
6736
|
+
readonly base?: "platform-web" | undefined;
|
|
6737
|
+
readonly xs?: "platform-web" | undefined;
|
|
6738
|
+
readonly s?: "platform-web" | undefined;
|
|
6739
|
+
readonly m?: "platform-web" | undefined;
|
|
6740
|
+
readonly l?: "platform-web" | undefined;
|
|
6741
|
+
readonly xl?: "platform-web" | undefined;
|
|
6742
|
+
} | undefined;
|
|
6743
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
4864
6744
|
|
|
4865
6745
|
declare type RadioGroupProps = {
|
|
4866
6746
|
/**
|