From cef7bb935780fae504e30263f07ccd00fe3e8063 Mon Sep 17 00:00:00 2001 From: Lee Kelleher Date: Wed, 27 Aug 2025 12:12:26 +0100 Subject: [PATCH 1/2] Chore: JSDocs for RTE CSS Props (#20008) RTE base: added JSDocs for CSSProps --- .../src/packages/rte/components/rte-base.element.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/Umbraco.Web.UI.Client/src/packages/rte/components/rte-base.element.ts b/src/Umbraco.Web.UI.Client/src/packages/rte/components/rte-base.element.ts index ea01c96fd8..de1c417a04 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/rte/components/rte-base.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/rte/components/rte-base.element.ts @@ -21,6 +21,15 @@ import type { UmbPropertyEditorConfigCollection, } from '@umbraco-cms/backoffice/property-editor'; +/** + * The abstract base class that is used as a base for the rich-text-editor component. + * @cssprop --umb-rte-width - The width of the rich-text-editor (default: unset) + * @cssprop --umb-rte-min-width - The minimum width of the rich-text-editor (default: unset) + * @cssprop --umb-rte-max-width - The maximum width of the rich-text-editor (default: 100%) + * @cssprop --umb-rte-height - The height of the rich-text-editor (default: 100%) + * @cssprop --umb-rte-min-height - The minimum height of the rich-text-editor (default: 100%) + * @cssprop --umb-rte-max-height - The maximum height of the rich-text-editor (default: 100%) + */ export abstract class UmbPropertyEditorUiRteElementBase extends UmbFormControlMixin(UmbLitElement) implements UmbPropertyEditorUiElement From e142a9c0d1d4083897b2e4e1c9c96753d3482e63 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Thu, 28 Aug 2025 10:01:44 +0200 Subject: [PATCH 2/2] fix: pins the UmbracoExtension `@hey-api/*` versions to that of the Backoffice client (#20016) fix: pins the @hey-api/* versions to that of the Backoffice client This is a quick fix to handle the NPM error that is currently there because the Backoffice NPM client has moved on to another version. There will be a more comprehensive fix for 16.3, however this PR aims to make the 16.2 UmbracoExtension usable without running custom commands. --- templates/UmbracoExtension/Client/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/UmbracoExtension/Client/package.json b/templates/UmbracoExtension/Client/package.json index 87514b0f7d..bbc4d8b7dd 100644 --- a/templates/UmbracoExtension/Client/package.json +++ b/templates/UmbracoExtension/Client/package.json @@ -9,8 +9,8 @@ "generate-client": "node scripts/generate-openapi.js https://localhost:44339/umbraco/swagger/umbracoextension/swagger.json" }, "devDependencies": { - "@hey-api/client-fetch": "^0.10.0", - "@hey-api/openapi-ts": "^0.66.7", + "@hey-api/client-fetch": "0.12.0", + "@hey-api/openapi-ts": "0.71.0", "@umbraco-cms/backoffice": "^UMBRACO_VERSION_FROM_TEMPLATE", "chalk": "^5.4.1", "cross-env": "^7.0.3",