tailwindcss 0.0.0-insiders.cbbfa82 → 0.0.0-insiders.cc1eec6

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 (140) hide show
  1. package/README.md +1 -1
  2. package/lib/cli/build/index.js +7 -3
  3. package/lib/cli/build/plugin.js +65 -51
  4. package/lib/cli/build/watching.js +4 -2
  5. package/lib/cli/index.js +222 -10
  6. package/lib/cli/init/index.js +22 -7
  7. package/lib/cli.js +4 -236
  8. package/lib/corePluginList.js +4 -0
  9. package/lib/corePlugins.js +319 -52
  10. package/lib/css/preflight.css +2 -0
  11. package/lib/featureFlags.js +16 -9
  12. package/lib/index.js +4 -46
  13. package/lib/lib/collapseAdjacentRules.js +2 -2
  14. package/lib/lib/collapseDuplicateDeclarations.js +2 -2
  15. package/lib/lib/content.js +16 -16
  16. package/lib/lib/defaultExtractor.js +10 -5
  17. package/lib/lib/detectNesting.js +7 -1
  18. package/lib/lib/evaluateTailwindFunctions.js +4 -4
  19. package/lib/lib/expandApplyAtRules.js +14 -3
  20. package/lib/lib/expandTailwindAtRules.js +34 -9
  21. package/lib/lib/findAtConfigPath.js +3 -3
  22. package/lib/lib/generateRules.js +123 -64
  23. package/lib/lib/getModuleDependencies.js +79 -33
  24. package/lib/lib/load-config.js +40 -0
  25. package/lib/lib/offsets.js +88 -1
  26. package/lib/lib/remap-bitfield.js +87 -0
  27. package/lib/lib/resolveDefaultsAtRules.js +4 -4
  28. package/lib/lib/setupContextUtils.js +123 -68
  29. package/lib/lib/setupTrackingContext.js +29 -8
  30. package/lib/lib/sharedState.js +25 -2
  31. package/lib/oxide/cli/build/deps.js +81 -0
  32. package/lib/oxide/cli/build/index.js +51 -0
  33. package/lib/oxide/cli/build/plugin.js +373 -0
  34. package/lib/oxide/cli/build/utils.js +77 -0
  35. package/lib/oxide/cli/build/watching.js +177 -0
  36. package/lib/oxide/cli/help/index.js +70 -0
  37. package/lib/oxide/cli/index.js +214 -0
  38. package/lib/oxide/cli/init/index.js +50 -0
  39. package/lib/oxide/cli.js +5 -0
  40. package/lib/oxide/postcss-plugin.js +2 -0
  41. package/lib/plugin.js +98 -0
  42. package/lib/postcss-plugins/nesting/plugin.js +2 -2
  43. package/lib/public/colors.js +44 -22
  44. package/lib/public/default-config.js +2 -2
  45. package/lib/public/default-theme.js +2 -2
  46. package/lib/public/load-config.js +10 -0
  47. package/lib/util/applyImportantSelector.js +37 -0
  48. package/lib/util/cloneNodes.js +2 -2
  49. package/lib/util/color.js +20 -6
  50. package/lib/util/createUtilityPlugin.js +2 -2
  51. package/lib/util/dataTypes.js +26 -2
  52. package/lib/util/defaults.js +4 -4
  53. package/lib/util/escapeClassName.js +3 -3
  54. package/lib/util/formatVariantSelector.js +173 -115
  55. package/lib/util/getAllConfigs.js +4 -4
  56. package/lib/util/negateValue.js +2 -2
  57. package/lib/util/normalizeConfig.js +21 -22
  58. package/lib/util/pluginUtils.js +20 -39
  59. package/lib/util/prefixSelector.js +22 -8
  60. package/lib/util/resolveConfig.js +7 -7
  61. package/lib/util/resolveConfigPath.js +19 -7
  62. package/lib/util/splitAtTopLevelOnly.js +7 -1
  63. package/lib/util/validateConfig.js +11 -0
  64. package/loadConfig.d.ts +4 -0
  65. package/loadConfig.js +2 -0
  66. package/package.json +33 -21
  67. package/peers/index.js +108 -173
  68. package/resolveConfig.d.ts +11 -2
  69. package/scripts/swap-engines.js +40 -0
  70. package/src/cli/build/index.js +7 -7
  71. package/src/cli/build/plugin.js +40 -30
  72. package/src/cli/build/watching.js +4 -2
  73. package/src/cli/index.js +216 -3
  74. package/src/cli/init/index.js +37 -8
  75. package/src/cli.js +4 -231
  76. package/src/corePluginList.js +1 -1
  77. package/src/corePlugins.js +205 -29
  78. package/src/css/preflight.css +2 -0
  79. package/src/featureFlags.js +7 -0
  80. package/src/index.js +4 -46
  81. package/src/lib/content.js +12 -17
  82. package/src/lib/defaultExtractor.js +9 -3
  83. package/src/lib/detectNesting.js +9 -1
  84. package/src/lib/expandApplyAtRules.js +14 -1
  85. package/src/lib/expandTailwindAtRules.js +35 -6
  86. package/src/lib/generateRules.js +124 -42
  87. package/src/lib/getModuleDependencies.js +70 -30
  88. package/src/lib/load-config.ts +31 -0
  89. package/src/lib/offsets.js +104 -1
  90. package/src/lib/remap-bitfield.js +82 -0
  91. package/src/lib/setupContextUtils.js +99 -43
  92. package/src/lib/setupTrackingContext.js +35 -10
  93. package/src/lib/sharedState.js +30 -4
  94. package/src/oxide/cli/build/deps.ts +91 -0
  95. package/src/oxide/cli/build/index.ts +47 -0
  96. package/src/oxide/cli/build/plugin.ts +442 -0
  97. package/src/oxide/cli/build/utils.ts +74 -0
  98. package/src/oxide/cli/build/watching.ts +225 -0
  99. package/src/oxide/cli/help/index.ts +69 -0
  100. package/src/oxide/cli/index.ts +204 -0
  101. package/src/oxide/cli/init/index.ts +59 -0
  102. package/src/oxide/cli.ts +1 -0
  103. package/src/oxide/postcss-plugin.ts +1 -0
  104. package/src/plugin.js +107 -0
  105. package/src/public/colors.js +22 -0
  106. package/src/public/default-config.js +1 -1
  107. package/src/public/default-theme.js +2 -2
  108. package/src/public/load-config.js +2 -0
  109. package/src/util/applyImportantSelector.js +30 -0
  110. package/src/util/color.js +17 -2
  111. package/src/util/dataTypes.js +29 -4
  112. package/src/util/formatVariantSelector.js +240 -121
  113. package/src/util/getAllConfigs.js +2 -2
  114. package/src/util/negateValue.js +1 -1
  115. package/src/util/normalizeConfig.js +2 -1
  116. package/src/util/pluginUtils.js +10 -29
  117. package/src/util/prefixSelector.js +28 -10
  118. package/src/util/resolveConfigPath.js +12 -1
  119. package/src/util/splitAtTopLevelOnly.js +8 -1
  120. package/src/util/validateConfig.js +13 -0
  121. package/stubs/.gitignore +1 -0
  122. package/stubs/.prettierrc.json +6 -0
  123. package/stubs/{defaultConfig.stub.js → config.full.js} +183 -146
  124. package/stubs/{simpleConfig.stub.js → config.simple.js} +0 -1
  125. package/stubs/postcss.config.js +6 -0
  126. package/stubs/tailwind.config.cjs +2 -0
  127. package/stubs/tailwind.config.js +2 -0
  128. package/stubs/tailwind.config.ts +3 -0
  129. package/types/config.d.ts +15 -9
  130. package/types/generated/colors.d.ts +22 -0
  131. package/types/generated/corePluginList.d.ts +1 -1
  132. package/types/generated/default-theme.d.ts +108 -79
  133. package/CHANGELOG.md +0 -2339
  134. package/lib/cli/shared.js +0 -12
  135. package/lib/constants.js +0 -44
  136. package/scripts/install-integrations.js +0 -27
  137. package/scripts/rebuildFixtures.js +0 -68
  138. package/src/cli/shared.js +0 -5
  139. package/src/constants.js +0 -17
  140. /package/stubs/{defaultPostCssConfig.stub.js → postcss.config.cjs} +0 -0
