pict-section-form 1.0.183 → 1.0.185
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.
- package/README.md +84 -0
- package/debug/PICTSection-TabularManifests.json +10 -7
- package/debug/TabularManifestCSV.csv +78 -77
- package/debug/data/DefaultFormManifest.json +10 -7
- package/debug/data/MathExampleForm-Reconstituted.csv +5 -5
- package/debug/data/MathExampleForm.json +10 -7
- package/docs/.nojekyll +0 -0
- package/docs/Configuration.md +467 -0
- package/docs/Getting_Started.md +317 -0
- package/docs/Input_Types.md +350 -0
- package/docs/Layouts.md +336 -0
- package/docs/Pict_Section_Form_Architecture.md +242 -0
- package/docs/Providers.md +409 -0
- package/docs/README.md +89 -0
- package/docs/Solvers.md +367 -0
- package/docs/Templates.md +324 -0
- package/docs/_sidebar.md +44 -0
- package/docs/cover.md +11 -0
- package/docs/examples/README.md +110 -0
- package/docs/examples/complex_table/README.md +163 -0
- package/docs/examples/complex_tuigrid/README.md +202 -0
- package/docs/examples/gradebook/README.md +190 -0
- package/docs/examples/manyfest_editor/README.md +200 -0
- package/docs/examples/postcard_example/README.md +172 -0
- package/docs/examples/simple_distill/README.md +176 -0
- package/docs/examples/simple_form/README.md +143 -0
- package/docs/examples/simple_table/README.md +137 -0
- package/docs/index.html +51 -0
- package/docs/input_providers/001-select.md +211 -0
- package/docs/input_providers/002-datetime.md +151 -0
- package/docs/input_providers/003-markdown.md +158 -0
- package/docs/input_providers/004-html.md +177 -0
- package/docs/input_providers/005-precise-number.md +241 -0
- package/docs/input_providers/006-link.md +196 -0
- package/docs/input_providers/007-templated.md +213 -0
- package/docs/input_providers/008-templated-entity-lookup.md +244 -0
- package/docs/input_providers/009-chart.md +321 -156
- package/docs/input_providers/010-entity-bundle-request.md +276 -0
- package/docs/input_providers/011-autofill-trigger-group.md +275 -0
- package/docs/input_providers/012-tab-group-selector.md +223 -0
- package/docs/input_providers/013-tab-section-selector.md +259 -0
- package/docs/input_providers/README.md +148 -0
- package/package.json +1 -1
- package/source/providers/Pict-Provider-DynamicFormSolverBehaviors.js +15 -3
- package/source/providers/Pict-Provider-DynamicSolver.js +43 -2
- package/source/providers/dynamictemplates/Pict-DynamicTemplates-DefaultFormTemplates-ReadOnly.js +16 -16
- package/source/providers/dynamictemplates/Pict-DynamicTemplates-DefaultFormTemplates.js +52 -52
- package/source/services/ManifestFactory.js +78 -11
- package/source/views/Pict-View-DynamicForm-DefaultConfiguration.json +1 -1
- package/source/views/Pict-View-Form-Metacontroller.js +48 -1
- package/types/source/providers/Pict-Provider-DynamicFormSolverBehaviors.d.ts.map +1 -1
- package/types/source/providers/Pict-Provider-DynamicSolver.d.ts +19 -2
- package/types/source/providers/Pict-Provider-DynamicSolver.d.ts.map +1 -1
- package/types/source/services/ManifestFactory.d.ts +15 -0
- package/types/source/services/ManifestFactory.d.ts.map +1 -1
- package/types/source/views/Pict-View-Form-Metacontroller.d.ts.map +1 -1
package/README.md
CHANGED
|
@@ -266,3 +266,87 @@ This [manyfest](https://github.com/stevenvelozo/manyfest) file describes a list
|
|
|
266
266
|
of application state elements. And intersects these data elements with how
|
|
267
267
|
they should be presented to the user in a form. This can work for any layout
|
|
268
268
|
of data in your application.
|
|
269
|
+
|
|
270
|
+
## Documentation
|
|
271
|
+
|
|
272
|
+
Comprehensive documentation is available in the [docs](docs/) folder:
|
|
273
|
+
|
|
274
|
+
| Document | Description |
|
|
275
|
+
|----------|-------------|
|
|
276
|
+
| [Getting Started](docs/Getting_Started.md) | Quick start guide for new users |
|
|
277
|
+
| [Architecture](docs/Pict_Section_Form_Architecture.md) | System architecture and design |
|
|
278
|
+
| [Configuration](docs/Configuration.md) | Complete configuration reference |
|
|
279
|
+
| [Input Types](docs/Input_Types.md) | Available input types |
|
|
280
|
+
| [Templates](docs/Templates.md) | Template customization and macros |
|
|
281
|
+
| [Solvers](docs/Solvers.md) | Expression solver system |
|
|
282
|
+
| [Providers](docs/Providers.md) | Provider reference |
|
|
283
|
+
| [Layouts](docs/Layouts.md) | Layout types and customization |
|
|
284
|
+
|
|
285
|
+
### Example Applications
|
|
286
|
+
|
|
287
|
+
Working examples demonstrating various features:
|
|
288
|
+
|
|
289
|
+
| Example | Description |
|
|
290
|
+
|---------|-------------|
|
|
291
|
+
| [simple_form](docs/examples/simple_form/) | Basic form with solvers and visibility control |
|
|
292
|
+
| [simple_table](docs/examples/simple_table/) | Minimal tabular layout example |
|
|
293
|
+
| [simple_distill](docs/examples/simple_distill/) | Entity bundles and trigger groups |
|
|
294
|
+
| [gradebook](docs/examples/gradebook/) | Multi-table app with localStorage |
|
|
295
|
+
| [postcard_example](docs/examples/postcard_example/) | Theme switching and navigation |
|
|
296
|
+
| [complex_table](docs/examples/complex_table/) | Full-featured with charts and entity bundles |
|
|
297
|
+
| [complex_tuigrid](docs/examples/complex_tuigrid/) | TuiGrid with aggregations |
|
|
298
|
+
| [manyfest_editor](docs/examples/manyfest_editor/) | Meta-configuration editor |
|
|
299
|
+
|
|
300
|
+
### Input Providers
|
|
301
|
+
|
|
302
|
+
Specialized input handlers for different data types:
|
|
303
|
+
|
|
304
|
+
| Provider | Description |
|
|
305
|
+
|----------|-------------|
|
|
306
|
+
| [Select](docs/input_providers/001-select.md) | Dropdown lists with static/dynamic options |
|
|
307
|
+
| [DateTime](docs/input_providers/002-datetime.md) | Date and time picker |
|
|
308
|
+
| [Markdown](docs/input_providers/003-markdown.md) | Markdown content display |
|
|
309
|
+
| [HTML](docs/input_providers/004-html.md) | Raw HTML content display |
|
|
310
|
+
| [PreciseNumber](docs/input_providers/005-precise-number.md) | Formatted numbers with precision |
|
|
311
|
+
| [Link](docs/input_providers/006-link.md) | Hyperlink inputs |
|
|
312
|
+
| [Templated](docs/input_providers/007-templated.md) | Dynamic template rendering |
|
|
313
|
+
| [TemplatedEntityLookup](docs/input_providers/008-templated-entity-lookup.md) | Entity fetch with template display |
|
|
314
|
+
| [Chart](docs/input_providers/009-chart.md) | Chart.js visualizations |
|
|
315
|
+
| [EntityBundleRequest](docs/input_providers/010-entity-bundle-request.md) | Cascading entity fetches |
|
|
316
|
+
| [AutofillTriggerGroup](docs/input_providers/011-autofill-trigger-group.md) | Trigger-based autofill |
|
|
317
|
+
| [TabGroupSelector](docs/input_providers/012-tab-group-selector.md) | Tab navigation for groups |
|
|
318
|
+
| [TabSectionSelector](docs/input_providers/013-tab-section-selector.md) | Tab navigation for sections |
|
|
319
|
+
|
|
320
|
+
## Installation
|
|
321
|
+
|
|
322
|
+
```bash
|
|
323
|
+
npm install pict-section-form
|
|
324
|
+
```
|
|
325
|
+
|
|
326
|
+
## Quick Example
|
|
327
|
+
|
|
328
|
+
```javascript
|
|
329
|
+
const libPictSectionForm = require('pict-section-form');
|
|
330
|
+
|
|
331
|
+
// Create the form application
|
|
332
|
+
const formApp = new libPictSectionForm.PictFormApplication(fable, {
|
|
333
|
+
pict_configuration: {
|
|
334
|
+
Product: "MyForm",
|
|
335
|
+
DefaultFormManifest: manifestJSON
|
|
336
|
+
}
|
|
337
|
+
});
|
|
338
|
+
|
|
339
|
+
// Initialize and render
|
|
340
|
+
formApp.initialize();
|
|
341
|
+
formApp.pict.views.PictFormMetacontroller.render();
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
## Ecosystem
|
|
345
|
+
|
|
346
|
+
Pict Section Form is part of the Pict ecosystem:
|
|
347
|
+
|
|
348
|
+
- [pict](https://github.com/stevenvelozo/pict) - Core application framework
|
|
349
|
+
- [pict-view](https://github.com/stevenvelozo/pict-view) - View base class
|
|
350
|
+
- [pict-provider](https://github.com/stevenvelozo/pict-provider) - Provider base class
|
|
351
|
+
- [manyfest](https://github.com/stevenvelozo/manyfest) - Schema definitions
|
|
352
|
+
- [fable](https://github.com/stevenvelozo/fable) - Service infrastructure
|
|
@@ -584,7 +584,7 @@
|
|
|
584
584
|
"Row": "1",
|
|
585
585
|
"Width": "6",
|
|
586
586
|
"Tooltip": "The PR is *very* important.",
|
|
587
|
-
"Section": "
|
|
587
|
+
"Section": "ComplexEquation",
|
|
588
588
|
"Group": "Complex_Equation"
|
|
589
589
|
},
|
|
590
590
|
"Default": "4.5"
|
|
@@ -598,7 +598,7 @@
|
|
|
598
598
|
"Row": "1",
|
|
599
599
|
"Width": "4",
|
|
600
600
|
"Tooltip": "Z _is not_ the z-index.",
|
|
601
|
-
"Section": "
|
|
601
|
+
"Section": "ComplexEquation",
|
|
602
602
|
"Group": "Complex_Equation"
|
|
603
603
|
},
|
|
604
604
|
"Default": "1.5"
|
|
@@ -612,7 +612,7 @@
|
|
|
612
612
|
"Row": "1",
|
|
613
613
|
"Width": "4",
|
|
614
614
|
"Tooltip": "C is the universal constant.",
|
|
615
|
-
"Section": "
|
|
615
|
+
"Section": "ComplexEquation",
|
|
616
616
|
"Group": "Complex_Equation"
|
|
617
617
|
},
|
|
618
618
|
"Default": "8.75"
|
|
@@ -625,7 +625,7 @@
|
|
|
625
625
|
"PictForm": {
|
|
626
626
|
"Row": "2",
|
|
627
627
|
"Width": "6",
|
|
628
|
-
"Section": "
|
|
628
|
+
"Section": "ComplexEquation",
|
|
629
629
|
"Group": "Complex_Equation"
|
|
630
630
|
}
|
|
631
631
|
},
|
|
@@ -637,7 +637,7 @@
|
|
|
637
637
|
"PictForm": {
|
|
638
638
|
"Row": "2",
|
|
639
639
|
"Width": "6",
|
|
640
|
-
"Section": "
|
|
640
|
+
"Section": "ComplexEquation",
|
|
641
641
|
"Group": "Complex_Equation"
|
|
642
642
|
}
|
|
643
643
|
},
|
|
@@ -884,7 +884,7 @@
|
|
|
884
884
|
},
|
|
885
885
|
{
|
|
886
886
|
"Name": "Complex Equation",
|
|
887
|
-
"Hash": "
|
|
887
|
+
"Hash": "ComplexEquation",
|
|
888
888
|
"Solvers": [
|
|
889
889
|
"CeResult = (160 * CePR * CeZ) / (CeC / 100) * CePR * CeZ + (160 * (1 - CeC / 100))",
|
|
890
890
|
"CeResultRounded = ROUND(CeResult,3)"
|
|
@@ -1358,6 +1358,9 @@
|
|
|
1358
1358
|
"ReferenceManifests": {}
|
|
1359
1359
|
}
|
|
1360
1360
|
},
|
|
1361
|
-
"FormName": "Math Example Form"
|
|
1361
|
+
"FormName": "Math Example Form",
|
|
1362
|
+
"ValidationSolvers": [
|
|
1363
|
+
"ColorInputBackground(\"ComplexEquation\", \"CeResultRounded\", IF(CeResultRounded,\">\",100000,\"#ff0000\",\"#00ff00\"), \"1\")"
|
|
1364
|
+
]
|
|
1362
1365
|
}
|
|
1363
1366
|
}
|
|
@@ -1,77 +1,78 @@
|
|
|
1
|
-
Form,Form Name,SubManifest,HideTabularEditingControls,GroupRecordSetAddress,DataOnly,Section Name,Section Hash,Group Name,Group Hash,Group Layout,Group CSS,Group Show Title,Row,Width,Minimum Row Count,Maximum Row Count,Input Address,Input Name,Input Hash,Input Extra,Units,DataType,Decimal Precision,InputType,Equation,Equation Ordinal,Default,Description,Tooltip,Input Notes,Entity,EntityColumnFilter,EntityDestination,EntitySingleRecord,TriggerGroup,TriggerAddress,TriggerAllInputs,MarshalEmptyValues,ChartType,ChartLabelsAddress,ChartLabelsSolver,ChartDatasetsAddress,ChartDatasetsLabel,ChartDatasetsSolver,ChartDatasetsSolverChartType,ChartDatasetsSolverLabel1,ChartDatasetsSolver1,ChartDataSetsSolverChartType1,ChartDatasetsSolverLabel2,ChartDatasetsSolver2,ChartDatasetsSolverChartType2,ChartDatasetsSolverLabel3,ChartDatasetsSolver3,ChartDatasetsSolverChartType3,Descriptor_Extension_PictForm.RandomData,Desciptor_Boolean_Extension_PictForm.ShowMoreMath,Descriptor_Float_Extension_AnotherObject.NotPictForm.x,Descriptor_Float_Extension_AnotherObject.NotPictForm.y
|
|
2
|
-
|
|
3
|
-
MathExampleForm,Math Example Form,,,,,Header,,General Info,,,,,1,3,,,Header.FirstName,First Name,HeaderFirstName,,,String
|
|
4
|
-
MathExampleForm,,,,,,Header,,General Info,,,,,1,3,,,Header.LastName,Last Name,HeaderLastName,,,String
|
|
5
|
-
MathExampleForm,,,,,,Header,,General Info,,,,,1,6,,,Header.JobTitle,Job Title,JobTitle,,,String
|
|
6
|
-
MathExampleForm,,,,,,Header,,General Info,,,,,2,12,,,Header.Description,Description,Description,,,String,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,T
|
|
7
|
-
MathExampleForm,,,,,,Header,,General Info,,,,,3,6,,,Header.Planet,Planet,Planet,,planetary,String,,Option
|
|
8
|
-
MathExampleForm,,,,,,Header,,General Info,,,,,3,6,,,Header.Universe,Universe,Universe,,planetary,String,,Option,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.2,17
|
|
9
|
-
MathExampleForm,,,,,,Header,,General Info,,,,,4,12,,,Header.WarehouseVolume,Warehouse Volume,WarehouseVolume,,,Number,,,,,50000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,t
|
|
10
|
-
MathExampleForm,,,,,,Header,,General Info,,,,,5,12,,,Header.BoxRowCount,Number of Box Styles,HeaderBoxRowCount,,,Number,,,"BoxRowCountSuccess = SETTABULARROWLENGTH(""BoxCollSec"", ""BoxCollGrp"", HeaderBoxRowCount, 1)",,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,t
|
|
11
|
-
MathExampleForm,,,,,,REST Request,,Book Data,,,,,1,6,,,BookData.CurrentIDBook,IDBook,CurrentIDBook,,,Number,,,,,,,,Book from REST request,Book,IDBook,AppData.LoadedBook,true,,,,,,,,,,,,,,,,,,,,,,,86
|
|
12
|
-
MathExampleForm,,,,,,MatheMagic,,Math is Magic,,,,,1,1,,,HelpContent.Math,So Very Magic,MathHelpContent,,,String,,HTML
|
|
13
|
-
MathExampleForm,,,,,,Basic Geometry,,Rectangle,BasicGeoGrp,,,,1,6,,,Geometry.Rectangle.Width,Width,RectangleWidth,,,Number,,,,,7.25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,y,11,190
|
|
14
|
-
MathExampleForm,,,,,,Basic Geometry,,Rectangle,BasicGeoGrp,,,,1,6,,,Geometry.Rectangle.Height,Height,RectangleHeight,,,Number,,,,,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22
|
|
15
|
-
MathExampleForm,,,,,,Basic Geometry,,Rectangle,BasicGeoGrp,,,,2,3,,,Geometry.Rectangle.Area,Area,RectangleArea,,unrounded,Number,,,RectangleArea = RectangleWidth * RectangleHeight,,,Area of the Rectangle.,,,,,,,,,,,,,,,,,,,,,,,,,,,This is a test for random data injection.,1
|
|
16
|
-
MathExampleForm,,,,,,Basic Geometry,,Rectangle,BasicGeoGrp,,,,2,3,,,Geometry.Rectangle.AreaRoundedDefault,Area Rounded,RectangleAreaRoundedDefault,,default,Number,,,RectangleAreaRoundedDefault = ROUND(RectangleWidth * RectangleHeight),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,frog
|
|
17
|
-
MathExampleForm,,,,,,Basic Geometry,,Rectangle,BasicGeoGrp,,,,2,3,,,Geometry.Rectangle.AreaRoundedThree,Area Rounded 3,RectangleAreaRoundedThree,,3,Number,,,"RectangleAreaRoundedThree = ROUND((RectangleWidth * RectangleHeight), 3)"
|
|
18
|
-
MathExampleForm,,,,,,Basic Geometry,,Rectangle,BasicGeoGrp,,,,2,3,,,Geometry.Rectangle.AreaRoundedFour,Area Rounded 5,RectangleAreaRoundedFive,,5,Number,,,"RectangleAreaRoundedFive = ROUND(RectangleArea, 5)",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,true
|
|
19
|
-
MathExampleForm,,,,,,Basic Geometry,,Circle,,,,,1,12,,,Geometry.Circle.Radius,Radius,CircleRadius,,,Number,4,,,,85.523,,,,,,,,,,,,,,,,,,,,,,,,,,,,Sparse
|
|
20
|
-
MathExampleForm,,,,,,Basic Geometry,,Circle,,,,,2,3,,,Geometry.Circle.Area,Area,CircleArea,,unrounded,Number,,,CircleArea = PI() * CircleRadius^2
|
|
21
|
-
MathExampleForm,,,,,,Basic Geometry,,Circle,,,,,2,3,,,Geometry.Circle.AreaRoundedDefault,Area Rounded,CircleAreaRoundedDefault,,default,Number,,,CircleAreaRoundedDefault = ROUND(PI() * CircleRadius^2)
|
|
22
|
-
MathExampleForm,,,,,,Basic Geometry,,Circle,,,,,2,3,,,Geometry.Circle.AreaRoundedThree,Area Rounded 4,CircleAreaRoundedFour,,4,Number,,,"CircleAreaRoundedFour = ROUND(CircleArea,4)"
|
|
23
|
-
MathExampleForm,,,,,,Basic Geometry,,Circle,,,,,2,3,,,Geometry.Circle.AreaRoundedFour,Area Rounded 6,CircleAreaRoundedSix,,6,Number,,,"CircleAreaRoundedSix = ROUND(PI() * CircleRadius^2,6)"
|
|
24
|
-
MathExampleForm,,BoxCollectionData,,,1,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,true,1,1,3,10,Boxes,Boxes,Boxes,,,Array,,TabularAddress
|
|
25
|
-
MathExampleForm,,BoxCollectionData,,,,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,,1,1,,,Identifier,Identifier,BoxIdentifier,,,String,,,,,,,,,,,,,Box,,X
|
|
26
|
-
MathExampleForm,,BoxCollectionData,,,,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,,1,1,,,BoxCategory,Category,BoxCategory,,,String,,,,,,,,,,,,,Box,,X
|
|
27
|
-
MathExampleForm,,BoxCollectionData,,,,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,,1,1,,,Width,Width,BoxWidth,,,Number
|
|
28
|
-
MathExampleForm,,BoxCollectionData,,,,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,,1,1,,,Height,Height,BoxHeight,,,Number
|
|
29
|
-
MathExampleForm,,BoxCollectionData,,,,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,,1,1,,,Depth,Depth,BoxDepth,,,Number
|
|
30
|
-
MathExampleForm,,BoxCollectionData,,,,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,,1,1,,,Floorspace,Floorspace,BoxFloorspace,,,Number,,,BoxFloorspace = BoxWidth * BoxDepth
|
|
31
|
-
MathExampleForm,,BoxCollectionData,,,,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,,1,1,,,Volume,Volume,BoxVolume,,,Number,,,BoxVolume = BoxFloorspace * BoxHeight,,,,,,,,,,Box,,true
|
|
32
|
-
MathExampleForm,,BoxCollectionData,,,,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,,1,1,,,WarehouseSpaceLeft,Warehouse Space Left,WarehouseSpaceLeft,,,Number,,,,,,,,,,,,,Box,,true
|
|
33
|
-
MathExampleForm,,BoxCollectionSecondaryTable,1,Boxes,1,Box Decoration,BoxDecorations,Box Decorations,BoxDecorationGroup,,,true,1,1,,,BoxDecorationSet,BoxDecorationSet,BoxDecorationSet,,,Array,,TabularAddress
|
|
34
|
-
MathExampleForm,,BoxCollectionSecondaryTable,,,,Box Decoration,BoxDecorations,Box Decorations,BoxDecorationGroup,,,,1,1,,,Identifier,Identifier,BoxIdentifier,,,String,,DataOnly,,,,,,,,,,,Box,,X
|
|
35
|
-
MathExampleForm,,BoxCollectionSecondaryTable,,,,Box Decoration,BoxDecorations,Box Decorations,BoxDecorationGroup,,,,1,1,,,Volume,Volume,BoxVolume,,,PreciseNumber,,DataOnly,VolumeLessTen = BoxVolume - 10,,,,,,,,,,Box,,X
|
|
36
|
-
MathExampleForm,,BoxCollectionSecondaryTable,,,,Box Decoration,BoxDecorations,Box Decorations,BoxDecorationGroup,,,,1,1,,,VolumeLessTen,VolumeLessTen,VolumeLessTen,,,PreciseNumber,,DataOnly,,,,,,,,,,,Box,,X
|
|
37
|
-
MathExampleForm,,BoxCollectionSecondaryTable,,,,Box Decoration,BoxDecorations,Box Decorations,BoxDecorationGroup,,,,1,1,,,DecorativeText,Decorative Text,DecorativeText,,,String,,,,,,,,,,,,,Box,,X
|
|
38
|
-
MathExampleForm,,,,,1,Box Summary Data,,Box Summary Data,,,,,1,1,,,Boxes[].Floorspace,BoxesFloorSpaceSet,BoxesFloorspaceSet,,,Object,,,"MAP VAR row FROM Boxes: ColorInputBackgroundTabular(""BoxDecorations"", ""BoxDecorationGroup"", ""VolumeLessTen"", stepIndex, ""#FFCCCC"", 1)"
|
|
39
|
-
MathExampleForm,,,,,1,Box Summary Data,,Box Summary Data,,,,,1,1,,,Boxes[].Volume,BoxesVolumeSet,BoxesVolumeSet,,,Object
|
|
40
|
-
MathExampleForm,,,,,1,Box Summary Data,,Box Summary Data,,,,,1,1,,,Boxes[].Depth,BoxesDepthSet,BoxesDepthSet,,,Object
|
|
41
|
-
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,1,12,,,BoxAggregate.Count,Box Count,BoxesCount,,,Number,,,BoxesCount = COUNT(BoxesFloorspaceSet)
|
|
42
|
-
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,2,6,,,BoxAggregate.AverageFloorspace,Average Floorspace,BoxesAverageFloorspace,,,Number,,,BoxesAverageFloorspace = AVG(BoxesFloorspaceSet)
|
|
43
|
-
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,2,6,,,BoxAggregate.TotalFloorspace,Total Floorspace,BoxesTotalFloorspace,,,Number,,,BoxesTotalFloorspace = SUM(BoxesFloorspaceSet)
|
|
44
|
-
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,3,4,,,BoxAggregate.AverageVolume,Average Volume,BoxesAverageVolume,,,Number,,,BoxesAverageVolume = AVG(BoxesVolumeSet)
|
|
45
|
-
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,3,4,,,BoxAggregate.TotalVolume,Total Volume,BoxesTotalVolume,,,Number,,,BoxesTotalVolume = COUNT(BoxesVolumeSet)
|
|
46
|
-
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,3,4,,,BoxAggregate.TotalVolumeRounded,Total Volume Rounded,BoxesTotalVolumeRounded,,,Number,,,BoxesTotalVolumeRounded = ROUND(SUM(BoxesVolumeSet))
|
|
47
|
-
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,4,3,,,BoxAggregate.MinDepth,Minimum Depth,BoxesMinDepth,,,Number,,,BoxesMinDepth = MIN(BoxesDepthSet)
|
|
48
|
-
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,4,3,,,BoxAggregate.MeanDepth,Mean Depth,BoxesMeanDepth,,,Number,,,BoxesMeanDepth = MEAN(BoxesDepthSet)
|
|
49
|
-
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,4,3,,,BoxAggregate.MedianDepth,Median Depth,BoxesMedianDepth,,,Number,,,BoxesMedianDepth = MEDIAN(BoxesDepthSet)
|
|
50
|
-
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,4,3,,,BoxAggregate.MaxDepth,Max Depth,BoxesMaxDepth,,,Number,,,BoxesMaxDepth = MAX(BoxesDepthSet)
|
|
51
|
-
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,5,4,,,BoxChart_Sizes,Box Category Volume Comparison,BoxChart_Sizes,,,Object,,Chart,,,,,,,,,,,,,,,pie,,"objectkeystoarray(aggregationhistogrambyobject(Boxes, ""BoxCategory"", ""Volume""))",,Box Categories,"objectvaluestoarray(aggregationhistogrambyobject(Boxes, ""BoxCategory"", ""Volume""))"
|
|
52
|
-
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,5,4,,,BoxChart_Size_Details,Box Size Comparison,BoxChart_Size_Details,,,Object,,Chart,,,,,,,,,,,,,,,bar,,"objectkeystoarray(aggregationhistogrambyobject(Boxes, ""Identifier"", ""Volume""))",,Box Volumes,"objectvaluestoarray(aggregationhistogrambyobject(Boxes, ""Identifier"", ""Volume""))"
|
|
53
|
-
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,5,4,,,BoxChart_Scatter,Box Width x Height Scatter,BoxChart_Dimensions,,,Object,,Chart,,,,,,,,,,,,,,,radar,,"objectkeystoarray(aggregationhistogrambyobject(Boxes, ""Identifier"", ""Floorspace""))",,Box Floorspace Usage,"objectvaluestoarray(aggregationhistogrambyobject(Boxes, ""Identifier"", ""Floorspace""))"
|
|
54
|
-
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,5,4,,,BoxChart_DataAll,Box Data Comparison,BoxChart_DataComparison,,,Object,,Chart,,,,,,,,,,,,,,,bar,,"objectkeystoarray(aggregationhistogrambyobject(Boxes, ""BoxCategory"", ""Volume""))",,Width,"objectvaluestoarray(aggregationhistogrambyobject(Boxes, ""BoxCategory"", ""Width""))",,Depth,"objectvaluestoarray(aggregationhistogrambyobject(Boxes, ""BoxCategory"", ""Depth""))",,Height,"objectvaluestoarray(aggregationhistogrambyobject(Boxes, ""BoxCategory"", ""Height""))"
|
|
55
|
-
MathExampleForm,,,,,,Rectangular Area Help,,Rectangular Area Help,,,,,1,12,,,HelpContent.Cuboid,How to Cuboid Math,CuboidHelpContent,,,String,,Markdown
|
|
56
|
-
MathExampleForm,,,,,,Complex Equation
|
|
57
|
-
MathExampleForm,,,,,,Complex Equation
|
|
58
|
-
MathExampleForm,,,,,,Complex Equation
|
|
59
|
-
MathExampleForm,,,,,,Complex Equation
|
|
60
|
-
MathExampleForm,,,,,,Complex Equation
|
|
61
|
-
MathExampleForm
|
|
62
|
-
MathExampleForm,,Rectangles
|
|
63
|
-
MathExampleForm,,Rectangles,,,,Rectangle Aggregation,,Rectangle Set,,,,,1,1,,,
|
|
64
|
-
MathExampleForm,,Rectangles,,,,Rectangle Aggregation,,Rectangle Set,,,,,1,1,,,
|
|
65
|
-
MathExampleForm,,Rectangles,,,,Rectangle Aggregation,,Rectangle Set,,,,,1,1,,,
|
|
66
|
-
MathExampleForm,,Rectangles,,,,Rectangle Aggregation,,Rectangle Set,,,,,1,1,,,
|
|
67
|
-
MathExampleForm,,
|
|
68
|
-
MathExampleForm,,Cylinders
|
|
69
|
-
MathExampleForm,,Cylinders,,,,Cylinders,,Cylinders,,,,,1,1,,,
|
|
70
|
-
MathExampleForm,,Cylinders,,,,Cylinders,,Cylinders,,,,,1,1,,,
|
|
71
|
-
MathExampleForm,,Cylinders,,,,Cylinders,,Cylinders,,,,,1,1,,,
|
|
72
|
-
MathExampleForm,,Cylinders,,,,Cylinders,,Cylinders,,,,,1,1,,,
|
|
73
|
-
MathExampleForm
|
|
74
|
-
MathExampleForm,,,,,,List Topia,Listopia,Occlusion Lists,OcclusionLists
|
|
75
|
-
MathExampleForm,,,,,,List Topia,Listopia,Occlusion Lists,OcclusionLists,,,,2,1,,,Listopia.
|
|
76
|
-
MathExampleForm,,,,,,List Topia,Listopia,Occlusion Lists,OcclusionLists,,,,
|
|
77
|
-
MathExampleForm,,,,,,List Topia,Listopia,Occlusion Lists,OcclusionLists,,,,3,1,,,Listopia.
|
|
1
|
+
Form,Form Name,SubManifest,HideTabularEditingControls,GroupRecordSetAddress,DataOnly,Section Name,Section Hash,Group Name,Group Hash,Group Layout,Group CSS,Group Show Title,Row,Width,Minimum Row Count,Maximum Row Count,Input Address,Input Name,Input Hash,Input Extra,Units,DataType,Decimal Precision,InputType,Equation,Equation Ordinal,Default,Description,Tooltip,Input Notes,Entity,EntityColumnFilter,EntityDestination,EntitySingleRecord,TriggerGroup,TriggerAddress,TriggerAllInputs,MarshalEmptyValues,ChartType,ChartLabelsAddress,ChartLabelsSolver,ChartDatasetsAddress,ChartDatasetsLabel,ChartDatasetsSolver,ChartDatasetsSolverChartType,ChartDatasetsSolverLabel1,ChartDatasetsSolver1,ChartDataSetsSolverChartType1,ChartDatasetsSolverLabel2,ChartDatasetsSolver2,ChartDatasetsSolverChartType2,ChartDatasetsSolverLabel3,ChartDatasetsSolver3,ChartDatasetsSolverChartType3,Descriptor_Extension_PictForm.RandomData,Desciptor_Boolean_Extension_PictForm.ShowMoreMath,Descriptor_Float_Extension_AnotherObject.NotPictForm.x,Descriptor_Float_Extension_AnotherObject.NotPictForm.y,Validator
|
|
2
|
+
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
3
|
+
MathExampleForm,Math Example Form,,,,,Header,,General Info,,,,,1,3,,,Header.FirstName,First Name,HeaderFirstName,,,String,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
4
|
+
MathExampleForm,,,,,,Header,,General Info,,,,,1,3,,,Header.LastName,Last Name,HeaderLastName,,,String,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
5
|
+
MathExampleForm,,,,,,Header,,General Info,,,,,1,6,,,Header.JobTitle,Job Title,JobTitle,,,String,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
6
|
+
MathExampleForm,,,,,,Header,,General Info,,,,,2,12,,,Header.Description,Description,Description,,,String,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,T,,,
|
|
7
|
+
MathExampleForm,,,,,,Header,,General Info,,,,,3,6,,,Header.Planet,Planet,Planet,,planetary,String,,Option,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
8
|
+
MathExampleForm,,,,,,Header,,General Info,,,,,3,6,,,Header.Universe,Universe,Universe,,planetary,String,,Option,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15.2,17,
|
|
9
|
+
MathExampleForm,,,,,,Header,,General Info,,,,,4,12,,,Header.WarehouseVolume,Warehouse Volume,WarehouseVolume,,,Number,,,,,50000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,t,,,
|
|
10
|
+
MathExampleForm,,,,,,Header,,General Info,,,,,5,12,,,Header.BoxRowCount,Number of Box Styles,HeaderBoxRowCount,,,Number,,,"BoxRowCountSuccess = SETTABULARROWLENGTH(""BoxCollSec"", ""BoxCollGrp"", HeaderBoxRowCount, 1)",,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,t,,,
|
|
11
|
+
MathExampleForm,,,,,,REST Request,,Book Data,,,,,1,6,,,BookData.CurrentIDBook,IDBook,CurrentIDBook,,,Number,,,,,,,,Book from REST request,Book,IDBook,AppData.LoadedBook,true,,,,,,,,,,,,,,,,,,,,,,,86,,
|
|
12
|
+
MathExampleForm,,,,,,MatheMagic,,Math is Magic,,,,,1,1,,,HelpContent.Math,So Very Magic,MathHelpContent,,,String,,HTML,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
13
|
+
MathExampleForm,,,,,,Basic Geometry,,Rectangle,BasicGeoGrp,,,,1,6,,,Geometry.Rectangle.Width,Width,RectangleWidth,,,Number,,,,,7.25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,y,11,190,
|
|
14
|
+
MathExampleForm,,,,,,Basic Geometry,,Rectangle,BasicGeoGrp,,,,1,6,,,Geometry.Rectangle.Height,Height,RectangleHeight,,,Number,,,,,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22,
|
|
15
|
+
MathExampleForm,,,,,,Basic Geometry,,Rectangle,BasicGeoGrp,,,,2,3,,,Geometry.Rectangle.Area,Area,RectangleArea,,unrounded,Number,,,RectangleArea = RectangleWidth * RectangleHeight,,,Area of the Rectangle.,,,,,,,,,,,,,,,,,,,,,,,,,,,This is a test for random data injection.,1,,,
|
|
16
|
+
MathExampleForm,,,,,,Basic Geometry,,Rectangle,BasicGeoGrp,,,,2,3,,,Geometry.Rectangle.AreaRoundedDefault,Area Rounded,RectangleAreaRoundedDefault,,default,Number,,,RectangleAreaRoundedDefault = ROUND(RectangleWidth * RectangleHeight),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,frog,,
|
|
17
|
+
MathExampleForm,,,,,,Basic Geometry,,Rectangle,BasicGeoGrp,,,,2,3,,,Geometry.Rectangle.AreaRoundedThree,Area Rounded 3,RectangleAreaRoundedThree,,3,Number,,,"RectangleAreaRoundedThree = ROUND((RectangleWidth * RectangleHeight), 3)",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
18
|
+
MathExampleForm,,,,,,Basic Geometry,,Rectangle,BasicGeoGrp,,,,2,3,,,Geometry.Rectangle.AreaRoundedFour,Area Rounded 5,RectangleAreaRoundedFive,,5,Number,,,"RectangleAreaRoundedFive = ROUND(RectangleArea, 5)",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,true,,,
|
|
19
|
+
MathExampleForm,,,,,,Basic Geometry,,Circle,,,,,1,12,,,Geometry.Circle.Radius,Radius,CircleRadius,,,Number,4,,,,85.523,,,,,,,,,,,,,,,,,,,,,,,,,,,,Sparse...,,,,
|
|
20
|
+
MathExampleForm,,,,,,Basic Geometry,,Circle,,,,,2,3,,,Geometry.Circle.Area,Area,CircleArea,,unrounded,Number,,,CircleArea = PI() * CircleRadius^2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
21
|
+
MathExampleForm,,,,,,Basic Geometry,,Circle,,,,,2,3,,,Geometry.Circle.AreaRoundedDefault,Area Rounded,CircleAreaRoundedDefault,,default,Number,,,CircleAreaRoundedDefault = ROUND(PI() * CircleRadius^2),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
22
|
+
MathExampleForm,,,,,,Basic Geometry,,Circle,,,,,2,3,,,Geometry.Circle.AreaRoundedThree,Area Rounded 4,CircleAreaRoundedFour,,4,Number,,,"CircleAreaRoundedFour = ROUND(CircleArea,4)",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
23
|
+
MathExampleForm,,,,,,Basic Geometry,,Circle,,,,,2,3,,,Geometry.Circle.AreaRoundedFour,Area Rounded 6,CircleAreaRoundedSix,,6,Number,,,"CircleAreaRoundedSix = ROUND(PI() * CircleRadius^2,6)",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
24
|
+
MathExampleForm,,BoxCollectionData,,,1,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,true,1,1,3,10,Boxes,Boxes,Boxes,,,Array,,TabularAddress,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
25
|
+
MathExampleForm,,BoxCollectionData,,,,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,,1,1,,,Identifier,Identifier,BoxIdentifier,,,String,,,,,,,,,,,,,Box,,X,,,,,,,,,,,,,,,,,,,,,,
|
|
26
|
+
MathExampleForm,,BoxCollectionData,,,,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,,1,1,,,BoxCategory,Category,BoxCategory,,,String,,,,,,,,,,,,,Box,,X,,,,,,,,,,,,,,,,,,,,,,
|
|
27
|
+
MathExampleForm,,BoxCollectionData,,,,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,,1,1,,,Width,Width,BoxWidth,,,Number,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
28
|
+
MathExampleForm,,BoxCollectionData,,,,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,,1,1,,,Height,Height,BoxHeight,,,Number,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
29
|
+
MathExampleForm,,BoxCollectionData,,,,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,,1,1,,,Depth,Depth,BoxDepth,,,Number,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
30
|
+
MathExampleForm,,BoxCollectionData,,,,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,,1,1,,,Floorspace,Floorspace,BoxFloorspace,,,Number,,,BoxFloorspace = BoxWidth * BoxDepth,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
31
|
+
MathExampleForm,,BoxCollectionData,,,,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,,1,1,,,Volume,Volume,BoxVolume,,,Number,,,BoxVolume = BoxFloorspace * BoxHeight,,,,,,,,,,Box,,true,,,,,,,,,,,,,,,,,,,,,,
|
|
32
|
+
MathExampleForm,,BoxCollectionData,,,,Box Collection,BoxCollSec,Boxes,BoxCollGrp,,,,1,1,,,WarehouseSpaceLeft,Warehouse Space Left,WarehouseSpaceLeft,,,Number,,,,,,,,,,,,,Box,,true,,,,,,,,,,,,,,,,,,,,,,
|
|
33
|
+
MathExampleForm,,BoxCollectionSecondaryTable,1,Boxes,1,Box Decoration,BoxDecorations,Box Decorations,BoxDecorationGroup,,,true,1,1,,,BoxDecorationSet,BoxDecorationSet,BoxDecorationSet,,,Array,,TabularAddress,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
34
|
+
MathExampleForm,,BoxCollectionSecondaryTable,,,,Box Decoration,BoxDecorations,Box Decorations,BoxDecorationGroup,,,,1,1,,,Identifier,Identifier,BoxIdentifier,,,String,,DataOnly,,,,,,,,,,,Box,,X,,,,,,,,,,,,,,,,,,,,,,
|
|
35
|
+
MathExampleForm,,BoxCollectionSecondaryTable,,,,Box Decoration,BoxDecorations,Box Decorations,BoxDecorationGroup,,,,1,1,,,Volume,Volume,BoxVolume,,,PreciseNumber,,DataOnly,VolumeLessTen = BoxVolume - 10,,,,,,,,,,Box,,X,,,,,,,,,,,,,,,,,,,,,,
|
|
36
|
+
MathExampleForm,,BoxCollectionSecondaryTable,,,,Box Decoration,BoxDecorations,Box Decorations,BoxDecorationGroup,,,,1,1,,,VolumeLessTen,VolumeLessTen,VolumeLessTen,,,PreciseNumber,,DataOnly,,,,,,,,,,,Box,,X,,,,,,,,,,,,,,,,,,,,,,
|
|
37
|
+
MathExampleForm,,BoxCollectionSecondaryTable,,,,Box Decoration,BoxDecorations,Box Decorations,BoxDecorationGroup,,,,1,1,,,DecorativeText,Decorative Text,DecorativeText,,,String,,,,,,,,,,,,,Box,,X,,,,,,,,,,,,,,,,,,,,,,
|
|
38
|
+
MathExampleForm,,,,,1,Box Summary Data,,Box Summary Data,,,,,1,1,,,Boxes[].Floorspace,BoxesFloorSpaceSet,BoxesFloorspaceSet,,,Object,,,"MAP VAR row FROM Boxes: ColorInputBackgroundTabular(""BoxDecorations"", ""BoxDecorationGroup"", ""VolumeLessTen"", stepIndex, ""#FFCCCC"", 1)",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
39
|
+
MathExampleForm,,,,,1,Box Summary Data,,Box Summary Data,,,,,1,1,,,Boxes[].Volume,BoxesVolumeSet,BoxesVolumeSet,,,Object,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
40
|
+
MathExampleForm,,,,,1,Box Summary Data,,Box Summary Data,,,,,1,1,,,Boxes[].Depth,BoxesDepthSet,BoxesDepthSet,,,Object,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
41
|
+
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,1,12,,,BoxAggregate.Count,Box Count,BoxesCount,,,Number,,,BoxesCount = COUNT(BoxesFloorspaceSet),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
42
|
+
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,2,6,,,BoxAggregate.AverageFloorspace,Average Floorspace,BoxesAverageFloorspace,,,Number,,,BoxesAverageFloorspace = AVG(BoxesFloorspaceSet),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
43
|
+
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,2,6,,,BoxAggregate.TotalFloorspace,Total Floorspace,BoxesTotalFloorspace,,,Number,,,BoxesTotalFloorspace = SUM(BoxesFloorspaceSet),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
44
|
+
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,3,4,,,BoxAggregate.AverageVolume,Average Volume,BoxesAverageVolume,,,Number,,,BoxesAverageVolume = AVG(BoxesVolumeSet),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
45
|
+
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,3,4,,,BoxAggregate.TotalVolume,Total Volume,BoxesTotalVolume,,,Number,,,BoxesTotalVolume = COUNT(BoxesVolumeSet),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
46
|
+
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,3,4,,,BoxAggregate.TotalVolumeRounded,Total Volume Rounded,BoxesTotalVolumeRounded,,,Number,,,BoxesTotalVolumeRounded = ROUND(SUM(BoxesVolumeSet)),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
47
|
+
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,4,3,,,BoxAggregate.MinDepth,Minimum Depth,BoxesMinDepth,,,Number,,,BoxesMinDepth = MIN(BoxesDepthSet),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
48
|
+
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,4,3,,,BoxAggregate.MeanDepth,Mean Depth,BoxesMeanDepth,,,Number,,,BoxesMeanDepth = MEAN(BoxesDepthSet),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
49
|
+
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,4,3,,,BoxAggregate.MedianDepth,Median Depth,BoxesMedianDepth,,,Number,,,BoxesMedianDepth = MEDIAN(BoxesDepthSet),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
50
|
+
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,4,3,,,BoxAggregate.MaxDepth,Max Depth,BoxesMaxDepth,,,Number,,,BoxesMaxDepth = MAX(BoxesDepthSet),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
51
|
+
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,5,4,,,BoxChart_Sizes,Box Category Volume Comparison,BoxChart_Sizes,,,Object,,Chart,,,,,,,,,,,,,,,pie,,"objectkeystoarray(aggregationhistogrambyobject(Boxes, ""BoxCategory"", ""Volume""))",,Box Categories,"objectvaluestoarray(aggregationhistogrambyobject(Boxes, ""BoxCategory"", ""Volume""))",,,,,,,,,,,,,,,
|
|
52
|
+
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,5,4,,,BoxChart_Size_Details,Box Size Comparison,BoxChart_Size_Details,,,Object,,Chart,,,,,,,,,,,,,,,bar,,"objectkeystoarray(aggregationhistogrambyobject(Boxes, ""Identifier"", ""Volume""))",,Box Volumes,"objectvaluestoarray(aggregationhistogrambyobject(Boxes, ""Identifier"", ""Volume""))",,,,,,,,,,,,,,,
|
|
53
|
+
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,5,4,,,BoxChart_Scatter,Box Width x Height Scatter,BoxChart_Dimensions,,,Object,,Chart,,,,,,,,,,,,,,,radar,,"objectkeystoarray(aggregationhistogrambyobject(Boxes, ""Identifier"", ""Floorspace""))",,Box Floorspace Usage,"objectvaluestoarray(aggregationhistogrambyobject(Boxes, ""Identifier"", ""Floorspace""))",,,,,,,,,,,,,,,
|
|
54
|
+
MathExampleForm,,,,,,Box Summary Data,,Box Summary Data,,,,,5,4,,,BoxChart_DataAll,Box Data Comparison,BoxChart_DataComparison,,,Object,,Chart,,,,,,,,,,,,,,,bar,,"objectkeystoarray(aggregationhistogrambyobject(Boxes, ""BoxCategory"", ""Volume""))",,Width,"objectvaluestoarray(aggregationhistogrambyobject(Boxes, ""BoxCategory"", ""Width""))",,Depth,"objectvaluestoarray(aggregationhistogrambyobject(Boxes, ""BoxCategory"", ""Depth""))",,Height,"objectvaluestoarray(aggregationhistogrambyobject(Boxes, ""BoxCategory"", ""Height""))",,,,,,,,,
|
|
55
|
+
MathExampleForm,,,,,,Rectangular Area Help,,Rectangular Area Help,,,,,1,12,,,HelpContent.Cuboid,How to Cuboid Math,CuboidHelpContent,,,String,,Markdown,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
56
|
+
MathExampleForm,,,,,,Complex Equation,ComplexEquation,Complex Equation,,Vertical,,,1,6,,,ComplexEquation.PR,PR,CePR,,,Number,,,,,4.5,,The PR is *very* important.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
57
|
+
MathExampleForm,,,,,,Complex Equation,ComplexEquation,Complex Equation,,,,,1,4,,,ComplexEquation.Z,Z,CeZ,,,Number,,,,,1.5,,Z _is not_ the z-index.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
58
|
+
MathExampleForm,,,,,,Complex Equation,ComplexEquation,Complex Equation,,,,,1,4,,,ComplexEquation.C,C,CeC,,,Number,,,,,8.75,,C is the universal constant.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
59
|
+
MathExampleForm,,,,,,Complex Equation,ComplexEquation,Complex Equation,,,,,2,6,,,ComplexEquation.Result,(160 * PR * Z) / (C / 100) * PR * Z + (160 * (1 - C / 100)),CeResult,,,Number,,,CeResult = (160 * CePR * CeZ) / (CeC / 100) * CePR * CeZ + (160 * (1 - CeC / 100)),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
60
|
+
MathExampleForm,,,,,,Complex Equation,ComplexEquation,Complex Equation,,,,,2,6,,,ComplexEquation.ResultRounded,Rounded 3,CeResultRounded,,,Number,,,"CeResultRounded = ROUND(CeResult,3)",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
61
|
+
MathExampleForm,,,,,,,,,,,,,,,,,,,,,,,,,"ColorInputBackground(""ComplexEquation"", ""CeResultRounded"", IF(CeResultRounded,"">"",100000,""#ff0000"",""#00ff00""), ""1"")",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,TRUE
|
|
62
|
+
MathExampleForm,,Rectangles,,,1,Rectangle Aggregation,,Rectangle Set,,,,false,1,1,20,,Rectangle,Rectangles,Rectangles,,,Array,,TabularAddress,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
63
|
+
MathExampleForm,,Rectangles,,,,Rectangle Aggregation,,Rectangle Set,,,,,1,1,,,Identifier,Identifier,RectangleIdentifier,,,String,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
64
|
+
MathExampleForm,,Rectangles,,,,Rectangle Aggregation,,Rectangle Set,,,,,1,1,,,Width,Width,RectangleWidth,,meters,Number,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
65
|
+
MathExampleForm,,Rectangles,,,,Rectangle Aggregation,,Rectangle Set,,,,,1,1,,,Height,Height,RectangleHeight,,meters,Number,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
66
|
+
MathExampleForm,,Rectangles,,,,Rectangle Aggregation,,Rectangle Set,,,,,1,1,,,Area,Area,RectangleArea,,,Number,,,RectangleArea = RectangleWidth * RectangleHeight,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
67
|
+
MathExampleForm,,Rectangles,,,,Rectangle Aggregation,,Rectangle Set,,,,,1,1,,,AreaDegredation,Degredation (first minus each subsequent),AreaDegredation,,,Number,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
68
|
+
MathExampleForm,,Cylinders,,,1,Cylinders,,Cylinders,,,,false,1,1,,,Cylinders,Cylinders,Cylinders,,,Array,,TabularAddress,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
69
|
+
MathExampleForm,,Cylinders,,,,Cylinders,,Cylinders,,,,,1,1,,,Identifier,Identifier,Identifier,,,String,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
70
|
+
MathExampleForm,,Cylinders,,,,Cylinders,,Cylinders,,,,,1,1,,,Radius,Radius,Radius,,,PreciseNumber,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
71
|
+
MathExampleForm,,Cylinders,,,,Cylinders,,Cylinders,,,,,1,1,,,Height,Height,Height,,,PreciseNumber,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
72
|
+
MathExampleForm,,Cylinders,,,,Cylinders,,Cylinders,,,,,1,1,,,Circumference,Circumference,Circumference,,,PreciseNumber,,,Circumference = 2 * PI() * Radius,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
73
|
+
MathExampleForm,,Cylinders,,,,Cylinders,,Cylinders,,,,,1,1,,,Area,Area,Area,,,PreciseNumber,,,Area = (2 * PI() * Radius * Height) + (2 * PI() * Radius ^2),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
74
|
+
MathExampleForm,,,,,,List Topia,Listopia,Occlusion Lists,OcclusionLists,,CustomCSSClass,,1,1,,,Listopia.Filters.Colour,Color Filter,ColourFilter,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
75
|
+
MathExampleForm,,,,,,List Topia,Listopia,Occlusion Lists,OcclusionLists,,,,2,1,,,Listopia.Color,Color,Colors,,,String,,Option,"SUBTRACTINGSUMMATION(Rectangles, ""Area"", ""AreaDegredation"")",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
76
|
+
MathExampleForm,,,,,,List Topia,Listopia,Occlusion Lists,OcclusionLists,,,,2,1,,,Listopia.Box,Box,BoxSelection,,,String,,Option,,,,,,,,,,,Box,,,,,,,,,,,,,,,,,,,,,,,,
|
|
77
|
+
MathExampleForm,,,,,,List Topia,Listopia,Occlusion Lists,OcclusionLists,,,,3,1,,,Listopia.Fruit,Fruit,FruitSelection,,,String,,Option,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
78
|
+
MathExampleForm,,,,,,List Topia,Listopia,Occlusion Lists,OcclusionLists,,,,3,1,,,Listopia.Stone,Stone,Stones,,,String,,Option,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
@@ -585,7 +585,7 @@
|
|
|
585
585
|
"Row": "1",
|
|
586
586
|
"Width": "6",
|
|
587
587
|
"Tooltip": "The PR is *very* important.",
|
|
588
|
-
"Section": "
|
|
588
|
+
"Section": "ComplexEquation",
|
|
589
589
|
"Group": "Complex_Equation"
|
|
590
590
|
},
|
|
591
591
|
"Default": "4.5"
|
|
@@ -599,7 +599,7 @@
|
|
|
599
599
|
"Row": "1",
|
|
600
600
|
"Width": "4",
|
|
601
601
|
"Tooltip": "Z _is not_ the z-index.",
|
|
602
|
-
"Section": "
|
|
602
|
+
"Section": "ComplexEquation",
|
|
603
603
|
"Group": "Complex_Equation"
|
|
604
604
|
},
|
|
605
605
|
"Default": "1.5"
|
|
@@ -613,7 +613,7 @@
|
|
|
613
613
|
"Row": "1",
|
|
614
614
|
"Width": "4",
|
|
615
615
|
"Tooltip": "C is the universal constant.",
|
|
616
|
-
"Section": "
|
|
616
|
+
"Section": "ComplexEquation",
|
|
617
617
|
"Group": "Complex_Equation"
|
|
618
618
|
},
|
|
619
619
|
"Default": "8.75"
|
|
@@ -626,7 +626,7 @@
|
|
|
626
626
|
"PictForm": {
|
|
627
627
|
"Row": "2",
|
|
628
628
|
"Width": "6",
|
|
629
|
-
"Section": "
|
|
629
|
+
"Section": "ComplexEquation",
|
|
630
630
|
"Group": "Complex_Equation"
|
|
631
631
|
}
|
|
632
632
|
},
|
|
@@ -638,7 +638,7 @@
|
|
|
638
638
|
"PictForm": {
|
|
639
639
|
"Row": "2",
|
|
640
640
|
"Width": "6",
|
|
641
|
-
"Section": "
|
|
641
|
+
"Section": "ComplexEquation",
|
|
642
642
|
"Group": "Complex_Equation"
|
|
643
643
|
}
|
|
644
644
|
},
|
|
@@ -1033,7 +1033,7 @@
|
|
|
1033
1033
|
},
|
|
1034
1034
|
{
|
|
1035
1035
|
"Name": "Complex Equation",
|
|
1036
|
-
"Hash": "
|
|
1036
|
+
"Hash": "ComplexEquation",
|
|
1037
1037
|
"Solvers": [
|
|
1038
1038
|
"CeResult = (160 * CePR * CeZ) / (CeC / 100) * CePR * CeZ + (160 * (1 - CeC / 100))",
|
|
1039
1039
|
"CeResultRounded = ROUND(CeResult,3)"
|
|
@@ -2077,5 +2077,8 @@
|
|
|
2077
2077
|
"ReferenceManifests": {}
|
|
2078
2078
|
}
|
|
2079
2079
|
},
|
|
2080
|
-
"FormName": "Math Example Form"
|
|
2080
|
+
"FormName": "Math Example Form",
|
|
2081
|
+
"ValidationSolvers": [
|
|
2082
|
+
"ColorInputBackground(\"ComplexEquation\", \"CeResultRounded\", IF(CeResultRounded,\">\",100000,\"#ff0000\",\"#00ff00\"), \"1\")"
|
|
2083
|
+
]
|
|
2081
2084
|
}
|
|
@@ -52,11 +52,11 @@ MathExampleForm,,,,,,Box Summary Data,Box_Summary_Data,Box Summary Data,Box_Summ
|
|
|
52
52
|
MathExampleForm,,,,,,Box Summary Data,Box_Summary_Data,Box Summary Data,Box_Summary_Data,,,,5,4,,,BoxChart_Scatter,Box Width x Height Scatter,BoxChart_Dimensions,,,Object,,Chart,,,,,,,,,,,,,,,radar,,"objectkeystoarray(aggregationhistogrambyobject(Boxes, ""Identifier"", ""Floorspace""))",,Box Floorspace Usage,"objectvaluestoarray(aggregationhistogrambyobject(Boxes, ""Identifier"", ""Floorspace""))"
|
|
53
53
|
MathExampleForm,,,,,,Box Summary Data,Box_Summary_Data,Box Summary Data,Box_Summary_Data,,,,5,4,,,BoxChart_DataAll,Box Data Comparison,BoxChart_DataComparison,,,Object,,Chart,,,,,,,,,,,,,,,bar,,"objectkeystoarray(aggregationhistogrambyobject(Boxes, ""BoxCategory"", ""Volume""))",,Width,"objectvaluestoarray(aggregationhistogrambyobject(Boxes, ""BoxCategory"", ""Width""))"
|
|
54
54
|
MathExampleForm,,,,,,Rectangular Area Help,Rectangular_Area_Help,Rectangular Area Help,Rectangular_Area_Help,,,,1,12,,,HelpContent.Cuboid,How to Cuboid Math,CuboidHelpContent,,,String,,Markdown,,,,,,,,,,,,,,,,,,,,
|
|
55
|
-
MathExampleForm,,,,,,Complex Equation,
|
|
56
|
-
MathExampleForm,,,,,,Complex Equation,
|
|
57
|
-
MathExampleForm,,,,,,Complex Equation,
|
|
58
|
-
MathExampleForm,,,,,,Complex Equation,
|
|
59
|
-
MathExampleForm,,,,,,Complex Equation,
|
|
55
|
+
MathExampleForm,,,,,,Complex Equation,ComplexEquation,Complex Equation,Complex_Equation,Vertical,,,1,6,,,ComplexEquation.PR,PR,CePR,,,Number,,,CeResult = (160 * CePR * CeZ) / (CeC / 100) * CePR * CeZ + (160 * (1 - CeC / 100)),1,4.5,,The PR is *very* important.,,,,,,,,,,,,,,,
|
|
56
|
+
MathExampleForm,,,,,,Complex Equation,ComplexEquation,Complex Equation,Complex_Equation,Vertical,,,1,4,,,ComplexEquation.Z,Z,CeZ,,,Number,,,"CeResultRounded = ROUND(CeResult,3)",1,1.5,,Z _is not_ the z-index.,,,,,,,,,,,,,,,
|
|
57
|
+
MathExampleForm,,,,,,Complex Equation,ComplexEquation,Complex Equation,Complex_Equation,Vertical,,,1,4,,,ComplexEquation.C,C,CeC,,,Number,,,,,8.75,,C is the universal constant.,,,,,,,,,,,,,,,
|
|
58
|
+
MathExampleForm,,,,,,Complex Equation,ComplexEquation,Complex Equation,Complex_Equation,Vertical,,,2,6,,,ComplexEquation.Result,(160 * PR * Z) / (C / 100) * PR * Z + (160 * (1 - C / 100)),CeResult,,,Number,,,,,,,,,,,,,,,,,,,,,,
|
|
59
|
+
MathExampleForm,,,,,,Complex Equation,ComplexEquation,Complex Equation,Complex_Equation,Vertical,,,2,6,,,ComplexEquation.ResultRounded,Rounded 3,CeResultRounded,,,Number,,,,,,,,,,,,,,,,,,,,,,
|
|
60
60
|
MathExampleForm,,Rectangles,,Rectangle,1,Rectangle Aggregation,Rectangle_Aggregation,Rectangle Set,Rectangle_Set,Tabular,,false,,,20,,Rectangle,Rectangles,Rectangles,,,Array,,,RectangleArea = RectangleWidth * RectangleHeight,1,,,,,,,,,,,,,,,,,,
|
|
61
61
|
MathExampleForm,,Rectangles,,,,Rectangle Aggregation,Rectangle_Aggregation,Rectangle Set,Rectangle_Set,Tabular,,false,1,1,,,AreaDegredation,Degredation (first minus each subsequent),AreaDegredation,,,Number,,,,,,,,,,,,,,,,,,,,,,
|
|
62
62
|
MathExampleForm,,Rectangles,,,,Rectangle Aggregation,Rectangle_Aggregation,Rectangle Set,Rectangle_Set,Tabular,,false,1,1,,,Area,Area,RectangleArea,,,Number,,,,,,,,,,,,,,,,,,,,,,
|
|
@@ -585,7 +585,7 @@
|
|
|
585
585
|
"Row": "1",
|
|
586
586
|
"Width": "6",
|
|
587
587
|
"Tooltip": "The PR is *very* important.",
|
|
588
|
-
"Section": "
|
|
588
|
+
"Section": "ComplexEquation",
|
|
589
589
|
"Group": "Complex_Equation"
|
|
590
590
|
},
|
|
591
591
|
"Default": "4.5"
|
|
@@ -599,7 +599,7 @@
|
|
|
599
599
|
"Row": "1",
|
|
600
600
|
"Width": "4",
|
|
601
601
|
"Tooltip": "Z _is not_ the z-index.",
|
|
602
|
-
"Section": "
|
|
602
|
+
"Section": "ComplexEquation",
|
|
603
603
|
"Group": "Complex_Equation"
|
|
604
604
|
},
|
|
605
605
|
"Default": "1.5"
|
|
@@ -613,7 +613,7 @@
|
|
|
613
613
|
"Row": "1",
|
|
614
614
|
"Width": "4",
|
|
615
615
|
"Tooltip": "C is the universal constant.",
|
|
616
|
-
"Section": "
|
|
616
|
+
"Section": "ComplexEquation",
|
|
617
617
|
"Group": "Complex_Equation"
|
|
618
618
|
},
|
|
619
619
|
"Default": "8.75"
|
|
@@ -626,7 +626,7 @@
|
|
|
626
626
|
"PictForm": {
|
|
627
627
|
"Row": "2",
|
|
628
628
|
"Width": "6",
|
|
629
|
-
"Section": "
|
|
629
|
+
"Section": "ComplexEquation",
|
|
630
630
|
"Group": "Complex_Equation"
|
|
631
631
|
}
|
|
632
632
|
},
|
|
@@ -638,7 +638,7 @@
|
|
|
638
638
|
"PictForm": {
|
|
639
639
|
"Row": "2",
|
|
640
640
|
"Width": "6",
|
|
641
|
-
"Section": "
|
|
641
|
+
"Section": "ComplexEquation",
|
|
642
642
|
"Group": "Complex_Equation"
|
|
643
643
|
}
|
|
644
644
|
},
|
|
@@ -1033,7 +1033,7 @@
|
|
|
1033
1033
|
},
|
|
1034
1034
|
{
|
|
1035
1035
|
"Name": "Complex Equation",
|
|
1036
|
-
"Hash": "
|
|
1036
|
+
"Hash": "ComplexEquation",
|
|
1037
1037
|
"Solvers": [
|
|
1038
1038
|
"CeResult = (160 * CePR * CeZ) / (CeC / 100) * CePR * CeZ + (160 * (1 - CeC / 100))",
|
|
1039
1039
|
"CeResultRounded = ROUND(CeResult,3)"
|
|
@@ -2077,5 +2077,8 @@
|
|
|
2077
2077
|
"ReferenceManifests": {}
|
|
2078
2078
|
}
|
|
2079
2079
|
},
|
|
2080
|
-
"FormName": "Math Example Form"
|
|
2080
|
+
"FormName": "Math Example Form",
|
|
2081
|
+
"ValidationSolvers": [
|
|
2082
|
+
"ColorInputBackground(\"ComplexEquation\", \"CeResultRounded\", IF(CeResultRounded,\">\",100000,\"#ff0000\",\"#00ff00\"), \"1\")"
|
|
2083
|
+
]
|
|
2081
2084
|
}
|
package/docs/.nojekyll
ADDED
|
File without changes
|