first commit
This commit is contained in:
87
node_modules/stylelint/lib/reference/units.cjs
generated
vendored
Normal file
87
node_modules/stylelint/lib/reference/units.cjs
generated
vendored
Normal file
@@ -0,0 +1,87 @@
|
||||
// NOTICE: This file is generated by Rollup. To modify it,
|
||||
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
|
||||
'use strict';
|
||||
|
||||
const uniteSets = require('../utils/uniteSets.cjs');
|
||||
|
||||
const lengthUnits = new Set([
|
||||
// Font-relative length units
|
||||
'cap',
|
||||
'ch',
|
||||
'em',
|
||||
'ex',
|
||||
'ic',
|
||||
'lh',
|
||||
'rcap',
|
||||
'rch',
|
||||
'rem',
|
||||
'rex',
|
||||
'ric',
|
||||
'rlh',
|
||||
// Viewport-percentage lengths
|
||||
'dvb',
|
||||
'dvh',
|
||||
'dvi',
|
||||
'dvmax',
|
||||
'dvmin',
|
||||
'dvw',
|
||||
'lvb',
|
||||
'lvh',
|
||||
'lvi',
|
||||
'lvmax',
|
||||
'lvmin',
|
||||
'lvw',
|
||||
'svb',
|
||||
'svh',
|
||||
'svi',
|
||||
'svmax',
|
||||
'svmin',
|
||||
'svw',
|
||||
'vb',
|
||||
'vh',
|
||||
'vi',
|
||||
'vw',
|
||||
'vmin',
|
||||
'vmax',
|
||||
'vm',
|
||||
// Absolute length units
|
||||
'px',
|
||||
'mm',
|
||||
'cm',
|
||||
'in',
|
||||
'pt',
|
||||
'pc',
|
||||
'q',
|
||||
'mozmm',
|
||||
// Flexible length units
|
||||
'fr',
|
||||
// Container query units
|
||||
'cqw',
|
||||
'cqh',
|
||||
'cqi',
|
||||
'cqb',
|
||||
'cqmin',
|
||||
'cqmax',
|
||||
]);
|
||||
|
||||
const resolutionUnits = new Set(['dpi', 'dpcm', 'dppx', 'x']);
|
||||
|
||||
const units = uniteSets(lengthUnits, resolutionUnits, [
|
||||
// Relative length units
|
||||
'%',
|
||||
// Time length units
|
||||
's',
|
||||
'ms',
|
||||
// Angle
|
||||
'deg',
|
||||
'grad',
|
||||
'turn',
|
||||
'rad',
|
||||
// Frequency
|
||||
'Hz',
|
||||
'kHz',
|
||||
]);
|
||||
|
||||
exports.lengthUnits = lengthUnits;
|
||||
exports.resolutionUnits = resolutionUnits;
|
||||
exports.units = units;
|
||||
Reference in New Issue
Block a user