@gudhub/core 1.1.44 → 1.1.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,642 +2,870 @@ export default function generateModulesList(async_modules_path, file_server_url,
2
2
  return [
3
3
  /* GH ELEMENTS */
4
4
  {
5
- name: "text",
5
+ data_type: "text",
6
+ name: "Text",
7
+ icon: "text_icon",
6
8
  url: file_server_url + '/' + async_modules_path + "text_data.js",
7
9
  type: 'gh_element',
8
10
  technology: 'angular'
9
11
  },
10
12
  {
11
- name: "text_opt",
13
+ data_type: "text_opt",
14
+ name: "Options",
15
+ icon: "option_gh_element",
12
16
  url: file_server_url + '/' + async_modules_path + "text_options_data.js",
13
17
  type: 'gh_element',
14
18
  technology: 'angular'
15
19
  },
16
20
  {
17
- name: "number",
21
+ data_type: "number",
22
+ name: "Number",
23
+ icon: "number",
18
24
  url: file_server_url + '/' + async_modules_path + "number_data.js",
19
25
  type: 'gh_element',
20
26
  technology: 'angular'
21
27
  },
22
28
  {
23
- name: "task_board",
29
+ data_type: "task_board",
30
+ name: "Task Board",
31
+ icon: "task_board",
24
32
  url: file_server_url + '/' + async_modules_path + "task_board_data.js",
25
33
  type: 'gh_element',
26
34
  technology: 'angular'
27
35
  },
28
36
  {
37
+ data_type: "visualizer",
29
38
  name: "visualizer",
39
+ icon: 'visualizer',
30
40
  url: file_server_url + '/' + async_modules_path + "visualizer_data.js",
31
41
  type: 'gh_element',
32
42
  technology: 'angular'
33
43
  },
34
44
  {
35
- name: "enterprice_visualizer",
45
+ data_type: "enterprice_visualizer",
46
+ name: "Enterprice Visualizer",
47
+ icon: "visualizer",
48
+ private: true,
36
49
  url: file_server_url + '/' + async_modules_path + "enterprice_visualizer_data.js",
37
50
  type: 'gh_element',
38
51
  technology: 'angular'
39
52
  },
40
53
  {
41
- name: "email",
54
+ data_type: "email",
55
+ name: "Email",
56
+ icon: "email",
42
57
  url: file_server_url + '/' + async_modules_path + "email_data.js",
43
58
  type: 'gh_element',
44
59
  technology: 'angular'
45
60
  },
46
61
  {
47
- name: "date",
62
+ data_type: 'date',
63
+ name: "Date",
64
+ icon: "date_gh_element",
48
65
  url: file_server_url + '/' + async_modules_path + "date_data.js",
49
66
  type: 'gh_element',
50
67
  technology: 'angular'
51
68
  },
52
69
  {
53
- name: "radio_button",
70
+ data_type: 'radio_button',
71
+ name: "Radio Button",
72
+ icon: "radio_button_gh_element",
54
73
  url: file_server_url + '/' + async_modules_path + "radio_button_data.js",
55
74
  type: 'gh_element',
56
75
  technology: 'angular'
57
76
  },
58
77
  {
59
- name: "radio_icon",
78
+ data_type: 'radio_icon',
79
+ name: "Radio icon",
80
+ icon: "radio_icon_gh_element",
60
81
  url: file_server_url + '/' + async_modules_path + "radio_icon_data.js",
61
82
  type: 'gh_element',
62
83
  technology: 'angular'
63
84
  },
64
85
  {
65
- name: "twilio_phone",
86
+ data_type: 'twilio_phone',
87
+ name: "Twilio Phone",
88
+ icon: "phone_twilio_gh_element",
66
89
  url: file_server_url + '/' + async_modules_path + "twilio_phone_data.js",
67
90
  type: 'gh_element',
68
91
  technology: 'angular'
69
92
  },
70
93
  {
71
- name: "twilio_autodialer",
94
+ data_type: "twilio_autodialer",
95
+ name: "Twilio Auto Dialer",
96
+ icon: "twilio_dialer",
72
97
  url: file_server_url + '/' + async_modules_path + "twillio_autodialer_data.js",
73
98
  type: 'gh_element',
74
99
  technology: 'angular'
75
100
  },
76
101
  {
77
- name: "color",
102
+ data_type: "color",
103
+ name: "Color",
104
+ icon: "paint_gh_element",
78
105
  url: file_server_url + '/' + async_modules_path + "color_data.js",
79
106
  type: 'gh_element',
80
107
  technology: 'angular'
81
108
  },
82
109
  {
83
- name: "charts",
110
+ data_type: "charts",
111
+ name: "Charts",
112
+ icon: "graph_gh_element",
84
113
  url: file_server_url + '/' + async_modules_path + "charts_data.js",
85
114
  type: 'gh_element',
86
115
  technology: 'angular'
87
116
  },
88
117
  {
89
- name: 'funnel_chart',
118
+ data_type: 'funnel_chart',
119
+ name: "Funnel chart",
120
+ icon: "funnel_chart_gh_element",
90
121
  url: file_server_url + '/' + async_modules_path + "funnel_chart_data.js",
91
122
  type: 'gh_element',
92
123
  technology: 'angular'
93
124
  },
94
125
  {
95
- name: "add_items_from_template",
126
+ data_type: "add_items_from_template",
127
+ name: "Add items from template",
128
+ icon: "contact_second",
96
129
  url: file_server_url + '/' + async_modules_path + "add_items_from_template_data.js",
97
130
  type: 'gh_element',
98
131
  technology: 'angular'
99
132
  },
100
133
  {
101
- name: "item_ref",
134
+ data_type: "item_ref",
135
+ name: "Reference",
136
+ icon: "reference",
102
137
  url: file_server_url + '/' + async_modules_path + "itemRef_data.js",
103
138
  type: 'gh_element',
104
139
  technology: 'angular'
105
140
  },
106
141
  {
107
- name: "calendar",
142
+ data_type: "calendar",
143
+ name: 'Calendar',
144
+ icon: 'calendar',
108
145
  js: 'https://gudhub.com/modules/FullCalendar-Gh-Element/dist/main.js',
109
146
  css: 'https://gudhub.com/modules/FullCalendar-Gh-Element/dist/style.css',
110
147
  type: 'gh_element',
111
148
  technology: "class"
112
149
  },
113
150
  {
114
- name: "data_ref",
151
+ data_type: "data_ref",
152
+ name: 'Data Reference',
153
+ icon: 'data_reference',
115
154
  url: file_server_url + '/' + async_modules_path + "data_ref_data.js",
116
155
  type: 'gh_element',
117
156
  technology: 'angular'
118
157
  },
119
158
  {
120
- name: "table",
159
+ data_type: "table",
160
+ name: 'Table',
161
+ icon: 'table',
121
162
  url: file_server_url + '/' + async_modules_path + "table_data.js",
122
163
  type: 'gh_element',
123
164
  technology: 'angular'
124
165
  },
125
166
  {
126
- name: "tile",
167
+ data_type: "tile",
168
+ name: 'Tile table',
169
+ icon: 'tile_table',
127
170
  url: file_server_url + '/' + async_modules_path + "tile_data.js",
128
171
  type: 'gh_element',
129
172
  technology: 'angular'
130
173
  },
131
174
  {
132
- name: "file",
175
+ data_type: "file",
176
+ name: 'File',
177
+ icon: 'box',
133
178
  url: file_server_url + '/' + async_modules_path + "file_data.js",
134
179
  type: 'gh_element',
135
180
  technology: 'angular'
136
181
  },
137
182
  {
138
- name: "image",
183
+ data_type: "image",
184
+ name: 'Image',
185
+ icon: 'image',
139
186
  url: file_server_url + '/' + async_modules_path + "image_data.js",
140
187
  type: 'gh_element',
141
188
  technology: 'angular'
142
189
  },
143
190
  {
144
- name: "text_editor",
191
+ data_type: "text_editor",
192
+ name: 'Text Editor',
193
+ icon: 'square',
145
194
  url: file_server_url + '/' + async_modules_path + "text_editor_data.js",
146
195
  type: 'gh_element',
147
196
  technology: 'angular'
148
197
  },
149
198
  {
150
- name: "tinymse",
199
+ data_type: "tinymse",
200
+ name: 'Text editor MSE',
201
+ icon: 'tag',
151
202
  url: file_server_url + '/' + async_modules_path + "tinymse_data.js",
152
203
  type: 'gh_element',
153
204
  technology: 'angular'
154
205
  },
155
206
  {
156
- name: "duration",
207
+ data_type: "duration",
208
+ name: 'Duration',
209
+ icon: 'number_gh_element',
157
210
  url: file_server_url + '/' + async_modules_path + "duration_data.js",
158
211
  type: 'gh_element',
159
212
  technology: 'angular'
160
213
  },
161
214
  {
162
- name: "user",
215
+ data_type: "user",
216
+ name: 'User',
217
+ icon: 'user_gh_element',
163
218
  url: file_server_url + '/' + async_modules_path + "user_data.js",
164
219
  type: 'gh_element',
165
220
  technology: 'angular'
166
221
  },
167
222
  {
168
- name: "app",
223
+ data_type: "app",
224
+ name: 'App',
225
+ icon: 'app',
169
226
  url: file_server_url + '/' + async_modules_path + "application_data.js",
170
227
  type: 'gh_element',
171
228
  technology: 'angular'
172
229
  },
173
230
  {
174
- name: "field",
231
+ data_type: "field",
232
+ name: 'Field',
233
+ icon: 'field_gh_element',
175
234
  url: file_server_url + '/' + async_modules_path + "field_data.js",
176
235
  type: 'gh_element',
177
236
  technology: 'angular'
178
237
  },
179
238
  {
180
- name: "available",
239
+ data_type: "available",
240
+ name: 'Available',
241
+ icon: 'availible_gh_element',
181
242
  url: file_server_url + '/' + async_modules_path + "available_data.js",
182
243
  type: 'gh_element',
183
244
  technology: 'angular'
184
245
  },
185
246
  {
186
- name: "view_list",
247
+ data_type: "view_list",
248
+ name: 'View List',
249
+ icon: 'view_list',
187
250
  url: file_server_url + '/' + async_modules_path + "view_list_data.js",
188
251
  type: 'gh_element',
189
252
  technology: 'angular'
190
253
  },
191
254
  {
192
- name: "calculator",
255
+ data_type: "calculator",
256
+ name: 'Calculator',
257
+ icon: 'calculator',
193
258
  url: file_server_url + '/' + async_modules_path + "calculator_data.js",
194
259
  type: 'gh_element',
195
260
  technology: 'angular'
196
261
  },
197
262
  {
198
- name: "string_join",
263
+ data_type: "string_join",
264
+ name: 'String Joiner',
265
+ icon: 'string_join_gh_element',
199
266
  url: file_server_url + '/' + async_modules_path + "string_joiner_data.js",
200
267
  type: 'gh_element',
201
268
  technology: 'angular'
202
269
  },
203
270
  {
204
- name: "signature",
271
+ data_type: "signature",
272
+ name: 'Signature',
273
+ icon: 'signature',
205
274
  url: file_server_url + '/' + async_modules_path + "signature_data.js",
206
275
  type: 'gh_element',
207
276
  technology: 'angular'
208
277
  },
209
278
  {
210
- name: "sendEmail",
279
+ data_type: "sendEmail",
280
+ name: 'Send Email',
281
+ icon: 'send_email_gh_element',
211
282
  url: file_server_url + '/' + async_modules_path + "send_email_data.js",
212
283
  type: 'gh_element',
213
284
  technology: 'angular'
214
285
  },
215
286
  {
216
- name: "boolean",
287
+ data_type: "boolean",
288
+ name: 'Yes/No',
289
+ icon: 'boolen_gh_element',
217
290
  url: file_server_url + '/' + async_modules_path + "boolean_data.js",
218
291
  type: 'gh_element',
219
292
  technology: 'angular'
220
293
  },
221
294
  {
222
- name: "product_gallery",
295
+ data_type: "product_gallery",
296
+ name: 'Product gallery',
297
+ icon: 'product_gallery',
223
298
  url: file_server_url + '/' + async_modules_path + "product_gallery_data.js",
224
299
  type: 'gh_element',
225
300
  technology: 'angular'
226
301
  },
227
302
  {
228
- name: "online_inventory",
303
+ data_type: "online_inventory",
304
+ name: 'Online inventory',
305
+ icon: 'slab',
229
306
  url: file_server_url + '/' + async_modules_path + "online_inventory_data.js",
230
307
  type: 'gh_element',
231
308
  technology: 'angular'
232
309
  },
233
310
  {
234
- name: "3d_edges",
311
+ data_type: "3d_edges",
312
+ name: '3D Edges',
313
+ icon: '3d_edges_gh_element',
235
314
  url: file_server_url + '/' + async_modules_path + "3d_edges_data.js",
236
315
  type: 'gh_element',
237
316
  technology: 'angular'
238
317
  },
239
318
  {
240
- name: "color_list",
319
+ data_type: "color_list",
320
+ name: 'Color list',
321
+ icon: 'circular_gh_element',
241
322
  url: file_server_url + '/' + async_modules_path + "color_list_data.js",
242
323
  type: 'gh_element',
243
324
  technology: 'angular'
244
325
  },
245
326
  {
246
- name: "go_to_link",
327
+ data_type: "go_to_link",
328
+ name: 'Go to Link',
329
+ icon: 'go_to_link',
247
330
  url: file_server_url + '/' + async_modules_path + "go_to_link_data.js",
248
331
  type: 'gh_element',
249
332
  technology: 'angular'
250
333
  },
251
334
  {
252
- name: "go_to_view",
335
+ data_type: "go_to_view",
336
+ name: 'Go to View',
337
+ icon: 'go_to_view',
253
338
  url: file_server_url + '/' + async_modules_path + "go_to_view_data.js",
254
339
  type: 'gh_element',
255
340
  technology: 'angular'
256
341
  },
257
342
  {
258
- name: "range",
343
+ data_type: "range",
344
+ name: 'Range',
345
+ icon: 'range_gh_element',
259
346
  url: file_server_url + '/' + async_modules_path + "range_data.js",
260
347
  type: 'gh_element',
261
348
  technology: 'angular'
262
349
  },
263
350
  {
264
- name: "barcode",
351
+ data_type: "barcode",
352
+ name: 'Barcode',
353
+ icon: 'barcode_gh_element',
265
354
  url: file_server_url + '/' + async_modules_path + "barcode_data.js",
266
355
  type: 'gh_element',
267
356
  technology: 'angular'
268
357
  },
269
358
  {
270
- name: "item_remote_add",
359
+ data_type: "item_remote_add",
360
+ name: 'Item remote add',
361
+ icon: 'remote_add_gh_element',
271
362
  url: file_server_url + '/' + async_modules_path + "item_remote_add_data.js",
272
363
  type: 'gh_element',
273
364
  technology: 'angular'
274
365
  },
275
366
  {
276
- name: "item_remote_update",
367
+ data_type: "item_remote_update",
368
+ name: 'Item remote update',
369
+ icon: 'remote_update_gh_element',
277
370
  url: file_server_url + '/' + async_modules_path + "item_remote_update_data.js",
278
371
  type: 'gh_element',
279
372
  technology: 'angular'
280
373
  },
281
374
  {
282
- name: "timeline",
375
+ data_type: "timeline",
376
+ name: 'Timeline',
377
+ icon: 'timeline',
283
378
  url: file_server_url + '/' + async_modules_path + "timeline_data.js",
284
379
  type: 'gh_element',
285
380
  technology: 'angular'
286
381
  },
287
382
  {
288
- name: "delete_item",
383
+ data_type: "delete_item",
384
+ name: 'Delete Item',
385
+ icon: 'rubbish',
289
386
  url: file_server_url + '/' + async_modules_path + "delete_action.js",
290
387
  type: 'gh_element',
291
388
  technology: 'angular'
292
389
  },
293
390
  {
294
- name: "print_doc",
391
+ data_type: "print_doc",
392
+ name: 'Print document',
393
+ icon: 'print',
295
394
  url: file_server_url + '/' + async_modules_path + "print_doc_action.js",
296
395
  type: 'gh_element',
297
396
  technology: 'angular'
298
397
  },
299
398
  {
300
- name: "open_item",
399
+ data_type: "open_item",
400
+ name: 'Open Item',
401
+ icon: 'delete',
402
+ private: true,
301
403
  url: file_server_url + '/' + async_modules_path + "open_item_action.js",
302
404
  type: 'gh_element',
303
405
  technology: 'angular'
304
406
  },
305
407
  {
306
- name: "edit_template",
408
+ data_type: "edit_template",
409
+ name: "Edit template",
410
+ icon: "delete",
411
+ private: true,
307
412
  url: file_server_url + '/' + async_modules_path + "edit_template_action.js",
308
413
  type: 'gh_element',
309
414
  technology: 'angular'
310
415
  },
311
416
  {
312
- name: "open_app",
417
+ data_type: "open_app",
418
+ private: true,
419
+ name: 'Open App',
420
+ icon: 'delete',
313
421
  url: file_server_url + '/' + async_modules_path + "open_app_action.js",
314
422
  type: 'gh_element',
315
423
  technology: 'angular'
316
424
  },
317
425
  {
318
- name: "user_settings",
426
+ data_type: "user_settings",
427
+ private: true,
428
+ name: 'User Settings',
429
+ icon: 'delete',
319
430
  url: file_server_url + '/' + async_modules_path + "user_settings_action.js",
320
431
  type: 'gh_element',
321
432
  technology: 'angular'
322
433
  },
323
434
  {
324
- name: "app_sharing",
435
+ data_type: "app_sharing",
436
+ name: 'Sharing',
437
+ icon: 'sharing',
325
438
  url: file_server_url + '/' + async_modules_path + "sharing_action.js",
326
439
  type: 'gh_element',
327
440
  technology: 'angular'
328
441
  },
329
442
  {
330
- name: "app_constructor",
443
+ data_type: "app_constructor",
444
+ private: true,
445
+ name: 'App constructor',
446
+ icon: 'app_constructor',
331
447
  url: file_server_url + '/' + async_modules_path + "app_constructor_action.js",
332
448
  type: 'gh_element',
333
449
  technology: 'angular'
334
450
  },
335
451
  {
336
- name: "app_settings",
452
+ data_type: "app_settings",
453
+ name: 'App Settings',
454
+ icon: 'configuration',
337
455
  url: file_server_url + '/' + async_modules_path + "app_settings_action.js",
338
456
  type: 'gh_element',
339
457
  technology: 'angular'
340
458
  },
341
459
  {
342
- name: "export_csv",
460
+ data_type: "export_csv",
461
+ name: 'Export CSV',
462
+ icon: 'export_csv',
343
463
  url: file_server_url + '/' + async_modules_path + "export_csv.js",
344
464
  type: 'gh_element',
345
465
  technology: 'angular'
346
466
  },
347
467
  {
348
- name: "import_csv",
468
+ data_type: "import_csv",
469
+ name: "Import CSV",
470
+ icon: "import_csv",
349
471
  url: file_server_url + '/' + async_modules_path + "import_csv.js",
350
472
  type: 'gh_element',
351
473
  technology: 'angular'
352
474
  },
353
475
  {
354
- name: "add_items",
476
+ data_type: "add_items",
477
+ name: 'Add Items',
478
+ icon: 'plus',
355
479
  url: file_server_url + '/' + async_modules_path + "add_items_action.js",
356
480
  type: 'gh_element',
357
481
  technology: 'angular'
358
482
  },
359
483
  {
360
- name: "update_items",
484
+ data_type: "update_items",
485
+ name: 'Update Items',
486
+ icon: 'update',
361
487
  url: file_server_url + '/' + async_modules_path + "update_items_action.js",
362
488
  type: 'gh_element',
363
489
  technology: 'angular'
364
490
  },
365
491
  {
366
- name: "install_app",
492
+ data_type: "install_app",
493
+ name: 'Install',
494
+ icon: 'install',
367
495
  url: file_server_url + '/' + async_modules_path + "install_app_action.js",
368
496
  type: 'gh_element',
369
497
  technology: 'angular'
370
498
  },
371
499
  {
372
- name: "search_action",
500
+ data_type: "search_action",
501
+ name: 'Search',
502
+ icon: 'search',
373
503
  url: file_server_url + '/' + async_modules_path + "search_action.js",
374
504
  type: 'gh_element',
375
505
  technology: 'angular'
376
506
  },
377
507
  {
378
- name: "filter_table",
508
+ data_type: "filter_table",
509
+ name: 'Table filter',
510
+ icon: 'filter',
379
511
  url: file_server_url + '/' + async_modules_path + "filter_table_action.js",
380
512
  type: 'gh_element',
381
513
  technology: 'angular'
382
514
  },
383
515
  {
384
- name: "slider",
516
+ data_type: "slider",
517
+ name: 'Slider',
518
+ icon: 'slider',
385
519
  url: file_server_url + '/' + async_modules_path + "slider_data.js",
386
520
  type: 'gh_element',
387
521
  technology: 'angular'
388
522
  },
389
523
  {
390
- name: "clone_item",
524
+ data_type: "clone_item",
525
+ name: 'Clone Item',
526
+ icon: 'double_plus',
391
527
  url: file_server_url + '/' + async_modules_path + "clone_item_action.js",
392
528
  type: 'gh_element',
393
529
  technology: 'angular'
394
530
  },
395
531
  {
396
- name: "close",
532
+ data_type: "close",
533
+ name: 'Close',
534
+ icon: 'cross',
397
535
  url: file_server_url + '/' + async_modules_path + "close_action.js",
398
536
  type: 'gh_element',
399
537
  technology: 'angular'
400
538
  },
401
539
  {
402
- name: "phone",
540
+ data_type: "phone",
541
+ name: 'Phone',
542
+ icon: 'phone_thin',
403
543
  url: file_server_url + '/' + async_modules_path + "phone_data.js",
404
544
  type: 'gh_element',
405
545
  technology: 'angular'
406
546
  },
407
547
  {
408
- name: "link",
548
+ data_type: "link",
549
+ name: 'Link',
550
+ icon: 'link_gh_element',
409
551
  url: file_server_url + '/' + async_modules_path + "link_data.js",
410
552
  type: 'gh_element',
411
553
  technology: 'angular'
412
554
  },
413
555
  {
414
- name: "sheduling",
556
+ data_type: "sheduling",
557
+ name: 'Sheduling',
558
+ icon: 'scheduling',
415
559
  url: file_server_url + '/' + async_modules_path + "sheduling_data.js",
416
560
  type: 'gh_element',
417
561
  technology: 'angular'
418
562
  },
419
563
  {
420
- name: "qrcode",
564
+ data_type: "qrcode",
565
+ name: 'QR Code',
566
+ icon: 'qr_code',
421
567
  url: file_server_url + '/' + async_modules_path + "qrcode_data.js",
422
568
  type: 'gh_element',
423
569
  technology: 'angular'
424
570
  },
425
571
  {
426
- name: "graph2d",
572
+ data_type: "graph2d",
573
+ name: 'Graph',
574
+ icon: 'graph',
427
575
  url: file_server_url + '/' + async_modules_path + "graph2d_data.js",
428
576
  type: 'gh_element',
429
577
  technology: 'angular'
430
578
  },
431
579
  {
432
- name: "quote_tool",
580
+ data_type: "quote_tool",
581
+ name: 'Quote tool',
582
+ icon: 'quoters',
433
583
  url: file_server_url + '/' + async_modules_path + "quote_tool_data.js",
434
584
  type: 'gh_element',
435
585
  technology: 'angular'
436
586
  },
437
587
  {
438
- name: "cards",
588
+ data_type: "cards",
589
+ name: 'Cards',
590
+ icon: 'cards',
439
591
  url: file_server_url + '/' + async_modules_path + "cards_data.js",
440
592
  type: 'gh_element',
441
593
  technology: 'angular'
442
594
  },
443
595
  {
444
- name: "jsonConstructor",
596
+ data_type: "jsonConstructor",
597
+ name: 'Json Constructor',
598
+ icon: 'button',
445
599
  url: file_server_url + '/' + async_modules_path + "json_constructor_data.js",
446
600
  type: 'gh_element',
447
601
  technology: 'angular'
448
602
  },
449
603
  {
450
- name: "button",
604
+ data_type: "button",
605
+ name: 'Button',
606
+ icon: 'button',
451
607
  js: "https://gudhub.com/modules/button_action/button_action.js",
452
608
  type: 'gh_element',
453
609
  technology: 'class'
454
610
  },
455
611
  {
456
- name: "editorjs",
612
+ data_type: "editorjs",
613
+ name: 'EditorJS',
614
+ icon: 'code_editor',
457
615
  js: "https://gudhub.com/modules/Editor-Js/dist/main.js",
458
616
  css: "https://gudhub.com/modules/Editor-Js/dist/style.css",
459
617
  type: 'gh_element',
460
618
  technology: 'class'
461
619
  },
462
620
  {
463
- name: "filter_advanced",
621
+ data_type: "filter_advanced",
622
+ name: 'Filter Advanced',
623
+ icon: 'filter_advanced',
464
624
  url: file_server_url + '/' + async_modules_path + "filter_advanced_data.js",
465
625
  type: 'gh_element',
466
626
  technology: 'angular'
467
627
  },
468
628
  {
469
- name: "code_editor",
629
+ data_type: "code_editor",
630
+ name: 'Code Editor',
631
+ icon: 'code_editor',
470
632
  url: file_server_url + '/' + async_modules_path + "code_editor_data.js",
471
633
  type: 'gh_element',
472
634
  technology: 'angular'
473
635
  },
474
636
  {
475
- name: "icon",
637
+ data_type: "icon",
638
+ name: 'Icon',
639
+ icon: 'icon_gh_element',
476
640
  url: file_server_url + '/' + async_modules_path + "icon_data.js",
477
641
  type: 'gh_element',
478
642
  technology: 'angular'
479
643
  },
480
644
  {
481
- name: "quoteRequest",
645
+ data_type: "quoteRequest",
646
+ name: 'Quote Request',
647
+ icon: 'invoices',
482
648
  url: file_server_url + '/' + async_modules_path + "quote_request_data.js",
483
649
  type: 'gh_element',
484
650
  technology: 'angular'
485
651
  },
486
652
  {
487
- name: "view_container",
653
+ data_type: "view_container",
654
+ name: 'View Container',
655
+ icon: 'pencil',
488
656
  url: file_server_url + '/' + async_modules_path + "view_container_data.js",
489
657
  type: 'gh_element',
490
658
  technology: 'angular'
491
659
  },
492
660
  {
493
- name: "element_ref",
661
+ data_type: "element_ref",
662
+ name: "Element Reference",
663
+ icon: "cloudSync_gh_element",
494
664
  url: file_server_url + '/' + async_modules_path + "element_ref_data.js",
495
665
  type: 'gh_element',
496
666
  technology: 'angular'
497
667
  },
498
668
  {
499
- name: "quote_tool_objects_renderer",
669
+ data_type: "quote_tool_objects_renderer",
670
+ name: 'Quote Tool Renderer',
671
+ icon: 'l_counter',
500
672
  url: file_server_url + '/' + async_modules_path + "quote_tool_objects_renderer_data.js",
501
673
  type: 'gh_element',
502
674
  technology: 'angular'
503
675
  },
504
676
  {
505
- name: "quote_tool_objects_renderer_generator",
677
+ data_type: "quote_tool_objects_renderer_generator",
678
+ name: 'Quote Tool Parts Generator',
679
+ icon: 'l_counter_arrow',
506
680
  url: file_server_url + '/' + async_modules_path + "quote_tool_objects_renderer_generator_data.js",
507
681
  type: 'gh_element',
508
682
  technology: 'angular'
509
683
  },
510
684
  {
511
- name: "trigger",
685
+ data_type: "trigger",
686
+ name: 'Trigger',
687
+ icon: 'job',
512
688
  url: file_server_url + '/' + async_modules_path + "trigger_data.js",
513
689
  type: 'gh_element',
514
690
  technology: 'angular'
515
691
  },
516
692
  {
517
- name: "voting",
693
+ data_type: "voting",
694
+ name: 'Voting',
695
+ icon: 'like_gh_element',
518
696
  url: file_server_url + '/' + async_modules_path + "voting_data.js",
519
697
  type: 'gh_element',
520
698
  technology: 'angular'
521
699
  },
522
700
  {
523
- name: "view_tabs",
701
+ data_type: "view_tabs",
702
+ name: "View Tab",
703
+ icon: "tabs",
524
704
  url: file_server_url + '/' + async_modules_path + "view_tabs.js",
525
705
  type: 'gh_element',
526
706
  technology: 'angular'
527
707
  },
528
708
  {
529
- name: "filter_tabs",
709
+ data_type: "filter_tabs",
710
+ name: "Filter Tabs",
711
+ icon: "filter_tabs_gh_element",
530
712
  url: file_server_url + '/' + async_modules_path + "filter_tabs.js",
531
713
  type: 'gh_element',
532
714
  technology: 'angular'
533
715
  },
534
716
  {
535
- name: "gps_coords",
717
+ data_type: "gps_coords",
718
+ name: 'GPS Coords',
719
+ icon: 'location_gh_element',
536
720
  url: file_server_url + '/' + async_modules_path + "gps_coords.js",
537
721
  type: 'gh_element',
538
722
  technology: 'angular'
539
723
  },
540
724
  {
541
- name: "google_map",
725
+ data_type: "google_map",
726
+ name: 'Google Map',
727
+ icon: 'location',
542
728
  url: file_server_url + '/' + async_modules_path + "google_map_data.js",
543
729
  type: 'gh_element',
544
730
  technology: 'angular'
545
731
  },
546
732
  {
547
- name: "data_migrations",
733
+ data_type: "data_migrations",
734
+ name: "Data migrations",
735
+ icon: "view_list_gh_element",
548
736
  url: file_server_url + '/' + async_modules_path + "data_migrations.js",
549
737
  type: 'gh_element',
550
738
  technology: 'angular'
551
739
  }, {
552
- name: "additional_settings",
740
+ data_type: "additional_settings",
741
+ name: "Additional Settings",
742
+ icon: "",
743
+ private: true,
553
744
  url: file_server_url + '/' + async_modules_path + "gh_additional_settings_data.js",
554
745
  type: 'gh_element',
555
746
  technology: 'angular'
556
747
  }, {
557
- name: "send_request",
748
+ data_type: "send_request",
749
+ name: "Send Request",
750
+ icon: "send_request_gh_element",
558
751
  url: file_server_url + '/' + async_modules_path + "send_request_data.js",
559
752
  type: 'gh_element',
560
753
  technology: 'angular'
561
754
  },
562
755
  {
563
- name: "webcam",
756
+ data_type: "webcam",
757
+ name: "Web camera",
758
+ icon: "webcam_gh_element",
564
759
  url: file_server_url + '/' + async_modules_path + "webcam_data.js",
565
760
  type: 'gh_element',
566
761
  technology: 'angular'
567
762
  },
568
763
  {
569
- name: "json_viewer",
764
+ data_type: "json_viewer",
765
+ name: "JSON viewer",
766
+ icon: "json_gh_element",
570
767
  url: file_server_url + '/' + async_modules_path + "json_viewer_data.js",
571
768
  type: 'gh_element',
572
769
  technology: 'angular'
573
770
  }, {
574
- name: "notifications",
771
+ data_type: "notifications",
772
+ name: "Notifications",
773
+ icon: "full_gh_element",
575
774
  url: file_server_url + '/' + async_modules_path + "notifications_data.js",
576
775
  type: 'gh_element',
577
776
  technology: 'angular'
578
777
  },
579
778
  {
580
- name: "api",
779
+ data_type: "api",
780
+ name: "API",
781
+ icon: "job",
581
782
  url: file_server_url + '/' + async_modules_path + "api_data.js",
582
783
  type: 'gh_element',
583
784
  technology: 'angular'
584
785
  },
585
786
  {
586
- name: "smart_input",
787
+ data_type: "smart_input",
788
+ name: "Smart Input",
789
+ icon: "roket",
587
790
  url: file_server_url + '/' + async_modules_path + "smart_input_data.js",
588
791
  type: 'gh_element',
589
792
  technology: 'angular'
590
793
  },
591
794
  {
592
- name: "json_editor",
795
+ data_type: "json_editor",
796
+ name: "JSON Editor",
797
+ icon: "code",
593
798
  url: file_server_url + '/' + async_modules_path + "json_editor_data.js",
594
799
  type: 'gh_element',
595
800
  technology: 'angular'
596
801
  },
597
802
  {
598
- name: "grapes_html_editor",
803
+ data_type: "grapes_html_editor",
804
+ name: 'Grapes Html Editor',
805
+ icon: 'code_editor',
599
806
  url: file_server_url + '/' + async_modules_path + "grapes_html_editor_data.js",
600
807
  type: 'gh_element',
601
808
  technology: 'angular'
602
809
  },
603
810
  {
604
- name: "quiz",
811
+ data_type: "quiz",
812
+ name: 'Quiz',
813
+ icon: 'quiz_gh_element',
605
814
  url: file_server_url + '/' + async_modules_path + "quiz_data.js",
606
815
  type: 'gh_element',
607
816
  technology: 'angular'
608
817
  },
609
818
  {
610
- name: "password_input",
819
+ data_type: "password_input",
820
+ name: "Password",
821
+ icon: "lock_gh_element",
611
822
  url: file_server_url + '/' + async_modules_path + "password_input_data.js",
612
823
  type: 'gh_element',
613
824
  technology: 'angular'
614
825
  },
615
826
  {
616
- name: "vs_code",
827
+ data_type: "vs_code",
828
+ name: 'VS Code',
829
+ icon: 'code_editor',
617
830
  url: file_server_url + '/' + async_modules_path + "vs_code_data.js",
618
831
  type: 'gh_element',
619
832
  technology: 'angular'
620
833
  },
621
834
  {
622
- name: "nested_list",
835
+ data_type: "nested_list",
836
+ name: 'Nested List',
837
+ icon: 'scheduling',
623
838
  js: "https://gudhub.com/modules/Nested-List/dist/main.js",
624
839
  css: "https://gudhub.com/modules/Nested-List/dist/style.css",
625
840
  type: 'gh_element',
626
841
  technology: 'class'
627
842
  },
628
843
  {
629
- name: "countertop_smart_quote",
844
+ data_type: "countertop_smart_quote",
845
+ name: 'Countertop Smart Quote',
846
+ icon: 'quoters',
630
847
  url: file_server_url + '/' + async_modules_path + "countertop_smart_quote_data.js",
631
848
  type: 'gh_element',
632
849
  technology: 'angular'
633
850
  },
634
851
  {
635
- name: "markdown_viewer",
852
+ data_type: "markdown_viewer",
853
+ name: 'Markdown viewer',
854
+ icon: 'code_editor',
636
855
  js: "https://gudhub.com/modules/markdown-it-gh-element/dist/main.js",
637
856
  css: "https://gudhub.com/modules/markdown-it-gh-element/dist/style.css",
638
857
  type: 'gh_element',
639
858
  technology: "class"
640
859
  },
860
+ {
861
+ data_type: "html_viewer",
862
+ name: 'HTML Viewer',
863
+ icon: 'code_editor',
864
+ js: "https://gudhub.com/modules/HTML-Viewer/dist/main.js",
865
+ css: "https://gudhub.com/modules/HTML-Viewer/dist/style.css",
866
+ type: 'gh_element',
867
+ technology: "class"
868
+ },
641
869
  /* AUTOMATION MODULES */
642
870
  {
643
871
  data_type: 'API',