@operato/scene-manufacturing 10.0.0-beta.70 → 10.0.0
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/dist/tact-timer.d.ts +10 -10
- package/package.json +4 -4
package/dist/tact-timer.d.ts
CHANGED
|
@@ -58,21 +58,21 @@ declare const TactTimer_base: (new (...args: any[]) => {
|
|
|
58
58
|
fontSize: any;
|
|
59
59
|
__cache__: any;
|
|
60
60
|
created(): void;
|
|
61
|
-
added(parent:
|
|
62
|
-
removed(parent:
|
|
61
|
+
added(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
62
|
+
removed(parent: import("@hatiolab/things-scene/dist-types/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("@hatiolab/things-scene").ComponentNature;
|
|
72
72
|
get disposed(): boolean;
|
|
73
73
|
isLayer(): boolean;
|
|
74
74
|
isGroup(): boolean;
|
|
75
|
-
isContainer(): this is import("@hatiolab/things-scene").Container;
|
|
75
|
+
isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component.js").Container;
|
|
76
76
|
isLine(): boolean;
|
|
77
77
|
isRoot(): boolean;
|
|
78
78
|
isRootModel(): boolean;
|
|
@@ -84,17 +84,17 @@ declare const TactTimer_base: (new (...args: any[]) => {
|
|
|
84
84
|
isConnectable(): boolean;
|
|
85
85
|
isIdentifiable(): boolean;
|
|
86
86
|
isPositionable(): boolean;
|
|
87
|
-
replaceRefids(replaceMap:
|
|
88
|
-
get(property:
|
|
87
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
88
|
+
get(property: string): any;
|
|
89
89
|
set(props: any, propval?: any): any;
|
|
90
|
-
getState(property:
|
|
90
|
+
getState(property: string): any;
|
|
91
91
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
92
92
|
get model(): any;
|
|
93
93
|
get state(): import("@hatiolab/things-scene").State;
|
|
94
94
|
get refid(): any;
|
|
95
95
|
get hierarchy(): any;
|
|
96
|
-
get volatile():
|
|
97
|
-
_applyProps(target:
|
|
96
|
+
get volatile(): string[];
|
|
97
|
+
_applyProps(target: Record<string, any>, props: Record<string, any>, options: import("@hatiolab/things-scene/dist-types/components/component.js").ApplyPropsOptions): any;
|
|
98
98
|
move(offset: {
|
|
99
99
|
x: number;
|
|
100
100
|
y: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/scene-manufacturing",
|
|
3
3
|
"description": "Things scene components for manufacturing industry",
|
|
4
|
-
"version": "10.0.0
|
|
4
|
+
"version": "10.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"things-scene": true,
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"test": "mocha --require should --node-option import=tsx \"test/**/test-*.ts\""
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@hatiolab/things-scene": "^10.0.0
|
|
30
|
-
"@operato/scene-base": "^10.0.0
|
|
29
|
+
"@hatiolab/things-scene": "^10.0.0",
|
|
30
|
+
"@operato/scene-base": "^10.0.0",
|
|
31
31
|
"three": "^0.183.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"prettier --write"
|
|
62
62
|
]
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "22356adaad4df093f25fa74316c1e0c6effbef8e"
|
|
65
65
|
}
|