@angular-wave/angular.ts 0.7.1 → 0.7.2
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/dist/angular-ts.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Version: 0.7.
|
|
1
|
+
/* Version: 0.7.2 - June 28, 2025 21:48:51 */
|
|
2
2
|
const VALID_CLASS = "ng-valid";
|
|
3
3
|
const INVALID_CLASS = "ng-invalid";
|
|
4
4
|
const PRISTINE_CLASS = "ng-pristine";
|
|
@@ -35679,7 +35679,7 @@ function ngSetterDirective($parse, $log) {
|
|
|
35679
35679
|
|
|
35680
35680
|
// @private
|
|
35681
35681
|
|
|
35682
|
-
const VERSION = "0.7.
|
|
35682
|
+
const VERSION = "0.7.2";
|
|
35683
35683
|
|
|
35684
35684
|
/**
|
|
35685
35685
|
* Initializes core `ng` module.
|
|
@@ -36122,3 +36122,5 @@ const angular = new Angular();
|
|
|
36122
36122
|
document.addEventListener("DOMContentLoaded", () => angular.init(document), {
|
|
36123
36123
|
once: true,
|
|
36124
36124
|
});
|
|
36125
|
+
|
|
36126
|
+
export { angular };
|
package/dist/angular-ts.umd.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
/* Version: 0.7.
|
|
2
|
-
(function (factory) {
|
|
3
|
-
typeof
|
|
4
|
-
factory
|
|
5
|
-
|
|
1
|
+
/* Version: 0.7.2 - June 28, 2025 21:48:50 */
|
|
2
|
+
(function (global, factory) {
|
|
3
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
4
|
+
typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
|
5
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.angular = {}));
|
|
6
|
+
})(this, (function (exports) { 'use strict';
|
|
6
7
|
|
|
7
8
|
const VALID_CLASS = "ng-valid";
|
|
8
9
|
const INVALID_CLASS = "ng-invalid";
|
|
@@ -35684,7 +35685,7 @@
|
|
|
35684
35685
|
|
|
35685
35686
|
// @private
|
|
35686
35687
|
|
|
35687
|
-
const VERSION = "0.7.
|
|
35688
|
+
const VERSION = "0.7.2";
|
|
35688
35689
|
|
|
35689
35690
|
/**
|
|
35690
35691
|
* Initializes core `ng` module.
|
|
@@ -36128,4 +36129,6 @@
|
|
|
36128
36129
|
once: true,
|
|
36129
36130
|
});
|
|
36130
36131
|
|
|
36132
|
+
exports.angular = angular;
|
|
36133
|
+
|
|
36131
36134
|
}));
|