@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.
- package/@types/interface.d.ts +3 -2
- package/dist/angular-ts.esm.js +2 -2
- package/dist/angular-ts.umd.js +2 -2
- package/dist/angular-ts.umd.min.js +1 -1
- package/docs/layouts/shortcodes/version.html +1 -1
- package/docs/static/typedoc/assets/hierarchy.js +1 -1
- package/docs/static/typedoc/assets/navigation.js +1 -1
- package/docs/static/typedoc/assets/search.js +1 -1
- package/docs/static/typedoc/hierarchy.html +1 -1
- package/docs/static/typedoc/index.html +1 -1
- package/docs/static/typedoc/interfaces/HttpProviderDefaults.html +1 -1
- package/docs/static/typedoc/interfaces/RequestConfig.html +1 -1
- package/docs/static/typedoc/interfaces/RequestShortcutConfig.html +1 -1
- package/docs/static/typedoc/types/Injectable.html +1 -1
- package/docs/static/typedoc/types/InjectableClass.html +1 -0
- package/package.json +1 -1
- package/src/interface.ts +3 -2
package/@types/interface.d.ts
CHANGED
|
@@ -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
|
*
|
package/dist/angular-ts.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Version: 0.8.
|
|
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.
|
|
35818
|
+
this.version = "0.8.3"; //inserted via rollup plugin
|
|
35819
35819
|
|
|
35820
35820
|
/** @type {!Array<string|any>} */
|
|
35821
35821
|
this.bootsrappedModules = [];
|
package/dist/angular-ts.umd.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Version: 0.8.
|
|
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.
|
|
35824
|
+
this.version = "0.8.3"; //inserted via rollup plugin
|
|
35825
35825
|
|
|
35826
35826
|
/** @type {!Array<string|any>} */
|
|
35827
35827
|
this.bootsrappedModules = [];
|