@operato/scene-indoor-map 10.0.0-beta.65 → 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/beacon.d.ts +12 -10
- package/dist/camera.d.ts +12 -10
- package/dist/rack.d.ts +12 -10
- package/package.json +4 -9
package/dist/beacon.d.ts
CHANGED
|
@@ -37,19 +37,21 @@ declare const Beacon_base: (new (...args: any[]) => {
|
|
|
37
37
|
fontSize: any;
|
|
38
38
|
__cache__: any;
|
|
39
39
|
created(): void;
|
|
40
|
-
added(parent:
|
|
41
|
-
removed(parent:
|
|
40
|
+
added(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
41
|
+
removed(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
42
42
|
ready(): Promise<void>;
|
|
43
|
+
_readyInvoked: boolean;
|
|
44
|
+
invokeReady(): void | Promise<void>;
|
|
43
45
|
touch(): void;
|
|
44
|
-
clearCache(...attrs:
|
|
45
|
-
removeSelf(completely
|
|
46
|
+
clearCache(...attrs: string[]): void;
|
|
47
|
+
removeSelf(completely?: boolean): void;
|
|
46
48
|
resetAnimation(): void;
|
|
47
49
|
dispose(): void;
|
|
48
50
|
get nature(): import("@hatiolab/things-scene").ComponentNature;
|
|
49
51
|
get disposed(): boolean;
|
|
50
52
|
isLayer(): boolean;
|
|
51
53
|
isGroup(): boolean;
|
|
52
|
-
isContainer(): this is import("@hatiolab/things-scene").Container;
|
|
54
|
+
isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component.js").Container;
|
|
53
55
|
isLine(): boolean;
|
|
54
56
|
isRoot(): boolean;
|
|
55
57
|
isRootModel(): boolean;
|
|
@@ -61,17 +63,17 @@ declare const Beacon_base: (new (...args: any[]) => {
|
|
|
61
63
|
isConnectable(): boolean;
|
|
62
64
|
isIdentifiable(): boolean;
|
|
63
65
|
isPositionable(): boolean;
|
|
64
|
-
replaceRefids(replaceMap:
|
|
65
|
-
get(property:
|
|
66
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
67
|
+
get(property: string): any;
|
|
66
68
|
set(props: any, propval?: any): any;
|
|
67
|
-
getState(property:
|
|
69
|
+
getState(property: string): any;
|
|
68
70
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
69
71
|
get model(): any;
|
|
70
72
|
get state(): import("@hatiolab/things-scene").State;
|
|
71
73
|
get refid(): any;
|
|
72
74
|
get hierarchy(): any;
|
|
73
|
-
get volatile():
|
|
74
|
-
_applyProps(target:
|
|
75
|
+
get volatile(): string[];
|
|
76
|
+
_applyProps(target: Record<string, any>, props: Record<string, any>, options: import("@hatiolab/things-scene/dist-types/components/component.js").ApplyPropsOptions): any;
|
|
75
77
|
move(offset: {
|
|
76
78
|
x: number;
|
|
77
79
|
y: number;
|
package/dist/camera.d.ts
CHANGED
|
@@ -37,19 +37,21 @@ declare const Camera_base: (new (...args: any[]) => {
|
|
|
37
37
|
fontSize: any;
|
|
38
38
|
__cache__: any;
|
|
39
39
|
created(): void;
|
|
40
|
-
added(parent:
|
|
41
|
-
removed(parent:
|
|
40
|
+
added(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
41
|
+
removed(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
42
42
|
ready(): Promise<void>;
|
|
43
|
+
_readyInvoked: boolean;
|
|
44
|
+
invokeReady(): void | Promise<void>;
|
|
43
45
|
touch(): void;
|
|
44
|
-
clearCache(...attrs:
|
|
45
|
-
removeSelf(completely
|
|
46
|
+
clearCache(...attrs: string[]): void;
|
|
47
|
+
removeSelf(completely?: boolean): void;
|
|
46
48
|
resetAnimation(): void;
|
|
47
49
|
dispose(): void;
|
|
48
50
|
get nature(): import("@hatiolab/things-scene").ComponentNature;
|
|
49
51
|
get disposed(): boolean;
|
|
50
52
|
isLayer(): boolean;
|
|
51
53
|
isGroup(): boolean;
|
|
52
|
-
isContainer(): this is import("@hatiolab/things-scene").Container;
|
|
54
|
+
isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component.js").Container;
|
|
53
55
|
isLine(): boolean;
|
|
54
56
|
isRoot(): boolean;
|
|
55
57
|
isRootModel(): boolean;
|
|
@@ -61,17 +63,17 @@ declare const Camera_base: (new (...args: any[]) => {
|
|
|
61
63
|
isConnectable(): boolean;
|
|
62
64
|
isIdentifiable(): boolean;
|
|
63
65
|
isPositionable(): boolean;
|
|
64
|
-
replaceRefids(replaceMap:
|
|
65
|
-
get(property:
|
|
66
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
67
|
+
get(property: string): any;
|
|
66
68
|
set(props: any, propval?: any): any;
|
|
67
|
-
getState(property:
|
|
69
|
+
getState(property: string): any;
|
|
68
70
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
69
71
|
get model(): any;
|
|
70
72
|
get state(): import("@hatiolab/things-scene").State;
|
|
71
73
|
get refid(): any;
|
|
72
74
|
get hierarchy(): any;
|
|
73
|
-
get volatile():
|
|
74
|
-
_applyProps(target:
|
|
75
|
+
get volatile(): string[];
|
|
76
|
+
_applyProps(target: Record<string, any>, props: Record<string, any>, options: import("@hatiolab/things-scene/dist-types/components/component.js").ApplyPropsOptions): any;
|
|
75
77
|
move(offset: {
|
|
76
78
|
x: number;
|
|
77
79
|
y: number;
|
package/dist/rack.d.ts
CHANGED
|
@@ -37,19 +37,21 @@ declare const Rack_base: (new (...args: any[]) => {
|
|
|
37
37
|
fontSize: any;
|
|
38
38
|
__cache__: any;
|
|
39
39
|
created(): void;
|
|
40
|
-
added(parent:
|
|
41
|
-
removed(parent:
|
|
40
|
+
added(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
41
|
+
removed(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
42
42
|
ready(): Promise<void>;
|
|
43
|
+
_readyInvoked: boolean;
|
|
44
|
+
invokeReady(): void | Promise<void>;
|
|
43
45
|
touch(): void;
|
|
44
|
-
clearCache(...attrs:
|
|
45
|
-
removeSelf(completely
|
|
46
|
+
clearCache(...attrs: string[]): void;
|
|
47
|
+
removeSelf(completely?: boolean): void;
|
|
46
48
|
resetAnimation(): void;
|
|
47
49
|
dispose(): void;
|
|
48
50
|
get nature(): import("@hatiolab/things-scene").ComponentNature;
|
|
49
51
|
get disposed(): boolean;
|
|
50
52
|
isLayer(): boolean;
|
|
51
53
|
isGroup(): boolean;
|
|
52
|
-
isContainer(): this is import("@hatiolab/things-scene").Container;
|
|
54
|
+
isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component.js").Container;
|
|
53
55
|
isLine(): boolean;
|
|
54
56
|
isRoot(): boolean;
|
|
55
57
|
isRootModel(): boolean;
|
|
@@ -61,17 +63,17 @@ declare const Rack_base: (new (...args: any[]) => {
|
|
|
61
63
|
isConnectable(): boolean;
|
|
62
64
|
isIdentifiable(): boolean;
|
|
63
65
|
isPositionable(): boolean;
|
|
64
|
-
replaceRefids(replaceMap:
|
|
65
|
-
get(property:
|
|
66
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
67
|
+
get(property: string): any;
|
|
66
68
|
set(props: any, propval?: any): any;
|
|
67
|
-
getState(property:
|
|
69
|
+
getState(property: string): any;
|
|
68
70
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
69
71
|
get model(): any;
|
|
70
72
|
get state(): import("@hatiolab/things-scene").State;
|
|
71
73
|
get refid(): any;
|
|
72
74
|
get hierarchy(): any;
|
|
73
|
-
get volatile():
|
|
74
|
-
_applyProps(target:
|
|
75
|
+
get volatile(): string[];
|
|
76
|
+
_applyProps(target: Record<string, any>, props: Record<string, any>, options: import("@hatiolab/things-scene/dist-types/components/component.js").ApplyPropsOptions): any;
|
|
75
77
|
move(offset: {
|
|
76
78
|
x: number;
|
|
77
79
|
y: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/scene-indoor-map",
|
|
3
|
-
"version": "10.0.0
|
|
3
|
+
"version": "10.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Indoor Map component for things-scene.",
|
|
6
6
|
"author": "heartyoh",
|
|
@@ -18,22 +18,17 @@
|
|
|
18
18
|
"directory": "packages/indoor-map"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
|
-
"serve": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"things-factory-dev\"",
|
|
22
|
-
"serve:dev": "npm run serve",
|
|
23
21
|
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
|
|
24
22
|
"build": "tsc",
|
|
25
23
|
"prepublishOnly": "tsc",
|
|
26
24
|
"lint": "eslint src/ && prettier \"src/**/*.ts\" --check",
|
|
27
|
-
"format": "eslint src/ --fix && prettier \"src/**/*.ts\" --write"
|
|
28
|
-
"migration": "things-factory-migration"
|
|
25
|
+
"format": "eslint src/ --fix && prettier \"src/**/*.ts\" --write"
|
|
29
26
|
},
|
|
30
27
|
"dependencies": {
|
|
31
|
-
"@hatiolab/things-scene": "^10.0.0
|
|
28
|
+
"@hatiolab/things-scene": "^10.0.0"
|
|
32
29
|
},
|
|
33
30
|
"devDependencies": {
|
|
34
31
|
"@hatiolab/prettier-config": "^1.0.0",
|
|
35
|
-
"@things-factory/builder": "^10.0.0-zeta.1",
|
|
36
|
-
"@things-factory/operato-board": "^10.0.0-zeta.1",
|
|
37
32
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
38
33
|
"@typescript-eslint/parser": "^8.0.0",
|
|
39
34
|
"@web/dev-server": "^0.1.28",
|
|
@@ -58,5 +53,5 @@
|
|
|
58
53
|
"prettier --write"
|
|
59
54
|
]
|
|
60
55
|
},
|
|
61
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "22356adaad4df093f25fa74316c1e0c6effbef8e"
|
|
62
57
|
}
|