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
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This splits a string on a top-level character.
|
|
3
|
+
*
|
|
4
|
+
* Regex doesn't support recursion (at least not the JS-flavored version).
|
|
5
|
+
* So we have to use a tiny state machine to keep track of paren placement.
|
|
6
|
+
*
|
|
7
|
+
* Expected behavior using commas:
|
|
8
|
+
* var(--a, 0 0 1px rgb(0, 0, 0)), 0 0 1px rgb(0, 0, 0)
|
|
9
|
+
* ─┬─ ┬ ┬ ┬
|
|
10
|
+
* x x x ╰──────── Split because top-level
|
|
11
|
+
* ╰──────────────┴──┴───────────── Ignored b/c inside >= 1 levels of parens
|
|
12
|
+
*
|
|
13
|
+
* @param {string} input
|
|
14
|
+
* @param {string} separator
|
|
15
|
+
*/ "use strict";
|
|
16
|
+
Object.defineProperty(exports, "__esModule", {
|
|
17
|
+
value: true
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports, "splitAtTopLevelOnly", {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: ()=>splitAtTopLevelOnly
|
|
22
|
+
});
|
|
23
|
+
function splitAtTopLevelOnly(input, separator) {
|
|
24
|
+
let stack = [];
|
|
25
|
+
let parts = [];
|
|
26
|
+
let lastPos = 0;
|
|
27
|
+
for(let idx = 0; idx < input.length; idx++){
|
|
28
|
+
let char = input[idx];
|
|
29
|
+
if (stack.length === 0 && char === separator[0]) {
|
|
30
|
+
if (separator.length === 1 || input.slice(idx, idx + separator.length) === separator) {
|
|
31
|
+
parts.push(input.slice(lastPos, idx));
|
|
32
|
+
lastPos = idx + separator.length;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
if (char === "(" || char === "[" || char === "{") {
|
|
36
|
+
stack.push(char);
|
|
37
|
+
} else if (char === ")" && stack[stack.length - 1] === "(" || char === "]" && stack[stack.length - 1] === "[" || char === "}" && stack[stack.length - 1] === "{") {
|
|
38
|
+
stack.pop();
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
parts.push(input.slice(lastPos));
|
|
42
|
+
return parts;
|
|
43
|
+
}
|
package/lib/util/tap.js
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "tap", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: ()=>tap
|
|
5
8
|
});
|
|
6
|
-
exports.tap = tap;
|
|
7
|
-
|
|
8
9
|
function tap(value, mutator) {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
10
|
+
mutator(value);
|
|
11
|
+
return value;
|
|
12
|
+
}
|
package/lib/util/toColorValue.js
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: ()=>toColorValue
|
|
5
8
|
});
|
|
6
|
-
exports.default = toColorValue;
|
|
7
|
-
|
|
8
9
|
function toColorValue(maybeFunction) {
|
|
9
|
-
|
|
10
|
-
}
|
|
10
|
+
return typeof maybeFunction === "function" ? maybeFunction({}) : maybeFunction;
|
|
11
|
+
}
|
package/lib/util/toPath.js
CHANGED
|
@@ -1,11 +1,30 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Parse a path string into an array of path segments.
|
|
3
|
+
*
|
|
4
|
+
* Square bracket notation `a[b]` may be used to "escape" dots that would otherwise be interpreted as path separators.
|
|
5
|
+
*
|
|
6
|
+
* Example:
|
|
7
|
+
* a -> ['a']
|
|
8
|
+
* a.b.c -> ['a', 'b', 'c']
|
|
9
|
+
* a[b].c -> ['a', 'b', 'c']
|
|
10
|
+
* a[b.c].e.f -> ['a', 'b.c', 'e', 'f']
|
|
11
|
+
* a[b][c][d] -> ['a', 'b', 'c', 'd']
|
|
12
|
+
*
|
|
13
|
+
* @param {string|string[]} path
|
|
14
|
+
**/ "use strict";
|
|
3
15
|
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
|
|
16
|
+
value: true
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, "toPath", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: ()=>toPath
|
|
5
21
|
});
|
|
6
|
-
exports.toPath = toPath;
|
|
7
|
-
|
|
8
22
|
function toPath(path) {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
23
|
+
if (Array.isArray(path)) return path;
|
|
24
|
+
let openBrackets = path.split("[").length - 1;
|
|
25
|
+
let closedBrackets = path.split("]").length - 1;
|
|
26
|
+
if (openBrackets !== closedBrackets) {
|
|
27
|
+
throw new Error(`Path is invalid. Has unbalanced brackets: ${path}`);
|
|
28
|
+
}
|
|
29
|
+
return path.split(/\.(?![^\[]*\])|[\[\]]/g).filter(Boolean);
|
|
30
|
+
}
|
|
@@ -1,32 +1,71 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
|
|
3
|
+
value: true
|
|
5
4
|
});
|
|
6
|
-
exports
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: ()=>transformThemeValue
|
|
8
|
+
});
|
|
9
|
+
const _postcss = /*#__PURE__*/ _interopRequireDefault(require("postcss"));
|
|
10
|
+
const _isPlainObject = /*#__PURE__*/ _interopRequireDefault(require("./isPlainObject"));
|
|
11
|
+
function _interopRequireDefault(obj) {
|
|
12
|
+
return obj && obj.__esModule ? obj : {
|
|
13
|
+
default: obj
|
|
14
|
+
};
|
|
15
|
+
}
|
|
12
16
|
function transformThemeValue(themeSection) {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
17
|
+
if ([
|
|
18
|
+
"fontSize",
|
|
19
|
+
"outline"
|
|
20
|
+
].includes(themeSection)) {
|
|
21
|
+
return (value)=>{
|
|
22
|
+
if (typeof value === "function") value = value({});
|
|
23
|
+
if (Array.isArray(value)) value = value[0];
|
|
24
|
+
return value;
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
if (themeSection === "fontFamily") {
|
|
28
|
+
return (value)=>{
|
|
29
|
+
if (typeof value === "function") value = value({});
|
|
30
|
+
let families = Array.isArray(value) && (0, _isPlainObject.default)(value[1]) ? value[0] : value;
|
|
31
|
+
return Array.isArray(families) ? families.join(", ") : families;
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
if ([
|
|
35
|
+
"boxShadow",
|
|
36
|
+
"transitionProperty",
|
|
37
|
+
"transitionDuration",
|
|
38
|
+
"transitionDelay",
|
|
39
|
+
"transitionTimingFunction",
|
|
40
|
+
"backgroundImage",
|
|
41
|
+
"backgroundSize",
|
|
42
|
+
"backgroundColor",
|
|
43
|
+
"cursor",
|
|
44
|
+
"animation"
|
|
45
|
+
].includes(themeSection)) {
|
|
46
|
+
return (value)=>{
|
|
47
|
+
if (typeof value === "function") value = value({});
|
|
48
|
+
if (Array.isArray(value)) value = value.join(", ");
|
|
49
|
+
return value;
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
// For backwards compatibility reasons, before we switched to underscores
|
|
53
|
+
// instead of commas for arbitrary values.
|
|
54
|
+
if ([
|
|
55
|
+
"gridTemplateColumns",
|
|
56
|
+
"gridTemplateRows",
|
|
57
|
+
"objectPosition"
|
|
58
|
+
].includes(themeSection)) {
|
|
59
|
+
return (value)=>{
|
|
60
|
+
if (typeof value === "function") value = value({});
|
|
61
|
+
if (typeof value === "string") value = _postcss.default.list.comma(value).join(" ");
|
|
62
|
+
return value;
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
return (value, opts = {})=>{
|
|
66
|
+
if (typeof value === "function") {
|
|
67
|
+
value = value(opts);
|
|
68
|
+
}
|
|
69
|
+
return value;
|
|
70
|
+
};
|
|
71
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "validateConfig", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: ()=>validateConfig
|
|
8
|
+
});
|
|
9
|
+
const _log = /*#__PURE__*/ _interopRequireDefault(require("./log"));
|
|
10
|
+
function _interopRequireDefault(obj) {
|
|
11
|
+
return obj && obj.__esModule ? obj : {
|
|
12
|
+
default: obj
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
function validateConfig(config) {
|
|
16
|
+
if (config.content.files.length === 0) {
|
|
17
|
+
_log.default.warn("content-problems", [
|
|
18
|
+
"The `content` option in your Tailwind CSS configuration is missing or empty.",
|
|
19
|
+
"Configure your content sources or your generated CSS will be missing styles.",
|
|
20
|
+
"https://tailwindcss.com/docs/content-configuration"
|
|
21
|
+
]);
|
|
22
|
+
}
|
|
23
|
+
return config;
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "backgroundSize", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: ()=>backgroundSize
|
|
8
|
+
});
|
|
9
|
+
const _dataTypes = require("./dataTypes");
|
|
10
|
+
const _splitAtTopLevelOnly = require("./splitAtTopLevelOnly");
|
|
11
|
+
function backgroundSize(value) {
|
|
12
|
+
let keywordValues = [
|
|
13
|
+
"cover",
|
|
14
|
+
"contain"
|
|
15
|
+
];
|
|
16
|
+
// the <length-percentage> type will probably be a css function
|
|
17
|
+
// so we have to use `splitAtTopLevelOnly`
|
|
18
|
+
return (0, _splitAtTopLevelOnly.splitAtTopLevelOnly)(value, ",").every((part)=>{
|
|
19
|
+
let sizes = (0, _splitAtTopLevelOnly.splitAtTopLevelOnly)(part, "_").filter(Boolean);
|
|
20
|
+
if (sizes.length === 1 && keywordValues.includes(sizes[0])) return true;
|
|
21
|
+
if (sizes.length !== 1 && sizes.length !== 2) return false;
|
|
22
|
+
return sizes.every((size)=>(0, _dataTypes.length)(size) || (0, _dataTypes.percentage)(size) || size === "auto");
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -1,65 +1,75 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
|
|
3
|
+
value: true
|
|
5
4
|
});
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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
|
+
withAlphaValue: ()=>withAlphaValue,
|
|
13
|
+
default: ()=>withAlphaVariable
|
|
14
|
+
});
|
|
15
|
+
const _color = require("./color");
|
|
11
16
|
function withAlphaValue(color, alphaValue, defaultValue) {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
17
|
+
if (typeof color === "function") {
|
|
18
|
+
return color({
|
|
19
|
+
opacityValue: alphaValue
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
let parsed = (0, _color.parseColor)(color, {
|
|
23
|
+
loose: true
|
|
24
|
+
});
|
|
25
|
+
if (parsed === null) {
|
|
26
|
+
return defaultValue;
|
|
27
|
+
}
|
|
28
|
+
return (0, _color.formatColor)({
|
|
29
|
+
...parsed,
|
|
30
|
+
alpha: alphaValue
|
|
15
31
|
});
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
let parsed = (0, _color.parseColor)(color);
|
|
19
|
-
|
|
20
|
-
if (parsed === null) {
|
|
21
|
-
return defaultValue;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
return (0, _color.formatColor)({ ...parsed,
|
|
25
|
-
alpha: alphaValue
|
|
26
|
-
});
|
|
27
32
|
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
function withAlphaVariable({ color , property , variable }) {
|
|
34
|
+
let properties = [].concat(property);
|
|
35
|
+
if (typeof color === "function") {
|
|
36
|
+
return {
|
|
37
|
+
[variable]: "1",
|
|
38
|
+
...Object.fromEntries(properties.map((p)=>{
|
|
39
|
+
return [
|
|
40
|
+
p,
|
|
41
|
+
color({
|
|
42
|
+
opacityVariable: variable,
|
|
43
|
+
opacityValue: `var(${variable})`
|
|
44
|
+
})
|
|
45
|
+
];
|
|
46
|
+
}))
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
const parsed = (0, _color.parseColor)(color);
|
|
50
|
+
if (parsed === null) {
|
|
51
|
+
return Object.fromEntries(properties.map((p)=>[
|
|
52
|
+
p,
|
|
53
|
+
color
|
|
54
|
+
]));
|
|
55
|
+
}
|
|
56
|
+
if (parsed.alpha !== undefined) {
|
|
57
|
+
// Has an alpha value, return color as-is
|
|
58
|
+
return Object.fromEntries(properties.map((p)=>[
|
|
59
|
+
p,
|
|
60
|
+
color
|
|
61
|
+
]));
|
|
62
|
+
}
|
|
35
63
|
return {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
64
|
+
[variable]: "1",
|
|
65
|
+
...Object.fromEntries(properties.map((p)=>{
|
|
66
|
+
return [
|
|
67
|
+
p,
|
|
68
|
+
(0, _color.formatColor)({
|
|
69
|
+
...parsed,
|
|
70
|
+
alpha: `var(${variable})`
|
|
71
|
+
})
|
|
72
|
+
];
|
|
73
|
+
}))
|
|
41
74
|
};
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
const parsed = (0, _color.parseColor)(color);
|
|
45
|
-
|
|
46
|
-
if (parsed === null) {
|
|
47
|
-
return {
|
|
48
|
-
[property]: color
|
|
49
|
-
};
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
if (parsed.alpha !== undefined) {
|
|
53
|
-
// Has an alpha value, return color as-is
|
|
54
|
-
return {
|
|
55
|
-
[property]: color
|
|
56
|
-
};
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
return {
|
|
60
|
-
[variable]: '1',
|
|
61
|
-
[property]: (0, _color.formatColor)({ ...parsed,
|
|
62
|
-
alpha: `var(${variable})`
|
|
63
|
-
})
|
|
64
|
-
};
|
|
65
|
-
}
|
|
75
|
+
}
|
package/nesting/index.js
CHANGED
|
@@ -1,12 +1,2 @@
|
|
|
1
|
-
let nesting = require('
|
|
2
|
-
|
|
3
|
-
module.exports = (opts) => {
|
|
4
|
-
return {
|
|
5
|
-
postcssPlugin: 'tailwindcss/nesting',
|
|
6
|
-
Once(root, { result }) {
|
|
7
|
-
return nesting(opts)(root, result)
|
|
8
|
-
},
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
module.exports.postcss = true
|
|
1
|
+
let nesting = require('../lib/postcss-plugins/nesting')
|
|
2
|
+
module.exports = (nesting.__esModule ? nesting : { default: nesting }).default
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tailwindcss",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-oxide.6bf5e56",
|
|
4
4
|
"description": "A utility-first CSS framework for rapidly building custom user interfaces.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
|
-
"
|
|
7
|
+
"types": "types/index.d.ts",
|
|
8
8
|
"repository": "https://github.com/tailwindlabs/tailwindcss.git",
|
|
9
9
|
"bugs": "https://github.com/tailwindlabs/tailwindcss/issues",
|
|
10
10
|
"homepage": "https://tailwindcss.com",
|
|
@@ -12,23 +12,24 @@
|
|
|
12
12
|
"tailwind": "lib/cli.js",
|
|
13
13
|
"tailwindcss": "lib/cli.js"
|
|
14
14
|
},
|
|
15
|
-
"contributors": [
|
|
16
|
-
"Adam Wathan <adam.wathan@gmail.com>",
|
|
17
|
-
"Jonathan Reinink <jonathan@reinink.ca>",
|
|
18
|
-
"David Hemphill <davidlee.hemphill@gmail.com>"
|
|
19
|
-
],
|
|
20
15
|
"scripts": {
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"rebuild-fixtures": "npm run
|
|
25
|
-
"prepublishOnly": "npm install --force && npm run babelify",
|
|
16
|
+
"preswcify": "npm run generate && rimraf lib",
|
|
17
|
+
"swcify": "swc src --out-dir lib --copy-files",
|
|
18
|
+
"postswcify": "esbuild lib/cli-peer-dependencies.js --bundle --platform=node --outfile=peers/index.js",
|
|
19
|
+
"rebuild-fixtures": "npm run swcify && node -r @swc/register scripts/rebuildFixtures.js",
|
|
26
20
|
"style": "eslint .",
|
|
27
|
-
"
|
|
21
|
+
"pretest": "npm run generate",
|
|
22
|
+
"test": "jest",
|
|
28
23
|
"test:integrations": "npm run test --prefix ./integrations",
|
|
29
24
|
"install:integrations": "node scripts/install-integrations.js",
|
|
30
|
-
"
|
|
31
|
-
"generate:
|
|
25
|
+
"generate:plugin-list": "node -r @swc/register scripts/create-plugin-list.js",
|
|
26
|
+
"generate:types": "node -r @swc/register scripts/generate-types.js",
|
|
27
|
+
"generate": "npm run generate:plugin-list && npm run generate:types",
|
|
28
|
+
"release-channel": "node ./scripts/release-channel.js",
|
|
29
|
+
"release-notes": "node ./scripts/release-notes.js",
|
|
30
|
+
"oxide:install": "npm install --prefix ./oxide",
|
|
31
|
+
"oxide:dev": "concurrently -n tailwind,oxide-node -c green,yellow 'npm run swcify -- --watch' 'npm run --prefix ./oxide dev:node'",
|
|
32
|
+
"oxide:build": "npm run --prefix ./oxide build:node && npm run swcify"
|
|
32
33
|
},
|
|
33
34
|
"files": [
|
|
34
35
|
"src/*",
|
|
@@ -38,56 +39,57 @@
|
|
|
38
39
|
"scripts/*.js",
|
|
39
40
|
"stubs/*.stub.js",
|
|
40
41
|
"nesting/*",
|
|
42
|
+
"types/**/*",
|
|
43
|
+
"*.d.ts",
|
|
41
44
|
"*.css",
|
|
42
45
|
"*.js"
|
|
43
46
|
],
|
|
44
47
|
"devDependencies": {
|
|
45
|
-
"@
|
|
46
|
-
"@
|
|
47
|
-
"@
|
|
48
|
-
"@
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"eslint": "^
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"postcss-cli": "^8.3.1",
|
|
62
|
-
"prettier": "^2.3.2",
|
|
63
|
-
"rimraf": "^3.0.0"
|
|
48
|
+
"@swc/cli": "^0.1.57",
|
|
49
|
+
"@swc/core": "^1.3.11",
|
|
50
|
+
"@swc/jest": "^0.2.23",
|
|
51
|
+
"@swc/register": "^0.1.10",
|
|
52
|
+
"autoprefixer": "^10.4.13",
|
|
53
|
+
"concurrently": "^7.5.0",
|
|
54
|
+
"cssnano": "^5.1.14",
|
|
55
|
+
"esbuild": "^0.15.15",
|
|
56
|
+
"eslint": "^8.27.0",
|
|
57
|
+
"eslint-config-prettier": "^8.5.0",
|
|
58
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
59
|
+
"jest": "^28.1.3",
|
|
60
|
+
"jest-diff": "^28.1.3",
|
|
61
|
+
"prettier": "^2.8.0",
|
|
62
|
+
"rimraf": "^3.0.0",
|
|
63
|
+
"source-map-js": "^1.0.2"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
|
-
"autoprefixer": "^10.0.2",
|
|
67
66
|
"postcss": "^8.0.9"
|
|
68
67
|
},
|
|
69
68
|
"dependencies": {
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"chokidar": "^3.5.
|
|
69
|
+
"@tailwindcss/oxide": "0.0.0-insiders.6bf5e56",
|
|
70
|
+
"arg": "^5.0.2",
|
|
71
|
+
"chokidar": "^3.5.3",
|
|
73
72
|
"color-name": "^1.1.4",
|
|
74
|
-
"
|
|
75
|
-
"detective": "^5.2.0",
|
|
73
|
+
"detective": "^5.2.1",
|
|
76
74
|
"didyoumean": "^1.2.2",
|
|
77
75
|
"dlv": "^1.1.3",
|
|
78
|
-
"fast-glob": "^3.2.
|
|
79
|
-
"glob-parent": "^6.0.
|
|
80
|
-
"is-glob": "^4.0.
|
|
76
|
+
"fast-glob": "^3.2.12",
|
|
77
|
+
"glob-parent": "^6.0.2",
|
|
78
|
+
"is-glob": "^4.0.3",
|
|
79
|
+
"lilconfig": "^2.0.6",
|
|
80
|
+
"micromatch": "^4.0.5",
|
|
81
81
|
"normalize-path": "^3.0.0",
|
|
82
|
-
"object-hash": "^
|
|
83
|
-
"
|
|
84
|
-
"postcss
|
|
85
|
-
"postcss-
|
|
86
|
-
"postcss-
|
|
87
|
-
"postcss-
|
|
82
|
+
"object-hash": "^3.0.0",
|
|
83
|
+
"picocolors": "^1.0.0",
|
|
84
|
+
"postcss": "^8.4.19",
|
|
85
|
+
"postcss-import": "^14.1.0",
|
|
86
|
+
"postcss-js": "^4.0.0",
|
|
87
|
+
"postcss-load-config": "^3.1.4",
|
|
88
|
+
"postcss-nested": "6.0.0",
|
|
89
|
+
"postcss-selector-parser": "^6.0.11",
|
|
90
|
+
"postcss-value-parser": "^4.2.0",
|
|
88
91
|
"quick-lru": "^5.1.1",
|
|
89
|
-
"resolve": "^1.
|
|
90
|
-
"tmp": "^0.2.1"
|
|
92
|
+
"resolve": "^1.22.1"
|
|
91
93
|
},
|
|
92
94
|
"browserslist": [
|
|
93
95
|
"> 1%",
|
|
@@ -95,18 +97,6 @@
|
|
|
95
97
|
"not ie 11",
|
|
96
98
|
"not op_mini all"
|
|
97
99
|
],
|
|
98
|
-
"babel": {
|
|
99
|
-
"presets": [
|
|
100
|
-
[
|
|
101
|
-
"@babel/preset-env",
|
|
102
|
-
{
|
|
103
|
-
"targets": {
|
|
104
|
-
"node": "12.13.0"
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
]
|
|
108
|
-
]
|
|
109
|
-
},
|
|
110
100
|
"jest": {
|
|
111
101
|
"testTimeout": 30000,
|
|
112
102
|
"setupFilesAfterEnv": [
|
|
@@ -114,8 +104,13 @@
|
|
|
114
104
|
],
|
|
115
105
|
"testPathIgnorePatterns": [
|
|
116
106
|
"/node_modules/",
|
|
117
|
-
"/integrations/"
|
|
118
|
-
|
|
107
|
+
"/integrations/",
|
|
108
|
+
"/standalone-cli/",
|
|
109
|
+
"\\.test\\.skip\\.js$"
|
|
110
|
+
],
|
|
111
|
+
"transform": {
|
|
112
|
+
"\\.js$": "@swc/jest"
|
|
113
|
+
}
|
|
119
114
|
},
|
|
120
115
|
"engines": {
|
|
121
116
|
"node": ">=12.13.0"
|