@omnia/fx-models 8.0.99-vnext → 8.0.100-vnext
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/internal-do-not-import-from-here/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { VelcronImageRatios } from "@omnia/fx-models";
|
1
|
+
import { TypographySize, TypographyType, VelcronImageRatios } from "@omnia/fx-models";
|
2
2
|
export interface ResolvedPropertyEditor {
|
3
3
|
editor: VelcronPropertyEditor;
|
4
4
|
}
|
@@ -78,16 +78,43 @@ export interface VelcronMarkdownPropertyEditor extends VelcronPropertyEditor<any
|
|
78
78
|
export interface VelcronImagePropertyEditor extends VelcronPropertyEditor<any> {
|
79
79
|
type: "image";
|
80
80
|
}
|
81
|
+
export interface VelcronState {
|
82
|
+
images?: VelcronImagesState;
|
83
|
+
styling?: VelcronStylingState;
|
84
|
+
colorSchema?: VelcronColorSchemaState;
|
85
|
+
content?: VelcronContentState;
|
86
|
+
properties?: VelcronPropertiesState;
|
87
|
+
}
|
88
|
+
export interface VelcronTextState {
|
89
|
+
text: string;
|
90
|
+
typography?: VelcronTypographyState;
|
91
|
+
}
|
92
|
+
export interface VelcronTypographyState {
|
93
|
+
type?: TypographyType;
|
94
|
+
size?: TypographySize;
|
95
|
+
toned?: boolean;
|
96
|
+
}
|
81
97
|
export interface VelcronContentState {
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
98
|
+
caption?: VelcronTextState;
|
99
|
+
main?: VelcronTextState;
|
100
|
+
title?: VelcronTextState;
|
101
|
+
summary?: VelcronTextState;
|
86
102
|
}
|
87
103
|
export interface VelcronPropertiesState {
|
88
|
-
|
104
|
+
user: any;
|
105
|
+
mappings: Array<any>;
|
106
|
+
}
|
107
|
+
export interface VelcronImagesState {
|
108
|
+
main?: VelcronImageState;
|
89
109
|
}
|
90
110
|
export interface VelcronImageState {
|
91
111
|
url?: string;
|
92
112
|
ratio?: VelcronImageRatios;
|
113
|
+
caption?: VelcronTextState;
|
114
|
+
}
|
115
|
+
export interface VelcronStylingState {
|
116
|
+
}
|
117
|
+
export interface VelcronColorSchemaState {
|
118
|
+
type?: string;
|
119
|
+
filled?: boolean;
|
93
120
|
}
|