-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathDay.edit.display.js
52 lines (52 loc) · 1.09 KB
/
Day.edit.display.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
export default [
{
key: 'labelPosition',
ignore: true
},
{
key: 'labelWidth',
ignore: true
},
{
key: 'labelMargin',
ignore: true
},
{
weight: 15,
type: 'checkbox',
label: 'Hide Input Labels',
tooltip: 'Hide the labels of component inputs. This allows you to show the labels in the form builder, but not when it is rendered.',
key: 'hideInputLabels',
input: true
},
{
type: 'select',
input: true,
key: 'inputsLabelPosition',
label: 'Inputs Label Position',
tooltip: 'Position for the labels for inputs for this field.',
weight: 40,
defaultValue: 'top',
dataSrc: 'values',
data: {
values: [
{ label: 'Top', value: 'top' },
{ label: 'Left', value: 'left' },
{ label: 'Right', value: 'right' },
{ label: 'Bottom', value: 'bottom' }
]
}
},
{
key: 'placeholder',
ignore: true
},
{
weight: 213,
type: 'checkbox',
label: 'Use Locale Settings',
tooltip: 'Use locale settings to display day.',
key: 'useLocaleSettings',
input: true
},
];