tailwindcss 0.0.0-insiders.f4635e0 → 0.0.0-insiders.f4a2ccd

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 (238) 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 -304
  5. package/defaultConfig.d.ts +3 -0
  6. package/defaultConfig.js +2 -4
  7. package/defaultTheme.d.ts +4 -0
  8. package/defaultTheme.js +2 -4
  9. package/lib/cli/build/deps.js +54 -0
  10. package/lib/cli/build/index.js +52 -0
  11. package/lib/cli/build/plugin.js +376 -0
  12. package/lib/cli/build/utils.js +78 -0
  13. package/lib/cli/build/watching.js +180 -0
  14. package/lib/cli/help/index.js +71 -0
  15. package/lib/cli/index.js +230 -0
  16. package/lib/cli/init/index.js +61 -0
  17. package/lib/cli-peer-dependencies.js +22 -14
  18. package/lib/cli.js +4 -762
  19. package/lib/corePluginList.js +182 -5
  20. package/lib/corePlugins.js +4109 -2952
  21. package/lib/css/preflight.css +24 -9
  22. package/lib/featureFlags.js +68 -50
  23. package/lib/index.js +5 -30
  24. package/lib/lib/cacheInvalidation.js +90 -0
  25. package/lib/lib/collapseAdjacentRules.js +52 -36
  26. package/lib/lib/collapseDuplicateDeclarations.js +83 -0
  27. package/lib/lib/content.js +177 -0
  28. package/lib/lib/defaultExtractor.js +241 -0
  29. package/lib/lib/detectNesting.js +39 -17
  30. package/lib/lib/evaluateTailwindFunctions.js +203 -161
  31. package/lib/lib/expandApplyAtRules.js +503 -221
  32. package/lib/lib/expandTailwindAtRules.js +255 -243
  33. package/lib/lib/findAtConfigPath.js +44 -0
  34. package/lib/lib/generateRules.js +831 -317
  35. package/lib/lib/getModuleDependencies.js +93 -49
  36. package/lib/lib/load-config.js +36 -0
  37. package/lib/lib/normalizeTailwindDirectives.js +79 -60
  38. package/lib/lib/offsets.js +304 -0
  39. package/lib/lib/partitionApplyAtRules.js +56 -0
  40. package/lib/lib/regex.js +60 -0
  41. package/lib/lib/remap-bitfield.js +87 -0
  42. package/lib/lib/resolveDefaultsAtRules.js +150 -94
  43. package/lib/lib/setupContextUtils.js +1197 -685
  44. package/lib/lib/setupTrackingContext.js +150 -177
  45. package/lib/lib/sharedState.js +70 -21
  46. package/lib/lib/substituteScreenAtRules.js +26 -28
  47. package/lib/oxide/cli/build/deps.js +81 -0
  48. package/lib/oxide/cli/build/index.js +51 -0
  49. package/lib/oxide/cli/build/plugin.js +373 -0
  50. package/lib/oxide/cli/build/utils.js +77 -0
  51. package/lib/oxide/cli/build/watching.js +177 -0
  52. package/lib/oxide/cli/help/index.js +70 -0
  53. package/lib/oxide/cli/index.js +214 -0
  54. package/lib/oxide/cli/init/index.js +50 -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 +19 -0
  60. package/lib/postcss-plugins/nesting/plugin.js +87 -0
  61. package/lib/processTailwindFeatures.js +58 -56
  62. package/lib/public/colors.js +353 -0
  63. package/lib/public/create-plugin.js +15 -0
  64. package/lib/public/default-config.js +16 -0
  65. package/lib/public/default-theme.js +16 -0
  66. package/lib/public/load-config.js +10 -0
  67. package/lib/public/resolve-config.js +22 -0
  68. package/lib/util/applyImportantSelector.js +22 -0
  69. package/lib/util/bigSign.js +7 -6
  70. package/lib/util/buildMediaQuery.js +21 -32
  71. package/lib/util/cloneDeep.js +16 -14
  72. package/lib/util/cloneNodes.js +29 -15
  73. package/lib/util/color.js +104 -66
  74. package/lib/util/configurePlugins.js +17 -15
  75. package/lib/util/createPlugin.js +23 -26
  76. package/lib/util/createUtilityPlugin.js +46 -46
  77. package/lib/util/dataTypes.js +266 -0
  78. package/lib/util/defaults.js +20 -15
  79. package/lib/util/escapeClassName.js +18 -17
  80. package/lib/util/escapeCommas.js +7 -6
  81. package/lib/util/flattenColorPalette.js +13 -12
  82. package/lib/util/formatVariantSelector.js +341 -0
  83. package/lib/util/getAllConfigs.js +44 -18
  84. package/lib/util/hashConfig.js +15 -12
  85. package/lib/util/isKeyframeRule.js +7 -6
  86. package/lib/util/isPlainObject.js +11 -11
  87. package/lib/util/isSyntacticallyValidPropertyValue.js +72 -0
  88. package/lib/util/log.js +52 -33
  89. package/lib/util/nameClass.js +35 -29
  90. package/lib/util/negateValue.js +31 -17
  91. package/lib/util/normalizeConfig.js +294 -0
  92. package/lib/util/normalizeScreens.js +170 -0
  93. package/lib/util/parseAnimationValue.js +85 -54
  94. package/lib/util/parseBoxShadowValue.js +84 -0
  95. package/lib/util/parseDependency.js +41 -70
  96. package/lib/util/parseGlob.js +34 -0
  97. package/lib/util/parseObjectStyles.js +30 -24
  98. package/lib/util/pluginUtils.js +234 -288
  99. package/lib/util/prefixSelector.js +33 -19
  100. package/lib/util/removeAlphaVariables.js +29 -0
  101. package/lib/util/resolveConfig.js +221 -256
  102. package/lib/util/resolveConfigPath.js +55 -48
  103. package/lib/util/responsive.js +18 -14
  104. package/lib/util/splitAtTopLevelOnly.js +49 -0
  105. package/lib/util/tap.js +8 -7
  106. package/lib/util/toColorValue.js +7 -6
  107. package/lib/util/toPath.js +27 -8
  108. package/lib/util/transformThemeValue.js +67 -28
  109. package/lib/util/validateConfig.js +24 -0
  110. package/lib/util/validateFormalSyntax.js +24 -0
  111. package/lib/util/withAlphaVariable.js +67 -57
  112. package/loadConfig.d.ts +4 -0
  113. package/loadConfig.js +2 -0
  114. package/nesting/index.js +2 -12
  115. package/package.json +69 -66
  116. package/peers/index.js +76328 -84169
  117. package/plugin.d.ts +11 -0
  118. package/plugin.js +1 -2
  119. package/resolveConfig.d.ts +12 -0
  120. package/resolveConfig.js +2 -7
  121. package/scripts/create-plugin-list.js +2 -2
  122. package/scripts/generate-types.js +105 -0
  123. package/scripts/release-channel.js +18 -0
  124. package/scripts/release-notes.js +21 -0
  125. package/scripts/swap-engines.js +40 -0
  126. package/scripts/type-utils.js +27 -0
  127. package/src/cli/build/deps.js +56 -0
  128. package/src/cli/build/index.js +49 -0
  129. package/src/cli/build/plugin.js +444 -0
  130. package/src/cli/build/utils.js +76 -0
  131. package/src/cli/build/watching.js +229 -0
  132. package/src/cli/help/index.js +70 -0
  133. package/src/cli/index.js +216 -0
  134. package/src/cli/init/index.js +79 -0
  135. package/src/cli-peer-dependencies.js +7 -1
  136. package/src/cli.js +4 -756
  137. package/src/corePluginList.js +1 -1
  138. package/src/corePlugins.js +2526 -1956
  139. package/src/css/preflight.css +24 -9
  140. package/src/featureFlags.js +33 -10
  141. package/src/index.js +4 -33
  142. package/src/lib/cacheInvalidation.js +52 -0
  143. package/src/lib/collapseAdjacentRules.js +21 -2
  144. package/src/lib/collapseDuplicateDeclarations.js +93 -0
  145. package/src/lib/content.js +208 -0
  146. package/src/lib/defaultExtractor.js +217 -0
  147. package/src/lib/detectNesting.js +30 -3
  148. package/src/lib/evaluateTailwindFunctions.js +84 -10
  149. package/src/lib/expandApplyAtRules.js +509 -153
  150. package/src/lib/expandTailwindAtRules.js +125 -104
  151. package/src/lib/findAtConfigPath.js +48 -0
  152. package/src/lib/generateRules.js +678 -70
  153. package/src/lib/getModuleDependencies.js +70 -30
  154. package/src/lib/load-config.ts +27 -0
  155. package/src/lib/normalizeTailwindDirectives.js +10 -3
  156. package/src/lib/offsets.js +373 -0
  157. package/src/lib/partitionApplyAtRules.js +52 -0
  158. package/src/lib/regex.js +74 -0
  159. package/src/lib/remap-bitfield.js +82 -0
  160. package/src/lib/resolveDefaultsAtRules.js +105 -47
  161. package/src/lib/setupContextUtils.js +848 -247
  162. package/src/lib/setupTrackingContext.js +53 -64
  163. package/src/lib/sharedState.js +60 -6
  164. package/src/lib/substituteScreenAtRules.js +6 -3
  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 +18 -3
  180. package/src/public/colors.js +322 -0
  181. package/src/public/create-plugin.js +2 -0
  182. package/src/public/default-config.js +4 -0
  183. package/src/public/default-theme.js +4 -0
  184. package/src/public/load-config.js +2 -0
  185. package/src/public/resolve-config.js +7 -0
  186. package/src/util/applyImportantSelector.js +19 -0
  187. package/src/util/buildMediaQuery.js +14 -16
  188. package/src/util/cloneNodes.js +19 -2
  189. package/src/util/color.js +43 -11
  190. package/src/util/createUtilityPlugin.js +2 -11
  191. package/src/util/dataTypes.js +281 -0
  192. package/src/util/defaults.js +6 -0
  193. package/src/util/formatVariantSelector.js +412 -0
  194. package/src/util/getAllConfigs.js +21 -2
  195. package/src/util/isSyntacticallyValidPropertyValue.js +61 -0
  196. package/src/util/log.js +23 -22
  197. package/src/util/nameClass.js +6 -2
  198. package/src/util/negateValue.js +15 -5
  199. package/src/util/normalizeConfig.js +318 -0
  200. package/src/util/normalizeScreens.js +140 -0
  201. package/src/util/parseAnimationValue.js +7 -1
  202. package/src/util/parseBoxShadowValue.js +72 -0
  203. package/src/util/parseDependency.js +37 -38
  204. package/src/util/parseGlob.js +24 -0
  205. package/src/util/pluginUtils.js +219 -219
  206. package/src/util/prefixSelector.js +30 -13
  207. package/src/util/removeAlphaVariables.js +24 -0
  208. package/src/util/resolveConfig.js +86 -91
  209. package/src/util/resolveConfigPath.js +12 -1
  210. package/src/util/splitAtTopLevelOnly.js +52 -0
  211. package/src/util/toPath.js +23 -1
  212. package/src/util/transformThemeValue.js +33 -8
  213. package/src/util/validateConfig.js +13 -0
  214. package/src/util/validateFormalSyntax.js +34 -0
  215. package/src/util/withAlphaVariable.js +14 -9
  216. package/stubs/.gitignore +1 -0
  217. package/stubs/.prettierrc.json +6 -0
  218. package/stubs/{defaultConfig.stub.js → config.full.js} +332 -249
  219. package/stubs/{simpleConfig.stub.js → config.simple.js} +0 -1
  220. package/stubs/postcss.config.js +6 -0
  221. package/stubs/tailwind.config.cjs +2 -0
  222. package/stubs/tailwind.config.js +2 -0
  223. package/stubs/tailwind.config.ts +3 -0
  224. package/types/config.d.ts +373 -0
  225. package/types/generated/.gitkeep +0 -0
  226. package/types/generated/colors.d.ts +298 -0
  227. package/types/generated/corePluginList.d.ts +1 -0
  228. package/types/generated/default-theme.d.ts +347 -0
  229. package/types/index.d.ts +7 -0
  230. package/CHANGELOG.md +0 -1742
  231. package/lib/constants.js +0 -37
  232. package/lib/lib/setupWatchingContext.js +0 -331
  233. package/nesting/plugin.js +0 -41
  234. package/scripts/install-integrations.js +0 -27
  235. package/scripts/rebuildFixtures.js +0 -68
  236. package/src/constants.js +0 -17
  237. package/src/lib/setupWatchingContext.js +0 -307
  238. /package/stubs/{defaultPostCssConfig.stub.js → postcss.config.cjs} +0 -0
