@tamagui/helpers 1.97.0 → 1.98.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/dist/cjs/validStyleProps.js +74 -5
- package/dist/cjs/validStyleProps.js.map +1 -1
- package/dist/cjs/validStyleProps.native.js +35 -3
- package/dist/cjs/validStyleProps.native.js.map +2 -2
- package/dist/esm/validStyleProps.js +74 -5
- package/dist/esm/validStyleProps.js.map +1 -1
- package/dist/esm/validStyleProps.mjs +74 -5
- package/dist/esm/validStyleProps.native.js +35 -3
- package/dist/esm/validStyleProps.native.js.map +2 -2
- package/package.json +4 -4
- package/src/validStyleProps.ts +73 -3
- package/types/validStyleProps.d.ts +291 -14
- package/types/validStyleProps.d.ts.map +1 -1
- package/types/withStaticProperties.d.ts.map +1 -1
|
@@ -17,12 +17,19 @@ export declare const tokenCategories: {
|
|
|
17
17
|
minHeight: boolean;
|
|
18
18
|
maxWidth: boolean;
|
|
19
19
|
maxHeight: boolean;
|
|
20
|
+
blockSize: boolean;
|
|
21
|
+
minBlockSize: boolean;
|
|
22
|
+
maxBlockSize: boolean;
|
|
23
|
+
inlineSize: boolean;
|
|
24
|
+
minInlineSize: boolean;
|
|
25
|
+
maxInlineSize: boolean;
|
|
20
26
|
};
|
|
21
27
|
zIndex: {
|
|
22
28
|
zIndex: boolean;
|
|
23
29
|
};
|
|
24
30
|
color: {
|
|
25
31
|
outlineColor?: boolean | undefined;
|
|
32
|
+
caretColor?: boolean | undefined;
|
|
26
33
|
color: boolean;
|
|
27
34
|
textDecorationColor: boolean;
|
|
28
35
|
textShadowColor: boolean;
|
|
@@ -32,6 +39,9 @@ export declare const tokenCategories: {
|
|
|
32
39
|
borderBlockEndColor: boolean;
|
|
33
40
|
borderBlockColor: boolean;
|
|
34
41
|
borderBottomColor: boolean;
|
|
42
|
+
borderInlineColor: boolean;
|
|
43
|
+
borderInlineStartColor: boolean;
|
|
44
|
+
borderInlineEndColor: boolean;
|
|
35
45
|
borderTopColor: boolean;
|
|
36
46
|
borderLeftColor: boolean;
|
|
37
47
|
borderRightColor: boolean;
|
|
@@ -112,6 +122,44 @@ export declare const stylePropsView: {
|
|
|
112
122
|
outlineOffset?: boolean | undefined;
|
|
113
123
|
outlineWidth?: boolean | undefined;
|
|
114
124
|
touchAction?: boolean | undefined;
|
|
125
|
+
filter?: boolean | undefined;
|
|
126
|
+
backdropFilter?: boolean | undefined;
|
|
127
|
+
mixBlendMode?: boolean | undefined;
|
|
128
|
+
backgroundImage?: boolean | undefined;
|
|
129
|
+
backgroundOrigin?: boolean | undefined;
|
|
130
|
+
backgroundPosition?: boolean | undefined;
|
|
131
|
+
backgroundRepeat?: boolean | undefined;
|
|
132
|
+
backgroundSize?: boolean | undefined;
|
|
133
|
+
backgroundColor: boolean;
|
|
134
|
+
backgroundClip?: boolean | undefined;
|
|
135
|
+
backgroundBlendMode?: boolean | undefined;
|
|
136
|
+
backgroundAttachment?: boolean | undefined;
|
|
137
|
+
background?: boolean | undefined;
|
|
138
|
+
clipPath?: boolean | undefined;
|
|
139
|
+
transformStyle?: boolean | undefined;
|
|
140
|
+
mask?: boolean | undefined;
|
|
141
|
+
maskImage?: boolean | undefined;
|
|
142
|
+
textEmphasis?: boolean | undefined;
|
|
143
|
+
borderImage?: boolean | undefined;
|
|
144
|
+
float?: boolean | undefined;
|
|
145
|
+
content?: boolean | undefined;
|
|
146
|
+
overflowBlock?: boolean | undefined;
|
|
147
|
+
overflowInline?: boolean | undefined;
|
|
148
|
+
maskBorder?: boolean | undefined;
|
|
149
|
+
maskBorderMode?: boolean | undefined;
|
|
150
|
+
maskBorderOutset?: boolean | undefined;
|
|
151
|
+
maskBorderRepeat?: boolean | undefined;
|
|
152
|
+
maskBorderSlice?: boolean | undefined;
|
|
153
|
+
maskBorderSource?: boolean | undefined;
|
|
154
|
+
maskBorderWidth?: boolean | undefined;
|
|
155
|
+
maskClip?: boolean | undefined;
|
|
156
|
+
maskComposite?: boolean | undefined;
|
|
157
|
+
maskMode?: boolean | undefined;
|
|
158
|
+
maskOrigin?: boolean | undefined;
|
|
159
|
+
maskPosition?: boolean | undefined;
|
|
160
|
+
maskRepeat?: boolean | undefined;
|
|
161
|
+
maskSize?: boolean | undefined;
|
|
162
|
+
maskType?: boolean | undefined;
|
|
115
163
|
WebkitLineClamp: boolean;
|
|
116
164
|
animationIterationCount: boolean;
|
|
117
165
|
aspectRatio: boolean;
|
|
@@ -172,16 +220,24 @@ export declare const stylePropsView: {
|
|
|
172
220
|
minHeight: boolean;
|
|
173
221
|
maxWidth: boolean;
|
|
174
222
|
maxHeight: boolean;
|
|
223
|
+
blockSize: boolean;
|
|
224
|
+
minBlockSize: boolean;
|
|
225
|
+
maxBlockSize: boolean;
|
|
226
|
+
inlineSize: boolean;
|
|
227
|
+
minInlineSize: boolean;
|
|
228
|
+
maxInlineSize: boolean;
|
|
175
229
|
outlineColor?: boolean | undefined;
|
|
176
230
|
color: boolean;
|
|
177
231
|
textDecorationColor: boolean;
|
|
178
232
|
textShadowColor: boolean;
|
|
179
|
-
backgroundColor: boolean;
|
|
180
233
|
borderColor: boolean;
|
|
181
234
|
borderBlockStartColor: boolean;
|
|
182
235
|
borderBlockEndColor: boolean;
|
|
183
236
|
borderBlockColor: boolean;
|
|
184
237
|
borderBottomColor: boolean;
|
|
238
|
+
borderInlineColor: boolean;
|
|
239
|
+
borderInlineStartColor: boolean;
|
|
240
|
+
borderInlineEndColor: boolean;
|
|
185
241
|
borderTopColor: boolean;
|
|
186
242
|
borderLeftColor: boolean;
|
|
187
243
|
borderRightColor: boolean;
|
|
@@ -194,7 +250,19 @@ export declare const stylePropsView: {
|
|
|
194
250
|
borderBottomWidth: boolean;
|
|
195
251
|
borderLeftWidth: boolean;
|
|
196
252
|
borderRightWidth: boolean;
|
|
253
|
+
borderBlockWidth: boolean;
|
|
254
|
+
borderBlockEndWidth: boolean;
|
|
255
|
+
borderBlockStartWidth: boolean;
|
|
256
|
+
borderInlineWidth: boolean;
|
|
257
|
+
borderInlineEndWidth: boolean;
|
|
258
|
+
borderInlineStartWidth: boolean;
|
|
197
259
|
borderStyle: boolean;
|
|
260
|
+
borderBlockStyle: boolean;
|
|
261
|
+
borderBlockEndStyle: boolean;
|
|
262
|
+
borderBlockStartStyle: boolean;
|
|
263
|
+
borderInlineStyle: boolean;
|
|
264
|
+
borderInlineEndStyle: boolean;
|
|
265
|
+
borderInlineStartStyle: boolean;
|
|
198
266
|
borderTopEndRadius: boolean;
|
|
199
267
|
borderTopStartRadius: boolean;
|
|
200
268
|
borderTopWidth: boolean;
|
|
@@ -218,11 +286,12 @@ export declare const stylePropsView: {
|
|
|
218
286
|
justifyContent: boolean;
|
|
219
287
|
left: boolean;
|
|
220
288
|
margin: boolean;
|
|
289
|
+
marginBlock: boolean;
|
|
221
290
|
marginBlockEnd: boolean;
|
|
222
291
|
marginBlockStart: boolean;
|
|
223
|
-
marginInlineEnd: boolean;
|
|
224
292
|
marginInline: boolean;
|
|
225
293
|
marginInlineStart: boolean;
|
|
294
|
+
marginInlineEnd: boolean;
|
|
226
295
|
marginBottom: boolean;
|
|
227
296
|
marginEnd: boolean;
|
|
228
297
|
marginHorizontal: boolean;
|
|
@@ -250,6 +319,13 @@ export declare const stylePropsView: {
|
|
|
250
319
|
right: boolean;
|
|
251
320
|
start: boolean;
|
|
252
321
|
top: boolean;
|
|
322
|
+
inset: boolean;
|
|
323
|
+
insetBlock: boolean;
|
|
324
|
+
insetBlockEnd: boolean;
|
|
325
|
+
insetBlockStart: boolean;
|
|
326
|
+
insetInline: boolean;
|
|
327
|
+
insetInlineEnd: boolean;
|
|
328
|
+
insetInlineStart: boolean;
|
|
253
329
|
direction: boolean;
|
|
254
330
|
shadowOffset: boolean;
|
|
255
331
|
shadowRadius: boolean;
|
|
@@ -268,13 +344,14 @@ export declare const stylePropsTextOnly: {
|
|
|
268
344
|
wordWrap?: boolean | undefined;
|
|
269
345
|
textOverflow?: boolean | undefined;
|
|
270
346
|
textDecorationDistance?: boolean | undefined;
|
|
271
|
-
userSelect?: boolean | undefined;
|
|
272
|
-
selectable?: boolean | undefined;
|
|
273
347
|
cursor?: boolean | undefined;
|
|
274
348
|
WebkitLineClamp?: boolean | undefined;
|
|
275
349
|
WebkitBoxOrient?: boolean | undefined;
|
|
276
350
|
textShadowOffset: boolean;
|
|
277
351
|
textShadowRadius: boolean;
|
|
352
|
+
userSelect: boolean;
|
|
353
|
+
selectable: boolean;
|
|
354
|
+
verticalAlign: boolean;
|
|
278
355
|
color: boolean;
|
|
279
356
|
textDecorationColor: boolean;
|
|
280
357
|
textShadowColor: boolean;
|
|
@@ -294,13 +371,14 @@ export declare const stylePropsText: {
|
|
|
294
371
|
wordWrap?: boolean | undefined;
|
|
295
372
|
textOverflow?: boolean | undefined;
|
|
296
373
|
textDecorationDistance?: boolean | undefined;
|
|
297
|
-
userSelect?: boolean | undefined;
|
|
298
|
-
selectable?: boolean | undefined;
|
|
299
374
|
cursor?: boolean | undefined;
|
|
300
375
|
WebkitLineClamp: boolean;
|
|
301
376
|
WebkitBoxOrient?: boolean | undefined;
|
|
302
377
|
textShadowOffset: boolean;
|
|
303
378
|
textShadowRadius: boolean;
|
|
379
|
+
userSelect: boolean;
|
|
380
|
+
selectable: boolean;
|
|
381
|
+
verticalAlign: boolean;
|
|
304
382
|
color: boolean;
|
|
305
383
|
textDecorationColor: boolean;
|
|
306
384
|
textShadowColor: boolean;
|
|
@@ -331,6 +409,44 @@ export declare const stylePropsText: {
|
|
|
331
409
|
outlineOffset?: boolean | undefined;
|
|
332
410
|
outlineWidth?: boolean | undefined;
|
|
333
411
|
touchAction?: boolean | undefined;
|
|
412
|
+
filter?: boolean | undefined;
|
|
413
|
+
backdropFilter?: boolean | undefined;
|
|
414
|
+
mixBlendMode?: boolean | undefined;
|
|
415
|
+
backgroundImage?: boolean | undefined;
|
|
416
|
+
backgroundOrigin?: boolean | undefined;
|
|
417
|
+
backgroundPosition?: boolean | undefined;
|
|
418
|
+
backgroundRepeat?: boolean | undefined;
|
|
419
|
+
backgroundSize?: boolean | undefined;
|
|
420
|
+
backgroundColor: boolean;
|
|
421
|
+
backgroundClip?: boolean | undefined;
|
|
422
|
+
backgroundBlendMode?: boolean | undefined;
|
|
423
|
+
backgroundAttachment?: boolean | undefined;
|
|
424
|
+
background?: boolean | undefined;
|
|
425
|
+
clipPath?: boolean | undefined;
|
|
426
|
+
transformStyle?: boolean | undefined;
|
|
427
|
+
mask?: boolean | undefined;
|
|
428
|
+
maskImage?: boolean | undefined;
|
|
429
|
+
textEmphasis?: boolean | undefined;
|
|
430
|
+
borderImage?: boolean | undefined;
|
|
431
|
+
float?: boolean | undefined;
|
|
432
|
+
content?: boolean | undefined;
|
|
433
|
+
overflowBlock?: boolean | undefined;
|
|
434
|
+
overflowInline?: boolean | undefined;
|
|
435
|
+
maskBorder?: boolean | undefined;
|
|
436
|
+
maskBorderMode?: boolean | undefined;
|
|
437
|
+
maskBorderOutset?: boolean | undefined;
|
|
438
|
+
maskBorderRepeat?: boolean | undefined;
|
|
439
|
+
maskBorderSlice?: boolean | undefined;
|
|
440
|
+
maskBorderSource?: boolean | undefined;
|
|
441
|
+
maskBorderWidth?: boolean | undefined;
|
|
442
|
+
maskClip?: boolean | undefined;
|
|
443
|
+
maskComposite?: boolean | undefined;
|
|
444
|
+
maskMode?: boolean | undefined;
|
|
445
|
+
maskOrigin?: boolean | undefined;
|
|
446
|
+
maskPosition?: boolean | undefined;
|
|
447
|
+
maskRepeat?: boolean | undefined;
|
|
448
|
+
maskSize?: boolean | undefined;
|
|
449
|
+
maskType?: boolean | undefined;
|
|
334
450
|
animationIterationCount: boolean;
|
|
335
451
|
aspectRatio: boolean;
|
|
336
452
|
borderImageOutset: boolean;
|
|
@@ -389,13 +505,21 @@ export declare const stylePropsText: {
|
|
|
389
505
|
minHeight: boolean;
|
|
390
506
|
maxWidth: boolean;
|
|
391
507
|
maxHeight: boolean;
|
|
508
|
+
blockSize: boolean;
|
|
509
|
+
minBlockSize: boolean;
|
|
510
|
+
maxBlockSize: boolean;
|
|
511
|
+
inlineSize: boolean;
|
|
512
|
+
minInlineSize: boolean;
|
|
513
|
+
maxInlineSize: boolean;
|
|
392
514
|
outlineColor?: boolean | undefined;
|
|
393
|
-
backgroundColor: boolean;
|
|
394
515
|
borderColor: boolean;
|
|
395
516
|
borderBlockStartColor: boolean;
|
|
396
517
|
borderBlockEndColor: boolean;
|
|
397
518
|
borderBlockColor: boolean;
|
|
398
519
|
borderBottomColor: boolean;
|
|
520
|
+
borderInlineColor: boolean;
|
|
521
|
+
borderInlineStartColor: boolean;
|
|
522
|
+
borderInlineEndColor: boolean;
|
|
399
523
|
borderTopColor: boolean;
|
|
400
524
|
borderLeftColor: boolean;
|
|
401
525
|
borderRightColor: boolean;
|
|
@@ -408,7 +532,19 @@ export declare const stylePropsText: {
|
|
|
408
532
|
borderBottomWidth: boolean;
|
|
409
533
|
borderLeftWidth: boolean;
|
|
410
534
|
borderRightWidth: boolean;
|
|
535
|
+
borderBlockWidth: boolean;
|
|
536
|
+
borderBlockEndWidth: boolean;
|
|
537
|
+
borderBlockStartWidth: boolean;
|
|
538
|
+
borderInlineWidth: boolean;
|
|
539
|
+
borderInlineEndWidth: boolean;
|
|
540
|
+
borderInlineStartWidth: boolean;
|
|
411
541
|
borderStyle: boolean;
|
|
542
|
+
borderBlockStyle: boolean;
|
|
543
|
+
borderBlockEndStyle: boolean;
|
|
544
|
+
borderBlockStartStyle: boolean;
|
|
545
|
+
borderInlineStyle: boolean;
|
|
546
|
+
borderInlineEndStyle: boolean;
|
|
547
|
+
borderInlineStartStyle: boolean;
|
|
412
548
|
borderTopEndRadius: boolean;
|
|
413
549
|
borderTopStartRadius: boolean;
|
|
414
550
|
borderTopWidth: boolean;
|
|
@@ -432,11 +568,12 @@ export declare const stylePropsText: {
|
|
|
432
568
|
justifyContent: boolean;
|
|
433
569
|
left: boolean;
|
|
434
570
|
margin: boolean;
|
|
571
|
+
marginBlock: boolean;
|
|
435
572
|
marginBlockEnd: boolean;
|
|
436
573
|
marginBlockStart: boolean;
|
|
437
|
-
marginInlineEnd: boolean;
|
|
438
574
|
marginInline: boolean;
|
|
439
575
|
marginInlineStart: boolean;
|
|
576
|
+
marginInlineEnd: boolean;
|
|
440
577
|
marginBottom: boolean;
|
|
441
578
|
marginEnd: boolean;
|
|
442
579
|
marginHorizontal: boolean;
|
|
@@ -464,6 +601,13 @@ export declare const stylePropsText: {
|
|
|
464
601
|
right: boolean;
|
|
465
602
|
start: boolean;
|
|
466
603
|
top: boolean;
|
|
604
|
+
inset: boolean;
|
|
605
|
+
insetBlock: boolean;
|
|
606
|
+
insetBlockEnd: boolean;
|
|
607
|
+
insetBlockStart: boolean;
|
|
608
|
+
insetInline: boolean;
|
|
609
|
+
insetInlineEnd: boolean;
|
|
610
|
+
insetInlineStart: boolean;
|
|
467
611
|
direction: boolean;
|
|
468
612
|
shadowOffset: boolean;
|
|
469
613
|
shadowRadius: boolean;
|
|
@@ -473,13 +617,14 @@ export declare const stylePropsAll: {
|
|
|
473
617
|
wordWrap?: boolean | undefined;
|
|
474
618
|
textOverflow?: boolean | undefined;
|
|
475
619
|
textDecorationDistance?: boolean | undefined;
|
|
476
|
-
userSelect?: boolean | undefined;
|
|
477
|
-
selectable?: boolean | undefined;
|
|
478
620
|
cursor?: boolean | undefined;
|
|
479
621
|
WebkitLineClamp: boolean;
|
|
480
622
|
WebkitBoxOrient?: boolean | undefined;
|
|
481
623
|
textShadowOffset: boolean;
|
|
482
624
|
textShadowRadius: boolean;
|
|
625
|
+
userSelect: boolean;
|
|
626
|
+
selectable: boolean;
|
|
627
|
+
verticalAlign: boolean;
|
|
483
628
|
color: boolean;
|
|
484
629
|
textDecorationColor: boolean;
|
|
485
630
|
textShadowColor: boolean;
|
|
@@ -510,6 +655,44 @@ export declare const stylePropsAll: {
|
|
|
510
655
|
outlineOffset?: boolean | undefined;
|
|
511
656
|
outlineWidth?: boolean | undefined;
|
|
512
657
|
touchAction?: boolean | undefined;
|
|
658
|
+
filter?: boolean | undefined;
|
|
659
|
+
backdropFilter?: boolean | undefined;
|
|
660
|
+
mixBlendMode?: boolean | undefined;
|
|
661
|
+
backgroundImage?: boolean | undefined;
|
|
662
|
+
backgroundOrigin?: boolean | undefined;
|
|
663
|
+
backgroundPosition?: boolean | undefined;
|
|
664
|
+
backgroundRepeat?: boolean | undefined;
|
|
665
|
+
backgroundSize?: boolean | undefined;
|
|
666
|
+
backgroundColor: boolean;
|
|
667
|
+
backgroundClip?: boolean | undefined;
|
|
668
|
+
backgroundBlendMode?: boolean | undefined;
|
|
669
|
+
backgroundAttachment?: boolean | undefined;
|
|
670
|
+
background?: boolean | undefined;
|
|
671
|
+
clipPath?: boolean | undefined;
|
|
672
|
+
transformStyle?: boolean | undefined;
|
|
673
|
+
mask?: boolean | undefined;
|
|
674
|
+
maskImage?: boolean | undefined;
|
|
675
|
+
textEmphasis?: boolean | undefined;
|
|
676
|
+
borderImage?: boolean | undefined;
|
|
677
|
+
float?: boolean | undefined;
|
|
678
|
+
content?: boolean | undefined;
|
|
679
|
+
overflowBlock?: boolean | undefined;
|
|
680
|
+
overflowInline?: boolean | undefined;
|
|
681
|
+
maskBorder?: boolean | undefined;
|
|
682
|
+
maskBorderMode?: boolean | undefined;
|
|
683
|
+
maskBorderOutset?: boolean | undefined;
|
|
684
|
+
maskBorderRepeat?: boolean | undefined;
|
|
685
|
+
maskBorderSlice?: boolean | undefined;
|
|
686
|
+
maskBorderSource?: boolean | undefined;
|
|
687
|
+
maskBorderWidth?: boolean | undefined;
|
|
688
|
+
maskClip?: boolean | undefined;
|
|
689
|
+
maskComposite?: boolean | undefined;
|
|
690
|
+
maskMode?: boolean | undefined;
|
|
691
|
+
maskOrigin?: boolean | undefined;
|
|
692
|
+
maskPosition?: boolean | undefined;
|
|
693
|
+
maskRepeat?: boolean | undefined;
|
|
694
|
+
maskSize?: boolean | undefined;
|
|
695
|
+
maskType?: boolean | undefined;
|
|
513
696
|
animationIterationCount: boolean;
|
|
514
697
|
aspectRatio: boolean;
|
|
515
698
|
borderImageOutset: boolean;
|
|
@@ -568,13 +751,21 @@ export declare const stylePropsAll: {
|
|
|
568
751
|
minHeight: boolean;
|
|
569
752
|
maxWidth: boolean;
|
|
570
753
|
maxHeight: boolean;
|
|
754
|
+
blockSize: boolean;
|
|
755
|
+
minBlockSize: boolean;
|
|
756
|
+
maxBlockSize: boolean;
|
|
757
|
+
inlineSize: boolean;
|
|
758
|
+
minInlineSize: boolean;
|
|
759
|
+
maxInlineSize: boolean;
|
|
571
760
|
outlineColor?: boolean | undefined;
|
|
572
|
-
backgroundColor: boolean;
|
|
573
761
|
borderColor: boolean;
|
|
574
762
|
borderBlockStartColor: boolean;
|
|
575
763
|
borderBlockEndColor: boolean;
|
|
576
764
|
borderBlockColor: boolean;
|
|
577
765
|
borderBottomColor: boolean;
|
|
766
|
+
borderInlineColor: boolean;
|
|
767
|
+
borderInlineStartColor: boolean;
|
|
768
|
+
borderInlineEndColor: boolean;
|
|
578
769
|
borderTopColor: boolean;
|
|
579
770
|
borderLeftColor: boolean;
|
|
580
771
|
borderRightColor: boolean;
|
|
@@ -587,7 +778,19 @@ export declare const stylePropsAll: {
|
|
|
587
778
|
borderBottomWidth: boolean;
|
|
588
779
|
borderLeftWidth: boolean;
|
|
589
780
|
borderRightWidth: boolean;
|
|
781
|
+
borderBlockWidth: boolean;
|
|
782
|
+
borderBlockEndWidth: boolean;
|
|
783
|
+
borderBlockStartWidth: boolean;
|
|
784
|
+
borderInlineWidth: boolean;
|
|
785
|
+
borderInlineEndWidth: boolean;
|
|
786
|
+
borderInlineStartWidth: boolean;
|
|
590
787
|
borderStyle: boolean;
|
|
788
|
+
borderBlockStyle: boolean;
|
|
789
|
+
borderBlockEndStyle: boolean;
|
|
790
|
+
borderBlockStartStyle: boolean;
|
|
791
|
+
borderInlineStyle: boolean;
|
|
792
|
+
borderInlineEndStyle: boolean;
|
|
793
|
+
borderInlineStartStyle: boolean;
|
|
591
794
|
borderTopEndRadius: boolean;
|
|
592
795
|
borderTopStartRadius: boolean;
|
|
593
796
|
borderTopWidth: boolean;
|
|
@@ -611,11 +814,12 @@ export declare const stylePropsAll: {
|
|
|
611
814
|
justifyContent: boolean;
|
|
612
815
|
left: boolean;
|
|
613
816
|
margin: boolean;
|
|
817
|
+
marginBlock: boolean;
|
|
614
818
|
marginBlockEnd: boolean;
|
|
615
819
|
marginBlockStart: boolean;
|
|
616
|
-
marginInlineEnd: boolean;
|
|
617
820
|
marginInline: boolean;
|
|
618
821
|
marginInlineStart: boolean;
|
|
822
|
+
marginInlineEnd: boolean;
|
|
619
823
|
marginBottom: boolean;
|
|
620
824
|
marginEnd: boolean;
|
|
621
825
|
marginHorizontal: boolean;
|
|
@@ -643,6 +847,13 @@ export declare const stylePropsAll: {
|
|
|
643
847
|
right: boolean;
|
|
644
848
|
start: boolean;
|
|
645
849
|
top: boolean;
|
|
850
|
+
inset: boolean;
|
|
851
|
+
insetBlock: boolean;
|
|
852
|
+
insetBlockEnd: boolean;
|
|
853
|
+
insetBlockStart: boolean;
|
|
854
|
+
insetInline: boolean;
|
|
855
|
+
insetInlineEnd: boolean;
|
|
856
|
+
insetInlineStart: boolean;
|
|
646
857
|
direction: boolean;
|
|
647
858
|
shadowOffset: boolean;
|
|
648
859
|
shadowRadius: boolean;
|
|
@@ -676,6 +887,44 @@ export declare const validStyles: {
|
|
|
676
887
|
outlineOffset?: boolean | undefined;
|
|
677
888
|
outlineWidth?: boolean | undefined;
|
|
678
889
|
touchAction?: boolean | undefined;
|
|
890
|
+
filter?: boolean | undefined;
|
|
891
|
+
backdropFilter?: boolean | undefined;
|
|
892
|
+
mixBlendMode?: boolean | undefined;
|
|
893
|
+
backgroundImage?: boolean | undefined;
|
|
894
|
+
backgroundOrigin?: boolean | undefined;
|
|
895
|
+
backgroundPosition?: boolean | undefined;
|
|
896
|
+
backgroundRepeat?: boolean | undefined;
|
|
897
|
+
backgroundSize?: boolean | undefined;
|
|
898
|
+
backgroundColor: boolean;
|
|
899
|
+
backgroundClip?: boolean | undefined;
|
|
900
|
+
backgroundBlendMode?: boolean | undefined;
|
|
901
|
+
backgroundAttachment?: boolean | undefined;
|
|
902
|
+
background?: boolean | undefined;
|
|
903
|
+
clipPath?: boolean | undefined;
|
|
904
|
+
transformStyle?: boolean | undefined;
|
|
905
|
+
mask?: boolean | undefined;
|
|
906
|
+
maskImage?: boolean | undefined;
|
|
907
|
+
textEmphasis?: boolean | undefined;
|
|
908
|
+
borderImage?: boolean | undefined;
|
|
909
|
+
float?: boolean | undefined;
|
|
910
|
+
content?: boolean | undefined;
|
|
911
|
+
overflowBlock?: boolean | undefined;
|
|
912
|
+
overflowInline?: boolean | undefined;
|
|
913
|
+
maskBorder?: boolean | undefined;
|
|
914
|
+
maskBorderMode?: boolean | undefined;
|
|
915
|
+
maskBorderOutset?: boolean | undefined;
|
|
916
|
+
maskBorderRepeat?: boolean | undefined;
|
|
917
|
+
maskBorderSlice?: boolean | undefined;
|
|
918
|
+
maskBorderSource?: boolean | undefined;
|
|
919
|
+
maskBorderWidth?: boolean | undefined;
|
|
920
|
+
maskClip?: boolean | undefined;
|
|
921
|
+
maskComposite?: boolean | undefined;
|
|
922
|
+
maskMode?: boolean | undefined;
|
|
923
|
+
maskOrigin?: boolean | undefined;
|
|
924
|
+
maskPosition?: boolean | undefined;
|
|
925
|
+
maskRepeat?: boolean | undefined;
|
|
926
|
+
maskSize?: boolean | undefined;
|
|
927
|
+
maskType?: boolean | undefined;
|
|
679
928
|
WebkitLineClamp: boolean;
|
|
680
929
|
animationIterationCount: boolean;
|
|
681
930
|
aspectRatio: boolean;
|
|
@@ -736,16 +985,24 @@ export declare const validStyles: {
|
|
|
736
985
|
minHeight: boolean;
|
|
737
986
|
maxWidth: boolean;
|
|
738
987
|
maxHeight: boolean;
|
|
988
|
+
blockSize: boolean;
|
|
989
|
+
minBlockSize: boolean;
|
|
990
|
+
maxBlockSize: boolean;
|
|
991
|
+
inlineSize: boolean;
|
|
992
|
+
minInlineSize: boolean;
|
|
993
|
+
maxInlineSize: boolean;
|
|
739
994
|
outlineColor?: boolean | undefined;
|
|
740
995
|
color: boolean;
|
|
741
996
|
textDecorationColor: boolean;
|
|
742
997
|
textShadowColor: boolean;
|
|
743
|
-
backgroundColor: boolean;
|
|
744
998
|
borderColor: boolean;
|
|
745
999
|
borderBlockStartColor: boolean;
|
|
746
1000
|
borderBlockEndColor: boolean;
|
|
747
1001
|
borderBlockColor: boolean;
|
|
748
1002
|
borderBottomColor: boolean;
|
|
1003
|
+
borderInlineColor: boolean;
|
|
1004
|
+
borderInlineStartColor: boolean;
|
|
1005
|
+
borderInlineEndColor: boolean;
|
|
749
1006
|
borderTopColor: boolean;
|
|
750
1007
|
borderLeftColor: boolean;
|
|
751
1008
|
borderRightColor: boolean;
|
|
@@ -758,7 +1015,19 @@ export declare const validStyles: {
|
|
|
758
1015
|
borderBottomWidth: boolean;
|
|
759
1016
|
borderLeftWidth: boolean;
|
|
760
1017
|
borderRightWidth: boolean;
|
|
1018
|
+
borderBlockWidth: boolean;
|
|
1019
|
+
borderBlockEndWidth: boolean;
|
|
1020
|
+
borderBlockStartWidth: boolean;
|
|
1021
|
+
borderInlineWidth: boolean;
|
|
1022
|
+
borderInlineEndWidth: boolean;
|
|
1023
|
+
borderInlineStartWidth: boolean;
|
|
761
1024
|
borderStyle: boolean;
|
|
1025
|
+
borderBlockStyle: boolean;
|
|
1026
|
+
borderBlockEndStyle: boolean;
|
|
1027
|
+
borderBlockStartStyle: boolean;
|
|
1028
|
+
borderInlineStyle: boolean;
|
|
1029
|
+
borderInlineEndStyle: boolean;
|
|
1030
|
+
borderInlineStartStyle: boolean;
|
|
762
1031
|
borderTopEndRadius: boolean;
|
|
763
1032
|
borderTopStartRadius: boolean;
|
|
764
1033
|
borderTopWidth: boolean;
|
|
@@ -782,11 +1051,12 @@ export declare const validStyles: {
|
|
|
782
1051
|
justifyContent: boolean;
|
|
783
1052
|
left: boolean;
|
|
784
1053
|
margin: boolean;
|
|
1054
|
+
marginBlock: boolean;
|
|
785
1055
|
marginBlockEnd: boolean;
|
|
786
1056
|
marginBlockStart: boolean;
|
|
787
|
-
marginInlineEnd: boolean;
|
|
788
1057
|
marginInline: boolean;
|
|
789
1058
|
marginInlineStart: boolean;
|
|
1059
|
+
marginInlineEnd: boolean;
|
|
790
1060
|
marginBottom: boolean;
|
|
791
1061
|
marginEnd: boolean;
|
|
792
1062
|
marginHorizontal: boolean;
|
|
@@ -814,6 +1084,13 @@ export declare const validStyles: {
|
|
|
814
1084
|
right: boolean;
|
|
815
1085
|
start: boolean;
|
|
816
1086
|
top: boolean;
|
|
1087
|
+
inset: boolean;
|
|
1088
|
+
insetBlock: boolean;
|
|
1089
|
+
insetBlockEnd: boolean;
|
|
1090
|
+
insetBlockStart: boolean;
|
|
1091
|
+
insetInline: boolean;
|
|
1092
|
+
insetInlineEnd: boolean;
|
|
1093
|
+
insetInlineStart: boolean;
|
|
817
1094
|
direction: boolean;
|
|
818
1095
|
shadowOffset: boolean;
|
|
819
1096
|
shadowRadius: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validStyleProps.d.ts","sourceRoot":"","sources":["../src/validStyleProps.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"validStyleProps.d.ts","sourceRoot":"","sources":["../src/validStyleProps.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqD3B,CAAA;AAED,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoC9B,CAAA;AAED,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;CAc/B,CAAA;AAED,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6J1B,CAAA;AAED,eAAO,MAAM,cAAc;;;;;;;;CAQ1B,CAAA;AAED,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;CAsB9B,CAAA;AAED,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAG1B,CAAA;AAED,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAiB,CAAA;AAE3C,eAAO,MAAM,eAAe;;;;;;;;CAY3B,CAAA;AAED,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGvB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"withStaticProperties.d.ts","sourceRoot":"","sources":["../src/withStaticProperties.tsx"],"names":[],"mappings":"AAIA,KAAK,QAAQ,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AAE3B,eAAO,MAAM,oBAAoB,
|
|
1
|
+
{"version":3,"file":"withStaticProperties.d.ts","sourceRoot":"","sources":["../src/withStaticProperties.tsx"],"names":[],"mappings":"AAIA,KAAK,QAAQ,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AAE3B,eAAO,MAAM,oBAAoB,qCACpB,CAAC,eACC,CAAC,KACb,SAAS,CAAC,EAAE,CAAC,CAsBf,CAAA"}
|