@gem-sdk/styles 1.60.7 → 2.0.0-dev.1082
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 +28 -46
- package/dist/base.min.css +1 -1
- package/dist/builder.css +34 -45
- package/dist/builder.min.css +1 -1
- package/dist/toolbar.css +32 -28
- package/dist/toolbar.min.css +1 -1
- package/dist/utility.css +735 -73
- package/dist/utility.min.css +1 -1
- package/package.json +2 -2
- package/src/css/all.css +11 -0
- package/src/css/builds/base.css +18 -15
- package/src/css/builds/builder.css +30 -15
- package/src/css/builds/toolbar.css +23 -0
- 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/all.css +3 -3
- package/src/preset.js +2 -2
- package/src/properties.js +66 -18
- package/types/globals.d.ts +297 -0
- package/types/types.d.ts +11 -0
|
@@ -77,9 +77,9 @@
|
|
|
77
77
|
@mixin svar-mq opacity, op;
|
|
78
78
|
@mixin svar-mq order, o;
|
|
79
79
|
@mixin svar outline, oe;
|
|
80
|
-
@mixin svar overflow, of;
|
|
81
|
-
@mixin svar overflow-x, ofx;
|
|
82
|
-
@mixin svar overflow-y, ofy;
|
|
80
|
+
@mixin svar-mq overflow, of;
|
|
81
|
+
@mixin svar-mq overflow-x, ofx;
|
|
82
|
+
@mixin svar-mq overflow-y, ofy;
|
|
83
83
|
@mixin svar-mq padding, p;
|
|
84
84
|
@mixin svar-mq padding-bottom, pb;
|
|
85
85
|
@mixin svar-mq padding-left, pl;
|
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',
|
|
@@ -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',
|
|
@@ -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',
|
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
|
*
|
|
@@ -1090,6 +1279,33 @@ declare namespace React {
|
|
|
1090
1279
|
'--hvr-jc-mobile'?: CSSProperties['justifyContent'];
|
|
1091
1280
|
'--focus-jc-mobile'?: CSSProperties['justifyContent'];
|
|
1092
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
|
+
|
|
1093
1309
|
/**
|
|
1094
1310
|
* **CSS Property**: `left`
|
|
1095
1311
|
*
|
|
@@ -1603,6 +1819,87 @@ declare namespace React {
|
|
|
1603
1819
|
'--hvr-o-mobile'?: CSSProperties['order'];
|
|
1604
1820
|
'--focus-o-mobile'?: CSSProperties['order'];
|
|
1605
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
|
+
|
|
1606
1903
|
/**
|
|
1607
1904
|
* **CSS Property**: `place-content`
|
|
1608
1905
|
*
|
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'
|
|
@@ -39,6 +46,7 @@ export type ShortHandProperty =
|
|
|
39
46
|
| 'gtr'
|
|
40
47
|
| 'h'
|
|
41
48
|
| 'jc'
|
|
49
|
+
| 'js'
|
|
42
50
|
| 'left'
|
|
43
51
|
| 'ls'
|
|
44
52
|
| 'line-clamp'
|
|
@@ -58,6 +66,9 @@ export type ShortHandProperty =
|
|
|
58
66
|
| 'objf'
|
|
59
67
|
| 'op'
|
|
60
68
|
| 'o'
|
|
69
|
+
| 'of'
|
|
70
|
+
| 'ofx'
|
|
71
|
+
| 'ofy'
|
|
61
72
|
| 'pc'
|
|
62
73
|
| 'p'
|
|
63
74
|
| 'pb'
|