diff --git a/src/Umbraco.Web.UI.Client/libs/router/index.ts b/src/Umbraco.Web.UI.Client/libs/router/index.ts index d9b8aaaa4e..850b56b590 100644 --- a/src/Umbraco.Web.UI.Client/libs/router/index.ts +++ b/src/Umbraco.Web.UI.Client/libs/router/index.ts @@ -9,7 +9,6 @@ export type { Query, } from 'router-slot/model'; export * from 'router-slot/util'; -export * from './route-location.interface'; export * from './route.context'; export * from './route.interface'; export * from './generate-route-path-builder.function'; diff --git a/src/Umbraco.Web.UI.Client/libs/router/route-location.interface.ts b/src/Umbraco.Web.UI.Client/libs/router/route-location.interface.ts deleted file mode 100644 index ef5f56188f..0000000000 --- a/src/Umbraco.Web.UI.Client/libs/router/route-location.interface.ts +++ /dev/null @@ -1,6 +0,0 @@ -export interface UmbRouteLocation { - name?: string; - params: { - [key: string]: string; - }; -} diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/data-types/workspace/data-type-workspace-edit.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/settings/data-types/workspace/data-type-workspace-edit.element.ts index 224053c9d5..4fc480ab3f 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/settings/data-types/workspace/data-type-workspace-edit.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/settings/data-types/workspace/data-type-workspace-edit.element.ts @@ -3,7 +3,6 @@ import { UUITextStyles } from '@umbraco-ui/uui-css/lib'; import { css, html } from 'lit'; import { customElement, property, state } from 'lit/decorators.js'; import { UmbDataTypeWorkspaceContext } from './data-type-workspace.context'; -import { UmbRouteLocation } from '@umbraco-cms/backoffice/router'; import { UmbLitElement } from '@umbraco-cms/internal/lit-element'; import { ManifestWorkspace } from '@umbraco-cms/backoffice/extensions-registry'; import { UMB_ENTITY_WORKSPACE_CONTEXT } from '@umbraco-cms/backoffice/context-api'; @@ -14,14 +13,9 @@ import { UMB_ENTITY_WORKSPACE_CONTEXT } from '@umbraco-cms/backoffice/context-ap */ @customElement('umb-data-type-workspace-edit-element') export class UmbDataTypeWorkspaceEditElement extends UmbLitElement { - - @property() manifest?: ManifestWorkspace; - @property() - location?: UmbRouteLocation; - @state() private _dataTypeName = ''; @@ -63,7 +57,7 @@ export class UmbDataTypeWorkspaceEditElement extends UmbLitElement { `; } - + static styles = [ UUITextStyles, css`