@umbraco-cms/backoffice 16.2.0-rc → 16.2.0-rc2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,7 +6,7 @@
6
6
  "build": "vite build"
7
7
  },
8
8
  "dependencies": {
9
- "@umbraco-ui/uui": "^1.15.0-rc.0",
10
- "@umbraco-ui/uui-css": "^1.15.0-rc.0"
9
+ "@umbraco-ui/uui": "^1.15.0",
10
+ "@umbraco-ui/uui-css": "^1.15.0"
11
11
  }
12
12
  }
@@ -3,6 +3,15 @@ import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';
3
3
  import type { StyleInfo } from '@umbraco-cms/backoffice/external/lit';
4
4
  import type { UmbPropertyEditorUiElement, UmbPropertyEditorConfigCollection } from '@umbraco-cms/backoffice/property-editor';
5
5
  declare const UmbPropertyEditorUiRteElementBase_base: import("@umbraco-cms/backoffice/extension-api").HTMLElementConstructor<import("@umbraco-cms/backoffice/validation").UmbFormControlMixinElement<UmbPropertyEditorRteValueType | undefined>> & typeof UmbLitElement;
6
+ /**
7
+ * The abstract base class that is used as a base for the rich-text-editor component.
8
+ * @cssprop --umb-rte-width - The width of the rich-text-editor (default: unset)
9
+ * @cssprop --umb-rte-min-width - The minimum width of the rich-text-editor (default: unset)
10
+ * @cssprop --umb-rte-max-width - The maximum width of the rich-text-editor (default: 100%)
11
+ * @cssprop --umb-rte-height - The height of the rich-text-editor (default: 100%)
12
+ * @cssprop --umb-rte-min-height - The minimum height of the rich-text-editor (default: 100%)
13
+ * @cssprop --umb-rte-max-height - The maximum height of the rich-text-editor (default: 100%)
14
+ */
6
15
  export declare abstract class UmbPropertyEditorUiRteElementBase extends UmbPropertyEditorUiRteElementBase_base implements UmbPropertyEditorUiElement {
7
16
  #private;
8
17
  set config(config: UmbPropertyEditorConfigCollection | undefined);
@@ -14,6 +14,15 @@ import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';
14
14
  import { UmbVariantId } from '@umbraco-cms/backoffice/variant';
15
15
  import { UMB_CONTENT_WORKSPACE_CONTEXT } from '@umbraco-cms/backoffice/content';
16
16
  import { UMB_PROPERTY_CONTEXT, UMB_PROPERTY_DATASET_CONTEXT } from '@umbraco-cms/backoffice/property';
17
+ /**
18
+ * The abstract base class that is used as a base for the rich-text-editor component.
19
+ * @cssprop --umb-rte-width - The width of the rich-text-editor (default: unset)
20
+ * @cssprop --umb-rte-min-width - The minimum width of the rich-text-editor (default: unset)
21
+ * @cssprop --umb-rte-max-width - The maximum width of the rich-text-editor (default: 100%)
22
+ * @cssprop --umb-rte-height - The height of the rich-text-editor (default: 100%)
23
+ * @cssprop --umb-rte-min-height - The minimum height of the rich-text-editor (default: 100%)
24
+ * @cssprop --umb-rte-max-height - The maximum height of the rich-text-editor (default: 100%)
25
+ */
17
26
  export class UmbPropertyEditorUiRteElementBase extends UmbFormControlMixin(UmbLitElement) {
18
27
  set config(config) {
19
28
  if (!config)