Blame view

types/dropdown.d.ts 2.35 KB
1011bd41   yangdan8   1.update all d.ts...
1
  // Type definitions for iview 3.3.1
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 Dropdown 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
    /**
     * 触发方式,可选值为 hover(悬停)click(点击)contextMenu(右键)custom(自定义),使用 custom 时,需配合 visible 一起使用
     * @default hover
     */
    trigger?: 'hover'|'click'|'custom'|'contextMenu';
    /**
     * 手动控制下拉框的显示,在 trigger = 'custom' 时使用
     * @default false
     */
    visible?: boolean;
    /**
     * 下拉菜单出现的位置,可选值为
     * top,top-start,top-end,bottom,bottom-start,bottom-end,
     * left,left-start,left-end,right,right-start,right-end
     * 2.12.0 版本开始支持自动识别
     * @default bottom
     */
    placement?: 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end' | 'right' | 'right-start' | 'right-end';
    /**
     * 是否将弹层放置于 body 内,在 Tabs、带有 fixed 的 Table 列内使用时,建议添加此属性,它将不受父级样式影响,从而达到更好的效果
     * @default false
     */
    transfer?: boolean;
    /**
6d845889   yang   更新d.ts file到3.3.0版本
32
33
34
35
     * 开启 transfer 时,给浮层添加额外的 class 名称
     */
    'transfer-class-name'?: string;
    /**
6e16a96e   yangd   d.ts升级到对应的iview 3...
36
37
38
39
40
     * 是否开启 stop-propagation
     * @default false
     */
    'stop-propagation'?: boolean;
    /**
454cdd17   yangd   完成新版本3.0.0的iview全...
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
     * 点击菜单项时触发
     * 
     */
    $emit(eventName: 'on-click', value: string): this;
    /**
     * 菜单显示状态改变时调用
     */
    $emit(eventName: 'on-visible-change', value: boolean): this;
    /**
     * 点击外部关闭下拉菜单时触发
     */
    $emit(eventName: 'on-clickoutside', event: object): this;
    /**
     * slot插槽对象
     */
    $slots: {
      /**
       * 主体内容
       */
      '': VNode[];
      /**
       * 列表内容,一般由 DropdownMenu 承担
       */
      list: VNode[];
    };
  }
  
4a2af4f5   yangd   1.将class定义方式修改为in...
68
  export declare interface DropdownMenu extends Vue {
6d9afa9c   yangd   修改d.ts中的类名,并添加全局方...
69
70
  }
  
4a2af4f5   yangd   1.将class定义方式修改为in...
71
  export declare interface DropdownItem extends Vue {
454cdd17   yangd   完成新版本3.0.0的iview全...
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
    /**
     * 用来标识这一项
     */
    name?: string;
    /**
     * 禁用该项
     * @default false
     */
    disabled?: boolean;
    /**
     * 显示分割线
     * @default false
     */
    divided?: boolean;
    /**
     * 标记该项为选中状态
     * @default false
     */
    selected?: boolean;
  }