@leafer-ui/display 2.0.5 → 2.0.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leafer-ui/display",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "description": "@leafer-ui/display",
5
5
  "author": "Chao (Leafer) Wan",
6
6
  "license": "MIT",
@@ -22,14 +22,14 @@
22
22
  "leaferjs"
23
23
  ],
24
24
  "dependencies": {
25
- "@leafer/core": "2.0.5",
26
- "@leafer-ui/data": "2.0.5",
27
- "@leafer-ui/display-module": "2.0.5",
28
- "@leafer-ui/decorator": "2.0.5",
29
- "@leafer-ui/external": "2.0.5"
25
+ "@leafer/core": "2.0.6",
26
+ "@leafer-ui/data": "2.0.6",
27
+ "@leafer-ui/display-module": "2.0.6",
28
+ "@leafer-ui/decorator": "2.0.6",
29
+ "@leafer-ui/external": "2.0.6"
30
30
  },
31
31
  "devDependencies": {
32
- "@leafer/interface": "2.0.5",
33
- "@leafer-ui/interface": "2.0.5"
32
+ "@leafer/interface": "2.0.6",
33
+ "@leafer-ui/interface": "2.0.6"
34
34
  }
35
35
  }
package/src/UI.ts CHANGED
@@ -436,6 +436,7 @@ export class UI<TInputData = IUIInputData> extends Leaf<TInputData> implements I
436
436
  }
437
437
 
438
438
  public createProxyData(): IUIInputData { return undefined }
439
+ public clearProxyData(): void { }
439
440
 
440
441
 
441
442
  // hit rewrite
package/types/index.d.ts CHANGED
@@ -135,6 +135,7 @@ declare class UI<TInputData = IUIInputData> extends Leaf<TInputData> implements
135
135
  set(data: IUIInputData, _transition?: ITransition | 'temp'): void;
136
136
  get<K extends keyof this>(name?: K | K[] | IUIInputData): IUIInputData | this[K];
137
137
  createProxyData(): IUIInputData;
138
+ clearProxyData(): void;
138
139
  find(_condition: number | string | IFindCondition | IFindUIMethod, _options?: any): IUI[];
139
140
  findTag(tag: string | string[]): IUI[];
140
141
  findOne(_condition: number | string | IFindCondition | IFindUIMethod, _options?: any): IUI | undefined;