angular-three 2.0.0-beta.17 → 2.0.0-beta.18
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/esm2022/index.mjs +2 -1
- package/esm2022/lib/before-render.mjs +2 -2
- package/esm2022/lib/canvas.mjs +7 -6
- package/esm2022/lib/directives/args.mjs +3 -3
- package/esm2022/lib/directives/common.mjs +3 -3
- package/esm2022/lib/directives/key.mjs +3 -3
- package/esm2022/lib/directives/parent.mjs +3 -3
- package/esm2022/lib/directives/repeat.mjs +3 -3
- package/esm2022/lib/instance.mjs +2 -2
- package/esm2022/lib/loader.mjs +2 -2
- package/esm2022/lib/portal.mjs +10 -10
- package/esm2022/lib/renderer/index.mjs +65 -65
- package/esm2022/lib/renderer/store.mjs +91 -91
- package/esm2022/lib/renderer/utils.mjs +36 -4
- package/esm2022/lib/routed-scene.mjs +9 -5
- package/esm2022/lib/three-types.mjs +2 -2
- package/esm2022/lib/utils/create-injection-token.mjs +2 -2
- package/fesm2022/angular-three.mjs +222 -186
- package/fesm2022/angular-three.mjs.map +1 -1
- package/lib/portal.d.ts +1 -1
- package/package.json +2 -2
- package/plugin/package.json +1 -1
package/lib/portal.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EventEmitter, TemplateRef, ViewContainerRef, type ElementRef, type OnInit } from '@angular/core';
|
|
2
2
|
import * as THREE from 'three';
|
|
3
3
|
import type { NgtEventManager } from './events';
|
|
4
|
-
import { NgtRenderState, type NgtSize, type NgtState } from './store';
|
|
4
|
+
import { type NgtRenderState, type NgtSize, type NgtState } from './store';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
declare const privateKeys: readonly ["get", "set", "select", "setSize", "setDpr", "setFrameloop", "events", "invalidate", "advance", "size", "viewport"];
|
|
7
7
|
type PrivateKeys = (typeof privateKeys)[number];
|
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.18",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@angular/common": "^16.0.0",
|
|
25
25
|
"@angular/core": "^16.0.0",
|
|
26
26
|
"three": ">=0.148.0",
|
|
27
|
-
"@angular/router": "16.2.
|
|
27
|
+
"@angular/router": "16.2.2",
|
|
28
28
|
"rxjs": "7.8.1"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
package/plugin/package.json
CHANGED