mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +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({
|
Component({
|
||||||
externalClasses: ['mask-class', 'container-class'],
|
externalClasses: ['mask-class', 'container-class'],
|
||||||
properties: {
|
properties: {
|
||||||
@ -19,18 +21,22 @@ Component({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onMaskClick() {
|
onMaskClick: function onMaskClick() {
|
||||||
if (this.data.cancelWithMask) {
|
if (this.data.cancelWithMask) {
|
||||||
this.cancelClick();
|
this.cancelClick();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
cancelClick() {
|
cancelClick: function cancelClick() {
|
||||||
this.triggerEvent('cancel');
|
this.triggerEvent('cancel');
|
||||||
},
|
},
|
||||||
handleBtnClick({ currentTarget = {} }) {
|
handleBtnClick: function handleBtnClick(_ref) {
|
||||||
const dataset = currentTarget.dataset || {};
|
var _ref$currentTarget = _ref.currentTarget,
|
||||||
const { index } = dataset;
|
currentTarget = _ref$currentTarget === undefined ? {} : _ref$currentTarget;
|
||||||
this.triggerEvent('actionclick', { index });
|
|
||||||
|
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';
|
'use strict';
|
||||||
const DEFAULT_BACKGROUND_COLOR = '#f44';
|
|
||||||
const DEFAULT_FONT_SIZE = 10;
|
var DEFAULT_COLOR = '#fff';
|
||||||
const DEFAULT_BOX_SHADOW = '0 0 0 2px #fff';
|
var DEFAULT_BACKGROUND_COLOR = '#f44';
|
||||||
|
var DEFAULT_FONT_SIZE = 10;
|
||||||
|
var DEFAULT_BOX_SHADOW = '0 0 0 2px #fff';
|
||||||
|
|
||||||
Component({
|
Component({
|
||||||
properties: {
|
properties: {
|
||||||
@ -22,4 +24,4 @@ Component({
|
|||||||
value: DEFAULT_BOX_SHADOW
|
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({
|
Component({
|
||||||
relations: {
|
relations: {
|
||||||
'../btn/index': {
|
'../btn/index': {
|
||||||
type: 'child',
|
type: 'child',
|
||||||
linked() {
|
linked: function linked() {
|
||||||
updateBtnChild.call(this);
|
updateBtnChild.call(this);
|
||||||
},
|
},
|
||||||
linkChange() {
|
linkChange: function linkChange() {
|
||||||
updateBtnChild.call(this);
|
updateBtnChild.call(this);
|
||||||
},
|
},
|
||||||
unlinked() {
|
unlinked: function unlinked() {
|
||||||
updateBtnChild.call(this);
|
updateBtnChild.call(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -16,13 +18,13 @@ Component({
|
|||||||
});
|
});
|
||||||
|
|
||||||
function updateBtnChild() {
|
function updateBtnChild() {
|
||||||
let btns = this.getRelationNodes('../btn/index');
|
var btns = this.getRelationNodes('../btn/index');
|
||||||
|
|
||||||
if (btns.length > 0) {
|
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);
|
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({
|
Component({
|
||||||
externalClasses: ['custom-class'],
|
externalClasses: ['custom-class'],
|
||||||
@ -6,10 +8,10 @@ Component({
|
|||||||
relations: {
|
relations: {
|
||||||
'../btn-group/index': {
|
'../btn-group/index': {
|
||||||
type: 'parent',
|
type: 'parent',
|
||||||
linked() {
|
linked: function linked() {
|
||||||
this.setData({ inGroup: true });
|
this.setData({ inGroup: true });
|
||||||
},
|
},
|
||||||
unlinked() {
|
unlinked: function unlinked() {
|
||||||
this.setData({ inGroup: false });
|
this.setData({ inGroup: false });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -17,23 +19,23 @@ Component({
|
|||||||
properties: {
|
properties: {
|
||||||
type: {
|
type: {
|
||||||
type: String,
|
type: String,
|
||||||
value: '',
|
value: ''
|
||||||
},
|
},
|
||||||
size: {
|
size: {
|
||||||
type: String,
|
type: String,
|
||||||
value: '',
|
value: ''
|
||||||
},
|
},
|
||||||
plain: {
|
plain: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: false,
|
value: false
|
||||||
},
|
},
|
||||||
disabled: {
|
disabled: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: false,
|
value: false
|
||||||
},
|
},
|
||||||
loading: {
|
loading: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: false,
|
value: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -43,16 +45,17 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
handleTap() {
|
handleTap: function handleTap() {
|
||||||
if (this.data.disabled) {
|
if (this.data.disabled) {
|
||||||
this.triggerEvent('disabledclick')
|
this.triggerEvent('disabledclick');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.triggerEvent('btnclick');
|
this.triggerEvent('btnclick');
|
||||||
},
|
},
|
||||||
|
switchLastButtonStatus: function switchLastButtonStatus() {
|
||||||
|
var isLast = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
||||||
|
|
||||||
switchLastButtonStatus(isLast = false) {
|
this.setData({ isLast: isLast });
|
||||||
this.setData({ 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({
|
module.exports = Behavior({
|
||||||
properties: {
|
properties: {
|
||||||
loading: Boolean,
|
loading: Boolean,
|
||||||
@ -33,17 +35,33 @@ module.exports = Behavior({
|
|||||||
showMessageCard: String
|
showMessageCard: String
|
||||||
},
|
},
|
||||||
methods: {
|
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);
|
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);
|
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);
|
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);
|
this.triggerEvent('error', detail);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
4
dist/capsule/index.js
vendored
4
dist/capsule/index.js
vendored
@ -1,3 +1,5 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
Component({
|
Component({
|
||||||
/**
|
/**
|
||||||
* 组件的属性列表
|
* 组件的属性列表
|
||||||
@ -25,4 +27,4 @@ Component({
|
|||||||
value: ''
|
value: ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
4
dist/card/index.js
vendored
4
dist/card/index.js
vendored
@ -1,3 +1,5 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
Component({
|
Component({
|
||||||
options: {
|
options: {
|
||||||
multipleSlots: true
|
multipleSlots: true
|
||||||
@ -21,4 +23,4 @@ Component({
|
|||||||
desc: String,
|
desc: String,
|
||||||
status: String
|
status: String
|
||||||
}
|
}
|
||||||
});
|
});
|
26
dist/cell-group/index.js
vendored
26
dist/cell-group/index.js
vendored
@ -1,14 +1,16 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
Component({
|
Component({
|
||||||
relations: {
|
relations: {
|
||||||
'../cell/index': {
|
'../cell/index': {
|
||||||
type: 'child',
|
type: 'child',
|
||||||
linked() {
|
linked: function linked() {
|
||||||
this._updateIsLastCell();
|
this._updateIsLastCell();
|
||||||
},
|
},
|
||||||
linkChanged() {
|
linkChanged: function linkChanged() {
|
||||||
this._updateIsLastCell();
|
this._updateIsLastCell();
|
||||||
},
|
},
|
||||||
unlinked() {
|
unlinked: function unlinked() {
|
||||||
this._updateIsLastCell();
|
this._updateIsLastCell();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -19,26 +21,28 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
_updateIsLastCell() {
|
_updateIsLastCell: function _updateIsLastCell() {
|
||||||
|
var _this = this;
|
||||||
|
|
||||||
// 用 setTimeout 减少计算次数
|
// 用 setTimeout 减少计算次数
|
||||||
if (this.data.cellUpdateTimeout > 0) {
|
if (this.data.cellUpdateTimeout > 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const cellUpdateTimeout = setTimeout(() => {
|
var cellUpdateTimeout = setTimeout(function () {
|
||||||
this.setData({ cellUpdateTimeout: 0 });
|
_this.setData({ cellUpdateTimeout: 0 });
|
||||||
let cells = this.getRelationNodes('../cell/index');
|
var cells = _this.getRelationNodes('../cell/index');
|
||||||
|
|
||||||
if (cells.length > 0) {
|
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);
|
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);
|
console.warn(msg);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Component({
|
Component({
|
||||||
|
externalClasses: ['cell-class'],
|
||||||
options: {
|
options: {
|
||||||
multipleSlots: true
|
multipleSlots: true
|
||||||
},
|
},
|
||||||
@ -48,7 +50,7 @@ Component({
|
|||||||
isLastCell: true
|
isLastCell: true
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
footerTap() {
|
footerTap: function footerTap() {
|
||||||
// 如果并没有设置只点击 footer 生效,那就不需要额外处理。cell 上有事件会自动处理
|
// 如果并没有设置只点击 footer 生效,那就不需要额外处理。cell 上有事件会自动处理
|
||||||
if (!this.data.onlyTapFooter) {
|
if (!this.data.onlyTapFooter) {
|
||||||
return;
|
return;
|
||||||
@ -57,8 +59,7 @@ Component({
|
|||||||
this.triggerEvent('tap', {});
|
this.triggerEvent('tap', {});
|
||||||
doNavigate.call(this);
|
doNavigate.call(this);
|
||||||
},
|
},
|
||||||
|
cellTap: function cellTap() {
|
||||||
cellTap() {
|
|
||||||
// 如果只点击 footer 生效,那就不需要在 cell 根节点上处理
|
// 如果只点击 footer 生效,那就不需要在 cell 根节点上处理
|
||||||
if (this.data.onlyTapFooter) {
|
if (this.data.onlyTapFooter) {
|
||||||
return;
|
return;
|
||||||
@ -68,17 +69,20 @@ Component({
|
|||||||
doNavigate.call(this);
|
doNavigate.call(this);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
// 用于被 cell-group 更新,标志是否是最后一个 cell
|
// 用于被 cell-group 更新,标志是否是最后一个 cell
|
||||||
updateIsLastCell(isLastCell) {
|
updateIsLastCell: function updateIsLastCell(isLastCell) {
|
||||||
this.setData({ isLastCell });
|
this.setData({ isLastCell: isLastCell });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// 处理跳转
|
// 处理跳转
|
||||||
function doNavigate() {
|
function doNavigate() {
|
||||||
const { url = '' } = this.data;
|
var _data$url = this.data.url,
|
||||||
const type = typeof this.data.isLink;
|
url = _data$url === undefined ? '' : _data$url;
|
||||||
|
|
||||||
|
var type = typeof this.data.isLink;
|
||||||
|
|
||||||
if (!this.data.isLink || !url || url === 'true' || url === 'false') return;
|
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);
|
warn('linkType 属性可选值为 navigateTo,redirectTo,switchTab,reLaunch', this.data.linkType);
|
||||||
return;
|
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
|
<view
|
||||||
catchtap="cellTap"
|
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">
|
<view class="zan-cell__icon">
|
||||||
<slot name="icon"></slot>
|
<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({
|
Component({
|
||||||
externalClasses: ['col-class'],
|
externalClasses: ['col-class'],
|
||||||
|
|
||||||
@ -17,4 +19,4 @@ Component({
|
|||||||
type: Number
|
type: Number
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
72
dist/common/helper.js
vendored
72
dist/common/helper.js
vendored
@ -1,7 +1,13 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
// 从事件对象中解析得到 componentId
|
// 从事件对象中解析得到 componentId
|
||||||
// 需要在元素上声明 data-component-id
|
// 需要在元素上声明 data-component-id
|
||||||
function extractComponentId(event = {}) {
|
function extractComponentId() {
|
||||||
const { dataset: { componentId } } = event.currentTarget || {};
|
var event = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
||||||
|
|
||||||
|
var _ref = event.currentTarget || {},
|
||||||
|
componentId = _ref.dataset.componentId;
|
||||||
|
|
||||||
return 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 = {}) => {
|
var extendCreator = function extendCreator() {
|
||||||
const {
|
var config = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
||||||
life = LIFE_CYCLE,
|
var _config$life = config.life,
|
||||||
exclude = []
|
life = _config$life === undefined ? LIFE_CYCLE : _config$life,
|
||||||
} = config;
|
_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');
|
if (!Array.isArray(life) || !Array.isArray(exclude)) throw new Error('Invalid Extend Config');
|
||||||
let lifeCycleList = life.filter(item => LIFE_CYCLE.indexOf(item) >= 0);
|
var lifeCycleList = life.filter(function (item) {
|
||||||
return function extend(target, ...objList) {
|
return LIFE_CYCLE.indexOf(item) >= 0;
|
||||||
objList.forEach((source) => {
|
});
|
||||||
|
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) {
|
if (source) {
|
||||||
let keys = Object.keys(source);
|
var keys = Object.keys(source);
|
||||||
keys.forEach((key) => {
|
keys.forEach(function (key) {
|
||||||
let value = source[key];
|
var value = source[key];
|
||||||
if (excludeList.indexOf(key) >= 0) return;
|
if (excludeList.indexOf(key) >= 0) return;
|
||||||
if (lifeCycleList.indexOf(key) >= 0 && typeof value === 'function') {
|
if (lifeCycleList.indexOf(key) >= 0 && typeof value === 'function') {
|
||||||
let funcArrayName = getFuncArrayName(key);
|
var funcArrayName = getFuncArrayName(key);
|
||||||
if (!target[funcArrayName]) {
|
if (!target[funcArrayName]) {
|
||||||
target[funcArrayName] = [];
|
target[funcArrayName] = [];
|
||||||
if (target[key]) {
|
if (target[key]) {
|
||||||
target[funcArrayName].push(target[key]);
|
target[funcArrayName].push(target[key]);
|
||||||
}
|
}
|
||||||
target[key] = function (...rest) {
|
target[key] = function () {
|
||||||
target[funcArrayName].forEach(func => func.apply(this, rest));
|
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]) {
|
if (source[funcArrayName]) {
|
||||||
|
var _target$funcArrayName;
|
||||||
|
|
||||||
// 经过生命周期合并的组件直接整合函数列表
|
// 经过生命周期合并的组件直接整合函数列表
|
||||||
target[funcArrayName].push(...source[funcArrayName]);
|
(_target$funcArrayName = target[funcArrayName]).push.apply(_target$funcArrayName, source[funcArrayName]);
|
||||||
} else {
|
} else {
|
||||||
// 添加生命周期函数进入函数列表
|
// 添加生命周期函数进入函数列表
|
||||||
target[funcArrayName].push(value);
|
target[funcArrayName].push(value);
|
||||||
@ -67,10 +91,12 @@ const extendCreator = (config = {}) => {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
const getFuncArrayName = name => `__$${name}`;
|
var getFuncArrayName = function getFuncArrayName(name) {
|
||||||
|
return '__$' + name;
|
||||||
|
};
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
extractComponentId,
|
extractComponentId: extractComponentId,
|
||||||
extend: Object.assign,
|
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({
|
Component({
|
||||||
properties: {
|
properties: {
|
||||||
show: {
|
show: {
|
||||||
@ -22,8 +24,8 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
handleMaskClick() {
|
handleMaskClick: function handleMaskClick() {
|
||||||
this.triggerEvent('clickmask', {});
|
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) {
|
function partStartWithZero(num, strlen) {
|
||||||
let zeros = '';
|
var zeros = '';
|
||||||
while (zeros.length < strlen) {
|
while (zeros.length < strlen) {
|
||||||
zeros += '0';
|
zeros += '0';
|
||||||
}
|
}
|
||||||
@ -7,7 +11,7 @@ function partStartWithZero(num, strlen) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function genNumber(begin, end, strlen) {
|
function genNumber(begin, end, strlen) {
|
||||||
let nums = [];
|
var nums = [];
|
||||||
while (begin <= end) {
|
while (begin <= end) {
|
||||||
nums.push(partStartWithZero(begin, strlen));
|
nums.push(partStartWithZero(begin, strlen));
|
||||||
begin++;
|
begin++;
|
||||||
@ -15,23 +19,66 @@ function genNumber(begin, end, strlen) {
|
|||||||
return nums;
|
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();
|
if (!date && date !== 0) date = new Date();
|
||||||
|
|
||||||
date = new Date(date);
|
date = new Date(date);
|
||||||
if (date.toString() === 'Invalid Date') throw new Error('Invalid Date');
|
if (date.toString() === 'Invalid Date') throw new Error('Invalid Date');
|
||||||
|
|
||||||
let getDateValue = (method, fn) => (fn ? fn(date[`get${method}`]()) : date[`get${method}`]());
|
var getDateValue = function getDateValue(method, fn) {
|
||||||
let map = new Map();
|
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(/(Y+)/i, function () {
|
||||||
map.set(/(M+)/, () => getDateValue('Month', month => partStartWithZero(month + 1, RegExp.$1.length)));
|
return getDateValue('FullYear', function (year) {
|
||||||
map.set(/(D+)/i, () => getDateValue('Date', date => partStartWithZero(date, RegExp.$1.length)));
|
return (year + '').substr(4 - 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(/(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)) {
|
if (reg.test(formatStr)) {
|
||||||
formatStr = formatStr.replace(RegExp.$1, fn.call(null));
|
formatStr = formatStr.replace(RegExp.$1, fn.call(null));
|
||||||
}
|
}
|
||||||
@ -40,9 +87,15 @@ function moment(date, formatStr = 'YYYY:MM:DD') {
|
|||||||
return formatStr;
|
return formatStr;
|
||||||
}
|
}
|
||||||
|
|
||||||
const LIMIT_YEAR_COUNT = 50;
|
var LIMIT_YEAR_COUNT = 50;
|
||||||
class DatePicker {
|
|
||||||
constructor(format, date = new Date(), cb) {
|
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.types = ['year', 'month', 'day', 'hour', 'minute', 'second'];
|
||||||
this.months = genNumber(1, 12, 2);
|
this.months = genNumber(1, 12, 2);
|
||||||
this.hours = genNumber(0, 23, 2);
|
this.hours = genNumber(0, 23, 2);
|
||||||
@ -52,27 +105,25 @@ class DatePicker {
|
|||||||
this.init(date, cb);
|
this.init(date, cb);
|
||||||
}
|
}
|
||||||
|
|
||||||
getYears(year) {
|
DatePicker.prototype.getYears = function getYears(year) {
|
||||||
let mid = Math.floor(LIMIT_YEAR_COUNT / 2);
|
var mid = Math.floor(LIMIT_YEAR_COUNT / 2);
|
||||||
let min = year - mid;
|
var min = year - mid;
|
||||||
let max = year + (LIMIT_YEAR_COUNT - mid);
|
var max = year + (LIMIT_YEAR_COUNT - mid);
|
||||||
return genNumber(min, max, 4);
|
return genNumber(min, max, 4);
|
||||||
}
|
};
|
||||||
|
|
||||||
lastDay(year, month) {
|
DatePicker.prototype.lastDay = function lastDay(year, month) {
|
||||||
return month !== 12 ? new Date(
|
return month !== 12 ? new Date(new Date(year + '/' + (month + 1) + '/1').getTime() - 24 * 60 * 60 * 1000).getDate() : 31;
|
||||||
new Date(`${year}/${month + 1}/1`).getTime() - (24 * 60 * 60 * 1000)
|
};
|
||||||
).getDate() : 31;
|
|
||||||
}
|
|
||||||
|
|
||||||
init(date, cb) {
|
DatePicker.prototype.init = function init(date, cb) {
|
||||||
let d = new Date(date);
|
var d = new Date(date);
|
||||||
let y = d.getFullYear();
|
var y = d.getFullYear();
|
||||||
let m = d.getMonth() + 1;
|
var m = d.getMonth() + 1;
|
||||||
let years = this.getYears(y);
|
var years = this.getYears(y);
|
||||||
let lastDay = this.lastDay(y, m);
|
var lastDay = this.lastDay(y, m);
|
||||||
|
|
||||||
let days = genNumber(1, lastDay, 2);
|
var days = genNumber(1, lastDay, 2);
|
||||||
|
|
||||||
this._years = years;
|
this._years = years;
|
||||||
this._dataList = [years, this.months, days, this.hours, this.minutes, this.seconds];
|
this._dataList = [years, this.months, days, this.hours, this.minutes, this.seconds];
|
||||||
@ -81,10 +132,10 @@ class DatePicker {
|
|||||||
dataList: this._dataList,
|
dataList: this._dataList,
|
||||||
indexs: this._indexs
|
indexs: this._indexs
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
update(col, index, cb) {
|
DatePicker.prototype.update = function update(col, index, cb) {
|
||||||
let type = this.types[col];
|
var type = this.types[col];
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 'year':
|
case 'year':
|
||||||
this._updateYear(col, index, cb);
|
this._updateYear(col, index, cb);
|
||||||
@ -101,11 +152,11 @@ class DatePicker {
|
|||||||
updateIndex: index
|
updateIndex: index
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
_updateYear(col, index, cb) {
|
DatePicker.prototype._updateYear = function _updateYear(col, index, cb) {
|
||||||
let years = this._dataList[col];
|
var years = this._dataList[col];
|
||||||
let year = years[index];
|
var year = years[index];
|
||||||
|
|
||||||
this._dataList[col] = this.getYears(+year);
|
this._dataList[col] = this.getYears(+year);
|
||||||
|
|
||||||
@ -115,12 +166,12 @@ class DatePicker {
|
|||||||
indexs: this._indexs,
|
indexs: this._indexs,
|
||||||
updateColumn: col
|
updateColumn: col
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
_updateMonth(col, index, cb) {
|
DatePicker.prototype._updateMonth = function _updateMonth(col, index, cb) {
|
||||||
let month = this._dataList[col][index];
|
var month = this._dataList[col][index];
|
||||||
let year = this._dataList[0][this._indexs[0]];
|
var year = this._dataList[0][this._indexs[0]];
|
||||||
let lastDay = this.lastDay(+year, +month);
|
var lastDay = this.lastDay(+year, +month);
|
||||||
this._indexs[col] = index;
|
this._indexs[col] = index;
|
||||||
this._dataList[2] = genNumber(1, lastDay, 2);
|
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];
|
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,
|
updateColumn: 1,
|
||||||
updateIndex: index
|
updateIndex: index
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
}
|
|
||||||
|
return DatePicker;
|
||||||
|
}();
|
||||||
// 组件内使用 this.indexs 好像有问题
|
// 组件内使用 this.indexs 好像有问题
|
||||||
let _indexs = [];
|
|
||||||
|
|
||||||
|
var _indexs = [];
|
||||||
Component({
|
Component({
|
||||||
properties: {
|
properties: {
|
||||||
placeholder: {
|
placeholder: {
|
||||||
@ -168,112 +223,123 @@ Component({
|
|||||||
data: {
|
data: {
|
||||||
transPos: [0, 0, 0, 0, 0, 0]
|
transPos: [0, 0, 0, 0, 0, 0]
|
||||||
},
|
},
|
||||||
attached() {
|
attached: function attached() {
|
||||||
this.use = {}
|
var _this = this;
|
||||||
;['years', 'months', 'days', 'hours', 'minutes', 'seconds'].forEach((item) => {
|
|
||||||
if ((this.data.notUse || []).indexOf(item) === -1) { this.use[item] = true }
|
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.setData({ use: this.use });
|
||||||
this.data.pickerView && !this.data.native && this.showPicker();
|
this.data.pickerView && !this.data.native && this.showPicker();
|
||||||
},
|
},
|
||||||
ready() {
|
ready: function ready() {
|
||||||
// 微信 bug,如果不先定义会导致不能选中
|
// 微信 bug,如果不先定义会导致不能选中
|
||||||
this.setData({
|
this.setData({
|
||||||
"dataList":[
|
"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)]
|
||||||
[
|
});
|
||||||
"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));
|
this.picker = new DatePicker(this.data.format, this.data.date, this.updatePicker.bind(this));
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
updatePicker({ dataList, indexs, updateColumn, updateIndex }) {
|
updatePicker: function updatePicker(_ref3) {
|
||||||
let updateData = {};
|
var dataList = _ref3.dataList,
|
||||||
|
indexs = _ref3.indexs,
|
||||||
|
updateColumn = _ref3.updateColumn,
|
||||||
|
updateIndex = _ref3.updateIndex;
|
||||||
|
|
||||||
|
var updateData = {};
|
||||||
_indexs = indexs;
|
_indexs = indexs;
|
||||||
// 指定更新某列数据,表示某列数据更新
|
// 指定更新某列数据,表示某列数据更新
|
||||||
if (updateColumn) {
|
if (updateColumn) {
|
||||||
updateData[`transPos[${updateColumn}]`] = -36 * _indexs[updateColumn];
|
updateData['transPos[' + updateColumn + ']'] = -36 * _indexs[updateColumn];
|
||||||
updateData[`dataList[${updateColumn}]`] = dataList[updateColumn];
|
updateData['dataList[' + updateColumn + ']'] = dataList[updateColumn];
|
||||||
}
|
}
|
||||||
// 指定更新某列索引,表示某列数据选中的索引已更新
|
// 指定更新某列索引,表示某列数据选中的索引已更新
|
||||||
if (typeof updateIndex !== 'undefined') {
|
if (typeof updateIndex !== 'undefined') {
|
||||||
updateData[`transPos[${updateColumn}]`] = -36 * _indexs[updateColumn];
|
updateData['transPos[' + updateColumn + ']'] = -36 * _indexs[updateColumn];
|
||||||
updateData[`selected[${updateColumn}]`] = indexs[updateColumn];
|
updateData['selected[' + updateColumn + ']'] = indexs[updateColumn];
|
||||||
}
|
}
|
||||||
|
|
||||||
// 只在初始化时设置全部的值,其他的都局部更新
|
// 只在初始化时设置全部的值,其他的都局部更新
|
||||||
if (!updateColumn && typeof updateIndex === 'undefined') {
|
if (!updateColumn && typeof updateIndex === 'undefined') {
|
||||||
updateData = { dataList, selected: indexs };
|
updateData = { dataList: dataList, selected: indexs };
|
||||||
_indexs.forEach((item, index) => {
|
_indexs.forEach(function (item, index) {
|
||||||
updateData[`transPos[${index}]`] = -item * 36;
|
updateData['transPos[' + index + ']'] = -item * 36;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setData(updateData);
|
this.setData(updateData);
|
||||||
},
|
},
|
||||||
touchmove(e) {
|
touchmove: function touchmove(e) {
|
||||||
let { changedTouches, target } = e;
|
var changedTouches = e.changedTouches,
|
||||||
let col = target.dataset.col;
|
target = e.target;
|
||||||
let { clientY } = changedTouches[0];
|
|
||||||
|
var col = target.dataset.col;
|
||||||
|
var clientY = changedTouches[0].clientY;
|
||||||
|
|
||||||
if (!col) return;
|
if (!col) return;
|
||||||
|
|
||||||
let updateData = {};
|
var updateData = {};
|
||||||
let itemLength = this.data.dataList[col].length;
|
var itemLength = this.data.dataList[col].length;
|
||||||
updateData[`transPos[${col}]`] = this.startTransPos + (clientY - this.startY);
|
updateData['transPos[' + col + ']'] = this.startTransPos + (clientY - this.startY);
|
||||||
if (updateData[`transPos[${col}]`] >= 0) {
|
if (updateData['transPos[' + col + ']'] >= 0) {
|
||||||
updateData[`transPos[${col}]`] = 0;
|
updateData['transPos[' + col + ']'] = 0;
|
||||||
} else if (-(itemLength - 1) * 36 >= updateData[`transPos[${col}]`]) {
|
} else if (-(itemLength - 1) * 36 >= updateData['transPos[' + col + ']']) {
|
||||||
updateData[`transPos[${col}]`] = -(itemLength - 1) * 36;
|
updateData['transPos[' + col + ']'] = -(itemLength - 1) * 36;
|
||||||
}
|
}
|
||||||
this.setData(updateData);
|
this.setData(updateData);
|
||||||
},
|
},
|
||||||
touchStart(e) {
|
touchStart: function touchStart(e) {
|
||||||
let { target, changedTouches } = e;
|
var target = e.target,
|
||||||
let col = target.dataset.col;
|
changedTouches = e.changedTouches;
|
||||||
let touchData = changedTouches[0];
|
|
||||||
|
var col = target.dataset.col;
|
||||||
|
var touchData = changedTouches[0];
|
||||||
if (!col) return;
|
if (!col) return;
|
||||||
|
|
||||||
this.startY = touchData.clientY;
|
this.startY = touchData.clientY;
|
||||||
this.startTime = e.timeStamp;
|
this.startTime = e.timeStamp;
|
||||||
this.startTransPos = this.data.transPos[col];
|
this.startTransPos = this.data.transPos[col];
|
||||||
},
|
},
|
||||||
touchEnd(e) {
|
touchEnd: function touchEnd(e) {
|
||||||
let { col } = e.target.dataset;
|
var col = e.target.dataset.col;
|
||||||
|
|
||||||
if (!col) return;
|
if (!col) return;
|
||||||
let pos = this.data.transPos[col];
|
var pos = this.data.transPos[col];
|
||||||
let itemIndex = Math.round(pos / 36);
|
var itemIndex = Math.round(pos / 36);
|
||||||
|
|
||||||
this.columnchange({ detail: { column: +col, value: -itemIndex } });
|
this.columnchange({ detail: { column: +col, value: -itemIndex } });
|
||||||
},
|
},
|
||||||
columnchange(e) {
|
columnchange: function columnchange(e) {
|
||||||
let { column, value } = e.detail;
|
var _e$detail = e.detail,
|
||||||
|
column = _e$detail.column,
|
||||||
|
value = _e$detail.value;
|
||||||
|
|
||||||
_indexs[column] = value;
|
_indexs[column] = value;
|
||||||
this.picker.update(column, value, this.updatePicker.bind(this));
|
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() {
|
getFormatStr: function getFormatStr() {
|
||||||
let date = new Date()
|
var _this2 = this;
|
||||||
;['FullYear', 'Month', 'Date', 'Hours', 'Minutes', 'Seconds'].forEach((key, index) => {
|
|
||||||
let value = this.data.dataList[index][_indexs[index]];
|
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') {
|
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);
|
return moment(date, this.data.format);
|
||||||
},
|
},
|
||||||
showPicker() {
|
showPicker: function showPicker() {
|
||||||
this.setData({ show: true });
|
this.setData({ show: true });
|
||||||
},
|
},
|
||||||
hidePicker(e) {
|
hidePicker: function hidePicker(e) {
|
||||||
let { action } = e.currentTarget.dataset;
|
var action = e.currentTarget.dataset.action;
|
||||||
|
|
||||||
this.setData({ show: false });
|
this.setData({ show: false });
|
||||||
if (action === 'cancel') {
|
if (action === 'cancel') {
|
||||||
this.cancel({ detail: {} });
|
this.cancel({ detail: {} });
|
||||||
@ -281,10 +347,11 @@ Component({
|
|||||||
this.change({ detail: { value: _indexs } });
|
this.change({ detail: { value: _indexs } });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
change(e) {
|
change: function change(e) {
|
||||||
let { value } = e.detail;
|
var value = e.detail.value;
|
||||||
|
|
||||||
let data = this.data.dataList.map((item, index) => {
|
|
||||||
|
var data = this.data.dataList.map(function (item, index) {
|
||||||
return +item[value[index]];
|
return +item[value[index]];
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -292,22 +359,22 @@ Component({
|
|||||||
|
|
||||||
// 为了支持原生 picker view,每次 change 都需要手动 columnchange
|
// 为了支持原生 picker view,每次 change 都需要手动 columnchange
|
||||||
if (this.data.pickerView && this.data.native) {
|
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]) {
|
if (_indexs[index] !== value[index]) {
|
||||||
this.columnchange({
|
this.columnchange({
|
||||||
detail: {
|
detail: {
|
||||||
column: index, value: value[index]
|
column: index, value: value[index]
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
break // 这里每次只处理一列,否则会出现日期值为 undefined 的情况
|
break; // 这里每次只处理一列,否则会出现日期值为 undefined 的情况
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setData({ text: this.getFormatStr() });
|
this.setData({ text: this.getFormatStr() });
|
||||||
},
|
},
|
||||||
cancel(e) {
|
cancel: function cancel(e) {
|
||||||
this.triggerEvent('cancel', e.detail);
|
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 = {
|
module.exports = {
|
||||||
// 标题
|
// 标题
|
||||||
title: '',
|
title: '',
|
||||||
@ -22,4 +24,4 @@ module.exports = {
|
|||||||
cancelButtonText: '取消',
|
cancelButtonText: '取消',
|
||||||
// 取消按钮颜色
|
// 取消按钮颜色
|
||||||
cancelButtonColor: '#333'
|
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 使用参数
|
// options 使用参数
|
||||||
// pageCtx 页面 page 上下文
|
// pageCtx 页面 page 上下文
|
||||||
function Dialog(options, pageCtx) {
|
function Dialog(options, pageCtx) {
|
||||||
const parsedOptions = {
|
var parsedOptions = Object.assign({}, defaultData, options);
|
||||||
...defaultData,
|
|
||||||
...options
|
|
||||||
};
|
|
||||||
|
|
||||||
let ctx = pageCtx;
|
var ctx = pageCtx;
|
||||||
if (!ctx) {
|
if (!ctx) {
|
||||||
const pages = getCurrentPages();
|
var pages = getCurrentPages();
|
||||||
ctx = pages[pages.length - 1];
|
ctx = pages[pages.length - 1];
|
||||||
}
|
}
|
||||||
const dialogCtx = ctx.selectComponent(parsedOptions.selector);
|
var dialogCtx = ctx.selectComponent(parsedOptions.selector);
|
||||||
|
|
||||||
if (!dialogCtx) {
|
if (!dialogCtx) {
|
||||||
console.error('无法找到对应的dialog组件,请于页面中注册并在 wxml 中声明 dialog 自定义组件');
|
console.error('无法找到对应的dialog组件,请于页面中注册并在 wxml 中声明 dialog 自定义组件');
|
||||||
@ -22,8 +21,10 @@ function Dialog(options, pageCtx) {
|
|||||||
|
|
||||||
// 处理默认按钮的展示
|
// 处理默认按钮的展示
|
||||||
// 纵向排布确认按钮在上方
|
// 纵向排布确认按钮在上方
|
||||||
const { buttons = [] } = parsedOptions;
|
var _parsedOptions$button = parsedOptions.buttons,
|
||||||
let showCustomBtns = false;
|
buttons = _parsedOptions$button === undefined ? [] : _parsedOptions$button;
|
||||||
|
|
||||||
|
var showCustomBtns = false;
|
||||||
if (buttons.length === 0) {
|
if (buttons.length === 0) {
|
||||||
if (parsedOptions.showConfirmButton) {
|
if (parsedOptions.showConfirmButton) {
|
||||||
buttons.push({
|
buttons.push({
|
||||||
@ -34,7 +35,7 @@ function Dialog(options, pageCtx) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (parsedOptions.showCancelButton) {
|
if (parsedOptions.showCancelButton) {
|
||||||
const cancelButton = {
|
var cancelButton = {
|
||||||
type: 'cancel',
|
type: 'cancel',
|
||||||
text: parsedOptions.cancelButtonText,
|
text: parsedOptions.cancelButtonText,
|
||||||
color: parsedOptions.cancelButtonColor
|
color: parsedOptions.cancelButtonColor
|
||||||
@ -49,16 +50,15 @@ function Dialog(options, pageCtx) {
|
|||||||
showCustomBtns = true;
|
showCustomBtns = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise(function (resolve, reject) {
|
||||||
dialogCtx.setData({
|
dialogCtx.setData(Object.assign({}, parsedOptions, {
|
||||||
...parsedOptions,
|
buttons: buttons,
|
||||||
buttons,
|
showCustomBtns: showCustomBtns,
|
||||||
showCustomBtns,
|
key: '' + new Date().getTime(),
|
||||||
key: `${(new Date()).getTime()}`,
|
|
||||||
show: true,
|
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({
|
Component({
|
||||||
properties: {},
|
properties: {},
|
||||||
|
|
||||||
data: {
|
data: Object.assign({}, defaultData, {
|
||||||
...defaultData,
|
|
||||||
key: '',
|
key: '',
|
||||||
show: false,
|
show: false,
|
||||||
showCustomBtns: false,
|
showCustomBtns: false,
|
||||||
promiseFunc: {}
|
promiseFunc: {}
|
||||||
},
|
}),
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
handleButtonClick(e) {
|
handleButtonClick: function handleButtonClick(e) {
|
||||||
const { currentTarget = {} } = e;
|
var _e$currentTarget = e.currentTarget,
|
||||||
const { dataset = {} } = 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({
|
this.setData({
|
||||||
show: false
|
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({
|
Component({
|
||||||
behaviors: ['wx://form-field'],
|
behaviors: ['wx://form-field'],
|
||||||
|
|
||||||
@ -27,20 +29,21 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
handleFieldChange(event) {
|
handleFieldChange: function handleFieldChange(event) {
|
||||||
const { detail = {} } = event;
|
var _event$detail = event.detail,
|
||||||
const { value = '' } = detail;
|
detail = _event$detail === undefined ? {} : _event$detail;
|
||||||
this.setData({ value });
|
var _detail$value = detail.value,
|
||||||
|
value = _detail$value === undefined ? '' : _detail$value;
|
||||||
|
|
||||||
|
this.setData({ value: value });
|
||||||
|
|
||||||
this.triggerEvent('change', event);
|
this.triggerEvent('change', event);
|
||||||
},
|
},
|
||||||
|
handleFieldFocus: function handleFieldFocus(event) {
|
||||||
handleFieldFocus(event) {
|
|
||||||
this.triggerEvent('focus', event);
|
this.triggerEvent('focus', event);
|
||||||
},
|
},
|
||||||
|
handleFieldBlur: function handleFieldBlur(event) {
|
||||||
handleFieldBlur(event) {
|
|
||||||
this.triggerEvent('blur', 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({
|
Component({
|
||||||
properties: {
|
properties: {
|
||||||
type: {
|
type: {
|
||||||
@ -5,4 +7,4 @@ Component({
|
|||||||
value: ''
|
value: ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
5
dist/index.js
vendored
5
dist/index.js
vendored
@ -1,4 +1,5 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
exports.Dialog = require('./dialog/dialog');
|
exports.Dialog = require('./dialog/dialog');
|
||||||
exports.Toast = require('./toast/toast');
|
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({
|
Component({
|
||||||
properties: {
|
properties: {
|
||||||
type: {
|
type: {
|
||||||
@ -8,4 +10,4 @@ Component({
|
|||||||
type: String
|
type: String
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
142
dist/noticebar/index.js
vendored
142
dist/noticebar/index.js
vendored
@ -1,6 +1,8 @@
|
|||||||
const VALID_MODE = ['closeable'];
|
'use strict';
|
||||||
const FONT_COLOR = '#f60';
|
|
||||||
const BG_COLOR = '#fff7cc';
|
var VALID_MODE = ['closeable'];
|
||||||
|
var FONT_COLOR = '#f60';
|
||||||
|
var BG_COLOR = '#fff7cc';
|
||||||
|
|
||||||
Component({
|
Component({
|
||||||
properties: {
|
properties: {
|
||||||
@ -57,111 +59,113 @@ Component({
|
|||||||
timer: null
|
timer: null
|
||||||
},
|
},
|
||||||
|
|
||||||
attached() {
|
attached: function attached() {
|
||||||
const { mode } = this.data;
|
var mode = this.data.mode;
|
||||||
|
|
||||||
if (mode && this._checkMode(mode)) {
|
if (mode && this._checkMode(mode)) {
|
||||||
this.setData({
|
this.setData({
|
||||||
hasRightIcon: true
|
hasRightIcon: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
detached: function detached() {
|
||||||
|
var timer = this.data.timer;
|
||||||
|
|
||||||
detached() {
|
|
||||||
const { timer } = this.data;
|
|
||||||
timer && clearTimeout(timer);
|
timer && clearTimeout(timer);
|
||||||
},
|
},
|
||||||
|
ready: function ready() {
|
||||||
ready() {
|
|
||||||
this._init();
|
this._init();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
_checkMode(val) {
|
_checkMode: function _checkMode(val) {
|
||||||
const isValidMode = ~VALID_MODE.indexOf(val);
|
var isValidMode = ~VALID_MODE.indexOf(val);
|
||||||
if (!isValidMode) {
|
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;
|
return isValidMode;
|
||||||
},
|
},
|
||||||
|
_init: function _init() {
|
||||||
|
var _this = this;
|
||||||
|
|
||||||
_init() {
|
wx.createSelectorQuery().in(this).select('.zan-noticebar__content').boundingClientRect(function (rect) {
|
||||||
wx.createSelectorQuery()
|
if (!rect || !rect.width) {
|
||||||
.in(this)
|
throw new Error('页面缺少 noticebar 元素');
|
||||||
.select('.zan-noticebar__content')
|
}
|
||||||
.boundingClientRect((rect) => {
|
_this.setData({
|
||||||
|
width: rect.width
|
||||||
|
});
|
||||||
|
|
||||||
|
wx.createSelectorQuery().in(_this).select('.zan-noticebar__content-wrap').boundingClientRect(function (rect) {
|
||||||
if (!rect || !rect.width) {
|
if (!rect || !rect.width) {
|
||||||
throw new Error('页面缺少 noticebar 元素');
|
return;
|
||||||
}
|
}
|
||||||
this.setData({
|
|
||||||
width: rect.width
|
|
||||||
});
|
|
||||||
|
|
||||||
wx.createSelectorQuery()
|
var wrapWidth = rect.width;
|
||||||
.in(this)
|
var _data = _this.data,
|
||||||
.select('.zan-noticebar__content-wrap')
|
width = _data.width,
|
||||||
.boundingClientRect((rect) => {
|
speed = _data.speed,
|
||||||
if (!rect || !rect.width) {
|
scrollable = _data.scrollable,
|
||||||
return;
|
delay = _data.delay;
|
||||||
}
|
|
||||||
|
|
||||||
const wrapWidth = rect.width;
|
|
||||||
const {
|
|
||||||
width, speed, scrollable, delay
|
|
||||||
} = this.data;
|
|
||||||
|
|
||||||
if (scrollable && wrapWidth < width) {
|
if (scrollable && wrapWidth < width) {
|
||||||
const elapse = width / speed * 1000;
|
var elapse = width / speed * 1000;
|
||||||
const animation = wx.createAnimation({
|
var animation = wx.createAnimation({
|
||||||
duration: elapse,
|
duration: elapse,
|
||||||
timeingFunction: 'linear',
|
timeingFunction: 'linear',
|
||||||
delay
|
delay: delay
|
||||||
});
|
});
|
||||||
const resetAnimation = wx.createAnimation({
|
var resetAnimation = wx.createAnimation({
|
||||||
duration: 0,
|
duration: 0,
|
||||||
timeingFunction: 'linear'
|
timeingFunction: 'linear'
|
||||||
});
|
});
|
||||||
|
|
||||||
this.setData({
|
_this.setData({
|
||||||
elapse,
|
elapse: elapse,
|
||||||
wrapWidth,
|
wrapWidth: wrapWidth,
|
||||||
animation,
|
animation: animation,
|
||||||
resetAnimation
|
resetAnimation: resetAnimation
|
||||||
}, () => {
|
}, function () {
|
||||||
this._scroll();
|
_this._scroll();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
})
|
}).exec();
|
||||||
.exec();
|
}).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();
|
resetAnimation.translateX(wrapWidth).step();
|
||||||
const animationData = animation.translateX(-(elapse * speed) / 1000).step();
|
var animationData = animation.translateX(-(elapse * speed) / 1000).step();
|
||||||
this.setData({
|
this.setData({
|
||||||
animationData: resetAnimation.export()
|
animationData: resetAnimation.export()
|
||||||
});
|
});
|
||||||
setTimeout(() => {
|
setTimeout(function () {
|
||||||
this.setData({
|
_this2.setData({
|
||||||
animationData: animationData.export()
|
animationData: animationData.export()
|
||||||
});
|
});
|
||||||
}, 100);
|
}, 100);
|
||||||
|
|
||||||
const timer = setTimeout(() => {
|
var timer = setTimeout(function () {
|
||||||
this._scroll();
|
_this2._scroll();
|
||||||
}, elapse);
|
}, elapse);
|
||||||
|
|
||||||
this.setData({
|
this.setData({
|
||||||
timer
|
timer: timer
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
_handleButtonClick: function _handleButtonClick() {
|
||||||
|
var timer = this.data.timer;
|
||||||
|
|
||||||
_handleButtonClick() {
|
|
||||||
const { timer } = this.data;
|
|
||||||
timer && clearTimeout(timer);
|
timer && clearTimeout(timer);
|
||||||
this.setData({
|
this.setData({
|
||||||
show: false,
|
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({
|
Component({
|
||||||
/**
|
/**
|
||||||
* 组件的属性列表
|
* 组件的属性列表
|
||||||
@ -20,4 +22,4 @@ Component({
|
|||||||
value: false
|
value: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
6
dist/popup/index.js
vendored
6
dist/popup/index.js
vendored
@ -1,3 +1,5 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
Component({
|
Component({
|
||||||
properties: {
|
properties: {
|
||||||
show: {
|
show: {
|
||||||
@ -23,7 +25,7 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
handleMaskClick() {
|
handleMaskClick: function handleMaskClick() {
|
||||||
this.triggerEvent('click-overlay', {});
|
this.triggerEvent('click-overlay', {});
|
||||||
|
|
||||||
if (!this.data.closeOnClickOverlay) {
|
if (!this.data.closeOnClickOverlay) {
|
||||||
@ -32,4 +34,4 @@ Component({
|
|||||||
this.triggerEvent('close', {});
|
this.triggerEvent('close', {});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
4
dist/row/index.js
vendored
4
dist/row/index.js
vendored
@ -1,3 +1,5 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
Component({
|
Component({
|
||||||
externalClasses: ['row-class'],
|
externalClasses: ['row-class'],
|
||||||
|
|
||||||
@ -6,4 +8,4 @@ Component({
|
|||||||
type: 'child'
|
type: 'child'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
10
dist/select/index.js
vendored
10
dist/select/index.js
vendored
@ -1,3 +1,5 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
Component({
|
Component({
|
||||||
properties: {
|
properties: {
|
||||||
items: {
|
items: {
|
||||||
@ -19,9 +21,9 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
handleSelectChange(e) {
|
handleSelectChange: function handleSelectChange(e) {
|
||||||
const value = e.detail.value;
|
var value = e.detail.value;
|
||||||
this.triggerEvent('change', { 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({
|
Component({
|
||||||
properties: {
|
properties: {
|
||||||
size: String,
|
size: String,
|
||||||
@ -11,7 +17,7 @@ Component({
|
|||||||
},
|
},
|
||||||
max: {
|
max: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: Infinity
|
value: VERY_LARGE_NUMBER
|
||||||
},
|
},
|
||||||
step: {
|
step: {
|
||||||
type: Number,
|
type: Number,
|
||||||
@ -20,11 +26,13 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
handleZanStepperChange(e, type) {
|
handleZanStepperChange: function handleZanStepperChange(e, type) {
|
||||||
const { dataset = {} } = e.currentTarget;
|
var _e$currentTarget$data = e.currentTarget.dataset,
|
||||||
const { disabled } = dataset;
|
dataset = _e$currentTarget$data === undefined ? {} : _e$currentTarget$data;
|
||||||
const { step } = this.data;
|
var disabled = dataset.disabled;
|
||||||
let { stepper } = this.data;
|
var step = this.data.step;
|
||||||
|
var stepper = this.data.stepper;
|
||||||
|
|
||||||
|
|
||||||
if (disabled) return null;
|
if (disabled) return null;
|
||||||
|
|
||||||
@ -37,22 +45,24 @@ Component({
|
|||||||
this.triggerEvent('change', stepper);
|
this.triggerEvent('change', stepper);
|
||||||
this.triggerEvent(type);
|
this.triggerEvent(type);
|
||||||
},
|
},
|
||||||
|
handleZanStepperMinus: function handleZanStepperMinus(e) {
|
||||||
handleZanStepperMinus(e) {
|
|
||||||
this.handleZanStepperChange(e, 'minus');
|
this.handleZanStepperChange(e, 'minus');
|
||||||
},
|
},
|
||||||
|
handleZanStepperPlus: function handleZanStepperPlus(e) {
|
||||||
handleZanStepperPlus(e) {
|
|
||||||
this.handleZanStepperChange(e, 'plus');
|
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) {
|
if (!value) {
|
||||||
setTimeout(() => {
|
setTimeout(function () {
|
||||||
this.triggerEvent('change', min);
|
_this.triggerEvent('change', min);
|
||||||
}, 16);
|
}, 16);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -67,4 +77,4 @@ Component({
|
|||||||
this.triggerEvent('change', value);
|
this.triggerEvent('change', value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
4
dist/steps/index.js
vendored
4
dist/steps/index.js
vendored
@ -1,3 +1,5 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
Component({
|
Component({
|
||||||
properties: {
|
properties: {
|
||||||
type: {
|
type: {
|
||||||
@ -17,4 +19,4 @@ Component({
|
|||||||
|
|
||||||
className: String
|
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({
|
Component({
|
||||||
properties: {
|
properties: {
|
||||||
checked: {
|
checked: {
|
||||||
@ -17,15 +19,15 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
handleZanSwitchChange() {
|
handleZanSwitchChange: function handleZanSwitchChange() {
|
||||||
if (this.data.loading || this.data.disabled) {
|
if (this.data.loading || this.data.disabled) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let checked = !this.data.checked;
|
var checked = !this.data.checked;
|
||||||
this.triggerEvent('change', {
|
this.triggerEvent('change', {
|
||||||
checked,
|
checked: checked,
|
||||||
loading: this.data.loading
|
loading: this.data.loading
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
11
dist/tab/index.js
vendored
11
dist/tab/index.js
vendored
@ -1,3 +1,5 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
Component({
|
Component({
|
||||||
externalClasses: 'class',
|
externalClasses: 'class',
|
||||||
|
|
||||||
@ -25,15 +27,14 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
_handleZanTabChange(e) {
|
_handleZanTabChange: function _handleZanTabChange(e) {
|
||||||
const selectedId = e.currentTarget.dataset.itemId;
|
var selectedId = e.currentTarget.dataset.itemId;
|
||||||
|
|
||||||
this.setData({
|
this.setData({
|
||||||
selectedId
|
selectedId: selectedId
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
this.triggerEvent('tabchange', selectedId);
|
this.triggerEvent('tabchange', selectedId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
10
dist/tag/index.js
vendored
10
dist/tag/index.js
vendored
@ -1,15 +1,17 @@
|
|||||||
|
"use strict";
|
||||||
|
|
||||||
Component({
|
Component({
|
||||||
properties: {
|
properties: {
|
||||||
type: {
|
type: {
|
||||||
type: String,
|
type: String
|
||||||
},
|
},
|
||||||
plain: {
|
plain: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: false,
|
value: false
|
||||||
},
|
},
|
||||||
disabled: {
|
disabled: {
|
||||||
type: Boolean,
|
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,
|
show: false,
|
||||||
message: '',
|
message: '',
|
||||||
icon: '',
|
icon: '',
|
||||||
@ -6,35 +8,29 @@ const DEFAULT_DATA = {
|
|||||||
mask: false
|
mask: false
|
||||||
};
|
};
|
||||||
|
|
||||||
const SUPPORT_TYPE = ['loading', 'success', 'fail'];
|
var SUPPORT_TYPE = ['loading', 'success', 'fail'];
|
||||||
|
|
||||||
Component({
|
Component({
|
||||||
data: {
|
data: Object.assign({}, DEFAULT_DATA),
|
||||||
...DEFAULT_DATA
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
show(options) {
|
show: function show(options) {
|
||||||
const toastOptions = { ...options };
|
var toastOptions = Object.assign({}, options);
|
||||||
|
|
||||||
let icon = options.icon || '';
|
var icon = options.icon || '';
|
||||||
let image = options.image || '';
|
var image = options.image || '';
|
||||||
if (SUPPORT_TYPE.indexOf(options.type) > -1) {
|
if (SUPPORT_TYPE.indexOf(options.type) > -1) {
|
||||||
icon = options.type;
|
icon = options.type;
|
||||||
image = '';
|
image = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setData({
|
this.setData(Object.assign({}, toastOptions, {
|
||||||
...toastOptions,
|
icon: icon,
|
||||||
icon,
|
image: image
|
||||||
image
|
}));
|
||||||
});
|
|
||||||
},
|
},
|
||||||
|
clear: function clear() {
|
||||||
clear() {
|
this.setData(Object.assign({}, DEFAULT_DATA));
|
||||||
this.setData({
|
|
||||||
...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,
|
timeoutId: 0,
|
||||||
toastCtx: null
|
toastCtx: null
|
||||||
};
|
};
|
||||||
|
|
||||||
let globalToastUserConfig = {};
|
var globalToastUserConfig = {};
|
||||||
|
|
||||||
// 获取页面上下文
|
// 获取页面上下文
|
||||||
function getPageCtx(pageCtx) {
|
function getPageCtx(pageCtx) {
|
||||||
let ctx = pageCtx;
|
var ctx = pageCtx;
|
||||||
|
|
||||||
if (!ctx) {
|
if (!ctx) {
|
||||||
const pages = getCurrentPages();
|
var pages = getCurrentPages();
|
||||||
ctx = pages[pages.length - 1];
|
ctx = pages[pages.length - 1];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -21,7 +23,7 @@ function getPageCtx(pageCtx) {
|
|||||||
|
|
||||||
// 获取当前页面的 toast 配置数据
|
// 获取当前页面的 toast 配置数据
|
||||||
function getPageToastConfig(pageCtx) {
|
function getPageToastConfig(pageCtx) {
|
||||||
const zanuiData = pageCtx.data.zanui || {};
|
var zanuiData = pageCtx.data.zanui || {};
|
||||||
return zanuiData.__zanToastPageConfig || {};
|
return zanuiData.__zanToastPageConfig || {};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -29,19 +31,15 @@ function getPageToastConfig(pageCtx) {
|
|||||||
function Toast(optionsOrMsg, pageCtx) {
|
function Toast(optionsOrMsg, pageCtx) {
|
||||||
// 参数格式化处理
|
// 参数格式化处理
|
||||||
// 如果是文字,默认为 message
|
// 如果是文字,默认为 message
|
||||||
let options = optionsOrMsg || {};
|
var options = optionsOrMsg || {};
|
||||||
if (typeof optionsOrMsg === 'string') {
|
if (typeof optionsOrMsg === 'string') {
|
||||||
options = { message: optionsOrMsg };
|
options = { message: optionsOrMsg };
|
||||||
}
|
}
|
||||||
|
|
||||||
let ctx = getPageCtx(pageCtx);
|
var ctx = getPageCtx(pageCtx);
|
||||||
const pageToastUserSetting = getPageToastConfig(ctx);
|
var pageToastUserSetting = getPageToastConfig(ctx);
|
||||||
const parsedOptions = {
|
var parsedOptions = Object.assign({}, globalToastUserConfig, pageToastUserSetting, options);
|
||||||
...globalToastUserConfig,
|
var toastCtx = ctx.selectComponent(parsedOptions.selector);
|
||||||
...pageToastUserSetting,
|
|
||||||
...options
|
|
||||||
};
|
|
||||||
const toastCtx = ctx.selectComponent(parsedOptions.selector);
|
|
||||||
|
|
||||||
if (!toastCtx) {
|
if (!toastCtx) {
|
||||||
console.error('无法找到对应的toast组件,请于页面中注册并在 wxml 中声明 toast 自定义组件');
|
console.error('无法找到对应的toast组件,请于页面中注册并在 wxml 中声明 toast 自定义组件');
|
||||||
@ -52,24 +50,26 @@ function Toast(optionsOrMsg, pageCtx) {
|
|||||||
Toast.clear();
|
Toast.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
toastCtx.show({
|
toastCtx.show(Object.assign({}, parsedOptions, {
|
||||||
...parsedOptions,
|
|
||||||
show: true
|
show: true
|
||||||
});
|
}));
|
||||||
|
|
||||||
const timeoutId = setTimeout(() => {
|
var timeoutId = setTimeout(function () {
|
||||||
toastCtx.clear();
|
toastCtx.clear();
|
||||||
}, parsedOptions.timeout || 3000);
|
}, parsedOptions.timeout || 3000);
|
||||||
|
|
||||||
timeoutData = {
|
timeoutData = {
|
||||||
timeoutId,
|
timeoutId: timeoutId,
|
||||||
toastCtx
|
toastCtx: toastCtx
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// 设置 toast 基础属性
|
// 设置 toast 基础属性
|
||||||
Toast.setDefaultOptions = function (options = {}, type = 'page') {
|
Toast.setDefaultOptions = function () {
|
||||||
const parsedDefaultOptions = {
|
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 || '',
|
selector: options.selector || '',
|
||||||
type: options.type || '',
|
type: options.type || '',
|
||||||
icon: options.icon || '',
|
icon: options.icon || '',
|
||||||
@ -78,26 +78,26 @@ Toast.setDefaultOptions = function (options = {}, type = 'page') {
|
|||||||
};
|
};
|
||||||
|
|
||||||
if (type === 'global') {
|
if (type === 'global') {
|
||||||
globalToastUserConfig = {
|
globalToastUserConfig = Object.assign({}, parsedDefaultOptions);
|
||||||
...parsedDefaultOptions
|
|
||||||
};
|
|
||||||
} else if (type === 'page') {
|
} else if (type === 'page') {
|
||||||
let ctx = getPageCtx();
|
var _ctx$setData;
|
||||||
ctx.setData({
|
|
||||||
[`${TOAST_CONFIG_KEY}`]: parsedDefaultOptions
|
var ctx = getPageCtx();
|
||||||
});
|
ctx.setData((_ctx$setData = {}, _ctx$setData['' + TOAST_CONFIG_KEY] = parsedDefaultOptions, _ctx$setData));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// 重置 toast 基础属性
|
// 重置 toast 基础属性
|
||||||
Toast.resetDefaultOptions = function (type = 'page') {
|
Toast.resetDefaultOptions = function () {
|
||||||
|
var type = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'page';
|
||||||
|
|
||||||
if (type === 'global') {
|
if (type === 'global') {
|
||||||
globalToastUserConfig = {};
|
globalToastUserConfig = {};
|
||||||
} else {
|
} else {
|
||||||
let ctx = getPageCtx();
|
var _ctx$setData2;
|
||||||
ctx.setData({
|
|
||||||
[`${TOAST_CONFIG_KEY}`]: {}
|
var ctx = getPageCtx();
|
||||||
});
|
ctx.setData((_ctx$setData2 = {}, _ctx$setData2['' + TOAST_CONFIG_KEY] = {}, _ctx$setData2));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -107,9 +107,7 @@ Toast.clear = function () {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
timeoutData.toastCtx && timeoutData.toastCtx.clear();
|
timeoutData.toastCtx && timeoutData.toastCtx.clear();
|
||||||
} catch (e) {
|
} catch (e) {}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
timeoutData = {
|
timeoutData = {
|
||||||
timeoutId: 0,
|
timeoutId: 0,
|
||||||
@ -118,11 +116,12 @@ Toast.clear = function () {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// 显示 loading
|
// 显示 loading
|
||||||
Toast.loading = function (options = {}) {
|
Toast.loading = function () {
|
||||||
Toast({
|
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
||||||
...options,
|
|
||||||
|
Toast(Object.assign({}, options, {
|
||||||
type: 'loading'
|
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';
|
'use strict';
|
||||||
const BG_COLOR = '#e64340';
|
|
||||||
|
var FONT_COLOR = '#fff';
|
||||||
|
var BG_COLOR = '#e64340';
|
||||||
|
|
||||||
Component({
|
Component({
|
||||||
properties: {
|
properties: {
|
||||||
@ -23,8 +25,11 @@ Component({
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
show() {
|
show: function show() {
|
||||||
const { duration } = this.data;
|
var _this = this;
|
||||||
|
|
||||||
|
var duration = this.data.duration;
|
||||||
|
|
||||||
|
|
||||||
this._timer && clearTimeout(this._timer);
|
this._timer && clearTimeout(this._timer);
|
||||||
this.setData({
|
this.setData({
|
||||||
@ -32,13 +37,12 @@ Component({
|
|||||||
});
|
});
|
||||||
|
|
||||||
if (duration > 0 && duration !== Infinity) {
|
if (duration > 0 && duration !== Infinity) {
|
||||||
this._timer = setTimeout(() => {
|
this._timer = setTimeout(function () {
|
||||||
this.hide();
|
_this.hide();
|
||||||
}, duration);
|
}, duration);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
hide: function hide() {
|
||||||
hide() {
|
|
||||||
this._timer = clearTimeout(this._timer);
|
this._timer = clearTimeout(this._timer);
|
||||||
|
|
||||||
this.setData({
|
this.setData({
|
||||||
@ -48,27 +52,29 @@ Component({
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
function Toptips(options = {}) {
|
function Toptips() {
|
||||||
const pages = getCurrentPages();
|
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
||||||
const ctx = pages[pages.length - 1];
|
|
||||||
const defaultOptions = {
|
var pages = getCurrentPages();
|
||||||
|
var ctx = pages[pages.length - 1];
|
||||||
|
var defaultOptions = {
|
||||||
selector: '#zan-toptips',
|
selector: '#zan-toptips',
|
||||||
duration: 3000
|
duration: 3000
|
||||||
};
|
};
|
||||||
|
|
||||||
options = Object.assign(defaultOptions, parseParam(options));
|
options = Object.assign(defaultOptions, parseParam(options));
|
||||||
|
|
||||||
const $toptips = ctx.selectComponent(options.selector);
|
var $toptips = ctx.selectComponent(options.selector);
|
||||||
delete options.selector;
|
delete options.selector;
|
||||||
|
|
||||||
$toptips.setData({
|
$toptips.setData(Object.assign({}, options));
|
||||||
...options
|
|
||||||
});
|
|
||||||
$toptips && $toptips.show();
|
$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 };
|
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",
|
"homepage": "https://github.com/youzan/zanui-weapp#readme",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"autoprefixer": "^8.5.0",
|
"autoprefixer": "^8.5.0",
|
||||||
|
"babel-core": "^6.26.3",
|
||||||
"babel-eslint": "^8.2.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",
|
"cross-env": "^5.1.4",
|
||||||
"eslint-config-airbnb": "^16.1.0",
|
"eslint-config-airbnb": "^16.1.0",
|
||||||
"eslint-plugin-jsx-a11y": "^6.0.3",
|
"eslint-plugin-jsx-a11y": "^6.0.3",
|
||||||
"fs-extra": "^4.0.2",
|
"fs-extra": "^4.0.2",
|
||||||
"gh-pages": "^1.1.0",
|
"gh-pages": "^1.1.0",
|
||||||
"gulp": "^3.9.1",
|
"gulp": "^3.9.1",
|
||||||
|
"gulp-babel": "^7.0.1",
|
||||||
"gulp-clean-css": "^3.9.0",
|
"gulp-clean-css": "^3.9.0",
|
||||||
"gulp-postcss": "^7.0.0",
|
"gulp-postcss": "^7.0.0",
|
||||||
"gulp-remove-logging": "^1.2.0",
|
"gulp-remove-logging": "^1.2.0",
|
||||||
|
@ -67,7 +67,7 @@ function Toptips(options = {}) {
|
|||||||
$toptips && $toptips.show();
|
$toptips && $toptips.show();
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseParam(params) {
|
function parseParam(params = '') {
|
||||||
return typeof params === 'object' ? params : { content: params };
|
return typeof params === 'object' ? params : { content: params };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@ const cssmin = require('gulp-clean-css');
|
|||||||
const rename = require('gulp-rename');
|
const rename = require('gulp-rename');
|
||||||
const gutil = require('gulp-util');
|
const gutil = require('gulp-util');
|
||||||
const removeLogging = require('gulp-remove-logging');
|
const removeLogging = require('gulp-remove-logging');
|
||||||
|
const babel = require('gulp-babel');
|
||||||
|
|
||||||
const options = gutil.env;
|
const options = gutil.env;
|
||||||
const isProduction = process.env.NODE_ENV === 'production';
|
const isProduction = process.env.NODE_ENV === 'production';
|
||||||
@ -23,6 +24,16 @@ gulp.task('compile-js', () => {
|
|||||||
.pipe(removeLogging({
|
.pipe(removeLogging({
|
||||||
methods: isProduction ? ['log', 'info'] : []
|
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));
|
.pipe(gulp.dest(options.dist));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
173
yarn.lock
173
yarn.lock
@ -261,6 +261,12 @@ amdefine@>=0.0.4:
|
|||||||
version "1.0.1"
|
version "1.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
|
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:
|
ansi-escapes@^3.0.0:
|
||||||
version "3.0.0"
|
version "3.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92"
|
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92"
|
||||||
@ -299,7 +305,7 @@ ansi-styles@^3.2.1:
|
|||||||
dependencies:
|
dependencies:
|
||||||
color-convert "^1.9.0"
|
color-convert "^1.9.0"
|
||||||
|
|
||||||
ansi-wrap@0.1.0:
|
ansi-wrap@0.1.0, ansi-wrap@^0.1.0:
|
||||||
version "0.1.0"
|
version "0.1.0"
|
||||||
resolved "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf"
|
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"
|
slash "^1.0.0"
|
||||||
source-map "^0.5.6"
|
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:
|
babel-eslint@^8.2.1:
|
||||||
version "8.2.2"
|
version "8.2.2"
|
||||||
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.2.2.tgz#1102273354c6f0b29b4ea28a65f97d122296b68b"
|
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"
|
version "6.13.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a"
|
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:
|
babel-plugin-syntax-class-properties@^6.8.0:
|
||||||
version "6.13.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"
|
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"
|
version "6.13.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b"
|
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:
|
babel-plugin-syntax-dynamic-import@^6.18.0:
|
||||||
version "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"
|
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"
|
version "6.13.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
|
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:
|
babel-plugin-syntax-jsx@^6.18.0:
|
||||||
version "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"
|
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-plugin-syntax-async-functions "^6.8.0"
|
||||||
babel-runtime "^6.22.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:
|
babel-plugin-transform-class-properties@^6.24.1:
|
||||||
version "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"
|
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-template "^6.24.1"
|
||||||
babel-types "^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:
|
babel-plugin-transform-es2015-arrow-functions@^6.22.0:
|
||||||
version "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"
|
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-plugin-syntax-exponentiation-operator "^6.8.0"
|
||||||
babel-runtime "^6.22.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:
|
babel-plugin-transform-object-rest-spread@^6.22.0, babel-plugin-transform-object-rest-spread@^6.26.0:
|
||||||
version "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"
|
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:
|
dependencies:
|
||||||
regenerator-transform "^0.10.0"
|
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"
|
version "6.23.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee"
|
resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -1124,6 +1199,41 @@ babel-preset-env@^1.3.2, babel-preset-env@^1.6.0:
|
|||||||
invariant "^2.2.2"
|
invariant "^2.2.2"
|
||||||
semver "^5.3.0"
|
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:
|
babel-preset-jest@^21.2.0:
|
||||||
version "21.2.0"
|
version "21.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-21.2.0.tgz#ff9d2bce08abd98e8a36d9a8a5189b9173b85638"
|
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-jest-hoist "^22.4.1"
|
||||||
babel-plugin-syntax-object-rest-spread "^6.13.0"
|
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"
|
version "6.24.1"
|
||||||
resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1"
|
resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -1503,6 +1629,13 @@ browserslist@^2.1.2, browserslist@^2.11.3:
|
|||||||
caniuse-lite "^1.0.30000792"
|
caniuse-lite "^1.0.30000792"
|
||||||
electron-to-chromium "^1.3.30"
|
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:
|
browserslist@^3.2.7:
|
||||||
version "3.2.7"
|
version "3.2.7"
|
||||||
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.7.tgz#aa488634d320b55e88bab0256184dbbcca1e6de9"
|
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"
|
version "1.0.30000843"
|
||||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000843.tgz#4fdec258dc641c385744cdd49d23c5459c3d4411"
|
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:
|
caseless@~0.12.0:
|
||||||
version "0.12.0"
|
version "0.12.0"
|
||||||
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
|
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"
|
version "1.0.4"
|
||||||
resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
|
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"
|
version "1.5.1"
|
||||||
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5"
|
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"
|
version "1.3.47"
|
||||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.47.tgz#764e887ca9104d01a0ac8eabee7dfc0e2ce14104"
|
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:
|
elliptic@^6.0.0:
|
||||||
version "6.4.0"
|
version "6.4.0"
|
||||||
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
|
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
|
||||||
@ -3837,6 +3978,15 @@ growly@^1.3.0:
|
|||||||
version "1.3.0"
|
version "1.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
|
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:
|
gulp-clean-css@^3.9.0:
|
||||||
version "3.9.0"
|
version "3.9.0"
|
||||||
resolved "https://registry.npmjs.org/gulp-clean-css/-/gulp-clean-css-3.9.0.tgz#e43e4c8d695060f6ba08a154d8e76d0d87b1c822"
|
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:
|
dependencies:
|
||||||
find-up "^2.1.0"
|
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:
|
pluralize@^7.0.0:
|
||||||
version "7.0.0"
|
version "7.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777"
|
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"
|
extend-shallow "^2.0.1"
|
||||||
js-beautify "^1.6.12"
|
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"
|
version "0.1.8"
|
||||||
resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
|
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"
|
through2 "^0.6.1"
|
||||||
vinyl "^0.4.0"
|
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"
|
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:
|
dependencies:
|
||||||
source-map "^0.5.1"
|
source-map "^0.5.1"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user