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
package/CHANGELOG.md DELETED
@@ -1,1843 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
8
- ## [Unreleased]
9
-
10
- ### Fixed
11
-
12
- - Enforce the order of some variants (like `before` and `after`) ([#6018](https://github.com/tailwindlabs/tailwindcss/pull/6018))
13
-
14
- ### Added
15
-
16
- - Add `placeholder` variant ([#6106](https://github.com/tailwindlabs/tailwindcss/pull/6106))
17
- - Add tuple syntax for configuring screens while guaranteeing order ([#5956](https://github.com/tailwindlabs/tailwindcss/pull/5956))
18
- - Add combinable `touch-action` support ([#6115](https://github.com/tailwindlabs/tailwindcss/pull/6115))
19
- - Add support for "arbitrary properties" ([#6161](https://github.com/tailwindlabs/tailwindcss/pull/6161))
20
- - Add `portrait` and `landscape` variants ([#6046](https://github.com/tailwindlabs/tailwindcss/pull/6046))
21
- - Add `text-decoration-style`, `text-decoration-thickness`, and `text-underline-offset` utilities ([#6004](https://github.com/tailwindlabs/tailwindcss/pull/6004))
22
- - Add `menu` reset to preflight ([#6213](https://github.com/tailwindlabs/tailwindcss/pull/6213))
23
- - Allow `0` as a valid `length` value ([#6233](https://github.com/tailwindlabs/tailwindcss/pull/6233), [#6259](https://github.com/tailwindlabs/tailwindcss/pull/6259))
24
- - Add css functions to data types ([#6258](https://github.com/tailwindlabs/tailwindcss/pull/6258))
25
-
26
- ### Changed
27
-
28
- - 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))
29
-
30
- ## [3.0.0-alpha.2] - 2021-11-08
31
-
32
- ### Changed
33
-
34
- - Don't use pointer cursor on disabled buttons by default ([#5772](https://github.com/tailwindlabs/tailwindcss/pull/5772))
35
- - Set default content value in preflight instead of within each before/after utility ([#5820](https://github.com/tailwindlabs/tailwindcss/pull/5820))
36
- - Remove `prefix` as a function ([#5829](https://github.com/tailwindlabs/tailwindcss/pull/5829))
37
-
38
- ### Added
39
-
40
- - Add `flex-basis` utilities ([#5671](https://github.com/tailwindlabs/tailwindcss/pull/5671))
41
- - Make negative values a first-class feature ([#5709](https://github.com/tailwindlabs/tailwindcss/pull/5709))
42
- - Add `fit-content` values for `min/max-width/height` utilities ([#5638](https://github.com/tailwindlabs/tailwindcss/pull/5638))
43
- - Add `min/max-content` values for `min/max-height` utilities ([#5729](https://github.com/tailwindlabs/tailwindcss/pull/5729))
44
- - Add all standard `cursor-*` values by default ([#5734](https://github.com/tailwindlabs/tailwindcss/pull/5734))
45
- - Add `grow-*` and `shrink-*` utilities, deprecate `flex-grow-*` and `flex-shrink-*` ([#5733](https://github.com/tailwindlabs/tailwindcss/pull/5733))
46
- - Add `text-decoration-color` utilities ([#5760](https://github.com/tailwindlabs/tailwindcss/pull/5760))
47
- - Add new declarative `addVariant` API ([#5809](https://github.com/tailwindlabs/tailwindcss/pull/5809))
48
- - Add first-class `print` variant for targeting printed media ([#5885](https://github.com/tailwindlabs/tailwindcss/pull/5885))
49
- - Add full color palette for `fill-*` and `stroke-*` utilities (#5933[](https://github.com/tailwindlabs/tailwindcss/pull/5933))
50
- - Add composable API for colored box shadows ([#5979](https://github.com/tailwindlabs/tailwindcss/pull/5979))
51
-
52
- ### Fixed
53
-
54
- - Configure chokidar's `awaitWriteFinish` setting to avoid occasional stale builds on Windows ([#5774](https://github.com/tailwindlabs/tailwindcss/pull/5774))
55
- - Fix CLI `--content` option ([#5775](https://github.com/tailwindlabs/tailwindcss/pull/5775))
56
- - Fix before/after utilities overriding custom content values at larger breakpoints ([#5820](https://github.com/tailwindlabs/tailwindcss/pull/5820))
57
- - Cleanup duplicate properties ([#5830](https://github.com/tailwindlabs/tailwindcss/pull/5830))
58
- - Allow `_` inside `url()` when using arbitrary values ([#5853](https://github.com/tailwindlabs/tailwindcss/pull/5853))
59
- - Prevent crashes when using comments in `@layer` AtRules ([#5854](https://github.com/tailwindlabs/tailwindcss/pull/5854))
60
- - 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))
61
- - Ensure `@apply`-ing a utility with multiple definitions works ([#5870](https://github.com/tailwindlabs/tailwindcss/pull/5870))
62
-
63
- ## [3.0.0-alpha.1] - 2021-10-01
64
-
65
- ### Changed
66
-
67
- - Remove AOT engine, make JIT the default ([#5340](https://github.com/tailwindlabs/tailwindcss/pull/5340))
68
- - Throw when trying to `@apply` the `group` class ([#4666](https://github.com/tailwindlabs/tailwindcss/pull/4666))
69
- - Remove dependency on `modern-normalize`, inline and consolidate with Preflight ([#5358](https://github.com/tailwindlabs/tailwindcss/pull/5358))
70
- - Enable extended color palette by default with updated color names ([#5384](https://github.com/tailwindlabs/tailwindcss/pull/5384))
71
- - Move `vertical-align` values to config file instead of hard-coding ([#5487](https://github.com/tailwindlabs/tailwindcss/pull/5487))
72
- - Rename `overflow-clip` to `text-clip` and `overflow-ellipsis` to `text-ellipsis` ([#5630](https://github.com/tailwindlabs/tailwindcss/pull/5630))
73
-
74
- ### Added
75
-
76
- - Add native `aspect-ratio` utilities ([#5359](https://github.com/tailwindlabs/tailwindcss/pull/5359))
77
- - Unify config callback helpers into single object ([#5382](https://github.com/tailwindlabs/tailwindcss/pull/5382))
78
- - Preserve original color format when adding opacity whenever possible ([#5154](https://github.com/tailwindlabs/tailwindcss/pull/5154))
79
- - Add `accent-color` utilities ([#5387](https://github.com/tailwindlabs/tailwindcss/pull/5387))
80
- - Add `scroll-behavior` utilities ([#5388](https://github.com/tailwindlabs/tailwindcss/pull/5388))
81
- - Add `will-change` utilities ([#5448](https://github.com/tailwindlabs/tailwindcss/pull/5448))
82
- - Add `text-indent` utilities ([#5449](https://github.com/tailwindlabs/tailwindcss/pull/5449))
83
- - Add `column` utilities ([#5457](https://github.com/tailwindlabs/tailwindcss/pull/5457))
84
- - Add `border-hidden` utility ([#5485](https://github.com/tailwindlabs/tailwindcss/pull/5485))
85
- - Add `align-sub` and `align-super` utilities by default ([#5486](https://github.com/tailwindlabs/tailwindcss/pull/5486))
86
- - Add `break-before`, `break-inside` and `break-after` utilities ([#5530](https://github.com/tailwindlabs/tailwindcss/pull/5530))
87
- - Add `file` variant for `::file-selector-button` pseudo element ([#4936](https://github.com/tailwindlabs/tailwindcss/pull/4936))
88
- - Add comprehensive arbitrary value support ([#5568](https://github.com/tailwindlabs/tailwindcss/pull/5568))
89
- - Add `touch-action` utilities ([#5603](https://github.com/tailwindlabs/tailwindcss/pull/5603))
90
- - Add `inherit` to default color palette ([#5597](https://github.com/tailwindlabs/tailwindcss/pull/5597))
91
- - Add `overflow-clip`, `overflow-x-clip` and `overflow-y-clip` utilities ([#5630](https://github.com/tailwindlabs/tailwindcss/pull/5630))
92
- - Add `[open]` variant ([#5627](https://github.com/tailwindlabs/tailwindcss/pull/5627))
93
- - Add `scroll-snap` utilities ([#5637](https://github.com/tailwindlabs/tailwindcss/pull/5637))
94
- - Add `border-x` and `border-y` width and color utilities ([#5639](https://github.com/tailwindlabs/tailwindcss/pull/5639))
95
-
96
- ### Fixed
97
-
98
- - Fix defining colors as functions when color opacity plugins are disabled ([#5470](https://github.com/tailwindlabs/tailwindcss/pull/5470))
99
- - Fix using negated `content` globs ([#5625](https://github.com/tailwindlabs/tailwindcss/pull/5625))
100
- - Fix using backslashes in `content` globs ([#5628](https://github.com/tailwindlabs/tailwindcss/pull/5628))
101
-
102
- ## [2.2.19] - 2021-10-29
103
-
104
- ### Fixed
105
-
106
- - Ensure `corePlugins` order is consisent in AOT mode ([#5928](https://github.com/tailwindlabs/tailwindcss/pull/5928))
107
-
108
- ## [2.2.18] - 2021-10-29
109
-
110
- ### Fixed
111
-
112
- - Bump versions for security vulnerabilities ([#5924](https://github.com/tailwindlabs/tailwindcss/pull/5924))
113
-
114
- ## [2.2.17] - 2021-10-13
115
-
116
- ### Fixed
117
-
118
- - Configure chokidar's `awaitWriteFinish` setting to avoid occasional stale builds on Windows ([#5758](https://github.com/tailwindlabs/tailwindcss/pull/5758))
119
-
120
- ## [2.2.16] - 2021-09-26
121
-
122
- ### Fixed
123
-
124
- - JIT: Properly handle animations that use CSS custom properties ([#5602](https://github.com/tailwindlabs/tailwindcss/pull/5602))
125
-
126
- ## [2.2.15] - 2021-09-10
127
-
128
- ### Fixed
129
-
130
- - Ensure using CLI without `-i` for input file continues to work even though deprecated ([#5464](https://github.com/tailwindlabs/tailwindcss/pull/5464))
131
-
132
- ## [2.2.14] - 2021-09-08
133
-
134
- ### Fixed
135
-
136
- - Only use `@defaults` in JIT, switch back to `clean-css` in case there's any meaningful differences in the output ([bf248cb](https://github.com/tailwindlabs/tailwindcss/commit/bf248cb0de889d48854fbdd26536f4a492556efd))
137
-
138
- ## [2.2.13] - 2021-09-08
139
-
140
- ### Fixed
141
-
142
- - Replace `clean-css` with `cssnano` for CDN builds to fix minified builds ([75cc3ca](https://github.com/tailwindlabs/tailwindcss/commit/75cc3ca305aedddc8a85f3df1a420fefad3fb5c4))
143
-
144
- ## [2.2.12] - 2021-09-08
145
-
146
- ### Fixed
147
-
148
- - Ensure that divide utilities inject a default border color ([#5438](https://github.com/tailwindlabs/tailwindcss/pull/5438))
149
-
150
- ## [2.2.11] - 2021-09-07
151
-
152
- ### Fixed
153
-
154
- - Rebundle to fix missing CLI peer dependencies
155
-
156
- ## [2.2.10] - 2021-09-06
157
-
158
- ### Fixed
159
-
160
- - Fix build error when using `presets: []` in config file ([#4903](https://github.com/tailwindlabs/tailwindcss/pull/4903))
161
-
162
- ### Added
163
-
164
- - Reintroduce universal selector optimizations under experimental `optimizeUniversalDefaults` flag ([a9e160c](https://github.com/tailwindlabs/tailwindcss/commit/a9e160cf9acb75a2bbac34f8864568b12940f89a))
165
-
166
- ## [2.2.9] - 2021-08-30
167
-
168
- ### Fixed
169
-
170
- - JIT: Fix `@apply`ing utilities that contain variants + the important modifier ([#4854](https://github.com/tailwindlabs/tailwindcss/pull/4854))
171
- - JIT: Don't strip "null" when parsing tracked file paths ([#5008](https://github.com/tailwindlabs/tailwindcss/pull/5008))
172
- - Pin `clean-css` to v5.1.4 to fix empty CSS variables in CDN builds ([#5338](https://github.com/tailwindlabs/tailwindcss/pull/5338))
173
-
174
- ## [2.2.8] - 2021-08-27
175
-
176
- ### Fixed
177
-
178
- - Improve accessibility of default link focus styles in Firefox ([#5082](https://github.com/tailwindlabs/tailwindcss/pull/5082))
179
- - JIT: Fix animation variants corrupting keyframes rules ([#5223](https://github.com/tailwindlabs/tailwindcss/pull/5223))
180
- - JIT: Ignore escaped commas when splitting selectors to apply prefixes ([#5239](https://github.com/tailwindlabs/tailwindcss/pull/5239/))
181
- - Nesting: Maintain PostCSS node sources when handling `@apply` ([#5249](https://github.com/tailwindlabs/tailwindcss/pull/5249))
182
- - JIT: Fix support for animation lists ([#5252](https://github.com/tailwindlabs/tailwindcss/pull/5252))
183
- - JIT: Fix arbitrary value support for `object-position` utilities ([#5245](https://github.com/tailwindlabs/tailwindcss/pull/5245))
184
- - CLI: Abort watcher if stdin is closed to avoid zombie processes ([#4997](https://github.com/tailwindlabs/tailwindcss/pull/4997))
185
- - JIT: Ignore arbitrary values with unbalanced brackets ([#5293](https://github.com/tailwindlabs/tailwindcss/pull/5293))
186
-
187
- ## [2.2.7] - 2021-07-23
188
-
189
- ### Fixed
190
-
191
- - Temporarily revert runtime performance optimizations introduced in v2.2.5, use universal selector again ([#5060](https://github.com/tailwindlabs/tailwindcss/pull/5060))
192
-
193
- ## [2.2.6] - 2021-07-21
194
-
195
- ### Fixed
196
-
197
- - Fix issue where base styles not generated for translate transforms in JIT ([#5038](https://github.com/tailwindlabs/tailwindcss/pull/5038))
198
-
199
- ## [2.2.5] - 2021-07-21
200
-
201
- ### Added
202
-
203
- - Added `self-baseline` utility (I know this is a patch release, no one's going to die relax) ([#5000](https://github.com/tailwindlabs/tailwindcss/pull/5000))
204
-
205
- ### Changed
206
-
207
- - JIT: Optimize universal selector usage by inlining only the relevant selectors ([#4850](https://github.com/tailwindlabs/tailwindcss/pull/4850)))
208
-
209
- This provides a very significant performance boost on pages with a huge number of DOM nodes, but there's a chance it could be a breaking change in very rare edge cases we haven't thought of. Please open an issue if anything related to shadows, rings, transforms, filters, or backdrop-filters seems to be behaving differently after upgrading.
210
-
211
- ### Fixed
212
-
213
- - Fix support for `step-start` and `step-end` in animation utilities ([#4795](https://github.com/tailwindlabs/tailwindcss/pull/4795)))
214
- - JIT: Prevent presence of `!*` in templates from ruining everything ([#4816](https://github.com/tailwindlabs/tailwindcss/pull/4816)))
215
- - JIT: Improve support for quotes in arbitrary values ([#4817](https://github.com/tailwindlabs/tailwindcss/pull/4817)))
216
- - Fix filter/backdrop-filter/transform utilities being inserted into the wrong position if not all core plugins are enabled ([#4852](https://github.com/tailwindlabs/tailwindcss/pull/4852)))
217
- - JIT: Fix `@layer` rules being mistakenly inserted during incremental rebuilds ([#4853](https://github.com/tailwindlabs/tailwindcss/pull/4853)))
218
- - Improve build performance for projects with many small non-Tailwind stylesheets ([#4644](https://github.com/tailwindlabs/tailwindcss/pull/4644))
219
- - Ensure `[hidden]` works as expected on elements where we override the default `display` value in Preflight ([#4873](https://github.com/tailwindlabs/tailwindcss/pull/4873))
220
- - Fix variant configuration not being applied to `backdropOpacity` utilities ([#4892](https://github.com/tailwindlabs/tailwindcss/pull/4892))
221
-
222
- ## [2.2.4] - 2021-06-23
223
-
224
- ### Fixed
225
-
226
- - Remove `postinstall` script that was preventing people from installing the library ([1eacfb9](https://github.com/tailwindlabs/tailwindcss/commit/1eacfb98849c0d4737e0af3595ddec8c73addaac))
227
-
228
- ## [2.2.3] - 2021-06-23
229
-
230
- ### Added
231
-
232
- - Pass extended color palette to theme closures so it can be used without installing Tailwind when using `npx tailwindcss` ([359252c](https://github.com/tailwindlabs/tailwindcss/commit/359252c9b429e81217c28eb3ca7bab73d8f81e6d))
233
-
234
- ### Fixed
235
-
236
- - JIT: Explicitly error when `-` is used as a custom separator ([#4704](https://github.com/tailwindlabs/tailwindcss/pull/4704))
237
- - JIT: Don't add multiple `~` when stacking `peer-*` variants ([#4757](https://github.com/tailwindlabs/tailwindcss/pull/4757))
238
- - Remove outdated focus style fix in Preflight ([#4780](https://github.com/tailwindlabs/tailwindcss/pull/4780))
239
- - Enable `purge` if provided on the CLI ([#4772](https://github.com/tailwindlabs/tailwindcss/pull/4772))
240
- - JIT: Fix error when not using a config file with postcss-cli ([#4773](https://github.com/tailwindlabs/tailwindcss/pull/4773))
241
- - Fix issue with `resolveConfig` not being importable in Next.js pags ([#4725](https://github.com/tailwindlabs/tailwindcss/pull/4725))
242
-
243
- ## [2.2.2] - 2021-06-18
244
-
245
- ### Fixed
246
-
247
- - JIT: Reintroduce `transform`, `filter`, and `backdrop-filter` classes purely to create stacking contexts to minimize the impact of the breaking change ([#4700](https://github.com/tailwindlabs/tailwindcss/pull/4700))
248
-
249
- ## [2.2.1] - 2021-06-18
250
-
251
- ### Fixed
252
-
253
- - Recover from errors gracefully in CLI watch mode ([#4693](https://github.com/tailwindlabs/tailwindcss/pull/4693))
254
- - Fix issue with media queries not being generated properly when using PostCSS 7 ([#4695](https://github.com/tailwindlabs/tailwindcss/pull/4695))
255
-
256
- ## [2.2.0] - 2021-06-17
257
-
258
- ### Changed
259
-
260
- - JIT: Use "tracking" context by default instead of "watching" context for improved reliability with most bundlers ([#4514](https://github.com/tailwindlabs/tailwindcss/pull/4514))
261
-
262
- Depending on which tooling you use, you may need to explicitly set `TAILWIND_MODE=watch` until your build runner has been updated to support PostCSS's `dir-dependency` message type.
263
-
264
- ### Added
265
-
266
- - Add `background-origin` utilities ([#4117](https://github.com/tailwindlabs/tailwindcss/pull/4117))
267
- - Improve `@apply` performance in projects that process many CSS sources ([#3178](https://github.com/tailwindlabs/tailwindcss/pull/3718))
268
- - JIT: Don't use CSS variables for color utilities if color opacity utilities are disabled ([#3984](https://github.com/tailwindlabs/tailwindcss/pull/3984))
269
- - JIT: Redesign `matchUtilities` API to make it more suitable for third-party use ([#4232](https://github.com/tailwindlabs/tailwindcss/pull/4232))
270
- - JIT: Support applying important utility variants ([#4260](https://github.com/tailwindlabs/tailwindcss/pull/4260))
271
- - JIT: Support coercing arbitrary values when the type isn't detectable ([#4263](https://github.com/tailwindlabs/tailwindcss/pull/4263))
272
- - JIT: Support for `raw` syntax in `purge` config ([#4272](https://github.com/tailwindlabs/tailwindcss/pull/4272))
273
- - Add `empty` variant ([#3298](https://github.com/tailwindlabs/tailwindcss/pull/3298))
274
- - Update `modern-normalize` to v1.1 ([#4287](https://github.com/tailwindlabs/tailwindcss/pull/4287))
275
- - Implement `theme` function internally, remove `postcss-functions` dependency ([#4317](https://github.com/tailwindlabs/tailwindcss/pull/4317))
276
- - Add `screen` function to improve nesting plugin compatibility ([#4318](https://github.com/tailwindlabs/tailwindcss/pull/4318))
277
- - JIT: Add universal shorthand color opacity syntax ([#4348](https://github.com/tailwindlabs/tailwindcss/pull/4348))
278
- - JIT: Add `@tailwind variants` directive to replace `@tailwind screens` ([#4356](https://github.com/tailwindlabs/tailwindcss/pull/4356))
279
- - JIT: Add support for PostCSS `dir-dependency` messages in `TAILWIND_DISABLE_TOUCH` mode ([#4388](https://github.com/tailwindlabs/tailwindcss/pull/4388))
280
- - JIT: Add per-side border color utilities ([#4404](https://github.com/tailwindlabs/tailwindcss/pull/4404))
281
- - JIT: Add support for `before` and `after` pseudo-element variants and `content` utilities ([#4461](https://github.com/tailwindlabs/tailwindcss/pull/4461))
282
- - Add new `transform` and `extract` APIs to simplify PurgeCSS/JIT customization ([#4469](https://github.com/tailwindlabs/tailwindcss/pull/4469))
283
- - JIT: Add exhaustive pseudo-class and pseudo-element variant support ([#4482](https://github.com/tailwindlabs/tailwindcss/pull/4482))
284
- - JIT: Add `caret-color` utilities ([#4499](https://github.com/tailwindlabs/tailwindcss/pull/4499))
285
- - Rename `lightBlue` to `sky`, emit console warning when using deprecated name ([#4513](https://github.com/tailwindlabs/tailwindcss/pull/4513))
286
- - New CLI with improved JIT support, `--watch` mode, and more ([#4526](https://github.com/tailwindlabs/tailwindcss/pull/4526), [4558](https://github.com/tailwindlabs/tailwindcss/pull/4558))
287
- - JIT: Add new `peer-*` variants for styling based on sibling state ([#4556](https://github.com/tailwindlabs/tailwindcss/pull/4556))
288
- - Expose `safelist` as a top-level option under `purge` for both JIT and classic engines ([#4580](https://github.com/tailwindlabs/tailwindcss/pull/4580))
289
- - JIT: Remove need for `transform` class when using classes like `scale-*`, `rotate-*`, etc. ([#4604](https://github.com/tailwindlabs/tailwindcss/pull/4604))
290
- - JIT: Remove need for `filter` and `backdrop-filter` classes when using classes like `contrast-*`, `backdrop-blur-*`, etc. ([#4614](https://github.com/tailwindlabs/tailwindcss/pull/4614))
291
- - Support passing a custom path for your PostCSS configuration in the Tailwind CLI ([#4607](https://github.com/tailwindlabs/tailwindcss/pull/4607))
292
- - Add `blur-none` by default with intent to deprecate `blur-0` ([#4614](https://github.com/tailwindlabs/tailwindcss/pull/4614))
293
-
294
- ### Fixed
295
-
296
- - JIT: Improve support for Svelte class bindings ([#4187](https://github.com/tailwindlabs/tailwindcss/pull/4187))
297
- - JIT: Improve support for `calc` and `var` in arbitrary values ([#4147](https://github.com/tailwindlabs/tailwindcss/pull/4147))
298
- - Convert `hsl` colors to `hsla` when transforming for opacity support instead of `rgba` ([#3850](https://github.com/tailwindlabs/tailwindcss/pull/3850))
299
- - Fix `backdropBlur` variants not being generated ([#4188](https://github.com/tailwindlabs/tailwindcss/pull/4188))
300
- - Improve animation value parsing ([#4250](https://github.com/tailwindlabs/tailwindcss/pull/4250))
301
- - Ignore unknown object types when hashing config ([82f4eaa](https://github.com/tailwindlabs/tailwindcss/commit/82f4eaa6832ef8a4e3fd90869e7068efdf6e34f2))
302
- - Ensure variants are grouped properly for plugins with order-dependent utilities ([#4273](https://github.com/tailwindlabs/tailwindcss/pull/4273))
303
- - JIT: Fix temp file storage when node temp directories are kept on a different drive than the project itself ([#4044](https://github.com/tailwindlabs/tailwindcss/pull/4044))
304
- - Support border-opacity utilities alongside default `border` utility ([#4277](https://github.com/tailwindlabs/tailwindcss/pull/4277))
305
- - JIT: Fix source maps for expanded `@tailwind` directives ([2f15411](https://github.com/tailwindlabs/tailwindcss/commit/2f1541123dea29d8a2ab0f1411bf60c79eeb96b4))
306
- - JIT: Ignore whitespace when collapsing adjacent rules ([15642fb](https://github.com/tailwindlabs/tailwindcss/commit/15642fbcc885eba9cc50b7678a922b09c90d6b51))
307
- - JIT: Generate group parent classes correctly when using custom separator ([#4508](https://github.com/tailwindlabs/tailwindcss/pull/4508))
308
- - JIT: Fix incorrect stacking of multiple `group` variants ([#4551](https://github.com/tailwindlabs/tailwindcss/pull/4551))
309
- - JIT: Fix memory leak due to holding on to unused contexts ([#4571](https://github.com/tailwindlabs/tailwindcss/pull/4571))
310
-
311
- ### Internals
312
-
313
- - Add integration tests for popular build runners ([#4354](https://github.com/tailwindlabs/tailwindcss/pull/4354))
314
-
315
- ## [2.1.4] - 2021-06-02
316
-
317
- ### Fixed
318
-
319
- - Skip `raw` PurgeCSS sources when registering template dependencies ([#4542](https://github.com/tailwindlabs/tailwindcss/pull/4542))
320
-
321
- ## [2.1.3] - 2021-06-01
322
-
323
- ### Fixed
324
-
325
- - Register PurgeCSS paths as PostCSS dependencies to guarantee proper cache-busting in webpack 5 ([#4530](https://github.com/tailwindlabs/tailwindcss/pull/4530))
326
-
327
- ## [2.1.2] - 2021-04-23
328
-
329
- ### Fixed
330
-
331
- - Fix issue where JIT engine would generate the wrong CSS when using PostCSS 7 ([#4078](https://github.com/tailwindlabs/tailwindcss/pull/4078))
332
-
333
- ## [2.1.1] - 2021-04-05
334
-
335
- ### Fixed
336
-
337
- - Fix issue where JIT engine would fail to compile when a source path isn't provided by the build runner for the current input file ([#3978](https://github.com/tailwindlabs/tailwindcss/pull/3978))
338
-
339
- ## [2.1.0] - 2021-04-05
340
-
341
- ### Added
342
-
343
- - Add alternate JIT engine (in preview) ([#3905](https://github.com/tailwindlabs/tailwindcss/pull/3905))
344
- - Add new `mix-blend-mode` and `background-blend-mode` utilities ([#3920](https://github.com/tailwindlabs/tailwindcss/pull/3920))
345
- - Add new `box-decoration-break` utilities ([#3911](https://github.com/tailwindlabs/tailwindcss/pull/3911))
346
- - Add new `isolation` utilities ([#3914](https://github.com/tailwindlabs/tailwindcss/pull/3914))
347
- - Add `inline-table` display utility ([#3563](https://github.com/tailwindlabs/tailwindcss/pull/3563))
348
- - Add `list-item` display utility ([#3929](https://github.com/tailwindlabs/tailwindcss/pull/3929))
349
- - Add new `filter` and `backdrop-filter` utilities ([#3923](https://github.com/tailwindlabs/tailwindcss/pull/3923))
350
-
351
- ## [2.0.4] - 2021-03-17
352
-
353
- ### Fixed
354
-
355
- - Pass full `var(--bg-opacity)` value as `opacityValue` when defining colors as functions
356
-
357
- ## [2.0.3] - 2021-02-07
358
-
359
- ### Fixed
360
-
361
- - Ensure sourcemap input is deterministic when using `@apply` in Vue components ([#3356](https://github.com/tailwindlabs/tailwindcss/pull/3356))
362
- - Ensure placeholder opacity is consistent across browsers ([#3308](https://github.com/tailwindlabs/tailwindcss/pull/3308))
363
- - Fix issue where `theme()` didn't work with colors defined as functions ([#2919](https://github.com/tailwindlabs/tailwindcss/pull/2919))
364
- - Enable `dark` variants by default for color opacity utilities ([#2975](https://github.com/tailwindlabs/tailwindcss/pull/2975))
365
-
366
- ### Added
367
-
368
- - Add support for a `tailwind.config.cjs` file in Node ESM projects ([#3181](https://github.com/tailwindlabs/tailwindcss/pull/3181))
369
- - Add version comment to Preflight ([#3255](https://github.com/tailwindlabs/tailwindcss/pull/3255))
370
- - Add `cursor-help` by default ([#3199](https://github.com/tailwindlabs/tailwindcss/pull/3199))
371
-
372
- ## [2.0.2] - 2020-12-11
373
-
374
- ### Fixed
375
-
376
- - Fix issue with `@apply` not working as expected with `!important` inside an atrule ([#2824](https://github.com/tailwindlabs/tailwindcss/pull/2824))
377
- - Fix issue with `@apply` not working as expected with defined classes ([#2832](https://github.com/tailwindlabs/tailwindcss/pull/2832))
378
- - Fix memory leak, and broken `@apply` when splitting up files ([#3032](https://github.com/tailwindlabs/tailwindcss/pull/3032))
379
-
380
- ### Added
381
-
382
- - Add default values for the `ring` utility ([#2951](https://github.com/tailwindlabs/tailwindcss/pull/2951))
383
-
384
- ## [2.0.1] - 2020-11-18
385
-
386
- - Nothing, just the only thing I could do when I found out npm won't let me publish the same version under two tags.
387
-
388
- ## [2.0.0] - 2020-11-18
389
-
390
- ### Added
391
-
392
- - Add redesigned color palette ([#2623](https://github.com/tailwindlabs/tailwindcss/pull/2623), [700866c](https://github.com/tailwindlabs/tailwindcss/commit/700866ce5e0c0b8d140be161c4d07fc6f31242bc), [#2633](https://github.com/tailwindlabs/tailwindcss/pull/2633))
393
- - Add dark mode support ([#2279](https://github.com/tailwindlabs/tailwindcss/pull/2279), [#2631](https://github.com/tailwindlabs/tailwindcss/pull/2631))
394
- - Add `overflow-ellipsis` and `overflow-clip` utilities ([#1289](https://github.com/tailwindlabs/tailwindcss/pull/1289))
395
- - Add `transform-gpu` to force hardware acceleration on transforms when desired ([#1380](https://github.com/tailwindlabs/tailwindcss/pull/1380))
396
- - Extend default spacing scale ([#2630](https://github.com/tailwindlabs/tailwindcss/pull/2630), [7f05204](https://github.com/tailwindlabs/tailwindcss/commit/7f05204ce7a5581b6845591448265c3c21afde86))
397
- - Add spacing scale to `inset` plugin ([#2630](https://github.com/tailwindlabs/tailwindcss/pull/2630))
398
- - Add percentage sizes to `translate`, `inset`, and `height` plugins ([#2630](https://github.com/tailwindlabs/tailwindcss/pull/2630), [5259560](https://github.com/tailwindlabs/tailwindcss/commit/525956065272dc53e8f8395f55f9ad13077a38d1))
399
- - Extend default font size scale ([#2609](https://github.com/tailwindlabs/tailwindcss/pull/2609), [#2619](https://github.com/tailwindlabs/tailwindcss/pull/2619))
400
- - Support using `@apply` with complex classes, including variants like `lg:hover:bg-blue-500` ([#2159](https://github.com/tailwindlabs/tailwindcss/pull/2159))
401
- - Add new `2xl` breakpoint at 1536px by default ([#2609](https://github.com/tailwindlabs/tailwindcss/pull/2609))
402
- - Add default line-height values for font-size utilities ([#2609](https://github.com/tailwindlabs/tailwindcss/pull/2609))
403
- - Support defining theme values using arrays for CSS properties that support comma separated values ([e13f083c4](https://github.com/tailwindlabs/tailwindcss/commit/e13f083c4bc48bf9870d27c966136a9584943127))
404
- - Enable `group-hover` for color plugins, `boxShadow`, and `textDecoration` by default ([28985b6](https://github.com/tailwindlabs/tailwindcss/commit/28985b6cd592e72d4849fdb9ce97eb045744e09c), [f6923b1](https://github.com/tailwindlabs/tailwindcss/commit/f6923b1))
405
- - Enable `focus` for z-index utilities by default ([ae5b3d3](https://github.com/tailwindlabs/tailwindcss/commit/ae5b3d312d5000ae9c2065001f3df7add72dc365))
406
- - Support `extend` in `variants` configuration ([#2651](https://github.com/tailwindlabs/tailwindcss/pull/2651))
407
- - Add `max-w-prose` class by default ([#2574](https://github.com/tailwindlabs/tailwindcss/pull/2574))
408
- - Support flattening deeply nested color objects ([#2148](https://github.com/tailwindlabs/tailwindcss/pull/2148))
409
- - Support defining presets as functions ([#2680](https://github.com/tailwindlabs/tailwindcss/pull/2680))
410
- - Support deep merging of objects under `extend` ([#2679](https://github.com/tailwindlabs/tailwindcss/pull/2679), [#2700](https://github.com/tailwindlabs/tailwindcss/pull/2700))
411
- - Enable `focus-within` for all plugins that have `focus` enabled by default ([1a21f072](https://github.com/tailwindlabs/tailwindcss/commit/1a21f0721c7368d61fa3feef33d616de3f78c7d7), [f6923b1](https://github.com/tailwindlabs/tailwindcss/commit/f6923b1))
412
- - Added new `ring` utilities for creating outline/focus rings using box shadows ([#2747](https://github.com/tailwindlabs/tailwindcss/pull/2747), [879f088](https://github.com/tailwindlabs/tailwindcss/commit/879f088), [e0788ef](https://github.com/tailwindlabs/tailwindcss/commit/879f088))
413
- - Added `5` and `95` to opacity scale ([#2747](https://github.com/tailwindlabs/tailwindcss/pull/2747))
414
- - Add support for default duration and timing function values whenever enabling transitions ([#2755](https://github.com/tailwindlabs/tailwindcss/pull/2755))
415
-
416
- ### Changed
417
-
418
- - Completely redesign color palette ([#2623](https://github.com/tailwindlabs/tailwindcss/pull/2623), [700866c](https://github.com/tailwindlabs/tailwindcss/commit/700866ce5e0c0b8d140be161c4d07fc6f31242bc), [#2633](https://github.com/tailwindlabs/tailwindcss/pull/2633))
419
- - Drop support for Node 8 and 10 ([#2582](https://github.com/tailwindlabs/tailwindcss/pull/2582))
420
- - Removed `target` feature and dropped any compatibility with IE 11 ([#2571](https://github.com/tailwindlabs/tailwindcss/pull/2571))
421
- - Upgrade to PostCSS 8 (but include PostCSS 7 compatibility build) ([729b400](https://github.com/tailwindlabs/tailwindcss/commit/729b400a685973f46af73c8a68b364f20f7c5e1e), [1d8679d](https://github.com/tailwindlabs/tailwindcss/commit/1d8679d37e0eb1ba8281b2076bade5fc754f47dd), [c238ed1](https://github.com/tailwindlabs/tailwindcss/commit/c238ed15b5c02ff51978965511312018f2bc2cae))
422
- - Removed `shadow-outline`, `shadow-solid`, and `shadow-xs` by default in favor of new `ring` API ([#2747](https://github.com/tailwindlabs/tailwindcss/pull/2747))
423
- - Switch `normalize.css` to `modern-normalize` ([#2572](https://github.com/tailwindlabs/tailwindcss/pull/2572))
424
- - Rename `whitespace-no-wrap` to `whitespace-nowrap` ([#2664](https://github.com/tailwindlabs/tailwindcss/pull/2664))
425
- - Rename `flex-no-wrap` to `flex-nowrap` ([#2676](https://github.com/tailwindlabs/tailwindcss/pull/2676))
426
- - Remove `clearfix` utility, recommend `flow-root` instead ([#2766](https://github.com/tailwindlabs/tailwindcss/pull/2766))
427
- - Disable `hover` and `focus` for `fontWeight` utilities by default ([f6923b1](https://github.com/tailwindlabs/tailwindcss/commit/f6923b1))
428
- - Remove `grid-gap` fallbacks needed for old versions of Safari ([5ec45fa](https://github.com/tailwindlabs/tailwindcss/commit/5ec45fa))
429
- - Change special use of 'default' in config to 'DEFAULT' ([#2580](https://github.com/tailwindlabs/tailwindcss/pull/2580))
430
- - New `@apply` implementation, slight backwards incompatibilities with previous behavior ([#2159](https://github.com/tailwindlabs/tailwindcss/pull/2159))
431
- - Make `theme` retrieve the expected resolved value when theme value is complex ([e13f083c4](https://github.com/tailwindlabs/tailwindcss/commit/e13f083c4bc48bf9870d27c966136a9584943127))
432
- - Move `truncate` class to `textOverflow` core plugin ([#2562](https://github.com/tailwindlabs/tailwindcss/pull/2562))
433
- - Remove `scrolling-touch` and `scrolling-auto` utilities ([#2573](https://github.com/tailwindlabs/tailwindcss/pull/2573))
434
- - Modernize default system font stacks ([#1711](https://github.com/tailwindlabs/tailwindcss/pull/1711))
435
- - Upgrade to PurgeCSS 3.0 ([8e4e0a0](https://github.com/tailwindlabs/tailwindcss/commit/8e4e0a0eb8dcbf84347c7562988b4f9afd344081))
436
- - Change default `text-6xl` font-size to 3.75rem instead of 4rem ([#2619](https://github.com/tailwindlabs/tailwindcss/pull/2619))
437
- - Ignore `[hidden]` elements within `space` and `divide` utilities instead of `template` elements ([#2642](https://github.com/tailwindlabs/tailwindcss/pull/2642))
438
- - Automatically prefix keyframes and animation names when a prefix is configured ([#2621](https://github.com/tailwindlabs/tailwindcss/pull/2621), [#2641](https://github.com/tailwindlabs/tailwindcss/pull/2641))
439
- - Merge `extend` objects deeply by default ([#2679](https://github.com/tailwindlabs/tailwindcss/pull/2679))
440
- - Respect `preserveHtmlElements` option even when using custom PurgeCSS extractor ([#2704](https://github.com/tailwindlabs/tailwindcss/pull/2704))
441
- - Namespace all internal custom properties under `tw-` to avoid collisions with end-user custom properties ([#2771](https://github.com/tailwindlabs/tailwindcss/pull/2771))
442
-
443
- ## [2.0.0-alpha.25] - 2020-11-17
444
-
445
- ### Fixed
446
-
447
- - Fix issue where `ring-offset-0` didn't work due to unitless `0` in `calc` function ([3de0c48](https://github.com/tailwindlabs/tailwindcss/commit/3de0c48))
448
-
449
- ## [2.0.0-alpha.24] - 2020-11-16
450
-
451
- ### Changed
452
-
453
- - Don't override ring color when overriding ring width with a variant ([e40079a](https://github.com/tailwindlabs/tailwindcss/commit/e40079a))
454
-
455
- ### Fixed
456
-
457
- - Prevent shadow/ring styles from cascading to children ([e40079a](https://github.com/tailwindlabs/tailwindcss/commit/e40079a))
458
- - Ensure rings have a default color even if `colors.blue.500` is not present in config ([e40079a](https://github.com/tailwindlabs/tailwindcss/commit/e40079a))
459
-
460
- ## [2.0.0-alpha.23] - 2020-11-16
461
-
462
- ### Added
463
-
464
- - Add scripts for generating a PostCSS 7 compatible build alongside PostCSS 8 version ([#2773](https://github.com/tailwindlabs/tailwindcss/pull/2773))
465
-
466
- ### Changed
467
-
468
- - All custom properties have been internally namespaced under `tw-` to avoid collisions with end-user custom properties ([#2771](https://github.com/tailwindlabs/tailwindcss/pull/2771))
469
-
470
- ## [2.0.0-alpha.22] - 2020-11-16
471
-
472
- ### Changed
473
-
474
- - ~~All custom properties have been internally namespaced under `tw-` to avoid collisions with end-user custom properties ([#2771](https://github.com/tailwindlabs/tailwindcss/pull/2771))~~ I made a git boo-boo, check alpha.23 instead
475
-
476
- ## [2.0.0-alpha.21] - 2020-11-15
477
-
478
- ### Changed
479
-
480
- - Upgrade to PostCSS 8, Autoprefixer 10, move `postcss` and `autoprefixer` to peerDependencies ([729b400](https://github.com/tailwindlabs/tailwindcss/commit/729b400))
481
-
482
- ## [2.0.0-alpha.20] - 2020-11-13
483
-
484
- ### Changed
485
-
486
- - Remove `clearfix` utility, recommend `flow-root` instead ([#2766](https://github.com/tailwindlabs/tailwindcss/pull/2766))
487
-
488
- ## [2.0.0-alpha.19] - 2020-11-13
489
-
490
- ### Fixed
491
-
492
- - Don't crash when color palette is empty ([278c203](https://github.com/tailwindlabs/tailwindcss/commit/278c203))
493
-
494
- ## [2.0.0-alpha.18] - 2020-11-13
495
-
496
- ### Changed
497
-
498
- - `black` and `white` have been added to `colors.js` ([b3ed724](https://github.com/tailwindlabs/tailwindcss/commit/b3ed724))
499
-
500
- ### Fixed
501
-
502
- - Add support for colors as closures to `ringColor` and `ringOffsetColor`, previously would crash build ([62a47f9](https://github.com/tailwindlabs/tailwindcss/commit/62a47f9))
503
-
504
- ## [2.0.0-alpha.17] - 2020-11-13
505
-
506
- ### Changed
507
-
508
- - Remove `grid-gap` fallbacks needed for old versions of Safari ([5ec45fa](https://github.com/tailwindlabs/tailwindcss/commit/5ec45fa))
509
-
510
- ## [2.0.0-alpha.16] - 2020-11-12
511
-
512
- ### Added
513
-
514
- - Enable `focus`, `focus-within`, and `dark` variants (when enabled) for all ring utilities by default ([e0788ef](https://github.com/tailwindlabs/tailwindcss/commit/879f088))
515
-
516
- ## [2.0.0-alpha.15] - 2020-11-11
517
-
518
- ### Added
519
-
520
- - Added `ring-inset` utility for rendering rings as inset shadows ([879f088](https://github.com/tailwindlabs/tailwindcss/commit/879f088))
521
-
522
- ### Changed
523
-
524
- - `ringWidth` utilities always reset ring styles to ensure no accidental variable inheritance through the cascade ([879f088](https://github.com/tailwindlabs/tailwindcss/commit/879f088))
525
-
526
- ## [2.0.0-alpha.14] - 2020-11-11
527
-
528
- ### Added
529
-
530
- - Enable `focus-within` for `outline` utilities by default ([f6923b1](https://github.com/tailwindlabs/tailwindcss/commit/f6923b1))
531
- - Enable `focus-within` for `ringWidth` utilities by default ([f6923b1](https://github.com/tailwindlabs/tailwindcss/commit/f6923b1))
532
- - Enable `group-hover` for `boxShadow` utilities by default ([f6923b1](https://github.com/tailwindlabs/tailwindcss/commit/f6923b1))
533
- - Enable `group-hover` and `focus-within` for `textDecoration` utilities by default ([f6923b1](https://github.com/tailwindlabs/tailwindcss/commit/f6923b1))
534
-
535
- ### Changed
536
-
537
- - Disable `hover` and `focus` for `fontWeight` utilities by default ([f6923b1](https://github.com/tailwindlabs/tailwindcss/commit/f6923b1))
538
-
539
- ## [2.0.0-alpha.13] - 2020-11-11
540
-
541
- ### Added
542
-
543
- - Add support for default duration and timing function values whenever enabling transitions ([#2755](https://github.com/tailwindlabs/tailwindcss/pull/2755))
544
-
545
- ## [2.0.0-alpha.12] - 2020-11-10
546
-
547
- ### Fixed
548
-
549
- - Prevent `boxShadow` utilities from overriding ring shadows added by components like in the custom forms plugin ([c3dd3b6](https://github.com/tailwindlabs/tailwindcss/commit/c3dd3b68454ad418833a9edf7f3409cad66fb5b0))
550
-
551
- ## [2.0.0-alpha.11] - 2020-11-09
552
-
553
- ### Fixed
554
-
555
- - Convert `none` to `0 0 #0000` when used for shadows to ensure compatibility with `ring` utilities ([4eecc27](https://github.com/tailwindlabs/tailwindcss/commit/4eecc2751ca0c461e8da5bd5772ae650197a2e5d))
556
-
557
- ## [2.0.0-alpha.10] - 2020-11-09
558
-
559
- ### Added
560
-
561
- - Added new `ring` utilities ([#2747](https://github.com/tailwindlabs/tailwindcss/pull/2747))
562
- - Added `5` and `95` to opacity scale ([#2747](https://github.com/tailwindlabs/tailwindcss/pull/2747))
563
-
564
- ### Changed
565
-
566
- - Removed `shadow-outline`, `shadow-solid`, and `shadow-xs` in favor of new `ring` API ([#2747](https://github.com/tailwindlabs/tailwindcss/pull/2747))
567
-
568
- ## [2.0.0-alpha.9] - 2020-11-07
569
-
570
- ### Added
571
-
572
- - Added `shadow-solid` utility, a 2px solid shadow that uses the current text color ([369cfae](https://github.com/tailwindlabs/tailwindcss/commit/369cfae2905a577033529c46a5e8ca58c69f5623))
573
- - Enable `focus-within` where useful by default ([1a21f072](https://github.com/tailwindlabs/tailwindcss/commit/1a21f0721c7368d61fa3feef33d616de3f78c7d7))
574
-
575
- ### Changed
576
-
577
- - Update `shadow-outline` to use the new blue ([b078238](https://github.com/tailwindlabs/tailwindcss/commit/b0782385c9832d35a10929b38b4fcaf27e055d6b))
578
-
579
- ## [2.0.0-alpha.8] - 2020-11-06
580
-
581
- ### Added
582
-
583
- - Add `11` to spacing scale ([7f05204](https://github.com/tailwindlabs/tailwindcss/commit/7f05204ce7a5581b6845591448265c3c21afde86))
584
- - Add percentage-based height values ([5259560](https://github.com/tailwindlabs/tailwindcss/commit/525956065272dc53e8f8395f55f9ad13077a38d1))
585
- - Add indigo to the color palette by default ([700866c](https://github.com/tailwindlabs/tailwindcss/commit/700866ce5e0c0b8d140be161c4d07fc6f31242bc))
586
-
587
- ### Changed
588
-
589
- - Use `coolGray` as the default gray ([700866c](https://github.com/tailwindlabs/tailwindcss/commit/700866ce5e0c0b8d140be161c4d07fc6f31242bc))
590
-
591
- ## [2.0.0-alpha.7] - 2020-11-05
592
-
593
- ### Changed
594
-
595
- - Revert upgrading to PostCSS 8 lol
596
-
597
- ## [2.0.0-alpha.6] - 2020-11-04
598
-
599
- ### Changed
600
-
601
- - Respect `preserveHtmlElements` option even when using custom PurgeCSS extractor ([#2704](https://github.com/tailwindlabs/tailwindcss/pull/2704))
602
- - Set font-family and line-height to `inherit` on `body` to behave more like v1.x ([#2729](https://github.com/tailwindlabs/tailwindcss/pull/2729))
603
-
604
- ## [2.0.0-alpha.5] - 2020-10-30
605
-
606
- ### Changed
607
-
608
- - Upgrade to PostCSS 8 ([59aa484](https://github.com/tailwindlabs/tailwindcss/commit/59aa484dfea0607d96bff6ef41b1150c78576c37))
609
-
610
- ## [2.0.0-alpha.4] - 2020-10-29
611
-
612
- ### Added
613
-
614
- - Support deep merging of arrays of objects under `extend` ([#2700](https://github.com/tailwindlabs/tailwindcss/pull/2700))
615
-
616
- ## [2.0.0-alpha.3] - 2020-10-27
617
-
618
- ### Added
619
-
620
- - Support flattening deeply nested color objects ([#2148](https://github.com/tailwindlabs/tailwindcss/pull/2148))
621
- - Support defining presets as functions ([#2680](https://github.com/tailwindlabs/tailwindcss/pull/2680))
622
-
623
- ### Changed
624
-
625
- - Merge `extend` objects deeply by default ([#2679](https://github.com/tailwindlabs/tailwindcss/pull/2679))
626
- - Rename `flex-no-wrap` to `flex-nowrap` ([#2676](https://github.com/tailwindlabs/tailwindcss/pull/2676))
627
-
628
- ## [2.0.0-alpha.2] - 2020-10-25
629
-
630
- ### Added
631
-
632
- - Support `extend` in `variants` configuration ([#2651](https://github.com/tailwindlabs/tailwindcss/pull/2651))
633
- - Add `max-w-prose` class by default ([#2574](https://github.com/tailwindlabs/tailwindcss/pull/2574))
634
-
635
- ### Changed
636
-
637
- - Revert use of logical properties for `space` and `divide` utilities ([#2644](https://github.com/tailwindlabs/tailwindcss/pull/2644))
638
- - `space` and `divide` utilities ignore elements with `[hidden]` now instead of only ignoring `template` elements ([#2642](https://github.com/tailwindlabs/tailwindcss/pull/2642))
639
- - Set default font on `body`, not just `html` ([#2643](https://github.com/tailwindlabs/tailwindcss/pull/2643))
640
- - Automatically prefix keyframes and animation names when a prefix is configured ([#2621](https://github.com/tailwindlabs/tailwindcss/pull/2621), [#2641](https://github.com/tailwindlabs/tailwindcss/pull/2641))
641
- - Rename `whitespace-no-wrap` to `whitespace-nowrap` ([#2664](https://github.com/tailwindlabs/tailwindcss/pull/2664))
642
-
643
- ## [1.9.6] - 2020-10-23
644
-
645
- ### Changed
646
-
647
- - The `presets` feature had unexpected behavior where a preset config without its own `presets` key would not extend the default config. ([#2662](https://github.com/tailwindlabs/tailwindcss/pull/2662))
648
-
649
- If you were depending on this unexpected behavior, just add `presets: []` to your own preset to exclude the default configuration.
650
-
651
- ## [2.0.0-alpha.1] - 2020-10-20
652
-
653
- ### Added
654
-
655
- - Added dark mode support ([#2279](https://github.com/tailwindlabs/tailwindcss/pull/2279), [#2631](https://github.com/tailwindlabs/tailwindcss/pull/2631))
656
- - Added `overflow-ellipsis` and `overflow-clip` utilities ([#1289](https://github.com/tailwindlabs/tailwindcss/pull/1289))
657
- - Add `transform-gpu` to force hardware acceleration on transforms when beneficial ([#1380](https://github.com/tailwindlabs/tailwindcss/pull/1380))
658
- - Extended spacing scale ([#2630](https://github.com/tailwindlabs/tailwindcss/pull/2630))
659
- - Add spacing scale to `inset` plugin ([#2630](https://github.com/tailwindlabs/tailwindcss/pull/2630))
660
- - Enable useful relative sizes for more plugins ([#2630](https://github.com/tailwindlabs/tailwindcss/pull/2630))
661
- - Extend font size scale ([#2609](https://github.com/tailwindlabs/tailwindcss/pull/2609), [#2619](https://github.com/tailwindlabs/tailwindcss/pull/2619))
662
- - Support using `@apply` with complex classes ([#2159](https://github.com/tailwindlabs/tailwindcss/pull/2159))
663
- - Add new `2xl` breakpoint ([#2609](https://github.com/tailwindlabs/tailwindcss/pull/2609))
664
- - Add default line-height values for font-size utilities ([#2609](https://github.com/tailwindlabs/tailwindcss/pull/2609))
665
- - Support defining theme values using arrays wherever it makes sense (box-shadow, transition-property, etc.) ([e13f083c4](https://github.com/tailwindlabs/tailwindcss/commit/e13f083c4bc48bf9870d27c966136a9584943127))
666
- - Enable `group-hover` for color utilities by default ([28985b6](https://github.com/tailwindlabs/tailwindcss/commit/28985b6cd592e72d4849fdb9ce97eb045744e09c))
667
- - Enable `focus` for z-index utilities by default ([ae5b3d3](https://github.com/tailwindlabs/tailwindcss/commit/ae5b3d312d5000ae9c2065001f3df7add72dc365))
668
-
669
- ### Changed
670
-
671
- - New `@apply` implementation, slight backwards incompatibilities with previous behavior ([#2159](https://github.com/tailwindlabs/tailwindcss/pull/2159))
672
- - Move `truncate` class to `textOverflow` core plugin ([#2562](https://github.com/tailwindlabs/tailwindcss/pull/2562))
673
- - Removed `target` feature and dropped any compatibility with IE 11 ([#2571](https://github.com/tailwindlabs/tailwindcss/pull/2571))
674
- - Switch `normalize.css` to `modern-normalize` ([#2572](https://github.com/tailwindlabs/tailwindcss/pull/2572))
675
- - Remove `scrolling-touch` and `scrolling-auto` utilities ([#2573](https://github.com/tailwindlabs/tailwindcss/pull/2573))
676
- - Change special use of 'default' in config to 'DEFAULT' ([#2580](https://github.com/tailwindlabs/tailwindcss/pull/2580))
677
- - Drop support for Node 8 and 10 ([#2582](https://github.com/tailwindlabs/tailwindcss/pull/2582))
678
- - Modernize default system font stacks ([#1711](https://github.com/tailwindlabs/tailwindcss/pull/1711))
679
- - Upgrade to PurgeCSS 3.0
680
- - ~~Upgrade to PostCSS 8.0~~ Reverted for now
681
- - Use logical properties for `space` and `divide` utilities ([#1883](https://github.com/tailwindlabs/tailwindcss/pull/1883))
682
- - Make `theme` retrieve the expected resolved value when theme value is complex ([e13f083c4](https://github.com/tailwindlabs/tailwindcss/commit/e13f083c4bc48bf9870d27c966136a9584943127))
683
- - Adjust default font-size scale to include 60px instead of 64px ([#2619](https://github.com/tailwindlabs/tailwindcss/pull/2619))
684
- - Update default colors in Preflight to match new color palette ([#2633](https://github.com/tailwindlabs/tailwindcss/pull/2633))
685
-
686
- ## [1.9.5] - 2020-10-19
687
-
688
- ### Fixed
689
-
690
- - Fix issue where using `theme` with default line-heights did not resolve correctly
691
-
692
- ## [1.9.4] - 2020-10-17
693
-
694
- ### Fixed
695
-
696
- - Fix issue changing plugins defined using the `withOptions` API would not trigger rebuilds in watch processes
697
-
698
- ## [1.9.3] - 2020-10-16
699
-
700
- ### Fixed
701
-
702
- - Fix issue where `tailwindcss init --full` scaffolded a corrupt config file (https://github.com/tailwindlabs/tailwindcss/issues/2556)
703
-
704
- ### Changed
705
-
706
- - Remove console warnings about upcoming breaking changes
707
-
708
- ## [1.9.2] - 2020-10-14
709
-
710
- ### Fixed
711
-
712
- - Merge plugins when merging config with preset ([#2561](https://github.com/tailwindlabs/tailwindcss/pulls/#2561)
713
- - Use `word-wrap` and `overflow-wrap` together, not one or the other since `word-wrap` is IE-only
714
-
715
- ## [1.9.1] - 2020-10-14
716
-
717
- ### Fixed
718
-
719
- - Don't import `corePlugins` in `resolveConfig` to avoid bundling browser-incompatible code ([#2548](https://github.com/tailwindlabs/tailwindcss/pull/2548))
720
-
721
- ## [1.9.0] - 2020-10-12
722
-
723
- ### Added
724
-
725
- - Add new `presets` config option ([#2474](https://github.com/tailwindlabs/tailwindcss/pull/2474))
726
- - Scaffold new `tailwind.config.js` files with available `future` flags commented out ([#2379](https://github.com/tailwindlabs/tailwindcss/pull/2379))
727
- - Add `col-span-full` and `row-span-full` ([#2471](https://github.com/tailwindlabs/tailwindcss/pull/2471))
728
- - Make `outline` configurable, `outline-none` more accessible by default, and add `outline-black` and `outline-white` ([#2460](https://github.com/tailwindlabs/tailwindcss/pull/2460))
729
- - Add additional small `rotate` and `skew` values ([#2528](https://github.com/tailwindlabs/tailwindcss/pull/2528))
730
- - Add `xl`, `2xl`, and `3xl` border radius values ([#2529](https://github.com/tailwindlabs/tailwindcss/pull/2529))
731
- - Add new utilities for `grid-auto-columns` and `grid-auto-rows` ([#2531](https://github.com/tailwindlabs/tailwindcss/pull/2531))
732
- - Promote `defaultLineHeights` and `standardFontWeights` from experimental to future
733
-
734
- ### Fixed
735
-
736
- - Don't escape keyframe values ([#2432](https://github.com/tailwindlabs/tailwindcss/pull/2432))
737
- - Use `word-wrap` instead of `overflow-wrap` in `ie11` target mode ([#2391](https://github.com/tailwindlabs/tailwindcss/pull/2391))
738
-
739
- ### Experimental
740
-
741
- - Add experimental `2xl` breakpoint ([#2468](https://github.com/tailwindlabs/tailwindcss/pull/2468))
742
- - Rename `{u}-max-content` and `{u}-min-content` utilities to `{u}-max` and `{u}-min` in experimental extended spacing scale ([#2532](https://github.com/tailwindlabs/tailwindcss/pull/2532))
743
- - Support disabling dark mode variants globally ([#2530](https://github.com/tailwindlabs/tailwindcss/pull/2530))
744
-
745
- ## [1.8.13] - 2020-10-09
746
-
747
- ### Fixed
748
-
749
- - Support defining colors as closures even when opacity variables are not supported ([#2536](https://github.com/tailwindlabs/tailwindcss/pull/2515))
750
-
751
- ## [1.8.12] - 2020-10-07
752
-
753
- ### Fixed
754
-
755
- - Reset color opacity variable in utilities generated using closure colors ([#2515](https://github.com/tailwindlabs/tailwindcss/pull/2515))
756
-
757
- ## [1.8.11] - 2020-10-06
758
-
759
- - Make `tailwindcss.plugin` work in ESM environments for reasons
760
-
761
- ## [1.8.10] - 2020-09-14
762
-
763
- ### Fixed
764
-
765
- - Prevent new `dark` experiment from causing third-party `dark` variants to inherit stacking behavior ([#2382](https://github.com/tailwindlabs/tailwindcss/pull/2382))
766
-
767
- ## [1.8.9] - 2020-09-13
768
-
769
- ### Fixed
770
-
771
- - Add negative spacing values to inset plugin in the `extendedSpacingScale` experiment ([#2358](https://github.com/tailwindlabs/tailwindcss/pull/2358))
772
- - Fix issue where `!important` was stripped from declarations within rules that used `@apply` with `applyComplexClasses` ([#2376](https://github.com/tailwindlabs/tailwindcss/pull/2376))
773
-
774
- ### Changed
775
-
776
- - Add `future` section to config stubs ([#2372](https://github.com/tailwindlabs/tailwindcss/pull/2372), [3090b98](https://github.com/tailwindlabs/tailwindcss/commit/3090b98ece766b1046abe5bbaa94204e811f7fac))
777
-
778
- ## [1.8.8] - 2020-09-11
779
-
780
- ### Fixed
781
-
782
- - Register dark mode plugin outside of `resolveConfig` code path ([#2368](https://github.com/tailwindlabs/tailwindcss/pull/2368))
783
-
784
- ## [1.8.7] - 2020-09-10
785
-
786
- ### Fixed
787
-
788
- - Fix issue where classes in escaped strings (like `class=\"block\"`) weren't extracted properly for purging ([#2364](https://github.com/tailwindlabs/tailwindcss/pull/2364))
789
-
790
- ## [1.8.6] - 2020-09-09
791
-
792
- ### Fixed
793
-
794
- - Fix issue where container padding not applied when using object syntax ([#2353](https://github.com/tailwindlabs/tailwindcss/pull/2353))
795
-
796
- ## [1.8.5] - 2020-09-07
797
-
798
- ### Fixed
799
-
800
- - Fix issue where `resolveConfig` didn't take into account configs added by feature flags ([#2347](https://github.com/tailwindlabs/tailwindcss/pull/2347))
801
-
802
- ## [1.8.4] - 2020-09-06
803
-
804
- ### Fixed
805
-
806
- - Fix [issue](https://github.com/tailwindlabs/tailwindcss/issues/2258) where inserting extra PurgeCSS control comments could break integrated PurgeCSS support
807
- - Fix issue where dark variant in 'class' mode was incompatible with 'group-hover' variant ([#2337](https://github.com/tailwindlabs/tailwindcss/pull/2337))
808
- - Support basic nesting structure with `@apply` when using the `applyComplexClasses` experiment ([#2271](https://github.com/tailwindlabs/tailwindcss/pull/2271))
809
-
810
- ### Changed
811
-
812
- - Rename `font-hairline` and `font-thin` to `font-thin` and `font-extralight` behind `standardFontWeights` flag (experimental until v1.9.0) ([#2333](https://github.com/tailwindlabs/tailwindcss/pull/2333))
813
-
814
- ## [1.8.3] - 2020-09-05
815
-
816
- ### Fixed
817
-
818
- - Fix issue where `font-variant-numeric` utilities would break in combination with most CSS minifier configurations ([f3660ce](https://github.com/tailwindlabs/tailwindcss/commit/f3660ceed391cfc9390ca4ea1a729a955e64b895))
819
- - Only warn about `conservative` purge mode being deprecated once per process ([58781b5](https://github.com/tailwindlabs/tailwindcss/commit/58781b517daffbaf80fc5c0791d311f53b2d67d8))
820
-
821
- ## [1.8.2] - 2020-09-04
822
-
823
- ### Fixed
824
-
825
- - Fix bug where dark mode variants would cause an error if you had a `plugins` array in your config ([#2322](https://github.com/tailwindlabs/tailwindcss/pull/2322))
826
-
827
- ## [1.8.1] - 2020-09-04
828
-
829
- ### Fixed
830
-
831
- - Fix bug in the new font-variant-numeric utilities which broke the whole rule ([#2318](https://github.com/tailwindlabs/tailwindcss/pull/2318))
832
- - Fix bug while purging ([#2320](https://github.com/tailwindlabs/tailwindcss/pull/2320))
833
-
834
- ## [1.8.0] - 2020-09-04
835
-
836
- ### Added
837
-
838
- - Dark mode variant (experimental) ([#2279](https://github.com/tailwindlabs/tailwindcss/pull/2279))
839
- - New `preserveHtmlElements` option for `purge` ([#2283](https://github.com/tailwindlabs/tailwindcss/pull/2283))
840
- - New `layers` mode for `purge` ([#2288](https://github.com/tailwindlabs/tailwindcss/pull/2288))
841
- - New `font-variant-numeric` utilities ([#2305](https://github.com/tailwindlabs/tailwindcss/pull/2305))
842
- - New `place-items`, `place-content`, `place-self`, `justify-items`, and `justify-self` utilities ([#2306](https://github.com/tailwindlabs/tailwindcss/pull/2306))
843
- - Support configuring variants as functions ([#2309](https://github.com/tailwindlabs/tailwindcss/pull/2309))
844
-
845
- ### Changed
846
-
847
- - CSS within `@layer` at-rules are now grouped with the corresponding `@tailwind` at-rule ([#2312](https://github.com/tailwindlabs/tailwindcss/pull/2312))
848
-
849
- ### Deprecated
850
-
851
- - `conservative` purge mode, deprecated in favor of `layers`
852
-
853
- ## [1.7.6] - 2020-08-29
854
-
855
- ### Fixed
856
-
857
- - Fix bug where the new experimental `@apply` implementation broke when applying a variant class with the important option globally enabled
858
-
859
- ## [1.7.5] - 2020-08-28
860
-
861
- ### Changed
862
-
863
- - Update lodash to latest to silence security warnings
864
-
865
- ## [1.7.4] - 2020-08-26
866
-
867
- ### Added
868
-
869
- - Add new -p flag to CLI to quickly scaffold a `postcss.config.js` file
870
-
871
- ### Changed
872
-
873
- - Make `@apply` insensitive to whitespace in the new `applyComplexClasses` experiment
874
-
875
- ### Fixed
876
-
877
- - Fix bug where the new `applyComplexClasses` experiment didn't behave as expected with rules with multiple selectors, like `.foo, .bar { color: red }`
878
-
879
- ## [1.7.3] - 2020-08-20
880
-
881
- ### Changed
882
-
883
- - Log feature flag notices to stderr instead of stdout to preserve compatibility with pipe-based build systems
884
- - Add missing bg-none utility for disabling background images
885
-
886
- ### Fixed
887
-
888
- - Fix bug that prevented defining colors as closures when the `gradientColorStops` plugin was enabled
889
-
890
- ## [1.7.2] - 2020-08-19
891
-
892
- ### Added
893
-
894
- - Reuse generated CSS as much as possible in long-running processes instead of needlessly recalculating
895
-
896
- ## [1.7.1] - 2020-08-28
897
-
898
- ### Changed
899
-
900
- - Don't issue duplicate flag notices in long-running build processes
901
-
902
- ## [1.7.0] - 2020-08-28
903
-
904
- ### Added
905
-
906
- - Gradients
907
- - New background-clip utilities
908
- - New `contents` display utility
909
- - Default letter-spacing per font-size
910
- - Divide border styles
911
- - Access entire config object from plugins
912
- - Define colors as closures
913
- - Use `@apply` with variants and other complex classes (experimental)
914
- - New additional color-palette (experimental)
915
- - Extended spacing scale (experimental)
916
- - Default line-heights per font-size by default (experimental)
917
- - Extended font size scale (experimental)
918
-
919
- ### Deprecated
920
-
921
- - Deprecated gap utilities
922
-
923
- ## [1.6.3] - 2020-08-18
924
-
925
- ### Fixed
926
-
927
- - Fixes issue where motion-safe and motion-reduce variants didn't stack correctly with group-hover variants
928
-
929
- ## [1.6.2] - 2020-08-03
930
-
931
- ### Fixed
932
-
933
- - Fixes issue where `@keyframes` respecting the important option would break animations in Chrome
934
-
935
- ## [1.6.1] - 2020-08-02
936
-
937
- ### Fixed
938
-
939
- - Fixes an issue where animation keyframes weren't included in the build without @tailwind base (#2108)
940
-
941
- ## [1.6.0] - 2020-07-28
942
-
943
- ### Added
944
-
945
- - Animation support
946
- - New `prefers-reduced-motion` variants
947
- - New `overscroll-behaviour` utilities
948
- - Generate CSS without an input file
949
-
950
- ## [1.5.2] - 2020-07-21
951
-
952
- ### Fixed
953
-
954
- - Fixes issue where you could no longer use `@apply` with unprefixed class names if you had configured a prefix
955
-
956
- ## [1.5.1] - 2020-07-15
957
-
958
- ### Fixed
959
-
960
- - Fixes accidental breaking change where adding component variants using the old manual syntax (as recommended in the docs) stopped working
961
-
962
- ## [1.5.0] - 2020-07-15
963
-
964
- ### Added
965
-
966
- - Component `variants` support
967
- - Responsive `container` variants
968
- - New `focus-visible` variant
969
- - New `checked` variant
970
-
971
- ## v0.0.0-658250a96 - 2020-07-12 [YANKED]
972
-
973
- No release notes
974
-
975
- ## [1.4.6] - 2020-05-08
976
-
977
- ### Changed
978
-
979
- - Explicitly error when using a class as the important config option instead of just generating the wrong CSS
980
-
981
- ## [1.4.5] - 2020-05-06
982
-
983
- ### Fixed
984
-
985
- - Fix bug where the `divideColor` plugin was using the wrong '' in IE11 target mode
986
-
987
- ## [1.4.4] - 2020-05-01
988
-
989
- ### Fixed
990
-
991
- - Fix bug where target: 'browserslist' didn't work, only `target: ['browserslist', {...}]` did
992
-
993
- ## [1.4.3] - 2020-05-01
994
-
995
- ### Changed
996
-
997
- - Don't generate unnecessary CSS in color plugins when color opacity utilities are disabled
998
-
999
- ## [1.4.2] - 2020-05-01
1000
-
1001
- ### Fixed
1002
-
1003
- - Fix issue where `purge: { enabled: false }` was ignored, add `purge: false` shorthand
1004
-
1005
- ## [1.4.1] - 2020-04-30
1006
-
1007
- ### Changed
1008
-
1009
- - Improve built-in PurgeCSS extractor to better support Haml and Slim templates
1010
-
1011
- ## [1.4.0] - 2020-04-29
1012
-
1013
- ### Added
1014
-
1015
- - New color opacity utilities
1016
- - Built-in PurgeCSS
1017
- - IE 11 target mode (experimental)
1018
-
1019
- ## [1.3.5] - 2020-04-23
1020
-
1021
- ### Removed
1022
-
1023
- - Drop `fs-extra` dependency to `^8.0.0` to preserve Node 8 compatibility until Tailwind 2.0
1024
-
1025
- ### Fixed
1026
-
1027
- - Fix missing unit in calc bug in space plugin (`space-x-0` didn't work for example)
1028
-
1029
- ## [1.3.4] - 2020-04-21
1030
-
1031
- ### Fixed
1032
-
1033
- - Fix bug where `divide-{x/y}-0` utilities didn't work due to missing unit in `calc` call
1034
-
1035
- ## [1.3.3] - 2020-04-21
1036
-
1037
- ### Added
1038
-
1039
- - Add forgotten responsive variants for `space`, `divideWidth`, and `divideColor` utilities
1040
-
1041
- ## [1.3.1] - 2020-04-21
1042
-
1043
- ### Fixed
1044
-
1045
- - Fix bug where the `space-x` utilities were not being applied correctly due to referencing `--space-y-reverse` instead of `--space-x-reverse`
1046
-
1047
- ## [1.3.0] - 2020-04-21
1048
-
1049
- ### Added
1050
-
1051
- - New `space` and `divide` layout utilities
1052
- - New `transition-delay` utilities
1053
- - New `group-focus` variant
1054
- - Support for specifying a default line-height for each font-size utility
1055
- - Support for breakpoint-specific padding for `container` class
1056
- - Added `current` to the default color palette
1057
- - New `inline-grid` utility
1058
- - New `flow-root` display utility
1059
- - New `clear-none` utility
1060
-
1061
- ## [1.2.0] - 2020-02-05
1062
-
1063
- ### Added
1064
-
1065
- - CSS Transition support
1066
- - CSS Transform support
1067
- - CSS Grid support
1068
- - Added `max-w-{screen}` utilities
1069
- - Added `max-w-none` utility
1070
- - Added `rounded-md` utility
1071
- - Added `shadow-sm` utility
1072
- - Added `shadow-xs` utility
1073
- - Added `stroke-width` utilities
1074
- - Added fixed line-height utilities
1075
- - Added additional display utilities for table elements
1076
- - Added box-sizing utilities
1077
- - Added clear utilities
1078
- - Config file dependencies are now watchable
1079
- - Added new `plugin` and `plugin.withOptions` APIs
1080
-
1081
- ### Changed
1082
-
1083
- - Allow plugins to extend the user's config
1084
-
1085
- ## [1.2.0-canary.8] - 2020-02-05
1086
-
1087
- ### Added
1088
-
1089
- - Add additional fixed-size line-height utilities
1090
-
1091
- ## [1.2.0-canary.7] - 2020-02-04
1092
-
1093
- ### Removed
1094
-
1095
- - Remove Inter from font-sans, plan to add later under new class
1096
-
1097
- ## [1.2.0-canary.6] - 2020-02-03
1098
-
1099
- ### Added
1100
-
1101
- - Add system-ui to default font stack
1102
- - Add shadow-xs, increase shadow-sm alpha to 0.05
1103
- - Support import syntax even without postcss-import
1104
- - Alias tailwind bin to tailwindcss
1105
- - Add fill/stroke to transition-colors
1106
- - Add transition-shadow, add box-shadow to default transition
1107
- - Combine gap/columnGap/rowGap
1108
- - Add grid row utilities
1109
- - Add skew utilities
1110
-
1111
- ### Changed
1112
-
1113
- - Use font-sans as default font
1114
-
1115
- ## [1.2.0-canary.5] - 2020-01-08
1116
-
1117
- ### Added
1118
-
1119
- - Adds missing dependency `resolve` which is required for making config dependencies watchable
1120
-
1121
- ## [1.2.0-canary.4] - 2020-01-08
1122
-
1123
- ### Added
1124
-
1125
- - CSS Transition support
1126
- - CSS Transform support
1127
- - CSS Grid support
1128
- - New `max-w-{screen}` utilities
1129
- - Added `max-w-none` utility
1130
- - Added "Inter" to the default sans-serif font stack
1131
- - Add `rounded-md` utility
1132
- - Add `shadow-sm` utility
1133
- - Added stroke-width utilities
1134
- - Added additional display utilities for table elements
1135
- - Added box-sizing utilities
1136
- - Added clear utilities
1137
- - Config file dependencies are now watchable
1138
- - Allow plugins to extend the user's config
1139
- - Add new `plugin` and `plugin.withOptions` APIs
1140
-
1141
- ## [v1.2.0-canary.3] - 2020-01-08 [YANKED]
1142
-
1143
- No release notes
1144
-
1145
- ## [1.1.4] - 2019-11-25
1146
-
1147
- ### Changed
1148
-
1149
- - Note: Although this is a bugfix it could affect your site if you were working around the bug in your own code by not prefixing the `.group` class. I'm sorry 😞
1150
-
1151
- ### Fixed
1152
-
1153
- - Fixes a bug where the `.group` class was not receiving the user's configured prefix when using the `prefix` option
1154
-
1155
- ## [1.2.0-canary.1] - 2019-10-22
1156
-
1157
- ### Changed
1158
-
1159
- - Don't watch `node_modules` files for changes
1160
-
1161
- ### Fixed
1162
-
1163
- - Fixes significant build performance regression in `v1.2.0-canary.0`
1164
-
1165
- ## [1.1.3] - 2019-10-22
1166
-
1167
- ### Fixed
1168
-
1169
- - Fixes an issue where in some cases function properties in the user's `theme` config didn't receive the second utils argument
1170
-
1171
- ## [1.2.0-canary.0] - 2019-10-14
1172
-
1173
- ### Added
1174
-
1175
- - Automatically watch all config file dependencies (plugins, design tokens imported from other files, etc.) for changes when build watcher is running
1176
- - Add `justify-evenly` utility
1177
-
1178
- ### Changed
1179
-
1180
- - Allow plugins to add their own config file to be resolved with the user's custom config
1181
-
1182
- ## [1.1.2] - 2019-08-14
1183
-
1184
- ### Fixed
1185
-
1186
- - Fixes a bug with horizontal rules where they were displayed with a 2px border instead of a 1px border
1187
- - Fixes a bug with horizontal rules where they were rendered with default top/bottom margin
1188
-
1189
- ## [1.1.1] - 2019-08-09
1190
-
1191
- ### Fixed
1192
-
1193
- - Fixes issue where values like `auto` would fail to make it through the default negative margin config
1194
-
1195
- ## [1.1.0] - 2019-08-06
1196
-
1197
- ### Added
1198
-
1199
- - Added utilities for screenreader visibility
1200
- - Added utilities for placeholder color
1201
- - First, last, even, and odd child variants
1202
- - Disabled variant
1203
- - Visited variant
1204
- - Increase utility specificity using a scope instead of !important
1205
- - Add hover/focus variants for opacity by default
1206
- - Added `border-double` utility
1207
- - Support negative prefix for boxShadow and letterSpacing plugins
1208
- - Support passing config path via object
1209
-
1210
- ### Fixed
1211
-
1212
- - Placeholders no longer have a default opacity
1213
- - Make horizontal rules visible by default
1214
- - Generate correct negative margins when using calc
1215
-
1216
- ## [1.0.6] - 2019-08-01
1217
-
1218
- ### Fixed
1219
-
1220
- - Fixes issue where modifiers would mutate nested rules
1221
-
1222
- ## [1.0.5] - 2019-07-11
1223
-
1224
- ### Added
1225
-
1226
- - Support built-in variants for utilities that include pseudo-elements
1227
-
1228
- ### Changed
1229
-
1230
- - Update several dependencies, including postcss-js which fixes an issue with using `!important` directly in Tailwind utility plugins
1231
-
1232
- ## [1.0.4] - 2019-06-11
1233
-
1234
- ### Changed
1235
-
1236
- - Increase precision of percentage width values to avoid 1px rounding issues in grid layouts
1237
-
1238
- ## [1.0.3] - 2019-06-01
1239
-
1240
- ### Changed
1241
-
1242
- - Throws an error when someone tries to use `@tailwind preflight` instead of `@tailwind base`, this is the source of many support requests
1243
-
1244
- ## [1.0.2] - 2019-05-27
1245
-
1246
- ### Fixed
1247
-
1248
- - Fixes a bug where `@screen` rules weren't bubbled properly when nested in plugins
1249
-
1250
- ## [1.0.1] - 2019-05-13
1251
-
1252
- ### Fixed
1253
-
1254
- - Fixes a bug where global variants weren't properly merged
1255
-
1256
- ## [1.0.0] - 2019-05-13
1257
-
1258
- No release notes
1259
-
1260
- ## [1.0.0-beta.10] - 2019-05-12
1261
-
1262
- ### Changed
1263
-
1264
- - Use `9999` and `-9999` for `order-last` and `order-first` utilities respectively
1265
-
1266
- ## [1.0.0-beta.9] - 2019-05-12
1267
-
1268
- ### Added
1269
-
1270
- - Add `bg-repeat-round` and `bg-repeat-space` utilities
1271
- - Add `select-all` and `select-auto` utilities
1272
-
1273
- ### Changed
1274
-
1275
- - Make all utilities responsive by default
1276
-
1277
- ## [1.0.0-beta.8] - 2019-04-28
1278
-
1279
- ### Added
1280
-
1281
- - Adds `responsive` variants for the new order utilities by default, should have been there all along
1282
-
1283
- ## [1.0.0-beta.7] - 2019-04-27
1284
-
1285
- ### Fixed
1286
-
1287
- - Fixes a bug where you couldn't extend the margin config
1288
-
1289
- ## [1.0.0-beta.6] - 2019-04-27
1290
-
1291
- ### Added
1292
-
1293
- - Added support for negative inset (`-top-6`, `-right-4`) and z-index (`-z-10`) utilities, using the same negative key syntax supported by the margin plugin
1294
- - Add missing fractions as well as x/12 fractions to width scale
1295
- - Add `order` utilities
1296
- - Add `cursor-text` class by default
1297
-
1298
- ### Changed
1299
-
1300
- - Make it possible to access your fully merged config file in JS
1301
-
1302
- ### Removed
1303
-
1304
- - Removed `negativeMargin` plugin, now the regular `margin` plugin supports generating negative classes (like `-mx-6`) by using negative keys in the config, like `-6`
1305
-
1306
- ## [1.0.0-beta.5] - 2019-04-18
1307
-
1308
- ### Changed
1309
-
1310
- - Make it possible to disable all core plugins using `corePlugins: false`
1311
- - Make it possible to configure a single list of variants that applies to all utility plugins
1312
- - Make it possible to whitelist which core plugins should be enabled
1313
-
1314
- ### Fixed
1315
-
1316
- - Fix a bug where stroke and fill plugins didn't properly handle the next object syntax for color definitions
1317
- - Fix a bug where you couldn't have comments near `@apply` directives
1318
-
1319
- ## [1.0.0-beta.4] - 2019-03-29
1320
-
1321
- ### Added
1322
-
1323
- - Add the `container` key to the scaffolded config file when generated with `--full`
1324
-
1325
- ### Changed
1326
-
1327
- - Bumps node dependency to 8.9.0 so we can keep our default config file clean, 6.9.0 is EOL next month anyways
1328
-
1329
- ### Removed
1330
-
1331
- - Removes `SFMono-Regular` from the beginning of the default monospace font stack, it has no italic support and Menlo looks better anyways
1332
-
1333
- ### Fixed
1334
-
1335
- - Fixes an issue where the user's config object was being mutated during processing (only affects @bradlc 😅)
1336
- - Fixes an issue where you couldn't use a closure to define theme sections under `extend`
1337
-
1338
- ## [1.0.0-beta.3] - 2019-03-18
1339
-
1340
- ### Added
1341
-
1342
- - Support lazy evaluation in `theme.extend`
1343
-
1344
- ### Changed
1345
-
1346
- - Use lighter default border color
1347
- - Revert #745 and use `bolder` for strong tags by default instead of `fontWeight.bold`
1348
-
1349
- ## [1.0.0-beta.2] - 2019-03-17
1350
-
1351
- ### Changed
1352
-
1353
- - Closures in the `theme` section of the config file are now passed a `theme` function instead of an object
1354
-
1355
- ### Fixed
1356
-
1357
- - Fix issue where `@screen` didn't work at all 🙃
1358
-
1359
- ## [1.0.0-beta.1] - 2019-03-17
1360
-
1361
- ### Added
1362
-
1363
- - New config file structure
1364
- - New expanded default color palette
1365
- - New default `maxWidth` scale
1366
- - Added utilities for `list-style-type` and `list-style-position`
1367
- - Added `break-all` utility
1368
-
1369
- ### Changed
1370
-
1371
- - `object-position` utilities are now customizable under `theme.objectPosition`
1372
- - `cursor` utilities are now customizable under `theme.cursors`
1373
- - `flex-grow/shrink` utilities are now customizable under `theme.flexGrow/flexShrink`
1374
- - Default variant output position can be customized
1375
- - Extended default line-height scale
1376
- - Extended default letter-spacing scale
1377
-
1378
- ## [0.7.4] - 2019-01-23
1379
-
1380
- ### Changed
1381
-
1382
- - Update our PostCSS related dependencies
1383
-
1384
- ### Fixed
1385
-
1386
- - Fix bug where class names containing a `.`character had the responsive prefix added in the wrong place
1387
-
1388
- ## [0.7.3] - 2018-12-03
1389
-
1390
- ### Changed
1391
-
1392
- - Update Normalize to v8.0.1
1393
-
1394
- ## [0.7.2] - 2018-11-05
1395
-
1396
- ### Added
1397
-
1398
- - Add `--no-autoprefixer` option to CLI `build` command
1399
-
1400
- ## [0.7.1] - 2018-11-05
1401
-
1402
- ### Changed
1403
-
1404
- - Update autoprefixer dependency
1405
-
1406
- ## [0.7.0] - 2018-10-31
1407
-
1408
- ### Added
1409
-
1410
- - Registering new variants from plugins
1411
- - Variant order can be customized per module
1412
- - Added focus-within variant
1413
- - Fancy CLI updates
1414
- - Option to generate config without comments
1415
- - Make configured prefix optional when using @apply
1416
- - Improve Flexbox behavior in IE 10/11
1417
-
1418
- ### Changed
1419
-
1420
- - Variant order in modules is now significant
1421
- - Normalize.css updated to v8.0.0
1422
- - Removed CSS fix for Chrome 62 button border radius change
1423
-
1424
- ## [0.6.6] - 2018-09-21
1425
-
1426
- ### Changed
1427
-
1428
- - Promote `shadowLookup` from experiment to official feature
1429
-
1430
- ## [0.6.5] - 2018-08-18
1431
-
1432
- ### Fixed
1433
-
1434
- - Fixes an issue where units were stripped from zero value properties
1435
-
1436
- ## [0.6.4] - 2018-07-16
1437
-
1438
- ### Fixed
1439
-
1440
- - Fixes an issue where changes to your configuration file were ignored when using `webpack --watch`
1441
-
1442
- ## [0.6.3] - 2018-07-11
1443
-
1444
- ### Fixed
1445
-
1446
- - Fixes an issue where `@tailwind utilities` generated no output
1447
-
1448
- ## [0.6.2] - 2018-03-11
1449
-
1450
- ### Added
1451
-
1452
- - Added table layout utilities for styling tables
1453
- - Configuration can now be passed as an object
1454
- - Registering new variants from plugins (experimental)
1455
- - Allow `@apply`-ing classes that aren't defined but would be generated (experimental)
1456
-
1457
- ### Changed
1458
-
1459
- - Default config file changes
1460
-
1461
- ## [0.6.1] - 2018-06-22
1462
-
1463
- ### Fixed
1464
-
1465
- - Fix incorrect box-shadow syntax for the `.shadow-outline` utility 🤦‍♂️
1466
-
1467
- ## [0.6.0] - 2018-06-21
1468
-
1469
- ### Added
1470
-
1471
- - Added border collapse utilities for styling tables
1472
- - Added more axis-specific overflow utilities
1473
- - Added `.outline-none` utility for suppressing focus styles
1474
- - Added `.shadow-outline` utility as an alternative to default browser focus styles
1475
- - Extended default padding, margin, negative margin, width, and height scales
1476
- - Enable focus and hover variants for more modules by default
1477
-
1478
- ### Changed
1479
-
1480
- - Removed default `outline: none !important` styles from focusable but keyboard-inaccessible elements
1481
- - Moved screen prefix for responsive `group-hover` variants
1482
- - Default config file changes
1483
-
1484
- ## [0.5.3] - 2018-05-07
1485
-
1486
- ### Changed
1487
-
1488
- - Improve sourcemaps for replaced styles like `preflight`
1489
-
1490
- ### Fixed
1491
-
1492
- - Fix bug where informational messages were being logged to stdout during build, preventing the ability to use Tailwind's output in Unix pipelines
1493
-
1494
- ## [0.5.2] - 2018-03-29
1495
-
1496
- ### Fixed
1497
-
1498
- - Fixes an issue with a dependency that had a security vulnerability
1499
-
1500
- ## [0.5.1] - 2018-03-13
1501
-
1502
- ### Removed
1503
-
1504
- - Reverts a change that renamed the `.roman` class to `.not-italic` due to the fact that it breaks compatibility with cssnext: [postcss/postcss-selector-not#10](https://github.com/postcss/postcss-selector-not/issues/10). We'll stick with `.roman` for now with a plan to switch to `.not-italic` in another breaking version should that issue get resolved in postcss-selector-not.
1505
-
1506
- ## [0.5.0] - 2018-03-13
1507
-
1508
- ### Added
1509
-
1510
- - Plugin system
1511
- - Added `.sticky position` utility
1512
- - Added `.cursor-wait` and `.cursor-move` utilities
1513
- - Added `.bg-auto` background size utility
1514
- - Background sizes are now customizable
1515
- - Support for active variants
1516
- - Better postcss-import support
1517
- - Configuration options for the `.container` component
1518
-
1519
- ### Changed
1520
-
1521
- - The `.container` component is now a built-in plugin
1522
- - State variant precedence changes
1523
- - New config file keys
1524
- - `.overflow-x/y-scroll` now set `overflow: scroll` instead of `overflow: auto`
1525
- - `.roman` renamed to `.not-italic`
1526
-
1527
- ## [0.4.3] - 2018-03-13
1528
-
1529
- ### Changed
1530
-
1531
- - Use `global.Object` to avoid issues with polyfills when importing the Tailwind config into other JS
1532
-
1533
- ## [0.4.2] - 2018-03-01
1534
-
1535
- ### Added
1536
-
1537
- - Add support for using a function to define class prefixes in addition to a simple string
1538
-
1539
- ### Changed
1540
-
1541
- - Improve the performance of @apply by using a lookup table instead of searching
1542
-
1543
- ### Fixed
1544
-
1545
- - Fix an issue where borders couldn't be applied to `img` tags without specifying a border style
1546
-
1547
- ## [0.4.1] - 2018-01-22
1548
-
1549
- ### Changed
1550
-
1551
- - Make default sans-serif font stack more future proof and safe to use with CSS `font` shorthand
1552
- - Replace stylefmt with Perfectionist to avoid weird stylelint conflicts
1553
-
1554
- ## [0.4.0] - 2017-12-15
1555
-
1556
- ### Added
1557
-
1558
- - `@apply`'d classes can now be made `!important` explicitly
1559
-
1560
- ### Changed
1561
-
1562
- - `@apply` now strips `!important` from any mixed in classes
1563
- - Default color palette tweaks
1564
-
1565
- ## [0.3.0] - 2017-12-01
1566
-
1567
- ### Added
1568
-
1569
- - Enable/disable modules and control which variants are generated for each
1570
- - Focus variants
1571
- - Group hover variants
1572
- - New `@variants` at-rule
1573
- - Customize the separator character
1574
- - Missing config keys now fallback to their default values
1575
- - New utilities
1576
-
1577
- ### Changed
1578
-
1579
- - Lists now have no margins by default
1580
- - `.pin` no longer sets width and height to 100%
1581
- - SVG `fill` no longer defaults to currentColor
1582
-
1583
- ## [0.2.2] - 2017-11-19
1584
-
1585
- ### Fixed
1586
-
1587
- - Fix issue with dist files not being published due to bug in latest npm
1588
-
1589
- ## [0.2.1] - 2017-11-18
1590
-
1591
- ### Fixed
1592
-
1593
- - Fix overly specific border-radius reset for Chrome 62 button styles
1594
-
1595
- ## [0.2.0] - 2017-11-17
1596
-
1597
- ### Added
1598
-
1599
- - Add a custom prefix to all utilities
1600
- - Optionally make all utilities `!important`
1601
- - Round element corners independently
1602
- - Cascading border colors and styles
1603
-
1604
- ### Changed
1605
-
1606
- - `auto` is no longer a hard-coded margin value
1607
- - The `defaultConfig` function is now a separate module
1608
- - Rounded utilities now combine position and radius size
1609
- - Border width utilities no longer affect border color/style
1610
- - `@apply` is now very strict about what classes can be applied
1611
- - Add `options` key to your config
1612
- - Spacing, radius, and border width utility declaration order changes
1613
-
1614
- ## [0.1.6] - 2017-11-09
1615
-
1616
- ### Fixed
1617
-
1618
- - Fix CDN files not being published to npm
1619
-
1620
- ## [0.1.5] - 2017-11-08
1621
-
1622
- ### Changed
1623
-
1624
- - Apply the same default placeholder styling that's applied to inputs to textareas
1625
-
1626
- ### Fixed
1627
-
1628
- - Fix CLI tool not loading config files properly
1629
-
1630
- ## [0.1.4] - 2017-11-06
1631
-
1632
- ### Added
1633
-
1634
- - Autoprefix dist assets for quick hacking and prototyping
1635
- - Add `my-auto`, `mt-auto`, and `mb-auto` margin utilities
1636
- - Add `sans-serif` to end of default `sans` font stack
1637
-
1638
- ### Changed
1639
-
1640
- - If using Webpack, it will now watch your config file changes
1641
- - When running `tailwind init [filename]`, automatically append `.js` to filename if not present
1642
- - Support default fallback value in `config(...)` function, ie. `config('colors.blue', #0000ff)`
1643
- - Don't output empty media queries if Tailwind processes a file that doesn't use Tailwind
1644
-
1645
- ### Fixed
1646
-
1647
- - Move list utilities earlier in stylesheet to allow overriding with spacing utilities
1648
-
1649
- ## [0.1.3] - 2017-11-02
1650
-
1651
- ### Added
1652
-
1653
- - Add new `.scrolling-touch` and `.scrolling-auto` utilities for controlling inertial scroll behavior on WebKit touch devices
1654
- - Generate separate dist files for preflight, utilities, and tailwind for CDN usage
1655
-
1656
- ## [0.1.2] - 2017-11-01
1657
-
1658
- ### Changed
1659
-
1660
- - Target Node 6.9.0 explicitly (instead of 8.6 implicitly) to support more users
1661
-
1662
- ### Fixed
1663
-
1664
- - Fix issue with config option not being respected in `tailwind build`
1665
-
1666
- ## [0.1.1] - 2017-11-01
1667
-
1668
- ### Fixed
1669
-
1670
- - Fix `tailwind build` CLI command not writing output files
1671
-
1672
- ## [0.1.0] - 2017-11-01
1673
-
1674
- ### Added
1675
-
1676
- - Everything!
1677
-
1678
- [unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.0-alpha.2...HEAD
1679
- [3.0.0-alpha.2]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.0-alpha.1...v3.0.0-alpha.2
1680
- [3.0.0-alpha.1]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.19...v3.0.0-alpha.1
1681
- [2.2.19]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.18...v2.2.19
1682
- [2.2.18]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.17...v2.2.18
1683
- [2.2.17]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.16...v2.2.17
1684
- [2.2.16]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.15...v2.2.16
1685
- [2.2.15]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.14...v2.2.15
1686
- [2.2.14]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.13...v2.2.14
1687
- [2.2.13]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.12...v2.2.13
1688
- [2.2.12]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.11...v2.2.12
1689
- [2.2.11]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.10...v2.2.11
1690
- [2.2.10]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.9...v2.2.10
1691
- [2.2.9]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.8...v2.2.9
1692
- [2.2.8]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.7...v2.2.8
1693
- [2.2.7]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.6...v2.2.7
1694
- [2.2.6]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.5...v2.2.6
1695
- [2.2.5]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.4...v2.2.5
1696
- [2.2.4]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.3...v2.2.4
1697
- [2.2.3]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.2...v2.2.3
1698
- [2.2.2]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.1...v2.2.2
1699
- [2.2.1]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.0...v2.2.1
1700
- [2.2.0]: https://github.com/tailwindlabs/tailwindcss/compare/v2.1.4...v2.2.0
1701
- [2.1.4]: https://github.com/tailwindlabs/tailwindcss/compare/v2.1.3...v2.1.4
1702
- [2.1.3]: https://github.com/tailwindlabs/tailwindcss/compare/v2.1.2...v2.1.3
1703
- [2.1.2]: https://github.com/tailwindlabs/tailwindcss/compare/v2.1.1...v2.1.2
1704
- [2.1.1]: https://github.com/tailwindlabs/tailwindcss/compare/v2.1.0...v2.1.1
1705
- [2.1.0]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.4...v2.1.0
1706
- [2.0.4]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.3...v2.0.4
1707
- [2.0.3]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.2...v2.0.3
1708
- [2.0.2]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.1...v2.0.2
1709
- [2.0.1]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0...v2.0.1
1710
- [2.0.0]: https://github.com/tailwindlabs/tailwindcss/compare/v1.9.6...v2.0.0
1711
- [2.0.0-alpha.25]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.24...v2.0.0-alpha.25
1712
- [2.0.0-alpha.24]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.23...v2.0.0-alpha.24
1713
- [2.0.0-alpha.23]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.22...v2.0.0-alpha.23
1714
- [2.0.0-alpha.22]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.21...v2.0.0-alpha.22
1715
- [2.0.0-alpha.21]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.20...v2.0.0-alpha.21
1716
- [2.0.0-alpha.20]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.19...v2.0.0-alpha.20
1717
- [2.0.0-alpha.19]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.18...v2.0.0-alpha.19
1718
- [2.0.0-alpha.18]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.17...v2.0.0-alpha.18
1719
- [2.0.0-alpha.17]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.16...v2.0.0-alpha.17
1720
- [2.0.0-alpha.16]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.15...v2.0.0-alpha.16
1721
- [2.0.0-alpha.15]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.14...v2.0.0-alpha.15
1722
- [2.0.0-alpha.14]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.13...v2.0.0-alpha.14
1723
- [2.0.0-alpha.13]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.12...v2.0.0-alpha.13
1724
- [2.0.0-alpha.12]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.11...v2.0.0-alpha.12
1725
- [2.0.0-alpha.11]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.10...v2.0.0-alpha.11
1726
- [2.0.0-alpha.10]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.9...v2.0.0-alpha.10
1727
- [2.0.0-alpha.9]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.8...v2.0.0-alpha.9
1728
- [2.0.0-alpha.8]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.7...v2.0.0-alpha.8
1729
- [2.0.0-alpha.7]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.6...v2.0.0-alpha.7
1730
- [2.0.0-alpha.6]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.5...v2.0.0-alpha.6
1731
- [2.0.0-alpha.5]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.4...v2.0.0-alpha.5
1732
- [2.0.0-alpha.4]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.3...v2.0.0-alpha.4
1733
- [2.0.0-alpha.3]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.2...v2.0.0-alpha.3
1734
- [2.0.0-alpha.2]: https://github.com/tailwindlabs/tailwindcss/compare/v2.0.0-alpha.1...v2.0.0-alpha.2
1735
- [1.9.6]: https://github.com/tailwindlabs/tailwindcss/compare/v1.9.5...v1.9.6
1736
- [2.0.0-alpha.1]: https://github.com/tailwindlabs/tailwindcss/compare/v1.9.5...v2.0.0-alpha.1
1737
- [1.9.5]: https://github.com/tailwindlabs/tailwindcss/compare/v1.9.4...v1.9.5
1738
- [1.9.4]: https://github.com/tailwindlabs/tailwindcss/compare/v1.9.3...v1.9.4
1739
- [1.9.3]: https://github.com/tailwindlabs/tailwindcss/compare/v1.9.2...v1.9.3
1740
- [1.9.2]: https://github.com/tailwindlabs/tailwindcss/compare/v1.9.1...v1.9.2
1741
- [1.9.1]: https://github.com/tailwindlabs/tailwindcss/compare/v1.9.0...v1.9.1
1742
- [1.9.0]: https://github.com/tailwindlabs/tailwindcss/compare/v1.8.13...v1.9.0
1743
- [1.8.13]: https://github.com/tailwindlabs/tailwindcss/compare/v1.8.12...v1.8.13
1744
- [1.8.12]: https://github.com/tailwindlabs/tailwindcss/compare/v1.8.11...v1.8.12
1745
- [1.8.11]: https://github.com/tailwindlabs/tailwindcss/compare/v1.8.10...v1.8.11
1746
- [1.8.10]: https://github.com/tailwindlabs/tailwindcss/compare/v1.8.9...v1.8.10
1747
- [1.8.9]: https://github.com/tailwindlabs/tailwindcss/compare/v1.8.8...v1.8.9
1748
- [1.8.8]: https://github.com/tailwindlabs/tailwindcss/compare/v1.8.7...v1.8.8
1749
- [1.8.7]: https://github.com/tailwindlabs/tailwindcss/compare/v1.8.6...v1.8.7
1750
- [1.8.6]: https://github.com/tailwindlabs/tailwindcss/compare/v1.8.5...v1.8.6
1751
- [1.8.5]: https://github.com/tailwindlabs/tailwindcss/compare/v1.8.4...v1.8.5
1752
- [1.8.4]: https://github.com/tailwindlabs/tailwindcss/compare/v1.8.3...v1.8.4
1753
- [1.8.3]: https://github.com/tailwindlabs/tailwindcss/compare/v1.8.2...v1.8.3
1754
- [1.8.2]: https://github.com/tailwindlabs/tailwindcss/compare/v1.8.1...v1.8.2
1755
- [1.8.1]: https://github.com/tailwindlabs/tailwindcss/compare/v1.8.0...v1.8.1
1756
- [1.8.0]: https://github.com/tailwindlabs/tailwindcss/compare/v1.7.6...v1.8.0
1757
- [1.7.6]: https://github.com/tailwindlabs/tailwindcss/compare/v1.7.5...v1.7.6
1758
- [1.7.5]: https://github.com/tailwindlabs/tailwindcss/compare/v1.7.4...v1.7.5
1759
- [1.7.4]: https://github.com/tailwindlabs/tailwindcss/compare/v1.7.3...v1.7.4
1760
- [1.7.3]: https://github.com/tailwindlabs/tailwindcss/compare/v1.7.2...v1.7.3
1761
- [1.7.2]: https://github.com/tailwindlabs/tailwindcss/compare/v1.7.1...v1.7.2
1762
- [1.7.1]: https://github.com/tailwindlabs/tailwindcss/compare/v1.7.0...v1.7.1
1763
- [1.7.0]: https://github.com/tailwindlabs/tailwindcss/compare/v1.6.3...v1.7.0
1764
- [1.6.3]: https://github.com/tailwindlabs/tailwindcss/compare/v1.6.2...v1.6.3
1765
- [1.6.2]: https://github.com/tailwindlabs/tailwindcss/compare/v1.6.1...v1.6.2
1766
- [1.6.1]: https://github.com/tailwindlabs/tailwindcss/compare/v1.6.0...v1.6.1
1767
- [1.6.0]: https://github.com/tailwindlabs/tailwindcss/compare/v1.5.2...v1.6.0
1768
- [1.5.2]: https://github.com/tailwindlabs/tailwindcss/compare/v1.5.1...v1.5.2
1769
- [1.5.1]: https://github.com/tailwindlabs/tailwindcss/compare/v1.5.0...v1.5.1
1770
- [1.5.0]: https://github.com/tailwindlabs/tailwindcss/compare/v1.4.6...v1.5.0
1771
- [1.4.6]: https://github.com/tailwindlabs/tailwindcss/compare/v1.4.5...v1.4.6
1772
- [1.4.5]: https://github.com/tailwindlabs/tailwindcss/compare/v1.4.4...v1.4.5
1773
- [1.4.4]: https://github.com/tailwindlabs/tailwindcss/compare/v1.4.3...v1.4.4
1774
- [1.4.3]: https://github.com/tailwindlabs/tailwindcss/compare/v1.4.2...v1.4.3
1775
- [1.4.2]: https://github.com/tailwindlabs/tailwindcss/compare/v1.4.1...v1.4.2
1776
- [1.4.1]: https://github.com/tailwindlabs/tailwindcss/compare/v1.4.0...v1.4.1
1777
- [1.4.0]: https://github.com/tailwindlabs/tailwindcss/compare/v1.3.5...v1.4.0
1778
- [1.3.5]: https://github.com/tailwindlabs/tailwindcss/compare/v1.3.4...v1.3.5
1779
- [1.3.4]: https://github.com/tailwindlabs/tailwindcss/compare/v1.3.3...v1.3.4
1780
- [1.3.3]: https://github.com/tailwindlabs/tailwindcss/compare/v1.3.1...v1.3.3
1781
- [1.3.1]: https://github.com/tailwindlabs/tailwindcss/compare/v1.3.0...v1.3.1
1782
- [1.3.0]: https://github.com/tailwindlabs/tailwindcss/compare/v1.2.0...v1.3.0
1783
- [1.2.0]: https://github.com/tailwindlabs/tailwindcss/compare/v1.1.4...v1.2.0
1784
- [1.2.0-canary.8]: https://github.com/tailwindlabs/tailwindcss/compare/v1.2.0-canary.7...v1.2.0-canary.8
1785
- [1.2.0-canary.7]: https://github.com/tailwindlabs/tailwindcss/compare/v1.2.0-canary.6...v1.2.0-canary.7
1786
- [1.2.0-canary.6]: https://github.com/tailwindlabs/tailwindcss/compare/v1.2.0-canary.5...v1.2.0-canary.6
1787
- [1.2.0-canary.5]: https://github.com/tailwindlabs/tailwindcss/compare/v1.2.0-canary.4...v1.2.0-canary.5
1788
- [1.2.0-canary.4]: https://github.com/tailwindlabs/tailwindcss/compare/v1.2.0-canary.3...v1.2.0-canary.4
1789
- [1.1.4]: https://github.com/tailwindlabs/tailwindcss/compare/v1.1.3...v1.1.4
1790
- [1.2.0-canary.1]: https://github.com/tailwindlabs/tailwindcss/compare/v1.2.0-canary.0...v1.2.0-canary.1
1791
- [1.1.3]: https://github.com/tailwindlabs/tailwindcss/compare/v1.1.2...v1.1.3
1792
- [1.2.0-canary.0]: https://github.com/tailwindlabs/tailwindcss/compare/v1.1.2...v1.2.0-canary.0
1793
- [1.1.2]: https://github.com/tailwindlabs/tailwindcss/compare/v1.1.1...v1.1.2
1794
- [1.1.1]: https://github.com/tailwindlabs/tailwindcss/compare/v1.1.0...v1.1.1
1795
- [1.1.0]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.6...v1.1.0
1796
- [1.0.6]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.5...v1.0.6
1797
- [1.0.5]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.4...v1.0.5
1798
- [1.0.4]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.3...v1.0.4
1799
- [1.0.3]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.2...v1.0.3
1800
- [1.0.2]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.1...v1.0.2
1801
- [1.0.1]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.0...v1.0.1
1802
- [1.0.0]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.0-beta.10...v1.0.0
1803
- [1.0.0-beta.10]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.0-beta.9...v1.0.0-beta.10
1804
- [1.0.0-beta.9]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.0-beta.8...v1.0.0-beta.9
1805
- [1.0.0-beta.8]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.0-beta.7...v1.0.0-beta.8
1806
- [1.0.0-beta.7]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.0-beta.6...v1.0.0-beta.7
1807
- [1.0.0-beta.6]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.0-beta.5...v1.0.0-beta.6
1808
- [1.0.0-beta.5]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.0-beta.4...v1.0.0-beta.5
1809
- [1.0.0-beta.4]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.0-beta.3...v1.0.0-beta.4
1810
- [1.0.0-beta.3]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.0-beta.2...v1.0.0-beta.3
1811
- [1.0.0-beta.2]: https://github.com/tailwindlabs/tailwindcss/compare/v1.0.0-beta.1...v1.0.0-beta.2
1812
- [1.0.0-beta.1]: https://github.com/tailwindlabs/tailwindcss/compare/v0.7.4...v1.0.0-beta.1
1813
- [0.7.4]: https://github.com/tailwindlabs/tailwindcss/compare/v0.7.3...v0.7.4
1814
- [0.7.3]: https://github.com/tailwindlabs/tailwindcss/compare/v0.7.2...v0.7.3
1815
- [0.7.2]: https://github.com/tailwindlabs/tailwindcss/compare/v0.7.1...v0.7.2
1816
- [0.7.1]: https://github.com/tailwindlabs/tailwindcss/compare/v0.7.0...v0.7.1
1817
- [0.7.0]: https://github.com/tailwindlabs/tailwindcss/compare/v0.6.6...v0.7.0
1818
- [0.6.6]: https://github.com/tailwindlabs/tailwindcss/compare/v0.6.5...v0.6.6
1819
- [0.6.5]: https://github.com/tailwindlabs/tailwindcss/compare/v0.6.4...v0.6.5
1820
- [0.6.4]: https://github.com/tailwindlabs/tailwindcss/compare/v0.6.3...v0.6.4
1821
- [0.6.3]: https://github.com/tailwindlabs/tailwindcss/compare/v0.6.2...v0.6.3
1822
- [0.6.2]: https://github.com/tailwindlabs/tailwindcss/compare/v0.6.1...v0.6.2
1823
- [0.6.1]: https://github.com/tailwindlabs/tailwindcss/compare/v0.6.0...v0.6.1
1824
- [0.6.0]: https://github.com/tailwindlabs/tailwindcss/compare/v0.5.3...v0.6.0
1825
- [0.5.3]: https://github.com/tailwindlabs/tailwindcss/compare/v0.5.2...v0.5.3
1826
- [0.5.2]: https://github.com/tailwindlabs/tailwindcss/compare/v0.5.1...v0.5.2
1827
- [0.5.1]: https://github.com/tailwindlabs/tailwindcss/compare/v0.5.0...v0.5.1
1828
- [0.5.0]: https://github.com/tailwindlabs/tailwindcss/compare/v0.4.3...v0.5.0
1829
- [0.4.3]: https://github.com/tailwindlabs/tailwindcss/compare/v0.4.2...v0.4.3
1830
- [0.4.2]: https://github.com/tailwindlabs/tailwindcss/compare/v0.4.1...v0.4.2
1831
- [0.4.1]: https://github.com/tailwindlabs/tailwindcss/compare/v0.4.0...v0.4.1
1832
- [0.4.0]: https://github.com/tailwindlabs/tailwindcss/compare/v0.3.0...v0.4.0
1833
- [0.3.0]: https://github.com/tailwindlabs/tailwindcss/compare/v0.2.2...v0.3.0
1834
- [0.2.2]: https://github.com/tailwindlabs/tailwindcss/compare/v0.2.1...v0.2.2
1835
- [0.2.1]: https://github.com/tailwindlabs/tailwindcss/compare/v0.2.0...v0.2.1
1836
- [0.2.0]: https://github.com/tailwindlabs/tailwindcss/compare/v0.1.6...v0.2.0
1837
- [0.1.6]: https://github.com/tailwindlabs/tailwindcss/compare/v0.1.5...v0.1.6
1838
- [0.1.5]: https://github.com/tailwindlabs/tailwindcss/compare/v0.1.4...v0.1.5
1839
- [0.1.4]: https://github.com/tailwindlabs/tailwindcss/compare/v0.1.3...v0.1.4
1840
- [0.1.3]: https://github.com/tailwindlabs/tailwindcss/compare/v0.1.2...v0.1.3
1841
- [0.1.2]: https://github.com/tailwindlabs/tailwindcss/compare/v0.1.1...v0.1.2
1842
- [0.1.1]: https://github.com/tailwindlabs/tailwindcss/compare/v0.1.0...v0.1.1
1843
- [0.1.0]: https://github.com/tailwindlabs/tailwindcss/releases/tag/v0.1.0