tailwindcss 0.0.0-insiders.d3e754a → 0.0.0-insiders.d3f2221
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -9
- package/colors.d.ts +3 -0
- package/defaultConfig.d.ts +3 -0
- package/defaultTheme.d.ts +4 -0
- package/index.css +5 -0
- package/lib/cli/build/index.js +57 -0
- package/lib/cli/build/plugin.js +431 -0
- package/lib/cli/build/utils.js +88 -0
- package/lib/cli/build/watching.js +182 -0
- package/lib/cli/help/index.js +73 -0
- package/lib/cli/index.js +231 -0
- package/lib/cli/init/index.js +63 -0
- package/lib/cli.js +1 -739
- package/lib/corePluginList.js +13 -3
- package/lib/corePlugins.js +1094 -478
- package/lib/css/preflight.css +17 -4
- package/lib/featureFlags.js +49 -23
- package/lib/index.js +1 -29
- package/lib/lib/cacheInvalidation.js +92 -0
- package/lib/lib/collapseAdjacentRules.js +12 -5
- package/lib/lib/collapseDuplicateDeclarations.js +12 -7
- package/lib/lib/content.js +207 -0
- package/lib/lib/defaultExtractor.js +217 -33
- package/lib/lib/detectNesting.js +15 -4
- package/lib/lib/evaluateTailwindFunctions.js +104 -37
- package/lib/lib/expandApplyAtRules.js +312 -211
- package/lib/lib/expandTailwindAtRules.js +149 -96
- package/lib/lib/findAtConfigPath.js +46 -0
- package/lib/lib/generateRules.js +437 -188
- package/lib/lib/getModuleDependencies.js +88 -37
- package/lib/lib/handleImportAtRules.js +50 -0
- package/lib/lib/load-config.js +42 -0
- package/lib/lib/normalizeTailwindDirectives.js +9 -19
- package/lib/lib/offsets.js +306 -0
- package/lib/lib/partitionApplyAtRules.js +11 -6
- package/lib/lib/regex.js +74 -0
- package/lib/lib/remap-bitfield.js +89 -0
- package/lib/lib/resolveDefaultsAtRules.js +80 -58
- package/lib/lib/setupContextUtils.js +683 -270
- package/lib/lib/setupTrackingContext.js +63 -67
- package/lib/lib/sharedState.js +39 -10
- package/lib/lib/substituteScreenAtRules.js +13 -9
- package/lib/plugin.js +164 -0
- package/lib/postcss-plugins/nesting/README.md +2 -2
- package/lib/postcss-plugins/nesting/index.js +10 -6
- package/lib/postcss-plugins/nesting/plugin.js +15 -11
- package/lib/processTailwindFeatures.js +33 -28
- package/lib/public/colors.js +55 -29
- package/lib/public/create-plugin.js +9 -5
- package/lib/public/default-config.js +10 -6
- package/lib/public/default-theme.js +10 -6
- package/lib/public/load-config.js +12 -0
- package/lib/public/resolve-config.js +11 -6
- package/lib/util/applyImportantSelector.js +36 -0
- package/lib/util/bigSign.js +6 -1
- package/lib/util/buildMediaQuery.js +12 -5
- package/lib/util/cloneDeep.js +8 -5
- package/lib/util/cloneNodes.js +11 -2
- package/lib/util/color.js +59 -42
- package/lib/util/colorNames.js +752 -0
- package/lib/util/configurePlugins.js +7 -2
- package/lib/util/createPlugin.js +8 -5
- package/lib/util/createUtilityPlugin.js +15 -11
- package/lib/util/dataTypes.js +172 -47
- package/lib/util/defaults.js +12 -7
- package/lib/util/escapeClassName.js +13 -8
- package/lib/util/escapeCommas.js +6 -1
- package/lib/util/flattenColorPalette.js +9 -8
- package/lib/util/formatVariantSelector.js +230 -151
- package/lib/util/getAllConfigs.js +34 -12
- package/lib/util/hashConfig.js +9 -4
- package/lib/util/isKeyframeRule.js +6 -1
- package/lib/util/isPlainObject.js +6 -1
- package/lib/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +15 -5
- package/lib/util/log.js +36 -9
- package/lib/util/nameClass.js +24 -7
- package/lib/util/negateValue.js +23 -6
- package/lib/util/normalizeConfig.js +142 -69
- package/lib/util/normalizeScreens.js +124 -5
- package/lib/util/parseAnimationValue.js +8 -4
- package/lib/util/parseBoxShadowValue.js +16 -45
- package/lib/util/parseDependency.js +38 -54
- package/lib/util/parseGlob.js +36 -0
- package/lib/util/parseObjectStyles.js +14 -9
- package/lib/util/pluginUtils.js +146 -51
- package/lib/util/prefixSelector.js +29 -10
- package/lib/util/pseudoElements.js +209 -0
- package/lib/util/removeAlphaVariables.js +31 -0
- package/lib/util/resolveConfig.js +100 -73
- package/lib/util/resolveConfigPath.js +27 -8
- package/lib/util/responsive.js +10 -5
- package/lib/util/splitAtTopLevelOnly.js +51 -0
- package/lib/util/tap.js +6 -1
- package/lib/util/toColorValue.js +6 -1
- package/lib/util/toPath.js +20 -2
- package/lib/util/transformThemeValue.js +21 -7
- package/lib/util/validateConfig.js +48 -0
- package/lib/util/validateFormalSyntax.js +26 -0
- package/lib/util/withAlphaVariable.js +24 -12
- package/lib/value-parser/LICENSE +22 -0
- package/lib/value-parser/README.md +3 -0
- package/lib/value-parser/index.d.js +2 -0
- package/lib/value-parser/index.js +22 -0
- package/lib/value-parser/parse.js +259 -0
- package/lib/value-parser/stringify.js +38 -0
- package/lib/value-parser/unit.js +86 -0
- package/lib/value-parser/walk.js +16 -0
- package/loadConfig.d.ts +4 -0
- package/loadConfig.js +2 -0
- package/package.json +58 -53
- package/plugin.d.ts +11 -0
- package/resolveConfig.d.ts +12 -0
- package/scripts/generate-types.js +105 -0
- package/scripts/release-channel.js +18 -0
- package/scripts/release-notes.js +21 -0
- package/scripts/type-utils.js +27 -0
- package/src/cli/build/index.js +53 -0
- package/src/cli/build/plugin.js +469 -0
- package/src/cli/build/utils.js +76 -0
- package/src/cli/build/watching.js +229 -0
- package/src/cli/help/index.js +70 -0
- package/src/cli/index.js +217 -0
- package/src/cli/init/index.js +79 -0
- package/src/cli.js +1 -813
- package/src/corePluginList.js +1 -1
- package/src/corePlugins.js +636 -117
- package/src/css/preflight.css +17 -4
- package/src/featureFlags.js +13 -3
- package/src/index.js +1 -28
- package/src/lib/cacheInvalidation.js +52 -0
- package/src/lib/collapseAdjacentRules.js +5 -1
- package/src/lib/content.js +240 -0
- package/src/lib/defaultExtractor.js +192 -35
- package/src/lib/detectNesting.js +9 -1
- package/src/lib/evaluateTailwindFunctions.js +82 -8
- package/src/lib/expandApplyAtRules.js +322 -189
- package/src/lib/expandTailwindAtRules.js +87 -60
- package/src/lib/findAtConfigPath.js +48 -0
- package/src/lib/generateRules.js +428 -128
- package/src/lib/getModuleDependencies.js +70 -30
- package/src/lib/handleImportAtRules.js +34 -0
- package/src/lib/load-config.ts +31 -0
- package/src/lib/normalizeTailwindDirectives.js +0 -27
- package/src/lib/offsets.js +373 -0
- package/src/lib/regex.js +74 -0
- package/src/lib/remap-bitfield.js +82 -0
- package/src/lib/resolveDefaultsAtRules.js +53 -36
- package/src/lib/setupContextUtils.js +608 -157
- package/src/lib/setupTrackingContext.js +44 -58
- package/src/lib/sharedState.js +14 -4
- package/src/plugin.js +133 -0
- package/src/postcss-plugins/nesting/README.md +2 -2
- package/src/processTailwindFeatures.js +3 -2
- package/src/public/colors.js +22 -0
- package/src/public/default-config.js +1 -1
- package/src/public/default-theme.js +2 -2
- package/src/public/load-config.js +2 -0
- package/src/util/applyImportantSelector.js +27 -0
- package/src/util/buildMediaQuery.js +5 -3
- package/src/util/cloneNodes.js +5 -1
- package/src/util/color.js +39 -20
- package/src/util/colorNames.js +150 -0
- package/src/util/dataTypes.js +115 -23
- package/src/util/formatVariantSelector.js +265 -144
- package/src/util/getAllConfigs.js +21 -2
- package/src/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +1 -1
- package/src/util/log.js +25 -1
- package/src/util/nameClass.js +4 -0
- package/src/util/negateValue.js +11 -3
- package/src/util/normalizeConfig.js +78 -20
- package/src/util/normalizeScreens.js +99 -4
- package/src/util/parseBoxShadowValue.js +3 -50
- package/src/util/parseDependency.js +37 -42
- package/src/util/parseGlob.js +24 -0
- package/src/util/pluginUtils.js +118 -23
- package/src/util/prefixSelector.js +29 -10
- package/src/util/pseudoElements.js +167 -0
- package/src/util/removeAlphaVariables.js +24 -0
- package/src/util/resolveConfig.js +70 -32
- package/src/util/resolveConfigPath.js +12 -1
- package/src/util/splitAtTopLevelOnly.js +52 -0
- package/src/util/toPath.js +1 -1
- package/src/util/transformThemeValue.js +13 -3
- package/src/util/validateConfig.js +36 -0
- package/src/util/validateFormalSyntax.js +34 -0
- package/src/util/withAlphaVariable.js +1 -1
- package/src/value-parser/LICENSE +22 -0
- package/src/value-parser/README.md +3 -0
- package/src/value-parser/index.d.ts +177 -0
- package/src/value-parser/index.js +28 -0
- package/src/value-parser/parse.js +303 -0
- package/src/value-parser/stringify.js +41 -0
- package/src/value-parser/unit.js +118 -0
- package/src/value-parser/walk.js +18 -0
- package/stubs/.gitignore +1 -0
- package/stubs/.prettierrc.json +6 -0
- package/stubs/{defaultConfig.stub.js → config.full.js} +224 -172
- package/stubs/{simpleConfig.stub.js → config.simple.js} +1 -1
- package/stubs/{defaultPostCssConfig.stub.js → postcss.config.cjs} +0 -1
- package/stubs/postcss.config.js +5 -0
- package/stubs/tailwind.config.cjs +2 -0
- package/stubs/tailwind.config.js +2 -0
- package/stubs/tailwind.config.ts +3 -0
- package/types/config.d.ts +369 -0
- package/types/generated/.gitkeep +0 -0
- package/types/generated/colors.d.ts +298 -0
- package/types/generated/corePluginList.d.ts +1 -0
- package/types/generated/default-theme.d.ts +378 -0
- package/types/index.d.ts +7 -0
- package/CHANGELOG.md +0 -2075
- package/lib/cli-peer-dependencies.js +0 -15
- package/lib/constants.js +0 -37
- package/peers/index.js +0 -75077
- package/scripts/install-integrations.js +0 -27
- package/scripts/rebuildFixtures.js +0 -68
- package/src/cli-peer-dependencies.js +0 -9
- package/src/constants.js +0 -17
|
@@ -2,34 +2,156 @@ import selectorParser from 'postcss-selector-parser'
|
|
|
2
2
|
import unescape from 'postcss-selector-parser/dist/util/unesc'
|
|
3
3
|
import escapeClassName from '../util/escapeClassName'
|
|
4
4
|
import prefixSelector from '../util/prefixSelector'
|
|
5
|
+
import { movePseudos } from './pseudoElements'
|
|
6
|
+
import { splitAtTopLevelOnly } from './splitAtTopLevelOnly'
|
|
7
|
+
|
|
8
|
+
/** @typedef {import('postcss-selector-parser').Root} Root */
|
|
9
|
+
/** @typedef {import('postcss-selector-parser').Selector} Selector */
|
|
10
|
+
/** @typedef {import('postcss-selector-parser').Pseudo} Pseudo */
|
|
11
|
+
/** @typedef {import('postcss-selector-parser').Node} Node */
|
|
12
|
+
|
|
13
|
+
/** @typedef {{format: string, respectPrefix: boolean}[]} RawFormats */
|
|
14
|
+
/** @typedef {import('postcss-selector-parser').Root} ParsedFormats */
|
|
15
|
+
/** @typedef {RawFormats | ParsedFormats} AcceptedFormats */
|
|
5
16
|
|
|
6
17
|
let MERGE = ':merge'
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* @param {RawFormats} formats
|
|
21
|
+
* @param {{context: any, candidate: string, base: string | null}} options
|
|
22
|
+
* @returns {ParsedFormats | null}
|
|
23
|
+
*/
|
|
24
|
+
export function formatVariantSelector(formats, { context, candidate }) {
|
|
25
|
+
let prefix = context?.tailwindConfig.prefix ?? ''
|
|
26
|
+
|
|
27
|
+
// Parse the format selector into an AST
|
|
28
|
+
let parsedFormats = formats.map((format) => {
|
|
29
|
+
let ast = selectorParser().astSync(format.format)
|
|
30
|
+
|
|
31
|
+
return {
|
|
32
|
+
...format,
|
|
33
|
+
ast: format.respectPrefix ? prefixSelector(prefix, ast) : ast,
|
|
34
|
+
}
|
|
35
|
+
})
|
|
36
|
+
|
|
37
|
+
// We start with the candidate selector
|
|
38
|
+
let formatAst = selectorParser.root({
|
|
39
|
+
nodes: [
|
|
40
|
+
selectorParser.selector({
|
|
41
|
+
nodes: [selectorParser.className({ value: escapeClassName(candidate) })],
|
|
42
|
+
}),
|
|
43
|
+
],
|
|
44
|
+
})
|
|
45
|
+
|
|
46
|
+
// And iteratively merge each format selector into the candidate selector
|
|
47
|
+
for (let { ast } of parsedFormats) {
|
|
48
|
+
// 1. Handle :merge() special pseudo-class
|
|
49
|
+
;[formatAst, ast] = handleMergePseudo(formatAst, ast)
|
|
50
|
+
|
|
51
|
+
// 2. Merge the format selector into the current selector AST
|
|
52
|
+
ast.walkNesting((nesting) => nesting.replaceWith(...formatAst.nodes[0].nodes))
|
|
53
|
+
|
|
54
|
+
// 3. Keep going!
|
|
55
|
+
formatAst = ast
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
return formatAst
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Given any node in a selector this gets the "simple" selector it's a part of
|
|
63
|
+
* A simple selector is just a list of nodes without any combinators
|
|
64
|
+
* Technically :is(), :not(), :has(), etc… can have combinators but those are nested
|
|
65
|
+
* inside the relevant node and won't be picked up so they're fine to ignore
|
|
66
|
+
*
|
|
67
|
+
* @param {Node} node
|
|
68
|
+
* @returns {Node[]}
|
|
69
|
+
**/
|
|
70
|
+
function simpleSelectorForNode(node) {
|
|
71
|
+
/** @type {Node[]} */
|
|
72
|
+
let nodes = []
|
|
73
|
+
|
|
74
|
+
// Walk backwards until we hit a combinator node (or the start)
|
|
75
|
+
while (node.prev() && node.prev().type !== 'combinator') {
|
|
76
|
+
node = node.prev()
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
// Now record all non-combinator nodes until we hit one (or the end)
|
|
80
|
+
while (node && node.type !== 'combinator') {
|
|
81
|
+
nodes.push(node)
|
|
82
|
+
node = node.next()
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
return nodes
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* Resorts the nodes in a selector to ensure they're in the correct order
|
|
90
|
+
* Tags go before classes, and pseudo classes go after classes
|
|
91
|
+
*
|
|
92
|
+
* @param {Selector} sel
|
|
93
|
+
* @returns {Selector}
|
|
94
|
+
**/
|
|
95
|
+
function resortSelector(sel) {
|
|
96
|
+
sel.sort((a, b) => {
|
|
97
|
+
if (a.type === 'tag' && b.type === 'class') {
|
|
98
|
+
return -1
|
|
99
|
+
} else if (a.type === 'class' && b.type === 'tag') {
|
|
100
|
+
return 1
|
|
101
|
+
} else if (a.type === 'class' && b.type === 'pseudo' && b.value.startsWith('::')) {
|
|
102
|
+
return -1
|
|
103
|
+
} else if (a.type === 'pseudo' && a.value.startsWith('::') && b.type === 'class') {
|
|
104
|
+
return 1
|
|
24
105
|
}
|
|
25
106
|
|
|
26
|
-
|
|
107
|
+
return sel.index(a) - sel.index(b)
|
|
108
|
+
})
|
|
109
|
+
|
|
110
|
+
return sel
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Remove extraneous selectors that do not include the base class/candidate
|
|
115
|
+
*
|
|
116
|
+
* Example:
|
|
117
|
+
* Given the utility `.a, .b { color: red}`
|
|
118
|
+
* Given the candidate `sm:b`
|
|
119
|
+
*
|
|
120
|
+
* The final selector should be `.sm\:b` and not `.a, .sm\:b`
|
|
121
|
+
*
|
|
122
|
+
* @param {Selector} ast
|
|
123
|
+
* @param {string} base
|
|
124
|
+
*/
|
|
125
|
+
export function eliminateIrrelevantSelectors(sel, base) {
|
|
126
|
+
let hasClassesMatchingCandidate = false
|
|
127
|
+
|
|
128
|
+
sel.walk((child) => {
|
|
129
|
+
if (child.type === 'class' && child.value === base) {
|
|
130
|
+
hasClassesMatchingCandidate = true
|
|
131
|
+
return false // Stop walking
|
|
132
|
+
}
|
|
133
|
+
})
|
|
134
|
+
|
|
135
|
+
if (!hasClassesMatchingCandidate) {
|
|
136
|
+
sel.remove()
|
|
27
137
|
}
|
|
28
138
|
|
|
29
|
-
|
|
139
|
+
// We do NOT recursively eliminate sub selectors that don't have the base class
|
|
140
|
+
// as this is NOT a safe operation. For example, if we have:
|
|
141
|
+
// `.space-x-2 > :not([hidden]) ~ :not([hidden])`
|
|
142
|
+
// We cannot remove the [hidden] from the :not() because it would change the
|
|
143
|
+
// meaning of the selector.
|
|
144
|
+
|
|
145
|
+
// TODO: Can we do this for :matches, :is, and :where?
|
|
30
146
|
}
|
|
31
147
|
|
|
32
|
-
|
|
148
|
+
/**
|
|
149
|
+
* @param {string} current
|
|
150
|
+
* @param {AcceptedFormats} formats
|
|
151
|
+
* @param {{context: any, candidate: string, base: string | null}} options
|
|
152
|
+
* @returns {string}
|
|
153
|
+
*/
|
|
154
|
+
export function finalizeSelector(current, formats, { context, candidate, base }) {
|
|
33
155
|
let separator = context?.tailwindConfig?.separator ?? ':'
|
|
34
156
|
|
|
35
157
|
// Split by the separator, but ignore the separator inside square brackets:
|
|
@@ -39,14 +161,10 @@ export function finalizeSelector(format, { selector, candidate, context }) {
|
|
|
39
161
|
// │ │ │ ╰── We will not split here
|
|
40
162
|
// ╰──┴─────┴─────────────── We will split here
|
|
41
163
|
//
|
|
42
|
-
|
|
43
|
-
let base = candidate.split(splitter).pop()
|
|
44
|
-
|
|
45
|
-
if (context?.tailwindConfig?.prefix) {
|
|
46
|
-
format = prefixSelector(context.tailwindConfig.prefix, format)
|
|
47
|
-
}
|
|
164
|
+
base = base ?? splitAtTopLevelOnly(candidate, separator).pop()
|
|
48
165
|
|
|
49
|
-
|
|
166
|
+
// Parse the selector into an AST
|
|
167
|
+
let selector = selectorParser().astSync(current)
|
|
50
168
|
|
|
51
169
|
// Normalize escaped classes, e.g.:
|
|
52
170
|
//
|
|
@@ -59,138 +177,141 @@ export function finalizeSelector(format, { selector, candidate, context }) {
|
|
|
59
177
|
// base in selector: bg-\\[rgb\\(255\\,0\\,0\\)\\]
|
|
60
178
|
// escaped base: bg-\\[rgb\\(255\\2c 0\\2c 0\\)\\]
|
|
61
179
|
//
|
|
62
|
-
selector
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
180
|
+
selector.walkClasses((node) => {
|
|
181
|
+
if (node.raws && node.value.includes(base)) {
|
|
182
|
+
node.raws.value = escapeClassName(unescape(node.raws.value))
|
|
183
|
+
}
|
|
184
|
+
})
|
|
67
185
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
186
|
+
// Remove extraneous selectors that do not include the base candidate
|
|
187
|
+
selector.each((sel) => eliminateIrrelevantSelectors(sel, base))
|
|
188
|
+
|
|
189
|
+
// If there are no formats that means there were no variants added to the candidate
|
|
190
|
+
// so we can just return the selector as-is
|
|
191
|
+
let formatAst = Array.isArray(formats)
|
|
192
|
+
? formatVariantSelector(formats, { context, candidate })
|
|
193
|
+
: formats
|
|
194
|
+
|
|
195
|
+
if (formatAst === null) {
|
|
196
|
+
return selector.toString()
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
let simpleStart = selectorParser.comment({ value: '/*__simple__*/' })
|
|
200
|
+
let simpleEnd = selectorParser.comment({ value: '/*__simple__*/' })
|
|
71
201
|
|
|
72
202
|
// We can safely replace the escaped base now, since the `base` section is
|
|
73
203
|
// now in a normalized escaped value.
|
|
74
|
-
selector
|
|
204
|
+
selector.walkClasses((node) => {
|
|
205
|
+
if (node.value !== base) {
|
|
206
|
+
return
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
let parent = node.parent
|
|
210
|
+
let formatNodes = formatAst.nodes[0].nodes
|
|
211
|
+
|
|
212
|
+
// Perf optimization: if the parent is a single class we can just replace it and be done
|
|
213
|
+
if (parent.nodes.length === 1) {
|
|
214
|
+
node.replaceWith(...formatNodes)
|
|
215
|
+
return
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
let simpleSelector = simpleSelectorForNode(node)
|
|
219
|
+
parent.insertBefore(simpleSelector[0], simpleStart)
|
|
220
|
+
parent.insertAfter(simpleSelector[simpleSelector.length - 1], simpleEnd)
|
|
221
|
+
|
|
222
|
+
for (let child of formatNodes) {
|
|
223
|
+
parent.insertBefore(simpleSelector[0], child.clone())
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
node.remove()
|
|
227
|
+
|
|
228
|
+
// Re-sort the simple selector to ensure it's in the correct order
|
|
229
|
+
simpleSelector = simpleSelectorForNode(simpleStart)
|
|
230
|
+
let firstNode = parent.index(simpleStart)
|
|
231
|
+
|
|
232
|
+
parent.nodes.splice(
|
|
233
|
+
firstNode,
|
|
234
|
+
simpleSelector.length,
|
|
235
|
+
...resortSelector(selectorParser.selector({ nodes: simpleSelector })).nodes
|
|
236
|
+
)
|
|
237
|
+
|
|
238
|
+
simpleStart.remove()
|
|
239
|
+
simpleEnd.remove()
|
|
240
|
+
})
|
|
75
241
|
|
|
76
242
|
// Remove unnecessary pseudo selectors that we used as placeholders
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
})
|
|
243
|
+
selector.walkPseudos((p) => {
|
|
244
|
+
if (p.value === MERGE) {
|
|
245
|
+
p.replaceWith(p.nodes)
|
|
246
|
+
}
|
|
247
|
+
})
|
|
248
|
+
|
|
249
|
+
// Move pseudo elements to the end of the selector (if necessary)
|
|
250
|
+
selector.each((sel) => movePseudos(sel))
|
|
86
251
|
|
|
87
|
-
|
|
88
|
-
// pseudo elements) because otherwise the selector will never work
|
|
89
|
-
// anyway.
|
|
90
|
-
//
|
|
91
|
-
// E.g.:
|
|
92
|
-
// - `before:hover:text-center` would result in `.before\:hover\:text-center:hover::before`
|
|
93
|
-
// - `hover:before:text-center` would result in `.hover\:before\:text-center:hover::before`
|
|
94
|
-
//
|
|
95
|
-
// `::before:hover` doesn't work, which means that we can make it work for you by flipping the order.
|
|
96
|
-
function collectPseudoElements(selector) {
|
|
97
|
-
let nodes = []
|
|
98
|
-
|
|
99
|
-
for (let node of selector.nodes) {
|
|
100
|
-
if (isPseudoElement(node)) {
|
|
101
|
-
nodes.push(node)
|
|
102
|
-
selector.removeChild(node)
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
if (node?.nodes) {
|
|
106
|
-
nodes.push(...collectPseudoElements(node))
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
return nodes
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
let pseudoElements = collectPseudoElements(selector)
|
|
114
|
-
if (pseudoElements.length > 0) {
|
|
115
|
-
selector.nodes.push(pseudoElements.sort(sortSelector))
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
return selector
|
|
119
|
-
})
|
|
120
|
-
}).processSync(selector)
|
|
252
|
+
return selector.toString()
|
|
121
253
|
}
|
|
122
254
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
let
|
|
131
|
-
|
|
132
|
-
//
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
// for you by flipping the order.
|
|
142
|
-
function sortSelector(a, z) {
|
|
143
|
-
// Both nodes are non-pseudo's so we can safely ignore them and keep
|
|
144
|
-
// them in the same order.
|
|
145
|
-
if (a.type !== 'pseudo' && z.type !== 'pseudo') {
|
|
146
|
-
return 0
|
|
147
|
-
}
|
|
255
|
+
/**
|
|
256
|
+
*
|
|
257
|
+
* @param {Selector} selector
|
|
258
|
+
* @param {Selector} format
|
|
259
|
+
*/
|
|
260
|
+
export function handleMergePseudo(selector, format) {
|
|
261
|
+
/** @type {{pseudo: Pseudo, value: string}[]} */
|
|
262
|
+
let merges = []
|
|
263
|
+
|
|
264
|
+
// Find all :merge() pseudo-classes in `selector`
|
|
265
|
+
selector.walkPseudos((pseudo) => {
|
|
266
|
+
if (pseudo.value === MERGE) {
|
|
267
|
+
merges.push({
|
|
268
|
+
pseudo,
|
|
269
|
+
value: pseudo.nodes[0].toString(),
|
|
270
|
+
})
|
|
271
|
+
}
|
|
272
|
+
})
|
|
148
273
|
|
|
149
|
-
//
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
274
|
+
// Find all :merge() "attachments" in `format` and attach them to the matching selector in `selector`
|
|
275
|
+
format.walkPseudos((pseudo) => {
|
|
276
|
+
if (pseudo.value !== MERGE) {
|
|
277
|
+
return
|
|
278
|
+
}
|
|
154
279
|
|
|
155
|
-
|
|
156
|
-
// the pseudo to the right.
|
|
157
|
-
if ((a.type === 'pseudo') ^ (z.type === 'pseudo')) {
|
|
158
|
-
return (a.type === 'pseudo') - (z.type === 'pseudo')
|
|
159
|
-
}
|
|
280
|
+
let value = pseudo.nodes[0].toString()
|
|
160
281
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
return isPseudoElement(a) - isPseudoElement(z)
|
|
164
|
-
}
|
|
282
|
+
// Does `selector` contain a :merge() pseudo-class with the same value?
|
|
283
|
+
let existing = merges.find((merge) => merge.value === value)
|
|
165
284
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
285
|
+
// Nope so there's nothing to do
|
|
286
|
+
if (!existing) {
|
|
287
|
+
return
|
|
288
|
+
}
|
|
169
289
|
|
|
170
|
-
|
|
171
|
-
|
|
290
|
+
// Everything after `:merge()` up to the next combinator is what is attached to the merged selector
|
|
291
|
+
let attachments = []
|
|
292
|
+
let next = pseudo.next()
|
|
293
|
+
while (next && next.type !== 'combinator') {
|
|
294
|
+
attachments.push(next)
|
|
295
|
+
next = next.next()
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
let combinator = next
|
|
172
299
|
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
if (
|
|
185
|
-
|
|
186
|
-
} else if (char === '(') {
|
|
187
|
-
target += char
|
|
188
|
-
count++
|
|
189
|
-
} else if (char === ')') {
|
|
190
|
-
if (--count < 0) break // unbalanced
|
|
191
|
-
target += char
|
|
300
|
+
existing.pseudo.parent.insertAfter(
|
|
301
|
+
existing.pseudo,
|
|
302
|
+
selectorParser.selector({ nodes: attachments.map((node) => node.clone()) })
|
|
303
|
+
)
|
|
304
|
+
|
|
305
|
+
pseudo.remove()
|
|
306
|
+
attachments.forEach((node) => node.remove())
|
|
307
|
+
|
|
308
|
+
// What about this case:
|
|
309
|
+
// :merge(.group):focus > &
|
|
310
|
+
// :merge(.group):hover &
|
|
311
|
+
if (combinator && combinator.type === 'combinator') {
|
|
312
|
+
combinator.remove()
|
|
192
313
|
}
|
|
193
|
-
}
|
|
314
|
+
})
|
|
194
315
|
|
|
195
|
-
return
|
|
316
|
+
return [selector, format]
|
|
196
317
|
}
|
|
@@ -1,14 +1,33 @@
|
|
|
1
|
-
import
|
|
1
|
+
import defaultFullConfig from '../../stubs/config.full.js'
|
|
2
2
|
import { flagEnabled } from '../featureFlags'
|
|
3
3
|
|
|
4
4
|
export default function getAllConfigs(config) {
|
|
5
|
-
const configs = (config?.presets ?? [
|
|
5
|
+
const configs = (config?.presets ?? [defaultFullConfig])
|
|
6
6
|
.slice()
|
|
7
7
|
.reverse()
|
|
8
8
|
.flatMap((preset) => getAllConfigs(preset instanceof Function ? preset() : preset))
|
|
9
9
|
|
|
10
10
|
const features = {
|
|
11
11
|
// Add experimental configs here...
|
|
12
|
+
respectDefaultRingColorOpacity: {
|
|
13
|
+
theme: {
|
|
14
|
+
ringColor: ({ theme }) => ({
|
|
15
|
+
DEFAULT: '#3b82f67f',
|
|
16
|
+
...theme('colors'),
|
|
17
|
+
}),
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
|
|
21
|
+
disableColorOpacityUtilitiesByDefault: {
|
|
22
|
+
corePlugins: {
|
|
23
|
+
backgroundOpacity: false,
|
|
24
|
+
borderOpacity: false,
|
|
25
|
+
divideOpacity: false,
|
|
26
|
+
placeholderOpacity: false,
|
|
27
|
+
ringOpacity: false,
|
|
28
|
+
textOpacity: false,
|
|
29
|
+
},
|
|
30
|
+
},
|
|
12
31
|
}
|
|
13
32
|
|
|
14
33
|
const experimentals = Object.keys(features)
|
|
@@ -15,7 +15,7 @@ let quotes = new Set(['"', "'", '`'])
|
|
|
15
15
|
// E.g.: w-[this-is]w-[weird-and-invalid]
|
|
16
16
|
// E.g.: w-[this-is\\]w-\\[weird-but-valid]
|
|
17
17
|
// E.g.: content-['this-is-also-valid]-weirdly-enough']
|
|
18
|
-
export default function
|
|
18
|
+
export default function isSyntacticallyValidPropertyValue(value) {
|
|
19
19
|
let stack = []
|
|
20
20
|
let inQuotes = false
|
|
21
21
|
|
package/src/util/log.js
CHANGED
|
@@ -3,7 +3,7 @@ import colors from 'picocolors'
|
|
|
3
3
|
let alreadyShown = new Set()
|
|
4
4
|
|
|
5
5
|
function log(type, messages, key) {
|
|
6
|
-
if (process.env.JEST_WORKER_ID
|
|
6
|
+
if (typeof process !== 'undefined' && process.env.JEST_WORKER_ID) return
|
|
7
7
|
|
|
8
8
|
if (key && alreadyShown.has(key)) return
|
|
9
9
|
if (key) alreadyShown.add(key)
|
|
@@ -17,6 +17,30 @@ export function dim(input) {
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
export default {
|
|
20
|
+
group(key, cb) {
|
|
21
|
+
if (typeof process !== 'undefined' && process.env.JEST_WORKER_ID) return
|
|
22
|
+
|
|
23
|
+
if (key && alreadyShown.has(key)) return
|
|
24
|
+
if (key) alreadyShown.add(key)
|
|
25
|
+
|
|
26
|
+
console.warn('')
|
|
27
|
+
|
|
28
|
+
cb({
|
|
29
|
+
info(messages) {
|
|
30
|
+
messages.forEach((message) => console.warn(colors.bold(colors.cyan('info')), '-', message))
|
|
31
|
+
},
|
|
32
|
+
warn(messages) {
|
|
33
|
+
messages.forEach((message) =>
|
|
34
|
+
console.warn(colors.bold(colors.yellow('warn')), '-', message)
|
|
35
|
+
)
|
|
36
|
+
},
|
|
37
|
+
risk(messages) {
|
|
38
|
+
messages.forEach((message) =>
|
|
39
|
+
console.warn(colors.bold(colors.magenta('risk')), '-', message)
|
|
40
|
+
)
|
|
41
|
+
},
|
|
42
|
+
})
|
|
43
|
+
},
|
|
20
44
|
info(key, messages) {
|
|
21
45
|
log(colors.bold(colors.cyan('info')), ...(Array.isArray(key) ? [key] : [messages, key]))
|
|
22
46
|
},
|
package/src/util/nameClass.js
CHANGED
package/src/util/negateValue.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export default function (value) {
|
|
1
|
+
export default function negateValue(value) {
|
|
2
2
|
value = `${value}`
|
|
3
3
|
|
|
4
4
|
if (value === '0') {
|
|
@@ -10,7 +10,15 @@ export default function (value) {
|
|
|
10
10
|
return value.replace(/^[+-]?/, (sign) => (sign === '-' ? '' : '-'))
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
// What functions we support negating numeric values for
|
|
14
|
+
// var() isn't inherently a numeric function but we support it anyway
|
|
15
|
+
// The trigonometric functions are omitted because you'll need to use calc(…) with them _anyway_
|
|
16
|
+
// to produce generally useful results and that will be covered already
|
|
17
|
+
let numericFunctions = ['var', 'calc', 'min', 'max', 'clamp']
|
|
18
|
+
|
|
19
|
+
for (const fn of numericFunctions) {
|
|
20
|
+
if (value.includes(`${fn}(`)) {
|
|
21
|
+
return `calc(${value} * -1)`
|
|
22
|
+
}
|
|
15
23
|
}
|
|
16
24
|
}
|