@omnia/fx-models 8.0.172-dev → 8.0.174-dev

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.
@@ -67,7 +67,9 @@ export interface VelcronRenderContext {
67
67
  $editmode?: boolean;
68
68
  $active?: boolean;
69
69
  disposers: Array<() => void>;
70
+ baseDefinition?: VelcronAppDefinition;
70
71
  subApp?: boolean;
72
+ subAppreferenceId?: GuidValue;
71
73
  }
72
74
  export interface VelcronRenderContextEventHandlers {
73
75
  receiving?: {
@@ -156,6 +158,8 @@ export interface VelcronFlexDefinition extends VelcronDefinition, VelcronColorSt
156
158
  border?: VelcronBorder;
157
159
  borderRadius?: VelcronDimensions;
158
160
  }
161
+ export interface VelcronEffects {
162
+ }
159
163
  export interface VelcronFlexRowDefinition extends VelcronDefinition, VelcronColorStyling {
160
164
  type: "row";
161
165
  events?: VelcronOnPressEvent;
@@ -174,6 +178,7 @@ export interface VelcronFlexRowDefinition extends VelcronDefinition, VelcronColo
174
178
  minWidth?: number | string;
175
179
  height?: number | string;
176
180
  minHeight?: number | string;
181
+ effects?: VelcronEffects;
177
182
  }
178
183
  export interface VelcronFlexColumnDefinition extends VelcronDefinition, VelcronColorStyling {
179
184
  type: "column";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.172-dev",
4
+ "version": "8.0.174-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
package/ux/Directive.d.ts CHANGED
@@ -1,9 +1,13 @@
1
1
  import { DirectiveBinding, VNode } from "vue";
2
2
  import { IExtendApiManifestWithConfiguration } from "../Extends";
3
3
  export type DirectiveDefinition<T = void> = () => {
4
+ created: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void;
5
+ beforeMount: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void;
4
6
  mounted: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void;
5
- unmounted: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void;
7
+ beforeUpdate: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void;
6
8
  updated: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void;
9
+ beforeUnmount: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void;
10
+ unmounted: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void;
7
11
  };
8
12
  export interface Directives {
9
13
  }