Removing property-actions for textbox property-editor

The initial property-actions (Clear and Copy) were a proof-of-concept
and should not have been released with 14.0.
This commit is contained in:
leekelleher
2024-08-07 01:28:46 +01:00
committed by Lee Kelleher
parent f09fe148db
commit a0c48c895c

View File

@@ -12,7 +12,7 @@ export const propertyActionManifests: Array<ManifestPropertyActions> = [
alias: 'Umb.PropertyAction.Copy',
name: 'Copy Property Action',
api: () => import('./common/copy/property-action-copy.controller.js'),
forPropertyEditorUis: ['Umb.PropertyEditorUi.TextBox'],
forPropertyEditorUis: [],
meta: {
icon: 'icon-paste-in',
label: 'Copy',
@@ -24,7 +24,7 @@ export const propertyActionManifests: Array<ManifestPropertyActions> = [
alias: 'Umb.PropertyAction.Clear',
name: 'Clear Property Action',
api: () => import('./common/clear/property-action-clear.controller.js'),
forPropertyEditorUis: ['Umb.PropertyEditorUi.TextBox'],
forPropertyEditorUis: [],
meta: {
icon: 'icon-trash',
label: 'Clear',