package/lib/cli.js CHANGED
@@ -1,239 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  "use strict";
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- const _path = /*#__PURE__*/ _interopRequireDefault(require("path"));
7
- const _arg = /*#__PURE__*/ _interopRequireDefault(require("arg"));
8
- const _fs = /*#__PURE__*/ _interopRequireDefault(require("fs"));
9
- const _build = require("./cli/build");
10
- const _help = require("./cli/help");
11
- const _init = require("./cli/init");
12
- function _interopRequireDefault(obj) {
13
- return obj && obj.__esModule ? obj : {
14
- default: obj
15
- };
3
+ if (process.env.OXIDE) {
4
+ module.exports = require("./oxide/cli");
5
+ } else {
6
+ module.exports = require("./cli/index");
16
7
  }
17
- function isESM() {
18
- const pkgPath = _path.default.resolve("./package.json");
19
- try {
20
- let pkg = JSON.parse(_fs.default.readFileSync(pkgPath, "utf8"));
21
- return pkg.type && pkg.type === "module";
22
- } catch (err) {
23
- return false;
24
- }
25
- }
26
- let configs = isESM() ? {
27
- tailwind: "tailwind.config.cjs",
28
- postcss: "postcss.config.cjs"
29
- } : {
30
- tailwind: "tailwind.config.js",
31
- postcss: "postcss.config.js"
32
- };
33
- // ---
34
- function oneOf(...options) {
35
- return Object.assign((value = true)=>{
36
- for (let option of options){
37
- let parsed = option(value);
38
- if (parsed === value) {
39
- return parsed;
40
- }
41
- }
42
- throw new Error("...");
43
- }, {
44
- manualParsing: true
45
- });
46
- }
47
- let commands = {
48
- init: {
49
- run: _init.init,
50
- args: {
51
- "--full": {
52
- type: Boolean,
53
- description: `Initialize a full \`${configs.tailwind}\` file`
54
- },
55
- "--postcss": {
56
- type: Boolean,
57
- description: `Initialize a \`${configs.postcss}\` file`
58
- },
59
- "-f": "--full",
60
- "-p": "--postcss"
61
- }
62
- },
63
- build: {
64
- run: _build.build,
65
- args: {
66
- "--input": {
67
- type: String,
68
- description: "Input file"
69
- },
70
- "--output": {
71
- type: String,
72
- description: "Output file"
73
- },
74
- "--watch": {
75
- type: oneOf(String, Boolean),
76
- description: "Watch for changes and rebuild as needed"
77
- },
78
- "--poll": {
79
- type: Boolean,
80
- description: "Use polling instead of filesystem events when watching"
81
- },
82
- "--content": {
83
- type: String,
84
- description: "Content paths to use for removing unused classes"
85
- },
86
- "--purge": {
87
- type: String,
88
- deprecated: true
89
- },
90
- "--postcss": {
91
- type: oneOf(String, Boolean),
92
- description: "Load custom PostCSS configuration"
93
- },
94
- "--minify": {
95
- type: Boolean,
96
- description: "Minify the output"
97
- },
98
- "--config": {
99
- type: String,
100
- description: "Path to a custom config file"
101
- },
102
- "--no-autoprefixer": {
103
- type: Boolean,
104
- description: "Disable autoprefixer"
105
- },
106
- "-c": "--config",
107
- "-i": "--input",
108
- "-o": "--output",
109
- "-m": "--minify",
110
- "-w": "--watch",
111
- "-p": "--poll"
112
- }
113
- }
114
- };
115
- let sharedFlags = {
116
- "--help": {
117
- type: Boolean,
118
- description: "Display usage information"
119
- },
120
- "-h": "--help"
121
- };
122
- if (process.stdout.isTTY /* Detect redirecting output to a file */ && (process.argv[2] === undefined || process.argv.slice(2).every((flag)=>sharedFlags[flag] !== undefined))) {
123
- (0, _help.help)({
124
- usage: [
125
- "tailwindcss [--input input.css] [--output output.css] [--watch] [options...]",
126
- "tailwindcss init [--full] [--postcss] [options...]"
127
- ],
128
- commands: Object.keys(commands).filter((command)=>command !== "build").map((command)=>`${command} [options]`),
129
- options: {
130
- ...commands.build.args,
131
- ...sharedFlags
132
- }
133
- });
134
- process.exit(0);
135
- }
136
- let command = ((arg = "")=>arg.startsWith("-") ? undefined : arg)(process.argv[2]) || "build";
137
- if (commands[command] === undefined) {
138
- if (_fs.default.existsSync(_path.default.resolve(command))) {
139
- // TODO: Deprecate this in future versions
140
- // Check if non-existing command, might be a file.
141
- command = "build";
142
- } else {
143
- (0, _help.help)({
144
- message: `Invalid command: ${command}`,
145
- usage: [
146
- "tailwindcss <command> [options]"
147
- ],
148
- commands: Object.keys(commands).filter((command)=>command !== "build").map((command)=>`${command} [options]`),
149
- options: sharedFlags
150
- });
151
- process.exit(1);
152
- }
153
- }
154
- // Execute command
155
- let { args: flags , run } = commands[command];
156
- let args = (()=>{
157
- try {
158
- let result = (0, _arg.default)(Object.fromEntries(Object.entries({
159
- ...flags,
160
- ...sharedFlags
161
- }).filter(([_key, value])=>{
162
- var ref;
163
- return !(value === null || value === void 0 ? void 0 : (ref = value.type) === null || ref === void 0 ? void 0 : ref.manualParsing);
164
- }).map(([key, value])=>[
165
- key,
166
- typeof value === "object" ? value.type : value
167
- ])), {
168
- permissive: true
169
- });
170
- // Manual parsing of flags to allow for special flags like oneOf(Boolean, String)
171
- for(let i = result["_"].length - 1; i >= 0; --i){
172
- let flag = result["_"][i];
173
- if (!flag.startsWith("-")) continue;
174
- let [flagName, flagValue] = flag.split("=");
175
- let handler = flags[flagName];
176
- // Resolve flagName & handler
177
- while(typeof handler === "string"){
178
- flagName = handler;
179
- handler = flags[handler];
180
- }
181
- if (!handler) continue;
182
- let args = [];
183
- let offset = i + 1;
184
- // --flag value syntax was used so we need to pull `value` from `args`
185
- if (flagValue === undefined) {
186
- // Parse args for current flag
187
- while(result["_"][offset] && !result["_"][offset].startsWith("-")){
188
- args.push(result["_"][offset++]);
189
- }
190
- // Cleanup manually parsed flags + args
191
- result["_"].splice(i, 1 + args.length);
192
- // No args were provided, use default value defined in handler
193
- // One arg was provided, use that directly
194
- // Multiple args were provided so pass them all in an array
195
- flagValue = args.length === 0 ? undefined : args.length === 1 ? args[0] : args;
196
- } else {
197
- // Remove the whole flag from the args array
198
- result["_"].splice(i, 1);
199
- }
200
- // Set the resolved value in the `result` object
201
- result[flagName] = handler.type(flagValue, flagName);
202
- }
203
- // Ensure that the `command` is always the first argument in the `args`.
204
- // This is important so that we don't have to check if a default command
205
- // (build) was used or not from within each plugin.
206
- //
207
- // E.g.: tailwindcss input.css -> _: ['build', 'input.css']
208
- // E.g.: tailwindcss build input.css -> _: ['build', 'input.css']
209
- if (result["_"][0] !== command) {
210
- result["_"].unshift(command);
211
- }
212
- return result;
213
- } catch (err) {
214
- if (err.code === "ARG_UNKNOWN_OPTION") {
215
- (0, _help.help)({
216
- message: err.message,
217
- usage: [
218
- "tailwindcss <command> [options]"
219
- ],
220
- options: sharedFlags
221
- });
222
- process.exit(1);
223
- }
224
- throw err;
225
- }
226
- })();
227
- if (args["--help"]) {
228
- (0, _help.help)({
229
- options: {
230
- ...flags,
231
- ...sharedFlags
232
- },
233
- usage: [
234
- `tailwindcss ${command} [options]`
235
- ]
236
- });
237
- process.exit(0);
238
- }
239
- run(args, configs);
@@ -27,6 +27,7 @@ const _default = [
27
27
  "clear",
28
28
  "margin",
29
29
  "boxSizing",
30
+ "lineClamp",
30
31
  "display",
31
32
  "aspectRatio",
32
33
  "height",
@@ -40,6 +41,7 @@ const _default = [
40
41
  "flexGrow",
41
42
  "flexBasis",
42
43
  "tableLayout",
44
+ "captionSide",
43
45
  "borderCollapse",
44
46
  "borderSpacing",
45
47
  "transformOrigin",
@@ -60,6 +62,7 @@ const _default = [
60
62
  "scrollPadding",
61
63
  "listStylePosition",
62
64
  "listStyleType",
65
+ "listStyleImage",
63
66
  "appearance",
64
67
  "columns",
65
68
  "breakBefore",
@@ -91,6 +94,7 @@ const _default = [
91
94
  "overscrollBehavior",
92
95
  "scrollBehavior",
93
96
  "textOverflow",
97
+ "hyphens",
94
98
  "whitespace",
95
99
  "wordBreak",
96
100
  "borderRadius",