add index.ts to property-actions

This commit is contained in:
Mads Rasmussen
2023-05-22 11:16:05 +02:00
parent c9bac9b332
commit d87b4d4893
7 changed files with 7 additions and 4 deletions

View File

@@ -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';

View File

@@ -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,

View File

@@ -0,0 +1 @@
export * from './shared';

View File

@@ -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'],
},

View File

@@ -0,0 +1,2 @@
export * from './property-action/property-action.element';
export * from './property-action-menu/property-action-menu.element';