@vue/compat 3.4.35 → 3.4.36
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/vue.cjs.js +30 -13
- package/dist/vue.cjs.prod.js +30 -13
- package/dist/vue.esm-browser.js +5 -4
- package/dist/vue.esm-browser.prod.js +2 -2
- package/dist/vue.esm-bundler.js +5 -4
- package/dist/vue.global.js +5 -4
- package/dist/vue.global.prod.js +2 -2
- package/dist/vue.runtime.esm-browser.js +5 -4
- package/dist/vue.runtime.esm-browser.prod.js +2 -2
- package/dist/vue.runtime.esm-bundler.js +5 -4
- package/dist/vue.runtime.global.js +5 -4
- package/dist/vue.runtime.global.prod.js +2 -2
- package/package.json +2 -2
package/dist/vue.esm-bundler.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.4.
|
|
2
|
+
* @vue/compat v3.4.36
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -5261,7 +5261,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
5261
5261
|
return vm;
|
|
5262
5262
|
}
|
|
5263
5263
|
}
|
|
5264
|
-
Vue.version = `2.6.14-compat:${"3.4.
|
|
5264
|
+
Vue.version = `2.6.14-compat:${"3.4.36"}`;
|
|
5265
5265
|
Vue.config = singletonApp.config;
|
|
5266
5266
|
Vue.use = (plugin, ...options) => {
|
|
5267
5267
|
if (plugin && isFunction(plugin.install)) {
|
|
@@ -7105,6 +7105,7 @@ Server rendered element contains more child nodes than client vdom.`
|
|
|
7105
7105
|
}
|
|
7106
7106
|
if (props) {
|
|
7107
7107
|
if (!!(process.env.NODE_ENV !== "production") || __VUE_PROD_HYDRATION_MISMATCH_DETAILS__ || forcePatch || !optimized || patchFlag & (16 | 32)) {
|
|
7108
|
+
const isCustomElement = el.tagName.includes("-");
|
|
7108
7109
|
for (const key in props) {
|
|
7109
7110
|
if ((!!(process.env.NODE_ENV !== "production") || __VUE_PROD_HYDRATION_MISMATCH_DETAILS__) && // #11189 skip if this node has directives that have created hooks
|
|
7110
7111
|
// as it could have mutated the DOM in any possible way
|
|
@@ -7112,7 +7113,7 @@ Server rendered element contains more child nodes than client vdom.`
|
|
|
7112
7113
|
logMismatchError();
|
|
7113
7114
|
}
|
|
7114
7115
|
if (forcePatch && (key.endsWith("value") || key === "indeterminate") || isOn(key) && !isReservedProp(key) || // force hydrate v-bind with .prop modifiers
|
|
7115
|
-
key[0] === ".") {
|
|
7116
|
+
key[0] === "." || isCustomElement) {
|
|
7116
7117
|
patchProp(el, key, null, props[key], void 0, parentComponent);
|
|
7117
7118
|
}
|
|
7118
7119
|
}
|
|
@@ -11547,7 +11548,7 @@ function isMemoSame(cached, memo) {
|
|
|
11547
11548
|
return true;
|
|
11548
11549
|
}
|
|
11549
11550
|
|
|
11550
|
-
const version = "3.4.
|
|
11551
|
+
const version = "3.4.36";
|
|
11551
11552
|
const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
|
|
11552
11553
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
11553
11554
|
const devtools = !!(process.env.NODE_ENV !== "production") || true ? devtools$1 : void 0;
|
package/dist/vue.global.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.4.
|
|
2
|
+
* @vue/compat v3.4.36
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -5249,7 +5249,7 @@ If this is a native custom element, make sure to exclude it from component resol
|
|
|
5249
5249
|
return vm;
|
|
5250
5250
|
}
|
|
5251
5251
|
}
|
|
5252
|
-
Vue.version = `2.6.14-compat:${"3.4.
|
|
5252
|
+
Vue.version = `2.6.14-compat:${"3.4.36"}`;
|
|
5253
5253
|
Vue.config = singletonApp.config;
|
|
5254
5254
|
Vue.use = (plugin, ...options) => {
|
|
5255
5255
|
if (plugin && isFunction(plugin.install)) {
|
|
@@ -7091,6 +7091,7 @@ Server rendered element contains more child nodes than client vdom.`
|
|
|
7091
7091
|
}
|
|
7092
7092
|
if (props) {
|
|
7093
7093
|
{
|
|
7094
|
+
const isCustomElement = el.tagName.includes("-");
|
|
7094
7095
|
for (const key in props) {
|
|
7095
7096
|
if (// #11189 skip if this node has directives that have created hooks
|
|
7096
7097
|
// as it could have mutated the DOM in any possible way
|
|
@@ -7098,7 +7099,7 @@ Server rendered element contains more child nodes than client vdom.`
|
|
|
7098
7099
|
logMismatchError();
|
|
7099
7100
|
}
|
|
7100
7101
|
if (forcePatch && (key.endsWith("value") || key === "indeterminate") || isOn(key) && !isReservedProp(key) || // force hydrate v-bind with .prop modifiers
|
|
7101
|
-
key[0] === ".") {
|
|
7102
|
+
key[0] === "." || isCustomElement) {
|
|
7102
7103
|
patchProp(el, key, null, props[key], void 0, parentComponent);
|
|
7103
7104
|
}
|
|
7104
7105
|
}
|
|
@@ -11430,7 +11431,7 @@ Component that was made reactive: `,
|
|
|
11430
11431
|
return true;
|
|
11431
11432
|
}
|
|
11432
11433
|
|
|
11433
|
-
const version = "3.4.
|
|
11434
|
+
const version = "3.4.36";
|
|
11434
11435
|
const warn = warn$1 ;
|
|
11435
11436
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
11436
11437
|
const devtools = devtools$1 ;
|