forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQInnerLoading.json
More file actions
78 lines (66 loc) · 1.76 KB
/
QInnerLoading.json
File metadata and controls
78 lines (66 loc) · 1.76 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
{
"mixins": [ "mixins/size" ],
"meta": {
"docsUrl": "https://v1.quasar.dev/vue-components/inner-loading"
},
"behavior": {
"$listeners": true
},
"props": {
"showing": {
"type": "Boolean",
"desc": "State - loading or not",
"category": "state"
},
"color": {
"extends": "color",
"desc": "Color name for component from the Quasar Color Palette for the inner Spinner (unless using the default slot)"
},
"size": {
"desc": "Size in CSS units, including unit name, or standard size name (xs|sm|md|lg|xl), for the inner Spinner (unless using the default slot)",
"default": "42px"
},
"label": {
"type": "String",
"desc": "Add a label; Gets overriden when using the default slot",
"examples": [ "Please wait..." ],
"category": "label",
"addedIn": "v1.17"
},
"label-class": {
"type": "String",
"desc": "Add CSS class(es) to the label; Works along the 'label' prop only",
"examples": [
"text-red q-mt-xl"
],
"category": "label",
"addedIn": "v1.17"
},
"label-style": {
"type": [ "Array", "String", "Object" ],
"desc": "Apply custom style to the label; Works along the 'label' prop only",
"examples": [
"font-size: 28px",
":label-style=\"{ color: '#ff0000' }\""
],
"category": "label",
"addedIn": "v1.17"
},
"transition-show": {
"extends": "transition",
"default": "fade"
},
"transition-hide": {
"extends": "transition",
"default": "fade"
},
"dark": {
"extends": "dark"
}
},
"slots": {
"default": {
"desc": "Default slot is used for replacing default Spinner; Suggestions: a spinner or text"
}
}
}