@pie-element/hotspot 11.0.5-esm.0 → 11.1.0-next.0
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/CHANGELOG.md +1083 -2394
- package/configure/CHANGELOG.md +894 -2092
- package/configure/lib/DeleteWidget.js +30 -43
- package/configure/lib/DeleteWidget.js.map +1 -1
- package/configure/lib/button.js +26 -45
- package/configure/lib/button.js.map +1 -1
- package/configure/lib/buttons/circle.js +20 -27
- package/configure/lib/buttons/circle.js.map +1 -1
- package/configure/lib/buttons/polygon.js +26 -33
- package/configure/lib/buttons/polygon.js.map +1 -1
- package/configure/lib/buttons/rectangle.js +26 -33
- package/configure/lib/buttons/rectangle.js.map +1 -1
- package/configure/lib/defaults.js +5 -3
- package/configure/lib/defaults.js.map +1 -1
- package/configure/lib/hotspot-circle.js +136 -200
- package/configure/lib/hotspot-circle.js.map +1 -1
- package/configure/lib/hotspot-container.js +250 -355
- package/configure/lib/hotspot-container.js.map +1 -1
- package/configure/lib/hotspot-drawable.js +361 -473
- package/configure/lib/hotspot-drawable.js.map +1 -1
- package/configure/lib/hotspot-palette.js +92 -139
- package/configure/lib/hotspot-palette.js.map +1 -1
- package/configure/lib/hotspot-polygon.js +212 -318
- package/configure/lib/hotspot-polygon.js.map +1 -1
- package/configure/lib/hotspot-rectangle.js +132 -195
- package/configure/lib/hotspot-rectangle.js.map +1 -1
- package/configure/lib/icons.js +3 -7
- package/configure/lib/icons.js.map +1 -1
- package/configure/lib/image-konva.js +46 -86
- package/configure/lib/image-konva.js.map +1 -1
- package/configure/lib/index.js +162 -222
- package/configure/lib/index.js.map +1 -1
- package/configure/lib/root.js +302 -394
- package/configure/lib/root.js.map +1 -1
- package/configure/lib/shapes/circle.js +69 -101
- package/configure/lib/shapes/circle.js.map +1 -1
- package/configure/lib/shapes/index.js +4 -12
- package/configure/lib/shapes/index.js.map +1 -1
- package/configure/lib/shapes/polygon.js +64 -96
- package/configure/lib/shapes/polygon.js.map +1 -1
- package/configure/lib/shapes/rectagle.js +69 -101
- package/configure/lib/shapes/rectagle.js.map +1 -1
- package/configure/lib/shapes/utils.js +2 -8
- package/configure/lib/shapes/utils.js.map +1 -1
- package/configure/lib/upload-control.js +25 -52
- package/configure/lib/upload-control.js.map +1 -1
- package/configure/lib/utils.js +85 -139
- package/configure/lib/utils.js.map +1 -1
- package/configure/package.json +13 -12
- package/configure/src/__tests__/DeleteWidget.test.jsx +366 -0
- package/configure/src/__tests__/button.test.jsx +198 -0
- package/configure/src/__tests__/hotspot-circle.test.jsx +259 -0
- package/configure/src/__tests__/hotspot-container.test.js +50 -19
- package/configure/src/__tests__/hotspot-drawable.test.js +55 -34
- package/configure/src/__tests__/hotspot-palette.test.jsx +71 -0
- package/configure/src/__tests__/image-konva.test.jsx +226 -0
- package/configure/src/__tests__/index.test.js +167 -5
- package/configure/src/__tests__/root.test.js +89 -63
- package/configure/src/button.jsx +12 -20
- package/configure/src/defaults.js +1 -0
- package/configure/src/hotspot-circle.jsx +8 -19
- package/configure/src/hotspot-container.jsx +82 -98
- package/configure/src/hotspot-drawable.jsx +44 -46
- package/configure/src/hotspot-palette.jsx +45 -37
- package/configure/src/hotspot-polygon.jsx +3 -20
- package/configure/src/hotspot-rectangle.jsx +7 -19
- package/configure/src/icons.js +4 -2
- package/configure/src/index.js +12 -2
- package/configure/src/root.jsx +86 -80
- package/configure/src/upload-control.jsx +6 -16
- package/configure/src/utils.js +1 -1
- package/controller/CHANGELOG.md +569 -1432
- package/controller/lib/defaults.js +2 -3
- package/controller/lib/defaults.js.map +1 -1
- package/controller/lib/index.js +238 -208
- package/controller/lib/index.js.map +1 -1
- package/controller/lib/utils.js +15 -37
- package/controller/lib/utils.js.map +1 -1
- package/controller/package.json +3 -3
- package/controller/src/__tests__/index.test.js +4 -3
- package/controller/src/index.js +107 -5
- package/controller/src/utils.js +1 -2
- package/lib/hotspot/circle.js +109 -169
- package/lib/hotspot/circle.js.map +1 -1
- package/lib/hotspot/container.js +174 -260
- package/lib/hotspot/container.js.map +1 -1
- package/lib/hotspot/icons.js +4 -9
- package/lib/hotspot/icons.js.map +1 -1
- package/lib/hotspot/image-konva-tooltip.js +65 -112
- package/lib/hotspot/image-konva-tooltip.js.map +1 -1
- package/lib/hotspot/index.js +135 -198
- package/lib/hotspot/index.js.map +1 -1
- package/lib/hotspot/polygon.js +150 -215
- package/lib/hotspot/polygon.js.map +1 -1
- package/lib/hotspot/rectangle.js +128 -186
- package/lib/hotspot/rectangle.js.map +1 -1
- package/lib/index.js +187 -256
- package/lib/index.js.map +1 -1
- package/lib/session-updater.js +12 -18
- package/lib/session-updater.js.map +1 -1
- package/package.json +17 -31
- package/src/__tests__/container.test.jsx +27 -175
- package/src/__tests__/index.test.js +70 -30
- package/src/hotspot/__tests__/circle.test.jsx +464 -0
- package/src/hotspot/__tests__/container.test.jsx +546 -0
- package/src/hotspot/__tests__/image-konva-tooltip.test.jsx +510 -0
- package/src/hotspot/__tests__/polygon.test.jsx +502 -0
- package/src/hotspot/__tests__/rectangle.test.jsx +418 -0
- package/src/hotspot/circle.jsx +1 -13
- package/src/hotspot/container.jsx +35 -50
- package/src/hotspot/icons.js +6 -5
- package/src/hotspot/index.jsx +16 -28
- package/src/hotspot/polygon.jsx +3 -13
- package/src/hotspot/rectangle.jsx +4 -15
- package/src/index.js +21 -12
- package/configure/node_modules/@pie-lib/config-ui/CHANGELOG.json +0 -32
- package/configure/node_modules/@pie-lib/config-ui/CHANGELOG.md +0 -2198
- package/configure/node_modules/@pie-lib/config-ui/NEXT.CHANGELOG.json +0 -1
- package/configure/node_modules/@pie-lib/config-ui/esm/index.js +0 -3808
- package/configure/node_modules/@pie-lib/config-ui/esm/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/alert-dialog.js +0 -75
- package/configure/node_modules/@pie-lib/config-ui/lib/alert-dialog.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/checkbox.js +0 -99
- package/configure/node_modules/@pie-lib/config-ui/lib/checkbox.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/choice-configuration/feedback-menu.js +0 -164
- package/configure/node_modules/@pie-lib/config-ui/lib/choice-configuration/feedback-menu.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/choice-configuration/index.js +0 -445
- package/configure/node_modules/@pie-lib/config-ui/lib/choice-configuration/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/choice-utils.js +0 -54
- package/configure/node_modules/@pie-lib/config-ui/lib/choice-utils.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/feedback-config/feedback-selector.js +0 -195
- package/configure/node_modules/@pie-lib/config-ui/lib/feedback-config/feedback-selector.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/feedback-config/group.js +0 -75
- package/configure/node_modules/@pie-lib/config-ui/lib/feedback-config/group.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/feedback-config/index.js +0 -189
- package/configure/node_modules/@pie-lib/config-ui/lib/feedback-config/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/form-section.js +0 -46
- package/configure/node_modules/@pie-lib/config-ui/lib/form-section.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/help.js +0 -147
- package/configure/node_modules/@pie-lib/config-ui/lib/help.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/index.js +0 -216
- package/configure/node_modules/@pie-lib/config-ui/lib/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/input.js +0 -139
- package/configure/node_modules/@pie-lib/config-ui/lib/input.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/inputs.js +0 -139
- package/configure/node_modules/@pie-lib/config-ui/lib/inputs.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/langs.js +0 -179
- package/configure/node_modules/@pie-lib/config-ui/lib/langs.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/layout/config-layout.js +0 -143
- package/configure/node_modules/@pie-lib/config-ui/lib/layout/config-layout.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/layout/index.js +0 -24
- package/configure/node_modules/@pie-lib/config-ui/lib/layout/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/layout/layout-contents.js +0 -191
- package/configure/node_modules/@pie-lib/config-ui/lib/layout/layout-contents.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/layout/settings-box.js +0 -86
- package/configure/node_modules/@pie-lib/config-ui/lib/layout/settings-box.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/mui-box/index.js +0 -79
- package/configure/node_modules/@pie-lib/config-ui/lib/mui-box/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/number-text-field-custom.js +0 -458
- package/configure/node_modules/@pie-lib/config-ui/lib/number-text-field-custom.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/number-text-field.js +0 -267
- package/configure/node_modules/@pie-lib/config-ui/lib/number-text-field.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/radio-with-label.js +0 -49
- package/configure/node_modules/@pie-lib/config-ui/lib/radio-with-label.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/settings/display-size.js +0 -77
- package/configure/node_modules/@pie-lib/config-ui/lib/settings/display-size.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/settings/index.js +0 -143
- package/configure/node_modules/@pie-lib/config-ui/lib/settings/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/settings/panel.js +0 -463
- package/configure/node_modules/@pie-lib/config-ui/lib/settings/panel.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/settings/settings-radio-label.js +0 -53
- package/configure/node_modules/@pie-lib/config-ui/lib/settings/settings-radio-label.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/settings/toggle.js +0 -74
- package/configure/node_modules/@pie-lib/config-ui/lib/settings/toggle.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/tabs/index.js +0 -110
- package/configure/node_modules/@pie-lib/config-ui/lib/tabs/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/tags-input/index.js +0 -198
- package/configure/node_modules/@pie-lib/config-ui/lib/tags-input/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/two-choice.js +0 -180
- package/configure/node_modules/@pie-lib/config-ui/lib/two-choice.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/lib/with-stateful-model.js +0 -84
- package/configure/node_modules/@pie-lib/config-ui/lib/with-stateful-model.js.map +0 -1
- package/configure/node_modules/@pie-lib/config-ui/node_modules/debug/LICENSE +0 -20
- package/configure/node_modules/@pie-lib/config-ui/node_modules/debug/README.md +0 -481
- package/configure/node_modules/@pie-lib/config-ui/node_modules/debug/package.json +0 -59
- package/configure/node_modules/@pie-lib/config-ui/node_modules/debug/src/browser.js +0 -269
- package/configure/node_modules/@pie-lib/config-ui/node_modules/debug/src/common.js +0 -274
- package/configure/node_modules/@pie-lib/config-ui/node_modules/debug/src/index.js +0 -10
- package/configure/node_modules/@pie-lib/config-ui/node_modules/debug/src/node.js +0 -263
- package/configure/node_modules/@pie-lib/config-ui/node_modules/ms/index.js +0 -162
- package/configure/node_modules/@pie-lib/config-ui/node_modules/ms/license.md +0 -21
- package/configure/node_modules/@pie-lib/config-ui/node_modules/ms/package.json +0 -37
- package/configure/node_modules/@pie-lib/config-ui/node_modules/ms/readme.md +0 -60
- package/configure/node_modules/@pie-lib/config-ui/package.json +0 -40
- package/configure/node_modules/@pie-lib/config-ui/src/__tests__/__snapshots__/langs.test.jsx.snap +0 -32
- package/configure/node_modules/@pie-lib/config-ui/src/__tests__/__snapshots__/settings-panel.test.js.snap +0 -115
- package/configure/node_modules/@pie-lib/config-ui/src/__tests__/__snapshots__/two-choice.test.js.snap +0 -171
- package/configure/node_modules/@pie-lib/config-ui/src/__tests__/choice-utils.test.js +0 -12
- package/configure/node_modules/@pie-lib/config-ui/src/__tests__/langs.test.jsx +0 -37
- package/configure/node_modules/@pie-lib/config-ui/src/__tests__/number-text-field.test.jsx +0 -148
- package/configure/node_modules/@pie-lib/config-ui/src/__tests__/settings-panel.test.js +0 -204
- package/configure/node_modules/@pie-lib/config-ui/src/__tests__/two-choice.test.js +0 -24
- package/configure/node_modules/@pie-lib/config-ui/src/alert-dialog.jsx +0 -56
- package/configure/node_modules/@pie-lib/config-ui/src/checkbox.jsx +0 -73
- package/configure/node_modules/@pie-lib/config-ui/src/choice-configuration/__tests__/__snapshots__/feedback-menu.test.jsx.snap +0 -51
- package/configure/node_modules/@pie-lib/config-ui/src/choice-configuration/__tests__/__snapshots__/index.test.jsx.snap +0 -519
- package/configure/node_modules/@pie-lib/config-ui/src/choice-configuration/__tests__/feedback-menu.test.jsx +0 -10
- package/configure/node_modules/@pie-lib/config-ui/src/choice-configuration/__tests__/index.test.jsx +0 -92
- package/configure/node_modules/@pie-lib/config-ui/src/choice-configuration/feedback-menu.jsx +0 -90
- package/configure/node_modules/@pie-lib/config-ui/src/choice-configuration/index.jsx +0 -365
- package/configure/node_modules/@pie-lib/config-ui/src/choice-utils.js +0 -30
- package/configure/node_modules/@pie-lib/config-ui/src/feedback-config/__tests__/__snapshots__/feedback-config.test.jsx.snap +0 -27
- package/configure/node_modules/@pie-lib/config-ui/src/feedback-config/__tests__/__snapshots__/feedback-selector.test.jsx.snap +0 -38
- package/configure/node_modules/@pie-lib/config-ui/src/feedback-config/__tests__/feedback-config.test.jsx +0 -71
- package/configure/node_modules/@pie-lib/config-ui/src/feedback-config/__tests__/feedback-selector.test.jsx +0 -60
- package/configure/node_modules/@pie-lib/config-ui/src/feedback-config/feedback-selector.jsx +0 -122
- package/configure/node_modules/@pie-lib/config-ui/src/feedback-config/group.jsx +0 -52
- package/configure/node_modules/@pie-lib/config-ui/src/feedback-config/index.jsx +0 -112
- package/configure/node_modules/@pie-lib/config-ui/src/form-section.jsx +0 -23
- package/configure/node_modules/@pie-lib/config-ui/src/help.jsx +0 -87
- package/configure/node_modules/@pie-lib/config-ui/src/index.js +0 -55
- package/configure/node_modules/@pie-lib/config-ui/src/input.jsx +0 -72
- package/configure/node_modules/@pie-lib/config-ui/src/inputs.jsx +0 -98
- package/configure/node_modules/@pie-lib/config-ui/src/langs.jsx +0 -111
- package/configure/node_modules/@pie-lib/config-ui/src/layout/__tests__/__snapshots__/config.layout.test.jsx.snap +0 -59
- package/configure/node_modules/@pie-lib/config-ui/src/layout/__tests__/config.layout.test.jsx +0 -42
- package/configure/node_modules/@pie-lib/config-ui/src/layout/__tests__/layout-content.test.jsx +0 -3
- package/configure/node_modules/@pie-lib/config-ui/src/layout/config-layout.jsx +0 -75
- package/configure/node_modules/@pie-lib/config-ui/src/layout/index.js +0 -4
- package/configure/node_modules/@pie-lib/config-ui/src/layout/layout-contents.jsx +0 -118
- package/configure/node_modules/@pie-lib/config-ui/src/layout/settings-box.jsx +0 -35
- package/configure/node_modules/@pie-lib/config-ui/src/mui-box/index.jsx +0 -64
- package/configure/node_modules/@pie-lib/config-ui/src/number-text-field-custom.jsx +0 -337
- package/configure/node_modules/@pie-lib/config-ui/src/number-text-field.jsx +0 -202
- package/configure/node_modules/@pie-lib/config-ui/src/radio-with-label.jsx +0 -22
- package/configure/node_modules/@pie-lib/config-ui/src/settings/display-size.jsx +0 -52
- package/configure/node_modules/@pie-lib/config-ui/src/settings/index.js +0 -83
- package/configure/node_modules/@pie-lib/config-ui/src/settings/panel.jsx +0 -328
- package/configure/node_modules/@pie-lib/config-ui/src/settings/settings-radio-label.jsx +0 -24
- package/configure/node_modules/@pie-lib/config-ui/src/settings/toggle.jsx +0 -49
- package/configure/node_modules/@pie-lib/config-ui/src/tabs/index.jsx +0 -47
- package/configure/node_modules/@pie-lib/config-ui/src/tags-input/__tests__/__snapshots__/index.test.jsx.snap +0 -170
- package/configure/node_modules/@pie-lib/config-ui/src/tags-input/__tests__/index.test.jsx +0 -62
- package/configure/node_modules/@pie-lib/config-ui/src/tags-input/index.jsx +0 -119
- package/configure/node_modules/@pie-lib/config-ui/src/two-choice.jsx +0 -94
- package/configure/node_modules/@pie-lib/config-ui/src/with-stateful-model.jsx +0 -36
- package/configure/node_modules/@pie-lib/drag/CHANGELOG.json +0 -1
- package/configure/node_modules/@pie-lib/drag/CHANGELOG.md +0 -709
- package/configure/node_modules/@pie-lib/drag/NEXT.CHANGELOG.json +0 -1
- package/configure/node_modules/@pie-lib/drag/esm/index.js +0 -525
- package/configure/node_modules/@pie-lib/drag/esm/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/drag/lib/choice.js +0 -129
- package/configure/node_modules/@pie-lib/drag/lib/choice.js.map +0 -1
- package/configure/node_modules/@pie-lib/drag/lib/drag-in-the-blank-dp.js +0 -35
- package/configure/node_modules/@pie-lib/drag/lib/drag-in-the-blank-dp.js.map +0 -1
- package/configure/node_modules/@pie-lib/drag/lib/drag-type.js +0 -15
- package/configure/node_modules/@pie-lib/drag/lib/drag-type.js.map +0 -1
- package/configure/node_modules/@pie-lib/drag/lib/droppable-placeholder.js +0 -82
- package/configure/node_modules/@pie-lib/drag/lib/droppable-placeholder.js.map +0 -1
- package/configure/node_modules/@pie-lib/drag/lib/ica-dp.js +0 -37
- package/configure/node_modules/@pie-lib/drag/lib/ica-dp.js.map +0 -1
- package/configure/node_modules/@pie-lib/drag/lib/index.js +0 -89
- package/configure/node_modules/@pie-lib/drag/lib/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/drag/lib/match-list-dp.js +0 -37
- package/configure/node_modules/@pie-lib/drag/lib/match-list-dp.js.map +0 -1
- package/configure/node_modules/@pie-lib/drag/lib/placeholder.js +0 -153
- package/configure/node_modules/@pie-lib/drag/lib/placeholder.js.map +0 -1
- package/configure/node_modules/@pie-lib/drag/lib/preview-component.js +0 -194
- package/configure/node_modules/@pie-lib/drag/lib/preview-component.js.map +0 -1
- package/configure/node_modules/@pie-lib/drag/lib/swap.js +0 -25
- package/configure/node_modules/@pie-lib/drag/lib/swap.js.map +0 -1
- package/configure/node_modules/@pie-lib/drag/lib/uid-context.js +0 -40
- package/configure/node_modules/@pie-lib/drag/lib/uid-context.js.map +0 -1
- package/configure/node_modules/@pie-lib/drag/lib/with-drag-context.js +0 -59
- package/configure/node_modules/@pie-lib/drag/lib/with-drag-context.js.map +0 -1
- package/configure/node_modules/@pie-lib/drag/package.json +0 -34
- package/configure/node_modules/@pie-lib/drag/src/__tests__/__snapshots__/placeholder.test.jsx.snap +0 -68
- package/configure/node_modules/@pie-lib/drag/src/__tests__/placeholder.test.jsx +0 -48
- package/configure/node_modules/@pie-lib/drag/src/__tests__/uid-context.test.jsx +0 -21
- package/configure/node_modules/@pie-lib/drag/src/choice.jsx +0 -76
- package/configure/node_modules/@pie-lib/drag/src/drag-in-the-blank-dp.jsx +0 -19
- package/configure/node_modules/@pie-lib/drag/src/drag-type.js +0 -7
- package/configure/node_modules/@pie-lib/drag/src/droppable-placeholder.jsx +0 -38
- package/configure/node_modules/@pie-lib/drag/src/ica-dp.jsx +0 -23
- package/configure/node_modules/@pie-lib/drag/src/index.js +0 -23
- package/configure/node_modules/@pie-lib/drag/src/match-list-dp.jsx +0 -23
- package/configure/node_modules/@pie-lib/drag/src/placeholder.jsx +0 -145
- package/configure/node_modules/@pie-lib/drag/src/preview-component.jsx +0 -153
- package/configure/node_modules/@pie-lib/drag/src/swap.js +0 -14
- package/configure/node_modules/@pie-lib/drag/src/uid-context.js +0 -13
- package/configure/node_modules/@pie-lib/drag/src/with-drag-context.js +0 -32
- package/configure/node_modules/@pie-lib/editable-html/CHANGELOG.json +0 -32
- package/configure/node_modules/@pie-lib/editable-html/CHANGELOG.md +0 -2224
- package/configure/node_modules/@pie-lib/editable-html/NEXT.CHANGELOG.json +0 -1
- package/configure/node_modules/@pie-lib/editable-html/esm/index.js +0 -9998
- package/configure/node_modules/@pie-lib/editable-html/esm/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/block-tags.js +0 -25
- package/configure/node_modules/@pie-lib/editable-html/lib/block-tags.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/constants.js +0 -16
- package/configure/node_modules/@pie-lib/editable-html/lib/constants.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/editor.js +0 -1356
- package/configure/node_modules/@pie-lib/editable-html/lib/editor.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/index.js +0 -269
- package/configure/node_modules/@pie-lib/editable-html/lib/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/parse-html.js +0 -16
- package/configure/node_modules/@pie-lib/editable-html/lib/parse-html.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/characters/custom-popper.js +0 -73
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/characters/custom-popper.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/characters/index.js +0 -305
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/characters/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/characters/utils.js +0 -381
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/characters/utils.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/css/icons/index.js +0 -37
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/css/icons/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/css/index.js +0 -397
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/css/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/customPlugin/index.js +0 -114
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/customPlugin/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/html/icons/index.js +0 -38
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/html/icons/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/html/index.js +0 -80
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/html/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/alt-dialog.js +0 -129
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/alt-dialog.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/component.js +0 -419
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/component.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/image-toolbar.js +0 -177
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/image-toolbar.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/index.js +0 -263
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/insert-image-handler.js +0 -161
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/insert-image-handler.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/index.js +0 -402
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/list/index.js +0 -334
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/list/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/math/index.js +0 -454
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/math/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/media/index.js +0 -387
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/media/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/media/media-dialog.js +0 -709
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/media/media-dialog.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/media/media-toolbar.js +0 -101
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/media/media-toolbar.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/media/media-wrapper.js +0 -93
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/media/media-wrapper.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/rendering/index.js +0 -46
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/rendering/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/drag-in-the-blank/choice.js +0 -289
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/drag-in-the-blank/choice.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/drag-in-the-blank/index.js +0 -97
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/drag-in-the-blank/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/explicit-constructed-response/index.js +0 -57
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/explicit-constructed-response/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/icons/index.js +0 -95
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/icons/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/index.js +0 -341
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/inline-dropdown/index.js +0 -75
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/inline-dropdown/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/math-templated/index.js +0 -130
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/math-templated/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/utils.js +0 -125
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/utils.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/table/CustomTablePlugin.js +0 -133
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/table/CustomTablePlugin.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/table/icons/index.js +0 -69
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/table/icons/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/table/index.js +0 -483
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/table/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/table/table-toolbar.js +0 -187
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/table/table-toolbar.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/textAlign/icons/index.js +0 -226
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/textAlign/icons/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/textAlign/index.js +0 -34
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/textAlign/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/default-toolbar.js +0 -229
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/default-toolbar.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/done-button.js +0 -53
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/done-button.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/editor-and-toolbar.js +0 -286
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/editor-and-toolbar.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/index.js +0 -34
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/toolbar-buttons.js +0 -194
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/toolbar-buttons.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/toolbar.js +0 -376
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/toolbar.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/utils.js +0 -62
- package/configure/node_modules/@pie-lib/editable-html/lib/plugins/utils.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/serialization.js +0 -677
- package/configure/node_modules/@pie-lib/editable-html/lib/serialization.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/lib/shared/alert-dialog.js +0 -75
- package/configure/node_modules/@pie-lib/editable-html/lib/theme.js +0 -9
- package/configure/node_modules/@pie-lib/editable-html/lib/theme.js.map +0 -1
- package/configure/node_modules/@pie-lib/editable-html/node_modules/debug/LICENSE +0 -20
- package/configure/node_modules/@pie-lib/editable-html/node_modules/debug/README.md +0 -481
- package/configure/node_modules/@pie-lib/editable-html/node_modules/debug/package.json +0 -59
- package/configure/node_modules/@pie-lib/editable-html/node_modules/debug/src/browser.js +0 -269
- package/configure/node_modules/@pie-lib/editable-html/node_modules/debug/src/common.js +0 -274
- package/configure/node_modules/@pie-lib/editable-html/node_modules/debug/src/index.js +0 -10
- package/configure/node_modules/@pie-lib/editable-html/node_modules/debug/src/node.js +0 -263
- package/configure/node_modules/@pie-lib/editable-html/node_modules/ms/index.js +0 -162
- package/configure/node_modules/@pie-lib/editable-html/node_modules/ms/license.md +0 -21
- package/configure/node_modules/@pie-lib/editable-html/node_modules/ms/package.json +0 -37
- package/configure/node_modules/@pie-lib/editable-html/node_modules/ms/readme.md +0 -60
- package/configure/node_modules/@pie-lib/editable-html/package.json +0 -60
- package/configure/node_modules/@pie-lib/editable-html/src/__tests__/editor.test.jsx +0 -363
- package/configure/node_modules/@pie-lib/editable-html/src/__tests__/serialization.test.js +0 -291
- package/configure/node_modules/@pie-lib/editable-html/src/__tests__/utils.js +0 -36
- package/configure/node_modules/@pie-lib/editable-html/src/block-tags.js +0 -17
- package/configure/node_modules/@pie-lib/editable-html/src/constants.js +0 -7
- package/configure/node_modules/@pie-lib/editable-html/src/editor.jsx +0 -1197
- package/configure/node_modules/@pie-lib/editable-html/src/index.jsx +0 -162
- package/configure/node_modules/@pie-lib/editable-html/src/parse-html.js +0 -8
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/README.md +0 -27
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/characters/custom-popper.js +0 -48
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/characters/index.jsx +0 -284
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/characters/utils.js +0 -447
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/css/icons/index.jsx +0 -17
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/css/index.jsx +0 -346
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/customPlugin/index.jsx +0 -85
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/html/icons/index.jsx +0 -19
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/html/index.jsx +0 -72
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/__tests__/__snapshots__/component.test.jsx.snap +0 -51
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/__tests__/__snapshots__/image-toolbar-logic.test.jsx.snap +0 -27
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/__tests__/__snapshots__/image-toolbar.test.jsx.snap +0 -44
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/__tests__/component.test.jsx +0 -41
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/__tests__/image-toolbar-logic.test.jsx +0 -42
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/__tests__/image-toolbar.test.jsx +0 -11
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/__tests__/index.test.js +0 -95
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/__tests__/insert-image-handler.test.js +0 -113
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/__tests__/mock-change.js +0 -15
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/alt-dialog.jsx +0 -82
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/component.jsx +0 -343
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/image-toolbar.jsx +0 -100
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/index.jsx +0 -227
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/insert-image-handler.js +0 -117
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/index.jsx +0 -360
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/list/__tests__/index.test.js +0 -54
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/list/index.jsx +0 -305
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/math/__tests__/__snapshots__/index.test.jsx.snap +0 -48
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/math/__tests__/index.test.jsx +0 -245
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/math/index.jsx +0 -379
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/media/__tests__/index.test.js +0 -75
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/media/index.jsx +0 -325
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/media/media-dialog.js +0 -624
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/media/media-toolbar.jsx +0 -56
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/media/media-wrapper.jsx +0 -43
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/rendering/index.js +0 -31
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/respArea/drag-in-the-blank/choice.jsx +0 -215
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/respArea/drag-in-the-blank/index.jsx +0 -76
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/respArea/explicit-constructed-response/index.jsx +0 -48
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/respArea/icons/index.jsx +0 -71
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/respArea/index.jsx +0 -299
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/respArea/inline-dropdown/index.jsx +0 -70
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/respArea/math-templated/index.jsx +0 -104
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/respArea/utils.jsx +0 -90
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/table/CustomTablePlugin.js +0 -113
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/table/__tests__/__snapshots__/table-toolbar.test.jsx.snap +0 -44
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/table/__tests__/index.test.jsx +0 -401
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/table/__tests__/table-toolbar.test.jsx +0 -42
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/table/icons/index.jsx +0 -53
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/table/index.jsx +0 -427
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/table/table-toolbar.jsx +0 -136
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/textAlign/icons/index.jsx +0 -139
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/textAlign/index.jsx +0 -23
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/__tests__/__snapshots__/default-toolbar.test.jsx.snap +0 -923
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/__tests__/__snapshots__/editor-and-toolbar.test.jsx.snap +0 -20
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/__tests__/__snapshots__/toolbar-buttons.test.jsx.snap +0 -36
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/__tests__/__snapshots__/toolbar.test.jsx.snap +0 -46
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/__tests__/default-toolbar.test.jsx +0 -94
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/__tests__/editor-and-toolbar.test.jsx +0 -37
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/__tests__/toolbar-buttons.test.jsx +0 -51
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/__tests__/toolbar.test.jsx +0 -106
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/default-toolbar.jsx +0 -206
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/done-button.jsx +0 -38
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/editor-and-toolbar.jsx +0 -257
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/index.jsx +0 -23
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/toolbar-buttons.jsx +0 -138
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/toolbar.jsx +0 -338
- package/configure/node_modules/@pie-lib/editable-html/src/plugins/utils.js +0 -31
- package/configure/node_modules/@pie-lib/editable-html/src/serialization.jsx +0 -621
- package/configure/node_modules/@pie-lib/editable-html/src/theme.js +0 -1
- package/configure/node_modules/@pie-lib/icons/CHANGELOG.json +0 -1
- package/configure/node_modules/@pie-lib/icons/CHANGELOG.md +0 -539
- package/configure/node_modules/@pie-lib/icons/NEXT.CHANGELOG.json +0 -1
- package/configure/node_modules/@pie-lib/icons/esm/index.js +0 -1153
- package/configure/node_modules/@pie-lib/icons/esm/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/icons/lib/correct-icon.js +0 -89
- package/configure/node_modules/@pie-lib/icons/lib/correct-icon.js.map +0 -1
- package/configure/node_modules/@pie-lib/icons/lib/correct-response-icon.js +0 -153
- package/configure/node_modules/@pie-lib/icons/lib/correct-response-icon.js.map +0 -1
- package/configure/node_modules/@pie-lib/icons/lib/icon-base.js +0 -206
- package/configure/node_modules/@pie-lib/icons/lib/icon-base.js.map +0 -1
- package/configure/node_modules/@pie-lib/icons/lib/icon-root.js +0 -130
- package/configure/node_modules/@pie-lib/icons/lib/icon-root.js.map +0 -1
- package/configure/node_modules/@pie-lib/icons/lib/incorrect-icon.js +0 -92
- package/configure/node_modules/@pie-lib/icons/lib/incorrect-icon.js.map +0 -1
- package/configure/node_modules/@pie-lib/icons/lib/index.js +0 -72
- package/configure/node_modules/@pie-lib/icons/lib/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/icons/lib/instructions-icon.js +0 -229
- package/configure/node_modules/@pie-lib/icons/lib/instructions-icon.js.map +0 -1
- package/configure/node_modules/@pie-lib/icons/lib/learn-more-icon.js +0 -145
- package/configure/node_modules/@pie-lib/icons/lib/learn-more-icon.js.map +0 -1
- package/configure/node_modules/@pie-lib/icons/lib/nothing-submitted-icon.js +0 -183
- package/configure/node_modules/@pie-lib/icons/lib/nothing-submitted-icon.js.map +0 -1
- package/configure/node_modules/@pie-lib/icons/lib/partially-correct-icon.js +0 -82
- package/configure/node_modules/@pie-lib/icons/lib/partially-correct-icon.js.map +0 -1
- package/configure/node_modules/@pie-lib/icons/lib/show-rationale-icon.js +0 -206
- package/configure/node_modules/@pie-lib/icons/lib/show-rationale-icon.js.map +0 -1
- package/configure/node_modules/@pie-lib/icons/lib/sized.js +0 -41
- package/configure/node_modules/@pie-lib/icons/lib/sized.js.map +0 -1
- package/configure/node_modules/@pie-lib/icons/package.json +0 -35
- package/configure/node_modules/@pie-lib/icons/src/__tests__/index.test.js +0 -3
- package/configure/node_modules/@pie-lib/icons/src/correct-icon.jsx +0 -64
- package/configure/node_modules/@pie-lib/icons/src/correct-response-icon.jsx +0 -121
- package/configure/node_modules/@pie-lib/icons/src/icon-base.jsx +0 -158
- package/configure/node_modules/@pie-lib/icons/src/icon-root.jsx +0 -76
- package/configure/node_modules/@pie-lib/icons/src/incorrect-icon.jsx +0 -61
- package/configure/node_modules/@pie-lib/icons/src/index.js +0 -19
- package/configure/node_modules/@pie-lib/icons/src/instructions-icon.jsx +0 -189
- package/configure/node_modules/@pie-lib/icons/src/learn-more-icon.jsx +0 -107
- package/configure/node_modules/@pie-lib/icons/src/nothing-submitted-icon.jsx +0 -130
- package/configure/node_modules/@pie-lib/icons/src/partially-correct-icon.jsx +0 -49
- package/configure/node_modules/@pie-lib/icons/src/show-rationale-icon.jsx +0 -152
- package/configure/node_modules/@pie-lib/icons/src/sized.jsx +0 -25
- package/configure/node_modules/@pie-lib/math-input/CHANGELOG.json +0 -17
- package/configure/node_modules/@pie-lib/math-input/CHANGELOG.md +0 -1077
- package/configure/node_modules/@pie-lib/math-input/NEXT.CHANGELOG.json +0 -1
- package/configure/node_modules/@pie-lib/math-input/esm/index.js +0 -2134
- package/configure/node_modules/@pie-lib/math-input/esm/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/horizontal-keypad.js +0 -124
- package/configure/node_modules/@pie-lib/math-input/lib/horizontal-keypad.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/index.js +0 -76
- package/configure/node_modules/@pie-lib/math-input/lib/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keypad/index.js +0 -512
- package/configure/node_modules/@pie-lib/math-input/lib/keypad/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keypad/keys-layout.js +0 -34
- package/configure/node_modules/@pie-lib/math-input/lib/keypad/keys-layout.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/basic-operators.js +0 -41
- package/configure/node_modules/@pie-lib/math-input/lib/keys/basic-operators.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/chars.js +0 -17
- package/configure/node_modules/@pie-lib/math-input/lib/keys/chars.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/comparison.js +0 -49
- package/configure/node_modules/@pie-lib/math-input/lib/keys/comparison.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/constants.js +0 -43
- package/configure/node_modules/@pie-lib/math-input/lib/keys/constants.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/digits.js +0 -53
- package/configure/node_modules/@pie-lib/math-input/lib/keys/digits.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/edit.js +0 -17
- package/configure/node_modules/@pie-lib/math-input/lib/keys/edit.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/exponent.js +0 -36
- package/configure/node_modules/@pie-lib/math-input/lib/keys/exponent.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/fractions.js +0 -34
- package/configure/node_modules/@pie-lib/math-input/lib/keys/fractions.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/geometry.js +0 -169
- package/configure/node_modules/@pie-lib/math-input/lib/keys/geometry.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/grades.js +0 -295
- package/configure/node_modules/@pie-lib/math-input/lib/keys/grades.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/index.js +0 -54
- package/configure/node_modules/@pie-lib/math-input/lib/keys/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/log.js +0 -32
- package/configure/node_modules/@pie-lib/math-input/lib/keys/log.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/logic.js +0 -23
- package/configure/node_modules/@pie-lib/math-input/lib/keys/logic.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/matrices.js +0 -23
- package/configure/node_modules/@pie-lib/math-input/lib/keys/matrices.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/misc.js +0 -74
- package/configure/node_modules/@pie-lib/math-input/lib/keys/misc.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/navigation.js +0 -25
- package/configure/node_modules/@pie-lib/math-input/lib/keys/navigation.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/operators.js +0 -18
- package/configure/node_modules/@pie-lib/math-input/lib/keys/operators.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/statistics.js +0 -47
- package/configure/node_modules/@pie-lib/math-input/lib/keys/statistics.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/sub-sup.js +0 -23
- package/configure/node_modules/@pie-lib/math-input/lib/keys/sub-sup.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/trigonometry.js +0 -53
- package/configure/node_modules/@pie-lib/math-input/lib/keys/trigonometry.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/utils.js +0 -120
- package/configure/node_modules/@pie-lib/math-input/lib/keys/utils.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/keys/vars.js +0 -29
- package/configure/node_modules/@pie-lib/math-input/lib/keys/vars.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/math-input.js +0 -192
- package/configure/node_modules/@pie-lib/math-input/lib/math-input.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/mq/common-mq-styles.js +0 -110
- package/configure/node_modules/@pie-lib/math-input/lib/mq/common-mq-styles.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/mq/custom-elements.js +0 -23
- package/configure/node_modules/@pie-lib/math-input/lib/mq/custom-elements.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/mq/index.js +0 -32
- package/configure/node_modules/@pie-lib/math-input/lib/mq/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/mq/input.js +0 -247
- package/configure/node_modules/@pie-lib/math-input/lib/mq/input.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/mq/static.js +0 -356
- package/configure/node_modules/@pie-lib/math-input/lib/mq/static.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/lib/shared/constants.js +0 -16
- package/configure/node_modules/@pie-lib/math-input/lib/updateSpans.js +0 -23
- package/configure/node_modules/@pie-lib/math-input/lib/updateSpans.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-input/node_modules/debug/LICENSE +0 -20
- package/configure/node_modules/@pie-lib/math-input/node_modules/debug/README.md +0 -481
- package/configure/node_modules/@pie-lib/math-input/node_modules/debug/package.json +0 -59
- package/configure/node_modules/@pie-lib/math-input/node_modules/debug/src/browser.js +0 -269
- package/configure/node_modules/@pie-lib/math-input/node_modules/debug/src/common.js +0 -274
- package/configure/node_modules/@pie-lib/math-input/node_modules/debug/src/index.js +0 -10
- package/configure/node_modules/@pie-lib/math-input/node_modules/debug/src/node.js +0 -263
- package/configure/node_modules/@pie-lib/math-input/node_modules/ms/index.js +0 -162
- package/configure/node_modules/@pie-lib/math-input/node_modules/ms/license.md +0 -21
- package/configure/node_modules/@pie-lib/math-input/node_modules/ms/package.json +0 -37
- package/configure/node_modules/@pie-lib/math-input/node_modules/ms/readme.md +0 -60
- package/configure/node_modules/@pie-lib/math-input/package.json +0 -35
- package/configure/node_modules/@pie-lib/math-input/src/__tests__/__snapshots__/math-input-test.jsx.snap +0 -152
- package/configure/node_modules/@pie-lib/math-input/src/__tests__/math-input-test.jsx +0 -85
- package/configure/node_modules/@pie-lib/math-input/src/horizontal-keypad.jsx +0 -69
- package/configure/node_modules/@pie-lib/math-input/src/index.jsx +0 -18
- package/configure/node_modules/@pie-lib/math-input/src/keypad/__tests__/__snapshots__/index.test.jsx.snap +0 -193
- package/configure/node_modules/@pie-lib/math-input/src/keypad/__tests__/index.test.jsx +0 -24
- package/configure/node_modules/@pie-lib/math-input/src/keypad/__tests__/keys-layout.test.js +0 -15
- package/configure/node_modules/@pie-lib/math-input/src/keypad/index.jsx +0 -450
- package/configure/node_modules/@pie-lib/math-input/src/keypad/keys-layout.js +0 -17
- package/configure/node_modules/@pie-lib/math-input/src/keys/__tests__/utils.test.js +0 -57
- package/configure/node_modules/@pie-lib/math-input/src/keys/basic-operators.js +0 -32
- package/configure/node_modules/@pie-lib/math-input/src/keys/chars.js +0 -5
- package/configure/node_modules/@pie-lib/math-input/src/keys/comparison.js +0 -28
- package/configure/node_modules/@pie-lib/math-input/src/keys/constants.js +0 -35
- package/configure/node_modules/@pie-lib/math-input/src/keys/digits.js +0 -40
- package/configure/node_modules/@pie-lib/math-input/src/keys/edit.js +0 -3
- package/configure/node_modules/@pie-lib/math-input/src/keys/exponent.js +0 -28
- package/configure/node_modules/@pie-lib/math-input/src/keys/fractions.js +0 -26
- package/configure/node_modules/@pie-lib/math-input/src/keys/geometry.js +0 -144
- package/configure/node_modules/@pie-lib/math-input/src/keys/grades.js +0 -367
- package/configure/node_modules/@pie-lib/math-input/src/keys/index.js +0 -21
- package/configure/node_modules/@pie-lib/math-input/src/keys/log.js +0 -22
- package/configure/node_modules/@pie-lib/math-input/src/keys/logic.js +0 -15
- package/configure/node_modules/@pie-lib/math-input/src/keys/matrices.js +0 -15
- package/configure/node_modules/@pie-lib/math-input/src/keys/misc.js +0 -65
- package/configure/node_modules/@pie-lib/math-input/src/keys/navigation.js +0 -8
- package/configure/node_modules/@pie-lib/math-input/src/keys/operators.js +0 -10
- package/configure/node_modules/@pie-lib/math-input/src/keys/statistics.js +0 -38
- package/configure/node_modules/@pie-lib/math-input/src/keys/sub-sup.js +0 -15
- package/configure/node_modules/@pie-lib/math-input/src/keys/trigonometry.js +0 -15
- package/configure/node_modules/@pie-lib/math-input/src/keys/utils.js +0 -71
- package/configure/node_modules/@pie-lib/math-input/src/keys/vars.js +0 -19
- package/configure/node_modules/@pie-lib/math-input/src/math-input.jsx +0 -128
- package/configure/node_modules/@pie-lib/math-input/src/mq/__tests__/__snapshots__/input.test.jsx.snap +0 -9
- package/configure/node_modules/@pie-lib/math-input/src/mq/__tests__/input.test.jsx +0 -92
- package/configure/node_modules/@pie-lib/math-input/src/mq/__tests__/static.test.jsx +0 -57
- package/configure/node_modules/@pie-lib/math-input/src/mq/common-mq-styles.js +0 -105
- package/configure/node_modules/@pie-lib/math-input/src/mq/custom-elements.js +0 -11
- package/configure/node_modules/@pie-lib/math-input/src/mq/index.js +0 -5
- package/configure/node_modules/@pie-lib/math-input/src/mq/input.jsx +0 -176
- package/configure/node_modules/@pie-lib/math-input/src/mq/static.jsx +0 -285
- package/configure/node_modules/@pie-lib/math-input/src/updateSpans.js +0 -15
- package/configure/node_modules/@pie-lib/math-rendering/CHANGELOG.json +0 -1
- package/configure/node_modules/@pie-lib/math-rendering/CHANGELOG.md +0 -775
- package/configure/node_modules/@pie-lib/math-rendering/NEXT.CHANGELOG.json +0 -1
- package/configure/node_modules/@pie-lib/math-rendering/esm/index.js +0 -690
- package/configure/node_modules/@pie-lib/math-rendering/esm/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-rendering/lib/index.js +0 -38
- package/configure/node_modules/@pie-lib/math-rendering/lib/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-rendering/lib/mml-to-latex.js +0 -15
- package/configure/node_modules/@pie-lib/math-rendering/lib/mml-to-latex.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js +0 -296
- package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/index.js +0 -23
- package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js +0 -109
- package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-rendering/lib/normalization.js +0 -95
- package/configure/node_modules/@pie-lib/math-rendering/lib/normalization.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-rendering/lib/render-math.js +0 -438
- package/configure/node_modules/@pie-lib/math-rendering/lib/render-math.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-rendering/node_modules/debug/LICENSE +0 -20
- package/configure/node_modules/@pie-lib/math-rendering/node_modules/debug/README.md +0 -481
- package/configure/node_modules/@pie-lib/math-rendering/node_modules/debug/package.json +0 -59
- package/configure/node_modules/@pie-lib/math-rendering/node_modules/debug/src/browser.js +0 -269
- package/configure/node_modules/@pie-lib/math-rendering/node_modules/debug/src/common.js +0 -274
- package/configure/node_modules/@pie-lib/math-rendering/node_modules/debug/src/index.js +0 -10
- package/configure/node_modules/@pie-lib/math-rendering/node_modules/debug/src/node.js +0 -263
- package/configure/node_modules/@pie-lib/math-rendering/node_modules/ms/index.js +0 -162
- package/configure/node_modules/@pie-lib/math-rendering/node_modules/ms/license.md +0 -21
- package/configure/node_modules/@pie-lib/math-rendering/node_modules/ms/package.json +0 -37
- package/configure/node_modules/@pie-lib/math-rendering/node_modules/ms/readme.md +0 -60
- package/configure/node_modules/@pie-lib/math-rendering/package.json +0 -28
- package/configure/node_modules/@pie-lib/math-rendering/src/__tests__/mml-to-latex.test.js +0 -14
- package/configure/node_modules/@pie-lib/math-rendering/src/__tests__/normalization.test.js +0 -50
- package/configure/node_modules/@pie-lib/math-rendering/src/__tests__/render-math.test.js +0 -155
- package/configure/node_modules/@pie-lib/math-rendering/src/index.js +0 -5
- package/configure/node_modules/@pie-lib/math-rendering/src/mml-to-latex.js +0 -2
- package/configure/node_modules/@pie-lib/math-rendering/src/mstack/__tests__/__snapshots__/chtml.test.js.snap +0 -9
- package/configure/node_modules/@pie-lib/math-rendering/src/mstack/__tests__/chtml.test.js +0 -104
- package/configure/node_modules/@pie-lib/math-rendering/src/mstack/chtml.js +0 -220
- package/configure/node_modules/@pie-lib/math-rendering/src/mstack/index.js +0 -13
- package/configure/node_modules/@pie-lib/math-rendering/src/mstack/mml.js +0 -24
- package/configure/node_modules/@pie-lib/math-rendering/src/normalization.js +0 -69
- package/configure/node_modules/@pie-lib/math-rendering/src/render-math.js +0 -387
- package/configure/node_modules/@pie-lib/math-toolbar/CHANGELOG.json +0 -17
- package/configure/node_modules/@pie-lib/math-toolbar/CHANGELOG.md +0 -940
- package/configure/node_modules/@pie-lib/math-toolbar/NEXT.CHANGELOG.json +0 -1
- package/configure/node_modules/@pie-lib/math-toolbar/esm/index.js +0 -1410
- package/configure/node_modules/@pie-lib/math-toolbar/esm/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-toolbar/lib/done-button.js +0 -68
- package/configure/node_modules/@pie-lib/math-toolbar/lib/done-button.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-toolbar/lib/editor-and-pad.js +0 -575
- package/configure/node_modules/@pie-lib/math-toolbar/lib/editor-and-pad.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-toolbar/lib/index.js +0 -287
- package/configure/node_modules/@pie-lib/math-toolbar/lib/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-toolbar/lib/math-preview.js +0 -240
- package/configure/node_modules/@pie-lib/math-toolbar/lib/math-preview.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-toolbar/lib/utils.js +0 -21
- package/configure/node_modules/@pie-lib/math-toolbar/lib/utils.js.map +0 -1
- package/configure/node_modules/@pie-lib/math-toolbar/node_modules/debug/LICENSE +0 -20
- package/configure/node_modules/@pie-lib/math-toolbar/node_modules/debug/README.md +0 -481
- package/configure/node_modules/@pie-lib/math-toolbar/node_modules/debug/package.json +0 -59
- package/configure/node_modules/@pie-lib/math-toolbar/node_modules/debug/src/browser.js +0 -269
- package/configure/node_modules/@pie-lib/math-toolbar/node_modules/debug/src/common.js +0 -274
- package/configure/node_modules/@pie-lib/math-toolbar/node_modules/debug/src/index.js +0 -10
- package/configure/node_modules/@pie-lib/math-toolbar/node_modules/debug/src/node.js +0 -263
- package/configure/node_modules/@pie-lib/math-toolbar/node_modules/ms/index.js +0 -162
- package/configure/node_modules/@pie-lib/math-toolbar/node_modules/ms/license.md +0 -21
- package/configure/node_modules/@pie-lib/math-toolbar/node_modules/ms/package.json +0 -37
- package/configure/node_modules/@pie-lib/math-toolbar/node_modules/ms/readme.md +0 -60
- package/configure/node_modules/@pie-lib/math-toolbar/package.json +0 -46
- package/configure/node_modules/@pie-lib/math-toolbar/src/__tests__/__snapshots__/editor-and-pad.test.js.snap +0 -31
- package/configure/node_modules/@pie-lib/math-toolbar/src/__tests__/__snapshots__/index.test.js.snap +0 -30
- package/configure/node_modules/@pie-lib/math-toolbar/src/__tests__/__snapshots__/math-preview.test.js.snap +0 -23
- package/configure/node_modules/@pie-lib/math-toolbar/src/__tests__/editor-and-pad.test.js +0 -25
- package/configure/node_modules/@pie-lib/math-toolbar/src/__tests__/index.test.js +0 -28
- package/configure/node_modules/@pie-lib/math-toolbar/src/__tests__/math-preview.test.js +0 -31
- package/configure/node_modules/@pie-lib/math-toolbar/src/done-button.jsx +0 -47
- package/configure/node_modules/@pie-lib/math-toolbar/src/editor-and-pad.jsx +0 -499
- package/configure/node_modules/@pie-lib/math-toolbar/src/index.jsx +0 -224
- package/configure/node_modules/@pie-lib/math-toolbar/src/math-preview.jsx +0 -179
- package/configure/node_modules/@pie-lib/math-toolbar/src/utils.js +0 -11
- package/configure/node_modules/@pie-lib/render-ui/CHANGELOG.json +0 -1
- package/configure/node_modules/@pie-lib/render-ui/CHANGELOG.md +0 -1026
- package/configure/node_modules/@pie-lib/render-ui/NEXT.CHANGELOG.json +0 -1
- package/configure/node_modules/@pie-lib/render-ui/esm/index.js +0 -1616
- package/configure/node_modules/@pie-lib/render-ui/esm/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/append-css-rules.js +0 -88
- package/configure/node_modules/@pie-lib/render-ui/lib/append-css-rules.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/assets/enableAudioAutoplayImage.js +0 -9
- package/configure/node_modules/@pie-lib/render-ui/lib/assets/enableAudioAutoplayImage.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/collapsible/index.js +0 -135
- package/configure/node_modules/@pie-lib/render-ui/lib/collapsible/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/color.js +0 -344
- package/configure/node_modules/@pie-lib/render-ui/lib/color.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/feedback.js +0 -150
- package/configure/node_modules/@pie-lib/render-ui/lib/feedback.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/has-media.js +0 -27
- package/configure/node_modules/@pie-lib/render-ui/lib/has-media.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/has-text.js +0 -28
- package/configure/node_modules/@pie-lib/render-ui/lib/has-text.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/html-and-math.js +0 -74
- package/configure/node_modules/@pie-lib/render-ui/lib/html-and-math.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/index.js +0 -136
- package/configure/node_modules/@pie-lib/render-ui/lib/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/input-container.js +0 -60
- package/configure/node_modules/@pie-lib/render-ui/lib/input-container.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/preview-layout.js +0 -145
- package/configure/node_modules/@pie-lib/render-ui/lib/preview-layout.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/preview-prompt.js +0 -321
- package/configure/node_modules/@pie-lib/render-ui/lib/preview-prompt.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/purpose.js +0 -28
- package/configure/node_modules/@pie-lib/render-ui/lib/purpose.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/readable.js +0 -28
- package/configure/node_modules/@pie-lib/render-ui/lib/readable.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/response-indicators.js +0 -151
- package/configure/node_modules/@pie-lib/render-ui/lib/response-indicators.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/ui-layout.js +0 -122
- package/configure/node_modules/@pie-lib/render-ui/lib/ui-layout.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/lib/withUndoReset.js +0 -181
- package/configure/node_modules/@pie-lib/render-ui/lib/withUndoReset.js.map +0 -1
- package/configure/node_modules/@pie-lib/render-ui/node_modules/debug/LICENSE +0 -20
- package/configure/node_modules/@pie-lib/render-ui/node_modules/debug/README.md +0 -481
- package/configure/node_modules/@pie-lib/render-ui/node_modules/debug/package.json +0 -59
- package/configure/node_modules/@pie-lib/render-ui/node_modules/debug/src/browser.js +0 -269
- package/configure/node_modules/@pie-lib/render-ui/node_modules/debug/src/common.js +0 -274
- package/configure/node_modules/@pie-lib/render-ui/node_modules/debug/src/index.js +0 -10
- package/configure/node_modules/@pie-lib/render-ui/node_modules/debug/src/node.js +0 -263
- package/configure/node_modules/@pie-lib/render-ui/node_modules/ms/index.js +0 -162
- package/configure/node_modules/@pie-lib/render-ui/node_modules/ms/license.md +0 -21
- package/configure/node_modules/@pie-lib/render-ui/node_modules/ms/package.json +0 -37
- package/configure/node_modules/@pie-lib/render-ui/node_modules/ms/readme.md +0 -60
- package/configure/node_modules/@pie-lib/render-ui/package.json +0 -40
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/__snapshots__/html-and-math.test.js.snap +0 -11
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/__snapshots__/preview-prompt.test.jsx.snap +0 -37
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/__snapshots__/purpose.test.jsx.snap +0 -42
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/__snapshots__/readable.test.jsx.snap +0 -64
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/__snapshots__/response-indicators.test.jsx.snap +0 -27
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/color.test.js +0 -12
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/has-media.test.js +0 -20
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/has-text.test.js +0 -21
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/html-and-math.test.js +0 -24
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/preview-prompt.test.jsx +0 -56
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/purpose.test.jsx +0 -47
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/readable.test.jsx +0 -64
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/response-indicators.test.jsx +0 -16
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/ui-layout.test.jsx +0 -34
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/withUndoReset.test.jsx +0 -254
- package/configure/node_modules/@pie-lib/render-ui/src/append-css-rules.js +0 -51
- package/configure/node_modules/@pie-lib/render-ui/src/assets/enableAudioAutoplayImage.js +0 -1
- package/configure/node_modules/@pie-lib/render-ui/src/collapsible/__tests__/__snapshots__/index.test.jsx.snap +0 -18
- package/configure/node_modules/@pie-lib/render-ui/src/collapsible/__tests__/index.test.jsx +0 -13
- package/configure/node_modules/@pie-lib/render-ui/src/collapsible/index.jsx +0 -64
- package/configure/node_modules/@pie-lib/render-ui/src/color.js +0 -121
- package/configure/node_modules/@pie-lib/render-ui/src/feedback.jsx +0 -99
- package/configure/node_modules/@pie-lib/render-ui/src/has-media.js +0 -16
- package/configure/node_modules/@pie-lib/render-ui/src/has-text.js +0 -18
- package/configure/node_modules/@pie-lib/render-ui/src/html-and-math.js +0 -21
- package/configure/node_modules/@pie-lib/render-ui/src/index.js +0 -35
- package/configure/node_modules/@pie-lib/render-ui/src/input-container.jsx +0 -41
- package/configure/node_modules/@pie-lib/render-ui/src/preview-layout.jsx +0 -95
- package/configure/node_modules/@pie-lib/render-ui/src/preview-prompt.jsx +0 -254
- package/configure/node_modules/@pie-lib/render-ui/src/purpose.jsx +0 -17
- package/configure/node_modules/@pie-lib/render-ui/src/readable.jsx +0 -19
- package/configure/node_modules/@pie-lib/render-ui/src/response-indicators.jsx +0 -89
- package/configure/node_modules/@pie-lib/render-ui/src/ui-layout.jsx +0 -66
- package/configure/node_modules/@pie-lib/render-ui/src/withUndoReset.jsx +0 -116
- package/configure/node_modules/@pie-lib/test-utils/CHANGELOG.json +0 -1
- package/configure/node_modules/@pie-lib/test-utils/CHANGELOG.md +0 -410
- package/configure/node_modules/@pie-lib/test-utils/NEXT.CHANGELOG.json +0 -1
- package/configure/node_modules/@pie-lib/test-utils/esm/index.js +0 -39
- package/configure/node_modules/@pie-lib/test-utils/esm/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/test-utils/lib/index.js +0 -40
- package/configure/node_modules/@pie-lib/test-utils/lib/index.js.map +0 -1
- package/configure/node_modules/@pie-lib/test-utils/package.json +0 -25
- package/configure/node_modules/@pie-lib/test-utils/src/__tests__/index.test.js +0 -45
- package/configure/node_modules/@pie-lib/test-utils/src/index.js +0 -18
- package/configure/node_modules/debug/CHANGELOG.md +0 -395
- package/configure/node_modules/debug/LICENSE +0 -19
- package/configure/node_modules/debug/README.md +0 -437
- package/configure/node_modules/debug/node.js +0 -1
- package/configure/node_modules/debug/package.json +0 -51
- package/configure/node_modules/debug/src/browser.js +0 -180
- package/configure/node_modules/debug/src/common.js +0 -249
- package/configure/node_modules/debug/src/index.js +0 -12
- package/configure/node_modules/debug/src/node.js +0 -177
- package/configure/node_modules/slate-dev-environment/Readme.md +0 -1
- package/configure/node_modules/slate-dev-environment/dist/slate-dev-environment.js +0 -287
- package/configure/node_modules/slate-dev-environment/dist/slate-dev-environment.min.js +0 -1
- package/configure/node_modules/slate-dev-environment/lib/slate-dev-environment.es.js +0 -264
- package/configure/node_modules/slate-dev-environment/lib/slate-dev-environment.es.js.map +0 -1
- package/configure/node_modules/slate-dev-environment/lib/slate-dev-environment.js +0 -282
- package/configure/node_modules/slate-dev-environment/lib/slate-dev-environment.js.map +0 -1
- package/configure/node_modules/slate-dev-environment/package.json +0 -21
- package/configure/src/__tests__/DeleteWidget.test.js +0 -64
- package/configure/src/__tests__/__snapshots__/hotspot-container.test.js.snap +0 -192
- package/configure/src/__tests__/__snapshots__/hotspot-drawable.test.js.snap +0 -562
- package/configure/src/__tests__/__snapshots__/root.test.js.snap +0 -469
- package/controller/node_modules/@pie-lib/controller-utils/CHANGELOG.json +0 -1
- package/controller/node_modules/@pie-lib/controller-utils/CHANGELOG.md +0 -410
- package/controller/node_modules/@pie-lib/controller-utils/NEXT.CHANGELOG.json +0 -1
- package/controller/node_modules/@pie-lib/controller-utils/esm/index.js +0 -129
- package/controller/node_modules/@pie-lib/controller-utils/esm/index.js.map +0 -1
- package/controller/node_modules/@pie-lib/controller-utils/lib/index.js +0 -31
- package/controller/node_modules/@pie-lib/controller-utils/lib/index.js.map +0 -1
- package/controller/node_modules/@pie-lib/controller-utils/lib/partial-scoring.js +0 -29
- package/controller/node_modules/@pie-lib/controller-utils/lib/partial-scoring.js.map +0 -1
- package/controller/node_modules/@pie-lib/controller-utils/lib/persistence.js +0 -140
- package/controller/node_modules/@pie-lib/controller-utils/lib/persistence.js.map +0 -1
- package/controller/node_modules/@pie-lib/controller-utils/package.json +0 -25
- package/controller/node_modules/@pie-lib/controller-utils/src/__tests__/partial-scoring.test.js +0 -25
- package/controller/node_modules/@pie-lib/controller-utils/src/__tests__/persistence.test.js +0 -151
- package/controller/node_modules/@pie-lib/controller-utils/src/index.js +0 -4
- package/controller/node_modules/@pie-lib/controller-utils/src/partial-scoring.js +0 -19
- package/controller/node_modules/@pie-lib/controller-utils/src/persistence.js +0 -103
- package/esm/configure.js +0 -31136
- package/esm/configure.js.map +0 -1
- package/esm/controller.js +0 -344
- package/esm/controller.js.map +0 -1
- package/esm/element.js +0 -28985
- package/esm/element.js.map +0 -1
- package/src/__tests__/__snapshots__/container.test.jsx.snap +0 -264
- package/src/__tests__/__snapshots__/index.test.js.snap +0 -81
- package/src/__tests__/__snapshots__/polygon.test.jsx.snap +0 -192
- package/src/__tests__/__snapshots__/rectangle.test.jsx.snap +0 -127
- package/src/__tests__/polygon.test.jsx +0 -230
- package/src/__tests__/rectangle.test.jsx +0 -232
|
@@ -1,1077 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
# [6.27.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.27.0) (2025-09-25)
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Bug Fixes
|
|
10
|
-
|
|
11
|
-
* fixed pie-lib/icons import [PD-5126] ([dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f))
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
### Features
|
|
15
|
-
|
|
16
|
-
* split pie-toolbox into multiple packages [PD-5126] ([7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2))
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
# [6.26.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.25.0...@pie-lib/math-input@6.26.0) (2025-09-18)
|
|
23
|
-
|
|
24
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
# [6.25.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.24.0...@pie-lib/math-input@6.25.0) (2025-09-18)
|
|
31
|
-
|
|
32
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
# [6.24.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.24.0) (2025-09-18)
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
### Bug Fixes
|
|
42
|
-
|
|
43
|
-
* fixed pie-lib/icons import [PD-5126] ([dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f))
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
### Features
|
|
47
|
-
|
|
48
|
-
* split pie-toolbox into multiple packages [PD-5126] ([7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2))
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
# [6.23.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.22.0...@pie-lib/math-input@6.23.0) (2025-09-17)
|
|
55
|
-
|
|
56
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
# [6.22.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.21.0...@pie-lib/math-input@6.22.0) (2025-09-17)
|
|
63
|
-
|
|
64
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
# [6.21.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.20.1...@pie-lib/math-input@6.21.0) (2025-09-17)
|
|
71
|
-
|
|
72
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
## [6.20.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.20.1) (2025-08-11)
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
### Bug Fixes
|
|
82
|
-
|
|
83
|
-
* fixed pie-lib/icons import [PD-5126] ([dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f))
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
### Features
|
|
87
|
-
|
|
88
|
-
* split pie-toolbox into multiple packages [PD-5126] ([7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2))
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
# [6.20.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.20.0) (2025-08-07)
|
|
95
|
-
|
|
96
|
-
### Features
|
|
97
|
-
|
|
98
|
-
- split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
|
|
99
|
-
|
|
100
|
-
# [6.19.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.19.0) (2025-07-31)
|
|
101
|
-
|
|
102
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
103
|
-
|
|
104
|
-
# [6.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.18.0) (2025-07-31)
|
|
105
|
-
|
|
106
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
107
|
-
|
|
108
|
-
# [6.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.17.0) (2025-07-31)
|
|
109
|
-
|
|
110
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
111
|
-
|
|
112
|
-
# [6.16.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.16.0) (2025-07-31)
|
|
113
|
-
|
|
114
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
115
|
-
|
|
116
|
-
# [6.15.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.15.0) (2025-07-31)
|
|
117
|
-
|
|
118
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
119
|
-
|
|
120
|
-
# [6.14.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.14.0) (2025-07-31)
|
|
121
|
-
|
|
122
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
123
|
-
|
|
124
|
-
# [6.16.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.16.0) (2025-07-31)
|
|
125
|
-
|
|
126
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
127
|
-
|
|
128
|
-
# [6.15.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.15.0) (2025-07-31)
|
|
129
|
-
|
|
130
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
131
|
-
|
|
132
|
-
# [6.14.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.14.0) (2025-07-31)
|
|
133
|
-
|
|
134
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
135
|
-
|
|
136
|
-
# [6.15.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.15.0) (2025-07-31)
|
|
137
|
-
|
|
138
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
139
|
-
|
|
140
|
-
# [6.14.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.14.0) (2025-07-31)
|
|
141
|
-
|
|
142
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
143
|
-
|
|
144
|
-
# [6.13.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.13.0) (2025-07-31)
|
|
145
|
-
|
|
146
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
147
|
-
|
|
148
|
-
# [6.13.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.13.0) (2025-07-31)
|
|
149
|
-
|
|
150
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
151
|
-
|
|
152
|
-
# [6.14.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.14.0) (2025-07-31)
|
|
153
|
-
|
|
154
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
155
|
-
|
|
156
|
-
# [6.13.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.13.0) (2025-07-31)
|
|
157
|
-
|
|
158
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
159
|
-
|
|
160
|
-
# [6.12.0-beta.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.8) (2025-07-25)
|
|
161
|
-
|
|
162
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
163
|
-
|
|
164
|
-
# [6.12.0-beta.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.7) (2025-07-25)
|
|
165
|
-
|
|
166
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
167
|
-
|
|
168
|
-
# [6.12.0-beta.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.7) (2025-07-25)
|
|
169
|
-
|
|
170
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
171
|
-
|
|
172
|
-
# [6.12.0-beta.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.6) (2025-07-25)
|
|
173
|
-
|
|
174
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
175
|
-
|
|
176
|
-
# [6.12.0-beta.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.6) (2025-07-25)
|
|
177
|
-
|
|
178
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
179
|
-
|
|
180
|
-
# [6.12.0-beta.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.5) (2025-07-25)
|
|
181
|
-
|
|
182
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
183
|
-
|
|
184
|
-
# [6.12.0-beta.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.5) (2025-07-25)
|
|
185
|
-
|
|
186
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
187
|
-
|
|
188
|
-
# [6.12.0-beta.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.4) (2025-07-25)
|
|
189
|
-
|
|
190
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
191
|
-
|
|
192
|
-
# [6.12.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.3) (2025-07-25)
|
|
193
|
-
|
|
194
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
195
|
-
|
|
196
|
-
# [6.12.0-beta.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.4) (2025-07-23)
|
|
197
|
-
|
|
198
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
199
|
-
|
|
200
|
-
# [6.12.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.3) (2025-07-23)
|
|
201
|
-
|
|
202
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
203
|
-
|
|
204
|
-
# [6.12.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.3) (2025-07-20)
|
|
205
|
-
|
|
206
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
207
|
-
|
|
208
|
-
# [6.12.0-beta.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.2) (2025-07-20)
|
|
209
|
-
|
|
210
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
211
|
-
|
|
212
|
-
# [6.12.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.1) (2025-07-20)
|
|
213
|
-
|
|
214
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
215
|
-
|
|
216
|
-
# [6.12.0-beta.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.2) (2025-07-20)
|
|
217
|
-
|
|
218
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
219
|
-
|
|
220
|
-
# [6.12.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.1) (2025-07-20)
|
|
221
|
-
|
|
222
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
223
|
-
|
|
224
|
-
# [6.12.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.1) (2025-07-20)
|
|
225
|
-
|
|
226
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
227
|
-
|
|
228
|
-
# [6.12.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.0) (2025-07-20)
|
|
229
|
-
|
|
230
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
231
|
-
|
|
232
|
-
# [6.13.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.13.0-beta.0) (2025-07-15)
|
|
233
|
-
|
|
234
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
235
|
-
|
|
236
|
-
# [6.12.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.4...@pie-lib/math-input@6.12.0-beta.0) (2025-07-15)
|
|
237
|
-
|
|
238
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
239
|
-
|
|
240
|
-
## [6.11.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.3...@pie-lib/math-input@6.11.4) (2023-07-04)
|
|
241
|
-
|
|
242
|
-
### Bug Fixes
|
|
243
|
-
|
|
244
|
-
- prevent crash PD-2150 ([3491c09](https://github.com/pie-framework/pie-lib/commit/3491c09aa5ad947e1248254e79043e5a909d2cde))
|
|
245
|
-
|
|
246
|
-
## [6.11.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.2...@pie-lib/math-input@6.11.3) (2023-06-24)
|
|
247
|
-
|
|
248
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
249
|
-
|
|
250
|
-
## [6.11.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.1...@pie-lib/math-input@6.11.2) (2023-05-22)
|
|
251
|
-
|
|
252
|
-
### Bug Fixes
|
|
253
|
-
|
|
254
|
-
- made sure font roboto is used for insert special characters PD-1914 ([cc875de](https://github.com/pie-framework/pie-lib/commit/cc875de6f04a673ca614c5072f9e4efc3bc71a70))
|
|
255
|
-
|
|
256
|
-
## [6.11.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.11.0...@pie-lib/math-input@6.11.1) (2023-04-19)
|
|
257
|
-
|
|
258
|
-
### Bug Fixes
|
|
259
|
-
|
|
260
|
-
- **eslint:** fix eslint problems-PD-2732 ([9eb9976](https://github.com/pie-framework/pie-lib/commit/9eb9976749753da86e1057a07bd2cfc65bf64ae4))
|
|
261
|
-
- **math-input:** add required import for MathQuill-PD-2732 ([532d786](https://github.com/pie-framework/pie-lib/commit/532d7866fa48a5f9ac68f6d26f31b0e28ac54acf))
|
|
262
|
-
|
|
263
|
-
# [6.11.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.13...@pie-lib/math-input@6.11.0) (2023-04-07)
|
|
264
|
-
|
|
265
|
-
### Features
|
|
266
|
-
|
|
267
|
-
- **math-input:** add two exponent buttons to the grade 3-5 math editor PD-2728 ([b7b87a5](https://github.com/pie-framework/pie-lib/commit/b7b87a5c0c2ca2c3e600cdac696cab3c0a576e87))
|
|
268
|
-
|
|
269
|
-
## [6.10.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.12...@pie-lib/math-input@6.10.13) (2023-03-20)
|
|
270
|
-
|
|
271
|
-
### Bug Fixes
|
|
272
|
-
|
|
273
|
-
- **math-input:** add important to mq button padding to fix issue in IBX with css priority PD-2702 ([3e40576](https://github.com/pie-framework/pie-lib/commit/3e405767f070ec22cf9315ef9f852f8c8c7d6228))
|
|
274
|
-
|
|
275
|
-
## [6.10.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.10...@pie-lib/math-input@6.10.12) (2023-01-31)
|
|
276
|
-
|
|
277
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
278
|
-
|
|
279
|
-
## [6.10.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.9...@pie-lib/math-input@6.10.10) (2023-01-31)
|
|
280
|
-
|
|
281
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
282
|
-
|
|
283
|
-
## [6.10.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.8...@pie-lib/math-input@6.10.9) (2023-01-31)
|
|
284
|
-
|
|
285
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
286
|
-
|
|
287
|
-
## [6.10.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.7...@pie-lib/math-input@6.10.8) (2023-01-31)
|
|
288
|
-
|
|
289
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
290
|
-
|
|
291
|
-
## [6.10.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.4...@pie-lib/math-input@6.10.7) (2023-01-31)
|
|
292
|
-
|
|
293
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
294
|
-
|
|
295
|
-
## [6.10.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.2...@pie-lib/math-input@6.10.4) (2023-01-31)
|
|
296
|
-
|
|
297
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
298
|
-
|
|
299
|
-
## [6.10.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.10.0...@pie-lib/math-input@6.10.2) (2023-01-31)
|
|
300
|
-
|
|
301
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
302
|
-
|
|
303
|
-
# [6.10.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.9.0...@pie-lib/math-input@6.10.0) (2023-01-03)
|
|
304
|
-
|
|
305
|
-
### Features
|
|
306
|
-
|
|
307
|
-
- **math-input:** solve eslint error ([b4489aa](https://github.com/pie-framework/pie-lib/commit/b4489aad65d5a92989ea32294589b5a030019ecb))
|
|
308
|
-
|
|
309
|
-
# [6.9.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.8.4...@pie-lib/math-input@6.9.0) (2022-12-19)
|
|
310
|
-
|
|
311
|
-
### Features
|
|
312
|
-
|
|
313
|
-
- **math-input:** add aria label property for latex buttons ([5aa5b35](https://github.com/pie-framework/pie-lib/commit/5aa5b351c969e13a6a225c7c3d5015e70a3d1c18))
|
|
314
|
-
- **math-input:** add labels to math-operators and buttons that screen readers can use ([ad64881](https://github.com/pie-framework/pie-lib/commit/ad648818c060de1fad9c30b62d3bf73d8d7481fb))
|
|
315
|
-
- **math-input:** refactor ([71bd61c](https://github.com/pie-framework/pie-lib/commit/71bd61cb1e0efb5b2a3e0119eea0239a4863e9ac))
|
|
316
|
-
- **math-input:** update snapshots ([4fe88e1](https://github.com/pie-framework/pie-lib/commit/4fe88e1264667218b59ecfd956e205ae22d0f2a6))
|
|
317
|
-
|
|
318
|
-
## [6.8.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.8.3...@pie-lib/math-input@6.8.4) (2022-11-23)
|
|
319
|
-
|
|
320
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
321
|
-
|
|
322
|
-
## [6.8.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.8.2...@pie-lib/math-input@6.8.3) (2022-11-17)
|
|
323
|
-
|
|
324
|
-
### Bug Fixes
|
|
325
|
-
|
|
326
|
-
- PD-1858 not working with the fraction button in Advanced Multi mode (mq.Static) PD-2030 PD-2031 ([46d1168](https://github.com/pie-framework/pie-lib/commit/46d116874c063524c764cb6d7035fed6bfa84dfb))
|
|
327
|
-
|
|
328
|
-
## [6.8.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.8.1...@pie-lib/math-input@6.8.2) (2022-11-14)
|
|
329
|
-
|
|
330
|
-
### Bug Fixes
|
|
331
|
-
|
|
332
|
-
- PD-1858 (Math editor tweak to better handle the entry of mixed numbers) - not working with a mixed number if the integer part is multi-digit PD-1858, PD-2029, PD-2030, PD-2031 ([158e76a](https://github.com/pie-framework/pie-lib/commit/158e76a48bec66b1f026811bb1856fa4af5668f3))
|
|
333
|
-
- PD-1858 not working with a mixed number if the integer part is multi-digit PD-2029 ([773f51c](https://github.com/pie-framework/pie-lib/commit/773f51cc54a2af72a1e9bd225ba9be27d8b1de52))
|
|
334
|
-
|
|
335
|
-
## [6.8.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.8.0...@pie-lib/math-input@6.8.1) (2022-08-30)
|
|
336
|
-
|
|
337
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
338
|
-
|
|
339
|
-
# [6.8.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.7.2...@pie-lib/math-input@6.8.0) (2022-08-29)
|
|
340
|
-
|
|
341
|
-
### Features
|
|
342
|
-
|
|
343
|
-
- parse latex when there's an integer and a space before a fraction (remove white space) - wip - PD-1858 ([13995de](https://github.com/pie-framework/pie-lib/commit/13995de67283a3c800f41ee8221f6d2e3f10a7ad))
|
|
344
|
-
- parse latex when there's an integer and a space before a fraction (remove white space) PD-1858 ([85654e5](https://github.com/pie-framework/pie-lib/commit/85654e54b9feef656c0002e9d1b2bda2394f398e))
|
|
345
|
-
- **math-input:** feedback ([6b6ee68](https://github.com/pie-framework/pie-lib/commit/6b6ee6852c6226c446a498ad64c2b43e23f9c154))
|
|
346
|
-
- **math-input:** Make math-input style inline with mathjax's one ([e988f63](https://github.com/pie-framework/pie-lib/commit/e988f635f6f75cbe882b3bf7efb716de13fd893d))
|
|
347
|
-
|
|
348
|
-
## [6.7.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.7.1...@pie-lib/math-input@6.7.2) (2022-07-19)
|
|
349
|
-
|
|
350
|
-
### Bug Fixes
|
|
351
|
-
|
|
352
|
-
- bump mathquill to 1.1.3 ([48b84c5](https://github.com/pie-framework/pie-lib/commit/48b84c534cbf519e172a80d18a48b26eda3cf7e6))
|
|
353
|
-
|
|
354
|
-
## [6.7.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.7.0...@pie-lib/math-input@6.7.1) (2022-07-18)
|
|
355
|
-
|
|
356
|
-
### Reverts
|
|
357
|
-
|
|
358
|
-
- Revert "feat(math-toolbar): Make math-toolbar style inline with mathjax for Geometry" ([fee3f22](https://github.com/pie-framework/pie-lib/commit/fee3f22897a03d1d5c892f731dfc441dba9ed10f))
|
|
359
|
-
- Revert "feat(math-toolbar): Make math-toolbar preview style inline with mathjax" ([bb86c35](https://github.com/pie-framework/pie-lib/commit/bb86c35ed56228c673020faf5ea089fb99418fd8))
|
|
360
|
-
|
|
361
|
-
# [6.7.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.10...@pie-lib/math-input@6.7.0) (2022-07-18)
|
|
362
|
-
|
|
363
|
-
### Features
|
|
364
|
-
|
|
365
|
-
- **characters:** special character accents span 2 rows, added border for visibility [PD-1462](<[c60b0bc](https://github.com/pie-framework/pie-lib/commit/c60b0bc8ff45cc01f53bc752fd5dd64da623f6be)>)
|
|
366
|
-
- **math-toolbar:** Make math-toolbar preview style inline with mathjax ([266b1bc](https://github.com/pie-framework/pie-lib/commit/266b1bc9a277530fd653edfacbb836596957dd33))
|
|
367
|
-
- **math-toolbar:** Make math-toolbar style inline with mathjax for Geometry ([811bde0](https://github.com/pie-framework/pie-lib/commit/811bde0aa97633822fa3260666e298e841b6b9f7))
|
|
368
|
-
- **plugins:** added special characters adding capabilities [PD-1462](<[b9f41e1](https://github.com/pie-framework/pie-lib/commit/b9f41e11f44df140a66145d0b04558ca2b0ea48e)>)
|
|
369
|
-
|
|
370
|
-
## [6.6.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.9...@pie-lib/math-input@6.6.10) (2022-06-13)
|
|
371
|
-
|
|
372
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
373
|
-
|
|
374
|
-
## [6.6.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.8...@pie-lib/math-input@6.6.9) (2022-04-12)
|
|
375
|
-
|
|
376
|
-
### Bug Fixes
|
|
377
|
-
|
|
378
|
-
- **math-input:** PD-1669 handle latex with errors in keypad buttons ([6b36f17](https://github.com/pie-framework/pie-lib/commit/6b36f175deffbd0a0fe021f4f7a11d7c4f14a014))
|
|
379
|
-
|
|
380
|
-
## [6.6.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.7...@pie-lib/math-input@6.6.8) (2022-02-04)
|
|
381
|
-
|
|
382
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
383
|
-
|
|
384
|
-
## [6.6.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.6...@pie-lib/math-input@6.6.7) (2022-01-10)
|
|
385
|
-
|
|
386
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
387
|
-
|
|
388
|
-
## [6.6.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.5...@pie-lib/math-input@6.6.6) (2021-10-04)
|
|
389
|
-
|
|
390
|
-
### Bug Fixes
|
|
391
|
-
|
|
392
|
-
- **math-input:** Fixed left-right arrow button ([6109149](https://github.com/pie-framework/pie-lib/commit/6109149))
|
|
393
|
-
|
|
394
|
-
## [6.6.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.4...@pie-lib/math-input@6.6.5) (2021-10-04)
|
|
395
|
-
|
|
396
|
-
### Bug Fixes
|
|
397
|
-
|
|
398
|
-
- **math-input:** create proper latex expression for log base button ([ca0c3f0](https://github.com/pie-framework/pie-lib/commit/ca0c3f0))
|
|
399
|
-
- **math-input:** Made overarc button consistent with the others PD-1315 ([8726469](https://github.com/pie-framework/pie-lib/commit/8726469))
|
|
400
|
-
- **math-input:** Made segment, ray and line buttons more consistent PD-1315 ([e7e4e29](https://github.com/pie-framework/pie-lib/commit/e7e4e29))
|
|
401
|
-
|
|
402
|
-
## [6.6.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.3...@pie-lib/math-input@6.6.4) (2021-09-20)
|
|
403
|
-
|
|
404
|
-
### Bug Fixes
|
|
405
|
-
|
|
406
|
-
- **math-input, math-toolbar:** Adjusted parallelogram button size ([699431e](https://github.com/pie-framework/pie-lib/commit/699431e))
|
|
407
|
-
|
|
408
|
-
## [6.6.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.2...@pie-lib/math-input@6.6.3) (2021-09-16)
|
|
409
|
-
|
|
410
|
-
### Bug Fixes
|
|
411
|
-
|
|
412
|
-
- **math-input:** render measured angle as m + angle sign PD-368 ([670fb56](https://github.com/pie-framework/pie-lib/commit/670fb56))
|
|
413
|
-
|
|
414
|
-
## [6.6.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.1...@pie-lib/math-input@6.6.2) (2021-09-08)
|
|
415
|
-
|
|
416
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
417
|
-
|
|
418
|
-
## [6.6.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.6.0...@pie-lib/math-input@6.6.1) (2021-09-08)
|
|
419
|
-
|
|
420
|
-
### Bug Fixes
|
|
421
|
-
|
|
422
|
-
- **math-input:** default latex when received is wrong ([d872f60](https://github.com/pie-framework/pie-lib/commit/d872f60))
|
|
423
|
-
- **math-input:** default latex when received is wrong (2) ([dc71307](https://github.com/pie-framework/pie-lib/commit/dc71307))
|
|
424
|
-
- **math-input:** fix e button on advanced algebra math editor PD-1280 ([dbfb53b](https://github.com/pie-framework/pie-lib/commit/dbfb53b))
|
|
425
|
-
- **math-input:** Fixed arrows button for pits ([66dd6a9](https://github.com/pie-framework/pie-lib/commit/66dd6a9))
|
|
426
|
-
|
|
427
|
-
# [6.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.14...@pie-lib/math-input@6.6.0) (2021-08-30)
|
|
428
|
-
|
|
429
|
-
### Bug Fixes
|
|
430
|
-
|
|
431
|
-
- **math-input:** Fixed custom keys behavior and changed label for (),[] and absolute value PD-1251 ([39f2ddb](https://github.com/pie-framework/pie-lib/commit/39f2ddb))
|
|
432
|
-
- **math-toolbar:** Made segment, ray and line more consistent PD-1264 ([1a2ad37](https://github.com/pie-framework/pie-lib/commit/1a2ad37))
|
|
433
|
-
- **math-toolbar & math-input:** render parallel sign with bigger font PD-1258 ([418fc28](https://github.com/pie-framework/pie-lib/commit/418fc28))
|
|
434
|
-
|
|
435
|
-
### Features
|
|
436
|
-
|
|
437
|
-
- **math-input, math-toolbar:** add long division button in math editor PD-888 ([3056990](https://github.com/pie-framework/pie-lib/commit/3056990))
|
|
438
|
-
|
|
439
|
-
## [6.5.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.12...@pie-lib/math-input@6.5.14) (2021-06-25)
|
|
440
|
-
|
|
441
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
442
|
-
|
|
443
|
-
## [6.5.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.11...@pie-lib/math-input@6.5.12) (2021-06-25)
|
|
444
|
-
|
|
445
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
446
|
-
|
|
447
|
-
## [6.5.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.10...@pie-lib/math-input@6.5.11) (2021-04-06)
|
|
448
|
-
|
|
449
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
450
|
-
|
|
451
|
-
## [6.5.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.9...@pie-lib/math-input@6.5.10) (2021-03-22)
|
|
452
|
-
|
|
453
|
-
### Bug Fixes
|
|
454
|
-
|
|
455
|
-
- **math-toolbar:** fix double arrow button style mentioned in PD-48 ([145b060](https://github.com/pie-framework/pie-lib/commit/145b060))
|
|
456
|
-
|
|
457
|
-
## [6.5.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.8...@pie-lib/math-input@6.5.9) (2021-03-15)
|
|
458
|
-
|
|
459
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
460
|
-
|
|
461
|
-
## [6.5.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.7...@pie-lib/math-input@6.5.8) (2021-03-03)
|
|
462
|
-
|
|
463
|
-
### Bug Fixes
|
|
464
|
-
|
|
465
|
-
- rename the 'Everything' math editor as the 'Miscellaneous' math editor ([6b5c0b3](https://github.com/pie-framework/pie-lib/commit/6b5c0b3))
|
|
466
|
-
|
|
467
|
-
## [6.5.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.6...@pie-lib/math-input@6.5.7) (2021-03-02)
|
|
468
|
-
|
|
469
|
-
### Bug Fixes
|
|
470
|
-
|
|
471
|
-
- override math input and math toolbar style for ibx PD-774 ([0969756](https://github.com/pie-framework/pie-lib/commit/0969756))
|
|
472
|
-
|
|
473
|
-
## [6.5.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.5...@pie-lib/math-input@6.5.6) (2021-03-01)
|
|
474
|
-
|
|
475
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
476
|
-
|
|
477
|
-
## [6.5.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.4...@pie-lib/math-input@6.5.5) (2021-03-01)
|
|
478
|
-
|
|
479
|
-
### Bug Fixes
|
|
480
|
-
|
|
481
|
-
- In some situations, math editors will not accept keyboard entry. PD-655 ([876de31](https://github.com/pie-framework/pie-lib/commit/876de31))
|
|
482
|
-
|
|
483
|
-
## [6.5.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.3...@pie-lib/math-input@6.5.4) (2021-02-15)
|
|
484
|
-
|
|
485
|
-
### Bug Fixes
|
|
486
|
-
|
|
487
|
-
- demo ([affa119](https://github.com/pie-framework/pie-lib/commit/affa119))
|
|
488
|
-
|
|
489
|
-
## [6.5.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.1...@pie-lib/math-input@6.5.3) (2021-02-15)
|
|
490
|
-
|
|
491
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
492
|
-
|
|
493
|
-
## [6.5.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.5.0...@pie-lib/math-input@6.5.1) (2020-08-11)
|
|
494
|
-
|
|
495
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
496
|
-
|
|
497
|
-
# [6.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.20...@pie-lib/math-input@6.5.0) (2020-06-05)
|
|
498
|
-
|
|
499
|
-
### Features
|
|
500
|
-
|
|
501
|
-
- **math-input:** tooltip keypad support added ([7ae60a3](https://github.com/pie-framework/pie-lib/commit/7ae60a3))
|
|
502
|
-
|
|
503
|
-
## [6.4.20](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.19...@pie-lib/math-input@6.4.20) (2020-05-15)
|
|
504
|
-
|
|
505
|
-
### Bug Fixes
|
|
506
|
-
|
|
507
|
-
- Remove duplicated key for Grade 8 - HS. PD-39 ([94497d0](https://github.com/pie-framework/pie-lib/commit/94497d0))
|
|
508
|
-
|
|
509
|
-
## [6.4.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.18...@pie-lib/math-input@6.4.19) (2020-05-06)
|
|
510
|
-
|
|
511
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
512
|
-
|
|
513
|
-
## [6.4.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.17...@pie-lib/math-input@6.4.18) (2020-05-05)
|
|
514
|
-
|
|
515
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
516
|
-
|
|
517
|
-
## [6.4.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.16...@pie-lib/math-input@6.4.17) (2020-04-28)
|
|
518
|
-
|
|
519
|
-
### Bug Fixes
|
|
520
|
-
|
|
521
|
-
- PD-69: A legacy multi-part item consisting of two equation response interactions appears with no response areas ([fff4ec7](https://github.com/pie-framework/pie-lib/commit/fff4ec7))
|
|
522
|
-
|
|
523
|
-
## [6.4.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.15...@pie-lib/math-input@6.4.16) (2020-04-27)
|
|
524
|
-
|
|
525
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
526
|
-
|
|
527
|
-
## [6.4.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.14...@pie-lib/math-input@6.4.15) (2020-04-21)
|
|
528
|
-
|
|
529
|
-
### Bug Fixes
|
|
530
|
-
|
|
531
|
-
- PD-155: The "pink" background-color set on .mq-empty is overwritten by mathquill.css with "transparent". Added "important" to prevent this. ([18e4ef7](https://github.com/pie-framework/pie-lib/commit/18e4ef7))
|
|
532
|
-
- PD-156: Formatting issues with math editor buttons, specifically in IBX. Updated design for arrows and line, fixed fonts issue (different then expected + various function buttons are capitalized). ([61be51c](https://github.com/pie-framework/pie-lib/commit/61be51c))
|
|
533
|
-
- PD-157: In IBX specifically, characters on math editors are too small. (because they are overwritten) ([3792162](https://github.com/pie-framework/pie-lib/commit/3792162))
|
|
534
|
-
- PD-158: In Item Preview specifically, in IBX only, the math editor radical button and the "squared" button are not correctly labeled ([12f3cd5](https://github.com/pie-framework/pie-lib/commit/12f3cd5))
|
|
535
|
-
|
|
536
|
-
## [6.4.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.13...@pie-lib/math-input@6.4.14) (2020-04-14)
|
|
537
|
-
|
|
538
|
-
### Bug Fixes
|
|
539
|
-
|
|
540
|
-
- **math-input:** remove extra subscript button from statistics keyset - PD-38 ([17a0659](https://github.com/pie-framework/pie-lib/commit/17a0659))
|
|
541
|
-
|
|
542
|
-
## [6.4.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.12...@pie-lib/math-input@6.4.13) (2020-04-08)
|
|
543
|
-
|
|
544
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
545
|
-
|
|
546
|
-
## [6.4.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.11...@pie-lib/math-input@6.4.12) (2020-03-31)
|
|
547
|
-
|
|
548
|
-
### Bug Fixes
|
|
549
|
-
|
|
550
|
-
- remove require (bad es import) ([5c1e025](https://github.com/pie-framework/pie-lib/commit/5c1e025))
|
|
551
|
-
|
|
552
|
-
## [6.4.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.10...@pie-lib/math-input@6.4.11) (2020-03-31)
|
|
553
|
-
|
|
554
|
-
### Bug Fixes
|
|
555
|
-
|
|
556
|
-
- rm ExportNamespaceSpecifier ([970e2ed](https://github.com/pie-framework/pie-lib/commit/970e2ed))
|
|
557
|
-
|
|
558
|
-
## [6.4.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.9...@pie-lib/math-input@6.4.10) (2020-03-31)
|
|
559
|
-
|
|
560
|
-
### Bug Fixes
|
|
561
|
-
|
|
562
|
-
- correct module path ([b6b5b6f](https://github.com/pie-framework/pie-lib/commit/b6b5b6f))
|
|
563
|
-
|
|
564
|
-
## [6.4.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.8...@pie-lib/math-input@6.4.9) (2020-03-31)
|
|
565
|
-
|
|
566
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
567
|
-
|
|
568
|
-
## [6.4.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.7...@pie-lib/math-input@6.4.8) (2020-03-30)
|
|
569
|
-
|
|
570
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
571
|
-
|
|
572
|
-
## [6.4.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.6...@pie-lib/math-input@6.4.7) (2020-03-30)
|
|
573
|
-
|
|
574
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
575
|
-
|
|
576
|
-
## [6.4.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.5...@pie-lib/math-input@6.4.6) (2020-03-30)
|
|
577
|
-
|
|
578
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
579
|
-
|
|
580
|
-
## [6.4.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.4...@pie-lib/math-input@6.4.5) (2020-03-30)
|
|
581
|
-
|
|
582
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
583
|
-
|
|
584
|
-
## [6.4.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.3...@pie-lib/math-input@6.4.4) (2020-03-30)
|
|
585
|
-
|
|
586
|
-
### Bug Fixes
|
|
587
|
-
|
|
588
|
-
- correct export syntax ([db7fcc0](https://github.com/pie-framework/pie-lib/commit/db7fcc0))
|
|
589
|
-
|
|
590
|
-
## [6.4.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.2...@pie-lib/math-input@6.4.3) (2020-03-30)
|
|
591
|
-
|
|
592
|
-
### Bug Fixes
|
|
593
|
-
|
|
594
|
-
- correct export syntax ([10c40b1](https://github.com/pie-framework/pie-lib/commit/10c40b1))
|
|
595
|
-
|
|
596
|
-
## [6.4.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.1...@pie-lib/math-input@6.4.2) (2020-03-30)
|
|
597
|
-
|
|
598
|
-
### Bug Fixes
|
|
599
|
-
|
|
600
|
-
- add module prop to package.json ([df40020](https://github.com/pie-framework/pie-lib/commit/df40020))
|
|
601
|
-
|
|
602
|
-
## [6.4.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.4.0...@pie-lib/math-input@6.4.1) (2020-03-18)
|
|
603
|
-
|
|
604
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
605
|
-
|
|
606
|
-
# [6.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.11...@pie-lib/math-input@6.4.0) (2020-03-06)
|
|
607
|
-
|
|
608
|
-
### Bug Fixes
|
|
609
|
-
|
|
610
|
-
- **math-input:** fix Static rootblock logic, failsafe for finding math block id ch3518 ([08df6db](https://github.com/pie-framework/pie-lib/commit/08df6db))
|
|
611
|
-
|
|
612
|
-
### Features
|
|
613
|
-
|
|
614
|
-
- bump @pie-framework/mathquill@^1.0.0 ([d43c5c5](https://github.com/pie-framework/pie-lib/commit/d43c5c5))
|
|
615
|
-
- bump @pie-framework/mathquill@^1.1.0 ([31dbed8](https://github.com/pie-framework/pie-lib/commit/31dbed8))
|
|
616
|
-
|
|
617
|
-
## [6.3.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.10...@pie-lib/math-input@6.3.11) (2020-02-11)
|
|
618
|
-
|
|
619
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
620
|
-
|
|
621
|
-
## [6.3.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.9...@pie-lib/math-input@6.3.10) (2020-02-05)
|
|
622
|
-
|
|
623
|
-
### Bug Fixes
|
|
624
|
-
|
|
625
|
-
- 6287: Setting equation editor as a string (eg: '6') works as well (In OT, a math editor for an Equation Response item is missing a critical button as well as many other expected buttons) ([a21f04b](https://github.com/pie-framework/pie-lib/commit/a21f04b))
|
|
626
|
-
|
|
627
|
-
## [6.3.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.8...@pie-lib/math-input@6.3.9) (2020-01-27)
|
|
628
|
-
|
|
629
|
-
### Bug Fixes
|
|
630
|
-
|
|
631
|
-
- 6264: Math editor in OT has button labels that are very small and impact legibility and usability (don't use rem to determine font size, use percentage instead) ([94f9d3b](https://github.com/pie-framework/pie-lib/commit/94f9d3b))
|
|
632
|
-
- 6264: Math editor in OT has button labels that are very small and impact legibility and usability (don't use rem to determine font size) ([da50c12](https://github.com/pie-framework/pie-lib/commit/da50c12))
|
|
633
|
-
|
|
634
|
-
## [6.3.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.7...@pie-lib/math-input@6.3.8) (2019-12-19)
|
|
635
|
-
|
|
636
|
-
### Bug Fixes
|
|
637
|
-
|
|
638
|
-
- rm bad import ([fe6673d](https://github.com/pie-framework/pie-lib/commit/fe6673d))
|
|
639
|
-
|
|
640
|
-
## [6.3.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.6...@pie-lib/math-input@6.3.7) (2019-12-18)
|
|
641
|
-
|
|
642
|
-
### Bug Fixes
|
|
643
|
-
|
|
644
|
-
- do not add keys if they already exist in keyset [ch5653](<[fbccf3b](https://github.com/pie-framework/pie-lib/commit/fbccf3b)>)
|
|
645
|
-
|
|
646
|
-
## [6.3.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.5...@pie-lib/math-input@6.3.6) (2019-11-05)
|
|
647
|
-
|
|
648
|
-
### Bug Fixes
|
|
649
|
-
|
|
650
|
-
- handle latex parsing errors PIE-145 ([99905ea](https://github.com/pie-framework/pie-lib/commit/99905ea))
|
|
651
|
-
|
|
652
|
-
## [6.3.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.4...@pie-lib/math-input@6.3.5) (2019-08-21)
|
|
653
|
-
|
|
654
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
655
|
-
|
|
656
|
-
## [6.3.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.3...@pie-lib/math-input@6.3.4) (2019-07-08)
|
|
657
|
-
|
|
658
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
659
|
-
|
|
660
|
-
## [6.3.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.2...@pie-lib/math-input@6.3.3) (2019-07-05)
|
|
661
|
-
|
|
662
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
663
|
-
|
|
664
|
-
## [6.3.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.1...@pie-lib/math-input@6.3.2) (2019-07-02)
|
|
665
|
-
|
|
666
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
667
|
-
|
|
668
|
-
## [6.3.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.3.0...@pie-lib/math-input@6.3.1) (2019-06-17)
|
|
669
|
-
|
|
670
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
671
|
-
|
|
672
|
-
# [6.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.2.5...@pie-lib/math-input@6.3.0) (2019-06-12)
|
|
673
|
-
|
|
674
|
-
### Features
|
|
675
|
-
|
|
676
|
-
- version bumps ([23eb54f](https://github.com/pie-framework/pie-lib/commit/23eb54f))
|
|
677
|
-
|
|
678
|
-
## [6.2.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.2.4...@pie-lib/math-input@6.2.5) (2019-06-05)
|
|
679
|
-
|
|
680
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
681
|
-
|
|
682
|
-
## [6.2.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.2.3...@pie-lib/math-input@6.2.4) (2019-05-14)
|
|
683
|
-
|
|
684
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
685
|
-
|
|
686
|
-
## [6.2.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.2.2...@pie-lib/math-input@6.2.3) (2019-05-09)
|
|
687
|
-
|
|
688
|
-
### Bug Fixes
|
|
689
|
-
|
|
690
|
-
- **math-input:** fix trigo keypad buttons ([cdd7649](https://github.com/pie-framework/pie-lib/commit/cdd7649))
|
|
691
|
-
|
|
692
|
-
## [6.2.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.2.1...@pie-lib/math-input@6.2.2) (2019-05-08)
|
|
693
|
-
|
|
694
|
-
### Bug Fixes
|
|
695
|
-
|
|
696
|
-
- **math-input:** keypad operator fixes and styling adjustments ([c18757a](https://github.com/pie-framework/pie-lib/commit/c18757a))
|
|
697
|
-
|
|
698
|
-
## [6.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.2.0...@pie-lib/math-input@6.2.1) (2019-05-03)
|
|
699
|
-
|
|
700
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
701
|
-
|
|
702
|
-
# [6.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.1.0...@pie-lib/math-input@6.2.0) (2019-05-02)
|
|
703
|
-
|
|
704
|
-
### Features
|
|
705
|
-
|
|
706
|
-
- **mask-markup:** merging with the develop branch ([0153c1a](https://github.com/pie-framework/pie-lib/commit/0153c1a))
|
|
707
|
-
|
|
708
|
-
# [6.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@6.0.0...@pie-lib/math-input@6.1.0) (2019-05-01)
|
|
709
|
-
|
|
710
|
-
### Features
|
|
711
|
-
|
|
712
|
-
- **math-input:** custom keys support and extended keypads ([bcb136a](https://github.com/pie-framework/pie-lib/commit/bcb136a))
|
|
713
|
-
|
|
714
|
-
# [6.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.4.3...@pie-lib/math-input@6.0.0) (2019-04-17)
|
|
715
|
-
|
|
716
|
-
### Features
|
|
717
|
-
|
|
718
|
-
- **math-input:** static math answer block support updated to formulaV2 ([24d5341](https://github.com/pie-framework/pie-lib/commit/24d5341))
|
|
719
|
-
|
|
720
|
-
### BREAKING CHANGES
|
|
721
|
-
|
|
722
|
-
- **math-input:** answer block mathquill mathfields now have a new id definition when declared
|
|
723
|
-
|
|
724
|
-
## [5.4.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.4.2...@pie-lib/math-input@5.4.3) (2019-04-12)
|
|
725
|
-
|
|
726
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
727
|
-
|
|
728
|
-
## [5.4.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.4.1...@pie-lib/math-input@5.4.2) (2019-04-12)
|
|
729
|
-
|
|
730
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
731
|
-
|
|
732
|
-
## [5.4.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.4.0...@pie-lib/math-input@5.4.1) (2019-04-11)
|
|
733
|
-
|
|
734
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
735
|
-
|
|
736
|
-
# [5.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.3.2...@pie-lib/math-input@5.4.0) (2019-04-10)
|
|
737
|
-
|
|
738
|
-
### Features
|
|
739
|
-
|
|
740
|
-
- **math-input:** no decimals support added ([48b1c39](https://github.com/pie-framework/pie-lib/commit/48b1c39))
|
|
741
|
-
|
|
742
|
-
## [5.3.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.3.1...@pie-lib/math-input@5.3.2) (2019-04-05)
|
|
743
|
-
|
|
744
|
-
### Bug Fixes
|
|
745
|
-
|
|
746
|
-
- static math diffing algorithm fix for spaces ([2ce8bac](https://github.com/pie-framework/pie-lib/commit/2ce8bac))
|
|
747
|
-
|
|
748
|
-
## [5.3.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.3.0...@pie-lib/math-input@5.3.1) (2019-04-04)
|
|
749
|
-
|
|
750
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
751
|
-
|
|
752
|
-
# [5.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.2.0...@pie-lib/math-input@5.3.0) (2019-04-04)
|
|
753
|
-
|
|
754
|
-
### Bug Fixes
|
|
755
|
-
|
|
756
|
-
- shouldComponentUpdate correctly checks latex ([a49c68b](https://github.com/pie-framework/pie-lib/commit/a49c68b))
|
|
757
|
-
|
|
758
|
-
### Features
|
|
759
|
-
|
|
760
|
-
- use [@pie-framework](https://github.com/pie-framework)/mathquill - our fork with extras ([7fc47a7](https://github.com/pie-framework/pie-lib/commit/7fc47a7))
|
|
761
|
-
|
|
762
|
-
# [5.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.13...@pie-lib/math-input@5.2.0) (2019-03-26)
|
|
763
|
-
|
|
764
|
-
### Bug Fixes
|
|
765
|
-
|
|
766
|
-
- continued mathquill math-input work ([f4c6d67](https://github.com/pie-framework/pie-lib/commit/f4c6d67))
|
|
767
|
-
|
|
768
|
-
### Features
|
|
769
|
-
|
|
770
|
-
- math-input static subfield setter on props ([a4651d9](https://github.com/pie-framework/pie-lib/commit/a4651d9))
|
|
771
|
-
|
|
772
|
-
## [5.1.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.12...@pie-lib/math-input@5.1.13) (2019-03-15)
|
|
773
|
-
|
|
774
|
-
### Bug Fixes
|
|
775
|
-
|
|
776
|
-
- rm child prepack in favour of root prepack ([381d8d6](https://github.com/pie-framework/pie-lib/commit/381d8d6))
|
|
777
|
-
|
|
778
|
-
## [5.1.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.11...@pie-lib/math-input@5.1.12) (2019-03-14)
|
|
779
|
-
|
|
780
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
781
|
-
|
|
782
|
-
## [5.1.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.10...@pie-lib/math-input@5.1.11) (2019-03-14)
|
|
783
|
-
|
|
784
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
785
|
-
|
|
786
|
-
## [5.1.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.9...@pie-lib/math-input@5.1.10) (2019-03-14)
|
|
787
|
-
|
|
788
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
789
|
-
|
|
790
|
-
## [5.1.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.8...@pie-lib/math-input@5.1.9) (2019-03-14)
|
|
791
|
-
|
|
792
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
793
|
-
|
|
794
|
-
## [5.1.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.7...@pie-lib/math-input@5.1.8) (2019-03-13)
|
|
795
|
-
|
|
796
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
797
|
-
|
|
798
|
-
## [5.1.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.6...@pie-lib/math-input@5.1.7) (2019-03-13)
|
|
799
|
-
|
|
800
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
801
|
-
|
|
802
|
-
## [5.1.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.5...@pie-lib/math-input@5.1.6) (2019-03-13)
|
|
803
|
-
|
|
804
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
805
|
-
|
|
806
|
-
## [5.1.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.3...@pie-lib/math-input@5.1.5) (2019-03-12)
|
|
807
|
-
|
|
808
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
809
|
-
|
|
810
|
-
## [5.1.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.2...@pie-lib/math-input@5.1.3) (2019-03-12)
|
|
811
|
-
|
|
812
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
813
|
-
|
|
814
|
-
## [5.1.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.1...@pie-lib/math-input@5.1.2) (2019-03-11)
|
|
815
|
-
|
|
816
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
817
|
-
|
|
818
|
-
## [5.1.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.1.0...@pie-lib/math-input@5.1.1) (2019-03-11)
|
|
819
|
-
|
|
820
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
821
|
-
|
|
822
|
-
# [5.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.0.4...@pie-lib/math-input@5.1.0) (2019-02-20)
|
|
823
|
-
|
|
824
|
-
### Features
|
|
825
|
-
|
|
826
|
-
- **math-toolbar:** configurable keypad for extra button variety ([f219ae1](https://github.com/pie-framework/pie-lib/commit/f219ae1))
|
|
827
|
-
|
|
828
|
-
## [5.0.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.0.3...@pie-lib/math-input@5.0.4) (2019-02-13)
|
|
829
|
-
|
|
830
|
-
### Bug Fixes
|
|
831
|
-
|
|
832
|
-
- fraction button in HorizontalKeypad ([0d5d896](https://github.com/pie-framework/pie-lib/commit/0d5d896))
|
|
833
|
-
- remove unnecessary mathquill wrappers in favor of [@pie-lib](https://github.com/pie-lib)/math-input and small styling fixes ([b29bc9a](https://github.com/pie-framework/pie-lib/commit/b29bc9a))
|
|
834
|
-
- use export '\*' for mq ([1d8200b](https://github.com/pie-framework/pie-lib/commit/1d8200b))
|
|
835
|
-
|
|
836
|
-
## [5.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.0.2...@pie-lib/math-input@5.0.3) (2019-02-11)
|
|
837
|
-
|
|
838
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
839
|
-
|
|
840
|
-
## [5.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@5.0.0...@pie-lib/math-input@5.0.2) (2019-02-11)
|
|
841
|
-
|
|
842
|
-
### Bug Fixes
|
|
843
|
-
|
|
844
|
-
- version bump ([4591a50](https://github.com/pie-framework/pie-lib/commit/4591a50))
|
|
845
|
-
|
|
846
|
-
# [5.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.7.3...@pie-lib/math-input@5.0.0) (2019-02-11)
|
|
847
|
-
|
|
848
|
-
### Bug Fixes
|
|
849
|
-
|
|
850
|
-
- nav w/ HorizontalKeypad ([79a72be](https://github.com/pie-framework/pie-lib/commit/79a72be))
|
|
851
|
-
|
|
852
|
-
### Features
|
|
853
|
-
|
|
854
|
-
- new ui + layout ([2f6fdba](https://github.com/pie-framework/pie-lib/commit/2f6fdba))
|
|
855
|
-
|
|
856
|
-
### BREAKING CHANGES
|
|
857
|
-
|
|
858
|
-
- - The ui is quite different now
|
|
859
|
-
- Some of the old components are gone (except for HorizontalKeypad which
|
|
860
|
-
is retained for backward compatibility).
|
|
861
|
-
|
|
862
|
-
## [4.7.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.7.2...@pie-lib/math-input@4.7.3) (2019-02-05)
|
|
863
|
-
|
|
864
|
-
### Bug Fixes
|
|
865
|
-
|
|
866
|
-
- version bump ([caaf960](https://github.com/pie-framework/pie-lib/commit/caaf960))
|
|
867
|
-
|
|
868
|
-
## [4.7.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.7.1...@pie-lib/math-input@4.7.2) (2019-02-05)
|
|
869
|
-
|
|
870
|
-
### Bug Fixes
|
|
871
|
-
|
|
872
|
-
- **math-input:** styling fixes to adjust for most recent material-ui ([b466358](https://github.com/pie-framework/pie-lib/commit/b466358))
|
|
873
|
-
|
|
874
|
-
## [4.7.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.7.0...@pie-lib/math-input@4.7.1) (2019-01-30)
|
|
875
|
-
|
|
876
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
877
|
-
|
|
878
|
-
# [4.7.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.6.0...@pie-lib/math-input@4.7.0) (2019-01-30)
|
|
879
|
-
|
|
880
|
-
### Features
|
|
881
|
-
|
|
882
|
-
- libs version bump ([b9476a9](https://github.com/pie-framework/pie-lib/commit/b9476a9))
|
|
883
|
-
|
|
884
|
-
<a name="4.6.0"></a>
|
|
885
|
-
|
|
886
|
-
# [4.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.5.2...@pie-lib/math-input@4.6.0) (2018-12-18)
|
|
887
|
-
|
|
888
|
-
### Features
|
|
889
|
-
|
|
890
|
-
- **math-toolbar:** answer block initial implementation ([2200ee4](https://github.com/pie-framework/pie-lib/commit/2200ee4))
|
|
891
|
-
- **math-toolbar:** version bumps ([e88dc9a](https://github.com/pie-framework/pie-lib/commit/e88dc9a))
|
|
892
|
-
|
|
893
|
-
<a name="4.5.2"></a>
|
|
894
|
-
|
|
895
|
-
## [4.5.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.5.0...@pie-lib/math-input@4.5.2) (2018-12-18)
|
|
896
|
-
|
|
897
|
-
### Bug Fixes
|
|
898
|
-
|
|
899
|
-
- version bump ([3dcbea9](https://github.com/pie-framework/pie-lib/commit/3dcbea9))
|
|
900
|
-
|
|
901
|
-
<a name="4.5.0"></a>
|
|
902
|
-
|
|
903
|
-
# [4.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.4.1...@pie-lib/math-input@4.5.0) (2018-12-18)
|
|
904
|
-
|
|
905
|
-
### Features
|
|
906
|
-
|
|
907
|
-
- **math-toolbar:** answer block column for keypad and related functionality ([2fd700a](https://github.com/pie-framework/pie-lib/commit/2fd700a))
|
|
908
|
-
|
|
909
|
-
<a name="4.4.1"></a>
|
|
910
|
-
|
|
911
|
-
## [4.4.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.4.0...@pie-lib/math-input@4.4.1) (2018-11-27)
|
|
912
|
-
|
|
913
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
914
|
-
|
|
915
|
-
<a name="4.4.0"></a>
|
|
916
|
-
|
|
917
|
-
# [4.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.3.0...@pie-lib/math-input@4.4.0) (2018-11-27)
|
|
918
|
-
|
|
919
|
-
### Features
|
|
920
|
-
|
|
921
|
-
- **math-toolbar:** changed from ssh to https for the mathquill forked repo ([7364008](https://github.com/pie-framework/pie-lib/commit/7364008))
|
|
922
|
-
|
|
923
|
-
<a name="4.3.0"></a>
|
|
924
|
-
|
|
925
|
-
# [4.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.2.3...@pie-lib/math-input@4.3.0) (2018-11-27)
|
|
926
|
-
|
|
927
|
-
### Features
|
|
928
|
-
|
|
929
|
-
- **math-input:** added some new symbols to the math-input ([56062aa](https://github.com/pie-framework/pie-lib/commit/56062aa))
|
|
930
|
-
|
|
931
|
-
<a name="4.2.3"></a>
|
|
932
|
-
|
|
933
|
-
## [4.2.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.2.2...@pie-lib/math-input@4.2.3) (2018-09-12)
|
|
934
|
-
|
|
935
|
-
### Bug Fixes
|
|
936
|
-
|
|
937
|
-
- githead ([3e485e0](https://github.com/pie-framework/pie-lib/commit/3e485e0))
|
|
938
|
-
- rm githead ([a1523aa](https://github.com/pie-framework/pie-lib/commit/a1523aa))
|
|
939
|
-
|
|
940
|
-
<a name="4.2.2"></a>
|
|
941
|
-
|
|
942
|
-
## [4.2.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.2.0...@pie-lib/math-input@4.2.2) (2018-09-12)
|
|
943
|
-
|
|
944
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
945
|
-
|
|
946
|
-
<a name="4.2.1"></a>
|
|
947
|
-
|
|
948
|
-
## [4.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.2.0...@pie-lib/math-input@4.2.1) (2018-09-12)
|
|
949
|
-
|
|
950
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
951
|
-
|
|
952
|
-
<a name="4.2.0"></a>
|
|
953
|
-
|
|
954
|
-
# [4.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@4.1.0...@pie-lib/math-input@4.2.0) (2018-07-25)
|
|
955
|
-
|
|
956
|
-
### Features
|
|
957
|
-
|
|
958
|
-
- Update toolbar api to provide better separation between react components and slate and move math editing to toolbar to simplify ui ([b694a29](https://github.com/pie-framework/pie-lib/commit/b694a29))
|
|
959
|
-
|
|
960
|
-
<a name="3.1.0"></a>
|
|
961
|
-
|
|
962
|
-
# [3.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.9...@pie-lib/math-input@3.1.0) (2018-05-16)
|
|
963
|
-
|
|
964
|
-
### Features
|
|
965
|
-
|
|
966
|
-
- upgrade material-ui -> [@material-ui](https://github.com/material-ui)/core@^1.0.0-rc.1 ([017ef63](https://github.com/pie-framework/pie-lib/commit/017ef63))
|
|
967
|
-
|
|
968
|
-
<a name="3.0.9"></a>
|
|
969
|
-
|
|
970
|
-
## [3.0.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.8...@pie-lib/math-input@3.0.9) (2018-05-09)
|
|
971
|
-
|
|
972
|
-
### Bug Fixes
|
|
973
|
-
|
|
974
|
-
- **lint:** automatic lint fixes ([7c9a2a4](https://github.com/pie-framework/pie-lib/commit/7c9a2a4))
|
|
975
|
-
- **lint:** lint fixes ([f059583](https://github.com/pie-framework/pie-lib/commit/f059583))
|
|
976
|
-
|
|
977
|
-
<a name="3.0.8"></a>
|
|
978
|
-
|
|
979
|
-
## [3.0.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.7...@pie-lib/math-input@3.0.8) (2018-04-30)
|
|
980
|
-
|
|
981
|
-
### Bug Fixes
|
|
982
|
-
|
|
983
|
-
- **dependencies:** set material-ui version to ^1.0.0-beta.44 ([6fd66bc](https://github.com/pie-framework/pie-lib/commit/6fd66bc))
|
|
984
|
-
|
|
985
|
-
<a name="3.0.7"></a>
|
|
986
|
-
|
|
987
|
-
## [3.0.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.6...@pie-lib/math-input@3.0.7) (2018-04-30)
|
|
988
|
-
|
|
989
|
-
### Bug Fixes
|
|
990
|
-
|
|
991
|
-
- **dependencies:** roll back material-ui ([5167d1f](https://github.com/pie-framework/pie-lib/commit/5167d1f))
|
|
992
|
-
|
|
993
|
-
<a name="3.0.6"></a>
|
|
994
|
-
|
|
995
|
-
## [3.0.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.5...@pie-lib/math-input@3.0.6) (2018-04-30)
|
|
996
|
-
|
|
997
|
-
### Bug Fixes
|
|
998
|
-
|
|
999
|
-
- **dependencies:** lock material-ui to 1.0.0-beta.44 ([60df8e6](https://github.com/pie-framework/pie-lib/commit/60df8e6))
|
|
1000
|
-
|
|
1001
|
-
<a name="3.0.5"></a>
|
|
1002
|
-
|
|
1003
|
-
## [3.0.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.4...@pie-lib/math-input@3.0.5) (2018-04-30)
|
|
1004
|
-
|
|
1005
|
-
### Bug Fixes
|
|
1006
|
-
|
|
1007
|
-
- **dependencies:** lock material-ui to 1.0.0-beta.43 ([2a3e087](https://github.com/pie-framework/pie-lib/commit/2a3e087))
|
|
1008
|
-
- **dependencies:** upgrade material-ui ([b94b50e](https://github.com/pie-framework/pie-lib/commit/b94b50e))
|
|
1009
|
-
|
|
1010
|
-
<a name="3.0.4"></a>
|
|
1011
|
-
|
|
1012
|
-
## [3.0.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.3...@pie-lib/math-input@3.0.4) (2018-04-24)
|
|
1013
|
-
|
|
1014
|
-
### Bug Fixes
|
|
1015
|
-
|
|
1016
|
-
- **dependencies:** version bump ([3317784](https://github.com/pie-framework/pie-lib/commit/3317784))
|
|
1017
|
-
|
|
1018
|
-
<a name="3.0.3"></a>
|
|
1019
|
-
|
|
1020
|
-
## [3.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.2...@pie-lib/math-input@3.0.3) (2018-04-20)
|
|
1021
|
-
|
|
1022
|
-
### Bug Fixes
|
|
1023
|
-
|
|
1024
|
-
- **editable-math-input:** fix props ([078de38](https://github.com/pie-framework/pie-lib/commit/078de38))
|
|
1025
|
-
|
|
1026
|
-
<a name="3.0.2"></a>
|
|
1027
|
-
|
|
1028
|
-
## [3.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.1...@pie-lib/math-input@3.0.2) (2018-04-20)
|
|
1029
|
-
|
|
1030
|
-
### Bug Fixes
|
|
1031
|
-
|
|
1032
|
-
- **ssr:** throw error if MQ is undefined ([f91a405](https://github.com/pie-framework/pie-lib/commit/f91a405))
|
|
1033
|
-
- **test:** normalize tests ([b86b3d9](https://github.com/pie-framework/pie-lib/commit/b86b3d9))
|
|
1034
|
-
|
|
1035
|
-
<a name="3.0.1"></a>
|
|
1036
|
-
|
|
1037
|
-
## [3.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@3.0.0...@pie-lib/math-input@3.0.1) (2018-04-19)
|
|
1038
|
-
|
|
1039
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
1040
|
-
|
|
1041
|
-
<a name="2.0.0"></a>
|
|
1042
|
-
|
|
1043
|
-
# [2.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@1.3.3...@pie-lib/math-input@2.0.0) (2018-04-16)
|
|
1044
|
-
|
|
1045
|
-
### Bug Fixes
|
|
1046
|
-
|
|
1047
|
-
- **dependencies:** version bump react ([1c2b53d](https://github.com/pie-framework/pie-lib/commit/1c2b53d))
|
|
1048
|
-
|
|
1049
|
-
### BREAKING CHANGES
|
|
1050
|
-
|
|
1051
|
-
- **dependencies:** requires react@^16.3.1
|
|
1052
|
-
|
|
1053
|
-
<a name="1.3.3"></a>
|
|
1054
|
-
|
|
1055
|
-
## [1.3.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@1.3.2...@pie-lib/math-input@1.3.3) (2018-04-02)
|
|
1056
|
-
|
|
1057
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
1058
|
-
|
|
1059
|
-
<a name="1.3.2"></a>
|
|
1060
|
-
|
|
1061
|
-
## [1.3.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-input@1.3.1...@pie-lib/math-input@1.3.2) (2018-03-28)
|
|
1062
|
-
|
|
1063
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
1064
|
-
|
|
1065
|
-
<a name="1.3.1"></a>
|
|
1066
|
-
|
|
1067
|
-
## 1.3.1 (2018-03-06)
|
|
1068
|
-
|
|
1069
|
-
**Note:** Version bump only for package @pie-lib/math-input
|
|
1070
|
-
|
|
1071
|
-
<a name="1.3.0"></a>
|
|
1072
|
-
|
|
1073
|
-
# 1.3.0 (2018-03-06)
|
|
1074
|
-
|
|
1075
|
-
### Features
|
|
1076
|
-
|
|
1077
|
-
- **math-input:** add math-input pkg ([5e58759](https://github.com/pie-framework/pie-lib/commit/5e58759))
|