@vue/shared 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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/shared v3.4.26
2
+ * @vue/shared v3.4.27
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -277,8 +277,8 @@ function stringifyStyle(styles) {
277
277
  }
278
278
  for (const key in styles) {
279
279
  const value = styles[key];
280
- const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key);
281
280
  if (isString(value) || typeof value === "number") {
281
+ const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key);
282
282
  ret += `${normalizedKey}:${value};`;
283
283
  }
284
284
  }
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/shared v3.4.26
2
+ * @vue/shared v3.4.27
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -277,8 +277,8 @@ function stringifyStyle(styles) {
277
277
  }
278
278
  for (const key in styles) {
279
279
  const value = styles[key];
280
- const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key);
281
280
  if (isString(value) || typeof value === "number") {
281
+ const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key);
282
282
  ret += `${normalizedKey}:${value};`;
283
283
  }
284
284
  }
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/shared v3.4.26
2
+ * @vue/shared v3.4.27
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -273,8 +273,8 @@ function stringifyStyle(styles) {
273
273
  }
274
274
  for (const key in styles) {
275
275
  const value = styles[key];
276
- const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key);
277
276
  if (isString(value) || typeof value === "number") {
277
+ const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key);
278
278
  ret += `${normalizedKey}:${value};`;
279
279
  }
280
280
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue/shared",
3
- "version": "3.4.26",
3
+ "version": "3.4.27",
4
4
  "description": "internal utils shared across @vue packages",
5
5
  "main": "index.js",
6
6
  "module": "dist/shared.esm-bundler.js",