tailwindcss 2.2.11 → 2.2.15
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 +51 -1
- package/dist/base.css +1 -1
- package/dist/base.min.css +1 -1
- package/dist/tailwind-dark.css +1 -1
- package/dist/tailwind-dark.min.css +1 -1
- package/dist/tailwind-experimental.css +1 -1
- package/dist/tailwind-experimental.min.css +1 -1
- package/dist/tailwind.css +1 -1
- package/dist/tailwind.min.css +1 -1
- package/lib/cli.js +1 -0
- package/lib/plugins/divideWidth.js +14 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,9 +7,55 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Changed
|
|
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)
|
|
16
|
+
|
|
17
|
+
### Added
|
|
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)
|
|
22
|
+
|
|
23
|
+
## [2.2.12] - 2021-09-08
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- Ensure that divide utilities inject a default border color [#5438](https://github.com/tailwindlabs/tailwindcss/pull/5438)
|
|
28
|
+
|
|
29
|
+
## [2.2.10] - 2021-09-06
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- Fix build error when using `presets: []` in config file [#4903](https://github.com/tailwindlabs/tailwindcss/pull/4903)
|
|
34
|
+
|
|
35
|
+
### Added
|
|
36
|
+
|
|
37
|
+
- Reintroduce universal selector optimizations under experimental `optimizeUniversalDefaults` flag [a9e160c](https://github.com/tailwindlabs/tailwindcss/commit/a9e160cf9acb75a2bbac34f8864568b12940f89a)
|
|
38
|
+
|
|
39
|
+
## [2.2.9] - 2021-08-30
|
|
40
|
+
|
|
41
|
+
### Fixed
|
|
42
|
+
|
|
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)
|
|
46
|
+
|
|
47
|
+
## [2.2.8] - 2021-08-27
|
|
48
|
+
|
|
10
49
|
### Fixed
|
|
11
50
|
|
|
12
51
|
- 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)
|
|
13
59
|
|
|
14
60
|
## [2.2.7] - 2021-07-23
|
|
15
61
|
|
|
@@ -1502,7 +1548,11 @@ No release notes
|
|
|
1502
1548
|
|
|
1503
1549
|
- Everything!
|
|
1504
1550
|
|
|
1505
|
-
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.
|
|
1551
|
+
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.12...HEAD
|
|
1552
|
+
[2.2.12]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.10...v2.2.12
|
|
1553
|
+
[2.2.10]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.9...v2.2.10
|
|
1554
|
+
[2.2.9]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.8...v2.2.9
|
|
1555
|
+
[2.2.8]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.7...v2.2.8
|
|
1506
1556
|
[2.2.7]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.6...v2.2.7
|
|
1507
1557
|
[2.2.6]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.5...v2.2.6
|
|
1508
1558
|
[2.2.5]: https://github.com/tailwindlabs/tailwindcss/compare/v2.2.4...v2.2.5
|
package/dist/base.css
CHANGED
package/dist/base.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tailwindcss v2.2.
|
|
1
|
+
/*! tailwindcss v2.2.15 | 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))}
|
package/dist/tailwind-dark.css
CHANGED