cob-cli 2.11.0 → 2.13.0

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.
Files changed (84) hide show
  1. package/README.publish.md +10 -0
  2. package/customizations/backend.js +1 -0
  3. package/customizations/backend.vuepress.js +35 -0
  4. package/customizations/frontend.js +1 -0
  5. package/lib/task_lists/rsyncFilter.txt +2 -1
  6. package/lib/task_lists/test_otherFilesContiousReload.js +1 -1
  7. package/package.json +5 -1
  8. package/templates/backend/vuepress/integrationm/actions/getVuePressDoc.groovy +74 -0
  9. package/templates/backend/vuepress/integrationm/actions/getVuePressSidebarConfig.groovy +42 -0
  10. package/templates/backend/vuepress/integrationm/actions/getVuePressSidebarRootElements.groovy +17 -0
  11. package/templates/backend/vuepress/others/vuepress/definition_contents_v234.json +619 -0
  12. package/templates/backend/vuepress/others/vuepress/nginx/README.md +28 -0
  13. package/templates/backend/vuepress/others/vuepress/package-lock.json +29656 -0
  14. package/templates/backend/vuepress/others/vuepress/package.json +24 -0
  15. package/templates/backend/vuepress/others/vuepress/src/.vuepress/components/DescriptVideo.vue +22 -0
  16. package/templates/backend/vuepress/others/vuepress/src/.vuepress/components/Graph.vue +124 -0
  17. package/templates/backend/vuepress/others/vuepress/src/.vuepress/components/ReadingTime.vue +26 -0
  18. package/templates/backend/vuepress/others/vuepress/src/.vuepress/components/References.vue +228 -0
  19. package/templates/backend/vuepress/others/vuepress/src/.vuepress/components/RestrictedContent.vue +77 -0
  20. package/templates/backend/vuepress/others/vuepress/src/.vuepress/config.js +101 -0
  21. package/templates/backend/vuepress/others/vuepress/src/.vuepress/config.json +31 -0
  22. package/templates/backend/vuepress/others/vuepress/src/.vuepress/enhanceApp.js +14 -0
  23. package/templates/backend/vuepress/others/vuepress/src/.vuepress/nav/getNavTranslated.js +52 -0
  24. package/templates/backend/vuepress/others/vuepress/src/.vuepress/plugins/References.js +96 -0
  25. package/templates/backend/vuepress/others/vuepress/src/.vuepress/public/Logo-Cult-of-Bits-400x400-1.png +0 -0
  26. package/templates/backend/vuepress/others/vuepress/src/.vuepress/public/favicon-cob.png +0 -0
  27. package/templates/backend/vuepress/others/vuepress/src/.vuepress/public/logo.png +0 -0
  28. package/templates/backend/vuepress/others/vuepress/src/.vuepress/styles/index.styl +39 -0
  29. package/templates/backend/vuepress/others/vuepress/src/.vuepress/styles/palette.styl +17 -0
  30. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/LICENSE +21 -0
  31. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/README.md +11 -0
  32. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/components/AlgoliaSearchBox.vue +172 -0
  33. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/components/DropdownLink.vue +252 -0
  34. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/components/DropdownTransition.vue +33 -0
  35. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/components/Home.vue +134 -0
  36. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/components/NavLink.vue +98 -0
  37. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/components/NavLinks.vue +165 -0
  38. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/components/Navbar.vue +140 -0
  39. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/components/Page.vue +31 -0
  40. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/components/PageEdit.vue +119 -0
  41. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/components/PageNav.vue +163 -0
  42. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/components/Sidebar.vue +64 -0
  43. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/components/SidebarButton.vue +40 -0
  44. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/components/SidebarGroup.vue +144 -0
  45. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/components/SidebarLink.vue +140 -0
  46. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/components/SidebarLinks.vue +114 -0
  47. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/global-components/Badge.vue +44 -0
  48. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/global-components/CodeBlock.vue +41 -0
  49. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/global-components/CodeGroup.vue +120 -0
  50. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/index.js +59 -0
  51. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/layouts/404.vue +30 -0
  52. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/layouts/Layout.vue +151 -0
  53. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/noopModule.js +1 -0
  54. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/package.json +44 -0
  55. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/styles/arrow.styl +22 -0
  56. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/styles/code.styl +137 -0
  57. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/styles/config.styl +1 -0
  58. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/styles/custom-blocks.styl +44 -0
  59. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/styles/index.styl +202 -0
  60. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/styles/mobile.styl +37 -0
  61. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/styles/toc.styl +3 -0
  62. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/styles/wrapper.styl +10 -0
  63. package/templates/backend/vuepress/others/vuepress/src/.vuepress/theme/util/index.js +244 -0
  64. package/templates/dashboards/dash/definition_dashboard_v59.json +1 -0
  65. package/templates/dashboards/dash/dist/css/app.2ca409ad.css +8 -0
  66. package/templates/dashboards/dash/dist/dashboard.html +10 -5
  67. package/templates/dashboards/dash/dist/js/{app.a65a4c2c.js → app.8423eff3.js} +2 -2
  68. package/templates/dashboards/dash/dist/js/app.8423eff3.js.map +1 -0
  69. package/templates/dashboards/dash/dist/js/app.f9c19b80.js +188 -0
  70. package/templates/dashboards/dash/dist/js/app.f9c19b80.js.map +1 -0
  71. package/templates/dashboards/dash/src/App.vue +32 -212
  72. package/templates/dashboards/dash/src/Dashboard.vue +31 -11
  73. package/templates/dashboards/dash/src/collector.js +35 -3694
  74. package/templates/dashboards/dash/src/components/Menu.vue +15 -4
  75. package/templates/dashboards/dash/src/components/Title.vue +10 -2
  76. package/templates/dashboards/dash/src/components/Totals.vue +19 -9
  77. package/templates/dashboards/dash/src/components/{TotalsBadge.vue → TotalsValue.vue} +12 -12
  78. package/templates/dashboards/dash/src/dashboard.html +6 -1
  79. package/templates/dashboards/dash/src/definition_dashboard_v59.json +394 -0
  80. package/templates/dashboards/dash/src/output.css +90228 -90
  81. package/templates/dashboards/dash/src/test_collector.js +3732 -0
  82. package/templates/dashboards/dash/tailwind.config.js +1 -0
  83. package/templates/dashboards/dash/dist/css/app.3140d0d1.css +0 -8
  84. package/templates/dashboards/dash/dist/js/app.a65a4c2c.js.map +0 -1
