@pie-element/hotspot 11.1.1-next.1 → 11.1.1-next.11
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.json +997 -0
- package/CHANGELOG.md +2210 -0
- package/LICENSE.md +5 -0
- package/README.md +1 -0
- package/configure/CHANGELOG.json +682 -0
- package/configure/CHANGELOG.md +1947 -0
- package/configure/lib/DeleteWidget.js +64 -0
- package/configure/lib/DeleteWidget.js.map +1 -0
- package/configure/lib/button.js +42 -0
- package/configure/lib/button.js.map +1 -0
- package/configure/lib/buttons/circle.js +33 -0
- package/configure/lib/buttons/circle.js.map +1 -0
- package/configure/lib/buttons/polygon.js +39 -0
- package/configure/lib/buttons/polygon.js.map +1 -0
- package/configure/lib/buttons/rectangle.js +39 -0
- package/configure/lib/buttons/rectangle.js.map +1 -0
- package/configure/lib/defaults.js +155 -0
- package/configure/lib/defaults.js.map +1 -0
- package/configure/lib/hotspot-circle.js +192 -0
- package/configure/lib/hotspot-circle.js.map +1 -0
- package/configure/lib/hotspot-container.js +320 -0
- package/configure/lib/hotspot-container.js.map +1 -0
- package/configure/lib/hotspot-drawable.js +519 -0
- package/configure/lib/hotspot-drawable.js.map +1 -0
- package/configure/lib/hotspot-palette.js +107 -0
- package/configure/lib/hotspot-palette.js.map +1 -0
- package/configure/lib/hotspot-polygon.js +293 -0
- package/configure/lib/hotspot-polygon.js.map +1 -0
- package/configure/lib/hotspot-rectangle.js +190 -0
- package/configure/lib/hotspot-rectangle.js.map +1 -0
- package/configure/lib/icons.js +7 -0
- package/configure/lib/icons.js.map +1 -0
- package/configure/lib/image-konva.js +66 -0
- package/configure/lib/image-konva.js.map +1 -0
- package/configure/lib/index.js +194 -0
- package/configure/lib/index.js.map +1 -0
- package/configure/lib/root.js +330 -0
- package/configure/lib/root.js.map +1 -0
- package/configure/lib/shapes/circle.js +84 -0
- package/configure/lib/shapes/circle.js.map +1 -0
- package/configure/lib/shapes/index.js +50 -0
- package/configure/lib/shapes/index.js.map +1 -0
- package/configure/lib/shapes/polygon.js +82 -0
- package/configure/lib/shapes/polygon.js.map +1 -0
- package/configure/lib/shapes/rectagle.js +84 -0
- package/configure/lib/shapes/rectagle.js.map +1 -0
- package/configure/lib/shapes/utils.js +21 -0
- package/configure/lib/shapes/utils.js.map +1 -0
- package/configure/lib/upload-control.js +41 -0
- package/configure/lib/upload-control.js.map +1 -0
- package/configure/lib/utils.js +185 -0
- package/configure/lib/utils.js.map +1 -0
- package/configure/package.json +26 -0
- package/configure/src/DeleteWidget.jsx +51 -0
- 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 +366 -0
- package/configure/src/__tests__/hotspot-drawable.test.js +271 -0
- 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 +329 -0
- package/configure/src/__tests__/root.test.js +400 -0
- package/configure/src/__tests__/utils.test.js +241 -0
- package/configure/src/button.jsx +35 -0
- package/configure/src/buttons/circle.jsx +18 -0
- package/configure/src/buttons/polygon.jsx +29 -0
- package/configure/src/buttons/rectangle.jsx +29 -0
- package/configure/src/defaults.js +109 -0
- package/configure/src/hotspot-circle.jsx +183 -0
- package/configure/src/hotspot-container.jsx +330 -0
- package/configure/src/hotspot-drawable.jsx +527 -0
- package/configure/src/hotspot-palette.jsx +90 -0
- package/configure/src/hotspot-polygon.jsx +294 -0
- package/configure/src/hotspot-rectangle.jsx +169 -0
- package/configure/src/icons.js +5 -0
- package/configure/src/image-konva.jsx +63 -0
- package/configure/src/index.js +208 -0
- package/configure/src/root.jsx +346 -0
- package/configure/src/shapes/circle.js +81 -0
- package/configure/src/shapes/index.js +4 -0
- package/configure/src/shapes/polygon.js +81 -0
- package/configure/src/shapes/rectagle.js +82 -0
- package/configure/src/shapes/utils.js +16 -0
- package/configure/src/upload-control.jsx +33 -0
- package/configure/src/utils.js +210 -0
- package/controller/CHANGELOG.json +362 -0
- package/controller/CHANGELOG.md +1300 -0
- package/controller/lib/defaults.js +33 -0
- package/controller/lib/defaults.js.map +1 -0
- package/controller/lib/index.js +341 -0
- package/controller/lib/index.js.map +1 -0
- package/controller/lib/utils.js +32 -0
- package/controller/lib/utils.js.map +1 -0
- package/controller/package.json +18 -0
- package/controller/src/__tests__/index.test.js +419 -0
- package/controller/src/__tests__/utils.test.js +5 -0
- package/controller/src/defaults.js +19 -0
- package/controller/src/index.js +328 -0
- package/controller/src/utils.js +29 -0
- package/docs/config-schema.json +2023 -0
- package/docs/config-schema.json.md +1495 -0
- package/docs/demo/config.js +8 -0
- package/docs/demo/generate.js +118 -0
- package/docs/demo/index.html +1 -0
- package/docs/demo/session.js +11 -0
- package/docs/pie-schema.json +1204 -0
- package/docs/pie-schema.json.md +851 -0
- package/lib/hotspot/circle.js +156 -0
- package/lib/hotspot/circle.js.map +1 -0
- package/lib/hotspot/container.js +206 -0
- package/lib/hotspot/container.js.map +1 -0
- package/lib/hotspot/icons.js +8 -0
- package/lib/hotspot/icons.js.map +1 -0
- package/lib/hotspot/image-konva-tooltip.js +86 -0
- package/lib/hotspot/image-konva-tooltip.js.map +1 -0
- package/lib/hotspot/index.js +163 -0
- package/lib/hotspot/index.js.map +1 -0
- package/lib/hotspot/polygon.js +203 -0
- package/lib/hotspot/polygon.js.map +1 -0
- package/lib/hotspot/rectangle.js +175 -0
- package/lib/hotspot/rectangle.js.map +1 -0
- package/lib/index.js +213 -0
- package/lib/index.js.map +1 -0
- package/lib/session-updater.js +42 -0
- package/lib/session-updater.js.map +1 -0
- package/package.json +19 -57
- package/src/__tests__/container.test.jsx +58 -0
- package/src/__tests__/index.test.js +123 -0
- package/src/__tests__/session-updater.test.jsx +69 -0
- 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 +152 -0
- package/src/hotspot/container.jsx +217 -0
- package/src/hotspot/icons.js +7 -0
- package/src/hotspot/image-konva-tooltip.jsx +76 -0
- package/src/hotspot/index.jsx +165 -0
- package/src/hotspot/polygon.jsx +195 -0
- package/src/hotspot/rectangle.jsx +171 -0
- package/src/index.js +226 -0
- package/src/session-updater.js +29 -0
- package/dist/author/DeleteWidget.d.ts +0 -38
- package/dist/author/DeleteWidget.js +0 -46
- package/dist/author/button.d.ts +0 -31
- package/dist/author/button.js +0 -27
- package/dist/author/buttons/circle.d.ts +0 -18
- package/dist/author/buttons/circle.js +0 -25
- package/dist/author/buttons/polygon.d.ts +0 -18
- package/dist/author/buttons/polygon.js +0 -36
- package/dist/author/buttons/rectangle.d.ts +0 -18
- package/dist/author/buttons/rectangle.js +0 -36
- package/dist/author/defaults.d.ts +0 -157
- package/dist/author/defaults.js +0 -119
- package/dist/author/hotspot-circle.d.ts +0 -21
- package/dist/author/hotspot-circle.js +0 -124
- package/dist/author/hotspot-container.d.ts +0 -29
- package/dist/author/hotspot-container.js +0 -210
- package/dist/author/hotspot-drawable.d.ts +0 -31
- package/dist/author/hotspot-drawable.js +0 -312
- package/dist/author/hotspot-palette.d.ts +0 -14
- package/dist/author/hotspot-palette.js +0 -72
- package/dist/author/hotspot-polygon.d.ts +0 -38
- package/dist/author/hotspot-polygon.js +0 -200
- package/dist/author/hotspot-rectangle.d.ts +0 -20
- package/dist/author/hotspot-rectangle.js +0 -119
- package/dist/author/icons.d.ts +0 -9
- package/dist/author/icons.js +0 -4
- package/dist/author/image-konva.d.ts +0 -19
- package/dist/author/image-konva.js +0 -49
- package/dist/author/index.d.ts +0 -52
- package/dist/author/index.js +0 -143
- package/dist/author/root.d.ts +0 -15
- package/dist/author/root.js +0 -215
- package/dist/author/shapes/circle.d.ts +0 -18
- package/dist/author/shapes/circle.js +0 -47
- package/dist/author/shapes/index.d.ts +0 -12
- package/dist/author/shapes/polygon.d.ts +0 -19
- package/dist/author/shapes/polygon.js +0 -51
- package/dist/author/shapes/rectagle.d.ts +0 -18
- package/dist/author/shapes/rectagle.js +0 -57
- package/dist/author/shapes/utils.d.ts +0 -19
- package/dist/author/shapes/utils.js +0 -16
- package/dist/author/upload-control.d.ts +0 -29
- package/dist/author/upload-control.js +0 -28
- package/dist/author/utils.d.ts +0 -24
- package/dist/author/utils.js +0 -83
- package/dist/controller/defaults.d.ts +0 -35
- package/dist/controller/defaults.js +0 -29
- package/dist/controller/index.d.ts +0 -22
- package/dist/controller/index.js +0 -154
- package/dist/controller/utils.d.ts +0 -10
- package/dist/controller/utils.js +0 -13
- package/dist/delivery/hotspot/circle.d.ts +0 -19
- package/dist/delivery/hotspot/circle.js +0 -100
- package/dist/delivery/hotspot/container.d.ts +0 -16
- package/dist/delivery/hotspot/container.js +0 -150
- package/dist/delivery/hotspot/icons.d.ts +0 -10
- package/dist/delivery/hotspot/icons.js +0 -4
- package/dist/delivery/hotspot/image-konva-tooltip.d.ts +0 -19
- package/dist/delivery/hotspot/image-konva-tooltip.js +0 -66
- package/dist/delivery/hotspot/index.d.ts +0 -17
- package/dist/delivery/hotspot/index.js +0 -114
- package/dist/delivery/hotspot/polygon.d.ts +0 -21
- package/dist/delivery/hotspot/polygon.js +0 -108
- package/dist/delivery/hotspot/rectangle.d.ts +0 -19
- package/dist/delivery/hotspot/rectangle.js +0 -104
- package/dist/delivery/index.d.ts +0 -20
- package/dist/delivery/index.js +0 -107
- package/dist/delivery/session-updater.d.ts +0 -10
- package/dist/delivery/session-updater.js +0 -14
- package/dist/index.d.ts +0 -1
- package/dist/index.iife.d.ts +0 -8
- package/dist/index.iife.js +0 -169
- package/dist/index.js +0 -2
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_DataView.js +0 -6
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Hash.js +0 -16
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_ListCache.js +0 -16
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Map.js +0 -6
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_MapCache.js +0 -16
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Promise.js +0 -6
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Set.js +0 -6
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_SetCache.js +0 -11
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Stack.js +0 -14
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Symbol.js +0 -5
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Uint8Array.js +0 -5
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_WeakMap.js +0 -6
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayEach.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayFilter.js +0 -10
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayLikeKeys.js +0 -15
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayPush.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arraySome.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_assignValue.js +0 -10
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_assocIndexOf.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseAssign.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseAssignIn.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseAssignValue.js +0 -12
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseClone.js +0 -57
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseCreate.js +0 -14
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseGetAllKeys.js +0 -9
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseGetTag.js +0 -10
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsArguments.js +0 -9
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsEqual.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsEqualDeep.js +0 -30
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsMap.js +0 -9
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsNative.js +0 -11
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsSet.js +0 -9
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsTypedArray.js +0 -11
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseKeys.js +0 -12
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseKeysIn.js +0 -13
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseTimes.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseUnary.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cacheHas.js +0 -6
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneArrayBuffer.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneBuffer.js +0 -10
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneDataView.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneRegExp.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneSymbol.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneTypedArray.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_copyArray.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_copyObject.js +0 -14
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_copySymbols.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_copySymbolsIn.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_coreJsData.js +0 -5
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_defineProperty.js +0 -10
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_equalArrays.js +0 -35
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_equalByTag.js +0 -35
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_equalObjects.js +0 -32
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_freeGlobal.js +0 -4
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getAllKeys.js +0 -9
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getAllKeysIn.js +0 -9
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getMapData.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getNative.js +0 -9
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getPrototype.js +0 -5
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getRawTag.js +0 -14
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getSymbols.js +0 -10
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getSymbolsIn.js +0 -11
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getTag.js +0 -23
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getValue.js +0 -6
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hashClear.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hashDelete.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hashGet.js +0 -13
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hashHas.js +0 -9
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hashSet.js +0 -9
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_initCloneArray.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_initCloneByTag.js +0 -33
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_initCloneObject.js +0 -9
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isIndex.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isKeyable.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isMasked.js +0 -11
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isPrototype.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_listCacheClear.js +0 -6
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_listCacheDelete.js +0 -9
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_listCacheGet.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_listCacheHas.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_listCacheSet.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheClear.js +0 -13
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheDelete.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheGet.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheHas.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheSet.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapToArray.js +0 -9
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_nativeCreate.js +0 -5
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_nativeKeys.js +0 -5
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_nativeKeysIn.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_nodeUtil.js +0 -9
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_objectToString.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_overArg.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_root.js +0 -5
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_setCacheAdd.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_setCacheHas.js +0 -6
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_setToArray.js +0 -9
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stackClear.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stackDelete.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stackGet.js +0 -6
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stackHas.js +0 -6
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stackSet.js +0 -16
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_toSource.js +0 -15
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/cloneDeep.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/eq.js +0 -6
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isArguments.js +0 -10
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isArray.js +0 -4
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isArrayLike.js +0 -8
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isBuffer.js +0 -6
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isEmpty.js +0 -21
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isEqual.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isFunction.js +0 -11
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isLength.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isMap.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isObject.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isObjectLike.js +0 -6
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isSet.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isTypedArray.js +0 -7
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/keys.js +0 -9
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/keysIn.js +0 -9
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/stubArray.js +0 -6
- package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/stubFalse.js +0 -6
package/CHANGELOG.json
ADDED
|
@@ -0,0 +1,997 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "chore",
|
|
4
|
+
"scope": null,
|
|
5
|
+
"subject": "update hotspot docs",
|
|
6
|
+
"merge": null,
|
|
7
|
+
"header": "chore: update hotspot docs",
|
|
8
|
+
"body": null,
|
|
9
|
+
"footer": null,
|
|
10
|
+
"notes": [],
|
|
11
|
+
"hash": "7689b5bac5f6990085b76eea19172614a56d967a",
|
|
12
|
+
"gitTags": "",
|
|
13
|
+
"committerDate": "2019-05-15 14:10:09 -0400",
|
|
14
|
+
"isTagged": true,
|
|
15
|
+
"tag": "@pie-element/hotspot@2.0.0"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"type": "feat",
|
|
19
|
+
"scope": null,
|
|
20
|
+
"subject": "Updated with new version of @pie-lib-config-ui. Renamed `configure` with `configuration`. Removed usage of state (root.jsx) and updated tests. (#225)",
|
|
21
|
+
"merge": null,
|
|
22
|
+
"header": "feat: Updated with new version of @pie-lib-config-ui. Renamed `configure` with `configuration`. Removed usage of state (root.jsx) and updated tests. (#225)",
|
|
23
|
+
"body": null,
|
|
24
|
+
"footer": "BREAKING CHANGE: `configure` is removed, use `configuration` instead.",
|
|
25
|
+
"notes": [
|
|
26
|
+
{
|
|
27
|
+
"title": "BREAKING CHANGE",
|
|
28
|
+
"text": "`configure` is removed, use `configuration` instead."
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"hash": "380cdf9165fae6cc0e5f6940ab5ce6df25288206",
|
|
32
|
+
"gitTags": "",
|
|
33
|
+
"committerDate": "2019-05-15 13:04:28 -0400",
|
|
34
|
+
"isTagged": true,
|
|
35
|
+
"tag": "@pie-element/hotspot@2.0.0"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"type": "feat",
|
|
39
|
+
"scope": null,
|
|
40
|
+
"subject": "Sending rationale for `instructor` role only in 'view' or 'evaluate' mode.",
|
|
41
|
+
"merge": null,
|
|
42
|
+
"header": "feat: Sending rationale for `instructor` role only in 'view' or 'evaluate' mode.",
|
|
43
|
+
"body": null,
|
|
44
|
+
"footer": null,
|
|
45
|
+
"notes": [],
|
|
46
|
+
"hash": "a1eb6f493d725f11c81a564e1576050fe37a2f93",
|
|
47
|
+
"gitTags": "",
|
|
48
|
+
"committerDate": "2019-05-14 14:54:54 +0300",
|
|
49
|
+
"isTagged": true,
|
|
50
|
+
"tag": "@pie-element/hotspot@2.0.0"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"type": "feat",
|
|
54
|
+
"scope": "hotspot",
|
|
55
|
+
"subject": "added rationale support.",
|
|
56
|
+
"merge": null,
|
|
57
|
+
"header": "feat(hotspot): added rationale support.",
|
|
58
|
+
"body": null,
|
|
59
|
+
"footer": null,
|
|
60
|
+
"notes": [],
|
|
61
|
+
"hash": "f60039aa487c5324195b9ca914f7156404f45b1d",
|
|
62
|
+
"gitTags": "",
|
|
63
|
+
"committerDate": "2019-05-11 17:44:54 +0300",
|
|
64
|
+
"isTagged": true,
|
|
65
|
+
"tag": "@pie-element/hotspot@2.0.0"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"type": "fix",
|
|
69
|
+
"scope": null,
|
|
70
|
+
"subject": "make partial scoring work [ch1621]",
|
|
71
|
+
"merge": null,
|
|
72
|
+
"header": "fix: make partial scoring work [ch1621]",
|
|
73
|
+
"body": null,
|
|
74
|
+
"footer": null,
|
|
75
|
+
"notes": [],
|
|
76
|
+
"hash": "313b602bdab0f68b66d47bc05a5ec7b946989654",
|
|
77
|
+
"gitTags": "",
|
|
78
|
+
"committerDate": "2019-05-21 17:34:36 +0300",
|
|
79
|
+
"isTagged": true,
|
|
80
|
+
"tag": "@pie-element/hotspot@2.0.1"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"type": "fix",
|
|
84
|
+
"scope": null,
|
|
85
|
+
"subject": "Handle the way model is changed from config layout [ch1621]",
|
|
86
|
+
"merge": null,
|
|
87
|
+
"header": "fix: Handle the way model is changed from config layout [ch1621]",
|
|
88
|
+
"body": null,
|
|
89
|
+
"footer": null,
|
|
90
|
+
"notes": [],
|
|
91
|
+
"hash": "2f979d05a14aec53066ee1a099783e7efc388563",
|
|
92
|
+
"gitTags": "",
|
|
93
|
+
"committerDate": "2019-05-16 20:51:05 +0300",
|
|
94
|
+
"isTagged": true,
|
|
95
|
+
"tag": "@pie-element/hotspot@2.0.1"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"type": "chore",
|
|
99
|
+
"scope": "latest-version",
|
|
100
|
+
"subject": "pushing to release",
|
|
101
|
+
"merge": null,
|
|
102
|
+
"header": "chore(latest-version): pushing to release",
|
|
103
|
+
"body": null,
|
|
104
|
+
"footer": null,
|
|
105
|
+
"notes": [],
|
|
106
|
+
"hash": "64030ba2c7c18d20381b6a0f5caaff19f1e5e959",
|
|
107
|
+
"gitTags": " (develop)",
|
|
108
|
+
"committerDate": "2019-06-06 01:31:17 +0300",
|
|
109
|
+
"isTagged": true,
|
|
110
|
+
"tag": "@pie-element/hotspot@2.1.0"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"type": "chore",
|
|
114
|
+
"scope": "version",
|
|
115
|
+
"subject": "bumped the versions",
|
|
116
|
+
"merge": null,
|
|
117
|
+
"header": "chore(version): bumped the versions",
|
|
118
|
+
"body": null,
|
|
119
|
+
"footer": null,
|
|
120
|
+
"notes": [],
|
|
121
|
+
"hash": "12b141d884c66a15d23c8cbb34be820a422d7332",
|
|
122
|
+
"gitTags": " (origin/feat/mask-markup-elements)",
|
|
123
|
+
"committerDate": "2019-06-06 01:15:50 +0300",
|
|
124
|
+
"isTagged": true,
|
|
125
|
+
"tag": "@pie-element/hotspot@2.1.0"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"type": "feat",
|
|
129
|
+
"scope": null,
|
|
130
|
+
"subject": "add support for polygons (#246)",
|
|
131
|
+
"merge": null,
|
|
132
|
+
"header": "feat: add support for polygons (#246)",
|
|
133
|
+
"body": "* feat: add controller support for polygons\n\n* add tests for polygon\n\n* update Hotspot model",
|
|
134
|
+
"footer": null,
|
|
135
|
+
"notes": [],
|
|
136
|
+
"hash": "871c5a6f033f36b2d172140cbbc0f71d59c8f969",
|
|
137
|
+
"gitTags": "",
|
|
138
|
+
"committerDate": "2019-05-31 14:03:05 -0400",
|
|
139
|
+
"isTagged": true,
|
|
140
|
+
"tag": "@pie-element/hotspot@2.1.0"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"type": "chore",
|
|
144
|
+
"scope": "version",
|
|
145
|
+
"subject": "bumped the packages that depend on the editable-html",
|
|
146
|
+
"merge": null,
|
|
147
|
+
"header": "chore(version): bumped the packages that depend on the editable-html",
|
|
148
|
+
"body": null,
|
|
149
|
+
"footer": null,
|
|
150
|
+
"notes": [],
|
|
151
|
+
"hash": "00eb12e58c01b50dde8e4d1a179c879e2f3216fc",
|
|
152
|
+
"gitTags": " (develop)",
|
|
153
|
+
"committerDate": "2019-06-06 13:16:05 +0300",
|
|
154
|
+
"isTagged": true,
|
|
155
|
+
"tag": "@pie-element/hotspot@2.1.1"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"type": "chore",
|
|
159
|
+
"scope": "version",
|
|
160
|
+
"subject": "bumped the versions",
|
|
161
|
+
"merge": null,
|
|
162
|
+
"header": "chore(version): bumped the versions",
|
|
163
|
+
"body": null,
|
|
164
|
+
"footer": null,
|
|
165
|
+
"notes": [],
|
|
166
|
+
"hash": "12b141d884c66a15d23c8cbb34be820a422d7332",
|
|
167
|
+
"gitTags": " (origin/feat/mask-markup-elements)",
|
|
168
|
+
"committerDate": "2019-06-06 01:15:50 +0300",
|
|
169
|
+
"isTagged": true,
|
|
170
|
+
"tag": "@pie-element/hotspot@2.1.0"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"type": "feat",
|
|
174
|
+
"scope": null,
|
|
175
|
+
"subject": "add support for polygons (#246)",
|
|
176
|
+
"merge": null,
|
|
177
|
+
"header": "feat: add support for polygons (#246)",
|
|
178
|
+
"body": "* feat: add controller support for polygons\n\n* add tests for polygon\n\n* update Hotspot model",
|
|
179
|
+
"footer": null,
|
|
180
|
+
"notes": [],
|
|
181
|
+
"hash": "871c5a6f033f36b2d172140cbbc0f71d59c8f969",
|
|
182
|
+
"gitTags": "",
|
|
183
|
+
"committerDate": "2019-05-31 14:03:05 -0400",
|
|
184
|
+
"isTagged": true,
|
|
185
|
+
"tag": "@pie-element/hotspot@2.1.0"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"type": "chore",
|
|
189
|
+
"scope": "merge",
|
|
190
|
+
"subject": "merged develop into master",
|
|
191
|
+
"merge": null,
|
|
192
|
+
"header": "chore(merge): merged develop into master",
|
|
193
|
+
"body": null,
|
|
194
|
+
"footer": null,
|
|
195
|
+
"notes": [],
|
|
196
|
+
"hash": "3bb9f402d900f3a0349537dfd01ce558c526cb55",
|
|
197
|
+
"gitTags": " (develop)",
|
|
198
|
+
"committerDate": "2019-06-07 23:29:44 +0300",
|
|
199
|
+
"isTagged": true,
|
|
200
|
+
"tag": "@pie-element/hotspot@2.1.2"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"type": "chore",
|
|
204
|
+
"scope": "merged",
|
|
205
|
+
"subject": "merged develop",
|
|
206
|
+
"merge": null,
|
|
207
|
+
"header": "chore(merged): merged develop",
|
|
208
|
+
"body": null,
|
|
209
|
+
"footer": null,
|
|
210
|
+
"notes": [],
|
|
211
|
+
"hash": "1a9f4653ce6ede22bcda0538bde1f0e09bd69dc4",
|
|
212
|
+
"gitTags": " (develop)",
|
|
213
|
+
"committerDate": "2019-06-13 16:26:43 +0300",
|
|
214
|
+
"isTagged": true,
|
|
215
|
+
"tag": "@pie-element/hotspot@2.2.0"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"type": "feat",
|
|
219
|
+
"scope": null,
|
|
220
|
+
"subject": "implement rendering support for legacy content with correct answers defined as polygon [ch1616]",
|
|
221
|
+
"merge": null,
|
|
222
|
+
"header": "feat: implement rendering support for legacy content with correct answers defined as polygon [ch1616]",
|
|
223
|
+
"body": null,
|
|
224
|
+
"footer": null,
|
|
225
|
+
"notes": [],
|
|
226
|
+
"hash": "d4b84e5d01caa600c27bab06ae11c827f3197992",
|
|
227
|
+
"gitTags": "",
|
|
228
|
+
"committerDate": "2019-06-12 17:31:35 +0300",
|
|
229
|
+
"isTagged": true,
|
|
230
|
+
"tag": "@pie-element/hotspot@2.2.0"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"type": "feat",
|
|
234
|
+
"scope": "general",
|
|
235
|
+
"subject": "updated all the packages that have the config-ui as a dependency",
|
|
236
|
+
"merge": null,
|
|
237
|
+
"header": "feat(general): updated all the packages that have the config-ui as a dependency",
|
|
238
|
+
"body": null,
|
|
239
|
+
"footer": null,
|
|
240
|
+
"notes": [],
|
|
241
|
+
"hash": "44061deecae6d18cdbf6f5fb524f3d3094ccd354",
|
|
242
|
+
"gitTags": "",
|
|
243
|
+
"committerDate": "2019-06-20 22:32:48 -0400",
|
|
244
|
+
"isTagged": true,
|
|
245
|
+
"tag": "@pie-element/hotspot@2.3.0"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"type": "feat",
|
|
249
|
+
"scope": "settings-panel",
|
|
250
|
+
"subject": "updated the settings panel design and changes needed for [ch2242]",
|
|
251
|
+
"merge": null,
|
|
252
|
+
"header": "feat(settings-panel): updated the settings panel design and changes needed for [ch2242]",
|
|
253
|
+
"body": null,
|
|
254
|
+
"footer": null,
|
|
255
|
+
"notes": [],
|
|
256
|
+
"hash": "d830e57b32bd09ac8cc02c7a12d75d988d9df21c",
|
|
257
|
+
"gitTags": "",
|
|
258
|
+
"committerDate": "2019-06-25 23:42:15 -0400",
|
|
259
|
+
"isTagged": true,
|
|
260
|
+
"tag": "@pie-element/hotspot@2.4.0"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"type": "feat",
|
|
264
|
+
"scope": "mask-markup-elements",
|
|
265
|
+
"subject": "refactored the elements and version bumped the necessary files",
|
|
266
|
+
"merge": null,
|
|
267
|
+
"header": "feat(mask-markup-elements): refactored the elements and version bumped the necessary files",
|
|
268
|
+
"body": null,
|
|
269
|
+
"footer": null,
|
|
270
|
+
"notes": [],
|
|
271
|
+
"hash": "f8f77c02e44afd90e491a371d86d3d4093eb41e5",
|
|
272
|
+
"gitTags": "",
|
|
273
|
+
"committerDate": "2019-07-02 13:38:48 -0400",
|
|
274
|
+
"isTagged": true,
|
|
275
|
+
"tag": "@pie-element/hotspot@2.5.0"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"type": "fix",
|
|
279
|
+
"scope": null,
|
|
280
|
+
"subject": "remove default polygons",
|
|
281
|
+
"merge": null,
|
|
282
|
+
"header": "fix: remove default polygons",
|
|
283
|
+
"body": null,
|
|
284
|
+
"footer": null,
|
|
285
|
+
"notes": [],
|
|
286
|
+
"hash": "d9ecaafe2979944c79560e86ab271ba4cdb9549c",
|
|
287
|
+
"gitTags": "",
|
|
288
|
+
"committerDate": "2019-06-30 13:56:12 +0300",
|
|
289
|
+
"isTagged": true,
|
|
290
|
+
"tag": "@pie-element/hotspot@2.5.0"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"type": "chore",
|
|
294
|
+
"scope": "editable-html",
|
|
295
|
+
"subject": "version bumped the necessary packages",
|
|
296
|
+
"merge": null,
|
|
297
|
+
"header": "chore(editable-html): version bumped the necessary packages",
|
|
298
|
+
"body": null,
|
|
299
|
+
"footer": null,
|
|
300
|
+
"notes": [],
|
|
301
|
+
"hash": "3c7caf6a1f8dc120ca23ab93258a90a593bbeb65",
|
|
302
|
+
"gitTags": "",
|
|
303
|
+
"committerDate": "2019-07-02 15:13:55 -0400",
|
|
304
|
+
"isTagged": true,
|
|
305
|
+
"tag": "@pie-element/hotspot@2.5.1"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"type": "feat",
|
|
309
|
+
"scope": "graphing",
|
|
310
|
+
"subject": "Started creating pie-element/graphing",
|
|
311
|
+
"merge": null,
|
|
312
|
+
"header": "feat(graphing): Started creating pie-element/graphing",
|
|
313
|
+
"body": null,
|
|
314
|
+
"footer": null,
|
|
315
|
+
"notes": [],
|
|
316
|
+
"hash": "220b4f370a78d5b7f8c962abf91955bcec27ef18",
|
|
317
|
+
"gitTags": "",
|
|
318
|
+
"committerDate": "2019-06-10 17:53:19 +0300",
|
|
319
|
+
"isTagged": true,
|
|
320
|
+
"tag": "@pie-element/hotspot@2.6.0"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"type": "chore",
|
|
324
|
+
"scope": "version",
|
|
325
|
+
"subject": "version bumped the editable-html dependent packages",
|
|
326
|
+
"merge": null,
|
|
327
|
+
"header": "chore(version): version bumped the editable-html dependent packages",
|
|
328
|
+
"body": null,
|
|
329
|
+
"footer": null,
|
|
330
|
+
"notes": [],
|
|
331
|
+
"hash": "19961d346e8596064bad27156e0cf5a03afc3889",
|
|
332
|
+
"gitTags": "",
|
|
333
|
+
"committerDate": "2019-07-03 15:57:58 -0400",
|
|
334
|
+
"isTagged": true,
|
|
335
|
+
"tag": "@pie-element/hotspot@2.6.2"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"type": "chore",
|
|
339
|
+
"scope": "editable-html",
|
|
340
|
+
"subject": "version bumped",
|
|
341
|
+
"merge": null,
|
|
342
|
+
"header": "chore(editable-html): version bumped",
|
|
343
|
+
"body": null,
|
|
344
|
+
"footer": null,
|
|
345
|
+
"notes": [],
|
|
346
|
+
"hash": "c769be6b711d5e5b51d79f967548d65006310a9d",
|
|
347
|
+
"gitTags": "",
|
|
348
|
+
"committerDate": "2019-07-04 12:21:53 -0400",
|
|
349
|
+
"isTagged": true,
|
|
350
|
+
"tag": "@pie-element/hotspot@2.6.3"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"type": "fix",
|
|
354
|
+
"scope": "template-els",
|
|
355
|
+
"subject": "fixed some ditb issues",
|
|
356
|
+
"merge": null,
|
|
357
|
+
"header": "fix(template-els): fixed some ditb issues",
|
|
358
|
+
"body": null,
|
|
359
|
+
"footer": null,
|
|
360
|
+
"notes": [],
|
|
361
|
+
"hash": "9133840e48a263b2cf49ce4db9c4310743efffe0",
|
|
362
|
+
"gitTags": "",
|
|
363
|
+
"committerDate": "2019-07-04 11:45:23 -0400",
|
|
364
|
+
"isTagged": true,
|
|
365
|
+
"tag": "@pie-element/hotspot@2.6.3"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"type": "fix",
|
|
369
|
+
"scope": "editable-html",
|
|
370
|
+
"subject": "fixed lots of stuff regarding the editable-html",
|
|
371
|
+
"merge": null,
|
|
372
|
+
"header": "fix(editable-html): fixed lots of stuff regarding the editable-html",
|
|
373
|
+
"body": null,
|
|
374
|
+
"footer": null,
|
|
375
|
+
"notes": [],
|
|
376
|
+
"hash": "12c112917e0b5065ec35efdbdc276703602a6c68",
|
|
377
|
+
"gitTags": " (origin/andrei/fixes)",
|
|
378
|
+
"committerDate": "2019-07-07 14:16:34 -0400",
|
|
379
|
+
"isTagged": true,
|
|
380
|
+
"tag": "@pie-element/hotspot@2.6.5"
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"type": "chore",
|
|
384
|
+
"scope": "config-ui",
|
|
385
|
+
"subject": "bumped dependent packages",
|
|
386
|
+
"merge": null,
|
|
387
|
+
"header": "chore(config-ui): bumped dependent packages",
|
|
388
|
+
"body": null,
|
|
389
|
+
"footer": null,
|
|
390
|
+
"notes": [],
|
|
391
|
+
"hash": "645756c242868cf21e36a73227b355affb5f957a",
|
|
392
|
+
"gitTags": "",
|
|
393
|
+
"committerDate": "2019-07-07 15:44:44 -0400",
|
|
394
|
+
"isTagged": true,
|
|
395
|
+
"tag": "@pie-element/hotspot@2.6.6"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"type": "chore",
|
|
399
|
+
"scope": "editable-html",
|
|
400
|
+
"subject": "version bumped some dependant packages",
|
|
401
|
+
"merge": null,
|
|
402
|
+
"header": "chore(editable-html): version bumped some dependant packages",
|
|
403
|
+
"body": null,
|
|
404
|
+
"footer": null,
|
|
405
|
+
"notes": [],
|
|
406
|
+
"hash": "a4fbf3e8e7841ecae4f034328f9481a1f69ae3df",
|
|
407
|
+
"gitTags": "",
|
|
408
|
+
"committerDate": "2019-07-09 13:38:59 +0300",
|
|
409
|
+
"isTagged": true,
|
|
410
|
+
"tag": "@pie-element/hotspot@2.6.7"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"type": "feat",
|
|
414
|
+
"scope": "template-elements",
|
|
415
|
+
"subject": "updated the dependent packages that use editable-html and fixed [ch2564], [ch2565], [ch2538], [ch2489], [ch2557], [ch2593], [ch2490], [ch2527]",
|
|
416
|
+
"merge": null,
|
|
417
|
+
"header": "feat(template-elements): updated the dependent packages that use editable-html and fixed [ch2564], [ch2565], [ch2538], [ch2489], [ch2557], [ch2593], [ch2490], [ch2527]",
|
|
418
|
+
"body": null,
|
|
419
|
+
"footer": null,
|
|
420
|
+
"notes": [],
|
|
421
|
+
"hash": "a87febe2518ada7ee433b0b39895c26c15737ac4",
|
|
422
|
+
"gitTags": "",
|
|
423
|
+
"committerDate": "2019-07-11 16:57:13 +0300",
|
|
424
|
+
"isTagged": true,
|
|
425
|
+
"tag": "@pie-element/hotspot@2.7.0"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"type": "fix",
|
|
429
|
+
"scope": "rendering",
|
|
430
|
+
"subject": "implemented rendering for math elements [ch1915], [ch1935]",
|
|
431
|
+
"merge": null,
|
|
432
|
+
"header": "fix(rendering): implemented rendering for math elements [ch1915], [ch1935]",
|
|
433
|
+
"body": null,
|
|
434
|
+
"footer": null,
|
|
435
|
+
"notes": [],
|
|
436
|
+
"hash": "2f3584200654e098c7b4cc4b312813efac09e7a9",
|
|
437
|
+
"gitTags": "",
|
|
438
|
+
"committerDate": "2019-07-12 15:45:27 +0300",
|
|
439
|
+
"isTagged": true,
|
|
440
|
+
"tag": "@pie-element/hotspot@2.7.2"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"type": "feat",
|
|
444
|
+
"scope": "hotspot",
|
|
445
|
+
"subject": "universal prompt treatment",
|
|
446
|
+
"merge": null,
|
|
447
|
+
"header": "feat(hotspot): universal prompt treatment",
|
|
448
|
+
"body": null,
|
|
449
|
+
"footer": null,
|
|
450
|
+
"notes": [],
|
|
451
|
+
"hash": "a86bdc3717ef70df416c75392c69f1a163c46f5f",
|
|
452
|
+
"gitTags": "",
|
|
453
|
+
"committerDate": "2019-07-31 12:43:18 +0300",
|
|
454
|
+
"isTagged": true,
|
|
455
|
+
"tag": "@pie-element/hotspot@2.8.0"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"type": "fix",
|
|
459
|
+
"scope": "elements",
|
|
460
|
+
"subject": "version bumped the editable-html packages [ch1738]",
|
|
461
|
+
"merge": null,
|
|
462
|
+
"header": "fix(elements): version bumped the editable-html packages [ch1738]",
|
|
463
|
+
"body": null,
|
|
464
|
+
"footer": null,
|
|
465
|
+
"notes": [],
|
|
466
|
+
"hash": "949222a6a3af39cf8b81a885a81e5c6f3c6a28a0",
|
|
467
|
+
"gitTags": "",
|
|
468
|
+
"committerDate": "2019-08-08 08:40:11 +0300",
|
|
469
|
+
"isTagged": true,
|
|
470
|
+
"tag": "@pie-element/hotspot@2.8.1"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"type": "fix",
|
|
474
|
+
"scope": "math-rendering",
|
|
475
|
+
"subject": "updated all dependent packages [ch3365]",
|
|
476
|
+
"merge": null,
|
|
477
|
+
"header": "fix(math-rendering): updated all dependent packages [ch3365]",
|
|
478
|
+
"body": null,
|
|
479
|
+
"footer": null,
|
|
480
|
+
"notes": [],
|
|
481
|
+
"hash": "7cbf25ac92040a16621d5699e232c38575f6c36c",
|
|
482
|
+
"gitTags": "",
|
|
483
|
+
"committerDate": "2019-08-16 23:04:42 +0300",
|
|
484
|
+
"isTagged": true,
|
|
485
|
+
"tag": "@pie-element/hotspot@2.8.2"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"type": "fix",
|
|
489
|
+
"scope": null,
|
|
490
|
+
"subject": "set default values to configuration properties",
|
|
491
|
+
"merge": null,
|
|
492
|
+
"header": "fix: set default values to configuration properties",
|
|
493
|
+
"body": null,
|
|
494
|
+
"footer": null,
|
|
495
|
+
"notes": [],
|
|
496
|
+
"hash": "b5f84bbf1a91955535e63f3b276a8dc6b41d6594",
|
|
497
|
+
"gitTags": "",
|
|
498
|
+
"committerDate": "2019-08-15 13:57:30 +0300",
|
|
499
|
+
"isTagged": true,
|
|
500
|
+
"tag": "@pie-element/hotspot@2.8.2"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"type": "fix",
|
|
504
|
+
"scope": "math-rendering",
|
|
505
|
+
"subject": "updated all dependent packages for math rendering and for editable-html [ch3365], [ch1530]",
|
|
506
|
+
"merge": null,
|
|
507
|
+
"header": "fix(math-rendering): updated all dependent packages for math rendering and for editable-html [ch3365], [ch1530]",
|
|
508
|
+
"body": null,
|
|
509
|
+
"footer": null,
|
|
510
|
+
"notes": [],
|
|
511
|
+
"hash": "33e3287a735cec9aed893f697a1933ff0c077042",
|
|
512
|
+
"gitTags": "",
|
|
513
|
+
"committerDate": "2019-08-19 19:37:56 +0300",
|
|
514
|
+
"isTagged": true,
|
|
515
|
+
"tag": "@pie-element/hotspot@2.8.3"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"type": "feat",
|
|
519
|
+
"scope": null,
|
|
520
|
+
"subject": "Session null/empty check",
|
|
521
|
+
"merge": null,
|
|
522
|
+
"header": "feat: Session null/empty check",
|
|
523
|
+
"body": "Check for each interaction if: has outcome function, outcome function returns { score: 0, empty: true } if session null/empty/undefined, everywhere where session is used we handle if session is null/empty/undefined and test each function that uses session. [ebsr, explicit-constructed-response, function-entry, hotspot]",
|
|
524
|
+
"footer": null,
|
|
525
|
+
"notes": [],
|
|
526
|
+
"hash": "0538211b44e793dc34ff385226ee7278cc042384",
|
|
527
|
+
"gitTags": "",
|
|
528
|
+
"committerDate": "2019-08-23 11:07:39 +0300",
|
|
529
|
+
"isTagged": true,
|
|
530
|
+
"tag": "@pie-element/hotspot@2.9.0"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"type": "fix",
|
|
534
|
+
"scope": "hotspot",
|
|
535
|
+
"subject": "hotspotList prop type is array, not string (#315)",
|
|
536
|
+
"merge": null,
|
|
537
|
+
"header": "fix(hotspot): hotspotList prop type is array, not string (#315)",
|
|
538
|
+
"body": null,
|
|
539
|
+
"footer": null,
|
|
540
|
+
"notes": [],
|
|
541
|
+
"hash": "4280a99a04bef043fd5267253e4bb115c70f2359",
|
|
542
|
+
"gitTags": "",
|
|
543
|
+
"committerDate": "2019-08-30 09:30:57 -0400",
|
|
544
|
+
"isTagged": true,
|
|
545
|
+
"tag": "@pie-element/hotspot@2.9.1"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"type": "feat",
|
|
549
|
+
"scope": "drawable",
|
|
550
|
+
"subject": "fixed the not rendering item preview [ch3629]",
|
|
551
|
+
"merge": null,
|
|
552
|
+
"header": "feat(drawable): fixed the not rendering item preview [ch3629]",
|
|
553
|
+
"body": null,
|
|
554
|
+
"footer": null,
|
|
555
|
+
"notes": [],
|
|
556
|
+
"hash": "9c7b05360ffd7c17cfaec34f8bbf5f5385dafc95",
|
|
557
|
+
"gitTags": "",
|
|
558
|
+
"committerDate": "2019-09-23 12:34:44 +0300",
|
|
559
|
+
"isTagged": true,
|
|
560
|
+
"tag": "@pie-element/hotspot@3.1.0"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"type": "feat",
|
|
564
|
+
"scope": "hotspot",
|
|
565
|
+
"subject": "model based prompt",
|
|
566
|
+
"merge": null,
|
|
567
|
+
"header": "feat(hotspot): model based prompt",
|
|
568
|
+
"body": null,
|
|
569
|
+
"footer": null,
|
|
570
|
+
"notes": [],
|
|
571
|
+
"hash": "2ff380b42245fd8296374b43ede6814d9c22bb34",
|
|
572
|
+
"gitTags": "",
|
|
573
|
+
"committerDate": "2019-09-24 15:56:36 +0300",
|
|
574
|
+
"isTagged": true,
|
|
575
|
+
"tag": "@pie-element/hotspot@3.2.0"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"type": "fix",
|
|
579
|
+
"scope": "hotspot",
|
|
580
|
+
"subject": "controller scoring function fix [ch3536]",
|
|
581
|
+
"merge": null,
|
|
582
|
+
"header": "fix(hotspot): controller scoring function fix [ch3536]",
|
|
583
|
+
"body": null,
|
|
584
|
+
"footer": null,
|
|
585
|
+
"notes": [],
|
|
586
|
+
"hash": "f5e6a1f42dac8177e6db29f9d32343e866339e3f",
|
|
587
|
+
"gitTags": "",
|
|
588
|
+
"committerDate": "2019-10-08 09:02:16 +0100",
|
|
589
|
+
"isTagged": true,
|
|
590
|
+
"tag": "@pie-element/hotspot@4.0.0"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"type": "fix",
|
|
594
|
+
"scope": null,
|
|
595
|
+
"subject": "bump @pie-lib/controller-utils@^0.2.1 [ch4723]",
|
|
596
|
+
"merge": null,
|
|
597
|
+
"header": "fix: bump @pie-lib/controller-utils@^0.2.1 [ch4723]",
|
|
598
|
+
"body": null,
|
|
599
|
+
"footer": null,
|
|
600
|
+
"notes": [],
|
|
601
|
+
"hash": "0a33d688d6d9e5f239daba982bfbdeebb10ba4ab",
|
|
602
|
+
"gitTags": "",
|
|
603
|
+
"committerDate": "2019-10-11 12:38:26 +0100",
|
|
604
|
+
"isTagged": true,
|
|
605
|
+
"tag": "@pie-element/hotspot@4.0.1"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"type": "fix",
|
|
609
|
+
"scope": null,
|
|
610
|
+
"subject": "bump @pie-lib/controller-utils@^0.2.2 [ch4859]",
|
|
611
|
+
"merge": null,
|
|
612
|
+
"header": "fix: bump @pie-lib/controller-utils@^0.2.2 [ch4859]",
|
|
613
|
+
"body": null,
|
|
614
|
+
"footer": null,
|
|
615
|
+
"notes": [],
|
|
616
|
+
"hash": "cee752168f01eb3b5a8534acc4cfbae139607518",
|
|
617
|
+
"gitTags": "",
|
|
618
|
+
"committerDate": "2019-10-15 12:09:33 +0100",
|
|
619
|
+
"isTagged": true,
|
|
620
|
+
"tag": "@pie-element/hotspot@4.0.2"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"type": "fix",
|
|
624
|
+
"scope": null,
|
|
625
|
+
"subject": "ch2766 fix unresolved promise (#366)",
|
|
626
|
+
"merge": null,
|
|
627
|
+
"header": "fix: ch2766 fix unresolved promise (#366)",
|
|
628
|
+
"body": "* fix: resolve null when instructor is not role\n\n* chore: typo\n\n* chore: correct response resolve, match interaction\n\n* chore: correct response unresolved\n\n* chore: categorize resolve correct response\n\n* fix: createCorrectResponseSession unresolved promise\n\n* fix: createCorrectResponseSession resolve promise\n\n* fix: createCorrectResponseSession resolve promise\n\n* fix: ch2776 resolve createCorrectResponse promise",
|
|
629
|
+
"footer": "* fix: Fixed createCorrectResponseSession and added tests for it. (#365)",
|
|
630
|
+
"notes": [],
|
|
631
|
+
"hash": "9057b7fd08e4f5b07e953a5acd053e1945df57f2",
|
|
632
|
+
"gitTags": " (origin/develop, origin/HEAD)",
|
|
633
|
+
"committerDate": "2019-10-16 15:50:55 -0400",
|
|
634
|
+
"isTagged": true,
|
|
635
|
+
"tag": "@pie-element/hotspot@4.0.4"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"type": "fix",
|
|
639
|
+
"scope": null,
|
|
640
|
+
"subject": "Hide Partial Scoring option from Settings Panel setting to false by default.",
|
|
641
|
+
"merge": null,
|
|
642
|
+
"header": "fix: Hide Partial Scoring option from Settings Panel setting to false by default.",
|
|
643
|
+
"body": null,
|
|
644
|
+
"footer": null,
|
|
645
|
+
"notes": [],
|
|
646
|
+
"hash": "1d0f617741d88756dd9861647981b1121e04963f",
|
|
647
|
+
"gitTags": "",
|
|
648
|
+
"committerDate": "2019-11-06 09:57:11 +0200",
|
|
649
|
+
"isTagged": true,
|
|
650
|
+
"tag": "@pie-element/hotspot@4.0.6"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"type": "fix",
|
|
654
|
+
"scope": null,
|
|
655
|
+
"subject": "PIE-201 - store prompts and answers in session, fix",
|
|
656
|
+
"merge": null,
|
|
657
|
+
"header": "fix: PIE-201 - store prompts and answers in session, fix",
|
|
658
|
+
"body": "controller-utils to use 0 as key",
|
|
659
|
+
"footer": null,
|
|
660
|
+
"notes": [],
|
|
661
|
+
"hash": "23802242e0bc647f929f6db4dfd4b03f0112f2fb",
|
|
662
|
+
"gitTags": "",
|
|
663
|
+
"committerDate": "2019-11-18 20:35:06 +0000",
|
|
664
|
+
"isTagged": true,
|
|
665
|
+
"tag": "@pie-element/hotspot@4.0.7"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"type": "fix",
|
|
669
|
+
"scope": null,
|
|
670
|
+
"subject": "version bump only to avoid conflict",
|
|
671
|
+
"merge": null,
|
|
672
|
+
"header": "fix: version bump only to avoid conflict",
|
|
673
|
+
"body": null,
|
|
674
|
+
"footer": null,
|
|
675
|
+
"notes": [],
|
|
676
|
+
"hash": "519c0e2d810d0718798a40c861e2d272cc95480e",
|
|
677
|
+
"gitTags": " (develop)",
|
|
678
|
+
"committerDate": "2019-12-18 12:27:29 +0000",
|
|
679
|
+
"isTagged": true,
|
|
680
|
+
"tag": "@pie-element/hotspot@4.1.2"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"type": "fix",
|
|
684
|
+
"scope": null,
|
|
685
|
+
"subject": "bump pie-ui version",
|
|
686
|
+
"merge": null,
|
|
687
|
+
"header": "fix: bump pie-ui version",
|
|
688
|
+
"body": null,
|
|
689
|
+
"footer": null,
|
|
690
|
+
"notes": [],
|
|
691
|
+
"hash": "fb1153e872998d31c0d5941d86ac6f38641eedbc",
|
|
692
|
+
"gitTags": "",
|
|
693
|
+
"committerDate": "2019-12-18 12:08:39 +0000",
|
|
694
|
+
"isTagged": true,
|
|
695
|
+
"tag": "@pie-element/hotspot@4.1.0"
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"type": "feat",
|
|
699
|
+
"scope": null,
|
|
700
|
+
"subject": "added support for declared polygons (display them, possibility to mark/unmark as correct, possibility to drag/drop).",
|
|
701
|
+
"merge": null,
|
|
702
|
+
"header": "feat: added support for declared polygons (display them, possibility to mark/unmark as correct, possibility to drag/drop).",
|
|
703
|
+
"body": null,
|
|
704
|
+
"footer": null,
|
|
705
|
+
"notes": [],
|
|
706
|
+
"hash": "85d06039078128ccff7531c0f86297baf3b89e53",
|
|
707
|
+
"gitTags": "",
|
|
708
|
+
"committerDate": "2019-12-12 18:33:43 +0200",
|
|
709
|
+
"isTagged": true,
|
|
710
|
+
"tag": "@pie-element/hotspot@4.1.0"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"type": "fix",
|
|
714
|
+
"scope": null,
|
|
715
|
+
"subject": "bump pie-ui/hotspot@^1.3.5 - ch2880",
|
|
716
|
+
"merge": null,
|
|
717
|
+
"header": "fix: bump pie-ui/hotspot@^1.3.5 - ch2880",
|
|
718
|
+
"body": null,
|
|
719
|
+
"footer": null,
|
|
720
|
+
"notes": [],
|
|
721
|
+
"hash": "a1214d907b5bc08dd484551567414baf898372b9",
|
|
722
|
+
"gitTags": "",
|
|
723
|
+
"committerDate": "2020-01-08 10:24:11 +0000",
|
|
724
|
+
"isTagged": true,
|
|
725
|
+
"tag": "@pie-element/hotspot@4.1.3"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"type": "fix",
|
|
729
|
+
"scope": null,
|
|
730
|
+
"subject": "ch2880: For some hotspot items, the distinction between selected and not selected areas is quite subtle (increased border width)",
|
|
731
|
+
"merge": null,
|
|
732
|
+
"header": "fix: ch2880: For some hotspot items, the distinction between selected and not selected areas is quite subtle (increased border width)",
|
|
733
|
+
"body": null,
|
|
734
|
+
"footer": null,
|
|
735
|
+
"notes": [],
|
|
736
|
+
"hash": "7769a154b4d54111d22fc866e03573813a0f7f1a",
|
|
737
|
+
"gitTags": " (origin/andreea/ch2880/for-some-hotspot-items-the-distinction-between)",
|
|
738
|
+
"committerDate": "2019-12-19 12:17:00 +0200",
|
|
739
|
+
"isTagged": true,
|
|
740
|
+
"tag": "@pie-element/hotspot@4.1.3"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"type": "feat",
|
|
744
|
+
"scope": null,
|
|
745
|
+
"subject": "PIE-200 - add partialScoring",
|
|
746
|
+
"merge": null,
|
|
747
|
+
"header": "feat: PIE-200 - add partialScoring",
|
|
748
|
+
"body": null,
|
|
749
|
+
"footer": null,
|
|
750
|
+
"notes": [],
|
|
751
|
+
"hash": "483e9b2553efd8e59d6c1b4c3511b54712eb9710",
|
|
752
|
+
"gitTags": "",
|
|
753
|
+
"committerDate": "2019-12-06 12:22:05 +0000",
|
|
754
|
+
"isTagged": true,
|
|
755
|
+
"tag": "@pie-element/hotspot@4.2.0"
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"type": "fix",
|
|
759
|
+
"scope": null,
|
|
760
|
+
"subject": "ch7555: selecting answers in a different order was not working (Hot spot scoring problem in IBX (legacy content with multiple correct answers))",
|
|
761
|
+
"merge": null,
|
|
762
|
+
"header": "fix: ch7555: selecting answers in a different order was not working (Hot spot scoring problem in IBX (legacy content with multiple correct answers))",
|
|
763
|
+
"body": null,
|
|
764
|
+
"footer": null,
|
|
765
|
+
"notes": [],
|
|
766
|
+
"hash": "6ffd5a3f583fb5e658bfcb6d96ca5f9da192efea",
|
|
767
|
+
"gitTags": "",
|
|
768
|
+
"committerDate": "2020-02-17 08:48:15 +0200",
|
|
769
|
+
"isTagged": true,
|
|
770
|
+
"tag": "@pie-element/hotspot@4.2.4"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"type": "fix",
|
|
774
|
+
"scope": null,
|
|
775
|
+
"subject": "ch7720: Authoring problem with Hotspot: Double-clicking image crashes Build screen",
|
|
776
|
+
"merge": null,
|
|
777
|
+
"header": "fix: ch7720: Authoring problem with Hotspot: Double-clicking image crashes Build screen",
|
|
778
|
+
"body": null,
|
|
779
|
+
"footer": null,
|
|
780
|
+
"notes": [],
|
|
781
|
+
"hash": "94f4e0782b0778860658a1bcde6d65493169e267",
|
|
782
|
+
"gitTags": "",
|
|
783
|
+
"committerDate": "2020-03-12 16:52:26 +0200",
|
|
784
|
+
"isTagged": true,
|
|
785
|
+
"tag": "@pie-element/hotspot@4.3.0"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"type": "fix",
|
|
789
|
+
"scope": null,
|
|
790
|
+
"subject": "bump ui versions",
|
|
791
|
+
"merge": null,
|
|
792
|
+
"header": "fix: bump ui versions",
|
|
793
|
+
"body": null,
|
|
794
|
+
"footer": null,
|
|
795
|
+
"notes": [],
|
|
796
|
+
"hash": "5b9d99fe59c304bdd173c9336503eb558900d2a2",
|
|
797
|
+
"gitTags": "",
|
|
798
|
+
"committerDate": "2020-03-31 19:25:13 +0100",
|
|
799
|
+
"isTagged": true,
|
|
800
|
+
"tag": "@pie-element/hotspot@4.3.0"
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"type": "fix",
|
|
804
|
+
"scope": null,
|
|
805
|
+
"subject": "bump version",
|
|
806
|
+
"merge": null,
|
|
807
|
+
"header": "fix: bump version",
|
|
808
|
+
"body": null,
|
|
809
|
+
"footer": null,
|
|
810
|
+
"notes": [],
|
|
811
|
+
"hash": "98a13048d48af872a216f9e2eae1a22a7ecf552f",
|
|
812
|
+
"gitTags": "",
|
|
813
|
+
"committerDate": "2020-04-10 17:14:19 +0100",
|
|
814
|
+
"isTagged": true,
|
|
815
|
+
"tag": "@pie-element/hotspot@4.6.0"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"type": "fix",
|
|
819
|
+
"scope": null,
|
|
820
|
+
"subject": "bump lib and ui versions",
|
|
821
|
+
"merge": null,
|
|
822
|
+
"header": "fix: bump lib and ui versions",
|
|
823
|
+
"body": null,
|
|
824
|
+
"footer": null,
|
|
825
|
+
"notes": [],
|
|
826
|
+
"hash": "a882cbf4580098ce0e12c51cf6ad2879817e17e7",
|
|
827
|
+
"gitTags": "",
|
|
828
|
+
"committerDate": "2020-04-10 17:13:24 +0100",
|
|
829
|
+
"isTagged": true,
|
|
830
|
+
"tag": "@pie-element/hotspot@4.6.0"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"type": "feat",
|
|
834
|
+
"scope": null,
|
|
835
|
+
"subject": "7727: When resizing images in hotspot, the default behavior should be to keep the aspect ratio fixed",
|
|
836
|
+
"merge": null,
|
|
837
|
+
"header": "feat: 7727: When resizing images in hotspot, the default behavior should be to keep the aspect ratio fixed",
|
|
838
|
+
"body": null,
|
|
839
|
+
"footer": null,
|
|
840
|
+
"notes": [],
|
|
841
|
+
"hash": "651d7e2e3d0f1c4f2bdf4089ca3437f547363648",
|
|
842
|
+
"gitTags": "",
|
|
843
|
+
"committerDate": "2020-03-30 16:00:49 +0300",
|
|
844
|
+
"isTagged": true,
|
|
845
|
+
"tag": "@pie-element/hotspot@4.6.0"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"type": "fix",
|
|
849
|
+
"scope": null,
|
|
850
|
+
"subject": "ch7799: the Item Preview for a legacy hot spot item appears to show the wrong answer because the lines that are too close to the margins are not visible. Solution: add padding and move content accordingly so that the lines will be displayed entirely.",
|
|
851
|
+
"merge": null,
|
|
852
|
+
"header": "fix: ch7799: the Item Preview for a legacy hot spot item appears to show the wrong answer because the lines that are too close to the margins are not visible. Solution: add padding and move content accordingly so that the lines will be displayed entirely.",
|
|
853
|
+
"body": null,
|
|
854
|
+
"footer": null,
|
|
855
|
+
"notes": [],
|
|
856
|
+
"hash": "a5c696e11115214ab3dee76461eff1c8dca98939",
|
|
857
|
+
"gitTags": "",
|
|
858
|
+
"committerDate": "2020-03-27 12:48:40 +0200",
|
|
859
|
+
"isTagged": true,
|
|
860
|
+
"tag": "@pie-element/hotspot@4.6.0"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"type": "fix",
|
|
864
|
+
"scope": null,
|
|
865
|
+
"subject": "bump all packages to avoid tag conflict",
|
|
866
|
+
"merge": null,
|
|
867
|
+
"header": "fix: bump all packages to avoid tag conflict",
|
|
868
|
+
"body": null,
|
|
869
|
+
"footer": null,
|
|
870
|
+
"notes": [],
|
|
871
|
+
"hash": "d9ec9a8689f0a391594b5e2f4ea958c6dc9f6d7b",
|
|
872
|
+
"gitTags": "",
|
|
873
|
+
"committerDate": "2020-04-10 20:01:37 +0100",
|
|
874
|
+
"isTagged": true,
|
|
875
|
+
"tag": "@pie-element/hotspot@4.6.0"
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"type": "fix",
|
|
879
|
+
"scope": null,
|
|
880
|
+
"subject": "bump version",
|
|
881
|
+
"merge": null,
|
|
882
|
+
"header": "fix: bump version",
|
|
883
|
+
"body": null,
|
|
884
|
+
"footer": null,
|
|
885
|
+
"notes": [],
|
|
886
|
+
"hash": "4647e950c9fc778e139f6b47b6368abd4a052c39",
|
|
887
|
+
"gitTags": "",
|
|
888
|
+
"committerDate": "2020-04-10 17:29:44 +0100",
|
|
889
|
+
"isTagged": true,
|
|
890
|
+
"tag": "@pie-element/hotspot@4.6.0"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"type": "fix",
|
|
894
|
+
"scope": null,
|
|
895
|
+
"subject": "bump hotspot",
|
|
896
|
+
"merge": null,
|
|
897
|
+
"header": "fix: bump hotspot",
|
|
898
|
+
"body": null,
|
|
899
|
+
"footer": null,
|
|
900
|
+
"notes": [],
|
|
901
|
+
"hash": "7976558b23db9b7328956b9eead49e7bbc9dd0c0",
|
|
902
|
+
"gitTags": "",
|
|
903
|
+
"committerDate": "2020-04-10 16:44:22 +0100",
|
|
904
|
+
"isTagged": true,
|
|
905
|
+
"tag": "@pie-element/hotspot@4.6.0"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"type": "fix",
|
|
909
|
+
"scope": null,
|
|
910
|
+
"subject": "bump ui/lib versions",
|
|
911
|
+
"merge": null,
|
|
912
|
+
"header": "fix: bump ui/lib versions",
|
|
913
|
+
"body": null,
|
|
914
|
+
"footer": null,
|
|
915
|
+
"notes": [],
|
|
916
|
+
"hash": "3edb2321ebaefcaee70c3642aa6da8a50e8a99e5",
|
|
917
|
+
"gitTags": "",
|
|
918
|
+
"committerDate": "2020-04-14 15:36:44 +0100",
|
|
919
|
+
"isTagged": true,
|
|
920
|
+
"tag": "@pie-element/hotspot@4.6.2"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"type": "fix",
|
|
924
|
+
"scope": null,
|
|
925
|
+
"subject": "bump ui/lib versions",
|
|
926
|
+
"merge": null,
|
|
927
|
+
"header": "fix: bump ui/lib versions",
|
|
928
|
+
"body": null,
|
|
929
|
+
"footer": null,
|
|
930
|
+
"notes": [],
|
|
931
|
+
"hash": "45f0da6e3e01f33aff6059cb13d571554690348b",
|
|
932
|
+
"gitTags": "",
|
|
933
|
+
"committerDate": "2020-04-28 14:57:57 +0100",
|
|
934
|
+
"isTagged": true,
|
|
935
|
+
"tag": "@pie-element/hotspot@4.6.3"
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"type": "fix",
|
|
939
|
+
"scope": null,
|
|
940
|
+
"subject": "update ui/lib versions",
|
|
941
|
+
"merge": null,
|
|
942
|
+
"header": "fix: update ui/lib versions",
|
|
943
|
+
"body": null,
|
|
944
|
+
"footer": null,
|
|
945
|
+
"notes": [],
|
|
946
|
+
"hash": "0226b0bc0869d468ba3e5986bc469e020f4f12a6",
|
|
947
|
+
"gitTags": "",
|
|
948
|
+
"committerDate": "2020-04-28 14:20:37 +0100",
|
|
949
|
+
"isTagged": true,
|
|
950
|
+
"tag": "@pie-element/hotspot@4.6.3"
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"type": "fix",
|
|
954
|
+
"scope": null,
|
|
955
|
+
"subject": "ui+libs update",
|
|
956
|
+
"merge": null,
|
|
957
|
+
"header": "fix: ui+libs update",
|
|
958
|
+
"body": null,
|
|
959
|
+
"footer": null,
|
|
960
|
+
"notes": [],
|
|
961
|
+
"hash": "6127de27006a7835d1dd7a9c4c5f13de950aa06d",
|
|
962
|
+
"gitTags": "",
|
|
963
|
+
"committerDate": "2020-04-27 19:52:07 +0100",
|
|
964
|
+
"isTagged": true,
|
|
965
|
+
"tag": "@pie-element/hotspot@4.6.3"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"type": "fix",
|
|
969
|
+
"scope": null,
|
|
970
|
+
"subject": "PD-55, PD-56, PD-57, PD-58: Updated version of pie-ui/hotspot",
|
|
971
|
+
"merge": null,
|
|
972
|
+
"header": "fix: PD-55, PD-56, PD-57, PD-58: Updated version of pie-ui/hotspot",
|
|
973
|
+
"body": null,
|
|
974
|
+
"footer": null,
|
|
975
|
+
"notes": [],
|
|
976
|
+
"hash": "04ede85733955419a43b73d7486fc10fc84b5bd9",
|
|
977
|
+
"gitTags": "",
|
|
978
|
+
"committerDate": "2020-04-22 13:07:40 +0300",
|
|
979
|
+
"isTagged": true,
|
|
980
|
+
"tag": "@pie-element/hotspot@4.6.3"
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"type": "fix",
|
|
984
|
+
"scope": null,
|
|
985
|
+
"subject": "PD-56: Bug with resizing an image in hot spot",
|
|
986
|
+
"merge": null,
|
|
987
|
+
"header": "fix: PD-56: Bug with resizing an image in hot spot",
|
|
988
|
+
"body": "fix: PD-57: Hotspot: Enlarge the Help icon\nfix: PD-58: Hotspot: Hotspot creation should use a drag-and-drop gesture to create hotspots.",
|
|
989
|
+
"footer": null,
|
|
990
|
+
"notes": [],
|
|
991
|
+
"hash": "bfeb160b80d089178b193b990d68b61965be8866",
|
|
992
|
+
"gitTags": "",
|
|
993
|
+
"committerDate": "2020-04-17 09:31:25 +0300",
|
|
994
|
+
"isTagged": true,
|
|
995
|
+
"tag": "@pie-element/hotspot@4.6.3"
|
|
996
|
+
}
|
|
997
|
+
]
|