@gem-sdk/styles 2.0.0-dev.895 → 2.0.0-staging.1059
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/base.css +116 -11
- package/dist/base.min.css +1 -1
- package/dist/builder.css +116 -9
- package/dist/builder.min.css +1 -1
- package/dist/toolbar.css +187 -133
- package/dist/toolbar.min.css +1 -1
- package/dist/utility.css +925 -71
- package/dist/utility.min.css +1 -1
- package/package.json +1 -1
- package/src/css/all.css +14 -0
- package/src/css/builds/base.css +134 -9
- package/src/css/builds/builder.css +124 -9
- package/src/css/builds/toolbar.css +198 -126
- package/src/css/helpers/_layout.css +26 -17
- package/src/css/medias.css +2 -2
- package/src/css/utilities/_border.css +5 -0
- package/src/css/utilities/_grid.css +3 -2
- package/src/css/utilities/_overflow.css +3 -3
- package/src/css/utilities/_whitespace.css +1 -0
- package/src/css/utilities/all.css +3 -3
- package/src/preset.js +2 -2
- package/src/properties.js +85 -31
- package/types/globals.d.ts +378 -0
- package/types/index.d.ts +1 -1
- package/types/types.d.ts +15 -1
package/src/preset.js
CHANGED
|
@@ -8,7 +8,7 @@ const preset = {
|
|
|
8
8
|
},
|
|
9
9
|
theme: {
|
|
10
10
|
screens: {
|
|
11
|
-
tablet: { max: '
|
|
11
|
+
tablet: { max: '1024px' },
|
|
12
12
|
mobile: { max: '767px' },
|
|
13
13
|
},
|
|
14
14
|
extend: {
|
|
@@ -131,7 +131,7 @@ const preset = {
|
|
|
131
131
|
},
|
|
132
132
|
},
|
|
133
133
|
maxWidth: {
|
|
134
|
-
tablet: '
|
|
134
|
+
tablet: '1024px',
|
|
135
135
|
mobile: '767px',
|
|
136
136
|
},
|
|
137
137
|
textColor: {
|
package/src/properties.js
CHANGED
|
@@ -12,6 +12,12 @@ module.exports = [
|
|
|
12
12
|
mediaQuery: true,
|
|
13
13
|
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/align-items',
|
|
14
14
|
},
|
|
15
|
+
{
|
|
16
|
+
property: 'align-self',
|
|
17
|
+
shortHand: 'as',
|
|
18
|
+
mediaQuery: true,
|
|
19
|
+
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/align-self',
|
|
20
|
+
},
|
|
15
21
|
// {
|
|
16
22
|
// property: 'align-self',
|
|
17
23
|
// shortHand: 'as',
|
|
@@ -84,12 +90,48 @@ module.exports = [
|
|
|
84
90
|
mediaQuery: true,
|
|
85
91
|
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-width',
|
|
86
92
|
},
|
|
93
|
+
{
|
|
94
|
+
property: 'border-left-width',
|
|
95
|
+
shortHand: 'blw',
|
|
96
|
+
mediaQuery: true,
|
|
97
|
+
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/border-left-width',
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
property: 'border-right-width',
|
|
101
|
+
shortHand: 'brw',
|
|
102
|
+
mediaQuery: true,
|
|
103
|
+
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/border-right-width',
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
property: 'border-top-width',
|
|
107
|
+
shortHand: 'btw',
|
|
108
|
+
mediaQuery: true,
|
|
109
|
+
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-width',
|
|
110
|
+
},
|
|
87
111
|
{
|
|
88
112
|
property: 'border-bottom-color',
|
|
89
113
|
shortHand: 'bbc',
|
|
90
114
|
mediaQuery: true,
|
|
91
115
|
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-color',
|
|
92
116
|
},
|
|
117
|
+
{
|
|
118
|
+
property: 'border-top-color',
|
|
119
|
+
shortHand: 'btc',
|
|
120
|
+
mediaQuery: true,
|
|
121
|
+
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-color',
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
property: 'border-left-color',
|
|
125
|
+
shortHand: 'blc',
|
|
126
|
+
mediaQuery: true,
|
|
127
|
+
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/border-left-color',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
property: 'border-right-color',
|
|
131
|
+
shortHand: 'brc',
|
|
132
|
+
mediaQuery: true,
|
|
133
|
+
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/border-right-color',
|
|
134
|
+
},
|
|
93
135
|
{
|
|
94
136
|
property: 'border-color',
|
|
95
137
|
shortHand: 'bc',
|
|
@@ -336,12 +378,12 @@ module.exports = [
|
|
|
336
378
|
mediaQuery: true,
|
|
337
379
|
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap',
|
|
338
380
|
},
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
381
|
+
{
|
|
382
|
+
property: 'grid-row',
|
|
383
|
+
shortHand: 'gr',
|
|
384
|
+
mediaQuery: true,
|
|
385
|
+
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row',
|
|
386
|
+
},
|
|
345
387
|
{
|
|
346
388
|
property: 'grid-template-columns',
|
|
347
389
|
shortHand: 'gtc',
|
|
@@ -366,6 +408,12 @@ module.exports = [
|
|
|
366
408
|
mediaQuery: true,
|
|
367
409
|
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content',
|
|
368
410
|
},
|
|
411
|
+
{
|
|
412
|
+
property: 'justify-self',
|
|
413
|
+
shortHand: 'js',
|
|
414
|
+
mediaQuery: true,
|
|
415
|
+
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/justify-self',
|
|
416
|
+
},
|
|
369
417
|
{
|
|
370
418
|
property: 'left',
|
|
371
419
|
shortHand: 'left',
|
|
@@ -489,7 +537,7 @@ module.exports = [
|
|
|
489
537
|
},
|
|
490
538
|
// {
|
|
491
539
|
// property: 'rotate',
|
|
492
|
-
// shortHand: '
|
|
540
|
+
// shortHand: 'rotate',
|
|
493
541
|
// mediaQuery: true,
|
|
494
542
|
// mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/rotate',
|
|
495
543
|
// },
|
|
@@ -523,24 +571,24 @@ module.exports = [
|
|
|
523
571
|
// mediaQuery: false,
|
|
524
572
|
// mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/outline',
|
|
525
573
|
// },
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
574
|
+
{
|
|
575
|
+
property: 'overflow',
|
|
576
|
+
shortHand: 'of',
|
|
577
|
+
mediaQuery: true,
|
|
578
|
+
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/overflow',
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
property: 'overflow-x',
|
|
582
|
+
shortHand: 'ofx',
|
|
583
|
+
mediaQuery: true,
|
|
584
|
+
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-x',
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
property: 'overflow-y',
|
|
588
|
+
shortHand: 'ofy',
|
|
589
|
+
mediaQuery: true,
|
|
590
|
+
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-y',
|
|
591
|
+
},
|
|
544
592
|
{
|
|
545
593
|
property: 'place-content',
|
|
546
594
|
shortHand: 'pc',
|
|
@@ -709,12 +757,12 @@ module.exports = [
|
|
|
709
757
|
mediaQuery: true,
|
|
710
758
|
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/visibility',
|
|
711
759
|
},
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
760
|
+
{
|
|
761
|
+
property: 'white-space',
|
|
762
|
+
shortHand: 'ws',
|
|
763
|
+
mediaQuery: true,
|
|
764
|
+
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/white-space',
|
|
765
|
+
},
|
|
718
766
|
{
|
|
719
767
|
property: 'width',
|
|
720
768
|
shortHand: 'w',
|
|
@@ -739,4 +787,10 @@ module.exports = [
|
|
|
739
787
|
mediaQuery: true,
|
|
740
788
|
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/z-index',
|
|
741
789
|
},
|
|
790
|
+
{
|
|
791
|
+
property: 'writing-mode',
|
|
792
|
+
shortHand: 'wm',
|
|
793
|
+
mediaQuery: true,
|
|
794
|
+
mdnReference: 'https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode',
|
|
795
|
+
},
|
|
742
796
|
];
|
package/types/globals.d.ts
CHANGED
|
@@ -37,6 +37,33 @@ declare namespace React {
|
|
|
37
37
|
'--hvr-ai-mobile'?: CSSProperties['alignItems'];
|
|
38
38
|
'--focus-ai-mobile'?: CSSProperties['alignItems'];
|
|
39
39
|
|
|
40
|
+
/**
|
|
41
|
+
* **CSS Property**: `align-self`
|
|
42
|
+
*
|
|
43
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/align-self
|
|
44
|
+
*/
|
|
45
|
+
|
|
46
|
+
'--as'?: CSSProperties['alignSelf'];
|
|
47
|
+
'--hvr-as'?: CSSProperties['alignSelf'];
|
|
48
|
+
'--focus-as'?: CSSProperties['alignSelf'];
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* **CSS Property**: `align-self`
|
|
52
|
+
*
|
|
53
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/align-self
|
|
54
|
+
*/
|
|
55
|
+
'--as-tablet'?: CSSProperties['alignSelf'];
|
|
56
|
+
'--hvr-as-tablet'?: CSSProperties['alignSelf'];
|
|
57
|
+
'--focus-as-tablet'?: CSSProperties['alignSelf'];
|
|
58
|
+
/**
|
|
59
|
+
* **CSS Property**: `align-self`
|
|
60
|
+
*
|
|
61
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/align-self
|
|
62
|
+
*/
|
|
63
|
+
'--as-mobile'?: CSSProperties['alignSelf'];
|
|
64
|
+
'--hvr-as-mobile'?: CSSProperties['alignSelf'];
|
|
65
|
+
'--focus-as-mobile'?: CSSProperties['alignSelf'];
|
|
66
|
+
|
|
40
67
|
/**
|
|
41
68
|
* **CSS Property**: `aspect-ratio`
|
|
42
69
|
*
|
|
@@ -334,6 +361,87 @@ declare namespace React {
|
|
|
334
361
|
'--hvr-bbw-mobile'?: CSSProperties['borderBottomWidth'];
|
|
335
362
|
'--focus-bbw-mobile'?: CSSProperties['borderBottomWidth'];
|
|
336
363
|
|
|
364
|
+
/**
|
|
365
|
+
* **CSS Property**: `border-left-width`
|
|
366
|
+
*
|
|
367
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-left-width
|
|
368
|
+
*/
|
|
369
|
+
|
|
370
|
+
'--blw'?: CSSProperties['borderLeftWidth'];
|
|
371
|
+
'--hvr-blw'?: CSSProperties['borderLeftWidth'];
|
|
372
|
+
'--focus-blw'?: CSSProperties['borderLeftWidth'];
|
|
373
|
+
|
|
374
|
+
/**
|
|
375
|
+
* **CSS Property**: `border-left-width`
|
|
376
|
+
*
|
|
377
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-left-width
|
|
378
|
+
*/
|
|
379
|
+
'--blw-tablet'?: CSSProperties['borderLeftWidth'];
|
|
380
|
+
'--hvr-blw-tablet'?: CSSProperties['borderLeftWidth'];
|
|
381
|
+
'--focus-blw-tablet'?: CSSProperties['borderLeftWidth'];
|
|
382
|
+
/**
|
|
383
|
+
* **CSS Property**: `border-left-width`
|
|
384
|
+
*
|
|
385
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-left-width
|
|
386
|
+
*/
|
|
387
|
+
'--blw-mobile'?: CSSProperties['borderLeftWidth'];
|
|
388
|
+
'--hvr-blw-mobile'?: CSSProperties['borderLeftWidth'];
|
|
389
|
+
'--focus-blw-mobile'?: CSSProperties['borderLeftWidth'];
|
|
390
|
+
|
|
391
|
+
/**
|
|
392
|
+
* **CSS Property**: `border-right-width`
|
|
393
|
+
*
|
|
394
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-right-width
|
|
395
|
+
*/
|
|
396
|
+
|
|
397
|
+
'--brw'?: CSSProperties['borderRightWidth'];
|
|
398
|
+
'--hvr-brw'?: CSSProperties['borderRightWidth'];
|
|
399
|
+
'--focus-brw'?: CSSProperties['borderRightWidth'];
|
|
400
|
+
|
|
401
|
+
/**
|
|
402
|
+
* **CSS Property**: `border-right-width`
|
|
403
|
+
*
|
|
404
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-right-width
|
|
405
|
+
*/
|
|
406
|
+
'--brw-tablet'?: CSSProperties['borderRightWidth'];
|
|
407
|
+
'--hvr-brw-tablet'?: CSSProperties['borderRightWidth'];
|
|
408
|
+
'--focus-brw-tablet'?: CSSProperties['borderRightWidth'];
|
|
409
|
+
/**
|
|
410
|
+
* **CSS Property**: `border-right-width`
|
|
411
|
+
*
|
|
412
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-right-width
|
|
413
|
+
*/
|
|
414
|
+
'--brw-mobile'?: CSSProperties['borderRightWidth'];
|
|
415
|
+
'--hvr-brw-mobile'?: CSSProperties['borderRightWidth'];
|
|
416
|
+
'--focus-brw-mobile'?: CSSProperties['borderRightWidth'];
|
|
417
|
+
|
|
418
|
+
/**
|
|
419
|
+
* **CSS Property**: `border-top-width`
|
|
420
|
+
*
|
|
421
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-width
|
|
422
|
+
*/
|
|
423
|
+
|
|
424
|
+
'--btw'?: CSSProperties['borderTopWidth'];
|
|
425
|
+
'--hvr-btw'?: CSSProperties['borderTopWidth'];
|
|
426
|
+
'--focus-btw'?: CSSProperties['borderTopWidth'];
|
|
427
|
+
|
|
428
|
+
/**
|
|
429
|
+
* **CSS Property**: `border-top-width`
|
|
430
|
+
*
|
|
431
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-width
|
|
432
|
+
*/
|
|
433
|
+
'--btw-tablet'?: CSSProperties['borderTopWidth'];
|
|
434
|
+
'--hvr-btw-tablet'?: CSSProperties['borderTopWidth'];
|
|
435
|
+
'--focus-btw-tablet'?: CSSProperties['borderTopWidth'];
|
|
436
|
+
/**
|
|
437
|
+
* **CSS Property**: `border-top-width`
|
|
438
|
+
*
|
|
439
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-width
|
|
440
|
+
*/
|
|
441
|
+
'--btw-mobile'?: CSSProperties['borderTopWidth'];
|
|
442
|
+
'--hvr-btw-mobile'?: CSSProperties['borderTopWidth'];
|
|
443
|
+
'--focus-btw-mobile'?: CSSProperties['borderTopWidth'];
|
|
444
|
+
|
|
337
445
|
/**
|
|
338
446
|
* **CSS Property**: `border-bottom-color`
|
|
339
447
|
*
|
|
@@ -361,6 +469,87 @@ declare namespace React {
|
|
|
361
469
|
'--hvr-bbc-mobile'?: CSSProperties['borderBottomColor'];
|
|
362
470
|
'--focus-bbc-mobile'?: CSSProperties['borderBottomColor'];
|
|
363
471
|
|
|
472
|
+
/**
|
|
473
|
+
* **CSS Property**: `border-top-color`
|
|
474
|
+
*
|
|
475
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-color
|
|
476
|
+
*/
|
|
477
|
+
|
|
478
|
+
'--btc'?: CSSProperties['borderTopColor'];
|
|
479
|
+
'--hvr-btc'?: CSSProperties['borderTopColor'];
|
|
480
|
+
'--focus-btc'?: CSSProperties['borderTopColor'];
|
|
481
|
+
|
|
482
|
+
/**
|
|
483
|
+
* **CSS Property**: `border-top-color`
|
|
484
|
+
*
|
|
485
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-color
|
|
486
|
+
*/
|
|
487
|
+
'--btc-tablet'?: CSSProperties['borderTopColor'];
|
|
488
|
+
'--hvr-btc-tablet'?: CSSProperties['borderTopColor'];
|
|
489
|
+
'--focus-btc-tablet'?: CSSProperties['borderTopColor'];
|
|
490
|
+
/**
|
|
491
|
+
* **CSS Property**: `border-top-color`
|
|
492
|
+
*
|
|
493
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-color
|
|
494
|
+
*/
|
|
495
|
+
'--btc-mobile'?: CSSProperties['borderTopColor'];
|
|
496
|
+
'--hvr-btc-mobile'?: CSSProperties['borderTopColor'];
|
|
497
|
+
'--focus-btc-mobile'?: CSSProperties['borderTopColor'];
|
|
498
|
+
|
|
499
|
+
/**
|
|
500
|
+
* **CSS Property**: `border-left-color`
|
|
501
|
+
*
|
|
502
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-left-color
|
|
503
|
+
*/
|
|
504
|
+
|
|
505
|
+
'--blc'?: CSSProperties['borderLeftColor'];
|
|
506
|
+
'--hvr-blc'?: CSSProperties['borderLeftColor'];
|
|
507
|
+
'--focus-blc'?: CSSProperties['borderLeftColor'];
|
|
508
|
+
|
|
509
|
+
/**
|
|
510
|
+
* **CSS Property**: `border-left-color`
|
|
511
|
+
*
|
|
512
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-left-color
|
|
513
|
+
*/
|
|
514
|
+
'--blc-tablet'?: CSSProperties['borderLeftColor'];
|
|
515
|
+
'--hvr-blc-tablet'?: CSSProperties['borderLeftColor'];
|
|
516
|
+
'--focus-blc-tablet'?: CSSProperties['borderLeftColor'];
|
|
517
|
+
/**
|
|
518
|
+
* **CSS Property**: `border-left-color`
|
|
519
|
+
*
|
|
520
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-left-color
|
|
521
|
+
*/
|
|
522
|
+
'--blc-mobile'?: CSSProperties['borderLeftColor'];
|
|
523
|
+
'--hvr-blc-mobile'?: CSSProperties['borderLeftColor'];
|
|
524
|
+
'--focus-blc-mobile'?: CSSProperties['borderLeftColor'];
|
|
525
|
+
|
|
526
|
+
/**
|
|
527
|
+
* **CSS Property**: `border-right-color`
|
|
528
|
+
*
|
|
529
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-right-color
|
|
530
|
+
*/
|
|
531
|
+
|
|
532
|
+
'--brc'?: CSSProperties['borderRightColor'];
|
|
533
|
+
'--hvr-brc'?: CSSProperties['borderRightColor'];
|
|
534
|
+
'--focus-brc'?: CSSProperties['borderRightColor'];
|
|
535
|
+
|
|
536
|
+
/**
|
|
537
|
+
* **CSS Property**: `border-right-color`
|
|
538
|
+
*
|
|
539
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-right-color
|
|
540
|
+
*/
|
|
541
|
+
'--brc-tablet'?: CSSProperties['borderRightColor'];
|
|
542
|
+
'--hvr-brc-tablet'?: CSSProperties['borderRightColor'];
|
|
543
|
+
'--focus-brc-tablet'?: CSSProperties['borderRightColor'];
|
|
544
|
+
/**
|
|
545
|
+
* **CSS Property**: `border-right-color`
|
|
546
|
+
*
|
|
547
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/border-right-color
|
|
548
|
+
*/
|
|
549
|
+
'--brc-mobile'?: CSSProperties['borderRightColor'];
|
|
550
|
+
'--hvr-brc-mobile'?: CSSProperties['borderRightColor'];
|
|
551
|
+
'--focus-brc-mobile'?: CSSProperties['borderRightColor'];
|
|
552
|
+
|
|
364
553
|
/**
|
|
365
554
|
* **CSS Property**: `border-color`
|
|
366
555
|
*
|
|
@@ -955,6 +1144,33 @@ declare namespace React {
|
|
|
955
1144
|
'--hvr-gg-mobile'?: CSSProperties['gridGap'];
|
|
956
1145
|
'--focus-gg-mobile'?: CSSProperties['gridGap'];
|
|
957
1146
|
|
|
1147
|
+
/**
|
|
1148
|
+
* **CSS Property**: `grid-row`
|
|
1149
|
+
*
|
|
1150
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
|
|
1151
|
+
*/
|
|
1152
|
+
|
|
1153
|
+
'--gr'?: CSSProperties['gridRow'];
|
|
1154
|
+
'--hvr-gr'?: CSSProperties['gridRow'];
|
|
1155
|
+
'--focus-gr'?: CSSProperties['gridRow'];
|
|
1156
|
+
|
|
1157
|
+
/**
|
|
1158
|
+
* **CSS Property**: `grid-row`
|
|
1159
|
+
*
|
|
1160
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
|
|
1161
|
+
*/
|
|
1162
|
+
'--gr-tablet'?: CSSProperties['gridRow'];
|
|
1163
|
+
'--hvr-gr-tablet'?: CSSProperties['gridRow'];
|
|
1164
|
+
'--focus-gr-tablet'?: CSSProperties['gridRow'];
|
|
1165
|
+
/**
|
|
1166
|
+
* **CSS Property**: `grid-row`
|
|
1167
|
+
*
|
|
1168
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
|
|
1169
|
+
*/
|
|
1170
|
+
'--gr-mobile'?: CSSProperties['gridRow'];
|
|
1171
|
+
'--hvr-gr-mobile'?: CSSProperties['gridRow'];
|
|
1172
|
+
'--focus-gr-mobile'?: CSSProperties['gridRow'];
|
|
1173
|
+
|
|
958
1174
|
/**
|
|
959
1175
|
* **CSS Property**: `grid-template-columns`
|
|
960
1176
|
*
|
|
@@ -1063,6 +1279,33 @@ declare namespace React {
|
|
|
1063
1279
|
'--hvr-jc-mobile'?: CSSProperties['justifyContent'];
|
|
1064
1280
|
'--focus-jc-mobile'?: CSSProperties['justifyContent'];
|
|
1065
1281
|
|
|
1282
|
+
/**
|
|
1283
|
+
* **CSS Property**: `justify-self`
|
|
1284
|
+
*
|
|
1285
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/justify-self
|
|
1286
|
+
*/
|
|
1287
|
+
|
|
1288
|
+
'--js'?: CSSProperties['justifySelf'];
|
|
1289
|
+
'--hvr-js'?: CSSProperties['justifySelf'];
|
|
1290
|
+
'--focus-js'?: CSSProperties['justifySelf'];
|
|
1291
|
+
|
|
1292
|
+
/**
|
|
1293
|
+
* **CSS Property**: `justify-self`
|
|
1294
|
+
*
|
|
1295
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/justify-self
|
|
1296
|
+
*/
|
|
1297
|
+
'--js-tablet'?: CSSProperties['justifySelf'];
|
|
1298
|
+
'--hvr-js-tablet'?: CSSProperties['justifySelf'];
|
|
1299
|
+
'--focus-js-tablet'?: CSSProperties['justifySelf'];
|
|
1300
|
+
/**
|
|
1301
|
+
* **CSS Property**: `justify-self`
|
|
1302
|
+
*
|
|
1303
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/justify-self
|
|
1304
|
+
*/
|
|
1305
|
+
'--js-mobile'?: CSSProperties['justifySelf'];
|
|
1306
|
+
'--hvr-js-mobile'?: CSSProperties['justifySelf'];
|
|
1307
|
+
'--focus-js-mobile'?: CSSProperties['justifySelf'];
|
|
1308
|
+
|
|
1066
1309
|
/**
|
|
1067
1310
|
* **CSS Property**: `left`
|
|
1068
1311
|
*
|
|
@@ -1576,6 +1819,87 @@ declare namespace React {
|
|
|
1576
1819
|
'--hvr-o-mobile'?: CSSProperties['order'];
|
|
1577
1820
|
'--focus-o-mobile'?: CSSProperties['order'];
|
|
1578
1821
|
|
|
1822
|
+
/**
|
|
1823
|
+
* **CSS Property**: `overflow`
|
|
1824
|
+
*
|
|
1825
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/overflow
|
|
1826
|
+
*/
|
|
1827
|
+
|
|
1828
|
+
'--of'?: CSSProperties['overflow'];
|
|
1829
|
+
'--hvr-of'?: CSSProperties['overflow'];
|
|
1830
|
+
'--focus-of'?: CSSProperties['overflow'];
|
|
1831
|
+
|
|
1832
|
+
/**
|
|
1833
|
+
* **CSS Property**: `overflow`
|
|
1834
|
+
*
|
|
1835
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/overflow
|
|
1836
|
+
*/
|
|
1837
|
+
'--of-tablet'?: CSSProperties['overflow'];
|
|
1838
|
+
'--hvr-of-tablet'?: CSSProperties['overflow'];
|
|
1839
|
+
'--focus-of-tablet'?: CSSProperties['overflow'];
|
|
1840
|
+
/**
|
|
1841
|
+
* **CSS Property**: `overflow`
|
|
1842
|
+
*
|
|
1843
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/overflow
|
|
1844
|
+
*/
|
|
1845
|
+
'--of-mobile'?: CSSProperties['overflow'];
|
|
1846
|
+
'--hvr-of-mobile'?: CSSProperties['overflow'];
|
|
1847
|
+
'--focus-of-mobile'?: CSSProperties['overflow'];
|
|
1848
|
+
|
|
1849
|
+
/**
|
|
1850
|
+
* **CSS Property**: `overflow-x`
|
|
1851
|
+
*
|
|
1852
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-x
|
|
1853
|
+
*/
|
|
1854
|
+
|
|
1855
|
+
'--ofx'?: CSSProperties['overflowX'];
|
|
1856
|
+
'--hvr-ofx'?: CSSProperties['overflowX'];
|
|
1857
|
+
'--focus-ofx'?: CSSProperties['overflowX'];
|
|
1858
|
+
|
|
1859
|
+
/**
|
|
1860
|
+
* **CSS Property**: `overflow-x`
|
|
1861
|
+
*
|
|
1862
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-x
|
|
1863
|
+
*/
|
|
1864
|
+
'--ofx-tablet'?: CSSProperties['overflowX'];
|
|
1865
|
+
'--hvr-ofx-tablet'?: CSSProperties['overflowX'];
|
|
1866
|
+
'--focus-ofx-tablet'?: CSSProperties['overflowX'];
|
|
1867
|
+
/**
|
|
1868
|
+
* **CSS Property**: `overflow-x`
|
|
1869
|
+
*
|
|
1870
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-x
|
|
1871
|
+
*/
|
|
1872
|
+
'--ofx-mobile'?: CSSProperties['overflowX'];
|
|
1873
|
+
'--hvr-ofx-mobile'?: CSSProperties['overflowX'];
|
|
1874
|
+
'--focus-ofx-mobile'?: CSSProperties['overflowX'];
|
|
1875
|
+
|
|
1876
|
+
/**
|
|
1877
|
+
* **CSS Property**: `overflow-y`
|
|
1878
|
+
*
|
|
1879
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-y
|
|
1880
|
+
*/
|
|
1881
|
+
|
|
1882
|
+
'--ofy'?: CSSProperties['overflowY'];
|
|
1883
|
+
'--hvr-ofy'?: CSSProperties['overflowY'];
|
|
1884
|
+
'--focus-ofy'?: CSSProperties['overflowY'];
|
|
1885
|
+
|
|
1886
|
+
/**
|
|
1887
|
+
* **CSS Property**: `overflow-y`
|
|
1888
|
+
*
|
|
1889
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-y
|
|
1890
|
+
*/
|
|
1891
|
+
'--ofy-tablet'?: CSSProperties['overflowY'];
|
|
1892
|
+
'--hvr-ofy-tablet'?: CSSProperties['overflowY'];
|
|
1893
|
+
'--focus-ofy-tablet'?: CSSProperties['overflowY'];
|
|
1894
|
+
/**
|
|
1895
|
+
* **CSS Property**: `overflow-y`
|
|
1896
|
+
*
|
|
1897
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-y
|
|
1898
|
+
*/
|
|
1899
|
+
'--ofy-mobile'?: CSSProperties['overflowY'];
|
|
1900
|
+
'--hvr-ofy-mobile'?: CSSProperties['overflowY'];
|
|
1901
|
+
'--focus-ofy-mobile'?: CSSProperties['overflowY'];
|
|
1902
|
+
|
|
1579
1903
|
/**
|
|
1580
1904
|
* **CSS Property**: `place-content`
|
|
1581
1905
|
*
|
|
@@ -2008,6 +2332,33 @@ declare namespace React {
|
|
|
2008
2332
|
'--hvr-v-mobile'?: CSSProperties['visibility'];
|
|
2009
2333
|
'--focus-v-mobile'?: CSSProperties['visibility'];
|
|
2010
2334
|
|
|
2335
|
+
/**
|
|
2336
|
+
* **CSS Property**: `white-space`
|
|
2337
|
+
*
|
|
2338
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/white-space
|
|
2339
|
+
*/
|
|
2340
|
+
|
|
2341
|
+
'--ws'?: CSSProperties['whiteSpace'];
|
|
2342
|
+
'--hvr-ws'?: CSSProperties['whiteSpace'];
|
|
2343
|
+
'--focus-ws'?: CSSProperties['whiteSpace'];
|
|
2344
|
+
|
|
2345
|
+
/**
|
|
2346
|
+
* **CSS Property**: `white-space`
|
|
2347
|
+
*
|
|
2348
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/white-space
|
|
2349
|
+
*/
|
|
2350
|
+
'--ws-tablet'?: CSSProperties['whiteSpace'];
|
|
2351
|
+
'--hvr-ws-tablet'?: CSSProperties['whiteSpace'];
|
|
2352
|
+
'--focus-ws-tablet'?: CSSProperties['whiteSpace'];
|
|
2353
|
+
/**
|
|
2354
|
+
* **CSS Property**: `white-space`
|
|
2355
|
+
*
|
|
2356
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/white-space
|
|
2357
|
+
*/
|
|
2358
|
+
'--ws-mobile'?: CSSProperties['whiteSpace'];
|
|
2359
|
+
'--hvr-ws-mobile'?: CSSProperties['whiteSpace'];
|
|
2360
|
+
'--focus-ws-mobile'?: CSSProperties['whiteSpace'];
|
|
2361
|
+
|
|
2011
2362
|
/**
|
|
2012
2363
|
* **CSS Property**: `width`
|
|
2013
2364
|
*
|
|
@@ -2062,6 +2413,33 @@ declare namespace React {
|
|
|
2062
2413
|
'--hvr-z-mobile'?: CSSProperties['zIndex'];
|
|
2063
2414
|
'--focus-z-mobile'?: CSSProperties['zIndex'];
|
|
2064
2415
|
|
|
2416
|
+
/**
|
|
2417
|
+
* **CSS Property**: `writing-mode`
|
|
2418
|
+
*
|
|
2419
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode
|
|
2420
|
+
*/
|
|
2421
|
+
|
|
2422
|
+
'--wm'?: CSSProperties['writingMode'];
|
|
2423
|
+
'--hvr-wm'?: CSSProperties['writingMode'];
|
|
2424
|
+
'--focus-wm'?: CSSProperties['writingMode'];
|
|
2425
|
+
|
|
2426
|
+
/**
|
|
2427
|
+
* **CSS Property**: `writing-mode`
|
|
2428
|
+
*
|
|
2429
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode
|
|
2430
|
+
*/
|
|
2431
|
+
'--wm-tablet'?: CSSProperties['writingMode'];
|
|
2432
|
+
'--hvr-wm-tablet'?: CSSProperties['writingMode'];
|
|
2433
|
+
'--focus-wm-tablet'?: CSSProperties['writingMode'];
|
|
2434
|
+
/**
|
|
2435
|
+
* **CSS Property**: `writing-mode`
|
|
2436
|
+
*
|
|
2437
|
+
* **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode
|
|
2438
|
+
*/
|
|
2439
|
+
'--wm-mobile'?: CSSProperties['writingMode'];
|
|
2440
|
+
'--hvr-wm-mobile'?: CSSProperties['writingMode'];
|
|
2441
|
+
'--focus-wm-mobile'?: CSSProperties['writingMode'];
|
|
2442
|
+
|
|
2065
2443
|
[key: string]: any;
|
|
2066
2444
|
}
|
|
2067
2445
|
}
|
package/types/index.d.ts
CHANGED
package/types/types.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export type ShortHandProperty =
|
|
2
2
|
| 'ai'
|
|
3
|
+
| 'as'
|
|
3
4
|
| 'aspect'
|
|
4
5
|
| 'bg'
|
|
5
6
|
| 'bga'
|
|
@@ -11,7 +12,13 @@ export type ShortHandProperty =
|
|
|
11
12
|
| 'b'
|
|
12
13
|
| 'bb'
|
|
13
14
|
| 'bbw'
|
|
15
|
+
| 'blw'
|
|
16
|
+
| 'brw'
|
|
17
|
+
| 'btw'
|
|
14
18
|
| 'bbc'
|
|
19
|
+
| 'btc'
|
|
20
|
+
| 'blc'
|
|
21
|
+
| 'brc'
|
|
15
22
|
| 'bc'
|
|
16
23
|
| 'bblr'
|
|
17
24
|
| 'bbrr'
|
|
@@ -34,10 +41,12 @@ export type ShortHandProperty =
|
|
|
34
41
|
| 'weight'
|
|
35
42
|
| 'fs'
|
|
36
43
|
| 'gg'
|
|
44
|
+
| 'gr'
|
|
37
45
|
| 'gtc'
|
|
38
46
|
| 'gtr'
|
|
39
47
|
| 'h'
|
|
40
48
|
| 'jc'
|
|
49
|
+
| 'js'
|
|
41
50
|
| 'left'
|
|
42
51
|
| 'ls'
|
|
43
52
|
| 'line-clamp'
|
|
@@ -57,6 +66,9 @@ export type ShortHandProperty =
|
|
|
57
66
|
| 'objf'
|
|
58
67
|
| 'op'
|
|
59
68
|
| 'o'
|
|
69
|
+
| 'of'
|
|
70
|
+
| 'ofx'
|
|
71
|
+
| 'ofy'
|
|
60
72
|
| 'pc'
|
|
61
73
|
| 'p'
|
|
62
74
|
| 'pb'
|
|
@@ -73,5 +85,7 @@ export type ShortHandProperty =
|
|
|
73
85
|
| 'top'
|
|
74
86
|
| 't'
|
|
75
87
|
| 'v'
|
|
88
|
+
| 'ws'
|
|
76
89
|
| 'w'
|
|
77
|
-
| 'z'
|
|
90
|
+
| 'z'
|
|
91
|
+
| 'wm';
|