angular-three 4.0.0-next.9 → 4.0.0-next.90
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/README.md +38 -183
- package/dom/lib/canvas.d.ts +6 -4
- package/dom/lib/renderer.d.ts +2 -1
- package/fesm2022/angular-three-dom.mjs +21 -12
- package/fesm2022/angular-three-dom.mjs.map +1 -1
- package/fesm2022/angular-three-testing.mjs +3 -3
- package/fesm2022/angular-three.mjs +275 -194
- package/fesm2022/angular-three.mjs.map +1 -1
- package/lib/directives/common.d.ts +1 -1
- package/lib/directives/selection.d.ts +5 -4
- package/lib/html.d.ts +1 -1
- package/lib/portal.d.ts +4 -4
- package/lib/renderer/renderer.d.ts +9 -3
- package/lib/three-types.d.ts +130 -418
- package/lib/types.d.ts +5 -1
- package/lib/utils/before-render.d.ts +10 -21
- package/lib/utils/is.d.ts +1 -0
- package/lib/utils/make.d.ts +2 -1
- package/metadata.json +37469 -0
- package/package.json +3 -26
- package/testing/lib/utils/web-gl-rendering-context.d.ts +1 -1
- package/web-types.json +37475 -0
- package/plugin/README.md +0 -11
- package/plugin/generators.json +0 -27
- package/plugin/src/generators/add-soba/compat.d.ts +0 -2
- package/plugin/src/generators/add-soba/compat.js +0 -6
- package/plugin/src/generators/add-soba/compat.js.map +0 -1
- package/plugin/src/generators/add-soba/generator.d.ts +0 -3
- package/plugin/src/generators/add-soba/generator.js +0 -77
- package/plugin/src/generators/add-soba/generator.js.map +0 -1
- package/plugin/src/generators/add-soba/schema.json +0 -4
- package/plugin/src/generators/init/compat.d.ts +0 -2
- package/plugin/src/generators/init/compat.js +0 -6
- package/plugin/src/generators/init/compat.js.map +0 -1
- package/plugin/src/generators/init/files/experience/experience.component.ts__tmpl__ +0 -28
- package/plugin/src/generators/init/generator.d.ts +0 -6
- package/plugin/src/generators/init/generator.js +0 -154
- package/plugin/src/generators/init/generator.js.map +0 -1
- package/plugin/src/generators/init/schema.json +0 -13
- package/plugin/src/generators/utils.d.ts +0 -2
- package/plugin/src/generators/utils.js +0 -35
- package/plugin/src/generators/utils.js.map +0 -1
- package/plugin/src/generators/version.d.ts +0 -17
- package/plugin/src/generators/version.js +0 -21
- package/plugin/src/generators/version.js.map +0 -1
- package/plugin/src/index.d.ts +0 -0
- package/plugin/src/index.js +0 -1
- package/plugin/src/index.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "angular-three",
|
|
3
|
-
"version": "4.0.0-next.
|
|
3
|
+
"version": "4.0.0-next.90",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -25,33 +25,10 @@
|
|
|
25
25
|
"@angular/common": ">=19.0.0 <20.0.0",
|
|
26
26
|
"@angular/core": ">=19.0.0 <20.0.0",
|
|
27
27
|
"ngxtension": ">=3.0.0",
|
|
28
|
-
"three": ">=0.156.0 <0.
|
|
28
|
+
"three": ">=0.156.0 <0.175.0"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"tslib": "^2.7.0"
|
|
32
|
-
"@nx/devkit": "^20.0.0",
|
|
33
|
-
"@phenomnomnominal/tsquery": "^6.0.0",
|
|
34
|
-
"nx": "^20.0.0"
|
|
35
|
-
},
|
|
36
|
-
"generators": "./plugin/generators.json",
|
|
37
|
-
"schematics": "./plugin/generators.json",
|
|
38
|
-
"nx-migrations": {
|
|
39
|
-
"migrations": "./plugin/migrations.json",
|
|
40
|
-
"packageGroup": [
|
|
41
|
-
"angular-three-soba",
|
|
42
|
-
"angular-three-postprocessing",
|
|
43
|
-
"angular-three-cannon",
|
|
44
|
-
"angular-three-rapier"
|
|
45
|
-
]
|
|
46
|
-
},
|
|
47
|
-
"ng-update": {
|
|
48
|
-
"migrations": "./plugin/migrations.json",
|
|
49
|
-
"packageGroup": [
|
|
50
|
-
"angular-three-soba",
|
|
51
|
-
"angular-three-postprocessing",
|
|
52
|
-
"angular-three-cannon",
|
|
53
|
-
"angular-three-rapier"
|
|
54
|
-
]
|
|
31
|
+
"tslib": "^2.7.0"
|
|
55
32
|
},
|
|
56
33
|
"web-types": [
|
|
57
34
|
"./web-types.json",
|
|
@@ -9,7 +9,7 @@ export declare class WebGL2RenderingContext {
|
|
|
9
9
|
private GL_VERSION;
|
|
10
10
|
private SCISSOR_BOX;
|
|
11
11
|
private VIEWPORT;
|
|
12
|
-
getParameter(paramId: number):
|
|
12
|
+
getParameter(paramId: number): string[] | number[] | undefined;
|
|
13
13
|
getExtension(ext: string): any;
|
|
14
14
|
getProgramInfoLog: () => string;
|
|
15
15
|
getShaderInfoLog: () => string;
|