更新d.ts file到3.3.0版本

This commit is contained in:
yang 2019-03-12 11:30:07 +08:00
parent 33b3672e00
commit 6d84588919
60 changed files with 139 additions and 66 deletions

18
types/table.d.ts vendored
View file

@ -1,4 +1,4 @@
// Type definitions for iview 3.1.0
// Type definitions for iview 3.3.0
// Project: https://github.com/iview/iview
// Definitions by: yangdan
// Definitions: https://github.com/yangdan8/iview.git
@ -75,6 +75,16 @@ export declare interface Table extends Vue {
* @default
*/
"no-filtered-data-text"?: string;
/**
* @on-drag-drop 使
* @default false
*/
"draggable"?: boolean;
/**
* 使 tooltip dark light
* @default dark
*/
"tooltip-theme"?: string;
/**
* highlight-row
* currentRow
@ -154,6 +164,12 @@ export declare interface Table extends Vue {
* status
*/
$emit(eventName: "on-expand", row: object, status: string): this;
/**
*
* index1
* index2
*/
$emit(eventName: "on-drag-drop", index1: number, index2: number): this;
/**
*
*/