@pie-element/ebsr 9.12.1 → 9.12.2-next.19
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/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.json +1972 -0
- package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.md +2883 -0
- package/configure/node_modules/@pie-element/multiple-choice/LICENSE.md +5 -0
- package/configure/node_modules/@pie-element/multiple-choice/PRINT.md +35 -0
- package/configure/node_modules/@pie-element/multiple-choice/README.md +56 -0
- package/configure/node_modules/@pie-element/multiple-choice/choice.png +0 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.json +1387 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.md +2289 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js +204 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js +248 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js +628 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js +18 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/package.json +18 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.json +527 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.md +1237 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js +18 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js +335 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js +36 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/package.json +15 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json +1508 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json.md +1137 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/demo/config.js +8 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/demo/generate.js +53 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/demo/index.html +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/demo/session.js +7 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json +752 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json.md +583 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js +332 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js +165 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js +174 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/index.js +156 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/main.js +96 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/main.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js +359 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/print.js +129 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/print.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js +35 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/module/configure.js +11110 -0
- package/{module → configure/node_modules/@pie-element/multiple-choice/module}/controller.js +17496 -20689
- package/configure/node_modules/@pie-element/multiple-choice/module/demo.js +78 -0
- package/{module → configure/node_modules/@pie-element/multiple-choice/module}/element.js +5 -169
- package/{module → configure/node_modules/@pie-element/multiple-choice/module}/index.html +1 -1
- package/{module → configure/node_modules/@pie-element/multiple-choice/module}/manifest.json +2 -2
- package/{module → configure/node_modules/@pie-element/multiple-choice/module}/print-demo.js +47 -46
- package/{module → configure/node_modules/@pie-element/multiple-choice/module}/print.html +1 -1
- package/{module → configure/node_modules/@pie-element/multiple-choice/module}/print.js +67 -274
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/CHANGELOG.json +17 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/CHANGELOG.md +760 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/LICENSE.md +5 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/categorize.js +128 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/categorize.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/charting.js +40 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/charting.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/categorize/index.js +651 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/categorize/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/categorize/scoring.js +145 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/categorize/scoring.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/axes.js +614 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/axes.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/bars/bar.js +86 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/bars/bar.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/bars/common/bars.js +269 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/bars/common/bars.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/bars/histogram.js +87 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/bars/histogram.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/chart-setup.js +458 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/chart-setup.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/chart-type.js +71 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/chart-type.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/chart-types.js +31 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/chart-types.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/chart.js +438 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/chart.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/common/drag-handle.js +175 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/common/drag-handle.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/common/drag-icon.js +52 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/common/drag-icon.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/common/styles.js +40 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/common/styles.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/grid.js +104 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/grid.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/index.js +40 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/line/common/drag-handle.js +157 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/line/common/drag-handle.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/line/common/line.js +261 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/line/common/line.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/line/line-cross.js +168 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/line/line-cross.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/line/line-dot.js +131 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/line/line-dot.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/mark-label.js +248 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/mark-label.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/plot/common/plot.js +280 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/plot/common/plot.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/plot/dot.js +123 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/plot/dot.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/plot/line.js +152 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/plot/line.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/tool-menu.js +142 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/tool-menu.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/utils.js +244 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/charting/utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/alert-dialog.js +75 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/alert-dialog.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/checkbox.js +94 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/checkbox.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/choice-configuration/feedback-menu.js +164 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/choice-configuration/feedback-menu.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/choice-configuration/index.js +445 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/choice-configuration/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/choice-utils.js +54 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/choice-utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/feedback-config/feedback-selector.js +195 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/feedback-config/feedback-selector.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/feedback-config/group.js +75 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/feedback-config/group.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/feedback-config/index.js +189 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/feedback-config/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/form-section.js +46 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/form-section.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/help.js +147 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/help.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/index.js +216 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/input.js +139 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/input.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/inputs.js +133 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/inputs.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/langs.js +179 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/langs.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/layout/config-layout.js +126 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/layout/config-layout.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/layout/index.js +24 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/layout/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/layout/layout-contents.js +191 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/layout/layout-contents.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/layout/settings-box.js +86 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/layout/settings-box.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/mui-box/index.js +79 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/mui-box/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/number-text-field-custom.js +458 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/number-text-field-custom.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/number-text-field.js +267 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/number-text-field.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/radio-with-label.js +41 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/radio-with-label.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/settings/display-size.js +77 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/settings/display-size.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/settings/index.js +141 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/settings/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/settings/panel.js +461 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/settings/panel.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/settings/settings-radio-label.js +45 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/settings/settings-radio-label.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/settings/toggle.js +56 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/settings/toggle.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/tabs/index.js +110 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/tabs/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/tags-input/index.js +198 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/tags-input/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/two-choice.js +180 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/two-choice.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/with-stateful-model.js +84 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/config-ui/with-stateful-model.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/controller-utils/index.js +31 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/controller-utils/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/controller-utils/partial-scoring.js +33 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/controller-utils/partial-scoring.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/controller-utils/persistence.js +140 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/controller-utils/persistence.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/correct-answer-toggle/expander.js +86 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/correct-answer-toggle/expander.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/correct-answer-toggle/index.js +173 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/correct-answer-toggle/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/correct-answer-toggle/styles.js +66 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/correct-answer-toggle/styles.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/choice.js +129 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/choice.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/drag-in-the-blank-dp.js +35 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/drag-in-the-blank-dp.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/drag-type.js +15 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/drag-type.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/droppable-placeholder.js +82 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/droppable-placeholder.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/ica-dp.js +37 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/ica-dp.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/index.js +89 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/match-list-dp.js +37 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/match-list-dp.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/placeholder.js +104 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/placeholder.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/preview-component.js +190 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/preview-component.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/swap.js +25 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/swap.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/uid-context.js +40 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/uid-context.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/with-drag-context.js +54 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/drag/with-drag-context.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/block-tags.js +27 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/block-tags.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/editor.js +1205 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/editor.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/index.js +253 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/parse-html.js +16 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/parse-html.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/characters/custom-popper.js +73 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/characters/custom-popper.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/characters/index.js +300 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/characters/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/characters/utils.js +381 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/characters/utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/customPlugin/index.js +126 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/customPlugin/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/html/icons/index.js +38 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/html/icons/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/html/index.js +79 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/html/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/image/alt-dialog.js +129 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/image/alt-dialog.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/image/component.js +419 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/image/component.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/image/image-toolbar.js +177 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/image/image-toolbar.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/image/index.js +262 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/image/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/image/insert-image-handler.js +161 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/image/insert-image-handler.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/index.js +177 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/list/index.js +204 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/list/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/math/index.js +421 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/math/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/media/index.js +384 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/media/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/media/media-dialog.js +668 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/media/media-dialog.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/media/media-toolbar.js +101 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/media/media-toolbar.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/media/media-wrapper.js +93 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/media/media-wrapper.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/respArea/drag-in-the-blank/choice.js +251 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/respArea/drag-in-the-blank/choice.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/respArea/drag-in-the-blank/index.js +97 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/respArea/drag-in-the-blank/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/respArea/explicit-constructed-response/index.js +55 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/respArea/explicit-constructed-response/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/respArea/icons/index.js +95 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/respArea/icons/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/respArea/index.js +293 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/respArea/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/respArea/inline-dropdown/index.js +70 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/respArea/inline-dropdown/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/respArea/utils.js +110 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/respArea/utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/table/icons/index.js +69 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/table/icons/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/table/index.js +499 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/table/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/table/table-toolbar.js +158 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/table/table-toolbar.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/toolbar/default-toolbar.js +174 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/toolbar/default-toolbar.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/toolbar/done-button.js +50 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/toolbar/done-button.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/toolbar/editor-and-toolbar.js +274 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/toolbar/editor-and-toolbar.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/toolbar/index.js +34 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/toolbar/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/toolbar/toolbar-buttons.js +161 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/toolbar/toolbar-buttons.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/toolbar/toolbar.js +352 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/toolbar/toolbar.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/utils.js +62 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/plugins/utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/serialization.js +472 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/serialization.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/theme.js +9 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/editable-html/theme.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/feedback/index.js +102 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/feedback/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/axis/arrow.js +115 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/axis/arrow.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/axis/axes.js +415 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/axis/axes.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/axis/index.js +26 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/axis/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/bg.js +139 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/bg.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/container/actions.js +24 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/container/actions.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/container/index.js +166 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/container/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/container/marks.js +27 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/container/marks.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/container/middleware.js +25 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/container/middleware.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/container/reducer.js +25 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/container/reducer.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/coordinates-label.js +109 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/coordinates-label.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/graph-with-controls.js +364 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/graph-with-controls.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/graph.js +368 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/graph.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/grid-setup.js +462 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/grid-setup.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/grid.js +176 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/grid.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/index.js +51 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/labels.js +298 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/labels.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/mark-label.js +208 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/mark-label.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/toggle-bar.js +336 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/toggle-bar.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tool-menu.js +132 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tool-menu.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/absolute/component.js +35 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/absolute/component.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/absolute/index.js +63 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/absolute/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/circle/bg-circle.js +172 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/circle/bg-circle.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/circle/component.js +399 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/circle/component.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/circle/index.js +51 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/circle/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/exponential/component.js +34 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/exponential/component.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/exponential/index.js +71 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/exponential/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/index.js +95 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/line/component.js +102 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/line/component.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/line/index.js +16 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/line/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/parabola/component.js +34 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/parabola/component.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/parabola/index.js +63 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/parabola/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/point/component.js +186 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/point/component.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/point/index.js +32 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/point/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/polygon/component.js +513 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/polygon/component.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/polygon/index.js +106 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/polygon/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/polygon/line.js +151 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/polygon/line.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/polygon/polygon.js +162 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/polygon/polygon.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/ray/component.js +101 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/ray/component.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/ray/index.js +16 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/ray/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/segment/component.js +74 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/segment/component.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/segment/index.js +16 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/segment/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/arrow-head.js +70 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/arrow-head.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/line/index.js +583 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/line/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/line/line-path.js +145 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/line/line-path.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/line/with-root-edge.js +155 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/line/with-root-edge.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/point/arrow-point.js +113 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/point/arrow-point.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/point/arrow.js +96 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/point/arrow.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/point/base-point.js +145 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/point/base-point.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/point/index.js +94 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/point/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/styles.js +49 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/styles.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/types.js +23 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/shared/types.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/sine/component.js +51 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/sine/component.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/sine/index.js +63 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/sine/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/vector/component.js +87 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/vector/component.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/vector/index.js +16 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/tools/vector/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/undo-redo.js +123 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/undo-redo.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/use-debounce.js +32 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/use-debounce.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/utils.js +307 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing/utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/axis/arrow.js +115 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/axis/arrow.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/axis/axes.js +415 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/axis/axes.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/axis/index.js +26 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/axis/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/bg.js +139 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/bg.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/container/actions.js +24 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/container/actions.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/container/index.js +166 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/container/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/container/marks.js +27 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/container/marks.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/container/middleware.js +25 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/container/middleware.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/container/reducer.js +25 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/container/reducer.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/coordinates-label.js +109 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/coordinates-label.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/graph-with-controls.js +372 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/graph-with-controls.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/graph.js +419 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/graph.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/grid-setup.js +462 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/grid-setup.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/grid.js +176 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/grid.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/index.js +51 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/labels.js +298 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/labels.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/mark-label.js +208 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/mark-label.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/toggle-bar.js +336 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/toggle-bar.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tool-menu.js +325 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tool-menu.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/index.js +29 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/line/component.js +106 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/line/component.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/line/index.js +16 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/line/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/polygon/component.js +457 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/polygon/component.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/polygon/index.js +106 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/polygon/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/polygon/line.js +151 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/polygon/line.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/polygon/polygon.js +171 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/polygon/polygon.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/arrow-head.js +75 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/arrow-head.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/line/index.js +637 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/line/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/line/line-path.js +145 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/line/line-path.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/line/with-root-edge.js +155 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/line/with-root-edge.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/point/arrow-point.js +113 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/point/arrow-point.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/point/arrow.js +96 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/point/arrow.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/point/base-point.js +151 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/point/base-point.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/point/index.js +94 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/point/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/styles.js +49 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/styles.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/types.js +19 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/tools/shared/types.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/undo-redo.js +107 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/undo-redo.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/use-debounce.js +32 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/use-debounce.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/utils.js +314 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-solution-set/utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-utils/index.js +343 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/graphing-utils/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/correct-icon.js +89 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/correct-icon.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/correct-response-icon.js +153 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/correct-response-icon.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/icon-base.js +206 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/icon-base.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/icon-root.js +130 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/icon-root.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/image-konva.js +133 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/image-konva.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/incorrect-icon.js +92 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/incorrect-icon.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/index.js +80 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/instructions-icon.js +229 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/instructions-icon.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/learn-more-icon.js +145 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/learn-more-icon.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/nothing-submitted-icon.js +183 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/nothing-submitted-icon.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/partially-correct-icon.js +82 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/partially-correct-icon.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/show-rationale-icon.js +206 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/show-rationale-icon.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/sized.js +41 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/icons/sized.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/choices/choice.js +158 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/choices/choice.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/choices/index.js +127 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/choices/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/componentize.js +25 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/componentize.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/components/blank.js +303 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/components/blank.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/components/correct-input.js +116 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/components/correct-input.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/components/dropdown.js +298 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/components/dropdown.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/components/input.js +57 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/components/input.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/constructed-response.js +52 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/constructed-response.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/drag-in-the-blank.js +191 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/drag-in-the-blank.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/index.js +54 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/inline-dropdown.js +48 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/inline-dropdown.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/mask.js +215 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/mask.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/serialization.js +207 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/serialization.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/with-mask.js +93 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/mask-markup/with-mask.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-evaluator/index.js +189 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-evaluator/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/horizontal-keypad.js +118 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/horizontal-keypad.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/index.js +76 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keypad/index.js +441 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keypad/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keypad/keys-layout.js +34 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keypad/keys-layout.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/basic-operators.js +41 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/basic-operators.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/chars.js +17 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/chars.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/comparison.js +49 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/comparison.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/constants.js +43 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/constants.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/digits.js +53 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/digits.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/edit.js +17 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/edit.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/exponent.js +36 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/exponent.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/fractions.js +34 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/fractions.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/geometry.js +167 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/geometry.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/grades.js +288 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/grades.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/index.js +54 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/log.js +32 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/log.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/logic.js +23 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/logic.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/matrices.js +23 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/matrices.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/misc.js +74 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/misc.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/navigation.js +25 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/navigation.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/operators.js +18 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/operators.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/statistics.js +47 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/statistics.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/sub-sup.js +23 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/sub-sup.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/trigonometry.js +53 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/trigonometry.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/utils.js +120 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/vars.js +29 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/keys/vars.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/math-input.js +192 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/math-input.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/mq/custom-elements.js +23 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/mq/custom-elements.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/mq/index.js +24 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/mq/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/mq/input.js +241 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/mq/input.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/mq/static.js +233 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/mq/static.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/updateSpans.js +19 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-input/updateSpans.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering/index.js +38 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering/mml-to-latex.js +15 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering/mml-to-latex.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering/mstack/chtml.js +296 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering/mstack/chtml.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering/mstack/index.js +23 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering/mstack/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering/mstack/mml.js +109 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering/mstack/mml.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering/normalization.js +95 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering/normalization.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering/render-math.js +320 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering/render-math.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering-accessible/index.js +38 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering-accessible/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering-accessible/mathjax-script.js +96 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering-accessible/mathjax-script.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering-accessible/mml-to-latex.js +15 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering-accessible/mml-to-latex.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering-accessible/mstack/chtml.js +296 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering-accessible/mstack/chtml.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering-accessible/mstack/index.js +23 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering-accessible/mstack/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering-accessible/mstack/mml.js +109 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering-accessible/mstack/mml.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering-accessible/normalization.js +95 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering-accessible/normalization.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering-accessible/render-math.js +297 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-rendering-accessible/render-math.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-toolbar/done-button.js +68 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-toolbar/done-button.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-toolbar/editor-and-pad.js +653 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-toolbar/editor-and-pad.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-toolbar/index.js +275 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-toolbar/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-toolbar/math-preview.js +250 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/math-toolbar/math-preview.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/draggable.js +65 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/draggable.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/graph-props.js +53 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/graph-props.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/grid-draggable.js +340 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/grid-draggable.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/index.js +59 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/label.js +168 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/label.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/root.js +387 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/root.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/trig.js +196 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/trig.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/types.js +68 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/types.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/utils.js +210 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/plot/utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/collapsible/index.js +134 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/collapsible/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/color.js +158 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/color.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/feedback.js +151 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/feedback.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/has-text.js +24 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/has-text.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/html-and-math.js +90 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/html-and-math.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/index.js +104 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/input-container.js +60 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/input-container.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/preview-layout.js +133 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/preview-layout.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/preview-prompt.js +222 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/preview-prompt.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/purpose.js +28 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/purpose.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/readable.js +28 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/readable.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/response-indicators.js +151 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/response-indicators.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/withUndoReset.js +181 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/render-ui/withUndoReset.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/rubric/authoring.js +573 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/rubric/authoring.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/rubric/index.js +24 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/rubric/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/rubric/point-menu.js +172 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/rubric/point-menu.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/scoring-config/index.js +105 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/scoring-config/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/style-utils/index.js +22 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/style-utils/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/test-utils/index.js +40 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/test-utils/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/index.js +68 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/legend.js +99 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/legend.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/text-select.js +138 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/text-select.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/token-select/index.js +249 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/token-select/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/token-select/token.js +230 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/token-select/token.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/tokenizer/builder.js +311 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/tokenizer/builder.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/tokenizer/controls.js +123 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/tokenizer/controls.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/tokenizer/index.js +205 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/tokenizer/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/tokenizer/selection-utils.js +65 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/tokenizer/selection-utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/tokenizer/token-text.js +200 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/tokenizer/token-text.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/utils.js +67 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/text-select/utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/anchor-utils.js +249 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/anchor-utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/anchor.js +41 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/anchor.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/index.js +43 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/protractor/graphic.js +184 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/protractor/graphic.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/protractor/index.js +120 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/protractor/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/rotatable.js +403 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/rotatable.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/ruler/graphic.js +126 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/ruler/graphic.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/ruler/index.js +146 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/ruler/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/ruler/unit-type.js +72 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/ruler/unit-type.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/ruler/unit.js +161 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/ruler/unit.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/style-utils.js +28 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/style-utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/transform-origin.js +82 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/tools/transform-origin.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/translator/en.js +85 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/translator/en.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/translator/es.js +85 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/translator/es.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/translator/index.js +69 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/code/translator/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/config-ui.js +176 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/config-ui.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/controller-utils.js +26 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/controller-utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/correct-answer-toggle.js +20 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/correct-answer-toggle.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/drag.js +68 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/drag.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/editable-html.js +54 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/editable-html.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/feedback.js +26 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/feedback.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/graphing-solution-set.js +51 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/graphing-solution-set.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/graphing-utils.js +74 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/graphing-utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/graphing.js +51 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/graphing.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/icons.js +62 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/icons.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/mask-markup.js +44 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/mask-markup.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/math-evaluator.js +20 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/math-evaluator.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/math-input.js +50 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/math-input.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/math-rendering-accessible.js +32 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/math-rendering-accessible.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/math-rendering.js +32 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/math-rendering.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/math-toolbar.js +32 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/math-toolbar.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/package.json +84 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/plot.js +50 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/plot.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/render-ui.js +80 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/render-ui.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/rubric.js +20 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/rubric.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/scoring-config.js +20 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/scoring-config.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/categorize.js +45 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/charting.js +6 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/categorize/index.js +573 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/categorize/scoring.js +118 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/axes.jsx +505 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/bars/bar.js +28 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/bars/common/bars.jsx +212 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/bars/histogram.js +28 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/chart-setup.jsx +372 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/chart-type.js +35 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/chart-types.js +8 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/chart.jsx +350 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/common/drag-handle.jsx +139 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/common/drag-icon.jsx +29 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/common/styles.js +19 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/grid.jsx +47 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/index.js +6 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/line/common/drag-handle.jsx +100 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/line/common/line.jsx +163 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/line/line-cross.js +76 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/line/line-dot.js +62 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/mark-label.jsx +198 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/plot/common/plot.jsx +199 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/plot/dot.js +51 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/plot/line.js +76 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/tool-menu.jsx +89 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/charting/utils.js +198 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/alert-dialog.jsx +56 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/checkbox.jsx +66 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/choice-configuration/feedback-menu.jsx +90 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/choice-configuration/index.jsx +365 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/choice-utils.js +30 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/feedback-config/feedback-selector.jsx +122 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/feedback-config/group.jsx +52 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/feedback-config/index.jsx +112 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/form-section.jsx +23 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/help.jsx +87 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/index.js +55 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/input.jsx +72 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/inputs.jsx +91 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/langs.jsx +111 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/layout/config-layout.jsx +67 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/layout/index.js +4 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/layout/layout-contents.jsx +118 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/layout/settings-box.jsx +35 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/mui-box/index.jsx +64 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/number-text-field-custom.jsx +337 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/number-text-field.jsx +202 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/radio-with-label.jsx +18 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/settings/display-size.jsx +52 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/settings/index.js +82 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/settings/panel.jsx +326 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/settings/settings-radio-label.jsx +20 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/settings/toggle.jsx +31 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/tabs/index.jsx +47 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/tags-input/index.jsx +119 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/two-choice.jsx +94 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/config-ui/with-stateful-model.jsx +36 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/controller-utils/index.js +4 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/controller-utils/partial-scoring.js +21 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/controller-utils/persistence.js +105 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/correct-answer-toggle/expander.jsx +59 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/correct-answer-toggle/index.jsx +94 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/correct-answer-toggle/styles.js +61 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/drag/choice.jsx +76 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/drag/drag-in-the-blank-dp.jsx +19 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/drag/drag-type.js +7 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/drag/droppable-placeholder.jsx +35 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/drag/ica-dp.jsx +23 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/drag/index.js +23 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/drag/match-list-dp.jsx +23 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/drag/placeholder.jsx +86 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/drag/preview-component.jsx +149 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/drag/swap.js +14 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/drag/uid-context.js +13 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/drag/with-drag-context.js +25 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/block-tags.js +19 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/editor.jsx +1051 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/index.jsx +153 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/parse-html.js +8 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/README.md +27 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/characters/custom-popper.js +48 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/characters/index.jsx +276 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/characters/utils.js +447 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/customPlugin/index.jsx +99 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/html/icons/index.jsx +19 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/html/index.jsx +71 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/image/alt-dialog.jsx +82 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/image/component.jsx +343 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/image/image-toolbar.jsx +100 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/image/index.jsx +226 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/image/insert-image-handler.js +117 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/index.jsx +149 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/list/index.jsx +175 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/math/index.jsx +348 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/media/index.jsx +324 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/media/media-dialog.js +575 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/media/media-toolbar.jsx +56 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/media/media-wrapper.jsx +43 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/respArea/drag-in-the-blank/choice.jsx +185 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/respArea/drag-in-the-blank/index.jsx +76 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/respArea/explicit-constructed-response/index.jsx +46 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/respArea/icons/index.jsx +71 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/respArea/index.jsx +253 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/respArea/inline-dropdown/index.jsx +63 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/respArea/utils.jsx +79 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/table/icons/index.jsx +53 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/table/index.jsx +440 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/table/table-toolbar.jsx +99 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/toolbar/default-toolbar.jsx +144 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/toolbar/done-button.jsx +36 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/toolbar/editor-and-toolbar.jsx +242 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/toolbar/index.jsx +23 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/toolbar/toolbar-buttons.jsx +97 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/toolbar/toolbar.jsx +315 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/plugins/utils.js +31 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/serialization.jsx +427 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/editable-html/theme.js +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/feedback/index.js +61 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/axis/arrow.jsx +62 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/axis/axes.jsx +307 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/axis/index.js +2 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/bg.jsx +96 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/container/actions.js +8 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/container/index.jsx +86 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/container/marks.js +14 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/container/middleware.js +7 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/container/reducer.js +5 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/coordinates-label.jsx +73 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/graph-with-controls.jsx +244 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/graph.jsx +285 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/grid-setup.jsx +424 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/grid.jsx +135 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/index.js +7 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/labels.jsx +213 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/mark-label.jsx +136 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/toggle-bar.jsx +242 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tool-menu.jsx +72 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/absolute/component.jsx +23 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/absolute/index.js +31 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/circle/bg-circle.jsx +88 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/circle/component.jsx +292 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/circle/index.js +25 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/exponential/component.jsx +23 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/exponential/index.js +39 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/index.js +42 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/line/component.jsx +70 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/line/index.js +4 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/parabola/component.jsx +23 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/parabola/index.js +31 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/point/component.jsx +120 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/point/index.js +11 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/polygon/component.jsx +388 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/polygon/index.js +52 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/polygon/line.jsx +78 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/polygon/polygon.jsx +98 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/ray/component.jsx +69 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/ray/index.js +4 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/segment/component.jsx +48 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/segment/index.js +4 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/shared/arrow-head.jsx +44 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/shared/line/index.jsx +422 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/shared/line/line-path.jsx +88 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/shared/line/with-root-edge.jsx +97 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/shared/point/arrow-point.jsx +60 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/shared/point/arrow.jsx +40 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/shared/point/base-point.jsx +79 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/shared/point/index.jsx +60 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/shared/styles.js +20 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/shared/types.js +10 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/sine/component.jsx +32 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/sine/index.js +33 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/vector/component.jsx +60 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/tools/vector/index.js +4 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/undo-redo.jsx +50 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/use-debounce.js +13 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing/utils.js +226 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/axis/arrow.jsx +62 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/axis/axes.jsx +307 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/axis/index.js +2 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/bg.jsx +96 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/container/actions.js +8 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/container/index.jsx +86 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/container/marks.js +14 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/container/middleware.js +7 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/container/reducer.js +5 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/coordinates-label.jsx +73 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/graph-with-controls.jsx +263 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/graph.jsx +334 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/grid-setup.jsx +424 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/grid.jsx +135 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/index.js +7 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/labels.jsx +213 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/mark-label.jsx +136 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/toggle-bar.jsx +242 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tool-menu.jsx +294 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/index.js +8 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/line/component.jsx +77 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/line/index.js +4 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/polygon/component.jsx +336 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/polygon/index.js +52 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/polygon/line.jsx +78 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/polygon/polygon.jsx +101 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/shared/arrow-head.jsx +46 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/shared/line/index.jsx +473 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/shared/line/line-path.jsx +88 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/shared/line/with-root-edge.jsx +97 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/shared/point/arrow-point.jsx +60 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/shared/point/arrow.jsx +40 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/shared/point/base-point.jsx +86 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/shared/point/index.jsx +60 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/shared/styles.js +20 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/tools/shared/types.js +8 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/undo-redo.jsx +47 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/use-debounce.js +13 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-solution-set/utils.js +234 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/graphing-utils/index.js +227 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/icons/correct-icon.jsx +64 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/icons/correct-response-icon.jsx +121 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/icons/icon-base.jsx +158 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/icons/icon-root.jsx +76 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/icons/image-konva.jsx +76 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/icons/incorrect-icon.jsx +61 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/icons/index.js +21 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/icons/instructions-icon.jsx +189 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/icons/learn-more-icon.jsx +107 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/icons/nothing-submitted-icon.jsx +130 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/icons/partially-correct-icon.jsx +49 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/icons/show-rationale-icon.jsx +152 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/icons/sized.jsx +25 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/mask-markup/choices/choice.jsx +110 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/mask-markup/choices/index.jsx +63 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/mask-markup/componentize.js +13 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/mask-markup/components/blank.jsx +249 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/mask-markup/components/correct-input.jsx +96 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/mask-markup/components/dropdown.jsx +231 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/mask-markup/components/input.jsx +48 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/mask-markup/constructed-response.jsx +34 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/mask-markup/drag-in-the-blank.jsx +124 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/mask-markup/index.js +7 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/mask-markup/inline-dropdown.jsx +29 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/mask-markup/mask.jsx +137 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/mask-markup/serialization.js +170 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/mask-markup/with-mask.jsx +35 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-evaluator/index.js +169 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/horizontal-keypad.jsx +56 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/index.jsx +18 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keypad/index.jsx +366 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keypad/keys-layout.js +17 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/basic-operators.js +32 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/chars.js +5 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/comparison.js +28 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/constants.js +35 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/digits.js +40 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/edit.js +3 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/exponent.js +28 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/fractions.js +26 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/geometry.js +140 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/grades.js +361 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/index.js +21 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/log.js +22 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/logic.js +15 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/matrices.js +15 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/misc.js +65 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/navigation.js +8 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/operators.js +10 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/statistics.js +38 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/sub-sup.js +15 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/trigonometry.js +15 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/utils.js +71 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/keys/vars.js +19 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/math-input.jsx +128 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/mq/custom-elements.js +11 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/mq/index.js +4 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/mq/input.jsx +162 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/mq/static.jsx +156 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-input/updateSpans.js +11 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-rendering/index.js +5 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-rendering/mml-to-latex.js +2 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-rendering/mstack/chtml.js +220 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-rendering/mstack/index.js +13 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-rendering/mstack/mml.js +24 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-rendering/normalization.js +69 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-rendering/render-math.js +296 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-rendering-accessible/index.js +5 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-rendering-accessible/mathjax-script.js +91 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-rendering-accessible/mml-to-latex.js +2 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-rendering-accessible/mstack/chtml.js +220 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-rendering-accessible/mstack/index.js +13 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-rendering-accessible/mstack/mml.js +24 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-rendering-accessible/normalization.js +69 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-rendering-accessible/render-math.js +271 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-toolbar/done-button.jsx +47 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-toolbar/editor-and-pad.jsx +597 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-toolbar/index.jsx +213 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/math-toolbar/math-preview.jsx +199 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/plot/draggable.jsx +11 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/plot/graph-props.js +38 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/plot/grid-draggable.jsx +225 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/plot/index.js +9 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/plot/label.jsx +155 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/plot/root.jsx +344 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/plot/trig.js +150 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/plot/types.js +41 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/plot/utils.js +156 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/render-ui/collapsible/index.jsx +63 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/render-ui/color.js +56 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/render-ui/feedback.jsx +100 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/render-ui/has-text.js +14 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/render-ui/html-and-math.js +34 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/render-ui/index.js +27 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/render-ui/input-container.jsx +41 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/render-ui/preview-layout.jsx +84 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/render-ui/preview-prompt.jsx +149 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/render-ui/purpose.jsx +17 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/render-ui/readable.jsx +19 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/render-ui/response-indicators.jsx +89 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/render-ui/withUndoReset.jsx +116 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/rubric/authoring.jsx +446 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/rubric/index.js +9 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/rubric/point-menu.jsx +94 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/scoring-config/index.jsx +57 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/style-utils/index.js +10 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/test-utils/index.js +18 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/text-select/index.js +8 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/text-select/legend.js +78 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/text-select/text-select.jsx +79 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/text-select/token-select/index.jsx +162 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/text-select/token-select/token.jsx +190 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/text-select/tokenizer/builder.js +259 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/text-select/tokenizer/controls.jsx +69 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/text-select/tokenizer/index.jsx +149 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/text-select/tokenizer/selection-utils.js +49 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/text-select/tokenizer/token-text.jsx +124 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/text-select/utils.js +56 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/tools/anchor-utils.js +152 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/tools/anchor.jsx +21 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/tools/index.js +6 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/tools/protractor/graphic.jsx +87 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/tools/protractor/index.jsx +65 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/tools/rotatable.jsx +295 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/tools/ruler/graphic.jsx +51 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/tools/ruler/index.jsx +81 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/tools/ruler/unit-type.jsx +45 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/tools/ruler/unit.jsx +87 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/tools/style-utils.js +7 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/tools/transform-origin.jsx +60 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/translator/en.js +83 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/translator/es.js +83 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/code/translator/index.js +45 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/config-ui.js +62 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/controller-utils.js +3 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/correct-answer-toggle.js +7 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/drag.js +25 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/editable-html.js +5 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/feedback.js +11 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/graphing-solution-set.js +7 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/graphing-utils.js +27 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/graphing.js +7 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/icons.js +23 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/mask-markup.js +3 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/math-evaluator.js +7 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/math-input.js +3 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/math-rendering-accessible.js +3 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/math-rendering.js +3 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/math-toolbar.js +13 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/plot.js +3 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/render-ui.js +29 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/rubric.js +3 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/scoring-config.js +7 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/style-utils.js +3 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/test-utils.js +3 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/text-select.js +3 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/tools.js +3 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/src/translator.js +7 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/style-utils.js +14 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/style-utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/test-utils.js +14 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/test-utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/text-select.js +50 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/text-select.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/tools.js +32 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/tools.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/translator.js +20 -0
- package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/pie-toolbox/translator.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/package.json +31 -0
- package/configure/package.json +2 -2
- package/controller/package.json +1 -1
- package/package.json +3 -3
- package/module/configure.js +0 -6054
- package/module/demo.js +0 -77
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
11
|
+
|
|
12
|
+
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
13
|
+
|
|
14
|
+
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
15
|
+
|
|
16
|
+
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
17
|
+
|
|
18
|
+
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
19
|
+
|
|
20
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
21
|
+
|
|
22
|
+
var _react = _interopRequireDefault(require("react"));
|
|
23
|
+
|
|
24
|
+
var _sized = _interopRequireDefault(require("./sized"));
|
|
25
|
+
|
|
26
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; }
|
|
27
|
+
|
|
28
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
29
|
+
|
|
30
|
+
var Lines = function Lines() {
|
|
31
|
+
var style = {
|
|
32
|
+
fill: 'none',
|
|
33
|
+
stroke: '#BCE2FF',
|
|
34
|
+
strokeWidth: 2,
|
|
35
|
+
strokeMiterlimit: 10
|
|
36
|
+
};
|
|
37
|
+
return /*#__PURE__*/_react["default"].createElement("g", null, /*#__PURE__*/_react["default"].createElement("line", {
|
|
38
|
+
style: style,
|
|
39
|
+
x1: "-98",
|
|
40
|
+
y1: "142",
|
|
41
|
+
x2: "-114.6",
|
|
42
|
+
y2: "142"
|
|
43
|
+
}), /*#__PURE__*/_react["default"].createElement("line", {
|
|
44
|
+
style: style,
|
|
45
|
+
x1: "-98",
|
|
46
|
+
y1: "146.3",
|
|
47
|
+
x2: "-114.6",
|
|
48
|
+
y2: "146.3"
|
|
49
|
+
}), /*#__PURE__*/_react["default"].createElement("line", {
|
|
50
|
+
style: style,
|
|
51
|
+
x1: "-104",
|
|
52
|
+
y1: "150.7",
|
|
53
|
+
x2: "-114.6",
|
|
54
|
+
y2: "150.7"
|
|
55
|
+
}));
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
var Root = function Root(_ref) {
|
|
59
|
+
var children = _ref.children,
|
|
60
|
+
size = _ref.size;
|
|
61
|
+
return /*#__PURE__*/_react["default"].createElement(_sized["default"], {
|
|
62
|
+
size: size
|
|
63
|
+
}, /*#__PURE__*/_react["default"].createElement("svg", {
|
|
64
|
+
version: "1.1",
|
|
65
|
+
viewBox: "-128 129 31 31",
|
|
66
|
+
style: {
|
|
67
|
+
enableBackground: 'new -128 129 31 31'
|
|
68
|
+
}
|
|
69
|
+
}, children));
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
Root.propTypes = {
|
|
73
|
+
children: _propTypes["default"].oneOfType([_propTypes["default"].arrayOf(_propTypes["default"].node), _propTypes["default"].node]).isRequired,
|
|
74
|
+
size: _propTypes["default"].number
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
var GreyInfo = function GreyInfo() {
|
|
78
|
+
return /*#__PURE__*/_react["default"].createElement("g", null, /*#__PURE__*/_react["default"].createElement("rect", {
|
|
79
|
+
x: "-123.9",
|
|
80
|
+
y: "135.3",
|
|
81
|
+
style: {
|
|
82
|
+
fill: '#D0CAC5',
|
|
83
|
+
stroke: '#E6E3E0',
|
|
84
|
+
strokeWidth: 0.75,
|
|
85
|
+
strokeLinejoin: 'round',
|
|
86
|
+
strokeMiterlimit: 10
|
|
87
|
+
},
|
|
88
|
+
width: "4.1",
|
|
89
|
+
height: "4.1"
|
|
90
|
+
}), /*#__PURE__*/_react["default"].createElement("polygon", {
|
|
91
|
+
style: {
|
|
92
|
+
fill: '#D0CAC5',
|
|
93
|
+
stroke: '#E6E3E0',
|
|
94
|
+
strokeWidth: 0.75,
|
|
95
|
+
strokeLinejoin: 'round',
|
|
96
|
+
strokeMiterlimit: 10
|
|
97
|
+
},
|
|
98
|
+
points: "-119.8,150.4 -119.8,142.2 -125,142.2 -125,144.9 -122.6,144.9 -122.6,150.4 -125.6,150.4 -125.6,153.2 -116.8,153.2 -116.8,150.4 "
|
|
99
|
+
}), /*#__PURE__*/_react["default"].createElement("rect", {
|
|
100
|
+
x: "-124.7",
|
|
101
|
+
y: "134.7",
|
|
102
|
+
style: {
|
|
103
|
+
fill: '#B3ABA4',
|
|
104
|
+
stroke: '#CDC7C2',
|
|
105
|
+
strokeWidth: 0.5,
|
|
106
|
+
strokeLinecap: 'round',
|
|
107
|
+
strokeLinejoin: 'round',
|
|
108
|
+
strokeMiterlimit: 10
|
|
109
|
+
},
|
|
110
|
+
width: "4.1",
|
|
111
|
+
height: "4.1"
|
|
112
|
+
}), /*#__PURE__*/_react["default"].createElement("polygon", {
|
|
113
|
+
style: {
|
|
114
|
+
fill: '#B3ABA4',
|
|
115
|
+
stroke: '#CDC7C2',
|
|
116
|
+
strokeWidth: 0.5,
|
|
117
|
+
strokeLinecap: 'round',
|
|
118
|
+
strokeLinejoin: 'round',
|
|
119
|
+
strokeMiterlimit: 10
|
|
120
|
+
},
|
|
121
|
+
points: "-120.6,149.8 -120.6,141.5 -125.8,141.5 -125.8,144.3 -123.3,144.3 -123.3,149.8 -126.4,149.8 -126.4,152.5 -117.6,152.5 -117.6,149.8 "
|
|
122
|
+
}), /*#__PURE__*/_react["default"].createElement("rect", {
|
|
123
|
+
x: "-125.5",
|
|
124
|
+
y: "134",
|
|
125
|
+
style: {
|
|
126
|
+
fill: '#7FABC6'
|
|
127
|
+
},
|
|
128
|
+
width: "4.1",
|
|
129
|
+
height: "4.1"
|
|
130
|
+
}), /*#__PURE__*/_react["default"].createElement("polygon", {
|
|
131
|
+
style: {
|
|
132
|
+
fill: '#7FABC6'
|
|
133
|
+
},
|
|
134
|
+
points: "-121.4,149.1 -121.4,140.9 -126.5,140.9 -126.5,143.6 -124.1,143.6 -124.1,149.1 -127.1,149.1 -127.1,151.9 -118.4,151.9 -118.4,149.1 "
|
|
135
|
+
}));
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
var BlueInfo = function BlueInfo() {
|
|
139
|
+
return /*#__PURE__*/_react["default"].createElement("g", null, /*#__PURE__*/_react["default"].createElement("rect", {
|
|
140
|
+
x: "-123.9",
|
|
141
|
+
y: "135.3",
|
|
142
|
+
style: {
|
|
143
|
+
fill: '#D0CAC5',
|
|
144
|
+
stroke: '#E6E3E0',
|
|
145
|
+
strokeWidth: 0.75,
|
|
146
|
+
strokeLinejoin: 'round',
|
|
147
|
+
strokeMiterlimit: 10
|
|
148
|
+
},
|
|
149
|
+
width: "4.1",
|
|
150
|
+
height: "4.1"
|
|
151
|
+
}), /*#__PURE__*/_react["default"].createElement("polygon", {
|
|
152
|
+
style: {
|
|
153
|
+
fill: '#D0CAC5',
|
|
154
|
+
stroke: '#E6E3E0',
|
|
155
|
+
strokeWidth: 0.75,
|
|
156
|
+
strokeLinejoin: 'round',
|
|
157
|
+
strokeMiterlimit: 10
|
|
158
|
+
},
|
|
159
|
+
points: "-119.8,150.4 -119.8,142.2 -125,142.2 -125,144.9 -122.6,144.9 -122.6,150.4 -125.6,150.4 -125.6,153.2 -116.8,153.2 -116.8,150.4 "
|
|
160
|
+
}), /*#__PURE__*/_react["default"].createElement("rect", {
|
|
161
|
+
x: "-124.7",
|
|
162
|
+
y: "134.7",
|
|
163
|
+
style: {
|
|
164
|
+
fill: '#B3ABA4',
|
|
165
|
+
stroke: '#CDC7C2',
|
|
166
|
+
strokeWidth: 0.5,
|
|
167
|
+
strokeLinecap: 'round',
|
|
168
|
+
strokeLinejoin: 'round',
|
|
169
|
+
strokeMiterlimit: 10
|
|
170
|
+
},
|
|
171
|
+
width: "4.1",
|
|
172
|
+
height: "4.1"
|
|
173
|
+
}), /*#__PURE__*/_react["default"].createElement("polygon", {
|
|
174
|
+
style: {
|
|
175
|
+
fill: '#B3ABA4',
|
|
176
|
+
stroke: '#CDC7C2',
|
|
177
|
+
strokeWidth: 0.5,
|
|
178
|
+
strokeLinecap: 'round',
|
|
179
|
+
strokeLinejoin: 'round',
|
|
180
|
+
strokeMiterlimit: 10
|
|
181
|
+
},
|
|
182
|
+
points: "-120.6,149.8 -120.6,141.5 -125.8,141.5 -125.8,144.3 -123.3,144.3 -123.3,149.8 -126.4,149.8 -126.4,152.5 -117.6,152.5 -117.6,149.8 "
|
|
183
|
+
}), /*#__PURE__*/_react["default"].createElement("rect", {
|
|
184
|
+
x: "-125.5",
|
|
185
|
+
y: "134",
|
|
186
|
+
style: {
|
|
187
|
+
fill: '#1A9CFF'
|
|
188
|
+
},
|
|
189
|
+
width: "4.1",
|
|
190
|
+
height: "4.1"
|
|
191
|
+
}), /*#__PURE__*/_react["default"].createElement("polygon", {
|
|
192
|
+
style: {
|
|
193
|
+
fill: '#1A9CFF'
|
|
194
|
+
},
|
|
195
|
+
points: "-121.4,149.1 -121.4,140.9 -126.5,140.9 -126.5,143.6 -124.1,143.6 -124.1,149.1 -127.1,149.1 -127.1,151.9 -118.4,151.9 -118.4,149.1 "
|
|
196
|
+
}));
|
|
197
|
+
};
|
|
198
|
+
|
|
199
|
+
var Instructions = /*#__PURE__*/function (_React$Component) {
|
|
200
|
+
(0, _inherits2["default"])(Instructions, _React$Component);
|
|
201
|
+
|
|
202
|
+
var _super = _createSuper(Instructions);
|
|
203
|
+
|
|
204
|
+
function Instructions(props) {
|
|
205
|
+
(0, _classCallCheck2["default"])(this, Instructions);
|
|
206
|
+
return _super.call(this, props);
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
(0, _createClass2["default"])(Instructions, [{
|
|
210
|
+
key: "render",
|
|
211
|
+
value: function render() {
|
|
212
|
+
if (this.props.open === true) {
|
|
213
|
+
return /*#__PURE__*/_react["default"].createElement(Root, null, /*#__PURE__*/_react["default"].createElement(GreyInfo, null), /*#__PURE__*/_react["default"].createElement(Lines, null));
|
|
214
|
+
} else {
|
|
215
|
+
return /*#__PURE__*/_react["default"].createElement(Root, null, /*#__PURE__*/_react["default"].createElement(BlueInfo, null), /*#__PURE__*/_react["default"].createElement(Lines, null));
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}]);
|
|
219
|
+
return Instructions;
|
|
220
|
+
}(_react["default"].Component);
|
|
221
|
+
|
|
222
|
+
exports["default"] = Instructions;
|
|
223
|
+
Instructions.propTypes = {
|
|
224
|
+
open: _propTypes["default"].bool
|
|
225
|
+
};
|
|
226
|
+
Instructions.defaultProps = {
|
|
227
|
+
open: false
|
|
228
|
+
};
|
|
229
|
+
//# sourceMappingURL=instructions-icon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/code/icons/instructions-icon.jsx"],"names":["Lines","style","fill","stroke","strokeWidth","strokeMiterlimit","Root","children","size","enableBackground","propTypes","PropTypes","oneOfType","arrayOf","node","isRequired","number","GreyInfo","strokeLinejoin","strokeLinecap","BlueInfo","Instructions","props","open","React","Component","bool","defaultProps"],"mappings":"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","sourcesContent":["import PropTypes from 'prop-types';\nimport React from 'react';\nimport Sized from './sized';\nconst Lines = () => {\n const style = {\n fill: 'none',\n stroke: '#BCE2FF',\n strokeWidth: 2,\n strokeMiterlimit: 10,\n };\n\n return (\n <g>\n <line style={style} x1=\"-98\" y1=\"142\" x2=\"-114.6\" y2=\"142\" />\n <line style={style} x1=\"-98\" y1=\"146.3\" x2=\"-114.6\" y2=\"146.3\" />\n <line style={style} x1=\"-104\" y1=\"150.7\" x2=\"-114.6\" y2=\"150.7\" />\n </g>\n );\n};\n\nconst Root = ({ children, size }) => (\n <Sized size={size}>\n <svg version=\"1.1\" viewBox=\"-128 129 31 31\" style={{ enableBackground: 'new -128 129 31 31' }}>\n {children}\n </svg>\n </Sized>\n);\n\nRoot.propTypes = {\n children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]).isRequired,\n size: PropTypes.number,\n};\n\nconst GreyInfo = () => {\n return (\n <g>\n <rect\n x=\"-123.9\"\n y=\"135.3\"\n style={{\n fill: '#D0CAC5',\n stroke: '#E6E3E0',\n strokeWidth: 0.75,\n strokeLinejoin: 'round',\n strokeMiterlimit: 10,\n }}\n width=\"4.1\"\n height=\"4.1\"\n />\n <polygon\n style={{\n fill: '#D0CAC5',\n stroke: '#E6E3E0',\n strokeWidth: 0.75,\n strokeLinejoin: 'round',\n strokeMiterlimit: 10,\n }}\n points=\"-119.8,150.4 -119.8,142.2 -125,142.2 -125,144.9 -122.6,144.9 -122.6,150.4 -125.6,150.4 \n -125.6,153.2 -116.8,153.2 -116.8,150.4 \"\n />\n <rect\n x=\"-124.7\"\n y=\"134.7\"\n style={{\n fill: '#B3ABA4',\n stroke: '#CDC7C2',\n strokeWidth: 0.5,\n strokeLinecap: 'round',\n strokeLinejoin: 'round',\n strokeMiterlimit: 10,\n }}\n width=\"4.1\"\n height=\"4.1\"\n />\n\n <polygon\n style={{\n fill: '#B3ABA4',\n stroke: '#CDC7C2',\n strokeWidth: 0.5,\n strokeLinecap: 'round',\n strokeLinejoin: 'round',\n strokeMiterlimit: 10,\n }}\n points=\"-120.6,149.8 -120.6,141.5 -125.8,141.5 -125.8,144.3 -123.3,144.3 -123.3,149.8 -126.4,149.8 \n -126.4,152.5 -117.6,152.5 -117.6,149.8 \"\n />\n <rect x=\"-125.5\" y=\"134\" style={{ fill: '#7FABC6' }} width=\"4.1\" height=\"4.1\" />\n <polygon\n style={{ fill: '#7FABC6' }}\n points=\"-121.4,149.1 -121.4,140.9 -126.5,140.9 -126.5,143.6 -124.1,143.6 -124.1,149.1 -127.1,149.1 \n -127.1,151.9 -118.4,151.9 -118.4,149.1 \"\n />\n </g>\n );\n};\n\nconst BlueInfo = () => (\n <g>\n <rect\n x=\"-123.9\"\n y=\"135.3\"\n style={{\n fill: '#D0CAC5',\n stroke: '#E6E3E0',\n strokeWidth: 0.75,\n strokeLinejoin: 'round',\n strokeMiterlimit: 10,\n }}\n width=\"4.1\"\n height=\"4.1\"\n />\n <polygon\n style={{\n fill: '#D0CAC5',\n stroke: '#E6E3E0',\n strokeWidth: 0.75,\n strokeLinejoin: 'round',\n strokeMiterlimit: 10,\n }}\n points=\"-119.8,150.4 -119.8,142.2 -125,142.2 -125,144.9 -122.6,144.9 -122.6,150.4 -125.6,150.4 \n -125.6,153.2 -116.8,153.2 -116.8,150.4 \"\n />\n <rect\n x=\"-124.7\"\n y=\"134.7\"\n style={{\n fill: '#B3ABA4',\n stroke: '#CDC7C2',\n strokeWidth: 0.5,\n strokeLinecap: 'round',\n strokeLinejoin: 'round',\n strokeMiterlimit: 10,\n }}\n width=\"4.1\"\n height=\"4.1\"\n />\n <polygon\n style={{\n fill: '#B3ABA4',\n stroke: '#CDC7C2',\n strokeWidth: 0.5,\n strokeLinecap: 'round',\n strokeLinejoin: 'round',\n strokeMiterlimit: 10,\n }}\n points=\"-120.6,149.8 -120.6,141.5 -125.8,141.5 -125.8,144.3 -123.3,144.3 -123.3,149.8 -126.4,149.8 \n -126.4,152.5 -117.6,152.5 -117.6,149.8 \"\n />\n <rect x=\"-125.5\" y=\"134\" style={{ fill: '#1A9CFF' }} width=\"4.1\" height=\"4.1\" />\n <polygon\n style={{ fill: '#1A9CFF' }}\n points=\"-121.4,149.1 -121.4,140.9 -126.5,140.9 -126.5,143.6 -124.1,143.6 -124.1,149.1 -127.1,149.1 \n -127.1,151.9 -118.4,151.9 -118.4,149.1 \"\n />\n </g>\n);\n\nexport default class Instructions extends React.Component {\n constructor(props) {\n super(props);\n }\n\n render() {\n if (this.props.open === true) {\n return (\n <Root>\n <GreyInfo />\n <Lines />\n </Root>\n );\n } else {\n return (\n <Root>\n <BlueInfo />\n <Lines />\n </Root>\n );\n }\n }\n}\n\nInstructions.propTypes = {\n open: PropTypes.bool,\n};\n\nInstructions.defaultProps = {\n open: false,\n};\n"],"file":"instructions-icon.js"}
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = exports.LearnMore = void 0;
|
|
9
|
+
|
|
10
|
+
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
11
|
+
|
|
12
|
+
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
13
|
+
|
|
14
|
+
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
15
|
+
|
|
16
|
+
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
17
|
+
|
|
18
|
+
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
19
|
+
|
|
20
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
21
|
+
|
|
22
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
23
|
+
|
|
24
|
+
var _react = _interopRequireDefault(require("react"));
|
|
25
|
+
|
|
26
|
+
var _styles = require("@material-ui/core/styles");
|
|
27
|
+
|
|
28
|
+
var _sized = _interopRequireDefault(require("./sized"));
|
|
29
|
+
|
|
30
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; }
|
|
31
|
+
|
|
32
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
33
|
+
|
|
34
|
+
var Glint = function Glint(_ref) {
|
|
35
|
+
var fill = _ref.fill;
|
|
36
|
+
return /*#__PURE__*/_react["default"].createElement("path", {
|
|
37
|
+
fill: fill,
|
|
38
|
+
d: "M-130.4,142.1c0-2.1,1.7-3.9,3.9-3.9c0.3,0,0.5,0,0.8,0.1c-0.6-0.8-1.5-1.3-2.6-1.3c-1.8,0-3.3,1.5-3.3,3.3c0,1.1,0.5,2,1.3,2.6C-130.4,142.6-130.4,142.4-130.4,142.1z"
|
|
39
|
+
});
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
Glint.propTypes = {
|
|
43
|
+
fill: _propTypes["default"].string
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
var LearnMore = /*#__PURE__*/function (_React$Component) {
|
|
47
|
+
(0, _inherits2["default"])(LearnMore, _React$Component);
|
|
48
|
+
|
|
49
|
+
var _super = _createSuper(LearnMore);
|
|
50
|
+
|
|
51
|
+
function LearnMore() {
|
|
52
|
+
(0, _classCallCheck2["default"])(this, LearnMore);
|
|
53
|
+
return _super.apply(this, arguments);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
(0, _createClass2["default"])(LearnMore, [{
|
|
57
|
+
key: "render",
|
|
58
|
+
value: function render() {
|
|
59
|
+
var _this$props = this.props,
|
|
60
|
+
classes = _this$props.classes,
|
|
61
|
+
size = _this$props.size;
|
|
62
|
+
|
|
63
|
+
if (this.props.open === true) {
|
|
64
|
+
return /*#__PURE__*/_react["default"].createElement(_sized["default"], {
|
|
65
|
+
size: size
|
|
66
|
+
}, /*#__PURE__*/_react["default"].createElement("svg", {
|
|
67
|
+
preserveAspectRatio: "xMinYMin meet",
|
|
68
|
+
viewBox: "-135 129 16 32"
|
|
69
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
70
|
+
className: classes.hideBg,
|
|
71
|
+
d: "M-122,141.1c0-3.7-3.3-6.6-7.1-5.8c-2.4,0.5-4.3,2.4-4.7,4.8c-0.4,2.3,0.6,4.4,2.2,5.7c0.4,0.3,0.6,0.8,0.6,1.3v1.9h6.1v-1.9c0-0.5,0.2-1,0.6-1.3C-122.8,144.7-122,143-122,141.1z"
|
|
72
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
73
|
+
className: classes.hideBg,
|
|
74
|
+
d: "M-125.7,153h-4.5c-0.4,0-0.8-0.4-0.8-0.8v-1.6h6.1v1.6C-124.9,152.7-125.2,153-125.7,153z"
|
|
75
|
+
}), /*#__PURE__*/_react["default"].createElement(Glint, {
|
|
76
|
+
fill: classes.hideFg.fill
|
|
77
|
+
})));
|
|
78
|
+
} else {
|
|
79
|
+
return /*#__PURE__*/_react["default"].createElement(_sized["default"], {
|
|
80
|
+
size: size
|
|
81
|
+
}, /*#__PURE__*/_react["default"].createElement("svg", {
|
|
82
|
+
preserveAspectRatio: "xMinYMin meet",
|
|
83
|
+
viewBox: "-135 129 16 31"
|
|
84
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
85
|
+
fill: "#D0CAC5",
|
|
86
|
+
stroke: "#E6E3E0",
|
|
87
|
+
className: "st0",
|
|
88
|
+
d: "M-120.7,142.4c0-3.7-3.3-6.6-7.1-5.8c-2.4,0.5-4.3,2.4-4.7,4.8c-0.4,2.3,0.6,4.4,2.2,5.7c0.4,0.3,0.6,0.8,0.6,1.3v1.9h6.1v-1.9c0-0.5,0.2-1,0.6-1.3C-121.6,146-120.7,144.3-120.7,142.4z"
|
|
89
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
90
|
+
fill: "#D0CAC5",
|
|
91
|
+
stroke: "#E6E3E0",
|
|
92
|
+
className: "st0",
|
|
93
|
+
d: "M-124.4,154.3h-4.5c-0.4,0-0.8-0.4-0.8-0.8v-1.6h6.1v1.6C-123.6,153.9-123.9,154.3-124.4,154.3z"
|
|
94
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
95
|
+
fill: "#B3ABA4",
|
|
96
|
+
stroke: "#CDC7C2",
|
|
97
|
+
className: "st1",
|
|
98
|
+
d: "M-121.3,141.8c0-3.7-3.3-6.6-7.1-5.8c-2.4,0.5-4.3,2.4-4.7,4.8c-0.4,2.3,0.6,4.4,2.2,5.7c0.4,0.3,0.6,0.8,0.6,1.3v1.9h6.1v-1.9c0-0.5,0.2-1,0.6-1.3C-122.2,145.3-121.3,143.7-121.3,141.8z"
|
|
99
|
+
}), ",", /*#__PURE__*/_react["default"].createElement("path", {
|
|
100
|
+
fill: "#B3ABA4",
|
|
101
|
+
stroke: "#CDC7C2",
|
|
102
|
+
className: "st1",
|
|
103
|
+
d: "M-125,153.7h-4.5c-0.4,0-0.8-0.4-0.8-0.8v-1.6h6.1v1.6C-124.2,153.3-124.6,153.7-125,153.7z"
|
|
104
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
105
|
+
className: classes.showBg,
|
|
106
|
+
d: "M-122,141.1c0-3.7-3.3-6.6-7.1-5.8c-2.4,0.5-4.3,2.4-4.7,4.8c-0.4,2.3,0.6,4.4,2.2,5.7c0.4,0.3,0.6,0.8,0.6,1.3v1.9h6.1v-1.9c0-0.5,0.2-1,0.6-1.3C-122.8,144.7-122,143-122,141.1z"
|
|
107
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
108
|
+
className: classes.showBg,
|
|
109
|
+
d: "M-125.7,153h-4.5c-0.4,0-0.8-0.4-0.8-0.8v-1.6h6.1v1.6C-124.9,152.7-125.2,153-125.7,153z"
|
|
110
|
+
}), /*#__PURE__*/_react["default"].createElement(Glint, {
|
|
111
|
+
fill: classes.hideFg.fill
|
|
112
|
+
})));
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}]);
|
|
116
|
+
return LearnMore;
|
|
117
|
+
}(_react["default"].Component);
|
|
118
|
+
|
|
119
|
+
exports.LearnMore = LearnMore;
|
|
120
|
+
(0, _defineProperty2["default"])(LearnMore, "propTypes", {
|
|
121
|
+
classes: _propTypes["default"].object.isRequired,
|
|
122
|
+
size: _propTypes["default"].number
|
|
123
|
+
});
|
|
124
|
+
var styles = {
|
|
125
|
+
showBg: {
|
|
126
|
+
fill: '#1a9cff'
|
|
127
|
+
},
|
|
128
|
+
hideFg: {
|
|
129
|
+
fill: '#1a9cff'
|
|
130
|
+
},
|
|
131
|
+
hideBg: {
|
|
132
|
+
fill: '#bce2ff'
|
|
133
|
+
}
|
|
134
|
+
};
|
|
135
|
+
LearnMore.propTypes = {
|
|
136
|
+
open: _propTypes["default"].bool
|
|
137
|
+
};
|
|
138
|
+
LearnMore.defaultProps = {
|
|
139
|
+
open: false
|
|
140
|
+
};
|
|
141
|
+
|
|
142
|
+
var _default = (0, _styles.withStyles)(styles)(LearnMore);
|
|
143
|
+
|
|
144
|
+
exports["default"] = _default;
|
|
145
|
+
//# sourceMappingURL=learn-more-icon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/code/icons/learn-more-icon.jsx"],"names":["Glint","fill","propTypes","PropTypes","string","LearnMore","props","classes","size","open","hideBg","hideFg","showBg","React","Component","object","isRequired","number","styles","bool","defaultProps"],"mappings":"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","sourcesContent":["import PropTypes from 'prop-types';\nimport React from 'react';\nimport { withStyles } from '@material-ui/core/styles';\nimport Sized from './sized';\n\nconst Glint = ({ fill }) => (\n <path\n fill={fill}\n d=\"M-130.4,142.1c0-2.1,1.7-3.9,3.9-3.9c0.3,0,0.5,0,0.8,0.1c-0.6-0.8-1.5-1.3-2.6-1.3c-1.8,0-3.3,1.5-3.3,3.3c0,1.1,0.5,2,1.3,2.6C-130.4,142.6-130.4,142.4-130.4,142.1z\"\n />\n);\n\nGlint.propTypes = {\n fill: PropTypes.string,\n};\n\nexport class LearnMore extends React.Component {\n static propTypes = {\n classes: PropTypes.object.isRequired,\n size: PropTypes.number,\n };\n\n render() {\n const { classes, size } = this.props;\n\n if (this.props.open === true) {\n return (\n <Sized size={size}>\n <svg preserveAspectRatio=\"xMinYMin meet\" viewBox=\"-135 129 16 32\">\n <path\n className={classes.hideBg}\n d=\"M-122,141.1c0-3.7-3.3-6.6-7.1-5.8c-2.4,0.5-4.3,2.4-4.7,4.8c-0.4,2.3,0.6,4.4,2.2,5.7c0.4,0.3,0.6,0.8,0.6,1.3v1.9h6.1v-1.9c0-0.5,0.2-1,0.6-1.3C-122.8,144.7-122,143-122,141.1z\"\n />\n <path\n className={classes.hideBg}\n d=\"M-125.7,153h-4.5c-0.4,0-0.8-0.4-0.8-0.8v-1.6h6.1v1.6C-124.9,152.7-125.2,153-125.7,153z\"\n />\n <Glint fill={classes.hideFg.fill} />\n </svg>\n </Sized>\n );\n } else {\n return (\n <Sized size={size}>\n <svg preserveAspectRatio=\"xMinYMin meet\" viewBox=\"-135 129 16 31\">\n <path\n fill=\"#D0CAC5\"\n stroke=\"#E6E3E0\"\n className=\"st0\"\n d=\"M-120.7,142.4c0-3.7-3.3-6.6-7.1-5.8c-2.4,0.5-4.3,2.4-4.7,4.8c-0.4,2.3,0.6,4.4,2.2,5.7c0.4,0.3,0.6,0.8,0.6,1.3v1.9h6.1v-1.9c0-0.5,0.2-1,0.6-1.3C-121.6,146-120.7,144.3-120.7,142.4z\"\n />\n <path\n fill=\"#D0CAC5\"\n stroke=\"#E6E3E0\"\n className=\"st0\"\n d=\"M-124.4,154.3h-4.5c-0.4,0-0.8-0.4-0.8-0.8v-1.6h6.1v1.6C-123.6,153.9-123.9,154.3-124.4,154.3z\"\n />\n <path\n fill=\"#B3ABA4\"\n stroke=\"#CDC7C2\"\n className=\"st1\"\n d=\"M-121.3,141.8c0-3.7-3.3-6.6-7.1-5.8c-2.4,0.5-4.3,2.4-4.7,4.8c-0.4,2.3,0.6,4.4,2.2,5.7c0.4,0.3,0.6,0.8,0.6,1.3v1.9h6.1v-1.9c0-0.5,0.2-1,0.6-1.3C-122.2,145.3-121.3,143.7-121.3,141.8z\"\n />\n ,\n <path\n fill=\"#B3ABA4\"\n stroke=\"#CDC7C2\"\n className=\"st1\"\n d=\"M-125,153.7h-4.5c-0.4,0-0.8-0.4-0.8-0.8v-1.6h6.1v1.6C-124.2,153.3-124.6,153.7-125,153.7z\"\n />\n <path\n className={classes.showBg}\n d=\"M-122,141.1c0-3.7-3.3-6.6-7.1-5.8c-2.4,0.5-4.3,2.4-4.7,4.8c-0.4,2.3,0.6,4.4,2.2,5.7c0.4,0.3,0.6,0.8,0.6,1.3v1.9h6.1v-1.9c0-0.5,0.2-1,0.6-1.3C-122.8,144.7-122,143-122,141.1z\"\n />\n <path\n className={classes.showBg}\n d=\"M-125.7,153h-4.5c-0.4,0-0.8-0.4-0.8-0.8v-1.6h6.1v1.6C-124.9,152.7-125.2,153-125.7,153z\"\n />\n <Glint fill={classes.hideFg.fill} />\n </svg>\n </Sized>\n );\n }\n }\n}\n\nconst styles = {\n showBg: {\n fill: '#1a9cff',\n },\n hideFg: {\n fill: '#1a9cff',\n },\n hideBg: {\n fill: '#bce2ff',\n },\n};\n\nLearnMore.propTypes = {\n open: PropTypes.bool,\n};\n\nLearnMore.defaultProps = {\n open: false,\n};\n\nexport default withStyles(styles)(LearnMore);\n"],"file":"learn-more-icon.js"}
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = exports.NothingSubmitted = void 0;
|
|
9
|
+
|
|
10
|
+
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
11
|
+
|
|
12
|
+
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
13
|
+
|
|
14
|
+
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
15
|
+
|
|
16
|
+
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
17
|
+
|
|
18
|
+
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
19
|
+
|
|
20
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
21
|
+
|
|
22
|
+
var _iconRoot = require("./icon-root");
|
|
23
|
+
|
|
24
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
25
|
+
|
|
26
|
+
var _react = _interopRequireDefault(require("react"));
|
|
27
|
+
|
|
28
|
+
var _styles = require("@material-ui/core/styles");
|
|
29
|
+
|
|
30
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; }
|
|
31
|
+
|
|
32
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
33
|
+
|
|
34
|
+
var Exclamation = function Exclamation(_ref) {
|
|
35
|
+
var className = _ref.className;
|
|
36
|
+
return /*#__PURE__*/_react["default"].createElement("g", null, /*#__PURE__*/_react["default"].createElement("rect", {
|
|
37
|
+
x: "19.3",
|
|
38
|
+
y: "10.3",
|
|
39
|
+
className: className,
|
|
40
|
+
width: "4.5",
|
|
41
|
+
height: "12.7"
|
|
42
|
+
}), /*#__PURE__*/_react["default"].createElement("rect", {
|
|
43
|
+
x: "19.3",
|
|
44
|
+
y: "26.2",
|
|
45
|
+
className: className,
|
|
46
|
+
width: "4.5",
|
|
47
|
+
height: "4.5"
|
|
48
|
+
}));
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
var Octagon = function Octagon(_ref2) {
|
|
52
|
+
var className = _ref2.className;
|
|
53
|
+
return /*#__PURE__*/_react["default"].createElement("polygon", {
|
|
54
|
+
className: className,
|
|
55
|
+
points: "14.8,4.5 5.6,13.8 5.6,27 14.8,36.5 28.1,36.5 37.6,27 37.6,13.8 28.1,4.5"
|
|
56
|
+
});
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
var Emoji = function Emoji(_ref3) {
|
|
60
|
+
var className = _ref3.className;
|
|
61
|
+
return /*#__PURE__*/_react["default"].createElement("g", null, /*#__PURE__*/_react["default"].createElement("rect", {
|
|
62
|
+
x: "23.8",
|
|
63
|
+
y: "15",
|
|
64
|
+
className: className,
|
|
65
|
+
width: "3.5",
|
|
66
|
+
height: "4.4"
|
|
67
|
+
}), /*#__PURE__*/_react["default"].createElement("rect", {
|
|
68
|
+
x: "16",
|
|
69
|
+
y: "15",
|
|
70
|
+
className: className,
|
|
71
|
+
width: "3.5",
|
|
72
|
+
height: "4.4"
|
|
73
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
74
|
+
className: className,
|
|
75
|
+
d: "M24.2,27.1h-5.1c-0.8,0-1.5-0.7-1.5-1.5v0c0-0.8,0.7-1.5,1.5-1.5h5.1c0.8,0,1.5,0.7,1.5,1.5v0 C25.7,26.4,25,27.1,24.2,27.1z"
|
|
76
|
+
}));
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
Emoji.propTypes = Octagon.propTypes = Exclamation.propTypes = {
|
|
80
|
+
className: _propTypes["default"].string
|
|
81
|
+
};
|
|
82
|
+
var styles = (0, _iconRoot.getStyles)('nothing-submitted', 'white', '#464146');
|
|
83
|
+
|
|
84
|
+
var NothingSubmitted = /*#__PURE__*/function (_React$Component) {
|
|
85
|
+
(0, _inherits2["default"])(NothingSubmitted, _React$Component);
|
|
86
|
+
|
|
87
|
+
var _super = _createSuper(NothingSubmitted);
|
|
88
|
+
|
|
89
|
+
function NothingSubmitted(props) {
|
|
90
|
+
var _this;
|
|
91
|
+
|
|
92
|
+
(0, _classCallCheck2["default"])(this, NothingSubmitted);
|
|
93
|
+
_this = _super.call(this, props);
|
|
94
|
+
var classes = _this.props.classes;
|
|
95
|
+
_this.icons = {
|
|
96
|
+
check: /*#__PURE__*/_react["default"].createElement(_iconRoot.IconRoot, null, /*#__PURE__*/_react["default"].createElement(Octagon, {
|
|
97
|
+
className: classes.bg
|
|
98
|
+
}), /*#__PURE__*/_react["default"].createElement(Exclamation, {
|
|
99
|
+
className: classes.fg
|
|
100
|
+
})),
|
|
101
|
+
emoji: /*#__PURE__*/_react["default"].createElement(_iconRoot.IconRoot, null, /*#__PURE__*/_react["default"].createElement(Octagon, {
|
|
102
|
+
className: classes.bg
|
|
103
|
+
}), /*#__PURE__*/_react["default"].createElement(Emoji, {
|
|
104
|
+
className: classes.fg
|
|
105
|
+
})),
|
|
106
|
+
feedback: {
|
|
107
|
+
check: /*#__PURE__*/_react["default"].createElement(_iconRoot.IconRoot, null, /*#__PURE__*/_react["default"].createElement(Octagon, {
|
|
108
|
+
className: classes.bg
|
|
109
|
+
}), /*#__PURE__*/_react["default"].createElement(Emoji, {
|
|
110
|
+
className: classes.fg
|
|
111
|
+
})),
|
|
112
|
+
emoji: /*#__PURE__*/_react["default"].createElement(_iconRoot.IconRoot, null, /*#__PURE__*/_react["default"].createElement(Octagon, {
|
|
113
|
+
className: classes.bg
|
|
114
|
+
}), /*#__PURE__*/_react["default"].createElement(Emoji, {
|
|
115
|
+
className: classes.fg
|
|
116
|
+
})),
|
|
117
|
+
square: {
|
|
118
|
+
check: /*#__PURE__*/_react["default"].createElement(_iconRoot.IconRoot, null, /*#__PURE__*/_react["default"].createElement(Octagon, {
|
|
119
|
+
className: classes.bg
|
|
120
|
+
}), /*#__PURE__*/_react["default"].createElement(Exclamation, {
|
|
121
|
+
className: classes.fg
|
|
122
|
+
})),
|
|
123
|
+
emoji: /*#__PURE__*/_react["default"].createElement(_iconRoot.IconRoot, null, /*#__PURE__*/_react["default"].createElement(Octagon, {
|
|
124
|
+
className: classes.bg
|
|
125
|
+
}), /*#__PURE__*/_react["default"].createElement(Emoji, {
|
|
126
|
+
className: classes.fg
|
|
127
|
+
})),
|
|
128
|
+
open: {
|
|
129
|
+
check: /*#__PURE__*/_react["default"].createElement(_iconRoot.IconRoot, null, /*#__PURE__*/_react["default"].createElement(Exclamation, {
|
|
130
|
+
className: classes.bg
|
|
131
|
+
})),
|
|
132
|
+
emoji: /*#__PURE__*/_react["default"].createElement(_iconRoot.IconRoot, null, /*#__PURE__*/_react["default"].createElement(Emoji, {
|
|
133
|
+
className: classes.bg
|
|
134
|
+
}))
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
};
|
|
139
|
+
return _this;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
(0, _createClass2["default"])(NothingSubmitted, [{
|
|
143
|
+
key: "render",
|
|
144
|
+
value: function render() {
|
|
145
|
+
if (this.props.category === undefined) {
|
|
146
|
+
return this.icons[this.props.iconSet];
|
|
147
|
+
} else {
|
|
148
|
+
if (this.props.shape === undefined) {
|
|
149
|
+
return this.icons.feedback[this.props.iconSet];
|
|
150
|
+
} else {
|
|
151
|
+
if (this.props.open === true) {
|
|
152
|
+
return this.icons.feedback.square.open[this.props.iconSet];
|
|
153
|
+
} else {
|
|
154
|
+
return this.icons.feedback.square[this.props.iconSet];
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}]);
|
|
160
|
+
return NothingSubmitted;
|
|
161
|
+
}(_react["default"].Component);
|
|
162
|
+
|
|
163
|
+
exports.NothingSubmitted = NothingSubmitted;
|
|
164
|
+
(0, _defineProperty2["default"])(NothingSubmitted, "propTypes", {
|
|
165
|
+
classes: _propTypes["default"].object.isRequired
|
|
166
|
+
});
|
|
167
|
+
NothingSubmitted.propTypes = {
|
|
168
|
+
iconSet: _propTypes["default"].oneOf(['emoji', 'check', undefined]),
|
|
169
|
+
shape: _propTypes["default"].oneOf(['square', undefined]),
|
|
170
|
+
category: _propTypes["default"].oneOf(['feedback', undefined]),
|
|
171
|
+
open: _propTypes["default"].bool
|
|
172
|
+
};
|
|
173
|
+
NothingSubmitted.defaultProps = {
|
|
174
|
+
iconSet: 'check',
|
|
175
|
+
shape: undefined,
|
|
176
|
+
category: undefined,
|
|
177
|
+
open: false
|
|
178
|
+
};
|
|
179
|
+
|
|
180
|
+
var _default = (0, _styles.withStyles)(styles)(NothingSubmitted);
|
|
181
|
+
|
|
182
|
+
exports["default"] = _default;
|
|
183
|
+
//# sourceMappingURL=nothing-submitted-icon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/code/icons/nothing-submitted-icon.jsx"],"names":["Exclamation","className","Octagon","Emoji","propTypes","PropTypes","string","styles","NothingSubmitted","props","classes","icons","check","bg","fg","emoji","feedback","square","open","category","undefined","iconSet","shape","React","Component","object","isRequired","oneOf","bool","defaultProps"],"mappings":"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","sourcesContent":["import { IconRoot, getStyles } from './icon-root';\n\nimport PropTypes from 'prop-types';\nimport React from 'react';\nimport { withStyles } from '@material-ui/core/styles';\n\nconst Exclamation = ({ className }) => (\n <g>\n <rect x=\"19.3\" y=\"10.3\" className={className} width=\"4.5\" height=\"12.7\" />\n <rect x=\"19.3\" y=\"26.2\" className={className} width=\"4.5\" height=\"4.5\" />\n </g>\n);\n\nconst Octagon = ({ className }) => (\n <polygon className={className} points=\"14.8,4.5 5.6,13.8 5.6,27 14.8,36.5 28.1,36.5 37.6,27 37.6,13.8 28.1,4.5\" />\n);\n\nconst Emoji = ({ className }) => (\n <g>\n <rect x=\"23.8\" y=\"15\" className={className} width=\"3.5\" height=\"4.4\" />\n <rect x=\"16\" y=\"15\" className={className} width=\"3.5\" height=\"4.4\" />\n <path\n className={className}\n d=\"M24.2,27.1h-5.1c-0.8,0-1.5-0.7-1.5-1.5v0c0-0.8,0.7-1.5,1.5-1.5h5.1c0.8,0,1.5,0.7,1.5,1.5v0\n C25.7,26.4,25,27.1,24.2,27.1z\"\n />\n </g>\n);\n\nEmoji.propTypes = Octagon.propTypes = Exclamation.propTypes = {\n className: PropTypes.string,\n};\nconst styles = getStyles('nothing-submitted', 'white', '#464146');\n\nexport class NothingSubmitted extends React.Component {\n static propTypes = {\n classes: PropTypes.object.isRequired,\n };\n\n constructor(props) {\n super(props);\n const { classes } = this.props;\n this.icons = {\n check: (\n <IconRoot>\n <Octagon className={classes.bg} />\n <Exclamation className={classes.fg} />\n </IconRoot>\n ),\n emoji: (\n <IconRoot>\n <Octagon className={classes.bg} />\n <Emoji className={classes.fg} />\n </IconRoot>\n ),\n feedback: {\n check: (\n <IconRoot>\n <Octagon className={classes.bg} />\n <Emoji className={classes.fg} />\n </IconRoot>\n ),\n emoji: (\n <IconRoot>\n <Octagon className={classes.bg} />\n <Emoji className={classes.fg} />\n </IconRoot>\n ),\n square: {\n check: (\n <IconRoot>\n <Octagon className={classes.bg} />\n <Exclamation className={classes.fg} />\n </IconRoot>\n ),\n emoji: (\n <IconRoot>\n <Octagon className={classes.bg} />\n <Emoji className={classes.fg} />\n </IconRoot>\n ),\n open: {\n check: (\n <IconRoot>\n <Exclamation className={classes.bg} />\n </IconRoot>\n ),\n emoji: (\n <IconRoot>\n <Emoji className={classes.bg} />\n </IconRoot>\n ),\n },\n },\n },\n };\n }\n\n render() {\n if (this.props.category === undefined) {\n return this.icons[this.props.iconSet];\n } else {\n if (this.props.shape === undefined) {\n return this.icons.feedback[this.props.iconSet];\n } else {\n if (this.props.open === true) {\n return this.icons.feedback.square.open[this.props.iconSet];\n } else {\n return this.icons.feedback.square[this.props.iconSet];\n }\n }\n }\n }\n}\n\nNothingSubmitted.propTypes = {\n iconSet: PropTypes.oneOf(['emoji', 'check', undefined]),\n shape: PropTypes.oneOf(['square', undefined]),\n category: PropTypes.oneOf(['feedback', undefined]),\n open: PropTypes.bool,\n};\n\nNothingSubmitted.defaultProps = {\n iconSet: 'check',\n shape: undefined,\n category: undefined,\n open: false,\n};\n\nexport default withStyles(styles)(NothingSubmitted);\n"],"file":"nothing-submitted-icon.js"}
|