@pie-element/number-line 0.1.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/dist/_virtual/_rolldown/runtime.js +11 -0
- package/dist/author/arrows.d.ts +29 -0
- package/dist/author/arrows.d.ts.map +1 -0
- package/dist/author/arrows.js +69 -0
- package/dist/author/card-bar.d.ts +21 -0
- package/dist/author/card-bar.d.ts.map +1 -0
- package/dist/author/card-bar.js +41 -0
- package/dist/author/defaults.d.ts +179 -0
- package/dist/author/defaults.d.ts.map +1 -0
- package/dist/author/defaults.js +144 -0
- package/dist/author/domain.d.ts +16 -0
- package/dist/author/domain.d.ts.map +1 -0
- package/dist/author/domain.js +53 -0
- package/dist/author/index.d.ts +24 -0
- package/dist/author/index.d.ts.map +1 -0
- package/dist/author/index.js +89 -0
- package/dist/author/main.d.ts +45 -0
- package/dist/author/main.d.ts.map +1 -0
- package/dist/author/main.js +482 -0
- package/dist/author/number-text-field.d.ts +14 -0
- package/dist/author/number-text-field.d.ts.map +1 -0
- package/dist/author/number-text-field.js +11 -0
- package/dist/author/point-config.d.ts +26 -0
- package/dist/author/point-config.d.ts.map +1 -0
- package/dist/author/point-config.js +69 -0
- package/dist/author/size.d.ts +25 -0
- package/dist/author/size.d.ts.map +1 -0
- package/dist/author/size.js +48 -0
- package/dist/author/ticks.d.ts +23 -0
- package/dist/author/ticks.d.ts.map +1 -0
- package/dist/author/ticks.js +115 -0
- package/dist/author/utils.d.ts +10 -0
- package/dist/author/utils.d.ts.map +1 -0
- package/dist/author/utils.js +4 -0
- package/dist/controller/defaults.d.ts +59 -0
- package/dist/controller/defaults.d.ts.map +1 -0
- package/dist/controller/defaults.js +50 -0
- package/dist/controller/index.d.ts +34 -0
- package/dist/controller/index.d.ts.map +1 -0
- package/dist/controller/index.js +170 -0
- package/dist/controller/tickUtils.d.ts +21 -0
- package/dist/controller/tickUtils.d.ts.map +1 -0
- package/dist/controller/tickUtils.js +254 -0
- package/dist/controller/utils.d.ts +10 -0
- package/dist/controller/utils.d.ts.map +1 -0
- package/dist/controller/utils.js +68 -0
- package/dist/delivery/data-converter.d.ts +65 -0
- package/dist/delivery/data-converter.d.ts.map +1 -0
- package/dist/delivery/data-converter.js +70 -0
- package/dist/delivery/draggable/index.d.ts +34 -0
- package/dist/delivery/draggable/index.d.ts.map +1 -0
- package/dist/delivery/draggable/index.js +39 -0
- package/dist/delivery/index.d.ts +36 -0
- package/dist/delivery/index.d.ts.map +1 -0
- package/dist/delivery/index.js +109 -0
- package/dist/delivery/number-line/colors.d.ts +12 -0
- package/dist/delivery/number-line/colors.d.ts.map +1 -0
- package/dist/delivery/number-line/colors.js +5 -0
- package/dist/delivery/number-line/feedback.d.ts +20 -0
- package/dist/delivery/number-line/feedback.d.ts.map +1 -0
- package/dist/delivery/number-line/feedback.js +57 -0
- package/dist/delivery/number-line/graph/arrow.d.ts +31 -0
- package/dist/delivery/number-line/graph/arrow.d.ts.map +1 -0
- package/dist/delivery/number-line/graph/arrow.js +27 -0
- package/dist/delivery/number-line/graph/elements/base.d.ts +17 -0
- package/dist/delivery/number-line/graph/elements/base.d.ts.map +1 -0
- package/dist/delivery/number-line/graph/elements/base.js +11 -0
- package/dist/delivery/number-line/graph/elements/builder.d.ts +34 -0
- package/dist/delivery/number-line/graph/elements/builder.d.ts.map +1 -0
- package/dist/delivery/number-line/graph/elements/builder.js +30 -0
- package/dist/delivery/number-line/graph/elements/line.d.ts +52 -0
- package/dist/delivery/number-line/graph/elements/line.d.ts.map +1 -0
- package/dist/delivery/number-line/graph/elements/line.js +189 -0
- package/dist/delivery/number-line/graph/elements/point.d.ts +44 -0
- package/dist/delivery/number-line/graph/elements/point.d.ts.map +1 -0
- package/dist/delivery/number-line/graph/elements/point.js +127 -0
- package/dist/delivery/number-line/graph/elements/ray.d.ts +44 -0
- package/dist/delivery/number-line/graph/elements/ray.d.ts.map +1 -0
- package/dist/delivery/number-line/graph/elements/ray.js +130 -0
- package/dist/delivery/number-line/graph/index.d.ts +60 -0
- package/dist/delivery/number-line/graph/index.d.ts.map +1 -0
- package/dist/delivery/number-line/graph/index.js +196 -0
- package/dist/delivery/number-line/graph/line.d.ts +47 -0
- package/dist/delivery/number-line/graph/line.d.ts.map +1 -0
- package/dist/delivery/number-line/graph/line.js +27 -0
- package/dist/delivery/number-line/graph/stacks.d.ts +11 -0
- package/dist/delivery/number-line/graph/stacks.d.ts.map +1 -0
- package/dist/delivery/number-line/graph/stacks.js +40 -0
- package/dist/delivery/number-line/graph/tick-utils.d.ts +74 -0
- package/dist/delivery/number-line/graph/tick-utils.d.ts.map +1 -0
- package/dist/delivery/number-line/graph/tick-utils.js +297 -0
- package/dist/delivery/number-line/graph/ticks.d.ts +47 -0
- package/dist/delivery/number-line/graph/ticks.d.ts.map +1 -0
- package/dist/delivery/number-line/graph/ticks.js +115 -0
- package/dist/delivery/number-line/index.d.ts +36 -0
- package/dist/delivery/number-line/index.d.ts.map +1 -0
- package/dist/delivery/number-line/index.js +218 -0
- package/dist/delivery/number-line/point-chooser/button.d.ts +32 -0
- package/dist/delivery/number-line/point-chooser/button.d.ts.map +1 -0
- package/dist/delivery/number-line/point-chooser/button.js +36 -0
- package/dist/delivery/number-line/point-chooser/img.d.ts +11 -0
- package/dist/delivery/number-line/point-chooser/img.d.ts.map +1 -0
- package/dist/delivery/number-line/point-chooser/img.js +4 -0
- package/dist/delivery/number-line/point-chooser/index.d.ts +38 -0
- package/dist/delivery/number-line/point-chooser/index.d.ts.map +1 -0
- package/dist/delivery/number-line/point-chooser/index.js +154 -0
- package/dist/delivery/number-line/point-chooser/styles.d.ts +193 -0
- package/dist/delivery/number-line/point-chooser/styles.d.ts.map +1 -0
- package/dist/delivery/number-line/transitions/fade.d.ts +35 -0
- package/dist/delivery/number-line/transitions/fade.d.ts.map +1 -0
- package/dist/delivery/number-line/transitions/fade.js +75 -0
- package/dist/delivery/number-line/transitions/index.d.ts +11 -0
- package/dist/delivery/number-line/transitions/index.d.ts.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.iife.d.ts +9 -0
- package/dist/index.iife.d.ts.map +1 -0
- package/dist/index.iife.js +201 -0
- package/dist/index.js +2 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_DataView.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_Hash.js +16 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_ListCache.js +16 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_Map.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_MapCache.js +16 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_Promise.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_Set.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_SetCache.js +11 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_Stack.js +13 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_Symbol.js +5 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_Uint8Array.js +5 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_WeakMap.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_apply.js +12 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_arrayEach.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_arrayFilter.js +10 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_arrayIncludes.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_arrayIncludesWith.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_arrayLikeKeys.js +15 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_arrayMap.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_arrayPush.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_arraySome.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_assignMergeValue.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_assignValue.js +10 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_assocIndexOf.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseAssign.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseAssignIn.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseAssignValue.js +12 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseClone.js +57 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseCreate.js +14 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseFindIndex.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseFor.js +5 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseGet.js +10 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseGetAllKeys.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseGetTag.js +10 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseHasIn.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseIndexOf.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseIsArguments.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseIsEqual.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseIsEqualDeep.js +30 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseIsMap.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseIsMatch.js +26 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseIsNaN.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseIsNative.js +11 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseIsSet.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseIsTypedArray.js +11 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseIteratee.js +11 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseKeys.js +12 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseKeysIn.js +13 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseMatches.js +12 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseMatchesProperty.js +17 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseMerge.js +19 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseMergeDeep.js +31 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_basePickBy.js +13 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseProperty.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_basePropertyDeep.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseRest.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseSet.js +22 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseSetToString.js +14 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseTimes.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseToString.js +15 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseTrim.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseUnary.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_baseUniq.js +27 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_cacheHas.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_castPath.js +10 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_cloneArrayBuffer.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_cloneBuffer.js +10 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_cloneDataView.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_cloneRegExp.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_cloneSymbol.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_cloneTypedArray.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_copyArray.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_copyObject.js +14 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_copySymbols.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_copySymbolsIn.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_coreJsData.js +5 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_createAssigner.js +15 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_createBaseFor.js +12 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_createFind.js +19 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_createSet.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_defineProperty.js +10 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_equalArrays.js +35 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_equalByTag.js +35 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_equalObjects.js +32 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_freeGlobal.js +4 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_getAllKeys.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_getAllKeysIn.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_getMapData.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_getMatchData.js +16 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_getNative.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_getPrototype.js +5 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_getRawTag.js +14 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_getSymbols.js +10 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_getSymbolsIn.js +11 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_getTag.js +23 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_getValue.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_hasPath.js +18 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_hashClear.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_hashDelete.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_hashGet.js +13 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_hashHas.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_hashSet.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_initCloneArray.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_initCloneByTag.js +33 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_initCloneObject.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_isIndex.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_isIterateeCall.js +12 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_isKey.js +11 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_isKeyable.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_isMasked.js +11 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_isPrototype.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_isStrictComparable.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_listCacheClear.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_listCacheDelete.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_listCacheGet.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_listCacheHas.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_listCacheSet.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_mapCacheClear.js +13 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_mapCacheDelete.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_mapCacheGet.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_mapCacheHas.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_mapCacheSet.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_mapToArray.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_matchesStrictComparable.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_memoizeCapped.js +11 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_nativeCreate.js +5 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_nativeKeys.js +5 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_nativeKeysIn.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_nodeUtil.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_objectToString.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_overArg.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_overRest.js +13 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_root.js +5 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_safeGet.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_setCacheAdd.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_setCacheHas.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_setToArray.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_setToString.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_shortOut.js +14 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_stackClear.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_stackDelete.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_stackGet.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_stackHas.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_stackSet.js +16 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_strictIndexOf.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_stringToPath.js +10 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_toKey.js +10 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_toSource.js +15 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/_trimmedEndIndex.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/cloneDeep.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/constant.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/eq.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/find.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/findIndex.js +13 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/get.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/hasIn.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/identity.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isArguments.js +10 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isArray.js +4 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isArrayLike.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isArrayLikeObject.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isBuffer.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isEmpty.js +21 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isEqual.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isEqualWith.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isFunction.js +11 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isLength.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isMap.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isNumber.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isObject.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isObjectLike.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isPlainObject.js +14 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isSet.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isSymbol.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isTypedArray.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/keys.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/keysIn.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/memoize.js +16 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/merge.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/negate.js +17 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/noop.js +4 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/omitBy.js +9 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/pickBy.js +16 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/property.js +10 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/stubArray.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/stubFalse.js +6 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/toFinite.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/toInteger.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/toNumber.js +19 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/toPlainObject.js +8 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/toString.js +7 -0
- package/dist/node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/uniqWith.js +7 -0
- package/package.json +77 -0
- package/src/author/arrows.tsx +87 -0
- package/src/author/card-bar.tsx +70 -0
- package/src/author/defaults.ts +127 -0
- package/src/author/domain.tsx +79 -0
- package/src/author/index.ts +199 -0
- package/src/author/main.tsx +777 -0
- package/src/author/number-text-field.tsx +28 -0
- package/src/author/point-config.tsx +93 -0
- package/src/author/size.tsx +74 -0
- package/src/author/ticks.tsx +272 -0
- package/src/author/utils.ts +16 -0
- package/src/controller/defaults.ts +40 -0
- package/src/controller/index.ts +437 -0
- package/src/controller/tickUtils.ts +324 -0
- package/src/controller/utils.ts +159 -0
- package/src/delivery/data-converter.ts +88 -0
- package/src/delivery/draggable/index.ts +116 -0
- package/src/delivery/index.ts +225 -0
- package/src/delivery/number-line/colors.ts +15 -0
- package/src/delivery/number-line/feedback.tsx +85 -0
- package/src/delivery/number-line/graph/arrow.tsx +43 -0
- package/src/delivery/number-line/graph/elements/base.ts +20 -0
- package/src/delivery/number-line/graph/elements/builder.ts +37 -0
- package/src/delivery/number-line/graph/elements/line.tsx +259 -0
- package/src/delivery/number-line/graph/elements/point.tsx +219 -0
- package/src/delivery/number-line/graph/elements/ray.tsx +168 -0
- package/src/delivery/number-line/graph/index.tsx +258 -0
- package/src/delivery/number-line/graph/line.tsx +33 -0
- package/src/delivery/number-line/graph/stacks.ts +82 -0
- package/src/delivery/number-line/graph/tick-utils.ts +369 -0
- package/src/delivery/number-line/graph/ticks.tsx +189 -0
- package/src/delivery/number-line/index.tsx +385 -0
- package/src/delivery/number-line/point-chooser/button.tsx +54 -0
- package/src/delivery/number-line/point-chooser/img.ts +11 -0
- package/src/delivery/number-line/point-chooser/index.tsx +200 -0
- package/src/delivery/number-line/point-chooser/styles.ts +86 -0
- package/src/delivery/number-line/transitions/fade.tsx +100 -0
- package/src/delivery/number-line/transitions/index.ts +12 -0
- package/src/index.iife.ts +16 -0
- package/src/index.ts +1 -0
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { data_converter_exports as e, lineIsSwitched as t, switchGraphLine as n, toGraphFormat as r, toSessionFormat as i } from "./data-converter.js";
|
|
2
|
+
import { point_chooser_exports as a } from "./number-line/point-chooser/index.js";
|
|
3
|
+
import o from "../node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/cloneDeep.js";
|
|
4
|
+
import { tick_utils_exports as s } from "./number-line/graph/tick-utils.js";
|
|
5
|
+
import c from "./number-line/graph/index.js";
|
|
6
|
+
import l from "./number-line/index.js";
|
|
7
|
+
import u from "react";
|
|
8
|
+
import { createRoot as d } from "react-dom/client";
|
|
9
|
+
import { renderMath as f } from "@pie-element/shared-math-rendering-mathjax";
|
|
10
|
+
//#region src/delivery/index.ts
|
|
11
|
+
var p = class extends HTMLElement {
|
|
12
|
+
constructor() {
|
|
13
|
+
super(), this._root = null, this._mathObserver = null, this._mathRenderPending = !1;
|
|
14
|
+
}
|
|
15
|
+
_scheduleMathRender = () => {
|
|
16
|
+
this._mathRenderPending || (this._mathRenderPending = !0, requestAnimationFrame(() => {
|
|
17
|
+
this._mathObserver && this._mathObserver.disconnect(), f(this), this._mathRenderPending = !1, setTimeout(() => {
|
|
18
|
+
this._mathObserver && this._mathObserver.observe(this, {
|
|
19
|
+
childList: !0,
|
|
20
|
+
subtree: !0,
|
|
21
|
+
characterData: !1
|
|
22
|
+
});
|
|
23
|
+
}, 50);
|
|
24
|
+
}));
|
|
25
|
+
};
|
|
26
|
+
_initMathObserver() {
|
|
27
|
+
this._mathObserver || (this._mathObserver = new MutationObserver(() => {
|
|
28
|
+
this._scheduleMathRender();
|
|
29
|
+
}), this._mathObserver.observe(this, {
|
|
30
|
+
childList: !0,
|
|
31
|
+
subtree: !0,
|
|
32
|
+
characterData: !1
|
|
33
|
+
}));
|
|
34
|
+
}
|
|
35
|
+
_disconnectMathObserver() {
|
|
36
|
+
this._mathObserver &&= (this._mathObserver.disconnect(), null);
|
|
37
|
+
}
|
|
38
|
+
set model(e) {
|
|
39
|
+
this._model = e, this._applyInitialElements(), this._render(), this.dispatch("model-set");
|
|
40
|
+
}
|
|
41
|
+
set session(e) {
|
|
42
|
+
this._session = e, this._applyInitialElements(), this._render();
|
|
43
|
+
}
|
|
44
|
+
get session() {
|
|
45
|
+
return this._session;
|
|
46
|
+
}
|
|
47
|
+
connectedCallback() {
|
|
48
|
+
this._initMathObserver(), this._render();
|
|
49
|
+
}
|
|
50
|
+
isComplete() {
|
|
51
|
+
return this._session ? (this._session.answer || []).length > 0 : !1;
|
|
52
|
+
}
|
|
53
|
+
dispatch(e) {
|
|
54
|
+
this.dispatchEvent(new CustomEvent(e, {
|
|
55
|
+
bubbles: !0,
|
|
56
|
+
detail: { complete: this.isComplete() }
|
|
57
|
+
}));
|
|
58
|
+
}
|
|
59
|
+
dispatchSessionChanged() {
|
|
60
|
+
this.dispatch("session-changed");
|
|
61
|
+
}
|
|
62
|
+
addElement(e) {
|
|
63
|
+
this._session && (this._session.answer = this._session.answer || [], this._session.answer.push(i(e)), this.dispatchSessionChanged(), this._render());
|
|
64
|
+
}
|
|
65
|
+
moveElement(e, r, a) {
|
|
66
|
+
if (!this._session.answer[e]) throw Error("cant find element at index: ", e);
|
|
67
|
+
if (r.type === "line" && a.left === a.right) {
|
|
68
|
+
this._render();
|
|
69
|
+
return;
|
|
70
|
+
}
|
|
71
|
+
r.position = a;
|
|
72
|
+
let o = r.type === "line" && t(r) ? n(r) : r;
|
|
73
|
+
this._session.answer.splice(e, 1, i(o)), this.dispatchSessionChanged(), this._render();
|
|
74
|
+
}
|
|
75
|
+
deleteElements(e) {
|
|
76
|
+
this._session.answer = this._session.answer.filter((t, n) => !e.some((e) => e === n)), this.dispatchSessionChanged(), this._render();
|
|
77
|
+
}
|
|
78
|
+
undoElement() {
|
|
79
|
+
this._session.answer.pop(), this.dispatchSessionChanged(), this._render();
|
|
80
|
+
}
|
|
81
|
+
clearElements() {
|
|
82
|
+
this._session.answer = [], this.dispatchSessionChanged(), this._render();
|
|
83
|
+
}
|
|
84
|
+
_applyInitialElements() {
|
|
85
|
+
this._model && this._model.graph && this._model.graph.initialElements && this._session && (!this._session.answer || !this._session.answer.length) && (this._session.answer = o(this._model.graph.initialElements));
|
|
86
|
+
}
|
|
87
|
+
_render() {
|
|
88
|
+
if (this._model && this._session) {
|
|
89
|
+
this._session.answer || this._applyInitialElements();
|
|
90
|
+
let e = (this._session.answer || []).map(r), t = o(this._model);
|
|
91
|
+
t.correctResponse = t.correctResponse && t.correctResponse.map(r);
|
|
92
|
+
let n = {
|
|
93
|
+
model: t,
|
|
94
|
+
answer: e,
|
|
95
|
+
onAddElement: this.addElement.bind(this),
|
|
96
|
+
onMoveElement: this.moveElement.bind(this),
|
|
97
|
+
onDeleteElements: this.deleteElements.bind(this),
|
|
98
|
+
onUndoElement: this.undoElement.bind(this),
|
|
99
|
+
onClearElements: this.clearElements.bind(this)
|
|
100
|
+
}, i = u.createElement(l, n);
|
|
101
|
+
this._root ||= d(this), this._root.render(i), this._scheduleMathRender();
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
disconnectedCallback() {
|
|
105
|
+
this._disconnectMathObserver(), this._root && this._root.unmount();
|
|
106
|
+
}
|
|
107
|
+
};
|
|
108
|
+
//#endregion
|
|
109
|
+
export { c as Graph, l as NumberLineComponent, e as dataConverter, p as default, a as pointChooser, s as tickUtils };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @synced-from pie-elements/packages/number-line/src/number-line/colors.js
|
|
3
|
+
* @auto-generated
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically synced from pie-elements and converted to TypeScript.
|
|
6
|
+
* Manual edits will be overwritten on next sync.
|
|
7
|
+
* To make changes, edit the upstream JavaScript file and run sync again.
|
|
8
|
+
*/
|
|
9
|
+
export declare const selected: any;
|
|
10
|
+
export declare const correct: any;
|
|
11
|
+
export declare const incorrect: any;
|
|
12
|
+
//# sourceMappingURL=colors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../src/delivery/number-line/colors.ts"],"names":[],"mappings":"AACA;;;;;;;GAOG;AAIH,eAAO,MAAM,QAAQ,KAAsB,CAAC;AAC5C,eAAO,MAAM,OAAO,KAAkB,CAAC;AACvC,eAAO,MAAM,SAAS,KAAoB,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @synced-from pie-elements/packages/number-line/src/number-line/feedback.jsx
|
|
3
|
+
* @auto-generated
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically synced from pie-elements and converted to TypeScript.
|
|
6
|
+
* Manual edits will be overwritten on next sync.
|
|
7
|
+
* To make changes, edit the upstream JavaScript file and run sync again.
|
|
8
|
+
*/
|
|
9
|
+
import PropTypes from 'prop-types';
|
|
10
|
+
import React from 'react';
|
|
11
|
+
declare const Feedback: {
|
|
12
|
+
(props: any): React.JSX.Element;
|
|
13
|
+
propTypes: {
|
|
14
|
+
width: PropTypes.Requireable<number>;
|
|
15
|
+
message: PropTypes.Requireable<string>;
|
|
16
|
+
type: PropTypes.Requireable<string>;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
export default Feedback;
|
|
20
|
+
//# sourceMappingURL=feedback.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"feedback.d.ts","sourceRoot":"","sources":["../../../src/delivery/number-line/feedback.tsx"],"names":[],"mappings":"AACA;;;;;;;GAOG;AAGH,OAAO,SAAS,MAAM,YAAY,CAAC;AAGnC,OAAO,KAAiB,MAAM,OAAO,CAAC;AA+CtC,QAAA,MAAM,QAAQ;;;;;;;CAeb,CAAC;AAQF,eAAe,QAAQ,CAAC"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { useRef as e } from "react";
|
|
2
|
+
import { styled as t } from "@mui/material/styles";
|
|
3
|
+
import n from "prop-types";
|
|
4
|
+
import { jsx as r, jsxs as i } from "react/jsx-runtime";
|
|
5
|
+
import { color as a } from "@pie-lib/render-ui";
|
|
6
|
+
import { CSSTransition as o, TransitionGroup as s } from "react-transition-group";
|
|
7
|
+
import { Correct as c, Incorrect as l, NothingSubmitted as u, PartiallyCorrect as d, ShowRationale as f } from "@pie-lib/icons";
|
|
8
|
+
//#region src/delivery/number-line/feedback.tsx
|
|
9
|
+
var p = (e) => {
|
|
10
|
+
switch (e) {
|
|
11
|
+
case "unanswered": return u;
|
|
12
|
+
case "correct": return c;
|
|
13
|
+
case "incorrect": return l;
|
|
14
|
+
case "partial": return d;
|
|
15
|
+
case "info": return f;
|
|
16
|
+
default: return;
|
|
17
|
+
}
|
|
18
|
+
}, m = t("div")(({ $type: e }) => ({
|
|
19
|
+
marginTop: "10px",
|
|
20
|
+
backgroundColor: "#dddddd",
|
|
21
|
+
padding: "10px",
|
|
22
|
+
display: "flex",
|
|
23
|
+
alignItems: "center",
|
|
24
|
+
...e === "correct" && { backgroundColor: a.correct() },
|
|
25
|
+
...e === "incorrect" && { backgroundColor: a.incorrect() },
|
|
26
|
+
"& svg": { height: "30px" },
|
|
27
|
+
"& h1": {
|
|
28
|
+
padding: "0px",
|
|
29
|
+
margin: "0px"
|
|
30
|
+
}
|
|
31
|
+
})), h = t("span")({
|
|
32
|
+
paddingLeft: "5px",
|
|
33
|
+
userSelect: "none"
|
|
34
|
+
}), g = (t) => {
|
|
35
|
+
let { type: n, width: a, message: c } = t, l = p(n), u = e(null);
|
|
36
|
+
return /* @__PURE__ */ r(s, { children: /* @__PURE__ */ r(o, {
|
|
37
|
+
classNames: "fb",
|
|
38
|
+
timeout: 300,
|
|
39
|
+
nodeRef: u,
|
|
40
|
+
children: /* @__PURE__ */ i(m, {
|
|
41
|
+
ref: u,
|
|
42
|
+
$type: n,
|
|
43
|
+
style: { width: a },
|
|
44
|
+
children: [/* @__PURE__ */ r(l, {
|
|
45
|
+
iconSet: "emoji",
|
|
46
|
+
shape: "square"
|
|
47
|
+
}), /* @__PURE__ */ r(h, { dangerouslySetInnerHTML: { __html: c } })]
|
|
48
|
+
}, "panel")
|
|
49
|
+
}, "fb") });
|
|
50
|
+
};
|
|
51
|
+
g.propTypes = {
|
|
52
|
+
width: n.number,
|
|
53
|
+
message: n.string,
|
|
54
|
+
type: n.string
|
|
55
|
+
};
|
|
56
|
+
//#endregion
|
|
57
|
+
export { g as default };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @synced-from pie-elements/packages/number-line/src/number-line/graph/arrow.jsx
|
|
3
|
+
* @auto-generated
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically synced from pie-elements and converted to TypeScript.
|
|
6
|
+
* Manual edits will be overwritten on next sync.
|
|
7
|
+
* To make changes, edit the upstream JavaScript file and run sync again.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
import PropTypes from 'prop-types';
|
|
11
|
+
export declare function Arrow({ x, y, direction, className }: {
|
|
12
|
+
x: any;
|
|
13
|
+
y: any;
|
|
14
|
+
direction: any;
|
|
15
|
+
className: any;
|
|
16
|
+
}): React.JSX.Element;
|
|
17
|
+
export declare namespace Arrow {
|
|
18
|
+
var propTypes: {
|
|
19
|
+
y: PropTypes.Requireable<number>;
|
|
20
|
+
x: PropTypes.Requireable<number>;
|
|
21
|
+
direction: PropTypes.Requireable<string>;
|
|
22
|
+
className: PropTypes.Requireable<string>;
|
|
23
|
+
};
|
|
24
|
+
var defaultProps: {
|
|
25
|
+
y: number;
|
|
26
|
+
x: number;
|
|
27
|
+
direction: string;
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
export default Arrow;
|
|
31
|
+
//# sourceMappingURL=arrow.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"arrow.d.ts","sourceRoot":"","sources":["../../../../src/delivery/number-line/graph/arrow.tsx"],"names":[],"mappings":"AACA;;;;;;;GAOG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,SAAS,MAAM,YAAY,CAAC;AAQnC,wBAAgB,KAAK,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,SAAS,EAAE,SAAS,EAAE;;;;;CAAA,qBAQnD;yBARe,KAAK;;;;;;;;;;;;;AAuBrB,eAAe,KAAK,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import "react";
|
|
2
|
+
import { styled as e } from "@mui/material/styles";
|
|
3
|
+
import t from "prop-types";
|
|
4
|
+
import { jsx as n } from "react/jsx-runtime";
|
|
5
|
+
import { color as r } from "@pie-lib/render-ui";
|
|
6
|
+
//#region src/delivery/number-line/graph/arrow.tsx
|
|
7
|
+
var i = e("path")({ fill: r.primary() });
|
|
8
|
+
function a({ x: e, y: t, direction: r, className: a }) {
|
|
9
|
+
let o = `translate(${e || 0},${t})`;
|
|
10
|
+
return r && r === "right" && (o += " rotate(180)"), /* @__PURE__ */ n(i, {
|
|
11
|
+
d: "m 0,0 8,-5 0,10 -8,-5",
|
|
12
|
+
transform: o,
|
|
13
|
+
className: a
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
a.propTypes = {
|
|
17
|
+
y: t.number,
|
|
18
|
+
x: t.number,
|
|
19
|
+
direction: t.oneOf(["left", "right"]),
|
|
20
|
+
className: t.string
|
|
21
|
+
}, a.defaultProps = {
|
|
22
|
+
y: 0,
|
|
23
|
+
x: 0,
|
|
24
|
+
direction: "left"
|
|
25
|
+
};
|
|
26
|
+
//#endregion
|
|
27
|
+
export { a as default };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @synced-from pie-elements/packages/number-line/src/number-line/graph/elements/base.js
|
|
3
|
+
* @auto-generated
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically synced from pie-elements and converted to TypeScript.
|
|
6
|
+
* Manual edits will be overwritten on next sync.
|
|
7
|
+
* To make changes, edit the upstream JavaScript file and run sync again.
|
|
8
|
+
*/
|
|
9
|
+
import PropTypes from 'prop-types';
|
|
10
|
+
export declare const basePropTypes: () => {
|
|
11
|
+
interval: PropTypes.Validator<number>;
|
|
12
|
+
domain: PropTypes.Requireable<PropTypes.InferProps<{
|
|
13
|
+
min: PropTypes.Validator<number>;
|
|
14
|
+
max: PropTypes.Validator<number>;
|
|
15
|
+
}>>;
|
|
16
|
+
};
|
|
17
|
+
//# sourceMappingURL=base.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../../../src/delivery/number-line/graph/elements/base.ts"],"names":[],"mappings":"AACA;;;;;;;GAOG;AAGH,OAAO,SAAS,MAAM,YAAY,CAAC;AAEnC,eAAO,MAAM,aAAa;;;;;;CAMxB,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import e from "prop-types";
|
|
2
|
+
//#region src/delivery/number-line/graph/elements/base.ts
|
|
3
|
+
var t = () => ({
|
|
4
|
+
interval: e.number.isRequired,
|
|
5
|
+
domain: e.shape({
|
|
6
|
+
min: e.number.isRequired,
|
|
7
|
+
max: e.number.isRequired
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
//#endregion
|
|
11
|
+
export { t as basePropTypes };
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @synced-from pie-elements/packages/number-line/src/number-line/graph/elements/builder.js
|
|
3
|
+
* @auto-generated
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically synced from pie-elements and converted to TypeScript.
|
|
6
|
+
* Manual edits will be overwritten on next sync.
|
|
7
|
+
* To make changes, edit the upstream JavaScript file and run sync again.
|
|
8
|
+
*/
|
|
9
|
+
export declare function buildElementModel(position: any, elementType: any, domain: any, interval: any): {
|
|
10
|
+
position: any;
|
|
11
|
+
type: string;
|
|
12
|
+
pointType: string;
|
|
13
|
+
leftPoint?: undefined;
|
|
14
|
+
rightPoint?: undefined;
|
|
15
|
+
direction?: undefined;
|
|
16
|
+
} | {
|
|
17
|
+
type: string;
|
|
18
|
+
leftPoint: string;
|
|
19
|
+
rightPoint: string;
|
|
20
|
+
position: {
|
|
21
|
+
left: any;
|
|
22
|
+
right: any;
|
|
23
|
+
};
|
|
24
|
+
pointType?: undefined;
|
|
25
|
+
direction?: undefined;
|
|
26
|
+
} | {
|
|
27
|
+
type: string;
|
|
28
|
+
direction: string;
|
|
29
|
+
pointType: string;
|
|
30
|
+
position: any;
|
|
31
|
+
leftPoint?: undefined;
|
|
32
|
+
rightPoint?: undefined;
|
|
33
|
+
} | undefined;
|
|
34
|
+
//# sourceMappingURL=builder.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"builder.d.ts","sourceRoot":"","sources":["../../../../../src/delivery/number-line/graph/elements/builder.ts"],"names":[],"mappings":"AACA;;;;;;;GAOG;AAEH,wBAAgB,iBAAiB,CAAC,QAAQ,KAAA,EAAE,WAAW,KAAA,EAAE,MAAM,KAAA,EAAE,QAAQ,KAAA;;;;;;;;;;;;;;;;;;;;;;;;cA0BxE"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
//#region src/delivery/number-line/graph/elements/builder.ts
|
|
2
|
+
function e(e, t, n, r) {
|
|
3
|
+
if (t.startsWith("p")) return {
|
|
4
|
+
position: e,
|
|
5
|
+
type: "point",
|
|
6
|
+
pointType: t.endsWith("e") ? "empty" : "full"
|
|
7
|
+
};
|
|
8
|
+
if (t.startsWith("l")) {
|
|
9
|
+
let i = e + r <= n.max ? e : e - r, a = i + r;
|
|
10
|
+
return {
|
|
11
|
+
type: "line",
|
|
12
|
+
leftPoint: t.charAt(1) === "e" ? "empty" : "full",
|
|
13
|
+
rightPoint: t.charAt(2) === "e" ? "empty" : "full",
|
|
14
|
+
position: {
|
|
15
|
+
left: i,
|
|
16
|
+
right: a
|
|
17
|
+
}
|
|
18
|
+
};
|
|
19
|
+
} else if (t.startsWith("r")) {
|
|
20
|
+
let n = t.charAt(1) === "f";
|
|
21
|
+
return {
|
|
22
|
+
type: "ray",
|
|
23
|
+
direction: t.charAt(2) === "p" ? "positive" : "negative",
|
|
24
|
+
pointType: n ? "full" : "empty",
|
|
25
|
+
position: e
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
//#endregion
|
|
30
|
+
export { e as buildElementModel };
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @synced-from pie-elements/packages/number-line/src/number-line/graph/elements/line.jsx
|
|
3
|
+
* @auto-generated
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically synced from pie-elements and converted to TypeScript.
|
|
6
|
+
* Manual edits will be overwritten on next sync.
|
|
7
|
+
* To make changes, edit the upstream JavaScript file and run sync again.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
import PropTypes from 'prop-types';
|
|
11
|
+
export declare class Line extends React.Component {
|
|
12
|
+
static propTypes: {
|
|
13
|
+
empty: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
14
|
+
left: PropTypes.Validator<boolean>;
|
|
15
|
+
right: PropTypes.Validator<boolean>;
|
|
16
|
+
}>>>;
|
|
17
|
+
position: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
18
|
+
left: PropTypes.Validator<number>;
|
|
19
|
+
right: PropTypes.Validator<number>;
|
|
20
|
+
}>>>;
|
|
21
|
+
y: PropTypes.Requireable<number>;
|
|
22
|
+
selected: PropTypes.Requireable<boolean>;
|
|
23
|
+
disabled: PropTypes.Requireable<boolean>;
|
|
24
|
+
correct: PropTypes.Requireable<boolean>;
|
|
25
|
+
onMoveLine: PropTypes.Validator<(...args: any[]) => any>;
|
|
26
|
+
onToggleSelect: PropTypes.Validator<(...args: any[]) => any>;
|
|
27
|
+
onDragStart: PropTypes.Requireable<(...args: any[]) => any>;
|
|
28
|
+
onDragStop: PropTypes.Requireable<(...args: any[]) => any>;
|
|
29
|
+
interval: PropTypes.Validator<number>;
|
|
30
|
+
domain: PropTypes.Requireable<PropTypes.InferProps<{
|
|
31
|
+
min: PropTypes.Validator<number>;
|
|
32
|
+
max: PropTypes.Validator<number>;
|
|
33
|
+
}>>;
|
|
34
|
+
};
|
|
35
|
+
static defaultProps: {
|
|
36
|
+
selected: boolean;
|
|
37
|
+
y: number;
|
|
38
|
+
disabled: boolean;
|
|
39
|
+
correct: undefined;
|
|
40
|
+
};
|
|
41
|
+
static contextTypes: {
|
|
42
|
+
xScale: PropTypes.Validator<(...args: any[]) => any>;
|
|
43
|
+
snapValue: PropTypes.Validator<(...args: any[]) => any>;
|
|
44
|
+
};
|
|
45
|
+
constructor(props: any);
|
|
46
|
+
UNSAFE_componentWillReceiveProps(nextProps: any): void;
|
|
47
|
+
onDrag(side: any, p: any): void;
|
|
48
|
+
onMove(side: any, d: any): void;
|
|
49
|
+
render(): React.JSX.Element;
|
|
50
|
+
}
|
|
51
|
+
export default Line;
|
|
52
|
+
//# sourceMappingURL=line.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"line.d.ts","sourceRoot":"","sources":["../../../../../src/delivery/number-line/graph/elements/line.tsx"],"names":[],"mappings":"AACA;;;;;;;GAOG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,SAAS,MAAM,YAAY,CAAC;AAmDnC,qBAAa,IAAK,SAAQ,KAAK,CAAC,SAAS;IACvC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;MAkBd;IAEF,MAAM,CAAC,YAAY;;;;;MAKjB;IAEF,MAAM,CAAC,YAAY;;;MAGjB;gBAEU,KAAK,KAAA;IAQjB,gCAAgC,CAAC,SAAS,KAAA;IAO1C,MAAM,CAAC,IAAI,KAAA,EAAE,CAAC,KAAA;IASd,MAAM,CAAC,IAAI,KAAA,EAAE,CAAC,KAAA;IAOd,MAAM;CAkIP;AAED,eAAe,IAAI,CAAC"}
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
import e from "../../../../node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isEqual.js";
|
|
2
|
+
import t from "../../../../node_modules/.bun/lodash-es@4.17.23/node_modules/lodash-es/isNumber.js";
|
|
3
|
+
import { Draggable as n } from "../../../draggable/index.js";
|
|
4
|
+
import r from "./point.js";
|
|
5
|
+
import { basePropTypes as i } from "./base.js";
|
|
6
|
+
import a from "react";
|
|
7
|
+
import { styled as o } from "@mui/material/styles";
|
|
8
|
+
import s from "prop-types";
|
|
9
|
+
import { jsx as c, jsxs as l } from "react/jsx-runtime";
|
|
10
|
+
import { color as u } from "@pie-lib/render-ui";
|
|
11
|
+
//#region src/delivery/number-line/graph/elements/line.tsx
|
|
12
|
+
var d = "150ms", f = o("g")(({ $disabled: e, $selected: t, $correct: n }) => ({
|
|
13
|
+
"& .line-handle": {
|
|
14
|
+
stroke: u.primary(),
|
|
15
|
+
cursor: "pointer",
|
|
16
|
+
strokeWidth: "5px",
|
|
17
|
+
transition: `opacity ${d} linear,
|
|
18
|
+
stroke-width ${d} linear,
|
|
19
|
+
stroke ${d} linear`
|
|
20
|
+
},
|
|
21
|
+
"&.dnd-kit-dragging": {
|
|
22
|
+
opacity: .6,
|
|
23
|
+
"& .line-handle": {
|
|
24
|
+
opacity: 1,
|
|
25
|
+
strokeWidth: "12px"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
...e && {
|
|
29
|
+
cursor: "not-allowed",
|
|
30
|
+
opacity: .8
|
|
31
|
+
},
|
|
32
|
+
...t && { "& .line-handle": { stroke: u.primaryDark() } },
|
|
33
|
+
...n === !0 && { "& .line-handle": {
|
|
34
|
+
cursor: "inherit",
|
|
35
|
+
stroke: u.correct()
|
|
36
|
+
} },
|
|
37
|
+
...n === !1 && { "& .line-handle": {
|
|
38
|
+
cursor: "inherit",
|
|
39
|
+
stroke: u.incorrect()
|
|
40
|
+
} }
|
|
41
|
+
})), p = class extends a.Component {
|
|
42
|
+
static propTypes = {
|
|
43
|
+
...i(),
|
|
44
|
+
empty: s.shape({
|
|
45
|
+
left: s.bool.isRequired,
|
|
46
|
+
right: s.bool.isRequired
|
|
47
|
+
}).isRequired,
|
|
48
|
+
position: s.shape({
|
|
49
|
+
left: s.number.isRequired,
|
|
50
|
+
right: s.number.isRequired
|
|
51
|
+
}).isRequired,
|
|
52
|
+
y: s.number,
|
|
53
|
+
selected: s.bool,
|
|
54
|
+
disabled: s.bool,
|
|
55
|
+
correct: s.bool,
|
|
56
|
+
onMoveLine: s.func.isRequired,
|
|
57
|
+
onToggleSelect: s.func.isRequired,
|
|
58
|
+
onDragStart: s.func,
|
|
59
|
+
onDragStop: s.func
|
|
60
|
+
};
|
|
61
|
+
static defaultProps = {
|
|
62
|
+
selected: !1,
|
|
63
|
+
y: 0,
|
|
64
|
+
disabled: !1,
|
|
65
|
+
correct: void 0
|
|
66
|
+
};
|
|
67
|
+
static contextTypes = {
|
|
68
|
+
xScale: s.func.isRequired,
|
|
69
|
+
snapValue: s.func.isRequired
|
|
70
|
+
};
|
|
71
|
+
constructor(e) {
|
|
72
|
+
super(e), this.state = {
|
|
73
|
+
left: null,
|
|
74
|
+
right: null
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
UNSAFE_componentWillReceiveProps(e) {
|
|
78
|
+
if (e) {
|
|
79
|
+
let { position: t } = e;
|
|
80
|
+
this.setState({
|
|
81
|
+
left: t.left,
|
|
82
|
+
right: t.right
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
onDrag(e, t) {
|
|
87
|
+
let { domain: n } = this.props;
|
|
88
|
+
if (t >= n.min && t <= n.max) {
|
|
89
|
+
let n = {};
|
|
90
|
+
n[e] = t, this.setState(n);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
onMove(e, t) {
|
|
94
|
+
let { position: n } = this.props, r = {
|
|
95
|
+
left: n.left,
|
|
96
|
+
right: n.right
|
|
97
|
+
};
|
|
98
|
+
r[e] = t, this.props.onMoveLine(r);
|
|
99
|
+
}
|
|
100
|
+
render() {
|
|
101
|
+
let { interval: i, empty: a, position: o, domain: s, y: u, selected: d, disabled: p, correct: m } = this.props, { xScale: h } = this.context, { onDrag: g, onMove: _ } = this, v = _.bind(this, "left"), y = _.bind(this, "right"), b = g.bind(this, "left"), x = g.bind(this, "right"), S = t(this.state.left) ? this.state.left : o.left, C = t(this.state.right) ? this.state.right : o.right, w = h(i) - h(0), T = (e) => e.nativeEvent.preventDefault(), E = () => {
|
|
102
|
+
this.props.onToggleSelect();
|
|
103
|
+
}, D = () => {
|
|
104
|
+
this.props.onToggleSelect();
|
|
105
|
+
}, O = (t) => {
|
|
106
|
+
if (Math.abs(t) < w / 10) {
|
|
107
|
+
this.props.onToggleSelect();
|
|
108
|
+
return;
|
|
109
|
+
}
|
|
110
|
+
let n = h.invert(t + h(0)), r = {
|
|
111
|
+
left: o.left + n,
|
|
112
|
+
right: o.right + n
|
|
113
|
+
};
|
|
114
|
+
e(r, this.props.position) || this.props.onMoveLine(r);
|
|
115
|
+
}, k = {
|
|
116
|
+
left: (s.min - o.left) / i * w,
|
|
117
|
+
right: (s.max - o.right) / i * w
|
|
118
|
+
}, A = {
|
|
119
|
+
interval: i,
|
|
120
|
+
selected: d,
|
|
121
|
+
disabled: p,
|
|
122
|
+
correct: m
|
|
123
|
+
};
|
|
124
|
+
return /* @__PURE__ */ c(n, {
|
|
125
|
+
id: `line-${o.left}-${o.right}-${u}`,
|
|
126
|
+
disabled: p,
|
|
127
|
+
grid: [w],
|
|
128
|
+
bounds: k,
|
|
129
|
+
onMouseDown: T,
|
|
130
|
+
onDragEnd: O,
|
|
131
|
+
children: ({ setNodeRef: e, attributes: t, listeners: n, translateX: i, isDragging: g, onMouseDown: _ }) => /* @__PURE__ */ c(f, {
|
|
132
|
+
ref: e,
|
|
133
|
+
$disabled: p,
|
|
134
|
+
$selected: d,
|
|
135
|
+
$correct: m,
|
|
136
|
+
className: g ? "dnd-kit-dragging" : void 0,
|
|
137
|
+
onMouseDown: _,
|
|
138
|
+
...t,
|
|
139
|
+
children: /* @__PURE__ */ l("g", {
|
|
140
|
+
transform: `translate(${i}, ${u})`,
|
|
141
|
+
children: [
|
|
142
|
+
/* @__PURE__ */ c("rect", {
|
|
143
|
+
x: h(S),
|
|
144
|
+
width: Math.abs(h(C) - h(S)),
|
|
145
|
+
fill: "red",
|
|
146
|
+
fillOpacity: "0.0",
|
|
147
|
+
y: "-8",
|
|
148
|
+
height: 16,
|
|
149
|
+
onClick: D
|
|
150
|
+
}),
|
|
151
|
+
/* @__PURE__ */ c("line", {
|
|
152
|
+
className: "line-handle",
|
|
153
|
+
x1: h(S),
|
|
154
|
+
x2: h(C),
|
|
155
|
+
onClick: E,
|
|
156
|
+
...n
|
|
157
|
+
}),
|
|
158
|
+
/* @__PURE__ */ c(r, {
|
|
159
|
+
...A,
|
|
160
|
+
empty: a.left,
|
|
161
|
+
bounds: {
|
|
162
|
+
left: s.min - o.left,
|
|
163
|
+
right: s.max - o.left
|
|
164
|
+
},
|
|
165
|
+
position: o.left,
|
|
166
|
+
onDrag: b,
|
|
167
|
+
onMove: v,
|
|
168
|
+
onClick: D
|
|
169
|
+
}),
|
|
170
|
+
/* @__PURE__ */ c(r, {
|
|
171
|
+
...A,
|
|
172
|
+
empty: a.right,
|
|
173
|
+
bounds: {
|
|
174
|
+
left: s.min - o.right,
|
|
175
|
+
right: s.max - o.right
|
|
176
|
+
},
|
|
177
|
+
position: o.right,
|
|
178
|
+
onDrag: x,
|
|
179
|
+
onMove: y,
|
|
180
|
+
onClick: D
|
|
181
|
+
})
|
|
182
|
+
]
|
|
183
|
+
})
|
|
184
|
+
})
|
|
185
|
+
});
|
|
186
|
+
}
|
|
187
|
+
};
|
|
188
|
+
//#endregion
|
|
189
|
+
export { p as default };
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @synced-from pie-elements/packages/number-line/src/number-line/graph/elements/point.jsx
|
|
3
|
+
* @auto-generated
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically synced from pie-elements and converted to TypeScript.
|
|
6
|
+
* Manual edits will be overwritten on next sync.
|
|
7
|
+
* To make changes, edit the upstream JavaScript file and run sync again.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
import PropTypes from 'prop-types';
|
|
11
|
+
export declare class Point extends React.Component {
|
|
12
|
+
static defaultProps: {
|
|
13
|
+
y: number;
|
|
14
|
+
selected: boolean;
|
|
15
|
+
empty: boolean;
|
|
16
|
+
disabled: boolean;
|
|
17
|
+
correct: undefined;
|
|
18
|
+
};
|
|
19
|
+
static propTypes: {
|
|
20
|
+
interval: PropTypes.Validator<number>;
|
|
21
|
+
position: PropTypes.Validator<number>;
|
|
22
|
+
bounds: PropTypes.Requireable<PropTypes.InferProps<{
|
|
23
|
+
left: PropTypes.Validator<number>;
|
|
24
|
+
right: PropTypes.Validator<number>;
|
|
25
|
+
}>>;
|
|
26
|
+
selected: PropTypes.Requireable<boolean>;
|
|
27
|
+
disabled: PropTypes.Requireable<boolean>;
|
|
28
|
+
correct: PropTypes.Requireable<boolean>;
|
|
29
|
+
empty: PropTypes.Requireable<boolean>;
|
|
30
|
+
y: PropTypes.Requireable<number>;
|
|
31
|
+
onMove: PropTypes.Validator<(...args: any[]) => any>;
|
|
32
|
+
onClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
33
|
+
onDrag: PropTypes.Requireable<(...args: any[]) => any>;
|
|
34
|
+
onDragStop: PropTypes.Requireable<(...args: any[]) => any>;
|
|
35
|
+
onDragStart: PropTypes.Requireable<(...args: any[]) => any>;
|
|
36
|
+
};
|
|
37
|
+
static contextTypes: {
|
|
38
|
+
xScale: PropTypes.Validator<(...args: any[]) => any>;
|
|
39
|
+
snapValue: PropTypes.Validator<(...args: any[]) => any>;
|
|
40
|
+
};
|
|
41
|
+
render(): React.JSX.Element;
|
|
42
|
+
}
|
|
43
|
+
export default Point;
|
|
44
|
+
//# sourceMappingURL=point.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"point.d.ts","sourceRoot":"","sources":["../../../../../src/delivery/number-line/graph/elements/point.tsx"],"names":[],"mappings":"AACA;;;;;;;GAOG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,SAAS,MAAM,YAAY,CAAC;AA8CnC,qBAAa,KAAM,SAAQ,KAAK,CAAC,SAAS;IACxC,MAAM,CAAC,YAAY;;;;;;MAMjB;IAEF,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;MAiBd;IAEF,MAAM,CAAC,YAAY;;;MAGjB;IAEF,MAAM;CA8HP;AAED,eAAe,KAAK,CAAC"}
|