@@ -0,0 +1,177 @@
1
+ // @ts-check
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ function _export(target, all) {
7
+ for(var name in all)Object.defineProperty(target, name, {
8
+ enumerable: true,
9
+ get: all[name]
10
+ });
11
+ }
12
+ _export(exports, {
13
+ parseCandidateFiles: ()=>parseCandidateFiles,
14
+ resolvedChangedContent: ()=>resolvedChangedContent
15
+ });
16
+ const _fs = /*#__PURE__*/ _interopRequireDefault(require("fs"));
17
+ const _path = /*#__PURE__*/ _interopRequireDefault(require("path"));
18
+ const _isGlob = /*#__PURE__*/ _interopRequireDefault(require("is-glob"));
19
+ const _fastGlob = /*#__PURE__*/ _interopRequireDefault(require("fast-glob"));
20
+ const _normalizePath = /*#__PURE__*/ _interopRequireDefault(require("normalize-path"));
21
+ const _parseGlob = require("../util/parseGlob");
22
+ const _sharedState = require("./sharedState");
23
+ function _interopRequireDefault(obj) {
24
+ return obj && obj.__esModule ? obj : {
25
+ default: obj
26
+ };
27
+ }
28
+ function parseCandidateFiles(context, tailwindConfig) {
29
+ let files = tailwindConfig.content.files;
30
+ // Normalize the file globs
31
+ files = files.filter((filePath)=>typeof filePath === "string");
32
+ files = files.map(_normalizePath.default);
33
+ // Split into included and excluded globs
34
+ let tasks = _fastGlob.default.generateTasks(files);
35
+ /** @type {ContentPath[]} */ let included = [];
36
+ /** @type {ContentPath[]} */ let excluded = [];
37
+ for (const task of tasks){
38
+ included.push(...task.positive.map((filePath)=>parseFilePath(filePath, false)));
39
+ excluded.push(...task.negative.map((filePath)=>parseFilePath(filePath, true)));
40
+ }
41
+ let paths = [
42
+ ...included,
43
+ ...excluded
44
+ ];
45
+ // Resolve paths relative to the config file or cwd
46
+ paths = resolveRelativePaths(context, paths);
47
+ // Resolve symlinks if possible
48
+ paths = paths.flatMap(resolvePathSymlinks);
49
+ // Update cached patterns
50
+ paths = paths.map(resolveGlobPattern);
51
+ return paths;
52
+ }
53
+ /**
54
+ *
55
+ * @param {string} filePath
56
+ * @param {boolean} ignore
57
+ * @returns {ContentPath}
58
+ */ function parseFilePath(filePath, ignore) {
59
+ let contentPath = {
60
+ original: filePath,
61
+ base: filePath,
62
+ ignore,
63
+ pattern: filePath,
64
+ glob: null
65
+ };
66
+ if ((0, _isGlob.default)(filePath)) {
67
+ Object.assign(contentPath, (0, _parseGlob.parseGlob)(filePath));
68
+ }
69
+ return contentPath;
70
+ }
71
+ /**
72
+ *
73
+ * @param {ContentPath} contentPath
74
+ * @returns {ContentPath}
75
+ */ function resolveGlobPattern(contentPath) {
76
+ // This is required for Windows support to properly pick up Glob paths.
77
+ // Afaik, this technically shouldn't be needed but there's probably
78
+ // some internal, direct path matching with a normalized path in
79
+ // a package which can't handle mixed directory separators
80
+ let base = (0, _normalizePath.default)(contentPath.base);
81
+ // If the user's file path contains any special characters (like parens) for instance fast-glob
82
+ // is like "OOOH SHINY" and treats them as such. So we have to escape the base path to fix this
83
+ base = _fastGlob.default.escapePath(base);
84
+ contentPath.pattern = contentPath.glob ? `${base}/${contentPath.glob}` : base;
85
+ contentPath.pattern = contentPath.ignore ? `!${contentPath.pattern}` : contentPath.pattern;
86
+ return contentPath;
87
+ }
88
+ /**
89
+ * Resolve each path relative to the config file (when possible) if the experimental flag is enabled
90
+ * Otherwise, resolve relative to the current working directory
91
+ *
92
+ * @param {any} context
93
+ * @param {ContentPath[]} contentPaths
94
+ * @returns {ContentPath[]}
95
+ */ function resolveRelativePaths(context, contentPaths) {
96
+ let resolveFrom = [];
97
+ // Resolve base paths relative to the config file (when possible) if the experimental flag is enabled
98
+ if (context.userConfigPath && context.tailwindConfig.content.relative) {
99
+ resolveFrom = [
100
+ _path.default.dirname(context.userConfigPath)
101
+ ];
102
+ }
103
+ return contentPaths.map((contentPath)=>{
104
+ contentPath.base = _path.default.resolve(...resolveFrom, contentPath.base);
105
+ return contentPath;
106
+ });
107
+ }
108
+ /**
109
+ * Resolve the symlink for the base directory / file in each path
110
+ * These are added as additional dependencies to watch for changes because
111
+ * some tools (like webpack) will only watch the actual file or directory
112
+ * but not the symlink itself even in projects that use monorepos.
113
+ *
114
+ * @param {ContentPath} contentPath
115
+ * @returns {ContentPath[]}
116
+ */ function resolvePathSymlinks(contentPath) {
117
+ let paths = [
118
+ contentPath
119
+ ];
120
+ try {
121
+ let resolvedPath = _fs.default.realpathSync(contentPath.base);
122
+ if (resolvedPath !== contentPath.base) {
123
+ paths.push({
124
+ ...contentPath,
125
+ base: resolvedPath
126
+ });
127
+ }
128
+ } catch {
129
+ // TODO: log this?
130
+ }
131
+ return paths;
132
+ }
133
+ function resolvedChangedContent(context, candidateFiles, fileModifiedMap) {
134
+ let changedContent = context.tailwindConfig.content.files.filter((item)=>typeof item.raw === "string").map(({ raw , extension ="html" })=>({
135
+ content: raw,
136
+ extension
137
+ }));
138
+ let [changedFiles, mTimesToCommit] = resolveChangedFiles(candidateFiles, fileModifiedMap);
139
+ for (let changedFile of changedFiles){
140
+ let extension = _path.default.extname(changedFile).slice(1);
141
+ changedContent.push({
142
+ file: changedFile,
143
+ extension
144
+ });
145
+ }
146
+ return [
147
+ changedContent,
148
+ mTimesToCommit
149
+ ];
150
+ }
151
+ /**
152
+ *
153
+ * @param {ContentPath[]} candidateFiles
154
+ * @param {Map<string, number>} fileModifiedMap
155
+ * @returns {[Set<string>, Map<string, number>]}
156
+ */ function resolveChangedFiles(candidateFiles, fileModifiedMap) {
157
+ let paths = candidateFiles.map((contentPath)=>contentPath.pattern);
158
+ let mTimesToCommit = new Map();
159
+ let changedFiles = new Set();
160
+ _sharedState.env.DEBUG && console.time("Finding changed files");
161
+ let files = _fastGlob.default.sync(paths, {
162
+ absolute: true
163
+ });
164
+ for (let file of files){
165
+ let prevModified = fileModifiedMap.get(file) || -Infinity;
166
+ let modified = _fs.default.statSync(file).mtimeMs;
167
+ if (modified > prevModified) {
168
+ changedFiles.add(file);
169
+ mTimesToCommit.set(file, modified);
170
+ }
171
+ }
172
+ _sharedState.env.DEBUG && console.timeEnd("Finding changed files");
173
+ return [
174
+ changedFiles,
175
+ mTimesToCommit
176
+ ];
177
+ }
@@ -0,0 +1,241 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "defaultExtractor", {
6
+ enumerable: true,
7
+ get: ()=>defaultExtractor
8
+ });
9
+ const _featureFlags = require("../featureFlags");
10
+ const _regex = /*#__PURE__*/ _interopRequireWildcard(require("./regex"));
11
+ function _getRequireWildcardCache(nodeInterop) {
12
+ if (typeof WeakMap !== "function") return null;
13
+ var cacheBabelInterop = new WeakMap();
14
+ var cacheNodeInterop = new WeakMap();
15
+ return (_getRequireWildcardCache = function(nodeInterop) {
16
+ return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
17
+ })(nodeInterop);
18
+ }
19
+ function _interopRequireWildcard(obj, nodeInterop) {
20
+ if (!nodeInterop && obj && obj.__esModule) {
21
+ return obj;
22
+ }
23
+ if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
24
+ return {
25
+ default: obj
26
+ };
27
+ }
28
+ var cache = _getRequireWildcardCache(nodeInterop);
29
+ if (cache && cache.has(obj)) {
30
+ return cache.get(obj);
31
+ }
32
+ var newObj = {};
33
+ var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
34
+ for(var key in obj){
35
+ if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
36
+ var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
37
+ if (desc && (desc.get || desc.set)) {
38
+ Object.defineProperty(newObj, key, desc);
39
+ } else {
40
+ newObj[key] = obj[key];
41
+ }
42
+ }
43
+ }
44
+ newObj.default = obj;
45
+ if (cache) {
46
+ cache.set(obj, newObj);
47
+ }
48
+ return newObj;
49
+ }
50
+ function defaultExtractor(context) {
51
+ let patterns = Array.from(buildRegExps(context));
52
+ /**
53
+ * @param {string} content
54
+ */ return (content)=>{
55
+ /** @type {(string|string)[]} */ let results = [];
56
+ for (let pattern of patterns){
57
+ var _content_match;
58
+ results = [
59
+ ...results,
60
+ ...(_content_match = content.match(pattern)) !== null && _content_match !== void 0 ? _content_match : []
61
+ ];
62
+ }
63
+ return results.filter((v)=>v !== undefined).map(clipAtBalancedParens);
64
+ };
65
+ }
66
+ function* buildRegExps(context) {
67
+ let separator = context.tailwindConfig.separator;
68
+ let variantGroupingEnabled = (0, _featureFlags.flagEnabled)(context.tailwindConfig, "variantGrouping");
69
+ let prefix = context.tailwindConfig.prefix !== "" ? _regex.optional(_regex.pattern([
70
+ /-?/,
71
+ _regex.escape(context.tailwindConfig.prefix)
72
+ ])) : "";
73
+ let utility = _regex.any([
74
+ // Arbitrary properties (without square brackets)
75
+ /\[[^\s:'"`]+:[^\s\[\]]+\]/,
76
+ // Arbitrary properties with balanced square brackets
77
+ // This is a targeted fix to continue to allow theme()
78
+ // with square brackets to work in arbitrary properties
79
+ // while fixing a problem with the regex matching too much
80
+ /\[[^\s:'"`]+:[^\s]+?\[[^\s]+?\][^\s]+?\]/,
81
+ // Utilities
82
+ _regex.pattern([
83
+ // Utility Name / Group Name
84
+ /-?(?:\w+)/,
85
+ // Normal/Arbitrary values
86
+ _regex.optional(_regex.any([
87
+ _regex.pattern([
88
+ // Arbitrary values
89
+ /-(?:\w+-)*\[[^\s:]+\]/,
90
+ // Not immediately followed by an `{[(`
91
+ /(?![{([]])/,
92
+ // optionally followed by an opacity modifier
93
+ /(?:\/[^\s'"`\\><$]*)?/
94
+ ]),
95
+ _regex.pattern([
96
+ // Arbitrary values
97
+ /-(?:\w+-)*\[[^\s]+\]/,
98
+ // Not immediately followed by an `{[(`
99
+ /(?![{([]])/,
100
+ // optionally followed by an opacity modifier
101
+ /(?:\/[^\s'"`\\$]*)?/
102
+ ]),
103
+ // Normal values w/o quotes — may include an opacity modifier
104
+ /[-\/][^\s'"`\\$={><]*/
105
+ ]))
106
+ ])
107
+ ]);
108
+ let variantPatterns = [
109
+ // Without quotes
110
+ _regex.any([
111
+ // This is here to provide special support for the `@` variant
112
+ _regex.pattern([
113
+ /@\[[^\s"'`]+\](\/[^\s"'`]+)?/,
114
+ separator
115
+ ]),
116
+ _regex.pattern([
117
+ /([^\s"'`\[\\]+-)?\[[^\s"'`]+\]/,
118
+ separator
119
+ ]),
120
+ _regex.pattern([
121
+ /[^\s"'`\[\\]+/,
122
+ separator
123
+ ])
124
+ ]),
125
+ // With quotes allowed
126
+ _regex.any([
127
+ _regex.pattern([
128
+ /([^\s"'`\[\\]+-)?\[[^\s`]+\]/,
129
+ separator
130
+ ]),
131
+ _regex.pattern([
132
+ /[^\s`\[\\]+/,
133
+ separator
134
+ ])
135
+ ])
136
+ ];
137
+ for (const variantPattern of variantPatterns){
138
+ yield _regex.pattern([
139
+ // Variants
140
+ "((?=((",
141
+ variantPattern,
142
+ ")+))\\2)?",
143
+ // Important (optional)
144
+ /!?/,
145
+ prefix,
146
+ variantGroupingEnabled ? _regex.any([
147
+ // Or any of those things but grouped separated by commas
148
+ _regex.pattern([
149
+ /\(/,
150
+ utility,
151
+ _regex.zeroOrMore([
152
+ /,/,
153
+ utility
154
+ ]),
155
+ /\)/
156
+ ]),
157
+ // Arbitrary properties, constrained utilities, arbitrary values, etc…
158
+ utility
159
+ ]) : utility
160
+ ]);
161
+ }
162
+ // 5. Inner matches
163
+ yield /[^<>"'`\s.(){}[\]#=%$]*[^<>"'`\s.(){}[\]#=%:$]/g;
164
+ }
165
+ // We want to capture any "special" characters
166
+ // AND the characters immediately following them (if there is one)
167
+ let SPECIALS = /([\[\]'"`])([^\[\]'"`])?/g;
168
+ let ALLOWED_CLASS_CHARACTERS = /[^"'`\s<>\]]+/;
169
+ /**
170
+ * Clips a string ensuring that parentheses, quotes, etc… are balanced
171
+ * Used for arbitrary values only
172
+ *
173
+ * We will go past the end of the balanced parens until we find a non-class character
174
+ *
175
+ * Depth matching behavior:
176
+ * w-[calc(100%-theme('spacing[some_key][1.5]'))]']
177
+ * ┬ ┬ ┬┬ ┬ ┬┬ ┬┬┬┬┬┬┬
178
+ * 1 2 3 4 34 3 210 END
179
+ * ╰────┴──────────┴────────┴────────┴┴───┴─┴┴┴
180
+ *
181
+ * @param {string} input
182
+ */ function clipAtBalancedParens(input) {
183
+ // We are care about this for arbitrary values
184
+ if (!input.includes("-[")) {
185
+ return input;
186
+ }
187
+ let depth = 0;
188
+ let openStringTypes = [];
189
+ // Find all parens, brackets, quotes, etc
190
+ // Stop when we end at a balanced pair
191
+ // This is naive and will treat mismatched parens as balanced
192
+ // This shouldn't be a problem in practice though
193
+ let matches = input.matchAll(SPECIALS);
194
+ // We can't use lookbehind assertions because we have to support Safari
195
+ // So, instead, we've emulated it using capture groups and we'll re-work the matches to accommodate
196
+ matches = Array.from(matches).flatMap((match)=>{
197
+ const [, ...groups] = match;
198
+ return groups.map((group, idx)=>Object.assign([], match, {
199
+ index: match.index + idx,
200
+ 0: group
201
+ }));
202
+ });
203
+ for (let match of matches){
204
+ let char = match[0];
205
+ let inStringType = openStringTypes[openStringTypes.length - 1];
206
+ if (char === inStringType) {
207
+ openStringTypes.pop();
208
+ } else if (char === "'" || char === '"' || char === "`") {
209
+ openStringTypes.push(char);
210
+ }
211
+ if (inStringType) {
212
+ continue;
213
+ } else if (char === "[") {
214
+ depth++;
215
+ continue;
216
+ } else if (char === "]") {
217
+ depth--;
218
+ continue;
219
+ }
220
+ // We've gone one character past the point where we should stop
221
+ // This means that there was an extra closing `]`
222
+ // We'll clip to just before it
223
+ if (depth < 0) {
224
+ return input.substring(0, match.index - 1);
225
+ }
226
+ // We've finished balancing the brackets but there still may be characters that can be included
227
+ // For example in the class `text-[#336699]/[.35]`
228
+ // The depth goes to `0` at the closing `]` but goes up again at the `[`
229
+ // If we're at zero and encounter a non-class character then we clip the class there
230
+ if (depth === 0 && !ALLOWED_CLASS_CHARACTERS.test(char)) {
231
+ return input.substring(0, match.index);
232
+ }
233
+ }
234
+ return input;
235
+ } // Regular utilities
236
+ // {{modifier}:}*{namespace}{-{suffix}}*{/{opacityModifier}}?
237
+ // Arbitrary values
238
+ // {{modifier}:}*{namespace}-[{arbitraryValue}]{/{opacityModifier}}?
239
+ // arbitraryValue: no whitespace, balanced quotes unless within quotes, balanced brackets unless within quotes
240
+ // Arbitrary properties
241
+ // {{modifier}:}*[{validCssPropertyName}:{arbitraryValue}]
@@ -1,21 +1,43 @@
1
1
  "use strict";
2
-
3
2
  Object.defineProperty(exports, "__esModule", {
4
- value: true
3
+ value: true
5
4
  });
6
- exports.default = _default;
7
-
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: ()=>_default
8
+ });
9
+ function isRoot(node) {
10
+ return node.type === "root";
11
+ }
12
+ function isAtLayer(node) {
13
+ return node.type === "atrule" && node.name === "layer";
14
+ }
8
15
  function _default(_context) {
9
- return (root, result) => {
10
- let found = false;
11
- root.walkRules(rule => {
12
- if (found) return false;
13
- rule.walkRules(nestedRule => {
14
- found = true;
15
- nestedRule.warn(result, // TODO: Improve this warning message
16
- 'Nested CSS detected, checkout the docs on how to support nesting: https://tailwindcss.com/docs/using-with-preprocessors#nesting');
17
- return false;
18
- });
19
- });
20
- };
21
- }
16
+ return (root, result)=>{
17
+ let found = false;
18
+ root.walkAtRules("tailwind", (node)=>{
19
+ if (found) return false;
20
+ if (node.parent && !(isRoot(node.parent) || isAtLayer(node.parent))) {
21
+ found = true;
22
+ node.warn(result, [
23
+ "Nested @tailwind rules were detected, but are not supported.",
24
+ "Consider using a prefix to scope Tailwind's classes: https://tailwindcss.com/docs/configuration#prefix",
25
+ "Alternatively, use the important selector strategy: https://tailwindcss.com/docs/configuration#selector-strategy"
26
+ ].join("\n"));
27
+ return false;
28
+ }
29
+ });
30
+ root.walkRules((rule)=>{
31
+ if (found) return false;
32
+ rule.walkRules((nestedRule)=>{
33
+ found = true;
34
+ nestedRule.warn(result, [
35
+ "Nested CSS was detected, but CSS nesting has not been configured correctly.",
36
+ "Please enable a CSS nesting plugin *before* Tailwind in your configuration.",
37
+ "See how here: https://tailwindcss.com/docs/using-with-preprocessors#nesting"
38
+ ].join("\n"));
39
+ return false;
40
+ });
41
+ });
42
+ };
43
+ }