x-runtime-lib 0.8.114 → 0.8.116

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.
@@ -11,9 +11,6 @@ export type Node = {
11
11
  key: string;
12
12
  alias?: string;
13
13
  };
14
- reference?: {
15
- comp: string | undefined;
16
- };
17
14
  [key: string]: any;
18
15
  };
19
16
  export type NodePair = {
@@ -1,5 +1,4 @@
1
1
  export * from './basic';
2
- export * from './context';
3
2
  export * from './data';
4
3
  export * from './depend';
5
4
  export * from './element';
@@ -31653,19 +31653,19 @@ export {
31653
31653
  a4 as K,
31654
31654
  E4 as M,
31655
31655
  s4 as O,
31656
- n4 as a,
31657
- h4 as b,
31658
- B4 as c,
31659
- u4 as d,
31656
+ h4 as a,
31657
+ u4 as b,
31658
+ n4 as c,
31659
+ D4 as d,
31660
31660
  l4 as e,
31661
- D4 as f,
31662
- c4 as g,
31663
- w4 as h,
31661
+ c4 as f,
31662
+ w4 as g,
31663
+ d4 as h,
31664
31664
  r4 as i,
31665
- d4 as j,
31666
- f4 as k,
31667
- y4 as l,
31668
- Q4 as m,
31665
+ f4 as j,
31666
+ y4 as k,
31667
+ Q4 as l,
31668
+ B4 as m,
31669
31669
  i4 as n,
31670
31670
  p4 as o,
31671
31671
  v4 as p,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-runtime-lib",
3
3
  "private": false,
4
- "version": "0.8.114",
4
+ "version": "0.8.116",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -1,10 +0,0 @@
1
- import { Reactive } from 'vue';
2
- import { Data } from './data';
3
- export type Context = {
4
- dataSeq: number;
5
- data: Reactive<Data>;
6
- children: {
7
- [key: string]: Context;
8
- };
9
- };
10
- export declare function ensureContext(rootContext: Context, parentKeys: string[], key: string, dataSeq: number, data: Data): void;