-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCalendarSettings.spa.js
112 lines (109 loc) · 4.01 KB
/
CalendarSettings.spa.js
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
define([], function() {
var CalendarSettings = {
component: "expandable-items",
label: "Calendar Settings",
items: {
Options: {
type: "items",
label: "Options",
items:{
SingleDateSwitch: {
type: "boolean",
component: "switch",
label: "Calendario de una fecha",
ref: "props.isSingleDate",
options: [{
value: true,
translation: "properties.on"
}, {
value: false,
translation: "properties.off"
}],
defaultValue: false
},
CustomRangesSwitch:{
type: "boolean",
component: "switch",
label: "Activar rangos",
ref: "props.CustomRangesEnabled",
options: [{
value: true,
translation: "properties.on"
}, {
value: false,
translation: "properties.off"
}],
defaultValue: true
}
}
},
header1: {
type: "items",
label: "Language and labels",
items: {
Language:{
type: "string",
ref: "props.locale",
label: "Locale",
defaultValue: "es"
},
Format:{
type: "string",
ref: "props.format",
label: "Format",
defaultValue: "DD/MM/YYYY"
},
Separator:{
type: "string",
ref: "props.separator",
label: "Separator",
defaultValue: " - "
},
CustomRange:{
type: "string",
ref: "props.customRangeLabel",
label: "Custom Range",
defaultValue: "Rango"
},
defaultText: {
type: "string",
ref: "props.defaultText",
label: "Default Text",
defaultValue: "Seleccione un rango"
},
Today:{
type: "string",
ref: "props.today",
label: "Today",
defaultValue: "Hoy"
},
Yesterday:{
type: "string",
ref: "props.yesterday",
label: "Yesterday",
defaultValue: "Ayer"
},
LastDays:{
type: "string",
ref: "props.lastXDays",
label: "Last $ days",
defaultValue: "Últimos $ días"
},
ThisMonth:{
type: "string",
ref: "props.thisMonth",
label: "This Month",
defaultValue: "Mes Actual"
},
LastMonth:{
type: "string",
ref: "props.lastMonth",
label: "Last Month",
defaultValue: "Mes Anterior"
}
}
}
}
};
return CalendarSettings;
})