pict-section-form 1.1.0 → 1.1.2
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/docs/_cover.md +3 -0
- package/docs/_sidebar.md +5 -0
- package/docs/_version.json +3 -3
- package/docs/examples/README.md +3 -0
- package/docs/examples/change_tracking/change_tracking.js +9437 -9427
- package/docs/examples/diagram_form/README.md +116 -0
- package/docs/examples/diagram_form/diagram_form_example.min.js +42 -0
- package/docs/examples/diagram_form/excalidraw-iframe-host.html +25 -0
- package/docs/examples/diagram_form/excalidraw-wrapper.css +1 -0
- package/docs/examples/diagram_form/excalidraw-wrapper.min.js +3327 -0
- package/docs/examples/diagram_form/index.html +116 -0
- package/docs/examples/diagram_form/manifest.json +13 -0
- package/docs/examples/diagram_form/react-vendor.min.js +9 -0
- package/docs/examples/dynamic_analysis/dynamic_analysis_application.js +6549 -6550
- package/docs/examples/gradebook/gradebook_application.min.js +2 -2
- package/docs/examples/ndt_field_test/ndt_field_test.js +9437 -9427
- package/docs/examples/richtext_form/README.md +132 -0
- package/docs/examples/richtext_form/index.html +82 -0
- package/docs/examples/richtext_form/richtext_form_example.min.js +42 -0
- package/docs/examples/scope_mathematics/scope_mathematics.js +9437 -9427
- package/docs/examples/simple_table/simple_tabular_application.min.js +2 -2
- package/docs/examples/superhero_studio/README.md +199 -0
- package/docs/examples/superhero_studio/excalidraw-iframe-host.html +25 -0
- package/docs/examples/superhero_studio/excalidraw-wrapper.css +1 -0
- package/docs/examples/superhero_studio/excalidraw-wrapper.min.js +3327 -0
- package/docs/examples/superhero_studio/index.html +166 -0
- package/docs/examples/superhero_studio/manifest.json +13 -0
- package/docs/examples/superhero_studio/react-vendor.min.js +9 -0
- package/docs/examples/superhero_studio/superhero_studio_example.min.js +42 -0
- package/docs/index.html +2 -2
- package/docs/retold-catalog.json +45 -1
- package/docs/retold-keyword-index.json +11843 -7677
- package/example_applications/diagram_form/DiagramForm-Example-Application.js +145 -0
- package/example_applications/diagram_form/html/index.html +116 -0
- package/example_applications/diagram_form/package.json +29 -0
- package/example_applications/richtext_form/RichTextForm-Example-Application.js +176 -0
- package/example_applications/richtext_form/html/index.html +82 -0
- package/example_applications/richtext_form/package.json +28 -0
- package/example_applications/superhero_studio/SuperheroStudio-Example-Application.js +313 -0
- package/example_applications/superhero_studio/html/index.html +166 -0
- package/example_applications/superhero_studio/package.json +29 -0
- package/example_applications/superhero_studio/superheroes/Superheroes.js +386 -0
- package/package.json +3 -9
- package/source/providers/inputs/Pict-Provider-Input-Diagram.js +1 -31
- package/source/providers/inputs/Pict-Provider-Input-RichText.js +1 -32
package/docs/index.html
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
7
|
-
<meta name="description" content="Pict-Section-Form v1.
|
|
7
|
+
<meta name="description" content="Pict-Section-Form v1.1.2 Documentation — Pict dynamic form sections">
|
|
8
8
|
|
|
9
|
-
<title>Pict-Section-Form v1.
|
|
9
|
+
<title>Pict-Section-Form v1.1.2 Documentation</title>
|
|
10
10
|
|
|
11
11
|
<!-- KaTeX stylesheet for LaTeX equation rendering -->
|
|
12
12
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.21/dist/katex.min.css">
|
package/docs/retold-catalog.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Generated": "2026-06-
|
|
2
|
+
"Generated": "2026-06-05T00:14:26.491Z",
|
|
3
3
|
"Mode": "module",
|
|
4
4
|
"GitHubOrg": "fable-retold",
|
|
5
5
|
"DefaultBranch": "master",
|
|
@@ -137,6 +137,14 @@
|
|
|
137
137
|
{
|
|
138
138
|
"Title": "TabSectionSelector",
|
|
139
139
|
"Path": "input_providers/013-tab-section-selector.md"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"Title": "RichText",
|
|
143
|
+
"Path": "input_providers/014-rich-text.md"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"Title": "Diagram",
|
|
147
|
+
"Path": "input_providers/015-diagram.md"
|
|
140
148
|
}
|
|
141
149
|
]
|
|
142
150
|
},
|
|
@@ -170,6 +178,18 @@
|
|
|
170
178
|
{
|
|
171
179
|
"Title": "Dynamic Analysis",
|
|
172
180
|
"Path": "#/page/examples/dynamic_analysis/README"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"Title": "RichText Form Input",
|
|
184
|
+
"Path": "#/page/examples/richtext_form/README"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"Title": "Diagram Form Input",
|
|
188
|
+
"Path": "#/page/examples/diagram_form/README"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"Title": "Superhero Studio",
|
|
192
|
+
"Path": "#/page/examples/superhero_studio/README"
|
|
173
193
|
}
|
|
174
194
|
]
|
|
175
195
|
}
|
|
@@ -205,6 +225,14 @@
|
|
|
205
225
|
"examples/change_tracking/README.md",
|
|
206
226
|
"examples/change_tracking/change_tracking.js",
|
|
207
227
|
"examples/change_tracking/index.html",
|
|
228
|
+
"examples/diagram_form/README.md",
|
|
229
|
+
"examples/diagram_form/diagram_form_example.min.js",
|
|
230
|
+
"examples/diagram_form/excalidraw-iframe-host.html",
|
|
231
|
+
"examples/diagram_form/excalidraw-wrapper.css",
|
|
232
|
+
"examples/diagram_form/excalidraw-wrapper.min.js",
|
|
233
|
+
"examples/diagram_form/index.html",
|
|
234
|
+
"examples/diagram_form/manifest.json",
|
|
235
|
+
"examples/diagram_form/react-vendor.min.js",
|
|
208
236
|
"examples/dynamic_analysis/README.md",
|
|
209
237
|
"examples/dynamic_analysis/chart.umd.js",
|
|
210
238
|
"examples/dynamic_analysis/dynamic_analysis_application.js",
|
|
@@ -217,12 +245,23 @@
|
|
|
217
245
|
"examples/ndt_field_test/index.html",
|
|
218
246
|
"examples/ndt_field_test/ndt_field_test.js",
|
|
219
247
|
"examples/postcard_example/README.md",
|
|
248
|
+
"examples/richtext_form/README.md",
|
|
249
|
+
"examples/richtext_form/index.html",
|
|
250
|
+
"examples/richtext_form/richtext_form_example.min.js",
|
|
220
251
|
"examples/scope_mathematics/README.md",
|
|
221
252
|
"examples/scope_mathematics/index.html",
|
|
222
253
|
"examples/scope_mathematics/scope_mathematics.js",
|
|
223
254
|
"examples/simple_table/README.md",
|
|
224
255
|
"examples/simple_table/index.html",
|
|
225
256
|
"examples/simple_table/simple_tabular_application.min.js",
|
|
257
|
+
"examples/superhero_studio/README.md",
|
|
258
|
+
"examples/superhero_studio/excalidraw-iframe-host.html",
|
|
259
|
+
"examples/superhero_studio/excalidraw-wrapper.css",
|
|
260
|
+
"examples/superhero_studio/excalidraw-wrapper.min.js",
|
|
261
|
+
"examples/superhero_studio/index.html",
|
|
262
|
+
"examples/superhero_studio/manifest.json",
|
|
263
|
+
"examples/superhero_studio/react-vendor.min.js",
|
|
264
|
+
"examples/superhero_studio/superhero_studio_example.min.js",
|
|
226
265
|
"index.html",
|
|
227
266
|
"input_providers/001-select.md",
|
|
228
267
|
"input_providers/002-datetime.md",
|
|
@@ -251,6 +290,11 @@
|
|
|
251
290
|
"playground/runtime/pict.min.js",
|
|
252
291
|
"playground.md",
|
|
253
292
|
"retold-catalog.json",
|
|
293
|
+
"retold-keyword-index.json",
|
|
294
|
+
".nojekyll",
|
|
295
|
+
"_version.json",
|
|
296
|
+
"index.html",
|
|
297
|
+
"retold-catalog.json",
|
|
254
298
|
"retold-keyword-index.json"
|
|
255
299
|
]
|
|
256
300
|
},
|