@angular-wave/angular.ts 0.7.4 → 0.7.5
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/Makefile +1 -1
- package/dist/angular-ts.esm.js +23 -26
- package/dist/angular-ts.umd.js +23 -26
- package/dist/angular-ts.umd.min.js +1 -1
- package/docs/content/docs/_index.md +7 -6
- package/docs/content/docs/directive/blur.md +38 -0
- package/docs/content/docs/directive/channel.md +1 -3
- package/docs/content/docs/directive/class-even.md +3 -3
- package/docs/content/docs/directive/class-odd.md +4 -4
- package/docs/content/docs/directive/class.md +7 -7
- package/docs/content/docs/directive/click.md +38 -0
- package/docs/content/docs/directive/cloak.md +4 -8
- package/docs/content/docs/directive/copy.md +38 -0
- package/docs/content/docs/directive/cut.md +40 -0
- package/docs/content/docs/directive/dblclick.md +38 -0
- package/docs/content/docs/directive/focus.md +38 -0
- package/docs/content/docs/directive/keyup.md +0 -0
- package/docs/content/docs/directive/load.md +0 -0
- package/docs/content/docs/directive/mousedown.md +38 -0
- package/docs/content/docs/directive/mouseenter.md +38 -0
- package/docs/content/docs/directive/mouseleave.md +38 -0
- package/docs/content/docs/directive/mousemove.md +38 -0
- package/docs/content/docs/directive/mouseout.md +38 -0
- package/docs/content/docs/directive/mouseover.md +38 -0
- package/docs/content/docs/directive/mouseup.md +38 -0
- package/docs/layouts/404.html +1 -1
- package/docs/static/examples/eventbus/eventbus.js +1 -1
- package/docs/static/examples/ng-blur/ng-blur.html +9 -0
- package/docs/static/examples/ng-click/ng-click.html +6 -0
- package/docs/static/examples/ng-copy/ng-copy.html +6 -0
- package/docs/static/examples/ng-cut/ng-cut.html +6 -0
- package/docs/static/examples/ng-dblclick/ng-dblclick.html +10 -0
- package/docs/static/examples/ng-focus/ng-focus.html +9 -0
- package/docs/static/examples/ng-mousedown/ng-mousedown.html +6 -0
- package/docs/static/examples/ng-mouseenter/ng-mouseenter.html +4 -0
- package/docs/static/examples/ng-mouseleave/ng-mouseleave.html +4 -0
- package/docs/static/examples/ng-mousemove/ng-mousemove.html +4 -0
- package/docs/static/examples/ng-mouseout/ng-mouseout.html +4 -0
- package/docs/static/examples/ng-mouseover/ng-mouseover.html +4 -0
- package/docs/static/examples/ng-mouseup/ng-mouseup.html +4 -0
- package/package.json +1 -1
- package/src/directive/events/events.js +21 -24
- package/src/directive/observe/{test.html → observe-demo.html} +0 -1
- /package/docs/{static/examples/ng-class/ng-class.js → content/docs/directive/keydown.md} +0 -0
package/Makefile
CHANGED
package/dist/angular-ts.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Version: 0.7.
|
|
1
|
+
/* Version: 0.7.5 - July 12, 2025 01:24:07 */
|
|
2
2
|
const VALID_CLASS = "ng-valid";
|
|
3
3
|
const INVALID_CLASS = "ng-invalid";
|
|
4
4
|
const PRISTINE_CLASS = "ng-pristine";
|
|
@@ -3962,31 +3962,28 @@ function SceProvider() {
|
|
|
3962
3962
|
*/
|
|
3963
3963
|
const ngEventDirectives = {};
|
|
3964
3964
|
|
|
3965
|
-
"click copy cut dblclick focus blur keydown keyup keypress load
|
|
3965
|
+
"click copy cut dblclick focus blur keydown keyup keypress load mousedown mouseenter mouseleave mousemove mouseout mouseover mouseup paste submit touchstart touchend touchmove"
|
|
3966
3966
|
.split(" ")
|
|
3967
|
-
.forEach(
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
3980
|
-
|
|
3981
|
-
|
|
3982
|
-
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
];
|
|
3988
|
-
},
|
|
3989
|
-
);
|
|
3967
|
+
.forEach((eventName) => {
|
|
3968
|
+
const directiveName = directiveNormalize(`ng-${eventName}`);
|
|
3969
|
+
ngEventDirectives[directiveName] = [
|
|
3970
|
+
"$parse",
|
|
3971
|
+
"$exceptionHandler",
|
|
3972
|
+
/**
|
|
3973
|
+
* @param {import("../../core/parse/interface.ts").ParseService} $parse
|
|
3974
|
+
* @param {import('../../core/exception-handler.js').ErrorHandler} $exceptionHandler
|
|
3975
|
+
* @returns
|
|
3976
|
+
*/
|
|
3977
|
+
($parse, $exceptionHandler) => {
|
|
3978
|
+
return createEventDirective(
|
|
3979
|
+
$parse,
|
|
3980
|
+
$exceptionHandler,
|
|
3981
|
+
directiveName,
|
|
3982
|
+
eventName,
|
|
3983
|
+
);
|
|
3984
|
+
},
|
|
3985
|
+
];
|
|
3986
|
+
});
|
|
3990
3987
|
|
|
3991
3988
|
/**
|
|
3992
3989
|
*
|
|
@@ -36091,7 +36088,7 @@ class Angular {
|
|
|
36091
36088
|
/**
|
|
36092
36089
|
* @type {string} `version` from `package.json`
|
|
36093
36090
|
*/
|
|
36094
|
-
this.version = "0.7.
|
|
36091
|
+
this.version = "0.7.5"; //inserted via rollup plugin
|
|
36095
36092
|
|
|
36096
36093
|
/** @type {!Array<string|any>} */
|
|
36097
36094
|
this.bootsrappedModules = [];
|
package/dist/angular-ts.umd.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Version: 0.7.
|
|
1
|
+
/* Version: 0.7.5 - July 12, 2025 01:24:05 */
|
|
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) :
|
|
@@ -3968,31 +3968,28 @@
|
|
|
3968
3968
|
*/
|
|
3969
3969
|
const ngEventDirectives = {};
|
|
3970
3970
|
|
|
3971
|
-
"click copy cut dblclick focus blur keydown keyup keypress load
|
|
3971
|
+
"click copy cut dblclick focus blur keydown keyup keypress load mousedown mouseenter mouseleave mousemove mouseout mouseover mouseup paste submit touchstart touchend touchmove"
|
|
3972
3972
|
.split(" ")
|
|
3973
|
-
.forEach(
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
3980
|
-
|
|
3981
|
-
|
|
3982
|
-
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
|
|
3989
|
-
|
|
3990
|
-
|
|
3991
|
-
|
|
3992
|
-
|
|
3993
|
-
];
|
|
3994
|
-
},
|
|
3995
|
-
);
|
|
3973
|
+
.forEach((eventName) => {
|
|
3974
|
+
const directiveName = directiveNormalize(`ng-${eventName}`);
|
|
3975
|
+
ngEventDirectives[directiveName] = [
|
|
3976
|
+
"$parse",
|
|
3977
|
+
"$exceptionHandler",
|
|
3978
|
+
/**
|
|
3979
|
+
* @param {import("../../core/parse/interface.ts").ParseService} $parse
|
|
3980
|
+
* @param {import('../../core/exception-handler.js').ErrorHandler} $exceptionHandler
|
|
3981
|
+
* @returns
|
|
3982
|
+
*/
|
|
3983
|
+
($parse, $exceptionHandler) => {
|
|
3984
|
+
return createEventDirective(
|
|
3985
|
+
$parse,
|
|
3986
|
+
$exceptionHandler,
|
|
3987
|
+
directiveName,
|
|
3988
|
+
eventName,
|
|
3989
|
+
);
|
|
3990
|
+
},
|
|
3991
|
+
];
|
|
3992
|
+
});
|
|
3996
3993
|
|
|
3997
3994
|
/**
|
|
3998
3995
|
*
|
|
@@ -36097,7 +36094,7 @@
|
|
|
36097
36094
|
/**
|
|
36098
36095
|
* @type {string} `version` from `package.json`
|
|
36099
36096
|
*/
|
|
36100
|
-
this.version = "0.7.
|
|
36097
|
+
this.version = "0.7.5"; //inserted via rollup plugin
|
|
36101
36098
|
|
|
36102
36099
|
/** @type {!Array<string|any>} */
|
|
36103
36100
|
this.bootsrappedModules = [];
|