forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuse-datetime.json
More file actions
86 lines (74 loc) · 1.92 KB
/
use-datetime.json
File metadata and controls
86 lines (74 loc) · 1.92 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
{
"mixins": [ "composables/private/use-form" ],
"props": {
"landscape": {
"type": "Boolean",
"desc": "Display the component in landscape mode",
"category": "behavior"
},
"mask": {
"type": "String",
"desc": "Mask (formatting string) used for parsing and formatting value",
"category": "model"
},
"locale": {
"type": "Object",
"desc": "Locale formatting options",
"examples": [ ":locale=\"{ monthsShort: ['Ian', 'Feb', 'Mar', '...'] }\"" ],
"definition": {
"days": {
"type": "Array",
"desc": "List of full day names (DDDD), starting with Sunday",
"examples": [ "['Duminica', 'Luni', 'Marti', '...']" ]
},
"daysShort": {
"type": "Array",
"desc": "List of short day names (DDD), starting with Sunday",
"examples": [ "['Dum', 'Lun', 'Mar', '...']" ]
},
"months": {
"type": "Array",
"desc": "List of full month names (MMMM), starting with January",
"examples": [ "['Ianuarie', 'Februarie', 'Martie', '...']" ]
},
"monthsShort": {
"type": "Array",
"desc": "List of short month names (MMM), starting with January",
"examples": [ "['Ian', 'Feb', 'Mar', '...']" ]
}
},
"category": "model"
},
"calendar": {
"type": "String",
"desc": "Specify calendar type",
"default": "gregorian",
"values": [ "gregorian", "persian" ],
"category": "model"
},
"color": {
"extends": "color"
},
"text-color": {
"extends": "text-color"
},
"dark": {
"extends": "dark"
},
"square": {
"extends": "square"
},
"flat": {
"extends": "flat"
},
"bordered": {
"extends": "bordered"
},
"readonly": {
"extends": "readonly"
},
"disable": {
"extends": "disable"
}
}
}