@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
package/controller/CHANGELOG.md
CHANGED
|
@@ -3,2148 +3,1285 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [
|
|
6
|
+
## [8.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@8.0.0...@pie-element/hotspot-controller@8.0.1) (2026-04-28)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
9
9
|
|
|
10
|
+
# [7.2.0-next.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@7.2.0-next.1...@pie-element/hotspot-controller@7.2.0-next.2) (2026-04-27)
|
|
10
11
|
|
|
12
|
+
### Features
|
|
11
13
|
|
|
14
|
+
- bump major libs and shared modules ([acb4bf3](https://github.com/pie-framework/pie-elements/commit/acb4bf32dafd5cd47cd1c673791b7af3c66b2938))
|
|
12
15
|
|
|
13
|
-
|
|
14
|
-
# [6.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.7.0...@pie-element/hotspot-controller@6.0.0) (2025-10-01)
|
|
16
|
+
# [7.2.0-next.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@7.2.0-next.0...@pie-element/hotspot-controller@7.2.0-next.1) (2026-04-03)
|
|
15
17
|
|
|
16
18
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
17
19
|
|
|
20
|
+
# [7.2.0-next.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@7.1.1-next.1...@pie-element/hotspot-controller@7.2.0-next.0) (2026-03-18)
|
|
18
21
|
|
|
22
|
+
### Features
|
|
19
23
|
|
|
24
|
+
- **hotspot:** add trace log for scoring in outcome function PD-5439 ([5950d30](https://github.com/pie-framework/pie-elements/commit/5950d30444c2112720ba99d8b3f11c887a3a5e26))
|
|
20
25
|
|
|
26
|
+
## [7.1.1-next.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@7.1.0-next.1...@pie-element/hotspot-controller@7.1.1-next.1) (2026-02-26)
|
|
21
27
|
|
|
22
|
-
|
|
28
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
23
29
|
|
|
30
|
+
## [6.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@6.3.1...@pie-element/hotspot-controller@6.3.2) (2025-10-22)
|
|
24
31
|
|
|
25
32
|
### Bug Fixes
|
|
26
33
|
|
|
27
|
-
|
|
28
|
-
* conflicts ([5c99a5d](https://github.com/pie-framework/pie-elements/commit/5c99a5db49549422ba1e29b6c67f210e688677d8))
|
|
29
|
-
* fix conflicts and update imports ([da74559](https://github.com/pie-framework/pie-elements/commit/da745596bfc0da732cdafdcfee376c84fde3cdc6))
|
|
30
|
-
* fix imports PD-5126 ([3bf4684](https://github.com/pie-framework/pie-elements/commit/3bf4684871a62b3e23f50e2c010adfc9ae674919))
|
|
31
|
-
* merge develop ([b5ec752](https://github.com/pie-framework/pie-elements/commit/b5ec752f6fedc576449c277308499bc853244544))
|
|
32
|
-
* update pie-lib/pie-toolbox PD-5196 ([d525b88](https://github.com/pie-framework/pie-elements/commit/d525b888f16fcc2ac115c8e699ca6f249db27406))
|
|
33
|
-
|
|
34
|
+
- bump libs PD-5265 ([184a978](https://github.com/pie-framework/pie-elements/commit/184a978f57a2a84dc6ba87c1eba0b92d5cdd9eae))
|
|
34
35
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
* split pie-toolbox for graphing-solution-set, hotspot, ica PD-5158 ([774a216](https://github.com/pie-framework/pie-elements/commit/774a216d02311294a1340aea0f26e2ea46a271d5))
|
|
36
|
+
## [6.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@6.2.0...@pie-element/hotspot-controller@6.3.1) (2025-10-16)
|
|
38
37
|
|
|
38
|
+
### Bug Fixes
|
|
39
39
|
|
|
40
|
+
- bump pie-lib versions and pslb module versions ([393d39f](https://github.com/pie-framework/pie-elements/commit/393d39fb850ad055568f4d20464213e9043f208f))
|
|
40
41
|
|
|
42
|
+
# [6.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@6.2.0...@pie-element/hotspot-controller@6.3.0) (2025-10-15)
|
|
41
43
|
|
|
44
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
42
45
|
|
|
43
|
-
|
|
46
|
+
# [6.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@6.0.1...@pie-element/hotspot-controller@6.2.0) (2025-10-10)
|
|
44
47
|
|
|
48
|
+
### Features
|
|
45
49
|
|
|
46
|
-
|
|
50
|
+
- update libs PD-5208, PD-5211, PD-5199, PD-5218, PD-5217 ([da327fa](https://github.com/pie-framework/pie-elements/commit/da327fa501f6e9eff1c0b30b5ef092426a91f78b))
|
|
47
51
|
|
|
48
|
-
|
|
52
|
+
# [6.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@6.0.0...@pie-element/hotspot-controller@6.1.0) (2025-10-07)
|
|
49
53
|
|
|
54
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
50
55
|
|
|
56
|
+
## [6.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.7.0...@pie-element/hotspot-controller@6.0.1) (2025-10-02)
|
|
51
57
|
|
|
58
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
52
59
|
|
|
60
|
+
# [6.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.7.0...@pie-element/hotspot-controller@6.0.0) (2025-10-01)
|
|
53
61
|
|
|
54
|
-
|
|
62
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
55
63
|
|
|
64
|
+
# [5.7.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.6.9...@pie-element/hotspot-controller@5.7.0) (2025-09-25)
|
|
56
65
|
|
|
57
66
|
### Bug Fixes
|
|
58
67
|
|
|
59
|
-
|
|
68
|
+
- **math-rendering:** move mathjax-full back to dependencies ([aba6dbf](https://github.com/pie-framework/pie-elements/commit/aba6dbf2c98da164149a881616df5e7b8e29b2f2))
|
|
69
|
+
- conflicts ([5c99a5d](https://github.com/pie-framework/pie-elements/commit/5c99a5db49549422ba1e29b6c67f210e688677d8))
|
|
70
|
+
- fix conflicts and update imports ([da74559](https://github.com/pie-framework/pie-elements/commit/da745596bfc0da732cdafdcfee376c84fde3cdc6))
|
|
71
|
+
- fix imports PD-5126 ([3bf4684](https://github.com/pie-framework/pie-elements/commit/3bf4684871a62b3e23f50e2c010adfc9ae674919))
|
|
72
|
+
- merge develop ([b5ec752](https://github.com/pie-framework/pie-elements/commit/b5ec752f6fedc576449c277308499bc853244544))
|
|
73
|
+
- update pie-lib/pie-toolbox PD-5196 ([d525b88](https://github.com/pie-framework/pie-elements/commit/d525b888f16fcc2ac115c8e699ca6f249db27406))
|
|
60
74
|
|
|
75
|
+
### Features
|
|
61
76
|
|
|
77
|
+
- split pie-toolbox for graphing-solution-set, hotspot, ica PD-5158 ([774a216](https://github.com/pie-framework/pie-elements/commit/774a216d02311294a1340aea0f26e2ea46a271d5))
|
|
62
78
|
|
|
79
|
+
## [5.6.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.6.8...@pie-element/hotspot-controller@5.6.9) (2025-09-11)
|
|
63
80
|
|
|
81
|
+
### Bug Fixes
|
|
64
82
|
|
|
65
|
-
|
|
83
|
+
- update pie-lib/pie-toolbox PD-5198, PD-5187 ([f04a94c](https://github.com/pie-framework/pie-elements/commit/f04a94c62a29d77fcb17b473b7de1022ad65eeb4))
|
|
66
84
|
|
|
85
|
+
## [5.6.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.6.7...@pie-element/hotspot-controller@5.6.8) (2025-09-09)
|
|
67
86
|
|
|
68
87
|
### Bug Fixes
|
|
69
88
|
|
|
70
|
-
|
|
71
|
-
|
|
89
|
+
- update pie-lib/pie-toolbox PD-5196 ([29ec1c8](https://github.com/pie-framework/pie-elements/commit/29ec1c80dd278b534751f3944445b91d5f9524a5))
|
|
72
90
|
|
|
91
|
+
## [5.6.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.6.6...@pie-element/hotspot-controller@5.6.7) (2025-09-09)
|
|
73
92
|
|
|
93
|
+
### Bug Fixes
|
|
74
94
|
|
|
95
|
+
- update pie-lib/pie-toolboox PD-5181, PD-5187, PD-4580, PD-5198 ([9fa09cd](https://github.com/pie-framework/pie-elements/commit/9fa09cdb29fe43e292e6f3fba2b88561d8deceab))
|
|
75
96
|
|
|
76
97
|
## [5.6.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.6.5...@pie-element/hotspot-controller@5.6.6) (2025-09-02)
|
|
77
98
|
|
|
78
|
-
|
|
79
99
|
### Bug Fixes
|
|
80
100
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
101
|
+
- update pie-lib/pie-toolbox PD-4579, PD-4430 ([277d2a6](https://github.com/pie-framework/pie-elements/commit/277d2a6bad2fc884ab9d980f71774ba9eca8dbb5))
|
|
84
102
|
|
|
103
|
+
## [5.6.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.6.4...@pie-element/hotspot-controller@5.6.5) (2025-08-15)
|
|
85
104
|
|
|
105
|
+
### Bug Fixes
|
|
86
106
|
|
|
87
|
-
|
|
107
|
+
- PD-5084 ([78bd9ca](https://github.com/pie-framework/pie-elements/commit/78bd9ca1540c3968ddd36e0ff5cc4ac095865250))
|
|
88
108
|
|
|
109
|
+
## [5.6.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.6.3...@pie-element/hotspot-controller@5.6.4) (2025-08-14)
|
|
89
110
|
|
|
90
111
|
### Bug Fixes
|
|
91
112
|
|
|
92
|
-
|
|
113
|
+
- update pie-lib/pie-toolboxPD-5147, PD-4579, PD-5084, PD-4918 ([ff9ec92](https://github.com/pie-framework/pie-elements/commit/ff9ec92eb659a1664729aaae54eedf3b87f6a96a))
|
|
114
|
+
|
|
115
|
+
## [5.6.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.6.2...@pie-element/hotspot-controller@5.6.3) (2025-08-14)
|
|
93
116
|
|
|
117
|
+
### Bug Fixes
|
|
94
118
|
|
|
119
|
+
- update pie-lib/pie-toolbox PD-5147 ([484432f](https://github.com/pie-framework/pie-elements/commit/484432fd824ebe403e8f4302f6b8cf4d026dacb5))
|
|
95
120
|
|
|
121
|
+
## [5.6.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.6.1...@pie-element/hotspot-controller@5.6.2) (2025-07-25)
|
|
96
122
|
|
|
123
|
+
### Bug Fixes
|
|
97
124
|
|
|
98
|
-
|
|
125
|
+
- refactor PD-5132, update pie-lib/pie-toolbox PD-3797 ([7434408](https://github.com/pie-framework/pie-elements/commit/7434408416a883fd680eec13fe1109711fd7e6b5))
|
|
126
|
+
- update pie-lib/pie-toolbox PD-4885, PD-5131 ([4b9859c](https://github.com/pie-framework/pie-elements/commit/4b9859c919a1a7cc8e29d6168a91cd1f7d1aafd1))
|
|
99
127
|
|
|
128
|
+
## [5.6.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.6.0...@pie-element/hotspot-controller@5.6.1) (2025-07-22)
|
|
100
129
|
|
|
101
130
|
### Bug Fixes
|
|
102
131
|
|
|
103
|
-
|
|
132
|
+
- update pie-toolbox PD-4885 ([a6d439e](https://github.com/pie-framework/pie-elements/commit/a6d439e49a0082f3d5e8bf46cc73c69d1d0ae311))
|
|
104
133
|
|
|
134
|
+
# [5.6.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.5.10...@pie-element/hotspot-controller@5.6.0) (2025-07-18)
|
|
105
135
|
|
|
136
|
+
### Bug Fixes
|
|
106
137
|
|
|
138
|
+
- update pie-lib/pie-toolbox PD-363 ([10ce402](https://github.com/pie-framework/pie-elements/commit/10ce402bcb1c0c9c24dfc9ecff2e13c4de14a753))
|
|
107
139
|
|
|
140
|
+
### Features
|
|
108
141
|
|
|
109
|
-
|
|
142
|
+
- update pie-lib/pie toolbox PD-5082, PD-5081, PD-3797, PD-5083, revert PD-363, PD-653 ([9214466](https://github.com/pie-framework/pie-elements/commit/92144667464f18c213c7ab1d769595e43b553dab))
|
|
143
|
+
- update pie-lib/pie-toolbox PD-5082, PD-5081, PD-3797, PD-5083, PD-4885, PD-5097, PD-5100, PD-5131, PD-5080 ([dc67b1c](https://github.com/pie-framework/pie-elements/commit/dc67b1c735b2adb60943e5d145e739ce4e39a428))
|
|
110
144
|
|
|
145
|
+
## [5.5.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.5.9...@pie-element/hotspot-controller@5.5.10) (2025-06-27)
|
|
111
146
|
|
|
112
147
|
### Bug Fixes
|
|
113
148
|
|
|
114
|
-
|
|
149
|
+
- update pie-lib/pie-toolbox PD-5064 ([f61face](https://github.com/pie-framework/pie-elements/commit/f61face71312f0a4e46a16a646aa616b9d4ed8eb))
|
|
150
|
+
|
|
151
|
+
## [5.5.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.5.8...@pie-element/hotspot-controller@5.5.9) (2025-06-25)
|
|
115
152
|
|
|
153
|
+
### Bug Fixes
|
|
116
154
|
|
|
155
|
+
- update pie-lib/pie-toolbox PD-5059 ([d6f2203](https://github.com/pie-framework/pie-elements/commit/d6f22032dcfb049ce7aeb496f94456fdd06d4139))
|
|
117
156
|
|
|
157
|
+
## [5.5.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.5.7...@pie-element/hotspot-controller@5.5.8) (2025-06-19)
|
|
118
158
|
|
|
159
|
+
### Bug Fixes
|
|
119
160
|
|
|
120
|
-
|
|
161
|
+
- update pie-lib/pie-toolbox PD-5076, PD-5063, PD-4832, PD-5059 ([16201a3](https://github.com/pie-framework/pie-elements/commit/16201a35183965fabd033bbf797ef3b438d69a85))
|
|
121
162
|
|
|
163
|
+
## [5.5.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.5.6...@pie-element/hotspot-controller@5.5.7) (2025-06-05)
|
|
122
164
|
|
|
123
165
|
### Bug Fixes
|
|
124
166
|
|
|
125
|
-
|
|
126
|
-
|
|
167
|
+
- add validation for audio content PD-4123 ([f0ce3f1](https://github.com/pie-framework/pie-elements/commit/f0ce3f19a12fd4cfe2d2159ca4af801d866dc8a9))
|
|
168
|
+
- update pie-lib pie-toolbox PD-3756 and revert changes for PD-4810 ([1e3030b](https://github.com/pie-framework/pie-elements/commit/1e3030bfdb13d0cce7b54ce0e9a109446c5ec2a2))
|
|
169
|
+
- update pie-lib-pie-toolbox PD-4810 ([6c81afc](https://github.com/pie-framework/pie-elements/commit/6c81afc6a8ad41e001bafb0bd1563164e9f32a10))
|
|
170
|
+
- update pie-lib-pie-toolbox PD-4810 ([0f9dd82](https://github.com/pie-framework/pie-elements/commit/0f9dd827c474e87770fd3bd146d870dd77d296df))
|
|
171
|
+
- update pie-lib/pie-toolbox PD-4888, PD-3542, PD-4873, PD-4679 ([9c3bdef](https://github.com/pie-framework/pie-elements/commit/9c3bdef1b68f128ecc6338ef74f25fb74c482aa6))
|
|
127
172
|
|
|
173
|
+
## [5.5.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.5.5...@pie-element/hotspot-controller@5.5.6) (2025-05-22)
|
|
128
174
|
|
|
175
|
+
### Bug Fixes
|
|
129
176
|
|
|
177
|
+
- update pie-lib/pie-toolbox PD-4555, PD-4561 ([a7c878c](https://github.com/pie-framework/pie-elements/commit/a7c878cc1c1440bc0f72acb8ca3ef2a023023066))
|
|
178
|
+
- update pie-lib/pie-toolbox PD-5009, PD-5002 ([9d5d7a3](https://github.com/pie-framework/pie-elements/commit/9d5d7a31ea06b568c346008aee2557dfd2e9a796))
|
|
130
179
|
|
|
180
|
+
## [5.5.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.5.4...@pie-element/hotspot-controller@5.5.5) (2025-05-12)
|
|
131
181
|
|
|
132
|
-
|
|
182
|
+
### Bug Fixes
|
|
183
|
+
|
|
184
|
+
- update pie-lib/pie-toolbox PD-4977 ([1f864de](https://github.com/pie-framework/pie-elements/commit/1f864de43661adf716578caf4657c4c0a0384556))
|
|
133
185
|
|
|
186
|
+
## [5.5.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.5.3...@pie-element/hotspot-controller@5.5.4) (2025-04-29)
|
|
134
187
|
|
|
135
188
|
### Bug Fixes
|
|
136
189
|
|
|
137
|
-
|
|
190
|
+
- update pie-lib/pie-toolbox PD-4976 ([ccf7412](https://github.com/pie-framework/pie-elements/commit/ccf74123f4581fc45383bdf2c181e699588b989d))
|
|
191
|
+
- update pie-lib/pie-toolbox PD-4976, PD-4980, PD-3496 ([a001d12](https://github.com/pie-framework/pie-elements/commit/a001d122ca198b23eeef9596857555eb1a76bb6b))
|
|
192
|
+
|
|
193
|
+
## [5.5.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.5.2...@pie-element/hotspot-controller@5.5.3) (2025-04-18)
|
|
138
194
|
|
|
195
|
+
### Bug Fixes
|
|
139
196
|
|
|
197
|
+
- update pie-lib/pie-toolbox PD-4967 ([cf4c095](https://github.com/pie-framework/pie-elements/commit/cf4c095f21a2e9bdf74ce5a419ad5fc8d0d7f6ca))
|
|
140
198
|
|
|
199
|
+
## [5.5.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.5.1...@pie-element/hotspot-controller@5.5.2) (2025-04-17)
|
|
141
200
|
|
|
201
|
+
### Bug Fixes
|
|
142
202
|
|
|
143
|
-
|
|
203
|
+
- update pie-lib/pie-toolbox PD-4967 ([0901bff](https://github.com/pie-framework/pie-elements/commit/0901bff14ea3398cf3930d7e41809a4d9dde0ccd))
|
|
144
204
|
|
|
205
|
+
## [5.5.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.5.0...@pie-element/hotspot-controller@5.5.1) (2025-04-10)
|
|
145
206
|
|
|
146
207
|
### Bug Fixes
|
|
147
208
|
|
|
148
|
-
|
|
209
|
+
- update pie-lib/pie-toolbox PD-4765, PD-4947 ([56312ea](https://github.com/pie-framework/pie-elements/commit/56312ea13151cc7e5d026a112fb7d86d320e4799))
|
|
149
210
|
|
|
211
|
+
# [5.5.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.4.4...@pie-element/hotspot-controller@5.5.0) (2025-04-01)
|
|
150
212
|
|
|
151
213
|
### Features
|
|
152
214
|
|
|
153
|
-
|
|
154
|
-
|
|
215
|
+
- update pie-lib/pie-toolbox PD-4938 ([4d89e6e](https://github.com/pie-framework/pie-elements/commit/4d89e6ef28c75b344b6669562f99057359bff794))
|
|
216
|
+
|
|
217
|
+
## [5.4.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.4.3...@pie-element/hotspot-controller@5.4.4) (2025-03-27)
|
|
155
218
|
|
|
219
|
+
### Bug Fixes
|
|
156
220
|
|
|
221
|
+
- update pie-lib/pie-toolbox PD-4895, PD-4093, PD-4888 ([7e6f1c5](https://github.com/pie-framework/pie-elements/commit/7e6f1c5d7bd0832f62ec8f048e04bcdbfe426779))
|
|
157
222
|
|
|
223
|
+
## [5.4.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.4.2...@pie-element/hotspot-controller@5.4.3) (2025-03-21)
|
|
158
224
|
|
|
225
|
+
### Bug Fixes
|
|
159
226
|
|
|
160
|
-
|
|
227
|
+
- update pie-toolbox PD-4917 ([03f3dab](https://github.com/pie-framework/pie-elements/commit/03f3dab963e2c5a55c8e44c472eaf00053bd111c))
|
|
161
228
|
|
|
229
|
+
## [5.4.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.4.1...@pie-element/hotspot-controller@5.4.2) (2025-03-14)
|
|
162
230
|
|
|
163
231
|
### Bug Fixes
|
|
164
232
|
|
|
165
|
-
|
|
233
|
+
- update Recharts to latest stable version PD-4900 and revert PD-4093 in pie-lib/pie-toolbox ([60b5d7c](https://github.com/pie-framework/pie-elements/commit/60b5d7c799ac4457495a77c4f7d93e3fece1476e))
|
|
234
|
+
|
|
235
|
+
## [5.4.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.4.0...@pie-element/hotspot-controller@5.4.1) (2025-03-13)
|
|
166
236
|
|
|
237
|
+
### Bug Fixes
|
|
167
238
|
|
|
239
|
+
- update pie-lib/pie-toolbox PD-4872, PD-4093, PD-4588, PD-4812, PD-4867 ([2386fb5](https://github.com/pie-framework/pie-elements/commit/2386fb5f84cadb42305ab5a0e6248bd2b2279e0a))
|
|
168
240
|
|
|
241
|
+
# [5.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.3.4...@pie-element/hotspot-controller@5.4.0) (2025-03-12)
|
|
169
242
|
|
|
243
|
+
### Features
|
|
170
244
|
|
|
171
|
-
|
|
245
|
+
- **hotspot:** add customAudioButton PD-4795 ([16177af](https://github.com/pie-framework/pie-elements/commit/16177afaa11beffcea26798b64a67eebb5c6833b))
|
|
172
246
|
|
|
247
|
+
## [5.3.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.3.3...@pie-element/hotspot-controller@5.3.4) (2025-03-03)
|
|
173
248
|
|
|
174
249
|
### Bug Fixes
|
|
175
250
|
|
|
176
|
-
|
|
251
|
+
- update pie-lib pie-toolbox PD-4795 ([c0bc482](https://github.com/pie-framework/pie-elements/commit/c0bc48285a67aaaf6f4b81057ced62bc57ee978d))
|
|
252
|
+
|
|
253
|
+
## [5.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.3.2...@pie-element/hotspot-controller@5.3.3) (2025-02-27)
|
|
177
254
|
|
|
255
|
+
### Bug Fixes
|
|
178
256
|
|
|
257
|
+
- update pie-lib/pie-toolbox PD-4820, PD-4766 ([7ccdb40](https://github.com/pie-framework/pie-elements/commit/7ccdb405614f1c310efe530d97c46fe324c0a669))
|
|
179
258
|
|
|
259
|
+
## [5.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.3.1...@pie-element/hotspot-controller@5.3.2) (2025-02-19)
|
|
180
260
|
|
|
261
|
+
### Bug Fixes
|
|
181
262
|
|
|
182
|
-
|
|
263
|
+
- update pie-lib/pie-toolbox PD-4168, PD-4723 ([921f1bf](https://github.com/pie-framework/pie-elements/commit/921f1bfff211979c859821bb15c369327cfacdf7))
|
|
183
264
|
|
|
265
|
+
## [5.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.3.0...@pie-element/hotspot-controller@5.3.1) (2025-02-14)
|
|
184
266
|
|
|
185
267
|
### Bug Fixes
|
|
186
268
|
|
|
187
|
-
|
|
269
|
+
- update pie-lib/pie-toolbox PD-4801 ([194e2d7](https://github.com/pie-framework/pie-elements/commit/194e2d7e86a02887ffe03e13c062f8d98d543fd9))
|
|
188
270
|
|
|
271
|
+
# [5.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.2.7...@pie-element/hotspot-controller@5.3.0) (2025-02-12)
|
|
189
272
|
|
|
273
|
+
### Bug Fixes
|
|
190
274
|
|
|
275
|
+
- uncomment code ([1f0ef02](https://github.com/pie-framework/pie-elements/commit/1f0ef02d0c1a4da68b531b7275addb7a746fb0b6))
|
|
276
|
+
- update pie-lib/pie-toolbox PD-4717 ([4bc5bea](https://github.com/pie-framework/pie-elements/commit/4bc5beafe3c04efe64809ff95c5863a6142cbb02))
|
|
277
|
+
- **hotspot:** ensure correct response is only included in the model for evaluate mode and for instructor role in view mode, refactor and add corresponding tests PD-4785 ([e6bbf75](https://github.com/pie-framework/pie-elements/commit/e6bbf7589f3257d1bbf13ef33302c0d8e1c32f49))
|
|
191
278
|
|
|
279
|
+
### Features
|
|
192
280
|
|
|
193
|
-
|
|
281
|
+
- **hotspot:** autoplay audio for STAR PD-4790 ([eba8bc4](https://github.com/pie-framework/pie-elements/commit/eba8bc4f98c8a9ee11e4617e804ee70d8172332d))
|
|
194
282
|
|
|
283
|
+
## [5.2.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.2.6...@pie-element/hotspot-controller@5.2.7) (2025-02-06)
|
|
195
284
|
|
|
196
285
|
### Bug Fixes
|
|
197
286
|
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
* update pie-lib-pie-toolbox PD-4810 ([0f9dd82](https://github.com/pie-framework/pie-elements/commit/0f9dd827c474e87770fd3bd146d870dd77d296df))
|
|
202
|
-
* update pie-lib/pie-toolbox PD-4888, PD-3542, PD-4873, PD-4679 ([9c3bdef](https://github.com/pie-framework/pie-elements/commit/9c3bdef1b68f128ecc6338ef74f25fb74c482aa6))
|
|
287
|
+
- update pie-lib/pie-toolbox PD-4753, PD-4618, PD-4641 ([f73f2be](https://github.com/pie-framework/pie-elements/commit/f73f2bec76321a677fff71e575d19c0f2e5b1d9c))
|
|
288
|
+
|
|
289
|
+
## [5.2.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.2.5...@pie-element/hotspot-controller@5.2.6) (2025-01-27)
|
|
203
290
|
|
|
291
|
+
### Bug Fixes
|
|
204
292
|
|
|
293
|
+
- update pie-lib/pie-toolbox PD-3995, PD-4679 ([87dadfa](https://github.com/pie-framework/pie-elements/commit/87dadfacfae3b06690edaf0b3c4a5ea09981b153))
|
|
205
294
|
|
|
295
|
+
## [5.2.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.2.4...@pie-element/hotspot-controller@5.2.5) (2025-01-27)
|
|
206
296
|
|
|
297
|
+
### Bug Fixes
|
|
207
298
|
|
|
208
|
-
|
|
299
|
+
- update pie-lib/pie-toolbox PD-4688, PD-4589, PD-4616 ([754480c](https://github.com/pie-framework/pie-elements/commit/754480c6c747fa9123d374df0287a644c8376939))
|
|
209
300
|
|
|
301
|
+
## [5.2.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.2.3...@pie-element/hotspot-controller@5.2.4) (2025-01-22)
|
|
210
302
|
|
|
211
303
|
### Bug Fixes
|
|
212
304
|
|
|
213
|
-
|
|
214
|
-
* update pie-lib/pie-toolbox PD-5009, PD-5002 ([9d5d7a3](https://github.com/pie-framework/pie-elements/commit/9d5d7a31ea06b568c346008aee2557dfd2e9a796))
|
|
305
|
+
- update pie-lib/pie-toolbox PD-4452, PD-3872, PD-4689, PD-4704, PD-4588, PD-4698, PD-4618 ([a97329c](https://github.com/pie-framework/pie-elements/commit/a97329cf73619a3a5aae8d492edb8d6e5c5730df))
|
|
215
306
|
|
|
307
|
+
## [5.2.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.2.2...@pie-element/hotspot-controller@5.2.3) (2025-01-22)
|
|
216
308
|
|
|
309
|
+
### Bug Fixes
|
|
217
310
|
|
|
311
|
+
- replace mra package with mr, includes accessibility PD-4527 ([c83bd43](https://github.com/pie-framework/pie-elements/commit/c83bd438d3a0e94d524c04364fddd3a8edc8876e))
|
|
218
312
|
|
|
313
|
+
## [5.2.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.2.1...@pie-element/hotspot-controller@5.2.2) (2025-01-06)
|
|
219
314
|
|
|
220
|
-
|
|
315
|
+
### Bug Fixes
|
|
316
|
+
|
|
317
|
+
- update pie-lib/pie-toolbox PD-4555, PD-4660, PD-4426, PD-4607, PD-4394, PD-4521 ([e4928b4](https://github.com/pie-framework/pie-elements/commit/e4928b4f9ac268a892b382045f76ae4eac6b458e))
|
|
221
318
|
|
|
319
|
+
## [5.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.2.0...@pie-element/hotspot-controller@5.2.1) (2024-12-20)
|
|
222
320
|
|
|
223
321
|
### Bug Fixes
|
|
224
322
|
|
|
225
|
-
|
|
323
|
+
- update pie-lib/pie-toolbox PD-3843, PD-4518, PD-4588, PD-4210, PD-4362, PD-4618 ([c213141](https://github.com/pie-framework/pie-elements/commit/c2131410e19605093ca77afb8234b31708db01b1))
|
|
226
324
|
|
|
325
|
+
# [5.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.1.4...@pie-element/hotspot-controller@5.2.0) (2024-12-10)
|
|
227
326
|
|
|
327
|
+
### Bug Fixes
|
|
228
328
|
|
|
329
|
+
- update pie-lib/pie-toolbox PD-4388, PD-4548 ([0e7dad4](https://github.com/pie-framework/pie-elements/commit/0e7dad48f541e7c5c10212e58c6ae846c60be93c))
|
|
229
330
|
|
|
331
|
+
### Features
|
|
230
332
|
|
|
231
|
-
|
|
333
|
+
- **categorize, hotspot, image-cloze-association:** extent fontSizeFactor to new elements PD-4389 ([c6480fb](https://github.com/pie-framework/pie-elements/commit/c6480fb201b6fd35edf50f46ef8e50b9f711f4be))
|
|
232
334
|
|
|
335
|
+
## [5.1.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.1.3...@pie-element/hotspot-controller@5.1.4) (2024-12-05)
|
|
233
336
|
|
|
234
337
|
### Bug Fixes
|
|
235
338
|
|
|
236
|
-
|
|
237
|
-
* update pie-lib/pie-toolbox PD-4976, PD-4980, PD-3496 ([a001d12](https://github.com/pie-framework/pie-elements/commit/a001d122ca198b23eeef9596857555eb1a76bb6b))
|
|
339
|
+
- update pie-lib/pie-toolbox PD-4393, PD-4388, PD-4550, PD-4394, PD-4165 ([afafda4](https://github.com/pie-framework/pie-elements/commit/afafda4a504ecae6e4c85a45817b7f73a4b81244))
|
|
238
340
|
|
|
341
|
+
## [5.1.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.1.2...@pie-element/hotspot-controller@5.1.3) (2024-11-29)
|
|
239
342
|
|
|
343
|
+
### Bug Fixes
|
|
240
344
|
|
|
345
|
+
- update pie-lib/pie-toolbox PD-4387, PD-4388 ([0416caf](https://github.com/pie-framework/pie-elements/commit/0416caf1188a62367a893c1e2bcfd138303c1d6d))
|
|
241
346
|
|
|
347
|
+
## [5.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.1.1...@pie-element/hotspot-controller@5.1.2) (2024-11-15)
|
|
242
348
|
|
|
243
|
-
|
|
349
|
+
### Bug Fixes
|
|
350
|
+
|
|
351
|
+
- update pie-lib/pie-toolbox PD-4401, PD-4441, PD-4319, PD-4394, PD-3687 ([f1f0af3](https://github.com/pie-framework/pie-elements/commit/f1f0af31f3c6fba54ca3a378dea3b8b32d8ebb87))
|
|
244
352
|
|
|
353
|
+
## [5.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.1.0...@pie-element/hotspot-controller@5.1.1) (2024-11-01)
|
|
245
354
|
|
|
246
355
|
### Bug Fixes
|
|
247
356
|
|
|
248
|
-
|
|
357
|
+
- update pie-lib PD-4361 ([0ed2a71](https://github.com/pie-framework/pie-elements/commit/0ed2a7156d3fef55b9c25ab9c60d0df836b86ee5))
|
|
358
|
+
- update pie-lib/pie-toolbox PD-4319, PD-1460, PD-4004 ([db03ac7](https://github.com/pie-framework/pie-elements/commit/db03ac7473960cedef2c83c79920e77db06f605d))
|
|
359
|
+
- update pie-lib/pie-toolbox PD-4372 ([dc73470](https://github.com/pie-framework/pie-elements/commit/dc734705a6aefa0f69eb29d3d695c57e31671ab8))
|
|
249
360
|
|
|
361
|
+
# [5.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.0.7...@pie-element/hotspot-controller@5.1.0) (2024-10-29)
|
|
250
362
|
|
|
363
|
+
### Bug Fixes
|
|
251
364
|
|
|
365
|
+
- fixed all tests after updating pie-toolbox [PD-1460] ([9f5293d](https://github.com/pie-framework/pie-elements/commit/9f5293d618edc06f69fabb27a042ec5eee66e151))
|
|
252
366
|
|
|
367
|
+
### Features
|
|
253
368
|
|
|
254
|
-
|
|
369
|
+
- used configlayout, preview layout or uilayout to enable extraCSSRules inside author and player elements [PD-1460] ([eeebb02](https://github.com/pie-framework/pie-elements/commit/eeebb02f200208620c1af56366a22bf65944ba3e))
|
|
255
370
|
|
|
371
|
+
## [5.0.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.0.6...@pie-element/hotspot-controller@5.0.7) (2024-10-28)
|
|
256
372
|
|
|
257
373
|
### Bug Fixes
|
|
258
374
|
|
|
259
|
-
|
|
375
|
+
- update pie-lib/pie-toolbox PD-4322, PD-4215, PD-4209 ([08eac95](https://github.com/pie-framework/pie-elements/commit/08eac95fd3e1a79b420fbc88cd0c7436ba284c3c))
|
|
260
376
|
|
|
377
|
+
## [5.0.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.0.5...@pie-element/hotspot-controller@5.0.6) (2024-10-22)
|
|
261
378
|
|
|
379
|
+
### Bug Fixes
|
|
262
380
|
|
|
381
|
+
- update pie-toolbox PD-4220, PD-4194, PD-4201, PD-4189, PD-4193, PD-4018, PD-4187 ([47b14fb](https://github.com/pie-framework/pie-elements/commit/47b14fbd80a04494511bc0ae44196b4e0175f0bb))
|
|
263
382
|
|
|
383
|
+
## [5.0.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.0.4...@pie-element/hotspot-controller@5.0.5) (2024-10-15)
|
|
264
384
|
|
|
265
|
-
|
|
385
|
+
### Bug Fixes
|
|
386
|
+
|
|
387
|
+
- added complexjs as dependency [PD-4200] ([da393d5](https://github.com/pie-framework/pie-elements/commit/da393d5ae8ef52f17b47ccf32967410a9263180e))
|
|
388
|
+
- added resolutions in controller as well [PD-4200] ([020edc5](https://github.com/pie-framework/pie-elements/commit/020edc5f0bb5de6bf8f344efd0a3b9b0b16b9dc7))
|
|
389
|
+
- reverting changes since the issue is fixed in the latest complex.js [PD-4200] ([42c9f21](https://github.com/pie-framework/pie-elements/commit/42c9f216c4d29b051156489beb43fa7093667eb7))
|
|
390
|
+
- update pie toolbox ([ba98798](https://github.com/pie-framework/pie-elements/commit/ba987984ebc2f856950611874436cf148a9a3963))
|
|
391
|
+
- update pie-lib/pie-toolbox PD-4200 ([a41a620](https://github.com/pie-framework/pie-elements/commit/a41a62036afe6aa8ef70493900c08875cff8eec2))
|
|
392
|
+
- update pie-lib/pie-toolbox PD-4241 ([b24d439](https://github.com/pie-framework/pie-elements/commit/b24d43945457792d403d0da62ce3e4b5b898ca46))
|
|
266
393
|
|
|
394
|
+
## [5.0.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.0.3...@pie-element/hotspot-controller@5.0.4) (2024-10-03)
|
|
267
395
|
|
|
268
396
|
### Bug Fixes
|
|
269
397
|
|
|
270
|
-
|
|
398
|
+
- update pie-toolbox and @pie-lib/pie-toolbox-module PD-4018 ([2d60730](https://github.com/pie-framework/pie-elements/commit/2d60730eb6c3ade08e522c58218cff2f6cb496cb))
|
|
399
|
+
|
|
400
|
+
## [5.0.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.0.2...@pie-element/hotspot-controller@5.0.3) (2024-10-01)
|
|
271
401
|
|
|
402
|
+
### Bug Fixes
|
|
272
403
|
|
|
404
|
+
- update pie-toolbox and @pie-lib/pie-toolbox-module ([ddb9d44](https://github.com/pie-framework/pie-elements/commit/ddb9d444243b881b3a468ecfb5bab551511a2495))
|
|
273
405
|
|
|
406
|
+
## [5.0.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.0.1...@pie-element/hotspot-controller@5.0.2) (2024-10-01)
|
|
274
407
|
|
|
408
|
+
### Bug Fixes
|
|
275
409
|
|
|
276
|
-
|
|
410
|
+
- **hotspot:** delete default values used for testing PD-4029 ([c39cb8f](https://github.com/pie-framework/pie-elements/commit/c39cb8f7bd6fbafb60c2a03dce168642cbaeedda))
|
|
411
|
+
- **hotspot:** handle selectedHotapotColor and hoverOutlineColor student view PD-4029 ([ab4867b](https://github.com/pie-framework/pie-elements/commit/ab4867bc5659b94b6133843082a664fcb7e9aa5c))
|
|
277
412
|
|
|
413
|
+
## [5.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.0.0...@pie-element/hotspot-controller@5.0.1) (2024-09-26)
|
|
278
414
|
|
|
279
|
-
###
|
|
415
|
+
### Bug Fixes
|
|
280
416
|
|
|
281
|
-
|
|
417
|
+
- update pie-toolbox and @pie-lib/pie-toolbox-module ([c363be4](https://github.com/pie-framework/pie-elements/commit/c363be48f9428024d4acc1eed05cd598840ffe3a))
|
|
418
|
+
- update pie-toolbox and @pie-lib/pie-toolbox-module ([fe83296](https://github.com/pie-framework/pie-elements/commit/fe83296445f9785e67c9643642221b28b4485921))
|
|
419
|
+
- update pie-toolbox and @pie-lib/pie-toolbox-module ([321147b](https://github.com/pie-framework/pie-elements/commit/321147b4072f2a6200d155f7f09c712960fe078c))
|
|
420
|
+
- update pie-toolbox and @pie-lib/pie-toolbox-module ([d3e24e8](https://github.com/pie-framework/pie-elements/commit/d3e24e83d74e93f0720eff8841ebac1d0493b769))
|
|
421
|
+
- update pie-toolbox and @pie-lib/pie-toolbox-module ([a3dd8d6](https://github.com/pie-framework/pie-elements/commit/a3dd8d65a754acadd95134ee825b769355a08a45))
|
|
282
422
|
|
|
423
|
+
# [5.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.20.6...@pie-element/hotspot-controller@5.0.0) (2024-09-25)
|
|
283
424
|
|
|
425
|
+
### Bug Fixes
|
|
284
426
|
|
|
427
|
+
- update math-rendering-accessible ([a5588cf](https://github.com/pie-framework/pie-elements/commit/a5588cfdccb40e970e93736dea60de4b01f1a85d))
|
|
428
|
+
- update pie-toolbox and @pie-lib/pie-toolbox-module ([8fa1e13](https://github.com/pie-framework/pie-elements/commit/8fa1e132d97ccc92093e789e4349610c2be21edb))
|
|
285
429
|
|
|
430
|
+
### Features
|
|
286
431
|
|
|
287
|
-
|
|
432
|
+
- update math-rendering-accessible PD-3989, PD-4103, PD-3865 ([01590fe](https://github.com/pie-framework/pie-elements/commit/01590fe0f6ac36d14983cc144ef03f9cff397dfc))
|
|
288
433
|
|
|
434
|
+
### BREAKING CHANGES
|
|
289
435
|
|
|
290
|
-
|
|
436
|
+
- big refactoring on the implementation of math-rendering-accessible
|
|
291
437
|
|
|
292
|
-
|
|
438
|
+
## [4.20.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.20.5...@pie-element/hotspot-controller@4.20.6) (2024-09-16)
|
|
293
439
|
|
|
440
|
+
### Bug Fixes
|
|
294
441
|
|
|
442
|
+
- update pie-lib/pie-toolbox PD-4061, PD-4021 ([ef8e3d0](https://github.com/pie-framework/pie-elements/commit/ef8e3d0d5fca4ca57c89c7c8ef8e74ec5600551e))
|
|
295
443
|
|
|
444
|
+
## [4.20.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.20.4...@pie-element/hotspot-controller@4.20.5) (2024-09-16)
|
|
296
445
|
|
|
446
|
+
### Bug Fixes
|
|
297
447
|
|
|
298
|
-
|
|
448
|
+
- experiment with mra ([d62f2b4](https://github.com/pie-framework/pie-elements/commit/d62f2b4526eeda1f90d3660d97bf278ac1ae72da))
|
|
449
|
+
- experiment with mra ([d9487a5](https://github.com/pie-framework/pie-elements/commit/d9487a5394c9b71bb7d7d69a836ed629ae13f7b1))
|
|
450
|
+
- experiment with mra ([a2e933c](https://github.com/pie-framework/pie-elements/commit/a2e933cd27bb052046e245672d3e01cb5ba1b518))
|
|
451
|
+
- update pie-lib/pie-toolbox PD-4027, PD-4042,PD-4039, PD-4073 ([68306be](https://github.com/pie-framework/pie-elements/commit/68306be02254a6019916637fd9b75427cae1c0ed))
|
|
299
452
|
|
|
453
|
+
## [4.20.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.20.3...@pie-element/hotspot-controller@4.20.4) (2024-09-10)
|
|
300
454
|
|
|
301
455
|
### Bug Fixes
|
|
302
456
|
|
|
303
|
-
|
|
457
|
+
- update pie-lib/pie-toolbox PD-3652, PD-2451 ([8a00529](https://github.com/pie-framework/pie-elements/commit/8a00529f67a8e27e78e4c16de5d04e11ec8c4d16))
|
|
304
458
|
|
|
459
|
+
## [4.20.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.20.2...@pie-element/hotspot-controller@4.20.3) (2024-09-10)
|
|
305
460
|
|
|
461
|
+
### Bug Fixes
|
|
306
462
|
|
|
463
|
+
- update pie-lib/pie-toolbox: ability to disable table and lists PD-4065 ([49f1ce4](https://github.com/pie-framework/pie-elements/commit/49f1ce4000bc45d0eb8032f6538c0c780940a503))
|
|
307
464
|
|
|
465
|
+
## [4.20.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.20.1...@pie-element/hotspot-controller@4.20.2) (2024-08-29)
|
|
308
466
|
|
|
309
|
-
|
|
467
|
+
### Bug Fixes
|
|
468
|
+
|
|
469
|
+
- trigger build PD-4052 ([24783c4](https://github.com/pie-framework/pie-elements/commit/24783c43a97db9c9a2b665f2c784ccd4ce8511ca))
|
|
310
470
|
|
|
471
|
+
## [4.20.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.20.0...@pie-element/hotspot-controller@4.20.1) (2024-08-29)
|
|
311
472
|
|
|
312
473
|
### Bug Fixes
|
|
313
474
|
|
|
314
|
-
|
|
475
|
+
- update pie-lib/pie-toolbox PD-4052 ([ebbbe2d](https://github.com/pie-framework/pie-elements/commit/ebbbe2dc584829abe8f1b4d6e8a9031e27f30dce))
|
|
315
476
|
|
|
477
|
+
# [4.20.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.19.3...@pie-element/hotspot-controller@4.20.0) (2024-08-27)
|
|
316
478
|
|
|
479
|
+
### Features
|
|
317
480
|
|
|
481
|
+
- update pie-lib PD-4026, PD-3990 ([395d7d7](https://github.com/pie-framework/pie-elements/commit/395d7d779caae57a810cc19c1d676319d1c19ded))
|
|
318
482
|
|
|
483
|
+
## [4.19.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.19.2...@pie-element/hotspot-controller@4.19.3) (2024-08-22)
|
|
319
484
|
|
|
320
|
-
|
|
485
|
+
### Bug Fixes
|
|
321
486
|
|
|
487
|
+
- update pie-lib PD-4021 ([07d6e85](https://github.com/pie-framework/pie-elements/commit/07d6e8560ddfe25f95dfbafc2d3155b93eb85404))
|
|
488
|
+
|
|
489
|
+
## [4.19.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.19.1...@pie-element/hotspot-controller@4.19.2) (2024-08-19)
|
|
322
490
|
|
|
323
491
|
### Bug Fixes
|
|
324
492
|
|
|
325
|
-
|
|
493
|
+
- update pie-lib PD-3855, PD-3841 ([29ed50e](https://github.com/pie-framework/pie-elements/commit/29ed50ec75c3deedfe765f776dc24a6ecd6af284))
|
|
494
|
+
|
|
495
|
+
## [4.19.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.19.0...@pie-element/hotspot-controller@4.19.1) (2024-08-06)
|
|
326
496
|
|
|
497
|
+
### Bug Fixes
|
|
327
498
|
|
|
499
|
+
- update pie-lib ([6ed3619](https://github.com/pie-framework/pie-elements/commit/6ed3619e0c670165ab45518e5bdbb40586c5adf8))
|
|
328
500
|
|
|
501
|
+
# [4.19.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.18.0...@pie-element/hotspot-controller@4.19.0) (2024-08-06)
|
|
329
502
|
|
|
503
|
+
### Features
|
|
330
504
|
|
|
331
|
-
|
|
505
|
+
- update pie-lib PD-3996, PD-3792, Pd-3791, PD-3841, PD-3956, PD-3569, PD-3855 ([6343d1b](https://github.com/pie-framework/pie-elements/commit/6343d1b00c5a4a3d88de70ed13a8aa5c1a43002d))
|
|
332
506
|
|
|
507
|
+
# [4.18.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.17.6...@pie-element/hotspot-controller@4.18.0) (2024-07-26)
|
|
333
508
|
|
|
334
509
|
### Features
|
|
335
510
|
|
|
336
|
-
|
|
511
|
+
- update pie-lib/pie-toolbox PD-2451, PD-3950, PD-3845 ([278d705](https://github.com/pie-framework/pie-elements/commit/278d7052dc7c17796ba196a2e397739e2e882b7f))
|
|
512
|
+
- update pie-lib/pie-toolbox PD-3944, PD-3946, Pd-2450 ([ac34d93](https://github.com/pie-framework/pie-elements/commit/ac34d93fcc97e79cacddcd38c7509f3c96b69976))
|
|
513
|
+
|
|
514
|
+
## [4.17.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.17.5...@pie-element/hotspot-controller@4.17.6) (2024-07-19)
|
|
337
515
|
|
|
516
|
+
### Bug Fixes
|
|
338
517
|
|
|
518
|
+
- udate pie-lib/pie-toolbox to revert PD-3630 ([7858313](https://github.com/pie-framework/pie-elements/commit/785831349bb7830a3df8f35971958ebf616527f3))
|
|
339
519
|
|
|
520
|
+
## [4.17.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.17.4...@pie-element/hotspot-controller@4.17.5) (2024-07-17)
|
|
340
521
|
|
|
522
|
+
### Bug Fixes
|
|
341
523
|
|
|
342
|
-
|
|
524
|
+
- udate pie-lib/pie-toolbox PD-3945, PD-3627 ([c37e8aa](https://github.com/pie-framework/pie-elements/commit/c37e8aaa6c7e561707a2ed9ec76deb313380c6ba))
|
|
343
525
|
|
|
526
|
+
## [4.17.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.17.3...@pie-element/hotspot-controller@4.17.4) (2024-07-16)
|
|
344
527
|
|
|
345
528
|
### Bug Fixes
|
|
346
529
|
|
|
347
|
-
|
|
530
|
+
- udate pie-lib/pie-toolbox PD-3622, PD-3627, PD-3629, PD-3630, PD-3631 ([1e50c85](https://github.com/pie-framework/pie-elements/commit/1e50c859e2b5133e1ff9ef81f4169e49e76d9e4b))
|
|
348
531
|
|
|
532
|
+
## [4.17.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.17.2...@pie-element/hotspot-controller@4.17.3) (2024-07-10)
|
|
349
533
|
|
|
534
|
+
### Bug Fixes
|
|
350
535
|
|
|
536
|
+
- update pie-lib/pie-toolbox PD-3799, PD-3924, PD-3878 ([2f276fb](https://github.com/pie-framework/pie-elements/commit/2f276fb29f121005cecd81459469ff9f5a06740d))
|
|
351
537
|
|
|
538
|
+
## [4.17.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.17.1...@pie-element/hotspot-controller@4.17.2) (2024-07-04)
|
|
352
539
|
|
|
353
|
-
|
|
540
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
354
541
|
|
|
542
|
+
## [4.17.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.17.0...@pie-element/hotspot-controller@4.17.1) (2024-06-26)
|
|
355
543
|
|
|
356
544
|
### Bug Fixes
|
|
357
545
|
|
|
358
|
-
|
|
546
|
+
- update pie-lib/pie-toolbox PD-3028, PD-3773 ([61bc47c](https://github.com/pie-framework/pie-elements/commit/61bc47c18d2becea321f18462f5cd486db0115e1))
|
|
547
|
+
|
|
548
|
+
# [4.17.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.16.0...@pie-element/hotspot-controller@4.17.0) (2024-06-24)
|
|
359
549
|
|
|
550
|
+
### Features
|
|
360
551
|
|
|
552
|
+
- update pie-lib/pie-toolbox PD-3868, PD-3771, PD-3772, PD-3775 ([4475c65](https://github.com/pie-framework/pie-elements/commit/4475c658be5489a0f66be27af24e01c03b32b294))
|
|
361
553
|
|
|
554
|
+
# [4.16.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.15.0...@pie-element/hotspot-controller@4.16.0) (2024-06-24)
|
|
362
555
|
|
|
556
|
+
### Features
|
|
363
557
|
|
|
364
|
-
|
|
558
|
+
- update pie-lib/pie-toolbox ability to enabled/disable blockquote and h3 (PD-3772, PD-3771) and PD-3813 ([c2cfd9b](https://github.com/pie-framework/pie-elements/commit/c2cfd9b323acdf3d456c05806c1f97f9067bb4fe))
|
|
365
559
|
|
|
560
|
+
# [4.15.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.14.0...@pie-element/hotspot-controller@4.15.0) (2024-06-19)
|
|
366
561
|
|
|
367
562
|
### Bug Fixes
|
|
368
563
|
|
|
369
|
-
|
|
564
|
+
- update pie-lib/pie-toolbox fix build ([75777e1](https://github.com/pie-framework/pie-elements/commit/75777e189786cb9041bd0d2f843c023a1ea5b8b1))
|
|
370
565
|
|
|
566
|
+
### Features
|
|
371
567
|
|
|
568
|
+
- update pie-lib/pie-toolbox PD-3179, PD-3206, PD-3186, PD-1311, PD-3771, PD-3772, PD-3817 ([14e175c](https://github.com/pie-framework/pie-elements/commit/14e175cd62770ab4d7ba8bf83e6d0c9ad683f595))
|
|
372
569
|
|
|
570
|
+
# [4.14.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.13.2...@pie-element/hotspot-controller@4.14.0) (2024-06-13)
|
|
373
571
|
|
|
572
|
+
### Features
|
|
374
573
|
|
|
375
|
-
|
|
574
|
+
- update pie-toolbox PD-3735 ([7a38768](https://github.com/pie-framework/pie-elements/commit/7a38768b320640de853e90e137082e141ee4ad1f))
|
|
376
575
|
|
|
576
|
+
## [4.13.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.13.1...@pie-element/hotspot-controller@4.13.2) (2024-06-13)
|
|
377
577
|
|
|
378
578
|
### Bug Fixes
|
|
379
579
|
|
|
380
|
-
|
|
580
|
+
- update pie-toolbox PD-3180, PD-3391 ([f888f35](https://github.com/pie-framework/pie-elements/commit/f888f350468fca91379d4216c9c696c30695add3))
|
|
581
|
+
|
|
582
|
+
## [4.13.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.13.0...@pie-element/hotspot-controller@4.13.1) (2024-06-13)
|
|
381
583
|
|
|
584
|
+
### Bug Fixes
|
|
382
585
|
|
|
586
|
+
- update pie-toolbox PD-3839 ([dcdc0bf](https://github.com/pie-framework/pie-elements/commit/dcdc0bf9a7cc341d257de831e87915fb9425e4a2))
|
|
383
587
|
|
|
588
|
+
# [4.13.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.12.1...@pie-element/hotspot-controller@4.13.0) (2024-06-03)
|
|
384
589
|
|
|
590
|
+
### Features
|
|
385
591
|
|
|
386
|
-
|
|
592
|
+
- update pie-lib/pie-toolbox PD-3733, PD-2455 ([a507dcb](https://github.com/pie-framework/pie-elements/commit/a507dcb30bf2de72614aaba8ee576edf0c953d05))
|
|
387
593
|
|
|
594
|
+
## [4.12.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.12.0...@pie-element/hotspot-controller@4.12.1) (2024-06-03)
|
|
388
595
|
|
|
389
596
|
### Bug Fixes
|
|
390
597
|
|
|
391
|
-
|
|
392
|
-
* update pie-lib/pie-toolbox PD-4717 ([4bc5bea](https://github.com/pie-framework/pie-elements/commit/4bc5beafe3c04efe64809ff95c5863a6142cbb02))
|
|
393
|
-
* **hotspot:** ensure correct response is only included in the model for evaluate mode and for instructor role in view mode, refactor and add corresponding tests PD-4785 ([e6bbf75](https://github.com/pie-framework/pie-elements/commit/e6bbf7589f3257d1bbf13ef33302c0d8e1c32f49))
|
|
598
|
+
- update pie-lib/pie-toolbox PD-3788, PD-1273 ([f4b6aba](https://github.com/pie-framework/pie-elements/commit/f4b6aba5c741fbf6305dba71bf47d2226f39f2ee))
|
|
394
599
|
|
|
600
|
+
# [4.12.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.11.6...@pie-element/hotspot-controller@4.12.0) (2024-05-27)
|
|
395
601
|
|
|
396
602
|
### Features
|
|
397
603
|
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
604
|
+
- update pie-lib/pie-toolbox PD-3736, PD-3734, PD-2488 ([3c44f06](https://github.com/pie-framework/pie-elements/commit/3c44f06d96e609246acde257a8223dc16192c2c4))
|
|
401
605
|
|
|
606
|
+
## [4.11.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.11.5...@pie-element/hotspot-controller@4.11.6) (2024-05-27)
|
|
402
607
|
|
|
608
|
+
### Bug Fixes
|
|
403
609
|
|
|
404
|
-
|
|
610
|
+
- update pie-lib/pie-toolbox PD-3740, PD-2126 ([5573a4e](https://github.com/pie-framework/pie-elements/commit/5573a4e2f4524839525679df319bb92c7c841916))
|
|
405
611
|
|
|
612
|
+
## [4.11.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.11.4...@pie-element/hotspot-controller@4.11.5) (2024-05-14)
|
|
406
613
|
|
|
407
614
|
### Bug Fixes
|
|
408
615
|
|
|
409
|
-
|
|
616
|
+
- update pie-toolbox PD-3640 ([707c240](https://github.com/pie-framework/pie-elements/commit/707c24031bc0cb05bb070605d4bc27384334eaac))
|
|
410
617
|
|
|
618
|
+
## [4.11.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.11.3...@pie-element/hotspot-controller@4.11.4) (2024-05-13)
|
|
411
619
|
|
|
620
|
+
### Bug Fixes
|
|
412
621
|
|
|
622
|
+
- update pie-lib/pie-toolbox PD-3650, PD-3651, PD-3621, PD-3620, PD-2127,PD-3709, PD-3726, PD-3191 ([2ef6881](https://github.com/pie-framework/pie-elements/commit/2ef688118b9099c7338cbe88afcdeed228fae11e))
|
|
413
623
|
|
|
624
|
+
## [4.11.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.11.2...@pie-element/hotspot-controller@4.11.3) (2024-05-07)
|
|
414
625
|
|
|
415
|
-
|
|
626
|
+
### Bug Fixes
|
|
416
627
|
|
|
628
|
+
- update pie-lib/pie-toolbox PD-3731 ([2b5d6c9](https://github.com/pie-framework/pie-elements/commit/2b5d6c932280981a0fd636bcb30d7fbc181ac311))
|
|
417
629
|
|
|
418
|
-
|
|
630
|
+
## [4.11.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.11.1...@pie-element/hotspot-controller@4.11.2) (2024-05-03)
|
|
419
631
|
|
|
420
|
-
|
|
632
|
+
### Bug Fixes
|
|
421
633
|
|
|
634
|
+
- update pie-lib/pie-toolbox PD-3537, PD-3538, PD-3539, PD-3540,PD-3680 ([d9cb471](https://github.com/pie-framework/pie-elements/commit/d9cb47148a8fec71d5de29f2cf2b92ec7b479470))
|
|
422
635
|
|
|
636
|
+
## [4.11.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.11.0...@pie-element/hotspot-controller@4.11.1) (2024-04-29)
|
|
423
637
|
|
|
638
|
+
### Bug Fixes
|
|
424
639
|
|
|
640
|
+
- update pie-lib/pie-toolbox PD-3683, PD-3644 ([73734c5](https://github.com/pie-framework/pie-elements/commit/73734c50a1e4fcda6be4f67c725816d75aea222f))
|
|
425
641
|
|
|
426
|
-
|
|
642
|
+
# [4.11.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.10.1...@pie-element/hotspot-controller@4.11.0) (2024-04-22)
|
|
427
643
|
|
|
644
|
+
### Features
|
|
428
645
|
|
|
429
|
-
|
|
646
|
+
- update pie-lib/pie-toolbox PD-2449 ([2a0b40a](https://github.com/pie-framework/pie-elements/commit/2a0b40a826f0338b5eda2e8301f79870be3d0073))
|
|
430
647
|
|
|
431
|
-
|
|
648
|
+
## [4.10.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.10.0...@pie-element/hotspot-controller@4.10.1) (2024-04-22)
|
|
432
649
|
|
|
650
|
+
### Bug Fixes
|
|
433
651
|
|
|
652
|
+
- update pie-lib/pie-toolbox PD-3644, PD-3673 ([5e28ce0](https://github.com/pie-framework/pie-elements/commit/5e28ce0dab4a7ecd93ef7bba45ddb20f768b450b))
|
|
434
653
|
|
|
654
|
+
# [4.10.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.9.1...@pie-element/hotspot-controller@4.10.0) (2024-04-18)
|
|
435
655
|
|
|
656
|
+
### Features
|
|
436
657
|
|
|
437
|
-
|
|
658
|
+
- update pie-lib/pie-toolbox SC-30530, SC-30682, PD-3607, PD-3655 ([f08bccf](https://github.com/pie-framework/pie-elements/commit/f08bccf86fcb430e75e410116b000b3affc252c0))
|
|
438
659
|
|
|
660
|
+
## [4.9.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.9.0...@pie-element/hotspot-controller@4.9.1) (2024-04-01)
|
|
439
661
|
|
|
440
|
-
|
|
662
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
441
663
|
|
|
442
|
-
|
|
664
|
+
# [4.9.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.8.0...@pie-element/hotspot-controller@4.9.0) (2024-04-01)
|
|
443
665
|
|
|
666
|
+
### Features
|
|
444
667
|
|
|
668
|
+
- **inline-dropdown:** upgrade pie-toolbox PD-2465 ([828d1c1](https://github.com/pie-framework/pie-elements/commit/828d1c1bc9e9221c1e141baaa8f89a4929ad0eb9))
|
|
445
669
|
|
|
670
|
+
# [4.8.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.7.0...@pie-element/hotspot-controller@4.8.0) (2024-04-01)
|
|
446
671
|
|
|
672
|
+
### Features
|
|
447
673
|
|
|
448
|
-
|
|
674
|
+
- update pie-lib/pie-toolbox PD-3567, PD-3426 ([2a706d7](https://github.com/pie-framework/pie-elements/commit/2a706d799bb000c60b7a77a790de9dc66345ebf5))
|
|
449
675
|
|
|
676
|
+
# [4.7.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.6.1...@pie-element/hotspot-controller@4.7.0) (2024-03-28)
|
|
450
677
|
|
|
451
678
|
### Bug Fixes
|
|
452
679
|
|
|
453
|
-
|
|
454
|
-
|
|
680
|
+
- Add sanity check for score calculation on shapes PD-3604 ([abf6312](https://github.com/pie-framework/pie-elements/commit/abf6312044c6adf45fde83319f4dbe9ee752309f))
|
|
681
|
+
- update pie-lib/pie-toolbox PD-3603 ([8fc82ab](https://github.com/pie-framework/pie-elements/commit/8fc82ab19baf45aecb40e4b364a7c307a9840130))
|
|
455
682
|
|
|
683
|
+
### Features
|
|
456
684
|
|
|
685
|
+
- **hotspot:** added required fields functionality PD-3580 ([7ab62d4](https://github.com/pie-framework/pie-elements/commit/7ab62d4380bcab46649a0780afcef4ddc8e7730d))
|
|
457
686
|
|
|
687
|
+
## [4.6.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.6.0...@pie-element/hotspot-controller@4.6.1) (2024-03-26)
|
|
458
688
|
|
|
459
|
-
|
|
689
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
460
690
|
|
|
691
|
+
# [4.6.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.5.0...@pie-element/hotspot-controller@4.6.0) (2024-03-20)
|
|
461
692
|
|
|
462
693
|
### Bug Fixes
|
|
463
694
|
|
|
464
|
-
|
|
695
|
+
- updated pie-lib/pie-toolbox SC-28500 ([a8e4e6a](https://github.com/pie-framework/pie-elements/commit/a8e4e6ab27584435ce7ac3e964ccac2747402777))
|
|
465
696
|
|
|
697
|
+
### Features
|
|
466
698
|
|
|
699
|
+
- updated pie-lib/pie-toolbox SC-27890 and reverted once again math-rendering-accessible ([fd312e1](https://github.com/pie-framework/pie-elements/commit/fd312e1336999893025231946649496d290883e4))
|
|
700
|
+
- use math-rendering-accessible everywhere PD-1870 ([d52e660](https://github.com/pie-framework/pie-elements/commit/d52e6607ad8847d704bd9cb9b7e3107c130f0500))
|
|
467
701
|
|
|
702
|
+
# [4.5.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.4.2...@pie-element/hotspot-controller@4.5.0) (2024-03-15)
|
|
468
703
|
|
|
704
|
+
### Features
|
|
469
705
|
|
|
470
|
-
|
|
706
|
+
- update pie-lib/pie-toolbox SC-27890,PD-2461 ([13d94fa](https://github.com/pie-framework/pie-elements/commit/13d94faaf0cf9cf923bbc64587cdd4202154ea33))
|
|
471
707
|
|
|
708
|
+
## [4.4.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.4.1...@pie-element/hotspot-controller@4.4.2) (2024-03-13)
|
|
472
709
|
|
|
473
710
|
### Bug Fixes
|
|
474
711
|
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
# [5.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.1.4...@pie-element/hotspot-controller@5.2.0) (2024-12-10)
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
### Bug Fixes
|
|
485
|
-
|
|
486
|
-
* update pie-lib/pie-toolbox PD-4388, PD-4548 ([0e7dad4](https://github.com/pie-framework/pie-elements/commit/0e7dad48f541e7c5c10212e58c6ae846c60be93c))
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
### Features
|
|
490
|
-
|
|
491
|
-
* **categorize, hotspot, image-cloze-association:** extent fontSizeFactor to new elements PD-4389 ([c6480fb](https://github.com/pie-framework/pie-elements/commit/c6480fb201b6fd35edf50f46ef8e50b9f711f4be))
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
## [5.1.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.1.3...@pie-element/hotspot-controller@5.1.4) (2024-12-05)
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
### Bug Fixes
|
|
501
|
-
|
|
502
|
-
* update pie-lib/pie-toolbox PD-4393, PD-4388, PD-4550, PD-4394, PD-4165 ([afafda4](https://github.com/pie-framework/pie-elements/commit/afafda4a504ecae6e4c85a45817b7f73a4b81244))
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
## [5.1.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.1.2...@pie-element/hotspot-controller@5.1.3) (2024-11-29)
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
### Bug Fixes
|
|
512
|
-
|
|
513
|
-
* update pie-lib/pie-toolbox PD-4387, PD-4388 ([0416caf](https://github.com/pie-framework/pie-elements/commit/0416caf1188a62367a893c1e2bcfd138303c1d6d))
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
## [5.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.1.1...@pie-element/hotspot-controller@5.1.2) (2024-11-15)
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
### Bug Fixes
|
|
523
|
-
|
|
524
|
-
* update pie-lib/pie-toolbox PD-4401, PD-4441, PD-4319, PD-4394, PD-3687 ([f1f0af3](https://github.com/pie-framework/pie-elements/commit/f1f0af31f3c6fba54ca3a378dea3b8b32d8ebb87))
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
## [5.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.1.0...@pie-element/hotspot-controller@5.1.1) (2024-11-01)
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
### Bug Fixes
|
|
534
|
-
|
|
535
|
-
* update pie-lib PD-4361 ([0ed2a71](https://github.com/pie-framework/pie-elements/commit/0ed2a7156d3fef55b9c25ab9c60d0df836b86ee5))
|
|
536
|
-
* update pie-lib/pie-toolbox PD-4319, PD-1460, PD-4004 ([db03ac7](https://github.com/pie-framework/pie-elements/commit/db03ac7473960cedef2c83c79920e77db06f605d))
|
|
537
|
-
* update pie-lib/pie-toolbox PD-4372 ([dc73470](https://github.com/pie-framework/pie-elements/commit/dc734705a6aefa0f69eb29d3d695c57e31671ab8))
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
# [5.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.0.7...@pie-element/hotspot-controller@5.1.0) (2024-10-29)
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
### Bug Fixes
|
|
547
|
-
|
|
548
|
-
* fixed all tests after updating pie-toolbox [PD-1460] ([9f5293d](https://github.com/pie-framework/pie-elements/commit/9f5293d618edc06f69fabb27a042ec5eee66e151))
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
### Features
|
|
552
|
-
|
|
553
|
-
* used configlayout, preview layout or uilayout to enable extraCSSRules inside author and player elements [PD-1460] ([eeebb02](https://github.com/pie-framework/pie-elements/commit/eeebb02f200208620c1af56366a22bf65944ba3e))
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
## [5.0.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.0.6...@pie-element/hotspot-controller@5.0.7) (2024-10-28)
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
### Bug Fixes
|
|
563
|
-
|
|
564
|
-
* update pie-lib/pie-toolbox PD-4322, PD-4215, PD-4209 ([08eac95](https://github.com/pie-framework/pie-elements/commit/08eac95fd3e1a79b420fbc88cd0c7436ba284c3c))
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
## [5.0.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.0.5...@pie-element/hotspot-controller@5.0.6) (2024-10-22)
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
### Bug Fixes
|
|
574
|
-
|
|
575
|
-
* update pie-toolbox PD-4220, PD-4194, PD-4201, PD-4189, PD-4193, PD-4018, PD-4187 ([47b14fb](https://github.com/pie-framework/pie-elements/commit/47b14fbd80a04494511bc0ae44196b4e0175f0bb))
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
## [5.0.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.0.4...@pie-element/hotspot-controller@5.0.5) (2024-10-15)
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
### Bug Fixes
|
|
585
|
-
|
|
586
|
-
* added complexjs as dependency [PD-4200] ([da393d5](https://github.com/pie-framework/pie-elements/commit/da393d5ae8ef52f17b47ccf32967410a9263180e))
|
|
587
|
-
* added resolutions in controller as well [PD-4200] ([020edc5](https://github.com/pie-framework/pie-elements/commit/020edc5f0bb5de6bf8f344efd0a3b9b0b16b9dc7))
|
|
588
|
-
* reverting changes since the issue is fixed in the latest complex.js [PD-4200] ([42c9f21](https://github.com/pie-framework/pie-elements/commit/42c9f216c4d29b051156489beb43fa7093667eb7))
|
|
589
|
-
* update pie toolbox ([ba98798](https://github.com/pie-framework/pie-elements/commit/ba987984ebc2f856950611874436cf148a9a3963))
|
|
590
|
-
* update pie-lib/pie-toolbox PD-4200 ([a41a620](https://github.com/pie-framework/pie-elements/commit/a41a62036afe6aa8ef70493900c08875cff8eec2))
|
|
591
|
-
* update pie-lib/pie-toolbox PD-4241 ([b24d439](https://github.com/pie-framework/pie-elements/commit/b24d43945457792d403d0da62ce3e4b5b898ca46))
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
## [5.0.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.0.3...@pie-element/hotspot-controller@5.0.4) (2024-10-03)
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
### Bug Fixes
|
|
601
|
-
|
|
602
|
-
* update pie-toolbox and @pie-lib/pie-toolbox-module PD-4018 ([2d60730](https://github.com/pie-framework/pie-elements/commit/2d60730eb6c3ade08e522c58218cff2f6cb496cb))
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
## [5.0.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.0.2...@pie-element/hotspot-controller@5.0.3) (2024-10-01)
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
### Bug Fixes
|
|
612
|
-
|
|
613
|
-
* update pie-toolbox and @pie-lib/pie-toolbox-module ([ddb9d44](https://github.com/pie-framework/pie-elements/commit/ddb9d444243b881b3a468ecfb5bab551511a2495))
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
## [5.0.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.0.1...@pie-element/hotspot-controller@5.0.2) (2024-10-01)
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
### Bug Fixes
|
|
623
|
-
|
|
624
|
-
* **hotspot:** delete default values used for testing PD-4029 ([c39cb8f](https://github.com/pie-framework/pie-elements/commit/c39cb8f7bd6fbafb60c2a03dce168642cbaeedda))
|
|
625
|
-
* **hotspot:** handle selectedHotapotColor and hoverOutlineColor student view PD-4029 ([ab4867b](https://github.com/pie-framework/pie-elements/commit/ab4867bc5659b94b6133843082a664fcb7e9aa5c))
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
## [5.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@5.0.0...@pie-element/hotspot-controller@5.0.1) (2024-09-26)
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
### Bug Fixes
|
|
635
|
-
|
|
636
|
-
* update pie-toolbox and @pie-lib/pie-toolbox-module ([c363be4](https://github.com/pie-framework/pie-elements/commit/c363be48f9428024d4acc1eed05cd598840ffe3a))
|
|
637
|
-
* update pie-toolbox and @pie-lib/pie-toolbox-module ([fe83296](https://github.com/pie-framework/pie-elements/commit/fe83296445f9785e67c9643642221b28b4485921))
|
|
638
|
-
* update pie-toolbox and @pie-lib/pie-toolbox-module ([321147b](https://github.com/pie-framework/pie-elements/commit/321147b4072f2a6200d155f7f09c712960fe078c))
|
|
639
|
-
* update pie-toolbox and @pie-lib/pie-toolbox-module ([d3e24e8](https://github.com/pie-framework/pie-elements/commit/d3e24e83d74e93f0720eff8841ebac1d0493b769))
|
|
640
|
-
* update pie-toolbox and @pie-lib/pie-toolbox-module ([a3dd8d6](https://github.com/pie-framework/pie-elements/commit/a3dd8d65a754acadd95134ee825b769355a08a45))
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
# [5.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.20.6...@pie-element/hotspot-controller@5.0.0) (2024-09-25)
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
### Bug Fixes
|
|
650
|
-
|
|
651
|
-
* update math-rendering-accessible ([a5588cf](https://github.com/pie-framework/pie-elements/commit/a5588cfdccb40e970e93736dea60de4b01f1a85d))
|
|
652
|
-
* update pie-toolbox and @pie-lib/pie-toolbox-module ([8fa1e13](https://github.com/pie-framework/pie-elements/commit/8fa1e132d97ccc92093e789e4349610c2be21edb))
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
### Features
|
|
656
|
-
|
|
657
|
-
* update math-rendering-accessible PD-3989, PD-4103, PD-3865 ([01590fe](https://github.com/pie-framework/pie-elements/commit/01590fe0f6ac36d14983cc144ef03f9cff397dfc))
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
### BREAKING CHANGES
|
|
661
|
-
|
|
662
|
-
* big refactoring on the implementation of math-rendering-accessible
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
## [4.20.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.20.5...@pie-element/hotspot-controller@4.20.6) (2024-09-16)
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
### Bug Fixes
|
|
672
|
-
|
|
673
|
-
* update pie-lib/pie-toolbox PD-4061, PD-4021 ([ef8e3d0](https://github.com/pie-framework/pie-elements/commit/ef8e3d0d5fca4ca57c89c7c8ef8e74ec5600551e))
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
## [4.20.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.20.4...@pie-element/hotspot-controller@4.20.5) (2024-09-16)
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
### Bug Fixes
|
|
683
|
-
|
|
684
|
-
* experiment with mra ([d62f2b4](https://github.com/pie-framework/pie-elements/commit/d62f2b4526eeda1f90d3660d97bf278ac1ae72da))
|
|
685
|
-
* experiment with mra ([d9487a5](https://github.com/pie-framework/pie-elements/commit/d9487a5394c9b71bb7d7d69a836ed629ae13f7b1))
|
|
686
|
-
* experiment with mra ([a2e933c](https://github.com/pie-framework/pie-elements/commit/a2e933cd27bb052046e245672d3e01cb5ba1b518))
|
|
687
|
-
* update pie-lib/pie-toolbox PD-4027, PD-4042,PD-4039, PD-4073 ([68306be](https://github.com/pie-framework/pie-elements/commit/68306be02254a6019916637fd9b75427cae1c0ed))
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
## [4.20.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.20.3...@pie-element/hotspot-controller@4.20.4) (2024-09-10)
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
### Bug Fixes
|
|
697
|
-
|
|
698
|
-
* update pie-lib/pie-toolbox PD-3652, PD-2451 ([8a00529](https://github.com/pie-framework/pie-elements/commit/8a00529f67a8e27e78e4c16de5d04e11ec8c4d16))
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
## [4.20.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.20.2...@pie-element/hotspot-controller@4.20.3) (2024-09-10)
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
### Bug Fixes
|
|
708
|
-
|
|
709
|
-
* update pie-lib/pie-toolbox: ability to disable table and lists PD-4065 ([49f1ce4](https://github.com/pie-framework/pie-elements/commit/49f1ce4000bc45d0eb8032f6538c0c780940a503))
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
## [4.20.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.20.1...@pie-element/hotspot-controller@4.20.2) (2024-08-29)
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
### Bug Fixes
|
|
719
|
-
|
|
720
|
-
* trigger build PD-4052 ([24783c4](https://github.com/pie-framework/pie-elements/commit/24783c43a97db9c9a2b665f2c784ccd4ce8511ca))
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
## [4.20.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.20.0...@pie-element/hotspot-controller@4.20.1) (2024-08-29)
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
### Bug Fixes
|
|
730
|
-
|
|
731
|
-
* update pie-lib/pie-toolbox PD-4052 ([ebbbe2d](https://github.com/pie-framework/pie-elements/commit/ebbbe2dc584829abe8f1b4d6e8a9031e27f30dce))
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
# [4.20.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.19.3...@pie-element/hotspot-controller@4.20.0) (2024-08-27)
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
### Features
|
|
741
|
-
|
|
742
|
-
* update pie-lib PD-4026, PD-3990 ([395d7d7](https://github.com/pie-framework/pie-elements/commit/395d7d779caae57a810cc19c1d676319d1c19ded))
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
## [4.19.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.19.2...@pie-element/hotspot-controller@4.19.3) (2024-08-22)
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
### Bug Fixes
|
|
752
|
-
|
|
753
|
-
* update pie-lib PD-4021 ([07d6e85](https://github.com/pie-framework/pie-elements/commit/07d6e8560ddfe25f95dfbafc2d3155b93eb85404))
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
## [4.19.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.19.1...@pie-element/hotspot-controller@4.19.2) (2024-08-19)
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
### Bug Fixes
|
|
763
|
-
|
|
764
|
-
* update pie-lib PD-3855, PD-3841 ([29ed50e](https://github.com/pie-framework/pie-elements/commit/29ed50ec75c3deedfe765f776dc24a6ecd6af284))
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
## [4.19.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.19.0...@pie-element/hotspot-controller@4.19.1) (2024-08-06)
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
### Bug Fixes
|
|
774
|
-
|
|
775
|
-
* update pie-lib ([6ed3619](https://github.com/pie-framework/pie-elements/commit/6ed3619e0c670165ab45518e5bdbb40586c5adf8))
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
# [4.19.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.18.0...@pie-element/hotspot-controller@4.19.0) (2024-08-06)
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
### Features
|
|
785
|
-
|
|
786
|
-
* update pie-lib PD-3996, PD-3792, Pd-3791, PD-3841, PD-3956, PD-3569, PD-3855 ([6343d1b](https://github.com/pie-framework/pie-elements/commit/6343d1b00c5a4a3d88de70ed13a8aa5c1a43002d))
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
# [4.18.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.17.6...@pie-element/hotspot-controller@4.18.0) (2024-07-26)
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
### Features
|
|
796
|
-
|
|
797
|
-
* update pie-lib/pie-toolbox PD-2451, PD-3950, PD-3845 ([278d705](https://github.com/pie-framework/pie-elements/commit/278d7052dc7c17796ba196a2e397739e2e882b7f))
|
|
798
|
-
* update pie-lib/pie-toolbox PD-3944, PD-3946, Pd-2450 ([ac34d93](https://github.com/pie-framework/pie-elements/commit/ac34d93fcc97e79cacddcd38c7509f3c96b69976))
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
## [4.17.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.17.5...@pie-element/hotspot-controller@4.17.6) (2024-07-19)
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
### Bug Fixes
|
|
808
|
-
|
|
809
|
-
* udate pie-lib/pie-toolbox to revert PD-3630 ([7858313](https://github.com/pie-framework/pie-elements/commit/785831349bb7830a3df8f35971958ebf616527f3))
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
## [4.17.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.17.4...@pie-element/hotspot-controller@4.17.5) (2024-07-17)
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
### Bug Fixes
|
|
819
|
-
|
|
820
|
-
* udate pie-lib/pie-toolbox PD-3945, PD-3627 ([c37e8aa](https://github.com/pie-framework/pie-elements/commit/c37e8aaa6c7e561707a2ed9ec76deb313380c6ba))
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
## [4.17.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.17.3...@pie-element/hotspot-controller@4.17.4) (2024-07-16)
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
### Bug Fixes
|
|
830
|
-
|
|
831
|
-
* udate pie-lib/pie-toolbox PD-3622, PD-3627, PD-3629, PD-3630, PD-3631 ([1e50c85](https://github.com/pie-framework/pie-elements/commit/1e50c859e2b5133e1ff9ef81f4169e49e76d9e4b))
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
## [4.17.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.17.2...@pie-element/hotspot-controller@4.17.3) (2024-07-10)
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
### Bug Fixes
|
|
841
|
-
|
|
842
|
-
* update pie-lib/pie-toolbox PD-3799, PD-3924, PD-3878 ([2f276fb](https://github.com/pie-framework/pie-elements/commit/2f276fb29f121005cecd81459469ff9f5a06740d))
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
## [4.17.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.17.1...@pie-element/hotspot-controller@4.17.2) (2024-07-04)
|
|
849
|
-
|
|
850
|
-
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
## [4.17.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.17.0...@pie-element/hotspot-controller@4.17.1) (2024-06-26)
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
### Bug Fixes
|
|
860
|
-
|
|
861
|
-
* update pie-lib/pie-toolbox PD-3028, PD-3773 ([61bc47c](https://github.com/pie-framework/pie-elements/commit/61bc47c18d2becea321f18462f5cd486db0115e1))
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
# [4.17.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.16.0...@pie-element/hotspot-controller@4.17.0) (2024-06-24)
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
### Features
|
|
871
|
-
|
|
872
|
-
* update pie-lib/pie-toolbox PD-3868, PD-3771, PD-3772, PD-3775 ([4475c65](https://github.com/pie-framework/pie-elements/commit/4475c658be5489a0f66be27af24e01c03b32b294))
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
# [4.16.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.15.0...@pie-element/hotspot-controller@4.16.0) (2024-06-24)
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
### Features
|
|
882
|
-
|
|
883
|
-
* update pie-lib/pie-toolbox ability to enabled/disable blockquote and h3 (PD-3772, PD-3771) and PD-3813 ([c2cfd9b](https://github.com/pie-framework/pie-elements/commit/c2cfd9b323acdf3d456c05806c1f97f9067bb4fe))
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
# [4.15.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.14.0...@pie-element/hotspot-controller@4.15.0) (2024-06-19)
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
### Bug Fixes
|
|
893
|
-
|
|
894
|
-
* update pie-lib/pie-toolbox fix build ([75777e1](https://github.com/pie-framework/pie-elements/commit/75777e189786cb9041bd0d2f843c023a1ea5b8b1))
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
### Features
|
|
898
|
-
|
|
899
|
-
* update pie-lib/pie-toolbox PD-3179, PD-3206, PD-3186, PD-1311, PD-3771, PD-3772, PD-3817 ([14e175c](https://github.com/pie-framework/pie-elements/commit/14e175cd62770ab4d7ba8bf83e6d0c9ad683f595))
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
# [4.14.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.13.2...@pie-element/hotspot-controller@4.14.0) (2024-06-13)
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
### Features
|
|
909
|
-
|
|
910
|
-
* update pie-toolbox PD-3735 ([7a38768](https://github.com/pie-framework/pie-elements/commit/7a38768b320640de853e90e137082e141ee4ad1f))
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
## [4.13.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.13.1...@pie-element/hotspot-controller@4.13.2) (2024-06-13)
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
### Bug Fixes
|
|
920
|
-
|
|
921
|
-
* update pie-toolbox PD-3180, PD-3391 ([f888f35](https://github.com/pie-framework/pie-elements/commit/f888f350468fca91379d4216c9c696c30695add3))
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
## [4.13.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.13.0...@pie-element/hotspot-controller@4.13.1) (2024-06-13)
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
### Bug Fixes
|
|
931
|
-
|
|
932
|
-
* update pie-toolbox PD-3839 ([dcdc0bf](https://github.com/pie-framework/pie-elements/commit/dcdc0bf9a7cc341d257de831e87915fb9425e4a2))
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
# [4.13.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.12.1...@pie-element/hotspot-controller@4.13.0) (2024-06-03)
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
### Features
|
|
942
|
-
|
|
943
|
-
* update pie-lib/pie-toolbox PD-3733, PD-2455 ([a507dcb](https://github.com/pie-framework/pie-elements/commit/a507dcb30bf2de72614aaba8ee576edf0c953d05))
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
## [4.12.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.12.0...@pie-element/hotspot-controller@4.12.1) (2024-06-03)
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
### Bug Fixes
|
|
953
|
-
|
|
954
|
-
* update pie-lib/pie-toolbox PD-3788, PD-1273 ([f4b6aba](https://github.com/pie-framework/pie-elements/commit/f4b6aba5c741fbf6305dba71bf47d2226f39f2ee))
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
# [4.12.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.11.6...@pie-element/hotspot-controller@4.12.0) (2024-05-27)
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
### Features
|
|
964
|
-
|
|
965
|
-
* update pie-lib/pie-toolbox PD-3736, PD-3734, PD-2488 ([3c44f06](https://github.com/pie-framework/pie-elements/commit/3c44f06d96e609246acde257a8223dc16192c2c4))
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
## [4.11.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.11.5...@pie-element/hotspot-controller@4.11.6) (2024-05-27)
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
### Bug Fixes
|
|
975
|
-
|
|
976
|
-
* update pie-lib/pie-toolbox PD-3740, PD-2126 ([5573a4e](https://github.com/pie-framework/pie-elements/commit/5573a4e2f4524839525679df319bb92c7c841916))
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
## [4.11.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.11.4...@pie-element/hotspot-controller@4.11.5) (2024-05-14)
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
### Bug Fixes
|
|
986
|
-
|
|
987
|
-
* update pie-toolbox PD-3640 ([707c240](https://github.com/pie-framework/pie-elements/commit/707c24031bc0cb05bb070605d4bc27384334eaac))
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
## [4.11.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.11.3...@pie-element/hotspot-controller@4.11.4) (2024-05-13)
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
### Bug Fixes
|
|
997
|
-
|
|
998
|
-
* update pie-lib/pie-toolbox PD-3650, PD-3651, PD-3621, PD-3620, PD-2127,PD-3709, PD-3726, PD-3191 ([2ef6881](https://github.com/pie-framework/pie-elements/commit/2ef688118b9099c7338cbe88afcdeed228fae11e))
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
## [4.11.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.11.2...@pie-element/hotspot-controller@4.11.3) (2024-05-07)
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
### Bug Fixes
|
|
1008
|
-
|
|
1009
|
-
* update pie-lib/pie-toolbox PD-3731 ([2b5d6c9](https://github.com/pie-framework/pie-elements/commit/2b5d6c932280981a0fd636bcb30d7fbc181ac311))
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
## [4.11.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.11.1...@pie-element/hotspot-controller@4.11.2) (2024-05-03)
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
### Bug Fixes
|
|
1019
|
-
|
|
1020
|
-
* update pie-lib/pie-toolbox PD-3537, PD-3538, PD-3539, PD-3540,PD-3680 ([d9cb471](https://github.com/pie-framework/pie-elements/commit/d9cb47148a8fec71d5de29f2cf2b92ec7b479470))
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
## [4.11.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.11.0...@pie-element/hotspot-controller@4.11.1) (2024-04-29)
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
### Bug Fixes
|
|
1030
|
-
|
|
1031
|
-
* update pie-lib/pie-toolbox PD-3683, PD-3644 ([73734c5](https://github.com/pie-framework/pie-elements/commit/73734c50a1e4fcda6be4f67c725816d75aea222f))
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
# [4.11.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.10.1...@pie-element/hotspot-controller@4.11.0) (2024-04-22)
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
### Features
|
|
1041
|
-
|
|
1042
|
-
* update pie-lib/pie-toolbox PD-2449 ([2a0b40a](https://github.com/pie-framework/pie-elements/commit/2a0b40a826f0338b5eda2e8301f79870be3d0073))
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
## [4.10.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.10.0...@pie-element/hotspot-controller@4.10.1) (2024-04-22)
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
### Bug Fixes
|
|
1052
|
-
|
|
1053
|
-
* update pie-lib/pie-toolbox PD-3644, PD-3673 ([5e28ce0](https://github.com/pie-framework/pie-elements/commit/5e28ce0dab4a7ecd93ef7bba45ddb20f768b450b))
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
# [4.10.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.9.1...@pie-element/hotspot-controller@4.10.0) (2024-04-18)
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
### Features
|
|
1063
|
-
|
|
1064
|
-
* update pie-lib/pie-toolbox SC-30530, SC-30682, PD-3607, PD-3655 ([f08bccf](https://github.com/pie-framework/pie-elements/commit/f08bccf86fcb430e75e410116b000b3affc252c0))
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
## [4.9.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.9.0...@pie-element/hotspot-controller@4.9.1) (2024-04-01)
|
|
1071
|
-
|
|
1072
|
-
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
# [4.9.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.8.0...@pie-element/hotspot-controller@4.9.0) (2024-04-01)
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
### Features
|
|
1082
|
-
|
|
1083
|
-
* **inline-dropdown:** upgrade pie-toolbox PD-2465 ([828d1c1](https://github.com/pie-framework/pie-elements/commit/828d1c1bc9e9221c1e141baaa8f89a4929ad0eb9))
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
# [4.8.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.7.0...@pie-element/hotspot-controller@4.8.0) (2024-04-01)
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
### Features
|
|
1093
|
-
|
|
1094
|
-
* update pie-lib/pie-toolbox PD-3567, PD-3426 ([2a706d7](https://github.com/pie-framework/pie-elements/commit/2a706d799bb000c60b7a77a790de9dc66345ebf5))
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
# [4.7.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.6.1...@pie-element/hotspot-controller@4.7.0) (2024-03-28)
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
### Bug Fixes
|
|
1104
|
-
|
|
1105
|
-
* Add sanity check for score calculation on shapes PD-3604 ([abf6312](https://github.com/pie-framework/pie-elements/commit/abf6312044c6adf45fde83319f4dbe9ee752309f))
|
|
1106
|
-
* update pie-lib/pie-toolbox PD-3603 ([8fc82ab](https://github.com/pie-framework/pie-elements/commit/8fc82ab19baf45aecb40e4b364a7c307a9840130))
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
### Features
|
|
1110
|
-
|
|
1111
|
-
* **hotspot:** added required fields functionality PD-3580 ([7ab62d4](https://github.com/pie-framework/pie-elements/commit/7ab62d4380bcab46649a0780afcef4ddc8e7730d))
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
## [4.6.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.6.0...@pie-element/hotspot-controller@4.6.1) (2024-03-26)
|
|
1118
|
-
|
|
1119
|
-
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
# [4.6.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.5.0...@pie-element/hotspot-controller@4.6.0) (2024-03-20)
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
### Bug Fixes
|
|
1129
|
-
|
|
1130
|
-
* updated pie-lib/pie-toolbox SC-28500 ([a8e4e6a](https://github.com/pie-framework/pie-elements/commit/a8e4e6ab27584435ce7ac3e964ccac2747402777))
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
### Features
|
|
1134
|
-
|
|
1135
|
-
* updated pie-lib/pie-toolbox SC-27890 and reverted once again math-rendering-accessible ([fd312e1](https://github.com/pie-framework/pie-elements/commit/fd312e1336999893025231946649496d290883e4))
|
|
1136
|
-
* use math-rendering-accessible everywhere PD-1870 ([d52e660](https://github.com/pie-framework/pie-elements/commit/d52e6607ad8847d704bd9cb9b7e3107c130f0500))
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
# [4.5.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.4.2...@pie-element/hotspot-controller@4.5.0) (2024-03-15)
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
### Features
|
|
1146
|
-
|
|
1147
|
-
* update pie-lib/pie-toolbox SC-27890,PD-2461 ([13d94fa](https://github.com/pie-framework/pie-elements/commit/13d94faaf0cf9cf923bbc64587cdd4202154ea33))
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
## [4.4.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.4.1...@pie-element/hotspot-controller@4.4.2) (2024-03-13)
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
### Bug Fixes
|
|
1157
|
-
|
|
1158
|
-
* update pie-lib/pie-toolbox PD-3549 ([b5d7d13](https://github.com/pie-framework/pie-elements/commit/b5d7d1352169cc67eaedcd56898a5806b0a8812a))
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
## [4.4.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.4.0...@pie-element/hotspot-controller@4.4.1) (2024-03-12)
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
### Bug Fixes
|
|
1168
|
-
|
|
1169
|
-
* update pie-lib/pie-toolbox PD-3509, PD-3465 ([b1745aa](https://github.com/pie-framework/pie-elements/commit/b1745aa981722b5561aab1f4495ac81ac7bc4155))
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
# [4.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.3.3...@pie-element/hotspot-controller@4.4.0) (2024-03-04)
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
### Features
|
|
1179
|
-
|
|
1180
|
-
* update pie-lib/pie-toolbox version PD-1870 and PD-3501 ([8df1d8d](https://github.com/pie-framework/pie-elements/commit/8df1d8d281a0d6023d5a9c0e6fdd29fea71b6ac1))
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
## [4.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.3.2...@pie-element/hotspot-controller@4.3.3) (2024-02-20)
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
### Bug Fixes
|
|
1190
|
-
|
|
1191
|
-
* update pie-lib/pie-toolbox PD-3372, PD-3385, PD-3439 ([a79d800](https://github.com/pie-framework/pie-elements/commit/a79d800bb69af0d175793bc737282100168c4c60))
|
|
1192
|
-
* update pie-lib/pie-toolbox PD-3455 ([4ff9971](https://github.com/pie-framework/pie-elements/commit/4ff9971e65b680aea180c94f9e85cab7249af2fb))
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
## [4.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.3.1...@pie-element/hotspot-controller@4.3.2) (2024-02-15)
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
### Bug Fixes
|
|
1202
|
-
|
|
1203
|
-
* isResponseCorrect to include circles PD-3458 ([f2aeb5f](https://github.com/pie-framework/pie-elements/commit/f2aeb5f1c620e00a311ad6e823f5bde73f75ddd0))
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
## [4.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.3.0...@pie-element/hotspot-controller@4.3.1) (2024-02-14)
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
### Bug Fixes
|
|
1213
|
-
|
|
1214
|
-
* pie-lib/pie-toolbox with slate updates ([a8f8707](https://github.com/pie-framework/pie-elements/commit/a8f8707b2c197c2b40fb6632cee0ba4c27aa9aa4))
|
|
1215
|
-
* update pie-lib/pie-toolbox ([cec328c](https://github.com/pie-framework/pie-elements/commit/cec328caf5b69d9fee00473c502aed62d6e27462))
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
# [4.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.2.3...@pie-element/hotspot-controller@4.3.0) (2024-02-09)
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
### Features
|
|
1225
|
-
|
|
1226
|
-
* update pie-toolbox version SC-28868 ([5745f50](https://github.com/pie-framework/pie-elements/commit/5745f502c89d730e72d4cdb83e96c9465a81ae19))
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
## [4.2.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.2.2...@pie-element/hotspot-controller@4.2.3) (2024-02-07)
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
### Bug Fixes
|
|
1236
|
-
|
|
1237
|
-
* update pie-toolbox version PD-3423 ([053ad69](https://github.com/pie-framework/pie-elements/commit/053ad690619980bce68b1b44e51975fcf91054ec))
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
## [4.2.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.2.1...@pie-element/hotspot-controller@4.2.2) (2024-01-24)
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
### Bug Fixes
|
|
1247
|
-
|
|
1248
|
-
* update to pie-lib/pie-toolbox 1.5.7 PD-3404 ([eae668d](https://github.com/pie-framework/pie-elements/commit/eae668d980ef4731af5eceb3e70329b7621a232b))
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
## [4.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.2.0...@pie-element/hotspot-controller@4.2.1) (2024-01-24)
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
### Bug Fixes
|
|
1258
|
-
|
|
1259
|
-
* update to pie-lib/pie-toolbox 1.5.6 to fix issue introduced by fix for PD-3392 ([8d0a33f](https://github.com/pie-framework/pie-elements/commit/8d0a33f51a5ebe442eb824749cb419bf23c44d28))
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
# [4.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.1.4...@pie-element/hotspot-controller@4.2.0) (2024-01-23)
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
### Bug Fixes
|
|
1269
|
-
|
|
1270
|
-
* update to pie-lib/pie-toolbox 1.5.4 for PD-3387, PD-3384, PD-3383, PD-3392 ([2278f9a](https://github.com/pie-framework/pie-elements/commit/2278f9a3fdf1bc89ab590f240d926a857339179e))
|
|
1271
|
-
* update to pie-lib/pie-toolbox 1.5.5 for PD-3392 ([d4286e0](https://github.com/pie-framework/pie-elements/commit/d4286e08a060a73e6de098f87173baaaa88cc997))
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
### Features
|
|
1275
|
-
|
|
1276
|
-
* display and validate circles PD-1446 ([d42e74e](https://github.com/pie-framework/pie-elements/commit/d42e74e449c531c14cfe1fa0957154bcb3adbfd7))
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
## [4.1.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.1.3...@pie-element/hotspot-controller@4.1.4) (2024-01-15)
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
### Bug Fixes
|
|
1286
|
-
|
|
1287
|
-
* update pie-lib/pie-toolbox PD-3366, PD-3367, PD-3381 ([8c9d35f](https://github.com/pie-framework/pie-elements/commit/8c9d35ff6f0dad1a161d6a2dba203a169169e562))
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
## [4.1.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.1.2...@pie-element/hotspot-controller@4.1.3) (2024-01-08)
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
### Bug Fixes
|
|
1297
|
-
|
|
1298
|
-
* update pie-lib/pie-toolbox PD-2068, PD-2060 ([b63f783](https://github.com/pie-framework/pie-elements/commit/b63f78371452e265f31f721dcfa5f8ba9789089c))
|
|
1299
|
-
* update pie-lib/pie-toolbox PD-3352 ([c40c326](https://github.com/pie-framework/pie-elements/commit/c40c326209315b57ce8da802b8e00616256e3bd6))
|
|
1300
|
-
* update pie-lib/pie-toolbox SC-27396, SC-27398 ([658a553](https://github.com/pie-framework/pie-elements/commit/658a55358181271b508f7d550467eefadcd71544))
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
## [4.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.1.1...@pie-element/hotspot-controller@4.1.2) (2024-01-08)
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
### Bug Fixes
|
|
1310
|
-
|
|
1311
|
-
* update pie-lib/pie-toolbox PD-3352,PD-3348, PD-3296 ([48b1952](https://github.com/pie-framework/pie-elements/commit/48b1952831835ead598b692abb3d492ec9adb564))
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
## [4.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.1.0...@pie-element/hotspot-controller@4.1.1) (2024-01-04)
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
### Bug Fixes
|
|
1321
|
-
|
|
1322
|
-
* update pie-lib/pie-toolbox PD-2068, PD-2060 ([e918850](https://github.com/pie-framework/pie-elements/commit/e9188502ffeaefe41bf0f23895d4bb2daf839364))
|
|
1323
|
-
* update pie-lib/pie-toolbox PD-3037 ([b2f689a](https://github.com/pie-framework/pie-elements/commit/b2f689a416c2c39d7ed423a22db02dd32415ba82))
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
# [4.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.0.3...@pie-element/hotspot-controller@4.1.0) (2023-12-19)
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
### Bug Fixes
|
|
1333
|
-
|
|
1334
|
-
* update pie-lib/pie-toolbox PD-2068 ([34eccd5](https://github.com/pie-framework/pie-elements/commit/34eccd52c44259eddf3e2b816b00b82f83bc2bf8))
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
### Features
|
|
1338
|
-
|
|
1339
|
-
* update pie-lib/pie-toolbox PD-2555 ([86d4fd9](https://github.com/pie-framework/pie-elements/commit/86d4fd909180dd1fcbc446bd8b29c23af21a1c69))
|
|
1340
|
-
* update pie-lib/pie-toolbox PD-3307, PD-2067, PD-3271, PD-3041, PD-2068 ([2eabcbd](https://github.com/pie-framework/pie-elements/commit/2eabcbd036e318bb24552f4140ca7384ad865951))
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
## [4.0.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.0.2...@pie-element/hotspot-controller@4.0.3) (2023-11-27)
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
### Bug Fixes
|
|
1350
|
-
|
|
1351
|
-
* update pie-lib ([74283d7](https://github.com/pie-framework/pie-elements/commit/74283d71b12ab9c82875ce995368e5e39f4face6))
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
## [4.0.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.0.1...@pie-element/hotspot-controller@4.0.2) (2023-11-27)
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
### Bug Fixes
|
|
1361
|
-
|
|
1362
|
-
* update pie-lib/pie-toolbox PD-597 ([1ec84aa](https://github.com/pie-framework/pie-elements/commit/1ec84aadae515088ef65b99f780a5e5dca516f99))
|
|
1363
|
-
* update pie-libs PD-2996 ([cd092c6](https://github.com/pie-framework/pie-elements/commit/cd092c6b5c4db91645394cd23febc1f9a07f46f9))
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
## [4.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.0.0...@pie-element/hotspot-controller@4.0.1) (2023-11-09)
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
### Bug Fixes
|
|
1373
|
-
|
|
1374
|
-
* update pie-lib/pie-toolbox PD-3221, PD-3249, PD-2765 ([9de1563](https://github.com/pie-framework/pie-elements/commit/9de1563d636983c3ddceee0279c0709d396d4f96))
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
# [4.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.7.0...@pie-element/hotspot-controller@4.0.0) (2023-11-07)
|
|
712
|
+
- update pie-lib/pie-toolbox PD-3549 ([b5d7d13](https://github.com/pie-framework/pie-elements/commit/b5d7d1352169cc67eaedcd56898a5806b0a8812a))
|
|
1381
713
|
|
|
714
|
+
## [4.4.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.4.0...@pie-element/hotspot-controller@4.4.1) (2024-03-12)
|
|
1382
715
|
|
|
1383
716
|
### Bug Fixes
|
|
1384
717
|
|
|
1385
|
-
|
|
1386
|
-
* update pie-lib/pie-toolbox version ([212cbfa](https://github.com/pie-framework/pie-elements/commit/212cbfad27b29f0b1b2a3706ba82f6fb59147001))
|
|
1387
|
-
* update pie-lib/pie-toolbox version ([b791e10](https://github.com/pie-framework/pie-elements/commit/b791e10857928766e2d73c6aa80b3fb50fd1afac))
|
|
1388
|
-
* update pie-lib/pie-toolbox version ([7f64f9f](https://github.com/pie-framework/pie-elements/commit/7f64f9f2b874fd08bd8f6f05c1c4292c34ac6338))
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
### Code Refactoring
|
|
1392
|
-
|
|
1393
|
-
* replaced all pie-lib packages with the new pie-toolbox package that contains all of them. ([073d7e5](https://github.com/pie-framework/pie-elements/commit/073d7e5175f7a73069f09d2ceda799682acce494))
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
### BREAKING CHANGES
|
|
1397
|
-
|
|
1398
|
-
* using pie-lib/pie-toolbox now, instead of any other pie-lib package.
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
# [3.7.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.6.3...@pie-element/hotspot-controller@3.7.0) (2023-09-04)
|
|
718
|
+
- update pie-lib/pie-toolbox PD-3509, PD-3465 ([b1745aa](https://github.com/pie-framework/pie-elements/commit/b1745aa981722b5561aab1f4495ac81ac7bc4155))
|
|
1405
719
|
|
|
720
|
+
# [4.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.3.3...@pie-element/hotspot-controller@4.4.0) (2024-03-04)
|
|
1406
721
|
|
|
1407
722
|
### Features
|
|
1408
723
|
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
## [3.6.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.6.2...@pie-element/hotspot-controller@3.6.3) (2023-07-06)
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
### Bug Fixes
|
|
1419
|
-
|
|
1420
|
-
* updated editable-html dependent packages for PD-2150 ([ffa6297](https://github.com/pie-framework/pie-elements/commit/ffa62977a9e329c1e12ea1dfcb2af4ba4c993bca))
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
## [3.6.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.6.1...@pie-element/hotspot-controller@3.6.2) (2023-04-25)
|
|
724
|
+
- update pie-lib/pie-toolbox version PD-1870 and PD-3501 ([8df1d8d](https://github.com/pie-framework/pie-elements/commit/8df1d8d281a0d6023d5a9c0e6fdd29fea71b6ac1))
|
|
1427
725
|
|
|
726
|
+
## [4.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.3.2...@pie-element/hotspot-controller@4.3.3) (2024-02-20)
|
|
1428
727
|
|
|
1429
728
|
### Bug Fixes
|
|
1430
729
|
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
## [3.6.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.6.0...@pie-element/hotspot-controller@3.6.1) (2023-03-20)
|
|
730
|
+
- update pie-lib/pie-toolbox PD-3372, PD-3385, PD-3439 ([a79d800](https://github.com/pie-framework/pie-elements/commit/a79d800bb69af0d175793bc737282100168c4c60))
|
|
731
|
+
- update pie-lib/pie-toolbox PD-3455 ([4ff9971](https://github.com/pie-framework/pie-elements/commit/4ff9971e65b680aea180c94f9e85cab7249af2fb))
|
|
1438
732
|
|
|
733
|
+
## [4.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.3.1...@pie-element/hotspot-controller@4.3.2) (2024-02-15)
|
|
1439
734
|
|
|
1440
735
|
### Bug Fixes
|
|
1441
736
|
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
# [3.6.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.5.1...@pie-element/hotspot-controller@3.6.0) (2023-02-01)
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
### Features
|
|
1452
|
-
|
|
1453
|
-
* update pie-libs ([0af590d](https://github.com/pie-framework/pie-elements/commit/0af590d624f4b2c0af58039e935531cef52e2a86))
|
|
1454
|
-
* **hotspot:** changed hotspot color opacity, added gray hotspot color option PD-411 ([c36428e](https://github.com/pie-framework/pie-elements/commit/c36428ef94fb4916d2bf76fe5850c704a30b6c85))
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
## [3.5.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.5.0...@pie-element/hotspot-controller@3.5.1) (2022-12-07)
|
|
737
|
+
- isResponseCorrect to include circles PD-3458 ([f2aeb5f](https://github.com/pie-framework/pie-elements/commit/f2aeb5f1c620e00a311ad6e823f5bde73f75ddd0))
|
|
1461
738
|
|
|
739
|
+
## [4.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.3.0...@pie-element/hotspot-controller@4.3.1) (2024-02-14)
|
|
1462
740
|
|
|
1463
741
|
### Bug Fixes
|
|
1464
742
|
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
# [3.5.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.4.8...@pie-element/hotspot-controller@3.5.0) (2022-05-03)
|
|
743
|
+
- pie-lib/pie-toolbox with slate updates ([a8f8707](https://github.com/pie-framework/pie-elements/commit/a8f8707b2c197c2b40fb6632cee0ba4c27aa9aa4))
|
|
744
|
+
- update pie-lib/pie-toolbox ([cec328c](https://github.com/pie-framework/pie-elements/commit/cec328caf5b69d9fee00473c502aed62d6e27462))
|
|
1472
745
|
|
|
746
|
+
# [4.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.2.3...@pie-element/hotspot-controller@4.3.0) (2024-02-09)
|
|
1473
747
|
|
|
1474
748
|
### Features
|
|
1475
749
|
|
|
1476
|
-
|
|
1477
|
-
* **hotspot:** PD-1703 implement ui/ux for item validation ([a962183](https://github.com/pie-framework/pie-elements/commit/a962183d0941936b69a95b32002135507d769170))
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
## [3.4.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.4.3...@pie-element/hotspot-controller@3.4.5) (2021-11-11)
|
|
1484
|
-
|
|
1485
|
-
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
## [3.4.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.4.3...@pie-element/hotspot-controller@3.4.4) (2021-11-11)
|
|
1492
|
-
|
|
1493
|
-
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
## [3.4.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.4.1...@pie-element/hotspot-controller@3.4.3) (2021-08-05)
|
|
750
|
+
- update pie-toolbox version SC-28868 ([5745f50](https://github.com/pie-framework/pie-elements/commit/5745f502c89d730e72d4cdb83e96c9465a81ae19))
|
|
1500
751
|
|
|
752
|
+
## [4.2.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.2.2...@pie-element/hotspot-controller@4.2.3) (2024-02-07)
|
|
1501
753
|
|
|
1502
754
|
### Bug Fixes
|
|
1503
755
|
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
## [3.4.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.4.0...@pie-element/hotspot-controller@3.4.1) (2021-06-29)
|
|
756
|
+
- update pie-toolbox version PD-3423 ([053ad69](https://github.com/pie-framework/pie-elements/commit/053ad690619980bce68b1b44e51975fcf91054ec))
|
|
1511
757
|
|
|
758
|
+
## [4.2.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.2.1...@pie-element/hotspot-controller@4.2.2) (2024-01-24)
|
|
1512
759
|
|
|
1513
760
|
### Bug Fixes
|
|
1514
761
|
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
# [3.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.15...@pie-element/hotspot-controller@3.4.0) (2021-04-07)
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
### Features
|
|
1525
|
-
|
|
1526
|
-
* merge pie-ui into pie-elements PD-977 ([01ebfd7](https://github.com/pie-framework/pie-elements/commit/01ebfd7ce98b041dd0573575efd8b6da03f22162))
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
## [3.3.15](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.12...@pie-element/hotspot-controller@3.3.15) (2021-03-03)
|
|
1533
|
-
|
|
1534
|
-
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
## [3.3.12](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.11...@pie-element/hotspot-controller@3.3.12) (2021-03-03)
|
|
1541
|
-
|
|
1542
|
-
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
## [3.3.11](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.10...@pie-element/hotspot-controller@3.3.11) (2020-10-16)
|
|
1549
|
-
|
|
1550
|
-
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
## [3.3.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.9...@pie-element/hotspot-controller@3.3.10) (2020-10-02)
|
|
762
|
+
- update to pie-lib/pie-toolbox 1.5.7 PD-3404 ([eae668d](https://github.com/pie-framework/pie-elements/commit/eae668d980ef4731af5eceb3e70329b7621a232b))
|
|
1557
763
|
|
|
764
|
+
## [4.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.2.0...@pie-element/hotspot-controller@4.2.1) (2024-01-24)
|
|
1558
765
|
|
|
1559
766
|
### Bug Fixes
|
|
1560
767
|
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
## [3.3.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.8...@pie-element/hotspot-controller@3.3.9) (2020-08-25)
|
|
1568
|
-
|
|
1569
|
-
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
## [3.3.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.7...@pie-element/hotspot-controller@3.3.8) (2020-08-25)
|
|
1576
|
-
|
|
1577
|
-
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
## [3.3.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.6...@pie-element/hotspot-controller@3.3.7) (2020-08-13)
|
|
1584
|
-
|
|
1585
|
-
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
## [3.3.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.5...@pie-element/hotspot-controller@3.3.6) (2020-05-25)
|
|
1592
|
-
|
|
1593
|
-
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
## [3.3.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.4...@pie-element/hotspot-controller@3.3.5) (2020-05-25)
|
|
1600
|
-
|
|
1601
|
-
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
## [3.3.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.3...@pie-element/hotspot-controller@3.3.4) (2020-04-28)
|
|
768
|
+
- update to pie-lib/pie-toolbox 1.5.6 to fix issue introduced by fix for PD-3392 ([8d0a33f](https://github.com/pie-framework/pie-elements/commit/8d0a33f51a5ebe442eb824749cb419bf23c44d28))
|
|
1608
769
|
|
|
770
|
+
# [4.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.1.4...@pie-element/hotspot-controller@4.2.0) (2024-01-23)
|
|
1609
771
|
|
|
1610
772
|
### Bug Fixes
|
|
1611
773
|
|
|
1612
|
-
|
|
774
|
+
- update to pie-lib/pie-toolbox 1.5.4 for PD-3387, PD-3384, PD-3383, PD-3392 ([2278f9a](https://github.com/pie-framework/pie-elements/commit/2278f9a3fdf1bc89ab590f240d926a857339179e))
|
|
775
|
+
- update to pie-lib/pie-toolbox 1.5.5 for PD-3392 ([d4286e0](https://github.com/pie-framework/pie-elements/commit/d4286e08a060a73e6de098f87173baaaa88cc997))
|
|
1613
776
|
|
|
777
|
+
### Features
|
|
1614
778
|
|
|
779
|
+
- display and validate circles PD-1446 ([d42e74e](https://github.com/pie-framework/pie-elements/commit/d42e74e449c531c14cfe1fa0957154bcb3adbfd7))
|
|
1615
780
|
|
|
781
|
+
## [4.1.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.1.3...@pie-element/hotspot-controller@4.1.4) (2024-01-15)
|
|
1616
782
|
|
|
783
|
+
### Bug Fixes
|
|
1617
784
|
|
|
1618
|
-
|
|
785
|
+
- update pie-lib/pie-toolbox PD-3366, PD-3367, PD-3381 ([8c9d35f](https://github.com/pie-framework/pie-elements/commit/8c9d35ff6f0dad1a161d6a2dba203a169169e562))
|
|
1619
786
|
|
|
787
|
+
## [4.1.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.1.2...@pie-element/hotspot-controller@4.1.3) (2024-01-08)
|
|
1620
788
|
|
|
1621
789
|
### Bug Fixes
|
|
1622
790
|
|
|
1623
|
-
|
|
791
|
+
- update pie-lib/pie-toolbox PD-2068, PD-2060 ([b63f783](https://github.com/pie-framework/pie-elements/commit/b63f78371452e265f31f721dcfa5f8ba9789089c))
|
|
792
|
+
- update pie-lib/pie-toolbox PD-3352 ([c40c326](https://github.com/pie-framework/pie-elements/commit/c40c326209315b57ce8da802b8e00616256e3bd6))
|
|
793
|
+
- update pie-lib/pie-toolbox SC-27396, SC-27398 ([658a553](https://github.com/pie-framework/pie-elements/commit/658a55358181271b508f7d550467eefadcd71544))
|
|
1624
794
|
|
|
795
|
+
## [4.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.1.1...@pie-element/hotspot-controller@4.1.2) (2024-01-08)
|
|
1625
796
|
|
|
797
|
+
### Bug Fixes
|
|
1626
798
|
|
|
799
|
+
- update pie-lib/pie-toolbox PD-3352,PD-3348, PD-3296 ([48b1952](https://github.com/pie-framework/pie-elements/commit/48b1952831835ead598b692abb3d492ec9adb564))
|
|
1627
800
|
|
|
801
|
+
## [4.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.1.0...@pie-element/hotspot-controller@4.1.1) (2024-01-04)
|
|
1628
802
|
|
|
1629
|
-
|
|
803
|
+
### Bug Fixes
|
|
1630
804
|
|
|
1631
|
-
|
|
805
|
+
- update pie-lib/pie-toolbox PD-2068, PD-2060 ([e918850](https://github.com/pie-framework/pie-elements/commit/e9188502ffeaefe41bf0f23895d4bb2daf839364))
|
|
806
|
+
- update pie-lib/pie-toolbox PD-3037 ([b2f689a](https://github.com/pie-framework/pie-elements/commit/b2f689a416c2c39d7ed423a22db02dd32415ba82))
|
|
1632
807
|
|
|
808
|
+
# [4.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.0.3...@pie-element/hotspot-controller@4.1.0) (2023-12-19)
|
|
1633
809
|
|
|
810
|
+
### Bug Fixes
|
|
1634
811
|
|
|
812
|
+
- update pie-lib/pie-toolbox PD-2068 ([34eccd5](https://github.com/pie-framework/pie-elements/commit/34eccd52c44259eddf3e2b816b00b82f83bc2bf8))
|
|
1635
813
|
|
|
814
|
+
### Features
|
|
1636
815
|
|
|
1637
|
-
|
|
816
|
+
- update pie-lib/pie-toolbox PD-2555 ([86d4fd9](https://github.com/pie-framework/pie-elements/commit/86d4fd909180dd1fcbc446bd8b29c23af21a1c69))
|
|
817
|
+
- update pie-lib/pie-toolbox PD-3307, PD-2067, PD-3271, PD-3041, PD-2068 ([2eabcbd](https://github.com/pie-framework/pie-elements/commit/2eabcbd036e318bb24552f4140ca7384ad865951))
|
|
1638
818
|
|
|
819
|
+
## [4.0.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.0.2...@pie-element/hotspot-controller@4.0.3) (2023-11-27)
|
|
1639
820
|
|
|
1640
821
|
### Bug Fixes
|
|
1641
822
|
|
|
1642
|
-
|
|
1643
|
-
* bump ui versions ([5b9d99f](https://github.com/pie-framework/pie-elements/commit/5b9d99f))
|
|
1644
|
-
|
|
1645
|
-
|
|
823
|
+
- update pie-lib ([74283d7](https://github.com/pie-framework/pie-elements/commit/74283d71b12ab9c82875ce995368e5e39f4face6))
|
|
1646
824
|
|
|
825
|
+
## [4.0.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.0.1...@pie-element/hotspot-controller@4.0.2) (2023-11-27)
|
|
1647
826
|
|
|
827
|
+
### Bug Fixes
|
|
1648
828
|
|
|
1649
|
-
|
|
829
|
+
- update pie-lib/pie-toolbox PD-597 ([1ec84aa](https://github.com/pie-framework/pie-elements/commit/1ec84aadae515088ef65b99f780a5e5dca516f99))
|
|
830
|
+
- update pie-libs PD-2996 ([cd092c6](https://github.com/pie-framework/pie-elements/commit/cd092c6b5c4db91645394cd23febc1f9a07f46f9))
|
|
1650
831
|
|
|
832
|
+
## [4.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@4.0.0...@pie-element/hotspot-controller@4.0.1) (2023-11-09)
|
|
1651
833
|
|
|
1652
834
|
### Bug Fixes
|
|
1653
835
|
|
|
1654
|
-
|
|
1655
|
-
|
|
836
|
+
- update pie-lib/pie-toolbox PD-3221, PD-3249, PD-2765 ([9de1563](https://github.com/pie-framework/pie-elements/commit/9de1563d636983c3ddceee0279c0709d396d4f96))
|
|
1656
837
|
|
|
838
|
+
# [4.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.7.0...@pie-element/hotspot-controller@4.0.0) (2023-11-07)
|
|
1657
839
|
|
|
840
|
+
### Bug Fixes
|
|
1658
841
|
|
|
842
|
+
- update pie-lib version to fix imports for pie-lib/pie-toolbox/editable-html ([a90cbf6](https://github.com/pie-framework/pie-elements/commit/a90cbf6be81824e7266df23c2dc49b259337c1b6))
|
|
843
|
+
- update pie-lib/pie-toolbox version ([212cbfa](https://github.com/pie-framework/pie-elements/commit/212cbfad27b29f0b1b2a3706ba82f6fb59147001))
|
|
844
|
+
- update pie-lib/pie-toolbox version ([b791e10](https://github.com/pie-framework/pie-elements/commit/b791e10857928766e2d73c6aa80b3fb50fd1afac))
|
|
845
|
+
- update pie-lib/pie-toolbox version ([7f64f9f](https://github.com/pie-framework/pie-elements/commit/7f64f9f2b874fd08bd8f6f05c1c4292c34ac6338))
|
|
1659
846
|
|
|
1660
|
-
|
|
847
|
+
### Code Refactoring
|
|
1661
848
|
|
|
849
|
+
- replaced all pie-lib packages with the new pie-toolbox package that contains all of them. ([073d7e5](https://github.com/pie-framework/pie-elements/commit/073d7e5175f7a73069f09d2ceda799682acce494))
|
|
1662
850
|
|
|
1663
|
-
###
|
|
851
|
+
### BREAKING CHANGES
|
|
1664
852
|
|
|
1665
|
-
|
|
853
|
+
- using pie-lib/pie-toolbox now, instead of any other pie-lib package.
|
|
1666
854
|
|
|
855
|
+
# [3.7.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.6.3...@pie-element/hotspot-controller@3.7.0) (2023-09-04)
|
|
1667
856
|
|
|
857
|
+
### Features
|
|
1668
858
|
|
|
859
|
+
- **hotspot:** translations PD-2802 PD-2795 ([15b03fd](https://github.com/pie-framework/pie-elements/commit/15b03fd1d6659364c4d765406c807d30dc5375d1))
|
|
1669
860
|
|
|
861
|
+
## [3.6.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.6.2...@pie-element/hotspot-controller@3.6.3) (2023-07-06)
|
|
1670
862
|
|
|
1671
|
-
|
|
863
|
+
### Bug Fixes
|
|
1672
864
|
|
|
1673
|
-
|
|
865
|
+
- updated editable-html dependent packages for PD-2150 ([ffa6297](https://github.com/pie-framework/pie-elements/commit/ffa62977a9e329c1e12ea1dfcb2af4ba4c993bca))
|
|
1674
866
|
|
|
867
|
+
## [3.6.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.6.1...@pie-element/hotspot-controller@3.6.2) (2023-04-25)
|
|
1675
868
|
|
|
869
|
+
### Bug Fixes
|
|
1676
870
|
|
|
871
|
+
- update pie-libs PD-2762 ([7ac4313](https://github.com/pie-framework/pie-elements/commit/7ac431346b822fe3bbb0d13375f044f6ce1f426b))
|
|
1677
872
|
|
|
873
|
+
## [3.6.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.6.0...@pie-element/hotspot-controller@3.6.1) (2023-03-20)
|
|
1678
874
|
|
|
1679
|
-
|
|
875
|
+
### Bug Fixes
|
|
1680
876
|
|
|
1681
|
-
|
|
877
|
+
- use defaults in both configure and controller PD-2705 ([6330aa8](https://github.com/pie-framework/pie-elements/commit/6330aa841ba3d8e8b5368bd03157568ac81c2317))
|
|
1682
878
|
|
|
879
|
+
# [3.6.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.5.1...@pie-element/hotspot-controller@3.6.0) (2023-02-01)
|
|
1683
880
|
|
|
881
|
+
### Features
|
|
1684
882
|
|
|
883
|
+
- update pie-libs ([0af590d](https://github.com/pie-framework/pie-elements/commit/0af590d624f4b2c0af58039e935531cef52e2a86))
|
|
884
|
+
- **hotspot:** changed hotspot color opacity, added gray hotspot color option PD-411 ([c36428e](https://github.com/pie-framework/pie-elements/commit/c36428ef94fb4916d2bf76fe5850c704a30b6c85))
|
|
1685
885
|
|
|
886
|
+
## [3.5.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.5.0...@pie-element/hotspot-controller@3.5.1) (2022-12-07)
|
|
1686
887
|
|
|
1687
|
-
|
|
888
|
+
### Bug Fixes
|
|
1688
889
|
|
|
1689
|
-
|
|
890
|
+
- update libs ([441f403](https://github.com/pie-framework/pie-elements/commit/441f403870b7bec0d61fab58b8d93dbe0ead4c32))
|
|
1690
891
|
|
|
892
|
+
# [3.5.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.4.8...@pie-element/hotspot-controller@3.5.0) (2022-05-03)
|
|
1691
893
|
|
|
894
|
+
### Features
|
|
1692
895
|
|
|
896
|
+
- **hotspot:** added configurable validation PD-1702 ([18eb985](https://github.com/pie-framework/pie-elements/commit/18eb98568adf9248dc616a9ae71d9f8394b62fc1))
|
|
897
|
+
- **hotspot:** PD-1703 implement ui/ux for item validation ([a962183](https://github.com/pie-framework/pie-elements/commit/a962183d0941936b69a95b32002135507d769170))
|
|
1693
898
|
|
|
899
|
+
## [3.4.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.4.3...@pie-element/hotspot-controller@3.4.5) (2021-11-11)
|
|
1694
900
|
|
|
1695
|
-
|
|
901
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1696
902
|
|
|
903
|
+
## [3.4.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.4.3...@pie-element/hotspot-controller@3.4.4) (2021-11-11)
|
|
1697
904
|
|
|
1698
|
-
|
|
905
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1699
906
|
|
|
1700
|
-
|
|
907
|
+
## [3.4.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.4.1...@pie-element/hotspot-controller@3.4.3) (2021-08-05)
|
|
1701
908
|
|
|
909
|
+
### Bug Fixes
|
|
1702
910
|
|
|
911
|
+
- force bump ([5ea7295](https://github.com/pie-framework/pie-elements/commit/5ea7295e4755fbc492a76e7ec69e5fc35b196919))
|
|
1703
912
|
|
|
913
|
+
## [3.4.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.4.0...@pie-element/hotspot-controller@3.4.1) (2021-06-29)
|
|
1704
914
|
|
|
915
|
+
### Bug Fixes
|
|
1705
916
|
|
|
1706
|
-
|
|
917
|
+
- **hotspot:** partial scoring not working correctly PD-816 ([#583](https://github.com/pie-framework/pie-elements/issues/583)) ([8266134](https://github.com/pie-framework/pie-elements/commit/8266134bd0e298a89cbcbeb1f8ad16bb803e60ae))
|
|
1707
918
|
|
|
919
|
+
# [3.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.15...@pie-element/hotspot-controller@3.4.0) (2021-04-07)
|
|
1708
920
|
|
|
1709
|
-
###
|
|
921
|
+
### Features
|
|
1710
922
|
|
|
1711
|
-
|
|
923
|
+
- merge pie-ui into pie-elements PD-977 ([01ebfd7](https://github.com/pie-framework/pie-elements/commit/01ebfd7ce98b041dd0573575efd8b6da03f22162))
|
|
1712
924
|
|
|
925
|
+
## [3.3.15](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.12...@pie-element/hotspot-controller@3.3.15) (2021-03-03)
|
|
1713
926
|
|
|
927
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1714
928
|
|
|
929
|
+
## [3.3.12](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.11...@pie-element/hotspot-controller@3.3.12) (2021-03-03)
|
|
1715
930
|
|
|
931
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1716
932
|
|
|
1717
|
-
## [3.
|
|
933
|
+
## [3.3.11](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.10...@pie-element/hotspot-controller@3.3.11) (2020-10-16)
|
|
1718
934
|
|
|
1719
935
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1720
936
|
|
|
937
|
+
## [3.3.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.9...@pie-element/hotspot-controller@3.3.10) (2020-10-02)
|
|
1721
938
|
|
|
939
|
+
### Bug Fixes
|
|
1722
940
|
|
|
941
|
+
- PD-612 - hotspot hanging ([a00aa5c](https://github.com/pie-framework/pie-elements/commit/a00aa5c))
|
|
1723
942
|
|
|
943
|
+
## [3.3.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.8...@pie-element/hotspot-controller@3.3.9) (2020-08-25)
|
|
1724
944
|
|
|
1725
|
-
|
|
945
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1726
946
|
|
|
947
|
+
## [3.3.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.7...@pie-element/hotspot-controller@3.3.8) (2020-08-25)
|
|
1727
948
|
|
|
1728
|
-
|
|
949
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1729
950
|
|
|
1730
|
-
|
|
951
|
+
## [3.3.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.6...@pie-element/hotspot-controller@3.3.7) (2020-08-13)
|
|
1731
952
|
|
|
953
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1732
954
|
|
|
955
|
+
## [3.3.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.5...@pie-element/hotspot-controller@3.3.6) (2020-05-25)
|
|
1733
956
|
|
|
957
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1734
958
|
|
|
959
|
+
## [3.3.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.4...@pie-element/hotspot-controller@3.3.5) (2020-05-25)
|
|
1735
960
|
|
|
1736
|
-
|
|
961
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1737
962
|
|
|
963
|
+
## [3.3.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.3...@pie-element/hotspot-controller@3.3.4) (2020-04-28)
|
|
1738
964
|
|
|
1739
965
|
### Bug Fixes
|
|
1740
966
|
|
|
1741
|
-
|
|
1742
|
-
|
|
967
|
+
- PD-56: Bug with resizing an image in hot spot ([bfeb160](https://github.com/pie-framework/pie-elements/commit/bfeb160))
|
|
1743
968
|
|
|
969
|
+
## [3.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.2...@pie-element/hotspot-controller@3.3.3) (2020-04-14)
|
|
1744
970
|
|
|
971
|
+
### Bug Fixes
|
|
1745
972
|
|
|
973
|
+
- bump ui/lib versions ([3edb232](https://github.com/pie-framework/pie-elements/commit/3edb232))
|
|
1746
974
|
|
|
1747
|
-
## [3.
|
|
975
|
+
## [3.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.3.1...@pie-element/hotspot-controller@3.3.2) (2020-04-14)
|
|
1748
976
|
|
|
1749
977
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1750
978
|
|
|
979
|
+
## [3.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.2.4...@pie-element/hotspot-controller@3.3.1) (2020-04-10)
|
|
1751
980
|
|
|
981
|
+
### Bug Fixes
|
|
1752
982
|
|
|
983
|
+
- bump all packages to avoid tag conflict ([d9ec9a8](https://github.com/pie-framework/pie-elements/commit/d9ec9a8))
|
|
984
|
+
- bump ui versions ([5b9d99f](https://github.com/pie-framework/pie-elements/commit/5b9d99f))
|
|
1753
985
|
|
|
1754
|
-
|
|
1755
|
-
## [3.0.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.0.3...@pie-element/hotspot-controller@3.0.4) (2019-10-16)
|
|
1756
|
-
|
|
986
|
+
## [3.2.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.2.4...@pie-element/hotspot-controller@3.2.5) (2020-04-10)
|
|
1757
987
|
|
|
1758
988
|
### Bug Fixes
|
|
1759
989
|
|
|
1760
|
-
|
|
990
|
+
- bump ui versions ([5b9d99f](https://github.com/pie-framework/pie-elements/commit/5b9d99f))
|
|
991
|
+
|
|
992
|
+
## [3.2.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.2.3...@pie-element/hotspot-controller@3.2.4) (2020-02-18)
|
|
1761
993
|
|
|
994
|
+
### Bug Fixes
|
|
1762
995
|
|
|
996
|
+
- ch7555: selecting answers in a different order was not working (Hot spot scoring problem in IBX (legacy content with multiple correct answers)) ([6ffd5a3](https://github.com/pie-framework/pie-elements/commit/6ffd5a3))
|
|
1763
997
|
|
|
998
|
+
## [3.2.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.2.2...@pie-element/hotspot-controller@3.2.3) (2020-01-31)
|
|
1764
999
|
|
|
1000
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1765
1001
|
|
|
1766
|
-
## [3.
|
|
1002
|
+
## [3.2.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.2.1...@pie-element/hotspot-controller@3.2.2) (2020-01-30)
|
|
1767
1003
|
|
|
1768
1004
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1769
1005
|
|
|
1006
|
+
## [3.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.2.0...@pie-element/hotspot-controller@3.2.1) (2020-01-28)
|
|
1770
1007
|
|
|
1008
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1771
1009
|
|
|
1010
|
+
# [3.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.1.2...@pie-element/hotspot-controller@3.2.0) (2020-01-28)
|
|
1772
1011
|
|
|
1012
|
+
### Features
|
|
1773
1013
|
|
|
1774
|
-
|
|
1014
|
+
- PIE-200 - add partialScoring ([483e9b2](https://github.com/pie-framework/pie-elements/commit/483e9b2))
|
|
1775
1015
|
|
|
1016
|
+
## [3.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.1.1...@pie-element/hotspot-controller@3.1.2) (2020-01-09)
|
|
1776
1017
|
|
|
1777
1018
|
### Bug Fixes
|
|
1778
1019
|
|
|
1779
|
-
|
|
1020
|
+
- ch2880: For some hotspot items, the distinction between selected and not selected areas is quite subtle (increased border width) ([7769a15](https://github.com/pie-framework/pie-elements/commit/7769a15))
|
|
1780
1021
|
|
|
1022
|
+
## [3.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.1.0...@pie-element/hotspot-controller@3.1.1) (2019-12-18)
|
|
1781
1023
|
|
|
1024
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1782
1025
|
|
|
1026
|
+
# [3.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.0.6...@pie-element/hotspot-controller@3.1.0) (2019-12-18)
|
|
1783
1027
|
|
|
1028
|
+
### Features
|
|
1784
1029
|
|
|
1785
|
-
|
|
1030
|
+
- added support for declared polygons (display them, possibility to mark/unmark as correct, possibility to drag/drop). ([85d0603](https://github.com/pie-framework/pie-elements/commit/85d0603))
|
|
1786
1031
|
|
|
1032
|
+
## [3.0.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.0.5...@pie-element/hotspot-controller@3.0.6) (2019-12-03)
|
|
1787
1033
|
|
|
1788
1034
|
### Bug Fixes
|
|
1789
1035
|
|
|
1790
|
-
|
|
1036
|
+
- PIE-201 - store prompts and answers in session, fix ([2380224](https://github.com/pie-framework/pie-elements/commit/2380224))
|
|
1791
1037
|
|
|
1038
|
+
## [3.0.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.0.4...@pie-element/hotspot-controller@3.0.5) (2019-10-29)
|
|
1792
1039
|
|
|
1040
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1793
1041
|
|
|
1042
|
+
## [3.0.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.0.3...@pie-element/hotspot-controller@3.0.4) (2019-10-16)
|
|
1794
1043
|
|
|
1044
|
+
### Bug Fixes
|
|
1795
1045
|
|
|
1796
|
-
|
|
1046
|
+
- ch2766 fix unresolved promise ([#366](https://github.com/pie-framework/pie-elements/issues/366)) ([9057b7f](https://github.com/pie-framework/pie-elements/commit/9057b7f)), closes [#365](https://github.com/pie-framework/pie-elements/issues/365)
|
|
1797
1047
|
|
|
1048
|
+
## [3.0.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.0.2...@pie-element/hotspot-controller@3.0.3) (2019-10-16)
|
|
1798
1049
|
|
|
1799
|
-
|
|
1050
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1800
1051
|
|
|
1052
|
+
## [3.0.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.0.1...@pie-element/hotspot-controller@3.0.2) (2019-10-15)
|
|
1801
1053
|
|
|
1802
1054
|
### Bug Fixes
|
|
1803
1055
|
|
|
1804
|
-
|
|
1056
|
+
- bump @pie-lib/controller-utils@^0.2.2 [ch4859] ([cee7521](https://github.com/pie-framework/pie-elements/commit/cee7521))
|
|
1805
1057
|
|
|
1058
|
+
## [3.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@3.0.0...@pie-element/hotspot-controller@3.0.1) (2019-10-11)
|
|
1806
1059
|
|
|
1807
|
-
###
|
|
1808
|
-
|
|
1809
|
-
* allowFeedback was replaced with feedbackEnabled.
|
|
1810
|
-
|
|
1811
|
-
* fix(charting): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1060
|
+
### Bug Fixes
|
|
1812
1061
|
|
|
1813
|
-
|
|
1062
|
+
- bump @pie-lib/controller-utils@^0.2.1 [ch4723] ([0a33d68](https://github.com/pie-framework/pie-elements/commit/0a33d68))
|
|
1814
1063
|
|
|
1815
|
-
|
|
1064
|
+
# [3.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@2.1.3...@pie-element/hotspot-controller@3.0.0) (2019-10-08)
|
|
1816
1065
|
|
|
1817
|
-
|
|
1066
|
+
- Andreea/ch3969/for all items default values should be true (#355) ([9916c38](https://github.com/pie-framework/pie-elements/commit/9916c38)), closes [#355](https://github.com/pie-framework/pie-elements/issues/355)
|
|
1818
1067
|
|
|
1819
|
-
|
|
1068
|
+
### Bug Fixes
|
|
1820
1069
|
|
|
1821
|
-
|
|
1070
|
+
- **hotspot:** controller scoring function fix [ch3536] ([f5e6a1f](https://github.com/pie-framework/pie-elements/commit/f5e6a1f))
|
|
1822
1071
|
|
|
1823
|
-
|
|
1072
|
+
### BREAKING CHANGES
|
|
1824
1073
|
|
|
1825
|
-
|
|
1074
|
+
- allowFeedback was replaced with feedbackEnabled.
|
|
1826
1075
|
|
|
1827
|
-
|
|
1076
|
+
- fix(charting): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1828
1077
|
|
|
1829
|
-
|
|
1078
|
+
- fix(drag-in-the-blank): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1830
1079
|
|
|
1831
|
-
|
|
1080
|
+
- fix(drawing-response): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1832
1081
|
|
|
1833
|
-
|
|
1834
|
-
* allowFeedback was replaced with feedbackEnabled. `configuration.feedback.enabled` was moved to `model.feedbackEnabled`.
|
|
1082
|
+
- fix(ebsr): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1835
1083
|
|
|
1836
|
-
|
|
1084
|
+
- fix(explicit-constructed-response): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1837
1085
|
|
|
1838
|
-
|
|
1086
|
+
- fix(extended-text-entry): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1839
1087
|
|
|
1840
|
-
|
|
1841
|
-
* allowFeedback was replaced with feedbackEnabled. `configuration.feedback.enabled` was moved to `model.feedbackEnabled`.
|
|
1088
|
+
- fix(graph-lines): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1842
1089
|
|
|
1843
|
-
|
|
1090
|
+
- fix(graphing): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1844
1091
|
|
|
1845
|
-
|
|
1092
|
+
- fix(hotspot): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1846
1093
|
|
|
1847
|
-
|
|
1094
|
+
- fix(image-cloze-association): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1848
1095
|
|
|
1849
|
-
|
|
1096
|
+
- fix(inline-dropdown): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1850
1097
|
|
|
1851
|
-
|
|
1098
|
+
- fix(match): replaced usage of allowFeedback with feedbackEnabled. Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1099
|
+
- allowFeedback was replaced with feedbackEnabled. `configuration.feedback.enabled` was moved to `model.feedbackEnabled`.
|
|
1852
1100
|
|
|
1853
|
-
|
|
1101
|
+
- fix(math-inline): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1854
1102
|
|
|
1855
|
-
|
|
1103
|
+
- fix(multiple-choice): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1856
1104
|
|
|
1857
|
-
|
|
1105
|
+
- fix(placement-ordering): replaced usage of allowFeedback with feedbackEnabled. Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1106
|
+
- allowFeedback was replaced with feedbackEnabled. `configuration.feedback.enabled` was moved to `model.feedbackEnabled`.
|
|
1858
1107
|
|
|
1859
|
-
|
|
1108
|
+
- fix(select-text): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1860
1109
|
|
|
1861
|
-
|
|
1110
|
+
- fix(text-entry): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
|
|
1862
1111
|
|
|
1863
|
-
|
|
1112
|
+
- fix: Updated pie-models.
|
|
1864
1113
|
|
|
1865
|
-
|
|
1114
|
+
- fix(categorize): Added normalize function on controller (to be able to add default values to the model).
|
|
1866
1115
|
|
|
1867
|
-
|
|
1116
|
+
- fix(charting): Added normalize function on controller (to be able to add default values to the model).
|
|
1868
1117
|
|
|
1869
|
-
|
|
1118
|
+
- fix(drag-in-the-blank): Added normalize function on controller (to be able to add default values to the model).
|
|
1870
1119
|
|
|
1871
|
-
|
|
1120
|
+
- fix(drawing-response): Added normalize function on controller (to be able to add default values to the model).
|
|
1872
1121
|
|
|
1873
|
-
|
|
1122
|
+
- fix(ebsr): Added normalize function on controller (to be able to add default values to the model).
|
|
1874
1123
|
|
|
1875
|
-
|
|
1124
|
+
- fix(explicit-constructed-response): Added normalize function on controller (to be able to add default values to the model).
|
|
1876
1125
|
|
|
1877
|
-
|
|
1126
|
+
- fix(extended-text-entry): Added normalize function on controller (to be able to add default values to the model).
|
|
1878
1127
|
|
|
1879
|
-
|
|
1128
|
+
- Remove unnecessary change.
|
|
1880
1129
|
|
|
1881
|
-
|
|
1130
|
+
- fix(graph-lines): Added normalize function on controller (to be able to add default values to the model).
|
|
1882
1131
|
|
|
1883
|
-
|
|
1132
|
+
- fix(graphing): Added normalize function on controller (to be able to add default values to the model).
|
|
1884
1133
|
|
|
1885
|
-
|
|
1134
|
+
- fix(hotspot): Added normalize function on controller (to be able to add default values to the model).
|
|
1886
1135
|
|
|
1136
|
+
- fix(image-cloze-association): Added normalize function on controller (to be able to add default values to the model).
|
|
1887
1137
|
|
|
1138
|
+
- fix(inline-dropdown): Added normalize function on controller (to be able to add default values to the model).
|
|
1888
1139
|
|
|
1140
|
+
- fix(match): Added normalize function on controller (to be able to add default values to the model).
|
|
1889
1141
|
|
|
1142
|
+
- fix(math-inline): Added normalize function on controller (to be able to add default values to the model).
|
|
1890
1143
|
|
|
1891
|
-
|
|
1144
|
+
- fix(multiple-choice): Added normalize function on controller (to be able to add default values to the model).
|
|
1892
1145
|
|
|
1893
|
-
|
|
1146
|
+
- fix(placement-ordering): Added normalize function on controller (to be able to add default values to the model).
|
|
1894
1147
|
|
|
1148
|
+
- fix(select-text): Added normalize function on controller (to be able to add default values to the model).
|
|
1895
1149
|
|
|
1150
|
+
- fix(text-entry): Added normalize function on controller (to be able to add default values to the model).
|
|
1896
1151
|
|
|
1152
|
+
## [2.1.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@2.1.2...@pie-element/hotspot-controller@2.1.3) (2019-10-04)
|
|
1897
1153
|
|
|
1154
|
+
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1898
1155
|
|
|
1899
1156
|
## [2.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@2.1.1...@pie-element/hotspot-controller@2.1.2) (2019-10-03)
|
|
1900
1157
|
|
|
1901
1158
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1902
1159
|
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
1160
|
## [2.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@2.1.0...@pie-element/hotspot-controller@2.1.1) (2019-10-03)
|
|
1908
1161
|
|
|
1909
1162
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1910
1163
|
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
1164
|
# [2.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@2.0.0...@pie-element/hotspot-controller@2.1.0) (2019-09-27)
|
|
1916
1165
|
|
|
1917
|
-
|
|
1918
1166
|
### Features
|
|
1919
1167
|
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1168
|
+
- **hotspot:** model based prompt ([2ff380b](https://github.com/pie-framework/pie-elements/commit/2ff380b))
|
|
1925
1169
|
|
|
1926
1170
|
# [2.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.4.1...@pie-element/hotspot-controller@2.0.0) (2019-09-17)
|
|
1927
1171
|
|
|
1928
|
-
|
|
1929
|
-
* Moved rationale, teacherInstructions and studentInstructions enabled flag in model because it's needed in controller. ([20b734e](https://github.com/pie-framework/pie-elements/commit/20b734e))
|
|
1930
|
-
|
|
1172
|
+
- Moved rationale, teacherInstructions and studentInstructions enabled flag in model because it's needed in controller. ([20b734e](https://github.com/pie-framework/pie-elements/commit/20b734e))
|
|
1931
1173
|
|
|
1932
1174
|
### BREAKING CHANGES
|
|
1933
1175
|
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1176
|
+
- `enabled` property from `configuration.rationale.enabled` moved to `model.rationaleEnabled`. Same applies to teacherInstructions/studentInstructions.
|
|
1939
1177
|
|
|
1940
1178
|
## [1.4.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.4.0...@pie-element/hotspot-controller@1.4.1) (2019-09-04)
|
|
1941
1179
|
|
|
1942
1180
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1943
1181
|
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
1182
|
# [1.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.3.10...@pie-element/hotspot-controller@1.4.0) (2019-08-27)
|
|
1949
1183
|
|
|
1950
|
-
|
|
1951
1184
|
### Features
|
|
1952
1185
|
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1186
|
+
- Session null/empty check ([0538211](https://github.com/pie-framework/pie-elements/commit/0538211))
|
|
1958
1187
|
|
|
1959
1188
|
## [1.3.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.3.9...@pie-element/hotspot-controller@1.3.10) (2019-08-21)
|
|
1960
1189
|
|
|
1961
1190
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1962
1191
|
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
1192
|
## [1.3.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.3.8...@pie-element/hotspot-controller@1.3.9) (2019-08-21)
|
|
1968
1193
|
|
|
1969
1194
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1970
1195
|
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
1196
|
## [1.3.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.3.7...@pie-element/hotspot-controller@1.3.8) (2019-08-15)
|
|
1976
1197
|
|
|
1977
1198
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1978
1199
|
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
1200
|
## [1.3.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.3.6...@pie-element/hotspot-controller@1.3.7) (2019-08-02)
|
|
1984
1201
|
|
|
1985
1202
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1986
1203
|
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
1204
|
## [1.3.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.3.5...@pie-element/hotspot-controller@1.3.6) (2019-07-25)
|
|
1992
1205
|
|
|
1993
1206
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
1994
1207
|
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
1208
|
## [1.3.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.3.4...@pie-element/hotspot-controller@1.3.5) (2019-07-05)
|
|
2000
1209
|
|
|
2001
1210
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
2002
1211
|
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
1212
|
## [1.3.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.3.3...@pie-element/hotspot-controller@1.3.4) (2019-07-03)
|
|
2008
1213
|
|
|
2009
1214
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
2010
1215
|
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
1216
|
## [1.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.3.2...@pie-element/hotspot-controller@1.3.3) (2019-06-20)
|
|
2016
1217
|
|
|
2017
1218
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
2018
1219
|
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
1220
|
## [1.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.3.1...@pie-element/hotspot-controller@1.3.2) (2019-06-18)
|
|
2024
1221
|
|
|
2025
1222
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
2026
1223
|
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
1224
|
## [1.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.3.0...@pie-element/hotspot-controller@1.3.1) (2019-06-17)
|
|
2032
1225
|
|
|
2033
1226
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
2034
1227
|
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
1228
|
# [1.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.2.3...@pie-element/hotspot-controller@1.3.0) (2019-06-13)
|
|
2040
1229
|
|
|
2041
|
-
|
|
2042
1230
|
### Features
|
|
2043
1231
|
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
1232
|
+
- implement rendering support for legacy content with correct answers defined as polygon [ch1616] ([d4b84e5](https://github.com/pie-framework/pie-elements/commit/d4b84e5))
|
|
2049
1233
|
|
|
2050
1234
|
## [1.2.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.2.2...@pie-element/hotspot-controller@1.2.3) (2019-06-12)
|
|
2051
1235
|
|
|
2052
1236
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
2053
1237
|
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
1238
|
## [1.2.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.2.1...@pie-element/hotspot-controller@1.2.2) (2019-06-07)
|
|
2059
1239
|
|
|
2060
1240
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
2061
1241
|
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
1242
|
## [1.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.2.0...@pie-element/hotspot-controller@1.2.1) (2019-06-06)
|
|
2067
1243
|
|
|
2068
1244
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
2069
1245
|
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
1246
|
# [1.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.1.3...@pie-element/hotspot-controller@1.2.0) (2019-06-05)
|
|
2075
1247
|
|
|
2076
|
-
|
|
2077
1248
|
### Features
|
|
2078
1249
|
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
1250
|
+
- add support for polygons ([#246](https://github.com/pie-framework/pie-elements/issues/246)) ([871c5a6](https://github.com/pie-framework/pie-elements/commit/871c5a6))
|
|
2084
1251
|
|
|
2085
1252
|
## [1.1.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.1.2...@pie-element/hotspot-controller@1.1.3) (2019-05-24)
|
|
2086
1253
|
|
|
2087
1254
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
2088
1255
|
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
1256
|
## [1.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.1.1...@pie-element/hotspot-controller@1.1.2) (2019-05-23)
|
|
2094
1257
|
|
|
2095
1258
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
2096
1259
|
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
1260
|
## [1.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.1.0...@pie-element/hotspot-controller@1.1.1) (2019-05-21)
|
|
2102
1261
|
|
|
2103
|
-
|
|
2104
1262
|
### Bug Fixes
|
|
2105
1263
|
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
1264
|
+
- make partial scoring work [ch1621] ([313b602](https://github.com/pie-framework/pie-elements/commit/313b602))
|
|
2111
1265
|
|
|
2112
1266
|
# [1.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.0.4...@pie-element/hotspot-controller@1.1.0) (2019-05-16)
|
|
2113
1267
|
|
|
2114
|
-
|
|
2115
1268
|
### Features
|
|
2116
1269
|
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
1270
|
+
- Sending rationale for `instructor` role only in 'view' or 'evaluate' mode. ([a1eb6f4](https://github.com/pie-framework/pie-elements/commit/a1eb6f4))
|
|
1271
|
+
- **hotspot:** added rationale support. ([f60039a](https://github.com/pie-framework/pie-elements/commit/f60039a))
|
|
2123
1272
|
|
|
2124
1273
|
## [1.0.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.0.3...@pie-element/hotspot-controller@1.0.4) (2019-05-10)
|
|
2125
1274
|
|
|
2126
1275
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
2127
1276
|
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
1277
|
## [1.0.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.0.2...@pie-element/hotspot-controller@1.0.3) (2019-05-08)
|
|
2133
1278
|
|
|
2134
1279
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
2135
1280
|
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
1281
|
## [1.0.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/hotspot-controller@1.0.1...@pie-element/hotspot-controller@1.0.2) (2019-05-02)
|
|
2141
1282
|
|
|
2142
1283
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|
|
2143
1284
|
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
1285
|
## 1.0.1 (2019-05-02)
|
|
2149
1286
|
|
|
2150
1287
|
**Note:** Version bump only for package @pie-element/hotspot-controller
|