From a713cdfd0ac7fab6521c9a7229e8dd8bf58379ab Mon Sep 17 00:00:00 2001 From: Justin Paige <77657745+jhpaige@users.noreply.github.com> Date: Tue, 5 Aug 2025 15:01:37 -0400 Subject: [PATCH] Update 18-class.md Rest of doc references 5.16 but this is from 5.19 so added the clarification. --- documentation/docs/03-template-syntax/18-class.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/03-template-syntax/18-class.md b/documentation/docs/03-template-syntax/18-class.md index 1ea4a208df..db85db4b37 100644 --- a/documentation/docs/03-template-syntax/18-class.md +++ b/documentation/docs/03-template-syntax/18-class.md @@ -71,7 +71,7 @@ The user of this component has the same flexibility to use a mixture of objects, ``` -Svelte also exposes the `ClassValue` type, which is the type of value that the `class` attribute on elements accept. This is useful if you want to use a type-safe class name in component props: +Since Svelte 5.19, Svelte also exposes the `ClassValue` type, which is the type of value that the `class` attribute on elements accept. This is useful if you want to use a type-safe class name in component props: ```svelte