mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-02 06:02:19 +00:00
0.2.0 - Mid migration
This commit is contained in:
parent
139e6a915e
commit
7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions
32
web/node_modules/postcss-normalize-display-values/dist/lib/map.js
generated
vendored
Normal file
32
web/node_modules/postcss-normalize-display-values/dist/lib/map.js
generated
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
const block = 'block';
|
||||
const flex = 'flex';
|
||||
const flow = 'flow';
|
||||
const flowRoot = 'flow-root';
|
||||
const grid = 'grid';
|
||||
const inline = 'inline';
|
||||
const inlineBlock = 'inline-block';
|
||||
const inlineFlex = 'inline-flex';
|
||||
const inlineGrid = 'inline-grid';
|
||||
const inlineTable = 'inline-table';
|
||||
const listItem = 'list-item';
|
||||
const ruby = 'ruby';
|
||||
const rubyBase = 'ruby-base';
|
||||
const rubyText = 'ruby-text';
|
||||
const runIn = 'run-in';
|
||||
const table = 'table';
|
||||
const tableCell = 'table-cell';
|
||||
const tableCaption = 'table-caption';
|
||||
|
||||
/**
|
||||
* Specification: https://drafts.csswg.org/css-display/#the-display-properties
|
||||
*/
|
||||
|
||||
exports.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
|
||||
[table, [block, table]], [inlineTable, [inline, table]], [tableCell, [tableCell, flow]], [tableCaption, [tableCaption, flow]], [rubyBase, [rubyBase, flow]], [rubyText, [rubyText, flow]]];
|
||||
module.exports = exports['default'];
|
Loading…
Add table
Add a link
Reference in a new issue