forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQStepper.json
More file actions
115 lines (94 loc) · 2.85 KB
/
QStepper.json
File metadata and controls
115 lines (94 loc) · 2.85 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"mixins": [ "mixins/panel-parent" ],
"meta": {
"docsUrl": "https://v1.quasar.dev/vue-components/stepper"
},
"behavior": {
"$listeners": true
},
"props": {
"dark": {
"extends": "dark"
},
"flat": {
"extends": "flat"
},
"bordered": {
"extends": "bordered"
},
"vertical": {
"type": "Boolean",
"desc": "Put Stepper in vertical mode (instead of horizontal by default)",
"category": "behavior"
},
"alternative-labels": {
"type": "Boolean",
"desc": "Use alternative labels - stacks the icon on top of the label (applies only to horizontal stepper)",
"category": "header"
},
"header-nav": {
"type": "Boolean",
"desc": "Allow navigation through the header",
"category": "behavior"
},
"contracted": {
"type": "Boolean",
"desc": "Hide header labels on narrow windows",
"category": "header|behavior"
},
"inactive-icon": {
"extends": "icon",
"category": "header"
},
"inactive-color": {
"extends": "color",
"category": "header"
},
"done-icon": {
"extends": "icon",
"desc": "Icon name following Quasar convention; If 'none' (String) is used as value, then it will defer to prefix or the regular icon for this state; Make sure you have the icon library installed unless you are using 'img:' prefix",
"category": "header"
},
"done-color": {
"extends": "color",
"category": "header"
},
"active-icon": {
"extends": "icon",
"desc": "Icon name following Quasar convention; If 'none' (String) is used as value, then it will defer to prefix or the regular icon for this state; Make sure you have the icon library installed unless you are using 'img:' prefix",
"category": "header"
},
"active-color": {
"extends": "color",
"category": "header"
},
"error-icon": {
"extends": "icon",
"desc": "Icon name following Quasar convention; If 'none' (String) is used as value, then it will defer to prefix or the regular icon for this state; Make sure you have the icon library installed unless you are using 'img:' prefix",
"category": "header"
},
"error-color": {
"extends": "color",
"category": "header"
},
"header-class": {
"type": "String",
"desc": "Class definitions to be attributed to the header",
"examples": [
"my-special-class"
],
"category": "style"
}
},
"slots": {
"default": {
"desc": "Suggestion: QStep"
},
"navigation": {
"desc": "Slot specific for the global navigation; Suggestion: QStepperNavigation"
},
"message": {
"desc": "Slot specific for putting a message on top of each step (if horizontal stepper) or above steps (if vertical); Suggestion: QBanner, div.q-pa-lg"
}
}
}