mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
Fix missing string[] in the dropShadow type (#10072)
* Fix missing `string[]` in the `dropShadow` type * Update changelog Co-authored-by: Jordan Pittman <jordan@cryptica.me>
This commit is contained in:
parent
ce7ac96e88
commit
c834da4e80
@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- Add `data` key to theme types ([#10023](https://github.com/tailwindlabs/tailwindcss/pull/10023))
|
||||
- Prevent invalid arbitrary variant selectors from failing the build ([#10059](https://github.com/tailwindlabs/tailwindcss/pull/10059))
|
||||
- Properly handle subtraction followed by a variable ([#10074](https://github.com/tailwindlabs/tailwindcss/pull/10074))
|
||||
- Fix missing `string[]` in the `theme.dropShadow` types ([#10072](https://github.com/tailwindlabs/tailwindcss/pull/10072))
|
||||
|
||||
### Changed
|
||||
|
||||
|
||||
2
types/config.d.ts
vendored
2
types/config.d.ts
vendored
@ -209,7 +209,7 @@ interface ThemeConfig {
|
||||
blur: ResolvableTo<KeyValuePair>
|
||||
brightness: ResolvableTo<KeyValuePair>
|
||||
contrast: ResolvableTo<KeyValuePair>
|
||||
dropShadow: ResolvableTo<KeyValuePair>
|
||||
dropShadow: ResolvableTo<KeyValuePair<string, string | string[]>>
|
||||
grayscale: ResolvableTo<KeyValuePair>
|
||||
hueRotate: ResolvableTo<KeyValuePair>
|
||||
invert: ResolvableTo<KeyValuePair>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user