tailwindcss 1.2.0-canary.5 → 1.2.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/.travis.yml +2 -2
- package/dist/base.css +3 -2
- package/dist/base.css.map +1 -1
- package/dist/base.min.css +1 -1
- package/dist/tailwind.css +2663 -32
- package/dist/tailwind.css.map +1 -1
- package/dist/tailwind.min.css +1 -1
- package/dist/utilities.css +2660 -30
- package/dist/utilities.css.map +1 -1
- package/dist/utilities.min.css +1 -1
- package/lib/corePlugins.js +0 -6
- package/lib/lib/substituteTailwindAtRules.js +21 -0
- package/lib/plugins/css/preflight.css +3 -2
- package/lib/plugins/gap.js +1 -1
- package/package.json +8 -6
- package/scripts/build.js +48 -0
- package/stubs/.prettierrc.json +6 -0
- package/stubs/defaultConfig.stub.js +76 -31
- package/lib/build.js +0 -48
- package/lib/plugins/columnGap.js +0 -14
- package/lib/plugins/rowGap.js +0 -14
package/lib/corePlugins.js
CHANGED
|
@@ -149,10 +149,6 @@ var _zIndex = _interopRequireDefault(require("./plugins/zIndex"));
|
|
|
149
149
|
|
|
150
150
|
var _gap = _interopRequireDefault(require("./plugins/gap"));
|
|
151
151
|
|
|
152
|
-
var _columnGap = _interopRequireDefault(require("./plugins/columnGap"));
|
|
153
|
-
|
|
154
|
-
var _rowGap = _interopRequireDefault(require("./plugins/rowGap"));
|
|
155
|
-
|
|
156
152
|
var _gridAutoFlow = _interopRequireDefault(require("./plugins/gridAutoFlow"));
|
|
157
153
|
|
|
158
154
|
var _gridTemplateColumns = _interopRequireDefault(require("./plugins/gridTemplateColumns"));
|
|
@@ -269,8 +265,6 @@ function _default({
|
|
|
269
265
|
width: _width.default,
|
|
270
266
|
zIndex: _zIndex.default,
|
|
271
267
|
gap: _gap.default,
|
|
272
|
-
columnGap: _columnGap.default,
|
|
273
|
-
rowGap: _rowGap.default,
|
|
274
268
|
gridAutoFlow: _gridAutoFlow.default,
|
|
275
269
|
gridTemplateColumns: _gridTemplateColumns.default,
|
|
276
270
|
gridColumn: _gridColumn.default,
|
|
@@ -25,6 +25,27 @@ function _default(_config, {
|
|
|
25
25
|
utilities: pluginUtilities
|
|
26
26
|
}) {
|
|
27
27
|
return function (css) {
|
|
28
|
+
css.walkAtRules('import', atRule => {
|
|
29
|
+
if (atRule.params === '"tailwindcss/base"' || atRule.params === "'tailwindcss/base'") {
|
|
30
|
+
atRule.name = 'tailwind';
|
|
31
|
+
atRule.params = 'base';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
if (atRule.params === '"tailwindcss/components"' || atRule.params === "'tailwindcss/components'") {
|
|
35
|
+
atRule.name = 'tailwind';
|
|
36
|
+
atRule.params = 'components';
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
if (atRule.params === '"tailwindcss/utilities"' || atRule.params === "'tailwindcss/utilities'") {
|
|
40
|
+
atRule.name = 'tailwind';
|
|
41
|
+
atRule.params = 'utilities';
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
if (atRule.params === '"tailwindcss/screens"' || atRule.params === "'tailwindcss/screens'") {
|
|
45
|
+
atRule.name = 'tailwind';
|
|
46
|
+
atRule.params = 'screens';
|
|
47
|
+
}
|
|
48
|
+
});
|
|
28
49
|
css.walkAtRules('tailwind', atRule => {
|
|
29
50
|
if (atRule.params === 'preflight') {
|
|
30
51
|
// prettier-ignore
|
|
@@ -57,13 +57,14 @@ ul {
|
|
|
57
57
|
*/
|
|
58
58
|
|
|
59
59
|
/**
|
|
60
|
-
* 1. Use the
|
|
60
|
+
* 1. Use the user's configured `sans` font-family (with Tailwind's default
|
|
61
|
+
* sans-serif font stack as a fallback) as a sane default.
|
|
61
62
|
* 2. Use Tailwind's default "normal" line-height so the user isn't forced
|
|
62
63
|
* to override it to ensure consistency even when using the default theme.
|
|
63
64
|
*/
|
|
64
65
|
|
|
65
66
|
html {
|
|
66
|
-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
|
|
67
|
+
font-family: theme('fontFamily.sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"); /* 1 */
|
|
67
68
|
line-height: 1.5; /* 2 */
|
|
68
69
|
}
|
|
69
70
|
|
package/lib/plugins/gap.js
CHANGED
|
@@ -10,5 +10,5 @@ var _createUtilityPlugin = _interopRequireDefault(require("../util/createUtility
|
|
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
11
|
|
|
12
12
|
function _default() {
|
|
13
|
-
return (0, _createUtilityPlugin.default)('gap', [['gap', ['gridGap', 'gap']]]);
|
|
13
|
+
return (0, _createUtilityPlugin.default)('gap', [['gap', ['gridGap', 'gap']], ['col-gap', ['gridColumnGap', 'columnGap']], ['row-gap', ['gridRowGap', 'rowGap']]]);
|
|
14
14
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tailwindcss",
|
|
3
|
-
"version": "1.2.0
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "A utility-first CSS framework for rapidly building custom user interfaces.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"bugs": "https://github.com/tailwindcss/tailwindcss/issues",
|
|
10
10
|
"homepage": "https://tailwindcss.com",
|
|
11
11
|
"bin": {
|
|
12
|
-
"tailwind": "lib/cli.js"
|
|
12
|
+
"tailwind": "lib/cli.js",
|
|
13
|
+
"tailwindcss": "lib/cli.js"
|
|
13
14
|
},
|
|
14
15
|
"contributors": [
|
|
15
16
|
"Adam Wathan <adam.wathan@gmail.com>",
|
|
@@ -19,7 +20,8 @@
|
|
|
19
20
|
"scripts": {
|
|
20
21
|
"prebabelify": "rimraf lib",
|
|
21
22
|
"babelify": "babel src --out-dir lib --copy-files",
|
|
22
|
-
"
|
|
23
|
+
"rebuild-fixtures": "npm run babelify && babel-node scripts/rebuildFixtures.js",
|
|
24
|
+
"prepare": "npm run babelify && babel-node scripts/build.js",
|
|
23
25
|
"style": "eslint .",
|
|
24
26
|
"test": "jest && eslint ."
|
|
25
27
|
},
|
|
@@ -28,13 +30,13 @@
|
|
|
28
30
|
"@babel/core": "^7.0.0",
|
|
29
31
|
"@babel/node": "^7.0.0",
|
|
30
32
|
"@babel/preset-env": "^7.0.0",
|
|
31
|
-
"babel-jest": "^
|
|
33
|
+
"babel-jest": "^25.1.0",
|
|
32
34
|
"clean-css": "^4.1.9",
|
|
33
35
|
"eslint": "^6.0.1",
|
|
34
36
|
"eslint-config-postcss": "^2.0.2",
|
|
35
37
|
"eslint-config-prettier": "^6.0.0",
|
|
36
38
|
"eslint-plugin-prettier": "^3.0.1",
|
|
37
|
-
"jest": "^
|
|
39
|
+
"jest": "^25.1.0",
|
|
38
40
|
"prettier": "^1.7.4",
|
|
39
41
|
"rimraf": "^3.0.0"
|
|
40
42
|
},
|
|
@@ -44,7 +46,7 @@
|
|
|
44
46
|
"chalk": "^3.0.0",
|
|
45
47
|
"detective": "^5.2.0",
|
|
46
48
|
"fs-extra": "^8.0.0",
|
|
47
|
-
"lodash": "^4.17.
|
|
49
|
+
"lodash": "^4.17.15",
|
|
48
50
|
"node-emoji": "^1.8.1",
|
|
49
51
|
"normalize.css": "^8.0.1",
|
|
50
52
|
"postcss": "^7.0.11",
|
package/scripts/build.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import fs from 'fs'
|
|
2
|
+
import postcss from 'postcss'
|
|
3
|
+
import tailwind from '..'
|
|
4
|
+
import CleanCSS from 'clean-css'
|
|
5
|
+
|
|
6
|
+
function buildDistFile(filename) {
|
|
7
|
+
return new Promise((resolve, reject) => {
|
|
8
|
+
console.log(`Processing ./${filename}.css...`)
|
|
9
|
+
|
|
10
|
+
fs.readFile(`./${filename}.css`, (err, css) => {
|
|
11
|
+
if (err) throw err
|
|
12
|
+
|
|
13
|
+
return postcss([tailwind(), require('autoprefixer')])
|
|
14
|
+
.process(css, {
|
|
15
|
+
from: `./${filename}.css`,
|
|
16
|
+
to: `./dist/${filename}.css`,
|
|
17
|
+
map: { inline: false },
|
|
18
|
+
})
|
|
19
|
+
.then(result => {
|
|
20
|
+
fs.writeFileSync(`./dist/${filename}.css`, result.css)
|
|
21
|
+
if (result.map) {
|
|
22
|
+
fs.writeFileSync(`./dist/${filename}.css.map`, result.map)
|
|
23
|
+
}
|
|
24
|
+
return result
|
|
25
|
+
})
|
|
26
|
+
.then(result => {
|
|
27
|
+
const minified = new CleanCSS().minify(result.css)
|
|
28
|
+
fs.writeFileSync(`./dist/${filename}.min.css`, minified.styles)
|
|
29
|
+
})
|
|
30
|
+
.then(resolve)
|
|
31
|
+
.catch(error => {
|
|
32
|
+
console.log(error)
|
|
33
|
+
reject()
|
|
34
|
+
})
|
|
35
|
+
})
|
|
36
|
+
})
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
console.info('Building Tailwind!')
|
|
40
|
+
|
|
41
|
+
Promise.all([
|
|
42
|
+
buildDistFile('base'),
|
|
43
|
+
buildDistFile('components'),
|
|
44
|
+
buildDistFile('utilities'),
|
|
45
|
+
buildDistFile('tailwind'),
|
|
46
|
+
]).then(() => {
|
|
47
|
+
console.log('Finished Building Tailwind!')
|
|
48
|
+
})
|
|
@@ -184,7 +184,8 @@ module.exports = {
|
|
|
184
184
|
'8': '8px',
|
|
185
185
|
},
|
|
186
186
|
boxShadow: {
|
|
187
|
-
|
|
187
|
+
xs: '0 0 0 1px rgba(0, 0, 0, 0.05)',
|
|
188
|
+
sm: '0 1px 2px 0 rgba(0, 0, 0, 0.05)',
|
|
188
189
|
default: '0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)',
|
|
189
190
|
md: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)',
|
|
190
191
|
lg: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
|
|
@@ -223,7 +224,7 @@ module.exports = {
|
|
|
223
224
|
},
|
|
224
225
|
fontFamily: {
|
|
225
226
|
sans: [
|
|
226
|
-
'
|
|
227
|
+
'system-ui',
|
|
227
228
|
'-apple-system',
|
|
228
229
|
'BlinkMacSystemFont',
|
|
229
230
|
'"Segoe UI"',
|
|
@@ -288,6 +289,14 @@ module.exports = {
|
|
|
288
289
|
normal: '1.5',
|
|
289
290
|
relaxed: '1.625',
|
|
290
291
|
loose: '2',
|
|
292
|
+
'3': '.75rem',
|
|
293
|
+
'4': '1rem',
|
|
294
|
+
'5': '1.25rem',
|
|
295
|
+
'6': '1.5rem',
|
|
296
|
+
'7': '1.75rem',
|
|
297
|
+
'8': '2rem',
|
|
298
|
+
'9': '2.25rem',
|
|
299
|
+
'10': '2.5rem',
|
|
291
300
|
},
|
|
292
301
|
listStyleType: {
|
|
293
302
|
none: 'none',
|
|
@@ -303,23 +312,21 @@ module.exports = {
|
|
|
303
312
|
full: '100%',
|
|
304
313
|
screen: '100vh',
|
|
305
314
|
},
|
|
306
|
-
maxWidth: (theme, { breakpoints }) => {
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
}
|
|
322
|
-
},
|
|
315
|
+
maxWidth: (theme, { breakpoints }) => ({
|
|
316
|
+
none: 'none',
|
|
317
|
+
xs: '20rem',
|
|
318
|
+
sm: '24rem',
|
|
319
|
+
md: '28rem',
|
|
320
|
+
lg: '32rem',
|
|
321
|
+
xl: '36rem',
|
|
322
|
+
'2xl': '42rem',
|
|
323
|
+
'3xl': '48rem',
|
|
324
|
+
'4xl': '56rem',
|
|
325
|
+
'5xl': '64rem',
|
|
326
|
+
'6xl': '72rem',
|
|
327
|
+
full: '100%',
|
|
328
|
+
...breakpoints(theme('screens')),
|
|
329
|
+
}),
|
|
323
330
|
minHeight: {
|
|
324
331
|
'0': '0',
|
|
325
332
|
full: '100%',
|
|
@@ -417,8 +424,6 @@ module.exports = {
|
|
|
417
424
|
'50': '50',
|
|
418
425
|
},
|
|
419
426
|
gap: theme => theme('spacing'),
|
|
420
|
-
rowGap: {},
|
|
421
|
-
columnGap: {},
|
|
422
427
|
gridTemplateColumns: {
|
|
423
428
|
none: 'none',
|
|
424
429
|
'1': 'repeat(1, minmax(0, 1fr))',
|
|
@@ -481,10 +486,44 @@ module.exports = {
|
|
|
481
486
|
'12': '12',
|
|
482
487
|
'13': '13',
|
|
483
488
|
},
|
|
484
|
-
gridTemplateRows: {
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
489
|
+
gridTemplateRows: {
|
|
490
|
+
none: 'none',
|
|
491
|
+
'1': 'repeat(1, minmax(0, 1fr))',
|
|
492
|
+
'2': 'repeat(2, minmax(0, 1fr))',
|
|
493
|
+
'3': 'repeat(3, minmax(0, 1fr))',
|
|
494
|
+
'4': 'repeat(4, minmax(0, 1fr))',
|
|
495
|
+
'5': 'repeat(5, minmax(0, 1fr))',
|
|
496
|
+
'6': 'repeat(6, minmax(0, 1fr))',
|
|
497
|
+
},
|
|
498
|
+
gridRow: {
|
|
499
|
+
auto: 'auto',
|
|
500
|
+
'span-1': 'span 1 / span 1',
|
|
501
|
+
'span-2': 'span 2 / span 2',
|
|
502
|
+
'span-3': 'span 3 / span 3',
|
|
503
|
+
'span-4': 'span 4 / span 4',
|
|
504
|
+
'span-5': 'span 5 / span 5',
|
|
505
|
+
'span-6': 'span 6 / span 6',
|
|
506
|
+
},
|
|
507
|
+
gridRowStart: {
|
|
508
|
+
auto: 'auto',
|
|
509
|
+
'1': '1',
|
|
510
|
+
'2': '2',
|
|
511
|
+
'3': '3',
|
|
512
|
+
'4': '4',
|
|
513
|
+
'5': '5',
|
|
514
|
+
'6': '6',
|
|
515
|
+
'7': '7',
|
|
516
|
+
},
|
|
517
|
+
gridRowEnd: {
|
|
518
|
+
auto: 'auto',
|
|
519
|
+
'1': '1',
|
|
520
|
+
'2': '2',
|
|
521
|
+
'3': '3',
|
|
522
|
+
'4': '4',
|
|
523
|
+
'5': '5',
|
|
524
|
+
'6': '6',
|
|
525
|
+
'7': '7',
|
|
526
|
+
},
|
|
488
527
|
transformOrigin: {
|
|
489
528
|
center: 'center',
|
|
490
529
|
top: 'top',
|
|
@@ -525,13 +564,22 @@ module.exports = {
|
|
|
525
564
|
'1/2': '50%',
|
|
526
565
|
full: '100%',
|
|
527
566
|
}),
|
|
528
|
-
skew: {
|
|
567
|
+
skew: {
|
|
568
|
+
'-12': '-12deg',
|
|
569
|
+
'-6': '-6deg',
|
|
570
|
+
'-3': '-3deg',
|
|
571
|
+
'0': '0',
|
|
572
|
+
'3': '3deg',
|
|
573
|
+
'6': '6deg',
|
|
574
|
+
'12': '12deg',
|
|
575
|
+
},
|
|
529
576
|
transitionProperty: {
|
|
530
577
|
none: 'none',
|
|
531
578
|
all: 'all',
|
|
532
|
-
default: 'background-color, border-color, color, opacity, transform',
|
|
533
|
-
colors: 'background-color, border-color, color',
|
|
579
|
+
default: 'background-color, border-color, color, fill, stroke, opacity, box-shadow, transform',
|
|
580
|
+
colors: 'background-color, border-color, color, fill, stroke',
|
|
534
581
|
opacity: 'opacity',
|
|
582
|
+
shadow: 'box-shadow',
|
|
535
583
|
transform: 'transform',
|
|
536
584
|
},
|
|
537
585
|
transitionTimingFunction: {
|
|
@@ -622,8 +670,6 @@ module.exports = {
|
|
|
622
670
|
wordBreak: ['responsive'],
|
|
623
671
|
zIndex: ['responsive'],
|
|
624
672
|
gap: ['responsive'],
|
|
625
|
-
columnGap: ['responsive'],
|
|
626
|
-
rowGap: ['responsive'],
|
|
627
673
|
gridAutoFlow: ['responsive'],
|
|
628
674
|
gridTemplateColumns: ['responsive'],
|
|
629
675
|
gridColumn: ['responsive'],
|
|
@@ -642,7 +688,6 @@ module.exports = {
|
|
|
642
688
|
transitionProperty: ['responsive'],
|
|
643
689
|
transitionTimingFunction: ['responsive'],
|
|
644
690
|
transitionDuration: ['responsive'],
|
|
645
|
-
transitionDelay: ['responsive'],
|
|
646
691
|
},
|
|
647
692
|
corePlugins: {},
|
|
648
693
|
plugins: [],
|
package/lib/build.js
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _fs = _interopRequireDefault(require("fs"));
|
|
4
|
-
|
|
5
|
-
var _postcss = _interopRequireDefault(require("postcss"));
|
|
6
|
-
|
|
7
|
-
var _ = _interopRequireDefault(require(".."));
|
|
8
|
-
|
|
9
|
-
var _cleanCss = _interopRequireDefault(require("clean-css"));
|
|
10
|
-
|
|
11
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
12
|
-
|
|
13
|
-
function buildDistFile(filename) {
|
|
14
|
-
return new Promise((resolve, reject) => {
|
|
15
|
-
console.log(`Processing ./${filename}.css...`);
|
|
16
|
-
|
|
17
|
-
_fs.default.readFile(`./${filename}.css`, (err, css) => {
|
|
18
|
-
if (err) throw err;
|
|
19
|
-
return (0, _postcss.default)([(0, _.default)(), require('autoprefixer')]).process(css, {
|
|
20
|
-
from: `./${filename}.css`,
|
|
21
|
-
to: `./dist/${filename}.css`,
|
|
22
|
-
map: {
|
|
23
|
-
inline: false
|
|
24
|
-
}
|
|
25
|
-
}).then(result => {
|
|
26
|
-
_fs.default.writeFileSync(`./dist/${filename}.css`, result.css);
|
|
27
|
-
|
|
28
|
-
if (result.map) {
|
|
29
|
-
_fs.default.writeFileSync(`./dist/${filename}.css.map`, result.map);
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
return result;
|
|
33
|
-
}).then(result => {
|
|
34
|
-
const minified = new _cleanCss.default().minify(result.css);
|
|
35
|
-
|
|
36
|
-
_fs.default.writeFileSync(`./dist/${filename}.min.css`, minified.styles);
|
|
37
|
-
}).then(resolve).catch(error => {
|
|
38
|
-
console.log(error);
|
|
39
|
-
reject();
|
|
40
|
-
});
|
|
41
|
-
});
|
|
42
|
-
});
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
console.info('Building Tailwind!');
|
|
46
|
-
Promise.all([buildDistFile('base'), buildDistFile('components'), buildDistFile('utilities'), buildDistFile('tailwind')]).then(() => {
|
|
47
|
-
console.log('Finished Building Tailwind!');
|
|
48
|
-
});
|
package/lib/plugins/columnGap.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = _default;
|
|
7
|
-
|
|
8
|
-
var _createUtilityPlugin = _interopRequireDefault(require("../util/createUtilityPlugin"));
|
|
9
|
-
|
|
10
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
-
|
|
12
|
-
function _default() {
|
|
13
|
-
return (0, _createUtilityPlugin.default)('columnGap', [['col-gap', ['gridColumnGap', 'columnGap']]]);
|
|
14
|
-
}
|
package/lib/plugins/rowGap.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = _default;
|
|
7
|
-
|
|
8
|
-
var _createUtilityPlugin = _interopRequireDefault(require("../util/createUtilityPlugin"));
|
|
9
|
-
|
|
10
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
-
|
|
12
|
-
function _default() {
|
|
13
|
-
return (0, _createUtilityPlugin.default)('rowGap', [['row-gap', ['gridRowGap', 'rowGap']]]);
|
|
14
|
-
}
|