tailwindcss 0.0.0-insiders.cd5cb00 → 0.0.0-insiders.d06c9d6

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 (92) hide show
  1. package/CHANGELOG.md +215 -1
  2. package/README.md +8 -4
  3. package/colors.js +2 -1
  4. package/defaultConfig.js +2 -1
  5. package/defaultTheme.js +2 -1
  6. package/lib/cli.js +91 -53
  7. package/lib/constants.js +1 -1
  8. package/lib/corePluginList.js +10 -1
  9. package/lib/corePlugins.js +540 -446
  10. package/lib/css/preflight.css +18 -5
  11. package/lib/featureFlags.js +11 -8
  12. package/lib/index.js +1 -3
  13. package/lib/lib/collapseDuplicateDeclarations.js +80 -0
  14. package/lib/lib/defaultExtractor.js +42 -0
  15. package/lib/lib/detectNesting.js +17 -2
  16. package/lib/lib/evaluateTailwindFunctions.js +10 -6
  17. package/lib/lib/expandApplyAtRules.js +94 -45
  18. package/lib/lib/expandTailwindAtRules.js +34 -55
  19. package/lib/lib/generateRules.js +174 -30
  20. package/lib/lib/normalizeTailwindDirectives.js +10 -2
  21. package/lib/lib/resolveDefaultsAtRules.js +70 -59
  22. package/lib/lib/setupContextUtils.js +355 -242
  23. package/lib/lib/setupTrackingContext.js +14 -13
  24. package/lib/lib/sharedState.js +34 -15
  25. package/lib/lib/substituteScreenAtRules.js +7 -4
  26. package/lib/processTailwindFeatures.js +7 -2
  27. package/lib/public/colors.js +2 -2
  28. package/lib/util/buildMediaQuery.js +13 -24
  29. package/lib/util/color.js +23 -8
  30. package/lib/util/createUtilityPlugin.js +5 -5
  31. package/lib/util/dataTypes.js +38 -7
  32. package/lib/util/defaults.js +6 -0
  33. package/lib/util/formatVariantSelector.js +186 -0
  34. package/lib/util/isValidArbitraryValue.js +64 -0
  35. package/lib/util/log.js +4 -0
  36. package/lib/util/nameClass.js +2 -1
  37. package/lib/util/negateValue.js +3 -1
  38. package/lib/util/normalizeConfig.js +237 -0
  39. package/lib/util/normalizeScreens.js +61 -0
  40. package/lib/util/parseBoxShadowValue.js +77 -0
  41. package/lib/util/pluginUtils.js +63 -159
  42. package/lib/util/prefixSelector.js +1 -3
  43. package/lib/util/resolveConfig.js +28 -74
  44. package/lib/util/toPath.js +6 -1
  45. package/lib/util/transformThemeValue.js +23 -13
  46. package/package.json +21 -23
  47. package/peers/index.js +4660 -5675
  48. package/plugin.js +2 -1
  49. package/resolveConfig.js +2 -1
  50. package/scripts/create-plugin-list.js +2 -2
  51. package/src/cli.js +71 -23
  52. package/src/corePluginList.js +1 -1
  53. package/src/corePlugins.js +523 -580
  54. package/src/css/preflight.css +18 -5
  55. package/src/featureFlags.js +11 -5
  56. package/src/index.js +1 -7
  57. package/src/lib/collapseDuplicateDeclarations.js +93 -0
  58. package/src/lib/defaultExtractor.js +48 -0
  59. package/src/lib/detectNesting.js +22 -3
  60. package/src/lib/evaluateTailwindFunctions.js +6 -3
  61. package/src/lib/expandApplyAtRules.js +101 -45
  62. package/src/lib/expandTailwindAtRules.js +36 -55
  63. package/src/lib/generateRules.js +184 -25
  64. package/src/lib/normalizeTailwindDirectives.js +8 -2
  65. package/src/lib/resolveDefaultsAtRules.js +70 -53
  66. package/src/lib/setupContextUtils.js +331 -178
  67. package/src/lib/setupTrackingContext.js +14 -15
  68. package/src/lib/sharedState.js +40 -7
  69. package/src/lib/substituteScreenAtRules.js +6 -3
  70. package/src/processTailwindFeatures.js +9 -2
  71. package/src/public/colors.js +2 -2
  72. package/src/util/buildMediaQuery.js +14 -18
  73. package/src/util/color.js +20 -7
  74. package/src/util/createUtilityPlugin.js +2 -2
  75. package/src/util/dataTypes.js +43 -11
  76. package/src/util/defaults.js +6 -0
  77. package/src/util/formatVariantSelector.js +196 -0
  78. package/src/util/isValidArbitraryValue.js +61 -0
  79. package/src/util/log.js +4 -0
  80. package/src/util/nameClass.js +2 -2
  81. package/src/util/negateValue.js +4 -2
  82. package/src/util/normalizeConfig.js +262 -0
  83. package/src/util/normalizeScreens.js +45 -0
  84. package/src/util/parseBoxShadowValue.js +71 -0
  85. package/src/util/pluginUtils.js +51 -147
  86. package/src/util/prefixSelector.js +1 -4
  87. package/src/util/resolveConfig.js +19 -55
  88. package/src/util/toPath.js +23 -1
  89. package/src/util/transformThemeValue.js +22 -7
  90. package/stubs/defaultConfig.stub.js +120 -60
  91. package/lib/lib/setupWatchingContext.js +0 -284
  92. package/src/lib/setupWatchingContext.js +0 -306
