mhz-ui 1.1.62 → 1.1.63
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.
|
@@ -634,8 +634,8 @@ function Qo(n, e, t) {
|
|
|
634
634
|
function Zo(n, e, t, r) {
|
|
635
635
|
let { index: i, offset: s } = n.findIndex(e), o = n.maybeChild(i);
|
|
636
636
|
if (s == e || o.isText)
|
|
637
|
-
return n.cut(0, e).append(t).append(n.cut(e));
|
|
638
|
-
let l = Zo(o.content, e - s - 1, t);
|
|
637
|
+
return r && !r.canReplace(i, i, t) ? null : n.cut(0, e).append(t).append(n.cut(e));
|
|
638
|
+
let l = Zo(o.content, e - s - 1, t, o);
|
|
639
639
|
return l && n.replaceChild(i, o.copy(l));
|
|
640
640
|
}
|
|
641
641
|
function zc(n, e, t) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mhz-ui",
|
|
3
3
|
"description": "Mhz ui kit",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.63",
|
|
5
5
|
"author": "Alexandr Dergunov <dergunovs@mail.ru> (https://github.com/dergunovs)",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
@@ -52,30 +52,30 @@
|
|
|
52
52
|
"eslint-config-prettier": "10.1.8",
|
|
53
53
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
54
54
|
"eslint-plugin-import-x": "4.16.1",
|
|
55
|
-
"eslint-plugin-prettier": "5.5.
|
|
55
|
+
"eslint-plugin-prettier": "5.5.4",
|
|
56
56
|
"eslint-plugin-vue": "10.4.0",
|
|
57
57
|
"globals": "16.3.0",
|
|
58
58
|
"happy-dom": "18.0.1",
|
|
59
59
|
"postcss-html": "1.8.0",
|
|
60
60
|
"postcss-scss": "4.0.9",
|
|
61
61
|
"prettier": "3.6.2",
|
|
62
|
-
"sass-embedded": "1.
|
|
62
|
+
"sass-embedded": "1.90.0",
|
|
63
63
|
"storybook": "9.1.1",
|
|
64
|
-
"stylelint": "16.23.
|
|
64
|
+
"stylelint": "16.23.1",
|
|
65
65
|
"stylelint-config-recess-order": "7.1.0",
|
|
66
|
-
"stylelint-config-recommended-scss": "
|
|
66
|
+
"stylelint-config-recommended-scss": "16.0.0",
|
|
67
67
|
"stylelint-config-recommended-vue": "1.6.1",
|
|
68
68
|
"stylelint-order": "7.0.0",
|
|
69
69
|
"stylelint-prettier": "5.0.3",
|
|
70
70
|
"typescript": "5.9.2",
|
|
71
71
|
"typescript-eslint": "8.39.0",
|
|
72
|
-
"vite": "7.
|
|
72
|
+
"vite": "7.1.1",
|
|
73
73
|
"vite-plugin-dts": "4.5.4",
|
|
74
74
|
"vite-plugin-static-copy": "3.1.1",
|
|
75
75
|
"vite-svg-loader": "5.1.0",
|
|
76
76
|
"vitest": "3.2.4",
|
|
77
77
|
"vue-eslint-parser": "10.2.0",
|
|
78
|
-
"vue-linters-config": "0.3.
|
|
78
|
+
"vue-linters-config": "0.3.15",
|
|
79
79
|
"vue-tsc": "3.0.5"
|
|
80
80
|
},
|
|
81
81
|
"peerDependencies": {
|