@@ -0,0 +1,3732 @@
1
+ import { clone, collect } from './collector.js'
2
+
3
+
4
+ // Testes ao colector
5
+ const Sample = {
6
+ id: 40700,
7
+ attachmentPath: "40700",
8
+ version: 31,
9
+ instanceLabel: ["Main"],
10
+ jsonDefinition: {
11
+ id: 108,
12
+ name: "Dashboard",
13
+ description: null,
14
+ duplicable: false,
15
+ state: "enabled",
16
+ },
17
+ fields: [
18
+ {
19
+ id: -1,
20
+ parent: null,
21
+ fieldDefinition: {
22
+ id: 1754,
23
+ name: "Dashboard Info",
24
+ description: "$group",
25
+ condition: null,
26
+ required: null,
27
+ duplicable: false,
28
+ groupField: true,
29
+ order: 0,
30
+ fields: [],
31
+ },
32
+ value: null,
33
+ duplicate: false,
34
+ off: false,
35
+ fields: [],
36
+ },
37
+ {
38
+ id: 212561,
39
+ parent: null,
40
+ fieldDefinition: {
41
+ id: 1449,
42
+ name: "Page Title",
43
+ description: "$expanded $instanceLabel",
44
+ condition: null,
45
+ required: null,
46
+ duplicable: false,
47
+ groupField: false,
48
+ order: 1,
49
+ fields: [],
50
+ },
51
+ value: "Main",
52
+ duplicate: false,
53
+ off: false,
54
+ fields: [],
55
+ },
56
+ {
57
+ id: 212562,
58
+ parent: null,
59
+ fieldDefinition: {
60
+ id: 1745,
61
+ name: "Grid Columns",
62
+ description: "$number $default(12)",
63
+ condition: null,
64
+ required: "mandatory",
65
+ duplicable: false,
66
+ groupField: false,
67
+ order: 2,
68
+ fields: [],
69
+ },
70
+ value: "5",
71
+ duplicate: false,
72
+ off: false,
73
+ fields: [],
74
+ },
75
+ {
76
+ id: 212563,
77
+ parent: null,
78
+ fieldDefinition: {
79
+ id: 1753,
80
+ name: "Max Width",
81
+ description: "$[xl,2xl,3xl,4xl,5xl,*6xl,full]",
82
+ condition: null,
83
+ required: "mandatory",
84
+ duplicable: false,
85
+ groupField: false,
86
+ order: 3,
87
+ fields: [],
88
+ },
89
+ value: "3xl",
90
+ duplicate: false,
91
+ off: false,
92
+ fields: [],
93
+ },
94
+ {
95
+ id: -2,
96
+ parent: null,
97
+ fieldDefinition: {
98
+ id: 1476,
99
+ name: "Permission",
100
+ description: "What groups are allowed to see this dashboard",
101
+ condition: null,
102
+ required: null,
103
+ duplicable: false,
104
+ groupField: false,
105
+ order: 4,
106
+ fields: [],
107
+ },
108
+ value: null,
109
+ duplicate: false,
110
+ off: false,
111
+ fields: [],
112
+ },
113
+ {
114
+ id: -3,
115
+ parent: null,
116
+ fieldDefinition: {
117
+ id: 1755,
118
+ name: "Boards",
119
+ description: "$group",
120
+ condition: null,
121
+ required: null,
122
+ duplicable: false,
123
+ groupField: true,
124
+ order: 5,
125
+ fields: [],
126
+ },
127
+ value: null,
128
+ duplicate: false,
129
+ off: false,
130
+ fields: [],
131
+ },
132
+ {
133
+ id: 212564,
134
+ parent: null,
135
+ fieldDefinition: {
136
+ id: 1451,
137
+ name: "Board Title",
138
+ description: "$instanceDescription $style[dualColumn]",
139
+ condition: null,
140
+ required: null,
141
+ duplicable: true,
142
+ groupField: false,
143
+ order: 6,
144
+ fields: [],
145
+ },
146
+ value: "Main Menu",
147
+ duplicate: false,
148
+ off: false,
149
+ fields: [
150
+ {
151
+ id: 212565,
152
+ parent: 212564,
153
+ fieldDefinition: {
154
+ id: 1746,
155
+ name: "Col Span",
156
+ description: "$number $default(3) ",
157
+ condition: null,
158
+ required: null,
159
+ duplicable: false,
160
+ groupField: false,
161
+ order: 7,
162
+ fields: [],
163
+ },
164
+ value: "2",
165
+ duplicate: false,
166
+ off: false,
167
+ fields: [],
168
+ },
169
+ {
170
+ id: 212566,
171
+ parent: 212564,
172
+ fieldDefinition: {
173
+ id: 1747,
174
+ name: "Row Span",
175
+ description: "$number $default(1) ",
176
+ condition: null,
177
+ required: null,
178
+ duplicable: false,
179
+ groupField: false,
180
+ order: 8,
181
+ fields: [],
182
+ },
183
+ value: "4",
184
+ duplicate: false,
185
+ off: false,
186
+ fields: [],
187
+ },
188
+ {
189
+ id: 212567,
190
+ parent: 212564,
191
+ fieldDefinition: {
192
+ id: 1455,
193
+ name: "Component",
194
+ description:
195
+ "$[Totals,Menu,Kibana,Filter,Title] $instanceDescription $style[singleColumn] $expanded",
196
+ condition: null,
197
+ required: null,
198
+ duplicable: true,
199
+ groupField: false,
200
+ order: 9,
201
+ fields: [],
202
+ },
203
+ value: "Menu",
204
+ duplicate: false,
205
+ off: false,
206
+ fields: [
207
+ {
208
+ id: 212568,
209
+ parent: 212567,
210
+ fieldDefinition: {
211
+ id: 1740,
212
+ name: "Header",
213
+ description: "$group ",
214
+ condition: "=Totals",
215
+ required: null,
216
+ duplicable: false,
217
+ groupField: true,
218
+ order: 10,
219
+ fields: [],
220
+ },
221
+ value: null,
222
+ duplicate: false,
223
+ off: false,
224
+ fields: [
225
+ {
226
+ id: 212569,
227
+ parent: 212568,
228
+ fieldDefinition: {
229
+ id: 1741,
230
+ name: "Text",
231
+ description: null,
232
+ condition: null,
233
+ required: null,
234
+ duplicable: true,
235
+ groupField: false,
236
+ order: 11,
237
+ fields: [],
238
+ },
239
+ value: null,
240
+ duplicate: false,
241
+ off: false,
242
+ fields: [],
243
+ },
244
+ {
245
+ id: -4,
246
+ parent: 212568,
247
+ fieldDefinition: {
248
+ id: 1742,
249
+ name: "Style Header",
250
+ description: null,
251
+ condition: null,
252
+ required: null,
253
+ duplicable: false,
254
+ groupField: false,
255
+ order: 12,
256
+ fields: [],
257
+ },
258
+ value: null,
259
+ duplicate: false,
260
+ off: false,
261
+ fields: [],
262
+ },
263
+ ],
264
+ },
265
+ {
266
+ id: 212570,
267
+ parent: 212567,
268
+ fieldDefinition: {
269
+ id: 1460,
270
+ name: "Line",
271
+ description: null,
272
+ condition: "=Totals",
273
+ required: null,
274
+ duplicable: true,
275
+ groupField: false,
276
+ order: 13,
277
+ fields: [],
278
+ },
279
+ value: null,
280
+ duplicate: false,
281
+ off: false,
282
+ fields: [
283
+ {
284
+ id: 212571,
285
+ parent: 212570,
286
+ fieldDefinition: {
287
+ id: 1744,
288
+ name: "Value",
289
+ description:
290
+ "$[*definitionCount,domainCount,fieldSum,link] ",
291
+ condition: null,
292
+ required: null,
293
+ duplicable: true,
294
+ groupField: false,
295
+ order: 14,
296
+ fields: [],
297
+ },
298
+ value: null,
299
+ duplicate: false,
300
+ off: false,
301
+ fields: [
302
+ {
303
+ id: 212572,
304
+ parent: 212571,
305
+ fieldDefinition: {
306
+ id: 1464,
307
+ name: "Style Value",
308
+ description: "$[*Info,Success,Warning,Important]",
309
+ condition: null,
310
+ required: null,
311
+ duplicable: false,
312
+ groupField: false,
313
+ order: 15,
314
+ fields: [],
315
+ },
316
+ value: null,
317
+ duplicate: false,
318
+ off: false,
319
+ fields: [],
320
+ },
321
+ {
322
+ id: 212573,
323
+ parent: 212571,
324
+ fieldDefinition: {
325
+ id: 1748,
326
+ name: "Arg",
327
+ description: null,
328
+ condition: null,
329
+ required: null,
330
+ duplicable: true,
331
+ groupField: false,
332
+ order: 16,
333
+ fields: [],
334
+ },
335
+ value: null,
336
+ duplicate: false,
337
+ off: false,
338
+ fields: [],
339
+ },
340
+ ],
341
+ },
342
+ {
343
+ id: -5,
344
+ parent: 212570,
345
+ fieldDefinition: {
346
+ id: 1752,
347
+ name: "Style Line",
348
+ description: null,
349
+ condition: null,
350
+ required: null,
351
+ duplicable: false,
352
+ groupField: false,
353
+ order: 17,
354
+ fields: [],
355
+ },
356
+ value: null,
357
+ duplicate: false,
358
+ off: false,
359
+ fields: [],
360
+ },
361
+ ],
362
+ },
363
+ {
364
+ id: -6,
365
+ parent: 212567,
366
+ fieldDefinition: {
367
+ id: 1458,
368
+ name: "URL",
369
+ description: null,
370
+ condition: "=Kibana",
371
+ required: null,
372
+ duplicable: false,
373
+ groupField: false,
374
+ order: 18,
375
+ fields: [],
376
+ },
377
+ value: null,
378
+ duplicate: false,
379
+ off: false,
380
+ fields: [],
381
+ },
382
+ {
383
+ id: -7,
384
+ parent: 212567,
385
+ fieldDefinition: {
386
+ id: 1459,
387
+ name: "FilterID",
388
+ description: null,
389
+ condition: "=Kibana",
390
+ required: null,
391
+ duplicable: false,
392
+ groupField: false,
393
+ order: 19,
394
+ fields: [],
395
+ },
396
+ value: null,
397
+ duplicate: false,
398
+ off: false,
399
+ fields: [],
400
+ },
401
+ {
402
+ id: 212574,
403
+ parent: 212567,
404
+ fieldDefinition: {
405
+ id: 1466,
406
+ name: "Text",
407
+ description: null,
408
+ condition: "=Menu",
409
+ required: null,
410
+ duplicable: true,
411
+ groupField: false,
412
+ order: 20,
413
+ fields: [],
414
+ },
415
+ value: "E-Learning Docs",
416
+ duplicate: false,
417
+ off: false,
418
+ fields: [
419
+ {
420
+ id: 212575,
421
+ parent: 212574,
422
+ fieldDefinition: {
423
+ id: 1467,
424
+ name: "Link",
425
+ description: null,
426
+ condition: null,
427
+ required: null,
428
+ duplicable: false,
429
+ groupField: false,
430
+ order: 21,
431
+ fields: [],
432
+ },
433
+ value: "/docs/",
434
+ duplicate: false,
435
+ off: false,
436
+ fields: [],
437
+ },
438
+ {
439
+ id: 212874,
440
+ parent: 212574,
441
+ fieldDefinition: {
442
+ id: 1756,
443
+ name: "Style Text",
444
+ description: null,
445
+ condition: null,
446
+ required: null,
447
+ duplicable: false,
448
+ groupField: false,
449
+ order: 22,
450
+ fields: [],
451
+ },
452
+ value: "p-10",
453
+ duplicate: false,
454
+ off: false,
455
+ fields: [],
456
+ },
457
+ ],
458
+ },
459
+ {
460
+ id: 212576,
461
+ parent: 212567,
462
+ fieldDefinition: {
463
+ id: 1466,
464
+ name: "Text",
465
+ description: null,
466
+ condition: "=Menu",
467
+ required: null,
468
+ duplicable: true,
469
+ groupField: false,
470
+ order: 20,
471
+ fields: [],
472
+ },
473
+ value: "Users",
474
+ duplicate: true,
475
+ off: false,
476
+ fields: [
477
+ {
478
+ id: 212577,
479
+ parent: 212576,
480
+ fieldDefinition: {
481
+ id: 1467,
482
+ name: "Link",
483
+ description: null,
484
+ condition: null,
485
+ required: null,
486
+ duplicable: false,
487
+ groupField: false,
488
+ order: 21,
489
+ fields: [],
490
+ },
491
+ value: "/userm/#/user",
492
+ duplicate: false,
493
+ off: false,
494
+ fields: [],
495
+ },
496
+ {
497
+ id: -8,
498
+ parent: 212576,
499
+ fieldDefinition: {
500
+ id: 1756,
501
+ name: "Style Text",
502
+ description: null,
503
+ condition: null,
504
+ required: null,
505
+ duplicable: false,
506
+ groupField: false,
507
+ order: 22,
508
+ fields: [],
509
+ },
510
+ value: null,
511
+ duplicate: false,
512
+ off: false,
513
+ fields: [],
514
+ },
515
+ ],
516
+ },
517
+ {
518
+ id: 212578,
519
+ parent: 212567,
520
+ fieldDefinition: {
521
+ id: 1466,
522
+ name: "Text",
523
+ description: null,
524
+ condition: "=Menu",
525
+ required: null,
526
+ duplicable: true,
527
+ groupField: false,
528
+ order: 20,
529
+ fields: [],
530
+ },
531
+ value: "Definitions",
532
+ duplicate: true,
533
+ off: false,
534
+ fields: [
535
+ {
536
+ id: 212579,
537
+ parent: 212578,
538
+ fieldDefinition: {
539
+ id: 1467,
540
+ name: "Link",
541
+ description: null,
542
+ condition: null,
543
+ required: null,
544
+ duplicable: false,
545
+ groupField: false,
546
+ order: 21,
547
+ fields: [],
548
+ },
549
+ value: "/recordm/#/domains",
550
+ duplicate: false,
551
+ off: false,
552
+ fields: [],
553
+ },
554
+ {
555
+ id: -9,
556
+ parent: 212578,
557
+ fieldDefinition: {
558
+ id: 1756,
559
+ name: "Style Text",
560
+ description: null,
561
+ condition: null,
562
+ required: null,
563
+ duplicable: false,
564
+ groupField: false,
565
+ order: 22,
566
+ fields: [],
567
+ },
568
+ value: null,
569
+ duplicate: false,
570
+ off: false,
571
+ fields: [],
572
+ },
573
+ ],
574
+ },
575
+ {
576
+ id: 212580,
577
+ parent: 212567,
578
+ fieldDefinition: {
579
+ id: 1466,
580
+ name: "Text",
581
+ description: null,
582
+ condition: "=Menu",
583
+ required: null,
584
+ duplicable: true,
585
+ groupField: false,
586
+ order: 20,
587
+ fields: [],
588
+ },
589
+ value: "Imports",
590
+ duplicate: true,
591
+ off: false,
592
+ fields: [
593
+ {
594
+ id: 212581,
595
+ parent: 212580,
596
+ fieldDefinition: {
597
+ id: 1467,
598
+ name: "Link",
599
+ description: null,
600
+ condition: null,
601
+ required: null,
602
+ duplicable: false,
603
+ groupField: false,
604
+ order: 21,
605
+ fields: [],
606
+ },
607
+ value: "/recordm/#/importer-stats",
608
+ duplicate: false,
609
+ off: false,
610
+ fields: [],
611
+ },
612
+ {
613
+ id: -10,
614
+ parent: 212580,
615
+ fieldDefinition: {
616
+ id: 1756,
617
+ name: "Style Text",
618
+ description: null,
619
+ condition: null,
620
+ required: null,
621
+ duplicable: false,
622
+ groupField: false,
623
+ order: 22,
624
+ fields: [],
625
+ },
626
+ value: null,
627
+ duplicate: false,
628
+ off: false,
629
+ fields: [],
630
+ },
631
+ ],
632
+ },
633
+ {
634
+ id: 212688,
635
+ parent: 212567,
636
+ fieldDefinition: {
637
+ id: 1466,
638
+ name: "Text",
639
+ description: null,
640
+ condition: "=Menu",
641
+ required: null,
642
+ duplicable: true,
643
+ groupField: false,
644
+ order: 20,
645
+ fields: [],
646
+ },
647
+ value: "Devices",
648
+ duplicate: true,
649
+ off: false,
650
+ fields: [
651
+ {
652
+ id: 212689,
653
+ parent: 212688,
654
+ fieldDefinition: {
655
+ id: 1467,
656
+ name: "Link",
657
+ description: null,
658
+ condition: null,
659
+ required: null,
660
+ duplicable: false,
661
+ groupField: false,
662
+ order: 21,
663
+ fields: [],
664
+ },
665
+ value: "/devicem/",
666
+ duplicate: false,
667
+ off: false,
668
+ fields: [],
669
+ },
670
+ {
671
+ id: -11,
672
+ parent: 212688,
673
+ fieldDefinition: {
674
+ id: 1756,
675
+ name: "Style Text",
676
+ description: null,
677
+ condition: null,
678
+ required: null,
679
+ duplicable: false,
680
+ groupField: false,
681
+ order: 22,
682
+ fields: [],
683
+ },
684
+ value: null,
685
+ duplicate: false,
686
+ off: false,
687
+ fields: [],
688
+ },
689
+ ],
690
+ },
691
+ {
692
+ id: 212808,
693
+ parent: 212567,
694
+ fieldDefinition: {
695
+ id: 1466,
696
+ name: "Text",
697
+ description: null,
698
+ condition: "=Menu",
699
+ required: null,
700
+ duplicable: true,
701
+ groupField: false,
702
+ order: 20,
703
+ fields: [],
704
+ },
705
+ value: "Dashboards",
706
+ duplicate: true,
707
+ off: false,
708
+ fields: [
709
+ {
710
+ id: 212809,
711
+ parent: 212808,
712
+ fieldDefinition: {
713
+ id: 1467,
714
+ name: "Link",
715
+ description: null,
716
+ condition: null,
717
+ required: null,
718
+ duplicable: false,
719
+ groupField: false,
720
+ order: 21,
721
+ fields: [],
722
+ },
723
+ value: "#/definitions/108/q=",
724
+ duplicate: false,
725
+ off: false,
726
+ fields: [],
727
+ },
728
+ {
729
+ id: -12,
730
+ parent: 212808,
731
+ fieldDefinition: {
732
+ id: 1756,
733
+ name: "Style Text",
734
+ description: null,
735
+ condition: null,
736
+ required: null,
737
+ duplicable: false,
738
+ groupField: false,
739
+ order: 22,
740
+ fields: [],
741
+ },
742
+ value: null,
743
+ duplicate: false,
744
+ off: false,
745
+ fields: [],
746
+ },
747
+ ],
748
+ },
749
+ {
750
+ id: -13,
751
+ parent: 212567,
752
+ fieldDefinition: {
753
+ id: 1471,
754
+ name: "FilterID",
755
+ description: null,
756
+ condition: "=Filter",
757
+ required: null,
758
+ duplicable: false,
759
+ groupField: false,
760
+ order: 23,
761
+ fields: [],
762
+ },
763
+ value: null,
764
+ duplicate: false,
765
+ off: false,
766
+ fields: [],
767
+ },
768
+ {
769
+ id: 212582,
770
+ parent: 212567,
771
+ fieldDefinition: {
772
+ id: 1468,
773
+ name: "subtype",
774
+ description: "$[List,Text,Date]",
775
+ condition: "=Filter",
776
+ required: null,
777
+ duplicable: true,
778
+ groupField: false,
779
+ order: 24,
780
+ fields: [],
781
+ },
782
+ value: null,
783
+ duplicate: false,
784
+ off: false,
785
+ fields: [
786
+ {
787
+ id: -14,
788
+ parent: 212582,
789
+ fieldDefinition: {
790
+ id: 1469,
791
+ name: "Alternatives",
792
+ description: null,
793
+ condition: "=List",
794
+ required: null,
795
+ duplicable: false,
796
+ groupField: false,
797
+ order: 25,
798
+ fields: [],
799
+ },
800
+ value: null,
801
+ duplicate: false,
802
+ off: false,
803
+ fields: [],
804
+ },
805
+ {
806
+ id: -15,
807
+ parent: 212582,
808
+ fieldDefinition: {
809
+ id: 1470,
810
+ name: "DateFilterType",
811
+ description: null,
812
+ condition: "=Date",
813
+ required: null,
814
+ duplicable: false,
815
+ groupField: false,
816
+ order: 26,
817
+ fields: [],
818
+ },
819
+ value: null,
820
+ duplicate: false,
821
+ off: false,
822
+ fields: [],
823
+ },
824
+ ],
825
+ },
826
+ {
827
+ id: -16,
828
+ parent: 212567,
829
+ fieldDefinition: {
830
+ id: 1472,
831
+ name: "Query",
832
+ description: null,
833
+ condition: "=MD List",
834
+ required: null,
835
+ duplicable: false,
836
+ groupField: false,
837
+ order: 27,
838
+ fields: [],
839
+ },
840
+ value: null,
841
+ duplicate: false,
842
+ off: false,
843
+ fields: [],
844
+ },
845
+ {
846
+ id: -17,
847
+ parent: 212567,
848
+ fieldDefinition: {
849
+ id: 1757,
850
+ name: "Title",
851
+ description: null,
852
+ condition: "=Title",
853
+ required: null,
854
+ duplicable: false,
855
+ groupField: false,
856
+ order: 28,
857
+ fields: [],
858
+ },
859
+ value: null,
860
+ duplicate: false,
861
+ off: false,
862
+ fields: [],
863
+ },
864
+ ],
865
+ },
866
+ {
867
+ id: 212839,
868
+ parent: 212564,
869
+ fieldDefinition: {
870
+ id: 1455,
871
+ name: "Component",
872
+ description:
873
+ "$[Totals,Menu,Kibana,Filter,Title] $instanceDescription $style[singleColumn] $expanded",
874
+ condition: null,
875
+ required: null,
876
+ duplicable: true,
877
+ groupField: false,
878
+ order: 9,
879
+ fields: [],
880
+ },
881
+ value: "Title",
882
+ duplicate: true,
883
+ off: false,
884
+ fields: [
885
+ {
886
+ id: 212840,
887
+ parent: 212839,
888
+ fieldDefinition: {
889
+ id: 1740,
890
+ name: "Header",
891
+ description: "$group ",
892
+ condition: "=Totals",
893
+ required: null,
894
+ duplicable: false,
895
+ groupField: true,
896
+ order: 10,
897
+ fields: [],
898
+ },
899
+ value: null,
900
+ duplicate: false,
901
+ off: false,
902
+ fields: [
903
+ {
904
+ id: 212841,
905
+ parent: 212840,
906
+ fieldDefinition: {
907
+ id: 1741,
908
+ name: "Text",
909
+ description: null,
910
+ condition: null,
911
+ required: null,
912
+ duplicable: true,
913
+ groupField: false,
914
+ order: 11,
915
+ fields: [],
916
+ },
917
+ value: null,
918
+ duplicate: false,
919
+ off: false,
920
+ fields: [],
921
+ },
922
+ {
923
+ id: -18,
924
+ parent: 212840,
925
+ fieldDefinition: {
926
+ id: 1742,
927
+ name: "Style Header",
928
+ description: null,
929
+ condition: null,
930
+ required: null,
931
+ duplicable: false,
932
+ groupField: false,
933
+ order: 12,
934
+ fields: [],
935
+ },
936
+ value: null,
937
+ duplicate: false,
938
+ off: false,
939
+ fields: [],
940
+ },
941
+ ],
942
+ },
943
+ {
944
+ id: 212843,
945
+ parent: 212839,
946
+ fieldDefinition: {
947
+ id: 1460,
948
+ name: "Line",
949
+ description: null,
950
+ condition: "=Totals",
951
+ required: null,
952
+ duplicable: true,
953
+ groupField: false,
954
+ order: 13,
955
+ fields: [],
956
+ },
957
+ value: null,
958
+ duplicate: false,
959
+ off: false,
960
+ fields: [
961
+ {
962
+ id: 212844,
963
+ parent: 212843,
964
+ fieldDefinition: {
965
+ id: 1744,
966
+ name: "Value",
967
+ description:
968
+ "$[*definitionCount,domainCount,fieldSum,link] ",
969
+ condition: null,
970
+ required: null,
971
+ duplicable: true,
972
+ groupField: false,
973
+ order: 14,
974
+ fields: [],
975
+ },
976
+ value: null,
977
+ duplicate: false,
978
+ off: false,
979
+ fields: [
980
+ {
981
+ id: 212845,
982
+ parent: 212844,
983
+ fieldDefinition: {
984
+ id: 1464,
985
+ name: "Style Value",
986
+ description: "$[*Info,Success,Warning,Important]",
987
+ condition: null,
988
+ required: null,
989
+ duplicable: false,
990
+ groupField: false,
991
+ order: 15,
992
+ fields: [],
993
+ },
994
+ value: null,
995
+ duplicate: false,
996
+ off: false,
997
+ fields: [],
998
+ },
999
+ {
1000
+ id: 212846,
1001
+ parent: 212844,
1002
+ fieldDefinition: {
1003
+ id: 1748,
1004
+ name: "Arg",
1005
+ description: null,
1006
+ condition: null,
1007
+ required: null,
1008
+ duplicable: true,
1009
+ groupField: false,
1010
+ order: 16,
1011
+ fields: [],
1012
+ },
1013
+ value: null,
1014
+ duplicate: false,
1015
+ off: false,
1016
+ fields: [],
1017
+ },
1018
+ ],
1019
+ },
1020
+ {
1021
+ id: -19,
1022
+ parent: 212843,
1023
+ fieldDefinition: {
1024
+ id: 1752,
1025
+ name: "Style Line",
1026
+ description: null,
1027
+ condition: null,
1028
+ required: null,
1029
+ duplicable: false,
1030
+ groupField: false,
1031
+ order: 17,
1032
+ fields: [],
1033
+ },
1034
+ value: null,
1035
+ duplicate: false,
1036
+ off: false,
1037
+ fields: [],
1038
+ },
1039
+ ],
1040
+ },
1041
+ {
1042
+ id: -20,
1043
+ parent: 212839,
1044
+ fieldDefinition: {
1045
+ id: 1458,
1046
+ name: "URL",
1047
+ description: null,
1048
+ condition: "=Kibana",
1049
+ required: null,
1050
+ duplicable: false,
1051
+ groupField: false,
1052
+ order: 18,
1053
+ fields: [],
1054
+ },
1055
+ value: null,
1056
+ duplicate: false,
1057
+ off: false,
1058
+ fields: [],
1059
+ },
1060
+ {
1061
+ id: -21,
1062
+ parent: 212839,
1063
+ fieldDefinition: {
1064
+ id: 1459,
1065
+ name: "FilterID",
1066
+ description: null,
1067
+ condition: "=Kibana",
1068
+ required: null,
1069
+ duplicable: false,
1070
+ groupField: false,
1071
+ order: 19,
1072
+ fields: [],
1073
+ },
1074
+ value: null,
1075
+ duplicate: false,
1076
+ off: false,
1077
+ fields: [],
1078
+ },
1079
+ {
1080
+ id: 212847,
1081
+ parent: 212839,
1082
+ fieldDefinition: {
1083
+ id: 1466,
1084
+ name: "Text",
1085
+ description: null,
1086
+ condition: "=Menu",
1087
+ required: null,
1088
+ duplicable: true,
1089
+ groupField: false,
1090
+ order: 20,
1091
+ fields: [],
1092
+ },
1093
+ value: null,
1094
+ duplicate: false,
1095
+ off: false,
1096
+ fields: [
1097
+ {
1098
+ id: -22,
1099
+ parent: 212847,
1100
+ fieldDefinition: {
1101
+ id: 1467,
1102
+ name: "Link",
1103
+ description: null,
1104
+ condition: null,
1105
+ required: null,
1106
+ duplicable: false,
1107
+ groupField: false,
1108
+ order: 21,
1109
+ fields: [],
1110
+ },
1111
+ value: null,
1112
+ duplicate: false,
1113
+ off: false,
1114
+ fields: [],
1115
+ },
1116
+ {
1117
+ id: -23,
1118
+ parent: 212847,
1119
+ fieldDefinition: {
1120
+ id: 1756,
1121
+ name: "Style Text",
1122
+ description: null,
1123
+ condition: null,
1124
+ required: null,
1125
+ duplicable: false,
1126
+ groupField: false,
1127
+ order: 22,
1128
+ fields: [],
1129
+ },
1130
+ value: null,
1131
+ duplicate: false,
1132
+ off: false,
1133
+ fields: [],
1134
+ },
1135
+ ],
1136
+ },
1137
+ {
1138
+ id: -24,
1139
+ parent: 212839,
1140
+ fieldDefinition: {
1141
+ id: 1471,
1142
+ name: "FilterID",
1143
+ description: null,
1144
+ condition: "=Filter",
1145
+ required: null,
1146
+ duplicable: false,
1147
+ groupField: false,
1148
+ order: 23,
1149
+ fields: [],
1150
+ },
1151
+ value: null,
1152
+ duplicate: false,
1153
+ off: false,
1154
+ fields: [],
1155
+ },
1156
+ {
1157
+ id: 212848,
1158
+ parent: 212839,
1159
+ fieldDefinition: {
1160
+ id: 1468,
1161
+ name: "subtype",
1162
+ description: "$[List,Text,Date]",
1163
+ condition: "=Filter",
1164
+ required: null,
1165
+ duplicable: true,
1166
+ groupField: false,
1167
+ order: 24,
1168
+ fields: [],
1169
+ },
1170
+ value: null,
1171
+ duplicate: false,
1172
+ off: false,
1173
+ fields: [
1174
+ {
1175
+ id: -25,
1176
+ parent: 212848,
1177
+ fieldDefinition: {
1178
+ id: 1469,
1179
+ name: "Alternatives",
1180
+ description: null,
1181
+ condition: "=List",
1182
+ required: null,
1183
+ duplicable: false,
1184
+ groupField: false,
1185
+ order: 25,
1186
+ fields: [],
1187
+ },
1188
+ value: null,
1189
+ duplicate: false,
1190
+ off: false,
1191
+ fields: [],
1192
+ },
1193
+ {
1194
+ id: -26,
1195
+ parent: 212848,
1196
+ fieldDefinition: {
1197
+ id: 1470,
1198
+ name: "DateFilterType",
1199
+ description: null,
1200
+ condition: "=Date",
1201
+ required: null,
1202
+ duplicable: false,
1203
+ groupField: false,
1204
+ order: 26,
1205
+ fields: [],
1206
+ },
1207
+ value: null,
1208
+ duplicate: false,
1209
+ off: false,
1210
+ fields: [],
1211
+ },
1212
+ ],
1213
+ },
1214
+ {
1215
+ id: -27,
1216
+ parent: 212839,
1217
+ fieldDefinition: {
1218
+ id: 1472,
1219
+ name: "Query",
1220
+ description: null,
1221
+ condition: "=MD List",
1222
+ required: null,
1223
+ duplicable: false,
1224
+ groupField: false,
1225
+ order: 27,
1226
+ fields: [],
1227
+ },
1228
+ value: null,
1229
+ duplicate: false,
1230
+ off: false,
1231
+ fields: [],
1232
+ },
1233
+ {
1234
+ id: 212842,
1235
+ parent: 212839,
1236
+ fieldDefinition: {
1237
+ id: 1757,
1238
+ name: "Title",
1239
+ description: null,
1240
+ condition: "=Title",
1241
+ required: null,
1242
+ duplicable: false,
1243
+ groupField: false,
1244
+ order: 28,
1245
+ fields: [],
1246
+ },
1247
+ value: "Main Menu",
1248
+ duplicate: false,
1249
+ off: false,
1250
+ fields: [],
1251
+ },
1252
+ ],
1253
+ },
1254
+ ],
1255
+ },
1256
+ {
1257
+ id: 212596,
1258
+ parent: null,
1259
+ fieldDefinition: {
1260
+ id: 1451,
1261
+ name: "Board Title",
1262
+ description: "$instanceDescription $style[dualColumn]",
1263
+ condition: null,
1264
+ required: null,
1265
+ duplicable: true,
1266
+ groupField: false,
1267
+ order: 6,
1268
+ fields: [],
1269
+ },
1270
+ value: "Learning Solution",
1271
+ duplicate: true,
1272
+ off: false,
1273
+ fields: [
1274
+ {
1275
+ id: 212597,
1276
+ parent: 212596,
1277
+ fieldDefinition: {
1278
+ id: 1746,
1279
+ name: "Col Span",
1280
+ description: "$number $default(3) ",
1281
+ condition: null,
1282
+ required: null,
1283
+ duplicable: false,
1284
+ groupField: false,
1285
+ order: 7,
1286
+ fields: [],
1287
+ },
1288
+ value: "3",
1289
+ duplicate: false,
1290
+ off: false,
1291
+ fields: [],
1292
+ },
1293
+ {
1294
+ id: 212598,
1295
+ parent: 212596,
1296
+ fieldDefinition: {
1297
+ id: 1747,
1298
+ name: "Row Span",
1299
+ description: "$number $default(1) ",
1300
+ condition: null,
1301
+ required: null,
1302
+ duplicable: false,
1303
+ groupField: false,
1304
+ order: 8,
1305
+ fields: [],
1306
+ },
1307
+ value: "4",
1308
+ duplicate: false,
1309
+ off: false,
1310
+ fields: [],
1311
+ },
1312
+ {
1313
+ id: 212599,
1314
+ parent: 212596,
1315
+ fieldDefinition: {
1316
+ id: 1455,
1317
+ name: "Component",
1318
+ description:
1319
+ "$[Totals,Menu,Kibana,Filter,Title] $instanceDescription $style[singleColumn] $expanded",
1320
+ condition: null,
1321
+ required: null,
1322
+ duplicable: true,
1323
+ groupField: false,
1324
+ order: 9,
1325
+ fields: [],
1326
+ },
1327
+ value: "Totals",
1328
+ duplicate: false,
1329
+ off: false,
1330
+ fields: [
1331
+ {
1332
+ id: 212600,
1333
+ parent: 212599,
1334
+ fieldDefinition: {
1335
+ id: 1740,
1336
+ name: "Header",
1337
+ description: "$group ",
1338
+ condition: "=Totals",
1339
+ required: null,
1340
+ duplicable: false,
1341
+ groupField: true,
1342
+ order: 10,
1343
+ fields: [],
1344
+ },
1345
+ value: null,
1346
+ duplicate: false,
1347
+ off: false,
1348
+ fields: [
1349
+ {
1350
+ id: 212601,
1351
+ parent: 212600,
1352
+ fieldDefinition: {
1353
+ id: 1741,
1354
+ name: "Text",
1355
+ description: null,
1356
+ condition: null,
1357
+ required: null,
1358
+ duplicable: true,
1359
+ groupField: false,
1360
+ order: 11,
1361
+ fields: [],
1362
+ },
1363
+ value: null,
1364
+ duplicate: false,
1365
+ off: false,
1366
+ fields: [],
1367
+ },
1368
+ {
1369
+ id: -28,
1370
+ parent: 212600,
1371
+ fieldDefinition: {
1372
+ id: 1742,
1373
+ name: "Style Header",
1374
+ description: null,
1375
+ condition: null,
1376
+ required: null,
1377
+ duplicable: false,
1378
+ groupField: false,
1379
+ order: 12,
1380
+ fields: [],
1381
+ },
1382
+ value: null,
1383
+ duplicate: false,
1384
+ off: false,
1385
+ fields: [],
1386
+ },
1387
+ ],
1388
+ },
1389
+ {
1390
+ id: 212602,
1391
+ parent: 212599,
1392
+ fieldDefinition: {
1393
+ id: 1460,
1394
+ name: "Line",
1395
+ description: null,
1396
+ condition: "=Totals",
1397
+ required: null,
1398
+ duplicable: true,
1399
+ groupField: false,
1400
+ order: 13,
1401
+ fields: [],
1402
+ },
1403
+ value: "Contents",
1404
+ duplicate: false,
1405
+ off: false,
1406
+ fields: [
1407
+ {
1408
+ id: 212603,
1409
+ parent: 212602,
1410
+ fieldDefinition: {
1411
+ id: 1744,
1412
+ name: "Value",
1413
+ description:
1414
+ "$[*definitionCount,domainCount,fieldSum,link] ",
1415
+ condition: null,
1416
+ required: null,
1417
+ duplicable: true,
1418
+ groupField: false,
1419
+ order: 14,
1420
+ fields: [],
1421
+ },
1422
+ value: "definitionCount",
1423
+ duplicate: false,
1424
+ off: false,
1425
+ fields: [
1426
+ {
1427
+ id: 212604,
1428
+ parent: 212603,
1429
+ fieldDefinition: {
1430
+ id: 1464,
1431
+ name: "Style Value",
1432
+ description: "$[*Info,Success,Warning,Important]",
1433
+ condition: null,
1434
+ required: null,
1435
+ duplicable: false,
1436
+ groupField: false,
1437
+ order: 15,
1438
+ fields: [],
1439
+ },
1440
+ value: "Info",
1441
+ duplicate: false,
1442
+ off: false,
1443
+ fields: [],
1444
+ },
1445
+ {
1446
+ id: 212605,
1447
+ parent: 212603,
1448
+ fieldDefinition: {
1449
+ id: 1748,
1450
+ name: "Arg",
1451
+ description: null,
1452
+ condition: null,
1453
+ required: null,
1454
+ duplicable: true,
1455
+ groupField: false,
1456
+ order: 16,
1457
+ fields: [],
1458
+ },
1459
+ value: "E-learning Contents",
1460
+ duplicate: false,
1461
+ off: false,
1462
+ fields: [],
1463
+ },
1464
+ ],
1465
+ },
1466
+ {
1467
+ id: -29,
1468
+ parent: 212602,
1469
+ fieldDefinition: {
1470
+ id: 1752,
1471
+ name: "Style Line",
1472
+ description: null,
1473
+ condition: null,
1474
+ required: null,
1475
+ duplicable: false,
1476
+ groupField: false,
1477
+ order: 17,
1478
+ fields: [],
1479
+ },
1480
+ value: null,
1481
+ duplicate: false,
1482
+ off: false,
1483
+ fields: [],
1484
+ },
1485
+ ],
1486
+ },
1487
+ {
1488
+ id: 212726,
1489
+ parent: 212599,
1490
+ fieldDefinition: {
1491
+ id: 1460,
1492
+ name: "Line",
1493
+ description: null,
1494
+ condition: "=Totals",
1495
+ required: null,
1496
+ duplicable: true,
1497
+ groupField: false,
1498
+ order: 13,
1499
+ fields: [],
1500
+ },
1501
+ value: "RFCs",
1502
+ duplicate: true,
1503
+ off: false,
1504
+ fields: [
1505
+ {
1506
+ id: 212727,
1507
+ parent: 212726,
1508
+ fieldDefinition: {
1509
+ id: 1744,
1510
+ name: "Value",
1511
+ description:
1512
+ "$[*definitionCount,domainCount,fieldSum,link] ",
1513
+ condition: null,
1514
+ required: null,
1515
+ duplicable: true,
1516
+ groupField: false,
1517
+ order: 14,
1518
+ fields: [],
1519
+ },
1520
+ value: "definitionCount",
1521
+ duplicate: false,
1522
+ off: false,
1523
+ fields: [
1524
+ {
1525
+ id: 212728,
1526
+ parent: 212727,
1527
+ fieldDefinition: {
1528
+ id: 1464,
1529
+ name: "Style Value",
1530
+ description: "$[*Info,Success,Warning,Important]",
1531
+ condition: null,
1532
+ required: null,
1533
+ duplicable: false,
1534
+ groupField: false,
1535
+ order: 15,
1536
+ fields: [],
1537
+ },
1538
+ value: "Info",
1539
+ duplicate: false,
1540
+ off: false,
1541
+ fields: [],
1542
+ },
1543
+ {
1544
+ id: 212729,
1545
+ parent: 212727,
1546
+ fieldDefinition: {
1547
+ id: 1748,
1548
+ name: "Arg",
1549
+ description: null,
1550
+ condition: null,
1551
+ required: null,
1552
+ duplicable: true,
1553
+ groupField: false,
1554
+ order: 16,
1555
+ fields: [],
1556
+ },
1557
+ value: "E-learning Content RFCs",
1558
+ duplicate: false,
1559
+ off: false,
1560
+ fields: [],
1561
+ },
1562
+ ],
1563
+ },
1564
+ {
1565
+ id: -30,
1566
+ parent: 212726,
1567
+ fieldDefinition: {
1568
+ id: 1752,
1569
+ name: "Style Line",
1570
+ description: null,
1571
+ condition: null,
1572
+ required: null,
1573
+ duplicable: false,
1574
+ groupField: false,
1575
+ order: 17,
1576
+ fields: [],
1577
+ },
1578
+ value: null,
1579
+ duplicate: false,
1580
+ off: false,
1581
+ fields: [],
1582
+ },
1583
+ ],
1584
+ },
1585
+ {
1586
+ id: 212730,
1587
+ parent: 212599,
1588
+ fieldDefinition: {
1589
+ id: 1460,
1590
+ name: "Line",
1591
+ description: null,
1592
+ condition: "=Totals",
1593
+ required: null,
1594
+ duplicable: true,
1595
+ groupField: false,
1596
+ order: 13,
1597
+ fields: [],
1598
+ },
1599
+ value: "- To Review",
1600
+ duplicate: true,
1601
+ off: false,
1602
+ fields: [
1603
+ {
1604
+ id: 212731,
1605
+ parent: 212730,
1606
+ fieldDefinition: {
1607
+ id: 1744,
1608
+ name: "Value",
1609
+ description:
1610
+ "$[*definitionCount,domainCount,fieldSum,link] ",
1611
+ condition: null,
1612
+ required: null,
1613
+ duplicable: true,
1614
+ groupField: false,
1615
+ order: 14,
1616
+ fields: [],
1617
+ },
1618
+ value: "definitionCount",
1619
+ duplicate: false,
1620
+ off: false,
1621
+ fields: [
1622
+ {
1623
+ id: 212732,
1624
+ parent: 212731,
1625
+ fieldDefinition: {
1626
+ id: 1464,
1627
+ name: "Style Value",
1628
+ description: "$[*Info,Success,Warning,Important]",
1629
+ condition: null,
1630
+ required: null,
1631
+ duplicable: false,
1632
+ groupField: false,
1633
+ order: 15,
1634
+ fields: [],
1635
+ },
1636
+ value: "Important",
1637
+ duplicate: false,
1638
+ off: false,
1639
+ fields: [],
1640
+ },
1641
+ {
1642
+ id: 212733,
1643
+ parent: 212731,
1644
+ fieldDefinition: {
1645
+ id: 1748,
1646
+ name: "Arg",
1647
+ description: null,
1648
+ condition: null,
1649
+ required: null,
1650
+ duplicable: true,
1651
+ groupField: false,
1652
+ order: 16,
1653
+ fields: [],
1654
+ },
1655
+ value: "E-learning Content RFCs",
1656
+ duplicate: false,
1657
+ off: false,
1658
+ fields: [],
1659
+ },
1660
+ {
1661
+ id: 212742,
1662
+ parent: 212731,
1663
+ fieldDefinition: {
1664
+ id: 1748,
1665
+ name: "Arg",
1666
+ description: null,
1667
+ condition: null,
1668
+ required: null,
1669
+ duplicable: true,
1670
+ groupField: false,
1671
+ order: 16,
1672
+ fields: [],
1673
+ },
1674
+ value: "proposal_state:Review",
1675
+ duplicate: true,
1676
+ off: false,
1677
+ fields: [],
1678
+ },
1679
+ ],
1680
+ },
1681
+ {
1682
+ id: 212870,
1683
+ parent: 212730,
1684
+ fieldDefinition: {
1685
+ id: 1752,
1686
+ name: "Style Line",
1687
+ description: null,
1688
+ condition: null,
1689
+ required: null,
1690
+ duplicable: false,
1691
+ groupField: false,
1692
+ order: 17,
1693
+ fields: [],
1694
+ },
1695
+ value: "text-center",
1696
+ duplicate: false,
1697
+ off: false,
1698
+ fields: [],
1699
+ },
1700
+ ],
1701
+ },
1702
+ {
1703
+ id: 212734,
1704
+ parent: 212599,
1705
+ fieldDefinition: {
1706
+ id: 1460,
1707
+ name: "Line",
1708
+ description: null,
1709
+ condition: "=Totals",
1710
+ required: null,
1711
+ duplicable: true,
1712
+ groupField: false,
1713
+ order: 13,
1714
+ fields: [],
1715
+ },
1716
+ value: "- Reviewed",
1717
+ duplicate: true,
1718
+ off: false,
1719
+ fields: [
1720
+ {
1721
+ id: 212735,
1722
+ parent: 212734,
1723
+ fieldDefinition: {
1724
+ id: 1744,
1725
+ name: "Value",
1726
+ description:
1727
+ "$[*definitionCount,domainCount,fieldSum,link] ",
1728
+ condition: null,
1729
+ required: null,
1730
+ duplicable: true,
1731
+ groupField: false,
1732
+ order: 14,
1733
+ fields: [],
1734
+ },
1735
+ value: "definitionCount",
1736
+ duplicate: false,
1737
+ off: false,
1738
+ fields: [
1739
+ {
1740
+ id: 212736,
1741
+ parent: 212735,
1742
+ fieldDefinition: {
1743
+ id: 1464,
1744
+ name: "Style Value",
1745
+ description: "$[*Info,Success,Warning,Important]",
1746
+ condition: null,
1747
+ required: null,
1748
+ duplicable: false,
1749
+ groupField: false,
1750
+ order: 15,
1751
+ fields: [],
1752
+ },
1753
+ value: "Warning",
1754
+ duplicate: false,
1755
+ off: false,
1756
+ fields: [],
1757
+ },
1758
+ {
1759
+ id: 212737,
1760
+ parent: 212735,
1761
+ fieldDefinition: {
1762
+ id: 1748,
1763
+ name: "Arg",
1764
+ description: null,
1765
+ condition: null,
1766
+ required: null,
1767
+ duplicable: true,
1768
+ groupField: false,
1769
+ order: 16,
1770
+ fields: [],
1771
+ },
1772
+ value: "E-learning Content RFCs",
1773
+ duplicate: false,
1774
+ off: false,
1775
+ fields: [],
1776
+ },
1777
+ {
1778
+ id: 212743,
1779
+ parent: 212735,
1780
+ fieldDefinition: {
1781
+ id: 1748,
1782
+ name: "Arg",
1783
+ description: null,
1784
+ condition: null,
1785
+ required: null,
1786
+ duplicable: true,
1787
+ groupField: false,
1788
+ order: 16,
1789
+ fields: [],
1790
+ },
1791
+ value: "proposal_state:Comments",
1792
+ duplicate: true,
1793
+ off: false,
1794
+ fields: [],
1795
+ },
1796
+ ],
1797
+ },
1798
+ {
1799
+ id: 212871,
1800
+ parent: 212734,
1801
+ fieldDefinition: {
1802
+ id: 1752,
1803
+ name: "Style Line",
1804
+ description: null,
1805
+ condition: null,
1806
+ required: null,
1807
+ duplicable: false,
1808
+ groupField: false,
1809
+ order: 17,
1810
+ fields: [],
1811
+ },
1812
+ value: "text-center",
1813
+ duplicate: false,
1814
+ off: false,
1815
+ fields: [],
1816
+ },
1817
+ ],
1818
+ },
1819
+ {
1820
+ id: 212738,
1821
+ parent: 212599,
1822
+ fieldDefinition: {
1823
+ id: 1460,
1824
+ name: "Line",
1825
+ description: null,
1826
+ condition: "=Totals",
1827
+ required: null,
1828
+ duplicable: true,
1829
+ groupField: false,
1830
+ order: 13,
1831
+ fields: [],
1832
+ },
1833
+ value: "- Processed",
1834
+ duplicate: true,
1835
+ off: false,
1836
+ fields: [
1837
+ {
1838
+ id: 212739,
1839
+ parent: 212738,
1840
+ fieldDefinition: {
1841
+ id: 1744,
1842
+ name: "Value",
1843
+ description:
1844
+ "$[*definitionCount,domainCount,fieldSum,link] ",
1845
+ condition: null,
1846
+ required: null,
1847
+ duplicable: true,
1848
+ groupField: false,
1849
+ order: 14,
1850
+ fields: [],
1851
+ },
1852
+ value: "definitionCount",
1853
+ duplicate: false,
1854
+ off: false,
1855
+ fields: [
1856
+ {
1857
+ id: 212740,
1858
+ parent: 212739,
1859
+ fieldDefinition: {
1860
+ id: 1464,
1861
+ name: "Style Value",
1862
+ description: "$[*Info,Success,Warning,Important]",
1863
+ condition: null,
1864
+ required: null,
1865
+ duplicable: false,
1866
+ groupField: false,
1867
+ order: 15,
1868
+ fields: [],
1869
+ },
1870
+ value: "Success",
1871
+ duplicate: false,
1872
+ off: false,
1873
+ fields: [],
1874
+ },
1875
+ {
1876
+ id: 212741,
1877
+ parent: 212739,
1878
+ fieldDefinition: {
1879
+ id: 1748,
1880
+ name: "Arg",
1881
+ description: null,
1882
+ condition: null,
1883
+ required: null,
1884
+ duplicable: true,
1885
+ groupField: false,
1886
+ order: 16,
1887
+ fields: [],
1888
+ },
1889
+ value: "E-learning Content RFCs",
1890
+ duplicate: false,
1891
+ off: false,
1892
+ fields: [],
1893
+ },
1894
+ {
1895
+ id: 212744,
1896
+ parent: 212739,
1897
+ fieldDefinition: {
1898
+ id: 1748,
1899
+ name: "Arg",
1900
+ description: null,
1901
+ condition: null,
1902
+ required: null,
1903
+ duplicable: true,
1904
+ groupField: false,
1905
+ order: 16,
1906
+ fields: [],
1907
+ },
1908
+ value: "proposal_state:Processed",
1909
+ duplicate: true,
1910
+ off: false,
1911
+ fields: [],
1912
+ },
1913
+ ],
1914
+ },
1915
+ {
1916
+ id: 212872,
1917
+ parent: 212738,
1918
+ fieldDefinition: {
1919
+ id: 1752,
1920
+ name: "Style Line",
1921
+ description: null,
1922
+ condition: null,
1923
+ required: null,
1924
+ duplicable: false,
1925
+ groupField: false,
1926
+ order: 17,
1927
+ fields: [],
1928
+ },
1929
+ value: "text-center",
1930
+ duplicate: false,
1931
+ off: false,
1932
+ fields: [],
1933
+ },
1934
+ ],
1935
+ },
1936
+ {
1937
+ id: -31,
1938
+ parent: 212599,
1939
+ fieldDefinition: {
1940
+ id: 1458,
1941
+ name: "URL",
1942
+ description: null,
1943
+ condition: "=Kibana",
1944
+ required: null,
1945
+ duplicable: false,
1946
+ groupField: false,
1947
+ order: 18,
1948
+ fields: [],
1949
+ },
1950
+ value: null,
1951
+ duplicate: false,
1952
+ off: false,
1953
+ fields: [],
1954
+ },
1955
+ {
1956
+ id: -32,
1957
+ parent: 212599,
1958
+ fieldDefinition: {
1959
+ id: 1459,
1960
+ name: "FilterID",
1961
+ description: null,
1962
+ condition: "=Kibana",
1963
+ required: null,
1964
+ duplicable: false,
1965
+ groupField: false,
1966
+ order: 19,
1967
+ fields: [],
1968
+ },
1969
+ value: null,
1970
+ duplicate: false,
1971
+ off: false,
1972
+ fields: [],
1973
+ },
1974
+ {
1975
+ id: 212606,
1976
+ parent: 212599,
1977
+ fieldDefinition: {
1978
+ id: 1466,
1979
+ name: "Text",
1980
+ description: null,
1981
+ condition: "=Menu",
1982
+ required: null,
1983
+ duplicable: true,
1984
+ groupField: false,
1985
+ order: 20,
1986
+ fields: [],
1987
+ },
1988
+ value: null,
1989
+ duplicate: false,
1990
+ off: false,
1991
+ fields: [
1992
+ {
1993
+ id: -33,
1994
+ parent: 212606,
1995
+ fieldDefinition: {
1996
+ id: 1467,
1997
+ name: "Link",
1998
+ description: null,
1999
+ condition: null,
2000
+ required: null,
2001
+ duplicable: false,
2002
+ groupField: false,
2003
+ order: 21,
2004
+ fields: [],
2005
+ },
2006
+ value: null,
2007
+ duplicate: false,
2008
+ off: false,
2009
+ fields: [],
2010
+ },
2011
+ {
2012
+ id: -34,
2013
+ parent: 212606,
2014
+ fieldDefinition: {
2015
+ id: 1756,
2016
+ name: "Style Text",
2017
+ description: null,
2018
+ condition: null,
2019
+ required: null,
2020
+ duplicable: false,
2021
+ groupField: false,
2022
+ order: 22,
2023
+ fields: [],
2024
+ },
2025
+ value: null,
2026
+ duplicate: false,
2027
+ off: false,
2028
+ fields: [],
2029
+ },
2030
+ ],
2031
+ },
2032
+ {
2033
+ id: -35,
2034
+ parent: 212599,
2035
+ fieldDefinition: {
2036
+ id: 1471,
2037
+ name: "FilterID",
2038
+ description: null,
2039
+ condition: "=Filter",
2040
+ required: null,
2041
+ duplicable: false,
2042
+ groupField: false,
2043
+ order: 23,
2044
+ fields: [],
2045
+ },
2046
+ value: null,
2047
+ duplicate: false,
2048
+ off: false,
2049
+ fields: [],
2050
+ },
2051
+ {
2052
+ id: 212607,
2053
+ parent: 212599,
2054
+ fieldDefinition: {
2055
+ id: 1468,
2056
+ name: "subtype",
2057
+ description: "$[List,Text,Date]",
2058
+ condition: "=Filter",
2059
+ required: null,
2060
+ duplicable: true,
2061
+ groupField: false,
2062
+ order: 24,
2063
+ fields: [],
2064
+ },
2065
+ value: null,
2066
+ duplicate: false,
2067
+ off: false,
2068
+ fields: [
2069
+ {
2070
+ id: -36,
2071
+ parent: 212607,
2072
+ fieldDefinition: {
2073
+ id: 1469,
2074
+ name: "Alternatives",
2075
+ description: null,
2076
+ condition: "=List",
2077
+ required: null,
2078
+ duplicable: false,
2079
+ groupField: false,
2080
+ order: 25,
2081
+ fields: [],
2082
+ },
2083
+ value: null,
2084
+ duplicate: false,
2085
+ off: false,
2086
+ fields: [],
2087
+ },
2088
+ {
2089
+ id: -37,
2090
+ parent: 212607,
2091
+ fieldDefinition: {
2092
+ id: 1470,
2093
+ name: "DateFilterType",
2094
+ description: null,
2095
+ condition: "=Date",
2096
+ required: null,
2097
+ duplicable: false,
2098
+ groupField: false,
2099
+ order: 26,
2100
+ fields: [],
2101
+ },
2102
+ value: null,
2103
+ duplicate: false,
2104
+ off: false,
2105
+ fields: [],
2106
+ },
2107
+ ],
2108
+ },
2109
+ {
2110
+ id: -38,
2111
+ parent: 212599,
2112
+ fieldDefinition: {
2113
+ id: 1472,
2114
+ name: "Query",
2115
+ description: null,
2116
+ condition: "=MD List",
2117
+ required: null,
2118
+ duplicable: false,
2119
+ groupField: false,
2120
+ order: 27,
2121
+ fields: [],
2122
+ },
2123
+ value: null,
2124
+ duplicate: false,
2125
+ off: false,
2126
+ fields: [],
2127
+ },
2128
+ {
2129
+ id: -39,
2130
+ parent: 212599,
2131
+ fieldDefinition: {
2132
+ id: 1757,
2133
+ name: "Title",
2134
+ description: null,
2135
+ condition: "=Title",
2136
+ required: null,
2137
+ duplicable: false,
2138
+ groupField: false,
2139
+ order: 28,
2140
+ fields: [],
2141
+ },
2142
+ value: null,
2143
+ duplicate: false,
2144
+ off: false,
2145
+ fields: [],
2146
+ },
2147
+ ],
2148
+ },
2149
+ {
2150
+ id: 212850,
2151
+ parent: 212596,
2152
+ fieldDefinition: {
2153
+ id: 1455,
2154
+ name: "Component",
2155
+ description:
2156
+ "$[Totals,Menu,Kibana,Filter,Title] $instanceDescription $style[singleColumn] $expanded",
2157
+ condition: null,
2158
+ required: null,
2159
+ duplicable: true,
2160
+ groupField: false,
2161
+ order: 9,
2162
+ fields: [],
2163
+ },
2164
+ value: "Title",
2165
+ duplicate: true,
2166
+ off: false,
2167
+ fields: [
2168
+ {
2169
+ id: 212851,
2170
+ parent: 212850,
2171
+ fieldDefinition: {
2172
+ id: 1740,
2173
+ name: "Header",
2174
+ description: "$group ",
2175
+ condition: "=Totals",
2176
+ required: null,
2177
+ duplicable: false,
2178
+ groupField: true,
2179
+ order: 10,
2180
+ fields: [],
2181
+ },
2182
+ value: null,
2183
+ duplicate: false,
2184
+ off: false,
2185
+ fields: [
2186
+ {
2187
+ id: 212852,
2188
+ parent: 212851,
2189
+ fieldDefinition: {
2190
+ id: 1741,
2191
+ name: "Text",
2192
+ description: null,
2193
+ condition: null,
2194
+ required: null,
2195
+ duplicable: true,
2196
+ groupField: false,
2197
+ order: 11,
2198
+ fields: [],
2199
+ },
2200
+ value: null,
2201
+ duplicate: false,
2202
+ off: false,
2203
+ fields: [],
2204
+ },
2205
+ {
2206
+ id: -40,
2207
+ parent: 212851,
2208
+ fieldDefinition: {
2209
+ id: 1742,
2210
+ name: "Style Header",
2211
+ description: null,
2212
+ condition: null,
2213
+ required: null,
2214
+ duplicable: false,
2215
+ groupField: false,
2216
+ order: 12,
2217
+ fields: [],
2218
+ },
2219
+ value: null,
2220
+ duplicate: false,
2221
+ off: false,
2222
+ fields: [],
2223
+ },
2224
+ ],
2225
+ },
2226
+ {
2227
+ id: 212854,
2228
+ parent: 212850,
2229
+ fieldDefinition: {
2230
+ id: 1460,
2231
+ name: "Line",
2232
+ description: null,
2233
+ condition: "=Totals",
2234
+ required: null,
2235
+ duplicable: true,
2236
+ groupField: false,
2237
+ order: 13,
2238
+ fields: [],
2239
+ },
2240
+ value: null,
2241
+ duplicate: false,
2242
+ off: false,
2243
+ fields: [
2244
+ {
2245
+ id: 212855,
2246
+ parent: 212854,
2247
+ fieldDefinition: {
2248
+ id: 1744,
2249
+ name: "Value",
2250
+ description:
2251
+ "$[*definitionCount,domainCount,fieldSum,link] ",
2252
+ condition: null,
2253
+ required: null,
2254
+ duplicable: true,
2255
+ groupField: false,
2256
+ order: 14,
2257
+ fields: [],
2258
+ },
2259
+ value: null,
2260
+ duplicate: false,
2261
+ off: false,
2262
+ fields: [
2263
+ {
2264
+ id: 212856,
2265
+ parent: 212855,
2266
+ fieldDefinition: {
2267
+ id: 1464,
2268
+ name: "Style Value",
2269
+ description: "$[*Info,Success,Warning,Important]",
2270
+ condition: null,
2271
+ required: null,
2272
+ duplicable: false,
2273
+ groupField: false,
2274
+ order: 15,
2275
+ fields: [],
2276
+ },
2277
+ value: null,
2278
+ duplicate: false,
2279
+ off: false,
2280
+ fields: [],
2281
+ },
2282
+ {
2283
+ id: 212857,
2284
+ parent: 212855,
2285
+ fieldDefinition: {
2286
+ id: 1748,
2287
+ name: "Arg",
2288
+ description: null,
2289
+ condition: null,
2290
+ required: null,
2291
+ duplicable: true,
2292
+ groupField: false,
2293
+ order: 16,
2294
+ fields: [],
2295
+ },
2296
+ value: null,
2297
+ duplicate: false,
2298
+ off: false,
2299
+ fields: [],
2300
+ },
2301
+ ],
2302
+ },
2303
+ {
2304
+ id: -41,
2305
+ parent: 212854,
2306
+ fieldDefinition: {
2307
+ id: 1752,
2308
+ name: "Style Line",
2309
+ description: null,
2310
+ condition: null,
2311
+ required: null,
2312
+ duplicable: false,
2313
+ groupField: false,
2314
+ order: 17,
2315
+ fields: [],
2316
+ },
2317
+ value: null,
2318
+ duplicate: false,
2319
+ off: false,
2320
+ fields: [],
2321
+ },
2322
+ ],
2323
+ },
2324
+ {
2325
+ id: -42,
2326
+ parent: 212850,
2327
+ fieldDefinition: {
2328
+ id: 1458,
2329
+ name: "URL",
2330
+ description: null,
2331
+ condition: "=Kibana",
2332
+ required: null,
2333
+ duplicable: false,
2334
+ groupField: false,
2335
+ order: 18,
2336
+ fields: [],
2337
+ },
2338
+ value: null,
2339
+ duplicate: false,
2340
+ off: false,
2341
+ fields: [],
2342
+ },
2343
+ {
2344
+ id: -43,
2345
+ parent: 212850,
2346
+ fieldDefinition: {
2347
+ id: 1459,
2348
+ name: "FilterID",
2349
+ description: null,
2350
+ condition: "=Kibana",
2351
+ required: null,
2352
+ duplicable: false,
2353
+ groupField: false,
2354
+ order: 19,
2355
+ fields: [],
2356
+ },
2357
+ value: null,
2358
+ duplicate: false,
2359
+ off: false,
2360
+ fields: [],
2361
+ },
2362
+ {
2363
+ id: 212858,
2364
+ parent: 212850,
2365
+ fieldDefinition: {
2366
+ id: 1466,
2367
+ name: "Text",
2368
+ description: null,
2369
+ condition: "=Menu",
2370
+ required: null,
2371
+ duplicable: true,
2372
+ groupField: false,
2373
+ order: 20,
2374
+ fields: [],
2375
+ },
2376
+ value: null,
2377
+ duplicate: false,
2378
+ off: false,
2379
+ fields: [
2380
+ {
2381
+ id: -44,
2382
+ parent: 212858,
2383
+ fieldDefinition: {
2384
+ id: 1467,
2385
+ name: "Link",
2386
+ description: null,
2387
+ condition: null,
2388
+ required: null,
2389
+ duplicable: false,
2390
+ groupField: false,
2391
+ order: 21,
2392
+ fields: [],
2393
+ },
2394
+ value: null,
2395
+ duplicate: false,
2396
+ off: false,
2397
+ fields: [],
2398
+ },
2399
+ {
2400
+ id: -45,
2401
+ parent: 212858,
2402
+ fieldDefinition: {
2403
+ id: 1756,
2404
+ name: "Style Text",
2405
+ description: null,
2406
+ condition: null,
2407
+ required: null,
2408
+ duplicable: false,
2409
+ groupField: false,
2410
+ order: 22,
2411
+ fields: [],
2412
+ },
2413
+ value: null,
2414
+ duplicate: false,
2415
+ off: false,
2416
+ fields: [],
2417
+ },
2418
+ ],
2419
+ },
2420
+ {
2421
+ id: -46,
2422
+ parent: 212850,
2423
+ fieldDefinition: {
2424
+ id: 1471,
2425
+ name: "FilterID",
2426
+ description: null,
2427
+ condition: "=Filter",
2428
+ required: null,
2429
+ duplicable: false,
2430
+ groupField: false,
2431
+ order: 23,
2432
+ fields: [],
2433
+ },
2434
+ value: null,
2435
+ duplicate: false,
2436
+ off: false,
2437
+ fields: [],
2438
+ },
2439
+ {
2440
+ id: 212859,
2441
+ parent: 212850,
2442
+ fieldDefinition: {
2443
+ id: 1468,
2444
+ name: "subtype",
2445
+ description: "$[List,Text,Date]",
2446
+ condition: "=Filter",
2447
+ required: null,
2448
+ duplicable: true,
2449
+ groupField: false,
2450
+ order: 24,
2451
+ fields: [],
2452
+ },
2453
+ value: null,
2454
+ duplicate: false,
2455
+ off: false,
2456
+ fields: [
2457
+ {
2458
+ id: -47,
2459
+ parent: 212859,
2460
+ fieldDefinition: {
2461
+ id: 1469,
2462
+ name: "Alternatives",
2463
+ description: null,
2464
+ condition: "=List",
2465
+ required: null,
2466
+ duplicable: false,
2467
+ groupField: false,
2468
+ order: 25,
2469
+ fields: [],
2470
+ },
2471
+ value: null,
2472
+ duplicate: false,
2473
+ off: false,
2474
+ fields: [],
2475
+ },
2476
+ {
2477
+ id: -48,
2478
+ parent: 212859,
2479
+ fieldDefinition: {
2480
+ id: 1470,
2481
+ name: "DateFilterType",
2482
+ description: null,
2483
+ condition: "=Date",
2484
+ required: null,
2485
+ duplicable: false,
2486
+ groupField: false,
2487
+ order: 26,
2488
+ fields: [],
2489
+ },
2490
+ value: null,
2491
+ duplicate: false,
2492
+ off: false,
2493
+ fields: [],
2494
+ },
2495
+ ],
2496
+ },
2497
+ {
2498
+ id: -49,
2499
+ parent: 212850,
2500
+ fieldDefinition: {
2501
+ id: 1472,
2502
+ name: "Query",
2503
+ description: null,
2504
+ condition: "=MD List",
2505
+ required: null,
2506
+ duplicable: false,
2507
+ groupField: false,
2508
+ order: 27,
2509
+ fields: [],
2510
+ },
2511
+ value: null,
2512
+ duplicate: false,
2513
+ off: false,
2514
+ fields: [],
2515
+ },
2516
+ {
2517
+ id: 212853,
2518
+ parent: 212850,
2519
+ fieldDefinition: {
2520
+ id: 1757,
2521
+ name: "Title",
2522
+ description: null,
2523
+ condition: "=Title",
2524
+ required: null,
2525
+ duplicable: false,
2526
+ groupField: false,
2527
+ order: 28,
2528
+ fields: [],
2529
+ },
2530
+ value: "Learning Solution",
2531
+ duplicate: false,
2532
+ off: false,
2533
+ fields: [],
2534
+ },
2535
+ ],
2536
+ },
2537
+ ],
2538
+ },
2539
+ {
2540
+ id: 212608,
2541
+ parent: null,
2542
+ fieldDefinition: {
2543
+ id: 1451,
2544
+ name: "Board Title",
2545
+ description: "$instanceDescription $style[dualColumn]",
2546
+ condition: null,
2547
+ required: null,
2548
+ duplicable: true,
2549
+ groupField: false,
2550
+ order: 6,
2551
+ fields: [],
2552
+ },
2553
+ value: "Prototypes",
2554
+ duplicate: true,
2555
+ off: false,
2556
+ fields: [
2557
+ {
2558
+ id: 212609,
2559
+ parent: 212608,
2560
+ fieldDefinition: {
2561
+ id: 1746,
2562
+ name: "Col Span",
2563
+ description: "$number $default(3) ",
2564
+ condition: null,
2565
+ required: null,
2566
+ duplicable: false,
2567
+ groupField: false,
2568
+ order: 7,
2569
+ fields: [],
2570
+ },
2571
+ value: "1",
2572
+ duplicate: false,
2573
+ off: false,
2574
+ fields: [],
2575
+ },
2576
+ {
2577
+ id: 212610,
2578
+ parent: 212608,
2579
+ fieldDefinition: {
2580
+ id: 1747,
2581
+ name: "Row Span",
2582
+ description: "$number $default(1) ",
2583
+ condition: null,
2584
+ required: null,
2585
+ duplicable: false,
2586
+ groupField: false,
2587
+ order: 8,
2588
+ fields: [],
2589
+ },
2590
+ value: "4",
2591
+ duplicate: false,
2592
+ off: false,
2593
+ fields: [],
2594
+ },
2595
+ {
2596
+ id: 212611,
2597
+ parent: 212608,
2598
+ fieldDefinition: {
2599
+ id: 1455,
2600
+ name: "Component",
2601
+ description:
2602
+ "$[Totals,Menu,Kibana,Filter,Title] $instanceDescription $style[singleColumn] $expanded",
2603
+ condition: null,
2604
+ required: null,
2605
+ duplicable: true,
2606
+ groupField: false,
2607
+ order: 9,
2608
+ fields: [],
2609
+ },
2610
+ value: "Menu",
2611
+ duplicate: false,
2612
+ off: false,
2613
+ fields: [
2614
+ {
2615
+ id: 212612,
2616
+ parent: 212611,
2617
+ fieldDefinition: {
2618
+ id: 1740,
2619
+ name: "Header",
2620
+ description: "$group ",
2621
+ condition: "=Totals",
2622
+ required: null,
2623
+ duplicable: false,
2624
+ groupField: true,
2625
+ order: 10,
2626
+ fields: [],
2627
+ },
2628
+ value: null,
2629
+ duplicate: false,
2630
+ off: false,
2631
+ fields: [
2632
+ {
2633
+ id: 212613,
2634
+ parent: 212612,
2635
+ fieldDefinition: {
2636
+ id: 1741,
2637
+ name: "Text",
2638
+ description: null,
2639
+ condition: null,
2640
+ required: null,
2641
+ duplicable: true,
2642
+ groupField: false,
2643
+ order: 11,
2644
+ fields: [],
2645
+ },
2646
+ value: null,
2647
+ duplicate: false,
2648
+ off: false,
2649
+ fields: [],
2650
+ },
2651
+ {
2652
+ id: -50,
2653
+ parent: 212612,
2654
+ fieldDefinition: {
2655
+ id: 1742,
2656
+ name: "Style Header",
2657
+ description: null,
2658
+ condition: null,
2659
+ required: null,
2660
+ duplicable: false,
2661
+ groupField: false,
2662
+ order: 12,
2663
+ fields: [],
2664
+ },
2665
+ value: null,
2666
+ duplicate: false,
2667
+ off: false,
2668
+ fields: [],
2669
+ },
2670
+ ],
2671
+ },
2672
+ {
2673
+ id: 212614,
2674
+ parent: 212611,
2675
+ fieldDefinition: {
2676
+ id: 1460,
2677
+ name: "Line",
2678
+ description: null,
2679
+ condition: "=Totals",
2680
+ required: null,
2681
+ duplicable: true,
2682
+ groupField: false,
2683
+ order: 13,
2684
+ fields: [],
2685
+ },
2686
+ value: null,
2687
+ duplicate: false,
2688
+ off: false,
2689
+ fields: [
2690
+ {
2691
+ id: 212615,
2692
+ parent: 212614,
2693
+ fieldDefinition: {
2694
+ id: 1744,
2695
+ name: "Value",
2696
+ description:
2697
+ "$[*definitionCount,domainCount,fieldSum,link] ",
2698
+ condition: null,
2699
+ required: null,
2700
+ duplicable: true,
2701
+ groupField: false,
2702
+ order: 14,
2703
+ fields: [],
2704
+ },
2705
+ value: null,
2706
+ duplicate: false,
2707
+ off: false,
2708
+ fields: [
2709
+ {
2710
+ id: 212616,
2711
+ parent: 212615,
2712
+ fieldDefinition: {
2713
+ id: 1464,
2714
+ name: "Style Value",
2715
+ description: "$[*Info,Success,Warning,Important]",
2716
+ condition: null,
2717
+ required: null,
2718
+ duplicable: false,
2719
+ groupField: false,
2720
+ order: 15,
2721
+ fields: [],
2722
+ },
2723
+ value: null,
2724
+ duplicate: false,
2725
+ off: false,
2726
+ fields: [],
2727
+ },
2728
+ {
2729
+ id: 212617,
2730
+ parent: 212615,
2731
+ fieldDefinition: {
2732
+ id: 1748,
2733
+ name: "Arg",
2734
+ description: null,
2735
+ condition: null,
2736
+ required: null,
2737
+ duplicable: true,
2738
+ groupField: false,
2739
+ order: 16,
2740
+ fields: [],
2741
+ },
2742
+ value: null,
2743
+ duplicate: false,
2744
+ off: false,
2745
+ fields: [],
2746
+ },
2747
+ ],
2748
+ },
2749
+ {
2750
+ id: -51,
2751
+ parent: 212614,
2752
+ fieldDefinition: {
2753
+ id: 1752,
2754
+ name: "Style Line",
2755
+ description: null,
2756
+ condition: null,
2757
+ required: null,
2758
+ duplicable: false,
2759
+ groupField: false,
2760
+ order: 17,
2761
+ fields: [],
2762
+ },
2763
+ value: null,
2764
+ duplicate: false,
2765
+ off: false,
2766
+ fields: [],
2767
+ },
2768
+ ],
2769
+ },
2770
+ {
2771
+ id: -52,
2772
+ parent: 212611,
2773
+ fieldDefinition: {
2774
+ id: 1458,
2775
+ name: "URL",
2776
+ description: null,
2777
+ condition: "=Kibana",
2778
+ required: null,
2779
+ duplicable: false,
2780
+ groupField: false,
2781
+ order: 18,
2782
+ fields: [],
2783
+ },
2784
+ value: null,
2785
+ duplicate: false,
2786
+ off: false,
2787
+ fields: [],
2788
+ },
2789
+ {
2790
+ id: -53,
2791
+ parent: 212611,
2792
+ fieldDefinition: {
2793
+ id: 1459,
2794
+ name: "FilterID",
2795
+ description: null,
2796
+ condition: "=Kibana",
2797
+ required: null,
2798
+ duplicable: false,
2799
+ groupField: false,
2800
+ order: 19,
2801
+ fields: [],
2802
+ },
2803
+ value: null,
2804
+ duplicate: false,
2805
+ off: false,
2806
+ fields: [],
2807
+ },
2808
+ {
2809
+ id: 212618,
2810
+ parent: 212611,
2811
+ fieldDefinition: {
2812
+ id: 1466,
2813
+ name: "Text",
2814
+ description: null,
2815
+ condition: "=Menu",
2816
+ required: null,
2817
+ duplicable: true,
2818
+ groupField: false,
2819
+ order: 20,
2820
+ fields: [],
2821
+ },
2822
+ value: "Wine Tasting",
2823
+ duplicate: false,
2824
+ off: false,
2825
+ fields: [
2826
+ {
2827
+ id: 212622,
2828
+ parent: 212618,
2829
+ fieldDefinition: {
2830
+ id: 1467,
2831
+ name: "Link",
2832
+ description: null,
2833
+ condition: null,
2834
+ required: null,
2835
+ duplicable: false,
2836
+ groupField: false,
2837
+ order: 21,
2838
+ fields: [],
2839
+ },
2840
+ value: "/recordm/#/domain/12",
2841
+ duplicate: false,
2842
+ off: false,
2843
+ fields: [],
2844
+ },
2845
+ {
2846
+ id: -54,
2847
+ parent: 212618,
2848
+ fieldDefinition: {
2849
+ id: 1756,
2850
+ name: "Style Text",
2851
+ description: null,
2852
+ condition: null,
2853
+ required: null,
2854
+ duplicable: false,
2855
+ groupField: false,
2856
+ order: 22,
2857
+ fields: [],
2858
+ },
2859
+ value: null,
2860
+ duplicate: false,
2861
+ off: false,
2862
+ fields: [],
2863
+ },
2864
+ ],
2865
+ },
2866
+ {
2867
+ id: 212623,
2868
+ parent: 212611,
2869
+ fieldDefinition: {
2870
+ id: 1466,
2871
+ name: "Text",
2872
+ description: null,
2873
+ condition: "=Menu",
2874
+ required: null,
2875
+ duplicable: true,
2876
+ groupField: false,
2877
+ order: 20,
2878
+ fields: [],
2879
+ },
2880
+ value: "Visio Network",
2881
+ duplicate: true,
2882
+ off: false,
2883
+ fields: [
2884
+ {
2885
+ id: 212624,
2886
+ parent: 212623,
2887
+ fieldDefinition: {
2888
+ id: 1467,
2889
+ name: "Link",
2890
+ description: null,
2891
+ condition: null,
2892
+ required: null,
2893
+ duplicable: false,
2894
+ groupField: false,
2895
+ order: 21,
2896
+ fields: [],
2897
+ },
2898
+ value: "#/domain/27",
2899
+ duplicate: false,
2900
+ off: false,
2901
+ fields: [],
2902
+ },
2903
+ {
2904
+ id: -55,
2905
+ parent: 212623,
2906
+ fieldDefinition: {
2907
+ id: 1756,
2908
+ name: "Style Text",
2909
+ description: null,
2910
+ condition: null,
2911
+ required: null,
2912
+ duplicable: false,
2913
+ groupField: false,
2914
+ order: 22,
2915
+ fields: [],
2916
+ },
2917
+ value: null,
2918
+ duplicate: false,
2919
+ off: false,
2920
+ fields: [],
2921
+ },
2922
+ ],
2923
+ },
2924
+ {
2925
+ id: 212625,
2926
+ parent: 212611,
2927
+ fieldDefinition: {
2928
+ id: 1466,
2929
+ name: "Text",
2930
+ description: null,
2931
+ condition: "=Menu",
2932
+ required: null,
2933
+ duplicable: true,
2934
+ groupField: false,
2935
+ order: 20,
2936
+ fields: [],
2937
+ },
2938
+ value: "Catering",
2939
+ duplicate: true,
2940
+ off: false,
2941
+ fields: [
2942
+ {
2943
+ id: 212628,
2944
+ parent: 212625,
2945
+ fieldDefinition: {
2946
+ id: 1467,
2947
+ name: "Link",
2948
+ description: null,
2949
+ condition: null,
2950
+ required: null,
2951
+ duplicable: false,
2952
+ groupField: false,
2953
+ order: 21,
2954
+ fields: [],
2955
+ },
2956
+ value: "#/domain/31",
2957
+ duplicate: false,
2958
+ off: false,
2959
+ fields: [],
2960
+ },
2961
+ {
2962
+ id: -56,
2963
+ parent: 212625,
2964
+ fieldDefinition: {
2965
+ id: 1756,
2966
+ name: "Style Text",
2967
+ description: null,
2968
+ condition: null,
2969
+ required: null,
2970
+ duplicable: false,
2971
+ groupField: false,
2972
+ order: 22,
2973
+ fields: [],
2974
+ },
2975
+ value: null,
2976
+ duplicate: false,
2977
+ off: false,
2978
+ fields: [],
2979
+ },
2980
+ ],
2981
+ },
2982
+ {
2983
+ id: 212626,
2984
+ parent: 212611,
2985
+ fieldDefinition: {
2986
+ id: 1466,
2987
+ name: "Text",
2988
+ description: null,
2989
+ condition: "=Menu",
2990
+ required: null,
2991
+ duplicable: true,
2992
+ groupField: false,
2993
+ order: 20,
2994
+ fields: [],
2995
+ },
2996
+ value: "Asset Management",
2997
+ duplicate: true,
2998
+ off: false,
2999
+ fields: [
3000
+ {
3001
+ id: 212627,
3002
+ parent: 212626,
3003
+ fieldDefinition: {
3004
+ id: 1467,
3005
+ name: "Link",
3006
+ description: null,
3007
+ condition: null,
3008
+ required: null,
3009
+ duplicable: false,
3010
+ groupField: false,
3011
+ order: 21,
3012
+ fields: [],
3013
+ },
3014
+ value: "#/domain/24",
3015
+ duplicate: false,
3016
+ off: false,
3017
+ fields: [],
3018
+ },
3019
+ {
3020
+ id: -57,
3021
+ parent: 212626,
3022
+ fieldDefinition: {
3023
+ id: 1756,
3024
+ name: "Style Text",
3025
+ description: null,
3026
+ condition: null,
3027
+ required: null,
3028
+ duplicable: false,
3029
+ groupField: false,
3030
+ order: 22,
3031
+ fields: [],
3032
+ },
3033
+ value: null,
3034
+ duplicate: false,
3035
+ off: false,
3036
+ fields: [],
3037
+ },
3038
+ ],
3039
+ },
3040
+ {
3041
+ id: 212690,
3042
+ parent: 212611,
3043
+ fieldDefinition: {
3044
+ id: 1466,
3045
+ name: "Text",
3046
+ description: null,
3047
+ condition: "=Menu",
3048
+ required: null,
3049
+ duplicable: true,
3050
+ groupField: false,
3051
+ order: 20,
3052
+ fields: [],
3053
+ },
3054
+ value: "Efficio",
3055
+ duplicate: true,
3056
+ off: false,
3057
+ fields: [
3058
+ {
3059
+ id: 212691,
3060
+ parent: 212690,
3061
+ fieldDefinition: {
3062
+ id: 1467,
3063
+ name: "Link",
3064
+ description: null,
3065
+ condition: null,
3066
+ required: null,
3067
+ duplicable: false,
3068
+ groupField: false,
3069
+ order: 21,
3070
+ fields: [],
3071
+ },
3072
+ value: "#/cob.custom-resource/40697/dash",
3073
+ duplicate: false,
3074
+ off: false,
3075
+ fields: [],
3076
+ },
3077
+ {
3078
+ id: -58,
3079
+ parent: 212690,
3080
+ fieldDefinition: {
3081
+ id: 1756,
3082
+ name: "Style Text",
3083
+ description: null,
3084
+ condition: null,
3085
+ required: null,
3086
+ duplicable: false,
3087
+ groupField: false,
3088
+ order: 22,
3089
+ fields: [],
3090
+ },
3091
+ value: null,
3092
+ duplicate: false,
3093
+ off: false,
3094
+ fields: [],
3095
+ },
3096
+ ],
3097
+ },
3098
+ {
3099
+ id: -59,
3100
+ parent: 212611,
3101
+ fieldDefinition: {
3102
+ id: 1471,
3103
+ name: "FilterID",
3104
+ description: null,
3105
+ condition: "=Filter",
3106
+ required: null,
3107
+ duplicable: false,
3108
+ groupField: false,
3109
+ order: 23,
3110
+ fields: [],
3111
+ },
3112
+ value: null,
3113
+ duplicate: false,
3114
+ off: false,
3115
+ fields: [],
3116
+ },
3117
+ {
3118
+ id: 212619,
3119
+ parent: 212611,
3120
+ fieldDefinition: {
3121
+ id: 1468,
3122
+ name: "subtype",
3123
+ description: "$[List,Text,Date]",
3124
+ condition: "=Filter",
3125
+ required: null,
3126
+ duplicable: true,
3127
+ groupField: false,
3128
+ order: 24,
3129
+ fields: [],
3130
+ },
3131
+ value: null,
3132
+ duplicate: false,
3133
+ off: false,
3134
+ fields: [
3135
+ {
3136
+ id: -60,
3137
+ parent: 212619,
3138
+ fieldDefinition: {
3139
+ id: 1469,
3140
+ name: "Alternatives",
3141
+ description: null,
3142
+ condition: "=List",
3143
+ required: null,
3144
+ duplicable: false,
3145
+ groupField: false,
3146
+ order: 25,
3147
+ fields: [],
3148
+ },
3149
+ value: null,
3150
+ duplicate: false,
3151
+ off: false,
3152
+ fields: [],
3153
+ },
3154
+ {
3155
+ id: -61,
3156
+ parent: 212619,
3157
+ fieldDefinition: {
3158
+ id: 1470,
3159
+ name: "DateFilterType",
3160
+ description: null,
3161
+ condition: "=Date",
3162
+ required: null,
3163
+ duplicable: false,
3164
+ groupField: false,
3165
+ order: 26,
3166
+ fields: [],
3167
+ },
3168
+ value: null,
3169
+ duplicate: false,
3170
+ off: false,
3171
+ fields: [],
3172
+ },
3173
+ ],
3174
+ },
3175
+ {
3176
+ id: -62,
3177
+ parent: 212611,
3178
+ fieldDefinition: {
3179
+ id: 1472,
3180
+ name: "Query",
3181
+ description: null,
3182
+ condition: "=MD List",
3183
+ required: null,
3184
+ duplicable: false,
3185
+ groupField: false,
3186
+ order: 27,
3187
+ fields: [],
3188
+ },
3189
+ value: null,
3190
+ duplicate: false,
3191
+ off: false,
3192
+ fields: [],
3193
+ },
3194
+ {
3195
+ id: -63,
3196
+ parent: 212611,
3197
+ fieldDefinition: {
3198
+ id: 1757,
3199
+ name: "Title",
3200
+ description: null,
3201
+ condition: "=Title",
3202
+ required: null,
3203
+ duplicable: false,
3204
+ groupField: false,
3205
+ order: 28,
3206
+ fields: [],
3207
+ },
3208
+ value: null,
3209
+ duplicate: false,
3210
+ off: false,
3211
+ fields: [],
3212
+ },
3213
+ ],
3214
+ },
3215
+ {
3216
+ id: 212860,
3217
+ parent: 212608,
3218
+ fieldDefinition: {
3219
+ id: 1455,
3220
+ name: "Component",
3221
+ description:
3222
+ "$[Totals,Menu,Kibana,Filter,Title] $instanceDescription $style[singleColumn] $expanded",
3223
+ condition: null,
3224
+ required: null,
3225
+ duplicable: true,
3226
+ groupField: false,
3227
+ order: 9,
3228
+ fields: [],
3229
+ },
3230
+ value: "Title",
3231
+ duplicate: true,
3232
+ off: false,
3233
+ fields: [
3234
+ {
3235
+ id: 212861,
3236
+ parent: 212860,
3237
+ fieldDefinition: {
3238
+ id: 1740,
3239
+ name: "Header",
3240
+ description: "$group ",
3241
+ condition: "=Totals",
3242
+ required: null,
3243
+ duplicable: false,
3244
+ groupField: true,
3245
+ order: 10,
3246
+ fields: [],
3247
+ },
3248
+ value: null,
3249
+ duplicate: false,
3250
+ off: false,
3251
+ fields: [
3252
+ {
3253
+ id: 212862,
3254
+ parent: 212861,
3255
+ fieldDefinition: {
3256
+ id: 1741,
3257
+ name: "Text",
3258
+ description: null,
3259
+ condition: null,
3260
+ required: null,
3261
+ duplicable: true,
3262
+ groupField: false,
3263
+ order: 11,
3264
+ fields: [],
3265
+ },
3266
+ value: null,
3267
+ duplicate: false,
3268
+ off: false,
3269
+ fields: [],
3270
+ },
3271
+ {
3272
+ id: -64,
3273
+ parent: 212861,
3274
+ fieldDefinition: {
3275
+ id: 1742,
3276
+ name: "Style Header",
3277
+ description: null,
3278
+ condition: null,
3279
+ required: null,
3280
+ duplicable: false,
3281
+ groupField: false,
3282
+ order: 12,
3283
+ fields: [],
3284
+ },
3285
+ value: null,
3286
+ duplicate: false,
3287
+ off: false,
3288
+ fields: [],
3289
+ },
3290
+ ],
3291
+ },
3292
+ {
3293
+ id: 212864,
3294
+ parent: 212860,
3295
+ fieldDefinition: {
3296
+ id: 1460,
3297
+ name: "Line",
3298
+ description: null,
3299
+ condition: "=Totals",
3300
+ required: null,
3301
+ duplicable: true,
3302
+ groupField: false,
3303
+ order: 13,
3304
+ fields: [],
3305
+ },
3306
+ value: null,
3307
+ duplicate: false,
3308
+ off: false,
3309
+ fields: [
3310
+ {
3311
+ id: 212865,
3312
+ parent: 212864,
3313
+ fieldDefinition: {
3314
+ id: 1744,
3315
+ name: "Value",
3316
+ description:
3317
+ "$[*definitionCount,domainCount,fieldSum,link] ",
3318
+ condition: null,
3319
+ required: null,
3320
+ duplicable: true,
3321
+ groupField: false,
3322
+ order: 14,
3323
+ fields: [],
3324
+ },
3325
+ value: null,
3326
+ duplicate: false,
3327
+ off: false,
3328
+ fields: [
3329
+ {
3330
+ id: 212866,
3331
+ parent: 212865,
3332
+ fieldDefinition: {
3333
+ id: 1464,
3334
+ name: "Style Value",
3335
+ description: "$[*Info,Success,Warning,Important]",
3336
+ condition: null,
3337
+ required: null,
3338
+ duplicable: false,
3339
+ groupField: false,
3340
+ order: 15,
3341
+ fields: [],
3342
+ },
3343
+ value: null,
3344
+ duplicate: false,
3345
+ off: false,
3346
+ fields: [],
3347
+ },
3348
+ {
3349
+ id: 212867,
3350
+ parent: 212865,
3351
+ fieldDefinition: {
3352
+ id: 1748,
3353
+ name: "Arg",
3354
+ description: null,
3355
+ condition: null,
3356
+ required: null,
3357
+ duplicable: true,
3358
+ groupField: false,
3359
+ order: 16,
3360
+ fields: [],
3361
+ },
3362
+ value: null,
3363
+ duplicate: false,
3364
+ off: false,
3365
+ fields: [],
3366
+ },
3367
+ ],
3368
+ },
3369
+ {
3370
+ id: -65,
3371
+ parent: 212864,
3372
+ fieldDefinition: {
3373
+ id: 1752,
3374
+ name: "Style Line",
3375
+ description: null,
3376
+ condition: null,
3377
+ required: null,
3378
+ duplicable: false,
3379
+ groupField: false,
3380
+ order: 17,
3381
+ fields: [],
3382
+ },
3383
+ value: null,
3384
+ duplicate: false,
3385
+ off: false,
3386
+ fields: [],
3387
+ },
3388
+ ],
3389
+ },
3390
+ {
3391
+ id: -66,
3392
+ parent: 212860,
3393
+ fieldDefinition: {
3394
+ id: 1458,
3395
+ name: "URL",
3396
+ description: null,
3397
+ condition: "=Kibana",
3398
+ required: null,
3399
+ duplicable: false,
3400
+ groupField: false,
3401
+ order: 18,
3402
+ fields: [],
3403
+ },
3404
+ value: null,
3405
+ duplicate: false,
3406
+ off: false,
3407
+ fields: [],
3408
+ },
3409
+ {
3410
+ id: -67,
3411
+ parent: 212860,
3412
+ fieldDefinition: {
3413
+ id: 1459,
3414
+ name: "FilterID",
3415
+ description: null,
3416
+ condition: "=Kibana",
3417
+ required: null,
3418
+ duplicable: false,
3419
+ groupField: false,
3420
+ order: 19,
3421
+ fields: [],
3422
+ },
3423
+ value: null,
3424
+ duplicate: false,
3425
+ off: false,
3426
+ fields: [],
3427
+ },
3428
+ {
3429
+ id: 212868,
3430
+ parent: 212860,
3431
+ fieldDefinition: {
3432
+ id: 1466,
3433
+ name: "Text",
3434
+ description: null,
3435
+ condition: "=Menu",
3436
+ required: null,
3437
+ duplicable: true,
3438
+ groupField: false,
3439
+ order: 20,
3440
+ fields: [],
3441
+ },
3442
+ value: null,
3443
+ duplicate: false,
3444
+ off: false,
3445
+ fields: [
3446
+ {
3447
+ id: -68,
3448
+ parent: 212868,
3449
+ fieldDefinition: {
3450
+ id: 1467,
3451
+ name: "Link",
3452
+ description: null,
3453
+ condition: null,
3454
+ required: null,
3455
+ duplicable: false,
3456
+ groupField: false,
3457
+ order: 21,
3458
+ fields: [],
3459
+ },
3460
+ value: null,
3461
+ duplicate: false,
3462
+ off: false,
3463
+ fields: [],
3464
+ },
3465
+ {
3466
+ id: -69,
3467
+ parent: 212868,
3468
+ fieldDefinition: {
3469
+ id: 1756,
3470
+ name: "Style Text",
3471
+ description: null,
3472
+ condition: null,
3473
+ required: null,
3474
+ duplicable: false,
3475
+ groupField: false,
3476
+ order: 22,
3477
+ fields: [],
3478
+ },
3479
+ value: null,
3480
+ duplicate: false,
3481
+ off: false,
3482
+ fields: [],
3483
+ },
3484
+ ],
3485
+ },
3486
+ {
3487
+ id: -70,
3488
+ parent: 212860,
3489
+ fieldDefinition: {
3490
+ id: 1471,
3491
+ name: "FilterID",
3492
+ description: null,
3493
+ condition: "=Filter",
3494
+ required: null,
3495
+ duplicable: false,
3496
+ groupField: false,
3497
+ order: 23,
3498
+ fields: [],
3499
+ },
3500
+ value: null,
3501
+ duplicate: false,
3502
+ off: false,
3503
+ fields: [],
3504
+ },
3505
+ {
3506
+ id: 212869,
3507
+ parent: 212860,
3508
+ fieldDefinition: {
3509
+ id: 1468,
3510
+ name: "subtype",
3511
+ description: "$[List,Text,Date]",
3512
+ condition: "=Filter",
3513
+ required: null,
3514
+ duplicable: true,
3515
+ groupField: false,
3516
+ order: 24,
3517
+ fields: [],
3518
+ },
3519
+ value: null,
3520
+ duplicate: false,
3521
+ off: false,
3522
+ fields: [
3523
+ {
3524
+ id: -71,
3525
+ parent: 212869,
3526
+ fieldDefinition: {
3527
+ id: 1469,
3528
+ name: "Alternatives",
3529
+ description: null,
3530
+ condition: "=List",
3531
+ required: null,
3532
+ duplicable: false,
3533
+ groupField: false,
3534
+ order: 25,
3535
+ fields: [],
3536
+ },
3537
+ value: null,
3538
+ duplicate: false,
3539
+ off: false,
3540
+ fields: [],
3541
+ },
3542
+ {
3543
+ id: -72,
3544
+ parent: 212869,
3545
+ fieldDefinition: {
3546
+ id: 1470,
3547
+ name: "DateFilterType",
3548
+ description: null,
3549
+ condition: "=Date",
3550
+ required: null,
3551
+ duplicable: false,
3552
+ groupField: false,
3553
+ order: 26,
3554
+ fields: [],
3555
+ },
3556
+ value: null,
3557
+ duplicate: false,
3558
+ off: false,
3559
+ fields: [],
3560
+ },
3561
+ ],
3562
+ },
3563
+ {
3564
+ id: -73,
3565
+ parent: 212860,
3566
+ fieldDefinition: {
3567
+ id: 1472,
3568
+ name: "Query",
3569
+ description: null,
3570
+ condition: "=MD List",
3571
+ required: null,
3572
+ duplicable: false,
3573
+ groupField: false,
3574
+ order: 27,
3575
+ fields: [],
3576
+ },
3577
+ value: null,
3578
+ duplicate: false,
3579
+ off: false,
3580
+ fields: [],
3581
+ },
3582
+ {
3583
+ id: 212863,
3584
+ parent: 212860,
3585
+ fieldDefinition: {
3586
+ id: 1757,
3587
+ name: "Title",
3588
+ description: null,
3589
+ condition: "=Title",
3590
+ required: null,
3591
+ duplicable: false,
3592
+ groupField: false,
3593
+ order: 28,
3594
+ fields: [],
3595
+ },
3596
+ value: "Prototypes",
3597
+ duplicate: false,
3598
+ off: false,
3599
+ fields: [],
3600
+ },
3601
+ ],
3602
+ },
3603
+ ],
3604
+ },
3605
+ ],
3606
+ _links: {
3607
+ size: "1",
3608
+ update: "recordm/instances/40700",
3609
+ },
3610
+ };
3611
+
3612
+ let dash = {
3613
+ "Page Title": "",
3614
+ "Grid Columns": "",
3615
+ "Max Width": "",
3616
+ "Board Title": [{
3617
+ "Col Span": "",
3618
+ "Row Span": "",
3619
+ "Component": []
3620
+ }],
3621
+ };
3622
+
3623
+ Sample.fields.reduce(collect, dash);
3624
+
3625
+
3626
+ ((tests) => {
3627
+ console.assert(dash["Page Title"] == "Main")
3628
+ console.assert(dash["Grid Columns"] == "5")
3629
+ console.assert(dash["Max Width"] == "3xl")
3630
+ console.assert(dash["Board Title"].length == 3)
3631
+
3632
+ console.assert(dash["Board Title"][0]["Board Title"] == "Main Menu")
3633
+ console.assert(dash["Board Title"][0]["Col Span"] == "2")
3634
+ console.assert(dash["Board Title"][0]["Row Span"] == "4")
3635
+ console.assert(dash["Board Title"][0]["Component"].length == "2")
3636
+
3637
+ console.assert(dash["Board Title"][1]["Board Title"] == "Learning Solution")
3638
+ console.assert(dash["Board Title"][1]["Col Span"] == "3")
3639
+ console.assert(dash["Board Title"][1]["Row Span"] == "4")
3640
+ console.assert(dash["Board Title"][1]["Component"].length == 2)
3641
+
3642
+ console.assert(dash["Board Title"][2]["Board Title"] == "Prototypes")
3643
+ console.assert(dash["Board Title"][2]["Col Span"] == "1")
3644
+ console.assert(dash["Board Title"][2]["Row Span"] == "4")
3645
+ console.assert(dash["Board Title"][2]["Component"].length == 2)
3646
+ console.log("DASH1",dash["Board Title"]);
3647
+ console.log("DASH1",dash["Board Title"][1]["Component"][0]);
3648
+ })()
3649
+
3650
+ const ComponentsTemplates = {
3651
+ "Title": {
3652
+ "Title": ""
3653
+ },
3654
+ "Totals" : {
3655
+ "Header": [{
3656
+ "Text": [{}],
3657
+ "Style Header": ""
3658
+ }],
3659
+ "Line": [{
3660
+ "Style Line": "",
3661
+ "Value": [{
3662
+ "Style Value": "",
3663
+ "Arg": [{}]
3664
+ }]
3665
+ }]
3666
+ },
3667
+ "Menu": {
3668
+ "Text": [{
3669
+ "Link": "",
3670
+ "Style Text": ""
3671
+ }]
3672
+ }
3673
+ }
3674
+
3675
+ for(board of dash["Board Title"]) {
3676
+ let componentsList = clone([])
3677
+ for( component of board["Component"]) {
3678
+ let componentTemplate = clone(ComponentsTemplates[component["Component"]])
3679
+ component.fields.reduce(collect,componentTemplate)
3680
+ componentTemplate["Component"] = component.Component
3681
+ componentsList.push(componentTemplate)
3682
+ }
3683
+ board["Component"] = componentsList
3684
+ }
3685
+
3686
+
3687
+ (() => {
3688
+ console.assert(dash["Board Title"][0]["Component"].length = 2)
3689
+ console.assert(dash["Board Title"][0]["Component"][0]["Component"] == "Menu")
3690
+ console.assert(dash["Board Title"][0]["Component"][0]["Text"].length == 6)
3691
+ console.assert(dash["Board Title"][0]["Component"][0]["Text"][0]["Link"] == "/docs/")
3692
+ console.assert(dash["Board Title"][0]["Component"][0]["Text"][0]["Style Text"] == "p-10")
3693
+ console.assert(dash["Board Title"][0]["Component"][0]["Text"][0]["Text"] == "E-Learning Docs")
3694
+ console.assert(dash["Board Title"][0]["Component"][0]["Text"][5]["Link"] == "#/definitions/108/q=")
3695
+ console.assert(dash["Board Title"][0]["Component"][0]["Text"][5]["Style Text"] == null)
3696
+ console.assert(dash["Board Title"][0]["Component"][0]["Text"][5]["Text"] == "Dashboards")
3697
+
3698
+ console.assert(dash["Board Title"][0]["Component"][1]["Component"] == "Title")
3699
+ console.assert(dash["Board Title"][0]["Component"][1]["Title"] == "Main Menu")
3700
+
3701
+ console.assert(dash["Board Title"][1]["Component"].length = 2)
3702
+ console.assert(dash["Board Title"][1]["Component"][0]["Component"] == "Totals")
3703
+ console.assert(dash["Board Title"][1]["Component"][0]["Header"].length == 1)
3704
+ console.assert(dash["Board Title"][1]["Component"][0]["Header"][0]["Header"] == null)
3705
+ console.assert(dash["Board Title"][1]["Component"][0]["Header"][0]["Style Header"] == null)
3706
+ console.assert(dash["Board Title"][1]["Component"][0]["Header"][0]["Text"].length == 1)
3707
+ console.assert(dash["Board Title"][1]["Component"][0]["Header"][0]["Text"][0]["Text"] == null)
3708
+ console.assert(dash["Board Title"][1]["Component"][0]["Line"].length == 5)
3709
+ console.assert(dash["Board Title"][1]["Component"][0]["Line"][0]["Line"] == "Contents")
3710
+ console.assert(dash["Board Title"][1]["Component"][0]["Line"][1]["Line"] == "RFCs")
3711
+ console.assert(dash["Board Title"][1]["Component"][0]["Line"][2]["Line"] == "- To Review")
3712
+ console.assert(dash["Board Title"][1]["Component"][0]["Line"][3]["Line"] == "- Reviewed")
3713
+ console.assert(dash["Board Title"][1]["Component"][0]["Line"][4]["Line"] == "- Processed")
3714
+ console.assert(dash["Board Title"][1]["Component"][0]["Line"][0]["Style Line"] == null)
3715
+ console.assert(dash["Board Title"][1]["Component"][0]["Line"][1]["Style Line"] == null)
3716
+ console.assert(dash["Board Title"][1]["Component"][0]["Line"][2]["Style Line"] == "text-center")
3717
+ console.assert(dash["Board Title"][1]["Component"][0]["Line"][3]["Style Line"] == "text-center")
3718
+ console.assert(dash["Board Title"][1]["Component"][0]["Line"][4]["Style Line"] == "text-center")
3719
+ console.assert(dash["Board Title"][1]["Component"][0]["Line"][0]["Value"].length == 1)
3720
+ console.assert(dash["Board Title"][1]["Component"][0]["Line"][1]["Value"].length == 1)
3721
+ console.assert(dash["Board Title"][1]["Component"][0]["Line"][2]["Value"].length == 1)
3722
+ console.assert(dash["Board Title"][1]["Component"][0]["Line"][3]["Value"].length == 1)
3723
+ console.assert(dash["Board Title"][1]["Component"][0]["Line"][4]["Value"].length == 1)
3724
+
3725
+ console.assert(dash["Board Title"][1]["Component"][1]["Component"] == "Title")
3726
+ console.assert(dash["Board Title"][1]["Component"][1]["Title"] == "Learning Solution")
3727
+
3728
+ console.assert(dash["Board Title"][2]["Component"].length = 2)
3729
+
3730
+ console.log(dash);
3731
+ debugger
3732
+ })()