@operato/scene-firebase 10.0.0-beta.68 → 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/firebase.d.ts +20 -20
- package/package.json +3 -3
package/dist/firebase.d.ts
CHANGED
|
@@ -23,21 +23,21 @@ declare const Firebase_base: (new (...args: any[]) => {
|
|
|
23
23
|
fontSize: any;
|
|
24
24
|
__cache__: any;
|
|
25
25
|
created(): void;
|
|
26
|
-
added(parent:
|
|
27
|
-
removed(parent:
|
|
26
|
+
added(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
27
|
+
removed(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
28
28
|
ready(): Promise<void>;
|
|
29
29
|
_readyInvoked: boolean;
|
|
30
30
|
invokeReady(): void | Promise<void>;
|
|
31
31
|
touch(): void;
|
|
32
|
-
clearCache(...attrs:
|
|
33
|
-
removeSelf(completely
|
|
32
|
+
clearCache(...attrs: string[]): void;
|
|
33
|
+
removeSelf(completely?: boolean): void;
|
|
34
34
|
resetAnimation(): void;
|
|
35
35
|
dispose(): void;
|
|
36
36
|
get nature(): import("@hatiolab/things-scene").ComponentNature;
|
|
37
37
|
get disposed(): boolean;
|
|
38
38
|
isLayer(): boolean;
|
|
39
39
|
isGroup(): boolean;
|
|
40
|
-
isContainer(): this is import("@hatiolab/things-scene").Container;
|
|
40
|
+
isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component.js").Container;
|
|
41
41
|
isLine(): boolean;
|
|
42
42
|
isRoot(): boolean;
|
|
43
43
|
isRootModel(): boolean;
|
|
@@ -49,17 +49,17 @@ declare const Firebase_base: (new (...args: any[]) => {
|
|
|
49
49
|
isConnectable(): boolean;
|
|
50
50
|
isIdentifiable(): boolean;
|
|
51
51
|
isPositionable(): boolean;
|
|
52
|
-
replaceRefids(replaceMap:
|
|
53
|
-
get(property:
|
|
52
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
53
|
+
get(property: string): any;
|
|
54
54
|
set(props: any, propval?: any): any;
|
|
55
|
-
getState(property:
|
|
55
|
+
getState(property: string): any;
|
|
56
56
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
57
57
|
get model(): any;
|
|
58
58
|
get state(): import("@hatiolab/things-scene").State;
|
|
59
59
|
get refid(): any;
|
|
60
60
|
get hierarchy(): any;
|
|
61
|
-
get volatile():
|
|
62
|
-
_applyProps(target:
|
|
61
|
+
get volatile(): string[];
|
|
62
|
+
_applyProps(target: Record<string, any>, props: Record<string, any>, options: import("@hatiolab/things-scene/dist-types/components/component.js").ApplyPropsOptions): any;
|
|
63
63
|
contains(x: number, y: number): boolean;
|
|
64
64
|
move(offset: {
|
|
65
65
|
x: number;
|
|
@@ -273,21 +273,21 @@ declare const Firebase_base: (new (...args: any[]) => {
|
|
|
273
273
|
fontSize: any;
|
|
274
274
|
__cache__: any;
|
|
275
275
|
created(): void;
|
|
276
|
-
added(parent:
|
|
277
|
-
removed(parent:
|
|
276
|
+
added(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
277
|
+
removed(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
278
278
|
ready(): Promise<void>;
|
|
279
279
|
_readyInvoked: boolean;
|
|
280
280
|
invokeReady(): void | Promise<void>;
|
|
281
281
|
touch(): void;
|
|
282
|
-
clearCache(...attrs:
|
|
283
|
-
removeSelf(completely
|
|
282
|
+
clearCache(...attrs: string[]): void;
|
|
283
|
+
removeSelf(completely?: boolean): void;
|
|
284
284
|
resetAnimation(): void;
|
|
285
285
|
dispose(): void;
|
|
286
286
|
get nature(): import("@hatiolab/things-scene").ComponentNature;
|
|
287
287
|
get disposed(): boolean;
|
|
288
288
|
isLayer(): boolean;
|
|
289
289
|
isGroup(): boolean;
|
|
290
|
-
isContainer(): this is import("@hatiolab/things-scene").Container;
|
|
290
|
+
isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component.js").Container;
|
|
291
291
|
isLine(): boolean;
|
|
292
292
|
isRoot(): boolean;
|
|
293
293
|
isRootModel(): boolean;
|
|
@@ -299,17 +299,17 @@ declare const Firebase_base: (new (...args: any[]) => {
|
|
|
299
299
|
isConnectable(): boolean;
|
|
300
300
|
isIdentifiable(): boolean;
|
|
301
301
|
isPositionable(): boolean;
|
|
302
|
-
replaceRefids(replaceMap:
|
|
303
|
-
get(property:
|
|
302
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
303
|
+
get(property: string): any;
|
|
304
304
|
set(props: any, propval?: any): any;
|
|
305
|
-
getState(property:
|
|
305
|
+
getState(property: string): any;
|
|
306
306
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
307
307
|
get model(): any;
|
|
308
308
|
get state(): import("@hatiolab/things-scene").State;
|
|
309
309
|
get refid(): any;
|
|
310
310
|
get hierarchy(): any;
|
|
311
|
-
get volatile():
|
|
312
|
-
_applyProps(target:
|
|
311
|
+
get volatile(): string[];
|
|
312
|
+
_applyProps(target: Record<string, any>, props: Record<string, any>, options: import("@hatiolab/things-scene/dist-types/components/component.js").ApplyPropsOptions): any;
|
|
313
313
|
move(offset: {
|
|
314
314
|
x: number;
|
|
315
315
|
y: number;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@operato/scene-firebase",
|
|
3
3
|
"description": "Firebase datasource component for things-scene.",
|
|
4
4
|
"author": "heartyoh",
|
|
5
|
-
"version": "10.0.0
|
|
5
|
+
"version": "10.0.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"module": "dist/index.js",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"format": "eslint src/ --fix && prettier \"src/**/*.ts\" --write"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@hatiolab/things-scene": "^10.0.0
|
|
28
|
+
"@hatiolab/things-scene": "^10.0.0",
|
|
29
29
|
"firebase": "^9.14.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"prettier --write"
|
|
55
55
|
]
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "22356adaad4df093f25fa74316c1e0c6effbef8e"
|
|
58
58
|
}
|