Skip to content

Commit

Permalink
manual merges
Browse files Browse the repository at this point in the history
  • Loading branch information
madsrasmussen committed Nov 7, 2024
1 parent c8756c6 commit 023e558
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 74 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { html, nothing, customElement, property } from '@umbraco-cms/backoffice/external/lit';
import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';

const elementName = 'umb-boolean-table-column-view';
@customElement(elementName)
@customElement('umb-boolean-table-column-view')
export class UmbBooleanTableColumnViewElement extends UmbLitElement {
@property({ attribute: false })
value = false;
Expand All @@ -14,6 +13,6 @@ export class UmbBooleanTableColumnViewElement extends UmbLitElement {

declare global {
interface HTMLElementTagNameMap {
[elementName]: UmbBooleanTableColumnViewElement;
['umb-boolean-table-column-view']: UmbBooleanTableColumnViewElement;
}
}
1 change: 0 additions & 1 deletion src/packages/core/collection/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import './boolean-table-column-layout/boolean-table-column-layout.element.js';
import './boolean-table-column-view/boolean-table-column-view.element.js';
import './collection-action-bundle.element.js';
import './collection-filter-field.element.js';
Expand Down

This file was deleted.

1 change: 0 additions & 1 deletion src/packages/core/entity-action/global-components/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
import './entity-actions-table-column-layout/entity-actions-table-column-layout.element.js';
import './entity-actions-table-column-view/entity-actions-table-column-view.element.js';
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@ export class UmbDocumentTypeTreeItemTableCollectionViewElement extends UmbLitEle
},
{
columnAlias: 'isElementType',
value: html`<umb-boolean-table-column-layout .value=${item.isElement}></umb-boolean-table-column-layout>`,
value: html`<umb-boolean-table-column-view .value=${item.isElement}></umb-boolean-table-column-view>`,
},
{
columnAlias: 'entityActions',
value: html`<umb-entity-actions-table-column-layout
value: html`<umb-entity-actions-table-column-view
.value=${{
entityType: item.entityType,
unique: item.unique,
}}></umb-entity-actions-table-column-layout>`,
}}></umb-entity-actions-table-column-view>`,
},
],
};
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { UMB_DOCUMENT_TYPE_COMPOSITION_REPOSITORY_ALIAS } from '../../repository/composition/index.js';
import { UMB_DOCUMENT_TYPE_WORKSPACE_ALIAS } from './constants.js';
import { UmbSubmitWorkspaceAction } from '@umbraco-cms/backoffice/workspace';
import { UMB_WORKSPACE_CONDITION_ALIAS, UmbSubmitWorkspaceAction } from '@umbraco-cms/backoffice/workspace';

export const manifests: Array<UmbExtensionManifest> = [
{
Expand All @@ -26,7 +26,7 @@ export const manifests: Array<UmbExtensionManifest> = [
},
conditions: [
{
alias: 'Umb.Condition.WorkspaceAlias',
alias: UMB_WORKSPACE_CONDITION_ALIAS,
match: UMB_DOCUMENT_TYPE_WORKSPACE_ALIAS,
},
],
Expand All @@ -44,7 +44,7 @@ export const manifests: Array<UmbExtensionManifest> = [
},
conditions: [
{
alias: 'Umb.Condition.WorkspaceAlias',
alias: UMB_WORKSPACE_CONDITION_ALIAS,
match: UMB_DOCUMENT_TYPE_WORKSPACE_ALIAS,
},
],
Expand All @@ -62,7 +62,7 @@ export const manifests: Array<UmbExtensionManifest> = [
},
conditions: [
{
alias: 'Umb.Condition.WorkspaceAlias',
alias: UMB_WORKSPACE_CONDITION_ALIAS,
match: UMB_DOCUMENT_TYPE_WORKSPACE_ALIAS,
},
],
Expand All @@ -80,7 +80,7 @@ export const manifests: Array<UmbExtensionManifest> = [
},
conditions: [
{
alias: 'Umb.Condition.WorkspaceAlias',
alias: UMB_WORKSPACE_CONDITION_ALIAS,
match: UMB_DOCUMENT_TYPE_WORKSPACE_ALIAS,
},
],
Expand All @@ -98,7 +98,7 @@ export const manifests: Array<UmbExtensionManifest> = [
},
conditions: [
{
alias: 'Umb.Condition.WorkspaceAlias',
alias: UMB_WORKSPACE_CONDITION_ALIAS,
match: UMB_DOCUMENT_TYPE_WORKSPACE_ALIAS,
},
],
Expand Down

0 comments on commit 023e558

Please sign in to comment.