@cabloy/vue-runtime-core 3.4.28 → 3.4.29

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @cabloy/vue-runtime-core v3.4.26
2
+ * @cabloy/vue-runtime-core v3.4.27
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -5087,7 +5087,7 @@ function propHasMismatch(el, key, clientValue, vnode, instance) {
5087
5087
  mismatchType = mismatchKey = `class`;
5088
5088
  }
5089
5089
  } else if (key === "style") {
5090
- actual = el.getAttribute("style");
5090
+ actual = el.getAttribute("style") || "";
5091
5091
  expected = shared.isString(clientValue) ? clientValue : shared.stringifyStyle(shared.normalizeStyle(clientValue));
5092
5092
  const actualMap = toStyleMap(actual);
5093
5093
  const expectedMap = toStyleMap(expected);
@@ -8092,7 +8092,7 @@ function isMemoSame(cached, memo) {
8092
8092
  return true;
8093
8093
  }
8094
8094
 
8095
- const version = "3.4.26";
8095
+ const version = "3.4.27";
8096
8096
  const warn = warn$1 ;
8097
8097
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
8098
8098
  const devtools = devtools$1 ;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @cabloy/vue-runtime-core v3.4.26
2
+ * @cabloy/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.26";
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
- * @cabloy/vue-runtime-core v3.4.26
2
+ * @cabloy/vue-runtime-core v3.4.27
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -5105,7 +5105,7 @@ function propHasMismatch(el, key, clientValue, vnode, instance) {
5105
5105
  mismatchType = mismatchKey = `class`;
5106
5106
  }
5107
5107
  } else if (key === "style") {
5108
- actual = el.getAttribute("style");
5108
+ actual = el.getAttribute("style") || "";
5109
5109
  expected = isString(clientValue) ? clientValue : stringifyStyle(normalizeStyle(clientValue));
5110
5110
  const actualMap = toStyleMap(actual);
5111
5111
  const expectedMap = toStyleMap(expected);
@@ -8162,7 +8162,7 @@ function isMemoSame(cached, memo) {
8162
8162
  return true;
8163
8163
  }
8164
8164
 
8165
- const version = "3.4.26";
8165
+ const version = "3.4.27";
8166
8166
  const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
8167
8167
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
8168
8168
  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": "@cabloy/vue-runtime-core",
3
- "version": "3.4.28",
3
+ "version": "3.4.29",
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.26",
50
- "@vue/reactivity": "3.4.26"
49
+ "@vue/shared": "3.4.27",
50
+ "@vue/reactivity": "3.4.27"
51
51
  }
52
52
  }