We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c3478f commit f379ffeCopy full SHA for f379ffe
src/Accordion/AccordionItem.svelte
@@ -23,7 +23,7 @@
23
// Internal id for controls
24
const id = "ccs-" + Math.random().toString(36);
25
26
- /** @type {{ disableItems: import("svelte/store").Writable<boolean>; }} */
+ /** @type {{ disableItems?: import("svelte/store").Writable<boolean>; }} */
27
const { disableItems } = getContext("Accordion") ?? {};
28
29
$: disabled = disableItems ? $disableItems === true : disabled;
0 commit comments