1 | "use strict";
|
---|
2 |
|
---|
3 | Object.defineProperty(exports, "__esModule", {
|
---|
4 | value: true
|
---|
5 | });
|
---|
6 | exports.default = void 0;
|
---|
7 | const block = 'block';
|
---|
8 | const flex = 'flex';
|
---|
9 | const flow = 'flow';
|
---|
10 | const flowRoot = 'flow-root';
|
---|
11 | const grid = 'grid';
|
---|
12 | const inline = 'inline';
|
---|
13 | const inlineBlock = 'inline-block';
|
---|
14 | const inlineFlex = 'inline-flex';
|
---|
15 | const inlineGrid = 'inline-grid';
|
---|
16 | const inlineTable = 'inline-table';
|
---|
17 | const listItem = 'list-item';
|
---|
18 | const ruby = 'ruby';
|
---|
19 | const rubyBase = 'ruby-base';
|
---|
20 | const rubyText = 'ruby-text';
|
---|
21 | const runIn = 'run-in';
|
---|
22 | const table = 'table';
|
---|
23 | const tableCell = 'table-cell';
|
---|
24 | const tableCaption = 'table-caption';
|
---|
25 | /**
|
---|
26 | * Specification: https://drafts.csswg.org/css-display/#the-display-properties
|
---|
27 | */
|
---|
28 |
|
---|
29 | var _default = [[block, [block, flow]], [flowRoot, [block, flowRoot]], [inline, [inline, flow]], [inlineBlock, [inline, flowRoot]], [runIn, [runIn, flow]], [listItem, [listItem, block, flow]], [inline + ' ' + listItem, [inline, flow, listItem]], [flex, [block, flex]], [inlineFlex, [inline, flex]], [grid, [block, grid]], [inlineGrid, [inline, grid]], [ruby, [inline, ruby]], // `block ruby` is same
|
---|
30 | [table, [block, table]], [inlineTable, [inline, table]], [tableCell, [tableCell, flow]], [tableCaption, [tableCaption, flow]], [rubyBase, [rubyBase, flow]], [rubyText, [rubyText, flow]]];
|
---|
31 | exports.default = _default;
|
---|
32 | module.exports = exports.default; |
---|