remove unused location type
This commit is contained in:
@@ -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';
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
export interface UmbRouteLocation {
|
||||
name?: string;
|
||||
params: {
|
||||
[key: string]: string;
|
||||
};
|
||||
}
|
||||
@@ -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 {
|
||||
</umb-workspace-layout>
|
||||
`;
|
||||
}
|
||||
|
||||
|
||||
static styles = [
|
||||
UUITextStyles,
|
||||
css`
|
||||
|
||||
Reference in New Issue
Block a user