forked from bgunnarsson/BG-Icon-Picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.manifest
50 lines (50 loc) · 1.61 KB
/
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
41
42
43
44
45
46
47
48
49
50
{
propertyEditors: [{
alias: "bgIconPicker",
name: "BG: Icon Picker",
editor: {
view: "~/App_Plugins/bgIconPicker/views/bgpicker.html"
},
prevalues: {
fields: [
{
label: 'Path to stylesheet*',
description: 'Relative path to the stylesheet. Seperate stylesheet for the icons is recommended.',
key: 'stylePath',
view: 'requiredfield',
validation:
[
{
type: 'Required'
}
]
},
{
label: 'Class name regex*',
description: 'Regex that matches the class name pattern.',
key: 'styleRegex',
view: 'requiredfield',
validation:
[
{
type: 'Required'
}
]
},
{
label: 'Icon pattern',
description: 'Default: <i class="{0}"></i>. "{0}" will be replaced by the pattern you supply.',
key: 'pattern',
view: 'TextString'
}
]
}
}],
javascript: [
"~/App_Plugins/bgIconPicker/js/bgPicker.controller.js",
"~/App_Plugins/bgIconPicker/js/bgPicker.dialog.controller.js"
],
css: [
"~/App_Plugins/bgIconPicker/css/app.min.css"
]
}