angular-three 2.0.0-beta.226 → 2.0.0-beta.228

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.
@@ -0,0 +1,5 @@
1
+ import { type InputSignal, type Signal, type Type } from '@angular/core';
2
+ export type Inputs<T> = {
3
+ [P in keyof T]: T[P] extends InputSignal<infer U> ? U : never;
4
+ };
5
+ export declare function injectInputs<TDirective extends Type<any>>(dir: InstanceType<TDirective>, dirType: TDirective): Signal<Inputs<InstanceType<TDirective>>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "angular-three",
3
- "version": "2.0.0-beta.226",
3
+ "version": "2.0.0-beta.228",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -22,8 +22,8 @@
22
22
  ],
23
23
  "license": "MIT",
24
24
  "peerDependencies": {
25
- "@angular/common": "^17.0.0",
26
- "@angular/core": "^17.0.0",
25
+ "@angular/common": "^18.0.0",
26
+ "@angular/core": "^18.0.0",
27
27
  "ngxtension": "^3.0.0",
28
28
  "three": ">=0.148.0"
29
29
  },