pict-section-formeditor 1.0.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 (178) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +118 -0
  3. package/docs/.nojekyll +0 -0
  4. package/docs/README.md +162 -0
  5. package/docs/_sidebar.md +23 -0
  6. package/docs/_topbar.md +5 -0
  7. package/docs/cover.md +12 -0
  8. package/docs/css/docuserve.css +73 -0
  9. package/docs/index.html +39 -0
  10. package/docs/retold-catalog.json +224 -0
  11. package/docs/retold-keyword-index.json +46846 -0
  12. package/example_applications/form_editor/.quackage.json +10 -0
  13. package/example_applications/form_editor/FormEditor-Example-Application.js +226 -0
  14. package/example_applications/form_editor/html/icon-chooser.html +375 -0
  15. package/example_applications/form_editor/html/index.html +54 -0
  16. package/example_applications/form_editor/package.json +50 -0
  17. package/package.json +55 -0
  18. package/sample_manifests/Complex-Table.json +974 -0
  19. package/sample_manifests/Distill-Example.json +200 -0
  20. package/sample_manifests/Gradebook-Assignment.json +38 -0
  21. package/sample_manifests/Gradebook-Student.json +40 -0
  22. package/sample_manifests/Manyfest-Editor.json +347 -0
  23. package/sample_manifests/Simple-Form.json +232 -0
  24. package/sample_manifests/Simple-Table.json +79 -0
  25. package/source/Pict-Section-FormEditor-DefaultConfiguration.js +3321 -0
  26. package/source/Pict-Section-FormEditor.js +35 -0
  27. package/source/providers/Pict-Provider-ChildPictManager-Application.js +40 -0
  28. package/source/providers/Pict-Provider-ChildPictManager.js +238 -0
  29. package/source/providers/Pict-Provider-FormEditorDocumentation.js +356 -0
  30. package/source/providers/Pict-Provider-FormEditorDragDrop.js +535 -0
  31. package/source/providers/Pict-Provider-FormEditorIconography.js +1002 -0
  32. package/source/providers/Pict-Provider-FormEditorManifestOps.js +1443 -0
  33. package/source/providers/Pict-Provider-FormEditorRendering.js +730 -0
  34. package/source/providers/Pict-Provider-FormEditorUtilities.js +862 -0
  35. package/source/providers/Pict-Provider-PreviewCSS.js +42 -0
  36. package/source/views/PictView-FormEditor-InlineEditing.js +309 -0
  37. package/source/views/PictView-FormEditor-InputTypePicker.js +532 -0
  38. package/source/views/PictView-FormEditor-PropertiesPanel.js +7730 -0
  39. package/source/views/PictView-FormEditor.js +681 -0
  40. package/test/Pict-Section-FormEditor_tests.js +4102 -0
  41. package/user-documentation/.pict_documentation_topics.json +695 -0
  42. package/user-documentation/Getting-Started.md +32 -0
  43. package/user-documentation/Groups.md +52 -0
  44. package/user-documentation/Inputs.md +98 -0
  45. package/user-documentation/Sections.md +36 -0
  46. package/user-documentation/Shortcuts.md +44 -0
  47. package/user-documentation/Solver-Expression-Walkthrough.md +176 -0
  48. package/user-documentation/Solver-Expressions-Advanced.md +344 -0
  49. package/user-documentation/Solver-Functions.md +213 -0
  50. package/user-documentation/Solvers.md +81 -0
  51. package/user-documentation/ToC.md +18 -0
  52. package/user-documentation/solverfunctions/abs.md +84 -0
  53. package/user-documentation/solverfunctions/aggregationhistogram.md +83 -0
  54. package/user-documentation/solverfunctions/aggregationhistogrambyobject.md +64 -0
  55. package/user-documentation/solverfunctions/arrayconcat.md +64 -0
  56. package/user-documentation/solverfunctions/avg.md +81 -0
  57. package/user-documentation/solverfunctions/bucketset.md +69 -0
  58. package/user-documentation/solverfunctions/ceil.md +70 -0
  59. package/user-documentation/solverfunctions/cleanvaluearray.md +66 -0
  60. package/user-documentation/solverfunctions/cleanvalueobject.md +68 -0
  61. package/user-documentation/solverfunctions/colorgroupbackground.md +60 -0
  62. package/user-documentation/solverfunctions/colorinputbackground.md +62 -0
  63. package/user-documentation/solverfunctions/colorinputbackgroundtabular.md +64 -0
  64. package/user-documentation/solverfunctions/colorsectionbackground.md +59 -0
  65. package/user-documentation/solverfunctions/compare.md +72 -0
  66. package/user-documentation/solverfunctions/concat.md +73 -0
  67. package/user-documentation/solverfunctions/concatraw.md +73 -0
  68. package/user-documentation/solverfunctions/cos.md +75 -0
  69. package/user-documentation/solverfunctions/count.md +73 -0
  70. package/user-documentation/solverfunctions/countset.md +65 -0
  71. package/user-documentation/solverfunctions/countsetelements.md +63 -0
  72. package/user-documentation/solverfunctions/createarrayfromabsolutevalues.md +63 -0
  73. package/user-documentation/solverfunctions/createvalueobjectbyhashes.md +69 -0
  74. package/user-documentation/solverfunctions/cumulativesummation.md +96 -0
  75. package/user-documentation/solverfunctions/dateadddays.md +79 -0
  76. package/user-documentation/solverfunctions/dateaddhours.md +74 -0
  77. package/user-documentation/solverfunctions/dateaddmilliseconds.md +65 -0
  78. package/user-documentation/solverfunctions/dateaddminutes.md +72 -0
  79. package/user-documentation/solverfunctions/dateaddmonths.md +74 -0
  80. package/user-documentation/solverfunctions/dateaddseconds.md +66 -0
  81. package/user-documentation/solverfunctions/dateaddweeks.md +73 -0
  82. package/user-documentation/solverfunctions/dateaddyears.md +74 -0
  83. package/user-documentation/solverfunctions/datedaydifference.md +84 -0
  84. package/user-documentation/solverfunctions/datefromparts.md +81 -0
  85. package/user-documentation/solverfunctions/datehourdifference.md +64 -0
  86. package/user-documentation/solverfunctions/datemathadd.md +72 -0
  87. package/user-documentation/solverfunctions/datemilliseconddifference.md +64 -0
  88. package/user-documentation/solverfunctions/dateminutedifference.md +64 -0
  89. package/user-documentation/solverfunctions/datemonthdifference.md +66 -0
  90. package/user-documentation/solverfunctions/dateseconddifference.md +64 -0
  91. package/user-documentation/solverfunctions/dateweekdifference.md +65 -0
  92. package/user-documentation/solverfunctions/dateyeardifference.md +64 -0
  93. package/user-documentation/solverfunctions/differencearrays.md +59 -0
  94. package/user-documentation/solverfunctions/disablesolverordinal.md +58 -0
  95. package/user-documentation/solverfunctions/distributionhistogram.md +96 -0
  96. package/user-documentation/solverfunctions/distributionhistogrambyobject.md +64 -0
  97. package/user-documentation/solverfunctions/enablesolverordinal.md +57 -0
  98. package/user-documentation/solverfunctions/entryinset.md +72 -0
  99. package/user-documentation/solverfunctions/euler.md +77 -0
  100. package/user-documentation/solverfunctions/exp.md +74 -0
  101. package/user-documentation/solverfunctions/findfirstvaluebyexactmatch.md +67 -0
  102. package/user-documentation/solverfunctions/findfirstvaluebystringincludes.md +67 -0
  103. package/user-documentation/solverfunctions/flatten.md +76 -0
  104. package/user-documentation/solverfunctions/floor.md +70 -0
  105. package/user-documentation/solverfunctions/gaussianelimination.md +75 -0
  106. package/user-documentation/solverfunctions/generatearrayofobjectsfromsets.md +70 -0
  107. package/user-documentation/solverfunctions/generatehtmlhexcolor.md +67 -0
  108. package/user-documentation/solverfunctions/getvalue.md +90 -0
  109. package/user-documentation/solverfunctions/getvaluearray.md +64 -0
  110. package/user-documentation/solverfunctions/getvalueobject.md +67 -0
  111. package/user-documentation/solverfunctions/hidesections.md +58 -0
  112. package/user-documentation/solverfunctions/if.md +109 -0
  113. package/user-documentation/solverfunctions/iterativeseries.md +107 -0
  114. package/user-documentation/solverfunctions/join.md +75 -0
  115. package/user-documentation/solverfunctions/joinraw.md +64 -0
  116. package/user-documentation/solverfunctions/largestinset.md +63 -0
  117. package/user-documentation/solverfunctions/leastsquares.md +66 -0
  118. package/user-documentation/solverfunctions/linest.md +58 -0
  119. package/user-documentation/solverfunctions/log.md +74 -0
  120. package/user-documentation/solverfunctions/logvalues.md +65 -0
  121. package/user-documentation/solverfunctions/match.md +71 -0
  122. package/user-documentation/solverfunctions/matrixinverse.md +67 -0
  123. package/user-documentation/solverfunctions/matrixmultiply.md +71 -0
  124. package/user-documentation/solverfunctions/matrixtranspose.md +72 -0
  125. package/user-documentation/solverfunctions/matrixvectormultiply.md +69 -0
  126. package/user-documentation/solverfunctions/max.md +73 -0
  127. package/user-documentation/solverfunctions/mean.md +63 -0
  128. package/user-documentation/solverfunctions/median.md +79 -0
  129. package/user-documentation/solverfunctions/min.md +73 -0
  130. package/user-documentation/solverfunctions/mode.md +66 -0
  131. package/user-documentation/solverfunctions/objectkeystoarray.md +66 -0
  132. package/user-documentation/solverfunctions/objectvaluessortbyexternalobjectarray.md +65 -0
  133. package/user-documentation/solverfunctions/objectvaluestoarray.md +67 -0
  134. package/user-documentation/solverfunctions/percent.md +75 -0
  135. package/user-documentation/solverfunctions/pi.md +77 -0
  136. package/user-documentation/solverfunctions/polynomialregression.md +69 -0
  137. package/user-documentation/solverfunctions/predict.md +71 -0
  138. package/user-documentation/solverfunctions/rad.md +85 -0
  139. package/user-documentation/solverfunctions/randomfloat.md +63 -0
  140. package/user-documentation/solverfunctions/randomfloatbetween.md +72 -0
  141. package/user-documentation/solverfunctions/randomfloatupto.md +65 -0
  142. package/user-documentation/solverfunctions/randominteger.md +56 -0
  143. package/user-documentation/solverfunctions/randomintegerbetween.md +72 -0
  144. package/user-documentation/solverfunctions/randomintegerupto.md +64 -0
  145. package/user-documentation/solverfunctions/refreshtabularsection.md +57 -0
  146. package/user-documentation/solverfunctions/resolvehtmlentities.md +64 -0
  147. package/user-documentation/solverfunctions/round.md +111 -0
  148. package/user-documentation/solverfunctions/runsolvers.md +49 -0
  149. package/user-documentation/solverfunctions/setconcatenate.md +64 -0
  150. package/user-documentation/solverfunctions/setgroupvisibility.md +60 -0
  151. package/user-documentation/solverfunctions/setsectionvisibility.md +59 -0
  152. package/user-documentation/solverfunctions/setsolverordinalenabled.md +59 -0
  153. package/user-documentation/solverfunctions/settabularrowlength.md +57 -0
  154. package/user-documentation/solverfunctions/setvalue.md +65 -0
  155. package/user-documentation/solverfunctions/showsections.md +58 -0
  156. package/user-documentation/solverfunctions/sin.md +83 -0
  157. package/user-documentation/solverfunctions/slice.md +80 -0
  158. package/user-documentation/solverfunctions/smallestinset.md +63 -0
  159. package/user-documentation/solverfunctions/sortarray.md +58 -0
  160. package/user-documentation/solverfunctions/sorthistogram.md +70 -0
  161. package/user-documentation/solverfunctions/sorthistogrambykeys.md +69 -0
  162. package/user-documentation/solverfunctions/sortset.md +75 -0
  163. package/user-documentation/solverfunctions/sqrt.md +85 -0
  164. package/user-documentation/solverfunctions/stdev.md +81 -0
  165. package/user-documentation/solverfunctions/stdeva.md +58 -0
  166. package/user-documentation/solverfunctions/stdevp.md +83 -0
  167. package/user-documentation/solverfunctions/stringcountsegments.md +66 -0
  168. package/user-documentation/solverfunctions/stringgetsegments.md +74 -0
  169. package/user-documentation/solverfunctions/subtractingsummation.md +66 -0
  170. package/user-documentation/solverfunctions/sum.md +78 -0
  171. package/user-documentation/solverfunctions/tan.md +78 -0
  172. package/user-documentation/solverfunctions/tofixed.md +75 -0
  173. package/user-documentation/solverfunctions/unionarrays.md +59 -0
  174. package/user-documentation/solverfunctions/uniquearray.md +58 -0
  175. package/user-documentation/solverfunctions/var.md +67 -0
  176. package/user-documentation/solverfunctions/vara.md +58 -0
  177. package/user-documentation/solverfunctions/varp.md +66 -0
  178. package/user-documentation/solverfunctions/when.md +98 -0
