@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.
- package/CHANGELOG.md +65 -0
- package/README.md +56 -53
- package/dist-types/components/audio.d.ts +9 -9
- package/dist-types/components/component.d.ts +77 -13
- package/dist-types/components/component.d.ts.map +1 -1
- package/dist-types/components/container-abstract.d.ts +18 -18
- package/dist-types/components/container.d.ts +9 -9
- package/dist-types/components/ellipse.d.ts +9 -9
- package/dist-types/components/generic-placeholders.d.ts +9 -9
- package/dist-types/components/html-overlay-container.d.ts +9 -9
- package/dist-types/components/html-overlay-element.d.ts +18 -18
- package/dist-types/components/image-view.d.ts +9 -9
- package/dist-types/components/info-window.d.ts +9 -9
- package/dist-types/components/local-ref.d.ts +9 -9
- package/dist-types/components/mixins/connectable.d.ts +9 -9
- package/dist-types/components/mixins/data-source.d.ts +9 -9
- package/dist-types/components/mixins/gltf-component.d.ts +9 -9
- package/dist-types/components/mixins/html-element.d.ts +9 -9
- package/dist-types/components/mixins/move-handle.d.ts +9 -9
- package/dist-types/components/mixins/rect-path.d.ts +9 -9
- package/dist-types/components/mixins/three-d-only.d.ts +9 -9
- package/dist-types/components/mixins/value-holder.d.ts +9 -9
- package/dist-types/components/node.d.ts +9 -9
- package/dist-types/components/popup.d.ts +9 -9
- package/dist-types/components/rect.d.ts +18 -18
- package/dist-types/components/ruler.d.ts +9 -9
- package/dist-types/components/service-component.d.ts +9 -9
- package/dist-types/components/text.d.ts +9 -9
- package/dist-types/items/capacity-mixin.d.ts +9 -9
- package/dist-types/things-scene/api/clipboard.d.ts +1 -1
- package/dist-types/things-scene/api/clipboard.d.ts.map +1 -1
- package/dist-types/things-scene/api/listener.d.ts +1 -1
- package/dist-types/things-scene/api/listener.d.ts.map +1 -1
- package/dist-types/things-scene/api/to-data-url.d.ts +1 -1
- package/dist-types/things-scene/api/to-data-url.d.ts.map +1 -1
- package/dist-types/things-scene/api/zorder.d.ts +1 -1
- package/dist-types/things-scene/api/zorder.d.ts.map +1 -1
- package/dist-types/things-scene/create.d.ts +24 -0
- package/dist-types/things-scene/create.d.ts.map +1 -1
- package/dist-types/things-scene/scene.d.ts +70 -19
- package/dist-types/things-scene/scene.d.ts.map +1 -1
- package/dist-types/threed/factories/backdrop.d.ts +18 -18
- package/dist-types/threed/factories/banner.d.ts +9 -9
- package/dist-types/threed/factories/camera.d.ts +9 -9
- package/dist-types/threed/factories/cube.d.ts +9 -9
- package/dist-types/threed/factories/decal.d.ts +18 -18
- package/dist-types/threed/factories/gltf-object.d.ts +18 -18
- package/dist-types/threed/factories/sprite.d.ts +9 -9
- package/dist-types/threed/factories/wall.d.ts +9 -9
- package/dist-types/transfer/transferable-mixin.d.ts +9 -9
- package/package.json +1 -1
- package/things-scene-min.js +1 -1
- package/things-scene-min.js.map +1 -1
- package/things-scene.mjs +1 -1
- 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:
|
|
34
|
-
removed(parent:
|
|
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:
|
|
40
|
-
removeSelf(completely
|
|
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:
|
|
59
|
-
get(property:
|
|
58
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
59
|
+
get(property: string): any;
|
|
60
60
|
set(props: any, propval?: any): any;
|
|
61
|
-
getState(property:
|
|
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():
|
|
68
|
-
_applyProps(target:
|
|
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:
|
|
75
|
-
removed(parent:
|
|
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:
|
|
81
|
-
removeSelf(completely
|
|
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:
|
|
101
|
-
get(property:
|
|
100
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
101
|
+
get(property: string): any;
|
|
102
102
|
set(props: any, propval?: any): any;
|
|
103
|
-
getState(property:
|
|
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():
|
|
110
|
-
_applyProps(target:
|
|
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:
|
|
45
|
-
removed(parent:
|
|
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:
|
|
50
|
-
removeSelf(completely
|
|
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:
|
|
68
|
-
get(property:
|
|
67
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
68
|
+
get(property: string): any;
|
|
69
69
|
set(props: any, propval?: any): any;
|
|
70
|
-
getState(property:
|
|
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():
|
|
77
|
-
_applyProps(target:
|
|
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:
|
|
45
|
-
removed(parent:
|
|
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:
|
|
50
|
-
removeSelf(completely
|
|
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:
|
|
68
|
-
get(property:
|
|
67
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
68
|
+
get(property: string): any;
|
|
69
69
|
set(props: any, propval?: any): any;
|
|
70
|
-
getState(property:
|
|
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():
|
|
77
|
-
_applyProps(target:
|
|
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:
|
|
285
|
-
removed(parent:
|
|
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:
|
|
291
|
-
removeSelf(completely
|
|
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:
|
|
311
|
-
get(property:
|
|
310
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
311
|
+
get(property: string): any;
|
|
312
312
|
set(props: any, propval?: any): any;
|
|
313
|
-
getState(property:
|
|
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():
|
|
320
|
-
_applyProps(target:
|
|
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:
|
|
43
|
-
removed(parent:
|
|
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:
|
|
49
|
-
removeSelf(completely
|
|
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:
|
|
69
|
-
get(property:
|
|
68
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
69
|
+
get(property: string): any;
|
|
70
70
|
set(props: any, propval?: any): any;
|
|
71
|
-
getState(property:
|
|
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():
|
|
78
|
-
_applyProps(target:
|
|
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:
|
|
43
|
-
removed(parent:
|
|
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:
|
|
49
|
-
removeSelf(completely
|
|
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:
|
|
69
|
-
get(property:
|
|
68
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
69
|
+
get(property: string): any;
|
|
70
70
|
set(props: any, propval?: any): any;
|
|
71
|
-
getState(property:
|
|
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():
|
|
78
|
-
_applyProps(target:
|
|
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:
|
|
43
|
-
removed(parent:
|
|
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:
|
|
49
|
-
removeSelf(completely
|
|
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:
|
|
69
|
-
get(property:
|
|
68
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
69
|
+
get(property: string): any;
|
|
70
70
|
set(props: any, propval?: any): any;
|
|
71
|
-
getState(property:
|
|
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():
|
|
78
|
-
_applyProps(target:
|
|
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:
|
|
62
|
-
removed(parent:
|
|
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:
|
|
68
|
-
removeSelf(completely
|
|
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:
|
|
87
|
-
get(property:
|
|
86
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
87
|
+
get(property: string): any;
|
|
88
88
|
set(props: any, propval?: any): any;
|
|
89
|
-
getState(property:
|
|
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():
|
|
96
|
-
_applyProps(target:
|
|
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:
|
|
26
|
-
removed(parent:
|
|
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:
|
|
32
|
-
removeSelf(completely
|
|
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:
|
|
52
|
-
get(property:
|
|
51
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
52
|
+
get(property: string): any;
|
|
53
53
|
set(props: any, propval?: any): any;
|
|
54
|
-
getState(property:
|
|
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():
|
|
61
|
-
_applyProps(target:
|
|
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:
|
|
78
|
-
removed(parent:
|
|
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:
|
|
84
|
-
removeSelf(completely
|
|
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:
|
|
103
|
-
get(property:
|
|
104
|
-
getState(property:
|
|
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():
|
|
110
|
-
_applyProps(target:
|
|
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:
|
|
59
|
-
removed(parent:
|
|
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:
|
|
64
|
-
removeSelf(completely
|
|
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:
|
|
82
|
-
get(property:
|
|
81
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
82
|
+
get(property: string): any;
|
|
83
83
|
set(props: any, propval?: any): any;
|
|
84
|
-
getState(property:
|
|
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():
|
|
91
|
-
_applyProps(target:
|
|
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:
|
|
32
|
-
removed(parent:
|
|
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:
|
|
38
|
-
removeSelf(completely
|
|
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:
|
|
58
|
-
get(property:
|
|
57
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
58
|
+
get(property: string): any;
|
|
59
59
|
set(props: any, propval?: any): any;
|
|
60
|
-
getState(property:
|
|
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():
|
|
67
|
-
_applyProps(target:
|
|
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:
|
|
46
|
-
removed(parent:
|
|
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:
|
|
52
|
-
removeSelf(completely
|
|
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:
|
|
72
|
-
get(property:
|
|
71
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
72
|
+
get(property: string): any;
|
|
73
73
|
set(props: any, propval?: any): any;
|
|
74
|
-
getState(property:
|
|
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():
|
|
81
|
-
_applyProps(target:
|
|
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:
|
|
30
|
-
removed(parent:
|
|
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:
|
|
36
|
-
removeSelf(completely
|
|
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:
|
|
55
|
-
get(property:
|
|
54
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
55
|
+
get(property: string): any;
|
|
56
56
|
set(props: any, propval?: any): any;
|
|
57
|
-
getState(property:
|
|
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():
|
|
64
|
-
_applyProps(target:
|
|
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;
|