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.
Files changed (195) hide show
  1. package/CHANGELOG.md +603 -2
  2. package/LICENSE +1 -2
  3. package/README.md +14 -6
  4. package/colors.d.ts +3 -0
  5. package/colors.js +2 -304
  6. package/defaultConfig.d.ts +3 -0
  7. package/defaultConfig.js +2 -4
  8. package/defaultTheme.d.ts +4 -0
  9. package/defaultTheme.js +2 -4
  10. package/lib/cli/build/deps.js +54 -0
  11. package/lib/cli/build/index.js +48 -0
  12. package/lib/cli/build/plugin.js +367 -0
  13. package/lib/cli/build/utils.js +78 -0
  14. package/lib/cli/build/watching.js +178 -0
  15. package/lib/cli/help/index.js +71 -0
  16. package/lib/cli/index.js +18 -0
  17. package/lib/cli/init/index.js +46 -0
  18. package/lib/cli/shared.js +13 -0
  19. package/lib/cli-peer-dependencies.js +22 -14
  20. package/lib/cli.js +217 -743
  21. package/lib/constants.js +41 -34
  22. package/lib/corePluginList.js +178 -5
  23. package/lib/corePlugins.js +3879 -2941
  24. package/lib/css/preflight.css +22 -9
  25. package/lib/featureFlags.js +61 -50
  26. package/lib/index.js +45 -28
  27. package/lib/lib/cacheInvalidation.js +90 -0
  28. package/lib/lib/collapseAdjacentRules.js +52 -36
  29. package/lib/lib/collapseDuplicateDeclarations.js +83 -0
  30. package/lib/lib/content.js +176 -0
  31. package/lib/lib/defaultExtractor.js +236 -0
  32. package/lib/lib/detectNesting.js +37 -0
  33. package/lib/lib/evaluateTailwindFunctions.js +203 -161
  34. package/lib/lib/expandApplyAtRules.js +502 -221
  35. package/lib/lib/expandTailwindAtRules.js +258 -243
  36. package/lib/lib/findAtConfigPath.js +44 -0
  37. package/lib/lib/generateRules.js +775 -320
  38. package/lib/lib/getModuleDependencies.js +44 -46
  39. package/lib/lib/normalizeTailwindDirectives.js +79 -60
  40. package/lib/lib/offsets.js +217 -0
  41. package/lib/lib/partitionApplyAtRules.js +56 -0
  42. package/lib/lib/regex.js +60 -0
  43. package/lib/lib/resolveDefaultsAtRules.js +150 -94
  44. package/lib/lib/setupContextUtils.js +1146 -599
  45. package/lib/lib/setupTrackingContext.js +129 -177
  46. package/lib/lib/sharedState.js +53 -21
  47. package/lib/lib/substituteScreenAtRules.js +26 -28
  48. package/{nesting → lib/postcss-plugins/nesting}/README.md +2 -2
  49. package/lib/postcss-plugins/nesting/index.js +19 -0
  50. package/lib/postcss-plugins/nesting/plugin.js +87 -0
  51. package/lib/processTailwindFeatures.js +58 -53
  52. package/lib/public/colors.js +331 -0
  53. package/lib/public/create-plugin.js +15 -0
  54. package/lib/public/default-config.js +16 -0
  55. package/lib/public/default-theme.js +16 -0
  56. package/lib/public/resolve-config.js +22 -0
  57. package/lib/util/bigSign.js +7 -6
  58. package/lib/util/buildMediaQuery.js +21 -32
  59. package/lib/util/cloneDeep.js +16 -14
  60. package/lib/util/cloneNodes.js +29 -15
  61. package/lib/util/color.js +90 -66
  62. package/lib/util/configurePlugins.js +17 -15
  63. package/lib/util/createPlugin.js +23 -26
  64. package/lib/util/createUtilityPlugin.js +46 -46
  65. package/lib/util/dataTypes.js +242 -0
  66. package/lib/util/defaults.js +20 -15
  67. package/lib/util/escapeClassName.js +18 -17
  68. package/lib/util/escapeCommas.js +7 -6
  69. package/lib/util/flattenColorPalette.js +13 -12
  70. package/lib/util/formatVariantSelector.js +285 -0
  71. package/lib/util/getAllConfigs.js +44 -18
  72. package/lib/util/hashConfig.js +15 -12
  73. package/lib/util/isKeyframeRule.js +7 -6
  74. package/lib/util/isPlainObject.js +11 -11
  75. package/lib/util/isSyntacticallyValidPropertyValue.js +72 -0
  76. package/lib/util/log.js +52 -33
  77. package/lib/util/nameClass.js +37 -26
  78. package/lib/util/negateValue.js +31 -17
  79. package/lib/util/normalizeConfig.js +281 -0
  80. package/lib/util/normalizeScreens.js +170 -0
  81. package/lib/util/parseAnimationValue.js +85 -54
  82. package/lib/util/parseBoxShadowValue.js +84 -0
  83. package/lib/util/parseDependency.js +41 -70
  84. package/lib/util/parseGlob.js +34 -0
  85. package/lib/util/parseObjectStyles.js +30 -24
  86. package/lib/util/pluginUtils.js +252 -287
  87. package/lib/util/prefixSelector.js +20 -20
  88. package/lib/util/removeAlphaVariables.js +29 -0
  89. package/lib/util/resolveConfig.js +221 -256
  90. package/lib/util/resolveConfigPath.js +43 -48
  91. package/lib/util/responsive.js +18 -14
  92. package/lib/util/splitAtTopLevelOnly.js +43 -0
  93. package/lib/util/tap.js +8 -7
  94. package/lib/util/toColorValue.js +7 -6
  95. package/lib/util/toPath.js +27 -8
  96. package/lib/util/transformThemeValue.js +67 -28
  97. package/lib/util/validateConfig.js +24 -0
  98. package/lib/util/validateFormalSyntax.js +24 -0
  99. package/lib/util/withAlphaVariable.js +67 -57
  100. package/nesting/index.js +2 -12
  101. package/package.json +60 -65
  102. package/peers/index.js +76445 -84221
  103. package/plugin.d.ts +11 -0
  104. package/plugin.js +1 -2
  105. package/resolveConfig.d.ts +12 -0
  106. package/resolveConfig.js +2 -7
  107. package/scripts/create-plugin-list.js +2 -2
  108. package/scripts/generate-types.js +105 -0
  109. package/scripts/release-channel.js +18 -0
  110. package/scripts/release-notes.js +21 -0
  111. package/scripts/type-utils.js +27 -0
  112. package/src/cli/build/deps.js +56 -0
  113. package/src/cli/build/index.js +49 -0
  114. package/src/cli/build/plugin.js +439 -0
  115. package/src/cli/build/utils.js +76 -0
  116. package/src/cli/build/watching.js +227 -0
  117. package/src/cli/help/index.js +70 -0
  118. package/src/cli/index.js +3 -0
  119. package/src/cli/init/index.js +50 -0
  120. package/src/cli/shared.js +6 -0
  121. package/src/cli-peer-dependencies.js +7 -1
  122. package/src/cli.js +50 -575
  123. package/src/corePluginList.js +1 -1
  124. package/src/corePlugins.js +2405 -1948
  125. package/src/css/preflight.css +22 -9
  126. package/src/featureFlags.js +26 -10
  127. package/src/index.js +19 -6
  128. package/src/lib/cacheInvalidation.js +52 -0
  129. package/src/lib/collapseAdjacentRules.js +21 -2
  130. package/src/lib/collapseDuplicateDeclarations.js +93 -0
  131. package/src/lib/content.js +212 -0
  132. package/src/lib/defaultExtractor.js +211 -0
  133. package/src/lib/detectNesting.js +39 -0
  134. package/src/lib/evaluateTailwindFunctions.js +84 -10
  135. package/src/lib/expandApplyAtRules.js +508 -153
  136. package/src/lib/expandTailwindAtRules.js +130 -104
  137. package/src/lib/findAtConfigPath.js +48 -0
  138. package/src/lib/generateRules.js +596 -70
  139. package/src/lib/normalizeTailwindDirectives.js +10 -3
  140. package/src/lib/offsets.js +270 -0
  141. package/src/lib/partitionApplyAtRules.js +52 -0
  142. package/src/lib/regex.js +74 -0
  143. package/src/lib/resolveDefaultsAtRules.js +105 -47
  144. package/src/lib/setupContextUtils.js +828 -196
  145. package/src/lib/setupTrackingContext.js +19 -54
  146. package/src/lib/sharedState.js +45 -7
  147. package/src/lib/substituteScreenAtRules.js +6 -3
  148. package/src/postcss-plugins/nesting/README.md +42 -0
  149. package/src/postcss-plugins/nesting/index.js +13 -0
  150. package/src/postcss-plugins/nesting/plugin.js +80 -0
  151. package/src/processTailwindFeatures.js +19 -2
  152. package/src/public/colors.js +300 -0
  153. package/src/public/create-plugin.js +2 -0
  154. package/src/public/default-config.js +4 -0
  155. package/src/public/default-theme.js +4 -0
  156. package/src/public/resolve-config.js +7 -0
  157. package/src/util/buildMediaQuery.js +14 -16
  158. package/src/util/cloneNodes.js +19 -2
  159. package/src/util/color.js +31 -14
  160. package/src/util/createUtilityPlugin.js +2 -11
  161. package/src/util/dataTypes.js +256 -0
  162. package/src/util/defaults.js +6 -0
  163. package/src/util/formatVariantSelector.js +319 -0
  164. package/src/util/getAllConfigs.js +19 -0
  165. package/src/util/isSyntacticallyValidPropertyValue.js +61 -0
  166. package/src/util/log.js +23 -22
  167. package/src/util/nameClass.js +14 -6
  168. package/src/util/negateValue.js +15 -5
  169. package/src/util/normalizeConfig.js +300 -0
  170. package/src/util/normalizeScreens.js +140 -0
  171. package/src/util/parseAnimationValue.js +7 -1
  172. package/src/util/parseBoxShadowValue.js +72 -0
  173. package/src/util/parseDependency.js +37 -38
  174. package/src/util/parseGlob.js +24 -0
  175. package/src/util/pluginUtils.js +216 -197
  176. package/src/util/prefixSelector.js +7 -8
  177. package/src/util/removeAlphaVariables.js +24 -0
  178. package/src/util/resolveConfig.js +86 -91
  179. package/src/util/splitAtTopLevelOnly.js +45 -0
  180. package/src/util/toPath.js +23 -1
  181. package/src/util/transformThemeValue.js +33 -8
  182. package/src/util/validateConfig.js +13 -0
  183. package/src/util/validateFormalSyntax.js +34 -0
  184. package/src/util/withAlphaVariable.js +14 -9
  185. package/stubs/defaultConfig.stub.js +186 -117
  186. package/stubs/simpleConfig.stub.js +1 -1
  187. package/types/config.d.ts +362 -0
  188. package/types/generated/.gitkeep +0 -0
  189. package/types/generated/colors.d.ts +276 -0
  190. package/types/generated/corePluginList.d.ts +1 -0
  191. package/types/generated/default-theme.d.ts +342 -0
  192. package/types/index.d.ts +7 -0
  193. package/lib/lib/setupWatchingContext.js +0 -331
  194. package/nesting/plugin.js +0 -41
  195. 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
