@omnia/fx-models 8.0.96-vnext → 8.0.97-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.
@@ -44,19 +44,20 @@ export interface VelcronRenderContext {
|
|
44
44
|
colors?: ReturnType<typeof useVelcronColorSchemaStore>;
|
45
45
|
blueprints?: ReturnType<typeof useVelcronBlueprintStore>;
|
46
46
|
actions?: {
|
47
|
-
[name: string]:
|
47
|
+
[name: string]: Array<string>;
|
48
48
|
};
|
49
49
|
components?: Array<VelcronCustomComponentDefinition>;
|
50
50
|
properties?: {
|
51
51
|
[name: string]: VelcronPrimitiveType | VelcroncomponentArrayType;
|
52
52
|
};
|
53
53
|
computed?: {
|
54
|
-
[name: string]:
|
54
|
+
[name: string]: Array<string>;
|
55
55
|
};
|
56
56
|
parent?: VelcronRenderContext;
|
57
57
|
hooks?: VelcronRenderContextHooks;
|
58
58
|
eventHandlers?: VelcronRenderContextEventHandlers;
|
59
59
|
editMode?: boolean;
|
60
|
+
disposers: Array<() => void>;
|
60
61
|
}
|
61
62
|
export interface VelcronRenderContextEventHandlers {
|
62
63
|
receiving?: {
|
@@ -172,13 +173,13 @@ export interface VelcronAppDefinition<TState extends DynamicState = DynamicState
|
|
172
173
|
body?: Array<VelcronDefinition>;
|
173
174
|
events?: VelcronOnLoadEvent & VelcronOnEditModeEvent;
|
174
175
|
actions?: {
|
175
|
-
[name: string]:
|
176
|
+
[name: string]: Array<string>;
|
176
177
|
};
|
177
178
|
components?: Array<VelcronCustomComponentDefinition>;
|
178
179
|
propEditors?: Array<VelcronPropertyEditor>;
|
179
180
|
state?: TState;
|
180
181
|
computed?: {
|
181
|
-
[name: string]:
|
182
|
+
[name: string]: Array<string>;
|
182
183
|
};
|
183
184
|
}
|
184
185
|
export interface VelcronComponentDefinition extends VelcronDefinition {
|