-
Notifications
You must be signed in to change notification settings - Fork 0
/
contentWidgets.json
64 lines (63 loc) · 2.01 KB
/
contentWidgets.json
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
[
{
"identifier": "VueComponentExample::NotificationWidget",
"label": "Widget.mapsLabel",
"previewImageURL": "/images/google-maps-widget.svg",
"type": "default",
"position": 1050,
"widgetClass": "VueComponentExample\\Widgets\\NotificationWidget",
"settings": {
"notificationType": {
"type": "select",
"required": true,
"defaultValue": "info",
"options": {
"name": "Notification type",
"listBoxValues": [
{
"value": "black",
"caption": "Black"
},
{
"value": "positive",
"caption": "Positive"
},
{
"value": "negative",
"caption": "Negative"
},
{
"value": "info",
"caption": "Info"
},
{
"value": "warning",
"caption": "Warning"
},
{
"value": "error",
"caption": "Error"
},
{
"value": "success",
"caption": "Success"
}
]
}
},
"headerNotification": {
"type": "text",
"required": false,
"options": {
"name": "Header"
}
},
"content": {
"type": "codeEditor",
"options": {
"name": "Content"
}
}
}
}
]