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.
Files changed (48) hide show
  1. package/README.md +38 -183
  2. package/dom/lib/canvas.d.ts +6 -4
  3. package/dom/lib/renderer.d.ts +2 -1
  4. package/fesm2022/angular-three-dom.mjs +21 -12
  5. package/fesm2022/angular-three-dom.mjs.map +1 -1
  6. package/fesm2022/angular-three-testing.mjs +3 -3
  7. package/fesm2022/angular-three.mjs +275 -194
  8. package/fesm2022/angular-three.mjs.map +1 -1
  9. package/lib/directives/common.d.ts +1 -1
  10. package/lib/directives/selection.d.ts +5 -4
  11. package/lib/html.d.ts +1 -1
  12. package/lib/portal.d.ts +4 -4
  13. package/lib/renderer/renderer.d.ts +9 -3
  14. package/lib/three-types.d.ts +130 -418
  15. package/lib/types.d.ts +5 -1
  16. package/lib/utils/before-render.d.ts +10 -21
  17. package/lib/utils/is.d.ts +1 -0
  18. package/lib/utils/make.d.ts +2 -1
  19. package/metadata.json +37469 -0
  20. package/package.json +3 -26
  21. package/testing/lib/utils/web-gl-rendering-context.d.ts +1 -1
  22. package/web-types.json +37475 -0
  23. package/plugin/README.md +0 -11
  24. package/plugin/generators.json +0 -27
  25. package/plugin/src/generators/add-soba/compat.d.ts +0 -2
  26. package/plugin/src/generators/add-soba/compat.js +0 -6
  27. package/plugin/src/generators/add-soba/compat.js.map +0 -1
  28. package/plugin/src/generators/add-soba/generator.d.ts +0 -3
  29. package/plugin/src/generators/add-soba/generator.js +0 -77
  30. package/plugin/src/generators/add-soba/generator.js.map +0 -1
  31. package/plugin/src/generators/add-soba/schema.json +0 -4
  32. package/plugin/src/generators/init/compat.d.ts +0 -2
  33. package/plugin/src/generators/init/compat.js +0 -6
  34. package/plugin/src/generators/init/compat.js.map +0 -1
  35. package/plugin/src/generators/init/files/experience/experience.component.ts__tmpl__ +0 -28
  36. package/plugin/src/generators/init/generator.d.ts +0 -6
  37. package/plugin/src/generators/init/generator.js +0 -154
  38. package/plugin/src/generators/init/generator.js.map +0 -1
  39. package/plugin/src/generators/init/schema.json +0 -13
  40. package/plugin/src/generators/utils.d.ts +0 -2
  41. package/plugin/src/generators/utils.js +0 -35
  42. package/plugin/src/generators/utils.js.map +0 -1
  43. package/plugin/src/generators/version.d.ts +0 -17
  44. package/plugin/src/generators/version.js +0 -21
  45. package/plugin/src/generators/version.js.map +0 -1
  46. package/plugin/src/index.d.ts +0 -0
  47. package/plugin/src/index.js +0 -1
  48. 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.9",
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.174.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): number[] | string[] | undefined;
12
+ getParameter(paramId: number): string[] | number[] | undefined;
13
13
  getExtension(ext: string): any;
14
14
  getProgramInfoLog: () => string;
15
15
  getShaderInfoLog: () => string;