From 0fd06e6140da93281a203d388f9ebb377e0f2953 Mon Sep 17 00:00:00 2001 From: Nick Wing Date: Fri, 15 Mar 2024 09:28:52 -0500 Subject: [PATCH] built docs after reordering focus and blur --- COMPONENT_INDEX.md | 2 +- docs/src/COMPONENT_API.json | 4 ++-- types/Checkbox/Checkbox.svelte.d.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md index 7141fc62..211ce2e4 100644 --- a/COMPONENT_INDEX.md +++ b/COMPONENT_INDEX.md @@ -487,8 +487,8 @@ None. | mouseenter | forwarded | -- | | mouseleave | forwarded | -- | | change | forwarded | -- | -| blur | forwarded | -- | | focus | forwarded | -- | +| blur | forwarded | -- | ## `CheckboxSkeleton` diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json index 0cfe0c86..664ad168 100644 --- a/docs/src/COMPONENT_API.json +++ b/docs/src/COMPONENT_API.json @@ -926,8 +926,8 @@ "element": "CheckboxSkeleton" }, { "type": "forwarded", "name": "change", "element": "input" }, - { "type": "forwarded", "name": "blur", "element": "input" }, - { "type": "forwarded", "name": "focus", "element": "input" } + { "type": "forwarded", "name": "focus", "element": "input" }, + { "type": "forwarded", "name": "blur", "element": "input" } ], "typedefs": [], "rest_props": { "type": "Element", "name": "div" } diff --git a/types/Checkbox/Checkbox.svelte.d.ts b/types/Checkbox/Checkbox.svelte.d.ts index a4ab360a..78fc4658 100644 --- a/types/Checkbox/Checkbox.svelte.d.ts +++ b/types/Checkbox/Checkbox.svelte.d.ts @@ -100,8 +100,8 @@ export default class Checkbox extends SvelteComponentTyped< mouseenter: WindowEventMap["mouseenter"]; mouseleave: WindowEventMap["mouseleave"]; change: WindowEventMap["change"]; - blur: WindowEventMap["blur"]; focus: WindowEventMap["focus"]; + blur: WindowEventMap["blur"]; }, { labelText: {} } > {}