Skip to content

Commit 4de0769

Browse files
Fix config types for boxShadow (#14856)
`boxShadow` accepts multiple shadows just like `dropShadow` does. This patch fixes the TS typings to reflect that. See demo showing that multiple shadows are supported (complete with it incorrectly complaining that the config is bad) here: https://play.tailwindcss.com/VHqWbbEIrz?file=config --------- Co-authored-by: Philipp Spiess <[email protected]>
1 parent 8b41e82 commit 4de0769

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
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Fixed
1111

1212
- Bump versions for security vulnerabilities ([#14697](https://github.com/tailwindlabs/tailwindcss/pull/14697))
13+
- Ensure the TypeScript types for the `boxShadow` theme configuration allows arrays ([#14856](https://github.com/tailwindlabs/tailwindcss/pull/14856))
1314

1415
## [3.4.14] - 2024-10-15
1516

types/config.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ export interface ThemeConfig {
207207
caretColor: ThemeConfig['colors']
208208
accentColor: ThemeConfig['colors']
209209
opacity: ResolvableTo<KeyValuePair>
210-
boxShadow: ResolvableTo<KeyValuePair>
210+
boxShadow: ResolvableTo<KeyValuePair<string, string | string[]>>
211211
boxShadowColor: ThemeConfig['colors']
212212
outlineWidth: ResolvableTo<KeyValuePair>
213213
outlineOffset: ResolvableTo<KeyValuePair>

0 commit comments

Comments
 (0)