@tailwindcss/forms
Advanced tools
Comparing version 0.0.0-insiders.491a834 to 0.0.0-insiders.e8e01c3
@@ -10,4 +10,11 @@ # Changelog | ||
Nothing yet! | ||
- Nothing yet! | ||
## [0.4.0] - 2021-12-09 | ||
### Changed | ||
- Update color palette references for v3 ([#83](https://github.com/tailwindlabs/tailwindcss-forms/pull/83)) | ||
- Don't read outline.none value from config ([#89](https://github.com/tailwindlabs/tailwindcss-forms/pull/89)) | ||
## [0.3.4] - 2021-09-28 | ||
@@ -84,3 +91,4 @@ | ||
[unreleased]: https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.3.4...HEAD | ||
[unreleased]: https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.4.0...HEAD | ||
[0.4.0]: https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.3.3...v0.4.0 | ||
[0.3.4]: https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.3.3...v0.3.4 | ||
@@ -87,0 +95,0 @@ [0.3.3]: https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.3.2...v0.3.3 |
{ | ||
"name": "@tailwindcss/forms", | ||
"version": "0.0.0-insiders.491a834", | ||
"version": "0.0.0-insiders.e8e01c3", | ||
"main": "src/index.js", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -6,3 +6,3 @@ const svgToDataUri = require('mini-svg-data-uri') | ||
const [baseFontSize, { lineHeight: baseLineHeight }] = defaultTheme.fontSize.base | ||
const { spacing, borderWidth, borderRadius, outline } = defaultTheme | ||
const { spacing, borderWidth, borderRadius } = defaultTheme | ||
@@ -47,4 +47,4 @@ const forms = plugin.withOptions(function (options = { strategy: 'base' }) { | ||
'&:focus': { | ||
outline: outline.none[0], | ||
'outline-offset': outline.none[1], | ||
outline: '2px solid transparent', | ||
'outline-offset': '2px', | ||
'--tw-ring-inset': 'var(--tw-empty,/*!*/ /*!*/)', | ||
@@ -154,4 +154,4 @@ '--tw-ring-offset-width': '0px', | ||
styles: { | ||
outline: outline.none[0], | ||
'outline-offset': outline.none[1], | ||
outline: '2px solid transparent', | ||
'outline-offset': '2px', | ||
'--tw-ring-inset': 'var(--tw-empty,/*!*/ /*!*/)', | ||
@@ -158,0 +158,0 @@ '--tw-ring-offset-width': '2px', |
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
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
46475