From 8cf21a383c45cf6d645787a00d2b69a9bc5526e1 Mon Sep 17 00:00:00 2001 From: Nikolai Grushkovsky Date: Wed, 14 Dec 2022 16:50:10 +0700 Subject: [PATCH 1/2] Fix missing `string[]` in the `dropShadow` type --- types/config.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/config.d.ts b/types/config.d.ts index e5453034567f..9a5e0422f2cb 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 From 3b99526ff3cff15d392f240835042ffffeabfcb2 Mon Sep 17 00:00:00 2001 From: Jordan Pittman Date: Wed, 14 Dec 2022 09:29:21 -0500 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 631d40443600..d3f2793487a6 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