@angular-wave/angular.ts 0.8.2 → 0.8.3

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.
@@ -37,13 +37,14 @@ export type ExpandoStore = {
37
37
  */
38
38
  export type AnnotatedFactory = [...string[], (...args: any[]) => any];
39
39
  export type InjectableFactory = (...args: any[]) => any;
40
+ export type InjectableClass = new (...args: any[]) => any;
40
41
  /**
41
- * A factory that can be either a standalone function or a dependency-annotated array.
42
+ * A factory that can be either a standalone function or a dependency-annotated array or a class (constructor function).
42
43
  *
43
44
  * The array form is used to support minification-safe dependency injection.
44
45
  * See {@link AnnotatedFactory}.
45
46
  */
46
- export type Injectable = AnnotatedFactory | InjectableFactory;
47
+ export type Injectable = AnnotatedFactory | InjectableFactory | InjectableClass;
47
48
  /**
48
49
  * An object that defines how a service is constructed.
49
50
  *
@@ -1,4 +1,4 @@
1
- /* Version: 0.8.2 - August 11, 2025 15:14:34 */
1
+ /* Version: 0.8.3 - August 22, 2025 14:53:17 */
2
2
  const VALID_CLASS = "ng-valid";
3
3
  const INVALID_CLASS = "ng-invalid";
4
4
  const PRISTINE_CLASS = "ng-pristine";
@@ -35815,7 +35815,7 @@ class Angular {
35815
35815
  /**
35816
35816
  * @type {string} `version` from `package.json`
35817
35817
  */
35818
- this.version = "0.8.2"; //inserted via rollup plugin
35818
+ this.version = "0.8.3"; //inserted via rollup plugin
35819
35819
 
35820
35820
  /** @type {!Array<string|any>} */
35821
35821
  this.bootsrappedModules = [];
@@ -1,4 +1,4 @@
1
- /* Version: 0.8.2 - August 11, 2025 15:14:33 */
1
+ /* Version: 0.8.3 - August 22, 2025 14:53:15 */
2
2
  (function (global, factory) {
3
3
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
4
4
  typeof define === 'function' && define.amd ? define(['exports'], factory) :
@@ -35821,7 +35821,7 @@
35821
35821
  /**
35822
35822
  * @type {string} `version` from `package.json`
35823
35823
  */
35824
- this.version = "0.8.2"; //inserted via rollup plugin
35824
+ this.version = "0.8.3"; //inserted via rollup plugin
35825
35825
 
35826
35826
  /** @type {!Array<string|any>} */
35827
35827
  this.bootsrappedModules = [];