Merge branch 'main' into feature/localization

This commit is contained in:
Jacob Overgaard
2023-08-01 13:11:02 +00:00
committed by GitHub
6 changed files with 3 additions and 16 deletions

View File

@@ -1,15 +1,7 @@
import type { UmbWorkspaceElement } from '../workspace/workspace.element.js';
import type { UmbSectionViewsElement } from './section-views/section-views.element.js';
import { UUITextStyles } from '@umbraco-cms/backoffice/external/uui';
import {
css,
html,
nothing,
customElement,
property,
state,
PropertyValueMap,
} from '@umbraco-cms/backoffice/external/lit';
import { css, html, nothing, customElement, property, state } from '@umbraco-cms/backoffice/external/lit';
import { map } from '@umbraco-cms/backoffice/external/rxjs';
import {
ManifestSection,

View File

@@ -1 +1 @@
export * from './section-views.element.js';
export type * from './section-views.element.js';

View File

@@ -9,8 +9,6 @@ import {
UMB_EXPORT_DICTIONARY_MODAL,
} from '@umbraco-cms/backoffice/modal';
import './export-dictionary-modal.element.js';
export default class UmbExportDictionaryEntityAction extends UmbEntityActionBase<UmbDictionaryRepository> {
static styles = [UUITextStyles];

View File

@@ -9,8 +9,6 @@ import {
UMB_IMPORT_DICTIONARY_MODAL,
} from '@umbraco-cms/backoffice/modal';
import './import-dictionary-modal.element.js';
export default class UmbImportDictionaryEntityAction extends UmbEntityActionBase<UmbDictionaryRepository> {
static styles = [UUITextStyles];

View File

@@ -4,6 +4,7 @@ import { css, html, customElement, state, ifDefined } from '@umbraco-cms/backoff
import { UmbLitElement } from '@umbraco-cms/internal/lit-element';
import { LanguageResponseModel } from '@umbraco-cms/backoffice/backend-api';
import { UMB_ENTITY_WORKSPACE_CONTEXT } from '@umbraco-cms/backoffice/workspace';
@customElement('umb-language-workspace-editor')
export class UmbLanguageWorkspaceEditorElement extends UmbLitElement {
#workspaceContext?: UmbLanguageWorkspaceContext;

View File

@@ -3,8 +3,6 @@ import { UUITextStyles } from '@umbraco-cms/backoffice/external/uui';
import { css, html, customElement, state } from '@umbraco-cms/backoffice/external/lit';
import type { UmbRoute } from '@umbraco-cms/backoffice/router';
import { UmbLitElement } from '@umbraco-cms/internal/lit-element';
import './language-workspace-editor.element.js';
import { UmbWorkspaceIsNewRedirectController } from '@umbraco-cms/backoffice/workspace';
@customElement('umb-language-workspace')