package/CHANGELOG.md CHANGED
@@ -7,6 +7,178 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ - Nothing yet!
11
+
12
+ ## [3.0.12] - 2022-01-07
13
+
14
+ ### Fixed
15
+
16
+ - Allow use of falsy values in theme config ([#6917](https://github.com/tailwindlabs/tailwindcss/pull/6917))
17
+ - Ensure we can apply classes that are grouped with non-class selectors ([#6922](https://github.com/tailwindlabs/tailwindcss/pull/6922))
18
+ - Improve standalone CLI compatibility on Linux by switching to the `linuxstatic` build target ([#6914](https://github.com/tailwindlabs/tailwindcss/pull/6914))
19
+ - Ensure `@apply` works consistently with or without `@layer` ([#6938](https://github.com/tailwindlabs/tailwindcss/pull/6938))
20
+ - Only emit defaults when using base layer ([#6926](https://github.com/tailwindlabs/tailwindcss/pull/6926))
21
+ - Emit plugin defaults regardless of usage ([#6926](https://github.com/tailwindlabs/tailwindcss/pull/6926))
22
+ - Move default border color back to preflight ([#6926](https://github.com/tailwindlabs/tailwindcss/pull/6926))
23
+ - Change `experimental.optimizeUniversalDefaults` to only work with `@tailwind base` ([#6926](https://github.com/tailwindlabs/tailwindcss/pull/6926))
24
+
25
+ ## [3.0.11] - 2022-01-05
26
+
27
+ ### Fixed
28
+
29
+ - Preserve casing of CSS variables added by plugins ([#6888](https://github.com/tailwindlabs/tailwindcss/pull/6888))
30
+ - Ignore content paths that are passed in but don't actually exist ([#6901](https://github.com/tailwindlabs/tailwindcss/pull/6901))
31
+ - Revert change that applies Tailwind's defaults in isolated environments like CSS modules ([9fdc391](https://github.com/tailwindlabs/tailwindcss/commit/9fdc391d4ff93e7e350f5ce439060176b1f0162f))
32
+
33
+ ## [3.0.10] - 2022-01-04
34
+
35
+ ### Fixed
36
+
37
+ - Fix `@apply` in files without `@tailwind` directives ([#6580](https://github.com/tailwindlabs/tailwindcss/pull/6580), [#6875](https://github.com/tailwindlabs/tailwindcss/pull/6875))
38
+ - CLI: avoid unnecessary writes to output files ([#6550](https://github.com/tailwindlabs/tailwindcss/pull/6550))
39
+
40
+ ### Added
41
+
42
+ - Allow piping data into the CLI ([#6876](https://github.com/tailwindlabs/tailwindcss/pull/6876))
43
+
44
+ ## [3.0.9] - 2022-01-03
45
+
46
+ ### Fixed
47
+
48
+ - Improve `DEBUG` flag ([#6797](https://github.com/tailwindlabs/tailwindcss/pull/6797), [#6804](https://github.com/tailwindlabs/tailwindcss/pull/6804))
49
+ - Ensure we can use `<` and `>` characters in modifiers ([#6851](https://github.com/tailwindlabs/tailwindcss/pull/6851))
50
+ - Validate `theme()` works in arbitrary values ([#6852](https://github.com/tailwindlabs/tailwindcss/pull/6852))
51
+ - Properly detect `theme()` value usage in arbitrary properties ([#6854](https://github.com/tailwindlabs/tailwindcss/pull/6854))
52
+ - Improve collapsing of duplicate declarations ([#6856](https://github.com/tailwindlabs/tailwindcss/pull/6856))
53
+ - Remove support for `TAILWIND_MODE=watch` ([#6858](https://github.com/tailwindlabs/tailwindcss/pull/6858))
54
+
55
+ ## [3.0.8] - 2021-12-28
56
+
57
+ ### Fixed
58
+
59
+ - Reduce specificity of `abbr` rule in preflight ([#6671](https://github.com/tailwindlabs/tailwindcss/pull/6671))
60
+ - Support HSL with hue units in arbitrary values ([#6726](https://github.com/tailwindlabs/tailwindcss/pull/6726))
61
+ - Add `node16-linux-arm64` target for standalone CLI ([#6693](https://github.com/tailwindlabs/tailwindcss/pull/6693))
62
+
63
+ ## [3.0.7] - 2021-12-17
64
+
65
+ ### Fixed
66
+
67
+ - Don't mutate custom color palette when overriding per-plugin colors ([#6546](https://github.com/tailwindlabs/tailwindcss/pull/6546))
68
+ - Improve circular dependency detection when using `@apply` ([#6588](https://github.com/tailwindlabs/tailwindcss/pull/6588))
69
+ - Only generate variants for non-`user` layers ([#6589](https://github.com/tailwindlabs/tailwindcss/pull/6589))
70
+ - Properly extract classes with arbitrary values in arrays and classes followed by escaped quotes ([#6590](https://github.com/tailwindlabs/tailwindcss/pull/6590))
71
+ - Improve jsx interpolation candidate matching ([#6593](https://github.com/tailwindlabs/tailwindcss/pull/6593))
72
+ - Ensure `@apply` of a rule inside an AtRule works ([#6594](https://github.com/tailwindlabs/tailwindcss/pull/6594))
73
+
74
+ ## [3.0.6] - 2021-12-16
75
+
76
+ ### Fixed
77
+
78
+ - Support square bracket notation in paths ([#6519](https://github.com/tailwindlabs/tailwindcss/pull/6519))
79
+ - Ensure all plugins are executed for a given candidate ([#6540](https://github.com/tailwindlabs/tailwindcss/pull/6540))
80
+
81
+ ## [3.0.5] - 2021-12-15
82
+
83
+ ### Fixed
84
+
85
+ - Revert: add `li` to list-style reset ([9777562d](https://github.com/tailwindlabs/tailwindcss/commit/9777562da37ee631bbf77374c0d14825f09ef9af))
86
+
87
+ ## [3.0.4] - 2021-12-15
88
+
89
+ ### Fixed
90
+
91
+ - Insert always-on defaults layer in correct spot ([#6526](https://github.com/tailwindlabs/tailwindcss/pull/6526))
92
+
93
+ ## [3.0.3] - 2021-12-15
94
+
95
+ ### Added
96
+
97
+ - Warn about invalid globs in `content` ([#6449](https://github.com/tailwindlabs/tailwindcss/pull/6449))
98
+ - Add standalone tailwindcss CLI ([#6506](https://github.com/tailwindlabs/tailwindcss/pull/6506))
99
+ - Add `li` to list-style reset ([00f60e6](https://github.com/tailwindlabs/tailwindcss/commit/00f60e61013c6e4e3419e4b699371a13eb30b75d))
100
+
101
+ ### Fixed
102
+
103
+ - Don't output unparsable values ([#6469](https://github.com/tailwindlabs/tailwindcss/pull/6469))
104
+ - Fix text decoration utilities from overriding the new text decoration color/style/thickness utilities when used with a modifier ([#6378](https://github.com/tailwindlabs/tailwindcss/pull/6378))
105
+ - Move defaults to their own always-on layer ([#6500](https://github.com/tailwindlabs/tailwindcss/pull/6500))
106
+ - Support negative values in safelist patterns ([#6480](https://github.com/tailwindlabs/tailwindcss/pull/6480))
107
+
108
+ ## [3.0.2] - 2021-12-13
109
+
110
+ ### Fixed
111
+
112
+ - Temporarily disable optimize universal defaults, fixes issue with transforms/filters/rings not being `@apply`-able in CSS modules/Svelte components/Vue components ([#6461](https://github.com/tailwindlabs/tailwindcss/pull/6461))
113
+
114
+ ## [3.0.1] - 2021-12-10
115
+
116
+ ### Fixed
117
+
118
+ - Ensure complex variants with multiple classes work ([#6311](https://github.com/tailwindlabs/tailwindcss/pull/6311))
119
+ - Re-add `default` interop to public available functions ([#6348](https://github.com/tailwindlabs/tailwindcss/pull/6348))
120
+ - Detect circular dependencies when using `@apply` ([#6365](https://github.com/tailwindlabs/tailwindcss/pull/6365))
121
+ - Fix defaults optimization when vendor prefixes are involved ([#6369](https://github.com/tailwindlabs/tailwindcss/pull/6369))
122
+
123
+ ## [3.0.0] - 2021-12-09
124
+
125
+ ### Fixed
126
+
127
+ - Enforce the order of some variants (like `before` and `after`) ([#6018](https://github.com/tailwindlabs/tailwindcss/pull/6018))
128
+
129
+ ### Added
130
+
131
+ - Add `placeholder` variant ([#6106](https://github.com/tailwindlabs/tailwindcss/pull/6106))
132
+ - Add composable `touch-action` utilities ([#6115](https://github.com/tailwindlabs/tailwindcss/pull/6115))
133
+ - Add support for "arbitrary properties" ([#6161](https://github.com/tailwindlabs/tailwindcss/pull/6161))
134
+ - Add `portrait` and `landscape` variants ([#6046](https://github.com/tailwindlabs/tailwindcss/pull/6046))
135
+ - Add `text-decoration-style`, `text-decoration-thickness`, and `text-underline-offset` utilities ([#6004](https://github.com/tailwindlabs/tailwindcss/pull/6004))
136
+ - Add `menu` reset to preflight ([#6213](https://github.com/tailwindlabs/tailwindcss/pull/6213))
137
+ - Allow `0` as a valid `length` value ([#6233](https://github.com/tailwindlabs/tailwindcss/pull/6233), [#6259](https://github.com/tailwindlabs/tailwindcss/pull/6259))
138
+ - Add CSS functions to data types ([#6258](https://github.com/tailwindlabs/tailwindcss/pull/6258))
139
+ - Support negative values for `scale-*` utilities ([c48e629](https://github.com/tailwindlabs/tailwindcss/commit/c48e629955585ad18dadba9f470fda59cc448ab7))
140
+ - Improve `length` data type, by validating each value individually ([#6283](https://github.com/tailwindlabs/tailwindcss/pull/6283))
141
+
142
+ ### Changed
143
+
144
+ - Deprecate `decoration-slice` and `decoration-break` in favor `box-decoration-slice` and `box-decoration-break` _(non-breaking)_ ([#6004](https://github.com/tailwindlabs/tailwindcss/pull/6004))
145
+
146
+ ## [3.0.0-alpha.2] - 2021-11-08
147
+
148
+ ### Changed
149
+
150
+ - Don't use pointer cursor on disabled buttons by default ([#5772](https://github.com/tailwindlabs/tailwindcss/pull/5772))
151
+ - Set default content value in preflight instead of within each before/after utility ([#5820](https://github.com/tailwindlabs/tailwindcss/pull/5820))
152
+ - Remove `prefix` as a function ([#5829](https://github.com/tailwindlabs/tailwindcss/pull/5829))
153
+
154
+ ### Added
155
+
156
+ - Add `flex-basis` utilities ([#5671](https://github.com/tailwindlabs/tailwindcss/pull/5671))
157
+ - Make negative values a first-class feature ([#5709](https://github.com/tailwindlabs/tailwindcss/pull/5709))
158
+ - Add `fit-content` values for `min/max-width/height` utilities ([#5638](https://github.com/tailwindlabs/tailwindcss/pull/5638))
159
+ - Add `min/max-content` values for `min/max-height` utilities ([#5729](https://github.com/tailwindlabs/tailwindcss/pull/5729))
160
+ - Add all standard `cursor-*` values by default ([#5734](https://github.com/tailwindlabs/tailwindcss/pull/5734))
161
+ - Add `grow-*` and `shrink-*` utilities, deprecate `flex-grow-*` and `flex-shrink-*` ([#5733](https://github.com/tailwindlabs/tailwindcss/pull/5733))
162
+ - Add `text-decoration-color` utilities ([#5760](https://github.com/tailwindlabs/tailwindcss/pull/5760))
163
+ - Add new declarative `addVariant` API ([#5809](https://github.com/tailwindlabs/tailwindcss/pull/5809))
164
+ - Add first-class `print` variant for targeting printed media ([#5885](https://github.com/tailwindlabs/tailwindcss/pull/5885))
165
+ - Add `outline-style`, `outline-color`, `outline-width` and `outline-offset` utilities ([#5887](https://github.com/tailwindlabs/tailwindcss/pull/5887))
166
+ - Add full color palette for `fill-*` and `stroke-*` utilities (#5933[](https://github.com/tailwindlabs/tailwindcss/pull/5933))
167
+ - Add composable API for colored box shadows ([#5979](https://github.com/tailwindlabs/tailwindcss/pull/5979))
168
+
169
+ ### Fixed
170
+
171
+ - Configure chokidar's `awaitWriteFinish` setting to avoid occasional stale builds on Windows ([#5774](https://github.com/tailwindlabs/tailwindcss/pull/5774))
172
+ - Fix CLI `--content` option ([#5775](https://github.com/tailwindlabs/tailwindcss/pull/5775))
173
+ - Fix before/after utilities overriding custom content values at larger breakpoints ([#5820](https://github.com/tailwindlabs/tailwindcss/pull/5820))
174
+ - Cleanup duplicate properties ([#5830](https://github.com/tailwindlabs/tailwindcss/pull/5830))
175
+ - Allow `_` inside `url()` when using arbitrary values ([#5853](https://github.com/tailwindlabs/tailwindcss/pull/5853))
176
+ - Prevent crashes when using comments in `@layer` AtRules ([#5854](https://github.com/tailwindlabs/tailwindcss/pull/5854))
177
+ - Handle color transformations properly with `theme(...)` for all relevant plugins ([#4533](https://github.com/tailwindlabs/tailwindcss/pull/4533), [#5871](https://github.com/tailwindlabs/tailwindcss/pull/5871))
178
+ - Ensure `@apply`-ing a utility with multiple definitions works ([#5870](https://github.com/tailwindlabs/tailwindcss/pull/5870))
179
+
180
+ ## [3.0.0-alpha.1] - 2021-10-01
181
+
10
182
  ### Changed
11
183
 
12
184
  - Remove AOT engine, make JIT the default ([#5340](https://github.com/tailwindlabs/tailwindcss/pull/5340))
@@ -21,14 +193,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
21
193
  - Add native `aspect-ratio` utilities ([#5359](https://github.com/tailwindlabs/tailwindcss/pull/5359))
22
194
  - Unify config callback helpers into single object ([#5382](https://github.com/tailwindlabs/tailwindcss/pull/5382))
23
195
  - Preserve original color format when adding opacity whenever possible ([#5154](https://github.com/tailwindlabs/tailwindcss/pull/5154))
196
+ - Add `accent-color` utilities ([#5387](https://github.com/tailwindlabs/tailwindcss/pull/5387))
24
197
  - Add `scroll-behavior` utilities ([#5388](https://github.com/tailwindlabs/tailwindcss/pull/5388))
198
+ - Add `will-change` utilities ([#5448](https://github.com/tailwindlabs/tailwindcss/pull/5448))
199
+ - Add `text-indent` utilities ([#5449](https://github.com/tailwindlabs/tailwindcss/pull/5449))
200
+ - Add `column` utilities ([#5457](https://github.com/tailwindlabs/tailwindcss/pull/5457))
25
201
  - Add `border-hidden` utility ([#5485](https://github.com/tailwindlabs/tailwindcss/pull/5485))
26
202
  - Add `align-sub` and `align-super` utilities by default ([#5486](https://github.com/tailwindlabs/tailwindcss/pull/5486))
27
203
  - Add `break-before`, `break-inside` and `break-after` utilities ([#5530](https://github.com/tailwindlabs/tailwindcss/pull/5530))
28
204
  - Add `file` variant for `::file-selector-button` pseudo element ([#4936](https://github.com/tailwindlabs/tailwindcss/pull/4936))
205
+ - Add comprehensive arbitrary value support ([#5568](https://github.com/tailwindlabs/tailwindcss/pull/5568))
29
206
  - Add `touch-action` utilities ([#5603](https://github.com/tailwindlabs/tailwindcss/pull/5603))
30
207
  - Add `inherit` to default color palette ([#5597](https://github.com/tailwindlabs/tailwindcss/pull/5597))
31
208
  - Add `overflow-clip`, `overflow-x-clip` and `overflow-y-clip` utilities ([#5630](https://github.com/tailwindlabs/tailwindcss/pull/5630))
209
+ - Add `[open]` variant ([#5627](https://github.com/tailwindlabs/tailwindcss/pull/5627))
32
210
  - Add `scroll-snap` utilities ([#5637](https://github.com/tailwindlabs/tailwindcss/pull/5637))
33
211
  - Add `border-x` and `border-y` width and color utilities ([#5639](https://github.com/tailwindlabs/tailwindcss/pull/5639))
34
212
 
@@ -38,6 +216,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
38
216
  - Fix using negated `content` globs ([#5625](https://github.com/tailwindlabs/tailwindcss/pull/5625))
39
217
  - Fix using backslashes in `content` globs ([#5628](https://github.com/tailwindlabs/tailwindcss/pull/5628))
40
218
 
219
+ ## [2.2.19] - 2021-10-29
220
+
221
+ ### Fixed
222
+
223
+ - Ensure `corePlugins` order is consisent in AOT mode ([#5928](https://github.com/tailwindlabs/tailwindcss/pull/5928))
224
+
225
+ ## [2.2.18] - 2021-10-29
226
+
227
+ ### Fixed
228
+
229
+ - Bump versions for security vulnerabilities ([#5924](https://github.com/tailwindlabs/tailwindcss/pull/5924))
230
+
231
+ ## [2.2.17] - 2021-10-13
232
+
233
+ ### Fixed
234
+
235
+ - Configure chokidar's `awaitWriteFinish` setting to avoid occasional stale builds on Windows ([#5758](https://github.com/tailwindlabs/tailwindcss/pull/5758))
236
+
41
237
  ## [2.2.16] - 2021-09-26
42
238
 
43
239
  ### Fixed
@@ -1596,7 +1792,25 @@ No release notes
1596
1792
 
1597
1793
  - Everything!
1598
1794
 
1599
- [unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.16...HEAD
1795
+ [unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.12...HEAD
1796
+ [3.0.12]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.11...v3.0.12
1797
+ [3.0.11]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.10...v3.0.11
1798
+ [3.0.10]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.9...v3.0.10
1799
+ [3.0.9]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.8...v3.0.9
1800
+ [3.0.8]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.7...v3.0.8
1801
+ [3.0.7]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.6...v3.0.7
1802
+ [3.0.6]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.5...v3.0.6
1803
+ [3.0.5]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.4...v3.0.5
1804
+ [3.0.4]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.3...v3.0.4
1805
+ [3.0.3]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.2...v3.0.3
1806
+ [3.0.2]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.1...v3.0.2
1807
+ [3.0.1]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.0...v3.0.1
1808
+ [3.0.0]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.0-alpha.2...v3.0.0
1809
+ [3.0.0-alpha.2]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.0-alpha.1...v3.0.0-alpha.2
1810
+ [3.0.0-alpha.1]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.19...v3.0.0-alpha.1
1811
+ [2.2.19]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.18...v2.2.19
1812
+ [2.2.18]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.17...v2.2.18
1813
+ [2.2.17]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.16...v2.2.17
1600
1814
  [2.2.16]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.15...v2.2.16
1601
1815
  [2.2.15]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.14...v2.2.15
1602
1816
  [2.2.14]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.13...v2.2.14
package/README.md CHANGED
@@ -1,10 +1,14 @@
1
1
  <p>
2
- <a href="https://tailwindcss.com/" target="_blank">
3
- <img alt="Tailwind CSS" width="350" src="https://refactoringui.nyc3.cdn.digitaloceanspaces.com/tailwind-logo-sticker.svg">
4
- </a><br>
5
- A utility-first CSS framework for rapidly building custom user interfaces.
2
+ <a href="https://tailwindcss.com/#gh-light-mode-only" target="_blank">
3
+ <img src="./.github/logo-light.svg" alt="Tailwind CSS" width="350" height="70">
4
+ </a>
5
+ <a href="https://tailwindcss.com/#gh-dark-mode-only" target="_blank">
6
+ <img src="./.github/logo-dark.svg" alt="Tailwind CSS" width="350" height="70">
7
+ </a>
6
8
  </p>
7
9
 
10
+ A utility-first CSS framework for rapidly building custom user interfaces.
11
+
8
12
  <p>
9
13
  <a href="https://github.com/tailwindlabs/tailwindcss/actions"><img src="https://img.shields.io/github/workflow/status/tailwindlabs/tailwindcss/Node.js%20CI" alt="Build Status"></a>
10
14
  <a href="https://www.npmjs.com/package/tailwindcss"><img src="https://img.shields.io/npm/dt/tailwindcss.svg" alt="Total Downloads"></a>
package/colors.js CHANGED
@@ -1 +1,2 @@
1
- module.exports = require('./lib/public/colors').default
1
+ let colors = require('./lib/public/colors')
2
+ module.exports = (colors.__esModule ? colors : { default: colors }).default
package/defaultConfig.js CHANGED
@@ -1 +1,2 @@
1
- module.exports = require('./lib/public/default-config').default
1
+ let defaultConfig = require('./lib/public/default-config')
2
+ module.exports = (defaultConfig.__esModule ? defaultConfig : { default: defaultConfig }).default
package/defaultTheme.js CHANGED
@@ -1 +1,2 @@
1
- module.exports = require('./lib/public/default-theme').default
1
+ let defaultTheme = require('./lib/public/default-theme')
2
+ module.exports = (defaultTheme.__esModule ? defaultTheme : { default: defaultTheme }).default
package/lib/cli.js CHANGED
@@ -22,7 +22,7 @@ function _interopRequireDefault(obj) {
22
22
  };
23
23
  }
24
24
  let env = {
25
- DEBUG: process.env.DEBUG !== undefined
25
+ DEBUG: process.env.DEBUG !== undefined && process.env.DEBUG !== '0'
26
26
  };
27
27
  // ---
28
28
  function indentRecursive(node, indent = 0) {
@@ -40,7 +40,26 @@ function formatNodes(root) {
40
40
  root.first.raws.before = '';
41
41
  }
42
42
  }
43
- function help({ message , usage , commands , options }) {
43
+ async function outputFile(file, contents) {
44
+ if (_fs.default.existsSync(file) && await _fs.default.promises.readFile(file, 'utf8') === contents) {
45
+ return; // Skip writing the file
46
+ }
47
+ // Write the file
48
+ await _fs.default.promises.writeFile(file, contents, 'utf8');
49
+ }
50
+ function drainStdin() {
51
+ return new Promise((resolve, reject)=>{
52
+ let result = '';
53
+ process.stdin.on('data', (chunk)=>{
54
+ result += chunk;
55
+ });
56
+ process.stdin.on('end', ()=>resolve(result)
57
+ );
58
+ process.stdin.on('error', (err)=>reject(err)
59
+ );
60
+ });
61
+ }
62
+ function help({ message , usage , commands: commands1 , options }) {
44
63
  let indent = 2;
45
64
  // Render header
46
65
  console.log();
@@ -61,11 +80,11 @@ function help({ message , usage , commands , options }) {
61
80
  }
62
81
  }
63
82
  // Render commands
64
- if (commands && commands.length > 0) {
83
+ if (commands1 && commands1.length > 0) {
65
84
  console.log();
66
85
  console.log('Commands:');
67
- for (let command of commands){
68
- console.log(' '.repeat(indent), command);
86
+ for (let command1 of commands1){
87
+ console.log(' '.repeat(indent), command1);
69
88
  }
70
89
  }
71
90
  // Render options
@@ -86,12 +105,12 @@ function help({ message , usage , commands , options }) {
86
105
  }
87
106
  console.log();
88
107
  console.log('Options:');
89
- for (let { flags , description , deprecated } of Object.values(groupedOptions)){
108
+ for (let { flags: flags1 , description , deprecated } of Object.values(groupedOptions)){
90
109
  if (deprecated) continue;
91
- if (flags.length === 1) {
92
- console.log(' '.repeat(indent + 4 /* 4 = "-i, ".length */ ), flags.slice().reverse().join(', ').padEnd(20, ' '), description);
110
+ if (flags1.length === 1) {
111
+ console.log(' '.repeat(indent + 4 /* 4 = "-i, ".length */ ), flags1.slice().reverse().join(', ').padEnd(20, ' '), description);
93
112
  } else {
94
- console.log(' '.repeat(indent), flags.slice().reverse().join(', ').padEnd(24, ' '), description);
113
+ console.log(' '.repeat(indent), flags1.slice().reverse().join(', ').padEnd(24, ' '), description);
95
114
  }
96
115
  }
97
116
  }
@@ -187,8 +206,8 @@ if (process.stdout.isTTY /* Detect redirecting output to a file */ && (process.
187
206
  'tailwindcss [--input input.css] [--output output.css] [--watch] [options...]',
188
207
  'tailwindcss init [--full] [--postcss] [options...]',
189
208
  ],
190
- commands: Object.keys(commands).filter((command)=>command !== 'build'
191
- ).map((command)=>`${command} [options]`
209
+ commands: Object.keys(commands).filter((command2)=>command2 !== 'build'
210
+ ).map((command3)=>`${command3} [options]`
192
211
  ),
193
212
  options: {
194
213
  ...commands.build.args,
@@ -210,8 +229,8 @@ if (commands[command] === undefined) {
210
229
  usage: [
211
230
  'tailwindcss <command> [options]'
212
231
  ],
213
- commands: Object.keys(commands).filter((command)=>command !== 'build'
214
- ).map((command)=>`${command} [options]`
232
+ commands: Object.keys(commands).filter((command4)=>command4 !== 'build'
233
+ ).map((command5)=>`${command5} [options]`
215
234
  ),
216
235
  options: sharedFlags
217
236
  });
@@ -247,16 +266,16 @@ let args = (()=>{
247
266
  handler = flags[handler];
248
267
  }
249
268
  if (!handler) continue;
250
- let args = [];
269
+ let args1 = [];
251
270
  let offset = i + 1;
252
271
  // Parse args for current flag
253
272
  while(result['_'][offset] && !result['_'][offset].startsWith('-')){
254
- args.push(result['_'][offset++]);
273
+ args1.push(result['_'][offset++]);
255
274
  }
256
275
  // Cleanup manually parsed flags + args
257
- result['_'].splice(i, 1 + args.length);
276
+ result['_'].splice(i, 1 + args1.length);
258
277
  // Set the resolved value in the `result` object
259
- result[flagName] = handler.type(args.length === 0 ? undefined : args.length === 1 ? args[0] : args, flagName);
278
+ result[flagName] = handler.type(args1.length === 0 ? undefined : args1.length === 1 ? args1[0] : args1, flagName);
260
279
  }
261
280
  // Ensure that the `command` is always the first argument in the `args`.
262
281
  // This is important so that we don't have to check if a default command
@@ -336,7 +355,7 @@ async function build() {
336
355
  console.error('[deprecation] Running tailwindcss without -i, please provide an input file.');
337
356
  input = args['--input'] = args['_'][1];
338
357
  }
339
- if (input && !_fs.default.existsSync(input = _path.default.resolve(input))) {
358
+ if (input && input !== '-' && !_fs.default.existsSync(input = _path.default.resolve(input))) {
340
359
  console.error(`Specified input file ${args['--input']} does not exist.`);
341
360
  process.exit(9);
342
361
  }
@@ -396,15 +415,12 @@ async function build() {
396
415
  }
397
416
  }
398
417
  if (args['--content']) {
399
- resolvedConfig.content = args['--content'].split(/(?<!{[^}]+),/);
418
+ resolvedConfig.content.files = args['--content'].split(/(?<!{[^}]+),/);
400
419
  }
401
420
  return resolvedConfig;
402
421
  }
403
- function extractContent(config) {
404
- return config.content.content.concat(config.content.safelist);
405
- }
406
422
  function extractFileGlobs(config) {
407
- return extractContent(config).filter((file)=>{
423
+ return config.content.files.filter((file)=>{
408
424
  // Strings in this case are files / globs. If it is something else,
409
425
  // like an object it's probably a raw content object. But this object
410
426
  // is not watchable, so let's remove it.
@@ -413,7 +429,7 @@ async function build() {
413
429
  );
414
430
  }
415
431
  function extractRawContent(config) {
416
- return extractContent(config).filter((file)=>{
432
+ return config.content.files.filter((file)=>{
417
433
  return typeof file === 'object' && file !== null;
418
434
  });
419
435
  }
@@ -425,7 +441,7 @@ async function build() {
425
441
  for (let file of files){
426
442
  changedContent.push({
427
443
  content: _fs.default.readFileSync(_path.default.resolve(file), 'utf8'),
428
- extension: _path.default.extname(file)
444
+ extension: _path.default.extname(file).slice(1)
429
445
  });
430
446
  }
431
447
  // Resolve raw content in the tailwind config
@@ -502,10 +518,8 @@ async function build() {
502
518
  return process.stdout.write(result.css);
503
519
  }
504
520
  return Promise.all([
505
- _fs.default.promises.writeFile(output, result.css, ()=>true
506
- ),
507
- result.map && _fs.default.writeFile(output + '.map', result.map.toString(), ()=>true
508
- ),
521
+ outputFile(output, result.css),
522
+ result.map && outputFile(output + '.map', result.map.toString()),
509
523
  ].filter(Boolean));
510
524
  }).then(()=>{
511
525
  let end = process.hrtime.bigint();
@@ -513,8 +527,19 @@ async function build() {
513
527
  console.error('Done in', (end - start) / BigInt(1000000) + 'ms.');
514
528
  });
515
529
  }
516
- let css = input ? _fs.default.readFileSync(_path.default.resolve(input), 'utf8') : '@tailwind base; @tailwind components; @tailwind utilities';
517
- return processCSS(css);
530
+ let css1 = await (()=>{
531
+ // Piping in data, let's drain the stdin
532
+ if (input === '-') {
533
+ return drainStdin();
534
+ }
535
+ // Input file has been provided
536
+ if (input) {
537
+ return _fs.default.readFileSync(_path.default.resolve(input), 'utf8');
538
+ }
539
+ // No input file provided, fallback to default atrules
540
+ return '@tailwind base; @tailwind components; @tailwind utilities';
541
+ })();
542
+ return processCSS(css1);
518
543
  }
519
544
  let context = null;
520
545
  async function startWatcher() {
@@ -524,8 +549,8 @@ async function build() {
524
549
  let watcher = null;
525
550
  function refreshConfig() {
526
551
  env.DEBUG && console.time('Module dependencies');
527
- for (let file of configDependencies){
528
- delete require.cache[require.resolve(file)];
552
+ for (let file1 of configDependencies){
553
+ delete require.cache[require.resolve(file1)];
529
554
  }
530
555
  if (configPath) {
531
556
  configDependencies = (0, _getModuleDependencies).default(configPath).map(({ file })=>file
@@ -622,11 +647,9 @@ async function build() {
622
647
  if (!output) {
623
648
  return process.stdout.write(result.css);
624
649
  }
625
- await Promise.all([
626
- _fs.default.promises.writeFile(output, result.css, ()=>true
627
- ),
628
- result.map && _fs.default.writeFile(output + '.map', result.map.toString(), ()=>true
629
- ),
650
+ return Promise.all([
651
+ outputFile(output, result.css),
652
+ result.map && outputFile(output + '.map', result.map.toString()),
630
653
  ].filter(Boolean));
631
654
  }).then(()=>{
632
655
  let end = process.hrtime.bigint();
@@ -639,44 +662,59 @@ async function build() {
639
662
  }
640
663
  });
641
664
  }
642
- let css = input ? _fs.default.readFileSync(_path.default.resolve(input), 'utf8') : '@tailwind base; @tailwind components; @tailwind utilities';
643
- let result1 = await processCSS(css);
665
+ let css2 = await (()=>{
666
+ // Piping in data, let's drain the stdin
667
+ if (input === '-') {
668
+ return drainStdin();
669
+ }
670
+ // Input file has been provided
671
+ if (input) {
672
+ return _fs.default.readFileSync(_path.default.resolve(input), 'utf8');
673
+ }
674
+ // No input file provided, fallback to default atrules
675
+ return '@tailwind base; @tailwind components; @tailwind utilities';
676
+ })();
677
+ let result1 = await processCSS(css2);
644
678
  env.DEBUG && console.timeEnd('Finished in');
645
679
  return result1;
646
680
  }
647
- let config = refreshConfig(configPath);
681
+ let config1 = refreshConfig(configPath);
648
682
  if (input) {
649
683
  contextDependencies.add(_path.default.resolve(input));
650
684
  }
651
685
  watcher = _chokidar.default.watch([
652
686
  ...contextDependencies,
653
- ...extractFileGlobs(config)
687
+ ...extractFileGlobs(config1)
654
688
  ], {
655
- ignoreInitial: true
689
+ ignoreInitial: true,
690
+ awaitWriteFinish: process.platform === 'win32' ? {
691
+ stabilityThreshold: 50,
692
+ pollInterval: 10
693
+ } : false
656
694
  });
657
695
  let chain = Promise.resolve();
658
696
  watcher.on('change', async (file)=>{
659
697
  if (contextDependencies.has(file)) {
660
698
  env.DEBUG && console.time('Resolve config');
661
699
  context = null;
662
- config = refreshConfig(configPath);
700
+ config1 = refreshConfig(configPath);
663
701
  env.DEBUG && console.timeEnd('Resolve config');
664
702
  env.DEBUG && console.time('Watch new files');
665
- let globs = extractFileGlobs(config);
703
+ let globs = extractFileGlobs(config1);
666
704
  watcher.add(configDependencies);
667
705
  watcher.add(globs);
668
706
  env.DEBUG && console.timeEnd('Watch new files');
669
707
  chain = chain.then(async ()=>{
670
- changedContent.push(...getChangedContent(config));
671
- await rebuild(config);
708
+ changedContent.push(...getChangedContent(config1));
709
+ await rebuild(config1);
672
710
  });
673
711
  } else {
674
712
  chain = chain.then(async ()=>{
675
713
  changedContent.push({
676
714
  content: _fs.default.readFileSync(_path.default.resolve(file), 'utf8'),
677
- extension: _path.default.extname(file)
715
+ extension: _path.default.extname(file).slice(1)
678
716
  });
679
- await rebuild(config);
717
+ await rebuild(config1);
680
718
  });
681
719
  }
682
720
  });
@@ -684,14 +722,14 @@ async function build() {
684
722
  chain = chain.then(async ()=>{
685
723
  changedContent.push({
686
724
  content: _fs.default.readFileSync(_path.default.resolve(file), 'utf8'),
687
- extension: _path.default.extname(file)
725
+ extension: _path.default.extname(file).slice(1)
688
726
  });
689
- await rebuild(config);
727
+ await rebuild(config1);
690
728
  });
691
729
  });
692
730
  chain = chain.then(()=>{
693
- changedContent.push(...getChangedContent(config));
694
- return rebuild(config);
731
+ changedContent.push(...getChangedContent(config1));
732
+ return rebuild(config1);
695
733
  });
696
734
  }
697
735
  if (shouldWatch) {
package/lib/constants.js CHANGED
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
5
- exports.simpleConfigStubFile = exports.defaultPostCssConfigFile = exports.defaultConfigStubFile = exports.supportedPostCssConfigFile = exports.cjsConfigFile = exports.supportedConfigFiles = exports.defaultPostCssConfigStubFile = exports.cli = exports.cjsPostCssConfigFile = exports.defaultConfigFile = void 0;
5
+ exports.defaultPostCssConfigStubFile = exports.simpleConfigStubFile = exports.defaultConfigStubFile = exports.supportedPostCssConfigFile = exports.supportedConfigFiles = exports.cjsPostCssConfigFile = exports.cjsConfigFile = exports.defaultPostCssConfigFile = exports.defaultConfigFile = exports.cli = void 0;
6
6
  var _path = _interopRequireDefault(require("path"));
7
7
  function _interopRequireDefault(obj) {
8
8
  return obj && obj.__esModule ? obj : {
@@ -35,6 +35,7 @@ var _default = [
35
35
  "flex",
36
36
  "flexShrink",
37
37
  "flexGrow",
38
+ "flexBasis",
38
39
  "tableLayout",
39
40
  "borderCollapse",
40
41
  "transformOrigin",
@@ -124,6 +125,10 @@ var _default = [
124
125
  "textColor",
125
126
  "textOpacity",
126
127
  "textDecoration",
128
+ "textDecorationColor",
129
+ "textDecorationStyle",
130
+ "textDecorationThickness",
131
+ "textUnderlineOffset",
127
132
  "fontSmoothing",
128
133
  "placeholderColor",
129
134
  "placeholderOpacity",
@@ -133,7 +138,11 @@ var _default = [
133
138
  "backgroundBlendMode",
134
139
  "mixBlendMode",
135
140
  "boxShadow",
136
- "outline",
141
+ "boxShadowColor",
142
+ "outlineStyle",
143
+ "outlineWidth",
144
+ "outlineOffset",
145
+ "outlineColor",
137
146
  "ringWidth",
138
147
  "ringColor",
139
148
  "ringOpacity",