@vue/runtime-core 3.4.26 → 3.4.27
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/runtime-core.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/runtime-core v3.4.
|
|
2
|
+
* @vue/runtime-core v3.4.27
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -5085,7 +5085,7 @@ function propHasMismatch(el, key, clientValue, vnode, instance) {
|
|
|
5085
5085
|
mismatchType = mismatchKey = `class`;
|
|
5086
5086
|
}
|
|
5087
5087
|
} else if (key === "style") {
|
|
5088
|
-
actual = el.getAttribute("style");
|
|
5088
|
+
actual = el.getAttribute("style") || "";
|
|
5089
5089
|
expected = shared.isString(clientValue) ? clientValue : shared.stringifyStyle(shared.normalizeStyle(clientValue));
|
|
5090
5090
|
const actualMap = toStyleMap(actual);
|
|
5091
5091
|
const expectedMap = toStyleMap(expected);
|
|
@@ -8090,7 +8090,7 @@ function isMemoSame(cached, memo) {
|
|
|
8090
8090
|
return true;
|
|
8091
8091
|
}
|
|
8092
8092
|
|
|
8093
|
-
const version = "3.4.
|
|
8093
|
+
const version = "3.4.27";
|
|
8094
8094
|
const warn = warn$1 ;
|
|
8095
8095
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
8096
8096
|
const devtools = devtools$1 ;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/runtime-core v3.4.
|
|
2
|
+
* @vue/runtime-core v3.4.27
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -6278,7 +6278,7 @@ function isMemoSame(cached, memo) {
|
|
|
6278
6278
|
return true;
|
|
6279
6279
|
}
|
|
6280
6280
|
|
|
6281
|
-
const version = "3.4.
|
|
6281
|
+
const version = "3.4.27";
|
|
6282
6282
|
const warn$1 = shared.NOOP;
|
|
6283
6283
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
6284
6284
|
const devtools = void 0;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/runtime-core v3.4.
|
|
2
|
+
* @vue/runtime-core v3.4.27
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -5103,7 +5103,7 @@ function propHasMismatch(el, key, clientValue, vnode, instance) {
|
|
|
5103
5103
|
mismatchType = mismatchKey = `class`;
|
|
5104
5104
|
}
|
|
5105
5105
|
} else if (key === "style") {
|
|
5106
|
-
actual = el.getAttribute("style");
|
|
5106
|
+
actual = el.getAttribute("style") || "";
|
|
5107
5107
|
expected = isString(clientValue) ? clientValue : stringifyStyle(normalizeStyle(clientValue));
|
|
5108
5108
|
const actualMap = toStyleMap(actual);
|
|
5109
5109
|
const expectedMap = toStyleMap(expected);
|
|
@@ -8160,7 +8160,7 @@ function isMemoSame(cached, memo) {
|
|
|
8160
8160
|
return true;
|
|
8161
8161
|
}
|
|
8162
8162
|
|
|
8163
|
-
const version = "3.4.
|
|
8163
|
+
const version = "3.4.27";
|
|
8164
8164
|
const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
|
|
8165
8165
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
8166
8166
|
const devtools = !!(process.env.NODE_ENV !== "production") || true ? devtools$1 : void 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/runtime-core",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.27",
|
|
4
4
|
"description": "@vue/runtime-core",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "dist/runtime-core.esm-bundler.js",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@vue/shared": "3.4.
|
|
50
|
-
"@vue/reactivity": "3.4.
|
|
49
|
+
"@vue/shared": "3.4.27",
|
|
50
|
+
"@vue/reactivity": "3.4.27"
|
|
51
51
|
}
|
|
52
52
|
}
|