x-group-list 0.2.8 → 0.2.10

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/dist/index.js +1 -1
  2. package/package.json +14 -14
package/dist/index.js CHANGED
@@ -109,7 +109,7 @@ function I(s) {
109
109
  }
110
110
  function D(s, l) {
111
111
  const o = [];
112
- for (let f in l) {
112
+ for (const f in l) {
113
113
  const a = l[f], u = s[f];
114
114
  (!u || a.group !== u.group || a.position !== u.position) && o.push({ ...a });
115
115
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-group-list",
3
3
  "private": false,
4
- "version": "0.2.8",
4
+ "version": "0.2.10",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -22,25 +22,25 @@
22
22
  "*": "prettier --write ."
23
23
  },
24
24
  "peerDependencies": {
25
- "vue": "^3.4.30",
26
- "vuetify": "^3.6.10"
25
+ "vue": "^3.4.38",
26
+ "vuetify": "^3.7.0"
27
27
  },
28
28
  "devDependencies": {
29
- "@rushstack/eslint-patch": "^1.8.0",
30
- "@types/node": "^20.12.2",
31
- "@vitejs/plugin-vue": "^5.0.4",
29
+ "@rushstack/eslint-patch": "^1.10.3",
30
+ "@types/node": "^20.14.10",
31
+ "@vitejs/plugin-vue": "^5.0.5",
32
32
  "@vue/eslint-config-prettier": "^9.0.0",
33
33
  "@vue/eslint-config-typescript": "^13.0.0",
34
34
  "eslint": "^8.57.0",
35
- "eslint-plugin-vue": "^9.24.1",
35
+ "eslint-plugin-vue": "^9.27.0",
36
36
  "husky": "^9.0.11",
37
- "lint-staged": "^15.2.2",
38
- "prettier": "3.2.5",
39
- "sass": "^1.74.1",
40
- "typescript": "^5.2.2",
41
- "vite": "^5.2.0",
42
- "vite-plugin-css-injected-by-js": "^3.5.0",
37
+ "lint-staged": "^15.2.7",
38
+ "prettier": "3.3.3",
39
+ "sass": "^1.77.7",
40
+ "typescript": "^5.5.3",
41
+ "vite": "^5.3.3",
42
+ "vite-plugin-css-injected-by-js": "^3.5.1",
43
43
  "vite-plugin-vuetify": "^2.0.3",
44
- "vue-tsc": "^2.0.6"
44
+ "vue-tsc": "^2.0.26"
45
45
  }
46
46
  }