@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.
Files changed (44) hide show
  1. package/Makefile +1 -1
  2. package/dist/angular-ts.esm.js +23 -26
  3. package/dist/angular-ts.umd.js +23 -26
  4. package/dist/angular-ts.umd.min.js +1 -1
  5. package/docs/content/docs/_index.md +7 -6
  6. package/docs/content/docs/directive/blur.md +38 -0
  7. package/docs/content/docs/directive/channel.md +1 -3
  8. package/docs/content/docs/directive/class-even.md +3 -3
  9. package/docs/content/docs/directive/class-odd.md +4 -4
  10. package/docs/content/docs/directive/class.md +7 -7
  11. package/docs/content/docs/directive/click.md +38 -0
  12. package/docs/content/docs/directive/cloak.md +4 -8
  13. package/docs/content/docs/directive/copy.md +38 -0
  14. package/docs/content/docs/directive/cut.md +40 -0
  15. package/docs/content/docs/directive/dblclick.md +38 -0
  16. package/docs/content/docs/directive/focus.md +38 -0
  17. package/docs/content/docs/directive/keyup.md +0 -0
  18. package/docs/content/docs/directive/load.md +0 -0
  19. package/docs/content/docs/directive/mousedown.md +38 -0
  20. package/docs/content/docs/directive/mouseenter.md +38 -0
  21. package/docs/content/docs/directive/mouseleave.md +38 -0
  22. package/docs/content/docs/directive/mousemove.md +38 -0
  23. package/docs/content/docs/directive/mouseout.md +38 -0
  24. package/docs/content/docs/directive/mouseover.md +38 -0
  25. package/docs/content/docs/directive/mouseup.md +38 -0
  26. package/docs/layouts/404.html +1 -1
  27. package/docs/static/examples/eventbus/eventbus.js +1 -1
  28. package/docs/static/examples/ng-blur/ng-blur.html +9 -0
  29. package/docs/static/examples/ng-click/ng-click.html +6 -0
  30. package/docs/static/examples/ng-copy/ng-copy.html +6 -0
  31. package/docs/static/examples/ng-cut/ng-cut.html +6 -0
  32. package/docs/static/examples/ng-dblclick/ng-dblclick.html +10 -0
  33. package/docs/static/examples/ng-focus/ng-focus.html +9 -0
  34. package/docs/static/examples/ng-mousedown/ng-mousedown.html +6 -0
  35. package/docs/static/examples/ng-mouseenter/ng-mouseenter.html +4 -0
  36. package/docs/static/examples/ng-mouseleave/ng-mouseleave.html +4 -0
  37. package/docs/static/examples/ng-mousemove/ng-mousemove.html +4 -0
  38. package/docs/static/examples/ng-mouseout/ng-mouseout.html +4 -0
  39. package/docs/static/examples/ng-mouseover/ng-mouseover.html +4 -0
  40. package/docs/static/examples/ng-mouseup/ng-mouseup.html +4 -0
  41. package/package.json +1 -1
  42. package/src/directive/events/events.js +21 -24
  43. package/src/directive/observe/{test.html → observe-demo.html} +0 -1
  44. /package/docs/{static/examples/ng-class/ng-class.js → content/docs/directive/keydown.md} +0 -0
package/Makefile CHANGED
@@ -40,7 +40,7 @@ typedoc: types pretty
40
40
  serve:
41
41
  @npm run serve
42
42
 
43
- prepare-release: test check types jsdoc pretty build
43
+ prepare-release: test check types typedoc pretty build
44
44
 
45
45
  PLAYWRIGHT_TEST := npx playwright test
46
46
 
@@ -1,4 +1,4 @@
1
- /* Version: 0.7.4 - July 11, 2025 03:03:27 */
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 mouseover mousein mouseout mouseleave paste submit touchstart touchend touchmove"
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
- /** @param { string } eventName */
3969
- (eventName) => {
3970
- const directiveName = directiveNormalize(`ng-${eventName}`);
3971
- ngEventDirectives[directiveName] = [
3972
- "$parse",
3973
- "$exceptionHandler",
3974
- /**
3975
- * @param {import("../../core/parse/interface.ts").ParseService} $parse
3976
- * @param {import('../../core/exception-handler.js').ErrorHandler} $exceptionHandler
3977
- * @returns
3978
- */
3979
- ($parse, $exceptionHandler) => {
3980
- return createEventDirective(
3981
- $parse,
3982
- $exceptionHandler,
3983
- directiveName,
3984
- eventName,
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.4"; //inserted via rollup plugin
36091
+ this.version = "0.7.5"; //inserted via rollup plugin
36095
36092
 
36096
36093
  /** @type {!Array<string|any>} */
36097
36094
  this.bootsrappedModules = [];
@@ -1,4 +1,4 @@
1
- /* Version: 0.7.4 - July 11, 2025 03:03:25 */
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 mouseover mousein mouseout mouseleave paste submit touchstart touchend touchmove"
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
- /** @param { string } eventName */
3975
- (eventName) => {
3976
- const directiveName = directiveNormalize(`ng-${eventName}`);
3977
- ngEventDirectives[directiveName] = [
3978
- "$parse",
3979
- "$exceptionHandler",
3980
- /**
3981
- * @param {import("../../core/parse/interface.ts").ParseService} $parse
3982
- * @param {import('../../core/exception-handler.js').ErrorHandler} $exceptionHandler
3983
- * @returns
3984
- */
3985
- ($parse, $exceptionHandler) => {
3986
- return createEventDirective(
3987
- $parse,
3988
- $exceptionHandler,
3989
- directiveName,
3990
- eventName,
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.4"; //inserted via rollup plugin
36097
+ this.version = "0.7.5"; //inserted via rollup plugin
36101
36098
 
36102
36099
  /** @type {!Array<string|any>} */
36103
36100
  this.bootsrappedModules = [];