Blame view

types/grid.d.ts 2.05 KB
6d845889   yang   更新d.ts file到3.3.0版本
1
  // Type definitions for iview 3.3.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 Row 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
    /**
     * 栅格间距,单位 px,左右平分
     * @default 0
     */
    gutter?: number;
    /**
     * 布局模式,可选值为flex或不选,在现代浏览器下有效
     */
    type?: string;
    /**
     * lex 布局下的垂直对齐方式,可选值为top、middle、bottom
     */
    align?: 'top'|'middle'|'bottom';
    /**
     * flex 布局下的水平排列方式,可选值为start、end、center、space-around、space-between
     */
    justify?: 'start'|'end'|'center'|'space-around'|'space-between';
    /**
     * 自定义的class名称
     */
    'class-name'?: string;
  }
  
4a2af4f5   yangd   1.将class定义方式修改为in...
31
  export declare interface Col extends Vue {
454cdd17   yangd   完成新版本3.0.0的iview全...
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
    /**
     * 栅格的占位格数,可选值为0~24的整数,为 0 时,相当于display:none
     */
    span?: number | string;
    /**
     * 栅格的顺序,在flex布局模式下有效
     */
    order?: number | string;
    /**
     * 栅格左侧的间隔格数,间隔内不可以有栅格
     */
    offset?: number | string;
    /**
     * 栅格向右移动格数
     */
    push?: number | string;
    /**
     * 栅格向左移动格数
     */
    pull?: number | string;
    /**
     * 自定义的class名称
     */
    'class-name'?: string;
    /**
f5656d0b   Eric Tian   修复Grid栅格组件Col属性xl...
57
     * <576px 响应式栅格,可为栅格数或一个包含其他属性的对象
454cdd17   yangd   完成新版本3.0.0的iview全...
58
59
60
     */
    xs?: number | object;
    /**
f5656d0b   Eric Tian   修复Grid栅格组件Col属性xl...
61
     * ≥576px 响应式栅格,可为栅格数或一个包含其他属性的对象
454cdd17   yangd   完成新版本3.0.0的iview全...
62
63
64
     */
    sm?: number | object;
    /**
f5656d0b   Eric Tian   修复Grid栅格组件Col属性xl...
65
     * ≥768px 响应式栅格,可为栅格数或一个包含其他属性的对象
454cdd17   yangd   完成新版本3.0.0的iview全...
66
67
68
     */
    md?: number | object;
    /**
f5656d0b   Eric Tian   修复Grid栅格组件Col属性xl...
69
     * ≥992px 响应式栅格,可为栅格数或一个包含其他属性的对象
454cdd17   yangd   完成新版本3.0.0的iview全...
70
71
     */
    lg?: number | object;
f5656d0b   Eric Tian   修复Grid栅格组件Col属性xl...
72
73
74
75
76
77
78
79
80
    /**
     * ≥1200px 响应式栅格,可为栅格数或一个包含其他属性的对象
     */
    xl?: number | object;
    /**
     * ≥1600px 响应式栅格,可为栅格数或一个包含其他属性的对象
     */
    xxl?: number | object;
  }