tailwindcss 0.0.0-insiders.ea139f2 → 0.0.0-insiders.ea4e1cd

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 (236) hide show
  1. package/LICENSE +1 -2
  2. package/README.md +15 -7
  3. package/colors.d.ts +3 -0
  4. package/colors.js +2 -1
  5. package/defaultConfig.d.ts +3 -0
  6. package/defaultConfig.js +2 -1
  7. package/defaultTheme.d.ts +4 -0
  8. package/defaultTheme.js +2 -1
  9. package/lib/cli/build/deps.js +62 -0
  10. package/lib/cli/build/index.js +54 -0
  11. package/lib/cli/build/plugin.js +378 -0
  12. package/lib/cli/build/utils.js +88 -0
  13. package/lib/cli/build/watching.js +182 -0
  14. package/lib/cli/help/index.js +73 -0
  15. package/lib/cli/index.js +230 -0
  16. package/lib/cli/init/index.js +63 -0
  17. package/lib/cli-peer-dependencies.js +28 -7
  18. package/lib/cli.js +4 -703
  19. package/lib/corePluginList.js +12 -3
  20. package/lib/corePlugins.js +2373 -1863
  21. package/lib/css/preflight.css +10 -8
  22. package/lib/featureFlags.js +49 -26
  23. package/lib/index.js +1 -31
  24. package/lib/lib/cacheInvalidation.js +92 -0
  25. package/lib/lib/collapseAdjacentRules.js +30 -10
  26. package/lib/lib/collapseDuplicateDeclarations.js +60 -4
  27. package/lib/lib/content.js +181 -0
  28. package/lib/lib/defaultExtractor.js +243 -0
  29. package/lib/lib/detectNesting.js +21 -10
  30. package/lib/lib/evaluateTailwindFunctions.js +115 -50
  31. package/lib/lib/expandApplyAtRules.js +467 -161
  32. package/lib/lib/expandTailwindAtRules.js +160 -133
  33. package/lib/lib/findAtConfigPath.js +46 -0
  34. package/lib/lib/generateRules.js +553 -200
  35. package/lib/lib/getModuleDependencies.js +88 -37
  36. package/lib/lib/load-config.js +42 -0
  37. package/lib/lib/normalizeTailwindDirectives.js +46 -33
  38. package/lib/lib/offsets.js +306 -0
  39. package/lib/lib/partitionApplyAtRules.js +58 -0
  40. package/lib/lib/regex.js +74 -0
  41. package/lib/lib/remap-bitfield.js +89 -0
  42. package/lib/lib/resolveDefaultsAtRules.js +98 -58
  43. package/lib/lib/setupContextUtils.js +773 -321
  44. package/lib/lib/setupTrackingContext.js +70 -75
  45. package/lib/lib/sharedState.js +78 -10
  46. package/lib/lib/substituteScreenAtRules.js +14 -10
  47. package/lib/oxide/cli/build/deps.js +89 -0
  48. package/lib/oxide/cli/build/index.js +53 -0
  49. package/lib/oxide/cli/build/plugin.js +375 -0
  50. package/lib/oxide/cli/build/utils.js +87 -0
  51. package/lib/oxide/cli/build/watching.js +179 -0
  52. package/lib/oxide/cli/help/index.js +72 -0
  53. package/lib/oxide/cli/index.js +214 -0
  54. package/lib/oxide/cli/init/index.js +52 -0
  55. package/lib/oxide/cli.js +5 -0
  56. package/lib/oxide/postcss-plugin.js +2 -0
  57. package/lib/plugin.js +98 -0
  58. package/{nesting → lib/postcss-plugins/nesting}/README.md +2 -2
  59. package/lib/postcss-plugins/nesting/index.js +21 -0
  60. package/lib/postcss-plugins/nesting/plugin.js +89 -0
  61. package/lib/processTailwindFeatures.js +39 -26
  62. package/lib/public/colors.js +272 -246
  63. package/lib/public/create-plugin.js +9 -5
  64. package/lib/public/default-config.js +10 -6
  65. package/lib/public/default-theme.js +10 -6
  66. package/lib/public/load-config.js +12 -0
  67. package/lib/public/resolve-config.js +11 -6
  68. package/lib/util/applyImportantSelector.js +36 -0
  69. package/lib/util/bigSign.js +6 -1
  70. package/lib/util/buildMediaQuery.js +13 -6
  71. package/lib/util/cloneDeep.js +9 -6
  72. package/lib/util/cloneNodes.js +23 -3
  73. package/lib/util/color.js +70 -38
  74. package/lib/util/colorNames.js +752 -0
  75. package/lib/util/configurePlugins.js +7 -2
  76. package/lib/util/createPlugin.js +8 -6
  77. package/lib/util/createUtilityPlugin.js +16 -16
  78. package/lib/util/dataTypes.js +173 -108
  79. package/lib/util/defaults.js +14 -3
  80. package/lib/util/escapeClassName.js +13 -8
  81. package/lib/util/escapeCommas.js +7 -2
  82. package/lib/util/flattenColorPalette.js +11 -12
  83. package/lib/util/formatVariantSelector.js +228 -151
  84. package/lib/util/getAllConfigs.js +33 -12
  85. package/lib/util/hashConfig.js +9 -4
  86. package/lib/util/isKeyframeRule.js +7 -2
  87. package/lib/util/isPlainObject.js +7 -2
  88. package/lib/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +25 -15
  89. package/lib/util/log.js +27 -13
  90. package/lib/util/nameClass.js +27 -10
  91. package/lib/util/negateValue.js +25 -8
  92. package/lib/util/normalizeConfig.js +139 -65
  93. package/lib/util/normalizeScreens.js +131 -11
  94. package/lib/util/parseAnimationValue.js +44 -40
  95. package/lib/util/parseBoxShadowValue.js +34 -23
  96. package/lib/util/parseDependency.js +39 -55
  97. package/lib/util/parseGlob.js +36 -0
  98. package/lib/util/parseObjectStyles.js +15 -10
  99. package/lib/util/pluginUtils.js +159 -69
  100. package/lib/util/prefixSelector.js +30 -12
  101. package/lib/util/pseudoElements.js +229 -0
  102. package/lib/util/removeAlphaVariables.js +31 -0
  103. package/lib/util/resolveConfig.js +97 -75
  104. package/lib/util/resolveConfigPath.js +30 -12
  105. package/lib/util/responsive.js +11 -6
  106. package/lib/util/splitAtTopLevelOnly.js +51 -0
  107. package/lib/util/tap.js +6 -1
  108. package/lib/util/toColorValue.js +7 -3
  109. package/lib/util/toPath.js +26 -3
  110. package/lib/util/transformThemeValue.js +40 -30
  111. package/lib/util/validateConfig.js +37 -0
  112. package/lib/util/validateFormalSyntax.js +26 -0
  113. package/lib/util/withAlphaVariable.js +27 -15
  114. package/loadConfig.d.ts +4 -0
  115. package/loadConfig.js +2 -0
  116. package/nesting/index.js +2 -12
  117. package/package.json +66 -57
  118. package/peers/index.js +75964 -55560
  119. package/plugin.d.ts +11 -0
  120. package/plugin.js +2 -1
  121. package/resolveConfig.d.ts +12 -0
  122. package/resolveConfig.js +2 -1
  123. package/scripts/generate-types.js +105 -0
  124. package/scripts/release-channel.js +18 -0
  125. package/scripts/release-notes.js +21 -0
  126. package/scripts/swap-engines.js +40 -0
  127. package/scripts/type-utils.js +27 -0
  128. package/src/cli/build/deps.js +56 -0
  129. package/src/cli/build/index.js +49 -0
  130. package/src/cli/build/plugin.js +444 -0
  131. package/src/cli/build/utils.js +76 -0
  132. package/src/cli/build/watching.js +229 -0
  133. package/src/cli/help/index.js +70 -0
  134. package/src/cli/index.js +216 -0
  135. package/src/cli/init/index.js +79 -0
  136. package/src/cli-peer-dependencies.js +7 -1
  137. package/src/cli.js +4 -765
  138. package/src/corePluginList.js +1 -1
  139. package/src/corePlugins.js +786 -306
  140. package/src/css/preflight.css +10 -8
  141. package/src/featureFlags.js +21 -5
  142. package/src/index.js +1 -34
  143. package/src/lib/cacheInvalidation.js +52 -0
  144. package/src/lib/collapseAdjacentRules.js +21 -2
  145. package/src/lib/collapseDuplicateDeclarations.js +66 -1
  146. package/src/lib/content.js +208 -0
  147. package/src/lib/defaultExtractor.js +217 -0
  148. package/src/lib/detectNesting.js +9 -1
  149. package/src/lib/evaluateTailwindFunctions.js +79 -8
  150. package/src/lib/expandApplyAtRules.js +515 -153
  151. package/src/lib/expandTailwindAtRules.js +115 -86
  152. package/src/lib/findAtConfigPath.js +48 -0
  153. package/src/lib/generateRules.js +545 -147
  154. package/src/lib/getModuleDependencies.js +70 -30
  155. package/src/lib/load-config.ts +31 -0
  156. package/src/lib/normalizeTailwindDirectives.js +7 -1
  157. package/src/lib/offsets.js +373 -0
  158. package/src/lib/partitionApplyAtRules.js +52 -0
  159. package/src/lib/regex.js +74 -0
  160. package/src/lib/remap-bitfield.js +82 -0
  161. package/src/lib/resolveDefaultsAtRules.js +59 -17
  162. package/src/lib/setupContextUtils.js +701 -175
  163. package/src/lib/setupTrackingContext.js +51 -62
  164. package/src/lib/sharedState.js +58 -7
  165. package/src/oxide/cli/build/deps.ts +91 -0
  166. package/src/oxide/cli/build/index.ts +47 -0
  167. package/src/oxide/cli/build/plugin.ts +442 -0
  168. package/src/oxide/cli/build/utils.ts +74 -0
  169. package/src/oxide/cli/build/watching.ts +225 -0
  170. package/src/oxide/cli/help/index.ts +69 -0
  171. package/src/oxide/cli/index.ts +204 -0
  172. package/src/oxide/cli/init/index.ts +59 -0
  173. package/src/oxide/cli.ts +1 -0
  174. package/src/oxide/postcss-plugin.ts +1 -0
  175. package/src/plugin.js +107 -0
  176. package/src/postcss-plugins/nesting/README.md +42 -0
  177. package/src/postcss-plugins/nesting/index.js +13 -0
  178. package/src/postcss-plugins/nesting/plugin.js +80 -0
  179. package/src/processTailwindFeatures.js +12 -2
  180. package/src/public/colors.js +22 -0
  181. package/src/public/default-config.js +1 -1
  182. package/src/public/default-theme.js +2 -2
  183. package/src/public/load-config.js +2 -0
  184. package/src/util/applyImportantSelector.js +27 -0
  185. package/src/util/buildMediaQuery.js +5 -3
  186. package/src/util/cloneNodes.js +19 -2
  187. package/src/util/color.js +44 -12
  188. package/src/util/colorNames.js +150 -0
  189. package/src/util/dataTypes.js +51 -16
  190. package/src/util/defaults.js +6 -0
  191. package/src/util/formatVariantSelector.js +264 -144
  192. package/src/util/getAllConfigs.js +21 -2
  193. package/src/util/{isValidArbitraryValue.js → isSyntacticallyValidPropertyValue.js} +1 -1
  194. package/src/util/log.js +11 -7
  195. package/src/util/nameClass.js +4 -0
  196. package/src/util/negateValue.js +11 -3
  197. package/src/util/normalizeConfig.js +57 -5
  198. package/src/util/normalizeScreens.js +105 -7
  199. package/src/util/parseBoxShadowValue.js +4 -3
  200. package/src/util/parseDependency.js +37 -42
  201. package/src/util/parseGlob.js +24 -0
  202. package/src/util/pluginUtils.js +123 -24
  203. package/src/util/prefixSelector.js +30 -10
  204. package/src/util/pseudoElements.js +170 -0
  205. package/src/util/removeAlphaVariables.js +24 -0
  206. package/src/util/resolveConfig.js +74 -26
  207. package/src/util/resolveConfigPath.js +12 -1
  208. package/src/util/splitAtTopLevelOnly.js +52 -0
  209. package/src/util/toPath.js +23 -1
  210. package/src/util/transformThemeValue.js +13 -3
  211. package/src/util/validateConfig.js +26 -0
  212. package/src/util/validateFormalSyntax.js +34 -0
  213. package/src/util/withAlphaVariable.js +1 -1
  214. package/stubs/.gitignore +1 -0
  215. package/stubs/.prettierrc.json +6 -0
  216. package/stubs/{defaultConfig.stub.js → config.full.js} +206 -166
  217. package/stubs/postcss.config.js +6 -0
  218. package/stubs/tailwind.config.cjs +2 -0
  219. package/stubs/tailwind.config.js +2 -0
  220. package/stubs/tailwind.config.ts +3 -0
  221. package/types/config.d.ts +368 -0
  222. package/types/generated/.gitkeep +0 -0
  223. package/types/generated/colors.d.ts +298 -0
  224. package/types/generated/corePluginList.d.ts +1 -0
  225. package/types/generated/default-theme.d.ts +371 -0
  226. package/types/index.d.ts +7 -0
  227. package/CHANGELOG.md +0 -1843
  228. package/lib/constants.js +0 -37
  229. package/lib/lib/setupWatchingContext.js +0 -288
  230. package/nesting/plugin.js +0 -41
  231. package/scripts/install-integrations.js +0 -27
  232. package/scripts/rebuildFixtures.js +0 -68
  233. package/src/constants.js +0 -17
  234. package/src/lib/setupWatchingContext.js +0 -311
  235. /package/stubs/{simpleConfig.stub.js → config.simple.js} +0 -0
  236. /package/stubs/{defaultPostCssConfig.stub.js → postcss.config.cjs} +0 -0
