@tamagui/helpers 2.0.0-rc.3 → 2.0.0-rc.30
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/dist/cjs/clamp.native.js.map +1 -1
- package/dist/cjs/composeEventHandlers.native.js.map +1 -1
- package/dist/cjs/index.js +17 -14
- package/dist/cjs/index.native.js +7 -7
- package/dist/cjs/index.native.js.map +1 -1
- package/dist/cjs/shouldRenderNativePlatform.native.js.map +1 -1
- package/dist/cjs/types.native.js.map +1 -1
- package/dist/cjs/validStyleProps.cjs +84 -39
- package/dist/cjs/validStyleProps.native.js +82 -39
- package/dist/cjs/validStyleProps.native.js.map +1 -1
- package/dist/cjs/webOnlyStyleProps.cjs +38 -30
- package/dist/cjs/webOnlyStyleProps.native.js +38 -30
- package/dist/cjs/webOnlyStyleProps.native.js.map +1 -1
- package/dist/cjs/withStaticProperties.native.js.map +1 -1
- package/dist/esm/index.js +7 -7
- package/dist/esm/index.js.map +1 -6
- package/dist/esm/validStyleProps.mjs +84 -41
- package/dist/esm/validStyleProps.mjs.map +1 -1
- package/dist/esm/validStyleProps.native.js +81 -41
- package/dist/esm/validStyleProps.native.js.map +1 -1
- package/dist/esm/webOnlyStyleProps.mjs +37 -31
- package/dist/esm/webOnlyStyleProps.mjs.map +1 -1
- package/dist/esm/webOnlyStyleProps.native.js +37 -31
- package/dist/esm/webOnlyStyleProps.native.js.map +1 -1
- package/package.json +7 -10
- package/src/validStyleProps.ts +104 -38
- package/src/webOnlyStyleProps.ts +40 -29
- package/types/validStyleProps.d.ts +337 -238
- package/types/validStyleProps.d.ts.map +1 -1
- package/types/webOnlyStyleProps.d.ts +60 -20
- package/types/webOnlyStyleProps.d.ts.map +1 -1
- package/dist/cjs/clamp.js +0 -23
- package/dist/cjs/clamp.js.map +0 -6
- package/dist/cjs/composeEventHandlers.js +0 -27
- package/dist/cjs/composeEventHandlers.js.map +0 -6
- package/dist/cjs/shouldRenderNativePlatform.js +0 -35
- package/dist/cjs/shouldRenderNativePlatform.js.map +0 -6
- package/dist/cjs/types.js +0 -25
- package/dist/cjs/types.js.map +0 -6
- package/dist/cjs/validStyleProps.js +0 -283
- package/dist/cjs/validStyleProps.js.map +0 -6
- package/dist/cjs/webOnlyStyleProps.js +0 -89
- package/dist/cjs/webOnlyStyleProps.js.map +0 -6
- package/dist/cjs/withStaticProperties.js +0 -21
- package/dist/cjs/withStaticProperties.js.map +0 -6
- package/dist/esm/clamp.js +0 -7
- package/dist/esm/clamp.js.map +0 -6
- package/dist/esm/composeEventHandlers.js +0 -11
- package/dist/esm/composeEventHandlers.js.map +0 -6
- package/dist/esm/shouldRenderNativePlatform.js +0 -19
- package/dist/esm/shouldRenderNativePlatform.js.map +0 -6
- package/dist/esm/types.js +0 -9
- package/dist/esm/types.js.map +0 -6
- package/dist/esm/validStyleProps.js +0 -268
- package/dist/esm/validStyleProps.js.map +0 -6
- package/dist/esm/webOnlyStyleProps.js +0 -73
- package/dist/esm/webOnlyStyleProps.js.map +0 -6
- package/dist/esm/withStaticProperties.js +0 -5
- package/dist/esm/withStaticProperties.js.map +0 -6
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
export declare const cssShorthandLonghands: {
|
|
2
|
+
borderWidth: boolean;
|
|
3
|
+
borderStyle: boolean;
|
|
4
|
+
borderColor: boolean;
|
|
5
|
+
borderTopWidth: boolean;
|
|
6
|
+
borderTopStyle: boolean;
|
|
7
|
+
borderTopColor: boolean;
|
|
8
|
+
borderRightWidth: boolean;
|
|
9
|
+
borderRightStyle: boolean;
|
|
10
|
+
borderRightColor: boolean;
|
|
11
|
+
borderBottomWidth: boolean;
|
|
12
|
+
borderBottomStyle: boolean;
|
|
13
|
+
borderBottomColor: boolean;
|
|
14
|
+
borderLeftWidth: boolean;
|
|
15
|
+
borderLeftStyle: boolean;
|
|
16
|
+
borderLeftColor: boolean;
|
|
17
|
+
outlineWidth: boolean;
|
|
18
|
+
outlineStyle: boolean;
|
|
19
|
+
outlineColor: boolean;
|
|
20
|
+
outlineOffset: boolean;
|
|
21
|
+
};
|
|
1
22
|
export declare const tokenCategories: {
|
|
2
23
|
radius: {
|
|
3
24
|
borderRadius: boolean;
|
|
@@ -50,8 +71,81 @@ export declare const tokenCategories: {
|
|
|
50
71
|
shadowColor: boolean;
|
|
51
72
|
};
|
|
52
73
|
};
|
|
53
|
-
export declare const
|
|
74
|
+
export declare const nonAnimatableStyleProps: {
|
|
75
|
+
whiteSpace?: boolean | undefined;
|
|
76
|
+
wordWrap?: boolean | undefined;
|
|
77
|
+
textOverflow?: boolean | undefined;
|
|
78
|
+
WebkitBoxOrient?: boolean | undefined;
|
|
79
|
+
backgroundAttachment?: boolean | undefined;
|
|
80
|
+
backgroundBlendMode?: boolean | undefined;
|
|
81
|
+
backgroundClip?: boolean | undefined;
|
|
82
|
+
backgroundOrigin?: boolean | undefined;
|
|
83
|
+
backgroundRepeat?: boolean | undefined;
|
|
84
|
+
borderBottomStyle?: boolean | undefined;
|
|
85
|
+
borderLeftStyle?: boolean | undefined;
|
|
86
|
+
borderRightStyle?: boolean | undefined;
|
|
87
|
+
borderTopStyle?: boolean | undefined;
|
|
88
|
+
contain?: boolean | undefined;
|
|
89
|
+
containerType?: boolean | undefined;
|
|
90
|
+
content?: boolean | undefined;
|
|
91
|
+
float?: boolean | undefined;
|
|
92
|
+
maskBorderMode?: boolean | undefined;
|
|
93
|
+
maskBorderRepeat?: boolean | undefined;
|
|
94
|
+
maskClip?: boolean | undefined;
|
|
95
|
+
maskComposite?: boolean | undefined;
|
|
96
|
+
maskMode?: boolean | undefined;
|
|
97
|
+
maskOrigin?: boolean | undefined;
|
|
98
|
+
maskRepeat?: boolean | undefined;
|
|
99
|
+
maskType?: boolean | undefined;
|
|
100
|
+
objectFit?: boolean | undefined;
|
|
101
|
+
overflowBlock?: boolean | undefined;
|
|
102
|
+
overflowInline?: boolean | undefined;
|
|
103
|
+
overflowX?: boolean | undefined;
|
|
104
|
+
overflowY?: boolean | undefined;
|
|
105
|
+
pointerEvents?: boolean | undefined;
|
|
106
|
+
scrollbarWidth?: boolean | undefined;
|
|
107
|
+
textWrap?: boolean | undefined;
|
|
108
|
+
touchAction?: boolean | undefined;
|
|
109
|
+
transformStyle?: boolean | undefined;
|
|
110
|
+
willChange?: boolean | undefined;
|
|
54
111
|
WebkitLineClamp: boolean;
|
|
112
|
+
lineClamp: boolean;
|
|
113
|
+
gridTemplateColumns: boolean;
|
|
114
|
+
gridTemplateAreas: boolean;
|
|
115
|
+
textAlign: boolean;
|
|
116
|
+
textDecorationLine: boolean;
|
|
117
|
+
textDecorationStyle: boolean;
|
|
118
|
+
userSelect: boolean;
|
|
119
|
+
fontFamily: boolean;
|
|
120
|
+
fontStyle: boolean;
|
|
121
|
+
fontVariant: boolean;
|
|
122
|
+
textTransform: boolean;
|
|
123
|
+
alignContent: boolean;
|
|
124
|
+
alignItems: boolean;
|
|
125
|
+
alignSelf: boolean;
|
|
126
|
+
backfaceVisibility: boolean;
|
|
127
|
+
borderCurve: boolean;
|
|
128
|
+
borderStyle: boolean;
|
|
129
|
+
borderBlockStyle: boolean;
|
|
130
|
+
borderBlockEndStyle: boolean;
|
|
131
|
+
borderBlockStartStyle: boolean;
|
|
132
|
+
borderInlineStyle: boolean;
|
|
133
|
+
borderInlineEndStyle: boolean;
|
|
134
|
+
borderInlineStartStyle: boolean;
|
|
135
|
+
boxSizing: boolean;
|
|
136
|
+
cursor: boolean;
|
|
137
|
+
direction: boolean;
|
|
138
|
+
display: boolean;
|
|
139
|
+
flexDirection: boolean;
|
|
140
|
+
flexWrap: boolean;
|
|
141
|
+
isolation: boolean;
|
|
142
|
+
justifyContent: boolean;
|
|
143
|
+
mixBlendMode: boolean;
|
|
144
|
+
outlineStyle: boolean;
|
|
145
|
+
overflow: boolean;
|
|
146
|
+
position: boolean;
|
|
147
|
+
};
|
|
148
|
+
export declare const stylePropsUnitless: {
|
|
55
149
|
animationIterationCount: boolean;
|
|
56
150
|
aspectRatio: boolean;
|
|
57
151
|
borderImageOutset: boolean;
|
|
@@ -73,9 +167,6 @@ export declare const stylePropsUnitless: {
|
|
|
73
167
|
gridColumnEnd: boolean;
|
|
74
168
|
gridColumnGap: boolean;
|
|
75
169
|
gridColumnStart: boolean;
|
|
76
|
-
gridTemplateColumns: boolean;
|
|
77
|
-
gridTemplateAreas: boolean;
|
|
78
|
-
lineClamp: boolean;
|
|
79
170
|
opacity: boolean;
|
|
80
171
|
order: boolean;
|
|
81
172
|
orphans: boolean;
|
|
@@ -88,6 +179,10 @@ export declare const stylePropsUnitless: {
|
|
|
88
179
|
scaleY: boolean;
|
|
89
180
|
scaleZ: boolean;
|
|
90
181
|
shadowOpacity: boolean;
|
|
182
|
+
WebkitLineClamp: boolean;
|
|
183
|
+
lineClamp: boolean;
|
|
184
|
+
gridTemplateColumns: boolean;
|
|
185
|
+
gridTemplateAreas: boolean;
|
|
91
186
|
};
|
|
92
187
|
export declare const stylePropsTransform: {
|
|
93
188
|
x: boolean;
|
|
@@ -106,7 +201,6 @@ export declare const stylePropsTransform: {
|
|
|
106
201
|
};
|
|
107
202
|
export declare const stylePropsView: {
|
|
108
203
|
transition?: boolean | undefined;
|
|
109
|
-
textWrap?: boolean | undefined;
|
|
110
204
|
backdropFilter?: boolean | undefined;
|
|
111
205
|
WebkitBackdropFilter?: boolean | undefined;
|
|
112
206
|
background?: boolean | undefined;
|
|
@@ -114,68 +208,65 @@ export declare const stylePropsView: {
|
|
|
114
208
|
borderRight?: boolean | undefined;
|
|
115
209
|
borderBottom?: boolean | undefined;
|
|
116
210
|
borderLeft?: boolean | undefined;
|
|
211
|
+
backgroundPosition?: boolean | undefined;
|
|
212
|
+
backgroundSize?: boolean | undefined;
|
|
213
|
+
borderImage?: boolean | undefined;
|
|
214
|
+
caretColor?: boolean | undefined;
|
|
215
|
+
clipPath?: boolean | undefined;
|
|
216
|
+
mask?: boolean | undefined;
|
|
217
|
+
maskBorder?: boolean | undefined;
|
|
218
|
+
maskBorderOutset?: boolean | undefined;
|
|
219
|
+
maskBorderSlice?: boolean | undefined;
|
|
220
|
+
maskBorderSource?: boolean | undefined;
|
|
221
|
+
maskBorderWidth?: boolean | undefined;
|
|
222
|
+
maskImage?: boolean | undefined;
|
|
223
|
+
maskPosition?: boolean | undefined;
|
|
224
|
+
maskSize?: boolean | undefined;
|
|
225
|
+
objectPosition?: boolean | undefined;
|
|
226
|
+
textEmphasis?: boolean | undefined;
|
|
227
|
+
userSelect?: boolean | undefined;
|
|
117
228
|
backgroundAttachment?: boolean | undefined;
|
|
118
229
|
backgroundBlendMode?: boolean | undefined;
|
|
119
230
|
backgroundClip?: boolean | undefined;
|
|
120
231
|
backgroundOrigin?: boolean | undefined;
|
|
121
|
-
backgroundPosition?: boolean | undefined;
|
|
122
232
|
backgroundRepeat?: boolean | undefined;
|
|
123
|
-
backgroundSize?: boolean | undefined;
|
|
124
233
|
borderBottomStyle?: boolean | undefined;
|
|
125
|
-
borderImage?: boolean | undefined;
|
|
126
234
|
borderLeftStyle?: boolean | undefined;
|
|
127
235
|
borderRightStyle?: boolean | undefined;
|
|
128
236
|
borderTopStyle?: boolean | undefined;
|
|
129
|
-
caretColor?: boolean | undefined;
|
|
130
|
-
clipPath?: boolean | undefined;
|
|
131
237
|
contain?: boolean | undefined;
|
|
132
238
|
containerType?: boolean | undefined;
|
|
133
239
|
content?: boolean | undefined;
|
|
134
240
|
float?: boolean | undefined;
|
|
135
|
-
mask?: boolean | undefined;
|
|
136
|
-
maskBorder?: boolean | undefined;
|
|
137
241
|
maskBorderMode?: boolean | undefined;
|
|
138
|
-
maskBorderOutset?: boolean | undefined;
|
|
139
242
|
maskBorderRepeat?: boolean | undefined;
|
|
140
|
-
maskBorderSlice?: boolean | undefined;
|
|
141
|
-
maskBorderSource?: boolean | undefined;
|
|
142
|
-
maskBorderWidth?: boolean | undefined;
|
|
143
243
|
maskClip?: boolean | undefined;
|
|
144
244
|
maskComposite?: boolean | undefined;
|
|
145
|
-
maskImage?: boolean | undefined;
|
|
146
245
|
maskMode?: boolean | undefined;
|
|
147
246
|
maskOrigin?: boolean | undefined;
|
|
148
|
-
maskPosition?: boolean | undefined;
|
|
149
247
|
maskRepeat?: boolean | undefined;
|
|
150
|
-
maskSize?: boolean | undefined;
|
|
151
248
|
maskType?: boolean | undefined;
|
|
152
249
|
objectFit?: boolean | undefined;
|
|
153
|
-
objectPosition?: boolean | undefined;
|
|
154
250
|
overflowBlock?: boolean | undefined;
|
|
155
251
|
overflowInline?: boolean | undefined;
|
|
156
252
|
overflowX?: boolean | undefined;
|
|
157
253
|
overflowY?: boolean | undefined;
|
|
158
254
|
pointerEvents?: boolean | undefined;
|
|
159
255
|
scrollbarWidth?: boolean | undefined;
|
|
160
|
-
|
|
256
|
+
textWrap?: boolean | undefined;
|
|
161
257
|
touchAction?: boolean | undefined;
|
|
162
258
|
transformStyle?: boolean | undefined;
|
|
163
|
-
userSelect?: boolean | undefined;
|
|
164
259
|
willChange?: boolean | undefined;
|
|
165
260
|
boxShadow: boolean;
|
|
166
261
|
border: boolean;
|
|
167
262
|
filter: boolean;
|
|
168
263
|
backgroundImage: boolean;
|
|
169
264
|
experimental_backgroundImage: boolean;
|
|
170
|
-
|
|
171
|
-
mixBlendMode: boolean;
|
|
172
|
-
isolation: boolean;
|
|
265
|
+
outline: boolean;
|
|
173
266
|
outlineColor: boolean;
|
|
174
267
|
outlineOffset: boolean;
|
|
175
|
-
outlineStyle: boolean;
|
|
176
268
|
outlineWidth: boolean;
|
|
177
269
|
elevationAndroid?: boolean | undefined;
|
|
178
|
-
WebkitLineClamp: boolean;
|
|
179
270
|
animationIterationCount: boolean;
|
|
180
271
|
aspectRatio: boolean;
|
|
181
272
|
borderImageOutset: boolean;
|
|
@@ -197,9 +288,6 @@ export declare const stylePropsView: {
|
|
|
197
288
|
gridColumnEnd: boolean;
|
|
198
289
|
gridColumnGap: boolean;
|
|
199
290
|
gridColumnStart: boolean;
|
|
200
|
-
gridTemplateColumns: boolean;
|
|
201
|
-
gridTemplateAreas: boolean;
|
|
202
|
-
lineClamp: boolean;
|
|
203
291
|
opacity: boolean;
|
|
204
292
|
order: boolean;
|
|
205
293
|
orphans: boolean;
|
|
@@ -212,6 +300,10 @@ export declare const stylePropsView: {
|
|
|
212
300
|
scaleY: boolean;
|
|
213
301
|
scaleZ: boolean;
|
|
214
302
|
shadowOpacity: boolean;
|
|
303
|
+
WebkitLineClamp: boolean;
|
|
304
|
+
lineClamp: boolean;
|
|
305
|
+
gridTemplateColumns: boolean;
|
|
306
|
+
gridTemplateAreas: boolean;
|
|
215
307
|
x: boolean;
|
|
216
308
|
y: boolean;
|
|
217
309
|
perspective: boolean;
|
|
@@ -222,15 +314,6 @@ export declare const stylePropsView: {
|
|
|
222
314
|
rotateY: boolean;
|
|
223
315
|
rotateX: boolean;
|
|
224
316
|
rotateZ: boolean;
|
|
225
|
-
borderRadius: boolean;
|
|
226
|
-
borderTopLeftRadius: boolean;
|
|
227
|
-
borderTopRightRadius: boolean;
|
|
228
|
-
borderBottomLeftRadius: boolean;
|
|
229
|
-
borderBottomRightRadius: boolean;
|
|
230
|
-
borderStartStartRadius: boolean;
|
|
231
|
-
borderStartEndRadius: boolean;
|
|
232
|
-
borderEndStartRadius: boolean;
|
|
233
|
-
borderEndEndRadius: boolean;
|
|
234
317
|
width: boolean;
|
|
235
318
|
height: boolean;
|
|
236
319
|
minWidth: boolean;
|
|
@@ -243,6 +326,15 @@ export declare const stylePropsView: {
|
|
|
243
326
|
inlineSize: boolean;
|
|
244
327
|
minInlineSize: boolean;
|
|
245
328
|
maxInlineSize: boolean;
|
|
329
|
+
borderRadius: boolean;
|
|
330
|
+
borderTopLeftRadius: boolean;
|
|
331
|
+
borderTopRightRadius: boolean;
|
|
332
|
+
borderBottomLeftRadius: boolean;
|
|
333
|
+
borderBottomRightRadius: boolean;
|
|
334
|
+
borderStartStartRadius: boolean;
|
|
335
|
+
borderStartEndRadius: boolean;
|
|
336
|
+
borderEndStartRadius: boolean;
|
|
337
|
+
borderEndEndRadius: boolean;
|
|
246
338
|
color: boolean;
|
|
247
339
|
textDecorationColor: boolean;
|
|
248
340
|
textShadowColor: boolean;
|
|
@@ -261,9 +353,6 @@ export declare const stylePropsView: {
|
|
|
261
353
|
borderEndColor: boolean;
|
|
262
354
|
borderStartColor: boolean;
|
|
263
355
|
shadowColor: boolean;
|
|
264
|
-
backfaceVisibility: boolean;
|
|
265
|
-
borderCurve: boolean;
|
|
266
|
-
cursor: boolean;
|
|
267
356
|
borderBottomEndRadius: boolean;
|
|
268
357
|
borderBottomStartRadius: boolean;
|
|
269
358
|
borderBottomWidth: boolean;
|
|
@@ -275,34 +364,20 @@ export declare const stylePropsView: {
|
|
|
275
364
|
borderInlineWidth: boolean;
|
|
276
365
|
borderInlineEndWidth: boolean;
|
|
277
366
|
borderInlineStartWidth: boolean;
|
|
278
|
-
borderStyle: boolean;
|
|
279
|
-
borderBlockStyle: boolean;
|
|
280
|
-
borderBlockEndStyle: boolean;
|
|
281
|
-
borderBlockStartStyle: boolean;
|
|
282
|
-
borderInlineStyle: boolean;
|
|
283
|
-
borderInlineEndStyle: boolean;
|
|
284
|
-
borderInlineStartStyle: boolean;
|
|
285
367
|
borderTopEndRadius: boolean;
|
|
286
368
|
borderTopStartRadius: boolean;
|
|
287
369
|
borderTopWidth: boolean;
|
|
288
370
|
borderWidth: boolean;
|
|
289
371
|
transform: boolean;
|
|
290
372
|
transformOrigin: boolean;
|
|
291
|
-
alignContent: boolean;
|
|
292
|
-
alignItems: boolean;
|
|
293
|
-
alignSelf: boolean;
|
|
294
373
|
borderEndWidth: boolean;
|
|
295
374
|
borderStartWidth: boolean;
|
|
296
375
|
bottom: boolean;
|
|
297
|
-
display: boolean;
|
|
298
376
|
end: boolean;
|
|
299
377
|
flexBasis: boolean;
|
|
300
|
-
flexDirection: boolean;
|
|
301
|
-
flexWrap: boolean;
|
|
302
378
|
gap: boolean;
|
|
303
379
|
columnGap: boolean;
|
|
304
380
|
rowGap: boolean;
|
|
305
|
-
justifyContent: boolean;
|
|
306
381
|
left: boolean;
|
|
307
382
|
margin: boolean;
|
|
308
383
|
marginBlock: boolean;
|
|
@@ -319,7 +394,6 @@ export declare const stylePropsView: {
|
|
|
319
394
|
marginStart: boolean;
|
|
320
395
|
marginTop: boolean;
|
|
321
396
|
marginVertical: boolean;
|
|
322
|
-
overflow: boolean;
|
|
323
397
|
padding: boolean;
|
|
324
398
|
paddingBottom: boolean;
|
|
325
399
|
paddingInline: boolean;
|
|
@@ -334,7 +408,6 @@ export declare const stylePropsView: {
|
|
|
334
408
|
paddingStart: boolean;
|
|
335
409
|
paddingTop: boolean;
|
|
336
410
|
paddingVertical: boolean;
|
|
337
|
-
position: boolean;
|
|
338
411
|
right: boolean;
|
|
339
412
|
start: boolean;
|
|
340
413
|
top: boolean;
|
|
@@ -345,21 +418,43 @@ export declare const stylePropsView: {
|
|
|
345
418
|
insetInline: boolean;
|
|
346
419
|
insetInlineEnd: boolean;
|
|
347
420
|
insetInlineStart: boolean;
|
|
348
|
-
direction: boolean;
|
|
349
421
|
shadowOffset: boolean;
|
|
350
422
|
shadowRadius: boolean;
|
|
423
|
+
alignContent: boolean;
|
|
424
|
+
alignItems: boolean;
|
|
425
|
+
alignSelf: boolean;
|
|
426
|
+
backfaceVisibility: boolean;
|
|
427
|
+
borderCurve: boolean;
|
|
428
|
+
borderStyle: boolean;
|
|
429
|
+
borderBlockStyle: boolean;
|
|
430
|
+
borderBlockEndStyle: boolean;
|
|
431
|
+
borderBlockStartStyle: boolean;
|
|
432
|
+
borderInlineStyle: boolean;
|
|
433
|
+
borderInlineEndStyle: boolean;
|
|
434
|
+
borderInlineStartStyle: boolean;
|
|
435
|
+
boxSizing: boolean;
|
|
436
|
+
cursor: boolean;
|
|
437
|
+
direction: boolean;
|
|
438
|
+
display: boolean;
|
|
439
|
+
flexDirection: boolean;
|
|
440
|
+
flexWrap: boolean;
|
|
441
|
+
isolation: boolean;
|
|
442
|
+
justifyContent: boolean;
|
|
443
|
+
mixBlendMode: boolean;
|
|
444
|
+
outlineStyle: boolean;
|
|
445
|
+
overflow: boolean;
|
|
446
|
+
position: boolean;
|
|
351
447
|
};
|
|
352
448
|
export declare const stylePropsTextOnly: {
|
|
449
|
+
textDecorationDistance?: boolean | undefined;
|
|
450
|
+
WebkitLineClamp?: boolean | undefined;
|
|
353
451
|
whiteSpace?: boolean | undefined;
|
|
354
452
|
wordWrap?: boolean | undefined;
|
|
355
453
|
textOverflow?: boolean | undefined;
|
|
356
|
-
textDecorationDistance?: boolean | undefined;
|
|
357
|
-
WebkitLineClamp?: boolean | undefined;
|
|
358
454
|
WebkitBoxOrient?: boolean | undefined;
|
|
359
455
|
textShadow: boolean;
|
|
360
456
|
textShadowOffset: boolean;
|
|
361
457
|
textShadowRadius: boolean;
|
|
362
|
-
userSelect: boolean;
|
|
363
458
|
verticalAlign: boolean;
|
|
364
459
|
color: boolean;
|
|
365
460
|
textDecorationColor: boolean;
|
|
@@ -367,26 +462,26 @@ export declare const stylePropsTextOnly: {
|
|
|
367
462
|
textAlign: boolean;
|
|
368
463
|
textDecorationLine: boolean;
|
|
369
464
|
textDecorationStyle: boolean;
|
|
370
|
-
|
|
465
|
+
userSelect: boolean;
|
|
371
466
|
fontSize: boolean;
|
|
372
|
-
fontStyle: boolean;
|
|
373
467
|
fontWeight: boolean;
|
|
374
|
-
fontVariant: boolean;
|
|
375
468
|
letterSpacing: boolean;
|
|
376
469
|
lineHeight: boolean;
|
|
470
|
+
fontFamily: boolean;
|
|
471
|
+
fontStyle: boolean;
|
|
472
|
+
fontVariant: boolean;
|
|
377
473
|
textTransform: boolean;
|
|
378
474
|
};
|
|
379
475
|
export declare const stylePropsText: {
|
|
476
|
+
textDecorationDistance?: boolean | undefined;
|
|
477
|
+
WebkitLineClamp: boolean;
|
|
380
478
|
whiteSpace?: boolean | undefined;
|
|
381
479
|
wordWrap?: boolean | undefined;
|
|
382
480
|
textOverflow?: boolean | undefined;
|
|
383
|
-
textDecorationDistance?: boolean | undefined;
|
|
384
|
-
WebkitLineClamp: boolean;
|
|
385
481
|
WebkitBoxOrient?: boolean | undefined;
|
|
386
482
|
textShadow: boolean;
|
|
387
483
|
textShadowOffset: boolean;
|
|
388
484
|
textShadowRadius: boolean;
|
|
389
|
-
userSelect: boolean;
|
|
390
485
|
verticalAlign: boolean;
|
|
391
486
|
color: boolean;
|
|
392
487
|
textDecorationColor: boolean;
|
|
@@ -394,16 +489,16 @@ export declare const stylePropsText: {
|
|
|
394
489
|
textAlign: boolean;
|
|
395
490
|
textDecorationLine: boolean;
|
|
396
491
|
textDecorationStyle: boolean;
|
|
397
|
-
|
|
492
|
+
userSelect: boolean;
|
|
398
493
|
fontSize: boolean;
|
|
399
|
-
fontStyle: boolean;
|
|
400
494
|
fontWeight: boolean;
|
|
401
|
-
fontVariant: boolean;
|
|
402
495
|
letterSpacing: boolean;
|
|
403
496
|
lineHeight: boolean;
|
|
497
|
+
fontFamily: boolean;
|
|
498
|
+
fontStyle: boolean;
|
|
499
|
+
fontVariant: boolean;
|
|
404
500
|
textTransform: boolean;
|
|
405
501
|
transition?: boolean | undefined;
|
|
406
|
-
textWrap?: boolean | undefined;
|
|
407
502
|
backdropFilter?: boolean | undefined;
|
|
408
503
|
WebkitBackdropFilter?: boolean | undefined;
|
|
409
504
|
background?: boolean | undefined;
|
|
@@ -411,50 +506,51 @@ export declare const stylePropsText: {
|
|
|
411
506
|
borderRight?: boolean | undefined;
|
|
412
507
|
borderBottom?: boolean | undefined;
|
|
413
508
|
borderLeft?: boolean | undefined;
|
|
509
|
+
backgroundPosition?: boolean | undefined;
|
|
510
|
+
backgroundSize?: boolean | undefined;
|
|
511
|
+
borderImage?: boolean | undefined;
|
|
512
|
+
caretColor?: boolean | undefined;
|
|
513
|
+
clipPath?: boolean | undefined;
|
|
514
|
+
mask?: boolean | undefined;
|
|
515
|
+
maskBorder?: boolean | undefined;
|
|
516
|
+
maskBorderOutset?: boolean | undefined;
|
|
517
|
+
maskBorderSlice?: boolean | undefined;
|
|
518
|
+
maskBorderSource?: boolean | undefined;
|
|
519
|
+
maskBorderWidth?: boolean | undefined;
|
|
520
|
+
maskImage?: boolean | undefined;
|
|
521
|
+
maskPosition?: boolean | undefined;
|
|
522
|
+
maskSize?: boolean | undefined;
|
|
523
|
+
objectPosition?: boolean | undefined;
|
|
524
|
+
textEmphasis?: boolean | undefined;
|
|
414
525
|
backgroundAttachment?: boolean | undefined;
|
|
415
526
|
backgroundBlendMode?: boolean | undefined;
|
|
416
527
|
backgroundClip?: boolean | undefined;
|
|
417
528
|
backgroundOrigin?: boolean | undefined;
|
|
418
|
-
backgroundPosition?: boolean | undefined;
|
|
419
529
|
backgroundRepeat?: boolean | undefined;
|
|
420
|
-
backgroundSize?: boolean | undefined;
|
|
421
530
|
borderBottomStyle?: boolean | undefined;
|
|
422
|
-
borderImage?: boolean | undefined;
|
|
423
531
|
borderLeftStyle?: boolean | undefined;
|
|
424
532
|
borderRightStyle?: boolean | undefined;
|
|
425
533
|
borderTopStyle?: boolean | undefined;
|
|
426
|
-
caretColor?: boolean | undefined;
|
|
427
|
-
clipPath?: boolean | undefined;
|
|
428
534
|
contain?: boolean | undefined;
|
|
429
535
|
containerType?: boolean | undefined;
|
|
430
536
|
content?: boolean | undefined;
|
|
431
537
|
float?: boolean | undefined;
|
|
432
|
-
mask?: boolean | undefined;
|
|
433
|
-
maskBorder?: boolean | undefined;
|
|
434
538
|
maskBorderMode?: boolean | undefined;
|
|
435
|
-
maskBorderOutset?: boolean | undefined;
|
|
436
539
|
maskBorderRepeat?: boolean | undefined;
|
|
437
|
-
maskBorderSlice?: boolean | undefined;
|
|
438
|
-
maskBorderSource?: boolean | undefined;
|
|
439
|
-
maskBorderWidth?: boolean | undefined;
|
|
440
540
|
maskClip?: boolean | undefined;
|
|
441
541
|
maskComposite?: boolean | undefined;
|
|
442
|
-
maskImage?: boolean | undefined;
|
|
443
542
|
maskMode?: boolean | undefined;
|
|
444
543
|
maskOrigin?: boolean | undefined;
|
|
445
|
-
maskPosition?: boolean | undefined;
|
|
446
544
|
maskRepeat?: boolean | undefined;
|
|
447
|
-
maskSize?: boolean | undefined;
|
|
448
545
|
maskType?: boolean | undefined;
|
|
449
546
|
objectFit?: boolean | undefined;
|
|
450
|
-
objectPosition?: boolean | undefined;
|
|
451
547
|
overflowBlock?: boolean | undefined;
|
|
452
548
|
overflowInline?: boolean | undefined;
|
|
453
549
|
overflowX?: boolean | undefined;
|
|
454
550
|
overflowY?: boolean | undefined;
|
|
455
551
|
pointerEvents?: boolean | undefined;
|
|
456
552
|
scrollbarWidth?: boolean | undefined;
|
|
457
|
-
|
|
553
|
+
textWrap?: boolean | undefined;
|
|
458
554
|
touchAction?: boolean | undefined;
|
|
459
555
|
transformStyle?: boolean | undefined;
|
|
460
556
|
willChange?: boolean | undefined;
|
|
@@ -463,12 +559,9 @@ export declare const stylePropsText: {
|
|
|
463
559
|
filter: boolean;
|
|
464
560
|
backgroundImage: boolean;
|
|
465
561
|
experimental_backgroundImage: boolean;
|
|
466
|
-
|
|
467
|
-
mixBlendMode: boolean;
|
|
468
|
-
isolation: boolean;
|
|
562
|
+
outline: boolean;
|
|
469
563
|
outlineColor: boolean;
|
|
470
564
|
outlineOffset: boolean;
|
|
471
|
-
outlineStyle: boolean;
|
|
472
565
|
outlineWidth: boolean;
|
|
473
566
|
elevationAndroid?: boolean | undefined;
|
|
474
567
|
animationIterationCount: boolean;
|
|
@@ -491,9 +584,6 @@ export declare const stylePropsText: {
|
|
|
491
584
|
gridColumnEnd: boolean;
|
|
492
585
|
gridColumnGap: boolean;
|
|
493
586
|
gridColumnStart: boolean;
|
|
494
|
-
gridTemplateColumns: boolean;
|
|
495
|
-
gridTemplateAreas: boolean;
|
|
496
|
-
lineClamp: boolean;
|
|
497
587
|
opacity: boolean;
|
|
498
588
|
order: boolean;
|
|
499
589
|
orphans: boolean;
|
|
@@ -506,6 +596,9 @@ export declare const stylePropsText: {
|
|
|
506
596
|
scaleY: boolean;
|
|
507
597
|
scaleZ: boolean;
|
|
508
598
|
shadowOpacity: boolean;
|
|
599
|
+
lineClamp: boolean;
|
|
600
|
+
gridTemplateColumns: boolean;
|
|
601
|
+
gridTemplateAreas: boolean;
|
|
509
602
|
x: boolean;
|
|
510
603
|
y: boolean;
|
|
511
604
|
perspective: boolean;
|
|
@@ -516,15 +609,6 @@ export declare const stylePropsText: {
|
|
|
516
609
|
rotateY: boolean;
|
|
517
610
|
rotateX: boolean;
|
|
518
611
|
rotateZ: boolean;
|
|
519
|
-
borderRadius: boolean;
|
|
520
|
-
borderTopLeftRadius: boolean;
|
|
521
|
-
borderTopRightRadius: boolean;
|
|
522
|
-
borderBottomLeftRadius: boolean;
|
|
523
|
-
borderBottomRightRadius: boolean;
|
|
524
|
-
borderStartStartRadius: boolean;
|
|
525
|
-
borderStartEndRadius: boolean;
|
|
526
|
-
borderEndStartRadius: boolean;
|
|
527
|
-
borderEndEndRadius: boolean;
|
|
528
612
|
width: boolean;
|
|
529
613
|
height: boolean;
|
|
530
614
|
minWidth: boolean;
|
|
@@ -537,6 +621,15 @@ export declare const stylePropsText: {
|
|
|
537
621
|
inlineSize: boolean;
|
|
538
622
|
minInlineSize: boolean;
|
|
539
623
|
maxInlineSize: boolean;
|
|
624
|
+
borderRadius: boolean;
|
|
625
|
+
borderTopLeftRadius: boolean;
|
|
626
|
+
borderTopRightRadius: boolean;
|
|
627
|
+
borderBottomLeftRadius: boolean;
|
|
628
|
+
borderBottomRightRadius: boolean;
|
|
629
|
+
borderStartStartRadius: boolean;
|
|
630
|
+
borderStartEndRadius: boolean;
|
|
631
|
+
borderEndStartRadius: boolean;
|
|
632
|
+
borderEndEndRadius: boolean;
|
|
540
633
|
backgroundColor: boolean;
|
|
541
634
|
borderColor: boolean;
|
|
542
635
|
borderBlockStartColor: boolean;
|
|
@@ -552,9 +645,6 @@ export declare const stylePropsText: {
|
|
|
552
645
|
borderEndColor: boolean;
|
|
553
646
|
borderStartColor: boolean;
|
|
554
647
|
shadowColor: boolean;
|
|
555
|
-
backfaceVisibility: boolean;
|
|
556
|
-
borderCurve: boolean;
|
|
557
|
-
cursor: boolean;
|
|
558
648
|
borderBottomEndRadius: boolean;
|
|
559
649
|
borderBottomStartRadius: boolean;
|
|
560
650
|
borderBottomWidth: boolean;
|
|
@@ -566,34 +656,20 @@ export declare const stylePropsText: {
|
|
|
566
656
|
borderInlineWidth: boolean;
|
|
567
657
|
borderInlineEndWidth: boolean;
|
|
568
658
|
borderInlineStartWidth: boolean;
|
|
569
|
-
borderStyle: boolean;
|
|
570
|
-
borderBlockStyle: boolean;
|
|
571
|
-
borderBlockEndStyle: boolean;
|
|
572
|
-
borderBlockStartStyle: boolean;
|
|
573
|
-
borderInlineStyle: boolean;
|
|
574
|
-
borderInlineEndStyle: boolean;
|
|
575
|
-
borderInlineStartStyle: boolean;
|
|
576
659
|
borderTopEndRadius: boolean;
|
|
577
660
|
borderTopStartRadius: boolean;
|
|
578
661
|
borderTopWidth: boolean;
|
|
579
662
|
borderWidth: boolean;
|
|
580
663
|
transform: boolean;
|
|
581
664
|
transformOrigin: boolean;
|
|
582
|
-
alignContent: boolean;
|
|
583
|
-
alignItems: boolean;
|
|
584
|
-
alignSelf: boolean;
|
|
585
665
|
borderEndWidth: boolean;
|
|
586
666
|
borderStartWidth: boolean;
|
|
587
667
|
bottom: boolean;
|
|
588
|
-
display: boolean;
|
|
589
668
|
end: boolean;
|
|
590
669
|
flexBasis: boolean;
|
|
591
|
-
flexDirection: boolean;
|
|
592
|
-
flexWrap: boolean;
|
|
593
670
|
gap: boolean;
|
|
594
671
|
columnGap: boolean;
|
|
595
672
|
rowGap: boolean;
|
|
596
|
-
justifyContent: boolean;
|
|
597
673
|
left: boolean;
|
|
598
674
|
margin: boolean;
|
|
599
675
|
marginBlock: boolean;
|
|
@@ -610,7 +686,6 @@ export declare const stylePropsText: {
|
|
|
610
686
|
marginStart: boolean;
|
|
611
687
|
marginTop: boolean;
|
|
612
688
|
marginVertical: boolean;
|
|
613
|
-
overflow: boolean;
|
|
614
689
|
padding: boolean;
|
|
615
690
|
paddingBottom: boolean;
|
|
616
691
|
paddingInline: boolean;
|
|
@@ -625,7 +700,6 @@ export declare const stylePropsText: {
|
|
|
625
700
|
paddingStart: boolean;
|
|
626
701
|
paddingTop: boolean;
|
|
627
702
|
paddingVertical: boolean;
|
|
628
|
-
position: boolean;
|
|
629
703
|
right: boolean;
|
|
630
704
|
start: boolean;
|
|
631
705
|
top: boolean;
|
|
@@ -636,21 +710,43 @@ export declare const stylePropsText: {
|
|
|
636
710
|
insetInline: boolean;
|
|
637
711
|
insetInlineEnd: boolean;
|
|
638
712
|
insetInlineStart: boolean;
|
|
639
|
-
direction: boolean;
|
|
640
713
|
shadowOffset: boolean;
|
|
641
714
|
shadowRadius: boolean;
|
|
715
|
+
alignContent: boolean;
|
|
716
|
+
alignItems: boolean;
|
|
717
|
+
alignSelf: boolean;
|
|
718
|
+
backfaceVisibility: boolean;
|
|
719
|
+
borderCurve: boolean;
|
|
720
|
+
borderStyle: boolean;
|
|
721
|
+
borderBlockStyle: boolean;
|
|
722
|
+
borderBlockEndStyle: boolean;
|
|
723
|
+
borderBlockStartStyle: boolean;
|
|
724
|
+
borderInlineStyle: boolean;
|
|
725
|
+
borderInlineEndStyle: boolean;
|
|
726
|
+
borderInlineStartStyle: boolean;
|
|
727
|
+
boxSizing: boolean;
|
|
728
|
+
cursor: boolean;
|
|
729
|
+
direction: boolean;
|
|
730
|
+
display: boolean;
|
|
731
|
+
flexDirection: boolean;
|
|
732
|
+
flexWrap: boolean;
|
|
733
|
+
isolation: boolean;
|
|
734
|
+
justifyContent: boolean;
|
|
735
|
+
mixBlendMode: boolean;
|
|
736
|
+
outlineStyle: boolean;
|
|
737
|
+
overflow: boolean;
|
|
738
|
+
position: boolean;
|
|
642
739
|
};
|
|
643
740
|
export declare const stylePropsAll: {
|
|
741
|
+
textDecorationDistance?: boolean | undefined;
|
|
742
|
+
WebkitLineClamp: boolean;
|
|
644
743
|
whiteSpace?: boolean | undefined;
|
|
645
744
|
wordWrap?: boolean | undefined;
|
|
646
745
|
textOverflow?: boolean | undefined;
|
|
647
|
-
textDecorationDistance?: boolean | undefined;
|
|
648
|
-
WebkitLineClamp: boolean;
|
|
649
746
|
WebkitBoxOrient?: boolean | undefined;
|
|
650
747
|
textShadow: boolean;
|
|
651
748
|
textShadowOffset: boolean;
|
|
652
749
|
textShadowRadius: boolean;
|
|
653
|
-
userSelect: boolean;
|
|
654
750
|
verticalAlign: boolean;
|
|
655
751
|
color: boolean;
|
|
656
752
|
textDecorationColor: boolean;
|
|
@@ -658,16 +754,16 @@ export declare const stylePropsAll: {
|
|
|
658
754
|
textAlign: boolean;
|
|
659
755
|
textDecorationLine: boolean;
|
|
660
756
|
textDecorationStyle: boolean;
|
|
661
|
-
|
|
757
|
+
userSelect: boolean;
|
|
662
758
|
fontSize: boolean;
|
|
663
|
-
fontStyle: boolean;
|
|
664
759
|
fontWeight: boolean;
|
|
665
|
-
fontVariant: boolean;
|
|
666
760
|
letterSpacing: boolean;
|
|
667
761
|
lineHeight: boolean;
|
|
762
|
+
fontFamily: boolean;
|
|
763
|
+
fontStyle: boolean;
|
|
764
|
+
fontVariant: boolean;
|
|
668
765
|
textTransform: boolean;
|
|
669
766
|
transition?: boolean | undefined;
|
|
670
|
-
textWrap?: boolean | undefined;
|
|
671
767
|
backdropFilter?: boolean | undefined;
|
|
672
768
|
WebkitBackdropFilter?: boolean | undefined;
|
|
673
769
|
background?: boolean | undefined;
|
|
@@ -675,50 +771,51 @@ export declare const stylePropsAll: {
|
|
|
675
771
|
borderRight?: boolean | undefined;
|
|
676
772
|
borderBottom?: boolean | undefined;
|
|
677
773
|
borderLeft?: boolean | undefined;
|
|
774
|
+
backgroundPosition?: boolean | undefined;
|
|
775
|
+
backgroundSize?: boolean | undefined;
|
|
776
|
+
borderImage?: boolean | undefined;
|
|
777
|
+
caretColor?: boolean | undefined;
|
|
778
|
+
clipPath?: boolean | undefined;
|
|
779
|
+
mask?: boolean | undefined;
|
|
780
|
+
maskBorder?: boolean | undefined;
|
|
781
|
+
maskBorderOutset?: boolean | undefined;
|
|
782
|
+
maskBorderSlice?: boolean | undefined;
|
|
783
|
+
maskBorderSource?: boolean | undefined;
|
|
784
|
+
maskBorderWidth?: boolean | undefined;
|
|
785
|
+
maskImage?: boolean | undefined;
|
|
786
|
+
maskPosition?: boolean | undefined;
|
|
787
|
+
maskSize?: boolean | undefined;
|
|
788
|
+
objectPosition?: boolean | undefined;
|
|
789
|
+
textEmphasis?: boolean | undefined;
|
|
678
790
|
backgroundAttachment?: boolean | undefined;
|
|
679
791
|
backgroundBlendMode?: boolean | undefined;
|
|
680
792
|
backgroundClip?: boolean | undefined;
|
|
681
793
|
backgroundOrigin?: boolean | undefined;
|
|
682
|
-
backgroundPosition?: boolean | undefined;
|
|
683
794
|
backgroundRepeat?: boolean | undefined;
|
|
684
|
-
backgroundSize?: boolean | undefined;
|
|
685
795
|
borderBottomStyle?: boolean | undefined;
|
|
686
|
-
borderImage?: boolean | undefined;
|
|
687
796
|
borderLeftStyle?: boolean | undefined;
|
|
688
797
|
borderRightStyle?: boolean | undefined;
|
|
689
798
|
borderTopStyle?: boolean | undefined;
|
|
690
|
-
caretColor?: boolean | undefined;
|
|
691
|
-
clipPath?: boolean | undefined;
|
|
692
799
|
contain?: boolean | undefined;
|
|
693
800
|
containerType?: boolean | undefined;
|
|
694
801
|
content?: boolean | undefined;
|
|
695
802
|
float?: boolean | undefined;
|
|
696
|
-
mask?: boolean | undefined;
|
|
697
|
-
maskBorder?: boolean | undefined;
|
|
698
803
|
maskBorderMode?: boolean | undefined;
|
|
699
|
-
maskBorderOutset?: boolean | undefined;
|
|
700
804
|
maskBorderRepeat?: boolean | undefined;
|
|
701
|
-
maskBorderSlice?: boolean | undefined;
|
|
702
|
-
maskBorderSource?: boolean | undefined;
|
|
703
|
-
maskBorderWidth?: boolean | undefined;
|
|
704
805
|
maskClip?: boolean | undefined;
|
|
705
806
|
maskComposite?: boolean | undefined;
|
|
706
|
-
maskImage?: boolean | undefined;
|
|
707
807
|
maskMode?: boolean | undefined;
|
|
708
808
|
maskOrigin?: boolean | undefined;
|
|
709
|
-
maskPosition?: boolean | undefined;
|
|
710
809
|
maskRepeat?: boolean | undefined;
|
|
711
|
-
maskSize?: boolean | undefined;
|
|
712
810
|
maskType?: boolean | undefined;
|
|
713
811
|
objectFit?: boolean | undefined;
|
|
714
|
-
objectPosition?: boolean | undefined;
|
|
715
812
|
overflowBlock?: boolean | undefined;
|
|
716
813
|
overflowInline?: boolean | undefined;
|
|
717
814
|
overflowX?: boolean | undefined;
|
|
718
815
|
overflowY?: boolean | undefined;
|
|
719
816
|
pointerEvents?: boolean | undefined;
|
|
720
817
|
scrollbarWidth?: boolean | undefined;
|
|
721
|
-
|
|
818
|
+
textWrap?: boolean | undefined;
|
|
722
819
|
touchAction?: boolean | undefined;
|
|
723
820
|
transformStyle?: boolean | undefined;
|
|
724
821
|
willChange?: boolean | undefined;
|
|
@@ -727,12 +824,9 @@ export declare const stylePropsAll: {
|
|
|
727
824
|
filter: boolean;
|
|
728
825
|
backgroundImage: boolean;
|
|
729
826
|
experimental_backgroundImage: boolean;
|
|
730
|
-
|
|
731
|
-
mixBlendMode: boolean;
|
|
732
|
-
isolation: boolean;
|
|
827
|
+
outline: boolean;
|
|
733
828
|
outlineColor: boolean;
|
|
734
829
|
outlineOffset: boolean;
|
|
735
|
-
outlineStyle: boolean;
|
|
736
830
|
outlineWidth: boolean;
|
|
737
831
|
elevationAndroid?: boolean | undefined;
|
|
738
832
|
animationIterationCount: boolean;
|
|
@@ -755,9 +849,6 @@ export declare const stylePropsAll: {
|
|
|
755
849
|
gridColumnEnd: boolean;
|
|
756
850
|
gridColumnGap: boolean;
|
|
757
851
|
gridColumnStart: boolean;
|
|
758
|
-
gridTemplateColumns: boolean;
|
|
759
|
-
gridTemplateAreas: boolean;
|
|
760
|
-
lineClamp: boolean;
|
|
761
852
|
opacity: boolean;
|
|
762
853
|
order: boolean;
|
|
763
854
|
orphans: boolean;
|
|
@@ -770,6 +861,9 @@ export declare const stylePropsAll: {
|
|
|
770
861
|
scaleY: boolean;
|
|
771
862
|
scaleZ: boolean;
|
|
772
863
|
shadowOpacity: boolean;
|
|
864
|
+
lineClamp: boolean;
|
|
865
|
+
gridTemplateColumns: boolean;
|
|
866
|
+
gridTemplateAreas: boolean;
|
|
773
867
|
x: boolean;
|
|
774
868
|
y: boolean;
|
|
775
869
|
perspective: boolean;
|
|
@@ -780,15 +874,6 @@ export declare const stylePropsAll: {
|
|
|
780
874
|
rotateY: boolean;
|
|
781
875
|
rotateX: boolean;
|
|
782
876
|
rotateZ: boolean;
|
|
783
|
-
borderRadius: boolean;
|
|
784
|
-
borderTopLeftRadius: boolean;
|
|
785
|
-
borderTopRightRadius: boolean;
|
|
786
|
-
borderBottomLeftRadius: boolean;
|
|
787
|
-
borderBottomRightRadius: boolean;
|
|
788
|
-
borderStartStartRadius: boolean;
|
|
789
|
-
borderStartEndRadius: boolean;
|
|
790
|
-
borderEndStartRadius: boolean;
|
|
791
|
-
borderEndEndRadius: boolean;
|
|
792
877
|
width: boolean;
|
|
793
878
|
height: boolean;
|
|
794
879
|
minWidth: boolean;
|
|
@@ -801,6 +886,15 @@ export declare const stylePropsAll: {
|
|
|
801
886
|
inlineSize: boolean;
|
|
802
887
|
minInlineSize: boolean;
|
|
803
888
|
maxInlineSize: boolean;
|
|
889
|
+
borderRadius: boolean;
|
|
890
|
+
borderTopLeftRadius: boolean;
|
|
891
|
+
borderTopRightRadius: boolean;
|
|
892
|
+
borderBottomLeftRadius: boolean;
|
|
893
|
+
borderBottomRightRadius: boolean;
|
|
894
|
+
borderStartStartRadius: boolean;
|
|
895
|
+
borderStartEndRadius: boolean;
|
|
896
|
+
borderEndStartRadius: boolean;
|
|
897
|
+
borderEndEndRadius: boolean;
|
|
804
898
|
backgroundColor: boolean;
|
|
805
899
|
borderColor: boolean;
|
|
806
900
|
borderBlockStartColor: boolean;
|
|
@@ -816,9 +910,6 @@ export declare const stylePropsAll: {
|
|
|
816
910
|
borderEndColor: boolean;
|
|
817
911
|
borderStartColor: boolean;
|
|
818
912
|
shadowColor: boolean;
|
|
819
|
-
backfaceVisibility: boolean;
|
|
820
|
-
borderCurve: boolean;
|
|
821
|
-
cursor: boolean;
|
|
822
913
|
borderBottomEndRadius: boolean;
|
|
823
914
|
borderBottomStartRadius: boolean;
|
|
824
915
|
borderBottomWidth: boolean;
|
|
@@ -830,34 +921,20 @@ export declare const stylePropsAll: {
|
|
|
830
921
|
borderInlineWidth: boolean;
|
|
831
922
|
borderInlineEndWidth: boolean;
|
|
832
923
|
borderInlineStartWidth: boolean;
|
|
833
|
-
borderStyle: boolean;
|
|
834
|
-
borderBlockStyle: boolean;
|
|
835
|
-
borderBlockEndStyle: boolean;
|
|
836
|
-
borderBlockStartStyle: boolean;
|
|
837
|
-
borderInlineStyle: boolean;
|
|
838
|
-
borderInlineEndStyle: boolean;
|
|
839
|
-
borderInlineStartStyle: boolean;
|
|
840
924
|
borderTopEndRadius: boolean;
|
|
841
925
|
borderTopStartRadius: boolean;
|
|
842
926
|
borderTopWidth: boolean;
|
|
843
927
|
borderWidth: boolean;
|
|
844
928
|
transform: boolean;
|
|
845
929
|
transformOrigin: boolean;
|
|
846
|
-
alignContent: boolean;
|
|
847
|
-
alignItems: boolean;
|
|
848
|
-
alignSelf: boolean;
|
|
849
930
|
borderEndWidth: boolean;
|
|
850
931
|
borderStartWidth: boolean;
|
|
851
932
|
bottom: boolean;
|
|
852
|
-
display: boolean;
|
|
853
933
|
end: boolean;
|
|
854
934
|
flexBasis: boolean;
|
|
855
|
-
flexDirection: boolean;
|
|
856
|
-
flexWrap: boolean;
|
|
857
935
|
gap: boolean;
|
|
858
936
|
columnGap: boolean;
|
|
859
937
|
rowGap: boolean;
|
|
860
|
-
justifyContent: boolean;
|
|
861
938
|
left: boolean;
|
|
862
939
|
margin: boolean;
|
|
863
940
|
marginBlock: boolean;
|
|
@@ -874,7 +951,6 @@ export declare const stylePropsAll: {
|
|
|
874
951
|
marginStart: boolean;
|
|
875
952
|
marginTop: boolean;
|
|
876
953
|
marginVertical: boolean;
|
|
877
|
-
overflow: boolean;
|
|
878
954
|
padding: boolean;
|
|
879
955
|
paddingBottom: boolean;
|
|
880
956
|
paddingInline: boolean;
|
|
@@ -889,7 +965,6 @@ export declare const stylePropsAll: {
|
|
|
889
965
|
paddingStart: boolean;
|
|
890
966
|
paddingTop: boolean;
|
|
891
967
|
paddingVertical: boolean;
|
|
892
|
-
position: boolean;
|
|
893
968
|
right: boolean;
|
|
894
969
|
start: boolean;
|
|
895
970
|
top: boolean;
|
|
@@ -900,9 +975,32 @@ export declare const stylePropsAll: {
|
|
|
900
975
|
insetInline: boolean;
|
|
901
976
|
insetInlineEnd: boolean;
|
|
902
977
|
insetInlineStart: boolean;
|
|
903
|
-
direction: boolean;
|
|
904
978
|
shadowOffset: boolean;
|
|
905
979
|
shadowRadius: boolean;
|
|
980
|
+
alignContent: boolean;
|
|
981
|
+
alignItems: boolean;
|
|
982
|
+
alignSelf: boolean;
|
|
983
|
+
backfaceVisibility: boolean;
|
|
984
|
+
borderCurve: boolean;
|
|
985
|
+
borderStyle: boolean;
|
|
986
|
+
borderBlockStyle: boolean;
|
|
987
|
+
borderBlockEndStyle: boolean;
|
|
988
|
+
borderBlockStartStyle: boolean;
|
|
989
|
+
borderInlineStyle: boolean;
|
|
990
|
+
borderInlineEndStyle: boolean;
|
|
991
|
+
borderInlineStartStyle: boolean;
|
|
992
|
+
boxSizing: boolean;
|
|
993
|
+
cursor: boolean;
|
|
994
|
+
direction: boolean;
|
|
995
|
+
display: boolean;
|
|
996
|
+
flexDirection: boolean;
|
|
997
|
+
flexWrap: boolean;
|
|
998
|
+
isolation: boolean;
|
|
999
|
+
justifyContent: boolean;
|
|
1000
|
+
mixBlendMode: boolean;
|
|
1001
|
+
outlineStyle: boolean;
|
|
1002
|
+
overflow: boolean;
|
|
1003
|
+
position: boolean;
|
|
906
1004
|
};
|
|
907
1005
|
export declare const validPseudoKeys: {
|
|
908
1006
|
focusVisibleStyle?: boolean | undefined;
|
|
@@ -916,7 +1014,6 @@ export declare const validPseudoKeys: {
|
|
|
916
1014
|
};
|
|
917
1015
|
export declare const validStyles: {
|
|
918
1016
|
transition?: boolean | undefined;
|
|
919
|
-
textWrap?: boolean | undefined;
|
|
920
1017
|
backdropFilter?: boolean | undefined;
|
|
921
1018
|
WebkitBackdropFilter?: boolean | undefined;
|
|
922
1019
|
background?: boolean | undefined;
|
|
@@ -924,68 +1021,65 @@ export declare const validStyles: {
|
|
|
924
1021
|
borderRight?: boolean | undefined;
|
|
925
1022
|
borderBottom?: boolean | undefined;
|
|
926
1023
|
borderLeft?: boolean | undefined;
|
|
1024
|
+
backgroundPosition?: boolean | undefined;
|
|
1025
|
+
backgroundSize?: boolean | undefined;
|
|
1026
|
+
borderImage?: boolean | undefined;
|
|
1027
|
+
caretColor?: boolean | undefined;
|
|
1028
|
+
clipPath?: boolean | undefined;
|
|
1029
|
+
mask?: boolean | undefined;
|
|
1030
|
+
maskBorder?: boolean | undefined;
|
|
1031
|
+
maskBorderOutset?: boolean | undefined;
|
|
1032
|
+
maskBorderSlice?: boolean | undefined;
|
|
1033
|
+
maskBorderSource?: boolean | undefined;
|
|
1034
|
+
maskBorderWidth?: boolean | undefined;
|
|
1035
|
+
maskImage?: boolean | undefined;
|
|
1036
|
+
maskPosition?: boolean | undefined;
|
|
1037
|
+
maskSize?: boolean | undefined;
|
|
1038
|
+
objectPosition?: boolean | undefined;
|
|
1039
|
+
textEmphasis?: boolean | undefined;
|
|
1040
|
+
userSelect?: boolean | undefined;
|
|
927
1041
|
backgroundAttachment?: boolean | undefined;
|
|
928
1042
|
backgroundBlendMode?: boolean | undefined;
|
|
929
1043
|
backgroundClip?: boolean | undefined;
|
|
930
1044
|
backgroundOrigin?: boolean | undefined;
|
|
931
|
-
backgroundPosition?: boolean | undefined;
|
|
932
1045
|
backgroundRepeat?: boolean | undefined;
|
|
933
|
-
backgroundSize?: boolean | undefined;
|
|
934
1046
|
borderBottomStyle?: boolean | undefined;
|
|
935
|
-
borderImage?: boolean | undefined;
|
|
936
1047
|
borderLeftStyle?: boolean | undefined;
|
|
937
1048
|
borderRightStyle?: boolean | undefined;
|
|
938
1049
|
borderTopStyle?: boolean | undefined;
|
|
939
|
-
caretColor?: boolean | undefined;
|
|
940
|
-
clipPath?: boolean | undefined;
|
|
941
1050
|
contain?: boolean | undefined;
|
|
942
1051
|
containerType?: boolean | undefined;
|
|
943
1052
|
content?: boolean | undefined;
|
|
944
1053
|
float?: boolean | undefined;
|
|
945
|
-
mask?: boolean | undefined;
|
|
946
|
-
maskBorder?: boolean | undefined;
|
|
947
1054
|
maskBorderMode?: boolean | undefined;
|
|
948
|
-
maskBorderOutset?: boolean | undefined;
|
|
949
1055
|
maskBorderRepeat?: boolean | undefined;
|
|
950
|
-
maskBorderSlice?: boolean | undefined;
|
|
951
|
-
maskBorderSource?: boolean | undefined;
|
|
952
|
-
maskBorderWidth?: boolean | undefined;
|
|
953
1056
|
maskClip?: boolean | undefined;
|
|
954
1057
|
maskComposite?: boolean | undefined;
|
|
955
|
-
maskImage?: boolean | undefined;
|
|
956
1058
|
maskMode?: boolean | undefined;
|
|
957
1059
|
maskOrigin?: boolean | undefined;
|
|
958
|
-
maskPosition?: boolean | undefined;
|
|
959
1060
|
maskRepeat?: boolean | undefined;
|
|
960
|
-
maskSize?: boolean | undefined;
|
|
961
1061
|
maskType?: boolean | undefined;
|
|
962
1062
|
objectFit?: boolean | undefined;
|
|
963
|
-
objectPosition?: boolean | undefined;
|
|
964
1063
|
overflowBlock?: boolean | undefined;
|
|
965
1064
|
overflowInline?: boolean | undefined;
|
|
966
1065
|
overflowX?: boolean | undefined;
|
|
967
1066
|
overflowY?: boolean | undefined;
|
|
968
1067
|
pointerEvents?: boolean | undefined;
|
|
969
1068
|
scrollbarWidth?: boolean | undefined;
|
|
970
|
-
|
|
1069
|
+
textWrap?: boolean | undefined;
|
|
971
1070
|
touchAction?: boolean | undefined;
|
|
972
1071
|
transformStyle?: boolean | undefined;
|
|
973
|
-
userSelect?: boolean | undefined;
|
|
974
1072
|
willChange?: boolean | undefined;
|
|
975
1073
|
boxShadow: boolean;
|
|
976
1074
|
border: boolean;
|
|
977
1075
|
filter: boolean;
|
|
978
1076
|
backgroundImage: boolean;
|
|
979
1077
|
experimental_backgroundImage: boolean;
|
|
980
|
-
|
|
981
|
-
mixBlendMode: boolean;
|
|
982
|
-
isolation: boolean;
|
|
1078
|
+
outline: boolean;
|
|
983
1079
|
outlineColor: boolean;
|
|
984
1080
|
outlineOffset: boolean;
|
|
985
|
-
outlineStyle: boolean;
|
|
986
1081
|
outlineWidth: boolean;
|
|
987
1082
|
elevationAndroid?: boolean | undefined;
|
|
988
|
-
WebkitLineClamp: boolean;
|
|
989
1083
|
animationIterationCount: boolean;
|
|
990
1084
|
aspectRatio: boolean;
|
|
991
1085
|
borderImageOutset: boolean;
|
|
@@ -1007,9 +1101,6 @@ export declare const validStyles: {
|
|
|
1007
1101
|
gridColumnEnd: boolean;
|
|
1008
1102
|
gridColumnGap: boolean;
|
|
1009
1103
|
gridColumnStart: boolean;
|
|
1010
|
-
gridTemplateColumns: boolean;
|
|
1011
|
-
gridTemplateAreas: boolean;
|
|
1012
|
-
lineClamp: boolean;
|
|
1013
1104
|
opacity: boolean;
|
|
1014
1105
|
order: boolean;
|
|
1015
1106
|
orphans: boolean;
|
|
@@ -1022,6 +1113,10 @@ export declare const validStyles: {
|
|
|
1022
1113
|
scaleY: boolean;
|
|
1023
1114
|
scaleZ: boolean;
|
|
1024
1115
|
shadowOpacity: boolean;
|
|
1116
|
+
WebkitLineClamp: boolean;
|
|
1117
|
+
lineClamp: boolean;
|
|
1118
|
+
gridTemplateColumns: boolean;
|
|
1119
|
+
gridTemplateAreas: boolean;
|
|
1025
1120
|
x: boolean;
|
|
1026
1121
|
y: boolean;
|
|
1027
1122
|
perspective: boolean;
|
|
@@ -1032,15 +1127,6 @@ export declare const validStyles: {
|
|
|
1032
1127
|
rotateY: boolean;
|
|
1033
1128
|
rotateX: boolean;
|
|
1034
1129
|
rotateZ: boolean;
|
|
1035
|
-
borderRadius: boolean;
|
|
1036
|
-
borderTopLeftRadius: boolean;
|
|
1037
|
-
borderTopRightRadius: boolean;
|
|
1038
|
-
borderBottomLeftRadius: boolean;
|
|
1039
|
-
borderBottomRightRadius: boolean;
|
|
1040
|
-
borderStartStartRadius: boolean;
|
|
1041
|
-
borderStartEndRadius: boolean;
|
|
1042
|
-
borderEndStartRadius: boolean;
|
|
1043
|
-
borderEndEndRadius: boolean;
|
|
1044
1130
|
width: boolean;
|
|
1045
1131
|
height: boolean;
|
|
1046
1132
|
minWidth: boolean;
|
|
@@ -1053,6 +1139,15 @@ export declare const validStyles: {
|
|
|
1053
1139
|
inlineSize: boolean;
|
|
1054
1140
|
minInlineSize: boolean;
|
|
1055
1141
|
maxInlineSize: boolean;
|
|
1142
|
+
borderRadius: boolean;
|
|
1143
|
+
borderTopLeftRadius: boolean;
|
|
1144
|
+
borderTopRightRadius: boolean;
|
|
1145
|
+
borderBottomLeftRadius: boolean;
|
|
1146
|
+
borderBottomRightRadius: boolean;
|
|
1147
|
+
borderStartStartRadius: boolean;
|
|
1148
|
+
borderStartEndRadius: boolean;
|
|
1149
|
+
borderEndStartRadius: boolean;
|
|
1150
|
+
borderEndEndRadius: boolean;
|
|
1056
1151
|
color: boolean;
|
|
1057
1152
|
textDecorationColor: boolean;
|
|
1058
1153
|
textShadowColor: boolean;
|
|
@@ -1071,9 +1166,6 @@ export declare const validStyles: {
|
|
|
1071
1166
|
borderEndColor: boolean;
|
|
1072
1167
|
borderStartColor: boolean;
|
|
1073
1168
|
shadowColor: boolean;
|
|
1074
|
-
backfaceVisibility: boolean;
|
|
1075
|
-
borderCurve: boolean;
|
|
1076
|
-
cursor: boolean;
|
|
1077
1169
|
borderBottomEndRadius: boolean;
|
|
1078
1170
|
borderBottomStartRadius: boolean;
|
|
1079
1171
|
borderBottomWidth: boolean;
|
|
@@ -1085,34 +1177,20 @@ export declare const validStyles: {
|
|
|
1085
1177
|
borderInlineWidth: boolean;
|
|
1086
1178
|
borderInlineEndWidth: boolean;
|
|
1087
1179
|
borderInlineStartWidth: boolean;
|
|
1088
|
-
borderStyle: boolean;
|
|
1089
|
-
borderBlockStyle: boolean;
|
|
1090
|
-
borderBlockEndStyle: boolean;
|
|
1091
|
-
borderBlockStartStyle: boolean;
|
|
1092
|
-
borderInlineStyle: boolean;
|
|
1093
|
-
borderInlineEndStyle: boolean;
|
|
1094
|
-
borderInlineStartStyle: boolean;
|
|
1095
1180
|
borderTopEndRadius: boolean;
|
|
1096
1181
|
borderTopStartRadius: boolean;
|
|
1097
1182
|
borderTopWidth: boolean;
|
|
1098
1183
|
borderWidth: boolean;
|
|
1099
1184
|
transform: boolean;
|
|
1100
1185
|
transformOrigin: boolean;
|
|
1101
|
-
alignContent: boolean;
|
|
1102
|
-
alignItems: boolean;
|
|
1103
|
-
alignSelf: boolean;
|
|
1104
1186
|
borderEndWidth: boolean;
|
|
1105
1187
|
borderStartWidth: boolean;
|
|
1106
1188
|
bottom: boolean;
|
|
1107
|
-
display: boolean;
|
|
1108
1189
|
end: boolean;
|
|
1109
1190
|
flexBasis: boolean;
|
|
1110
|
-
flexDirection: boolean;
|
|
1111
|
-
flexWrap: boolean;
|
|
1112
1191
|
gap: boolean;
|
|
1113
1192
|
columnGap: boolean;
|
|
1114
1193
|
rowGap: boolean;
|
|
1115
|
-
justifyContent: boolean;
|
|
1116
1194
|
left: boolean;
|
|
1117
1195
|
margin: boolean;
|
|
1118
1196
|
marginBlock: boolean;
|
|
@@ -1129,7 +1207,6 @@ export declare const validStyles: {
|
|
|
1129
1207
|
marginStart: boolean;
|
|
1130
1208
|
marginTop: boolean;
|
|
1131
1209
|
marginVertical: boolean;
|
|
1132
|
-
overflow: boolean;
|
|
1133
1210
|
padding: boolean;
|
|
1134
1211
|
paddingBottom: boolean;
|
|
1135
1212
|
paddingInline: boolean;
|
|
@@ -1144,7 +1221,6 @@ export declare const validStyles: {
|
|
|
1144
1221
|
paddingStart: boolean;
|
|
1145
1222
|
paddingTop: boolean;
|
|
1146
1223
|
paddingVertical: boolean;
|
|
1147
|
-
position: boolean;
|
|
1148
1224
|
right: boolean;
|
|
1149
1225
|
start: boolean;
|
|
1150
1226
|
top: boolean;
|
|
@@ -1155,8 +1231,31 @@ export declare const validStyles: {
|
|
|
1155
1231
|
insetInline: boolean;
|
|
1156
1232
|
insetInlineEnd: boolean;
|
|
1157
1233
|
insetInlineStart: boolean;
|
|
1158
|
-
direction: boolean;
|
|
1159
1234
|
shadowOffset: boolean;
|
|
1160
1235
|
shadowRadius: boolean;
|
|
1236
|
+
alignContent: boolean;
|
|
1237
|
+
alignItems: boolean;
|
|
1238
|
+
alignSelf: boolean;
|
|
1239
|
+
backfaceVisibility: boolean;
|
|
1240
|
+
borderCurve: boolean;
|
|
1241
|
+
borderStyle: boolean;
|
|
1242
|
+
borderBlockStyle: boolean;
|
|
1243
|
+
borderBlockEndStyle: boolean;
|
|
1244
|
+
borderBlockStartStyle: boolean;
|
|
1245
|
+
borderInlineStyle: boolean;
|
|
1246
|
+
borderInlineEndStyle: boolean;
|
|
1247
|
+
borderInlineStartStyle: boolean;
|
|
1248
|
+
boxSizing: boolean;
|
|
1249
|
+
cursor: boolean;
|
|
1250
|
+
direction: boolean;
|
|
1251
|
+
display: boolean;
|
|
1252
|
+
flexDirection: boolean;
|
|
1253
|
+
flexWrap: boolean;
|
|
1254
|
+
isolation: boolean;
|
|
1255
|
+
justifyContent: boolean;
|
|
1256
|
+
mixBlendMode: boolean;
|
|
1257
|
+
outlineStyle: boolean;
|
|
1258
|
+
overflow: boolean;
|
|
1259
|
+
position: boolean;
|
|
1161
1260
|
};
|
|
1162
1261
|
//# sourceMappingURL=validStyleProps.d.ts.map
|