@hatiolab/things-scene 10.0.0-beta.139 → 10.0.0-beta.140

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 (55) hide show
  1. package/CHANGELOG.md +65 -0
  2. package/README.md +56 -53
  3. package/dist-types/components/audio.d.ts +9 -9
  4. package/dist-types/components/component.d.ts +77 -13
  5. package/dist-types/components/component.d.ts.map +1 -1
  6. package/dist-types/components/container-abstract.d.ts +18 -18
  7. package/dist-types/components/container.d.ts +9 -9
  8. package/dist-types/components/ellipse.d.ts +9 -9
  9. package/dist-types/components/generic-placeholders.d.ts +9 -9
  10. package/dist-types/components/html-overlay-container.d.ts +9 -9
  11. package/dist-types/components/html-overlay-element.d.ts +18 -18
  12. package/dist-types/components/image-view.d.ts +9 -9
  13. package/dist-types/components/info-window.d.ts +9 -9
  14. package/dist-types/components/local-ref.d.ts +9 -9
  15. package/dist-types/components/mixins/connectable.d.ts +9 -9
  16. package/dist-types/components/mixins/data-source.d.ts +9 -9
  17. package/dist-types/components/mixins/gltf-component.d.ts +9 -9
  18. package/dist-types/components/mixins/html-element.d.ts +9 -9
  19. package/dist-types/components/mixins/move-handle.d.ts +9 -9
  20. package/dist-types/components/mixins/rect-path.d.ts +9 -9
  21. package/dist-types/components/mixins/three-d-only.d.ts +9 -9
  22. package/dist-types/components/mixins/value-holder.d.ts +9 -9
  23. package/dist-types/components/node.d.ts +9 -9
  24. package/dist-types/components/popup.d.ts +9 -9
  25. package/dist-types/components/rect.d.ts +18 -18
  26. package/dist-types/components/ruler.d.ts +9 -9
  27. package/dist-types/components/service-component.d.ts +9 -9
  28. package/dist-types/components/text.d.ts +9 -9
  29. package/dist-types/items/capacity-mixin.d.ts +9 -9
  30. package/dist-types/things-scene/api/clipboard.d.ts +1 -1
  31. package/dist-types/things-scene/api/clipboard.d.ts.map +1 -1
  32. package/dist-types/things-scene/api/listener.d.ts +1 -1
  33. package/dist-types/things-scene/api/listener.d.ts.map +1 -1
  34. package/dist-types/things-scene/api/to-data-url.d.ts +1 -1
  35. package/dist-types/things-scene/api/to-data-url.d.ts.map +1 -1
  36. package/dist-types/things-scene/api/zorder.d.ts +1 -1
  37. package/dist-types/things-scene/api/zorder.d.ts.map +1 -1
  38. package/dist-types/things-scene/create.d.ts +24 -0
  39. package/dist-types/things-scene/create.d.ts.map +1 -1
  40. package/dist-types/things-scene/scene.d.ts +70 -19
  41. package/dist-types/things-scene/scene.d.ts.map +1 -1
  42. package/dist-types/threed/factories/backdrop.d.ts +18 -18
  43. package/dist-types/threed/factories/banner.d.ts +9 -9
  44. package/dist-types/threed/factories/camera.d.ts +9 -9
  45. package/dist-types/threed/factories/cube.d.ts +9 -9
  46. package/dist-types/threed/factories/decal.d.ts +18 -18
  47. package/dist-types/threed/factories/gltf-object.d.ts +18 -18
  48. package/dist-types/threed/factories/sprite.d.ts +9 -9
  49. package/dist-types/threed/factories/wall.d.ts +9 -9
  50. package/dist-types/transfer/transferable-mixin.d.ts +9 -9
  51. package/package.json +1 -1
  52. package/things-scene-min.js +1 -1
  53. package/things-scene-min.js.map +1 -1
  54. package/things-scene.mjs +1 -1
  55. package/things-scene.mjs.map +1 -1
