add index.ts to property-actions
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { html } from 'lit';
|
||||
import { customElement, property } from 'lit/decorators.js';
|
||||
import { UmbPropertyAction } from '../shared/property-action/property-action.model';
|
||||
import { UmbPropertyAction } from '../../shared/property-action/property-action.model';
|
||||
import { UmbWorkspacePropertyContext, UMB_WORKSPACE_PROPERTY_CONTEXT_TOKEN } from '@umbraco-cms/backoffice/workspace';
|
||||
import { UmbLitElement } from '@umbraco-cms/internal/lit-element';
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { html } from 'lit';
|
||||
import { customElement, property } from 'lit/decorators.js';
|
||||
import type { UmbPropertyAction } from '../shared/property-action/property-action.model';
|
||||
import type { UmbPropertyAction } from '../../shared/property-action/property-action.model';
|
||||
import {
|
||||
UmbNotificationDefaultData,
|
||||
UmbNotificationContext,
|
||||
@@ -0,0 +1 @@
|
||||
export * from './shared';
|
||||
@@ -5,7 +5,7 @@ export const manifests: Array<ManifestPropertyAction> = [
|
||||
type: 'propertyAction',
|
||||
alias: 'Umb.PropertyAction.Copy',
|
||||
name: 'Copy Property Action',
|
||||
loader: () => import('./copy/property-action-copy.element'),
|
||||
loader: () => import('./common/copy/property-action-copy.element'),
|
||||
conditions: {
|
||||
propertyEditors: ['Umb.PropertyEditorUI.TextBox'],
|
||||
},
|
||||
@@ -14,7 +14,7 @@ export const manifests: Array<ManifestPropertyAction> = [
|
||||
type: 'propertyAction',
|
||||
alias: 'Umb.PropertyAction.Clear',
|
||||
name: 'Clear Property Action',
|
||||
loader: () => import('./clear/property-action-clear.element'),
|
||||
loader: () => import('./common/clear/property-action-clear.element'),
|
||||
conditions: {
|
||||
propertyEditors: ['Umb.PropertyEditorUI.TextBox'],
|
||||
},
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
export * from './property-action/property-action.element';
|
||||
export * from './property-action-menu/property-action-menu.element';
|
||||
Reference in New Issue
Block a user