@nuka9510/simple-validation 1.0.5 → 1.0.6

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -102,7 +102,7 @@ class Index {
102
102
  }
103
103
 
104
104
  init() {
105
- document.querySelectorAll('[data-action]').forEach((...arg) => { arg[0].addEventListener('click', this.onValidationCheckClick); });
105
+ document.querySelectorAll('[data-action="validation-check-click"]').forEach((...arg) => { arg[0].addEventListener('click', this.onValidationCheckClick); });
106
106
  }
107
107
 
108
108
  onValidationCheckClick(ev) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuka9510/simple-validation",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "simple validation util for web front-end",
5
5
  "main": "dist/index.js",
6
6
  "directories": {
@@ -27,6 +27,6 @@
27
27
  },
28
28
  "homepage": "https://github.com/nuka9510/simple-validation",
29
29
  "dependencies": {
30
- "@nuka9510/js-util": "^1.0.22"
30
+ "@nuka9510/js-util": "^1.0.23"
31
31
  }
32
32
  }