mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
build: compile 1.4.1
This commit is contained in:
parent
1ad284bb56
commit
367878b198
6
.github_changelog_generator
Normal file
6
.github_changelog_generator
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
project=vant-weapp
|
||||||
|
user=youzan
|
||||||
|
since-tag=v1.3.0
|
||||||
|
token=0935f6bd6b40169f1bc45bba0782e309d4a13017
|
||||||
|
exclude-labels=duplicate,question,invalid,wontfix
|
||||||
|
issues=false
|
10
dist/area/index.js
vendored
10
dist/area/index.js
vendored
@ -166,18 +166,19 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
const stack = [];
|
const stack = [];
|
||||||
const indexes = [];
|
const indexes = [];
|
||||||
if (this.data.columnsNum >= 1) {
|
const { columnsNum } = this.data;
|
||||||
|
if (columnsNum >= 1) {
|
||||||
stack.push(picker.setColumnValues(0, province, false));
|
stack.push(picker.setColumnValues(0, province, false));
|
||||||
indexes.push(this.getIndex('province', code));
|
indexes.push(this.getIndex('province', code));
|
||||||
}
|
}
|
||||||
if (this.data.columnsNum >= 2) {
|
if (columnsNum >= 2) {
|
||||||
stack.push(picker.setColumnValues(1, city, false));
|
stack.push(picker.setColumnValues(1, city, false));
|
||||||
indexes.push(this.getIndex('province', code));
|
indexes.push(this.getIndex('city', code));
|
||||||
if (city.length && code.slice(2, 4) === '00') {
|
if (city.length && code.slice(2, 4) === '00') {
|
||||||
[{ code }] = city;
|
[{ code }] = city;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (this.data.columnsNum === 3) {
|
if (columnsNum === 3) {
|
||||||
stack.push(
|
stack.push(
|
||||||
picker.setColumnValues(
|
picker.setColumnValues(
|
||||||
2,
|
2,
|
||||||
@ -185,6 +186,7 @@ VantComponent({
|
|||||||
false
|
false
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
indexes.push(this.getIndex('county', code));
|
||||||
}
|
}
|
||||||
return Promise.all(stack)
|
return Promise.all(stack)
|
||||||
.catch(() => {})
|
.catch(() => {})
|
||||||
|
2
dist/picker/shared.js
vendored
2
dist/picker/shared.js
vendored
@ -12,7 +12,7 @@ export const pickerProps = {
|
|||||||
},
|
},
|
||||||
visibleItemCount: {
|
visibleItemCount: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 5,
|
value: 6,
|
||||||
},
|
},
|
||||||
itemHeight: {
|
itemHeight: {
|
||||||
type: Number,
|
type: Number,
|
||||||
|
12
dist/slider/index.js
vendored
12
dist/slider/index.js
vendored
@ -23,11 +23,15 @@ VantComponent({
|
|||||||
value: {
|
value: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 0,
|
value: 0,
|
||||||
observer: 'updateValue',
|
observer(val) {
|
||||||
|
if (val !== this.value) {
|
||||||
|
this.updateValue(val);
|
||||||
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
barHeight: {
|
barHeight: {
|
||||||
type: null,
|
type: null,
|
||||||
value: '2px',
|
value: 2,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@ -37,7 +41,7 @@ VantComponent({
|
|||||||
onTouchStart(event) {
|
onTouchStart(event) {
|
||||||
if (this.data.disabled) return;
|
if (this.data.disabled) return;
|
||||||
this.touchStart(event);
|
this.touchStart(event);
|
||||||
this.startValue = this.format(this.data.value);
|
this.startValue = this.format(this.value);
|
||||||
this.dragStatus = 'start';
|
this.dragStatus = 'start';
|
||||||
},
|
},
|
||||||
onTouchMove(event) {
|
onTouchMove(event) {
|
||||||
@ -73,8 +77,8 @@ VantComponent({
|
|||||||
value = this.format(value);
|
value = this.format(value);
|
||||||
const { min } = this.data;
|
const { min } = this.data;
|
||||||
const width = `${((value - min) * 100) / this.getRange()}%`;
|
const width = `${((value - min) * 100) / this.getRange()}%`;
|
||||||
|
this.value = value;
|
||||||
this.setData({
|
this.setData({
|
||||||
value,
|
|
||||||
barStyle: `
|
barStyle: `
|
||||||
width: ${width};
|
width: ${width};
|
||||||
${drag ? 'transition: none;' : ''}
|
${drag ? 'transition: none;' : ''}
|
||||||
|
2
dist/toast/index.wxss
vendored
2
dist/toast/index.wxss
vendored
@ -1 +1 @@
|
|||||||
@import '../common/index.wxss';.van-toast{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:initial;color:#fff;color:var(--toast-text-color,#fff);font-size:14px;font-size:var(--toast-font-size,14px);line-height:20px;line-height:var(--toast-line-height,20px);white-space:pre-wrap;word-wrap:break-word;background-color:rgba(50,50,51,.88);background-color:var(--toast-background-color,rgba(50,50,51,.88));border-radius:4px;border-radius:var(--toast-border-radius,4px)}.van-toast__container{position:fixed;top:50%;left:50%;width:-webkit-fit-content;width:fit-content;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-width:70%;max-width:var(--toast-max-width,70%)}.van-toast--text{min-width:96px;min-width:var(--toast-text-min-width,96px);padding:8px 12px;padding:var(--toast-text-padding,8px 12px)}.van-toast--icon{width:90px;width:var(--toast-default-width,90px);min-height:90px;min-height:var(--toast-default-min-height,90px);padding:16px;padding:var(--toast-default-padding,16px)}.van-toast--icon .van-toast__icon{font-size:48px;font-size:var(--toast-icon-size,48px)}.van-toast--icon .van-toast__text{padding-top:8px}.van-toast__loading{margin:10px 0}.van-toast--top{-webkit-transform:translateY(-30vh);transform:translateY(-30vh)}.van-toast--bottom{-webkit-transform:translateY(30vh);transform:translateY(30vh)}
|
@import '../common/index.wxss';.van-toast{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:initial;color:#fff;color:var(--toast-text-color,#fff);font-size:14px;font-size:var(--toast-font-size,14px);line-height:20px;line-height:var(--toast-line-height,20px);white-space:pre-wrap;word-wrap:break-word;background-color:rgba(50,50,51,.88);background-color:var(--toast-background-color,rgba(50,50,51,.88));border-radius:8px;border-radius:var(--toast-border-radius,8px)}.van-toast__container{position:fixed;top:50%;left:50%;width:-webkit-fit-content;width:fit-content;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-width:70%;max-width:var(--toast-max-width,70%)}.van-toast--text{min-width:96px;min-width:var(--toast-text-min-width,96px);padding:8px 12px;padding:var(--toast-text-padding,8px 12px)}.van-toast--icon{width:90px;width:var(--toast-default-width,90px);min-height:90px;min-height:var(--toast-default-min-height,90px);padding:16px;padding:var(--toast-default-padding,16px)}.van-toast--icon .van-toast__icon{font-size:48px;font-size:var(--toast-icon-size,48px)}.van-toast--icon .van-toast__text{padding-top:8px}.van-toast__loading{margin:10px 0}.van-toast--top{-webkit-transform:translateY(-30vh);transform:translateY(-30vh)}.van-toast--bottom{-webkit-transform:translateY(30vh);transform:translateY(30vh)}
|
@ -192,18 +192,19 @@ component_1.VantComponent({
|
|||||||
}
|
}
|
||||||
var stack = [];
|
var stack = [];
|
||||||
var indexes = [];
|
var indexes = [];
|
||||||
if (this.data.columnsNum >= 1) {
|
var columnsNum = this.data.columnsNum;
|
||||||
|
if (columnsNum >= 1) {
|
||||||
stack.push(picker.setColumnValues(0, province, false));
|
stack.push(picker.setColumnValues(0, province, false));
|
||||||
indexes.push(this.getIndex('province', code));
|
indexes.push(this.getIndex('province', code));
|
||||||
}
|
}
|
||||||
if (this.data.columnsNum >= 2) {
|
if (columnsNum >= 2) {
|
||||||
stack.push(picker.setColumnValues(1, city, false));
|
stack.push(picker.setColumnValues(1, city, false));
|
||||||
indexes.push(this.getIndex('province', code));
|
indexes.push(this.getIndex('city', code));
|
||||||
if (city.length && code.slice(2, 4) === '00') {
|
if (city.length && code.slice(2, 4) === '00') {
|
||||||
code = city[0].code;
|
code = city[0].code;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (this.data.columnsNum === 3) {
|
if (columnsNum === 3) {
|
||||||
stack.push(
|
stack.push(
|
||||||
picker.setColumnValues(
|
picker.setColumnValues(
|
||||||
2,
|
2,
|
||||||
@ -211,6 +212,7 @@ component_1.VantComponent({
|
|||||||
false
|
false
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
indexes.push(this.getIndex('county', code));
|
||||||
}
|
}
|
||||||
return Promise.all(stack)
|
return Promise.all(stack)
|
||||||
.catch(function () {})
|
.catch(function () {})
|
||||||
|
@ -15,7 +15,7 @@ exports.pickerProps = {
|
|||||||
},
|
},
|
||||||
visibleItemCount: {
|
visibleItemCount: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 5,
|
value: 6,
|
||||||
},
|
},
|
||||||
itemHeight: {
|
itemHeight: {
|
||||||
type: Number,
|
type: Number,
|
||||||
|
@ -25,11 +25,15 @@ component_1.VantComponent({
|
|||||||
value: {
|
value: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 0,
|
value: 0,
|
||||||
observer: 'updateValue',
|
observer: function (val) {
|
||||||
|
if (val !== this.value) {
|
||||||
|
this.updateValue(val);
|
||||||
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
barHeight: {
|
barHeight: {
|
||||||
type: null,
|
type: null,
|
||||||
value: '2px',
|
value: 2,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
created: function () {
|
created: function () {
|
||||||
@ -39,7 +43,7 @@ component_1.VantComponent({
|
|||||||
onTouchStart: function (event) {
|
onTouchStart: function (event) {
|
||||||
if (this.data.disabled) return;
|
if (this.data.disabled) return;
|
||||||
this.touchStart(event);
|
this.touchStart(event);
|
||||||
this.startValue = this.format(this.data.value);
|
this.startValue = this.format(this.value);
|
||||||
this.dragStatus = 'start';
|
this.dragStatus = 'start';
|
||||||
},
|
},
|
||||||
onTouchMove: function (event) {
|
onTouchMove: function (event) {
|
||||||
@ -77,8 +81,8 @@ component_1.VantComponent({
|
|||||||
value = this.format(value);
|
value = this.format(value);
|
||||||
var min = this.data.min;
|
var min = this.data.min;
|
||||||
var width = ((value - min) * 100) / this.getRange() + '%';
|
var width = ((value - min) * 100) / this.getRange() + '%';
|
||||||
|
this.value = value;
|
||||||
this.setData({
|
this.setData({
|
||||||
value: value,
|
|
||||||
barStyle:
|
barStyle:
|
||||||
'\n width: ' +
|
'\n width: ' +
|
||||||
width +
|
width +
|
||||||
|
@ -1 +1 @@
|
|||||||
@import '../common/index.wxss';.van-toast{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:initial;color:#fff;color:var(--toast-text-color,#fff);font-size:14px;font-size:var(--toast-font-size,14px);line-height:20px;line-height:var(--toast-line-height,20px);white-space:pre-wrap;word-wrap:break-word;background-color:rgba(50,50,51,.88);background-color:var(--toast-background-color,rgba(50,50,51,.88));border-radius:4px;border-radius:var(--toast-border-radius,4px)}.van-toast__container{position:fixed;top:50%;left:50%;width:-webkit-fit-content;width:fit-content;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-width:70%;max-width:var(--toast-max-width,70%)}.van-toast--text{min-width:96px;min-width:var(--toast-text-min-width,96px);padding:8px 12px;padding:var(--toast-text-padding,8px 12px)}.van-toast--icon{width:90px;width:var(--toast-default-width,90px);min-height:90px;min-height:var(--toast-default-min-height,90px);padding:16px;padding:var(--toast-default-padding,16px)}.van-toast--icon .van-toast__icon{font-size:48px;font-size:var(--toast-icon-size,48px)}.van-toast--icon .van-toast__text{padding-top:8px}.van-toast__loading{margin:10px 0}.van-toast--top{-webkit-transform:translateY(-30vh);transform:translateY(-30vh)}.van-toast--bottom{-webkit-transform:translateY(30vh);transform:translateY(30vh)}
|
@import '../common/index.wxss';.van-toast{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:initial;color:#fff;color:var(--toast-text-color,#fff);font-size:14px;font-size:var(--toast-font-size,14px);line-height:20px;line-height:var(--toast-line-height,20px);white-space:pre-wrap;word-wrap:break-word;background-color:rgba(50,50,51,.88);background-color:var(--toast-background-color,rgba(50,50,51,.88));border-radius:8px;border-radius:var(--toast-border-radius,8px)}.van-toast__container{position:fixed;top:50%;left:50%;width:-webkit-fit-content;width:fit-content;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-width:70%;max-width:var(--toast-max-width,70%)}.van-toast--text{min-width:96px;min-width:var(--toast-text-min-width,96px);padding:8px 12px;padding:var(--toast-text-padding,8px 12px)}.van-toast--icon{width:90px;width:var(--toast-default-width,90px);min-height:90px;min-height:var(--toast-default-min-height,90px);padding:16px;padding:var(--toast-default-padding,16px)}.van-toast--icon .van-toast__icon{font-size:48px;font-size:var(--toast-icon-size,48px)}.van-toast--icon .van-toast__text{padding-top:8px}.van-toast__loading{margin:10px 0}.van-toast--top{-webkit-transform:translateY(-30vh);transform:translateY(-30vh)}.van-toast--bottom{-webkit-transform:translateY(30vh);transform:translateY(30vh)}
|
@ -75,6 +75,7 @@
|
|||||||
"progress-bar-webpack-plugin": "^1.11.0",
|
"progress-bar-webpack-plugin": "^1.11.0",
|
||||||
"style-loader": "^1.0.0",
|
"style-loader": "^1.0.0",
|
||||||
"stylelint": "^13.0.0",
|
"stylelint": "^13.0.0",
|
||||||
|
"tscpaths": "^0.0.9",
|
||||||
"typescript": "^3.8.0",
|
"typescript": "^3.8.0",
|
||||||
"vue": "2.6.10",
|
"vue": "2.6.10",
|
||||||
"vue-loader": "^15.7.1",
|
"vue-loader": "^15.7.1",
|
||||||
|
10
yarn.lock
10
yarn.lock
@ -5855,7 +5855,7 @@ globby@^6.1.0:
|
|||||||
pify "^2.0.0"
|
pify "^2.0.0"
|
||||||
pinkie-promise "^2.0.0"
|
pinkie-promise "^2.0.0"
|
||||||
|
|
||||||
globby@^9.0.0:
|
globby@^9.0.0, globby@^9.2.0:
|
||||||
version "9.2.0"
|
version "9.2.0"
|
||||||
resolved "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d"
|
resolved "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d"
|
||||||
integrity sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==
|
integrity sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==
|
||||||
@ -11556,6 +11556,14 @@ trough@^1.0.0:
|
|||||||
resolved "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406"
|
resolved "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406"
|
||||||
integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==
|
integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==
|
||||||
|
|
||||||
|
tscpaths@^0.0.9:
|
||||||
|
version "0.0.9"
|
||||||
|
resolved "https://registry.npm.taobao.org/tscpaths/download/tscpaths-0.0.9.tgz#c77abfde6820920f10c64f83c27753b9505814ab"
|
||||||
|
integrity sha1-x3q/3mggkg8Qxk+DwndTuVBYFKs=
|
||||||
|
dependencies:
|
||||||
|
commander "^2.20.0"
|
||||||
|
globby "^9.2.0"
|
||||||
|
|
||||||
tslib@1.10.0:
|
tslib@1.10.0:
|
||||||
version "1.10.0"
|
version "1.10.0"
|
||||||
resolved "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
|
resolved "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user