@dotcms/types 1.2.1-next.15 → 1.2.1-next.16

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotcms/types",
3
- "version": "1.2.1-next.15",
3
+ "version": "1.2.1-next.16",
4
4
  "keywords": [
5
5
  "dotCMS",
6
6
  "CMS",
@@ -1,4 +1,12 @@
1
1
  import { DotHttpError } from '../client/public';
2
+ /**
3
+ * Represents a map of style property keys and their corresponding values
4
+ * for use in the style editor.
5
+ *
6
+ * Key is a string representing the property name,
7
+ * value can be any type, allowing flexibility for different style values.
8
+ */
9
+ export type StyleEditorProperties = Record<string, unknown>;
2
10
  /**
3
11
  * Represents a map of container identifiers to their container objects
4
12
  *
@@ -364,7 +372,7 @@ export interface DotCMSBasicContentlet {
364
372
  widgetTitle?: string;
365
373
  onNumberOfPages?: string;
366
374
  __icon__?: string;
367
- styleProperties?: Record<string, unknown>;
375
+ dotStyleProperties?: Record<string, unknown>;
368
376
  _map?: Record<string, unknown>;
369
377
  }
370
378
  /**