angular-three 2.0.0-beta.30 → 2.0.0-beta.32

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.
@@ -14,4 +14,4 @@ export type NgtSignalStore<State extends object> = {
14
14
  patch(state: Partial<State>): void;
15
15
  state: Signal<State>;
16
16
  };
17
- export declare function signalStore<State extends object>(initialState?: Partial<State> | ((storeApi: Pick<NgtSignalStore<State>, 'get' | 'set' | 'patch'>) => Partial<State>), options?: CreateSignalOptions<State>): NgtSignalStore<State>;
17
+ export declare function signalStore<State extends object>(initialState?: Partial<State> | ((storeApi: Pick<NgtSignalStore<State>, 'get' | 'set' | 'patch' | 'select'>) => Partial<State>), options?: CreateSignalOptions<State>): NgtSignalStore<State>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "angular-three",
3
- "version": "2.0.0-beta.30",
3
+ "version": "2.0.0-beta.32",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -38,10 +38,20 @@
38
38
  "generators": "./plugin/generators.json",
39
39
  "schematics": "./plugin/generators.json",
40
40
  "nx-migrations": {
41
- "migrations": "./migrations.json"
41
+ "migrations": "./plugin/migrations.json",
42
+ "packageGroup": {
43
+ "angular-three-soba": "*",
44
+ "angular-three-postprocessing": "*",
45
+ "angular-three-cannon": "*"
46
+ }
42
47
  },
43
48
  "ng-update": {
44
- "migrations": "./migrations.json"
49
+ "migrations": "./plugin/migrations.json",
50
+ "packageGroup": {
51
+ "angular-three-soba": "*",
52
+ "angular-three-postprocessing": "*",
53
+ "angular-three-cannon": "*"
54
+ }
45
55
  },
46
56
  "web-types": "./web-types.json",
47
57
  "module": "fesm2022/angular-three.mjs",
@@ -3,14 +3,14 @@
3
3
  "migrate-to-ngxtension": {
4
4
  "version": "2.0.0-beta.30",
5
5
  "description": "Migrate some APIs to ngxtension",
6
- "implementation": "./src/migrations/migrate-to-ngxtension/migrate-to-ngxtension"
6
+ "factory": "./src/migrations/migrate-to-ngxtension/migrate-to-ngxtension"
7
7
  }
8
8
  },
9
9
  "schematics": {
10
10
  "migrate-to-ngxtension": {
11
11
  "version": "2.0.0-beta.30",
12
12
  "description": "Migrate some APIs to ngxtension",
13
- "implementation": "./src/migrations/migrate-to-ngxtension/compat"
13
+ "factory": "./src/migrations/migrate-to-ngxtension/compat"
14
14
  }
15
15
  }
16
16
  }
@@ -2,14 +2,24 @@
2
2
  "type": "commonjs",
3
3
  "generators": "./generators.json",
4
4
  "nx-migrations": {
5
- "migrations": "./migrations.json"
5
+ "migrations": "./migrations.json",
6
+ "packageGroup": {
7
+ "angular-three-soba": "*",
8
+ "angular-three-postprocessing": "*",
9
+ "angular-three-cannon": "*"
10
+ }
6
11
  },
7
12
  "ng-update": {
8
- "migrations": "./migrations.json"
13
+ "migrations": "./migrations.json",
14
+ "packageGroup": {
15
+ "angular-three-soba": "*",
16
+ "angular-three-postprocessing": "*",
17
+ "angular-three-cannon": "*"
18
+ }
9
19
  },
10
20
  "dependencies": {
11
21
  "@nx/devkit": "16.8.1"
12
22
  },
13
23
  "main": "./src/index.js",
14
- "version": "2.0.0-beta.30"
24
+ "version": "2.0.0-beta.32"
15
25
  }