pict-section-form 1.1.2 → 1.1.3
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/_version.json +3 -3
- package/docs/examples/change_tracking/change_tracking.js +18 -2
- package/docs/examples/diagram_form/diagram_form_example.min.js +1 -1
- package/docs/examples/diagram_form/index.html +5 -0
- package/docs/examples/dynamic_analysis/dynamic_analysis_application.js +2 -2
- package/docs/examples/gradebook/gradebook_application.min.js +1 -1
- package/docs/examples/ndt_field_test/ndt_field_test.js +18 -2
- package/docs/examples/richtext_form/codemirror-bundle.js +29982 -0
- package/docs/examples/richtext_form/index.html +3 -0
- package/docs/examples/richtext_form/richtext_form_example.min.js +1 -1
- package/docs/examples/scope_mathematics/scope_mathematics.js +18 -2
- package/docs/examples/simple_table/simple_tabular_application.min.js +1 -1
- package/docs/examples/superhero_studio/codemirror-bundle.js +29982 -0
- package/docs/examples/superhero_studio/index.html +8 -0
- package/docs/examples/superhero_studio/superhero_studio_example.min.js +1 -1
- package/docs/index.html +2 -2
- package/docs/retold-catalog.json +3 -6
- package/docs/retold-keyword-index.json +1 -1
- package/example_applications/diagram_form/html/index.html +5 -0
- package/example_applications/diagram_form/package.json +4 -3
- package/example_applications/richtext_form/html/codemirror-bundle.js +29982 -0
- package/example_applications/richtext_form/html/index.html +3 -0
- package/example_applications/superhero_studio/html/codemirror-bundle.js +29982 -0
- package/example_applications/superhero_studio/html/index.html +8 -0
- package/example_applications/superhero_studio/package.json +4 -3
- package/package.json +1 -1
- package/source/providers/inputs/Pict-Provider-Input-Diagram-CSS.js +17 -1
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.1.
|
|
7
|
+
<meta name="description" content="Pict-Section-Form v1.1.3 Documentation — Pict dynamic form sections">
|
|
8
8
|
|
|
9
|
-
<title>Pict-Section-Form v1.1.
|
|
9
|
+
<title>Pict-Section-Form v1.1.3 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-05T01:12:47.318Z",
|
|
3
3
|
"Mode": "module",
|
|
4
4
|
"GitHubOrg": "fable-retold",
|
|
5
5
|
"DefaultBranch": "master",
|
|
@@ -246,6 +246,7 @@
|
|
|
246
246
|
"examples/ndt_field_test/ndt_field_test.js",
|
|
247
247
|
"examples/postcard_example/README.md",
|
|
248
248
|
"examples/richtext_form/README.md",
|
|
249
|
+
"examples/richtext_form/codemirror-bundle.js",
|
|
249
250
|
"examples/richtext_form/index.html",
|
|
250
251
|
"examples/richtext_form/richtext_form_example.min.js",
|
|
251
252
|
"examples/scope_mathematics/README.md",
|
|
@@ -255,6 +256,7 @@
|
|
|
255
256
|
"examples/simple_table/index.html",
|
|
256
257
|
"examples/simple_table/simple_tabular_application.min.js",
|
|
257
258
|
"examples/superhero_studio/README.md",
|
|
259
|
+
"examples/superhero_studio/codemirror-bundle.js",
|
|
258
260
|
"examples/superhero_studio/excalidraw-iframe-host.html",
|
|
259
261
|
"examples/superhero_studio/excalidraw-wrapper.css",
|
|
260
262
|
"examples/superhero_studio/excalidraw-wrapper.min.js",
|
|
@@ -290,11 +292,6 @@
|
|
|
290
292
|
"playground/runtime/pict.min.js",
|
|
291
293
|
"playground.md",
|
|
292
294
|
"retold-catalog.json",
|
|
293
|
-
"retold-keyword-index.json",
|
|
294
|
-
".nojekyll",
|
|
295
|
-
"_version.json",
|
|
296
|
-
"index.html",
|
|
297
|
-
"retold-catalog.json",
|
|
298
295
|
"retold-keyword-index.json"
|
|
299
296
|
]
|
|
300
297
|
},
|
|
@@ -78,6 +78,11 @@
|
|
|
78
78
|
</main>
|
|
79
79
|
|
|
80
80
|
<link rel="stylesheet" href="./excalidraw-wrapper.css">
|
|
81
|
+
<script>
|
|
82
|
+
// Tell Excalidraw where to fetch its fonts + locale chunks from. Must be
|
|
83
|
+
// set BEFORE the wrapper bundle loads.
|
|
84
|
+
window.EXCALIDRAW_ASSET_PATH = './excalidraw-assets/';
|
|
85
|
+
</script>
|
|
81
86
|
<script src="./pict.min.js"></script>
|
|
82
87
|
<!-- Excalidraw vendor bundle (React + Excalidraw). The Diagram InputType's
|
|
83
88
|
editor mode looks for window.PictSectionExcalidrawVendor; without these
|
|
@@ -14,9 +14,10 @@
|
|
|
14
14
|
"whenFileExists": "overwrite"
|
|
15
15
|
},
|
|
16
16
|
"copyFiles": [
|
|
17
|
-
{ "from": "./html/*",
|
|
18
|
-
{ "from": "../../node_modules/pict/dist/*",
|
|
19
|
-
{ "from": "../../node_modules/pict-section-excalidraw/vendor/excalidraw-built/*",
|
|
17
|
+
{ "from": "./html/*", "to": "./dist/" },
|
|
18
|
+
{ "from": "../../node_modules/pict/dist/*", "to": "./dist/" },
|
|
19
|
+
{ "from": "../../node_modules/pict-section-excalidraw/vendor/excalidraw-built/*", "to": "./dist/" },
|
|
20
|
+
{ "from": "../../node_modules/pict-section-excalidraw/vendor/excalidraw-built/assets/**/*", "to": "./dist/excalidraw-assets/" }
|
|
20
21
|
],
|
|
21
22
|
"retold": {
|
|
22
23
|
"ExampleApplication": {
|