File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments