pict-section-form 1.1.0 → 1.1.1

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 (39) hide show
  1. package/docs/_cover.md +3 -0
  2. package/docs/_sidebar.md +5 -0
  3. package/docs/_version.json +3 -3
  4. package/docs/examples/README.md +3 -0
  5. package/docs/examples/change_tracking/change_tracking.js +9571 -9552
  6. package/docs/examples/diagram_form/README.md +116 -0
  7. package/docs/examples/diagram_form/diagram_form_example.min.js +42 -0
  8. package/docs/examples/diagram_form/excalidraw-iframe-host.html +25 -0
  9. package/docs/examples/diagram_form/excalidraw-wrapper.css +1 -0
  10. package/docs/examples/diagram_form/index.html +110 -0
  11. package/docs/examples/diagram_form/manifest.json +13 -0
  12. package/docs/examples/dynamic_analysis/dynamic_analysis_application.js +6526 -6518
  13. package/docs/examples/gradebook/gradebook_application.min.js +2 -2
  14. package/docs/examples/ndt_field_test/ndt_field_test.js +9571 -9552
  15. package/docs/examples/richtext_form/README.md +132 -0
  16. package/docs/examples/richtext_form/index.html +82 -0
  17. package/docs/examples/richtext_form/richtext_form_example.min.js +42 -0
  18. package/docs/examples/scope_mathematics/scope_mathematics.js +9571 -9552
  19. package/docs/examples/simple_table/simple_tabular_application.min.js +2 -2
  20. package/docs/examples/superhero_studio/README.md +199 -0
  21. package/docs/examples/superhero_studio/excalidraw-iframe-host.html +25 -0
  22. package/docs/examples/superhero_studio/excalidraw-wrapper.css +1 -0
  23. package/docs/examples/superhero_studio/index.html +160 -0
  24. package/docs/examples/superhero_studio/manifest.json +13 -0
  25. package/docs/examples/superhero_studio/superhero_studio_example.min.js +42 -0
  26. package/docs/index.html +2 -2
  27. package/docs/retold-catalog.json +36 -1
  28. package/docs/retold-keyword-index.json +11843 -7677
  29. package/example_applications/diagram_form/DiagramForm-Example-Application.js +145 -0
  30. package/example_applications/diagram_form/html/index.html +110 -0
  31. package/example_applications/diagram_form/package.json +29 -0
  32. package/example_applications/richtext_form/RichTextForm-Example-Application.js +176 -0
  33. package/example_applications/richtext_form/html/index.html +82 -0
  34. package/example_applications/richtext_form/package.json +28 -0
  35. package/example_applications/superhero_studio/SuperheroStudio-Example-Application.js +313 -0
  36. package/example_applications/superhero_studio/html/index.html +160 -0
  37. package/example_applications/superhero_studio/package.json +29 -0
  38. package/example_applications/superhero_studio/superheroes/Superheroes.js +386 -0
  39. package/package.json +11 -5
package/docs/_cover.md CHANGED
@@ -14,9 +14,12 @@
14
14
  | Example | Complexity | Launch |
15
15
  |---------|------------|--------|
16
16
  | [Change Tracking](examples/change%5Ftracking/README.md) | Intermediate | [Launch](examples/change%5Ftracking/index.html) |
17
+ | [Diagram Form Input](examples/diagram%5Fform/README.md) | Intermediate | [Launch](examples/diagram%5Fform/index.html) |
17
18
  | [Dynamic Analysis](examples/dynamic%5Fanalysis/README.md) | Advanced | [Launch](examples/dynamic%5Fanalysis/index.html) |
18
19
  | [Gradebook](examples/gradebook/README.md) | Intermediate | [Launch](examples/gradebook/index.html) |
19
20
  | [NDT Field Test](examples/ndt%5Ffield%5Ftest/README.md) | Advanced | [Launch](examples/ndt%5Ffield%5Ftest/index.html) |
21
+ | [RichText Form Input](examples/richtext%5Fform/README.md) | Intermediate | [Launch](examples/richtext%5Fform/index.html) |
20
22
  | [Scope Mathematics](examples/scope%5Fmathematics/README.md) | Intermediate | [Launch](examples/scope%5Fmathematics/index.html) |
21
23
  | [Simple Table](examples/simple%5Ftable/README.md) | Basic | [Launch](examples/simple%5Ftable/index.html) |
24
+ | [Superhero Studio](examples/superhero%5Fstudio/README.md) | Advanced | [Launch](examples/superhero%5Fstudio/index.html) |
22
25
  <!-- docuserve:examples:end -->
