diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/manifests.ts index 9a104fece9..81f2d8eae8 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/manifests.ts @@ -2,7 +2,6 @@ import { manifest as blockGrid } from './Umbraco.BlockGrid.js'; import { manifest as blockList } from './Umbraco.BlockList.js'; import { manifest as iconPicker } from './Umbraco.IconPicker.js'; import { manifest as imageCropper } from './Umbraco.ImageCropper.js'; -import { manifest as label } from './Umbraco.Label.js'; import { manifest as listView } from './Umbraco.ListView.js'; import { manifest as markdownEditor } from './Umbraco.MarkdownEditor.js'; import { manifest as mediaPicker } from './Umbraco.MediaPicker.js'; @@ -25,7 +24,6 @@ export const manifests: Array = [ blockList, iconPicker, imageCropper, - label, listView, markdownEditor, mediaPicker, diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.Label.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/label/Umbraco.Label.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/packages/core/property-editor/schemas/Umbraco.Label.ts rename to src/Umbraco.Web.UI.Client/src/packages/property-editors/label/Umbraco.Label.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/property-editors/label/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/label/manifests.ts index 3210cdc499..34341e6edb 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/property-editors/label/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/property-editors/label/manifests.ts @@ -1,14 +1,18 @@ -import type { ManifestPropertyEditorUi } from '@umbraco-cms/backoffice/extension-registry'; +import { manifest as labelSchemaManifest } from './Umbraco.Label.js'; +import type { ManifestTypes } from '@umbraco-cms/backoffice/extension-registry'; -export const manifest: ManifestPropertyEditorUi = { - type: 'propertyEditorUi', - alias: 'Umb.PropertyEditorUi.Label', - name: 'Label Property Editor UI', - element: () => import('./property-editor-ui-label.element.js'), - meta: { - label: 'Label', - icon: 'icon-readonly', - group: 'pickers', - propertyEditorSchemaAlias: 'Umbraco.Label', +export const manifests: Array = [ + { + type: 'propertyEditorUi', + alias: 'Umb.PropertyEditorUi.Label', + name: 'Label Property Editor UI', + element: () => import('./property-editor-ui-label.element.js'), + meta: { + label: 'Label', + icon: 'icon-readonly', + group: 'pickers', + propertyEditorSchemaAlias: 'Umbraco.Label', + }, }, -}; + labelSchemaManifest, +]; diff --git a/src/Umbraco.Web.UI.Client/src/packages/property-editors/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/manifests.ts index 789a55d536..ff07a2484f 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/property-editors/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/property-editors/manifests.ts @@ -1,6 +1,6 @@ import { manifest as colorEditor } from './color-swatches-editor/manifests.js'; import { manifest as iconPicker } from './icon-picker/manifests.js'; -import { manifest as label } from './label/manifests.js'; +import { manifests as labelManifests } from './label/manifests.js'; import { manifest as multiUrlPicker } from './multi-url-picker/manifests.js'; import { manifest as numberRange } from './number-range/manifests.js'; import { manifest as orderDirection } from './order-direction/manifests.js'; @@ -31,6 +31,7 @@ export const manifests: Array = [ ...datePickerManifests, ...dropdownManifests, ...eyeDropperManifests, + ...labelManifests, ...multipleTextStringManifests, ...numbers, ...textareaManifests, @@ -38,7 +39,6 @@ export const manifests: Array = [ ...treePicker, colorEditor, iconPicker, - label, multiUrlPicker, numberRange, orderDirection,