Browse Source

build: build 2.5.6

dev
Evan You 7 years ago
parent
commit
7f31ec9ab7
  1. 32
      dist/vue.common.js
  2. 32
      dist/vue.esm.js
  3. 32
      dist/vue.js
  4. 4
      dist/vue.min.js
  5. 4
      dist/vue.runtime.common.js
  6. 4
      dist/vue.runtime.esm.js
  7. 4
      dist/vue.runtime.js
  8. 4
      dist/vue.runtime.min.js
  9. 28
      packages/vue-server-renderer/basic.js
  10. 28
      packages/vue-server-renderer/build.js
  11. 2
      packages/vue-server-renderer/package.json
  12. 28
      packages/vue-template-compiler/browser.js
  13. 28
      packages/vue-template-compiler/build.js
  14. 2
      packages/vue-template-compiler/package.json

32
dist/vue.common.js

@ -1,5 +1,5 @@
/*!
* Vue.js v2.5.5
* Vue.js v2.5.6
* (c) 2014-2017 Evan You
* Released under the MIT License.
*/
@ -4968,7 +4968,7 @@ Object.defineProperty(Vue$3.prototype, '$ssrContext', {
}
});
Vue$3.version = '2.5.5';
Vue$3.version = '2.5.6';
/* */
@ -6675,7 +6675,6 @@ function model (
var modifiers = dir.modifiers;
var tag = el.tag;
var type = el.attrsMap.type;
var attrsMap = el.attrsMap;
if (process.env.NODE_ENV !== 'production') {
// inputs with type="file" are read only and setting the input's
@ -6686,20 +6685,6 @@ function model (
"File inputs are read only. Use a v-on:change listener instead."
);
}
// warn if v-bind:value conflicts with v-model
if (
(attrsMap['v-bind:value'] || attrsMap[':value']) &&
type !== 'checkbox' &&
type !== 'radio' &&
tag !== 'select'
) {
var vBindValue = attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
warn$1(
vBindValue + " conflicts with v-model on the same element " +
'because the latter already expands to a value binding internally'
);
}
}
if (el.component) {
@ -6797,6 +6782,19 @@ function genDefaultModel (
modifiers
) {
var type = el.attrsMap.type;
// warn if v-bind:value conflicts with v-model
if (process.env.NODE_ENV !== 'production') {
var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];
if (value$1) {
var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
warn$1(
binding + "=\"" + value$1 + "\" conflicts with v-model on the same element " +
'because the latter already expands to a value binding internally'
);
}
}
var ref = modifiers || {};
var lazy = ref.lazy;
var number = ref.number;

32
dist/vue.esm.js

@ -1,5 +1,5 @@
/*!
* Vue.js v2.5.5
* Vue.js v2.5.6
* (c) 2014-2017 Evan You
* Released under the MIT License.
*/
@ -4966,7 +4966,7 @@ Object.defineProperty(Vue$3.prototype, '$ssrContext', {
}
});
Vue$3.version = '2.5.5';
Vue$3.version = '2.5.6';
/* */
@ -6673,7 +6673,6 @@ function model (
var modifiers = dir.modifiers;
var tag = el.tag;
var type = el.attrsMap.type;
var attrsMap = el.attrsMap;
if (process.env.NODE_ENV !== 'production') {
// inputs with type="file" are read only and setting the input's
@ -6684,20 +6683,6 @@ function model (
"File inputs are read only. Use a v-on:change listener instead."
);
}
// warn if v-bind:value conflicts with v-model
if (
(attrsMap['v-bind:value'] || attrsMap[':value']) &&
type !== 'checkbox' &&
type !== 'radio' &&
tag !== 'select'
) {
var vBindValue = attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
warn$1(
vBindValue + " conflicts with v-model on the same element " +
'because the latter already expands to a value binding internally'
);
}
}
if (el.component) {
@ -6795,6 +6780,19 @@ function genDefaultModel (
modifiers
) {
var type = el.attrsMap.type;
// warn if v-bind:value conflicts with v-model
if (process.env.NODE_ENV !== 'production') {
var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];
if (value$1) {
var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
warn$1(
binding + "=\"" + value$1 + "\" conflicts with v-model on the same element " +
'because the latter already expands to a value binding internally'
);
}
}
var ref = modifiers || {};
var lazy = ref.lazy;
var number = ref.number;

32
dist/vue.js

@ -1,5 +1,5 @@
/*!
* Vue.js v2.5.5
* Vue.js v2.5.6
* (c) 2014-2017 Evan You
* Released under the MIT License.
*/
@ -4957,7 +4957,7 @@ Object.defineProperty(Vue$3.prototype, '$ssrContext', {
}
});
Vue$3.version = '2.5.5';
Vue$3.version = '2.5.6';
/* */
@ -6664,7 +6664,6 @@ function model (
var modifiers = dir.modifiers;
var tag = el.tag;
var type = el.attrsMap.type;
var attrsMap = el.attrsMap;
{
// inputs with type="file" are read only and setting the input's
@ -6675,20 +6674,6 @@ function model (
"File inputs are read only. Use a v-on:change listener instead."
);
}
// warn if v-bind:value conflicts with v-model
if (
(attrsMap['v-bind:value'] || attrsMap[':value']) &&
type !== 'checkbox' &&
type !== 'radio' &&
tag !== 'select'
) {
var vBindValue = attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
warn$1(
vBindValue + " conflicts with v-model on the same element " +
'because the latter already expands to a value binding internally'
);
}
}
if (el.component) {
@ -6786,6 +6771,19 @@ function genDefaultModel (
modifiers
) {
var type = el.attrsMap.type;
// warn if v-bind:value conflicts with v-model
{
var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];
if (value$1) {
var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
warn$1(
binding + "=\"" + value$1 + "\" conflicts with v-model on the same element " +
'because the latter already expands to a value binding internally'
);
}
}
var ref = modifiers || {};
var lazy = ref.lazy;
var number = ref.number;

4
dist/vue.min.js

File diff suppressed because one or more lines are too long

4
dist/vue.runtime.common.js

@ -1,5 +1,5 @@
/*!
* Vue.js v2.5.5
* Vue.js v2.5.6
* (c) 2014-2017 Evan You
* Released under the MIT License.
*/
@ -4964,7 +4964,7 @@ Object.defineProperty(Vue$3.prototype, '$ssrContext', {
}
});
Vue$3.version = '2.5.5';
Vue$3.version = '2.5.6';
/* */

