mhz-helpers 1.4.24 → 1.4.25
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/dist/query/index.js +3 -3
- package/package.json +17 -17
package/dist/query/index.js
CHANGED
|
@@ -410,7 +410,7 @@ var fe = class {
|
|
|
410
410
|
this.gcTime = Math.max(this.gcTime || 0, e ?? (A.isServer() ? Infinity : 300 * 1e3));
|
|
411
411
|
}
|
|
412
412
|
clearGcTimeout() {
|
|
413
|
-
this.#e
|
|
413
|
+
this.#e !== void 0 && (l.clearTimeout(this.#e), this.#e = void 0);
|
|
414
414
|
}
|
|
415
415
|
}, pe = class extends fe {
|
|
416
416
|
#e;
|
|
@@ -813,10 +813,10 @@ var ge = class extends o {
|
|
|
813
813
|
this.#g(), this.#v(this.#_());
|
|
814
814
|
}
|
|
815
815
|
#b() {
|
|
816
|
-
this.#d
|
|
816
|
+
this.#d !== void 0 && (l.clearTimeout(this.#d), this.#d = void 0);
|
|
817
817
|
}
|
|
818
818
|
#x() {
|
|
819
|
-
this.#f
|
|
819
|
+
this.#f !== void 0 && (l.clearInterval(this.#f), this.#f = void 0);
|
|
820
820
|
}
|
|
821
821
|
createResult(e, t) {
|
|
822
822
|
let n = this.#t, r = this.options, i = this.#r, a = this.#i, o = this.#a, s = e === n ? this.#n : e.state, { state: c } = e, l = { ...c }, u = !1, d;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mhz-helpers",
|
|
3
3
|
"description": "Mhz helpers and composables",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.25",
|
|
5
5
|
"author": "Alexandr Dergunov <dergunovs@mail.ru> (https://github.com/dergunovs)",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
@@ -24,48 +24,48 @@
|
|
|
24
24
|
"test:cov": "NODE_OPTIONS='--no-experimental-webstorage' vitest run --coverage"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@tanstack/vue-query": "5.
|
|
27
|
+
"@tanstack/vue-query": "5.99.1",
|
|
28
28
|
"@vueuse/core": "14.2.1",
|
|
29
29
|
"@vueuse/integrations": "14.2.1",
|
|
30
30
|
"async-validator": "4.2.5",
|
|
31
31
|
"axios": "1.15.0",
|
|
32
|
-
"vue": "3.6.0-beta.
|
|
32
|
+
"vue": "3.6.0-beta.10",
|
|
33
33
|
"vue-router": "5.0.4"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@eslint/js": "10.0.1",
|
|
37
|
-
"@types/node": "25.
|
|
38
|
-
"@vitejs/plugin-vue": "6.0.
|
|
39
|
-
"@vitest/coverage-v8": "4.1.
|
|
40
|
-
"eslint": "10.2.
|
|
37
|
+
"@types/node": "25.6.0",
|
|
38
|
+
"@vitejs/plugin-vue": "6.0.6",
|
|
39
|
+
"@vitest/coverage-v8": "4.1.4",
|
|
40
|
+
"eslint": "10.2.1",
|
|
41
41
|
"eslint-config-prettier": "10.1.8",
|
|
42
42
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
43
43
|
"eslint-plugin-import-x": "4.16.2",
|
|
44
44
|
"eslint-plugin-prettier": "5.5.5",
|
|
45
|
-
"eslint-plugin-sonarjs": "4.0.
|
|
45
|
+
"eslint-plugin-sonarjs": "4.0.3",
|
|
46
46
|
"eslint-plugin-unicorn": "64.0.0",
|
|
47
47
|
"eslint-plugin-vue": "10.8.0",
|
|
48
|
-
"globals": "17.
|
|
49
|
-
"happy-dom": "20.
|
|
48
|
+
"globals": "17.5.0",
|
|
49
|
+
"happy-dom": "20.9.0",
|
|
50
50
|
"postcss-html": "1.8.1",
|
|
51
|
-
"prettier": "3.8.
|
|
52
|
-
"stylelint": "17.
|
|
51
|
+
"prettier": "3.8.3",
|
|
52
|
+
"stylelint": "17.8.0",
|
|
53
53
|
"stylelint-config-recess-order": "7.7.0",
|
|
54
54
|
"stylelint-config-recommended-scss": "17.0.1",
|
|
55
55
|
"stylelint-config-recommended-vue": "1.6.1",
|
|
56
56
|
"stylelint-order": "8.1.1",
|
|
57
57
|
"stylelint-prettier": "5.0.3",
|
|
58
|
-
"typescript": "6.0.
|
|
59
|
-
"typescript-eslint": "8.58.
|
|
58
|
+
"typescript": "6.0.3",
|
|
59
|
+
"typescript-eslint": "8.58.2",
|
|
60
60
|
"vite": "8.0.8",
|
|
61
61
|
"vite-plugin-dts": "4.5.4",
|
|
62
|
-
"vitest": "4.1.
|
|
62
|
+
"vitest": "4.1.4",
|
|
63
63
|
"vue-eslint-parser": "10.4.0",
|
|
64
64
|
"vue-linters-config": "0.5.7",
|
|
65
|
-
"vue-tsc": "3.2.
|
|
65
|
+
"vue-tsc": "3.2.7"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
68
|
-
"vue": "3.6.0-beta.
|
|
68
|
+
"vue": "3.6.0-beta.10",
|
|
69
69
|
"vue-router": "5.0.4"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|