angular-three 3.1.0 → 3.2.0
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 +41 -43
- package/fesm2022/angular-three-testing.mjs +0 -1
- package/fesm2022/angular-three-testing.mjs.map +1 -1
- package/fesm2022/angular-three.mjs +21 -27
- package/fesm2022/angular-three.mjs.map +1 -1
- package/lib/canvas.d.ts +18 -18
- package/lib/portal.d.ts +1 -1
- package/package.json +1 -1
- package/plugin/src/generators/init/generator.js +2 -2
- package/plugin/src/generators/init/generator.js.map +1 -1
package/lib/canvas.d.ts
CHANGED
|
@@ -25,25 +25,23 @@ export declare class NgtCanvas {
|
|
|
25
25
|
raycaster: import("@angular/core").InputSignal<Partial<Raycaster> | undefined>;
|
|
26
26
|
scene: import("@angular/core").InputSignal<Scene | Partial<Scene> | undefined>;
|
|
27
27
|
camera: import("@angular/core").InputSignal<NonNullable<((import("angular-three").NgtCamera | Partial<{
|
|
28
|
-
|
|
29
|
-
add?: ((...object: import("three").Object3D[]) => import("three").Camera) | undefined;
|
|
30
|
-
remove?: ((...object: import("three").Object3D[]) => import("three").Camera) | undefined;
|
|
31
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
28
|
+
name?: string | undefined;
|
|
32
29
|
readonly type?: string | undefined;
|
|
33
|
-
viewport?: import("three").Vector4 | undefined;
|
|
34
30
|
addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three").Camera>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three").Camera, typeof import("three").Camera>, ev: import("angular-three").NgtNodeEventMap<import("three").Camera>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
35
31
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three").Camera>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three").Camera, typeof import("three").Camera>, ev: import("angular-three").NgtNodeEventMap<import("three").Camera>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
32
|
+
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
36
33
|
__ngt_args__: [];
|
|
37
34
|
readonly isCamera?: true | undefined;
|
|
38
35
|
matrixWorldInverse?: import("three").Matrix4 | undefined;
|
|
39
36
|
projectionMatrix?: import("three").Matrix4 | undefined;
|
|
40
37
|
projectionMatrixInverse?: import("three").Matrix4 | undefined;
|
|
41
38
|
coordinateSystem?: import("three").CoordinateSystem | undefined;
|
|
39
|
+
viewport?: import("three").Vector4 | undefined;
|
|
42
40
|
getWorldDirection?: ((target: Vector3) => Vector3) | undefined;
|
|
43
41
|
readonly isObject3D?: true | undefined;
|
|
44
42
|
readonly id?: number | undefined;
|
|
45
43
|
uuid?: string | undefined;
|
|
46
|
-
|
|
44
|
+
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
47
45
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
48
46
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
49
47
|
readonly normalMatrix?: import("three").Matrix3 | undefined;
|
|
@@ -85,6 +83,8 @@ export declare class NgtCanvas {
|
|
|
85
83
|
(vector: Vector3): void;
|
|
86
84
|
(x: number, y: number, z: number): void;
|
|
87
85
|
} | undefined;
|
|
86
|
+
add?: ((...object: import("three").Object3D[]) => import("three").Camera) | undefined;
|
|
87
|
+
remove?: ((...object: import("three").Object3D[]) => import("three").Camera) | undefined;
|
|
88
88
|
removeFromParent?: (() => import("three").Camera) | undefined;
|
|
89
89
|
clear?: (() => import("three").Camera) | undefined;
|
|
90
90
|
getObjectById?: ((id: number) => import("three").Object3D | undefined) | undefined;
|
|
@@ -115,25 +115,23 @@ export declare class NgtCanvas {
|
|
|
115
115
|
dispose: (() => void) | null;
|
|
116
116
|
raycast: import("three").Object3D["raycast"] | null;
|
|
117
117
|
} & {
|
|
118
|
-
|
|
119
|
-
add?: ((...object: import("three").Object3D[]) => import("three").PerspectiveCamera) | undefined;
|
|
120
|
-
remove?: ((...object: import("three").Object3D[]) => import("three").PerspectiveCamera) | undefined;
|
|
121
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
118
|
+
name?: string | undefined;
|
|
122
119
|
readonly type?: string | undefined;
|
|
123
|
-
viewport?: import("three").Vector4 | undefined;
|
|
124
120
|
addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three").PerspectiveCamera>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three").PerspectiveCamera, typeof import("three").PerspectiveCamera>, ev: import("angular-three").NgtNodeEventMap<import("three").PerspectiveCamera>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
125
121
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three").PerspectiveCamera>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three").PerspectiveCamera, typeof import("three").PerspectiveCamera>, ev: import("angular-three").NgtNodeEventMap<import("three").PerspectiveCamera>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
122
|
+
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
126
123
|
__ngt_args__: [fov?: number | undefined, aspect?: number | undefined, near?: number | undefined, far?: number | undefined];
|
|
127
124
|
readonly isCamera?: true | undefined;
|
|
128
125
|
matrixWorldInverse?: import("three").Matrix4 | undefined;
|
|
129
126
|
projectionMatrix?: import("three").Matrix4 | undefined;
|
|
130
127
|
projectionMatrixInverse?: import("three").Matrix4 | undefined;
|
|
131
128
|
coordinateSystem?: import("three").CoordinateSystem | undefined;
|
|
129
|
+
viewport?: import("three").Vector4 | undefined;
|
|
132
130
|
getWorldDirection?: ((target: Vector3) => Vector3) | undefined;
|
|
133
131
|
readonly isObject3D?: true | undefined;
|
|
134
132
|
readonly id?: number | undefined;
|
|
135
133
|
uuid?: string | undefined;
|
|
136
|
-
|
|
134
|
+
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
137
135
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
138
136
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
139
137
|
readonly normalMatrix?: import("three").Matrix3 | undefined;
|
|
@@ -175,6 +173,8 @@ export declare class NgtCanvas {
|
|
|
175
173
|
(vector: Vector3): void;
|
|
176
174
|
(x: number, y: number, z: number): void;
|
|
177
175
|
} | undefined;
|
|
176
|
+
add?: ((...object: import("three").Object3D[]) => import("three").PerspectiveCamera) | undefined;
|
|
177
|
+
remove?: ((...object: import("three").Object3D[]) => import("three").PerspectiveCamera) | undefined;
|
|
178
178
|
removeFromParent?: (() => import("three").PerspectiveCamera) | undefined;
|
|
179
179
|
clear?: (() => import("three").PerspectiveCamera) | undefined;
|
|
180
180
|
getObjectById?: ((id: number) => import("three").Object3D | undefined) | undefined;
|
|
@@ -234,25 +234,23 @@ export declare class NgtCanvas {
|
|
|
234
234
|
dispose: (() => void) | null;
|
|
235
235
|
raycast: import("three").Object3D["raycast"] | null;
|
|
236
236
|
} & {
|
|
237
|
-
|
|
238
|
-
add?: ((...object: import("three").Object3D[]) => import("three").OrthographicCamera) | undefined;
|
|
239
|
-
remove?: ((...object: import("three").Object3D[]) => import("three").OrthographicCamera) | undefined;
|
|
240
|
-
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
237
|
+
name?: string | undefined;
|
|
241
238
|
readonly type?: string | undefined;
|
|
242
|
-
viewport?: import("three").Vector4 | undefined;
|
|
243
239
|
addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three").OrthographicCamera>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three").OrthographicCamera, typeof import("three").OrthographicCamera>, ev: import("angular-three").NgtNodeEventMap<import("three").OrthographicCamera>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
244
240
|
removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three").OrthographicCamera>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three").OrthographicCamera, typeof import("three").OrthographicCamera>, ev: import("angular-three").NgtNodeEventMap<import("three").OrthographicCamera>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
|
|
241
|
+
attach: string | string[] | import("angular-three").NgtAttachFunction;
|
|
245
242
|
__ngt_args__: [left?: number | undefined, right?: number | undefined, top?: number | undefined, bottom?: number | undefined, near?: number | undefined, far?: number | undefined];
|
|
246
243
|
readonly isCamera?: true | undefined;
|
|
247
244
|
matrixWorldInverse?: import("three").Matrix4 | undefined;
|
|
248
245
|
projectionMatrix?: import("three").Matrix4 | undefined;
|
|
249
246
|
projectionMatrixInverse?: import("three").Matrix4 | undefined;
|
|
250
247
|
coordinateSystem?: import("three").CoordinateSystem | undefined;
|
|
248
|
+
viewport?: import("three").Vector4 | undefined;
|
|
251
249
|
getWorldDirection?: ((target: Vector3) => Vector3) | undefined;
|
|
252
250
|
readonly isObject3D?: true | undefined;
|
|
253
251
|
readonly id?: number | undefined;
|
|
254
252
|
uuid?: string | undefined;
|
|
255
|
-
|
|
253
|
+
parent?: import("three").Object3D<import("three").Object3DEventMap> | null | undefined;
|
|
256
254
|
children?: import("three").Object3D<import("three").Object3DEventMap>[] | undefined;
|
|
257
255
|
readonly modelViewMatrix?: import("three").Matrix4 | undefined;
|
|
258
256
|
readonly normalMatrix?: import("three").Matrix3 | undefined;
|
|
@@ -294,6 +292,8 @@ export declare class NgtCanvas {
|
|
|
294
292
|
(vector: Vector3): void;
|
|
295
293
|
(x: number, y: number, z: number): void;
|
|
296
294
|
} | undefined;
|
|
295
|
+
add?: ((...object: import("three").Object3D[]) => import("three").OrthographicCamera) | undefined;
|
|
296
|
+
remove?: ((...object: import("three").Object3D[]) => import("three").OrthographicCamera) | undefined;
|
|
297
297
|
removeFromParent?: (() => import("three").OrthographicCamera) | undefined;
|
|
298
298
|
clear?: (() => import("three").OrthographicCamera) | undefined;
|
|
299
299
|
getObjectById?: ((id: number) => import("three").Object3D | undefined) | undefined;
|
package/lib/portal.d.ts
CHANGED
|
@@ -34,7 +34,7 @@ export type NgtPortalInjectableState = Partial<Omit<NgtState, NgtPortalPrivateKe
|
|
|
34
34
|
}>;
|
|
35
35
|
export declare class NgtPortal {
|
|
36
36
|
container: import("@angular/core").InputSignal<Object3D<import("three").Object3DEventMap>>;
|
|
37
|
-
state: import("@angular/core").InputSignal<Partial<Omit<NgtState, "
|
|
37
|
+
state: import("@angular/core").InputSignal<Partial<Omit<NgtState, "viewport" | "events" | "size" | "invalidate" | "advance" | "setEvents" | "setSize" | "setDpr" | "setFrameloop"> & {
|
|
38
38
|
events?: {
|
|
39
39
|
enabled?: boolean;
|
|
40
40
|
priority?: number;
|
package/package.json
CHANGED
|
@@ -84,8 +84,8 @@ async function initGenerator(tree, { skipGenerateExperience = false } = {}) {
|
|
|
84
84
|
if (!appComponentContent) {
|
|
85
85
|
return warnExperienceWasNotGenerated(tree, `AppComponent was not found`);
|
|
86
86
|
}
|
|
87
|
-
//
|
|
88
|
-
const isStandalone = appComponentContent.includes(`standalone: true`);
|
|
87
|
+
// standalone is true or not exist
|
|
88
|
+
const isStandalone = appComponentContent.includes(`standalone: true`) || !appComponentContent.includes('standalone');
|
|
89
89
|
if (!isStandalone) {
|
|
90
90
|
return warnExperienceWasNotGenerated(tree, `AppComponent is not a Standalone Component`);
|
|
91
91
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generator.js","sourceRoot":"","sources":["../../../../../../../libs/plugin/src/generators/init/generator.ts"],"names":[],"mappings":";;AAuBA,
|
|
1
|
+
{"version":3,"file":"generator.js","sourceRoot":"","sources":["../../../../../../../libs/plugin/src/generators/init/generator.ts"],"names":[],"mappings":"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"}
|