From a7392d442732d3ca63c1fcecf072c1239daa44d1 Mon Sep 17 00:00:00 2001 From: Juan Munoz Date: Wed, 1 May 2024 16:45:25 +0200 Subject: [PATCH] chore: import List class needed for instanceof validation Signed-off-by: Juan Munoz --- packages/open-scd/src/addons/Layout.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/open-scd/src/addons/Layout.ts b/packages/open-scd/src/addons/Layout.ts index d82a2ba0bb..2df334e75c 100644 --- a/packages/open-scd/src/addons/Layout.ts +++ b/packages/open-scd/src/addons/Layout.ts @@ -14,7 +14,8 @@ import { newSettingsUIEvent } from '@openscd/core/foundation/deprecated/settings import { MenuItem, Plugin, Validator, PluginKind, MenuPosition, MenuPlugin, menuPosition, pluginIcons, newResetPluginsEvent, newAddExternalPluginEvent, newSetPluginsEvent } from '../open-scd.js'; import { HistoryUIKind, newEmptyIssuesEvent, newHistoryUIEvent, newRedoEvent, newUndoEvent, UndoRedoChangedEvent } from './History.js'; import type { Drawer } from '@material/mwc-drawer'; -import type { ActionDetail, List } from '@material/mwc-list'; +import type { ActionDetail } from '@material/mwc-list'; +import { List } from '@material/mwc-list'; import type { ListItem } from '@material/mwc-list/mwc-list-item'; import type { Dialog } from '@material/mwc-dialog'; import type { MultiSelectedEvent } from '@material/mwc-list/mwc-list-foundation.js';