From c834da4e80859cea69ef82c58a79832eb6c0933c Mon Sep 17 00:00:00 2001 From: Nikolai Grushkovsky Date: Wed, 14 Dec 2022 21:48:49 +0700 Subject: [PATCH] Fix missing `string[]` in the `dropShadow` type (#10072) * Fix missing `string[]` in the `dropShadow` type * Update changelog Co-authored-by: Jordan Pittman --- CHANGELOG.md | 1 + types/config.d.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 631d40443..d3f279348 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/types/config.d.ts b/types/config.d.ts index e54530345..9a5e0422f 100644 --- a/types/config.d.ts +++ b/types/config.d.ts @@ -209,7 +209,7 @@ interface ThemeConfig { blur: ResolvableTo brightness: ResolvableTo contrast: ResolvableTo - dropShadow: ResolvableTo + dropShadow: ResolvableTo> grayscale: ResolvableTo hueRotate: ResolvableTo invert: ResolvableTo