@@ -0,0 +1,200 @@
1
+ {
2
+ "Scope": "DistillExample",
3
+
4
+ "PickLists": [
5
+ {
6
+ "Hash": "Books",
7
+ "ListAddress": "AppData.AuthorsBooks",
8
+ "ListSourceAddress": "Books[]",
9
+ "TextTemplate": "{~D:Record.Title~}",
10
+ "IDTemplate": "{~D:Record.IDBook~}",
11
+ "Sorted": true,
12
+ "UpdateFrequency": "Always"
13
+ }
14
+ ],
15
+
16
+ "InitialBundle": [
17
+ {
18
+ "Entity": "Author",
19
+ "Filter": "FBV~IDAuthor~EQ~100",
20
+ "Destination": "AppData.CurrentAuthor",
21
+ "SingleRecord": true
22
+ },
23
+ {
24
+ "Entity": "BookAuthorJoin",
25
+ "Filter": "FBV~IDAuthor~EQ~{~D:AppData.CurrentAuthor.IDAuthor~}",
26
+ "Destination": "AppData.BookAuthorJoins"
27
+ },
28
+ {
29
+ "Entity": "Book",
30
+ "Filter": "FBL~IDBook~INN~{~PJU:,^IDBook^AppData.BookAuthorJoins~}",
31
+ "Destination": "AppData.Books"
32
+ },
33
+ {
34
+ "Type": "Custom",
35
+ "Protocol": "HTTP",
36
+ "Host": "localhost",
37
+ "Port": 9999,
38
+ "URL": "/1.0/BookAuthorJoin/Schema",
39
+ "Destination": "AppData.BookAuthorJoinSchema"
40
+ }
41
+ ],
42
+
43
+ "Sections": [
44
+ {
45
+ "Hash": "Book",
46
+ "Name": "Book Data Distillation",
47
+ "Description": "Entity bundle example with MapJoin, Custom, and per-input providers",
48
+ "Groups": [
49
+ {
50
+ "Hash": "Author",
51
+ "Name": "Author",
52
+ "Rows": [
53
+ { "Inputs": ["Author.IDAuthor"] },
54
+ { "Inputs": ["Author.Name"] }
55
+ ]
56
+ },
57
+ {
58
+ "Hash": "BookGrid",
59
+ "Name": "Book Grid",
60
+ "Layout": "Tabular",
61
+ "RecordSetAddress": "AppData.Books",
62
+ "RecordManifest": {
63
+ "Scope": "BookRecord",
64
+ "Descriptors": {
65
+ "Title": { "Name": "Title", "Hash": "Title", "DataType": "String" },
66
+ "IDBook": { "Name": "ID", "Hash": "IDBook", "DataType": "Number" }
67
+ }
68
+ },
69
+ "Rows": [
70
+ { "Inputs": ["Book.Title"] }
71
+ ]
72
+ }
73
+ ]
74
+ },
75
+ {
76
+ "Hash": "Schemas",
77
+ "Name": "Schema Viewer",
78
+ "Description": "Demonstrates section-level InitialBundle",
79
+ "InitialBundle": [
80
+ {
81
+ "Type": "Custom",
82
+ "URL": "Author/Schema",
83
+ "Destination": "AppData.AuthorSchema"
84
+ }
85
+ ],
86
+ "Groups": [
87
+ {
88
+ "Hash": "SchemaInfo",
89
+ "Name": "Schema Info",
90
+ "Rows": [
91
+ { "Inputs": ["Schema.AuthorSchema"] }
92
+ ]
93
+ }
94
+ ]
95
+ }
96
+ ],
97
+
98
+ "Descriptors": {
99
+ "Author.IDAuthor": {
100
+ "Name": "Author ID",
101
+ "Hash": "IDAuthor",
102
+ "DataType": "Number",
103
+ "Default": 100,
104
+ "PictForm": {
105
+ "Section": "Book",
106
+ "Group": "Author",
107
+ "Row": 1,
108
+ "Width": 1,
109
+ "Providers": ["Pict-Input-EntityBundleRequest", "Pict-Input-AutofillTriggerGroup"],
110
+ "EntitiesBundle": [
111
+ {
112
+ "Entity": "Author",
113
+ "Filter": "FBV~IDAuthor~EQ~{~D:Record.Value~}",
114
+ "Destination": "AppData.CurrentAuthor",
115
+ "SingleRecord": true
116
+ },
117
+ {
118
+ "Entity": "BookAuthorJoin",
119
+ "Filter": "FBV~IDAuthor~EQ~{~D:AppData.CurrentAuthor.IDAuthor~}",
120
+ "Destination": "AppData.BookAuthorJoins"
121
+ },
122
+ {
123
+ "Entity": "Book",
124
+ "Filter": "FBL~IDBook~INN~{~PJU:,^IDBook^AppData.BookAuthorJoins~}",
125
+ "Destination": "AppData.Books"
126
+ },
127
+ {
128
+ "Type": "MapJoin",
129
+ "DestinationRecordSetAddress": "AppData.Books",
130
+ "DestinationJoinValue": "IDBook",
131
+ "JoinJoinValueLHS": "IDBook",
132
+ "Joins": "AppData.BookAuthorJoins",
133
+ "JoinJoinValueRHS": "IDBookAuthorJoin",
134
+ "JoinRecordSetAddress": "AppData.BookAuthorJoins",
135
+ "JoinValue": "IDBookAuthorJoin",
136
+ "RecordDestinationAddress": "BookAuthorJoins"
137
+ },
138
+ {
139
+ "Type": "Custom",
140
+ "Protocol": "HTTP",
141
+ "Host": "localhost",
142
+ "Port": 9999,
143
+ "URL": "/1.0/Book/Schema?Author={~D:AppData.CurrentAuthor.IDAuthor~}",
144
+ "Destination": "AppData.BookSchema"
145
+ },
146
+ {
147
+ "Type": "Custom",
148
+ "URL": "Author/Schema",
149
+ "Destination": "AppData.AuthorSchema"
150
+ }
151
+ ],
152
+ "EntityBundleTriggerGroup": "BookTriggerGroup",
153
+ "EntityBundleTriggerOnInitialize": true,
154
+ "AutofillTriggerGroup": {
155
+ "TriggerGroupHash": "BookTriggerGroup",
156
+ "PostSolvers": ["refreshTabularSection(\"BookGrid\", \"BookGrid\")"]
157
+ }
158
+ }
159
+ },
160
+ "Author.Name": {
161
+ "Name": "Author Name",
162
+ "Hash": "AuthorName",
163
+ "DataType": "String",
164
+ "PictForm": {
165
+ "Section": "Book",
166
+ "Group": "Author",
167
+ "Row": 2,
168
+ "Width": 1,
169
+ "Providers": ["Pict-Input-AutofillTriggerGroup"],
170
+ "AutofillTriggerGroup": {
171
+ "TriggerGroupHash": "BookTriggerGroup",
172
+ "TriggerAddress": "AppData.CurrentAuthor.Name"
173
+ }
174
+ }
175
+ },
176
+ "Book.Title": {
177
+ "Name": "Book Title",
178
+ "Hash": "BookTitle",
179
+ "DataType": "String",
180
+ "PictForm": {
181
+ "Section": "Book",
182
+ "Group": "BookGrid",
183
+ "Row": 1,
184
+ "Width": 1
185
+ }
186
+ },
187
+ "Schema.AuthorSchema": {
188
+ "Name": "Author Schema",
189
+ "Hash": "AuthorSchema",
190
+ "DataType": "String",
191
+ "PictForm": {
192
+ "Section": "Schemas",
193
+ "Group": "SchemaInfo",
194
+ "Row": 1,
195
+ "Width": 1,
196
+ "InputType": "TextArea"
197
+ }
198
+ }
199
+ }
200
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "Scope": "Assignment",
3
+
4
+ "Descriptors":
5
+ {
6
+ "Title":
7
+ {
8
+ "Name": "Assignment Title",
9
+ "Hash": "Title",
10
+ "DataType": "String",
11
+ "Default": "(unnamed assignment)",
12
+ "PictForm": { "Section": "AssignmentGrid", "Group":"AssignmentGrid", "InputType": "ReadOnly" }
13
+ },
14
+ "Weight":
15
+ {
16
+ "Name": "Weight",
17
+ "Hash": "AssignmentWeight",
18
+ "DataType": "String",
19
+ "Default": "1.0",
20
+ "PictForm": { "Section": "AssignmentGrid", "Group":"AssignmentGrid" }
21
+ },
22
+ "Points":
23
+ {
24
+ "Name": "Points",
25
+ "Hash": "AssignmentPoints",
26
+ "DataType": "String",
27
+ "Default": "100",
28
+ "PictForm": { "Section": "AssignmentGrid", "Group":"AssignmentGrid" }
29
+ },
30
+ "EffectiveWeight":
31
+ {
32
+ "Name": "Effective Weight",
33
+ "Hash": "ClassWeight",
34
+ "DataType": "String",
35
+ "PictForm": { "Section": "AssignmentGrid", "Group":"AssignmentGrid" }
36
+ }
37
+ }
38
+ }
@@ -0,0 +1,40 @@
1
+ {
2
+ "Scope": "Student",
3
+ "Descriptors": {
4
+ "StudentName": {
5
+ "Name": "Student Full Name",
6
+ "Hash": "StudentName",
7
+ "DataType": "String",
8
+ "Default": "(unnamed student)",
9
+ "PictForm": {
10
+ "Section": "StudentGrid",
11
+ "Group": "StudentGrid"
12
+ }
13
+ },
14
+ "StudentID": {
15
+ "Name": "Learning Style",
16
+ "Hash": "StudentLearningStyle",
17
+ "DataType": "String",
18
+ "Default": "Visual",
19
+ "PictForm": {
20
+ "Section": "StudentGrid",
21
+ "Group": "StudentGrid"
22
+ }
23
+ },
24
+ "ShoeSize": {
25
+ "Name": "Shoe Size",
26
+ "Hash": "ShoeSize",
27
+ "DataType": "Number",
28
+ "Default": 7.5,
29
+ "PictForm": {
30
+ "Section": "StudentGrid",
31
+ "Group": "StudentGrid"
32
+ }
33
+ },
34
+ "StudentAge": {
35
+ "Name": "Age",
36
+ "Hash": "Age",
37
+ "DataType": "Number"
38
+ }
39
+ }
40
+ }
@@ -0,0 +1,347 @@
1
+ {
2
+ "Scope": "Manyfest",
3
+ "Sections": [
4
+ {
5
+ "Hash": "MainManyfest",
6
+ "Name": "Main Manyfest Data",
7
+ "Groups": [
8
+ {
9
+ "Hash": "Description",
10
+ "Name": "Description"
11
+ }
12
+ ]
13
+ },
14
+ {
15
+ "Hash": "ManyfestSections",
16
+ "Name": "Form Interface Sections",
17
+ "Groups": [
18
+ {
19
+ "Hash": "FormSections",
20
+ "Name": "Form Sections",
21
+ "Layout": "Tabular",
22
+ "RecordSetAddress": "ManyfestRecord.Sections",
23
+ "RecordManifest": "ManyfestSection"
24
+ }
25
+ ]
26
+ },
27
+ {
28
+ "Hash": "ManyfestDescriptors",
29
+ "Name": "Data Descriptors",
30
+ "Groups": [
31
+ {
32
+ "Hash": "DescriptorGrid",
33
+ "Name": "Manyfest Descriptors",
34
+ "Layout": "Tabular",
35
+ "RecordSetAddress": "ManyfestRecord.Descriptors",
36
+ "RecordManifest": "ManyfestDescriptor"
37
+ }
38
+ ]
39
+ },
40
+ {
41
+ "Hash": "ManyfestTabular",
42
+ "Name": "Tabular Manyfest Representation",
43
+ "IncludeInDefaultDynamicRender": false,
44
+ "Groups": [
45
+ {
46
+ "Hash": "ManyfestTabular",
47
+ "Name": "Manyfest Table",
48
+ "Layout": "TuiGrid",
49
+ "RecordSetAddress": "ManyfestRecord.Descriptors",
50
+ "RecordManifest": "ManyfestTabular"
51
+ }
52
+ ]
53
+ }
54
+ ],
55
+ "Descriptors": {
56
+ "ManyfestRecord.Scope": {
57
+ "Name": "Data Scope",
58
+ "Hash": "Scope",
59
+ "DataType": "String",
60
+ "Default": "DefaultManyfestScope",
61
+ "PictForm": {
62
+ "Section": "MainManyfest",
63
+ "Group": "Description"
64
+ }
65
+ },
66
+ "ManyfestRecord.Name": {
67
+ "Name": "Name",
68
+ "Hash": "Name",
69
+ "DataType": "String",
70
+ "Default": "Default Manyfest",
71
+ "PictForm": {
72
+ "Section": "MainManyfest",
73
+ "Group": "Description"
74
+ }
75
+ },
76
+ "ManyfestRecord.Description": {
77
+ "Name": "Description",
78
+ "Hash": "Description",
79
+ "DataType": "String",
80
+ "Default": "",
81
+ "PictForm": {
82
+ "Section": "MainManyfest",
83
+ "Group": "Description",
84
+ "InputType": "TextArea"
85
+ }
86
+ },
87
+ "ManyfestRecord.Sections": {
88
+ "Name": "Pict Form Sections",
89
+ "Hash": "ManifestSections",
90
+ "DataType": "Array",
91
+ "Default": []
92
+ },
93
+ "ManyfestRecord.Groups": {
94
+ "Name": "Pict Form Groups",
95
+ "Hash": "ManifestGroups",
96
+ "DataType": "Array"
97
+ },
98
+ "ManyfestRecord.Descriptors": {
99
+ "Name": "Manifest Data Descriptors",
100
+ "Hash": "ManifestDescriptors",
101
+ "DataType": "Object",
102
+ "Default": [],
103
+ "PictForm": {
104
+ "Section": "ManyfestDescriptors",
105
+ "Group": "DescriptorGrid"
106
+ }
107
+ }
108
+ },
109
+ "ReferenceManifests": {
110
+ "ManyfestSection": {
111
+ "Scope": "ManyfestSection",
112
+ "Descriptors": {
113
+ "Name": {
114
+ "Name": "Section Name",
115
+ "Hash": "Name",
116
+ "DataType": "String",
117
+ "PictForm": {
118
+ "Section": "ManyfestSection",
119
+ "Group": "SectionGrid"
120
+ }
121
+ }
122
+ }
123
+ },
124
+ "ManyfestDescriptor": {
125
+ "Scope": "ManyfestDescriptor",
126
+ "Descriptors": {
127
+ "Name": {
128
+ "Name": "Data Property Name",
129
+ "Hash": "Name",
130
+ "DataType": "String",
131
+ "PictForm": {
132
+ "Section": "ManyfestDescriptors",
133
+ "Group": "DescriptorGrid"
134
+ }
135
+ },
136
+ "NameShort": {
137
+ "Name": "Short Name",
138
+ "Hash": "NameShort",
139
+ "DataType": "String",
140
+ "PictForm": {
141
+ "Section": "ManyfestDescriptors",
142
+ "Group": "DescriptorGrid"
143
+ }
144
+ },
145
+ "Description": {
146
+ "Name": "Description",
147
+ "Hash": "Description",
148
+ "DataType": "String",
149
+ "PictForm": {
150
+ "Section": "ManyfestDescriptors",
151
+ "Group": "DescriptorGrid",
152
+ "InputType": "TextArea"
153
+ }
154
+ },
155
+ "DataType": {
156
+ "Name": "Data Type",
157
+ "Hash": "DataType",
158
+ "DataType": "String",
159
+ "PictForm": {
160
+ "Section": "ManyfestDescriptors",
161
+ "Group": "DescriptorGrid",
162
+ "InputType": "SelectList",
163
+ "SelectOptions": [
164
+ "String",
165
+ "Integer",
166
+ "Float",
167
+ "Number",
168
+ "Boolean",
169
+ "Binary",
170
+ "YesNo",
171
+ "DateTime",
172
+ "Array",
173
+ "Object",
174
+ "Null"
175
+ ]
176
+ }
177
+ },
178
+ "Default": {
179
+ "Name": "Default Value",
180
+ "Hash": "DefaultValue",
181
+ "DataType": "String",
182
+ "PictForm": {
183
+ "Section": "ManyfestDescriptors",
184
+ "Group": "DescriptorGrid"
185
+ }
186
+ }
187
+ }
188
+ },
189
+ "ManyfestTabular": {
190
+ "Scope": "ManyfestTabular",
191
+ "Descriptors": {
192
+ "Form": {
193
+ "Name": "Form",
194
+ "Hash": "Form",
195
+ "DataType": "String",
196
+ "PictForm": {
197
+ "ColumnSource": "Form"
198
+ }
199
+ },
200
+ "FormName": {
201
+ "Name": "Form Name",
202
+ "Hash": "FormName",
203
+ "DataType": "String",
204
+ "PictForm": {
205
+ "ColumnSource": "Form Name"
206
+ }
207
+ },
208
+ "SubManifest": {
209
+ "Name": "SubManifest",
210
+ "Hash": "SubManifest",
211
+ "DataType": "String",
212
+ "PictForm": {
213
+ "ColumnSource": "SubManifest"
214
+ }
215
+ },
216
+ "SectionName": {
217
+ "Name": "Section Name",
218
+ "Hash": "SectionName",
219
+ "DataType": "String",
220
+ "PictForm": {
221
+ "ColumnSource": "Section Name"
222
+ }
223
+ },
224
+ "GroupName": {
225
+ "Name": "Group Name",
226
+ "Hash": "GroupName",
227
+ "DataType": "String",
228
+ "PictForm": {
229
+ "ColumnSource": "Group Name"
230
+ }
231
+ },
232
+ "Row": {
233
+ "Name": "Row",
234
+ "Hash": "Row",
235
+ "DataType": "String",
236
+ "PictForm": {
237
+ "ColumnSource": "Row"
238
+ }
239
+ },
240
+ "Width": {
241
+ "Name": "Width",
242
+ "Hash": "Width",
243
+ "DataType": "String",
244
+ "PictForm": {
245
+ "ColumnSource": "Width"
246
+ }
247
+ },
248
+ "InputAddress": {
249
+ "Name": "Input Address",
250
+ "Hash": "InputAddress",
251
+ "DataType": "String",
252
+ "PictForm": {
253
+ "ColumnSource": "Input Address"
254
+ }
255
+ },
256
+ "InputName": {
257
+ "Name": "Input Name",
258
+ "Hash": "InputName",
259
+ "DataType": "String",
260
+ "PictForm": {
261
+ "ColumnSource": "Input Name"
262
+ }
263
+ },
264
+ "InputHash": {
265
+ "Name": "Input Hash",
266
+ "Hash": "InputHash",
267
+ "DataType": "String",
268
+ "PictForm": {
269
+ "ColumnSource": "Input Hash"
270
+ }
271
+ },
272
+ "InputExtra": {
273
+ "Name": "Input Extra",
274
+ "Hash": "InputExtra",
275
+ "DataType": "String",
276
+ "PictForm": {
277
+ "ColumnSource": "Input Extra"
278
+ }
279
+ },
280
+ "Units": {
281
+ "Name": "Units",
282
+ "Hash": "Units",
283
+ "DataType": "String",
284
+ "PictForm": {
285
+ "ColumnSource": "Units"
286
+ }
287
+ },
288
+ "DataType": {
289
+ "Name": "DataType",
290
+ "Hash": "DataType",
291
+ "DataType": "String",
292
+ "PictForm": {
293
+ "ColumnSource": "DataType"
294
+ }
295
+ },
296
+ "InputType": {
297
+ "Name": "InputType",
298
+ "Hash": "InputType",
299
+ "DataType": "String",
300
+ "PictForm": {
301
+ "ColumnSource": "InputType"
302
+ }
303
+ },
304
+ "Equation": {
305
+ "Name": "Equation",
306
+ "Hash": "Equation",
307
+ "DataType": "String",
308
+ "PictForm": {
309
+ "ColumnSource": "Equation"
310
+ }
311
+ },
312
+ "Default": {
313
+ "Name": "Default",
314
+ "Hash": "Default",
315
+ "DataType": "String",
316
+ "PictForm": {
317
+ "ColumnSource": "Default"
318
+ }
319
+ },
320
+ "Description": {
321
+ "Name": "Description",
322
+ "Hash": "Description",
323
+ "DataType": "String",
324
+ "PictForm": {
325
+ "ColumnSource": "Description"
326
+ }
327
+ },
328
+ "Tooltiup": {
329
+ "Name": "Tooltiup",
330
+ "Hash": "Tooltiup",
331
+ "DataType": "String",
332
+ "PictForm": {
333
+ "ColumnSource": "Tooltiup"
334
+ }
335
+ },
336
+ "InputNotes": {
337
+ "Name": "Input Notes",
338
+ "Hash": "InputNotes",
339
+ "DataType": "String",
340
+ "PictForm": {
341
+ "ColumnSource": "Input Notes"
342
+ }
343
+ }
344
+ }
345
+ }
346
+ }
347
+ }