@omnia/fx-models 8.0.96-vnext → 8.0.98-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 {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.96-vnext",
4
+ "version": "8.0.98-vnext",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"