mirror of
https://github.com/vuejs/vue.git
synced 2024-11-22 04:39:46 +00:00
build: build 2.6.5
This commit is contained in:
parent
e7d49cdcf2
commit
1489b99f24
28
dist/vue.common.dev.js
vendored
28
dist/vue.common.dev.js
vendored
@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* Vue.js v2.6.4
|
||||
* Vue.js v2.6.5
|
||||
* (c) 2014-2019 Evan You
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
@ -2539,8 +2539,14 @@ function normalizeScopedSlots (
|
||||
} else if (slots._normalized) {
|
||||
// fast path 1: child component re-render only, parent did not change
|
||||
return slots._normalized
|
||||
} else if (slots.$stable && prevSlots && prevSlots !== emptyObject) {
|
||||
// fast path 2: stable scoped slots, only need to normalize once
|
||||
} else if (
|
||||
slots.$stable &&
|
||||
prevSlots &&
|
||||
prevSlots !== emptyObject &&
|
||||
Object.keys(normalSlots).length === 0
|
||||
) {
|
||||
// fast path 2: stable scoped slots w/ no normal slots to proxy,
|
||||
// only need to normalize once
|
||||
return prevSlots
|
||||
} else {
|
||||
res = {};
|
||||
@ -2566,8 +2572,8 @@ function normalizeScopedSlots (
|
||||
}
|
||||
|
||||
function normalizeScopedSlot(normalSlots, key, fn) {
|
||||
var normalized = function (scope) {
|
||||
var res = fn(scope || {});
|
||||
var normalized = function () {
|
||||
var res = arguments.length ? fn.apply(null, arguments) : fn({});
|
||||
res = res && typeof res === 'object' && !Array.isArray(res)
|
||||
? [res] // single vnode
|
||||
: normalizeChildren(res);
|
||||
@ -5373,7 +5379,7 @@ Object.defineProperty(Vue, 'FunctionalRenderContext', {
|
||||
value: FunctionalRenderContext
|
||||
});
|
||||
|
||||
Vue.version = '2.6.4';
|
||||
Vue.version = '2.6.5';
|
||||
|
||||
/* */
|
||||
|
||||
@ -7459,9 +7465,17 @@ function add$1 (
|
||||
var original = handler;
|
||||
handler = original._wrapper = function (e) {
|
||||
if (
|
||||
// no bubbling, should always fire.
|
||||
// this is just a safety net in case event.timeStamp is unreliable in
|
||||
// certain weird environments...
|
||||
e.target === e.currentTarget ||
|
||||
// event is fired after handler attachment
|
||||
e.timeStamp >= attachedTimestamp ||
|
||||
// #9462 bail for iOS 9 bug: event.timeStamp is 0 after history.pushState
|
||||
e.timeStamp === 0 ||
|
||||
// #9448 bail if event is fired in another document in a multi-page
|
||||
// electron/nw.js app
|
||||
// electron/nw.js app, since event.timeStamp will be using a different
|
||||
// starting reference
|
||||
e.target.ownerDocument !== document
|
||||
) {
|
||||
return original.apply(this, arguments)
|
||||
|
4
dist/vue.common.prod.js
vendored
4
dist/vue.common.prod.js
vendored
File diff suppressed because one or more lines are too long
28
dist/vue.esm.browser.js
vendored
28
dist/vue.esm.browser.js
vendored
@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* Vue.js v2.6.4
|
||||
* Vue.js v2.6.5
|
||||
* (c) 2014-2019 Evan You
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
@ -2567,8 +2567,14 @@ function normalizeScopedSlots (
|
||||
} else if (slots._normalized) {
|
||||
// fast path 1: child component re-render only, parent did not change
|
||||
return slots._normalized
|
||||
} else if (slots.$stable && prevSlots && prevSlots !== emptyObject) {
|
||||
// fast path 2: stable scoped slots, only need to normalize once
|
||||
} else if (
|
||||
slots.$stable &&
|
||||
prevSlots &&
|
||||
prevSlots !== emptyObject &&
|
||||
Object.keys(normalSlots).length === 0
|
||||
) {
|
||||
// fast path 2: stable scoped slots w/ no normal slots to proxy,
|
||||
// only need to normalize once
|
||||
return prevSlots
|
||||
} else {
|
||||
res = {};
|
||||
@ -2594,8 +2600,8 @@ function normalizeScopedSlots (
|
||||
}
|
||||
|
||||
function normalizeScopedSlot(normalSlots, key, fn) {
|
||||
const normalized = scope => {
|
||||
let res = fn(scope || {});
|
||||
const normalized = function () {
|
||||
let res = arguments.length ? fn.apply(null, arguments) : fn({});
|
||||
res = res && typeof res === 'object' && !Array.isArray(res)
|
||||
? [res] // single vnode
|
||||
: normalizeChildren(res);
|
||||
@ -5404,7 +5410,7 @@ Object.defineProperty(Vue, 'FunctionalRenderContext', {
|
||||
value: FunctionalRenderContext
|
||||
});
|
||||
|
||||
Vue.version = '2.6.4';
|
||||
Vue.version = '2.6.5';
|
||||
|
||||
/* */
|
||||
|
||||
@ -7482,9 +7488,17 @@ function add$1 (
|
||||
const original = handler;
|
||||
handler = original._wrapper = function (e) {
|
||||
if (
|
||||
// no bubbling, should always fire.
|
||||
// this is just a safety net in case event.timeStamp is unreliable in
|
||||
// certain weird environments...
|
||||
e.target === e.currentTarget ||
|
||||
// event is fired after handler attachment
|
||||
e.timeStamp >= attachedTimestamp ||
|
||||
// #9462 bail for iOS 9 bug: event.timeStamp is 0 after history.pushState
|
||||
e.timeStamp === 0 ||
|
||||
// #9448 bail if event is fired in another document in a multi-page
|
||||
// electron/nw.js app
|
||||
// electron/nw.js app, since event.timeStamp will be using a different
|
||||
// starting reference
|
||||
e.target.ownerDocument !== document
|
||||
) {
|
||||
return original.apply(this, arguments)
|
||||
|
4
dist/vue.esm.browser.min.js
vendored
4
dist/vue.esm.browser.min.js
vendored
File diff suppressed because one or more lines are too long
28
dist/vue.esm.js
vendored
28
dist/vue.esm.js
vendored
@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* Vue.js v2.6.4
|
||||
* Vue.js v2.6.5
|
||||
* (c) 2014-2019 Evan You
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
@ -2545,8 +2545,14 @@ function normalizeScopedSlots (
|
||||
} else if (slots._normalized) {
|
||||
// fast path 1: child component re-render only, parent did not change
|
||||
return slots._normalized
|
||||
} else if (slots.$stable && prevSlots && prevSlots !== emptyObject) {
|
||||
// fast path 2: stable scoped slots, only need to normalize once
|
||||
} else if (
|
||||
slots.$stable &&
|
||||
prevSlots &&
|
||||
prevSlots !== emptyObject &&
|
||||
Object.keys(normalSlots).length === 0
|
||||
) {
|
||||
// fast path 2: stable scoped slots w/ no normal slots to proxy,
|
||||
// only need to normalize once
|
||||
return prevSlots
|
||||
} else {
|
||||
res = {};
|
||||
@ -2572,8 +2578,8 @@ function normalizeScopedSlots (
|
||||
}
|
||||
|
||||
function normalizeScopedSlot(normalSlots, key, fn) {
|
||||
var normalized = function (scope) {
|
||||
var res = fn(scope || {});
|
||||
var normalized = function () {
|
||||
var res = arguments.length ? fn.apply(null, arguments) : fn({});
|
||||
res = res && typeof res === 'object' && !Array.isArray(res)
|
||||
? [res] // single vnode
|
||||
: normalizeChildren(res);
|
||||
@ -5393,7 +5399,7 @@ Object.defineProperty(Vue, 'FunctionalRenderContext', {
|
||||
value: FunctionalRenderContext
|
||||
});
|
||||
|
||||
Vue.version = '2.6.4';
|
||||
Vue.version = '2.6.5';
|
||||
|
||||
/* */
|
||||
|
||||
@ -7481,9 +7487,17 @@ function add$1 (
|
||||
var original = handler;
|
||||
handler = original._wrapper = function (e) {
|
||||
if (
|
||||
// no bubbling, should always fire.
|
||||
// this is just a safety net in case event.timeStamp is unreliable in
|
||||
// certain weird environments...
|
||||
e.target === e.currentTarget ||
|
||||
// event is fired after handler attachment
|
||||
e.timeStamp >= attachedTimestamp ||
|
||||
// #9462 bail for iOS 9 bug: event.timeStamp is 0 after history.pushState
|
||||
e.timeStamp === 0 ||
|
||||
// #9448 bail if event is fired in another document in a multi-page
|
||||
// electron/nw.js app
|
||||
// electron/nw.js app, since event.timeStamp will be using a different
|
||||
// starting reference
|
||||
e.target.ownerDocument !== document
|
||||
) {
|
||||
return original.apply(this, arguments)
|
||||
|
28
dist/vue.js
vendored
28
dist/vue.js
vendored
@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* Vue.js v2.6.4
|
||||
* Vue.js v2.6.5
|
||||
* (c) 2014-2019 Evan You
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
@ -2543,8 +2543,14 @@
|
||||
} else if (slots._normalized) {
|
||||
// fast path 1: child component re-render only, parent did not change
|
||||
return slots._normalized
|
||||
} else if (slots.$stable && prevSlots && prevSlots !== emptyObject) {
|
||||
// fast path 2: stable scoped slots, only need to normalize once
|
||||
} else if (
|
||||
slots.$stable &&
|
||||
prevSlots &&
|
||||
prevSlots !== emptyObject &&
|
||||
Object.keys(normalSlots).length === 0
|
||||
) {
|
||||
// fast path 2: stable scoped slots w/ no normal slots to proxy,
|
||||
// only need to normalize once
|
||||
return prevSlots
|
||||
} else {
|
||||
res = {};
|
||||
@ -2570,8 +2576,8 @@
|
||||
}
|
||||
|
||||
function normalizeScopedSlot(normalSlots, key, fn) {
|
||||
var normalized = function (scope) {
|
||||
var res = fn(scope || {});
|
||||
var normalized = function () {
|
||||
var res = arguments.length ? fn.apply(null, arguments) : fn({});
|
||||
res = res && typeof res === 'object' && !Array.isArray(res)
|
||||
? [res] // single vnode
|
||||
: normalizeChildren(res);
|
||||
@ -5377,7 +5383,7 @@
|
||||
value: FunctionalRenderContext
|
||||
});
|
||||
|
||||
Vue.version = '2.6.4';
|
||||
Vue.version = '2.6.5';
|
||||
|
||||
/* */
|
||||
|
||||
@ -7463,9 +7469,17 @@
|
||||
var original = handler;
|
||||
handler = original._wrapper = function (e) {
|
||||
if (
|
||||
// no bubbling, should always fire.
|
||||
// this is just a safety net in case event.timeStamp is unreliable in
|
||||
// certain weird environments...
|
||||
e.target === e.currentTarget ||
|
||||
// event is fired after handler attachment
|
||||
e.timeStamp >= attachedTimestamp ||
|
||||
// #9462 bail for iOS 9 bug: event.timeStamp is 0 after history.pushState
|
||||
e.timeStamp === 0 ||
|
||||
// #9448 bail if event is fired in another document in a multi-page
|
||||
// electron/nw.js app
|
||||
// electron/nw.js app, since event.timeStamp will be using a different
|
||||
// starting reference
|
||||
e.target.ownerDocument !== document
|
||||
) {
|
||||
return original.apply(this, arguments)
|
||||
|
4
dist/vue.min.js
vendored
4
dist/vue.min.js
vendored
File diff suppressed because one or more lines are too long
28
dist/vue.runtime.common.dev.js
vendored
28
dist/vue.runtime.common.dev.js
vendored
@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* Vue.js v2.6.4
|
||||
* Vue.js v2.6.5
|
||||
* (c) 2014-2019 Evan You
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
@ -2530,8 +2530,14 @@ function normalizeScopedSlots (
|
||||
} else if (slots._normalized) {
|
||||
// fast path 1: child component re-render only, parent did not change
|
||||
return slots._normalized
|
||||
} else if (slots.$stable && prevSlots && prevSlots !== emptyObject) {
|
||||
// fast path 2: stable scoped slots, only need to normalize once
|
||||
} else if (
|
||||
slots.$stable &&
|
||||
prevSlots &&
|
||||
prevSlots !== emptyObject &&
|
||||
Object.keys(normalSlots).length === 0
|
||||
) {
|
||||
// fast path 2: stable scoped slots w/ no normal slots to proxy,
|
||||
// only need to normalize once
|
||||
return prevSlots
|
||||
} else {
|
||||
res = {};
|
||||
@ -2557,8 +2563,8 @@ function normalizeScopedSlots (
|
||||
}
|
||||
|
||||
function normalizeScopedSlot(normalSlots, key, fn) {
|
||||
var normalized = function (scope) {
|
||||
var res = fn(scope || {});
|
||||
var normalized = function () {
|
||||
var res = arguments.length ? fn.apply(null, arguments) : fn({});
|
||||
res = res && typeof res === 'object' && !Array.isArray(res)
|
||||
? [res] // single vnode
|
||||
: normalizeChildren(res);
|
||||
@ -5364,7 +5370,7 @@ Object.defineProperty(Vue, 'FunctionalRenderContext', {
|
||||
value: FunctionalRenderContext
|
||||
});
|
||||
|
||||
Vue.version = '2.6.4';
|
||||
Vue.version = '2.6.5';
|
||||
|
||||
/* */
|
||||
|
||||
@ -6811,9 +6817,17 @@ function add$1 (
|
||||
var original = handler;
|
||||
handler = original._wrapper = function (e) {
|
||||
if (
|
||||
// no bubbling, should always fire.
|
||||
// this is just a safety net in case event.timeStamp is unreliable in
|
||||
// certain weird environments...
|
||||
e.target === e.currentTarget ||
|
||||
// event is fired after handler attachment
|
||||
e.timeStamp >= attachedTimestamp ||
|
||||
// #9462 bail for iOS 9 bug: event.timeStamp is 0 after history.pushState
|
||||
e.timeStamp === 0 ||
|
||||
// #9448 bail if event is fired in another document in a multi-page
|
||||
// electron/nw.js app
|
||||
// electron/nw.js app, since event.timeStamp will be using a different
|
||||
// starting reference
|
||||
e.target.ownerDocument !== document
|
||||
) {
|
||||
return original.apply(this, arguments)
|
||||
|
4
dist/vue.runtime.common.prod.js
vendored
4
dist/vue.runtime.common.prod.js
vendored
File diff suppressed because one or more lines are too long
28
dist/vue.runtime.esm.js
vendored
28
dist/vue.runtime.esm.js
vendored
@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* Vue.js v2.6.4
|
||||
* Vue.js v2.6.5
|
||||
* (c) 2014-2019 Evan You
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
@ -2536,8 +2536,14 @@ function normalizeScopedSlots (
|
||||
} else if (slots._normalized) {
|
||||
// fast path 1: child component re-render only, parent did not change
|
||||
return slots._normalized
|
||||
} else if (slots.$stable && prevSlots && prevSlots !== emptyObject) {
|
||||
// fast path 2: stable scoped slots, only need to normalize once
|
||||
} else if (
|
||||
slots.$stable &&
|
||||
prevSlots &&
|
||||
prevSlots !== emptyObject &&
|
||||
Object.keys(normalSlots).length === 0
|
||||
) {
|
||||
// fast path 2: stable scoped slots w/ no normal slots to proxy,
|
||||
// only need to normalize once
|
||||
return prevSlots
|
||||
} else {
|
||||
res = {};
|
||||
@ -2563,8 +2569,8 @@ function normalizeScopedSlots (
|
||||
}
|
||||
|
||||
function normalizeScopedSlot(normalSlots, key, fn) {
|
||||
var normalized = function (scope) {
|
||||
var res = fn(scope || {});
|
||||
var normalized = function () {
|
||||
var res = arguments.length ? fn.apply(null, arguments) : fn({});
|
||||
res = res && typeof res === 'object' && !Array.isArray(res)
|
||||
? [res] // single vnode
|
||||
: normalizeChildren(res);
|
||||
@ -5384,7 +5390,7 @@ Object.defineProperty(Vue, 'FunctionalRenderContext', {
|
||||
value: FunctionalRenderContext
|
||||
});
|
||||
|
||||
Vue.version = '2.6.4';
|
||||
Vue.version = '2.6.5';
|
||||
|
||||
/* */
|
||||
|
||||
@ -6833,9 +6839,17 @@ function add$1 (
|
||||
var original = handler;
|
||||
handler = original._wrapper = function (e) {
|
||||
if (
|
||||
// no bubbling, should always fire.
|
||||
// this is just a safety net in case event.timeStamp is unreliable in
|
||||
// certain weird environments...
|
||||
e.target === e.currentTarget ||
|
||||
// event is fired after handler attachment
|
||||
e.timeStamp >= attachedTimestamp ||
|
||||
// #9462 bail for iOS 9 bug: event.timeStamp is 0 after history.pushState
|
||||
e.timeStamp === 0 ||
|
||||
// #9448 bail if event is fired in another document in a multi-page
|
||||
// electron/nw.js app
|
||||
// electron/nw.js app, since event.timeStamp will be using a different
|
||||
// starting reference
|
||||
e.target.ownerDocument !== document
|
||||
) {
|
||||
return original.apply(this, arguments)
|
||||
|
28
dist/vue.runtime.js
vendored
28
dist/vue.runtime.js
vendored
@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* Vue.js v2.6.4
|
||||
* Vue.js v2.6.5
|
||||
* (c) 2014-2019 Evan You
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
@ -2534,8 +2534,14 @@
|
||||
} else if (slots._normalized) {
|
||||
// fast path 1: child component re-render only, parent did not change
|
||||
return slots._normalized
|
||||
} else if (slots.$stable && prevSlots && prevSlots !== emptyObject) {
|
||||
// fast path 2: stable scoped slots, only need to normalize once
|
||||
} else if (
|
||||
slots.$stable &&
|
||||
prevSlots &&
|
||||
prevSlots !== emptyObject &&
|
||||
Object.keys(normalSlots).length === 0
|
||||
) {
|
||||
// fast path 2: stable scoped slots w/ no normal slots to proxy,
|
||||
// only need to normalize once
|
||||
return prevSlots
|
||||
} else {
|
||||
res = {};
|
||||
@ -2561,8 +2567,8 @@
|
||||
}
|
||||
|
||||
function normalizeScopedSlot(normalSlots, key, fn) {
|
||||
var normalized = function (scope) {
|
||||
var res = fn(scope || {});
|
||||
var normalized = function () {
|
||||
var res = arguments.length ? fn.apply(null, arguments) : fn({});
|
||||
res = res && typeof res === 'object' && !Array.isArray(res)
|
||||
? [res] // single vnode
|
||||
: normalizeChildren(res);
|
||||
@ -5368,7 +5374,7 @@
|
||||
value: FunctionalRenderContext
|
||||
});
|
||||
|
||||
Vue.version = '2.6.4';
|
||||
Vue.version = '2.6.5';
|
||||
|
||||
/* */
|
||||
|
||||
@ -6815,9 +6821,17 @@
|
||||
var original = handler;
|
||||
handler = original._wrapper = function (e) {
|
||||
if (
|
||||
// no bubbling, should always fire.
|
||||
// this is just a safety net in case event.timeStamp is unreliable in
|
||||
// certain weird environments...
|
||||
e.target === e.currentTarget ||
|
||||
// event is fired after handler attachment
|
||||
e.timeStamp >= attachedTimestamp ||
|
||||
// #9462 bail for iOS 9 bug: event.timeStamp is 0 after history.pushState
|
||||
e.timeStamp === 0 ||
|
||||
// #9448 bail if event is fired in another document in a multi-page
|
||||
// electron/nw.js app
|
||||
// electron/nw.js app, since event.timeStamp will be using a different
|
||||
// starting reference
|
||||
e.target.ownerDocument !== document
|
||||
) {
|
||||
return original.apply(this, arguments)
|
||||
|
4
dist/vue.runtime.min.js
vendored
4
dist/vue.runtime.min.js
vendored
File diff suppressed because one or more lines are too long
@ -7509,8 +7509,14 @@
|
||||
} else if (slots._normalized) {
|
||||
// fast path 1: child component re-render only, parent did not change
|
||||
return slots._normalized
|
||||
} else if (slots.$stable && prevSlots && prevSlots !== emptyObject) {
|
||||
// fast path 2: stable scoped slots, only need to normalize once
|
||||
} else if (
|
||||
slots.$stable &&
|
||||
prevSlots &&
|
||||
prevSlots !== emptyObject &&
|
||||
Object.keys(normalSlots).length === 0
|
||||
) {
|
||||
// fast path 2: stable scoped slots w/ no normal slots to proxy,
|
||||
// only need to normalize once
|
||||
return prevSlots
|
||||
} else {
|
||||
res = {};
|
||||
@ -7536,8 +7542,8 @@
|
||||
}
|
||||
|
||||
function normalizeScopedSlot(normalSlots, key, fn) {
|
||||
var normalized = function (scope) {
|
||||
var res = fn(scope || {});
|
||||
var normalized = function () {
|
||||
var res = arguments.length ? fn.apply(null, arguments) : fn({});
|
||||
res = res && typeof res === 'object' && !Array.isArray(res)
|
||||
? [res] // single vnode
|
||||
: normalizeChildren(res);
|
||||
|
@ -7259,8 +7259,14 @@ function normalizeScopedSlots (
|
||||
} else if (slots._normalized) {
|
||||
// fast path 1: child component re-render only, parent did not change
|
||||
return slots._normalized
|
||||
} else if (slots.$stable && prevSlots && prevSlots !== emptyObject) {
|
||||
// fast path 2: stable scoped slots, only need to normalize once
|
||||
} else if (
|
||||
slots.$stable &&
|
||||
prevSlots &&
|
||||
prevSlots !== emptyObject &&
|
||||
Object.keys(normalSlots).length === 0
|
||||
) {
|
||||
// fast path 2: stable scoped slots w/ no normal slots to proxy,
|
||||
// only need to normalize once
|
||||
return prevSlots
|
||||
} else {
|
||||
res = {};
|
||||
@ -7286,8 +7292,8 @@ function normalizeScopedSlots (
|
||||
}
|
||||
|
||||
function normalizeScopedSlot(normalSlots, key, fn) {
|
||||
var normalized = function (scope) {
|
||||
var res = fn(scope || {});
|
||||
var normalized = function () {
|
||||
var res = arguments.length ? fn.apply(null, arguments) : fn({});
|
||||
res = res && typeof res === 'object' && !Array.isArray(res)
|
||||
? [res] // single vnode
|
||||
: normalizeChildren(res);
|
||||
|
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "vue-server-renderer",
|
||||
"version": "2.6.4",
|
||||
"version": "2.6.5",
|
||||
"description": "server renderer for Vue 2.0",
|
||||
"main": "index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "vue-template-compiler",
|
||||
"version": "2.6.4",
|
||||
"version": "2.6.5",
|
||||
"description": "template compiler for Vue 2.0",
|
||||
"main": "index.js",
|
||||
"unpkg": "browser.js",
|
||||
|
Loading…
Reference in New Issue
Block a user