),
},
watch: {
- getContainer: 'portal'
+ getContainer: 'portal',
},
mounted() {
@@ -49,7 +49,7 @@ export function PortalMixin({ ref, afterPortal }: PortalMixinOptions) {
if (afterPortal) {
afterPortal.call(this);
}
- }
- }
+ },
+ },
});
}
diff --git a/src/mixins/relation.ts b/src/mixins/relation.ts
index 650912aac..208f9facc 100644
--- a/src/mixins/relation.ts
+++ b/src/mixins/relation.ts
@@ -31,8 +31,8 @@ export function ChildrenMixin(parent: string, options: ChildrenMixinOptions = {}
return Vue.extend({
inject: {
[parent]: {
- default: null
- }
+ default: null,
+ },
},
computed: {
@@ -47,7 +47,7 @@ export function ChildrenMixin(parent: string, options: ChildrenMixinOptions = {}
[indexKey]() {
this.bindRelation();
return this.parent.children.indexOf(this);
- }
+ },
},
mounted() {
@@ -71,8 +71,8 @@ export function ChildrenMixin(parent: string, options: ChildrenMixinOptions = {}
children.sort((a, b) => vnodes.indexOf(a.$vnode) - vnodes.indexOf(b.$vnode));
this.parent.children = children;
- }
- }
+ },
+ },
});
}
@@ -80,14 +80,14 @@ export function ParentMixin(parent: string) {
return {
provide() {
return {
- [parent]: this
+ [parent]: this,
};
},
data() {
return {
- children: []
+ children: [],
};
- }
+ },
};
}
diff --git a/src/mixins/slots.ts b/src/mixins/slots.ts
index a78d7802d..4850ad6c4 100644
--- a/src/mixins/slots.ts
+++ b/src/mixins/slots.ts
@@ -15,6 +15,6 @@ export const SlotsMixin = Vue.extend({
}
return $slots[name];
- }
- }
+ },
+ },
});
diff --git a/src/mixins/touch.ts b/src/mixins/touch.ts
index 01bddb42c..0a1c3621e 100644
--- a/src/mixins/touch.ts
+++ b/src/mixins/touch.ts
@@ -66,6 +66,6 @@ export const TouchMixin = Vue.extend({
on(el, 'touchend', onTouchEnd);
on(el, 'touchcancel', onTouchEnd);
}
- }
- }
+ },
+ },
});
diff --git a/src/nav-bar/demo/index.vue b/src/nav-bar/demo/index.vue
index b3b35e854..e530738df 100644
--- a/src/nav-bar/demo/index.vue
+++ b/src/nav-bar/demo/index.vue
@@ -33,7 +33,7 @@ export default {
},
onClickRight() {
this.$toast(this.$t('button'));
- }
- }
+ },
+ },
};
diff --git a/src/nav-bar/index.tsx b/src/nav-bar/index.tsx
index e90e6df54..592f74a4c 100644
--- a/src/nav-bar/index.tsx
+++ b/src/nav-bar/index.tsx
@@ -40,7 +40,7 @@ function NavBar(
{props.leftText}
- )
+ ),
]}
@@ -79,12 +79,12 @@ NavBar.props = {
leftArrow: Boolean,
border: {
type: Boolean,
- default: true
+ default: true,
},
zIndex: {
type: Number,
- default: 1
- }
+ default: 1,
+ },
};
export default createComponent(NavBar);
diff --git a/src/nav-bar/test/index.spec.js b/src/nav-bar/test/index.spec.js
index 79238f704..042d04ffe 100644
--- a/src/nav-bar/test/index.spec.js
+++ b/src/nav-bar/test/index.spec.js
@@ -5,8 +5,8 @@ test('render left & right slot', () => {
const wrapper = mount(NavBar, {
scopedSlots: {
left: () => 'Custom Left',
- right: () => 'Custom Right'
- }
+ right: () => 'Custom Right',
+ },
});
expect(wrapper).toMatchSnapshot();
@@ -15,8 +15,8 @@ test('render left & right slot', () => {
test('render title slot', () => {
const wrapper = mount(NavBar, {
scopedSlots: {
- title: () => 'Custom Title'
- }
+ title: () => 'Custom Title',
+ },
});
expect(wrapper).toMatchSnapshot();
diff --git a/src/notice-bar/demo/index.vue b/src/notice-bar/demo/index.vue
index 2a088b0d3..e02945b0e 100644
--- a/src/notice-bar/demo/index.vue
+++ b/src/notice-bar/demo/index.vue
@@ -52,16 +52,16 @@ export default {
mode: '通知栏模式',
wrapable: '多行展示',
text: '足协杯战线连续第2年上演广州德比战,上赛季半决赛上恒大以两回合5-3的总比分淘汰富力。',
- customStyle: '自定义样式'
+ customStyle: '自定义样式',
},
'en-US': {
mode: 'Mode',
wrapable: 'Wrapable',
unscrollable: 'Disable scroll',
text: 'Only those who have the patience to do simple things perfectly ever acquire the skill to do difficult things easily.',
- customStyle: 'Custom Style'
- }
- }
+ customStyle: 'Custom Style',
+ },
+ },
};
diff --git a/src/notice-bar/index.js b/src/notice-bar/index.js
index ca557f5ff..ea8329577 100644
--- a/src/notice-bar/index.js
+++ b/src/notice-bar/index.js
@@ -13,16 +13,16 @@ export default createComponent({
background: String,
delay: {
type: [Number, String],
- default: 1
+ default: 1,
},
scrollable: {
type: Boolean,
- default: true
+ default: true,
},
speed: {
type: Number,
- default: 50
- }
+ default: 50,
+ },
},
data() {
@@ -32,7 +32,7 @@ export default createComponent({
duration: 0,
offsetWidth: 0,
showNoticeBar: true,
- animationClass: ''
+ animationClass: '',
};
},
@@ -55,8 +55,8 @@ export default createComponent({
}
});
},
- immediate: true
- }
+ immediate: true,
+ },
},
methods: {
@@ -73,7 +73,7 @@ export default createComponent({
this.duration = (this.offsetWidth + this.wrapWidth) / this.speed;
this.animationClass = bem('play--infinite');
});
- }
+ },
},
render() {
@@ -81,13 +81,13 @@ export default createComponent({
const barStyle = {
color: this.color,
- background: this.background
+ background: this.background,
};
const contentStyle = {
paddingLeft: this.firstRound ? 0 : this.wrapWidth + 'px',
animationDelay: (this.firstRound ? this.delay : 0) + 's',
- animationDuration: this.duration + 's'
+ animationDuration: this.duration + 's',
};
function LeftIcon() {
@@ -132,7 +132,7 @@ export default createComponent({
class={[
bem('content'),
this.animationClass,
- { 'van-ellipsis': !this.scrollable && !this.wrapable }
+ { 'van-ellipsis': !this.scrollable && !this.wrapable },
]}
style={contentStyle}
onAnimationend={this.onAnimationEnd}
@@ -144,5 +144,5 @@ export default createComponent({
{RightIcon()}
);
- }
+ },
});
diff --git a/src/notice-bar/test/index.spec.js b/src/notice-bar/test/index.spec.js
index 83d835faa..22bbf5656 100644
--- a/src/notice-bar/test/index.spec.js
+++ b/src/notice-bar/test/index.spec.js
@@ -11,8 +11,8 @@ test('click event', () => {
test('close event', () => {
const wrapper = mount(NoticeBar, {
propsData: {
- mode: 'closeable'
- }
+ mode: 'closeable',
+ },
});
const close = wrapper.find('.van-notice-bar__right-icon');
@@ -30,8 +30,8 @@ test('icon slot', () => {
`,
components: {
- NoticeBar
- }
+ NoticeBar,
+ },
});
expect(wrapper).toMatchSnapshot();
diff --git a/src/notify/Notify.tsx b/src/notify/Notify.tsx
index dc7581603..a46f507fb 100644
--- a/src/notify/Notify.tsx
+++ b/src/notify/Notify.tsx
@@ -28,7 +28,7 @@ function Notify(
) {
const style = {
color: props.color,
- background: props.background
+ background: props.background,
};
return (
@@ -55,16 +55,16 @@ Notify.props = {
getContainer: [String, Function],
type: {
type: String,
- default: 'danger'
+ default: 'danger',
},
color: {
type: String,
- default: WHITE
+ default: WHITE,
},
duration: {
type: Number,
- default: 3000
- }
+ default: 3000,
+ },
};
export default createComponent(Notify);
diff --git a/src/notify/demo/index.vue b/src/notify/demo/index.vue
index a91f1e111..075d4600f 100644
--- a/src/notify/demo/index.vue
+++ b/src/notify/demo/index.vue
@@ -33,7 +33,7 @@ export default {
notifyType: '通知类型',
customColor: '自定义颜色',
customNotify: '自定义配置',
- customDuration: '自定义时长'
+ customDuration: '自定义时长',
},
'en-US': {
primary: 'Primary',
@@ -44,8 +44,8 @@ export default {
notifyType: 'Notify Type',
customColor: 'Custom Color',
customNotify: 'Custom Notify',
- customDuration: 'Custom Duration'
- }
+ customDuration: 'Custom Duration',
+ },
},
methods: {
@@ -57,24 +57,24 @@ export default {
this.$notify({
message: this.$t('customColor'),
color: '#ad0000',
- background: '#ffe1e1'
+ background: '#ffe1e1',
});
},
showCustomDuration() {
this.$notify({
message: this.$t('customDuration'),
- duration: 1000
+ duration: 1000,
});
},
showType(type) {
this.$notify({
message: this.$t('content'),
- type
+ type,
});
- }
- }
+ },
+ },
};
diff --git a/src/notify/index.ts b/src/notify/index.ts
index db690f629..dfd1d7491 100644
--- a/src/notify/index.ts
+++ b/src/notify/index.ts
@@ -35,14 +35,14 @@ function Notify(options: NotifyOptions) {
if (instance.onOpened) {
instance.onOpened();
}
- }
- }
+ },
+ },
});
}
options = {
...Notify.currentOptions,
- ...parseOptions(options)
+ ...parseOptions(options),
};
Object.assign(instance, options);
@@ -66,7 +66,7 @@ function defaultOptions(): NotifyOptions {
className: '',
onClose: null,
onClick: null,
- onOpened: null
+ onOpened: null,
};
}
diff --git a/src/notify/test/index.spec.js b/src/notify/test/index.spec.js
index 61a2b61a3..cc8e761ac 100644
--- a/src/notify/test/index.spec.js
+++ b/src/notify/test/index.spec.js
@@ -14,7 +14,7 @@ test('create a notify', async () => {
test('type prop', async () => {
const notify = Notify({
message: 'test',
- type: 'primary'
+ type: 'primary',
});
await later();
@@ -28,7 +28,7 @@ test('notify disappear', async () => {
color: 'red',
background: 'blue',
duration: 10,
- onClose
+ onClose,
});
await later();
@@ -40,7 +40,7 @@ test('notify disappear', async () => {
Notify({
message: 'text2',
- duration: 0
+ duration: 0,
});
await later();
@@ -63,7 +63,7 @@ test('onClick prop', async () => {
const onClick = jest.fn();
const notify = Notify({
message: 'test',
- onClick
+ onClick,
});
notify.$el.click();
diff --git a/src/number-keyboard/Key.js b/src/number-keyboard/Key.js
index f5a0f6a44..9f0b2d11f 100644
--- a/src/number-keyboard/Key.js
+++ b/src/number-keyboard/Key.js
@@ -12,13 +12,13 @@ export default createComponent({
text: [Number, String],
theme: {
type: Array,
- default: () => []
- }
+ default: () => [],
+ },
},
data() {
return {
- active: false
+ active: false,
};
},
@@ -35,7 +35,7 @@ export default createComponent({
}
return bem(classNames);
- }
+ },
},
mounted() {
@@ -64,7 +64,7 @@ export default createComponent({
this.active = false;
this.$emit('press', this.text, this.type);
}
- }
+ },
},
render() {
@@ -73,5 +73,5 @@ export default createComponent({
{this.slots('default') || this.text}
);
- }
+ },
});
diff --git a/src/number-keyboard/demo/index.vue b/src/number-keyboard/demo/index.vue
index 85a8cf8f4..45abc2aa2 100644
--- a/src/number-keyboard/demo/index.vue
+++ b/src/number-keyboard/demo/index.vue
@@ -88,7 +88,7 @@ export default {
bindValue: '双向绑定',
clickToInput: '点此输入',
extraKey: '左下角按键内容',
- title: '键盘标题'
+ title: '键盘标题',
},
'en-US': {
default: 'Default style',
@@ -102,14 +102,14 @@ export default {
bindValue: 'Bind Value',
clickToInput: 'Click To Input',
extraKey: 'Bottom Left Button Content',
- title: 'Keyboard Title'
- }
+ title: 'Keyboard Title',
+ },
},
data() {
return {
value: '',
- keyboard: 'default'
+ keyboard: 'default',
};
},
@@ -120,8 +120,8 @@ export default {
onDelete() {
this.$toast(this.$t('delete'));
- }
- }
+ },
+ },
};
diff --git a/src/number-keyboard/index.js b/src/number-keyboard/index.js
index af7fac9dc..f8ef9c573 100644
--- a/src/number-keyboard/index.js
+++ b/src/number-keyboard/index.js
@@ -14,11 +14,11 @@ export default createComponent({
if (this.hideOnClickOutside) {
bind(document.body, 'touchstart', this.onBlur);
}
- })
+ }),
],
model: {
- event: 'update:value'
+ event: 'update:value',
},
props: {
@@ -28,40 +28,40 @@ export default createComponent({
deleteButtonText: String,
theme: {
type: String,
- default: 'default'
+ default: 'default',
},
value: {
type: String,
- default: ''
+ default: '',
},
extraKey: {
type: String,
- default: ''
+ default: '',
},
maxlength: {
type: [Number, String],
- default: Number.MAX_VALUE
+ default: Number.MAX_VALUE,
},
zIndex: {
type: Number,
- default: 100
+ default: 100,
},
transition: {
type: Boolean,
- default: true
+ default: true,
},
showDeleteKey: {
type: Boolean,
- default: true
+ default: true,
},
hideOnClickOutside: {
type: Boolean,
- default: true
+ default: true,
},
safeAreaInsetBottom: {
type: Boolean,
- default: true
- }
+ default: true,
+ },
},
watch: {
@@ -69,7 +69,7 @@ export default createComponent({
if (!this.transition) {
this.$emit(val ? 'show' : 'hide');
}
- }
+ },
},
computed: {
@@ -100,7 +100,7 @@ export default createComponent({
deleteText() {
return this.deleteButtonText || t('delete');
- }
+ },
},
methods: {
@@ -133,7 +133,7 @@ export default createComponent({
this.$emit('input', text);
this.$emit('update:value', value + text);
}
- }
+ },
},
render() {
@@ -205,5 +205,5 @@ export default createComponent({
);
- }
+ },
});
diff --git a/src/number-keyboard/test/index.spec.js b/src/number-keyboard/test/index.spec.js
index 0ae82b946..d17aa0d89 100644
--- a/src/number-keyboard/test/index.spec.js
+++ b/src/number-keyboard/test/index.spec.js
@@ -10,8 +10,8 @@ test('click number key', () => {
const wrapper = mount(NumberKeyboard, {
propsData: {
theme: 'custom',
- closeButtonText: 'close'
- }
+ closeButtonText: 'close',
+ },
});
clickKey(wrapper.findAll('.van-key').at(0));
@@ -37,8 +37,8 @@ test('click close button', () => {
const wrapper = mount(NumberKeyboard, {
propsData: {
theme: 'custom',
- closeButtonText: 'close'
- }
+ closeButtonText: 'close',
+ },
});
clickKey(wrapper.findAll('.van-key').at(12));
@@ -58,8 +58,8 @@ test('listen to show/hide event when has transtion', () => {
test('listen to show event when no transtion', () => {
const wrapper = mount(NumberKeyboard, {
propsData: {
- transition: false
- }
+ transition: false,
+ },
});
wrapper.vm.show = true;
wrapper.vm.show = false;
@@ -71,8 +71,8 @@ test('render title', () => {
const wrapper = mount(NumberKeyboard, {
propsData: {
title: 'Title',
- closeButtonText: 'Close'
- }
+ closeButtonText: 'Close',
+ },
});
expect(wrapper).toMatchSnapshot();
@@ -81,8 +81,8 @@ test('render title', () => {
test('title-left slot', () => {
const wrapper = mount(NumberKeyboard, {
scopedSlots: {
- 'title-left': () => 'Custom Title Left'
- }
+ 'title-left': () => 'Custom Title Left',
+ },
});
expect(wrapper).toMatchSnapshot();
@@ -91,8 +91,8 @@ test('title-left slot', () => {
test('extra-key slot', () => {
const wrapper = mount(NumberKeyboard, {
scopedSlots: {
- 'extra-key': () => 'Custom Extra Key'
- }
+ 'extra-key': () => 'Custom Extra Key',
+ },
});
expect(wrapper).toMatchSnapshot();
@@ -101,8 +101,8 @@ test('extra-key slot', () => {
test('hideOnClickOutside', () => {
const wrapper = mount(NumberKeyboard, {
propsData: {
- show: true
- }
+ show: true,
+ },
});
trigger(document.body, 'touchstart');
@@ -113,8 +113,8 @@ test('disable hideOnClickOutside', () => {
const wrapper = mount(NumberKeyboard, {
propsData: {
show: true,
- hideOnClickOutside: false
- }
+ hideOnClickOutside: false,
+ },
});
trigger(document.body, 'touchstart');
@@ -148,13 +148,13 @@ test('move and blur key', () => {
test('bind value', () => {
const wrapper = mount(NumberKeyboard, {
propsData: {
- value: ''
+ value: '',
},
listeners: {
'update:value': value => {
wrapper.setProps({ value });
- }
- }
+ },
+ },
});
const keys = wrapper.findAll('.van-key');
@@ -172,14 +172,14 @@ test('maxlength', () => {
const wrapper = mount(NumberKeyboard, {
propsData: {
value: '',
- maxlength: 1
+ maxlength: 1,
},
listeners: {
input: onInput,
'update:value': value => {
wrapper.setProps({ value });
- }
- }
+ },
+ },
});
const keys = wrapper.findAll('.van-key');
diff --git a/src/overlay/demo/index.vue b/src/overlay/demo/index.vue
index 491b73cff..4d70c8c41 100644
--- a/src/overlay/demo/index.vue
+++ b/src/overlay/demo/index.vue
@@ -33,20 +33,20 @@ export default {
i18n: {
'zh-CN': {
showOverlay: '显示遮罩层',
- embeddedContent: '嵌入内容'
+ embeddedContent: '嵌入内容',
},
'en-US': {
showOverlay: 'Show Overlay',
- embeddedContent: 'Embedded Content'
- }
+ embeddedContent: 'Embedded Content',
+ },
},
data() {
return {
show: false,
- showEmbedded: false
+ showEmbedded: false,
};
- }
+ },
};
diff --git a/src/overlay/index.tsx b/src/overlay/index.tsx
index eb374720f..6fba280ca 100644
--- a/src/overlay/index.tsx
+++ b/src/overlay/index.tsx
@@ -32,7 +32,7 @@ function Overlay(
) {
const style: { [key: string]: any } = {
zIndex: props.zIndex,
- ...props.customStyle
+ ...props.customStyle,
};
if (isDef(props.duration)) {
@@ -61,7 +61,7 @@ Overlay.props = {
customStyle: Object,
zIndex: {
type: [Number, String],
- default: 1
+ default: 1,
},
};
diff --git a/src/overlay/test/index.spec.js b/src/overlay/test/index.spec.js
index 2aca57e78..a1193daf2 100644
--- a/src/overlay/test/index.spec.js
+++ b/src/overlay/test/index.spec.js
@@ -5,8 +5,8 @@ test('z-index prop', () => {
const wrapper = mount(Overlay, {
propsData: {
show: true,
- zIndex: 99
- }
+ zIndex: 99,
+ },
});
expect(wrapper).toMatchSnapshot();
@@ -16,8 +16,8 @@ test('class-name prop', () => {
const wrapper = mount(Overlay, {
propsData: {
show: true,
- className: 'my-overlay'
- }
+ className: 'my-overlay',
+ },
});
expect(wrapper).toMatchSnapshot();
@@ -28,9 +28,9 @@ test('custom style prop', () => {
propsData: {
show: true,
customStyle: {
- backgroundColor: 'red'
- }
- }
+ backgroundColor: 'red',
+ },
+ },
});
expect(wrapper).toMatchSnapshot();
@@ -40,8 +40,8 @@ test('duration prop', () => {
const wrapper = mount(Overlay, {
propsData: {
show: true,
- duration: 1
- }
+ duration: 1,
+ },
});
expect(wrapper).toMatchSnapshot();
@@ -52,9 +52,9 @@ test('click event', () => {
const wrapper = mount(Overlay, {
context: {
on: {
- click: onClick
- }
- }
+ click: onClick,
+ },
+ },
});
wrapper.trigger('click');
@@ -64,8 +64,8 @@ test('click event', () => {
test('default slot', () => {
const wrapper = mount(Overlay, {
scopedSlots: {
- default: () => 'Custom Default'
- }
+ default: () => 'Custom Default',
+ },
});
expect(wrapper).toMatchSnapshot();
diff --git a/src/pagination/demo/index.vue b/src/pagination/demo/index.vue
index 3778e7bac..e2d5a4270 100644
--- a/src/pagination/demo/index.vue
+++ b/src/pagination/demo/index.vue
@@ -41,23 +41,23 @@ export default {
title2: '简单模式',
title3: '显示省略号',
prevText: '上一页',
- nextText: '下一页'
+ nextText: '下一页',
},
'en-US': {
title2: 'Simple Mode',
title3: 'Show ellipses',
prevText: 'Prev',
- nextText: 'Next'
- }
+ nextText: 'Next',
+ },
},
data() {
return {
currentPage1: 1,
currentPage2: 1,
- currentPage3: 1
+ currentPage3: 1,
};
- }
+ },
};
diff --git a/src/pagination/index.js b/src/pagination/index.js
index feafb7baa..662b51b04 100644
--- a/src/pagination/index.js
+++ b/src/pagination/index.js
@@ -14,28 +14,28 @@ export default createComponent({
forceEllipses: Boolean,
value: {
type: Number,
- default: 0
+ default: 0,
},
pageCount: {
type: Number,
- default: 0
+ default: 0,
},
totalItems: {
type: Number,
- default: 0
+ default: 0,
},
mode: {
type: String,
- default: 'multi'
+ default: 'multi',
},
itemsPerPage: {
type: Number,
- default: 10
+ default: 10,
},
showPageSize: {
type: Number,
- default: 5
- }
+ default: 5,
+ },
},
computed: {
@@ -90,7 +90,7 @@ export default createComponent({
}
return pages;
- }
+ },
},
watch: {
@@ -98,8 +98,8 @@ export default createComponent({
handler(page) {
this.select(page || this.value);
},
- immediate: true
- }
+ immediate: true,
+ },
},
methods: {
@@ -112,7 +112,7 @@ export default createComponent({
this.$emit('change', page);
}
}
- }
+ },
},
render() {
@@ -150,5 +150,5 @@ export default createComponent({
);
- }
+ },
});
diff --git a/src/panel/index.tsx b/src/panel/index.tsx
index 5a25b082f..d1e34f118 100644
--- a/src/panel/index.tsx
+++ b/src/panel/index.tsx
@@ -44,7 +44,7 @@ function Panel(
{slots.default && slots.default()}
,
slots.footer && (
- )
+ ),
];
return (
@@ -60,7 +60,7 @@ Panel.props = {
icon: String,
desc: String,
title: String,
- status: String
+ status: String,
};
export default createComponent(Panel);
diff --git a/src/password-input/demo/index.vue b/src/password-input/demo/index.vue
index 488149015..1455b9c45 100644
--- a/src/password-input/demo/index.vue
+++ b/src/password-input/demo/index.vue
@@ -54,15 +54,15 @@ export default {
customLength: '自定义长度',
removeMask: '明文展示',
hintError: '错误提示',
- errorInfo: '密码错误'
+ errorInfo: '密码错误',
},
'en-US': {
info: 'Some tips',
customLength: 'Custom Length',
removeMask: 'Remove Mask',
hintError: 'Hint Error',
- errorInfo: 'Password Mistake'
- }
+ errorInfo: 'Password Mistake',
+ },
},
data() {
@@ -72,7 +72,7 @@ export default {
value3: '123',
value4: '123',
keyboard: 'value1',
- errorInfo: ''
+ errorInfo: '',
};
},
@@ -90,7 +90,7 @@ export default {
onDelete() {
const { keyboard } = this;
this[keyboard] = this[keyboard].slice(0, this[keyboard].length - 1);
- }
- }
+ },
+ },
};
diff --git a/src/password-input/index.tsx b/src/password-input/index.tsx
index bb838373f..6b755d6c2 100644
--- a/src/password-input/index.tsx
+++ b/src/password-input/index.tsx
@@ -69,16 +69,16 @@ PasswordInput.props = {
errorInfo: String,
mask: {
type: Boolean,
- default: true
+ default: true,
},
value: {
type: String,
- default: ''
+ default: '',
},
length: {
type: Number,
- default: 6
- }
+ default: 6,
+ },
};
export default createComponent(PasswordInput);
diff --git a/src/password-input/test/index.spec.js b/src/password-input/test/index.spec.js
index d9a4825dc..65e3d635e 100644
--- a/src/password-input/test/index.spec.js
+++ b/src/password-input/test/index.spec.js
@@ -6,9 +6,9 @@ test('focus event', () => {
const wrapper = mount(PasswordInput, {
context: {
on: {
- focus
- }
- }
+ focus,
+ },
+ },
});
wrapper.find('.van-password-input__security').trigger('touchstart');
diff --git a/src/picker/PickerColumn.js b/src/picker/PickerColumn.js
index 66fa47945..1e9c4af02 100644
--- a/src/picker/PickerColumn.js
+++ b/src/picker/PickerColumn.js
@@ -39,8 +39,8 @@ export default createComponent({
visibleItemCount: Number,
initialOptions: {
type: Array,
- default: () => []
- }
+ default: () => [],
+ },
},
data() {
@@ -48,7 +48,7 @@ export default createComponent({
offset: 0,
duration: 0,
options: deepClone(this.initialOptions),
- currentIndex: this.defaultIndex
+ currentIndex: this.defaultIndex,
};
},
@@ -75,7 +75,7 @@ export default createComponent({
watch: {
defaultIndex(val) {
this.setIndex(val);
- }
+ },
},
computed: {
@@ -85,7 +85,7 @@ export default createComponent({
baseOffset() {
return (this.itemHeight * (this.visibleItemCount - 1)) / 2;
- }
+ },
},
methods: {
@@ -243,7 +243,7 @@ export default createComponent({
genOptions() {
const optionStyle = {
- height: `${this.itemHeight}px`
+ height: `${this.itemHeight}px`,
};
return this.options.map((option, index) => {
@@ -254,31 +254,31 @@ export default createComponent({
style: optionStyle,
attrs: {
role: 'button',
- tabindex: disabled ? -1 : 0
+ tabindex: disabled ? -1 : 0,
},
class: [
'van-ellipsis',
bem('item', {
disabled,
- selected: index === this.currentIndex
- })
+ selected: index === this.currentIndex,
+ }),
],
on: {
click: () => {
this.onClickItem(index);
- }
- }
+ },
+ },
};
if (this.allowHtml) {
data.domProps = {
- innerHTML: text
+ innerHTML: text,
};
}
return {this.allowHtml ? '' : text};
});
- }
+ },
},
render() {
@@ -286,7 +286,7 @@ export default createComponent({
transform: `translate3d(0, ${this.offset + this.baseOffset}px, 0)`,
transitionDuration: `${this.duration}ms`,
transitionProperty: this.duration ? 'all' : 'none',
- lineHeight: `${this.itemHeight}px`
+ lineHeight: `${this.itemHeight}px`,
};
return (
@@ -301,5 +301,5 @@ export default createComponent({
);
- }
+ },
});
diff --git a/src/picker/demo/index.vue b/src/picker/demo/index.vue
index 35fa00e21..4600496e0 100644
--- a/src/picker/demo/index.vue
+++ b/src/picker/demo/index.vue
@@ -66,9 +66,9 @@ export default {
column2: [{ text: '杭州', disabled: true }, { text: '宁波' }, { text: '温州' }],
column3: {
浙江: ['杭州', '宁波', '温州', '嘉兴', '湖州'],
- 福建: ['福州', '厦门', '莆田', '三明', '泉州']
+ 福建: ['福州', '厦门', '莆田', '三明', '泉州'],
},
- toastContent: (value, index) => `当前值:${value}, 当前索引:${index}`
+ toastContent: (value, index) => `当前值:${value}, 当前索引:${index}`,
},
'en-US': {
city: 'City',
@@ -82,20 +82,20 @@ export default {
column2: [
{ text: 'Delaware', disabled: true },
{ text: 'Florida' },
- { text: 'Georqia' }
+ { text: 'Georqia' },
],
column3: {
Group1: ['Delaware', 'Florida', 'Georqia', 'Indiana', 'Maine'],
- Group2: ['Alabama', 'Kansas', 'Louisiana', 'Texas']
+ Group2: ['Alabama', 'Kansas', 'Louisiana', 'Texas'],
},
- toastContent: (value, index) => `Value: ${value}, Index:${index}`
- }
+ toastContent: (value, index) => `Value: ${value}, Index:${index}`,
+ },
},
data() {
return {
showPicker: false,
- fieldValue: ''
+ fieldValue: '',
};
},
@@ -105,15 +105,15 @@ export default {
return [
{
values: Object.keys(column),
- className: 'column1'
+ className: 'column1',
},
{
values: column[Object.keys(column)[0]],
className: 'column2',
- defaultIndex: 2
- }
+ defaultIndex: 2,
+ },
];
- }
+ },
},
methods: {
@@ -144,7 +144,7 @@ export default {
onCancel2() {
this.showPicker = false;
- }
- }
+ },
+ },
};
diff --git a/src/picker/index.js b/src/picker/index.js
index 363004bea..2391cae58 100644
--- a/src/picker/index.js
+++ b/src/picker/index.js
@@ -13,36 +13,36 @@ export default createComponent({
...pickerProps,
defaultIndex: {
type: Number,
- default: 0
+ default: 0,
},
columns: {
type: Array,
- default: () => []
+ default: () => [],
},
toolbarPosition: {
type: String,
- default: 'top'
+ default: 'top',
},
valueKey: {
type: String,
- default: 'text'
- }
+ default: 'text',
+ },
},
data() {
return {
- children: []
+ children: [],
};
},
computed: {
simple() {
return this.columns.length && !this.columns[0].values;
- }
+ },
},
watch: {
- columns: 'setColumns'
+ columns: 'setColumns',
},
methods: {
@@ -194,7 +194,7 @@ export default createComponent({
onClick={this.confirm}
>
{this.confirmButtonText || t('confirm')}
-
+ ,
]}
);
@@ -219,7 +219,7 @@ export default createComponent({
}}
/>
));
- }
+ },
},
render(h) {
@@ -227,15 +227,15 @@ export default createComponent({
const wrapHeight = itemHeight * this.visibleItemCount;
const frameStyle = {
- height: `${itemHeight}px`
+ height: `${itemHeight}px`,
};
const columnsStyle = {
- height: `${wrapHeight}px`
+ height: `${wrapHeight}px`,
};
const maskStyle = {
- backgroundSize: `100% ${(wrapHeight - itemHeight) / 2}px`
+ backgroundSize: `100% ${(wrapHeight - itemHeight) / 2}px`,
};
return (
@@ -259,5 +259,5 @@ export default createComponent({
{this.toolbarPosition === 'bottom' ? this.genToolbar() : h()}
);
- }
+ },
});
diff --git a/src/picker/shared.ts b/src/picker/shared.ts
index 9583eba7b..85bc0c25b 100644
--- a/src/picker/shared.ts
+++ b/src/picker/shared.ts
@@ -16,18 +16,18 @@ export const pickerProps = {
confirmButtonText: String,
allowHtml: {
type: Boolean,
- default: true
+ default: true,
},
visibleItemCount: {
type: Number,
- default: 5
+ default: 5,
},
itemHeight: {
type: Number,
- default: 44
+ default: 44,
},
swipeDuration: {
type: Number,
- default: 1000
- }
+ default: 1000,
+ },
};
diff --git a/src/picker/test/index.spec.js b/src/picker/test/index.spec.js
index 86036ba37..049dd68d4 100644
--- a/src/picker/test/index.spec.js
+++ b/src/picker/test/index.spec.js
@@ -6,20 +6,20 @@ const simpleColumn = ['1990', '1991', '1992', '1993', '1994', '1995'];
const columns = [
{
values: ['vip', 'normal'],
- className: 'column1'
+ className: 'column1',
},
{
values: simpleColumn,
- className: 'column2'
- }
+ className: 'column2',
+ },
];
test('simple columns confirm & cancel event', () => {
const wrapper = mount(Picker, {
propsData: {
showToolbar: true,
- columns: simpleColumn
- }
+ columns: simpleColumn,
+ },
});
wrapper.find('.van-picker__confirm').trigger('click');
@@ -32,8 +32,8 @@ test('simple columns confirm & cancel event', () => {
test('multiple columns confirm & cancel event', () => {
const wrapper = mount(Picker, {
propsData: {
- showToolbar: true
- }
+ showToolbar: true,
+ },
});
wrapper.find('.van-picker__confirm').trigger('click');
@@ -45,8 +45,8 @@ test('multiple columns confirm & cancel event', () => {
test('set picker values', () => {
const wrapper = mount(Picker, {
propsData: {
- columns
- }
+ columns,
+ },
});
const { vm } = wrapper;
@@ -83,8 +83,8 @@ test('set picker values', () => {
test('drag columns', () => {
const wrapper = mount(Picker, {
propsData: {
- columns
- }
+ columns,
+ },
});
triggerDrag(wrapper.find('.van-picker-column'), 0, -100);
@@ -98,8 +98,8 @@ test('drag columns', () => {
test('drag simple columns', () => {
const wrapper = mount(Picker, {
propsData: {
- columns: simpleColumn
- }
+ columns: simpleColumn,
+ },
});
triggerDrag(wrapper.find('.van-picker-column'), 0, -100);
@@ -117,8 +117,8 @@ test('column watch default index', async () => {
initialOptions: [disabled, ...simpleColumn],
valueKey: 'text',
itemHeight: 50,
- visibleItemCount: 5
- }
+ visibleItemCount: 5,
+ },
});
await later();
@@ -136,8 +136,8 @@ test('render title slot', () => {
`,
components: {
- Picker
- }
+ Picker,
+ },
});
expect(wrapper).toMatchSnapshot();
@@ -152,14 +152,14 @@ test('simulation finger swipe again before transitionend', () => {
return {
...style,
- transform: 'matrix(1, 0, 0, 1, 0, -5)'
+ transform: 'matrix(1, 0, 0, 1, 0, -5)',
};
};
const wrapper = mount(Picker, {
propsData: {
- columns: simpleColumn
- }
+ columns: simpleColumn,
+ },
});
triggerDrag(wrapper.find('.van-picker-column'), 0, -5);
@@ -173,12 +173,12 @@ test('click column\'s item', () => {
{ text: '杭州' },
{ text: '宁波' },
{ text: '温州', disabled: true },
- { text: '嘉兴', disabled: true }
+ { text: '嘉兴', disabled: true },
];
const wrapper = mount(Picker, {
propsData: {
- columns
- }
+ columns,
+ },
});
wrapper.findAll('.van-picker-column__item').at(3).trigger('click');
@@ -189,8 +189,8 @@ test('toolbar-position prop', () => {
const wrapper = mount(Picker, {
propsData: {
showToolbar: true,
- toolbarPosition: 'bottom'
- }
+ toolbarPosition: 'bottom',
+ },
});
expect(wrapper).toMatchSnapshot();
@@ -200,8 +200,8 @@ test('not allow html', () => {
const wrapper = mount(Picker, {
propsData: {
allowHtml: false,
- columns: ['option
']
- }
+ columns: ['option
'],
+ },
});
expect(wrapper).toMatchSnapshot();
@@ -210,12 +210,12 @@ test('not allow html', () => {
test('columns-top、columns-bottom prop', () => {
const wrapper = mount(Picker, {
propsData: {
- showToolbar: true
+ showToolbar: true,
},
scopedSlots: {
'columns-top': () => 'Custom Columns Top',
'columns-bottom': () => 'Custom Columns Bottom',
- }
+ },
});
expect(wrapper).toMatchSnapshot();
diff --git a/src/popup/demo/index.vue b/src/popup/demo/index.vue
index 04bf94719..0feb28090 100644
--- a/src/popup/demo/index.vue
+++ b/src/popup/demo/index.vue
@@ -65,7 +65,7 @@ export default {
roundCorner: '圆角弹窗',
closeIcon: '关闭图标',
customCloseIcon: '自定义图标',
- customIconPosition: '图标位置'
+ customIconPosition: '图标位置',
},
'en-US': {
position: 'Position',
@@ -78,8 +78,8 @@ export default {
roundCorner: 'Round Corner',
closeIcon: 'Close Icon',
customCloseIcon: 'Custom Icon',
- customIconPosition: 'Icon Position'
- }
+ customIconPosition: 'Icon Position',
+ },
},
data() {
@@ -93,9 +93,9 @@ export default {
showRoundCorner: false,
showGetContainer: false,
showCustomCloseIcon: false,
- showCustomIconPosition: false
+ showCustomIconPosition: false,
};
- }
+ },
};
diff --git a/src/popup/index.js b/src/popup/index.js
index 270cc6adc..1354923ac 100644
--- a/src/popup/index.js
+++ b/src/popup/index.js
@@ -15,24 +15,24 @@ export default createComponent({
safeAreaInsetBottom: Boolean,
closeIcon: {
type: String,
- default: 'cross'
+ default: 'cross',
},
closeIconPosition: {
type: String,
- default: 'top-right'
+ default: 'top-right',
},
position: {
type: String,
- default: 'center'
+ default: 'center',
},
overlay: {
type: Boolean,
- default: true
+ default: true,
},
closeOnClickOverlay: {
type: Boolean,
- default: true
- }
+ default: true,
+ },
},
beforeCreate() {
@@ -71,7 +71,7 @@ export default createComponent({
class={bem({
round,
[position]: position,
- 'safe-area-inset-bottom': this.safeAreaInsetBottom
+ 'safe-area-inset-bottom': this.safeAreaInsetBottom,
})}
onClick={this.onClick}
>
@@ -88,5 +88,5 @@ export default createComponent({
);
- }
+ },
});
diff --git a/src/popup/test/index.spec.js b/src/popup/test/index.spec.js
index 14db2aad9..bd10a0eef 100644
--- a/src/popup/test/index.spec.js
+++ b/src/popup/test/index.spec.js
@@ -18,8 +18,8 @@ test('reset z-index', () => {
propsData: {
value: true,
zIndex: 10,
- lockScroll: false
- }
+ lockScroll: false,
+ },
});
expect(wrapper).toMatchSnapshot();
@@ -28,8 +28,8 @@ test('reset z-index', () => {
test('popup lock scroll', () => {
const wrapper1 = mount(Popup, {
propsData: {
- value: true
- }
+ value: true,
+ },
});
expect(document.body.classList.contains('van-overflow-hidden')).toBeTruthy();
triggerDrag(document, 0, 100);
@@ -37,8 +37,8 @@ test('popup lock scroll', () => {
const wrapper2 = mount(Popup, {
propsData: {
- value: true
- }
+ value: true,
+ },
});
wrapper1.vm.$destroy();
expect(document.body.classList.contains('van-overflow-hidden')).toBeTruthy();
@@ -57,13 +57,13 @@ test('get container with parent', () => {
`,
components: {
- Popup
+ Popup,
},
data() {
return {
- getContainer: () => div1
+ getContainer: () => div1,
};
- }
+ },
});
const popup = wrapper.find('.van-popup').element;
@@ -83,8 +83,8 @@ test('get container with selector', () => {
`,
components: {
- Popup
- }
+ Popup,
+ },
});
const dom1 = document.querySelector('.get-container-selector-1');
@@ -103,13 +103,13 @@ test('render overlay', async () => {
`,
components: {
- Popup
+ Popup,
},
data() {
return {
- getContainer: () => div
+ getContainer: () => div,
};
- }
+ },
});
await later();
@@ -126,15 +126,15 @@ test('watch overlay prop', async () => {
`,
components: {
- Popup
+ Popup,
},
data() {
return {
show: false,
overlay: false,
- getContainer: () => div
+ getContainer: () => div,
};
- }
+ },
});
await later();
@@ -164,17 +164,17 @@ test('close on click overlay', async () => {
`,
components: {
- Popup
+ Popup,
},
data() {
return {
value: true,
- getContainer: () => div
+ getContainer: () => div,
};
},
methods: {
- onClickOverlay
- }
+ onClickOverlay,
+ },
});
await later();
@@ -198,8 +198,8 @@ test('open & close event', () => {
test('click event', () => {
const wrapper = mount(Popup, {
propsData: {
- value: true
- }
+ value: true,
+ },
});
wrapper.trigger('click');
@@ -210,8 +210,8 @@ test('duration prop', () => {
const wrapper = mount(Popup, {
propsData: {
value: true,
- duration: 0.5
- }
+ duration: 0.5,
+ },
});
expect(wrapper).toMatchSnapshot();
@@ -221,8 +221,8 @@ test('round prop', () => {
const wrapper = mount(Popup, {
propsData: {
value: true,
- round: true
- }
+ round: true,
+ },
});
expect(wrapper).toMatchSnapshot();
@@ -232,8 +232,8 @@ test('closeable prop', () => {
const wrapper = mount(Popup, {
propsData: {
value: true,
- closeable: true
- }
+ closeable: true,
+ },
});
wrapper.find('.van-popup__close-icon').trigger('click');
@@ -245,8 +245,8 @@ test('close-icon prop', () => {
propsData: {
value: true,
closeable: true,
- closeIcon: 'success'
- }
+ closeIcon: 'success',
+ },
});
expect(wrapper).toMatchSnapshot();
diff --git a/src/progress/demo/index.vue b/src/progress/demo/index.vue
index b8a092f68..04a3c4183 100644
--- a/src/progress/demo/index.vue
+++ b/src/progress/demo/index.vue
@@ -31,14 +31,14 @@ export default {
'zh-CN': {
title2: '置灰',
title3: '样式定制',
- strokeWidth: '线条粗细'
+ strokeWidth: '线条粗细',
},
'en-US': {
title2: 'Inactive',
title3: 'Custom Style',
- strokeWidth: 'Stroke Width'
- }
- }
+ strokeWidth: 'Stroke Width',
+ },
+ },
};
diff --git a/src/progress/index.js b/src/progress/index.js
index 5e1cd1618..cafbb5d1e 100644
--- a/src/progress/index.js
+++ b/src/progress/index.js
@@ -14,18 +14,18 @@ export default createComponent({
percentage: {
type: Number,
required: true,
- validator: value => value >= 0 && value <= 100
+ validator: value => value >= 0 && value <= 100,
},
showPivot: {
type: Boolean,
- default: true
- }
+ default: true,
+ },
},
data() {
return {
pivotWidth: 0,
- progressWidth: 0
+ progressWidth: 0,
};
},
@@ -35,7 +35,7 @@ export default createComponent({
watch: {
showPivot: 'setWidth',
- pivotText: 'setWidth'
+ pivotText: 'setWidth',
},
methods: {
@@ -44,7 +44,7 @@ export default createComponent({
this.progressWidth = this.$el.offsetWidth;
this.pivotWidth = this.$refs.pivot ? this.$refs.pivot.offsetWidth : 0;
});
- }
+ },
},
render() {
@@ -56,17 +56,17 @@ export default createComponent({
const pivotStyle = {
color: this.textColor,
left: `${((this.progressWidth - this.pivotWidth) * percentage) / 100}px`,
- background: this.pivotColor || background
+ background: this.pivotColor || background,
};
const portionStyle = {
background,
- width: (this.progressWidth * percentage) / 100 + 'px'
+ width: (this.progressWidth * percentage) / 100 + 'px',
};
const wrapperStyle = {
background: this.trackColor,
- height: addUnit(this.strokeWidth)
+ height: addUnit(this.strokeWidth),
};
return (
@@ -80,5 +80,5 @@ export default createComponent({
);
- }
+ },
});
diff --git a/src/progress/test/index.spec.js b/src/progress/test/index.spec.js
index c2b5b6c86..252abf346 100644
--- a/src/progress/test/index.spec.js
+++ b/src/progress/test/index.spec.js
@@ -5,8 +5,8 @@ test('calc width', async () => {
const wrapper = mount(Progress, {
propsData: {
showPivot: false,
- percentage: 100
- }
+ percentage: 100,
+ },
});
await later();
expect(wrapper).toMatchSnapshot();
@@ -20,8 +20,8 @@ test('calc width', async () => {
test('track color prop', async () => {
const wrapper = mount(Progress, {
propsData: {
- trackColor: 'green'
- }
+ trackColor: 'green',
+ },
});
expect(wrapper.element.style.background).toEqual('green');
diff --git a/src/pull-refresh/demo/index.vue b/src/pull-refresh/demo/index.vue
index 5a1f2dccc..fbb1a50fc 100644
--- a/src/pull-refresh/demo/index.vue
+++ b/src/pull-refresh/demo/index.vue
@@ -30,13 +30,13 @@
:style="{
transform: `scale(${distance / 80})`
}"
- >
+ />