From 1cb7440efe6036bd889f028f12dfd4ed76d7a659 Mon Sep 17 00:00:00 2001 From: JesmoDev <26099018+JesmoDev@users.noreply.github.com> Date: Tue, 10 Sep 2024 13:36:54 +0200 Subject: [PATCH] use json schema --- .../tiptap/property-editors/Umbraco.Tiptap.ts | 13 ------------- .../tiptap/property-editors/tiptap/manifests.ts | 2 +- 2 files changed, 1 insertion(+), 14 deletions(-) delete mode 100644 src/Umbraco.Web.UI.Client/src/packages/tiptap/property-editors/Umbraco.Tiptap.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/tiptap/property-editors/Umbraco.Tiptap.ts b/src/Umbraco.Web.UI.Client/src/packages/tiptap/property-editors/Umbraco.Tiptap.ts deleted file mode 100644 index 7837aea024..0000000000 --- a/src/Umbraco.Web.UI.Client/src/packages/tiptap/property-editors/Umbraco.Tiptap.ts +++ /dev/null @@ -1,13 +0,0 @@ -import type { ManifestPropertyEditorSchema } from '@umbraco-cms/backoffice/extension-registry'; - -export const manifest: ManifestPropertyEditorSchema = { - type: 'propertyEditorSchema', - name: 'Rich Text Tiptap', - alias: 'Umbraco.Tiptap', - meta: { - defaultPropertyEditorUiAlias: 'Umb.PropertyEditorUi.Tiptap', - settings: { - properties: [], - }, - }, -}; diff --git a/src/Umbraco.Web.UI.Client/src/packages/tiptap/property-editors/tiptap/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/tiptap/property-editors/tiptap/manifests.ts index ba824b19d6..140d8e4b96 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/tiptap/property-editors/tiptap/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/tiptap/property-editors/tiptap/manifests.ts @@ -8,7 +8,7 @@ export const manifests: Array = [ element: () => import('./property-editor-ui-tiptap.element.js'), meta: { label: 'Tiptap Editor', - propertyEditorSchemaAlias: 'Umbraco.Tiptap', + propertyEditorSchemaAlias: 'Umbraco.Plain.Json', icon: 'icon-document', group: 'richText', },