angular-three 2.0.0-beta.38 → 2.0.0-beta.39
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/lib/loop.d.ts +5 -1
- package/lib/renderer/catalogue.d.ts +5 -1
- package/lib/store.d.ts +5 -1
- package/package.json +11 -11
- package/plugin/package.json +11 -11
package/lib/loop.d.ts
CHANGED
|
@@ -48,6 +48,8 @@ export declare const injectNgtLoop: {
|
|
|
48
48
|
};
|
|
49
49
|
(injectOptions: import("@angular/core").InjectOptions & {
|
|
50
50
|
optional?: false | undefined;
|
|
51
|
+
} & {
|
|
52
|
+
injector?: import("@angular/core").Injector | undefined;
|
|
51
53
|
}): {
|
|
52
54
|
loop: (timestamp: number) => void;
|
|
53
55
|
/**
|
|
@@ -61,7 +63,9 @@ export declare const injectNgtLoop: {
|
|
|
61
63
|
*/
|
|
62
64
|
advance: (timestamp: number, runGlobalEffects?: boolean, store?: NgtSignalStore<NgtState>, frame?: XRFrame) => void;
|
|
63
65
|
};
|
|
64
|
-
(injectOptions: import("@angular/core").InjectOptions
|
|
66
|
+
(injectOptions: import("@angular/core").InjectOptions & {
|
|
67
|
+
injector?: import("@angular/core").Injector | undefined;
|
|
68
|
+
}): {
|
|
65
69
|
loop: (timestamp: number) => void;
|
|
66
70
|
/**
|
|
67
71
|
* Invalidates the view, requesting a frame to be rendered. Will globally invalidate unless passed a root's state.
|
|
@@ -4,6 +4,10 @@ export declare const injectNgtCatalogue: {
|
|
|
4
4
|
(): Record<string, NgtAnyConstructor>;
|
|
5
5
|
(injectOptions: import("@angular/core").InjectOptions & {
|
|
6
6
|
optional?: false | undefined;
|
|
7
|
+
} & {
|
|
8
|
+
injector?: import("@angular/core").Injector | undefined;
|
|
7
9
|
}): Record<string, NgtAnyConstructor>;
|
|
8
|
-
(injectOptions: import("@angular/core").InjectOptions
|
|
10
|
+
(injectOptions: import("@angular/core").InjectOptions & {
|
|
11
|
+
injector?: import("@angular/core").Injector | undefined;
|
|
12
|
+
}): Record<string, NgtAnyConstructor> | null;
|
|
9
13
|
};
|
package/lib/store.d.ts
CHANGED
|
@@ -137,7 +137,11 @@ export declare const injectNgtStore: {
|
|
|
137
137
|
(): NgtSignalStore<NgtState>;
|
|
138
138
|
(injectOptions: import("@angular/core").InjectOptions & {
|
|
139
139
|
optional?: false | undefined;
|
|
140
|
+
} & {
|
|
141
|
+
injector?: Injector | undefined;
|
|
140
142
|
}): NgtSignalStore<NgtState>;
|
|
141
|
-
(injectOptions: import("@angular/core").InjectOptions
|
|
143
|
+
(injectOptions: import("@angular/core").InjectOptions & {
|
|
144
|
+
injector?: Injector | undefined;
|
|
145
|
+
}): NgtSignalStore<NgtState> | null;
|
|
142
146
|
}, provideNgtStore: (value?: NgtSignalStore<NgtState> | undefined) => import("@angular/core").Provider;
|
|
143
147
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "angular-three",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.39",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -39,19 +39,19 @@
|
|
|
39
39
|
"schematics": "./plugin/generators.json",
|
|
40
40
|
"nx-migrations": {
|
|
41
41
|
"migrations": "./plugin/migrations.json",
|
|
42
|
-
"packageGroup":
|
|
43
|
-
"angular-three-soba"
|
|
44
|
-
"angular-three-postprocessing"
|
|
45
|
-
"angular-three-cannon"
|
|
46
|
-
|
|
42
|
+
"packageGroup": [
|
|
43
|
+
"angular-three-soba",
|
|
44
|
+
"angular-three-postprocessing",
|
|
45
|
+
"angular-three-cannon"
|
|
46
|
+
]
|
|
47
47
|
},
|
|
48
48
|
"ng-update": {
|
|
49
49
|
"migrations": "./plugin/migrations.json",
|
|
50
|
-
"packageGroup":
|
|
51
|
-
"angular-three-soba"
|
|
52
|
-
"angular-three-postprocessing"
|
|
53
|
-
"angular-three-cannon"
|
|
54
|
-
|
|
50
|
+
"packageGroup": [
|
|
51
|
+
"angular-three-soba",
|
|
52
|
+
"angular-three-postprocessing",
|
|
53
|
+
"angular-three-cannon"
|
|
54
|
+
]
|
|
55
55
|
},
|
|
56
56
|
"web-types": "./web-types.json",
|
|
57
57
|
"module": "fesm2022/angular-three.mjs",
|
package/plugin/package.json
CHANGED
|
@@ -3,23 +3,23 @@
|
|
|
3
3
|
"generators": "./generators.json",
|
|
4
4
|
"nx-migrations": {
|
|
5
5
|
"migrations": "./migrations.json",
|
|
6
|
-
"packageGroup":
|
|
7
|
-
"angular-three-soba"
|
|
8
|
-
"angular-three-postprocessing"
|
|
9
|
-
"angular-three-cannon"
|
|
10
|
-
|
|
6
|
+
"packageGroup": [
|
|
7
|
+
"angular-three-soba",
|
|
8
|
+
"angular-three-postprocessing",
|
|
9
|
+
"angular-three-cannon"
|
|
10
|
+
]
|
|
11
11
|
},
|
|
12
12
|
"ng-update": {
|
|
13
13
|
"migrations": "./migrations.json",
|
|
14
|
-
"packageGroup":
|
|
15
|
-
"angular-three-soba"
|
|
16
|
-
"angular-three-postprocessing"
|
|
17
|
-
"angular-three-cannon"
|
|
18
|
-
|
|
14
|
+
"packageGroup": [
|
|
15
|
+
"angular-three-soba",
|
|
16
|
+
"angular-three-postprocessing",
|
|
17
|
+
"angular-three-cannon"
|
|
18
|
+
]
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@nx/devkit": "16.8.1"
|
|
22
22
|
},
|
|
23
23
|
"main": "./src/index.js",
|
|
24
|
-
"version": "2.0.0-beta.
|
|
24
|
+
"version": "2.0.0-beta.39"
|
|
25
25
|
}
|