@atlaskit/forge-react-types 0.53.0 → 0.55.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/dist/cjs/components/__generated__/BoxProps.codegen.js +12 -2
- package/dist/cjs/components/__generated__/tokens.codegen.js +666 -0
- package/dist/cjs/components/charts/PieChartProps.js +5 -1
- package/dist/es2019/components/__generated__/BoxProps.codegen.js +12 -2
- package/dist/es2019/components/__generated__/tokens.codegen.js +662 -0
- package/dist/es2019/components/charts/PieChartProps.js +1 -0
- package/dist/esm/components/__generated__/BoxProps.codegen.js +12 -2
- package/dist/esm/components/__generated__/tokens.codegen.js +667 -0
- package/dist/esm/components/charts/PieChartProps.js +1 -0
- package/dist/types/components/__generated__/BoxProps.codegen.d.ts +65 -51
- package/dist/types/components/__generated__/ButtonGroupProps.codegen.d.ts +3 -4
- package/dist/types/components/__generated__/IconProps.codegen.d.ts +1 -1
- package/dist/types/components/__generated__/PressableProps.codegen.d.ts +32 -32
- package/dist/types/components/__generated__/tokens.codegen.d.ts +1766 -0
- package/dist/types/components/charts/BarChartProps.d.ts +7 -0
- package/dist/types/components/charts/LineChartProps.d.ts +7 -0
- package/dist/types/components/charts/PieChartProps.d.ts +7 -0
- package/dist/types-ts4.5/components/__generated__/BoxProps.codegen.d.ts +65 -51
- package/dist/types-ts4.5/components/__generated__/ButtonGroupProps.codegen.d.ts +3 -4
- package/dist/types-ts4.5/components/__generated__/IconProps.codegen.d.ts +1 -1
- package/dist/types-ts4.5/components/__generated__/PressableProps.codegen.d.ts +32 -32
- package/dist/types-ts4.5/components/__generated__/tokens.codegen.d.ts +1766 -0
- package/dist/types-ts4.5/components/charts/BarChartProps.d.ts +7 -0
- package/dist/types-ts4.5/components/charts/LineChartProps.d.ts +7 -0
- package/dist/types-ts4.5/components/charts/PieChartProps.d.ts +7 -0
- package/package.json +12 -10
- package/scripts/codegen/codeGenerator.ts +176 -30
- package/scripts/codegen/componentPropTypes.ts +26 -0
- package/src/components/__generated__/BoxProps.codegen.tsx +38 -24
- package/src/components/__generated__/ButtonGroupProps.codegen.tsx +3 -4
- package/src/components/__generated__/IconProps.codegen.tsx +2 -2
- package/src/components/__generated__/tokens.codegen.tsx +1664 -0
- package/src/components/charts/BarChartProps.tsx +7 -0
- package/src/components/charts/LineChartProps.tsx +7 -0
- package/src/components/charts/PieChartProps.tsx +8 -0
|
@@ -75,7 +75,7 @@ declare const makeXCSSValidator: <U extends XCSSValidatorParam>(supportedXCSSPro
|
|
|
75
75
|
}>;
|
|
76
76
|
export { makeXCSSValidator };
|
|
77
77
|
export type { SafeCSSObject };
|
|
78
|
-
declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof CSSProperties, RestrictedPropsSpec> | SafeCSSObject<"backgroundColor" | "
|
|
78
|
+
declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof CSSProperties, RestrictedPropsSpec> | SafeCSSObject<"backgroundColor" | "padding" | "paddingBlock" | "paddingBlockStart" | "paddingBlockEnd" | "paddingInline" | "paddingInlineStart" | "paddingInlineEnd" | "borderBlockEndColor" | "borderBlockEndWidth" | "borderBlockStartColor" | "borderBlockStartWidth" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndColor" | "borderInlineEndWidth" | "borderInlineStartColor" | "borderInlineStartWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "boxShadow" | "color" | "display" | "flexGrow" | "height" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "textAlign" | "width" | "borderBlockColor" | "borderBlockWidth" | "borderColor" | "borderInlineColor" | "borderInlineWidth" | "borderRadius" | "borderStyle" | "borderWidth" | "margin" | "marginBlock" | "marginInline" | "overflow", "flexGrow" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "textAlign" | "width", {
|
|
79
79
|
borderBottomLeftRadius?: "radius.xsmall" | "radius.small" | "radius.medium" | "radius.large" | "radius.xlarge" | "radius.xxlarge" | "radius.full" | "radius.tile" | {
|
|
80
80
|
[x: number]: boolean | undefined;
|
|
81
81
|
length?: boolean | undefined;
|
|
@@ -152,7 +152,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
152
152
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
153
153
|
at?: boolean | undefined;
|
|
154
154
|
} | undefined;
|
|
155
|
-
|
|
155
|
+
borderBottomStyle?: "hidden" | "none" | "dashed" | "dotted" | "solid" | {
|
|
156
156
|
[x: number]: boolean | undefined;
|
|
157
157
|
length?: boolean | undefined;
|
|
158
158
|
toString?: boolean | undefined;
|
|
@@ -190,7 +190,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
190
190
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
191
191
|
at?: boolean | undefined;
|
|
192
192
|
} | undefined;
|
|
193
|
-
|
|
193
|
+
borderEndEndRadius?: "radius.xsmall" | "radius.small" | "radius.medium" | "radius.large" | "radius.xlarge" | "radius.xxlarge" | "radius.full" | "radius.tile" | {
|
|
194
194
|
[x: number]: boolean | undefined;
|
|
195
195
|
length?: boolean | undefined;
|
|
196
196
|
toString?: boolean | undefined;
|
|
@@ -228,7 +228,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
228
228
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
229
229
|
at?: boolean | undefined;
|
|
230
230
|
} | undefined;
|
|
231
|
-
|
|
231
|
+
borderEndStartRadius?: "radius.xsmall" | "radius.small" | "radius.medium" | "radius.large" | "radius.xlarge" | "radius.xxlarge" | "radius.full" | "radius.tile" | {
|
|
232
232
|
[x: number]: boolean | undefined;
|
|
233
233
|
length?: boolean | undefined;
|
|
234
234
|
toString?: boolean | undefined;
|
|
@@ -266,7 +266,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
266
266
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
267
267
|
at?: boolean | undefined;
|
|
268
268
|
} | undefined;
|
|
269
|
-
|
|
269
|
+
borderLeftStyle?: "hidden" | "none" | "dashed" | "dotted" | "solid" | {
|
|
270
270
|
[x: number]: boolean | undefined;
|
|
271
271
|
length?: boolean | undefined;
|
|
272
272
|
toString?: boolean | undefined;
|
|
@@ -304,7 +304,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
304
304
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
305
305
|
at?: boolean | undefined;
|
|
306
306
|
} | undefined;
|
|
307
|
-
|
|
307
|
+
borderRightStyle?: "hidden" | "none" | "dashed" | "dotted" | "solid" | {
|
|
308
308
|
[x: number]: boolean | undefined;
|
|
309
309
|
length?: boolean | undefined;
|
|
310
310
|
toString?: boolean | undefined;
|
|
@@ -342,7 +342,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
342
342
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
343
343
|
at?: boolean | undefined;
|
|
344
344
|
} | undefined;
|
|
345
|
-
|
|
345
|
+
borderStartEndRadius?: "radius.xsmall" | "radius.small" | "radius.medium" | "radius.large" | "radius.xlarge" | "radius.xxlarge" | "radius.full" | "radius.tile" | {
|
|
346
346
|
[x: number]: boolean | undefined;
|
|
347
347
|
length?: boolean | undefined;
|
|
348
348
|
toString?: boolean | undefined;
|
|
@@ -380,7 +380,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
380
380
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
381
381
|
at?: boolean | undefined;
|
|
382
382
|
} | undefined;
|
|
383
|
-
|
|
383
|
+
borderStartStartRadius?: "radius.xsmall" | "radius.small" | "radius.medium" | "radius.large" | "radius.xlarge" | "radius.xxlarge" | "radius.full" | "radius.tile" | {
|
|
384
384
|
[x: number]: boolean | undefined;
|
|
385
385
|
length?: boolean | undefined;
|
|
386
386
|
toString?: boolean | undefined;
|
|
@@ -418,7 +418,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
418
418
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
419
419
|
at?: boolean | undefined;
|
|
420
420
|
} | undefined;
|
|
421
|
-
|
|
421
|
+
borderTopLeftRadius?: "radius.xsmall" | "radius.small" | "radius.medium" | "radius.large" | "radius.xlarge" | "radius.xxlarge" | "radius.full" | "radius.tile" | {
|
|
422
422
|
[x: number]: boolean | undefined;
|
|
423
423
|
length?: boolean | undefined;
|
|
424
424
|
toString?: boolean | undefined;
|
|
@@ -456,7 +456,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
456
456
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
457
457
|
at?: boolean | undefined;
|
|
458
458
|
} | undefined;
|
|
459
|
-
|
|
459
|
+
borderTopRightRadius?: "radius.xsmall" | "radius.small" | "radius.medium" | "radius.large" | "radius.xlarge" | "radius.xxlarge" | "radius.full" | "radius.tile" | {
|
|
460
460
|
[x: number]: boolean | undefined;
|
|
461
461
|
length?: boolean | undefined;
|
|
462
462
|
toString?: boolean | undefined;
|
|
@@ -494,7 +494,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
494
494
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
495
495
|
at?: boolean | undefined;
|
|
496
496
|
} | undefined;
|
|
497
|
-
|
|
497
|
+
borderTopStyle?: "hidden" | "none" | "dashed" | "dotted" | "solid" | {
|
|
498
498
|
[x: number]: boolean | undefined;
|
|
499
499
|
length?: boolean | undefined;
|
|
500
500
|
toString?: boolean | undefined;
|
|
@@ -532,7 +532,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
532
532
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
533
533
|
at?: boolean | undefined;
|
|
534
534
|
} | undefined;
|
|
535
|
-
|
|
535
|
+
display?: "block" | "inline" | "inline-block" | "none" | {
|
|
536
536
|
[x: number]: boolean | undefined;
|
|
537
537
|
length?: boolean | undefined;
|
|
538
538
|
toString?: boolean | undefined;
|
|
@@ -570,7 +570,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
570
570
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
571
571
|
at?: boolean | undefined;
|
|
572
572
|
} | undefined;
|
|
573
|
-
|
|
573
|
+
overflowX?: "auto" | "hidden" | "scroll" | "visible" | {
|
|
574
574
|
[x: number]: boolean | undefined;
|
|
575
575
|
length?: boolean | undefined;
|
|
576
576
|
toString?: boolean | undefined;
|
|
@@ -608,7 +608,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
608
608
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
609
609
|
at?: boolean | undefined;
|
|
610
610
|
} | undefined;
|
|
611
|
-
|
|
611
|
+
overflowY?: "auto" | "hidden" | "scroll" | "visible" | {
|
|
612
612
|
[x: number]: boolean | undefined;
|
|
613
613
|
length?: boolean | undefined;
|
|
614
614
|
toString?: boolean | undefined;
|
|
@@ -646,7 +646,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
646
646
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
647
647
|
at?: boolean | undefined;
|
|
648
648
|
} | undefined;
|
|
649
|
-
|
|
649
|
+
position?: "relative" | "static" | {
|
|
650
650
|
[x: number]: boolean | undefined;
|
|
651
651
|
length?: boolean | undefined;
|
|
652
652
|
toString?: boolean | undefined;
|
|
@@ -684,7 +684,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
684
684
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
685
685
|
at?: boolean | undefined;
|
|
686
686
|
} | undefined;
|
|
687
|
-
|
|
687
|
+
borderRadius?: "radius.xsmall" | "radius.small" | "radius.medium" | "radius.large" | "radius.xlarge" | "radius.xxlarge" | "radius.full" | "radius.tile" | {
|
|
688
688
|
[x: number]: boolean | undefined;
|
|
689
689
|
length?: boolean | undefined;
|
|
690
690
|
toString?: boolean | undefined;
|
|
@@ -798,7 +798,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
798
798
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
799
799
|
at?: boolean | undefined;
|
|
800
800
|
} | undefined;
|
|
801
|
-
}>) => SafeCSSObject<"backgroundColor" | "
|
|
801
|
+
}>) => SafeCSSObject<"backgroundColor" | "padding" | "paddingBlock" | "paddingBlockStart" | "paddingBlockEnd" | "paddingInline" | "paddingInlineStart" | "paddingInlineEnd" | "borderBlockEndColor" | "borderBlockEndWidth" | "borderBlockStartColor" | "borderBlockStartWidth" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderEndEndRadius" | "borderEndStartRadius" | "borderInlineEndColor" | "borderInlineEndWidth" | "borderInlineStartColor" | "borderInlineStartWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "boxShadow" | "color" | "display" | "flexGrow" | "height" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "textAlign" | "width" | "borderBlockColor" | "borderBlockWidth" | "borderColor" | "borderInlineColor" | "borderInlineWidth" | "borderRadius" | "borderStyle" | "borderWidth" | "margin" | "marginBlock" | "marginInline" | "overflow", "flexGrow" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "textAlign" | "width", {
|
|
802
802
|
borderBottomLeftRadius?: "radius.xsmall" | "radius.small" | "radius.medium" | "radius.large" | "radius.xlarge" | "radius.xxlarge" | "radius.full" | "radius.tile" | {
|
|
803
803
|
[x: number]: boolean | undefined;
|
|
804
804
|
length?: boolean | undefined;
|
|
@@ -875,7 +875,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
875
875
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
876
876
|
at?: boolean | undefined;
|
|
877
877
|
} | undefined;
|
|
878
|
-
|
|
878
|
+
borderBottomStyle?: "hidden" | "none" | "dashed" | "dotted" | "solid" | {
|
|
879
879
|
[x: number]: boolean | undefined;
|
|
880
880
|
length?: boolean | undefined;
|
|
881
881
|
toString?: boolean | undefined;
|
|
@@ -913,7 +913,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
913
913
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
914
914
|
at?: boolean | undefined;
|
|
915
915
|
} | undefined;
|
|
916
|
-
|
|
916
|
+
borderEndEndRadius?: "radius.xsmall" | "radius.small" | "radius.medium" | "radius.large" | "radius.xlarge" | "radius.xxlarge" | "radius.full" | "radius.tile" | {
|
|
917
917
|
[x: number]: boolean | undefined;
|
|
918
918
|
length?: boolean | undefined;
|
|
919
919
|
toString?: boolean | undefined;
|
|
@@ -951,7 +951,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
951
951
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
952
952
|
at?: boolean | undefined;
|
|
953
953
|
} | undefined;
|
|
954
|
-
|
|
954
|
+
borderEndStartRadius?: "radius.xsmall" | "radius.small" | "radius.medium" | "radius.large" | "radius.xlarge" | "radius.xxlarge" | "radius.full" | "radius.tile" | {
|
|
955
955
|
[x: number]: boolean | undefined;
|
|
956
956
|
length?: boolean | undefined;
|
|
957
957
|
toString?: boolean | undefined;
|
|
@@ -989,7 +989,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
989
989
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
990
990
|
at?: boolean | undefined;
|
|
991
991
|
} | undefined;
|
|
992
|
-
|
|
992
|
+
borderLeftStyle?: "hidden" | "none" | "dashed" | "dotted" | "solid" | {
|
|
993
993
|
[x: number]: boolean | undefined;
|
|
994
994
|
length?: boolean | undefined;
|
|
995
995
|
toString?: boolean | undefined;
|
|
@@ -1027,7 +1027,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
1027
1027
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
1028
1028
|
at?: boolean | undefined;
|
|
1029
1029
|
} | undefined;
|
|
1030
|
-
|
|
1030
|
+
borderRightStyle?: "hidden" | "none" | "dashed" | "dotted" | "solid" | {
|
|
1031
1031
|
[x: number]: boolean | undefined;
|
|
1032
1032
|
length?: boolean | undefined;
|
|
1033
1033
|
toString?: boolean | undefined;
|
|
@@ -1065,7 +1065,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
1065
1065
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
1066
1066
|
at?: boolean | undefined;
|
|
1067
1067
|
} | undefined;
|
|
1068
|
-
|
|
1068
|
+
borderStartEndRadius?: "radius.xsmall" | "radius.small" | "radius.medium" | "radius.large" | "radius.xlarge" | "radius.xxlarge" | "radius.full" | "radius.tile" | {
|
|
1069
1069
|
[x: number]: boolean | undefined;
|
|
1070
1070
|
length?: boolean | undefined;
|
|
1071
1071
|
toString?: boolean | undefined;
|
|
@@ -1103,7 +1103,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
1103
1103
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
1104
1104
|
at?: boolean | undefined;
|
|
1105
1105
|
} | undefined;
|
|
1106
|
-
|
|
1106
|
+
borderStartStartRadius?: "radius.xsmall" | "radius.small" | "radius.medium" | "radius.large" | "radius.xlarge" | "radius.xxlarge" | "radius.full" | "radius.tile" | {
|
|
1107
1107
|
[x: number]: boolean | undefined;
|
|
1108
1108
|
length?: boolean | undefined;
|
|
1109
1109
|
toString?: boolean | undefined;
|
|
@@ -1141,7 +1141,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
1141
1141
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
1142
1142
|
at?: boolean | undefined;
|
|
1143
1143
|
} | undefined;
|
|
1144
|
-
|
|
1144
|
+
borderTopLeftRadius?: "radius.xsmall" | "radius.small" | "radius.medium" | "radius.large" | "radius.xlarge" | "radius.xxlarge" | "radius.full" | "radius.tile" | {
|
|
1145
1145
|
[x: number]: boolean | undefined;
|
|
1146
1146
|
length?: boolean | undefined;
|
|
1147
1147
|
toString?: boolean | undefined;
|
|
@@ -1179,7 +1179,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
1179
1179
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
1180
1180
|
at?: boolean | undefined;
|
|
1181
1181
|
} | undefined;
|
|
1182
|
-
|
|
1182
|
+
borderTopRightRadius?: "radius.xsmall" | "radius.small" | "radius.medium" | "radius.large" | "radius.xlarge" | "radius.xxlarge" | "radius.full" | "radius.tile" | {
|
|
1183
1183
|
[x: number]: boolean | undefined;
|
|
1184
1184
|
length?: boolean | undefined;
|
|
1185
1185
|
toString?: boolean | undefined;
|
|
@@ -1217,7 +1217,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
1217
1217
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
1218
1218
|
at?: boolean | undefined;
|
|
1219
1219
|
} | undefined;
|
|
1220
|
-
|
|
1220
|
+
borderTopStyle?: "hidden" | "none" | "dashed" | "dotted" | "solid" | {
|
|
1221
1221
|
[x: number]: boolean | undefined;
|
|
1222
1222
|
length?: boolean | undefined;
|
|
1223
1223
|
toString?: boolean | undefined;
|
|
@@ -1255,7 +1255,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
1255
1255
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
1256
1256
|
at?: boolean | undefined;
|
|
1257
1257
|
} | undefined;
|
|
1258
|
-
|
|
1258
|
+
display?: "block" | "inline" | "inline-block" | "none" | {
|
|
1259
1259
|
[x: number]: boolean | undefined;
|
|
1260
1260
|
length?: boolean | undefined;
|
|
1261
1261
|
toString?: boolean | undefined;
|
|
@@ -1293,7 +1293,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
1293
1293
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
1294
1294
|
at?: boolean | undefined;
|
|
1295
1295
|
} | undefined;
|
|
1296
|
-
|
|
1296
|
+
overflowX?: "auto" | "hidden" | "scroll" | "visible" | {
|
|
1297
1297
|
[x: number]: boolean | undefined;
|
|
1298
1298
|
length?: boolean | undefined;
|
|
1299
1299
|
toString?: boolean | undefined;
|
|
@@ -1331,7 +1331,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
1331
1331
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
1332
1332
|
at?: boolean | undefined;
|
|
1333
1333
|
} | undefined;
|
|
1334
|
-
|
|
1334
|
+
overflowY?: "auto" | "hidden" | "scroll" | "visible" | {
|
|
1335
1335
|
[x: number]: boolean | undefined;
|
|
1336
1336
|
length?: boolean | undefined;
|
|
1337
1337
|
toString?: boolean | undefined;
|
|
@@ -1369,7 +1369,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
1369
1369
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
1370
1370
|
at?: boolean | undefined;
|
|
1371
1371
|
} | undefined;
|
|
1372
|
-
|
|
1372
|
+
position?: "relative" | "static" | {
|
|
1373
1373
|
[x: number]: boolean | undefined;
|
|
1374
1374
|
length?: boolean | undefined;
|
|
1375
1375
|
toString?: boolean | undefined;
|
|
@@ -1407,7 +1407,7 @@ declare const xcssValidator: (styleObj: SafeCSSObject<keyof CSSProperties, keyof
|
|
|
1407
1407
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
1408
1408
|
at?: boolean | undefined;
|
|
1409
1409
|
} | undefined;
|
|
1410
|
-
|
|
1410
|
+
borderRadius?: "radius.xsmall" | "radius.small" | "radius.medium" | "radius.large" | "radius.xlarge" | "radius.xxlarge" | "radius.full" | "radius.tile" | {
|
|
1411
1411
|
[x: number]: boolean | undefined;
|
|
1412
1412
|
length?: boolean | undefined;
|
|
1413
1413
|
toString?: boolean | undefined;
|