angular-three-theatre 4.1.1 → 4.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/package.json +45 -45
- package/types/angular-three-theatre.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,47 +1,47 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
2
|
+
"name": "angular-three-theatre",
|
|
3
|
+
"version": "4.2.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"type": "module",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/angular-threejs/angular-three/tree/main/libs/theatre"
|
|
11
|
+
},
|
|
12
|
+
"author": {
|
|
13
|
+
"name": "Chau Tran",
|
|
14
|
+
"email": "nartc7789@gmail.com",
|
|
15
|
+
"url": "https://nartc.me"
|
|
16
|
+
},
|
|
17
|
+
"description": "TheatreJS for Angular Three",
|
|
18
|
+
"keywords": [
|
|
19
|
+
"angular",
|
|
20
|
+
"threejs",
|
|
21
|
+
"renderer",
|
|
22
|
+
"theatre"
|
|
23
|
+
],
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"@angular/common": ">=20.0.0 <22.0.0",
|
|
27
|
+
"@angular/core": ">=20.0.0 <22.0.0",
|
|
28
|
+
"@theatre/core": ">=0.7.0 <0.8.0",
|
|
29
|
+
"@theatre/studio": ">=0.7.0 <0.8.0",
|
|
30
|
+
"three": ">=0.157.0 <0.183.0"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"tslib": "^2.7.0"
|
|
34
|
+
},
|
|
35
|
+
"module": "fesm2022/angular-three-theatre.mjs",
|
|
36
|
+
"typings": "types/angular-three-theatre.d.ts",
|
|
37
|
+
"exports": {
|
|
38
|
+
"./package.json": {
|
|
39
|
+
"default": "./package.json"
|
|
40
|
+
},
|
|
41
|
+
".": {
|
|
42
|
+
"types": "./types/angular-three-theatre.d.ts",
|
|
43
|
+
"default": "./fesm2022/angular-three-theatre.mjs"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"sideEffects": false
|
|
47
47
|
}
|
|
@@ -407,7 +407,7 @@ declare class TheatreSheetObjectTransform<TLabel extends string | undefined> {
|
|
|
407
407
|
* export class MyComponent {}
|
|
408
408
|
* ```
|
|
409
409
|
*/
|
|
410
|
-
declare const TheatreSheetObject: (typeof
|
|
410
|
+
declare const TheatreSheetObject: (typeof TheatreSheetObjectTransform | typeof TheatreSheetObject$1 | typeof TheatreSheetObjectSync)[];
|
|
411
411
|
|
|
412
412
|
/**
|
|
413
413
|
* Directive that initializes and manages the Theatre.js Studio.
|