forked from Fliplet/fliplet-widget-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
widget.json
158 lines (153 loc) · 4.4 KB
/
widget.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "Form",
"package": "com.fliplet.form-builder",
"version": "1.0.0",
"icon": "img/icon.png",
"tags": ["type:component", "category:general"],
"provider_only": false,
"html_tag": "div",
"interface": {
"dependencies": [
"fliplet-core",
"handlebars",
"lodash",
"vue.js",
"rangeslider",
"fliplet-studio-ui",
"fliplet-ui-datetime",
"fliplet-ui-rangeslider",
"fliplet-datasources",
"codemirror",
"bootstrap",
"tinymce",
"moment"
],
"assets": [
"vendor/vuelidate.min.js",
"vendor/validators.min.js",
"vendor/sortable.js",
"vendor/vue-sortable.js",
"js/build.templates.js",
"js/interface.templates.js",
"js/libs/core.js",
"js/libs/templates.js",
"vendor/jquery.plugin.min.js",
"vendor/jquery.timeentry.min.js",
"vendor/signature-pad.js",
"js/components/input.js",
"js/components/email.js",
"js/components/number.js",
"js/components/telephone.js",
"js/components/url.js",
"js/components/password.js",
"js/components/textarea.js",
"js/components/wysiwyg.js",
"js/components/select.js",
"js/components/radio.js",
"js/components/checkbox.js",
"js/components/matrix.js",
"js/components/date.js",
"js/components/dateRange.js",
"js/components/time.js",
"js/components/timeRange.js",
"js/components/timer.js",
"js/components/image.js",
"js/components/file.js",
"js/components/title.js",
"js/components/paragraph.js",
"js/components/buttons.js",
"js/components/horizontalRule.js",
"js/components/starRating.js",
"js/components/slider.js",
"js/components/signature.js",
"js/configurations/input.js",
"js/configurations/email.js",
"js/configurations/number.js",
"js/configurations/telephone.js",
"js/configurations/url.js",
"js/configurations/password.js",
"js/configurations/textarea.js",
"js/configurations/select.js",
"js/configurations/radio.js",
"js/configurations/checkbox.js",
"js/configurations/matrix.js",
"js/configurations/date.js",
"js/configurations/dateRange.js",
"js/configurations/time.js",
"js/configurations/timeRange.js",
"js/configurations/timer.js",
"js/configurations/image.js",
"js/configurations/file.js",
"js/configurations/title.js",
"js/configurations/paragraph.js",
"js/configurations/buttons.js",
"js/configurations/horizontalRule.js",
"js/configurations/starRating.js",
"js/configurations/slider.js",
"js/configurations/signature.js",
"js/configurations/wysiwyg.js",
"js/libs/builder.js",
"css/builder.css"
]
},
"build": {
"dependencies": [
"fliplet-core",
"handlebars",
"bootstrap",
"vue.js",
"rangeslider",
"fliplet-communicate",
"fliplet-ui-datetime",
"fliplet-ui-rangeslider",
"fliplet-datasources",
"fliplet-media",
"font-awesome",
"moment",
"tinymce",
"fliplet-session"
],
"assets": [
"vendor/vuelidate.min.js",
"vendor/validators.min.js",
"vendor/load-image.all.min.js",
"js/build.templates.js",
"js/libs/core.js",
"vendor/jquery.plugin.min.js",
"vendor/signature-pad.js",
"js/components/input.js",
"js/components/email.js",
"js/components/number.js",
"js/components/telephone.js",
"js/components/url.js",
"js/components/password.js",
"js/components/textarea.js",
"js/components/select.js",
"js/components/radio.js",
"js/components/checkbox.js",
"js/components/matrix.js",
"js/components/date.js",
"js/components/dateRange.js",
"js/components/time.js",
"js/components/timeRange.js",
"js/components/timer.js",
"js/components/image.js",
"js/components/file.js",
"js/components/title.js",
"js/components/paragraph.js",
"js/components/buttons.js",
"js/components/horizontalRule.js",
"js/components/starRating.js",
"js/components/slider.js",
"js/components/signature.js",
"js/components/wysiwyg.js",
"js/libs/form.js",
"css/form.css"
]
},
"references": [
"linkAction.page:page",
"fields.$.mediaFolderId:mediaFolder",
"dataSourceId:dataSource"
]
}