angular-three 2.0.0-beta.241 → 2.0.0-beta.243
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 -2
- package/esm2022/lib/canvas.mjs +25 -31
- package/esm2022/lib/directives/args.mjs +52 -14
- package/esm2022/lib/instance.mjs +10 -9
- package/esm2022/lib/loop.mjs +2 -2
- package/esm2022/lib/portal.mjs +119 -111
- package/esm2022/lib/renderer/catalogue.mjs +2 -2
- package/esm2022/lib/renderer/constants.mjs +3 -5
- package/esm2022/lib/renderer/index.mjs +276 -194
- package/esm2022/lib/renderer/state.mjs +49 -0
- package/esm2022/lib/renderer/utils.mjs +40 -24
- package/esm2022/lib/roots.mjs +25 -25
- package/esm2022/lib/routed-scene.mjs +3 -3
- package/esm2022/lib/store.mjs +14 -12
- package/esm2022/lib/three-types.mjs +1 -1
- package/esm2022/lib/utils/apply-props.mjs +3 -3
- package/esm2022/lib/utils/before-render.mjs +4 -3
- package/esm2022/lib/utils/parameters.mjs +27 -26
- package/esm2022/lib/utils/resolve-ref.mjs +8 -0
- package/esm2022/lib/utils/signal-store.mjs +3 -14
- package/fesm2022/angular-three.mjs +722 -1091
- package/fesm2022/angular-three.mjs.map +1 -1
- package/index.d.ts +2 -2
- package/lib/canvas.d.ts +278 -1001
- package/lib/directives/args.d.ts +11 -4
- package/lib/instance.d.ts +8 -13
- package/lib/loop.d.ts +1 -1
- package/lib/portal.d.ts +41 -31
- package/lib/renderer/catalogue.d.ts +1 -1
- package/lib/renderer/constants.d.ts +2 -4
- package/lib/renderer/index.d.ts +15 -5
- package/lib/renderer/state.d.ts +23 -0
- package/lib/renderer/utils.d.ts +5 -22
- package/lib/roots.d.ts +5 -0
- package/lib/store.d.ts +12 -12
- package/lib/three-types.d.ts +8 -5
- package/lib/utils/parameters.d.ts +4 -9
- package/lib/utils/resolve-ref.d.ts +2 -0
- package/lib/utils/signal-store.d.ts +1 -5
- package/metadata.json +1 -1
- package/package.json +71 -72
- package/web-types.json +1 -1
- package/esm2022/lib/directives/common.mjs +0 -65
- package/esm2022/lib/directives/parent.mjs +0 -20
- package/esm2022/lib/ref.mjs +0 -50
- package/esm2022/lib/renderer/store.mjs +0 -439
- package/lib/directives/common.d.ts +0 -31
- package/lib/directives/parent.d.ts +0 -11
- package/lib/ref.d.ts +0 -7
- package/lib/renderer/store.d.ts +0 -65
package/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export * from './lib/canvas';
|
|
2
2
|
export * from './lib/directives/args';
|
|
3
|
+
export { NgtCamera, NgtComputeFunction, NgtThreeEvent } from './lib/events';
|
|
3
4
|
export * from './lib/instance';
|
|
4
5
|
export * from './lib/loader';
|
|
5
6
|
export { addAfterEffect, addEffect, addTail } from './lib/loop';
|
|
6
7
|
export { NgtPortal, NgtPortalContent } from './lib/portal';
|
|
7
|
-
export * from './lib/ref';
|
|
8
8
|
export * from './lib/renderer';
|
|
9
9
|
export * from './lib/routed-scene';
|
|
10
10
|
export * from './lib/store';
|
|
@@ -15,8 +15,8 @@ export * from './lib/utils/create-api-token';
|
|
|
15
15
|
export * from './lib/utils/is';
|
|
16
16
|
export * from './lib/utils/make';
|
|
17
17
|
export * from './lib/utils/parameters';
|
|
18
|
+
export * from './lib/utils/resolve-ref';
|
|
18
19
|
export * from './lib/utils/signal-store';
|
|
19
20
|
export * from './lib/utils/update';
|
|
20
|
-
export type { NgtCamera, NgtThreeEvent } from './lib/events';
|
|
21
21
|
export type * from './lib/three-types';
|
|
22
22
|
export type * from './lib/types';
|