source: trip-planner-front/node_modules/postcss-normalize-display-values/dist/lib/map.js@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.3 KB
Line 
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = void 0;
7const block = 'block';
8const flex = 'flex';
9const flow = 'flow';
10const flowRoot = 'flow-root';
11const grid = 'grid';
12const inline = 'inline';
13const inlineBlock = 'inline-block';
14const inlineFlex = 'inline-flex';
15const inlineGrid = 'inline-grid';
16const inlineTable = 'inline-table';
17const listItem = 'list-item';
18const ruby = 'ruby';
19const rubyBase = 'ruby-base';
20const rubyText = 'ruby-text';
21const runIn = 'run-in';
22const table = 'table';
23const tableCell = 'table-cell';
24const tableCaption = 'table-caption';
25/**
26 * Specification: https://drafts.csswg.org/css-display/#the-display-properties
27 */
28
29var _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]]];
31exports.default = _default;
32module.exports = exports.default;
Note: See TracBrowser for help on using the repository browser.