@tailwindcss/forms
Advanced tools
Comparing version 0.5.0 to 0.5.1
@@ -10,4 +10,11 @@ # Changelog | ||
Nothing yet! | ||
- Nothing yet! | ||
## [0.5.1] - 2022-05-03 | ||
### Fixed | ||
- Remove duplicate `outline` property ([#116](https://github.com/tailwindlabs/tailwindcss-forms/pull/116)) | ||
- Fix autoprefixer warning about `color-adjust` ([#115](https://github.com/tailwindlabs/tailwindcss-forms/pull/115)) | ||
## [0.5.0] - 2022-03-02 | ||
@@ -28,3 +35,3 @@ | ||
- Use `addComponents` for class strategy ([#91](https://github.com/tailwindlabs/tailwindcss-forms/pull/91)) | ||
- Fix extra height on Safari date/time inputs ([#109](https://github.com/tailwindlabs/tailwindcss-forms/pull/109)) | ||
- Fix extra height on Safari date/time inputs ([#109](https://github.com/tailwindlabs/tailwindcss-forms/pull/109)) | ||
@@ -109,3 +116,4 @@ ## [0.4.0] - 2021-12-09 | ||
[unreleased]: https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.5.0...HEAD | ||
[unreleased]: https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.5.1...HEAD | ||
[0.5.1]: https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.5.0...v0.5.1 | ||
[0.5.0]: https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.4.1...v0.5.0 | ||
@@ -112,0 +120,0 @@ [0.4.1]: https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.4.0...v0.4.1 |
{ | ||
"name": "@tailwindcss/forms", | ||
"version": "0.5.0", | ||
"version": "0.5.1", | ||
"main": "src/index.js", | ||
@@ -26,7 +26,7 @@ "license": "MIT", | ||
"devDependencies": { | ||
"autoprefixer": "^10.4.2", | ||
"autoprefixer": "^10.4.6", | ||
"concurrently": "^5.3.0", | ||
"live-server": "^1.2.1", | ||
"postcss": "^8.4.5", | ||
"tailwindcss": "^3.0.2" | ||
"live-server": "^1.2.2", | ||
"postcss": "^8.4.13", | ||
"tailwindcss": "^3.0.24" | ||
}, | ||
@@ -33,0 +33,0 @@ "dependencies": { |
@@ -129,3 +129,3 @@ const svgToDataUri = require('mini-svg-data-uri') | ||
'padding-right': spacing[10], | ||
'color-adjust': `exact`, | ||
'print-color-adjust': `exact`, | ||
}, | ||
@@ -142,3 +142,3 @@ }, | ||
'padding-right': spacing[3], | ||
'color-adjust': 'unset', | ||
'print-color-adjust': 'unset', | ||
}, | ||
@@ -152,3 +152,3 @@ }, | ||
padding: '0', | ||
'color-adjust': 'exact', | ||
'print-color-adjust': 'exact', | ||
display: 'inline-block', | ||
@@ -283,4 +283,6 @@ 'vertical-align': 'middle', | ||
styles: { | ||
outline: `1px solid ButtonText`, | ||
outline: `1px auto -webkit-focus-ring-color`, | ||
outline: [ | ||
`1px solid ButtonText`, | ||
`1px auto -webkit-focus-ring-color` | ||
], | ||
}, | ||
@@ -287,0 +289,0 @@ }, |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
48604
11
306