Skip to content

Commit 88a65cc

Browse files
committed
rename element
1 parent 8f00acb commit 88a65cc

File tree

13 files changed

+14
-14
lines changed

13 files changed

+14
-14
lines changed

src/packages/core/workspace/components/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ export * from './workspace-action/index.js';
44
export * from './workspace-editor/index.js';
55
export * from './workspace-entity-action-menu/index.js';
66
export * from './workspace-footer/index.js';
7-
export * from './workspace-name/index.js';
7+
export * from './workspace-header-name-editable/index.js';
88
export * from './workspace-split-view/index.js';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './workspace-header-name-editable.element.js';

src/packages/core/workspace/components/workspace-name/workspace-name.element.ts renamed to src/packages/core/workspace/components/workspace-header-name-editable/workspace-header-name-editable.element.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import type { UUIInputElement } from '@umbraco-cms/backoffice/external/uui';
66
import { UUIInputEvent } from '@umbraco-cms/backoffice/external/uui';
77
import { umbBindToValidation } from '@umbraco-cms/backoffice/validation';
88

9-
@customElement('umb-workspace-editable-name-header')
10-
export class UmbWorkspaceEditableNameHeaderElement extends UmbLitElement {
9+
@customElement('umb-workspace-header-name-editable')
10+
export class UmbWorkspaceHeaderNameEditableElement extends UmbLitElement {
1111
@state()
1212
private _name = '';
1313

@@ -71,6 +71,6 @@ export class UmbWorkspaceEditableNameHeaderElement extends UmbLitElement {
7171

7272
declare global {
7373
interface HTMLElementTagNameMap {
74-
'umb-workspace-editable-name-header': UmbWorkspaceEditableNameHeaderElement;
74+
'umb-workspace-header-name-editable': UmbWorkspaceHeaderNameEditableElement;
7575
}
7676
}

src/packages/core/workspace/components/workspace-name/index.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/packages/data-type/tree/folder/workspace/data-type-folder-editor.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const elementName = 'umb-data-type-folder-workspace-editor';
77
export class UmbDataTypeFolderWorkspaceEditorElement extends UmbLitElement {
88
override render() {
99
return html`<umb-workspace-editor>
10-
<umb-workspace-editable-name-header slot="header"></umb-workspace-editable-name-header>
10+
<umb-workspace-header-name-editable slot="header"></umb-workspace-header-name-editable>
1111
</umb-workspace-editor>`;
1212
}
1313

src/packages/data-type/workspace/data-type-workspace-editor.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export class UmbDataTypeWorkspaceEditorElement extends UmbLitElement {
99
override render() {
1010
return html`
1111
<umb-workspace-editor alias="Umb.Workspace.DataType">
12-
<umb-workspace-editable-name-header slot="header"></umb-workspace-editable-name-header>
12+
<umb-workspace-header-name-editable slot="header"></umb-workspace-header-name-editable>
1313
</umb-workspace-editor>
1414
`;
1515
}

src/packages/dictionary/workspace/dictionary-workspace-editor.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export class UmbDictionaryWorkspaceEditorElement extends UmbLitElement {
66
override render() {
77
return html`
88
<umb-workspace-editor back-path="section/dictionary/dashboard">
9-
<umb-workspace-editable-name-header slot="header"></umb-workspace-editable-name-header>
9+
<umb-workspace-header-name-editable slot="header"></umb-workspace-header-name-editable>
1010
</umb-workspace-editor>
1111
`;
1212
}

src/packages/documents/document-blueprints/tree/folder/workspace/document-blueprint-folder-editor.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const elementName = 'umb-document-blueprint-folder-workspace-editor';
77
export class UmbDocumentBlueprintFolderWorkspaceEditorElement extends UmbLitElement {
88
override render() {
99
return html`<umb-workspace-editor>
10-
<umb-workspace-editable-name-header slot="header"></umb-workspace-editable-name-header>
10+
<umb-workspace-header-name-editable slot="header"></umb-workspace-header-name-editable>
1111
</umb-workspace-editor>`;
1212
}
1313

src/packages/documents/document-types/tree/folder/workspace/document-type-folder-editor.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const elementName = 'umb-document-type-folder-workspace-editor';
77
export class UmbDocumentTypeFolderWorkspaceEditorElement extends UmbLitElement {
88
override render() {
99
return html`<umb-workspace-editor>
10-
<umb-workspace-editable-name-header slot="header"></umb-workspace-editable-name-header>
10+
<umb-workspace-header-name-editable slot="header"></umb-workspace-header-name-editable>
1111
</umb-workspace-editor>`;
1212
}
1313

src/packages/language/workspace/language/language-workspace-editor.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class UmbLanguageWorkspaceEditorElement extends UmbLitElement {
2424
back-path="section/settings/workspace/language-root">
2525
${this._isNew
2626
? html`<h3 slot="header">Add language</h3>`
27-
: html`<umb-workspace-editable-name-header slot="header"></umb-workspace-editable-name-header>`}
27+
: html`<umb-workspace-header-name-editable slot="header"></umb-workspace-header-name-editable>`}
2828
</umb-workspace-editor>`;
2929
}
3030

0 commit comments

Comments
 (0)