[improvement] rewrite with typescript (#604)

This commit is contained in:
neverland 2018-09-21 10:32:25 +08:00 committed by GitHub
parent 6df0d4bade
commit f9fb953422
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
84 changed files with 398 additions and 370 deletions

View File

@ -33,6 +33,9 @@ gulp.task('compile-ts', () =>
gulp
.src([src + '/**/*.ts'])
.pipe(tsProject())
.on('error', (err) => {
console.log(err);
})
.pipe(gulp.dest(dist))
);
gulp.task('compile-json', () => copy('json'));

View File

@ -1,43 +1,39 @@
import { create } from '../common/create';
create({
props: {
show: Boolean,
title: String,
cancelText: String,
zIndex: {
type: Number,
value: 100
import { VantComponent } from '../common/component';
VantComponent({
props: {
show: Boolean,
title: String,
cancelText: String,
zIndex: {
type: Number,
value: 100
},
actions: {
type: Array,
value: []
},
overlay: {
type: Boolean,
value: true
},
closeOnClickOverlay: {
type: Boolean,
value: true
}
},
actions: {
type: Array,
value: []
},
overlay: {
type: Boolean,
value: true
},
closeOnClickOverlay: {
type: Boolean,
value: true
methods: {
onSelect(event) {
const { index } = event.currentTarget.dataset;
const item = this.data.actions[index];
if (item && !item.disabled && !item.loading) {
this.$emit('select', item);
}
},
onCancel() {
this.$emit('cancel');
},
onClose() {
this.$emit('close');
}
}
},
methods: {
onSelect(event) {
const { index } = event.currentTarget.dataset;
const item = this.data.actions[index];
if (item && !item.disabled && !item.loading) {
this.$emit('select', item);
}
},
onCancel() {
this.$emit('cancel');
},
onClose() {
this.$emit('close');
}
}
});

4
dist/area/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
value: {
type: String,

View File

@ -1,60 +1,49 @@
import { create } from '../common/create';
create({
relations: {
'../badge/index': {
type: 'descendant',
linked(target) {
this.data.badges.push(target);
this.setActive();
},
unlinked(target) {
this.data.badges = this.data.badges.filter(item => item !== target);
this.setActive();
}
import { VantComponent } from '../common/component';
VantComponent({
relations: {
'../badge/index': {
type: 'descendant',
linked(target) {
this.data.badges.push(target);
this.setActive();
},
unlinked(target) {
this.data.badges = this.data.badges.filter(item => item !== target);
this.setActive();
}
}
},
props: {
active: {
type: Number,
value: 0,
observer: 'setActive'
}
},
data: {
badges: []
},
beforeCreate() {
this.currentActive = -1;
},
methods: {
setActive(badge) {
let { active } = this.data;
const { badges } = this.data;
if (badge) {
active = badges.indexOf(badge);
}
if (active === this.currentActive) {
return;
}
if (this.currentActive !== -1 && badges[this.currentActive]) {
this.$emit('change', active);
badges[this.currentActive].setActive(false);
}
if (badges[active]) {
badges[active].setActive(true);
this.currentActive = active;
}
}
}
},
props: {
active: {
type: Number,
value: 0,
observer: 'setActive'
}
},
data: {
badges: []
},
created() {
this.currentActive = -1;
},
methods: {
setActive(badge) {
let { active } = this.data;
const { badges } = this.data;
if (badge) {
active = badges.indexOf(badge);
}
if (active === this.currentActive) {
return;
}
if (this.currentActive !== -1 && badges[this.currentActive]) {
this.$emit('change', active);
badges[this.currentActive].setActive(false);
}
if (badges[active]) {
badges[active].setActive(true);
this.currentActive = active;
}
}
}
});

44
dist/badge/index.js vendored
View File

@ -1,27 +1,23 @@
import { create } from '../common/create';
create({
relations: {
'../badge-group/index': {
type: 'ancestor'
}
},
props: {
info: Number,
title: String
},
methods: {
onClick() {
const group = this.getRelationNodes('../badge-group/index')[0];
if (group) {
group.setActive(this);
}
import { VantComponent } from '../common/component';
VantComponent({
relations: {
'../badge-group/index': {
type: 'ancestor'
}
},
setActive(active) {
this.setData({ active });
props: {
info: Number,
title: String
},
methods: {
onClick() {
const group = this.getRelationNodes('../badge-group/index')[0];
if (group) {
group.setActive(this);
}
},
setActive(active) {
this.setData({ active });
}
}
}
});

View File

@ -1,7 +1,7 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
import { button } from '../mixins/button';
create({
VantComponent({
mixins: [button],
props: {

4
dist/card/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
classes: [
'thumb-class',
'title-class',

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
border: {
type: Boolean,

4
dist/cell/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
classes: [
'title-class',
'label-class',

4
dist/col/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
relations: {
'../row/index': {
type: 'ancestor'

48
dist/common/component.js vendored Normal file
View File

@ -0,0 +1,48 @@
import { basic } from '../mixins/basic';
import { observe } from '../mixins/observer/index';
function VantComponent(sfc) {
const options = {};
// map props to properties
if (sfc.props) {
options.properties = sfc.props;
}
// map mixins to behaviors
if (sfc.mixins) {
options.behaviors = sfc.mixins;
}
// copy methods
if (sfc.methods) {
options.methods = sfc.methods;
}
if (sfc.beforeCreate) {
options.created = sfc.beforeCreate;
}
if (sfc.created) {
options.attached = sfc.created;
}
if (sfc.mounted) {
options.ready = sfc.mounted;
}
if (sfc.destroyed) {
options.detached = sfc.destroyed;
}
// map classes to externalClasses
options.externalClasses = sfc.classes || [];
// add default externalClasses
options.externalClasses.push('custom-class');
// add default behaviors
options.behaviors = sfc.mixins || [];
options.behaviors.push(basic);
// add default options
options.options = {
multipleSlots: true,
addGlobalClass: true
};
// map field to form-field behavior
if (sfc.field) {
options.behaviors.push('wx://form-field');
}
observe(sfc, options);
Component(options);
}
export { VantComponent };

40
dist/common/create.js vendored
View File

@ -1,40 +0,0 @@
import { basic } from '../mixins/basic';
import { observe } from '../mixins/observer/index';
export function create(sfc) {
// map props to properties
if (sfc.props) {
sfc.properties = sfc.props;
delete sfc.props;
}
// map mixins to behaviors
if (sfc.mixins) {
sfc.behaviors = sfc.mixins;
delete sfc.mixins;
}
// map classes to externalClasses
sfc.externalClasses = sfc.classes || [];
delete sfc.classes;
// add default externalClasses
sfc.externalClasses.push('custom-class');
// add default behaviors
sfc.behaviors = sfc.behaviors || [];
sfc.behaviors.push(basic);
// add default options
sfc.options = sfc.options || {};
sfc.options.multipleSlots = true;
sfc.options.addGlobalClass = true;
// map field to form-field behavior
if (sfc.field) {
sfc.behaviors.push('wx://form-field');
}
observe(sfc);
Component(sfc);
};

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
title: String,
message: String,

4
dist/field/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
field: true,
classes: ['input-class'],

4
dist/icon/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
info: null,
name: String,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
size: {
type: String,

View File

@ -1,14 +1,14 @@
import { behavior } from './behavior';
import { observeProps } from './props';
export function observe(sfc) {
export function observe(sfc, options) {
if (sfc.computed) {
sfc.behaviors.push(behavior);
sfc.methods = sfc.methods || {};
sfc.methods.$options = () => sfc;
options.behaviors.push(behavior);
options.methods = options.methods || {};
options.methods.$options = () => sfc;
if (sfc.properties) {
observeProps(sfc.properties);
if (options.properties) {
observeProps(options.properties);
}
}
}

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
classes: ['title-class'],
props: {

View File

@ -1,9 +1,9 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
const FONT_COLOR = '#f60';
const BG_COLOR = '#fff7cc';
create({
VantComponent({
props: {
text: {
type: String,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
text: String,
color: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
show: Boolean,
mask: Boolean,
@ -14,6 +14,9 @@ create({
methods: {
onClick() {
this.$emit('click');
}
},
// for prevent touchmove
noop() {}
}
});

View File

@ -3,5 +3,5 @@
custom-class="van-overlay"
custom-style="z-index: {{ zIndex }}; {{ mask ? 'background-color: rgba(0, 0, 0, .7);' : '' }}; {{ customStyle }}"
bind:tap="onClick"
catch:touchmove
catch:touchmove="noop"
/>

4
dist/panel/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
classes: ['footer-class'],
props: {

4
dist/popup/index.js vendored
View File

@ -1,7 +1,7 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
import { transition } from '../mixins/transition';
create({
VantComponent({
mixins: [transition(false)],
props: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
inactive: {
type: Boolean,

4
dist/row/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
relations: {
'../col/index': {
type: 'descendant',

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
field: true,
classes: ['cancel-class'],

View File

@ -1,7 +1,7 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
import { touch } from '../mixins/touch';
create({
VantComponent({
mixins: [touch],
props: {

View File

@ -1,10 +1,10 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
// 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
const MAX = 2147483647;
create({
VantComponent({
field: true,
classes: [

4
dist/steps/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
icon: String,
steps: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
classes: [
'price-class',
'button-class'

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
field: true,
props: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
field: true,
classes: ['node-class'],

4
dist/tab/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
disabled: {
type: Boolean,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
info: null,
icon: String,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
active: {
type: Number,

4
dist/tabs/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
relations: {
'../tab/index': {
type: 'descendant',

4
dist/tag/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
type: String,
mark: Boolean,

9
dist/toast/index.js vendored
View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
show: Boolean,
mask: Boolean,
@ -29,6 +29,9 @@ create({
this.setData({
show: false
});
}
},
// for prevent touchmove
noop() {}
}
});

View File

@ -10,7 +10,7 @@
>
<view
class="van-toast van-toast--{{ type === 'text' ? 'text' : 'icon' }} van-toast--{{ position }}"
catch:touchmove
catch:touchmove="noop"
>
<!-- text only -->
<view wx:if="{{ type === 'text' }}">{{ message }}</view>

View File

@ -1,7 +1,7 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
import { transition } from '../mixins/transition';
create({
VantComponent({
mixins: [transition(true)],
props: {

View File

@ -1,8 +1,8 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
const ITEM_HEIGHT = 44;
create({
VantComponent({
props: {
items: {
type: Array,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
show: Boolean,
title: String,
@ -24,7 +24,7 @@ create({
},
methods: {
onSelect(event) {
onSelect(event: Weapp.Event) {
const { index } = event.currentTarget.dataset;
const item = this.data.actions[index];
if (item && !item.disabled && !item.loading) {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
value: {
type: String,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
relations: {
'../badge/index': {
type: 'descendant',
@ -29,7 +29,7 @@ create({
badges: []
},
created() {
beforeCreate() {
this.currentActive = -1;
},

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
relations: {
'../badge-group/index': {
type: 'ancestor'

View File

@ -1,7 +1,7 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
import { button } from '../mixins/button';
create({
VantComponent({
mixins: [button],
props: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
classes: [
'thumb-class',
'title-class',

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
border: {
type: Boolean,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
classes: [
'title-class',
'label-class',

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
relations: {
'../row/index': {
type: 'ancestor'

View File

@ -0,0 +1,74 @@
import { basic } from '../mixins/basic';
import { observe } from '../mixins/observer/index';
import {
VantComponentOptions,
CombinedComponentInstance
} from '../../types/index';
function VantComponent<Props, Data, Methods>(
sfc: VantComponentOptions<
Props,
Data,
Methods,
CombinedComponentInstance<Props, Data, Methods>
>
): void {
const options: any = {};
// map props to properties
if (sfc.props) {
options.properties = sfc.props;
}
// map mixins to behaviors
if (sfc.mixins) {
options.behaviors = sfc.mixins;
}
// copy methods
if (sfc.methods) {
options.methods = sfc.methods;
}
if (sfc.beforeCreate) {
options.created = sfc.beforeCreate;
}
if (sfc.created) {
options.attached = sfc.created;
}
if (sfc.mounted) {
options.ready = sfc.mounted;
}
if (sfc.destroyed) {
options.detached = sfc.destroyed;
}
// map classes to externalClasses
options.externalClasses = sfc.classes || [];
// add default externalClasses
options.externalClasses.push('custom-class');
// add default behaviors
options.behaviors = sfc.mixins || [];
options.behaviors.push(basic);
// add default options
options.options = {
multipleSlots: true,
addGlobalClass: true
};
// map field to form-field behavior
if (sfc.field) {
options.behaviors.push('wx://form-field');
}
observe(sfc, options);
Component(options);
}
export { VantComponent };

View File

@ -1,40 +0,0 @@
import { basic } from '../mixins/basic';
import { observe } from '../mixins/observer/index';
export function create(sfc) {
// map props to properties
if (sfc.props) {
sfc.properties = sfc.props;
delete sfc.props;
}
// map mixins to behaviors
if (sfc.mixins) {
sfc.behaviors = sfc.mixins;
delete sfc.mixins;
}
// map classes to externalClasses
sfc.externalClasses = sfc.classes || [];
delete sfc.classes;
// add default externalClasses
sfc.externalClasses.push('custom-class');
// add default behaviors
sfc.behaviors = sfc.behaviors || [];
sfc.behaviors.push(basic);
// add default options
sfc.options = sfc.options || {};
sfc.options.multipleSlots = true;
sfc.options.addGlobalClass = true;
// map field to form-field behavior
if (sfc.field) {
sfc.behaviors.push('wx://form-field');
}
observe(sfc);
Component(sfc);
};

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
title: String,
message: String,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
field: true,
classes: ['input-class'],

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
info: null,
name: String,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
size: {
type: String,

View File

@ -1,14 +1,14 @@
import { behavior } from './behavior';
import { observeProps } from './props';
export function observe(sfc) {
export function observe(sfc, options) {
if (sfc.computed) {
sfc.behaviors.push(behavior);
sfc.methods = sfc.methods || {};
sfc.methods.$options = () => sfc;
options.behaviors.push(behavior);
options.methods = options.methods || {};
options.methods.$options = () => sfc;
if (sfc.properties) {
observeProps(sfc.properties);
if (options.properties) {
observeProps(options.properties);
}
}
}

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
classes: ['title-class'],
props: {

View File

@ -1,9 +1,9 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
const FONT_COLOR = '#f60';
const BG_COLOR = '#fff7cc';
create({
VantComponent({
props: {
text: {
type: String,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
text: String,
color: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
show: Boolean,
mask: Boolean,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
classes: ['footer-class'],
props: {

View File

@ -1,7 +1,7 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
import { transition } from '../mixins/transition';
create({
VantComponent({
mixins: [transition(false)],
props: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
inactive: {
type: Boolean,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
relations: {
'../col/index': {
type: 'descendant',

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
field: true,
classes: ['cancel-class'],

View File

@ -1,7 +1,7 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
import { touch } from '../mixins/touch';
create({
VantComponent({
mixins: [touch],
props: {

View File

@ -1,10 +1,10 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
// 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
const MAX = 2147483647;
create({
VantComponent({
field: true,
classes: [

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
icon: String,
steps: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
classes: [
'price-class',
'button-class'

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
field: true,
props: {

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
field: true,
classes: ['node-class'],

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
disabled: {
type: Boolean,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
info: null,
icon: String,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
active: {
type: Number,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
relations: {
'../tab/index': {
type: 'descendant',

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
type: String,
mark: Boolean,

View File

@ -1,6 +1,6 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
create({
VantComponent({
props: {
show: Boolean,
mask: Boolean,

View File

@ -1,7 +1,7 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
import { transition } from '../mixins/transition';
create({
VantComponent({
mixins: [transition(true)],
props: {

View File

@ -1,8 +1,8 @@
import { create } from '../common/create';
import { VantComponent } from '../common/component';
const ITEM_HEIGHT = 44;
create({
VantComponent({
props: {
items: {
type: Array,

View File

@ -1,8 +1,7 @@
{
"compilerOptions": {
"baseUrl": ".",
"module": "commonjs",
"removeComments": true,
"target": "es6",
"noImplicitThis": true,
"noImplicitUseStrict": true
},

13
types/index.d.ts vendored
View File

@ -1,10 +1,11 @@
/// <reference path="./weapp.d.ts" />
import { Vue } from './vue';
import { Weapp } from './weapp';
type Mixins = any[];
type ExternalClasses = string[];
type LooseObject = {
[key: string]: any;
};
type Mixins = any[];
type Relations<Instance> = {
[key: string]: {
type: string;
@ -12,13 +13,13 @@ type Relations<Instance> = {
unlinked?: (this: Instance, target?: any) => void;
}
};
type ExternalClasses = string[];
type RecordProps<T> = {
[K in keyof T]: any
}
export type CombinedComponentInstance<Props, Data, Methods> = Vue &
LooseObject &
Weapp.Component & { data: Data & Props } & Methods;
Weapp.Component & { data: Data & RecordProps<Props> } & Methods;
export type VantComponentOptions<Props, Data, Methods, Instance> = {
data?: Data;

4
types/weapp.d.ts vendored
View File

@ -36,7 +36,3 @@ declare namespace Weapp {
detail: any;
}
}
export {
Weapp
};