forked from HubSpot/sortable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.json
45 lines (45 loc) · 834 Bytes
/
install.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
{
"resources": {
"head": [
{
"type": "style",
"src": "./css/sortable-theme-{{ options.theme }}.css"
}
],
"body": [
{
"type": "script",
"src": "./js/install.js"
},
{
"type": "script",
"src": "./js/sortable.js"
}
]
},
"options": {
"properties": {
"theme": {
"title": "Theme",
"type": "string",
"enum": [
"minimal",
"light",
"bootstrap",
"slick",
"dark",
"finder"
],
"enumNames": {
"minimal": "Minimal",
"light": "Light",
"bootstrap": "Bootstrap",
"slick": "Slick",
"dark": "Dark",
"finder": "Finder"
},
"default": "minimal"
}
}
}
}