From c58434d09bf869643861290861398a50af8aacee Mon Sep 17 00:00:00 2001 From: Adam Wathan Date: Tue, 10 Jan 2023 19:18:19 -0500 Subject: [PATCH 1/3] Add `delay-0` by default --- stubs/defaultConfig.stub.js | 1 + 1 file changed, 1 insertion(+) diff --git a/stubs/defaultConfig.stub.js b/stubs/defaultConfig.stub.js index 4aaca4e1d17b..20d344db5887 100644 --- a/stubs/defaultConfig.stub.js +++ b/stubs/defaultConfig.stub.js @@ -852,6 +852,7 @@ module.exports = { 'top-left': 'top left', }, transitionDelay: { + 0: '0s', 75: '75ms', 100: '100ms', 150: '150ms', From 096647d7108995344eebadce7af0602e26df15a6 Mon Sep 17 00:00:00 2001 From: Adam Wathan Date: Tue, 10 Jan 2023 21:41:26 -0500 Subject: [PATCH 2/3] Update defaultConfig.stub.js --- stubs/defaultConfig.stub.js | 1 + 1 file changed, 1 insertion(+) diff --git a/stubs/defaultConfig.stub.js b/stubs/defaultConfig.stub.js index 20d344db5887..3942d4741e8d 100644 --- a/stubs/defaultConfig.stub.js +++ b/stubs/defaultConfig.stub.js @@ -864,6 +864,7 @@ module.exports = { }, transitionDuration: { DEFAULT: '150ms', + 0: '0s', 75: '75ms', 100: '100ms', 150: '150ms', From 2ec948c3387aa4db30f16d55bfb7338f4b39fb1b Mon Sep 17 00:00:00 2001 From: Robin Malfait Date: Wed, 11 Jan 2023 11:09:02 +0100 Subject: [PATCH 3/3] update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3793da7446f4..50ee9372c17f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support using variables as arbitrary values without `var(...)` ([#9880](https://github.com/tailwindlabs/tailwindcss/pull/9880), [#9962](https://github.com/tailwindlabs/tailwindcss/pull/9962)) - Add `--watch=always` option to prevent exit when stdin closes ([#9966](https://github.com/tailwindlabs/tailwindcss/pull/9966)) - Add standalone CLI build for 64-bit Windows on ARM (`node16-win-arm64`) ([#10001](https://github.com/tailwindlabs/tailwindcss/pull/10001)) +- Add `delay-0` and `duration-0` by default ([#10294](https://github.com/tailwindlabs/tailwindcss/pull/10294)) ### Fixed