- value: true
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
- mutator(value);
10
- return value;
11
- }
10
+ mutator(value);
11
+ return value;
12
+ }
@@ -1,10 +1,11 @@
1
1
  "use strict";
2
-
3
2
  Object.defineProperty(exports, "__esModule", {
4
- value: true
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
- return typeof maybeFunction === 'function' ? maybeFunction({}) : maybeFunction;
10
- }
10
+ return typeof maybeFunction === "function" ? maybeFunction({}) : maybeFunction;
11
+ }
@@ -1,11 +1,30 @@
1
- "use strict";
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
- value: true
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
- if (Array.isArray(path)) return path;
10
- return path.split(/[\.\]\[]+/g);
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
- value: true
3
+ value: true
5
4
  });
6
- exports.default = transformThemeValue;
7
-
8
- var _postcss = _interopRequireDefault(require("postcss"));
9
-
10
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
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
- if (['fontSize', 'outline'].includes(themeSection)) {
14
- return value => Array.isArray(value) ? value[0] : value;
15
- }
16
-
17
- if (['fontFamily', 'boxShadow', 'transitionProperty', 'transitionDuration', 'transitionDelay', 'transitionTimingFunction', 'backgroundImage', 'backgroundSize', 'backgroundColor', 'cursor', 'animation'].includes(themeSection)) {
18
- return value => Array.isArray(value) ? value.join(', ') : value;
19
- } // For backwards compatibility reasons, before we switched to underscores
20
- // instead of commas for arbitrary values.
21
-
22
-
23
- if (['gridTemplateColumns', 'gridTemplateRows', 'objectPosition'].includes(themeSection)) {
24
- return value => typeof value === 'string' ? _postcss.default.list.comma(value).join(' ') : value;
25
- }
26
-
27
- if (themeSection === 'colors') {
28
- return value => typeof value === 'function' ? value({}) : value;
29
- }
30
-
31
- return value => value;
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
- value: true
3
+ value: true
5
4
  });
