Skip to content

Commit c834da4

Browse files
Fix missing string[] in the dropShadow type (#10072)
* Fix missing `string[]` in the `dropShadow` type * Update changelog Co-authored-by: Jordan Pittman <[email protected]>
1 parent ce7ac96 commit c834da4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2727
- Add `data` key to theme types ([#10023](https://github.com/tailwindlabs/tailwindcss/pull/10023))
2828
- Prevent invalid arbitrary variant selectors from failing the build ([#10059](https://github.com/tailwindlabs/tailwindcss/pull/10059))
2929
- Properly handle subtraction followed by a variable ([#10074](https://github.com/tailwindlabs/tailwindcss/pull/10074))
30+
- Fix missing `string[]` in the `theme.dropShadow` types ([#10072](https://github.com/tailwindlabs/tailwindcss/pull/10072))
3031

3132
### Changed
3233

types/config.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ interface ThemeConfig {
209209
blur: ResolvableTo<KeyValuePair>
210210
brightness: ResolvableTo<KeyValuePair>
211211
contrast: ResolvableTo<KeyValuePair>
212-
dropShadow: ResolvableTo<KeyValuePair>
212+
dropShadow: ResolvableTo<KeyValuePair<string, string | string[]>>
213213
grayscale: ResolvableTo<KeyValuePair>
214214
hueRotate: ResolvableTo<KeyValuePair>
215215
invert: ResolvableTo<KeyValuePair>

0 commit comments

Comments
 (0)