From 57e96c64bfb7b31a50fbc5e46965c381b4e53cab Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Wed, 7 Dec 2022 19:50:13 -0800 Subject: [PATCH] Run "yarn build:docs" --- COMPONENT_INDEX.md | 2 +- docs/src/COMPONENT_API.json | 4 ++-- types/TreeView/TreeView.svelte.d.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md index 66cded58..76ce3dd8 100644 --- a/COMPONENT_INDEX.md +++ b/COMPONENT_INDEX.md @@ -4654,7 +4654,7 @@ export type TreeNodeId = string | number; export interface TreeNode { id: TreeNodeId; - text: string; + text: any; icon?: typeof import("svelte").SvelteComponent; disabled?: boolean; expanded?: boolean; diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json index 2ff90210..e3ad94a1 100644 --- a/docs/src/COMPONENT_API.json +++ b/docs/src/COMPONENT_API.json @@ -14483,9 +14483,9 @@ "ts": "type TreeNodeId = string | number" }, { - "type": "{ id: TreeNodeId; text: string; icon?: typeof import(\"svelte\").SvelteComponent; disabled?: boolean; expanded?: boolean; children?: TreeNode[]; }", + "type": "{ id: TreeNodeId; text: any; icon?: typeof import(\"svelte\").SvelteComponent; disabled?: boolean; expanded?: boolean; children?: TreeNode[]; }", "name": "TreeNode", - "ts": "interface TreeNode { id: TreeNodeId; text: string; icon?: typeof import(\"svelte\").SvelteComponent; disabled?: boolean; expanded?: boolean; children?: TreeNode[]; }" + "ts": "interface TreeNode { id: TreeNodeId; text: any; icon?: typeof import(\"svelte\").SvelteComponent; disabled?: boolean; expanded?: boolean; children?: TreeNode[]; }" } ], "rest_props": { "type": "Element", "name": "ul" } diff --git a/types/TreeView/TreeView.svelte.d.ts b/types/TreeView/TreeView.svelte.d.ts index 4d00e2ac..b37ece9c 100644 --- a/types/TreeView/TreeView.svelte.d.ts +++ b/types/TreeView/TreeView.svelte.d.ts @@ -5,7 +5,7 @@ export type TreeNodeId = string | number; export interface TreeNode { id: TreeNodeId; - text: string; + text: any; icon?: typeof import("svelte").SvelteComponent; disabled?: boolean; expanded?: boolean;