@dotcms/types 1.2.1-next.14 → 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 +1 -1
- package/src/lib/page/public.d.ts +9 -1
package/package.json
CHANGED
package/src/lib/page/public.d.ts
CHANGED
|
@@ -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
|
-
|
|
375
|
+
dotStyleProperties?: Record<string, unknown>;
|
|
368
376
|
_map?: Record<string, unknown>;
|
|
369
377
|
}
|
|
370
378
|
/**
|