@operato/scene-excel 10.0.0-beta.22 → 10.0.0-beta.65

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.
Files changed (2) hide show
  1. package/dist/excel.d.ts +18 -8
  2. package/package.json +4 -4
package/dist/excel.d.ts CHANGED
@@ -32,7 +32,7 @@ declare const Excel_base: (new (...args: any[]) => {
32
32
  get disposed(): boolean;
33
33
  isLayer(): boolean;
34
34
  isGroup(): boolean;
35
- isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component").Container;
35
+ isContainer(): this is import("@hatiolab/things-scene").Container;
36
36
  isLine(): boolean;
37
37
  isRoot(): boolean;
38
38
  isRootModel(): boolean;
@@ -48,9 +48,10 @@ declare const Excel_base: (new (...args: any[]) => {
48
48
  get(property: any): any;
49
49
  set(props: any, propval?: any): any;
50
50
  getState(property: any): any;
51
- setState(props: any, propval?: any): any;
51
+ setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
52
52
  get model(): any;
53
- get state(): any;
53
+ get state(): import("@hatiolab/things-scene").State;
54
+ get refid(): any;
54
55
  get hierarchy(): any;
55
56
  get volatile(): never[];
56
57
  _applyProps(target: any, props: any, options: any): any;
@@ -147,7 +148,7 @@ declare const Excel_base: (new (...args: any[]) => {
147
148
  findAll(s: string | ((c: import("@hatiolab/things-scene").Component) => boolean), ...others: any[]): any[] | undefined;
148
149
  capture(x: number, y: number, except?: (c: import("@hatiolab/things-scene").Component) => boolean): any;
149
150
  findAnchor(name: string): any;
150
- isDescendible(container: import("@hatiolab/things-scene").Component): boolean;
151
+ isDescendible(container: import("@hatiolab/things-scene").Component | any): boolean;
151
152
  getContext(component?: unknown): any;
152
153
  get root(): import("@hatiolab/things-scene").Component;
153
154
  get rootModel(): import("@hatiolab/things-scene").Component;
@@ -192,9 +193,13 @@ declare const Excel_base: (new (...args: any[]) => {
192
193
  toLocal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
193
194
  toGlobal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
194
195
  toOther(x: number, y: number, target: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
196
+ on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
195
197
  on(name: string | object, callback: Function, context?: any): any;
198
+ off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
196
199
  off(name?: string | object, callback?: Function, context?: any): any;
200
+ once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
197
201
  once(name: string | object, callback: Function, context?: any): any;
202
+ trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
198
203
  trigger(name: string, ...args: any[]): any;
199
204
  delegate_on(delegator: any): any;
200
205
  delegate_off(delegator: any): any;
@@ -275,7 +280,7 @@ declare const Excel_base: (new (...args: any[]) => {
275
280
  get disposed(): boolean;
276
281
  isLayer(): boolean;
277
282
  isGroup(): boolean;
278
- isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component").Container;
283
+ isContainer(): this is import("@hatiolab/things-scene").Container;
279
284
  isLine(): boolean;
280
285
  isRoot(): boolean;
281
286
  isRootModel(): boolean;
@@ -291,9 +296,10 @@ declare const Excel_base: (new (...args: any[]) => {
291
296
  get(property: any): any;
292
297
  set(props: any, propval?: any): any;
293
298
  getState(property: any): any;
294
- setState(props: any, propval?: any): any;
299
+ setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
295
300
  get model(): any;
296
- get state(): any;
301
+ get state(): import("@hatiolab/things-scene").State;
302
+ get refid(): any;
297
303
  get hierarchy(): any;
298
304
  get volatile(): never[];
299
305
  _applyProps(target: any, props: any, options: any): any;
@@ -384,7 +390,7 @@ declare const Excel_base: (new (...args: any[]) => {
384
390
  findAll(s: string | ((c: import("@hatiolab/things-scene").Component) => boolean), ...others: any[]): any[] | undefined;
385
391
  capture(x: number, y: number, except?: (c: import("@hatiolab/things-scene").Component) => boolean): any;
386
392
  findAnchor(name: string): any;
387
- isDescendible(container: import("@hatiolab/things-scene").Component): boolean;
393
+ isDescendible(container: import("@hatiolab/things-scene").Component | any): boolean;
388
394
  getContext(component?: unknown): any;
389
395
  get root(): import("@hatiolab/things-scene").Component;
390
396
  get rootModel(): import("@hatiolab/things-scene").Component;
@@ -428,9 +434,13 @@ declare const Excel_base: (new (...args: any[]) => {
428
434
  toLocal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
429
435
  toGlobal(x: number, y: number, top?: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
430
436
  toOther(x: number, y: number, target: import("@hatiolab/things-scene").Component): import("@hatiolab/things-scene").POINT;
437
+ on<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
431
438
  on(name: string | object, callback: Function, context?: any): any;
439
+ off<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback?: ((...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void) | undefined, context?: any): any;
432
440
  off(name?: string | object, callback?: Function, context?: any): any;
441
+ once<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, callback: (...args: import("@hatiolab/things-scene").ComponentEventMap[K]) => void, context?: any): any;
433
442
  once(name: string | object, callback: Function, context?: any): any;
443
+ trigger<K extends keyof import("@hatiolab/things-scene").ComponentEventMap>(name: K, ...args: import("@hatiolab/things-scene").ComponentEventMap[K]): any;
434
444
  trigger(name: string, ...args: any[]): any;
435
445
  delegate_on(delegator: any): any;
436
446
  delegate_off(delegator: any): any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@operato/scene-excel",
3
3
  "description": "Excel integration component for things-scene",
4
- "version": "10.0.0-beta.22",
4
+ "version": "10.0.0-beta.65",
5
5
  "type": "module",
6
6
  "author": "heartyoh",
7
7
  "main": "dist/index.js",
@@ -33,8 +33,8 @@
33
33
  },
34
34
  "devDependencies": {
35
35
  "@hatiolab/prettier-config": "^1.0.0",
36
- "@things-factory/builder": "^10.0.0-beta.1",
37
- "@things-factory/operato-board": "^10.0.0-beta.1",
36
+ "@things-factory/builder": "^10.0.0-zeta.1",
37
+ "@things-factory/operato-board": "^10.0.0-zeta.1",
38
38
  "@typescript-eslint/eslint-plugin": "^8.0.0",
39
39
  "@typescript-eslint/parser": "^8.0.0",
40
40
  "@web/dev-server": "^0.1.28",
@@ -59,5 +59,5 @@
59
59
  "prettier --write"
60
60
  ]
61
61
  },
62
- "gitHead": "f48e52f4f5fdc30ec06af9da7cf253f6e29cfb0e"
62
+ "gitHead": "99733bf39e2d279630d68844f19d9687272a4992"
63
63
  }