Blame view

types/checkbox.d.ts 1.88 KB
b1b1ea63   yangd   更新d.ts到3.1.0,修复d....
1
  // Type definitions for iview 3.1.0
454cdd17   yangd   完成新版本3.0.0的iview全...
2
3
4
  // Project: https://github.com/iview/iview
  // Definitions by: yangdan
  // Definitions: https://github.com/yangdan8/iview.git
4a2af4f5   yangd   1.将class定义方式修改为in...
5
  import Vue, { VNode } from 'vue';
454cdd17   yangd   完成新版本3.0.0的iview全...
6
  
4a2af4f5   yangd   1.将class定义方式修改为in...
7
  export declare interface Checkbox extends Vue {
454cdd17   yangd   完成新版本3.0.0的iview全...
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
    /**
     * 只在单独使用时有效。可以使用 v-model 双向绑定数据
     * @default false
     */
    value?: boolean;
    /**
     * 只在组合使用时有效。指定当前选项的 value 值,组合会自动判断是否选中
     */
    label?: string | number | boolean;
    /**
     * 是否禁用当前项
     * @default false
     */
    disabled?: boolean;
    /**
     * 设置 indeterminate 状态,只负责样式控制
     * @default false
     */
    indeterminate?: boolean;
    /**
     * 多选框的尺寸,可选值为 large、small、default 或者不设置
     */
    size?: '' | 'large' | 'small' | 'default';
    /**
     * 选中时的值,当使用类似 1 和 0 来判断是否选中时会很有用
     * @default true
     */
    'true-value'?: string | number | boolean;
    /**
     * 没有选中时的值,当使用类似 1 和 0 来判断是否选中时会很有用
     * @default false
     */
    'false-value'?: string | number | boolean;
    /**
     * 只在单独使用时有效。在选项状态发生改变时触发,通过修改外部的数据改变时不会触发
     */
    $emit(eventName: 'on-change', value: boolean): this;
  }
  
4a2af4f5   yangd   1.将class定义方式修改为in...
47
  export declare interface CheckboxGroup extends Vue {
454cdd17   yangd   完成新版本3.0.0的iview全...
48
49
50
51
52
53
54
55
56
57
58
59
60
61
    /**
     * 指定选中项目的集合,可以使用 v-model 双向绑定数据
     * @default []
     */
    value?: string[] | number[] | boolean[];
    /**
     * 多选框组的尺寸,可选值为 large、small、default 或者不设置
     */
    size?: '' | 'large' | 'small' | 'default';
    /**
     * 在选项状态发生改变时触发,返回已选中的数组。通过修改外部的数据改变时不会触发
     */
    $emit(eventName: 'on-change', values: Array<string | number | boolean>): this;
  }