postcss-ordered-values
Advanced tools
+6
-13
| { | ||
| "name": "postcss-ordered-values", | ||
| "version": "8.0.5", | ||
| "version": "9.0.0", | ||
| "description": "Ensure values are ordered consistently in your CSS.", | ||
@@ -9,11 +9,3 @@ "exports": { | ||
| "default": "./src/index.js" | ||
| }, | ||
| "./src": "./src/index.js", | ||
| "./src/index": "./src/index.js", | ||
| "./src/index.js": "./src/index.js", | ||
| "./src/lib/*": "./src/lib/*.js", | ||
| "./src/lib/*.js": "./src/lib/*.js", | ||
| "./src/rules/*": "./src/rules/*.js", | ||
| "./src/rules/*.js": "./src/rules/*.js", | ||
| "./package.json": "./package.json" | ||
| } | ||
| }, | ||
@@ -42,4 +34,4 @@ "files": [ | ||
| "dependencies": { | ||
| "postcss-value-parser": "^4.2.0", | ||
| "cssnano-utils": "^6.0.4" | ||
| "cssnano-utils": "^7.0.0", | ||
| "postcss-value-parser": "^4.2.0" | ||
| }, | ||
@@ -50,3 +42,3 @@ "bugs": { | ||
| "engines": { | ||
| "node": "^22.11.0 || ^24.11.0 || >=26.0" | ||
| "node": "^22.22.3 || ^24.15.0 || >=26.0" | ||
| }, | ||
@@ -60,2 +52,3 @@ "devDependencies": { | ||
| }, | ||
| "type": "module", | ||
| "scripts": { | ||
@@ -62,0 +55,0 @@ "acquire": "node ./script/acquire.mjs", |
+15
-18
@@ -1,19 +0,16 @@ | ||
| 'use strict'; | ||
| const valueParser = require('postcss-value-parser'); | ||
| const { | ||
| import valueParser from 'postcss-value-parser'; | ||
| import { | ||
| normalizeGridAutoFlow, | ||
| normalizeGridColumnRowGap, | ||
| normalizeGridColumnRow, | ||
| } = require('./rules/grid'); | ||
| } from './rules/grid.js'; | ||
| import animation from './rules/animation.js'; | ||
| import border from './rules/border.js'; | ||
| import boxShadow from './rules/boxShadow.js'; | ||
| import flexFlow from './rules/flexFlow.js'; | ||
| import transition from './rules/transition.js'; | ||
| import listStyle from './rules/listStyle.js'; | ||
| import column from './rules/columns.js'; | ||
| import vendorUnprefixed from './lib/vendorUnprefixed.js'; | ||
| // rules | ||
| const animation = require('./rules/animation'); | ||
| const border = require('./rules/border'); | ||
| const boxShadow = require('./rules/boxShadow'); | ||
| const flexFlow = require('./rules/flexFlow'); | ||
| const transition = require('./rules/transition'); | ||
| const listStyle = require('./rules/listStyle'); | ||
| const column = require('./rules/columns'); | ||
| const vendorUnprefixed = require('./lib/vendorUnprefixed.js'); | ||
| /** @type {[string, (parsed: valueParser.ParsedValue) => string][]} */ | ||
@@ -164,6 +161,6 @@ const borderRules = [ | ||
| } | ||
| /** @type {true} */ | ||
| pluginCreator.postcss = true; | ||
| const moduleExports = pluginCreator; | ||
| pluginCreator.postcss = true; | ||
| module.exports = /** @type {import('postcss').PluginCreator<void>} */ ( | ||
| pluginCreator | ||
| ); | ||
| export { moduleExports as default, moduleExports as 'module.exports' }; |
@@ -1,4 +0,3 @@ | ||
| 'use strict'; | ||
| /** @return {import('postcss-value-parser').SpaceNode} */ | ||
| module.exports = function addSpace() { | ||
| function addSpace() { | ||
| return /** @type import('postcss-value-parser').SpaceNode */ ({ | ||
@@ -8,2 +7,4 @@ type: 'space', | ||
| }); | ||
| }; | ||
| } | ||
| export default addSpace; |
+11
-9
@@ -1,13 +0,6 @@ | ||
| 'use strict'; | ||
| const { stringify } = require('postcss-value-parser'); | ||
| import postcssValueParser from 'postcss-value-parser'; | ||
| const { stringify } = postcssValueParser; | ||
| /** | ||
| * @param {import('postcss-value-parser').Node[][]} values | ||
| * @return {string} | ||
| */ | ||
| module.exports = function getValue(values) { | ||
| return stringify(flatten(values)); | ||
| }; | ||
| /** | ||
| * @param {import('postcss-value-parser').Node[][]} values | ||
| * @return {import('postcss-value-parser').Node[]} | ||
@@ -37,1 +30,10 @@ */ | ||
| } | ||
| /** | ||
| * @param {import('postcss-value-parser').Node[][]} values | ||
| * @return {string} | ||
| */ | ||
| function getValue(values) { | ||
| return stringify(flatten(values)); | ||
| } | ||
| export default getValue; |
@@ -1,2 +0,1 @@ | ||
| 'use strict'; | ||
| /** | ||
@@ -6,4 +5,6 @@ * @param {string[]} grid | ||
| */ | ||
| module.exports = function joinGridVal(grid) { | ||
| function joinGridVal(grid) { | ||
| return grid.join(' / ').trim(); | ||
| }; | ||
| } | ||
| export default joinGridVal; |
@@ -1,3 +0,1 @@ | ||
| 'use strict'; | ||
| // All of the curently implemented math functions | ||
| module.exports = new Set(['calc', 'clamp', 'max', 'min']); | ||
| export default new Set(['calc', 'clamp', 'max', 'min']); |
@@ -1,2 +0,1 @@ | ||
| 'use strict'; | ||
| const vendorPrefixRegex = /^-\w+-/; | ||
@@ -10,3 +9,2 @@ /** | ||
| } | ||
| module.exports = vendorUnprefixed; | ||
| export default vendorUnprefixed; |
+12
-10
@@ -1,9 +0,10 @@ | ||
| 'use strict'; | ||
| const { unit } = require('postcss-value-parser'); | ||
| const { getArguments } = require('cssnano-utils'); | ||
| const addSpace = require('../lib/addSpace'); | ||
| const getValue = require('../lib/getValue'); | ||
| const mathFunctions = require('../lib/mathfunctions.js'); | ||
| const easingFunctions = require('./easingFunctions.json'); | ||
| import postcssValueParser from 'postcss-value-parser'; | ||
| import cssnanoUtils from 'cssnano-utils'; | ||
| import addSpace from '../lib/addSpace.js'; | ||
| import getValue from '../lib/getValue.js'; | ||
| import mathFunctions from '../lib/mathfunctions.js'; | ||
| import easingFunctions from './easingFunctions.json' with { type: 'json' }; | ||
| const { unit } = postcssValueParser; | ||
| const { getArguments } = cssnanoUtils; | ||
| // animation: [ none | <keyframes-name> ] || <time> || <single-timing-function> || <time> || <single-animation-iteration-count> || <single-animation-direction> || <single-animation-fill-mode> || <single-animation-play-state> | ||
@@ -166,6 +167,7 @@ const timingFunctions = new Set([...easingFunctions.functions, 'frames']); | ||
| */ | ||
| module.exports = function normalizeAnimation(parsed) { | ||
| function normalizeAnimation(parsed) { | ||
| const values = normalize(getArguments(parsed)); | ||
| return getValue(values); | ||
| } | ||
| return getValue(values); | ||
| }; | ||
| export default normalizeAnimation; |
@@ -1,5 +0,5 @@ | ||
| 'use strict'; | ||
| const { unit, stringify } = require('postcss-value-parser'); | ||
| const mathFunctions = require('../lib/mathfunctions.js'); | ||
| import postcssValueParser from 'postcss-value-parser'; | ||
| import mathFunctions from '../lib/mathfunctions.js'; | ||
| const { unit, stringify } = postcssValueParser; | ||
| // border: <line-width> || <line-style> || <color> | ||
@@ -28,3 +28,3 @@ // outline: <outline-color> || <outline-style> || <outline-width> | ||
| */ | ||
| module.exports = function normalizeBorder(border) { | ||
| function normalizeBorder(border) { | ||
| const order = { width: '', style: '', color: '' }; | ||
@@ -60,4 +60,5 @@ | ||
| }); | ||
| return `${order.width} ${order.style} ${order.color}`.trim(); | ||
| } | ||
| return `${order.width} ${order.style} ${order.color}`.trim(); | ||
| }; | ||
| export default normalizeBorder; |
+22
-24
@@ -1,27 +0,11 @@ | ||
| 'use strict'; | ||
| const { unit } = require('postcss-value-parser'); | ||
| const { getArguments } = require('cssnano-utils'); | ||
| const addSpace = require('../lib/addSpace'); | ||
| const getValue = require('../lib/getValue'); | ||
| const mathFunctions = require('../lib/mathfunctions.js'); | ||
| const vendorUnprefixed = require('../lib/vendorUnprefixed.js'); | ||
| import postcssValueParser from 'postcss-value-parser'; | ||
| import cssnanoUtils from 'cssnano-utils'; | ||
| import addSpace from '../lib/addSpace.js'; | ||
| import getValue from '../lib/getValue.js'; | ||
| import mathFunctions from '../lib/mathfunctions.js'; | ||
| import vendorUnprefixed from '../lib/vendorUnprefixed.js'; | ||
| // box-shadow: inset? && <length>{2,4} && <color>? | ||
| const { unit } = postcssValueParser; | ||
| const { getArguments } = cssnanoUtils; | ||
| /** | ||
| * @param {import('postcss-value-parser').ParsedValue} parsed | ||
| * @return {string} | ||
| */ | ||
| module.exports = function normalizeBoxShadow(parsed) { | ||
| const args = getArguments(parsed); | ||
| const normalized = normalize(args); | ||
| if (normalized === false) { | ||
| return parsed.toString(); | ||
| } | ||
| return getValue(normalized); | ||
| }; | ||
| /** | ||
| * @param {import('postcss-value-parser').Node[][]} args | ||
@@ -74,1 +58,15 @@ * @return {false | import('postcss-value-parser').Node[][]} | ||
| } | ||
| /** | ||
| * @param {import('postcss-value-parser').ParsedValue} parsed | ||
| * @return {string} | ||
| */ | ||
| function normalizeBoxShadow(parsed) { | ||
| const args = getArguments(parsed); | ||
| const normalized = normalize(args); | ||
| if (normalized === false) { | ||
| return parsed.toString(); | ||
| } | ||
| return getValue(normalized); | ||
| } | ||
| export default normalizeBoxShadow; |
@@ -1,4 +0,4 @@ | ||
| 'use strict'; | ||
| const { unit } = require('postcss-value-parser'); | ||
| import postcssValueParser from 'postcss-value-parser'; | ||
| const { unit } = postcssValueParser; | ||
| /** | ||
@@ -12,8 +12,4 @@ * @param {string} value | ||
| } | ||
| /** | ||
| * @param {import('postcss-value-parser').ParsedValue} columns | ||
| * @return {import('postcss-value-parser').ParsedValue | string} | ||
| */ | ||
| module.exports = (columns) => { | ||
| /** @param {import('postcss-value-parser').ParsedValue} columns */ | ||
| export default (columns) => { | ||
| /** @type {string[]} */ | ||
@@ -20,0 +16,0 @@ const widths = []; |
@@ -1,2 +0,1 @@ | ||
| 'use strict'; | ||
| // flex-flow: <flex-direction> || <flex-wrap> | ||
@@ -17,3 +16,3 @@ | ||
| */ | ||
| module.exports = function normalizeFlexFlow(flexFlow) { | ||
| function normalizeFlexFlow(flexFlow) { | ||
| const order = { | ||
@@ -34,4 +33,5 @@ direction: '', | ||
| }); | ||
| return `${order.direction} ${order.wrap}`.trim(); | ||
| } | ||
| return `${order.direction} ${order.wrap}`.trim(); | ||
| }; | ||
| export default normalizeFlexFlow; |
@@ -1,3 +0,2 @@ | ||
| 'use strict'; | ||
| const joinGridValue = require('../lib/joinGridValue'); | ||
| import joinGridValue from '../lib/joinGridValue.js'; | ||
@@ -96,3 +95,3 @@ /** | ||
| module.exports = { | ||
| export { | ||
| normalizeGridAutoFlow, | ||
@@ -99,0 +98,0 @@ normalizeGridColumnRowGap, |
@@ -1,4 +0,3 @@ | ||
| 'use strict'; | ||
| const valueParser = require('postcss-value-parser'); | ||
| const listStyleTypes = require('./listStyleTypes.json'); | ||
| import valueParser from 'postcss-value-parser'; | ||
| import listStyleTypes from './listStyleTypes.json' with { type: 'json' }; | ||
@@ -13,3 +12,3 @@ const definedTypes = new Set(listStyleTypes['list-style-type']); | ||
| */ | ||
| module.exports = function listStyleNormalizer(listStyle) { | ||
| function listStyleNormalizer(listStyle) { | ||
| const order = { type: '', position: '', image: '' }; | ||
@@ -43,4 +42,5 @@ | ||
| }); | ||
| return `${order.type.trim()} ${order.position.trim()} ${order.image.trim()}`.trim(); | ||
| } | ||
| return `${order.type.trim()} ${order.position.trim()} ${order.image.trim()}`.trim(); | ||
| }; | ||
| export default listStyleNormalizer; |
@@ -1,8 +0,9 @@ | ||
| 'use strict'; | ||
| const { unit } = require('postcss-value-parser'); | ||
| const { getArguments } = require('cssnano-utils'); | ||
| const addSpace = require('../lib/addSpace'); | ||
| const getValue = require('../lib/getValue'); | ||
| const easingFunctions = require('./easingFunctions.json'); | ||
| import postcssValueParser from 'postcss-value-parser'; | ||
| import cssnanoUtils from 'cssnano-utils'; | ||
| import addSpace from '../lib/addSpace.js'; | ||
| import getValue from '../lib/getValue.js'; | ||
| import easingFunctions from './easingFunctions.json' with { type: 'json' }; | ||
| const { unit } = postcssValueParser; | ||
| const { getArguments } = cssnanoUtils; | ||
| // transition: [ none | <single-transition-property> ] || <time> || <single-transition-timing-function> || <time> | ||
@@ -63,6 +64,7 @@ | ||
| */ | ||
| module.exports = function normalizeTransition(parsed) { | ||
| function normalizeTransition(parsed) { | ||
| const values = normalize(getArguments(parsed)); | ||
| return getValue(values); | ||
| } | ||
| return getValue(values); | ||
| }; | ||
| export default normalizeTransition; |
+9
-2
@@ -1,3 +0,10 @@ | ||
| declare const _exports: import("postcss").PluginCreator<void>; | ||
| export = _exports; | ||
| /** | ||
| * @return {import('postcss').Plugin} | ||
| */ | ||
| declare function pluginCreator(): import('postcss').Plugin; | ||
| declare namespace pluginCreator { | ||
| var postcss: true; | ||
| } | ||
| declare const moduleExports: typeof pluginCreator; | ||
| export { moduleExports as default, moduleExports as 'module.exports' }; | ||
| //# sourceMappingURL=index.d.ts.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.js"],"names":[],"mappings":""} | ||
| {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.js"],"names":[],"mappings":"AAgHA;;GAEG;AACH,iBAAS,aAAa,IAFV,OAAO,SAAS,EAAE,MAAM,CA8CnC;kBA5CQ,aAAa;iBA6CX,IAAI;;AAEf,QAAA,MAAM,aAAa,sBAAgB,CAAC;AAEpC,OAAO,EAAE,aAAa,IAAI,OAAO,EAAE,aAAa,IAAI,gBAAgB,EAAE,CAAC"} |
@@ -1,4 +0,4 @@ | ||
| export = addSpace; | ||
| /** @return {import('postcss-value-parser').SpaceNode} */ | ||
| declare function addSpace(): import('postcss-value-parser').SpaceNode; | ||
| export default addSpace; | ||
| //# sourceMappingURL=addSpace.d.ts.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"addSpace.d.ts","sourceRoot":"","sources":["../../src/lib/addSpace.js"],"names":[],"mappings":";AACA,yDAAyD;6BAA5C,OAAO,sBAAsB,EAAE,SAAS"} | ||
| {"version":3,"file":"addSpace.d.ts","sourceRoot":"","sources":["../../src/lib/addSpace.js"],"names":[],"mappings":"AAAA,yDAAyD;AACzD,iBAAS,QAAQ,IADJ,OAAO,sBAAsB,EAAE,SAAS,CAMpD;eAEc,QAAQ"} |
@@ -1,2 +0,1 @@ | ||
| export = getValue; | ||
| /** | ||
@@ -7,2 +6,3 @@ * @param {import('postcss-value-parser').Node[][]} values | ||
| declare function getValue(values: import('postcss-value-parser').Node[][]): string; | ||
| export default getValue; | ||
| //# sourceMappingURL=getValue.d.ts.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"getValue.d.ts","sourceRoot":"","sources":["../../src/lib/getValue.js"],"names":[],"mappings":";AAGA;;;GAGG;0BACgC,MAAM,EAH9B,OAAO,sBAAsB,EAAE,IAAI,EAAE,EAGP,GAF7B,MAAM"} | ||
| {"version":3,"file":"getValue.d.ts","sourceRoot":"","sources":["../../src/lib/getValue.js"],"names":[],"mappings":"AA6BA;;;GAGG;AACH,iBAAS,QAAQ,CAAC,MAAM,EAHb,OAAO,sBAAsB,EAAE,IAAI,EAAE,EAGxB,GAFZ,MAAM,CAIjB;eAEc,QAAQ"} |
@@ -1,2 +0,1 @@ | ||
| export = joinGridVal; | ||
| /** | ||
@@ -7,2 +6,3 @@ * @param {string[]} grid | ||
| declare function joinGridVal(grid: string[]): string; | ||
| export default joinGridVal; | ||
| //# sourceMappingURL=joinGridValue.d.ts.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"joinGridValue.d.ts","sourceRoot":"","sources":["../../src/lib/joinGridValue.js"],"names":[],"mappings":";AACA;;;GAGG;6BACmC,IAAI,EAH/B,MAAM,EAGyB,GAF9B,MAAM"} | ||
| {"version":3,"file":"joinGridValue.d.ts","sourceRoot":"","sources":["../../src/lib/joinGridValue.js"],"names":[],"mappings":"AAAA;;;GAGG;AACH,iBAAS,WAAW,CAAC,IAAI,EAHd,MAAM,EAGQ,GAFb,MAAM,CAIjB;eAEc,WAAW"} |
@@ -1,3 +0,3 @@ | ||
| declare const _exports: Set<string>; | ||
| export = _exports; | ||
| declare const _default: Set<string>; | ||
| export default _default; | ||
| //# sourceMappingURL=mathfunctions.d.ts.map |
@@ -1,2 +0,1 @@ | ||
| export = vendorUnprefixed; | ||
| /** | ||
@@ -7,2 +6,3 @@ * @param {string} prop | ||
| declare function vendorUnprefixed(prop: string): string; | ||
| export default vendorUnprefixed; | ||
| //# sourceMappingURL=vendorUnprefixed.d.ts.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"vendorUnprefixed.d.ts","sourceRoot":"","sources":["../../src/lib/vendorUnprefixed.js"],"names":[],"mappings":"SAUiB,gBAAgB;AARjC;;;GAGG;AACH,iBAAS,gBAAgB,CAAC,IAAI,EAHnB,MAGmB,GAFlB,MAAM,CAIjB"} | ||
| {"version":3,"file":"vendorUnprefixed.d.ts","sourceRoot":"","sources":["../../src/lib/vendorUnprefixed.js"],"names":[],"mappings":"AACA;;;GAGG;AACH,iBAAS,gBAAgB,CAAC,IAAI,EAHnB,MAGmB,GAFlB,MAAM,CAIjB;eACc,gBAAgB"} |
@@ -1,2 +0,1 @@ | ||
| export = normalizeAnimation; | ||
| /** | ||
@@ -7,2 +6,3 @@ * @param {import('postcss-value-parser').ParsedValue} parsed | ||
| declare function normalizeAnimation(parsed: import('postcss-value-parser').ParsedValue): string; | ||
| export default normalizeAnimation; | ||
| //# sourceMappingURL=animation.d.ts.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"animation.d.ts","sourceRoot":"","sources":["../../src/rules/animation.js"],"names":[],"mappings":";AAiKA;;;GAGG;oCAC0C,MAAM,EAHxC,OAAO,sBAAsB,EAAE,WAGS,GAFvC,MAAM"} | ||
| {"version":3,"file":"animation.d.ts","sourceRoot":"","sources":["../../src/rules/animation.js"],"names":[],"mappings":"AAkKA;;;GAGG;AACH,iBAAS,kBAAkB,CAAC,MAAM,EAHvB,OAAO,sBAAsB,EAAE,WAGR,GAFtB,MAAM,CAKjB;eAEc,kBAAkB"} |
@@ -1,2 +0,1 @@ | ||
| export = normalizeBorder; | ||
| /** | ||
@@ -7,2 +6,3 @@ * @param {import('postcss-value-parser').ParsedValue} border | ||
| declare function normalizeBorder(border: import('postcss-value-parser').ParsedValue): string; | ||
| export default normalizeBorder; | ||
| //# sourceMappingURL=border.d.ts.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"border.d.ts","sourceRoot":"","sources":["../../src/rules/border.js"],"names":[],"mappings":";AAuBA;;;GAGG;iCACuC,MAAM,EAHrC,OAAO,sBAAsB,EAAE,WAGM,GAFpC,MAAM"} | ||
| {"version":3,"file":"border.d.ts","sourceRoot":"","sources":["../../src/rules/border.js"],"names":[],"mappings":"AAuBA;;;GAGG;AACH,iBAAS,eAAe,CAAC,MAAM,EAHpB,OAAO,sBAAsB,EAAE,WAGX,GAFnB,MAAM,CAkCjB;eAEc,eAAe"} |
@@ -1,2 +0,1 @@ | ||
| export = normalizeBoxShadow; | ||
| /** | ||
@@ -7,2 +6,3 @@ * @param {import('postcss-value-parser').ParsedValue} parsed | ||
| declare function normalizeBoxShadow(parsed: import('postcss-value-parser').ParsedValue): string; | ||
| export default normalizeBoxShadow; | ||
| //# sourceMappingURL=boxShadow.d.ts.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"boxShadow.d.ts","sourceRoot":"","sources":["../../src/rules/boxShadow.js"],"names":[],"mappings":";AAUA;;;GAGG;oCAC0C,MAAM,EAHxC,OAAO,sBAAsB,EAAE,WAGS,GAFvC,MAAM"} | ||
| {"version":3,"file":"boxShadow.d.ts","sourceRoot":"","sources":["../../src/rules/boxShadow.js"],"names":[],"mappings":"AAyDA;;;GAGG;AACH,iBAAS,kBAAkB,CAAC,MAAM,EAHvB,OAAO,sBAAsB,EAAE,WAGR,GAFtB,MAAM,CASjB;eAEc,kBAAkB"} |
@@ -1,7 +0,5 @@ | ||
| export = _exports; | ||
| /** | ||
| * @param {import('postcss-value-parser').ParsedValue} columns | ||
| * @return {import('postcss-value-parser').ParsedValue | string} | ||
| */ | ||
| declare function _exports(columns: import('postcss-value-parser').ParsedValue): import('postcss-value-parser').ParsedValue | string; | ||
| import postcssValueParser from 'postcss-value-parser'; | ||
| export default _default; | ||
| /** @param {import('postcss-value-parser').ParsedValue} columns */ | ||
| declare function _default(columns: import('postcss-value-parser').ParsedValue): string | postcssValueParser.ParsedValue; | ||
| //# sourceMappingURL=columns.d.ts.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"columns.d.ts","sourceRoot":"","sources":["../../src/rules/columns.js"],"names":[],"mappings":";AAYA;;;GAGG;0BACe,OAAO,EAHd,OAAO,sBAAsB,EAAE,WAGjB,GAFb,OAAO,sBAAsB,EAAE,WAAW,GAAG,MAAM"} | ||
| {"version":3,"file":"columns.d.ts","sourceRoot":"","sources":["../../src/rules/columns.js"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,MAAM,sBAAsB,CAAC;;AAWtD,kEAAkE;0BAClD,OAAO,EADX,OAAO,sBAAsB,EAAE,WACpB"} |
@@ -1,2 +0,1 @@ | ||
| export = normalizeFlexFlow; | ||
| /** | ||
@@ -7,2 +6,3 @@ * @param {import('postcss-value-parser').ParsedValue} flexFlow | ||
| declare function normalizeFlexFlow(flexFlow: import('postcss-value-parser').ParsedValue): string; | ||
| export default normalizeFlexFlow; | ||
| //# sourceMappingURL=flexFlow.d.ts.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"flexFlow.d.ts","sourceRoot":"","sources":["../../src/rules/flexFlow.js"],"names":[],"mappings":";AAYA;;;GAGG;mCACyC,QAAQ,EAHzC,OAAO,sBAAsB,EAAE,WAGU,GAFxC,MAAM"} | ||
| {"version":3,"file":"flexFlow.d.ts","sourceRoot":"","sources":["../../src/rules/flexFlow.js"],"names":[],"mappings":"AAWA;;;GAGG;AACH,iBAAS,iBAAiB,CAAC,QAAQ,EAHxB,OAAO,sBAAsB,EAAE,WAGP,GAFvB,MAAM,CAmBjB;eAEc,iBAAiB"} |
@@ -1,7 +0,1 @@ | ||
| declare const _exports: { | ||
| normalizeGridAutoFlow: typeof normalizeGridAutoFlow; | ||
| normalizeGridColumnRowGap: typeof normalizeGridColumnRowGap; | ||
| normalizeGridColumnRow: typeof normalizeGridColumnRow; | ||
| }; | ||
| export = _exports; | ||
| /** | ||
@@ -22,2 +16,3 @@ * @param {import('postcss-value-parser').ParsedValue} gridAutoFlow | ||
| declare const normalizeGridColumnRow: (grid: import('postcss-value-parser').ParsedValue) => string | string[]; | ||
| export { normalizeGridAutoFlow, normalizeGridColumnRowGap, normalizeGridColumnRow, }; | ||
| //# sourceMappingURL=grid.d.ts.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"grid.d.ts","sourceRoot":"","sources":["../../src/rules/grid.js"],"names":[],"mappings":";;;;;;AAGA;;;GAGG;AACH,QAAA,MAAM,qBAAqB,iBAHhB,OAAO,sBAAsB,EAAE,WAAW,KACzC,OAAO,sBAAsB,EAAE,WAAW,GAAG,MAoBxD,CAAC;AAEF;;;GAGG;AACH,QAAA,MAAM,yBAAyB,YAHpB,OAAO,sBAAsB,EAAE,WAAW,KACzC,OAAO,sBAAsB,EAAE,WAAW,GAAG,MAkBxD,CAAC;AAEF;;;GAGG;AACH,QAAA,MAAM,sBAAsB,SAHjB,OAAO,sBAAsB,EAAE,WAAW,KACzC,MAAM,GAAG,MAAM,EA0C1B,CAAC"} | ||
| {"version":3,"file":"grid.d.ts","sourceRoot":"","sources":["../../src/rules/grid.js"],"names":[],"mappings":"AAEA;;;GAGG;AACH,QAAA,MAAM,qBAAqB,iBAHhB,OAAO,sBAAsB,EAAE,WAAW,KACzC,OAAO,sBAAsB,EAAE,WAAW,GAAG,MAoBxD,CAAC;AAEF;;;GAGG;AACH,QAAA,MAAM,yBAAyB,YAHpB,OAAO,sBAAsB,EAAE,WAAW,KACzC,OAAO,sBAAsB,EAAE,WAAW,GAAG,MAkBxD,CAAC;AAEF;;;GAGG;AACH,QAAA,MAAM,sBAAsB,SAHjB,OAAO,sBAAsB,EAAE,WAAW,KACzC,MAAM,GAAG,MAAM,EA0C1B,CAAC;AAEF,OAAO,EACL,qBAAqB,EACrB,yBAAyB,EACzB,sBAAsB,GACvB,CAAC"} |
@@ -1,2 +0,1 @@ | ||
| export = listStyleNormalizer; | ||
| /** | ||
@@ -7,2 +6,3 @@ * @param {import('postcss-value-parser').ParsedValue} listStyle | ||
| declare function listStyleNormalizer(listStyle: import('postcss-value-parser').ParsedValue): string; | ||
| export default listStyleNormalizer; | ||
| //# sourceMappingURL=listStyle.d.ts.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"listStyle.d.ts","sourceRoot":"","sources":["../../src/rules/listStyle.js"],"names":[],"mappings":";AAQA;;;GAGG;qCAC2C,SAAS,EAH5C,OAAO,sBAAsB,EAAE,WAGa,GAF3C,MAAM"} | ||
| {"version":3,"file":"listStyle.d.ts","sourceRoot":"","sources":["../../src/rules/listStyle.js"],"names":[],"mappings":"AAOA;;;GAGG;AACH,iBAAS,mBAAmB,CAAC,SAAS,EAH3B,OAAO,sBAAsB,EAAE,WAGJ,GAF1B,MAAM,CAgCjB;eAEc,mBAAmB"} |
@@ -1,2 +0,1 @@ | ||
| export = normalizeTransition; | ||
| /** | ||
@@ -7,2 +6,3 @@ * @param {import('postcss-value-parser').ParsedValue} parsed | ||
| declare function normalizeTransition(parsed: import('postcss-value-parser').ParsedValue): string; | ||
| export default normalizeTransition; | ||
| //# sourceMappingURL=transition.d.ts.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"transition.d.ts","sourceRoot":"","sources":["../../src/rules/transition.js"],"names":[],"mappings":";AA0DA;;;GAGG;qCAC2C,MAAM,EAHzC,OAAO,sBAAsB,EAAE,WAGU,GAFxC,MAAM"} | ||
| {"version":3,"file":"transition.d.ts","sourceRoot":"","sources":["../../src/rules/transition.js"],"names":[],"mappings":"AA2DA;;;GAGG;AACH,iBAAS,mBAAmB,CAAC,MAAM,EAHxB,OAAO,sBAAsB,EAAE,WAGP,GAFvB,MAAM,CAKjB;eAEc,mBAAmB"} |
35075
1.23%Yes
NaN938
-0.21%+ Added
- Removed
Updated