-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.manifest
40 lines (38 loc) · 942 Bytes
/
package.manifest
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
{
propertyEditors: [
{
alias: "Epiphany.SortableStringList",
name: "Sortable String List",
valueType: 'JSON',
editor:
{
view: "~/App_Plugins/SortableStringList/sortablestringlist.html"
},
prevalues: {
fields: [
{
label: 'Minimum',
description: 'Minimum number of strings',
key: 'min',
view: 'number'
},
{
label: 'Maximum',
description: 'Maximum number of strings. Use 0 for infinite',
key: 'max',
view: 'number'
},
{
label: 'Allow blank strings',
description: 'If unchecked, blank strings will cause a validation error',
key: 'allowBlanks',
view: 'boolean'
}
]
},
}
],
javascript: [
'~/App_Plugins/SortableStringList/sortablestringlist.js',
]
}