pict-section-form 1.0.5 → 1.0.8
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 +2 -2
- package/example_applications/manifest_testbed/.quackage.json +9 -0
- package/example_applications/manifest_testbed/Manifest_Testbed_Application.js +59 -0
- package/example_applications/manifest_testbed/html/index.html +18 -0
- package/example_applications/manifest_testbed/package.json +27 -0
- package/example_applications/manyfest_editor/css/ManyfestEditor.css +0 -0
- package/example_applications/manyfest_editor/html/index.html +92 -0
- package/example_applications/manyfest_editor/node_modules/.package-lock.json +147 -0
- package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/LICENSE +21 -0
- package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/README.md +397 -0
- package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/package.json +59 -0
- package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/src/Router.ts +849 -0
- package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/src/RouterOutlet.ts +472 -0
- package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/src/index.ts +4 -0
- package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/src/types.ts +101 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/autocomplete/.github/workflows/dispatch.yml +16 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/autocomplete/CHANGELOG.md +544 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/autocomplete/LICENSE +21 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/autocomplete/README.md +18 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/autocomplete/package.json +47 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/commands/.github/workflows/dispatch.yml +16 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/commands/CHANGELOG.md +302 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/commands/LICENSE +21 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/commands/README.md +18 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/commands/package.json +42 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/language/.github/workflows/dispatch.yml +16 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/language/CHANGELOG.md +324 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/language/LICENSE +21 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/language/README.md +18 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/language/package.json +44 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/lint/.github/workflows/dispatch.yml +16 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/lint/CHANGELOG.md +244 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/lint/LICENSE +21 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/lint/README.md +18 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/lint/package.json +40 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/search/.github/workflows/dispatch.yml +16 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/search/CHANGELOG.md +286 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/search/LICENSE +21 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/search/README.md +18 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/search/package.json +40 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/state/.github/workflows/dispatch.yml +16 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/state/CHANGELOG.md +268 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/state/LICENSE +21 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/state/README.md +18 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/state/package.json +35 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/view/.github/workflows/dispatch.yml +16 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/view/CHANGELOG.md +1710 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/view/LICENSE +21 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/view/README.md +18 -0
- package/example_applications/manyfest_editor/node_modules/@codemirror/view/package.json +40 -0
- package/example_applications/manyfest_editor/node_modules/@lezer/common/LICENSE +21 -0
- package/example_applications/manyfest_editor/node_modules/@lezer/common/README.md +14 -0
- package/example_applications/manyfest_editor/node_modules/@lezer/common/package.json +31 -0
- package/example_applications/manyfest_editor/node_modules/@lezer/highlight/LICENSE +21 -0
- package/example_applications/manyfest_editor/node_modules/@lezer/highlight/README.md +14 -0
- package/example_applications/manyfest_editor/node_modules/@lezer/highlight/package.json +31 -0
- package/example_applications/manyfest_editor/node_modules/@lezer/lr/LICENSE +21 -0
- package/example_applications/manyfest_editor/node_modules/@lezer/lr/README.md +25 -0
- package/example_applications/manyfest_editor/node_modules/@lezer/lr/package.json +32 -0
- package/example_applications/manyfest_editor/node_modules/bulma/LICENSE +21 -0
- package/example_applications/manyfest_editor/node_modules/bulma/README.md +143 -0
- package/example_applications/manyfest_editor/node_modules/bulma/bulma.scss +4 -0
- package/example_applications/manyfest_editor/node_modules/bulma/css/bulma.css +22445 -0
- package/example_applications/manyfest_editor/node_modules/bulma/css/bulma.css.map +1 -0
- package/example_applications/manyfest_editor/node_modules/bulma/css/bulma.min.css +3 -0
- package/example_applications/manyfest_editor/node_modules/bulma/css/versions/bulma-no-dark-mode.css +20542 -0
- package/example_applications/manyfest_editor/node_modules/bulma/css/versions/bulma-no-dark-mode.css.map +1 -0
- package/example_applications/manyfest_editor/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css +3 -0
- package/example_applications/manyfest_editor/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css +10620 -0
- package/example_applications/manyfest_editor/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css.map +1 -0
- package/example_applications/manyfest_editor/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css +3 -0
- package/example_applications/manyfest_editor/node_modules/bulma/css/versions/bulma-no-helpers.css +10620 -0
- package/example_applications/manyfest_editor/node_modules/bulma/css/versions/bulma-no-helpers.css.map +1 -0
- package/example_applications/manyfest_editor/node_modules/bulma/css/versions/bulma-no-helpers.min.css +3 -0
- package/example_applications/manyfest_editor/node_modules/bulma/css/versions/bulma-prefixed.min.css +22445 -0
- package/example_applications/manyfest_editor/node_modules/bulma/css/versions/bulma-prefixed.min.css.map +1 -0
- package/example_applications/manyfest_editor/node_modules/bulma/css/versions/bulma-prefixed.min.min.css +3 -0
- package/example_applications/manyfest_editor/node_modules/bulma/package.json +61 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/_index.scss +10 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/base/_index.scss +6 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/base/animations.scss +15 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/base/generic.scss +239 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/base/minireset.scss +92 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/base/skeleton.scss +114 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/components/_index.scss +13 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/components/breadcrumb.scss +139 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/components/card.scss +162 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/components/dropdown.scss +188 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/components/menu.scss +165 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/components/message.scss +183 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/components/modal.scss +164 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/components/navbar.scss +788 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/components/pagination.scss +379 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/components/panel.scss +218 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/components/tabs.scss +273 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/elements/_index.scss +16 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/elements/block.scss +6 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/elements/box.scss +59 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/elements/button.scss +647 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/elements/content.scss +283 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/elements/delete.scss +6 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/elements/icon.scss +67 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/elements/image.scss +62 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/elements/loader.scss +15 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/elements/notification.scss +105 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/elements/progress.scss +115 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/elements/table.scss +261 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/elements/tag.scss +219 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/elements/title.scss +128 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/form/_index.scss +9 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/form/checkbox-radio.scss +32 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/form/file.scss +330 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/form/input-textarea.scss +123 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/form/select.scss +144 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/form/shared.scss +172 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/form/tools.scss +341 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/grid/_index.scss +5 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/grid/columns-v2.scss +957 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/grid/columns.scss +877 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/grid/grid.scss +209 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/helpers/_index.scss +15 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/helpers/aspect-ratio.scss +10 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/helpers/border.scss +15 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/helpers/color.scss +364 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/helpers/flexbox.scss +62 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/helpers/float.scss +28 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/helpers/gap.scss +24 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/helpers/other.scss +19 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/helpers/overflow.scss +21 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/helpers/position.scss +19 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/helpers/spacing.scss +64 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/helpers/typography.scss +168 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/helpers/visibility.scss +221 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/layout/_index.scss +9 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/layout/container.scss +51 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/layout/footer.scss +23 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/layout/hero.scss +270 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/layout/level.scss +107 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/layout/media.scss +106 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/layout/section.scss +34 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/themes/_index.scss +35 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/themes/dark.scss +56 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/themes/light.scss +146 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/themes/setup.scss +174 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/utilities/_index.scss +7 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/utilities/controls.scss +85 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/utilities/css-variables.scss +425 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/utilities/derived-variables.scss +112 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/utilities/extends.scss +34 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/utilities/functions.scss +258 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/utilities/initial-variables.scss +155 -0
- package/example_applications/manyfest_editor/node_modules/bulma/sass/utilities/mixins.scss +460 -0
- package/example_applications/manyfest_editor/node_modules/bulma/versions/bulma-no-dark-mode.scss +20 -0
- package/example_applications/manyfest_editor/node_modules/bulma/versions/bulma-no-helpers-prefixed.scss +13 -0
- package/example_applications/manyfest_editor/node_modules/bulma/versions/bulma-no-helpers.scss +11 -0
- package/example_applications/manyfest_editor/node_modules/bulma/versions/bulma-prefixed.scss +6 -0
- package/example_applications/manyfest_editor/node_modules/codemirror/.github/workflows/dispatch.yml +16 -0
- package/example_applications/manyfest_editor/node_modules/codemirror/CHANGELOG.md +76 -0
- package/example_applications/manyfest_editor/node_modules/codemirror/LICENSE +21 -0
- package/example_applications/manyfest_editor/node_modules/codemirror/README.md +20 -0
- package/example_applications/manyfest_editor/node_modules/codemirror/package.json +44 -0
- package/example_applications/manyfest_editor/node_modules/crelt/LICENSE +19 -0
- package/example_applications/manyfest_editor/node_modules/crelt/README.md +23 -0
- package/example_applications/manyfest_editor/node_modules/crelt/index.d.ts +4 -0
- package/example_applications/manyfest_editor/node_modules/crelt/index.js +28 -0
- package/example_applications/manyfest_editor/node_modules/crelt/package.json +35 -0
- package/example_applications/manyfest_editor/node_modules/crelt/rollup.config.js +13 -0
- package/example_applications/manyfest_editor/node_modules/style-mod/LICENSE +19 -0
- package/example_applications/manyfest_editor/node_modules/style-mod/README.md +98 -0
- package/example_applications/manyfest_editor/node_modules/style-mod/package.json +39 -0
- package/example_applications/manyfest_editor/node_modules/style-mod/src/README.md +34 -0
- package/example_applications/manyfest_editor/node_modules/style-mod/src/style-mod.d.ts +16 -0
- package/example_applications/manyfest_editor/node_modules/style-mod/src/style-mod.js +172 -0
- package/example_applications/manyfest_editor/node_modules/style-mod/test/test-style-mod.js +104 -0
- package/example_applications/manyfest_editor/node_modules/w3c-keyname/LICENSE +19 -0
- package/example_applications/manyfest_editor/node_modules/w3c-keyname/README.md +18 -0
- package/example_applications/manyfest_editor/node_modules/w3c-keyname/index.cjs +127 -0
- package/example_applications/manyfest_editor/node_modules/w3c-keyname/index.d.cts +5 -0
- package/example_applications/manyfest_editor/node_modules/w3c-keyname/index.d.ts +5 -0
- package/example_applications/manyfest_editor/node_modules/w3c-keyname/index.js +119 -0
- package/example_applications/manyfest_editor/node_modules/w3c-keyname/package.json +37 -0
- package/example_applications/manyfest_editor/package.json +38 -0
- package/example_applications/manyfest_editor/providers/Manyfest-Data-Provider.js +184 -0
- package/example_applications/manyfest_editor/providers/Manyfest-Router.js +60 -0
- package/example_applications/manyfest_editor/source/Manyfest-Editor.js +225 -0
- package/example_applications/manyfest_editor/views/Manyfest-Code-View.js +64 -0
- package/example_applications/manyfest_editor/views/Manyfest-LoadList-View.js +78 -0
- package/example_applications/manyfest_editor/views/Manyfest-Summary-View.js +41 -0
- package/example_applications/postcard_example/Pict-Application-Postcard.js +12 -5
- package/example_applications/postcard_example/README.md +17 -7
- package/example_applications/postcard_example/css/postcard.css +248 -0
- package/example_applications/postcard_example/css/pure.min.css +11 -0
- package/example_applications/postcard_example/{index.html → html/index.html} +21 -9
- package/example_applications/postcard_example/package.json +20 -2
- package/example_applications/postcard_example/providers/PictProvider-BestPostcardTheme.js +116 -4
- package/example_applications/postcard_example/providers/PictProvider-Dynamic-Sections-MockServerResponse.json +11 -20
- package/example_applications/postcard_example/providers/PictProvider-Dynamic-Sections.js +1 -1
- package/example_applications/postcard_example/views/PictView-Postcard-Content-About.json +2 -2
- package/example_applications/postcard_example/views/PictView-Postcard-Content-Legal.json +2 -2
- package/example_applications/postcard_example/views/PictView-Postcard-MainApplication.js +16 -11
- package/example_applications/postcard_example/views/PictView-Postcard-Navigation.json +2 -2
- package/example_applications/simple_form/README-SimpleForm.md +12 -0
- package/example_applications/simple_form/Simple-Form-Application.js +2 -85
- package/example_applications/simple_form/Simple-Form_Default_Manifest.json +84 -0
- package/example_applications/simple_form/html/index.html +1 -15
- package/example_applications/simple_form/package.json +0 -5
- package/example_applications/simple_table/FruitData.json +694 -0
- package/example_applications/simple_table/README-SimpleTable.md +31 -0
- package/example_applications/simple_table/Simple-Tabular-Application.js +104 -0
- package/example_applications/simple_table/html/index.html +13 -0
- package/example_applications/simple_table/package.json +26 -0
- package/example_applications/simple_table_from_object/FruitDataInAnObject.json +692 -0
- package/example_applications/simple_table_from_object/MigrateThatFruit.js +19 -0
- package/example_applications/simple_table_from_object/Simple-Tabular-Application-FromObject.js +104 -0
- package/example_applications/simple_table_from_object/html/index.html +13 -0
- package/example_applications/simple_table_from_object/package.json +26 -0
- package/package.json +5 -5
- package/source/Pict-Form-Metacontroller.js +133 -73
- package/source/Pict-Section-Form-Application.js +0 -5
- package/source/Pict-Section-Form-MetatemplateGenerator.js +26 -0
- package/source/Pict-Section-Form-Provider-Templates-DefaultFormTemplates.js +195 -18
- package/source/Pict-Section-Form-Provider-Templates.js +21 -14
- package/source/Pict-Section-Form-View-DefaultConfiguration.json +21 -1
- package/source/Pict-Section-Form-View.js +542 -84
- package/source/Pict-Section-Form.js +5 -0
- package/source/Pict-Service-Informary.js +125 -0
- package/example_applications/code_wasteland/Application-Snippets.md +0 -19
- package/example_applications/postcard_example/externals/jquery.min.js +0 -2
- package/example_applications/postcard_example/postcard.css +0 -14
- package/example_applications/simple_form/node_modules/.package-lock.json +0 -14
- package/example_applications/simple_form/node_modules/jquery/AUTHORS.txt +0 -371
- package/example_applications/simple_form/node_modules/jquery/LICENSE.txt +0 -20
- package/example_applications/simple_form/node_modules/jquery/README.md +0 -60
- package/example_applications/simple_form/node_modules/jquery/bower.json +0 -14
- package/example_applications/simple_form/node_modules/jquery/package.json +0 -122
- package/example_applications/simple_form/node_modules/jquery/src/ajax/jsonp.js +0 -103
- package/example_applications/simple_form/node_modules/jquery/src/ajax/load.js +0 -77
- package/example_applications/simple_form/node_modules/jquery/src/ajax/script.js +0 -74
- package/example_applications/simple_form/node_modules/jquery/src/ajax/var/location.js +0 -5
- package/example_applications/simple_form/node_modules/jquery/src/ajax/var/nonce.js +0 -5
- package/example_applications/simple_form/node_modules/jquery/src/ajax/var/rquery.js +0 -5
- package/example_applications/simple_form/node_modules/jquery/src/ajax/xhr.js +0 -170
- package/example_applications/simple_form/node_modules/jquery/src/ajax.js +0 -876
- package/example_applications/simple_form/node_modules/jquery/src/attributes/attr.js +0 -141
- package/example_applications/simple_form/node_modules/jquery/src/attributes/classes.js +0 -184
- package/example_applications/simple_form/node_modules/jquery/src/attributes/prop.js +0 -142
- package/example_applications/simple_form/node_modules/jquery/src/attributes/support.js +0 -33
- package/example_applications/simple_form/node_modules/jquery/src/attributes/val.js +0 -191
- package/example_applications/simple_form/node_modules/jquery/src/attributes.js +0 -13
- package/example_applications/simple_form/node_modules/jquery/src/callbacks.js +0 -236
- package/example_applications/simple_form/node_modules/jquery/src/core/DOMEval.js +0 -43
- package/example_applications/simple_form/node_modules/jquery/src/core/access.js +0 -72
- package/example_applications/simple_form/node_modules/jquery/src/core/camelCase.js +0 -23
- package/example_applications/simple_form/node_modules/jquery/src/core/init.js +0 -129
- package/example_applications/simple_form/node_modules/jquery/src/core/isAttached.js +0 -26
- package/example_applications/simple_form/node_modules/jquery/src/core/nodeName.js +0 -13
- package/example_applications/simple_form/node_modules/jquery/src/core/parseHTML.js +0 -65
- package/example_applications/simple_form/node_modules/jquery/src/core/parseXML.js +0 -35
- package/example_applications/simple_form/node_modules/jquery/src/core/ready-no-deferred.js +0 -97
- package/example_applications/simple_form/node_modules/jquery/src/core/ready.js +0 -86
- package/example_applications/simple_form/node_modules/jquery/src/core/readyException.js +0 -13
- package/example_applications/simple_form/node_modules/jquery/src/core/stripAndCollapse.js +0 -14
- package/example_applications/simple_form/node_modules/jquery/src/core/support.js +0 -20
- package/example_applications/simple_form/node_modules/jquery/src/core/toType.js +0 -20
- package/example_applications/simple_form/node_modules/jquery/src/core/var/rhtml.js +0 -7
- package/example_applications/simple_form/node_modules/jquery/src/core/var/rsingleTag.js +0 -7
- package/example_applications/simple_form/node_modules/jquery/src/core.js +0 -442
- package/example_applications/simple_form/node_modules/jquery/src/css/addGetHookIf.js +0 -26
- package/example_applications/simple_form/node_modules/jquery/src/css/adjustCSS.js +0 -74
- package/example_applications/simple_form/node_modules/jquery/src/css/curCSS.js +0 -100
- package/example_applications/simple_form/node_modules/jquery/src/css/finalPropName.js +0 -42
- package/example_applications/simple_form/node_modules/jquery/src/css/hiddenVisibleSelectors.js +0 -15
- package/example_applications/simple_form/node_modules/jquery/src/css/showHide.js +0 -105
- package/example_applications/simple_form/node_modules/jquery/src/css/support.js +0 -152
- package/example_applications/simple_form/node_modules/jquery/src/css/var/cssExpand.js +0 -5
- package/example_applications/simple_form/node_modules/jquery/src/css/var/getStyles.js +0 -17
- package/example_applications/simple_form/node_modules/jquery/src/css/var/isHiddenWithinTree.js +0 -34
- package/example_applications/simple_form/node_modules/jquery/src/css/var/rboxStyle.js +0 -7
- package/example_applications/simple_form/node_modules/jquery/src/css/var/rcustomProp.js +0 -7
- package/example_applications/simple_form/node_modules/jquery/src/css/var/rnumnonpx.js +0 -7
- package/example_applications/simple_form/node_modules/jquery/src/css/var/swap.js +0 -26
- package/example_applications/simple_form/node_modules/jquery/src/css.js +0 -507
- package/example_applications/simple_form/node_modules/jquery/src/data/Data.js +0 -162
- package/example_applications/simple_form/node_modules/jquery/src/data/var/acceptData.js +0 -19
- package/example_applications/simple_form/node_modules/jquery/src/data/var/dataPriv.js +0 -7
- package/example_applications/simple_form/node_modules/jquery/src/data/var/dataUser.js +0 -7
- package/example_applications/simple_form/node_modules/jquery/src/data.js +0 -180
- package/example_applications/simple_form/node_modules/jquery/src/deferred/exceptionHook.js +0 -25
- package/example_applications/simple_form/node_modules/jquery/src/deferred.js +0 -406
- package/example_applications/simple_form/node_modules/jquery/src/deprecated/ajax-event-alias.js +0 -22
- package/example_applications/simple_form/node_modules/jquery/src/deprecated/event.js +0 -52
- package/example_applications/simple_form/node_modules/jquery/src/deprecated.js +0 -89
- package/example_applications/simple_form/node_modules/jquery/src/dimensions.js +0 -60
- package/example_applications/simple_form/node_modules/jquery/src/effects/Tween.js +0 -125
- package/example_applications/simple_form/node_modules/jquery/src/effects/animatedSelector.js +0 -15
- package/example_applications/simple_form/node_modules/jquery/src/effects.js +0 -702
- package/example_applications/simple_form/node_modules/jquery/src/event/trigger.js +0 -199
- package/example_applications/simple_form/node_modules/jquery/src/event.js +0 -970
- package/example_applications/simple_form/node_modules/jquery/src/exports/amd.js +0 -26
- package/example_applications/simple_form/node_modules/jquery/src/exports/global.js +0 -34
- package/example_applications/simple_form/node_modules/jquery/src/jquery.js +0 -40
- package/example_applications/simple_form/node_modules/jquery/src/manipulation/_evalUrl.js +0 -32
- package/example_applications/simple_form/node_modules/jquery/src/manipulation/buildFragment.js +0 -106
- package/example_applications/simple_form/node_modules/jquery/src/manipulation/getAll.js +0 -32
- package/example_applications/simple_form/node_modules/jquery/src/manipulation/setGlobalEval.js +0 -22
- package/example_applications/simple_form/node_modules/jquery/src/manipulation/support.js +0 -41
- package/example_applications/simple_form/node_modules/jquery/src/manipulation/var/rscriptType.js +0 -5
- package/example_applications/simple_form/node_modules/jquery/src/manipulation/var/rtagName.js +0 -8
- package/example_applications/simple_form/node_modules/jquery/src/manipulation/wrapMap.js +0 -30
- package/example_applications/simple_form/node_modules/jquery/src/manipulation.js +0 -488
- package/example_applications/simple_form/node_modules/jquery/src/offset.js +0 -232
- package/example_applications/simple_form/node_modules/jquery/src/queue/delay.js +0 -23
- package/example_applications/simple_form/node_modules/jquery/src/queue.js +0 -145
- package/example_applications/simple_form/node_modules/jquery/src/selector/contains.js +0 -21
- package/example_applications/simple_form/node_modules/jquery/src/selector/escapeSelector.js +0 -31
- package/example_applications/simple_form/node_modules/jquery/src/selector-native.js +0 -190
- package/example_applications/simple_form/node_modules/jquery/src/selector.js +0 -2117
- package/example_applications/simple_form/node_modules/jquery/src/serialize.js +0 -134
- package/example_applications/simple_form/node_modules/jquery/src/traversing/findFilter.js +0 -97
- package/example_applications/simple_form/node_modules/jquery/src/traversing/var/dir.js +0 -22
- package/example_applications/simple_form/node_modules/jquery/src/traversing/var/rneedsContext.js +0 -8
- package/example_applications/simple_form/node_modules/jquery/src/traversing/var/siblings.js +0 -17
- package/example_applications/simple_form/node_modules/jquery/src/traversing.js +0 -198
- package/example_applications/simple_form/node_modules/jquery/src/var/ObjectFunctionString.js +0 -7
- package/example_applications/simple_form/node_modules/jquery/src/var/arr.js +0 -5
- package/example_applications/simple_form/node_modules/jquery/src/var/class2type.js +0 -6
- package/example_applications/simple_form/node_modules/jquery/src/var/document.js +0 -5
- package/example_applications/simple_form/node_modules/jquery/src/var/documentElement.js +0 -7
- package/example_applications/simple_form/node_modules/jquery/src/var/flat.js +0 -16
- package/example_applications/simple_form/node_modules/jquery/src/var/fnToString.js +0 -7
- package/example_applications/simple_form/node_modules/jquery/src/var/getProto.js +0 -5
- package/example_applications/simple_form/node_modules/jquery/src/var/hasOwn.js +0 -7
- package/example_applications/simple_form/node_modules/jquery/src/var/indexOf.js +0 -7
- package/example_applications/simple_form/node_modules/jquery/src/var/isFunction.js +0 -17
- package/example_applications/simple_form/node_modules/jquery/src/var/isWindow.js +0 -8
- package/example_applications/simple_form/node_modules/jquery/src/var/pnum.js +0 -5
- package/example_applications/simple_form/node_modules/jquery/src/var/pop.js +0 -9
- package/example_applications/simple_form/node_modules/jquery/src/var/push.js +0 -7
- package/example_applications/simple_form/node_modules/jquery/src/var/rcheckableType.js +0 -5
- package/example_applications/simple_form/node_modules/jquery/src/var/rcssNum.js +0 -9
- package/example_applications/simple_form/node_modules/jquery/src/var/rnothtmlwhite.js +0 -8
- package/example_applications/simple_form/node_modules/jquery/src/var/rtrimCSS.js +0 -12
- package/example_applications/simple_form/node_modules/jquery/src/var/slice.js +0 -7
- package/example_applications/simple_form/node_modules/jquery/src/var/sort.js +0 -9
- package/example_applications/simple_form/node_modules/jquery/src/var/splice.js +0 -9
- package/example_applications/simple_form/node_modules/jquery/src/var/support.js +0 -6
- package/example_applications/simple_form/node_modules/jquery/src/var/toString.js +0 -7
- package/example_applications/simple_form/node_modules/jquery/src/var/whitespace.js +0 -8
- package/example_applications/simple_form/node_modules/jquery/src/wrap.js +0 -78
- package/source/Pict-Form-Metacontroller-DefaultConfiguration.json +0 -24
- package/source/Pict-Section-Form-Provider-Templates-DefaultConfiguration.json +0 -8
package/README.md
CHANGED
|
@@ -27,6 +27,8 @@ The label on an input, group or section.
|
|
|
27
27
|
The human-readable identifier on an input. Expected to be unique although the default templates will prefix this with a distinct view identifier.
|
|
28
28
|
7. Tip:
|
|
29
29
|
A tooltip, hover or other kinds of embedded content/help on an input element.
|
|
30
|
+
8. Macro:
|
|
31
|
+
A small bit of template that's preprocessed and usable by the template partials.
|
|
30
32
|
|
|
31
33
|
|
|
32
34
|
## Example Application: Sentimental Postcard Deluxe Dot Com
|
|
@@ -264,5 +266,3 @@ This [manyfest](https://github.com/stevenvelozo/manyfest) file describes a list
|
|
|
264
266
|
of application state elements. And intersects these data elements with how
|
|
265
267
|
they should be presented to the user in a form. This can work for any layout
|
|
266
268
|
of data in your application.
|
|
267
|
-
|
|
268
|
-
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
const libPictSectionForm = require('../../source/Pict-Section-Form.js');
|
|
2
|
+
//const libPictSectionForm = require('pict-section-form');
|
|
3
|
+
class ManifestTestbed extends libPictSectionForm.PictFormApplication
|
|
4
|
+
{
|
|
5
|
+
constructor(pFable, pOptions, pServiceHash)
|
|
6
|
+
{
|
|
7
|
+
super(pFable, pOptions, pServiceHash);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
deleteCurrentlyLoadedDynamicViews()
|
|
11
|
+
{
|
|
12
|
+
// TODO: Potentially fable could use a `RemoveLoadedServiceProvicer(pProviderHash)` or some such.
|
|
13
|
+
// For now we are going to be really terrible about it.
|
|
14
|
+
// As in we know this leaks views to the underlying fable services layer.
|
|
15
|
+
// So if you do this a million times it will take actual megabytes of memory.
|
|
16
|
+
// Megabytes.
|
|
17
|
+
// Call the cops.
|
|
18
|
+
let tmpViewList = Object.keys(this.pict.views);
|
|
19
|
+
|
|
20
|
+
for (let i = 0; i < tmpViewList.length; i++)
|
|
21
|
+
{
|
|
22
|
+
// Delete *ALL* the dynamic sections. Horrible.
|
|
23
|
+
if (this.pict.views[tmpViewList[i]].isPictSectionForm)
|
|
24
|
+
{
|
|
25
|
+
delete this.pict.views[tmpViewList[i]];
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
loadManifestFromAppata()
|
|
31
|
+
{
|
|
32
|
+
// Delete the dynamic views that may currently be loaded.
|
|
33
|
+
this.deleteCurrentlyLoadedDynamicViews();
|
|
34
|
+
// Now load and bootstrap a NEW GENERATION OF VIEWS that's gonna gotta wear shades.
|
|
35
|
+
this.pict.views.PictFormMetacontroller.bootstrapPictFormViewsFromManifest(this.AppData.Manyfest);
|
|
36
|
+
// Generate the metatemplate (the container for each section) now that we've regenerated the views
|
|
37
|
+
this.pict.views.PictFormMetacontroller.generateMetatemplate();
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
onAfterInitialize()
|
|
41
|
+
{
|
|
42
|
+
// TODO: Take this out after publishing pict
|
|
43
|
+
if (!this.AppData.Manyfest)
|
|
44
|
+
{
|
|
45
|
+
this.AppData.Manyfest = this.fable.settings.Testbed_DefaultFormManifest;
|
|
46
|
+
}
|
|
47
|
+
this.loadManifestFromAppata();
|
|
48
|
+
this.pict.views.PictFormMetacontroller.render();
|
|
49
|
+
return super.onBeforeInitialize();
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
module.exports = ManifestTestbed;
|
|
54
|
+
|
|
55
|
+
module.exports.default_configuration.pict_configuration = (
|
|
56
|
+
{
|
|
57
|
+
"Product": "Simple",
|
|
58
|
+
"Testbed_DefaultFormManifest": require('../simple_form/Simple-Form_Default_Manifest.json')
|
|
59
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<title>Simple.</title>
|
|
5
|
+
<style id="PICT-CSS"></style>
|
|
6
|
+
<script src="./pict.min.js" type="text/javascript"></script>
|
|
7
|
+
<script type="text/javascript">Pict.safeOnDocumentReady(
|
|
8
|
+
() =>
|
|
9
|
+
{
|
|
10
|
+
console.log(`--> ${JSON.stringify(ManifestTestbedApplication.default_configuration)}`);
|
|
11
|
+
Pict.safeLoadPictApplication(ManifestTestbedApplication, 3);
|
|
12
|
+
});</script>
|
|
13
|
+
</head>
|
|
14
|
+
<body>
|
|
15
|
+
<div id="Pict-Form-Container"></div>
|
|
16
|
+
<script src="./manifest-testbed-application.min.js" type="text/javascript"></script>
|
|
17
|
+
</body>
|
|
18
|
+
</html>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "manifest-testbed-application",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "The most basic forms application ever!",
|
|
5
|
+
"main": "Manifest_Testbed_Application.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"start": "node Manifest_Testbed_Application.js",
|
|
8
|
+
"build": "npx quack build && npx quack copy"
|
|
9
|
+
},
|
|
10
|
+
"author": "steven",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"devDependencies": {
|
|
13
|
+
},
|
|
14
|
+
"copyFilesSettings": {
|
|
15
|
+
"whenFileExists": "overwrite"
|
|
16
|
+
},
|
|
17
|
+
"copyFiles": [
|
|
18
|
+
{
|
|
19
|
+
"from": "./html/*",
|
|
20
|
+
"to": "./dist/"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"from": "../../node_modules/pict/dist/*",
|
|
24
|
+
"to": "./dist/"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
8
|
+
<meta name="description" content="Manyfest Editor">
|
|
9
|
+
|
|
10
|
+
<title>Manyfest Editor</title>
|
|
11
|
+
|
|
12
|
+
<!-- Simple purecss framework https://purecss.io/ -->
|
|
13
|
+
<link href="css/bulma.min.css" rel="stylesheet">
|
|
14
|
+
<link href="css/ManyfestEditor.css" rel="stylesheet">
|
|
15
|
+
|
|
16
|
+
<!-- PICT Dynamic View CSS Container -->
|
|
17
|
+
<style id="PICT-CSS"></style>
|
|
18
|
+
|
|
19
|
+
<!-- Load the PICT library -->
|
|
20
|
+
<script src="js/pict.min.js" type="text/javascript"></script>
|
|
21
|
+
|
|
22
|
+
<!-- Load the Application -->
|
|
23
|
+
<script type="text/javascript">
|
|
24
|
+
//<![CDATA[
|
|
25
|
+
// Safely (for most browsers?) waits and loads pict and the application whenthe DOM is ready
|
|
26
|
+
Pict.safeOnDocumentReady(() => { Pict.safeLoadPictApplication(ManyfestEditor, 3) });
|
|
27
|
+
//]]>
|
|
28
|
+
</script>
|
|
29
|
+
</head>
|
|
30
|
+
|
|
31
|
+
<body>
|
|
32
|
+
<nav class="navbar" role="navigation" aria-label="main navigation">
|
|
33
|
+
<div class="navbar-brand">
|
|
34
|
+
<a class="navbar-item" href="https://github.com/stevenvelozo/manyfest">
|
|
35
|
+
<!-- Bulma had a 112w x 28h image for their logo here -->
|
|
36
|
+
manyfest.<span id="Manyfest-LoadedManyfest-Header-Container"></span>
|
|
37
|
+
</a>
|
|
38
|
+
|
|
39
|
+
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false"
|
|
40
|
+
data-target="navbarBasicExample">
|
|
41
|
+
<span aria-hidden="true"></span>
|
|
42
|
+
<span aria-hidden="true"></span>
|
|
43
|
+
<span aria-hidden="true"></span>
|
|
44
|
+
</a>
|
|
45
|
+
</div>
|
|
46
|
+
|
|
47
|
+
<div id="navbarBasicExample" class="navbar-menu">
|
|
48
|
+
<div class="navbar-start">
|
|
49
|
+
<a class="navbar-item"> Overview </a>
|
|
50
|
+
<a class="navbar-item" href="#" onclick="_Pict.views['ManyfestCodeView'].render()"> Code </a>
|
|
51
|
+
<a class="navbar-item"> Descriptors </a>
|
|
52
|
+
<a class="navbar-item"> Sections </a>
|
|
53
|
+
<a class="navbar-item"> Reference Manifests </a>
|
|
54
|
+
</div>
|
|
55
|
+
|
|
56
|
+
<div class="navbar-end">
|
|
57
|
+
<div class="navbar-item">
|
|
58
|
+
<div class="navbar-item has-dropdown is-hoverable">
|
|
59
|
+
<a class="navbar-link"> Load </a>
|
|
60
|
+
<div class="navbar-dropdown" id="Manyfest-LoadList-Container">
|
|
61
|
+
</div>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
|
|
65
|
+
<div class="navbar-item">
|
|
66
|
+
<div class="navbar-item has-dropdown is-hoverable">
|
|
67
|
+
<a class="navbar-link"> Delete </a>
|
|
68
|
+
<div class="navbar-dropdown" id="Manyfest-DeleteList-Container">
|
|
69
|
+
</div>
|
|
70
|
+
</div>
|
|
71
|
+
</div>
|
|
72
|
+
|
|
73
|
+
<div class="buttons">
|
|
74
|
+
<a class="button is-primary" href="#" onclick="_Pict.providers.DataProvider.saveManyfest()"> <strong>Save</strong> </a>
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
77
|
+
</div>
|
|
78
|
+
</div>
|
|
79
|
+
</nav>
|
|
80
|
+
|
|
81
|
+
<section class="section" id="Manyfest-Editor-MainApp-Container">
|
|
82
|
+
<div class="container">
|
|
83
|
+
<h1 class="title">...loading...</h1>
|
|
84
|
+
<h2 class="subtitle">(the manyfest editor is currently loading)</h2>
|
|
85
|
+
<p></p>
|
|
86
|
+
</div>
|
|
87
|
+
</section>
|
|
88
|
+
|
|
89
|
+
<script src="./manyfest_editor.min.js" type="text/javascript"></script>
|
|
90
|
+
</body>
|
|
91
|
+
|
|
92
|
+
</html>
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "manyfest_editor",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"node_modules/@capitec/omni-router": {
|
|
8
|
+
"version": "0.2.4",
|
|
9
|
+
"resolved": "https://registry.npmjs.org/@capitec/omni-router/-/omni-router-0.2.4.tgz",
|
|
10
|
+
"integrity": "sha512-rM3J8EDAImS3ouQPeF31F5WWP5uMfLNb/Q4W+MJB7FLKFjmEU5zG9aM54yoa418e88WBwOobi0k3SnZz+CXY/w==",
|
|
11
|
+
"engines": {
|
|
12
|
+
"node": ">=16.x"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"node_modules/@codemirror/autocomplete": {
|
|
16
|
+
"version": "6.16.2",
|
|
17
|
+
"resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.16.2.tgz",
|
|
18
|
+
"integrity": "sha512-MjfDrHy0gHKlPWsvSsikhO1+BOh+eBHNgfH1OXs1+DAf30IonQldgMM3kxLDTG9ktE7kDLaA1j/l7KMPA4KNfw==",
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@codemirror/language": "^6.0.0",
|
|
21
|
+
"@codemirror/state": "^6.0.0",
|
|
22
|
+
"@codemirror/view": "^6.17.0",
|
|
23
|
+
"@lezer/common": "^1.0.0"
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"@codemirror/language": "^6.0.0",
|
|
27
|
+
"@codemirror/state": "^6.0.0",
|
|
28
|
+
"@codemirror/view": "^6.0.0",
|
|
29
|
+
"@lezer/common": "^1.0.0"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"node_modules/@codemirror/commands": {
|
|
33
|
+
"version": "6.5.0",
|
|
34
|
+
"resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.5.0.tgz",
|
|
35
|
+
"integrity": "sha512-rK+sj4fCAN/QfcY9BEzYMgp4wwL/q5aj/VfNSoH1RWPF9XS/dUwBkvlL3hpWgEjOqlpdN1uLC9UkjJ4tmyjJYg==",
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@codemirror/language": "^6.0.0",
|
|
38
|
+
"@codemirror/state": "^6.4.0",
|
|
39
|
+
"@codemirror/view": "^6.0.0",
|
|
40
|
+
"@lezer/common": "^1.1.0"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"node_modules/@codemirror/language": {
|
|
44
|
+
"version": "6.10.2",
|
|
45
|
+
"resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.10.2.tgz",
|
|
46
|
+
"integrity": "sha512-kgbTYTo0Au6dCSc/TFy7fK3fpJmgHDv1sG1KNQKJXVi+xBTEeBPY/M30YXiU6mMXeH+YIDLsbrT4ZwNRdtF+SA==",
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@codemirror/state": "^6.0.0",
|
|
49
|
+
"@codemirror/view": "^6.23.0",
|
|
50
|
+
"@lezer/common": "^1.1.0",
|
|
51
|
+
"@lezer/highlight": "^1.0.0",
|
|
52
|
+
"@lezer/lr": "^1.0.0",
|
|
53
|
+
"style-mod": "^4.0.0"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"node_modules/@codemirror/lint": {
|
|
57
|
+
"version": "6.8.0",
|
|
58
|
+
"resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.8.0.tgz",
|
|
59
|
+
"integrity": "sha512-lsFofvaw0lnPRJlQylNsC4IRt/1lI4OD/yYslrSGVndOJfStc58v+8p9dgGiD90ktOfL7OhBWns1ZETYgz0EJA==",
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"@codemirror/state": "^6.0.0",
|
|
62
|
+
"@codemirror/view": "^6.0.0",
|
|
63
|
+
"crelt": "^1.0.5"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"node_modules/@codemirror/search": {
|
|
67
|
+
"version": "6.5.6",
|
|
68
|
+
"resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.5.6.tgz",
|
|
69
|
+
"integrity": "sha512-rpMgcsh7o0GuCDUXKPvww+muLA1pDJaFrpq/CCHtpQJYz8xopu4D1hPcKRoDD0YlF8gZaqTNIRa4VRBWyhyy7Q==",
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"@codemirror/state": "^6.0.0",
|
|
72
|
+
"@codemirror/view": "^6.0.0",
|
|
73
|
+
"crelt": "^1.0.5"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"node_modules/@codemirror/state": {
|
|
77
|
+
"version": "6.4.1",
|
|
78
|
+
"resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.4.1.tgz",
|
|
79
|
+
"integrity": "sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A=="
|
|
80
|
+
},
|
|
81
|
+
"node_modules/@codemirror/view": {
|
|
82
|
+
"version": "6.26.3",
|
|
83
|
+
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.26.3.tgz",
|
|
84
|
+
"integrity": "sha512-gmqxkPALZjkgSxIeeweY/wGQXBfwTUaLs8h7OKtSwfbj9Ct3L11lD+u1sS7XHppxFQoMDiMDp07P9f3I2jWOHw==",
|
|
85
|
+
"dependencies": {
|
|
86
|
+
"@codemirror/state": "^6.4.0",
|
|
87
|
+
"style-mod": "^4.1.0",
|
|
88
|
+
"w3c-keyname": "^2.2.4"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"node_modules/@lezer/common": {
|
|
92
|
+
"version": "1.2.1",
|
|
93
|
+
"resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.2.1.tgz",
|
|
94
|
+
"integrity": "sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ=="
|
|
95
|
+
},
|
|
96
|
+
"node_modules/@lezer/highlight": {
|
|
97
|
+
"version": "1.2.0",
|
|
98
|
+
"resolved": "https://registry.npmjs.org/@lezer/highlight/-/highlight-1.2.0.tgz",
|
|
99
|
+
"integrity": "sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA==",
|
|
100
|
+
"dependencies": {
|
|
101
|
+
"@lezer/common": "^1.0.0"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"node_modules/@lezer/lr": {
|
|
105
|
+
"version": "1.4.1",
|
|
106
|
+
"resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.4.1.tgz",
|
|
107
|
+
"integrity": "sha512-CHsKq8DMKBf9b3yXPDIU4DbH+ZJd/sJdYOW2llbW/HudP5u0VS6Bfq1hLYfgU7uAYGFIyGGQIsSOXGPEErZiJw==",
|
|
108
|
+
"dependencies": {
|
|
109
|
+
"@lezer/common": "^1.0.0"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"node_modules/bulma": {
|
|
113
|
+
"version": "1.0.1",
|
|
114
|
+
"resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.1.tgz",
|
|
115
|
+
"integrity": "sha512-+xv/BIAEQakHkR0QVz+s+RjNqfC53Mx9ZYexyaFNFo9wx5i76HXArNdwW7bccyJxa5mgV/T5DcVGqsAB19nBJQ=="
|
|
116
|
+
},
|
|
117
|
+
"node_modules/codemirror": {
|
|
118
|
+
"version": "6.0.1",
|
|
119
|
+
"resolved": "https://registry.npmjs.org/codemirror/-/codemirror-6.0.1.tgz",
|
|
120
|
+
"integrity": "sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==",
|
|
121
|
+
"dependencies": {
|
|
122
|
+
"@codemirror/autocomplete": "^6.0.0",
|
|
123
|
+
"@codemirror/commands": "^6.0.0",
|
|
124
|
+
"@codemirror/language": "^6.0.0",
|
|
125
|
+
"@codemirror/lint": "^6.0.0",
|
|
126
|
+
"@codemirror/search": "^6.0.0",
|
|
127
|
+
"@codemirror/state": "^6.0.0",
|
|
128
|
+
"@codemirror/view": "^6.0.0"
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"node_modules/crelt": {
|
|
132
|
+
"version": "1.0.6",
|
|
133
|
+
"resolved": "https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz",
|
|
134
|
+
"integrity": "sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g=="
|
|
135
|
+
},
|
|
136
|
+
"node_modules/style-mod": {
|
|
137
|
+
"version": "4.1.2",
|
|
138
|
+
"resolved": "https://registry.npmjs.org/style-mod/-/style-mod-4.1.2.tgz",
|
|
139
|
+
"integrity": "sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw=="
|
|
140
|
+
},
|
|
141
|
+
"node_modules/w3c-keyname": {
|
|
142
|
+
"version": "2.2.8",
|
|
143
|
+
"resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz",
|
|
144
|
+
"integrity": "sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ=="
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 Capitec Bank Ltd.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|