forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQLinearProgress.json
More file actions
82 lines (68 loc) · 1.58 KB
/
QLinearProgress.json
File metadata and controls
82 lines (68 loc) · 1.58 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
{
"mixins": [ "mixins/size" ],
"meta": {
"docsUrl": "https://v1.quasar.dev/vue-components/linear-progress"
},
"behavior": {
"$listeners": true
},
"props": {
"value": {
"type": "Number",
"desc": "Progress value (0.0 < x < 1.0)",
"default": 0,
"examples": [ ":value=\"0.28\"" ],
"category": "model"
},
"buffer": {
"type": "Number",
"desc": "Optional buffer value (0.0 < x < 1.0)",
"examples": [ ":buffer=\"0.78\"" ],
"category": "behavior"
},
"color": {
"extends": "color"
},
"track-color": {
"extends": "color",
"desc": "Color name for component's track from the Quasar Color Palette"
},
"dark": {
"extends": "dark"
},
"reverse": {
"type": "Boolean",
"desc": "Reverse direction of progress",
"category": "behavior"
},
"stripe": {
"type": "Boolean",
"desc": "Draw stripes; For determinate state only (for performance reasons)",
"category": "content"
},
"indeterminate": {
"type": "Boolean",
"desc": "Put component into indeterminate mode",
"category": "behavior"
},
"query": {
"type": "Boolean",
"desc": "Put component into query mode",
"category": "behavior"
},
"rounded": {
"extends": "rounded"
},
"instant-feedback": {
"type": "Boolean",
"desc": "No transition when model changes",
"category": "behavior",
"addedIn": "v1.11.2"
}
},
"slots": {
"default": {
"desc": "Suggestion: QTooltip"
}
}
}