package/docs/_sidebar.md CHANGED
@@ -38,6 +38,8 @@
38
38
  - [AutofillTriggerGroup](input_providers/011-autofill-trigger-group.md)
39
39
  - [TabGroupSelector](input_providers/012-tab-group-selector.md)
40
40
  - [TabSectionSelector](input_providers/013-tab-section-selector.md)
41
+ - [RichText](input_providers/014-rich-text.md)
42
+ - [Diagram](input_providers/015-diagram.md)
41
43
 
42
44
  - Examples
43
45
 
@@ -48,3 +50,6 @@
48
50
  - [Change Tracking](#/page/examples/change_tracking/README)
49
51
  - [NDT Field Test](#/page/examples/ndt_field_test/README)
50
52
  - [Dynamic Analysis](#/page/examples/dynamic_analysis/README)
53
+ - [RichText Form Input](#/page/examples/richtext_form/README)
54
+ - [Diagram Form Input](#/page/examples/diagram_form/README)
55
+ - [Superhero Studio](#/page/examples/superhero_studio/README)
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "Name": "pict-section-form",
3
- "Version": "1.0.199",
3
+ "Version": "1.1.0",
4
4
  "Description": "Pict dynamic form sections",
5
- "GeneratedAt": "2026-06-04T23:17:17.789Z",
6
- "GitCommit": "75962c6"
5
+ "GeneratedAt": "2026-06-04T23:53:18.220Z",
6
+ "GitCommit": "33b6ef4"
7
7
  }
@@ -99,9 +99,12 @@ node ServeExamples.js
99
99
  | Example | Complexity | Summary | Live |
100
100
  |---------|------------|---------|------|
101
101
  | [Change Tracking](change%5Ftracking/README.md) | Intermediate | Demonstrates the multi-input evaluate-on-change solver pattern for reacting to several fields at once. | [Launch](examples/change%5Ftracking/index.html) |
102
+ | [Diagram Form Input](diagram%5Fform/README.md) | Intermediate | A pict-section-form field whose InputType is Diagram — boots in view mode (inline SVG, theme-recolorable), toggles into edit mode (Excalidraw) on demand. Demonstrates the themeify pipeline: change the --diagram-* CSS variables and the view-mode SVG visibly re-colors without a re-render. | [Launch](examples/diagram%5Fform/index.html) |
102
103
  | [Dynamic Analysis](dynamic%5Fanalysis/README.md) | Advanced | A fruit-nutrition analysis lab with dynamic section injection, solver rewriting, charts, and histograms. | [Launch](examples/dynamic%5Fanalysis/index.html) |
103
104
  | [Gradebook](gradebook/README.md) | Intermediate | An advanced tabular recordset with stacked headers, row labels, dynamic columns, row/column selection, and column sorting — built purely from manifest configuration. | [Launch](examples/gradebook/index.html) |
104
105
  | [NDT Field Test](ndt%5Ffield%5Ftest/README.md) | Advanced | A nuclear-density-testing field data-collection form with offline persistence and charted results. | [Launch](examples/ndt%5Ffield%5Ftest/index.html) |
106
+ | [RichText Form Input](richtext%5Fform/README.md) | Intermediate | A pict-section-form field whose InputType is RichText — boots in view mode (rendered markdown), toggles into edit mode (CodeMirror) on demand. Demonstrates the AllowImages knob and the pluggable ImageUploader override. | [Launch](examples/richtext%5Fform/index.html) |
105
107
  | [Scope Mathematics](scope%5Fmathematics/README.md) | Intermediate | Shows solvers reaching across scopes to read and combine data from other sections of the form. | [Launch](examples/scope%5Fmathematics/index.html) |
106
108
  | [Simple Table](simple%5Ftable/README.md) | Basic | A minimal tabular forms application demonstrating manifest-driven table layout, reference manifests, and dot-notation access into nested record data. | [Launch](examples/simple%5Ftable/index.html) |
109
+ | [Superhero Studio](superhero%5Fstudio/README.md) | Advanced | A character-sheet form that combines both new complex InputTypes — RichText for the origin story (markdown editor + rendered view) and Diagram for the portrait (Excalidraw + inline themed SVG) — alongside stock inputs (Text, Number, Option, TextArea). A dropdown at the top loads five hand-drawn superheroes; each one's portrait recolors when you swap themes. Boots in view-mode, edit on demand. | [Launch](examples/superhero%5Fstudio/index.html) |
107
110
  <!-- docuserve:examples-index:end -->