Merge branch 'feature/entity-action-kind' of https://github.com/umbraco/Umbraco.CMS.Backoffice into feature/entity-action-kind
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import type { UmbBackofficeManifestKind } from '@umbraco-cms/backoffice/extension-registry';
|
||||
|
||||
export const manifest: UmbBackofficeManifestKind = {
|
||||
type: 'kind',
|
||||
alias: 'Umb.Kind.EntityAction.Default',
|
||||
matchKind: 'default',
|
||||
matchType: 'entityAction',
|
||||
manifest: {
|
||||
type: 'entityAction',
|
||||
kind: 'default',
|
||||
weight: 1000,
|
||||
element: () => import('./entity-action.element.js'),
|
||||
meta: {
|
||||
icon: '',
|
||||
label: 'Default Entity Action',
|
||||
},
|
||||
},
|
||||
};
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { UmbEntityAction } from './entity-action.interface.js';
|
||||
import type { UmbEntityAction } from '../entity-action.interface.js';
|
||||
import { UmbActionExecutedEvent } from '@umbraco-cms/backoffice/event';
|
||||
import { html, nothing, ifDefined, customElement, property, state } from '@umbraco-cms/backoffice/external/lit';
|
||||
import type { UUIMenuItemEvent } from '@umbraco-cms/backoffice/external/uui';
|
||||
@@ -1,7 +1,7 @@
|
||||
export * from './common/index.js';
|
||||
export * from './entity-action-base.js';
|
||||
export * from './entity-action-list.element.js';
|
||||
export * from './entity-action.element.js';
|
||||
export * from './default/entity-action.element.js';
|
||||
export * from './entity-action.event.js';
|
||||
export * from './entity-action.interface.js';
|
||||
export * from './types.js';
|
||||
|
||||
@@ -2,10 +2,12 @@ import { manifests as copyEntityActionManifests } from './common/duplicate/manif
|
||||
import { manifests as deleteEntityActionManifests } from './common/delete/manifests.js';
|
||||
import { manifests as moveEntityActionManifests } from './common/move/manifests.js';
|
||||
import { manifests as renameEntityActionManifests } from './common/rename/manifests.js';
|
||||
import { manifests as defaultEntityActionManifests } from './common/default/manifests.js';
|
||||
|
||||
export const manifests = [
|
||||
...copyEntityActionManifests,
|
||||
...deleteEntityActionManifests,
|
||||
...moveEntityActionManifests,
|
||||
...renameEntityActionManifests,
|
||||
...defaultEntityActionManifests,
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user