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
@@ -1,10 +1,12 @@
1
1
  <template>
2
2
  <ul class="space-y-2 text-slate-700 decoration-slate-700">
3
- <li v-for="(item, i) in componentData.items" :key="item.text + i"
3
+ <li v-for="(menuItem, i) in menuItems"
4
+ :key="'menuItem-' + i"
4
5
  :class="'transition ease-in-out duration-300 rounded-md border border-cobline border-l-2 border-l-sky-600 shadow-sm transform hover:translate-x-0.5 '
5
- + item.text_style">
6
- <a :href="item.link" class="flex items-center font-light py-1 px-3">
7
- <span v-html="item.text"/>
6
+ + menuItem.style"
7
+ >
8
+ <a :href="menuItem.link" class="flex items-center font-light py-1 px-3" >
9
+ <span v-html="menuItem.text"/>
8
10
  </a>
9
11
  </li>
10
12
  </ul>
@@ -14,6 +16,15 @@
14
16
  export default {
15
17
  props: {
16
18
  componentData: Object
19
+ },
20
+ computed: {
21
+ menuItems() {
22
+ return this.componentData['Text'].map( m => ({
23
+ text: m['Text'],
24
+ link: m['Link'],
25
+ style: m['Style Text'],
26
+ }))
27
+ }
17
28
  }
18
29
  }
19
30
  </script>
@@ -1,6 +1,6 @@
1
1
  <template>
2
- <div class="text-slate-700 uppercase tracking-wider border-b border-b-cobline/50 pb-1 text-xs text-center">
3
- <span v-html="componentData.title_text"/>
2
+ <div :class="'text-slate-700 uppercase tracking-wider border-b border-b-cobline/50 pb-1 text-xs text-center ' + style">
3
+ <span v-html="title"/>
4
4
  </div>
5
5
  </template>
6
6
 
@@ -8,6 +8,14 @@
8
8
  export default {
9
9
  props: {
10
10
  componentData: Object
11
+ },
12
+ computed: {
13
+ title() {
14
+ return this.componentData['Title']
15
+ },
16
+ style() {
17
+ return this.componentData['Style Text']
18
+ },
11
19
  }
12
20
  }
13
21
  </script>
@@ -10,10 +10,10 @@
10
10
  <tbody>
11
11
  <tr v-for="(line, i) in lines" :key="'line'+i"
12
12
  class="text-slate-700">
13
- <td :class="'py-2 ' + line.text_style">{{ line.text }}</td>
14
- <td v-for="(badge, j) in line.values" :key="'badge'+j"
13
+ <td :class="'py-2 ' + line.style">{{ line.name }}</td>
14
+ <td v-for="(value, j) in line.values" :key="'value'+j"
15
15
  class="py-2 text-right">
16
- <TotalsBadge :badge-data="badge" />
16
+ <TotalsValue :value-data="value" />
17
17
  </td>
18
18
  </tr>
19
19
  </tbody>
@@ -21,11 +21,24 @@
21
21
  </template>
22
22
 
23
23
  <script>
24
- import TotalsBadge from './TotalsBadge.vue'
24
+ import TotalsValue from './TotalsValue.vue'
25
25
  export default {
26
- components: { TotalsBadge },
26
+ components: { TotalsValue },
27
27
  props: { componentData: Object },
28
28
  computed: {
29
+ headers() {
30
+ return this.componentData['Header'][0]['Text'].filter(x => !!x).map(h => h['Text'])
31
+ },
32
+ headers_style() {
33
+ return this.componentData['Header'][0]['Style Header']
34
+ },
35
+ lines() {
36
+ return this.componentData['Line'].map( l => ({
37
+ name : l['Line'],
38
+ style : l['Style Line'],
39
+ values: l['Value']
40
+ }))
41
+ },
29
42
  valuesGridClass() {
30
43
  const dynamicClasses = {
31
44
  1: "grid-cols-1",
@@ -44,10 +57,7 @@ export default {
44
57
  }
45
58
  // Grid with cols == amount of values
46
59
  return "grid " + dynamicClasses[this.lines[0].values.length]
47
- },
48
- headers() { return this.componentData.headers.filter(x => !!x) },
49
- headers_style() { return this.componentData.headers_style },
50
- lines() { return this.componentData.lines }
60
+ }
51
61
  }
52
62
  }
