tailwindcss 2.2.12 → 2.2.16
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.
- package/CHANGELOG.md +61 -22
- package/dist/base.css +1 -1
- package/dist/base.min.css +1 -1
- package/dist/tailwind-dark.css +1 -145
- package/dist/tailwind-dark.min.css +1 -1
- package/dist/tailwind-experimental.css +1 -145
- package/dist/tailwind-experimental.min.css +1 -1
- package/dist/tailwind.css +1 -145
- package/dist/tailwind.min.css +1 -1
- package/dist/utilities.css +0 -144
- package/dist/utilities.min.css +1 -1
- package/lib/cli.js +1 -0
- package/lib/plugins/divideWidth.js +14 -9
- package/lib/util/parseAnimationValue.js +7 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,53 +9,87 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
### Changed
|
|
11
11
|
|
|
12
|
-
- Remove AOT engine, make JIT the default [#5340](https://github.com/tailwindlabs/tailwindcss/pull/5340)
|
|
13
|
-
- Throw when trying to `@apply` the `group` class [#4666](https://github.com/tailwindlabs/tailwindcss/pull/4666)
|
|
14
|
-
- Remove dependency on `modern-normalize`, inline and consolidate with Preflight [#5358](https://github.com/tailwindlabs/tailwindcss/pull/5358)
|
|
15
|
-
- Enable extended color palette by default with updated color names [#5384](https://github.com/tailwindlabs/tailwindcss/pull/5384)
|
|
12
|
+
- Remove AOT engine, make JIT the default ([#5340](https://github.com/tailwindlabs/tailwindcss/pull/5340))
|
|
13
|
+
- Throw when trying to `@apply` the `group` class ([#4666](https://github.com/tailwindlabs/tailwindcss/pull/4666))
|
|
14
|
+
- Remove dependency on `modern-normalize`, inline and consolidate with Preflight ([#5358](https://github.com/tailwindlabs/tailwindcss/pull/5358))
|
|
15
|
+
- Enable extended color palette by default with updated color names ([#5384](https://github.com/tailwindlabs/tailwindcss/pull/5384))
|
|
16
16
|
|
|
17
17
|
### Added
|
|
18
18
|
|
|
19
|
-
- Add native `aspect-ratio` utilities [#5359](https://github.com/tailwindlabs/tailwindcss/pull/5359)
|
|
20
|
-
- Unify config callback helpers into single object [#5382](https://github.com/tailwindlabs/tailwindcss/pull/5382)
|
|
21
|
-
- Preserve original color format when adding opacity whenever possible [#5154](https://github.com/tailwindlabs/tailwindcss/pull/5154)
|
|
19
|
+
- Add native `aspect-ratio` utilities ([#5359](https://github.com/tailwindlabs/tailwindcss/pull/5359))
|
|
20
|
+
- Unify config callback helpers into single object ([#5382](https://github.com/tailwindlabs/tailwindcss/pull/5382))
|
|
21
|
+
- Preserve original color format when adding opacity whenever possible ([#5154](https://github.com/tailwindlabs/tailwindcss/pull/5154))
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- Fix defining colors as functions when color opacity plugins are disabled ([#5470](https://github.com/tailwindlabs/tailwindcss/pull/5470))
|
|
26
|
+
|
|
27
|
+
## [2.2.16] - 2021-09-26
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
- JIT: Properly handle animations that use CSS custom properties ([#5602](https://github.com/tailwindlabs/tailwindcss/pull/5602))
|
|
32
|
+
|
|
33
|
+
## [2.2.15] - 2021-09-10
|
|
34
|
+
|
|
35
|
+
### Fixed
|
|
36
|
+
|
|
37
|
+
- Ensure using CLI without `-i` for input file continues to work even though deprecated ([#5464](https://github.com/tailwindlabs/tailwindcss/pull/5464))
|
|
38
|
+
|
|
39
|
+
## [2.2.14] - 2021-09-08
|
|
40
|
+
|
|
41
|
+
### Fixed
|
|
42
|
+
|
|
43
|
+
- 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))
|
|
44
|
+
|
|
45
|
+
## [2.2.13] - 2021-09-08
|
|
46
|
+
|
|
47
|
+
### Fixed
|
|
48
|
+
|
|
49
|
+
- Replace `clean-css` with `cssnano` for CDN builds to fix minified builds ([75cc3ca](https://github.com/tailwindlabs/tailwindcss/commit/75cc3ca305aedddc8a85f3df1a420fefad3fb5c4))
|
|
22
50
|
|
|
23
51
|
## [2.2.12] - 2021-09-08
|
|
24
52
|
|
|
25
53
|
### Fixed
|
|
26
54
|
|
|
27
|
-
- Ensure that divide utilities inject a default border color [#5438](https://github.com/tailwindlabs/tailwindcss/pull/5438)
|
|
55
|
+
- Ensure that divide utilities inject a default border color ([#5438](https://github.com/tailwindlabs/tailwindcss/pull/5438))
|
|
56
|
+
|
|
57
|
+
## [2.2.11] - 2021-09-07
|
|
58
|
+
|
|
59
|
+
### Fixed
|
|
60
|
+
|
|
61
|
+
- Rebundle to fix missing CLI peer dependencies
|
|
28
62
|
|
|
29
63
|
## [2.2.10] - 2021-09-06
|
|
30
64
|
|
|
31
65
|
### Fixed
|
|
32
66
|
|
|
33
|
-
- Fix build error when using `presets: []` in config file [#4903](https://github.com/tailwindlabs/tailwindcss/pull/4903)
|
|
67
|
+
- Fix build error when using `presets: []` in config file ([#4903](https://github.com/tailwindlabs/tailwindcss/pull/4903))
|
|
34
68
|
|
|
35
69
|
### Added
|
|
36
70
|
|
|
37
|
-
- Reintroduce universal selector optimizations under experimental `optimizeUniversalDefaults` flag [a9e160c](https://github.com/tailwindlabs/tailwindcss/commit/a9e160cf9acb75a2bbac34f8864568b12940f89a)
|
|
71
|
+
- Reintroduce universal selector optimizations under experimental `optimizeUniversalDefaults` flag ([a9e160c](https://github.com/tailwindlabs/tailwindcss/commit/a9e160cf9acb75a2bbac34f8864568b12940f89a))
|
|
38
72
|
|
|
39
73
|
## [2.2.9] - 2021-08-30
|
|
40
74
|
|
|
41
75
|
### Fixed
|
|
42
76
|
|
|
43
|
-
- JIT: Fix `@apply`ing utilities that contain variants + the important modifier [#4854](https://github.com/tailwindlabs/tailwindcss/pull/4854)
|
|
44
|
-
- JIT: Don't strip "null" when parsing tracked file paths [#5008](https://github.com/tailwindlabs/tailwindcss/pull/5008)
|
|
45
|
-
- Pin `clean-css` to v5.1.4 to fix empty CSS variables in CDN builds [#5338](https://github.com/tailwindlabs/tailwindcss/pull/5338)
|
|
77
|
+
- JIT: Fix `@apply`ing utilities that contain variants + the important modifier ([#4854](https://github.com/tailwindlabs/tailwindcss/pull/4854))
|
|
78
|
+
- JIT: Don't strip "null" when parsing tracked file paths ([#5008](https://github.com/tailwindlabs/tailwindcss/pull/5008))
|
|
79
|
+
- Pin `clean-css` to v5.1.4 to fix empty CSS variables in CDN builds ([#5338](https://github.com/tailwindlabs/tailwindcss/pull/5338))
|
|
46
80
|
|
|
47
81
|
## [2.2.8] - 2021-08-27
|
|
48
82
|
|
|
49
83
|
### Fixed
|
|
50
84
|
|
|
51
85
|
- Improve accessibility of default link focus styles in Firefox ([#5082](https://github.com/tailwindlabs/tailwindcss/pull/5082))
|
|
52
|
-
- JIT: Fix animation variants corrupting keyframes rules [#5223](https://github.com/tailwindlabs/tailwindcss/pull/5223)
|
|
53
|
-
- JIT: Ignore escaped commas when splitting selectors to apply prefixes [#5239](https://github.com/tailwindlabs/tailwindcss/pull/5239/)
|
|
54
|
-
- Nesting: Maintain PostCSS node sources when handling `@apply` [#5249](https://github.com/tailwindlabs/tailwindcss/pull/5249)
|
|
55
|
-
- JIT: Fix support for animation lists [#5252](https://github.com/tailwindlabs/tailwindcss/pull/5252)
|
|
56
|
-
- JIT: Fix arbitrary value support for `object-position` utilities [#5245](https://github.com/tailwindlabs/tailwindcss/pull/5245)
|
|
57
|
-
- CLI: Abort watcher if stdin is closed to avoid zombie processes [#4997](https://github.com/tailwindlabs/tailwindcss/pull/4997)
|
|
58
|
-
- JIT: Ignore arbitrary values with unbalanced brackets [#5293](https://github.com/tailwindlabs/tailwindcss/pull/5293)
|
|
86
|
+
- JIT: Fix animation variants corrupting keyframes rules ([#5223](https://github.com/tailwindlabs/tailwindcss/pull/5223))
|
|
87
|
+
- JIT: Ignore escaped commas when splitting selectors to apply prefixes ([#5239](https://github.com/tailwindlabs/tailwindcss/pull/5239/))
|
|
88
|
+
- Nesting: Maintain PostCSS node sources when handling `@apply` ([#5249](https://github.com/tailwindlabs/tailwindcss/pull/5249))
|
|
89
|
+
- JIT: Fix support for animation lists ([#5252](https://github.com/tailwindlabs/tailwindcss/pull/5252))
|
|
90
|
+
- JIT: Fix arbitrary value support for `object-position` utilities ([#5245](https://github.com/tailwindlabs/tailwindcss/pull/5245))
|
|
91
|
+
- CLI: Abort watcher if stdin is closed to avoid zombie processes ([#4997](https://github.com/tailwindlabs/tailwindcss/pull/4997))
|
|
92
|
+
- JIT: Ignore arbitrary values with unbalanced brackets ([#5293](https://github.com/tailwindlabs/tailwindcss/pull/5293))
|
|
59
93
|
|
|
60
94
|
## [2.2.7] - 2021-07-23
|
|
61
95
|
|
|
@@ -1548,8 +1582,13 @@ No release notes
|
|
|
1548
1582
|
|
|
1549
1583
|
- Everything!
|
|
1550
1584
|
|
|
1551
|
-
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.
|
|
1552
|
-
[2.2.
|
|
1585
|
+
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.16...HEAD
|
|
1586
|
+
[2.2.16]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.15...v2.2.16
|
|
1587
|
+
[2.2.15]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.14...v2.2.15
|
|
1588
|
+
[2.2.14]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.13...v2.2.14
|
|
1589
|
+
[2.2.13]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.12...v2.2.13
|
|
1590
|
+
[2.2.12]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.11...v2.2.12
|
|
1591
|
+
[2.2.11]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.10...v2.2.11
|
|
1553
1592
|
[2.2.10]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.9...v2.2.10
|
|
1554
1593
|
[2.2.9]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.8...v2.2.9
|
|
1555
1594
|
[2.2.8]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.7...v2.2.8
|
package/dist/base.css
CHANGED
package/dist/base.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tailwindcss v2.2.
|
|
1
|
+
/*! tailwindcss v2.2.16 | MIT License | https://tailwindcss.com *//*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */*,::after,::before{box-sizing:border-box}html{-moz-tab-size:4;tab-size:4}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}body{font-family:system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji'}hr{height:0;color:inherit}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,'Liberation Mono',Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}fieldset{margin:0;padding:0}ol,ul{list-style:none;margin:0;padding:0}html{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";line-height:1.5}body{font-family:inherit;line-height:inherit}*,::after,::before{box-sizing:border-box;border-width:0;border-style:solid;border-color:currentColor}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:-moz-focusring{outline:auto}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,::after,::before{--tw-border-opacity:1;border-color:rgba(229,231,235,var(--tw-border-opacity))}
|