build: compile 1.10.1

This commit is contained in:
nemo-shen 2022-01-04 23:18:00 +08:00
parent 8ff669ec4a
commit 20dc1e0a68
26 changed files with 64 additions and 48 deletions

View File

@ -9,6 +9,10 @@ VantComponent({
dot: Boolean,
info: String,
icon: String,
classPrefix: {
type: String,
value: 'van-icon',
},
disabled: Boolean,
loading: Boolean,
},

View File

@ -27,6 +27,7 @@
name="{{ icon }}"
dot="{{ dot }}"
info="{{ info }}"
class-prefix="{{ classPrefix }}"
class="van-goods-action-icon__icon"
custom-class="icon-class"
/>

File diff suppressed because one or more lines are too long

View File

@ -83,6 +83,9 @@ VantComponent({
},
setListRect() {
return getRect(this, '.van-index-bar').then((rect) => {
if (!isDef(rect)) {
return;
}
Object.assign(this, {
height: rect.height,
top: rect.top + this.scrollTop,

View File

@ -9,7 +9,6 @@
>
<van-icon
wx:if="{{ leftIcon }}"
size="16px"
name="{{ leftIcon }}"
class="van-notice-bar__left-icon"
/>

1
dist/tabs/index.js vendored
View File

@ -230,6 +230,7 @@ VantComponent({
onTouchStart(event) {
if (!this.data.swipeable)
return;
this.swiping = true;
this.touchStart(event);
},
onTouchMove(event) {

View File

@ -98,7 +98,7 @@ var EMPTY_CODE = '000000';
},
getConfig: function (type) {
var areaList = this.data.areaList;
return (areaList && areaList[type + "_list"]) || {};
return (areaList && areaList["".concat(type, "_list")]) || {};
},
getList: function (type, code) {
if (type !== 'province' && !code) {
@ -125,7 +125,7 @@ var EMPTY_CODE = '000000';
? EMPTY_CODE.slice(2, 4)
: EMPTY_CODE.slice(4, 6);
result.unshift({
code: "" + code + codeFill,
code: "".concat(code).concat(codeFill),
name: typeToColumnsPlaceholder[type],
});
}

View File

@ -215,7 +215,7 @@ var getTime = function (date) {
var months = (0, utils_1.getMonths)(minDate, maxDate);
months.some(function (month, index) {
if ((0, utils_1.compareMonth)(month, targetDate) === 0) {
_this.setData({ scrollIntoView: "month" + index });
_this.setData({ scrollIntoView: "month".concat(index) });
return true;
}
return false;
@ -334,7 +334,7 @@ var getTime = function (date) {
if (showRangePrompt) {
(0, toast_1.default)({
context: this,
message: rangePrompt || "\u9009\u62E9\u5929\u6570\u4E0D\u80FD\u8D85\u8FC7 " + maxRange + " \u5929",
message: rangePrompt || "\u9009\u62E9\u5929\u6570\u4E0D\u80FD\u8D85\u8FC7 ".concat(maxRange, " \u5929"),
});
}
this.$emit('over-range');

View File

@ -6,7 +6,7 @@ function formatMonthTitle(date) {
if (!(date instanceof Date)) {
date = new Date(date);
}
return date.getFullYear() + "\u5E74" + (date.getMonth() + 1) + "\u6708";
return "".concat(date.getFullYear(), "\u5E74").concat(date.getMonth() + 1, "\u6708");
}
exports.formatMonthTitle = formatMonthTitle;
function compareMonth(date1, date2) {

View File

@ -41,7 +41,7 @@ var component_1 = require("../common/component");
var priceArr = price.toString().split('.');
this.setData({
integerStr: priceArr[0],
decimalStr: priceArr[1] ? "." + priceArr[1] : '',
decimalStr: priceArr[1] ? ".".concat(priceArr[1]) : '',
});
},
onClickThumb: function () {

View File

@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
exports.useChildren = exports.useParent = void 0;
function useParent(name, onEffect) {
var _a;
var path = "../" + name + "/index";
var path = "../".concat(name, "/index");
return {
relations: (_a = {},
_a[path] = {
@ -36,7 +36,7 @@ function useParent(name, onEffect) {
exports.useParent = useParent;
function useChildren(name, onEffect) {
var _a;
var path = "../" + name + "/index";
var path = "../".concat(name, "/index");
return {
relations: (_a = {},
_a[path] = {

View File

@ -33,7 +33,7 @@ function addUnit(value) {
return undefined;
}
value = String(value);
return (0, validator_1.isNumber)(value) ? value + "px" : value;
return (0, validator_1.isNumber)(value) ? "".concat(value, "px") : value;
}
exports.addUnit = addUnit;
function requestAnimationFrame(cb) {

View File

@ -31,7 +31,7 @@ function range(num, min, max) {
return Math.min(Math.max(num, min), max);
}
function padZero(val) {
return ("00" + val).slice(-2);
return "00".concat(val).slice(-2);
}
function times(n, iteratee) {
var index = -1;
@ -138,7 +138,7 @@ var defaultFormatter = function (type, value) { return value; };
var type = _a.type, range = _a.range;
var values = times(range[1] - range[0] + 1, function (index) {
var value = range[0] + index;
return type === 'year' ? "" + value : padZero(value);
return type === 'year' ? "".concat(value) : padZero(value);
});
if (filter) {
values = filter(type, values);
@ -200,14 +200,14 @@ var defaultFormatter = function (type, value) { return value; };
}
else if (!isDateType && !value) {
var minHour = data.minHour;
value = padZero(minHour) + ":00";
value = "".concat(padZero(minHour), ":00");
}
// time type
if (!isDateType) {
var _a = value.split(':'), hour = _a[0], minute = _a[1];
hour = padZero(range(hour, data.minHour, data.maxHour));
minute = padZero(range(minute, data.minMinute, data.maxMinute));
return hour + ":" + minute;
return "".concat(hour, ":").concat(minute);
}
// date type
value = Math.max(value, data.minDate);
@ -217,7 +217,7 @@ var defaultFormatter = function (type, value) { return value; };
getBoundary: function (type, innerValue) {
var _a;
var value = new Date(innerValue);
var boundary = new Date(this.data[type + "Date"]);
var boundary = new Date(this.data["".concat(type, "Date")]);
var year = boundary.getFullYear();
var month = 1;
var date = 1;
@ -242,11 +242,11 @@ var defaultFormatter = function (type, value) { return value; };
}
}
return _a = {},
_a[type + "Year"] = year,
_a[type + "Month"] = month,
_a[type + "Date"] = date,
_a[type + "Hour"] = hour,
_a[type + "Minute"] = minute,
_a["".concat(type, "Year")] = year,
_a["".concat(type, "Month")] = month,
_a["".concat(type, "Date")] = date,
_a["".concat(type, "Hour")] = hour,
_a["".concat(type, "Minute")] = minute,
_a;
},
onCancel: function () {
@ -263,8 +263,8 @@ var defaultFormatter = function (type, value) { return value; };
var originColumns = this.getOriginColumns();
if (data.type === 'time') {
var indexes = picker.getIndexes();
value = +originColumns[0].values[indexes[0]] + ":" + +originColumns[1]
.values[indexes[1]];
value = "".concat(+originColumns[0].values[indexes[0]], ":").concat(+originColumns[1]
.values[indexes[1]]);
}
else {
var indexes = picker.getIndexes();
@ -304,7 +304,7 @@ var defaultFormatter = function (type, value) { return value; };
else {
var date = new Date(value);
values = [
formatter('year', "" + date.getFullYear()),
formatter('year', "".concat(date.getFullYear())),
formatter('month', padZero(date.getMonth() + 1)),
];
if (type === 'date') {

View File

@ -110,7 +110,7 @@ var utils_1 = require("../common/utils");
return;
}
this.setData((_a = {},
_a["loading." + action] = true,
_a["loading.".concat(action)] = true,
_a));
if (beforeClose) {
(0, utils_1.toPromise)(beforeClose(action)).then(function (value) {

View File

@ -88,12 +88,12 @@ var ARRAY = [];
return (0, utils_1.getRect)(this, '.van-dropdown-menu').then(function (rect) {
var _a = rect.top, top = _a === void 0 ? 0 : _a, _b = rect.bottom, bottom = _b === void 0 ? 0 : _b;
var offset = direction === 'down' ? bottom : _this.windowHeight - top;
var wrapperStyle = "z-index: " + zIndex + ";";
var wrapperStyle = "z-index: ".concat(zIndex, ";");
if (direction === 'down') {
wrapperStyle += "top: " + (0, utils_1.addUnit)(offset) + ";";
wrapperStyle += "top: ".concat((0, utils_1.addUnit)(offset), ";");
}
else {
wrapperStyle += "bottom: " + (0, utils_1.addUnit)(offset) + ";";
wrapperStyle += "bottom: ".concat((0, utils_1.addUnit)(offset), ";");
}
return wrapperStyle;
});

View File

@ -11,6 +11,10 @@ var link_1 = require("../mixins/link");
dot: Boolean,
info: String,
icon: String,
classPrefix: {
type: String,
value: 'van-icon',
},
disabled: Boolean,
loading: Boolean,
},

View File

@ -27,6 +27,7 @@
name="{{ icon }}"
dot="{{ dot }}"
info="{{ info }}"
class-prefix="{{ classPrefix }}"
class="van-goods-action-icon__icon"
custom-class="icon-class"
/>

File diff suppressed because one or more lines are too long

View File

@ -90,6 +90,9 @@ var indexList = function () {
setListRect: function () {
var _this = this;
return (0, utils_1.getRect)(this, '.van-index-bar').then(function (rect) {
if (!(0, utils_1.isDef)(rect)) {
return;
}
Object.assign(_this, {
height: rect.height,
top: rect.top + _this.scrollTop,
@ -161,10 +164,10 @@ var indexList = function () {
children.forEach(function (item, index) {
if (index === active) {
var wrapperStyle = '';
var anchorStyle = "\n color: " + highlightColor + ";\n ";
var anchorStyle = "\n color: ".concat(highlightColor, ";\n ");
if (isActiveAnchorSticky_1) {
wrapperStyle = "\n height: " + children[index].height + "px;\n ";
anchorStyle = "\n position: fixed;\n top: " + stickyOffsetTop + "px;\n z-index: " + zIndex + ";\n color: " + highlightColor + ";\n ";
wrapperStyle = "\n height: ".concat(children[index].height, "px;\n ");
anchorStyle = "\n position: fixed;\n top: ".concat(stickyOffsetTop, "px;\n z-index: ").concat(zIndex, ";\n color: ").concat(highlightColor, ";\n ");
}
_this.setDiffData({
target: item,
@ -183,7 +186,7 @@ var indexList = function () {
: children[index + 1].top;
var parentOffsetHeight = targetOffsetTop - currentOffsetTop;
var translateY = parentOffsetHeight - currentAnchor.height;
var anchorStyle = "\n position: relative;\n transform: translate3d(0, " + translateY + "px, 0);\n z-index: " + zIndex + ";\n color: " + highlightColor + ";\n ";
var anchorStyle = "\n position: relative;\n transform: translate3d(0, ".concat(translateY, "px, 0);\n z-index: ").concat(zIndex, ";\n color: ").concat(highlightColor, ";\n ");
_this.setDiffData({
target: item,
data: {

View File

@ -5,10 +5,10 @@ exports.transition = void 0;
var utils_1 = require("../common/utils");
var validator_1 = require("../common/validator");
var getClassNames = function (name) { return ({
enter: "van-" + name + "-enter van-" + name + "-enter-active enter-class enter-active-class",
'enter-to': "van-" + name + "-enter-to van-" + name + "-enter-active enter-to-class enter-active-class",
leave: "van-" + name + "-leave van-" + name + "-leave-active leave-class leave-active-class",
'leave-to': "van-" + name + "-leave-to van-" + name + "-leave-active leave-to-class leave-active-class",
enter: "van-".concat(name, "-enter van-").concat(name, "-enter-active enter-class enter-active-class"),
'enter-to': "van-".concat(name, "-enter-to van-").concat(name, "-enter-active enter-to-class enter-active-class"),
leave: "van-".concat(name, "-leave van-").concat(name, "-leave-active leave-class leave-active-class"),
'leave-to': "van-".concat(name, "-leave-to van-").concat(name, "-leave-active leave-to-class leave-active-class"),
}); };
function transition(showDefaultValue) {
return Behavior({
@ -109,7 +109,7 @@ function transition(showDefaultValue) {
return;
}
this.transitionEnded = true;
this.$emit("after-" + this.status);
this.$emit("after-".concat(this.status));
var _a = this.data, show = _a.show, display = _a.display;
if (!show && display) {
this.setData({ display: false });

View File

@ -9,7 +9,6 @@
>
<van-icon
wx:if="{{ leftIcon }}"
size="16px"
name="{{ leftIcon }}"
class="van-notice-bar__left-icon"
/>

View File

@ -141,8 +141,8 @@ var utils_1 = require("../common/utils");
var vertical = this.data.vertical;
var mainAxis = vertical ? 'height' : 'width';
this.setData({
wrapperStyle: "\n background: " + (this.data.inactiveColor || '') + ";\n " + (vertical ? 'width' : 'height') + ": " + ((0, utils_1.addUnit)(this.data.barHeight) || '') + ";\n ",
barStyle: "\n " + mainAxis + ": " + this.calcMainAxis() + ";\n left: " + (vertical ? 0 : this.calcOffset()) + ";\n top: " + (vertical ? this.calcOffset() : 0) + ";\n " + (drag ? 'transition: none;' : '') + "\n ",
wrapperStyle: "\n background: ".concat(this.data.inactiveColor || '', ";\n ").concat(vertical ? 'width' : 'height', ": ").concat((0, utils_1.addUnit)(this.data.barHeight) || '', ";\n "),
barStyle: "\n ".concat(mainAxis, ": ").concat(this.calcMainAxis(), ";\n left: ").concat(vertical ? 0 : this.calcOffset(), ";\n top: ").concat(vertical ? this.calcOffset() : 0, ";\n ").concat(drag ? 'transition: none;' : '', "\n "),
});
if (drag) {
this.$emit('drag', { value: value });
@ -167,9 +167,9 @@ var utils_1 = require("../common/utils");
var min = this.data.min;
var scope = this.getScope();
if (this.isRange(value)) {
return ((value[1] - value[0]) * 100) / scope + "%";
return "".concat(((value[1] - value[0]) * 100) / scope, "%");
}
return ((value - Number(min)) * 100) / scope + "%";
return "".concat(((value - Number(min)) * 100) / scope, "%");
},
// 计算选中条的开始位置的偏移量
calcOffset: function () {
@ -177,7 +177,7 @@ var utils_1 = require("../common/utils");
var min = this.data.min;
var scope = this.getScope();
if (this.isRange(value)) {
return ((value[0] - Number(min)) * 100) / scope + "%";
return "".concat(((value[0] - Number(min)) * 100) / scope, "%");
}
return '0%';
},

View File

@ -142,7 +142,7 @@ function equal(value1, value2) {
// limit max decimal length
if ((0, validator_1.isDef)(this.data.decimalLength) && formatted.indexOf('.') !== -1) {
var pair = formatted.split('.');
formatted = pair[0] + "." + pair[1].slice(0, this.data.decimalLength);
formatted = "".concat(pair[0], ".").concat(pair[1].slice(0, this.data.decimalLength));
}
this.emitChange(formatted);
},

View File

@ -45,7 +45,7 @@ var component_1 = require("../common/component");
this.setData({
hasPrice: typeof price === 'number',
integerStr: priceStrArr && priceStrArr[0],
decimalStr: decimalLength && priceStrArr ? "." + priceStrArr[1] : '',
decimalStr: decimalLength && priceStrArr ? ".".concat(priceStrArr[1]) : '',
});
},
updateTip: function () {

View File

@ -63,12 +63,12 @@ var ARRAY = [];
swipeMove: function (offset) {
if (offset === void 0) { offset = 0; }
this.offset = (0, utils_1.range)(offset, -this.data.rightWidth, this.data.leftWidth);
var transform = "translate3d(" + this.offset + "px, 0, 0)";
var transform = "translate3d(".concat(this.offset, "px, 0, 0)");
var transition = this.dragging
? 'none'
: 'transform .6s cubic-bezier(0.18, 0.89, 0.32, 1)';
this.setData({
wrapperStyle: "\n -webkit-transform: " + transform + ";\n -webkit-transition: " + transition + ";\n transform: " + transform + ";\n transition: " + transition + ";\n ",
wrapperStyle: "\n -webkit-transform: ".concat(transform, ";\n -webkit-transition: ").concat(transition, ";\n transform: ").concat(transform, ";\n transition: ").concat(transition, ";\n "),
});
},
swipeLeaveTransition: function () {

View File

@ -242,6 +242,7 @@ var relation_1 = require("../common/relation");
onTouchStart: function (event) {
if (!this.data.swipeable)
return;
this.swiping = true;
this.touchStart(event);
},
onTouchMove: function (event) {