53
63
  </script>
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div :class="{'animate-pulse':signalChange}">
3
- <a :href="badgeData.dash_info.href" :class="valueClass" class="relative inline-flex">
3
+ <a :href="valueData.dash_info.href" :class="valueClass" class="relative inline-flex">
4
4
  <span v-html="value"/>
5
5
 
6
6
  <svg v-if="updating" class="absolute animate-spin -top-1 -right-1 h-2 w-2" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
@@ -15,7 +15,7 @@
15
15
 
16
16
  export default {
17
17
  props: {
18
- badgeData: Object
18
+ valueData: Object
19
19
  },
20
20
  data () {
21
21
  return {
@@ -32,19 +32,19 @@ export default {
32
32
  },
33
33
  computed: {
34
34
  updating() {
35
- return this.badgeData.dash_info.state == "updating" || this.badgeData.dash_info.state == "loading"
35
+ return this.valueData.dash_info.state == "updating" || this.valueData.dash_info.state == "loading"
36
36
  },
37
37
  value() {
38
- if(this.badgeData.dash_info.state == "loading") return "L"
39
- if(this.badgeData.dash_info.state == "error") return "E"
40
- if(isNaN(this.badgeData.dash_info.value)) {
41
- return this.badgeData.dash_info.value
38
+ if(this.valueData.dash_info.state == "loading") return "L"
39
+ if(this.valueData.dash_info.state == "error") return "E"
40
+ if(isNaN(this.valueData.dash_info.value)) {
41
+ return this.valueData.dash_info.value
42
42
  } else {
43
- return new Intl.NumberFormat('en-US', {}).format(this.badgeData.dash_info.value)
43
+ return new Intl.NumberFormat('en-US', {}).format(this.valueData.dash_info.value)
44
44
  }
45
45
  },
46
46
  state() {
47
- return this.badgeData.dash_info.state
47
+ return this.valueData.dash_info.state
48
48
  },
49
49
  valueClass() {
50
50
  let c = "relative transition ease-in-out px-2 py-1 rounded-md text-center font-mono font-semibold transition border ring-offset-1 hover:ring-2"
@@ -59,10 +59,10 @@ export default {
59
59
  "Fallback": "text-slate-700 ring-slate-700",
60
60
  }
61
61
 
62
- if(this.badgeData.dash_info.state == "loading") return c + " " + lookup["Warning"]
63
- if(this.badgeData.dash_info.state == "error") return c + " " + lookup["Important"]
62
+ if(this.valueData.dash_info.state == "loading") return c + " " + lookup["Warning"]
63
+ if(this.valueData.dash_info.state == "error") return c + " " + lookup["Important"]
64
64
 
65
- return c + " " + (this.badgeData.dash_info.value == 0 ? lookup["Gray"] : lookup[this.badgeData.style] ? lookup[this.badgeData.style] : lookup["Fallback"])
65
+ return c + " " + (this.valueData.dash_info.value == 0 ? lookup["Gray"] : lookup[this.valueData.style] ? lookup[this.valueData.style] : lookup["Fallback"])
66
66
  }
67
67
  }
68
68
  }
@@ -20,10 +20,15 @@
20
20
  <% } %>
21
21
  <style>section.custom-resource{visibility: hidden;opacity:0;}</style>
22
22
  <div id="app"></div>
23
- <script>
23
+ <script>
24
24
  // mimes: .cob-app tem estilos globais que se aplicam a elementos vuetify que mudam o aspecto previsto
25
25
  let section = document.getElementsByClassName("custom-resource")[0];
26
26
  section && section.classList.remove("cob-app"); //TODO: validar que isto é a melhor opção (considerar remover class na ui-all)
27
+
28
+ // se header não está visivel posiciona o top a 0
29
+ if(document.getElementById("header").style['display'] == 'none') {
30
+ section.style['top'] = "0px"
31
+ }
27
32
  </script>
28
33
  <% for (var chunk in htmlWebpackPlugin.files.chunks) { %>
29
34
  <script type="text/javascript" src="<%= htmlWebpackPlugin.files.chunks[chunk].entry %>"></script>
@@ -0,0 +1,394 @@
1
+ {
2
+ "id": null,
3
+ "name": "Dashboard",
4
+ "description": null,
5
+ "duplicable": null,
6
+ "state": "enabled",
7
+ "fieldDefinitions": [
8
+ {
9
+ "id": null,
10
+ "name": "Dashboard Info",
11
+ "required": null,
12
+ "description": "$group",
13
+ "condition": null,
14
+ "duplicable": false,
15
+ "fields": [],
16
+ "order": 0,
17
+ "rootField": true,
18
+ "restricted": false,
19
+ "defaultValue": null
20
+ },
21
+ {
22
+ "id": null,
23
+ "name": "Page Title",
24
+ "required": null,
25
+ "description": "$expanded $instanceLabel",
26
+ "condition": null,
27
+ "duplicable": false,
28
+ "fields": [],
29
+ "order": 1,
30
+ "rootField": true,
31
+ "restricted": false,
32
+ "defaultValue": null
33
+ },
34
+ {
35
+ "id": null,
36
+ "name": "Grid Columns",
37
+ "required": "mandatory",
38
+ "description": "$number $default(12)",
39
+ "condition": null,
40
+ "duplicable": false,
41
+ "fields": [],
42
+ "order": 2,
43
+ "rootField": true,
44
+ "restricted": false,
45
+ "defaultValue": "12"
46
+ },
47
+ {
48
+ "id": null,
49
+ "name": "Max Width",
50
+ "required": "mandatory",
51
+ "description": "$[xl,2xl,3xl,4xl,5xl,*6xl,full]",
52
+ "condition": null,
53
+ "duplicable": false,
54
+ "fields": [],
55
+ "order": 3,
56
+ "rootField": true,
57
+ "restricted": false,
58
+ "defaultValue": "6xl"
59
+ },
60
+ {
61
+ "id": null,
62
+ "name": "Permission",
63
+ "required": null,
64
+ "description": "What groups are allowed to see this dashboard",
65
+ "condition": null,
66
+ "duplicable": false,
67
+ "fields": [],
68
+ "order": 4,
69
+ "rootField": true,
70
+ "restricted": false,
71
+ "defaultValue": null
72
+ },
73
+ {
74
+ "id": null,
75
+ "name": "Boards",
76
+ "required": null,
77
+ "description": "$group",
78
+ "condition": null,
79
+ "duplicable": false,
80
+ "fields": [],
81
+ "order": 5,
82
+ "rootField": true,
83
+ "restricted": false,
84
+ "defaultValue": null
85
+ },
86
+ {
87
+ "id": null,
88
+ "name": "Board Title",
89
+ "required": null,
90
+ "description": "$instanceDescription $style[dualColumn]",
91
+ "condition": null,
92
+ "duplicable": true,
93
+ "fields": [
94
+ {
95
+ "id": null,
96
+ "name": "Col Span",
97
+ "required": null,
98
+ "description": "$number $default(3) ",
99
+ "condition": null,
100
+ "duplicable": false,
101
+ "fields": [],
102
+ "order": 7,
103
+ "rootField": false,
104
+ "restricted": false,
105
+ "defaultValue": "3"
106
+ },
107
+ {
108
+ "id": null,
109
+ "name": "Row Span",
110
+ "required": null,
111
+ "description": "$number $default(1) ",
112
+ "condition": null,
113
+ "duplicable": false,
114
+ "fields": [],
115
+ "order": 8,
116
+ "rootField": false,
117
+ "restricted": false,
118
+ "defaultValue": "1"
119
+ },
120
+ {
121
+ "id": null,
122
+ "name": "Component",
123
+ "required": null,
124
+ "description": "$[Totals,Menu,Kibana,Filter,Title] $instanceDescription $style[singleColumn] $expanded",
125
+ "condition": null,
126
+ "duplicable": true,
127
+ "fields": [
128
+ {
129
+ "id": null,
130
+ "name": "Header",
131
+ "required": null,
132
+ "description": "$group ",
133
+ "condition": "=Totals",
134
+ "duplicable": false,
135
+ "fields": [
136
+ {
137
+ "id": null,
138
+ "name": "Text",
139
+ "required": null,
140
+ "description": null,
141
+ "condition": null,
142
+ "duplicable": true,
143
+ "fields": [],
144
+ "order": 11,
145
+ "rootField": false,
146
+ "restricted": false,
147
+ "defaultValue": null
148
+ },
149
+ {
150
+ "id": null,
151
+ "name": "Style Header",
152
+ "required": null,
153
+ "description": null,
154
+ "condition": null,
155
+ "duplicable": false,
156
+ "fields": [],
157
+ "order": 12,
158
+ "rootField": false,
159
+ "restricted": false,
160
+ "defaultValue": null
161
+ }
162
+ ],
163
+ "order": 10,
164
+ "rootField": false,
165
+ "restricted": false,
166
+ "defaultValue": null
167
+ },
168
+ {
169
+ "id": null,
170
+ "name": "Line",
171
+ "required": null,
172
+ "description": null,
173
+ "condition": "=Totals",
174
+ "duplicable": true,
175
+ "fields": [
176
+ {
177
+ "id": null,
178
+ "name": "Value",
179
+ "required": null,
180
+ "description": "$[*definitionCount,domainCount,fieldSum,link] ",
181
+ "condition": null,
182
+ "duplicable": true,
183
+ "fields": [
184
+ {
185
+ "id": null,
186
+ "name": "Style Value",
187
+ "required": null,
188
+ "description": "$[*Info,Success,Warning,Important]",
189
+ "condition": null,
190
+ "duplicable": false,
191
+ "fields": [],
192
+ "order": 15,
193
+ "rootField": false,
194
+ "restricted": false,
195
+ "defaultValue": "Info"
196
+ },
197
+ {
198
+ "id": null,
199
+ "name": "Arg",
200
+ "required": null,
201
+ "description": null,
202
+ "condition": null,
203
+ "duplicable": true,
204
+ "fields": [],
205
+ "order": 16,
206
+ "rootField": false,
207
+ "restricted": false,
208
+ "defaultValue": null
209
+ }
210
+ ],
211
+ "order": 14,
212
+ "rootField": false,
213
+ "restricted": false,
214
+ "defaultValue": "definitionCount"
215
+ },
216
+ {
217
+ "id": null,
218
+ "name": "Style Line",
219
+ "required": null,
220
+ "description": null,
221
+ "condition": null,
222
+ "duplicable": false,
223
+ "fields": [],
224
+ "order": 17,
225
+ "rootField": false,
226
+ "restricted": false,
227
+ "defaultValue": null
228
+ }
229
+ ],
230
+ "order": 13,
231
+ "rootField": false,
232
+ "restricted": false,
233
+ "defaultValue": null
234
+ },
235
+ {
236
+ "id": null,
237
+ "name": "URL",
238
+ "required": null,
239
+ "description": null,
240
+ "condition": "=Kibana",
241
+ "duplicable": false,
242
+ "fields": [],
243
+ "order": 18,
244
+ "rootField": false,
245
+ "restricted": false,
246
+ "defaultValue": null
247
+ },
248
+ {
249
+ "id": null,
250
+ "name": "FilterID",
251
+ "required": null,
252
+ "description": null,
253
+ "condition": "=Kibana",
254
+ "duplicable": false,
255
+ "fields": [],
256
+ "order": 19,
257
+ "rootField": false,
258
+ "restricted": false,
259
+ "defaultValue": null
260
+ },
261
+ {
262
+ "id": null,
263
+ "name": "Text",
264
+ "required": null,
265
+ "description": null,
266
+ "condition": "=Menu",
267
+ "duplicable": true,
268
+ "fields": [
269
+ {
270
+ "id": null,
271
+ "name": "Link",
272
+ "required": null,
273
+ "description": null,
274
+ "condition": null,
275
+ "duplicable": false,
276
+ "fields": [],
277
+ "order": 21,
278
+ "rootField": false,
279
+ "restricted": false,
280
+ "defaultValue": null
281
+ },
282
+ {
283
+ "id": null,
284
+ "name": "Style Text",
285
+ "required": null,
286
+ "description": null,
287
+ "condition": null,
288
+ "duplicable": false,
289
+ "fields": [],
290
+ "order": 22,
291
+ "rootField": false,
292
+ "restricted": false,
293
+ "defaultValue": null
294
+ }
295
+ ],
296
+ "order": 20,
297
+ "rootField": false,
298
+ "restricted": false,
299
+ "defaultValue": null
300
+ },
301
+ {
302
+ "id": null,
303
+ "name": "FilterID",
304
+ "required": null,
305
+ "description": null,
306
+ "condition": "=Filter",
307
+ "duplicable": false,
308
+ "fields": [],
309
+ "order": 23,
310
+ "rootField": false,
311
+ "restricted": false,
312
+ "defaultValue": null
313
+ },
314
+ {
315
+ "id": null,
316
+ "name": "subtype",
317
+ "required": null,
318
+ "description": "$[List,Text,Date]",
319
+ "condition": "=Filter",
320
+ "duplicable": true,
321
+ "fields": [
322
+ {
323
+ "id": null,
324
+ "name": "Alternatives",
325
+ "required": null,
326
+ "description": null,
327
+ "condition": "=List",
328
+ "duplicable": false,
329
+ "fields": [],
330
+ "order": 25,
331
+ "rootField": false,
332
+ "restricted": false,
333
+ "defaultValue": null
334
+ },
335
+ {
336
+ "id": null,
337
+ "name": "DateFilterType",
338
+ "required": null,
339
+ "description": null,
340
+ "condition": "=Date",
341
+ "duplicable": false,
342
+ "fields": [],
343
+ "order": 26,
344
+ "rootField": false,
345
+ "restricted": false,
346
+ "defaultValue": null
347
+ }
348
+ ],
349
+ "order": 24,
350
+ "rootField": false,
351
+ "restricted": false,
352
+ "defaultValue": null
353
+ },
354
+ {
355
+ "id": null,
356
+ "name": "Query",
357
+ "required": null,
358
+ "description": null,
359
+ "condition": "=MD List",
360
+ "duplicable": false,
361
+ "fields": [],
362
+ "order": 27,
363
+ "rootField": false,
364
+ "restricted": false,
365
+ "defaultValue": null
366
+ },
367
+ {
368
+ "id": null,
369
+ "name": "Title",
370
+ "required": null,
371
+ "description": null,
372
+ "condition": "=Title",
373
+ "duplicable": false,
374
+ "fields": [],
375
+ "order": 28,
376
+ "rootField": false,
377
+ "restricted": false,
378
+ "defaultValue": null
379
+ }
380
+ ],
381
+ "order": 9,
382
+ "rootField": false,
383
+ "restricted": false,
384
+ "defaultValue": null
385
+ }
386
+ ],
387
+ "order": 6,
388
+ "rootField": true,
389
+ "restricted": false,
390
+ "defaultValue": null
391
+ }
392
+ ],
393
+ "version": null
394
+ }