tailwindcss 0.0.0-insiders.fda68f7 → 0.0.0-oxide.6bf5e56
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/CHANGELOG.md +603 -2
- package/LICENSE +1 -2
- package/README.md +14 -6
- package/colors.d.ts +3 -0
- package/colors.js +2 -304
- package/defaultConfig.d.ts +3 -0
- package/defaultConfig.js +2 -4
- package/defaultTheme.d.ts +4 -0
- package/defaultTheme.js +2 -4
- package/lib/cli/build/deps.js +54 -0
- package/lib/cli/build/index.js +48 -0
- package/lib/cli/build/plugin.js +367 -0
- package/lib/cli/build/utils.js +78 -0
- package/lib/cli/build/watching.js +178 -0
- package/lib/cli/help/index.js +71 -0
- package/lib/cli/index.js +18 -0
- package/lib/cli/init/index.js +46 -0
- package/lib/cli/shared.js +13 -0
- package/lib/cli-peer-dependencies.js +22 -14
- package/lib/cli.js +217 -743
- package/lib/constants.js +41 -34
- package/lib/corePluginList.js +178 -5
- package/lib/corePlugins.js +3879 -2941
- package/lib/css/preflight.css +22 -9
- package/lib/featureFlags.js +61 -50
- package/lib/index.js +45 -28
- package/lib/lib/cacheInvalidation.js +90 -0
- package/lib/lib/collapseAdjacentRules.js +52 -36
- package/lib/lib/collapseDuplicateDeclarations.js +83 -0
- package/lib/lib/content.js +176 -0
- package/lib/lib/defaultExtractor.js +236 -0
- package/lib/lib/detectNesting.js +37 -0
- package/lib/lib/evaluateTailwindFunctions.js +203 -161
- package/lib/lib/expandApplyAtRules.js +502 -221
- package/lib/lib/expandTailwindAtRules.js +258 -243
- package/lib/lib/findAtConfigPath.js +44 -0
- package/lib/lib/generateRules.js +775 -320
- package/lib/lib/getModuleDependencies.js +44 -46
- package/lib/lib/normalizeTailwindDirectives.js +79 -60
- package/lib/lib/offsets.js +217 -0
- package/lib/lib/partitionApplyAtRules.js +56 -0
- package/lib/lib/regex.js +60 -0
- package/lib/lib/resolveDefaultsAtRules.js +150 -94
- package/lib/lib/setupContextUtils.js +1146 -599
- package/lib/lib/setupTrackingContext.js +129 -177
- package/lib/lib/sharedState.js +53 -21
- package/lib/lib/substituteScreenAtRules.js +26 -28
- package/{nesting → lib/postcss-plugins/nesting}/README.md +2 -2
- package/lib/postcss-plugins/nesting/index.js +19 -0
- package/lib/postcss-plugins/nesting/plugin.js +87 -0
- package/lib/processTailwindFeatures.js +58 -53
- package/lib/public/colors.js +331 -0
- package/lib/public/create-plugin.js +15 -0
- package/lib/public/default-config.js +16 -0
- package/lib/public/default-theme.js +16 -0
- package/lib/public/resolve-config.js +22 -0
- package/lib/util/bigSign.js +7 -6
- package/lib/util/buildMediaQuery.js +21 -32
- package/lib/util/cloneDeep.js +16 -14
- package/lib/util/cloneNodes.js +29 -15
- package/lib/util/color.js +90 -66
- package/lib/util/configurePlugins.js +17 -15
- package/lib/util/createPlugin.js +23 -26
- package/lib/util/createUtilityPlugin.js +46 -46
- package/lib/util/dataTypes.js +242 -0
- package/lib/util/defaults.js +20 -15
- package/lib/util/escapeClassName.js +18 -17
- package/lib/util/escapeCommas.js +7 -6
- package/lib/util/flattenColorPalette.js +13 -12
- package/lib/util/formatVariantSelector.js +285 -0
- package/lib/util/getAllConfigs.js +44 -18
- package/lib/util/hashConfig.js +15 -12
- package/lib/util/isKeyframeRule.js +7 -6
- package/lib/util/isPlainObject.js +11 -11
- package/lib/util/isSyntacticallyValidPropertyValue.js +72 -0
- package/lib/util/log.js +52 -33
- package/lib/util/nameClass.js +37 -26
- package/lib/util/negateValue.js +31 -17
- package/lib/util/normalizeConfig.js +281 -0
- package/lib/util/normalizeScreens.js +170 -0
- package/lib/util/parseAnimationValue.js +85 -54
- package/lib/util/parseBoxShadowValue.js +84 -0
- package/lib/util/parseDependency.js +41 -70
- package/lib/util/parseGlob.js +34 -0
- package/lib/util/parseObjectStyles.js +30 -24
- package/lib/util/pluginUtils.js +252 -287
- package/lib/util/prefixSelector.js +20 -20
- package/lib/util/removeAlphaVariables.js +29 -0
- package/lib/util/resolveConfig.js +221 -256
- package/lib/util/resolveConfigPath.js +43 -48
- package/lib/util/responsive.js +18 -14
- package/lib/util/splitAtTopLevelOnly.js +43 -0
- package/lib/util/tap.js +8 -7
- package/lib/util/toColorValue.js +7 -6
- package/lib/util/toPath.js +27 -8
- package/lib/util/transformThemeValue.js +67 -28
- package/lib/util/validateConfig.js +24 -0
- package/lib/util/validateFormalSyntax.js +24 -0
- package/lib/util/withAlphaVariable.js +67 -57
- package/nesting/index.js +2 -12
- package/package.json +60 -65
- package/peers/index.js +76445 -84221
- package/plugin.d.ts +11 -0
- package/plugin.js +1 -2
- package/resolveConfig.d.ts +12 -0
- package/resolveConfig.js +2 -7
- package/scripts/create-plugin-list.js +2 -2
- 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/deps.js +56 -0
- package/src/cli/build/index.js +49 -0
- package/src/cli/build/plugin.js +439 -0
- package/src/cli/build/utils.js +76 -0
- package/src/cli/build/watching.js +227 -0
- package/src/cli/help/index.js +70 -0
- package/src/cli/index.js +3 -0
- package/src/cli/init/index.js +50 -0
- package/src/cli/shared.js +6 -0
- package/src/cli-peer-dependencies.js +7 -1
- package/src/cli.js +50 -575
- package/src/corePluginList.js +1 -1
- package/src/corePlugins.js +2405 -1948
- package/src/css/preflight.css +22 -9
- package/src/featureFlags.js +26 -10
- package/src/index.js +19 -6
- package/src/lib/cacheInvalidation.js +52 -0
- package/src/lib/collapseAdjacentRules.js +21 -2
- package/src/lib/collapseDuplicateDeclarations.js +93 -0
- package/src/lib/content.js +212 -0
- package/src/lib/defaultExtractor.js +211 -0
- package/src/lib/detectNesting.js +39 -0
- package/src/lib/evaluateTailwindFunctions.js +84 -10
- package/src/lib/expandApplyAtRules.js +508 -153
- package/src/lib/expandTailwindAtRules.js +130 -104
- package/src/lib/findAtConfigPath.js +48 -0
- package/src/lib/generateRules.js +596 -70
- package/src/lib/normalizeTailwindDirectives.js +10 -3
- package/src/lib/offsets.js +270 -0
- package/src/lib/partitionApplyAtRules.js +52 -0
- package/src/lib/regex.js +74 -0
- package/src/lib/resolveDefaultsAtRules.js +105 -47
- package/src/lib/setupContextUtils.js +828 -196
- package/src/lib/setupTrackingContext.js +19 -54
- package/src/lib/sharedState.js +45 -7
- package/src/lib/substituteScreenAtRules.js +6 -3
- package/src/postcss-plugins/nesting/README.md +42 -0
- package/src/postcss-plugins/nesting/index.js +13 -0
- package/src/postcss-plugins/nesting/plugin.js +80 -0
- package/src/processTailwindFeatures.js +19 -2
- package/src/public/colors.js +300 -0
- package/src/public/create-plugin.js +2 -0
- package/src/public/default-config.js +4 -0
- package/src/public/default-theme.js +4 -0
- package/src/public/resolve-config.js +7 -0
- package/src/util/buildMediaQuery.js +14 -16
- package/src/util/cloneNodes.js +19 -2
- package/src/util/color.js +31 -14
- package/src/util/createUtilityPlugin.js +2 -11
- package/src/util/dataTypes.js +256 -0
- package/src/util/defaults.js +6 -0
- package/src/util/formatVariantSelector.js +319 -0
- package/src/util/getAllConfigs.js +19 -0
- package/src/util/isSyntacticallyValidPropertyValue.js +61 -0
- package/src/util/log.js +23 -22
- package/src/util/nameClass.js +14 -6
- package/src/util/negateValue.js +15 -5
- package/src/util/normalizeConfig.js +300 -0
- package/src/util/normalizeScreens.js +140 -0
- package/src/util/parseAnimationValue.js +7 -1
- package/src/util/parseBoxShadowValue.js +72 -0
- package/src/util/parseDependency.js +37 -38
- package/src/util/parseGlob.js +24 -0
- package/src/util/pluginUtils.js +216 -197
- package/src/util/prefixSelector.js +7 -8
- package/src/util/removeAlphaVariables.js +24 -0
- package/src/util/resolveConfig.js +86 -91
- package/src/util/splitAtTopLevelOnly.js +45 -0
- package/src/util/toPath.js +23 -1
- package/src/util/transformThemeValue.js +33 -8
- package/src/util/validateConfig.js +13 -0
- package/src/util/validateFormalSyntax.js +34 -0
- package/src/util/withAlphaVariable.js +14 -9
- package/stubs/defaultConfig.stub.js +186 -117
- package/stubs/simpleConfig.stub.js +1 -1
- package/types/config.d.ts +362 -0
- package/types/generated/.gitkeep +0 -0
- package/types/generated/colors.d.ts +276 -0
- package/types/generated/corePluginList.d.ts +1 -0
- package/types/generated/default-theme.d.ts +342 -0
- package/types/index.d.ts +7 -0
- package/lib/lib/setupWatchingContext.js +0 -331
- package/nesting/plugin.js +0 -41
- package/src/lib/setupWatchingContext.js +0 -306
|
@@ -1,105 +1,161 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
|
|
3
|
+
value: true
|
|
5
4
|
});
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
elementSelectorParser: ()=>elementSelectorParser,
|
|
13
|
+
default: ()=>resolveDefaultsAtRules
|
|
14
|
+
});
|
|
15
|
+
const _postcss = /*#__PURE__*/ _interopRequireDefault(require("postcss"));
|
|
16
|
+
const _postcssSelectorParser = /*#__PURE__*/ _interopRequireDefault(require("postcss-selector-parser"));
|
|
17
|
+
const _featureFlags = require("../featureFlags");
|
|
18
|
+
function _interopRequireDefault(obj) {
|
|
19
|
+
return obj && obj.__esModule ? obj : {
|
|
20
|
+
default: obj
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
let getNode = {
|
|
24
|
+
id (node) {
|
|
25
|
+
return _postcssSelectorParser.default.attribute({
|
|
26
|
+
attribute: "id",
|
|
27
|
+
operator: "=",
|
|
28
|
+
value: node.value,
|
|
29
|
+
quoteMark: '"'
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
};
|
|
16
33
|
function minimumImpactSelector(nodes) {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
34
|
+
let rest = nodes.filter((node)=>{
|
|
35
|
+
// Keep non-pseudo nodes
|
|
36
|
+
if (node.type !== "pseudo") return true;
|
|
37
|
+
// Keep pseudo nodes that have subnodes
|
|
38
|
+
// E.g.: `:not()` contains subnodes inside the parentheses
|
|
39
|
+
if (node.nodes.length > 0) return true;
|
|
40
|
+
// Keep pseudo `elements`
|
|
41
|
+
// This implicitly means that we ignore pseudo `classes`
|
|
42
|
+
return node.value.startsWith("::") || [
|
|
43
|
+
":before",
|
|
44
|
+
":after",
|
|
45
|
+
":first-line",
|
|
46
|
+
":first-letter"
|
|
47
|
+
].includes(node.value);
|
|
48
|
+
}).reverse();
|
|
49
|
+
let searchFor = new Set([
|
|
50
|
+
"tag",
|
|
51
|
+
"class",
|
|
52
|
+
"id",
|
|
53
|
+
"attribute"
|
|
54
|
+
]);
|
|
55
|
+
let splitPointIdx = rest.findIndex((n)=>searchFor.has(n.type));
|
|
56
|
+
if (splitPointIdx === -1) return rest.reverse().join("").trim();
|
|
57
|
+
let node = rest[splitPointIdx];
|
|
58
|
+
let bestNode = getNode[node.type] ? getNode[node.type](node) : node;
|
|
59
|
+
rest = rest.slice(0, splitPointIdx);
|
|
60
|
+
let combinatorIdx = rest.findIndex((n)=>n.type === "combinator" && n.value === ">");
|
|
61
|
+
if (combinatorIdx !== -1) {
|
|
62
|
+
rest.splice(0, combinatorIdx);
|
|
63
|
+
rest.unshift(_postcssSelectorParser.default.universal());
|
|
31
64
|
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
65
|
+
return [
|
|
66
|
+
bestNode,
|
|
67
|
+
...rest.reverse()
|
|
68
|
+
].join("").trim();
|
|
35
69
|
}
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
});
|
|
70
|
+
let elementSelectorParser = (0, _postcssSelectorParser.default)((selectors)=>{
|
|
71
|
+
return selectors.map((s)=>{
|
|
72
|
+
let nodes = s.split((n)=>n.type === "combinator" && n.value === " ").pop();
|
|
73
|
+
return minimumImpactSelector(nodes);
|
|
74
|
+
});
|
|
42
75
|
});
|
|
43
76
|
let cache = new Map();
|
|
44
|
-
|
|
45
77
|
function extractElementSelector(selector) {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
return cache.get(selector);
|
|
78
|
+
if (!cache.has(selector)) {
|
|
79
|
+
cache.set(selector, elementSelectorParser.transformSync(selector));
|
|
80
|
+
}
|
|
81
|
+
return cache.get(selector);
|
|
51
82
|
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
})
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
83
|
+
function resolveDefaultsAtRules({ tailwindConfig }) {
|
|
84
|
+
return (root)=>{
|
|
85
|
+
let variableNodeMap = new Map();
|
|
86
|
+
/** @type {Set<import('postcss').AtRule>} */ let universals = new Set();
|
|
87
|
+
root.walkAtRules("defaults", (rule)=>{
|
|
88
|
+
if (rule.nodes && rule.nodes.length > 0) {
|
|
89
|
+
universals.add(rule);
|
|
90
|
+
return;
|
|
91
|
+
}
|
|
92
|
+
let variable = rule.params;
|
|
93
|
+
if (!variableNodeMap.has(variable)) {
|
|
94
|
+
variableNodeMap.set(variable, new Set());
|
|
95
|
+
}
|
|
96
|
+
variableNodeMap.get(variable).add(rule.parent);
|
|
97
|
+
rule.remove();
|
|
98
|
+
});
|
|
99
|
+
if ((0, _featureFlags.flagEnabled)(tailwindConfig, "optimizeUniversalDefaults")) {
|
|
100
|
+
for (let universal of universals){
|
|
101
|
+
/** @type {Map<string, Set<string>>} */ let selectorGroups = new Map();
|
|
102
|
+
var ref;
|
|
103
|
+
let rules = (ref = variableNodeMap.get(universal.params)) !== null && ref !== void 0 ? ref : [];
|
|
104
|
+
for (let rule of rules){
|
|
105
|
+
for (let selector of extractElementSelector(rule.selector)){
|
|
106
|
+
// If selector contains a vendor prefix after a pseudo element or class,
|
|
107
|
+
// we consider them separately because merging the declarations into
|
|
108
|
+
// a single rule will cause browsers that do not understand the
|
|
109
|
+
// vendor prefix to throw out the whole rule
|
|
110
|
+
let selectorGroupName = selector.includes(":-") || selector.includes("::-") ? selector : "__DEFAULT__";
|
|
111
|
+
var ref1;
|
|
112
|
+
let selectors = (ref1 = selectorGroups.get(selectorGroupName)) !== null && ref1 !== void 0 ? ref1 : new Set();
|
|
113
|
+
selectorGroups.set(selectorGroupName, selectors);
|
|
114
|
+
selectors.add(selector);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
if ((0, _featureFlags.flagEnabled)(tailwindConfig, "optimizeUniversalDefaults")) {
|
|
118
|
+
if (selectorGroups.size === 0) {
|
|
119
|
+
universal.remove();
|
|
120
|
+
continue;
|
|
121
|
+
}
|
|
122
|
+
for (let [, selectors1] of selectorGroups){
|
|
123
|
+
let universalRule = _postcss.default.rule({
|
|
124
|
+
source: universal.source
|
|
125
|
+
});
|
|
126
|
+
universalRule.selectors = [
|
|
127
|
+
...selectors1
|
|
128
|
+
];
|
|
129
|
+
universalRule.append(universal.nodes.map((node)=>node.clone()));
|
|
130
|
+
universal.before(universalRule);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
universal.remove();
|
|
134
|
+
}
|
|
135
|
+
} else if (universals.size) {
|
|
136
|
+
let universalRule1 = _postcss.default.rule({
|
|
137
|
+
selectors: [
|
|
138
|
+
"*",
|
|
139
|
+
"::before",
|
|
140
|
+
"::after"
|
|
141
|
+
]
|
|
142
|
+
});
|
|
143
|
+
for (let universal1 of universals){
|
|
144
|
+
universalRule1.append(universal1.nodes);
|
|
145
|
+
if (!universalRule1.parent) {
|
|
146
|
+
universal1.before(universalRule1);
|
|
147
|
+
}
|
|
148
|
+
if (!universalRule1.source) {
|
|
149
|
+
universalRule1.source = universal1.source;
|
|
150
|
+
}
|
|
151
|
+
universal1.remove();
|
|
152
|
+
}
|
|
153
|
+
let backdropRule = universalRule1.clone({
|
|
154
|
+
selectors: [
|
|
155
|
+
"::backdrop"
|
|
156
|
+
]
|
|
157
|
+
});
|
|
158
|
+
universalRule1.after(backdropRule);
|
|
84
159
|
}
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
if (selectors.size === 0) {
|
|
88
|
-
universal.remove();
|
|
89
|
-
continue;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
let universalRule = _postcss.default.rule();
|
|
93
|
-
|
|
94
|
-
if ((0, _featureFlags.flagEnabled)(tailwindConfig, 'optimizeUniversalDefaults')) {
|
|
95
|
-
universalRule.selectors = [...selectors];
|
|
96
|
-
} else {
|
|
97
|
-
universalRule.selectors = ['*', '::before', '::after'];
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
universalRule.append(universal.nodes);
|
|
101
|
-
universal.before(universalRule);
|
|
102
|
-
universal.remove();
|
|
103
|
-
}
|
|
104
|
-
};
|
|
105
|
-
}
|
|
160
|
+
};
|
|
161
|
+
}
|