4
dist/vue.runtime.esm.js

@ -1,5 +1,5 @@
/*!
* Vue.js v2.5.5
* Vue.js v2.5.6
* (c) 2014-2017 Evan You
* Released under the MIT License.
*/
@ -4962,7 +4962,7 @@ Object.defineProperty(Vue$3.prototype, '$ssrContext', {
}
});
Vue$3.version = '2.5.5';
Vue$3.version = '2.5.6';
/* */

4
dist/vue.runtime.js

@ -1,5 +1,5 @@
/*!
* Vue.js v2.5.5
* Vue.js v2.5.6
* (c) 2014-2017 Evan You
* Released under the MIT License.
*/
@ -4953,7 +4953,7 @@ Object.defineProperty(Vue$3.prototype, '$ssrContext', {
}
});
Vue$3.version = '2.5.5';
Vue$3.version = '2.5.6';
/* */

4
dist/vue.runtime.min.js

File diff suppressed because one or more lines are too long

28
packages/vue-server-renderer/basic.js

@ -4316,7 +4316,6 @@ function model$2 (
var modifiers = dir.modifiers;
var tag = el.tag;
var type = el.attrsMap.type;
var attrsMap = el.attrsMap;
{
// inputs with type="file" are read only and setting the input's
@ -4327,20 +4326,6 @@ function model$2 (
"File inputs are read only. Use a v-on:change listener instead."
);
}
// warn if v-bind:value conflicts with v-model
if (
(attrsMap['v-bind:value'] || attrsMap[':value']) &&
type !== 'checkbox' &&
type !== 'radio' &&
tag !== 'select'
) {
var vBindValue = attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
warn$2(
vBindValue + " conflicts with v-model on the same element " +
'because the latter already expands to a value binding internally'
);
}
}
if (el.component) {
@ -4438,6 +4423,19 @@ function genDefaultModel (
modifiers
) {
var type = el.attrsMap.type;
// warn if v-bind:value conflicts with v-model
{
var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];
if (value$1) {
var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
warn$2(
binding + "=\"" + value$1 + "\" conflicts with v-model on the same element " +
'because the latter already expands to a value binding internally'
);
}
}
var ref = modifiers || {};
var lazy = ref.lazy;
var number = ref.number;

28
packages/vue-server-renderer/build.js

@ -4055,7 +4055,6 @@ function model$2 (
var modifiers = dir.modifiers;
var tag = el.tag;
var type = el.attrsMap.type;
var attrsMap = el.attrsMap;
if (process.env.NODE_ENV !== 'production') {
// inputs with type="file" are read only and setting the input's
@ -4066,20 +4065,6 @@ function model$2 (
"File inputs are read only. Use a v-on:change listener instead."
);
}
// warn if v-bind:value conflicts with v-model
if (
(attrsMap['v-bind:value'] || attrsMap[':value']) &&
type !== 'checkbox' &&
type !== 'radio' &&
tag !== 'select'
) {
var vBindValue = attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
warn$2(
vBindValue + " conflicts with v-model on the same element " +
'because the latter already expands to a value binding internally'
);
}
}
if (el.component) {
@ -4177,6 +4162,19 @@ function genDefaultModel (
modifiers
) {
var type = el.attrsMap.type;
// warn if v-bind:value conflicts with v-model
if (process.env.NODE_ENV !== 'production') {
var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];
if (value$1) {
var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
warn$2(
binding + "=\"" + value$1 + "\" conflicts with v-model on the same element " +
'because the latter already expands to a value binding internally'
);
}
}
var ref = modifiers || {};
var lazy = ref.lazy;
var number = ref.number;

2
packages/vue-server-renderer/package.json

@ -1,6 +1,6 @@
{
"name": "vue-server-renderer",
"version": "2.5.5",
"version": "2.5.6",
"description": "server renderer for Vue 2.0",
"main": "index.js",
"types": "types/index.d.ts",

28
packages/vue-template-compiler/browser.js

@ -3386,7 +3386,6 @@ function model$1 (
var modifiers = dir.modifiers;
var tag = el.tag;
var type = el.attrsMap.type;
var attrsMap = el.attrsMap;
{
// inputs with type="file" are read only and setting the input's
@ -3397,20 +3396,6 @@ function model$1 (
"File inputs are read only. Use a v-on:change listener instead."
);
}
// warn if v-bind:value conflicts with v-model
if (
(attrsMap['v-bind:value'] || attrsMap[':value']) &&
type !== 'checkbox' &&
type !== 'radio' &&
tag !== 'select'
) {
var vBindValue = attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
warn$2(
vBindValue + " conflicts with v-model on the same element " +
'because the latter already expands to a value binding internally'
);
}
}
if (el.component) {
@ -3508,6 +3493,19 @@ function genDefaultModel (
modifiers
) {
var type = el.attrsMap.type;
// warn if v-bind:value conflicts with v-model
{
var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];
if (value$1) {
var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
warn$2(
binding + "=\"" + value$1 + "\" conflicts with v-model on the same element " +
'because the latter already expands to a value binding internally'
);
}
}
var ref = modifiers || {};
var lazy = ref.lazy;
var number = ref.number;

28
packages/vue-template-compiler/build.js

@ -2988,7 +2988,6 @@ function model$1 (
var modifiers = dir.modifiers;
var tag = el.tag;
var type = el.attrsMap.type;
var attrsMap = el.attrsMap;
if (process.env.NODE_ENV !== 'production') {
// inputs with type="file" are read only and setting the input's
@ -2999,20 +2998,6 @@ function model$1 (
"File inputs are read only. Use a v-on:change listener instead."
);
}
// warn if v-bind:value conflicts with v-model
if (
(attrsMap['v-bind:value'] || attrsMap[':value']) &&
type !== 'checkbox' &&
type !== 'radio' &&
tag !== 'select'
) {
var vBindValue = attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
warn$2(
vBindValue + " conflicts with v-model on the same element " +
'because the latter already expands to a value binding internally'
);
}
}
if (el.component) {
@ -3110,6 +3095,19 @@ function genDefaultModel (
modifiers
) {
var type = el.attrsMap.type;
// warn if v-bind:value conflicts with v-model
if (process.env.NODE_ENV !== 'production') {
var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];
if (value$1) {
var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';
warn$2(
binding + "=\"" + value$1 + "\" conflicts with v-model on the same element " +
'because the latter already expands to a value binding internally'
);
}
}
var ref = modifiers || {};
var lazy = ref.lazy;
var number = ref.number;

2
packages/vue-template-compiler/package.json

@ -1,6 +1,6 @@
{
"name": "vue-template-compiler",
"version": "2.5.5",
"version": "2.5.6",
"description": "template compiler for Vue 2.0",
"main": "index.js",
"unpkg": "browser.js",

Loading…
Cancel
Save