|
1 | | -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') |
2 | | - |
3 | | -module.exports = [ |
4 | | - createSimpleStaticUtilityPlugin({ |
5 | | - '.block': { display: 'block' }, |
6 | | - '.inline-block': { display: 'inline-block' }, |
7 | | - '.inline': { display: 'inline' }, |
8 | | - '.flex': { display: 'flex' }, |
9 | | - '.inline-flex': { display: 'inline-flex' }, |
10 | | - '.table': { display: 'table' }, |
11 | | - '.table-caption': { display: 'table-caption' }, |
12 | | - '.table-cell': { display: 'table-cell' }, |
13 | | - '.table-column': { display: 'table-column' }, |
14 | | - '.table-column-group': { display: 'table-column-group' }, |
15 | | - '.table-footer-group': { display: 'table-footer-group' }, |
16 | | - '.table-header-group': { display: 'table-header-group' }, |
17 | | - '.table-row-group': { display: 'table-row-group' }, |
18 | | - '.table-row': { display: 'table-row' }, |
19 | | - '.flow-root': { display: 'flow-root' }, |
20 | | - '.grid': { display: 'grid' }, |
21 | | - '.inline-grid': { display: 'inline-grid' }, |
22 | | - '.contents': { display: 'contents' }, |
23 | | - }), |
24 | | - createSimpleStaticUtilityPlugin({ |
25 | | - '.hidden': { display: 'none' }, |
26 | | - }), |
27 | | -] |
| 1 | +module.exports = require('../../lib/plugins/display').default() |
0 commit comments