-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathattributes.json
66 lines (66 loc) · 2.2 KB
/
attributes.json
1
2
3
4
5
6
7
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"gridjs-vue/autoWidth": {
"type": "boolean",
"description": "Boolean to automatically set table width. Default: true"
},
"gridjs-vue/classNames": {
"type": "object",
"description": "Object containing CSS class definitions. Default: undefined"
},
"gridjs-vue/columns": {
"type": "array",
"description": "Array containing strings of column headers. Default: undefined"
},
"gridjs-vue/fixedHeader": {
"type": "boolean",
"description": "Boolean to fix position of table header. Default: false"
},
"gridjs-vue/from": {
"type": ["string", "function"],
"description": "String of HTML table selector or function returning HTML table string. Default: undefined"
},
"gridjs-vue/height": {
"type": "string",
"description": "String that sets the height of the table excluding search, pagination, etc. Default: undefined"
},
"gridjs-vue/language": {
"type": "object",
"description": "Localization dictionary object. Default: undefined"
},
"gridjs-vue/pagination": {
"type": ["boolean", "object"],
"description": "Boolean or pagination settings object. Default: true"
},
"gridjs-vue/resizable": {
"type": "boolean",
"description": "Boolean activating resizable columns. Default: false"
},
"gridjs-vue/rows": {
"type": ["array", "function"],
"description": "Array containing or function returning row data. Default: undefined"
},
"gridjs-vue/search": {
"type": ["boolean", "object"],
"description": "Boolean activating search. Default: false"
},
"gridjs-vue/server": {
"type": ["object", "function"],
"description": "Server settings object or function returning object. Default: undefined"
},
"gridjs-vue/sort": {
"type": ["boolean", "object"],
"description": "Boolean activating sort on all columns. Default: false"
},
"gridjs-vue/styles": {
"type": "object",
"description": "Object containing CSS style definitions. Default: undefined"
},
"gridjs-vue/theme": {
"type": "string",
"description": "String with name of theme or 'none' to disable. Default: 'mermaid'"
},
"gridjs-vue/width": {
"type": "string",
"description": "String with CSS width value. Default: undefined"
}
}