6
- exports.withAlphaValue = withAlphaValue;
7
- exports.default = withAlphaVariable;
8
-
9
- var _color = require("./color");
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
- if (typeof color === 'function') {
13
- return color({
14
- opacityValue: alphaValue
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
- function withAlphaVariable({
30
- color,
31
- property,
32
- variable
33
- }) {
34
- if (typeof color === 'function') {
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
- [variable]: '1',
37
- [property]: color({
38
- opacityVariable: variable,
39
- opacityValue: `var(${variable})`
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('./plugin')
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-insiders.fda68f7",
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
- "style": "dist/tailwind.css",
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
- "prebabelify": "npm run generate:plugin-list && rimraf lib",
22
- "babelify": "babel src --out-dir lib --copy-files",
23
- "postbabelify": "ncc build lib/cli-peer-dependencies.js -o peers",
24
- "rebuild-fixtures": "npm run babelify && babel-node scripts/rebuildFixtures.js",
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
- "test": "cross-env TAILWIND_MODE=build jest",
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
- "posttest": "npm run style",
31
- "generate:plugin-list": "babel-node scripts/create-plugin-list.js"
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
- "@babel/cli": "^7.14.8",
46
- "@babel/core": "^7.15.5",
47
- "@babel/node": "^7.12.13",
48
- "@babel/preset-env": "^7.15.0",
49
- "@tailwindcss/aspect-ratio": "^0.2.1",
50
- "@vercel/ncc": "^0.29.2",
51
- "autoprefixer": "^10.3.3",
52
- "babel-jest": "^27.1.0",
53
- "cross-env": "^7.0.3",
54
- "cssnano": "^5.0.8",
55
- "eslint": "^7.32.0",
56
- "eslint-config-prettier": "^8.3.0",
57
- "eslint-plugin-prettier": "^4.0.0",
58
- "jest": "^27.1.0",
59
- "jest-diff": "^27.1.0",
60
- "postcss": "^8.3.6",
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
- "arg": "^5.0.1",
71
- "chalk": "^4.1.2",
72
- "chokidar": "^3.5.2",
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
- "cosmiconfig": "^7.0.1",
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.7",
79
- "glob-parent": "^6.0.1",
80
- "is-glob": "^4.0.1",
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": "^2.2.0",
83
- "postcss-js": "^3.0.3",
84
- "postcss-load-config": "^3.1.0",
85
- "postcss-nested": "5.0.6",
86
- "postcss-selector-parser": "^6.0.6",
87
- "postcss-value-parser": "^4.1.0",
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.20.0",
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"