You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"desc": "An array of objects containing icon information. The object must contain the key 'name' with the value being the icon name (ie: { name: 'bolt' }). Note: the icons used must already be loaded.",
28
+
"definition": {
29
+
"name": {
30
+
"type": "String",
31
+
"desc": "The icon name",
32
+
"examples": [
33
+
"calendar-today",
34
+
"bolt"
35
+
]
36
+
}
37
+
}
38
+
},
39
+
"filter": {
40
+
"type": "String",
41
+
"desc": "Icons will be filtered by the passed string"
42
+
},
43
+
"dense": {
44
+
"type": "Boolean",
45
+
"desc": "Use less of a foot print for the component"
46
+
},
47
+
"tooltips": {
48
+
"type": "Boolean",
49
+
"desc": "Turns tooltips on for each displayed icon (shows the icon name)"
50
+
},
51
+
"no-footer": {
52
+
"type": "Boolean",
53
+
"desc": "hides the footer area that contains the pagination"
54
+
},
55
+
"color": {
56
+
"type": "String",
57
+
"desc": "This can be any CSS color value or Quasar color",
58
+
"examples": [
59
+
"orange-8",
60
+
"#c8c8c8"
61
+
]
62
+
},
63
+
"background-color": {
64
+
"type": "String",
65
+
"desc": "This can be any CSS color value or Quasar color",
66
+
"examples": [
67
+
"orange-8",
68
+
"#c8c8c8"
69
+
]
70
+
},
71
+
"selected-color": {
72
+
"type": "String",
73
+
"desc": "This can be any CSS color value or Quasar color",
74
+
"examples": [
75
+
"orange-8",
76
+
"#c8c8c8"
77
+
]
78
+
},
79
+
"selected-background-color": {
80
+
"type": "String",
81
+
"desc": "This can be any CSS color value or Quasar color",
82
+
"examples": [
83
+
"orange-8",
84
+
"#c8c8c8"
85
+
]
86
+
},
87
+
"font-size": {
88
+
"type": "String",
89
+
"desc": "The font-size to use for the icons. Any acceptable CSS size can be used",
90
+
"examples": [
91
+
"3rem",
92
+
"24px"
93
+
]
94
+
},
95
+
"pagination": {
96
+
"type": "Object",
97
+
"desc": "For pagination purposes uses Quasar's pagination component. Use `pagination.sync` to synchronize the data. You can use `page` and `itemsPerPage` to control the pagination. QIconPicker will set `totalPages` depending on `icon-set` or `icons` properties. If using a `filter` the page will automatically be reset to 1",
0 commit comments