@@ -30,14 +30,14 @@ declare const Ellipse_base: {
30
30
  fontSize: any;
31
31
  __cache__: any;
32
32
  created(): void;
33
- added(parent: any): void;
34
- removed(parent: any): void;
33
+ added(parent: import("../types/component.js").Container): void;
34
+ removed(parent: import("../types/component.js").Container): void;
35
35
  ready(): Promise<void>;
36
36
  _readyInvoked: boolean;
37
37
  invokeReady(): void | Promise<void>;
38
38
  touch(): void;
39
- clearCache(...attrs: any[]): void;
40
- removeSelf(completely: any): void;
39
+ clearCache(...attrs: string[]): void;
40
+ removeSelf(completely?: boolean): void;
41
41
  resetAnimation(): void;
42
42
  dispose(): void;
43
43
  get nature(): ComponentNature;
@@ -55,17 +55,17 @@ declare const Ellipse_base: {
55
55
  isHTMLElement(): boolean;
56
56
  isIdentifiable(): boolean;
57
57
  isPositionable(): boolean;
58
- replaceRefids(replaceMap: any): void;
59
- get(property: any): any;
58
+ replaceRefids(replaceMap: Record<string, string>): void;
59
+ get(property: string): any;
60
60
  set(props: any, propval?: any): any;
61
- getState(property: any): any;
61
+ getState(property: string): any;
62
62
  setState(props: Partial<import("../index.js").State> | string, propval?: any): any;
63
63
  get model(): any;
64
64
  get state(): import("../index.js").State;
65
65
  get refid(): any;
66
66
  get hierarchy(): any;
67
- get volatile(): never[];
68
- _applyProps(target: any, props: any, options: any): /*elided*/ any;
67
+ get volatile(): string[];
68
+ _applyProps(target: Record<string, any>, props: Record<string, any>, options: import("./component.js").ApplyPropsOptions): /*elided*/ any;
69
69
  move(offset: {
70
70
  x: number;
71
71
  y: number;
@@ -71,14 +71,14 @@ declare const Placeholder_base: {
71
71
  fontSize: any;
72
72
  __cache__: any;
73
73
  created(): void;
74
- added(parent: any): void;
75
- removed(parent: any): void;
74
+ added(parent: import("../types/component.js").Container): void;
75
+ removed(parent: import("../types/component.js").Container): void;
76
76
  ready(): Promise<void>;
77
77
  _readyInvoked: boolean;
78
78
  invokeReady(): void | Promise<void>;
79
79
  touch(): void;
80
- clearCache(...attrs: any[]): void;
81
- removeSelf(completely: any): void;
80
+ clearCache(...attrs: string[]): void;
81
+ removeSelf(completely?: boolean): void;
82
82
  resetAnimation(): void;
83
83
  dispose(): void;
84
84
  get nature(): ComponentNature;
@@ -97,17 +97,17 @@ declare const Placeholder_base: {
97
97
  isConnectable(): boolean;
98
98
  isIdentifiable(): boolean;
99
99
  isPositionable(): boolean;
100
- replaceRefids(replaceMap: any): void;
101
- get(property: any): any;
100
+ replaceRefids(replaceMap: Record<string, string>): void;
101
+ get(property: string): any;
102
102
  set(props: any, propval?: any): any;
103
- getState(property: any): any;
103
+ getState(property: string): any;
104
104
  setState(props: Partial<import("../index.js").State> | string, propval?: any): any;
105
105
  get model(): any;
106
106
  get state(): import("../index.js").State;
107
107
  get refid(): any;
108
108
  get hierarchy(): any;
109
- get volatile(): never[];
110
- _applyProps(target: any, props: any, options: any): /*elided*/ any;
109
+ get volatile(): string[];
110
+ _applyProps(target: Record<string, any>, props: Record<string, any>, options: import("./component.js").ApplyPropsOptions): /*elided*/ any;
111
111
  move(offset: {
112
112
  x: number;
113
113
  y: number;
@@ -41,13 +41,13 @@ declare const HTMLOverlayContainer_base: {
41
41
  fontSize: any;
42
42
  __cache__: any;
43
43
  created(): void;
44
- added(parent: any): void;
45
- removed(parent: any): void;
44
+ added(parent: import("../types/component.js").Container): void;
45
+ removed(parent: import("../types/component.js").Container): void;
46
46
  _readyInvoked: boolean;
47
47
  invokeReady(): void | Promise<void>;
48
48
  touch(): void;
49
- clearCache(...attrs: any[]): void;
50
- removeSelf(completely: any): void;
49
+ clearCache(...attrs: string[]): void;
50
+ removeSelf(completely?: boolean): void;
51
51
  resetAnimation(): void;
52
52
  get nature(): import("../index.js").ComponentNature;
53
53
  get disposed(): boolean;
@@ -64,17 +64,17 @@ declare const HTMLOverlayContainer_base: {
64
64
  isConnectable(): boolean;
65
65
  isIdentifiable(): boolean;
66
66
  isPositionable(): boolean;
67
- replaceRefids(replaceMap: any): void;
68
- get(property: any): any;
67
+ replaceRefids(replaceMap: Record<string, string>): void;
68
+ get(property: string): any;
69
69
  set(props: any, propval?: any): any;
70
- getState(property: any): any;
70
+ getState(property: string): any;
71
71
  setState(props: Partial<import("../index.js").State> | string, propval?: any): any;
72
72
  get model(): any;
73
73
  get state(): import("../index.js").State;
74
74
  get refid(): any;
75
75
  get hierarchy(): any;
76
- get volatile(): never[];
77
- _applyProps(target: any, props: any, options: any): /*elided*/ any;
76
+ get volatile(): string[];
77
+ _applyProps(target: Record<string, any>, props: Record<string, any>, options: import("./component.js").ApplyPropsOptions): /*elided*/ any;
78
78
  contains(x: number, y: number): boolean;
79
79
  move(offset: {
80
80
  x: number;
@@ -41,13 +41,13 @@ declare const HTMLOverlayElement_base: {
41
41
  fontSize: any;
42
42
  __cache__: any;
43
43
  created(): void;
44
- added(parent: any): void;
45
- removed(parent: any): void;
44
+ added(parent: import("../types/component.js").Container): void;
45
+ removed(parent: import("../types/component.js").Container): void;
46
46
  _readyInvoked: boolean;
47
47
  invokeReady(): void | Promise<void>;
48
48
  touch(): void;
49
- clearCache(...attrs: any[]): void;
50
- removeSelf(completely: any): void;
49
+ clearCache(...attrs: string[]): void;
50
+ removeSelf(completely?: boolean): void;
51
51
  resetAnimation(): void;
52
52
  get nature(): import("../index.js").ComponentNature;
53
53
  get disposed(): boolean;
@@ -64,17 +64,17 @@ declare const HTMLOverlayElement_base: {
64
64
  isConnectable(): boolean;
65
65
  isIdentifiable(): boolean;
66
66
  isPositionable(): boolean;
67
- replaceRefids(replaceMap: any): void;
68
- get(property: any): any;
67
+ replaceRefids(replaceMap: Record<string, string>): void;
68
+ get(property: string): any;
69
69
  set(props: any, propval?: any): any;
70
- getState(property: any): any;
70
+ getState(property: string): any;
71
71
  setState(props: Partial<import("../index.js").State> | string, propval?: any): any;
72
72
  get model(): any;
73
73
  get state(): import("../index.js").State;
74
74
  get refid(): any;
75
75
  get hierarchy(): any;
76
- get volatile(): never[];
77
- _applyProps(target: any, props: any, options: any): /*elided*/ any;
76
+ get volatile(): string[];
77
+ _applyProps(target: Record<string, any>, props: Record<string, any>, options: import("./component.js").ApplyPropsOptions): /*elided*/ any;
78
78
  contains(x: number, y: number): boolean;
79
79
  move(offset: {
80
80
  x: number;
@@ -281,14 +281,14 @@ declare const HTMLOverlayElement_base: {
281
281
  fontSize: any;
282
282
  __cache__: any;
283
283
  created(): void;
284
- added(parent: any): void;
285
- removed(parent: any): void;
284
+ added(parent: import("../types/component.js").Container): void;
285
+ removed(parent: import("../types/component.js").Container): void;
286
286
  ready(): Promise<void>;
287
287
  _readyInvoked: boolean;
288
288
  invokeReady(): void | Promise<void>;
289
289
  touch(): void;
290
- clearCache(...attrs: any[]): void;
291
- removeSelf(completely: any): void;
290
+ clearCache(...attrs: string[]): void;
291
+ removeSelf(completely?: boolean): void;
292
292
  resetAnimation(): void;
293
293
  dispose(): void;
294
294
  get nature(): import("../index.js").ComponentNature;
@@ -307,17 +307,17 @@ declare const HTMLOverlayElement_base: {
307
307
  isConnectable(): boolean;
308
308
  isIdentifiable(): boolean;
309
309
  isPositionable(): boolean;
310
- replaceRefids(replaceMap: any): void;
311
- get(property: any): any;
310
+ replaceRefids(replaceMap: Record<string, string>): void;
311
+ get(property: string): any;
312
312
  set(props: any, propval?: any): any;
313
- getState(property: any): any;
313
+ getState(property: string): any;
314
314
  setState(props: Partial<import("../index.js").State> | string, propval?: any): any;
315
315
  get model(): any;
316
316
  get state(): import("../index.js").State;
317
317
  get refid(): any;
318
318
  get hierarchy(): any;
319
- get volatile(): never[];
320
- _applyProps(target: any, props: any, options: any): /*elided*/ any;
319
+ get volatile(): string[];
320
+ _applyProps(target: Record<string, any>, props: Record<string, any>, options: import("./component.js").ApplyPropsOptions): /*elided*/ any;
321
321
  move(offset: {
322
322
  x: number;
323
323
  y: number;
@@ -39,14 +39,14 @@ declare const ImageView_base: {
39
39
  fontSize: any;
40
40
  __cache__: any;
41
41
  created(): void;
42
- added(parent: any): void;
43
- removed(parent: any): void;
42
+ added(parent: import("../types/component.js").Container): void;
43
+ removed(parent: import("../types/component.js").Container): void;
44
44
  ready(): Promise<void>;
45
45
  _readyInvoked: boolean;
46
46
  invokeReady(): void | Promise<void>;
47
47
  touch(): void;
48
- clearCache(...attrs: any[]): void;
49
- removeSelf(completely: any): void;
48
+ clearCache(...attrs: string[]): void;
49
+ removeSelf(completely?: boolean): void;
50
50
  resetAnimation(): void;
51
51
  dispose(): void;
52
52
  get nature(): import("../index.js").ComponentNature;
@@ -65,17 +65,17 @@ declare const ImageView_base: {
65
65
  isConnectable(): boolean;
66
66
  isIdentifiable(): boolean;
67
67
  isPositionable(): boolean;
68
- replaceRefids(replaceMap: any): void;
69
- get(property: any): any;
68
+ replaceRefids(replaceMap: Record<string, string>): void;
69
+ get(property: string): any;
70
70
  set(props: any, propval?: any): any;
71
- getState(property: any): any;
71
+ getState(property: string): any;
72
72
  setState(props: Partial<import("../index.js").State> | string, propval?: any): any;
73
73
  get model(): any;
74
74
  get state(): import("../index.js").State;
75
75
  get refid(): any;
76
76
  get hierarchy(): any;
77
- get volatile(): never[];
78
- _applyProps(target: any, props: any, options: any): /*elided*/ any;
77
+ get volatile(): string[];
78
+ _applyProps(target: Record<string, any>, props: Record<string, any>, options: import("./component.js").ApplyPropsOptions): /*elided*/ any;
79
79
  move(offset: {
80
80
  x: number;
81
81
  y: number;
@@ -39,14 +39,14 @@ declare const InfoWindow_base: {
39
39
  fontSize: any;
40
40
  __cache__: any;
41
41
  created(): void;
42
- added(parent: any): void;
43
- removed(parent: any): void;
42
+ added(parent: import("../types/component.js").Container): void;
43
+ removed(parent: import("../types/component.js").Container): void;
44
44
  ready(): Promise<void>;
45
45
  _readyInvoked: boolean;
46
46
  invokeReady(): void | Promise<void>;
47
47
  touch(): void;
48
- clearCache(...attrs: any[]): void;
49
- removeSelf(completely: any): void;
48
+ clearCache(...attrs: string[]): void;
49
+ removeSelf(completely?: boolean): void;
50
50
  resetAnimation(): void;
51
51
  dispose(): void;
52
52
  get nature(): import("../index.js").ComponentNature;
@@ -65,17 +65,17 @@ declare const InfoWindow_base: {
65
65
  isConnectable(): boolean;
66
66
  isIdentifiable(): boolean;
67
67
  isPositionable(): boolean;
68
- replaceRefids(replaceMap: any): void;
69
- get(property: any): any;
68
+ replaceRefids(replaceMap: Record<string, string>): void;
69
+ get(property: string): any;
70
70
  set(props: any, propval?: any): any;
71
- getState(property: any): any;
71
+ getState(property: string): any;
72
72
  setState(props: Partial<import("../index.js").State> | string, propval?: any): any;
73
73
  get model(): any;
74
74
  get state(): import("../index.js").State;
75
75
  get refid(): any;
76
76
  get hierarchy(): any;
77
- get volatile(): never[];
78
- _applyProps(target: any, props: any, options: any): /*elided*/ any;
77
+ get volatile(): string[];
78
+ _applyProps(target: Record<string, any>, props: Record<string, any>, options: import("./component.js").ApplyPropsOptions): /*elided*/ any;
79
79
  move(offset: {
80
80
  x: number;
81
81
  y: number;
@@ -39,14 +39,14 @@ declare const LocalRef_base: {
39
39
  fontSize: any;
40
40
  __cache__: any;
41
41
  created(): void;
42
- added(parent: any): void;
43
- removed(parent: any): void;
42
+ added(parent: import("../types/component.js").Container): void;
43
+ removed(parent: import("../types/component.js").Container): void;
44
44
  ready(): Promise<void>;
45
45
  _readyInvoked: boolean;
46
46
  invokeReady(): void | Promise<void>;
47
47
  touch(): void;
48
- clearCache(...attrs: any[]): void;
49
- removeSelf(completely: any): void;
48
+ clearCache(...attrs: string[]): void;
49
+ removeSelf(completely?: boolean): void;
50
50
  resetAnimation(): void;
51
51
  dispose(): void;
52
52
  get nature(): import("../index.js").ComponentNature;
@@ -65,17 +65,17 @@ declare const LocalRef_base: {
65
65
  isConnectable(): boolean;
66
66
  isIdentifiable(): boolean;
67
67
  isPositionable(): boolean;
68
- replaceRefids(replaceMap: any): void;
69
- get(property: any): any;
68
+ replaceRefids(replaceMap: Record<string, string>): void;
69
+ get(property: string): any;
70
70
  set(props: any, propval?: any): any;
71
- getState(property: any): any;
71
+ getState(property: string): any;
72
72
  setState(props: Partial<import("../index.js").State> | string, propval?: any): any;
73
73
  get model(): any;
74
74
  get state(): import("../index.js").State;
75
75
  get refid(): any;
76
76
  get hierarchy(): any;
77
- get volatile(): never[];
78
- _applyProps(target: any, props: any, options: any): /*elided*/ any;
77
+ get volatile(): string[];
78
+ _applyProps(target: Record<string, any>, props: Record<string, any>, options: import("./component.js").ApplyPropsOptions): /*elided*/ any;
79
79
  move(offset: {
80
80
  x: number;
81
81
  y: number;
@@ -58,14 +58,14 @@ export default function Connectable<T extends Constructor<Component>>(superclass
58
58
  fontSize: any;
59
59
  __cache__: any;
60
60
  created(): void;
61
- added(parent: any): void;
62
- removed(parent: any): void;
61
+ added(parent: import("../../types/component.js").Container): void;
62
+ removed(parent: import("../../types/component.js").Container): void;
63
63
  ready(): Promise<void>;
64
64
  _readyInvoked: boolean;
65
65
  invokeReady(): void | Promise<void>;
66
66
  touch(): void;
67
- clearCache(...attrs: any[]): void;
68
- removeSelf(completely: any): void;
67
+ clearCache(...attrs: string[]): void;
68
+ removeSelf(completely?: boolean): void;
69
69
  resetAnimation(): void;
70
70
  dispose(): void;
71
71
  get nature(): import("../../index.js").ComponentNature;
@@ -83,17 +83,17 @@ export default function Connectable<T extends Constructor<Component>>(superclass
83
83
  isHTMLElement(): boolean;
84
84
  isIdentifiable(): boolean;
85
85
  isPositionable(): boolean;
86
- replaceRefids(replaceMap: any): void;
87
- get(property: any): any;
86
+ replaceRefids(replaceMap: Record<string, string>): void;
87
+ get(property: string): any;
88
88
  set(props: any, propval?: any): any;
89
- getState(property: any): any;
89
+ getState(property: string): any;
90
90
  setState(props: Partial<import("../../index.js").State> | string, propval?: any): any;
91
91
  get model(): any;
92
92
  get state(): import("../../index.js").State;
93
93
  get refid(): any;
94
94
  get hierarchy(): any;
95
- get volatile(): never[];
96
- _applyProps(target: any, props: any, options: any): /*elided*/ any;
95
+ get volatile(): string[];
96
+ _applyProps(target: Record<string, any>, props: Record<string, any>, options: import("../component.js").ApplyPropsOptions): /*elided*/ any;
97
97
  move(offset: {
98
98
  x: number;
99
99
  y: number;
@@ -22,14 +22,14 @@ export default function DataSource<T extends Constructor<Component>>(superclass:
22
22
  fontSize: any;
23
23
  __cache__: any;
24
24
  created(): void;
25
- added(parent: any): void;
26
- removed(parent: any): void;
25
+ added(parent: import("../../types/component.js").Container): void;
26
+ removed(parent: import("../../types/component.js").Container): void;
27
27
  ready(): Promise<void>;
28
28
  _readyInvoked: boolean;
29
29
  invokeReady(): void | Promise<void>;
30
30
  touch(): void;
31
- clearCache(...attrs: any[]): void;
32
- removeSelf(completely: any): void;
31
+ clearCache(...attrs: string[]): void;
32
+ removeSelf(completely?: boolean): void;
33
33
  resetAnimation(): void;
34
34
  dispose(): void;
35
35
  get nature(): import("../../index.js").ComponentNature;
@@ -48,17 +48,17 @@ export default function DataSource<T extends Constructor<Component>>(superclass:
48
48
  isConnectable(): boolean;
49
49
  isIdentifiable(): boolean;
50
50
  isPositionable(): boolean;
51
- replaceRefids(replaceMap: any): void;
52
- get(property: any): any;
51
+ replaceRefids(replaceMap: Record<string, string>): void;
52
+ get(property: string): any;
53
53
  set(props: any, propval?: any): any;
54
- getState(property: any): any;
54
+ getState(property: string): any;
55
55
  setState(props: Partial<import("../../index.js").State> | string, propval?: any): any;
56
56
  get model(): any;
57
57
  get state(): import("../../index.js").State;
58
58
  get refid(): any;
59
59
  get hierarchy(): any;
60
- get volatile(): never[];
61
- _applyProps(target: any, props: any, options: any): /*elided*/ any;
60
+ get volatile(): string[];
61
+ _applyProps(target: Record<string, any>, props: Record<string, any>, options: import("../component.js").ApplyPropsOptions): /*elided*/ any;
62
62
  contains(x: number, y: number): boolean;
63
63
  move(offset: {
64
64
  x: number;
@@ -74,14 +74,14 @@ export default function GltfComponent<T extends Constructor<Component>>(supercla
74
74
  fontSize: any;
75
75
  __cache__: any;
76
76
  created(): void;
77
- added(parent: any): void;
78
- removed(parent: any): void;
77
+ added(parent: import("../../types/component.js").Container): void;
78
+ removed(parent: import("../../types/component.js").Container): void;
79
79
  ready(): Promise<void>;
80
80
  _readyInvoked: boolean;
81
81
  invokeReady(): void | Promise<void>;
82
82
  touch(): void;
83
- clearCache(...attrs: any[]): void;
84
- removeSelf(completely: any): void;
83
+ clearCache(...attrs: string[]): void;
84
+ removeSelf(completely?: boolean): void;
85
85
  resetAnimation(): void;
86
86
  dispose(): void;
87
87
  get nature(): import("../../index.js").ComponentNature;
@@ -99,15 +99,15 @@ export default function GltfComponent<T extends Constructor<Component>>(supercla
99
99
  isConnectable(): boolean;
100
100
  isIdentifiable(): boolean;
101
101
  isPositionable(): boolean;
102
- replaceRefids(replaceMap: any): void;
103
- get(property: any): any;
104
- getState(property: any): any;
102
+ replaceRefids(replaceMap: Record<string, string>): void;
103
+ get(property: string): any;
104
+ getState(property: string): any;
105
105
  get model(): any;
106
106
  get state(): import("../../index.js").State;
107
107
  get refid(): any;
108
108
  get hierarchy(): any;
109
- get volatile(): never[];
110
- _applyProps(target: any, props: any, options: any): /*elided*/ any;
109
+ get volatile(): string[];
110
+ _applyProps(target: Record<string, any>, props: Record<string, any>, options: import("../component.js").ApplyPropsOptions): /*elided*/ any;
111
111
  contains(x: number, y: number): boolean;
112
112
  move(offset: {
113
113
  x: number;
@@ -55,13 +55,13 @@ export default function MixinHTMLElement<T extends Constructor<Component>>(super
55
55
  fontSize: any;
56
56
  __cache__: any;
57
57
  created(): void;
58
- added(parent: any): void;
59
- removed(parent: any): void;
58
+ added(parent: import("../../types/component.js").Container): void;
59
+ removed(parent: import("../../types/component.js").Container): void;
60
60
  _readyInvoked: boolean;
61
61
  invokeReady(): void | Promise<void>;
62
62
  touch(): void;
63
- clearCache(...attrs: any[]): void;
64
- removeSelf(completely: any): void;
63
+ clearCache(...attrs: string[]): void;
64
+ removeSelf(completely?: boolean): void;
65
65
  resetAnimation(): void;
66
66
  get nature(): import("../../index.js").ComponentNature;
67
67
  get disposed(): boolean;
@@ -78,17 +78,17 @@ export default function MixinHTMLElement<T extends Constructor<Component>>(super
78
78
  isConnectable(): boolean;
79
79
  isIdentifiable(): boolean;
80
80
  isPositionable(): boolean;
81
- replaceRefids(replaceMap: any): void;
82
- get(property: any): any;
81
+ replaceRefids(replaceMap: Record<string, string>): void;
82
+ get(property: string): any;
83
83
  set(props: any, propval?: any): any;
84
- getState(property: any): any;
84
+ getState(property: string): any;
85
85
  setState(props: Partial<import("../../index.js").State> | string, propval?: any): any;
86
86
  get model(): any;
87
87
  get state(): import("../../index.js").State;
88
88
  get refid(): any;
89
89
  get hierarchy(): any;
90
- get volatile(): never[];
91
- _applyProps(target: any, props: any, options: any): /*elided*/ any;
90
+ get volatile(): string[];
91
+ _applyProps(target: Record<string, any>, props: Record<string, any>, options: import("../component.js").ApplyPropsOptions): /*elided*/ any;
92
92
  contains(x: number, y: number): boolean;
93
93
  move(offset: {
94
94
  x: number;
@@ -28,14 +28,14 @@ export default function MoveHandle<T extends Constructor<Component>>(superclass:
28
28
  fontSize: any;
29
29
  __cache__: any;
30
30
  created(): void;
31
- added(parent: any): void;
32
- removed(parent: any): void;
31
+ added(parent: import("../../types/component.js").Container): void;
32
+ removed(parent: import("../../types/component.js").Container): void;
33
33
  ready(): Promise<void>;
34
34
  _readyInvoked: boolean;
35
35
  invokeReady(): void | Promise<void>;
36
36
  touch(): void;
37
- clearCache(...attrs: any[]): void;
38
- removeSelf(completely: any): void;
37
+ clearCache(...attrs: string[]): void;
38
+ removeSelf(completely?: boolean): void;
39
39
  resetAnimation(): void;
40
40
  dispose(): void;
41
41
  get nature(): import("../../index.js").ComponentNature;
@@ -54,17 +54,17 @@ export default function MoveHandle<T extends Constructor<Component>>(superclass:
54
54
  isConnectable(): boolean;
55
55
  isIdentifiable(): boolean;
56
56
  isPositionable(): boolean;
57
- replaceRefids(replaceMap: any): void;
58
- get(property: any): any;
57
+ replaceRefids(replaceMap: Record<string, string>): void;
58
+ get(property: string): any;
59
59
  set(props: any, propval?: any): any;
60
- getState(property: any): any;
60
+ getState(property: string): any;
61
61
  setState(props: Partial<import("../../index.js").State> | string, propval?: any): any;
62
62
  get model(): any;
63
63
  get state(): import("../../index.js").State;
64
64
  get refid(): any;
65
65
  get hierarchy(): any;
66
- get volatile(): never[];
67
- _applyProps(target: any, props: any, options: any): /*elided*/ any;
66
+ get volatile(): string[];
67
+ _applyProps(target: Record<string, any>, props: Record<string, any>, options: import("../component.js").ApplyPropsOptions): /*elided*/ any;
68
68
  contains(x: number, y: number): boolean;
69
69
  move(offset: {
70
70
  x: number;
@@ -42,14 +42,14 @@ export default function RectPath<T extends Constructor<Component>>(superclass: T
42
42
  fontSize: any;
43
43
  __cache__: any;
44
44
  created(): void;
45
- added(parent: any): void;
46
- removed(parent: any): void;
45
+ added(parent: import("../../types/component.js").Container): void;
46
+ removed(parent: import("../../types/component.js").Container): void;
47
47
  ready(): Promise<void>;
48
48
  _readyInvoked: boolean;
49
49
  invokeReady(): void | Promise<void>;
50
50
  touch(): void;
51
- clearCache(...attrs: any[]): void;
52
- removeSelf(completely: any): void;
51
+ clearCache(...attrs: string[]): void;
52
+ removeSelf(completely?: boolean): void;
53
53
  resetAnimation(): void;
54
54
  dispose(): void;
55
55
  get nature(): import("../../index.js").ComponentNature;
@@ -68,17 +68,17 @@ export default function RectPath<T extends Constructor<Component>>(superclass: T
68
68
  isConnectable(): boolean;
69
69
  isIdentifiable(): boolean;
70
70
  isPositionable(): boolean;
71
- replaceRefids(replaceMap: any): void;
72
- get(property: any): any;
71
+ replaceRefids(replaceMap: Record<string, string>): void;
72
+ get(property: string): any;
73
73
  set(props: any, propval?: any): any;
74
- getState(property: any): any;
74
+ getState(property: string): any;
75
75
  setState(props: Partial<import("../../index.js").State> | string, propval?: any): any;
76
76
  get model(): any;
77
77
  get state(): import("../../index.js").State;
78
78
  get refid(): any;
79
79
  get hierarchy(): any;
80
- get volatile(): never[];
81
- _applyProps(target: any, props: any, options: any): /*elided*/ any;
80
+ get volatile(): string[];
81
+ _applyProps(target: Record<string, any>, props: Record<string, any>, options: import("../component.js").ApplyPropsOptions): /*elided*/ any;
82
82
  move(offset: {
83
83
  x: number;
84
84
  y: number;
@@ -26,14 +26,14 @@ export default function ThreeDOnly<T extends Constructor<Component>>(superclass:
26
26
  fontSize: any;
27
27
  __cache__: any;
28
28
  created(): void;
29
- added(parent: any): void;
30
- removed(parent: any): void;
29
+ added(parent: import("../../types/component.js").Container): void;
30
+ removed(parent: import("../../types/component.js").Container): void;
31
31
  ready(): Promise<void>;
32
32
  _readyInvoked: boolean;
33
33
  invokeReady(): void | Promise<void>;
34
34
  touch(): void;
35
- clearCache(...attrs: any[]): void;
36
- removeSelf(completely: any): void;
35
+ clearCache(...attrs: string[]): void;
36
+ removeSelf(completely?: boolean): void;
37
37
  resetAnimation(): void;
38
38
  dispose(): void;
39
39
  get nature(): import("../../index.js").ComponentNature;
@@ -51,17 +51,17 @@ export default function ThreeDOnly<T extends Constructor<Component>>(superclass:
51
51
  isConnectable(): boolean;
52
52
  isIdentifiable(): boolean;
53
53
  isPositionable(): boolean;
54
- replaceRefids(replaceMap: any): void;
55
- get(property: any): any;
54
+ replaceRefids(replaceMap: Record<string, string>): void;
55
+ get(property: string): any;
56
56
  set(props: any, propval?: any): any;
57
- getState(property: any): any;
57
+ getState(property: string): any;
58
58
  setState(props: Partial<import("../../index.js").State> | string, propval?: any): any;
59
59
  get model(): any;
60
60
  get state(): import("../../index.js").State;
61
61
  get refid(): any;
62
62
  get hierarchy(): any;
63
- get volatile(): never[];
64
- _applyProps(target: any, props: any, options: any): /*elided*/ any;
63
+ get volatile(): string[];
64
+ _applyProps(target: Record<string, any>, props: Record<string, any>, options: import("../component.js").ApplyPropsOptions): /*elided*/ any;
65
65
  contains(x: number, y: number): boolean;
66
66
  move(offset: {
67
67
  x: number;