mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
[improvement] 使用 babel 简单编译 dist 里面的文件 (#285)
* 使用babel编译 * build * update yarn
This commit is contained in:
parent
db3d7f28bf
commit
19b3b88881
20
dist/actionsheet/index.js
vendored
20
dist/actionsheet/index.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
externalClasses: ['mask-class', 'container-class'],
|
||||
properties: {
|
||||
@ -19,18 +21,22 @@ Component({
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onMaskClick() {
|
||||
onMaskClick: function onMaskClick() {
|
||||
if (this.data.cancelWithMask) {
|
||||
this.cancelClick();
|
||||
}
|
||||
},
|
||||
cancelClick() {
|
||||
cancelClick: function cancelClick() {
|
||||
this.triggerEvent('cancel');
|
||||
},
|
||||
handleBtnClick({ currentTarget = {} }) {
|
||||
const dataset = currentTarget.dataset || {};
|
||||
const { index } = dataset;
|
||||
this.triggerEvent('actionclick', { index });
|
||||
handleBtnClick: function handleBtnClick(_ref) {
|
||||
var _ref$currentTarget = _ref.currentTarget,
|
||||
currentTarget = _ref$currentTarget === undefined ? {} : _ref$currentTarget;
|
||||
|
||||
var dataset = currentTarget.dataset || {};
|
||||
var index = dataset.index;
|
||||
|
||||
this.triggerEvent('actionclick', { index: index });
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
12
dist/badge/index.js
vendored
12
dist/badge/index.js
vendored
@ -1,7 +1,9 @@
|
||||
const DEFAULT_COLOR = '#fff';
|
||||
const DEFAULT_BACKGROUND_COLOR = '#f44';
|
||||
const DEFAULT_FONT_SIZE = 10;
|
||||
const DEFAULT_BOX_SHADOW = '0 0 0 2px #fff';
|
||||
'use strict';
|
||||
|
||||
var DEFAULT_COLOR = '#fff';
|
||||
var DEFAULT_BACKGROUND_COLOR = '#f44';
|
||||
var DEFAULT_FONT_SIZE = 10;
|
||||
var DEFAULT_BOX_SHADOW = '0 0 0 2px #fff';
|
||||
|
||||
Component({
|
||||
properties: {
|
||||
@ -22,4 +24,4 @@ Component({
|
||||
value: DEFAULT_BOX_SHADOW
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
16
dist/btn-group/index.js
vendored
16
dist/btn-group/index.js
vendored
@ -1,14 +1,16 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
relations: {
|
||||
'../btn/index': {
|
||||
type: 'child',
|
||||
linked() {
|
||||
linked: function linked() {
|
||||
updateBtnChild.call(this);
|
||||
},
|
||||
linkChange() {
|
||||
linkChange: function linkChange() {
|
||||
updateBtnChild.call(this);
|
||||
},
|
||||
unlinked() {
|
||||
unlinked: function unlinked() {
|
||||
updateBtnChild.call(this);
|
||||
}
|
||||
}
|
||||
@ -16,13 +18,13 @@ Component({
|
||||
});
|
||||
|
||||
function updateBtnChild() {
|
||||
let btns = this.getRelationNodes('../btn/index');
|
||||
var btns = this.getRelationNodes('../btn/index');
|
||||
|
||||
if (btns.length > 0) {
|
||||
let lastIndex = btns.length - 1;
|
||||
var lastIndex = btns.length - 1;
|
||||
|
||||
btns.forEach((btn, index) => {
|
||||
btns.forEach(function (btn, index) {
|
||||
btn.switchLastButtonStatus(index === lastIndex);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
29
dist/btn/index.js
vendored
29
dist/btn/index.js
vendored
@ -1,4 +1,6 @@
|
||||
const nativeButtonBehavior = require('./native-button-behaviors');
|
||||
'use strict';
|
||||
|
||||
var nativeButtonBehavior = require('./native-button-behaviors');
|
||||
|
||||
Component({
|
||||
externalClasses: ['custom-class'],
|
||||
@ -6,10 +8,10 @@ Component({
|
||||
relations: {
|
||||
'../btn-group/index': {
|
||||
type: 'parent',
|
||||
linked() {
|
||||
linked: function linked() {
|
||||
this.setData({ inGroup: true });
|
||||
},
|
||||
unlinked() {
|
||||
unlinked: function unlinked() {
|
||||
this.setData({ inGroup: false });
|
||||
}
|
||||
}
|
||||
@ -17,23 +19,23 @@ Component({
|
||||
properties: {
|
||||
type: {
|
||||
type: String,
|
||||
value: '',
|
||||
value: ''
|
||||
},
|
||||
size: {
|
||||
type: String,
|
||||
value: '',
|
||||
value: ''
|
||||
},
|
||||
plain: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
value: false
|
||||
},
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
value: false
|
||||
},
|
||||
loading: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
value: false
|
||||
}
|
||||
},
|
||||
|
||||
@ -43,16 +45,17 @@ Component({
|
||||
},
|
||||
|
||||
methods: {
|
||||
handleTap() {
|
||||
handleTap: function handleTap() {
|
||||
if (this.data.disabled) {
|
||||
this.triggerEvent('disabledclick')
|
||||
this.triggerEvent('disabledclick');
|
||||
return;
|
||||
}
|
||||
this.triggerEvent('btnclick');
|
||||
},
|
||||
switchLastButtonStatus: function switchLastButtonStatus() {
|
||||
var isLast = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
||||
|
||||
switchLastButtonStatus(isLast = false) {
|
||||
this.setData({ isLast });
|
||||
this.setData({ isLast: isLast });
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
28
dist/btn/native-button-behaviors.js
vendored
28
dist/btn/native-button-behaviors.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = Behavior({
|
||||
properties: {
|
||||
loading: Boolean,
|
||||
@ -33,17 +35,33 @@ module.exports = Behavior({
|
||||
showMessageCard: String
|
||||
},
|
||||
methods: {
|
||||
bindgetuserinfo({ detail = {} } = {}) {
|
||||
bindgetuserinfo: function bindgetuserinfo() {
|
||||
var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
|
||||
_ref$detail = _ref.detail,
|
||||
detail = _ref$detail === undefined ? {} : _ref$detail;
|
||||
|
||||
this.triggerEvent('getuserinfo', detail);
|
||||
},
|
||||
bindcontact({ detail = {} } = {}) {
|
||||
bindcontact: function bindcontact() {
|
||||
var _ref2 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
|
||||
_ref2$detail = _ref2.detail,
|
||||
detail = _ref2$detail === undefined ? {} : _ref2$detail;
|
||||
|
||||
this.triggerEvent('contact', detail);
|
||||
},
|
||||
bindgetphonenumber({ detail = {} } = {}) {
|
||||
bindgetphonenumber: function bindgetphonenumber() {
|
||||
var _ref3 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
|
||||
_ref3$detail = _ref3.detail,
|
||||
detail = _ref3$detail === undefined ? {} : _ref3$detail;
|
||||
|
||||
this.triggerEvent('getphonenumber', detail);
|
||||
},
|
||||
binderror({ detail = {} } = {}) {
|
||||
binderror: function binderror() {
|
||||
var _ref4 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
|
||||
_ref4$detail = _ref4.detail,
|
||||
detail = _ref4$detail === undefined ? {} : _ref4$detail;
|
||||
|
||||
this.triggerEvent('error', detail);
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
4
dist/capsule/index.js
vendored
4
dist/capsule/index.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
/**
|
||||
* 组件的属性列表
|
||||
@ -25,4 +27,4 @@ Component({
|
||||
value: ''
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
4
dist/card/index.js
vendored
4
dist/card/index.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
options: {
|
||||
multipleSlots: true
|
||||
@ -21,4 +23,4 @@ Component({
|
||||
desc: String,
|
||||
status: String
|
||||
}
|
||||
});
|
||||
});
|
26
dist/cell-group/index.js
vendored
26
dist/cell-group/index.js
vendored
@ -1,14 +1,16 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
relations: {
|
||||
'../cell/index': {
|
||||
type: 'child',
|
||||
linked() {
|
||||
linked: function linked() {
|
||||
this._updateIsLastCell();
|
||||
},
|
||||
linkChanged() {
|
||||
linkChanged: function linkChanged() {
|
||||
this._updateIsLastCell();
|
||||
},
|
||||
unlinked() {
|
||||
unlinked: function unlinked() {
|
||||
this._updateIsLastCell();
|
||||
}
|
||||
}
|
||||
@ -19,26 +21,28 @@ Component({
|
||||
},
|
||||
|
||||
methods: {
|
||||
_updateIsLastCell() {
|
||||
_updateIsLastCell: function _updateIsLastCell() {
|
||||
var _this = this;
|
||||
|
||||
// 用 setTimeout 减少计算次数
|
||||
if (this.data.cellUpdateTimeout > 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
const cellUpdateTimeout = setTimeout(() => {
|
||||
this.setData({ cellUpdateTimeout: 0 });
|
||||
let cells = this.getRelationNodes('../cell/index');
|
||||
var cellUpdateTimeout = setTimeout(function () {
|
||||
_this.setData({ cellUpdateTimeout: 0 });
|
||||
var cells = _this.getRelationNodes('../cell/index');
|
||||
|
||||
if (cells.length > 0) {
|
||||
let lastIndex = cells.length - 1;
|
||||
var lastIndex = cells.length - 1;
|
||||
|
||||
cells.forEach((cell, index) => {
|
||||
cells.forEach(function (cell, index) {
|
||||
cell.updateIsLastCell(index === lastIndex);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
this.setData({ cellUpdateTimeout });
|
||||
this.setData({ cellUpdateTimeout: cellUpdateTimeout });
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
1
dist/cell-group/index.wxss
vendored
Normal file
1
dist/cell-group/index.wxss
vendored
Normal file
@ -0,0 +1 @@
|
||||
.cell-group{background-color:#fff}
|
26
dist/cell/index.js
vendored
26
dist/cell/index.js
vendored
@ -1,9 +1,11 @@
|
||||
const warn = (msg, getValue) => {
|
||||
'use strict';
|
||||
|
||||
var warn = function warn(msg, getValue) {
|
||||
console.warn(msg);
|
||||
|
||||
};
|
||||
|
||||
Component({
|
||||
externalClasses: ['cell-class'],
|
||||
options: {
|
||||
multipleSlots: true
|
||||
},
|
||||
@ -48,7 +50,7 @@ Component({
|
||||
isLastCell: true
|
||||
},
|
||||
methods: {
|
||||
footerTap() {
|
||||
footerTap: function footerTap() {
|
||||
// 如果并没有设置只点击 footer 生效,那就不需要额外处理。cell 上有事件会自动处理
|
||||
if (!this.data.onlyTapFooter) {
|
||||
return;
|
||||
@ -57,8 +59,7 @@ Component({
|
||||
this.triggerEvent('tap', {});
|
||||
doNavigate.call(this);
|
||||
},
|
||||
|
||||
cellTap() {
|
||||
cellTap: function cellTap() {
|
||||
// 如果只点击 footer 生效,那就不需要在 cell 根节点上处理
|
||||
if (this.data.onlyTapFooter) {
|
||||
return;
|
||||
@ -68,17 +69,20 @@ Component({
|
||||
doNavigate.call(this);
|
||||
},
|
||||
|
||||
|
||||
// 用于被 cell-group 更新,标志是否是最后一个 cell
|
||||
updateIsLastCell(isLastCell) {
|
||||
this.setData({ isLastCell });
|
||||
updateIsLastCell: function updateIsLastCell(isLastCell) {
|
||||
this.setData({ isLastCell: isLastCell });
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// 处理跳转
|
||||
function doNavigate() {
|
||||
const { url = '' } = this.data;
|
||||
const type = typeof this.data.isLink;
|
||||
var _data$url = this.data.url,
|
||||
url = _data$url === undefined ? '' : _data$url;
|
||||
|
||||
var type = typeof this.data.isLink;
|
||||
|
||||
if (!this.data.isLink || !url || url === 'true' || url === 'false') return;
|
||||
|
||||
@ -91,5 +95,5 @@ function doNavigate() {
|
||||
warn('linkType 属性可选值为 navigateTo,redirectTo,switchTab,reLaunch', this.data.linkType);
|
||||
return;
|
||||
}
|
||||
wx[this.data.linkType].call(wx, { url });
|
||||
}
|
||||
wx[this.data.linkType].call(wx, { url: url });
|
||||
}
|
2
dist/cell/index.wxml
vendored
2
dist/cell/index.wxml
vendored
@ -1,6 +1,6 @@
|
||||
<view
|
||||
catchtap="cellTap"
|
||||
class="zan-cell {{ isLastCell ? 'last-cell' : '' }} {{ isLink ? 'zan-cell--access' : '' }}">
|
||||
class="cell-class zan-cell {{ isLastCell ? 'last-cell' : '' }} {{ isLink ? 'zan-cell--access' : '' }}">
|
||||
|
||||
<view class="zan-cell__icon">
|
||||
<slot name="icon"></slot>
|
||||
|
2
dist/cell/index.wxss
vendored
2
dist/cell/index.wxss
vendored
@ -1 +1 @@
|
||||
.zan-cell{position:relative;padding:12px 15px;display:flex;align-items:center;line-height:1.4;font-size:14px}.zan-cell::after{content:'';position:absolute;top:0;left:0;width:200%;height:200%;-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:0 0;transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:0 solid #e5e5e5;border-bottom-width:1px;left:15px;right:0}.zan-cell .zan-cell__icon{margin-right:5px}.zan-cell .zan-cell__icon:empty{display:none}.zan-cell__bd{flex:1}.zan-cell__text{line-height:24px;font-size:14px}.zan-cell__desc{line-height:1.2;font-size:12px;color:#666}.zan-cell__ft{position:relative;text-align:right;color:#666}.zan-cell__no-pading{padding:0}.zan-cell__no-pading .zan-cell__bd_padding{padding:12px 0 12px 15px}.zan-cell__no-pading .zan-cell__bd_padding .zan-form__input{height:26px}.zan-cell__no-pading .zan-cell__ft_padding{padding:12px 15px 12px 0}.zan-cell.last-cell::after{display:none}.zan-cell--access .zan-cell__ft{padding-right:13px}.zan-cell--access .zan-cell__ft::after{position:absolute;top:50%;right:2px;content:" ";display:inline-block;height:6px;width:6px;border-width:2px 2px 0 0;border-color:#c8c8c8;border-style:solid;-webkit-transform:translateY(-50%) matrix(.71,.71,-.71,.71,0,0);transform:translateY(-50%) matrix(.71,.71,-.71,.71,0,0)}.zan-cell--switch{padding-top:6px;padding-bottom:6px}
|
||||
.zan-cell{position:relative;padding:12px 15px;display:flex;align-items:center;line-height:1.4;background-color:#fff;font-size:14px}.zan-cell::after{content:'';position:absolute;top:0;left:0;width:200%;height:200%;-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:0 0;transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:0 solid #e5e5e5;border-bottom-width:1px;left:15px;right:0}.zan-cell .zan-cell__icon{margin-right:5px}.zan-cell .zan-cell__icon:empty{display:none}.zan-cell__bd{flex:1}.zan-cell__text{line-height:24px;font-size:14px}.zan-cell__desc{line-height:1.2;font-size:12px;color:#666}.zan-cell__ft{position:relative;text-align:right;color:#666}.zan-cell__no-pading{padding:0}.zan-cell__no-pading .zan-cell__bd_padding{padding:12px 0 12px 15px}.zan-cell__no-pading .zan-cell__bd_padding .zan-form__input{height:26px}.zan-cell__no-pading .zan-cell__ft_padding{padding:12px 15px 12px 0}.zan-cell.last-cell::after{display:none}.zan-cell--access .zan-cell__ft{padding-right:13px}.zan-cell--access .zan-cell__ft::after{position:absolute;top:50%;right:2px;content:" ";display:inline-block;height:6px;width:6px;border-width:2px 2px 0 0;border-color:#c8c8c8;border-style:solid;-webkit-transform:translateY(-50%) matrix(.71,.71,-.71,.71,0,0);transform:translateY(-50%) matrix(.71,.71,-.71,.71,0,0)}.zan-cell--switch{padding-top:6px;padding-bottom:6px}
|
4
dist/col/index.js
vendored
4
dist/col/index.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
externalClasses: ['col-class'],
|
||||
|
||||
@ -17,4 +19,4 @@ Component({
|
||||
type: Number
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
72
dist/common/helper.js
vendored
72
dist/common/helper.js
vendored
@ -1,7 +1,13 @@
|
||||
'use strict';
|
||||
|
||||
// 从事件对象中解析得到 componentId
|
||||
// 需要在元素上声明 data-component-id
|
||||
function extractComponentId(event = {}) {
|
||||
const { dataset: { componentId } } = event.currentTarget || {};
|
||||
function extractComponentId() {
|
||||
var event = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
||||
|
||||
var _ref = event.currentTarget || {},
|
||||
componentId = _ref.dataset.componentId;
|
||||
|
||||
return componentId;
|
||||
}
|
||||
|
||||
@ -19,40 +25,58 @@ function extractComponentId(event = {}) {
|
||||
}));
|
||||
*/
|
||||
|
||||
const LIFE_CYCLE = ['onLoad', 'onReady', 'onShow', 'onHide', 'onUnload', 'onPullDownRefresh', 'onReachBottom', 'onShareAppMessage', 'onPageScroll'];
|
||||
var LIFE_CYCLE = ['onLoad', 'onReady', 'onShow', 'onHide', 'onUnload', 'onPullDownRefresh', 'onReachBottom', 'onShareAppMessage', 'onPageScroll'];
|
||||
|
||||
const extendCreator = (config = {}) => {
|
||||
const {
|
||||
life = LIFE_CYCLE,
|
||||
exclude = []
|
||||
} = config;
|
||||
var extendCreator = function extendCreator() {
|
||||
var config = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
||||
var _config$life = config.life,
|
||||
life = _config$life === undefined ? LIFE_CYCLE : _config$life,
|
||||
_config$exclude = config.exclude,
|
||||
exclude = _config$exclude === undefined ? [] : _config$exclude;
|
||||
|
||||
const excludeList = exclude.concat(LIFE_CYCLE.map(getFuncArrayName));
|
||||
|
||||
var excludeList = exclude.concat(LIFE_CYCLE.map(getFuncArrayName));
|
||||
|
||||
if (!Array.isArray(life) || !Array.isArray(exclude)) throw new Error('Invalid Extend Config');
|
||||
let lifeCycleList = life.filter(item => LIFE_CYCLE.indexOf(item) >= 0);
|
||||
return function extend(target, ...objList) {
|
||||
objList.forEach((source) => {
|
||||
var lifeCycleList = life.filter(function (item) {
|
||||
return LIFE_CYCLE.indexOf(item) >= 0;
|
||||
});
|
||||
return function extend(target) {
|
||||
for (var _len = arguments.length, objList = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
||||
objList[_key - 1] = arguments[_key];
|
||||
}
|
||||
|
||||
objList.forEach(function (source) {
|
||||
if (source) {
|
||||
let keys = Object.keys(source);
|
||||
keys.forEach((key) => {
|
||||
let value = source[key];
|
||||
var keys = Object.keys(source);
|
||||
keys.forEach(function (key) {
|
||||
var value = source[key];
|
||||
if (excludeList.indexOf(key) >= 0) return;
|
||||
if (lifeCycleList.indexOf(key) >= 0 && typeof value === 'function') {
|
||||
let funcArrayName = getFuncArrayName(key);
|
||||
var funcArrayName = getFuncArrayName(key);
|
||||
if (!target[funcArrayName]) {
|
||||
target[funcArrayName] = [];
|
||||
if (target[key]) {
|
||||
target[funcArrayName].push(target[key]);
|
||||
}
|
||||
target[key] = function (...rest) {
|
||||
target[funcArrayName].forEach(func => func.apply(this, rest));
|
||||
target[key] = function () {
|
||||
var _this = this;
|
||||
|
||||
for (var _len2 = arguments.length, rest = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
||||
rest[_key2] = arguments[_key2];
|
||||
}
|
||||
|
||||
target[funcArrayName].forEach(function (func) {
|
||||
return func.apply(_this, rest);
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
if (source[funcArrayName]) {
|
||||
var _target$funcArrayName;
|
||||
|
||||
// 经过生命周期合并的组件直接整合函数列表
|
||||
target[funcArrayName].push(...source[funcArrayName]);
|
||||
(_target$funcArrayName = target[funcArrayName]).push.apply(_target$funcArrayName, source[funcArrayName]);
|
||||
} else {
|
||||
// 添加生命周期函数进入函数列表
|
||||
target[funcArrayName].push(value);
|
||||
@ -67,10 +91,12 @@ const extendCreator = (config = {}) => {
|
||||
};
|
||||
};
|
||||
|
||||
const getFuncArrayName = name => `__$${name}`;
|
||||
var getFuncArrayName = function getFuncArrayName(name) {
|
||||
return '__$' + name;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
extractComponentId,
|
||||
extractComponentId: extractComponentId,
|
||||
extend: Object.assign,
|
||||
extendCreator
|
||||
};
|
||||
extendCreator: extendCreator
|
||||
};
|
6
dist/common/pop-manager/index.js
vendored
6
dist/common/pop-manager/index.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
properties: {
|
||||
show: {
|
||||
@ -22,8 +24,8 @@ Component({
|
||||
},
|
||||
|
||||
methods: {
|
||||
handleMaskClick() {
|
||||
handleMaskClick: function handleMaskClick() {
|
||||
this.triggerEvent('clickmask', {});
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
291
dist/datetime-picker/index.js
vendored
291
dist/datetime-picker/index.js
vendored
@ -1,5 +1,9 @@
|
||||
'use strict';
|
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
function partStartWithZero(num, strlen) {
|
||||
let zeros = '';
|
||||
var zeros = '';
|
||||
while (zeros.length < strlen) {
|
||||
zeros += '0';
|
||||
}
|
||||
@ -7,7 +11,7 @@ function partStartWithZero(num, strlen) {
|
||||
}
|
||||
|
||||
function genNumber(begin, end, strlen) {
|
||||
let nums = [];
|
||||
var nums = [];
|
||||
while (begin <= end) {
|
||||
nums.push(partStartWithZero(begin, strlen));
|
||||
begin++;
|
||||
@ -15,23 +19,66 @@ function genNumber(begin, end, strlen) {
|
||||
return nums;
|
||||
}
|
||||
|
||||
function moment(date, formatStr = 'YYYY:MM:DD') {
|
||||
function moment(date) {
|
||||
var formatStr = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'YYYY:MM:DD';
|
||||
|
||||
if (!date && date !== 0) date = new Date();
|
||||
|
||||
date = new Date(date);
|
||||
if (date.toString() === 'Invalid Date') throw new Error('Invalid Date');
|
||||
|
||||
let getDateValue = (method, fn) => (fn ? fn(date[`get${method}`]()) : date[`get${method}`]());
|
||||
let map = new Map();
|
||||
var getDateValue = function getDateValue(method, fn) {
|
||||
return fn ? fn(date['get' + method]()) : date['get' + method]();
|
||||
};
|
||||
var map = new Map();
|
||||
|
||||
map.set(/(Y+)/i, () => getDateValue('FullYear', year => (year + '').substr(4 - RegExp.$1.length)));
|
||||
map.set(/(M+)/, () => getDateValue('Month', month => partStartWithZero(month + 1, RegExp.$1.length)));
|
||||
map.set(/(D+)/i, () => getDateValue('Date', date => partStartWithZero(date, RegExp.$1.length)));
|
||||
map.set(/(H+)/i, () => getDateValue('Hours', hour => partStartWithZero(hour, RegExp.$1.length)));
|
||||
map.set(/(m+)/, () => getDateValue('Minutes', minute => partStartWithZero(minute, RegExp.$1.length)));
|
||||
map.set(/(s+)/, () => getDateValue('Seconds', second => partStartWithZero(second, RegExp.$1.length)));
|
||||
map.set(/(Y+)/i, function () {
|
||||
return getDateValue('FullYear', function (year) {
|
||||
return (year + '').substr(4 - RegExp.$1.length);
|
||||
});
|
||||
});
|
||||
map.set(/(M+)/, function () {
|
||||
return getDateValue('Month', function (month) {
|
||||
return partStartWithZero(month + 1, RegExp.$1.length);
|
||||
});
|
||||
});
|
||||
map.set(/(D+)/i, function () {
|
||||
return getDateValue('Date', function (date) {
|
||||
return partStartWithZero(date, RegExp.$1.length);
|
||||
});
|
||||
});
|
||||
map.set(/(H+)/i, function () {
|
||||
return getDateValue('Hours', function (hour) {
|
||||
return partStartWithZero(hour, RegExp.$1.length);
|
||||
});
|
||||
});
|
||||
map.set(/(m+)/, function () {
|
||||
return getDateValue('Minutes', function (minute) {
|
||||
return partStartWithZero(minute, RegExp.$1.length);
|
||||
});
|
||||
});
|
||||
map.set(/(s+)/, function () {
|
||||
return getDateValue('Seconds', function (second) {
|
||||
return partStartWithZero(second, RegExp.$1.length);
|
||||
});
|
||||
});
|
||||
|
||||
for (var _iterator = map, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {
|
||||
var _ref2;
|
||||
|
||||
if (_isArray) {
|
||||
if (_i >= _iterator.length) break;
|
||||
_ref2 = _iterator[_i++];
|
||||
} else {
|
||||
_i = _iterator.next();
|
||||
if (_i.done) break;
|
||||
_ref2 = _i.value;
|
||||
}
|
||||
|
||||
var _ref = _ref2;
|
||||
var reg = _ref[0];
|
||||
var fn = _ref[1];
|
||||
|
||||
for (const [reg, fn] of map) {
|
||||
if (reg.test(formatStr)) {
|
||||
formatStr = formatStr.replace(RegExp.$1, fn.call(null));
|
||||
}
|
||||
@ -40,9 +87,15 @@ function moment(date, formatStr = 'YYYY:MM:DD') {
|
||||
return formatStr;
|
||||
}
|
||||
|
||||
const LIMIT_YEAR_COUNT = 50;
|
||||
class DatePicker {
|
||||
constructor(format, date = new Date(), cb) {
|
||||
var LIMIT_YEAR_COUNT = 50;
|
||||
|
||||
var DatePicker = function () {
|
||||
function DatePicker(format) {
|
||||
var date = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : new Date();
|
||||
var cb = arguments[2];
|
||||
|
||||
_classCallCheck(this, DatePicker);
|
||||
|
||||
this.types = ['year', 'month', 'day', 'hour', 'minute', 'second'];
|
||||
this.months = genNumber(1, 12, 2);
|
||||
this.hours = genNumber(0, 23, 2);
|
||||
@ -52,27 +105,25 @@ class DatePicker {
|
||||
this.init(date, cb);
|
||||
}
|
||||
|
||||
getYears(year) {
|
||||
let mid = Math.floor(LIMIT_YEAR_COUNT / 2);
|
||||
let min = year - mid;
|
||||
let max = year + (LIMIT_YEAR_COUNT - mid);
|
||||
DatePicker.prototype.getYears = function getYears(year) {
|
||||
var mid = Math.floor(LIMIT_YEAR_COUNT / 2);
|
||||
var min = year - mid;
|
||||
var max = year + (LIMIT_YEAR_COUNT - mid);
|
||||
return genNumber(min, max, 4);
|
||||
}
|
||||
};
|
||||
|
||||
lastDay(year, month) {
|
||||
return month !== 12 ? new Date(
|
||||
new Date(`${year}/${month + 1}/1`).getTime() - (24 * 60 * 60 * 1000)
|
||||
).getDate() : 31;
|
||||
}
|
||||
DatePicker.prototype.lastDay = function lastDay(year, month) {
|
||||
return month !== 12 ? new Date(new Date(year + '/' + (month + 1) + '/1').getTime() - 24 * 60 * 60 * 1000).getDate() : 31;
|
||||
};
|
||||
|
||||
init(date, cb) {
|
||||
let d = new Date(date);
|
||||
let y = d.getFullYear();
|
||||
let m = d.getMonth() + 1;
|
||||
let years = this.getYears(y);
|
||||
let lastDay = this.lastDay(y, m);
|
||||
DatePicker.prototype.init = function init(date, cb) {
|
||||
var d = new Date(date);
|
||||
var y = d.getFullYear();
|
||||
var m = d.getMonth() + 1;
|
||||
var years = this.getYears(y);
|
||||
var lastDay = this.lastDay(y, m);
|
||||
|
||||
let days = genNumber(1, lastDay, 2);
|
||||
var days = genNumber(1, lastDay, 2);
|
||||
|
||||
this._years = years;
|
||||
this._dataList = [years, this.months, days, this.hours, this.minutes, this.seconds];
|
||||
@ -81,10 +132,10 @@ class DatePicker {
|
||||
dataList: this._dataList,
|
||||
indexs: this._indexs
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
update(col, index, cb) {
|
||||
let type = this.types[col];
|
||||
DatePicker.prototype.update = function update(col, index, cb) {
|
||||
var type = this.types[col];
|
||||
switch (type) {
|
||||
case 'year':
|
||||
this._updateYear(col, index, cb);
|
||||
@ -101,11 +152,11 @@ class DatePicker {
|
||||
updateIndex: index
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
_updateYear(col, index, cb) {
|
||||
let years = this._dataList[col];
|
||||
let year = years[index];
|
||||
DatePicker.prototype._updateYear = function _updateYear(col, index, cb) {
|
||||
var years = this._dataList[col];
|
||||
var year = years[index];
|
||||
|
||||
this._dataList[col] = this.getYears(+year);
|
||||
|
||||
@ -115,12 +166,12 @@ class DatePicker {
|
||||
indexs: this._indexs,
|
||||
updateColumn: col
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
_updateMonth(col, index, cb) {
|
||||
let month = this._dataList[col][index];
|
||||
let year = this._dataList[0][this._indexs[0]];
|
||||
let lastDay = this.lastDay(+year, +month);
|
||||
DatePicker.prototype._updateMonth = function _updateMonth(col, index, cb) {
|
||||
var month = this._dataList[col][index];
|
||||
var year = this._dataList[0][this._indexs[0]];
|
||||
var lastDay = this.lastDay(+year, +month);
|
||||
this._indexs[col] = index;
|
||||
this._dataList[2] = genNumber(1, lastDay, 2);
|
||||
this._indexs[2] = this._indexs[2] >= this._dataList[2].length ? this._dataList[2].length - 1 : this._indexs[2];
|
||||
@ -136,10 +187,14 @@ class DatePicker {
|
||||
updateColumn: 1,
|
||||
updateIndex: index
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
return DatePicker;
|
||||
}();
|
||||
// 组件内使用 this.indexs 好像有问题
|
||||
let _indexs = [];
|
||||
|
||||
|
||||
var _indexs = [];
|
||||
Component({
|
||||
properties: {
|
||||
placeholder: {
|
||||
@ -168,112 +223,123 @@ Component({
|
||||
data: {
|
||||
transPos: [0, 0, 0, 0, 0, 0]
|
||||
},
|
||||
attached() {
|
||||
this.use = {}
|
||||
;['years', 'months', 'days', 'hours', 'minutes', 'seconds'].forEach((item) => {
|
||||
if ((this.data.notUse || []).indexOf(item) === -1) { this.use[item] = true }
|
||||
attached: function attached() {
|
||||
var _this = this;
|
||||
|
||||
this.use = {};['years', 'months', 'days', 'hours', 'minutes', 'seconds'].forEach(function (item) {
|
||||
if ((_this.data.notUse || []).indexOf(item) === -1) {
|
||||
_this.use[item] = true;
|
||||
}
|
||||
});
|
||||
this.setData({ use: this.use });
|
||||
this.data.pickerView && !this.data.native && this.showPicker();
|
||||
},
|
||||
ready() {
|
||||
ready: function ready() {
|
||||
// 微信 bug,如果不先定义会导致不能选中
|
||||
this.setData({
|
||||
"dataList":[
|
||||
[
|
||||
"2018","2019","2020","2021","2022","2023","2024","2025","2026","2027","2028","2029","2030","2031","2032","2033","2034","2035","2036","2037","2038","2039","2040","2041","2042","2043"
|
||||
],
|
||||
genNumber(1, 12, 2),
|
||||
genNumber(0, 31, 2),
|
||||
genNumber(0, 23, 2),
|
||||
genNumber(0, 59, 2),
|
||||
genNumber(0, 59, 2)
|
||||
]
|
||||
})
|
||||
"dataList": [["2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030", "2031", "2032", "2033", "2034", "2035", "2036", "2037", "2038", "2039", "2040", "2041", "2042", "2043"], genNumber(1, 12, 2), genNumber(0, 31, 2), genNumber(0, 23, 2), genNumber(0, 59, 2), genNumber(0, 59, 2)]
|
||||
});
|
||||
this.picker = new DatePicker(this.data.format, this.data.date, this.updatePicker.bind(this));
|
||||
},
|
||||
|
||||
methods: {
|
||||
updatePicker({ dataList, indexs, updateColumn, updateIndex }) {
|
||||
let updateData = {};
|
||||
updatePicker: function updatePicker(_ref3) {
|
||||
var dataList = _ref3.dataList,
|
||||
indexs = _ref3.indexs,
|
||||
updateColumn = _ref3.updateColumn,
|
||||
updateIndex = _ref3.updateIndex;
|
||||
|
||||
var updateData = {};
|
||||
_indexs = indexs;
|
||||
// 指定更新某列数据,表示某列数据更新
|
||||
if (updateColumn) {
|
||||
updateData[`transPos[${updateColumn}]`] = -36 * _indexs[updateColumn];
|
||||
updateData[`dataList[${updateColumn}]`] = dataList[updateColumn];
|
||||
updateData['transPos[' + updateColumn + ']'] = -36 * _indexs[updateColumn];
|
||||
updateData['dataList[' + updateColumn + ']'] = dataList[updateColumn];
|
||||
}
|
||||
// 指定更新某列索引,表示某列数据选中的索引已更新
|
||||
if (typeof updateIndex !== 'undefined') {
|
||||
updateData[`transPos[${updateColumn}]`] = -36 * _indexs[updateColumn];
|
||||
updateData[`selected[${updateColumn}]`] = indexs[updateColumn];
|
||||
updateData['transPos[' + updateColumn + ']'] = -36 * _indexs[updateColumn];
|
||||
updateData['selected[' + updateColumn + ']'] = indexs[updateColumn];
|
||||
}
|
||||
|
||||
// 只在初始化时设置全部的值,其他的都局部更新
|
||||
if (!updateColumn && typeof updateIndex === 'undefined') {
|
||||
updateData = { dataList, selected: indexs };
|
||||
_indexs.forEach((item, index) => {
|
||||
updateData[`transPos[${index}]`] = -item * 36;
|
||||
updateData = { dataList: dataList, selected: indexs };
|
||||
_indexs.forEach(function (item, index) {
|
||||
updateData['transPos[' + index + ']'] = -item * 36;
|
||||
});
|
||||
}
|
||||
|
||||
this.setData(updateData);
|
||||
},
|
||||
touchmove(e) {
|
||||
let { changedTouches, target } = e;
|
||||
let col = target.dataset.col;
|
||||
let { clientY } = changedTouches[0];
|
||||
touchmove: function touchmove(e) {
|
||||
var changedTouches = e.changedTouches,
|
||||
target = e.target;
|
||||
|
||||
var col = target.dataset.col;
|
||||
var clientY = changedTouches[0].clientY;
|
||||
|
||||
if (!col) return;
|
||||
|
||||
let updateData = {};
|
||||
let itemLength = this.data.dataList[col].length;
|
||||
updateData[`transPos[${col}]`] = this.startTransPos + (clientY - this.startY);
|
||||
if (updateData[`transPos[${col}]`] >= 0) {
|
||||
updateData[`transPos[${col}]`] = 0;
|
||||
} else if (-(itemLength - 1) * 36 >= updateData[`transPos[${col}]`]) {
|
||||
updateData[`transPos[${col}]`] = -(itemLength - 1) * 36;
|
||||
var updateData = {};
|
||||
var itemLength = this.data.dataList[col].length;
|
||||
updateData['transPos[' + col + ']'] = this.startTransPos + (clientY - this.startY);
|
||||
if (updateData['transPos[' + col + ']'] >= 0) {
|
||||
updateData['transPos[' + col + ']'] = 0;
|
||||
} else if (-(itemLength - 1) * 36 >= updateData['transPos[' + col + ']']) {
|
||||
updateData['transPos[' + col + ']'] = -(itemLength - 1) * 36;
|
||||
}
|
||||
this.setData(updateData);
|
||||
},
|
||||
touchStart(e) {
|
||||
let { target, changedTouches } = e;
|
||||
let col = target.dataset.col;
|
||||
let touchData = changedTouches[0];
|
||||
touchStart: function touchStart(e) {
|
||||
var target = e.target,
|
||||
changedTouches = e.changedTouches;
|
||||
|
||||
var col = target.dataset.col;
|
||||
var touchData = changedTouches[0];
|
||||
if (!col) return;
|
||||
|
||||
this.startY = touchData.clientY;
|
||||
this.startTime = e.timeStamp;
|
||||
this.startTransPos = this.data.transPos[col];
|
||||
},
|
||||
touchEnd(e) {
|
||||
let { col } = e.target.dataset;
|
||||
touchEnd: function touchEnd(e) {
|
||||
var col = e.target.dataset.col;
|
||||
|
||||
if (!col) return;
|
||||
let pos = this.data.transPos[col];
|
||||
let itemIndex = Math.round(pos / 36);
|
||||
var pos = this.data.transPos[col];
|
||||
var itemIndex = Math.round(pos / 36);
|
||||
|
||||
this.columnchange({ detail: { column: +col, value: -itemIndex } });
|
||||
},
|
||||
columnchange(e) {
|
||||
let { column, value } = e.detail;
|
||||
columnchange: function columnchange(e) {
|
||||
var _e$detail = e.detail,
|
||||
column = _e$detail.column,
|
||||
value = _e$detail.value;
|
||||
|
||||
_indexs[column] = value;
|
||||
this.picker.update(column, value, this.updatePicker.bind(this));
|
||||
this.data.pickerView && !this.data.native && this.change({detail: {value: _indexs}})
|
||||
this.data.pickerView && !this.data.native && this.change({ detail: { value: _indexs } });
|
||||
},
|
||||
getFormatStr() {
|
||||
let date = new Date()
|
||||
;['FullYear', 'Month', 'Date', 'Hours', 'Minutes', 'Seconds'].forEach((key, index) => {
|
||||
let value = this.data.dataList[index][_indexs[index]];
|
||||
getFormatStr: function getFormatStr() {
|
||||
var _this2 = this;
|
||||
|
||||
var date = new Date();['FullYear', 'Month', 'Date', 'Hours', 'Minutes', 'Seconds'].forEach(function (key, index) {
|
||||
var value = _this2.data.dataList[index][_indexs[index]];
|
||||
if (key === 'Month') {
|
||||
value = +this.data.dataList[index][_indexs[index]] - 1;
|
||||
value = +_this2.data.dataList[index][_indexs[index]] - 1;
|
||||
}
|
||||
date[`set${key}`](+value);
|
||||
date['set' + key](+value);
|
||||
});
|
||||
|
||||
return moment(date, this.data.format);
|
||||
},
|
||||
showPicker() {
|
||||
showPicker: function showPicker() {
|
||||
this.setData({ show: true });
|
||||
},
|
||||
hidePicker(e) {
|
||||
let { action } = e.currentTarget.dataset;
|
||||
hidePicker: function hidePicker(e) {
|
||||
var action = e.currentTarget.dataset.action;
|
||||
|
||||
this.setData({ show: false });
|
||||
if (action === 'cancel') {
|
||||
this.cancel({ detail: {} });
|
||||
@ -281,10 +347,11 @@ Component({
|
||||
this.change({ detail: { value: _indexs } });
|
||||
}
|
||||
},
|
||||
change(e) {
|
||||
let { value } = e.detail;
|
||||
|
||||
let data = this.data.dataList.map((item, index) => {
|
||||
change: function change(e) {
|
||||
var value = e.detail.value;
|
||||
|
||||
|
||||
var data = this.data.dataList.map(function (item, index) {
|
||||
return +item[value[index]];
|
||||
});
|
||||
|
||||
@ -292,22 +359,22 @@ Component({
|
||||
|
||||
// 为了支持原生 picker view,每次 change 都需要手动 columnchange
|
||||
if (this.data.pickerView && this.data.native) {
|
||||
for (let index = 0; index < value.length; index++) {
|
||||
for (var index = 0; index < value.length; index++) {
|
||||
if (_indexs[index] !== value[index]) {
|
||||
this.columnchange({
|
||||
detail: {
|
||||
column: index, value: value[index]
|
||||
}
|
||||
})
|
||||
break // 这里每次只处理一列,否则会出现日期值为 undefined 的情况
|
||||
});
|
||||
break; // 这里每次只处理一列,否则会出现日期值为 undefined 的情况
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
this.setData({ text: this.getFormatStr() });
|
||||
},
|
||||
cancel(e) {
|
||||
cancel: function cancel(e) {
|
||||
this.triggerEvent('cancel', e.detail);
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
4
dist/dialog/data.js
vendored
4
dist/dialog/data.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = {
|
||||
// 标题
|
||||
title: '',
|
||||
@ -22,4 +24,4 @@ module.exports = {
|
||||
cancelButtonText: '取消',
|
||||
// 取消按钮颜色
|
||||
cancelButtonColor: '#333'
|
||||
};
|
||||
};
|
40
dist/dialog/dialog.js
vendored
40
dist/dialog/dialog.js
vendored
@ -1,19 +1,18 @@
|
||||
const defaultData = require('./data');
|
||||
'use strict';
|
||||
|
||||
var defaultData = require('./data');
|
||||
|
||||
// options 使用参数
|
||||
// pageCtx 页面 page 上下文
|
||||
function Dialog(options, pageCtx) {
|
||||
const parsedOptions = {
|
||||
...defaultData,
|
||||
...options
|
||||
};
|
||||
var parsedOptions = Object.assign({}, defaultData, options);
|
||||
|
||||
let ctx = pageCtx;
|
||||
var ctx = pageCtx;
|
||||
if (!ctx) {
|
||||
const pages = getCurrentPages();
|
||||
var pages = getCurrentPages();
|
||||
ctx = pages[pages.length - 1];
|
||||
}
|
||||
const dialogCtx = ctx.selectComponent(parsedOptions.selector);
|
||||
var dialogCtx = ctx.selectComponent(parsedOptions.selector);
|
||||
|
||||
if (!dialogCtx) {
|
||||
console.error('无法找到对应的dialog组件,请于页面中注册并在 wxml 中声明 dialog 自定义组件');
|
||||
@ -22,8 +21,10 @@ function Dialog(options, pageCtx) {
|
||||
|
||||
// 处理默认按钮的展示
|
||||
// 纵向排布确认按钮在上方
|
||||
const { buttons = [] } = parsedOptions;
|
||||
let showCustomBtns = false;
|
||||
var _parsedOptions$button = parsedOptions.buttons,
|
||||
buttons = _parsedOptions$button === undefined ? [] : _parsedOptions$button;
|
||||
|
||||
var showCustomBtns = false;
|
||||
if (buttons.length === 0) {
|
||||
if (parsedOptions.showConfirmButton) {
|
||||
buttons.push({
|
||||
@ -34,7 +35,7 @@ function Dialog(options, pageCtx) {
|
||||
}
|
||||
|
||||
if (parsedOptions.showCancelButton) {
|
||||
const cancelButton = {
|
||||
var cancelButton = {
|
||||
type: 'cancel',
|
||||
text: parsedOptions.cancelButtonText,
|
||||
color: parsedOptions.cancelButtonColor
|
||||
@ -49,16 +50,15 @@ function Dialog(options, pageCtx) {
|
||||
showCustomBtns = true;
|
||||
}
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
dialogCtx.setData({
|
||||
...parsedOptions,
|
||||
buttons,
|
||||
showCustomBtns,
|
||||
key: `${(new Date()).getTime()}`,
|
||||
return new Promise(function (resolve, reject) {
|
||||
dialogCtx.setData(Object.assign({}, parsedOptions, {
|
||||
buttons: buttons,
|
||||
showCustomBtns: showCustomBtns,
|
||||
key: '' + new Date().getTime(),
|
||||
show: true,
|
||||
promiseFunc: { resolve, reject }
|
||||
});
|
||||
promiseFunc: { resolve: resolve, reject: reject }
|
||||
}));
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = Dialog;
|
||||
module.exports = Dialog;
|
30
dist/dialog/index.js
vendored
30
dist/dialog/index.js
vendored
@ -1,27 +1,37 @@
|
||||
const defaultData = require('./data');
|
||||
'use strict';
|
||||
|
||||
const _f = function () {};
|
||||
var defaultData = require('./data');
|
||||
|
||||
var _f = function _f() {};
|
||||
|
||||
Component({
|
||||
properties: {},
|
||||
|
||||
data: {
|
||||
...defaultData,
|
||||
data: Object.assign({}, defaultData, {
|
||||
key: '',
|
||||
show: false,
|
||||
showCustomBtns: false,
|
||||
promiseFunc: {}
|
||||
},
|
||||
}),
|
||||
|
||||
methods: {
|
||||
handleButtonClick(e) {
|
||||
const { currentTarget = {} } = e;
|
||||
const { dataset = {} } = currentTarget;
|
||||
handleButtonClick: function handleButtonClick(e) {
|
||||
var _e$currentTarget = e.currentTarget,
|
||||
currentTarget = _e$currentTarget === undefined ? {} : _e$currentTarget;
|
||||
var _currentTarget$datase = currentTarget.dataset,
|
||||
dataset = _currentTarget$datase === undefined ? {} : _currentTarget$datase;
|
||||
|
||||
// 获取当次弹出框的信息
|
||||
const { resolve = _f, reject = _f } = this.data.promiseFunc || {};
|
||||
|
||||
var _ref = this.data.promiseFunc || {},
|
||||
_ref$resolve = _ref.resolve,
|
||||
resolve = _ref$resolve === undefined ? _f : _ref$resolve,
|
||||
_ref$reject = _ref.reject,
|
||||
reject = _ref$reject === undefined ? _f : _ref$reject;
|
||||
|
||||
// 重置展示
|
||||
|
||||
|
||||
this.setData({
|
||||
show: false
|
||||
});
|
||||
@ -46,4 +56,4 @@ Component({
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
21
dist/field/index.js
vendored
21
dist/field/index.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
behaviors: ['wx://form-field'],
|
||||
|
||||
@ -27,20 +29,21 @@ Component({
|
||||
},
|
||||
|
||||
methods: {
|
||||
handleFieldChange(event) {
|
||||
const { detail = {} } = event;
|
||||
const { value = '' } = detail;
|
||||
this.setData({ value });
|
||||
handleFieldChange: function handleFieldChange(event) {
|
||||
var _event$detail = event.detail,
|
||||
detail = _event$detail === undefined ? {} : _event$detail;
|
||||
var _detail$value = detail.value,
|
||||
value = _detail$value === undefined ? '' : _detail$value;
|
||||
|
||||
this.setData({ value: value });
|
||||
|
||||
this.triggerEvent('change', event);
|
||||
},
|
||||
|
||||
handleFieldFocus(event) {
|
||||
handleFieldFocus: function handleFieldFocus(event) {
|
||||
this.triggerEvent('focus', event);
|
||||
},
|
||||
|
||||
handleFieldBlur(event) {
|
||||
handleFieldBlur: function handleFieldBlur(event) {
|
||||
this.triggerEvent('blur', event);
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
2
dist/field/index.wxss
vendored
2
dist/field/index.wxss
vendored
@ -1 +1 @@
|
||||
.zan-cell{position:relative;padding:12px 15px;display:flex;align-items:center;line-height:1.4;font-size:14px}.zan-cell::after{content:'';position:absolute;top:0;left:0;width:200%;height:200%;-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:0 0;transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:0 solid #e5e5e5;border-bottom-width:1px;left:15px;right:0}.zan-cell .zan-cell__icon{margin-right:5px}.zan-cell .zan-cell__icon:empty{display:none}.zan-cell__bd{flex:1}.zan-cell__text{line-height:24px;font-size:14px}.zan-cell__desc{line-height:1.2;font-size:12px;color:#666}.zan-cell__ft{position:relative;text-align:right;color:#666}.zan-cell__no-pading{padding:0}.zan-cell__no-pading .zan-cell__bd_padding{padding:12px 0 12px 15px}.zan-cell__no-pading .zan-cell__bd_padding .zan-form__input{height:26px}.zan-cell__no-pading .zan-cell__ft_padding{padding:12px 15px 12px 0}.zan-cell.last-cell::after{display:none}.zan-cell--access .zan-cell__ft{padding-right:13px}.zan-cell--access .zan-cell__ft::after{position:absolute;top:50%;right:2px;content:" ";display:inline-block;height:6px;width:6px;border-width:2px 2px 0 0;border-color:#c8c8c8;border-style:solid;-webkit-transform:translateY(-50%) matrix(.71,.71,-.71,.71,0,0);transform:translateY(-50%) matrix(.71,.71,-.71,.71,0,0)}.zan-cell--switch{padding-top:6px;padding-bottom:6px}.zan-field{padding:7px 15px;color:#333}.zan-field--wrapped{margin:10px 15px;background-color:#fff}.zan-field--wrapped::after{left:0;border-width:1px;border-radius:4px}.zan-field.zan-field--wrapped::after{display:block}.zan-field--error{color:#f40}.zan-field--wrapped.zan-field--error::after{border-color:#f40}.zan-field__title{color:#333;min-width:65px;padding-right:10px}.zan-field__input{flex:1;line-height:1.6;padding:4px 0;min-height:22px;height:auto;font-size:14px}.zan-field__placeholder{font-size:14px}.zan-field__input--right{text-align:right}
|
||||
.zan-cell{position:relative;padding:12px 15px;display:flex;align-items:center;line-height:1.4;background-color:#fff;font-size:14px}.zan-cell::after{content:'';position:absolute;top:0;left:0;width:200%;height:200%;-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:0 0;transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:0 solid #e5e5e5;border-bottom-width:1px;left:15px;right:0}.zan-cell .zan-cell__icon{margin-right:5px}.zan-cell .zan-cell__icon:empty{display:none}.zan-cell__bd{flex:1}.zan-cell__text{line-height:24px;font-size:14px}.zan-cell__desc{line-height:1.2;font-size:12px;color:#666}.zan-cell__ft{position:relative;text-align:right;color:#666}.zan-cell__no-pading{padding:0}.zan-cell__no-pading .zan-cell__bd_padding{padding:12px 0 12px 15px}.zan-cell__no-pading .zan-cell__bd_padding .zan-form__input{height:26px}.zan-cell__no-pading .zan-cell__ft_padding{padding:12px 15px 12px 0}.zan-cell.last-cell::after{display:none}.zan-cell--access .zan-cell__ft{padding-right:13px}.zan-cell--access .zan-cell__ft::after{position:absolute;top:50%;right:2px;content:" ";display:inline-block;height:6px;width:6px;border-width:2px 2px 0 0;border-color:#c8c8c8;border-style:solid;-webkit-transform:translateY(-50%) matrix(.71,.71,-.71,.71,0,0);transform:translateY(-50%) matrix(.71,.71,-.71,.71,0,0)}.zan-cell--switch{padding-top:6px;padding-bottom:6px}.zan-field{padding:7px 15px;color:#333}.zan-field--wrapped{margin:10px 15px;background-color:#fff}.zan-field--wrapped::after{left:0;border-width:1px;border-radius:4px}.zan-field.zan-field--wrapped::after{display:block}.zan-field--error{color:#f40}.zan-field--wrapped.zan-field--error::after{border-color:#f40}.zan-field__title{color:#333;min-width:65px;padding-right:10px}.zan-field__input{flex:1;line-height:1.6;padding:4px 0;min-height:22px;height:auto;font-size:14px}.zan-field__placeholder{font-size:14px}.zan-field__input--right{text-align:right}
|
4
dist/icon/index.js
vendored
4
dist/icon/index.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
properties: {
|
||||
type: {
|
||||
@ -5,4 +7,4 @@ Component({
|
||||
value: ''
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
5
dist/index.js
vendored
5
dist/index.js
vendored
@ -1,4 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
exports.Dialog = require('./dialog/dialog');
|
||||
exports.Toast = require('./toast/toast');
|
||||
// exports.TopTips = require('./toptips/index');
|
||||
|
||||
// exports.TopTips = require('./toptips/index');
|
4
dist/loading/index.js
vendored
4
dist/loading/index.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
properties: {
|
||||
type: {
|
||||
@ -8,4 +10,4 @@ Component({
|
||||
type: String
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
142
dist/noticebar/index.js
vendored
142
dist/noticebar/index.js
vendored
@ -1,6 +1,8 @@
|
||||
const VALID_MODE = ['closeable'];
|
||||
const FONT_COLOR = '#f60';
|
||||
const BG_COLOR = '#fff7cc';
|
||||
'use strict';
|
||||
|
||||
var VALID_MODE = ['closeable'];
|
||||
var FONT_COLOR = '#f60';
|
||||
var BG_COLOR = '#fff7cc';
|
||||
|
||||
Component({
|
||||
properties: {
|
||||
@ -57,111 +59,113 @@ Component({
|
||||
timer: null
|
||||
},
|
||||
|
||||
attached() {
|
||||
const { mode } = this.data;
|
||||
attached: function attached() {
|
||||
var mode = this.data.mode;
|
||||
|
||||
if (mode && this._checkMode(mode)) {
|
||||
this.setData({
|
||||
hasRightIcon: true
|
||||
});
|
||||
}
|
||||
},
|
||||
detached: function detached() {
|
||||
var timer = this.data.timer;
|
||||
|
||||
detached() {
|
||||
const { timer } = this.data;
|
||||
timer && clearTimeout(timer);
|
||||
},
|
||||
|
||||
ready() {
|
||||
ready: function ready() {
|
||||
this._init();
|
||||
},
|
||||
|
||||
|
||||
methods: {
|
||||
_checkMode(val) {
|
||||
const isValidMode = ~VALID_MODE.indexOf(val);
|
||||
_checkMode: function _checkMode(val) {
|
||||
var isValidMode = ~VALID_MODE.indexOf(val);
|
||||
if (!isValidMode) {
|
||||
console.warn(`mode only accept value of ${VALID_MODE}, now get ${val}.`);
|
||||
console.warn('mode only accept value of ' + VALID_MODE + ', now get ' + val + '.');
|
||||
}
|
||||
return isValidMode;
|
||||
},
|
||||
_init: function _init() {
|
||||
var _this = this;
|
||||
|
||||
_init() {
|
||||
wx.createSelectorQuery()
|
||||
.in(this)
|
||||
.select('.zan-noticebar__content')
|
||||
.boundingClientRect((rect) => {
|
||||
wx.createSelectorQuery().in(this).select('.zan-noticebar__content').boundingClientRect(function (rect) {
|
||||
if (!rect || !rect.width) {
|
||||
throw new Error('页面缺少 noticebar 元素');
|
||||
}
|
||||
_this.setData({
|
||||
width: rect.width
|
||||
});
|
||||
|
||||
wx.createSelectorQuery().in(_this).select('.zan-noticebar__content-wrap').boundingClientRect(function (rect) {
|
||||
if (!rect || !rect.width) {
|
||||
throw new Error('页面缺少 noticebar 元素');
|
||||
return;
|
||||
}
|
||||
this.setData({
|
||||
width: rect.width
|
||||
});
|
||||
|
||||
wx.createSelectorQuery()
|
||||
.in(this)
|
||||
.select('.zan-noticebar__content-wrap')
|
||||
.boundingClientRect((rect) => {
|
||||
if (!rect || !rect.width) {
|
||||
return;
|
||||
}
|
||||
var wrapWidth = rect.width;
|
||||
var _data = _this.data,
|
||||
width = _data.width,
|
||||
speed = _data.speed,
|
||||
scrollable = _data.scrollable,
|
||||
delay = _data.delay;
|
||||
|
||||
const wrapWidth = rect.width;
|
||||
const {
|
||||
width, speed, scrollable, delay
|
||||
} = this.data;
|
||||
|
||||
if (scrollable && wrapWidth < width) {
|
||||
const elapse = width / speed * 1000;
|
||||
const animation = wx.createAnimation({
|
||||
duration: elapse,
|
||||
timeingFunction: 'linear',
|
||||
delay
|
||||
});
|
||||
const resetAnimation = wx.createAnimation({
|
||||
duration: 0,
|
||||
timeingFunction: 'linear'
|
||||
});
|
||||
if (scrollable && wrapWidth < width) {
|
||||
var elapse = width / speed * 1000;
|
||||
var animation = wx.createAnimation({
|
||||
duration: elapse,
|
||||
timeingFunction: 'linear',
|
||||
delay: delay
|
||||
});
|
||||
var resetAnimation = wx.createAnimation({
|
||||
duration: 0,
|
||||
timeingFunction: 'linear'
|
||||
});
|
||||
|
||||
this.setData({
|
||||
elapse,
|
||||
wrapWidth,
|
||||
animation,
|
||||
resetAnimation
|
||||
}, () => {
|
||||
this._scroll();
|
||||
});
|
||||
}
|
||||
})
|
||||
.exec();
|
||||
})
|
||||
.exec();
|
||||
_this.setData({
|
||||
elapse: elapse,
|
||||
wrapWidth: wrapWidth,
|
||||
animation: animation,
|
||||
resetAnimation: resetAnimation
|
||||
}, function () {
|
||||
_this._scroll();
|
||||
});
|
||||
}
|
||||
}).exec();
|
||||
}).exec();
|
||||
},
|
||||
_scroll: function _scroll() {
|
||||
var _this2 = this;
|
||||
|
||||
var _data2 = this.data,
|
||||
animation = _data2.animation,
|
||||
resetAnimation = _data2.resetAnimation,
|
||||
wrapWidth = _data2.wrapWidth,
|
||||
elapse = _data2.elapse,
|
||||
speed = _data2.speed;
|
||||
|
||||
_scroll() {
|
||||
const {
|
||||
animation, resetAnimation, wrapWidth, elapse, speed
|
||||
} = this.data;
|
||||
resetAnimation.translateX(wrapWidth).step();
|
||||
const animationData = animation.translateX(-(elapse * speed) / 1000).step();
|
||||
var animationData = animation.translateX(-(elapse * speed) / 1000).step();
|
||||
this.setData({
|
||||
animationData: resetAnimation.export()
|
||||
});
|
||||
setTimeout(() => {
|
||||
this.setData({
|
||||
setTimeout(function () {
|
||||
_this2.setData({
|
||||
animationData: animationData.export()
|
||||
});
|
||||
}, 100);
|
||||
|
||||
const timer = setTimeout(() => {
|
||||
this._scroll();
|
||||
var timer = setTimeout(function () {
|
||||
_this2._scroll();
|
||||
}, elapse);
|
||||
|
||||
this.setData({
|
||||
timer
|
||||
timer: timer
|
||||
});
|
||||
},
|
||||
_handleButtonClick: function _handleButtonClick() {
|
||||
var timer = this.data.timer;
|
||||
|
||||
_handleButtonClick() {
|
||||
const { timer } = this.data;
|
||||
timer && clearTimeout(timer);
|
||||
this.setData({
|
||||
show: false,
|
||||
@ -169,4 +173,4 @@ Component({
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
4
dist/panel/index.js
vendored
4
dist/panel/index.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
/**
|
||||
* 组件的属性列表
|
||||
@ -20,4 +22,4 @@ Component({
|
||||
value: false
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
6
dist/popup/index.js
vendored
6
dist/popup/index.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
properties: {
|
||||
show: {
|
||||
@ -23,7 +25,7 @@ Component({
|
||||
},
|
||||
|
||||
methods: {
|
||||
handleMaskClick() {
|
||||
handleMaskClick: function handleMaskClick() {
|
||||
this.triggerEvent('click-overlay', {});
|
||||
|
||||
if (!this.data.closeOnClickOverlay) {
|
||||
@ -32,4 +34,4 @@ Component({
|
||||
this.triggerEvent('close', {});
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
4
dist/row/index.js
vendored
4
dist/row/index.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
externalClasses: ['row-class'],
|
||||
|
||||
@ -6,4 +8,4 @@ Component({
|
||||
type: 'child'
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
10
dist/select/index.js
vendored
10
dist/select/index.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
properties: {
|
||||
items: {
|
||||
@ -19,9 +21,9 @@ Component({
|
||||
},
|
||||
|
||||
methods: {
|
||||
handleSelectChange(e) {
|
||||
const value = e.detail.value;
|
||||
this.triggerEvent('change', { value });
|
||||
handleSelectChange: function handleSelectChange(e) {
|
||||
var value = e.detail.value;
|
||||
this.triggerEvent('change', { value: value });
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
42
dist/stepper/index.js
vendored
42
dist/stepper/index.js
vendored
@ -1,3 +1,9 @@
|
||||
'use strict';
|
||||
|
||||
// Note that the bitwise operators and shift operators operate on 32-bit ints
|
||||
// so in that case, the max safe integer is 2^31-1, or 2147483647
|
||||
var VERY_LARGE_NUMBER = 2147483647;
|
||||
|
||||
Component({
|
||||
properties: {
|
||||
size: String,
|
||||
@ -11,7 +17,7 @@ Component({
|
||||
},
|
||||
max: {
|
||||
type: Number,
|
||||
value: Infinity
|
||||
value: VERY_LARGE_NUMBER
|
||||
},
|
||||
step: {
|
||||
type: Number,
|
||||
@ -20,11 +26,13 @@ Component({
|
||||
},
|
||||
|
||||
methods: {
|
||||
handleZanStepperChange(e, type) {
|
||||
const { dataset = {} } = e.currentTarget;
|
||||
const { disabled } = dataset;
|
||||
const { step } = this.data;
|
||||
let { stepper } = this.data;
|
||||
handleZanStepperChange: function handleZanStepperChange(e, type) {
|
||||
var _e$currentTarget$data = e.currentTarget.dataset,
|
||||
dataset = _e$currentTarget$data === undefined ? {} : _e$currentTarget$data;
|
||||
var disabled = dataset.disabled;
|
||||
var step = this.data.step;
|
||||
var stepper = this.data.stepper;
|
||||
|
||||
|
||||
if (disabled) return null;
|
||||
|
||||
@ -37,22 +45,24 @@ Component({
|
||||
this.triggerEvent('change', stepper);
|
||||
this.triggerEvent(type);
|
||||
},
|
||||
|
||||
handleZanStepperMinus(e) {
|
||||
handleZanStepperMinus: function handleZanStepperMinus(e) {
|
||||
this.handleZanStepperChange(e, 'minus');
|
||||
},
|
||||
|
||||
handleZanStepperPlus(e) {
|
||||
handleZanStepperPlus: function handleZanStepperPlus(e) {
|
||||
this.handleZanStepperChange(e, 'plus');
|
||||
},
|
||||
handleZanStepperBlur: function handleZanStepperBlur(e) {
|
||||
var _this = this;
|
||||
|
||||
var value = e.detail.value;
|
||||
var _data = this.data,
|
||||
min = _data.min,
|
||||
max = _data.max;
|
||||
|
||||
handleZanStepperBlur(e) {
|
||||
let { value } = e.detail;
|
||||
const { min, max } = this.data;
|
||||
|
||||
if (!value) {
|
||||
setTimeout(() => {
|
||||
this.triggerEvent('change', min);
|
||||
setTimeout(function () {
|
||||
_this.triggerEvent('change', min);
|
||||
}, 16);
|
||||
return;
|
||||
}
|
||||
@ -67,4 +77,4 @@ Component({
|
||||
this.triggerEvent('change', value);
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
4
dist/steps/index.js
vendored
4
dist/steps/index.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
properties: {
|
||||
type: {
|
||||
@ -17,4 +19,4 @@ Component({
|
||||
|
||||
className: String
|
||||
}
|
||||
});
|
||||
});
|
2
dist/steps/index.wxss
vendored
2
dist/steps/index.wxss
vendored
@ -1 +1 @@
|
||||
.zan-steps--steps.zan-steps--5 .zan-steps__step{width:25%}.zan-steps--steps.zan-steps--4 .zan-steps__step{width:33%}.zan-steps--steps.zan-steps--3 .zan-steps__step{width:50%}.zan-steps--steps .zan-steps__step{position:relative;float:left;padding-bottom:25px;color:#b1b1b1}.zan-steps--steps .zan-steps__title{-webkit-transform:translateX(-50%);transform:translateX(-50%);font-size:10px;text-align:center}.zan-steps--steps .zan-steps__icons{position:absolute;top:30px;left:-10px;padding:0 8px;background-color:#fff;z-index:10}.zan-steps--steps .zan-steps__circle{display:block;position:relative;width:5px;height:5px;background-color:#e5e5e5;border-radius:50%}.zan-steps--steps .zan-steps__line{position:absolute;left:0;top:32px;width:100%;height:1px;background-color:#e5e5e5}.zan-steps--steps .zan-steps__step--done{color:#333}.zan-steps--steps .zan-steps__step--done .zan-steps__line{background-color:#06bf04}.zan-steps--steps .zan-steps__step--done .zan-steps__circle{width:5px;height:5px;background-color:#09bb07}.zan-steps--steps .zan-steps__step--cur .zan-steps__icons{top:25px;left:-14px}.zan-steps--steps .zan-steps__step--cur .zan-steps__circle{width:13px;height:13px;background-image:url(https://b.yzcdn.cn/v2/image/wap/success_small@2x.png);background-size:13px 13px}.zan-steps--steps .zan-steps__step--cur .zan-steps__line{background-color:#e5e5e5}.zan-steps--steps .zan-steps__step--first-child .zan-steps__title{margin-left:0;-webkit-transform:none;transform:none;text-align:left}.zan-steps--steps .zan-steps__step--first-child .zan-steps__icons{left:-7px}.zan-steps--steps .zan-steps__step--last-child{position:absolute;right:0;top:0;text-align:right}.zan-steps--steps .zan-steps__step--last-child .zan-steps__title{-webkit-transform:none;transform:none;text-align:right}.zan-steps--steps .zan-steps__step--last-child .zan-steps__icons{left:auto;right:-6px}.zan-steps--steps .zan-steps__step--last-child .zan-steps__line{display:none}.zan-steps--steps .zan-steps__step--db-title{min-height:29px}.zan-steps--steps .zan-steps__step--db-title .zan-steps__line{top:45px}.zan-steps--steps .zan-steps__step--db-title .zan-steps__icons{top:43px}.zan-steps--steps .zan-steps__step--db-title.zan-steps__step--cur .zan-steps__icons{top:39px}.zan-steps--vsteps{color:#999;font-size:14px}.zan-steps--vsteps .zan-steps__step{position:relative;padding:15px 0}.zan-steps--vsteps .zan-steps__step--done{color:#4b0}.zan-steps--vsteps .zan-steps__line{position:absolute;top:0;bottom:0;left:7px;width:1px;background-color:#e5e5e5}.zan-steps--vsteps .zan-steps__title{display:inline-block;line-height:20px;padding-left:27px}.zan-steps--vsteps .zan-steps__title--desc{padding-left:3px}.zan-steps--vsteps .zan-steps__icons{position:absolute;left:7px;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);z-index:2;padding:3px 0;background-color:#fff}.zan-steps--vsteps .zan-steps__circle{width:5px;height:5px;background-color:#cacaca;border-radius:10px}.zan-steps--vsteps .zan-steps__step--done .zan-steps__circle{width:5px;height:5px;background-color:#09bb07}.zan-steps--vsteps .zan-steps__step--cur .zan-steps__circle{width:13px;height:13px;background:transparent url(https://b.yzcdn.cn/v2/image/wap/success_small@2x.png);background-size:13px 13px;border-radius:0}.zan-steps--vsteps .zan-steps__icon--active{width:13px;height:13px}.zan-steps--vsteps .zan-steps__step--first-child .zan-steps__title::before{content:'';position:absolute;top:0;bottom:50%;left:7px;width:1px;background-color:#fff;z-index:1}.zan-steps--vsteps .zan-steps__step--last-child .zan-steps__title::after{content:'';position:absolute;top:50%;bottom:0;left:7px;width:1px;background-color:#fff;z-index:1}.zan-steps{position:relative}
|
||||
.zan-steps--steps.zan-steps--5 .zan-steps__step{width:25%}.zan-steps--steps.zan-steps--4 .zan-steps__step{width:33%}.zan-steps--steps.zan-steps--3 .zan-steps__step{width:50%}.zan-steps--steps .zan-steps__step{position:relative;float:left;padding-bottom:25px;color:#b1b1b1;width:100%}.zan-steps--steps .zan-steps__title{-webkit-transform:translateX(-50%);transform:translateX(-50%);font-size:10px;text-align:center}.zan-steps--steps .zan-steps__icons{position:absolute;top:30px;left:-10px;padding:0 8px;background-color:#fff;z-index:10}.zan-steps--steps .zan-steps__circle{display:block;position:relative;width:5px;height:5px;background-color:#e5e5e5;border-radius:50%}.zan-steps--steps .zan-steps__line{position:absolute;left:0;top:32px;width:100%;height:1px;background-color:#e5e5e5}.zan-steps--steps .zan-steps__step--done{color:#333}.zan-steps--steps .zan-steps__step--done .zan-steps__line{background-color:#06bf04}.zan-steps--steps .zan-steps__step--done .zan-steps__circle{width:5px;height:5px;background-color:#09bb07}.zan-steps--steps .zan-steps__step--cur .zan-steps__icons{top:25px;left:-14px}.zan-steps--steps .zan-steps__step--cur .zan-steps__circle{width:13px;height:13px;background-image:url(https://b.yzcdn.cn/v2/image/wap/success_small@2x.png);background-size:13px 13px}.zan-steps--steps .zan-steps__step--cur .zan-steps__line{background-color:#e5e5e5}.zan-steps--steps .zan-steps__step--first-child .zan-steps__title{margin-left:0;-webkit-transform:none;transform:none;text-align:left}.zan-steps--steps .zan-steps__step--first-child .zan-steps__icons{left:-7px}.zan-steps--steps .zan-steps__step--last-child{position:absolute;right:0;top:0;text-align:right}.zan-steps--steps .zan-steps__step--last-child .zan-steps__title{-webkit-transform:none;transform:none;text-align:right}.zan-steps--steps .zan-steps__step--last-child .zan-steps__icons{left:auto;right:-6px}.zan-steps--steps .zan-steps__step--last-child .zan-steps__line{display:none}.zan-steps--steps .zan-steps__step--db-title{min-height:29px}.zan-steps--steps .zan-steps__step--db-title .zan-steps__line{top:45px}.zan-steps--steps .zan-steps__step--db-title .zan-steps__icons{top:43px}.zan-steps--steps .zan-steps__step--db-title.zan-steps__step--cur .zan-steps__icons{top:39px}.zan-steps--vsteps{color:#999;font-size:14px}.zan-steps--vsteps .zan-steps__step{position:relative;padding:15px 0}.zan-steps--vsteps .zan-steps__step--done{color:#4b0}.zan-steps--vsteps .zan-steps__line{position:absolute;top:0;bottom:0;left:7px;width:1px;background-color:#e5e5e5}.zan-steps--vsteps .zan-steps__title{display:inline-block;line-height:20px;padding-left:27px}.zan-steps--vsteps .zan-steps__title--desc{padding-left:3px}.zan-steps--vsteps .zan-steps__icons{position:absolute;left:7px;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);z-index:2;padding:3px 0;background-color:#fff}.zan-steps--vsteps .zan-steps__circle{width:5px;height:5px;background-color:#cacaca;border-radius:10px}.zan-steps--vsteps .zan-steps__step--done .zan-steps__circle{width:5px;height:5px;background-color:#09bb07}.zan-steps--vsteps .zan-steps__step--cur .zan-steps__circle{width:13px;height:13px;background:transparent url(https://b.yzcdn.cn/v2/image/wap/success_small@2x.png);background-size:13px 13px;border-radius:0}.zan-steps--vsteps .zan-steps__icon--active{width:13px;height:13px}.zan-steps--vsteps .zan-steps__step--first-child .zan-steps__title::before{content:'';position:absolute;top:0;bottom:50%;left:7px;width:1px;background-color:#fff;z-index:1}.zan-steps--vsteps .zan-steps__step--last-child .zan-steps__title::after{content:'';position:absolute;top:50%;bottom:0;left:7px;width:1px;background-color:#fff;z-index:1}.zan-steps{position:relative}
|
2
dist/steps/wxss/step.wxss
vendored
2
dist/steps/wxss/step.wxss
vendored
@ -1 +1 @@
|
||||
.zan-steps--steps.zan-steps--5 .zan-steps__step{width:25%}.zan-steps--steps.zan-steps--4 .zan-steps__step{width:33%}.zan-steps--steps.zan-steps--3 .zan-steps__step{width:50%}.zan-steps--steps .zan-steps__step{position:relative;float:left;padding-bottom:25px;color:#b1b1b1}.zan-steps--steps .zan-steps__title{-webkit-transform:translateX(-50%);transform:translateX(-50%);font-size:10px;text-align:center}.zan-steps--steps .zan-steps__icons{position:absolute;top:30px;left:-10px;padding:0 8px;background-color:#fff;z-index:10}.zan-steps--steps .zan-steps__circle{display:block;position:relative;width:5px;height:5px;background-color:#e5e5e5;border-radius:50%}.zan-steps--steps .zan-steps__line{position:absolute;left:0;top:32px;width:100%;height:1px;background-color:#e5e5e5}.zan-steps--steps .zan-steps__step--done{color:#333}.zan-steps--steps .zan-steps__step--done .zan-steps__line{background-color:#06bf04}.zan-steps--steps .zan-steps__step--done .zan-steps__circle{width:5px;height:5px;background-color:#09bb07}.zan-steps--steps .zan-steps__step--cur .zan-steps__icons{top:25px;left:-14px}.zan-steps--steps .zan-steps__step--cur .zan-steps__circle{width:13px;height:13px;background-image:url(https://b.yzcdn.cn/v2/image/wap/success_small@2x.png);background-size:13px 13px}.zan-steps--steps .zan-steps__step--cur .zan-steps__line{background-color:#e5e5e5}.zan-steps--steps .zan-steps__step--first-child .zan-steps__title{margin-left:0;-webkit-transform:none;transform:none;text-align:left}.zan-steps--steps .zan-steps__step--first-child .zan-steps__icons{left:-7px}.zan-steps--steps .zan-steps__step--last-child{position:absolute;right:0;top:0;text-align:right}.zan-steps--steps .zan-steps__step--last-child .zan-steps__title{-webkit-transform:none;transform:none;text-align:right}.zan-steps--steps .zan-steps__step--last-child .zan-steps__icons{left:auto;right:-6px}.zan-steps--steps .zan-steps__step--last-child .zan-steps__line{display:none}.zan-steps--steps .zan-steps__step--db-title{min-height:29px}.zan-steps--steps .zan-steps__step--db-title .zan-steps__line{top:45px}.zan-steps--steps .zan-steps__step--db-title .zan-steps__icons{top:43px}.zan-steps--steps .zan-steps__step--db-title.zan-steps__step--cur .zan-steps__icons{top:39px}
|
||||
.zan-steps--steps.zan-steps--5 .zan-steps__step{width:25%}.zan-steps--steps.zan-steps--4 .zan-steps__step{width:33%}.zan-steps--steps.zan-steps--3 .zan-steps__step{width:50%}.zan-steps--steps .zan-steps__step{position:relative;float:left;padding-bottom:25px;color:#b1b1b1;width:100%}.zan-steps--steps .zan-steps__title{-webkit-transform:translateX(-50%);transform:translateX(-50%);font-size:10px;text-align:center}.zan-steps--steps .zan-steps__icons{position:absolute;top:30px;left:-10px;padding:0 8px;background-color:#fff;z-index:10}.zan-steps--steps .zan-steps__circle{display:block;position:relative;width:5px;height:5px;background-color:#e5e5e5;border-radius:50%}.zan-steps--steps .zan-steps__line{position:absolute;left:0;top:32px;width:100%;height:1px;background-color:#e5e5e5}.zan-steps--steps .zan-steps__step--done{color:#333}.zan-steps--steps .zan-steps__step--done .zan-steps__line{background-color:#06bf04}.zan-steps--steps .zan-steps__step--done .zan-steps__circle{width:5px;height:5px;background-color:#09bb07}.zan-steps--steps .zan-steps__step--cur .zan-steps__icons{top:25px;left:-14px}.zan-steps--steps .zan-steps__step--cur .zan-steps__circle{width:13px;height:13px;background-image:url(https://b.yzcdn.cn/v2/image/wap/success_small@2x.png);background-size:13px 13px}.zan-steps--steps .zan-steps__step--cur .zan-steps__line{background-color:#e5e5e5}.zan-steps--steps .zan-steps__step--first-child .zan-steps__title{margin-left:0;-webkit-transform:none;transform:none;text-align:left}.zan-steps--steps .zan-steps__step--first-child .zan-steps__icons{left:-7px}.zan-steps--steps .zan-steps__step--last-child{position:absolute;right:0;top:0;text-align:right}.zan-steps--steps .zan-steps__step--last-child .zan-steps__title{-webkit-transform:none;transform:none;text-align:right}.zan-steps--steps .zan-steps__step--last-child .zan-steps__icons{left:auto;right:-6px}.zan-steps--steps .zan-steps__step--last-child .zan-steps__line{display:none}.zan-steps--steps .zan-steps__step--db-title{min-height:29px}.zan-steps--steps .zan-steps__step--db-title .zan-steps__line{top:45px}.zan-steps--steps .zan-steps__step--db-title .zan-steps__icons{top:43px}.zan-steps--steps .zan-steps__step--db-title.zan-steps__step--cur .zan-steps__icons{top:39px}
|
10
dist/switch/index.js
vendored
10
dist/switch/index.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
properties: {
|
||||
checked: {
|
||||
@ -17,15 +19,15 @@ Component({
|
||||
},
|
||||
|
||||
methods: {
|
||||
handleZanSwitchChange() {
|
||||
handleZanSwitchChange: function handleZanSwitchChange() {
|
||||
if (this.data.loading || this.data.disabled) {
|
||||
return;
|
||||
}
|
||||
let checked = !this.data.checked;
|
||||
var checked = !this.data.checked;
|
||||
this.triggerEvent('change', {
|
||||
checked,
|
||||
checked: checked,
|
||||
loading: this.data.loading
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
11
dist/tab/index.js
vendored
11
dist/tab/index.js
vendored
@ -1,3 +1,5 @@
|
||||
'use strict';
|
||||
|
||||
Component({
|
||||
externalClasses: 'class',
|
||||
|
||||
@ -25,15 +27,14 @@ Component({
|
||||
},
|
||||
|
||||
methods: {
|
||||
_handleZanTabChange(e) {
|
||||
const selectedId = e.currentTarget.dataset.itemId;
|
||||
_handleZanTabChange: function _handleZanTabChange(e) {
|
||||
var selectedId = e.currentTarget.dataset.itemId;
|
||||
|
||||
this.setData({
|
||||
selectedId
|
||||
selectedId: selectedId
|
||||
});
|
||||
|
||||
|
||||
this.triggerEvent('tabchange', selectedId);
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
10
dist/tag/index.js
vendored
10
dist/tag/index.js
vendored
@ -1,15 +1,17 @@
|
||||
"use strict";
|
||||
|
||||
Component({
|
||||
properties: {
|
||||
type: {
|
||||
type: String,
|
||||
type: String
|
||||
},
|
||||
plain: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
value: false
|
||||
},
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
value: false
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
36
dist/toast/index.js
vendored
36
dist/toast/index.js
vendored
@ -1,4 +1,6 @@
|
||||
const DEFAULT_DATA = {
|
||||
'use strict';
|
||||
|
||||
var DEFAULT_DATA = {
|
||||
show: false,
|
||||
message: '',
|
||||
icon: '',
|
||||
@ -6,35 +8,29 @@ const DEFAULT_DATA = {
|
||||
mask: false
|
||||
};
|
||||
|
||||
const SUPPORT_TYPE = ['loading', 'success', 'fail'];
|
||||
var SUPPORT_TYPE = ['loading', 'success', 'fail'];
|
||||
|
||||
Component({
|
||||
data: {
|
||||
...DEFAULT_DATA
|
||||
},
|
||||
data: Object.assign({}, DEFAULT_DATA),
|
||||
|
||||
methods: {
|
||||
show(options) {
|
||||
const toastOptions = { ...options };
|
||||
show: function show(options) {
|
||||
var toastOptions = Object.assign({}, options);
|
||||
|
||||
let icon = options.icon || '';
|
||||
let image = options.image || '';
|
||||
var icon = options.icon || '';
|
||||
var image = options.image || '';
|
||||
if (SUPPORT_TYPE.indexOf(options.type) > -1) {
|
||||
icon = options.type;
|
||||
image = '';
|
||||
}
|
||||
|
||||
this.setData({
|
||||
...toastOptions,
|
||||
icon,
|
||||
image
|
||||
});
|
||||
this.setData(Object.assign({}, toastOptions, {
|
||||
icon: icon,
|
||||
image: image
|
||||
}));
|
||||
},
|
||||
|
||||
clear() {
|
||||
this.setData({
|
||||
...DEFAULT_DATA
|
||||
});
|
||||
clear: function clear() {
|
||||
this.setData(Object.assign({}, DEFAULT_DATA));
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
85
dist/toast/toast.js
vendored
85
dist/toast/toast.js
vendored
@ -1,18 +1,20 @@
|
||||
const TOAST_CONFIG_KEY = 'zanui.__zanToastPageConfig';
|
||||
'use strict';
|
||||
|
||||
let timeoutData = {
|
||||
var TOAST_CONFIG_KEY = 'zanui.__zanToastPageConfig';
|
||||
|
||||
var timeoutData = {
|
||||
timeoutId: 0,
|
||||
toastCtx: null
|
||||
};
|
||||
|
||||
let globalToastUserConfig = {};
|
||||
var globalToastUserConfig = {};
|
||||
|
||||
// 获取页面上下文
|
||||
function getPageCtx(pageCtx) {
|
||||
let ctx = pageCtx;
|
||||
var ctx = pageCtx;
|
||||
|
||||
if (!ctx) {
|
||||
const pages = getCurrentPages();
|
||||
var pages = getCurrentPages();
|
||||
ctx = pages[pages.length - 1];
|
||||
}
|
||||
|
||||
@ -21,7 +23,7 @@ function getPageCtx(pageCtx) {
|
||||
|
||||
// 获取当前页面的 toast 配置数据
|
||||
function getPageToastConfig(pageCtx) {
|
||||
const zanuiData = pageCtx.data.zanui || {};
|
||||
var zanuiData = pageCtx.data.zanui || {};
|
||||
return zanuiData.__zanToastPageConfig || {};
|
||||
}
|
||||
|
||||
@ -29,19 +31,15 @@ function getPageToastConfig(pageCtx) {
|
||||
function Toast(optionsOrMsg, pageCtx) {
|
||||
// 参数格式化处理
|
||||
// 如果是文字,默认为 message
|
||||
let options = optionsOrMsg || {};
|
||||
var options = optionsOrMsg || {};
|
||||
if (typeof optionsOrMsg === 'string') {
|
||||
options = { message: optionsOrMsg };
|
||||
}
|
||||
|
||||
let ctx = getPageCtx(pageCtx);
|
||||
const pageToastUserSetting = getPageToastConfig(ctx);
|
||||
const parsedOptions = {
|
||||
...globalToastUserConfig,
|
||||
...pageToastUserSetting,
|
||||
...options
|
||||
};
|
||||
const toastCtx = ctx.selectComponent(parsedOptions.selector);
|
||||
var ctx = getPageCtx(pageCtx);
|
||||
var pageToastUserSetting = getPageToastConfig(ctx);
|
||||
var parsedOptions = Object.assign({}, globalToastUserConfig, pageToastUserSetting, options);
|
||||
var toastCtx = ctx.selectComponent(parsedOptions.selector);
|
||||
|
||||
if (!toastCtx) {
|
||||
console.error('无法找到对应的toast组件,请于页面中注册并在 wxml 中声明 toast 自定义组件');
|
||||
@ -52,24 +50,26 @@ function Toast(optionsOrMsg, pageCtx) {
|
||||
Toast.clear();
|
||||
}
|
||||
|
||||
toastCtx.show({
|
||||
...parsedOptions,
|
||||
toastCtx.show(Object.assign({}, parsedOptions, {
|
||||
show: true
|
||||
});
|
||||
}));
|
||||
|
||||
const timeoutId = setTimeout(() => {
|
||||
var timeoutId = setTimeout(function () {
|
||||
toastCtx.clear();
|
||||
}, parsedOptions.timeout || 3000);
|
||||
|
||||
timeoutData = {
|
||||
timeoutId,
|
||||
toastCtx
|
||||
timeoutId: timeoutId,
|
||||
toastCtx: toastCtx
|
||||
};
|
||||
}
|
||||
|
||||
// 设置 toast 基础属性
|
||||
Toast.setDefaultOptions = function (options = {}, type = 'page') {
|
||||
const parsedDefaultOptions = {
|
||||
Toast.setDefaultOptions = function () {
|
||||
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
||||
var type = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'page';
|
||||
|
||||
var parsedDefaultOptions = {
|
||||
selector: options.selector || '',
|
||||
type: options.type || '',
|
||||
icon: options.icon || '',
|
||||
@ -78,26 +78,26 @@ Toast.setDefaultOptions = function (options = {}, type = 'page') {
|
||||
};
|
||||
|
||||
if (type === 'global') {
|
||||
globalToastUserConfig = {
|
||||
...parsedDefaultOptions
|
||||
};
|
||||
globalToastUserConfig = Object.assign({}, parsedDefaultOptions);
|
||||
} else if (type === 'page') {
|
||||
let ctx = getPageCtx();
|
||||
ctx.setData({
|
||||
[`${TOAST_CONFIG_KEY}`]: parsedDefaultOptions
|
||||
});
|
||||
var _ctx$setData;
|
||||
|
||||
var ctx = getPageCtx();
|
||||
ctx.setData((_ctx$setData = {}, _ctx$setData['' + TOAST_CONFIG_KEY] = parsedDefaultOptions, _ctx$setData));
|
||||
}
|
||||
};
|
||||
|
||||
// 重置 toast 基础属性
|
||||
Toast.resetDefaultOptions = function (type = 'page') {
|
||||
Toast.resetDefaultOptions = function () {
|
||||
var type = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'page';
|
||||
|
||||
if (type === 'global') {
|
||||
globalToastUserConfig = {};
|
||||
} else {
|
||||
let ctx = getPageCtx();
|
||||
ctx.setData({
|
||||
[`${TOAST_CONFIG_KEY}`]: {}
|
||||
});
|
||||
var _ctx$setData2;
|
||||
|
||||
var ctx = getPageCtx();
|
||||
ctx.setData((_ctx$setData2 = {}, _ctx$setData2['' + TOAST_CONFIG_KEY] = {}, _ctx$setData2));
|
||||
}
|
||||
};
|
||||
|
||||
@ -107,9 +107,7 @@ Toast.clear = function () {
|
||||
|
||||
try {
|
||||
timeoutData.toastCtx && timeoutData.toastCtx.clear();
|
||||
} catch (e) {
|
||||
|
||||
}
|
||||
} catch (e) {}
|
||||
|
||||
timeoutData = {
|
||||
timeoutId: 0,
|
||||
@ -118,11 +116,12 @@ Toast.clear = function () {
|
||||
};
|
||||
|
||||
// 显示 loading
|
||||
Toast.loading = function (options = {}) {
|
||||
Toast({
|
||||
...options,
|
||||
Toast.loading = function () {
|
||||
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
||||
|
||||
Toast(Object.assign({}, options, {
|
||||
type: 'loading'
|
||||
});
|
||||
}));
|
||||
};
|
||||
|
||||
module.exports = Toast;
|
||||
module.exports = Toast;
|
42
dist/toptips/index.js
vendored
42
dist/toptips/index.js
vendored
@ -1,5 +1,7 @@
|
||||
const FONT_COLOR = '#fff';
|
||||
const BG_COLOR = '#e64340';
|
||||
'use strict';
|
||||
|
||||
var FONT_COLOR = '#fff';
|
||||
var BG_COLOR = '#e64340';
|
||||
|
||||
Component({
|
||||
properties: {
|
||||
@ -23,8 +25,11 @@ Component({
|
||||
},
|
||||
|
||||
methods: {
|
||||
show() {
|
||||
const { duration } = this.data;
|
||||
show: function show() {
|
||||
var _this = this;
|
||||
|
||||
var duration = this.data.duration;
|
||||
|
||||
|
||||
this._timer && clearTimeout(this._timer);
|
||||
this.setData({
|
||||
@ -32,13 +37,12 @@ Component({
|
||||
});
|
||||
|
||||
if (duration > 0 && duration !== Infinity) {
|
||||
this._timer = setTimeout(() => {
|
||||
this.hide();
|
||||
this._timer = setTimeout(function () {
|
||||
_this.hide();
|
||||
}, duration);
|
||||
}
|
||||
},
|
||||
|
||||
hide() {
|
||||
hide: function hide() {
|
||||
this._timer = clearTimeout(this._timer);
|
||||
|
||||
this.setData({
|
||||
@ -48,27 +52,29 @@ Component({
|
||||
}
|
||||
});
|
||||
|
||||
function Toptips(options = {}) {
|
||||
const pages = getCurrentPages();
|
||||
const ctx = pages[pages.length - 1];
|
||||
const defaultOptions = {
|
||||
function Toptips() {
|
||||
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
||||
|
||||
var pages = getCurrentPages();
|
||||
var ctx = pages[pages.length - 1];
|
||||
var defaultOptions = {
|
||||
selector: '#zan-toptips',
|
||||
duration: 3000
|
||||
};
|
||||
|
||||
options = Object.assign(defaultOptions, parseParam(options));
|
||||
|
||||
const $toptips = ctx.selectComponent(options.selector);
|
||||
var $toptips = ctx.selectComponent(options.selector);
|
||||
delete options.selector;
|
||||
|
||||
$toptips.setData({
|
||||
...options
|
||||
});
|
||||
$toptips.setData(Object.assign({}, options));
|
||||
$toptips && $toptips.show();
|
||||
}
|
||||
|
||||
function parseParam(params) {
|
||||
function parseParam() {
|
||||
var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
||||
|
||||
return typeof params === 'object' ? params : { content: params };
|
||||
}
|
||||
|
||||
module.exports = Toptips;
|
||||
module.exports = Toptips;
|
12298
package-lock.json
generated
12298
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -32,13 +32,19 @@
|
||||
"homepage": "https://github.com/youzan/zanui-weapp#readme",
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^8.5.0",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-eslint": "^8.2.3",
|
||||
"babel-plugin-transform-es2015-spread": "^6.22.0",
|
||||
"babel-plugin-transform-runtime": "^6.23.0",
|
||||
"babel-preset-env": "^1.7.0",
|
||||
"babel-preset-stage-0": "^6.24.1",
|
||||
"cross-env": "^5.1.4",
|
||||
"eslint-config-airbnb": "^16.1.0",
|
||||
"eslint-plugin-jsx-a11y": "^6.0.3",
|
||||
"fs-extra": "^4.0.2",
|
||||
"gh-pages": "^1.1.0",
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-babel": "^7.0.1",
|
||||
"gulp-clean-css": "^3.9.0",
|
||||
"gulp-postcss": "^7.0.0",
|
||||
"gulp-remove-logging": "^1.2.0",
|
||||
|
@ -67,7 +67,7 @@ function Toptips(options = {}) {
|
||||
$toptips && $toptips.show();
|
||||
}
|
||||
|
||||
function parseParam(params) {
|
||||
function parseParam(params = '') {
|
||||
return typeof params === 'object' ? params : { content: params };
|
||||
}
|
||||
|
||||
|
@ -4,6 +4,7 @@ const cssmin = require('gulp-clean-css');
|
||||
const rename = require('gulp-rename');
|
||||
const gutil = require('gulp-util');
|
||||
const removeLogging = require('gulp-remove-logging');
|
||||
const babel = require('gulp-babel');
|
||||
|
||||
const options = gutil.env;
|
||||
const isProduction = process.env.NODE_ENV === 'production';
|
||||
@ -23,6 +24,16 @@ gulp.task('compile-js', () => {
|
||||
.pipe(removeLogging({
|
||||
methods: isProduction ? ['log', 'info'] : []
|
||||
}))
|
||||
.pipe(babel({
|
||||
plugins: [['transform-object-rest-spread', { useBuiltIns: true }]],
|
||||
presets: [
|
||||
['env', {
|
||||
loose: true,
|
||||
useBuiltIns: true,
|
||||
exclude: ['transform-es2015-typeof-symbol']
|
||||
}]
|
||||
]
|
||||
}))
|
||||
.pipe(gulp.dest(options.dist));
|
||||
});
|
||||
|
||||
|
173
yarn.lock
173
yarn.lock
@ -261,6 +261,12 @@ amdefine@>=0.0.4:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
|
||||
|
||||
ansi-colors@^1.0.1:
|
||||
version "1.1.0"
|
||||
resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-1.1.0.tgz#6374b4dd5d4718ff3ce27a671a3b1cad077132a9"
|
||||
dependencies:
|
||||
ansi-wrap "^0.1.0"
|
||||
|
||||
ansi-escapes@^3.0.0:
|
||||
version "3.0.0"
|
||||
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92"
|
||||
@ -299,7 +305,7 @@ ansi-styles@^3.2.1:
|
||||
dependencies:
|
||||
color-convert "^1.9.0"
|
||||
|
||||
ansi-wrap@0.1.0:
|
||||
ansi-wrap@0.1.0, ansi-wrap@^0.1.0:
|
||||
version "0.1.0"
|
||||
resolved "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf"
|
||||
|
||||
@ -581,6 +587,30 @@ babel-core@^6.0.0, babel-core@^6.22.1, babel-core@^6.25.0, babel-core@^6.26.0:
|
||||
slash "^1.0.0"
|
||||
source-map "^0.5.6"
|
||||
|
||||
babel-core@^6.26.3:
|
||||
version "6.26.3"
|
||||
resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207"
|
||||
dependencies:
|
||||
babel-code-frame "^6.26.0"
|
||||
babel-generator "^6.26.0"
|
||||
babel-helpers "^6.24.1"
|
||||
babel-messages "^6.23.0"
|
||||
babel-register "^6.26.0"
|
||||
babel-runtime "^6.26.0"
|
||||
babel-template "^6.26.0"
|
||||
babel-traverse "^6.26.0"
|
||||
babel-types "^6.26.0"
|
||||
babylon "^6.18.0"
|
||||
convert-source-map "^1.5.1"
|
||||
debug "^2.6.9"
|
||||
json5 "^0.5.1"
|
||||
lodash "^4.17.4"
|
||||
minimatch "^3.0.4"
|
||||
path-is-absolute "^1.0.1"
|
||||
private "^0.1.8"
|
||||
slash "^1.0.0"
|
||||
source-map "^0.5.7"
|
||||
|
||||
babel-eslint@^8.2.1:
|
||||
version "8.2.2"
|
||||
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.2.2.tgz#1102273354c6f0b29b4ea28a65f97d122296b68b"
|
||||
@ -818,6 +848,10 @@ babel-plugin-syntax-async-generators@^6.5.0:
|
||||
version "6.13.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a"
|
||||
|
||||
babel-plugin-syntax-class-constructor-call@^6.18.0:
|
||||
version "6.18.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416"
|
||||
|
||||
babel-plugin-syntax-class-properties@^6.8.0:
|
||||
version "6.13.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
|
||||
@ -826,6 +860,10 @@ babel-plugin-syntax-decorators@^6.13.0:
|
||||
version "6.13.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b"
|
||||
|
||||
babel-plugin-syntax-do-expressions@^6.8.0:
|
||||
version "6.13.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d"
|
||||
|
||||
babel-plugin-syntax-dynamic-import@^6.18.0:
|
||||
version "6.18.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da"
|
||||
@ -834,6 +872,14 @@ babel-plugin-syntax-exponentiation-operator@^6.8.0:
|
||||
version "6.13.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
|
||||
|
||||
babel-plugin-syntax-export-extensions@^6.8.0:
|
||||
version "6.13.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721"
|
||||
|
||||
babel-plugin-syntax-function-bind@^6.8.0:
|
||||
version "6.13.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46"
|
||||
|
||||
babel-plugin-syntax-jsx@^6.18.0:
|
||||
version "6.18.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
|
||||
@ -862,6 +908,14 @@ babel-plugin-transform-async-to-generator@^6.22.0, babel-plugin-transform-async-
|
||||
babel-plugin-syntax-async-functions "^6.8.0"
|
||||
babel-runtime "^6.22.0"
|
||||
|
||||
babel-plugin-transform-class-constructor-call@^6.24.1:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9"
|
||||
dependencies:
|
||||
babel-plugin-syntax-class-constructor-call "^6.18.0"
|
||||
babel-runtime "^6.22.0"
|
||||
babel-template "^6.24.1"
|
||||
|
||||
babel-plugin-transform-class-properties@^6.24.1:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac"
|
||||
@ -881,6 +935,13 @@ babel-plugin-transform-decorators@^6.24.1:
|
||||
babel-template "^6.24.1"
|
||||
babel-types "^6.24.1"
|
||||
|
||||
babel-plugin-transform-do-expressions@^6.22.0:
|
||||
version "6.22.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb"
|
||||
dependencies:
|
||||
babel-plugin-syntax-do-expressions "^6.8.0"
|
||||
babel-runtime "^6.22.0"
|
||||
|
||||
babel-plugin-transform-es2015-arrow-functions@^6.22.0:
|
||||
version "6.22.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
|
||||
@ -1057,6 +1118,20 @@ babel-plugin-transform-exponentiation-operator@^6.22.0, babel-plugin-transform-e
|
||||
babel-plugin-syntax-exponentiation-operator "^6.8.0"
|
||||
babel-runtime "^6.22.0"
|
||||
|
||||
babel-plugin-transform-export-extensions@^6.22.0:
|
||||
version "6.22.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653"
|
||||
dependencies:
|
||||
babel-plugin-syntax-export-extensions "^6.8.0"
|
||||
babel-runtime "^6.22.0"
|
||||
|
||||
babel-plugin-transform-function-bind@^6.22.0:
|
||||
version "6.22.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97"
|
||||
dependencies:
|
||||
babel-plugin-syntax-function-bind "^6.8.0"
|
||||
babel-runtime "^6.22.0"
|
||||
|
||||
babel-plugin-transform-object-rest-spread@^6.22.0, babel-plugin-transform-object-rest-spread@^6.26.0:
|
||||
version "6.26.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06"
|
||||
@ -1070,7 +1145,7 @@ babel-plugin-transform-regenerator@^6.22.0:
|
||||
dependencies:
|
||||
regenerator-transform "^0.10.0"
|
||||
|
||||
babel-plugin-transform-runtime@^6.15.0, babel-plugin-transform-runtime@^6.22.0:
|
||||
babel-plugin-transform-runtime@^6.15.0, babel-plugin-transform-runtime@^6.22.0, babel-plugin-transform-runtime@^6.23.0:
|
||||
version "6.23.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee"
|
||||
dependencies:
|
||||
@ -1124,6 +1199,41 @@ babel-preset-env@^1.3.2, babel-preset-env@^1.6.0:
|
||||
invariant "^2.2.2"
|
||||
semver "^5.3.0"
|
||||
|
||||
babel-preset-env@^1.7.0:
|
||||
version "1.7.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a"
|
||||
dependencies:
|
||||
babel-plugin-check-es2015-constants "^6.22.0"
|
||||
babel-plugin-syntax-trailing-function-commas "^6.22.0"
|
||||
babel-plugin-transform-async-to-generator "^6.22.0"
|
||||
babel-plugin-transform-es2015-arrow-functions "^6.22.0"
|
||||
babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
|
||||
babel-plugin-transform-es2015-block-scoping "^6.23.0"
|
||||
babel-plugin-transform-es2015-classes "^6.23.0"
|
||||
babel-plugin-transform-es2015-computed-properties "^6.22.0"
|
||||
babel-plugin-transform-es2015-destructuring "^6.23.0"
|
||||
babel-plugin-transform-es2015-duplicate-keys "^6.22.0"
|
||||
babel-plugin-transform-es2015-for-of "^6.23.0"
|
||||
babel-plugin-transform-es2015-function-name "^6.22.0"
|
||||
babel-plugin-transform-es2015-literals "^6.22.0"
|
||||
babel-plugin-transform-es2015-modules-amd "^6.22.0"
|
||||
babel-plugin-transform-es2015-modules-commonjs "^6.23.0"
|
||||
babel-plugin-transform-es2015-modules-systemjs "^6.23.0"
|
||||
babel-plugin-transform-es2015-modules-umd "^6.23.0"
|
||||
babel-plugin-transform-es2015-object-super "^6.22.0"
|
||||
babel-plugin-transform-es2015-parameters "^6.23.0"
|
||||
babel-plugin-transform-es2015-shorthand-properties "^6.22.0"
|
||||
babel-plugin-transform-es2015-spread "^6.22.0"
|
||||
babel-plugin-transform-es2015-sticky-regex "^6.22.0"
|
||||
babel-plugin-transform-es2015-template-literals "^6.22.0"
|
||||
babel-plugin-transform-es2015-typeof-symbol "^6.23.0"
|
||||
babel-plugin-transform-es2015-unicode-regex "^6.22.0"
|
||||
babel-plugin-transform-exponentiation-operator "^6.22.0"
|
||||
babel-plugin-transform-regenerator "^6.22.0"
|
||||
browserslist "^3.2.6"
|
||||
invariant "^2.2.2"
|
||||
semver "^5.3.0"
|
||||
|
||||
babel-preset-jest@^21.2.0:
|
||||
version "21.2.0"
|
||||
resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-21.2.0.tgz#ff9d2bce08abd98e8a36d9a8a5189b9173b85638"
|
||||
@ -1138,7 +1248,23 @@ babel-preset-jest@^22.4.1:
|
||||
babel-plugin-jest-hoist "^22.4.1"
|
||||
babel-plugin-syntax-object-rest-spread "^6.13.0"
|
||||
|
||||
babel-preset-stage-2@^6.22.0:
|
||||
babel-preset-stage-0@^6.24.1:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz#5642d15042f91384d7e5af8bc88b1db95b039e6a"
|
||||
dependencies:
|
||||
babel-plugin-transform-do-expressions "^6.22.0"
|
||||
babel-plugin-transform-function-bind "^6.22.0"
|
||||
babel-preset-stage-1 "^6.24.1"
|
||||
|
||||
babel-preset-stage-1@^6.24.1:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0"
|
||||
dependencies:
|
||||
babel-plugin-transform-class-constructor-call "^6.24.1"
|
||||
babel-plugin-transform-export-extensions "^6.22.0"
|
||||
babel-preset-stage-2 "^6.24.1"
|
||||
|
||||
babel-preset-stage-2@^6.22.0, babel-preset-stage-2@^6.24.1:
|
||||
version "6.24.1"
|
||||
resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1"
|
||||
dependencies:
|
||||
@ -1503,6 +1629,13 @@ browserslist@^2.1.2, browserslist@^2.11.3:
|
||||
caniuse-lite "^1.0.30000792"
|
||||
electron-to-chromium "^1.3.30"
|
||||
|
||||
browserslist@^3.2.6:
|
||||
version "3.2.8"
|
||||
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6"
|
||||
dependencies:
|
||||
caniuse-lite "^1.0.30000844"
|
||||
electron-to-chromium "^1.3.47"
|
||||
|
||||
browserslist@^3.2.7:
|
||||
version "3.2.7"
|
||||
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.7.tgz#aa488634d320b55e88bab0256184dbbcca1e6de9"
|
||||
@ -1645,6 +1778,10 @@ caniuse-lite@^1.0.30000835, caniuse-lite@^1.0.30000839:
|
||||
version "1.0.30000843"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000843.tgz#4fdec258dc641c385744cdd49d23c5459c3d4411"
|
||||
|
||||
caniuse-lite@^1.0.30000844:
|
||||
version "1.0.30000846"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000846.tgz#2092911eecad71a89dae1faa62bcc202fde7f959"
|
||||
|
||||
caseless@~0.12.0:
|
||||
version "0.12.0"
|
||||
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
|
||||
@ -2047,7 +2184,7 @@ content-type@~1.0.4:
|
||||
version "1.0.4"
|
||||
resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
|
||||
|
||||
convert-source-map@^1.4.0, convert-source-map@^1.5.0:
|
||||
convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.5.1:
|
||||
version "1.5.1"
|
||||
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5"
|
||||
|
||||
@ -2681,6 +2818,10 @@ electron-to-chromium@^1.3.45:
|
||||
version "1.3.47"
|
||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.47.tgz#764e887ca9104d01a0ac8eabee7dfc0e2ce14104"
|
||||
|
||||
electron-to-chromium@^1.3.47:
|
||||
version "1.3.48"
|
||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.48.tgz#d3b0d8593814044e092ece2108fc3ac9aea4b900"
|
||||
|
||||
elliptic@^6.0.0:
|
||||
version "6.4.0"
|
||||
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
|
||||
@ -3837,6 +3978,15 @@ growly@^1.3.0:
|
||||
version "1.3.0"
|
||||
resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
|
||||
|
||||
gulp-babel@^7.0.1:
|
||||
version "7.0.1"
|
||||
resolved "https://registry.yarnpkg.com/gulp-babel/-/gulp-babel-7.0.1.tgz#b9c8e29fa376b36c57989db820fc1c1715bb47cb"
|
||||
dependencies:
|
||||
plugin-error "^1.0.1"
|
||||
replace-ext "0.0.1"
|
||||
through2 "^2.0.0"
|
||||
vinyl-sourcemaps-apply "^0.2.0"
|
||||
|
||||
gulp-clean-css@^3.9.0:
|
||||
version "3.9.0"
|
||||
resolved "https://registry.npmjs.org/gulp-clean-css/-/gulp-clean-css-3.9.0.tgz#e43e4c8d695060f6ba08a154d8e76d0d87b1c822"
|
||||
@ -6650,6 +6800,15 @@ pkg-dir@^2.0.0:
|
||||
dependencies:
|
||||
find-up "^2.1.0"
|
||||
|
||||
plugin-error@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/plugin-error/-/plugin-error-1.0.1.tgz#77016bd8919d0ac377fdcdd0322328953ca5781c"
|
||||
dependencies:
|
||||
ansi-colors "^1.0.1"
|
||||
arr-diff "^4.0.0"
|
||||
arr-union "^3.1.0"
|
||||
extend-shallow "^3.0.2"
|
||||
|
||||
pluralize@^7.0.0:
|
||||
version "7.0.0"
|
||||
resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777"
|
||||
@ -7196,7 +7355,7 @@ pretty@2.0.0:
|
||||
extend-shallow "^2.0.1"
|
||||
js-beautify "^1.6.12"
|
||||
|
||||
private@^0.1.6, private@^0.1.7:
|
||||
private@^0.1.6, private@^0.1.7, private@^0.1.8:
|
||||
version "0.1.8"
|
||||
resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
|
||||
|
||||
@ -8893,9 +9052,9 @@ vinyl-fs@^0.3.0:
|
||||
through2 "^0.6.1"
|
||||
vinyl "^0.4.0"
|
||||
|
||||
vinyl-sourcemaps-apply@0.2.1, vinyl-sourcemaps-apply@^0.2.1:
|
||||
vinyl-sourcemaps-apply@0.2.1, vinyl-sourcemaps-apply@^0.2.0, vinyl-sourcemaps-apply@^0.2.1:
|
||||
version "0.2.1"
|
||||
resolved "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz#ab6549d61d172c2b1b87be5c508d239c8ef87705"
|
||||
resolved "https://registry.yarnpkg.com/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz#ab6549d61d172c2b1b87be5c508d239c8ef87705"
|
||||
dependencies:
|
||||
source-map "^0.5.1"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user