angular-three 2.0.0-beta.273 → 2.0.0-beta.275
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 +5 -5
- package/esm2022/lib/canvas.mjs +2 -1
- package/esm2022/lib/dom/events.mjs +1 -1
- package/esm2022/lib/events.mjs +1 -1
- package/esm2022/lib/instance.mjs +1 -1
- package/esm2022/lib/loop.mjs +2 -2
- package/esm2022/lib/portal.mjs +1 -1
- package/esm2022/lib/renderer/index.mjs +1 -1
- package/esm2022/lib/renderer/utils.mjs +1 -1
- package/esm2022/lib/roots.mjs +2 -3
- package/esm2022/lib/store.mjs +1 -1
- package/esm2022/lib/three-types.mjs +1 -1
- package/esm2022/lib/types.mjs +1 -1
- package/esm2022/lib/utils/apply-props.mjs +1 -1
- package/esm2022/lib/utils/attach.mjs +1 -1
- package/esm2022/lib/utils/before-render.mjs +1 -1
- package/esm2022/lib/utils/is.mjs +1 -1
- package/esm2022/lib/utils/make.mjs +1 -1
- package/esm2022/lib/utils/object-events.mjs +1 -1
- package/esm2022/lib/utils/update.mjs +1 -1
- package/esm2022/testing/lib/test-bed.mjs +12 -6
- package/fesm2022/angular-three-testing.mjs +10 -4
- package/fesm2022/angular-three-testing.mjs.map +1 -1
- package/fesm2022/angular-three.mjs +528 -527
- package/fesm2022/angular-three.mjs.map +1 -1
- package/index.d.ts +4 -5
- package/lib/canvas.d.ts +199 -256
- package/lib/dom/events.d.ts +1 -2
- package/lib/events.d.ts +2 -78
- package/lib/html.d.ts +1 -1
- package/lib/instance.d.ts +1 -38
- package/lib/loop.d.ts +2 -2
- package/lib/portal.d.ts +3 -4
- package/lib/renderer/index.d.ts +1 -2
- package/lib/renderer/utils.d.ts +1 -1
- package/lib/roots.d.ts +1 -5
- package/lib/store.d.ts +2 -127
- package/lib/three-types.d.ts +1 -3
- package/lib/types.d.ts +290 -0
- package/lib/utils/apply-props.d.ts +1 -2
- package/lib/utils/attach.d.ts +1 -3
- package/lib/utils/before-render.d.ts +1 -1
- package/lib/utils/is.d.ts +1 -3
- package/lib/utils/make.d.ts +2 -5
- package/lib/utils/object-events.d.ts +1 -1
- package/lib/utils/update.d.ts +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
export * from './lib/canvas';
|
|
2
2
|
export * from './lib/directives/args';
|
|
3
|
-
export { NgtCamera, NgtComputeFunction, NgtDomEvent, NgtEventHandlers, NgtThreeEvent } from './lib/events';
|
|
4
3
|
export * from './lib/html';
|
|
5
4
|
export * from './lib/instance';
|
|
6
5
|
export * from './lib/loader';
|
|
7
|
-
export
|
|
8
|
-
export
|
|
6
|
+
export * from './lib/loop';
|
|
7
|
+
export * from './lib/portal';
|
|
9
8
|
export * from './lib/renderer';
|
|
10
|
-
export
|
|
9
|
+
export * from './lib/roots';
|
|
11
10
|
export * from './lib/routed-scene';
|
|
12
11
|
export * from './lib/store';
|
|
13
12
|
export * from './lib/utils/apply-props';
|
|
14
|
-
export
|
|
13
|
+
export * from './lib/utils/attach';
|
|
15
14
|
export * from './lib/utils/before-render';
|
|
16
15
|
export * from './lib/utils/is';
|
|
17
16
|
export * from './lib/utils/make';
|