auto-point 0.0.16 → 0.0.18

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/AP/auto_point.js +1 -1
  2. package/package.json +7 -5
package/AP/auto_point.js CHANGED
@@ -123,7 +123,7 @@
123
123
  let point_item = this.#create_point_data_common_params()
124
124
  point_item.point_type = "event"
125
125
  point_item.point_sing = this.#POINT_SING
126
- point_item.elment = element.target
126
+ point_item.elment = element.target.localName
127
127
  point_item.event_type = element.type
128
128
  point_item.point_attr = element.target.getAttribute(this.#POINT_SING)
129
129
  point_item.point_value = element.target.getAttribute(this.#POINT_SING)
package/package.json CHANGED
@@ -1,15 +1,17 @@
1
1
  {
2
- "name": "auto-point",
3
- "version": "0.0.16",
2
+ "author": "GFB",
3
+ "bundleDependencies": false,
4
+ "deprecated": false,
4
5
  "description": "Automatic burying point",
5
- "main": "index.js",
6
6
  "files": [
7
7
  "index.js",
8
8
  "AP/*"
9
9
  ],
10
+ "license": "ISC",
11
+ "main": "index.js",
12
+ "name": "auto-point",
10
13
  "scripts": {
11
14
  "test": "echo \"Error: no test specified\" && exit 1"
12
15
  },
13
- "author": "",
14
- "license": "ISC"
16
+ "version": "0.0.18"
15
17
  }