@@ -0,0 +1,243 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "defaultExtractor", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return defaultExtractor;
9
+ }
10
+ });
11
+ const _featureFlags = require("../featureFlags");
12
+ const _regex = /*#__PURE__*/ _interop_require_wildcard(require("./regex"));
13
+ function _getRequireWildcardCache(nodeInterop) {
14
+ if (typeof WeakMap !== "function") return null;
15
+ var cacheBabelInterop = new WeakMap();
16
+ var cacheNodeInterop = new WeakMap();
17
+ return (_getRequireWildcardCache = function(nodeInterop) {
18
+ return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
19
+ })(nodeInterop);
20
+ }
21
+ function _interop_require_wildcard(obj, nodeInterop) {
22
+ if (!nodeInterop && obj && obj.__esModule) {
23
+ return obj;
24
+ }
25
+ if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
26
+ return {
27
+ default: obj
28
+ };
29
+ }
30
+ var cache = _getRequireWildcardCache(nodeInterop);
31
+ if (cache && cache.has(obj)) {
32
+ return cache.get(obj);
33
+ }
34
+ var newObj = {};
35
+ var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
36
+ for(var key in obj){
37
+ if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
38
+ var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
39
+ if (desc && (desc.get || desc.set)) {
40
+ Object.defineProperty(newObj, key, desc);
41
+ } else {
42
+ newObj[key] = obj[key];
43
+ }
44
+ }
45
+ }
46
+ newObj.default = obj;
47
+ if (cache) {
48
+ cache.set(obj, newObj);
49
+ }
50
+ return newObj;
51
+ }
52
+ function defaultExtractor(context) {
53
+ let patterns = Array.from(buildRegExps(context));
54
+ /**
55
+ * @param {string} content
56
+ */ return (content)=>{
57
+ /** @type {(string|string)[]} */ let results = [];
58
+ for (let pattern of patterns){
59
+ var _content_match;
60
+ results = [
61
+ ...results,
62
+ ...(_content_match = content.match(pattern)) !== null && _content_match !== void 0 ? _content_match : []
63
+ ];
64
+ }
65
+ return results.filter((v)=>v !== undefined).map(clipAtBalancedParens);
66
+ };
67
+ }
68
+ function* buildRegExps(context) {
69
+ let separator = context.tailwindConfig.separator;
70
+ let variantGroupingEnabled = (0, _featureFlags.flagEnabled)(context.tailwindConfig, "variantGrouping");
71
+ let prefix = context.tailwindConfig.prefix !== "" ? _regex.optional(_regex.pattern([
72
+ /-?/,
73
+ _regex.escape(context.tailwindConfig.prefix)
74
+ ])) : "";
75
+ let utility = _regex.any([
76
+ // Arbitrary properties (without square brackets)
77
+ /\[[^\s:'"`]+:[^\s\[\]]+\]/,
78
+ // Arbitrary properties with balanced square brackets
79
+ // This is a targeted fix to continue to allow theme()
80
+ // with square brackets to work in arbitrary properties
81
+ // while fixing a problem with the regex matching too much
82
+ /\[[^\s:'"`]+:[^\s]+?\[[^\s]+\][^\s]+?\]/,
83
+ // Utilities
84
+ _regex.pattern([
85
+ // Utility Name / Group Name
86
+ /-?(?:\w+)/,
87
+ // Normal/Arbitrary values
88
+ _regex.optional(_regex.any([
89
+ _regex.pattern([
90
+ // Arbitrary values
91
+ /-(?:\w+-)*\[[^\s:]+\]/,
92
+ // Not immediately followed by an `{[(`
93
+ /(?![{([]])/,
94
+ // optionally followed by an opacity modifier
95
+ /(?:\/[^\s'"`\\><$]*)?/
96
+ ]),
97
+ _regex.pattern([
98
+ // Arbitrary values
99
+ /-(?:\w+-)*\[[^\s]+\]/,
100
+ // Not immediately followed by an `{[(`
101
+ /(?![{([]])/,
102
+ // optionally followed by an opacity modifier
103
+ /(?:\/[^\s'"`\\$]*)?/
104
+ ]),
105
+ // Normal values w/o quotes — may include an opacity modifier
106
+ /[-\/][^\s'"`\\$={><]*/
107
+ ]))
108
+ ])
109
+ ]);
110
+ let variantPatterns = [
111
+ // Without quotes
112
+ _regex.any([
113
+ // This is here to provide special support for the `@` variant
114
+ _regex.pattern([
115
+ /@\[[^\s"'`]+\](\/[^\s"'`]+)?/,
116
+ separator
117
+ ]),
118
+ _regex.pattern([
119
+ /([^\s"'`\[\\]+-)?\[[^\s"'`]+\]/,
120
+ separator
121
+ ]),
122
+ _regex.pattern([
123
+ /[^\s"'`\[\\]+/,
124
+ separator
125
+ ])
126
+ ]),
127
+ // With quotes allowed
128
+ _regex.any([
129
+ _regex.pattern([
130
+ /([^\s"'`\[\\]+-)?\[[^\s`]+\]/,
131
+ separator
132
+ ]),
133
+ _regex.pattern([
134
+ /[^\s`\[\\]+/,
135
+ separator
136
+ ])
137
+ ])
138
+ ];
139
+ for (const variantPattern of variantPatterns){
140
+ yield _regex.pattern([
141
+ // Variants
142
+ "((?=((",
143
+ variantPattern,
144
+ ")+))\\2)?",
145
+ // Important (optional)
146
+ /!?/,
147
+ prefix,
148
+ variantGroupingEnabled ? _regex.any([
149
+ // Or any of those things but grouped separated by commas
150
+ _regex.pattern([
151
+ /\(/,
152
+ utility,
153
+ _regex.zeroOrMore([
154
+ /,/,
155
+ utility
156
+ ]),
157
+ /\)/
158
+ ]),
159
+ // Arbitrary properties, constrained utilities, arbitrary values, etc…
160
+ utility
161
+ ]) : utility
162
+ ]);
163
+ }
164
+ // 5. Inner matches
165
+ yield /[^<>"'`\s.(){}[\]#=%$]*[^<>"'`\s.(){}[\]#=%:$]/g;
166
+ }
167
+ // We want to capture any "special" characters
168
+ // AND the characters immediately following them (if there is one)
169
+ let SPECIALS = /([\[\]'"`])([^\[\]'"`])?/g;
170
+ let ALLOWED_CLASS_CHARACTERS = /[^"'`\s<>\]]+/;
171
+ /**
172
+ * Clips a string ensuring that parentheses, quotes, etc… are balanced
173
+ * Used for arbitrary values only
174
+ *
175
+ * We will go past the end of the balanced parens until we find a non-class character
176
+ *
177
+ * Depth matching behavior:
178
+ * w-[calc(100%-theme('spacing[some_key][1.5]'))]']
179
+ * ┬ ┬ ┬┬ ┬ ┬┬ ┬┬┬┬┬┬┬
180
+ * 1 2 3 4 34 3 210 END
181
+ * ╰────┴──────────┴────────┴────────┴┴───┴─┴┴┴
182
+ *
183
+ * @param {string} input
184
+ */ function clipAtBalancedParens(input) {
185
+ // We are care about this for arbitrary values
186
+ if (!input.includes("-[")) {
187
+ return input;
188
+ }
189
+ let depth = 0;
190
+ let openStringTypes = [];
191
+ // Find all parens, brackets, quotes, etc
192
+ // Stop when we end at a balanced pair
193
+ // This is naive and will treat mismatched parens as balanced
194
+ // This shouldn't be a problem in practice though
195
+ let matches = input.matchAll(SPECIALS);
196
+ // We can't use lookbehind assertions because we have to support Safari
197
+ // So, instead, we've emulated it using capture groups and we'll re-work the matches to accommodate
198
+ matches = Array.from(matches).flatMap((match)=>{
199
+ const [, ...groups] = match;
200
+ return groups.map((group, idx)=>Object.assign([], match, {
201
+ index: match.index + idx,
202
+ 0: group
203
+ }));
204
+ });
205
+ for (let match of matches){
206
+ let char = match[0];
207
+ let inStringType = openStringTypes[openStringTypes.length - 1];
208
+ if (char === inStringType) {
209
+ openStringTypes.pop();
210
+ } else if (char === "'" || char === '"' || char === "`") {
211
+ openStringTypes.push(char);
212
+ }
213
+ if (inStringType) {
214
+ continue;
215
+ } else if (char === "[") {
216
+ depth++;
217
+ continue;
218
+ } else if (char === "]") {
219
+ depth--;
220
+ continue;
221
+ }
222
+ // We've gone one character past the point where we should stop
223
+ // This means that there was an extra closing `]`
224
+ // We'll clip to just before it
225
+ if (depth < 0) {
226
+ return input.substring(0, match.index - 1);
227
+ }
228
+ // We've finished balancing the brackets but there still may be characters that can be included
229
+ // For example in the class `text-[#336699]/[.35]`
230
+ // The depth goes to `0` at the closing `]` but goes up again at the `[`
231
+ // If we're at zero and encounter a non-class character then we clip the class there
232
+ if (depth === 0 && !ALLOWED_CLASS_CHARACTERS.test(char)) {
233
+ return input.substring(0, match.index);
234
+ }
235
+ }
236
+ return input;
237
+ } // Regular utilities
238
+ // {{modifier}:}*{namespace}{-{suffix}}*{/{opacityModifier}}?
239
+ // Arbitrary values
240
+ // {{modifier}:}*{namespace}-[{arbitraryValue}]{/{opacityModifier}}?
241
+ // arbitraryValue: no whitespace, balanced quotes unless within quotes, balanced brackets unless within quotes
242
+ // Arbitrary properties
243
+ // {{modifier}:}*[{validCssPropertyName}:{arbitraryValue}]
@@ -2,19 +2,30 @@
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
5
- exports.default = _default;
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return _default;
9
+ }
10
+ });
11
+ function isRoot(node) {
12
+ return node.type === "root";
13
+ }
14
+ function isAtLayer(node) {
15
+ return node.type === "atrule" && node.name === "layer";
16
+ }
6
17
  function _default(_context) {
7
18
  return (root, result)=>{
8
19
  let found = false;
9
- root.walkAtRules('tailwind', (node)=>{
20
+ root.walkAtRules("tailwind", (node)=>{
10
21
  if (found) return false;
11
- if (node.parent && node.parent.type !== 'root') {
22
+ if (node.parent && !(isRoot(node.parent) || isAtLayer(node.parent))) {
12
23
  found = true;
13
24
  node.warn(result, [
14
- 'Nested @tailwind rules were detected, but are not supported.',
25
+ "Nested @tailwind rules were detected, but are not supported.",
15
26
  "Consider using a prefix to scope Tailwind's classes: https://tailwindcss.com/docs/configuration#prefix",
16
- 'Alternatively, use the important selector strategy: https://tailwindcss.com/docs/configuration#selector-strategy',
17
- ].join('\n'));
27
+ "Alternatively, use the important selector strategy: https://tailwindcss.com/docs/configuration#selector-strategy"
28
+ ].join("\n"));
18
29
  return false;
19
30
  }
20
31
  });
@@ -23,10 +34,10 @@ function _default(_context) {
23
34
  rule.walkRules((nestedRule)=>{
24
35
  found = true;
25
36
  nestedRule.warn(result, [
26
- 'Nested CSS was detected, but CSS nesting has not been configured correctly.',
27
- 'Please enable a CSS nesting plugin *before* Tailwind in your configuration.',
28
- 'See how here: https://tailwindcss.com/docs/using-with-preprocessors#nesting',
29
- ].join('\n'));
37
+ "Nested CSS was detected, but CSS nesting has not been configured correctly.",
38
+ "Please enable a CSS nesting plugin *before* Tailwind in your configuration.",
39
+ "See how here: https://tailwindcss.com/docs/using-with-preprocessors#nesting"
40
+ ].join("\n"));
30
41
  return false;
31
42
  });
32
43
  });
@@ -2,59 +2,65 @@
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
5
- exports.default = _default;
6
- var _dlv = _interopRequireDefault(require("dlv"));
7
- var _didyoumean = _interopRequireDefault(require("didyoumean"));
8
- var _transformThemeValue = _interopRequireDefault(require("../util/transformThemeValue"));
9
- var _postcssValueParser = _interopRequireDefault(require("postcss-value-parser"));
10
- var _normalizeScreens = require("../util/normalizeScreens");
11
- var _buildMediaQuery = _interopRequireDefault(require("../util/buildMediaQuery"));
12
- var _toPath = require("../util/toPath");
13
- function _interopRequireDefault(obj) {
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return _default;
9
+ }
10
+ });
11
+ const _dlv = /*#__PURE__*/ _interop_require_default(require("dlv"));
12
+ const _didyoumean = /*#__PURE__*/ _interop_require_default(require("didyoumean"));
13
+ const _transformThemeValue = /*#__PURE__*/ _interop_require_default(require("../util/transformThemeValue"));
14
+ const _postcssvalueparser = /*#__PURE__*/ _interop_require_default(require("postcss-value-parser"));
15
+ const _normalizeScreens = require("../util/normalizeScreens");
16
+ const _buildMediaQuery = /*#__PURE__*/ _interop_require_default(require("../util/buildMediaQuery"));
17
+ const _toPath = require("../util/toPath");
18
+ const _withAlphaVariable = require("../util/withAlphaVariable");
19
+ const _pluginUtils = require("../util/pluginUtils");
20
+ const _log = /*#__PURE__*/ _interop_require_default(require("../util/log"));
21
+ function _interop_require_default(obj) {
14
22
  return obj && obj.__esModule ? obj : {
15
23
  default: obj
16
24
  };
17
25
  }
18
26
  function isObject(input) {
19
- return typeof input === 'object' && input !== null;
27
+ return typeof input === "object" && input !== null;
20
28
  }
21
29
  function findClosestExistingPath(theme, path) {
22
- let parts = (0, _toPath).toPath(path);
30
+ let parts = (0, _toPath.toPath)(path);
23
31
  do {
24
32
  parts.pop();
25
- if ((0, _dlv).default(theme, parts) !== undefined) break;
26
- }while (parts.length)
33
+ if ((0, _dlv.default)(theme, parts) !== undefined) break;
34
+ }while (parts.length);
27
35
  return parts.length ? parts : undefined;
28
36
  }
29
37
  function pathToString(path) {
30
- if (typeof path === 'string') return path;
38
+ if (typeof path === "string") return path;
31
39
  return path.reduce((acc, cur, i)=>{
32
- if (cur.includes('.')) return `${acc}[${cur}]`;
40
+ if (cur.includes(".")) return `${acc}[${cur}]`;
33
41
  return i === 0 ? cur : `${acc}.${cur}`;
34
- }, '');
42
+ }, "");
35
43
  }
36
44
  function list(items) {
37
- return items.map((key)=>`'${key}'`
38
- ).join(', ');
45
+ return items.map((key)=>`'${key}'`).join(", ");
39
46
  }
40
47
  function listKeys(obj) {
41
48
  return list(Object.keys(obj));
42
49
  }
43
- function validatePath(config, path, defaultValue) {
44
- const pathString = Array.isArray(path) ? pathToString(path) : path.replace(/^['"]+/g, '').replace(/['"]+$/g, '');
45
- const pathSegments = Array.isArray(path) ? path : (0, _toPath).toPath(pathString);
46
- const value = (0, _dlv).default(config.theme, pathString, defaultValue);
50
+ function validatePath(config, path, defaultValue, themeOpts = {}) {
51
+ const pathString = Array.isArray(path) ? pathToString(path) : path.replace(/^['"]+|['"]+$/g, "");
52
+ const pathSegments = Array.isArray(path) ? path : (0, _toPath.toPath)(pathString);
53
+ const value = (0, _dlv.default)(config.theme, pathSegments, defaultValue);
47
54
  if (value === undefined) {
48
55
  let error = `'${pathString}' does not exist in your theme config.`;
49
56
  const parentSegments = pathSegments.slice(0, -1);
50
- const parentValue = (0, _dlv).default(config.theme, parentSegments);
57
+ const parentValue = (0, _dlv.default)(config.theme, parentSegments);
51
58
  if (isObject(parentValue)) {
52
59
  const validKeys = Object.keys(parentValue).filter((key)=>validatePath(config, [
53
60
  ...parentSegments,
54
61
  key
55
- ]).isValid
56
- );
57
- const suggestion = (0, _didyoumean).default(pathSegments[pathSegments.length - 1], validKeys);
62
+ ]).isValid);
63
+ const suggestion = (0, _didyoumean.default)(pathSegments[pathSegments.length - 1], validKeys);
58
64
  if (suggestion) {
59
65
  error += ` Did you mean '${pathToString([
60
66
  ...parentSegments,
@@ -66,7 +72,7 @@ function validatePath(config, path, defaultValue) {
66
72
  } else {
67
73
  const closestPath = findClosestExistingPath(config.theme, pathString);
68
74
  if (closestPath) {
69
- const closestValue = (0, _dlv).default(config.theme, closestPath);
75
+ const closestValue = (0, _dlv.default)(config.theme, closestPath);
70
76
  if (isObject(closestValue)) {
71
77
  error += ` '${pathToString(closestPath)}' has the following keys: ${listKeys(closestValue)}`;
72
78
  } else {
@@ -81,14 +87,13 @@ function validatePath(config, path, defaultValue) {
81
87
  error
82
88
  };
83
89
  }
84
- if (!(typeof value === 'string' || typeof value === 'number' || typeof value === 'function' || value instanceof String || value instanceof Number || Array.isArray(value))) {
90
+ if (!(typeof value === "string" || typeof value === "number" || typeof value === "function" || value instanceof String || value instanceof Number || Array.isArray(value))) {
85
91
  let error = `'${pathString}' was found but does not resolve to a string.`;
86
92
  if (isObject(value)) {
87
93
  let validKeys = Object.keys(value).filter((key)=>validatePath(config, [
88
94
  ...pathSegments,
89
95
  key
90
- ]).isValid
91
- );
96
+ ]).isValid);
92
97
  if (validKeys.length) {
93
98
  error += ` Did you mean something like '${pathToString([
94
99
  ...pathSegments,
@@ -104,59 +109,119 @@ function validatePath(config, path, defaultValue) {
104
109
  const [themeSection] = pathSegments;
105
110
  return {
106
111
  isValid: true,
107
- value: (0, _transformThemeValue).default(themeSection)(value)
112
+ value: (0, _transformThemeValue.default)(themeSection)(value, themeOpts)
108
113
  };
109
114
  }
110
115
  function extractArgs(node, vNodes, functions) {
111
- vNodes = vNodes.map((vNode)=>resolveVNode(node, vNode, functions)
112
- );
116
+ vNodes = vNodes.map((vNode)=>resolveVNode(node, vNode, functions));
113
117
  let args = [
114
- ''
118
+ ""
115
119
  ];
116
- for (let vNode1 of vNodes){
117
- if (vNode1.type === 'div' && vNode1.value === ',') {
118
- args.push('');
120
+ for (let vNode of vNodes){
121
+ if (vNode.type === "div" && vNode.value === ",") {
122
+ args.push("");
119
123
  } else {
120
- args[args.length - 1] += _postcssValueParser.default.stringify(vNode1);
124
+ args[args.length - 1] += _postcssvalueparser.default.stringify(vNode);
121
125
  }
122
126
  }
123
127
  return args;
124
128
  }
125
129
  function resolveVNode(node, vNode, functions) {
126
- if (vNode.type === 'function' && functions[vNode.value] !== undefined) {
130
+ if (vNode.type === "function" && functions[vNode.value] !== undefined) {
127
131
  let args = extractArgs(node, vNode.nodes, functions);
128
- vNode.type = 'word';
132
+ vNode.type = "word";
129
133
  vNode.value = functions[vNode.value](node, ...args);
130
134
  }
131
135
  return vNode;
132
136
  }
133
137
  function resolveFunctions(node, input, functions) {
134
- return (0, _postcssValueParser).default(input).walk((vNode)=>{
138
+ return (0, _postcssvalueparser.default)(input).walk((vNode)=>{
135
139
  resolveVNode(node, vNode, functions);
136
140
  }).toString();
137
141
  }
138
142
  let nodeTypePropertyMap = {
139
- atrule: 'params',
140
- decl: 'value'
143
+ atrule: "params",
144
+ decl: "value"
141
145
  };
142
- function _default({ tailwindConfig: config }) {
146
+ /**
147
+ * @param {string} path
148
+ * @returns {Iterable<[path: string, alpha: string|undefined]>}
149
+ */ function* toPaths(path) {
150
+ // Strip quotes from beginning and end of string
151
+ // This allows the alpha value to be present inside of quotes
152
+ path = path.replace(/^['"]+|['"]+$/g, "");
153
+ let matches = path.match(/^([^\s]+)(?![^\[]*\])(?:\s*\/\s*([^\/\s]+))$/);
154
+ let alpha = undefined;
155
+ yield [
156
+ path,
157
+ undefined
158
+ ];
159
+ if (matches) {
160
+ path = matches[1];
161
+ alpha = matches[2];
162
+ yield [
163
+ path,
164
+ alpha
165
+ ];
166
+ }
167
+ }
168
+ /**
169
+ *
170
+ * @param {any} config
171
+ * @param {string} path
172
+ * @param {any} defaultValue
173
+ */ function resolvePath(config, path, defaultValue) {
174
+ const results = Array.from(toPaths(path)).map(([path, alpha])=>{
175
+ return Object.assign(validatePath(config, path, defaultValue, {
176
+ opacityValue: alpha
177
+ }), {
178
+ resolvedPath: path,
179
+ alpha
180
+ });
181
+ });
182
+ var _results_find;
183
+ return (_results_find = results.find((result)=>result.isValid)) !== null && _results_find !== void 0 ? _results_find : results[0];
184
+ }
185
+ function _default(context) {
186
+ let config = context.tailwindConfig;
143
187
  let functions = {
144
188
  theme: (node, path, ...defaultValue)=>{
145
- const { isValid , value , error } = validatePath(config, path, defaultValue.length ? defaultValue : undefined);
189
+ let { isValid , value , error , alpha } = resolvePath(config, path, defaultValue.length ? defaultValue : undefined);
146
190
  if (!isValid) {
191
+ var _parentNode_raws_tailwind;
192
+ let parentNode = node.parent;
193
+ let candidate = (_parentNode_raws_tailwind = parentNode === null || parentNode === void 0 ? void 0 : parentNode.raws.tailwind) === null || _parentNode_raws_tailwind === void 0 ? void 0 : _parentNode_raws_tailwind.candidate;
194
+ if (parentNode && candidate !== undefined) {
195
+ // Remove this utility from any caches
196
+ context.markInvalidUtilityNode(parentNode);
197
+ // Remove the CSS node from the markup
198
+ parentNode.remove();
199
+ // Show a warning
200
+ _log.default.warn("invalid-theme-key-in-class", [
201
+ `The utility \`${candidate}\` contains an invalid theme value and was not generated.`
202
+ ]);
203
+ return;
204
+ }
147
205
  throw node.error(error);
148
206
  }
207
+ let maybeColor = (0, _pluginUtils.parseColorFormat)(value);
208
+ let isColorFunction = maybeColor !== undefined && typeof maybeColor === "function";
209
+ if (alpha !== undefined || isColorFunction) {
210
+ if (alpha === undefined) {
211
+ alpha = 1.0;
212
+ }
213
+ value = (0, _withAlphaVariable.withAlphaValue)(maybeColor, alpha, maybeColor);
214
+ }
149
215
  return value;
150
216
  },
151
217
  screen: (node, screen)=>{
152
- screen = screen.replace(/^['"]+/g, '').replace(/['"]+$/g, '');
153
- let screens = (0, _normalizeScreens).normalizeScreens(config.theme.screens);
154
- let screenDefinition = screens.find(({ name })=>name === screen
155
- );
218
+ screen = screen.replace(/^['"]+/g, "").replace(/['"]+$/g, "");
219
+ let screens = (0, _normalizeScreens.normalizeScreens)(config.theme.screens);
220
+ let screenDefinition = screens.find(({ name })=>name === screen);
156
221
  if (!screenDefinition) {
157
222
  throw node.error(`The '${screen}' screen does not exist in your theme.`);
158
223
  }
159
- return (0, _buildMediaQuery).default(screenDefinition);
224
+ return (0, _buildMediaQuery.default)(screenDefinition);
160
225
  }
161
226
  };
162
227
  return (root)=>{