@pie-lib/graphing 4.0.5-next.30 → 4.0.5-next.34
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 +1 -0
- package/CHANGELOG.md +1469 -0
- package/LICENSE.md +5 -0
- package/lib/axis/arrow.js +79 -0
- package/lib/axis/arrow.js.map +1 -0
- package/lib/axis/axes.js +329 -0
- package/lib/axis/axes.js.map +1 -0
- package/lib/axis/index.js +21 -0
- package/lib/axis/index.js.map +1 -0
- package/lib/bg.js +114 -0
- package/lib/bg.js.map +1 -0
- package/lib/container/actions.js +18 -0
- package/lib/container/actions.js.map +1 -0
- package/lib/container/index.js +127 -0
- package/lib/container/index.js.map +1 -0
- package/lib/container/marks.js +22 -0
- package/lib/container/marks.js.map +1 -0
- package/lib/container/middleware.js +19 -0
- package/lib/container/middleware.js.map +1 -0
- package/lib/container/reducer.js +18 -0
- package/lib/container/reducer.js.map +1 -0
- package/lib/coordinates-label.js +79 -0
- package/lib/coordinates-label.js.map +1 -0
- package/lib/graph-with-controls.js +294 -0
- package/lib/graph-with-controls.js.map +1 -0
- package/lib/graph.js +327 -0
- package/lib/graph.js.map +1 -0
- package/lib/grid-setup.js +414 -0
- package/lib/grid-setup.js.map +1 -0
- package/lib/grid.js +131 -0
- package/lib/grid.js.map +1 -0
- package/lib/index.js +47 -0
- package/lib/index.js.map +1 -0
- package/lib/key-legend.js +201 -0
- package/lib/key-legend.js.map +1 -0
- package/lib/label-svg-icon.js +50 -0
- package/lib/label-svg-icon.js.map +1 -0
- package/lib/labels.js +243 -0
- package/lib/labels.js.map +1 -0
- package/lib/mark-label.js +285 -0
- package/lib/mark-label.js.map +1 -0
- package/lib/toggle-bar.js +252 -0
- package/lib/toggle-bar.js.map +1 -0
- package/lib/tool-menu.js +78 -0
- package/lib/tool-menu.js.map +1 -0
- package/lib/tools/absolute/component.js +29 -0
- package/lib/tools/absolute/component.js.map +1 -0
- package/lib/tools/absolute/index.js +50 -0
- package/lib/tools/absolute/index.js.map +1 -0
- package/lib/tools/circle/bg-circle.js +123 -0
- package/lib/tools/circle/bg-circle.js.map +1 -0
- package/lib/tools/circle/component.js +321 -0
- package/lib/tools/circle/component.js.map +1 -0
- package/lib/tools/circle/index.js +41 -0
- package/lib/tools/circle/index.js.map +1 -0
- package/lib/tools/exponential/component.js +28 -0
- package/lib/tools/exponential/component.js.map +1 -0
- package/lib/tools/exponential/index.js +56 -0
- package/lib/tools/exponential/index.js.map +1 -0
- package/lib/tools/index.js +86 -0
- package/lib/tools/index.js.map +1 -0
- package/lib/tools/line/component.js +97 -0
- package/lib/tools/line/component.js.map +1 -0
- package/lib/tools/line/index.js +11 -0
- package/lib/tools/line/index.js.map +1 -0
- package/lib/tools/parabola/component.js +28 -0
- package/lib/tools/parabola/component.js.map +1 -0
- package/lib/tools/parabola/index.js +50 -0
- package/lib/tools/parabola/index.js.map +1 -0
- package/lib/tools/point/component.js +148 -0
- package/lib/tools/point/component.js.map +1 -0
- package/lib/tools/point/index.js +24 -0
- package/lib/tools/point/index.js.map +1 -0
- package/lib/tools/polygon/component.js +437 -0
- package/lib/tools/polygon/component.js.map +1 -0
- package/lib/tools/polygon/index.js +89 -0
- package/lib/tools/polygon/index.js.map +1 -0
- package/lib/tools/polygon/line.js +112 -0
- package/lib/tools/polygon/line.js.map +1 -0
- package/lib/tools/polygon/polygon.js +130 -0
- package/lib/tools/polygon/polygon.js.map +1 -0
- package/lib/tools/ray/component.js +95 -0
- package/lib/tools/ray/component.js.map +1 -0
- package/lib/tools/ray/index.js +11 -0
- package/lib/tools/ray/index.js.map +1 -0
- package/lib/tools/segment/component.js +71 -0
- package/lib/tools/segment/component.js.map +1 -0
- package/lib/tools/segment/index.js +11 -0
- package/lib/tools/segment/index.js.map +1 -0
- package/lib/tools/shared/arrow-head.js +111 -0
- package/lib/tools/shared/arrow-head.js.map +1 -0
- package/lib/tools/shared/icons/CorrectSVG.js +40 -0
- package/lib/tools/shared/icons/CorrectSVG.js.map +1 -0
- package/lib/tools/shared/icons/IncorrectSVG.js +40 -0
- package/lib/tools/shared/icons/IncorrectSVG.js.map +1 -0
- package/lib/tools/shared/icons/MissingSVG.js +39 -0
- package/lib/tools/shared/icons/MissingSVG.js.map +1 -0
- package/lib/tools/shared/line/index.js +550 -0
- package/lib/tools/shared/line/index.js.map +1 -0
- package/lib/tools/shared/line/line-path.js +118 -0
- package/lib/tools/shared/line/line-path.js.map +1 -0
- package/lib/tools/shared/line/with-root-edge.js +121 -0
- package/lib/tools/shared/line/with-root-edge.js.map +1 -0
- package/lib/tools/shared/point/arrow-point.js +72 -0
- package/lib/tools/shared/point/arrow-point.js.map +1 -0
- package/lib/tools/shared/point/arrow.js +67 -0
- package/lib/tools/shared/point/arrow.js.map +1 -0
- package/lib/tools/shared/point/base-point.js +157 -0
- package/lib/tools/shared/point/base-point.js.map +1 -0
- package/lib/tools/shared/point/index.js +68 -0
- package/lib/tools/shared/point/index.js.map +1 -0
- package/lib/tools/shared/styles.js +33 -0
- package/lib/tools/shared/styles.js.map +1 -0
- package/lib/tools/shared/types.js +16 -0
- package/lib/tools/shared/types.js.map +1 -0
- package/lib/tools/sine/component.js +40 -0
- package/lib/tools/sine/component.js.map +1 -0
- package/lib/tools/sine/index.js +50 -0
- package/lib/tools/sine/index.js.map +1 -0
- package/lib/tools/vector/component.js +68 -0
- package/lib/tools/vector/component.js.map +1 -0
- package/lib/tools/vector/index.js +11 -0
- package/lib/tools/vector/index.js.map +1 -0
- package/lib/undo-redo.js +86 -0
- package/lib/undo-redo.js.map +1 -0
- package/lib/use-debounce.js +25 -0
- package/lib/use-debounce.js.map +1 -0
- package/lib/utils.js +229 -0
- package/lib/utils.js.map +1 -0
- package/package.json +33 -45
- package/src/__tests__/bg.test.jsx +250 -0
- package/src/__tests__/coordinates-label.test.jsx +243 -0
- package/src/__tests__/graph-with-controls.test.jsx +198 -0
- package/src/__tests__/graph.test.jsx +721 -0
- package/src/__tests__/grid-setup.test.jsx +645 -0
- package/src/__tests__/grid.test.jsx +22 -0
- package/src/__tests__/key-legend.test.jsx +260 -0
- package/src/__tests__/label-svg-icon.test.jsx +278 -0
- package/src/__tests__/labels.test.jsx +55 -0
- package/src/__tests__/mark-label.test.jsx +63 -0
- package/src/__tests__/toggle-bar.test.jsx +146 -0
- package/src/__tests__/tool-menu.test.jsx +115 -0
- package/src/__tests__/undo-redo.test.jsx +24 -0
- package/src/__tests__/use-debounce.test.js +21 -0
- package/src/__tests__/utils.js +41 -0
- package/src/__tests__/utils.test.js +105 -0
- package/src/axis/__tests__/arrow.test.jsx +38 -0
- package/src/axis/__tests__/axes.test.jsx +216 -0
- package/src/axis/arrow.jsx +57 -0
- package/src/axis/axes.jsx +285 -0
- package/src/axis/index.js +3 -0
- package/src/bg.jsx +96 -0
- package/src/container/__tests__/actions.test.js +105 -0
- package/src/container/__tests__/index.test.jsx +319 -0
- package/src/container/__tests__/marks.test.js +172 -0
- package/src/container/__tests__/middleware.test.js +235 -0
- package/src/container/__tests__/reducer.test.js +324 -0
- package/src/container/actions.js +8 -0
- package/src/container/index.jsx +91 -0
- package/src/container/marks.js +14 -0
- package/src/container/middleware.js +7 -0
- package/src/container/reducer.js +5 -0
- package/src/coordinates-label.jsx +63 -0
- package/src/graph-with-controls.jsx +239 -0
- package/src/graph.jsx +303 -0
- package/src/grid-setup.jsx +432 -0
- package/src/grid.jsx +133 -0
- package/src/index.js +7 -0
- package/src/key-legend.jsx +142 -0
- package/src/label-svg-icon.jsx +39 -0
- package/src/labels.jsx +207 -0
- package/src/mark-label.jsx +244 -0
- package/src/toggle-bar.jsx +224 -0
- package/src/tool-menu.jsx +49 -0
- package/src/tools/absolute/__tests__/component.test.jsx +53 -0
- package/src/tools/absolute/component.jsx +23 -0
- package/src/tools/absolute/index.js +31 -0
- package/src/tools/circle/__tests__/bg-circle.test.jsx +26 -0
- package/src/tools/circle/__tests__/component.test.jsx +494 -0
- package/src/tools/circle/__tests__/index.test.js +480 -0
- package/src/tools/circle/bg-circle.jsx +81 -0
- package/src/tools/circle/component.jsx +264 -0
- package/src/tools/circle/index.js +25 -0
- package/src/tools/exponential/__tests__/component.test.jsx +53 -0
- package/src/tools/exponential/__tests__/index.test.js +729 -0
- package/src/tools/exponential/component.jsx +23 -0
- package/src/tools/exponential/index.js +39 -0
- package/src/tools/index.js +48 -0
- package/src/tools/line/__tests__/component.test.jsx +37 -0
- package/src/tools/line/component.jsx +93 -0
- package/src/tools/line/index.js +4 -0
- package/src/tools/parabola/__tests__/component.test.jsx +48 -0
- package/src/tools/parabola/__tests__/index.test.js +470 -0
- package/src/tools/parabola/component.jsx +23 -0
- package/src/tools/parabola/index.js +31 -0
- package/src/tools/point/__tests__/component.test.jsx +349 -0
- package/src/tools/point/__tests__/index.test.js +241 -0
- package/src/tools/point/component.jsx +126 -0
- package/src/tools/point/index.js +11 -0
- package/src/tools/polygon/__tests__/component.test.jsx +471 -0
- package/src/tools/polygon/__tests__/index.test.js +294 -0
- package/src/tools/polygon/__tests__/line.test.jsx +35 -0
- package/src/tools/polygon/__tests__/polygon.test.jsx +61 -0
- package/src/tools/polygon/component.jsx +409 -0
- package/src/tools/polygon/index.js +52 -0
- package/src/tools/polygon/line.jsx +74 -0
- package/src/tools/polygon/polygon.jsx +110 -0
- package/src/tools/ray/__tests__/component.test.jsx +29 -0
- package/src/tools/ray/component.jsx +92 -0
- package/src/tools/ray/index.js +4 -0
- package/src/tools/segment/__tests__/component.test.jsx +28 -0
- package/src/tools/segment/component.jsx +65 -0
- package/src/tools/segment/index.js +4 -0
- package/src/tools/shared/__tests__/arrow-head.test.jsx +31 -0
- package/src/tools/shared/arrow-head.jsx +102 -0
- package/src/tools/shared/icons/CorrectSVG.jsx +32 -0
- package/src/tools/shared/icons/IncorrectSVG.jsx +30 -0
- package/src/tools/shared/icons/MissingSVG.jsx +31 -0
- package/src/tools/shared/line/__tests__/index.test.jsx +109 -0
- package/src/tools/shared/line/__tests__/line-path.test.jsx +53 -0
- package/src/tools/shared/line/__tests__/with-root-edge.test.jsx +73 -0
- package/src/tools/shared/line/index.jsx +487 -0
- package/src/tools/shared/line/line-path.jsx +80 -0
- package/src/tools/shared/line/with-root-edge.jsx +97 -0
- package/src/tools/shared/point/__tests__/arrow-point.test.jsx +91 -0
- package/src/tools/shared/point/__tests__/base-point.test.jsx +87 -0
- package/src/tools/shared/point/arrow-point.jsx +46 -0
- package/src/tools/shared/point/arrow.jsx +37 -0
- package/src/tools/shared/point/base-point.jsx +121 -0
- package/src/tools/shared/point/index.jsx +54 -0
- package/src/tools/shared/styles.js +27 -0
- package/src/tools/shared/types.js +10 -0
- package/src/tools/sine/__tests__/component.test.jsx +51 -0
- package/src/tools/sine/component.jsx +32 -0
- package/src/tools/sine/index.js +33 -0
- package/src/tools/vector/__tests__/component.test.jsx +25 -0
- package/src/tools/vector/component.jsx +56 -0
- package/src/tools/vector/index.js +4 -0
- package/src/undo-redo.jsx +45 -0
- package/src/use-debounce.js +13 -0
- package/src/utils.js +224 -0
- package/dist/_virtual/_rolldown/runtime.js +0 -23
- package/dist/autosize-input.d.ts +0 -10
- package/dist/autosize-input.js +0 -66
- package/dist/axis/arrow.d.ts +0 -13
- package/dist/axis/arrow.js +0 -34
- package/dist/axis/axes.d.ts +0 -132
- package/dist/axis/axes.js +0 -214
- package/dist/axis/index.d.ts +0 -10
- package/dist/bg.d.ts +0 -51
- package/dist/bg.js +0 -44
- package/dist/container/actions.d.ts +0 -15
- package/dist/container/actions.js +0 -7
- package/dist/container/index.d.ts +0 -58
- package/dist/container/index.js +0 -48
- package/dist/container/marks.d.ts +0 -10
- package/dist/container/marks.js +0 -11
- package/dist/container/middleware.d.ts +0 -10
- package/dist/container/middleware.js +0 -4
- package/dist/container/reducer.d.ts +0 -14
- package/dist/container/reducer.js +0 -7
- package/dist/coordinates-label.d.ts +0 -50
- package/dist/coordinates-label.js +0 -46
- package/dist/graph-with-controls.d.ts +0 -88
- package/dist/graph-with-controls.js +0 -154
- package/dist/graph.d.ts +0 -126
- package/dist/graph.js +0 -209
- package/dist/grid-setup.d.ts +0 -27
- package/dist/grid-setup.js +0 -307
- package/dist/grid.d.ts +0 -43
- package/dist/grid.js +0 -59
- package/dist/index.d.ts +0 -15
- package/dist/index.js +0 -7
- package/dist/key-legend.d.ts +0 -21
- package/dist/key-legend.js +0 -231
- package/dist/label-svg-icon.d.ts +0 -18
- package/dist/label-svg-icon.js +0 -42
- package/dist/labels.d.ts +0 -37
- package/dist/labels.js +0 -152
- package/dist/mark-label.d.ts +0 -58
- package/dist/mark-label.js +0 -171
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/Axis.js +0 -101
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/AxisRenderer.js +0 -63
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/Ticks.js +0 -44
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/constants/orientation.js +0 -9
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/createPoint.js +0 -14
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getAxisRangePaddingConfig.js +0 -21
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getLabelTransform.js +0 -16
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getTickFormatter.js +0 -8
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getTickPosition.js +0 -15
- package/dist/node_modules/.bun/@visx_curve@3.12.0/node_modules/@visx/curve/esm/index.js +0 -2
- package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/grids/Grid.js +0 -79
- package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/grids/GridColumns.js +0 -79
- package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/grids/GridRows.js +0 -79
- package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/utils/getScaleBandwidth.js +0 -6
- package/dist/node_modules/.bun/@visx_group@3.12.0_f4eacebf2041cd4f/node_modules/@visx/group/esm/Group.js +0 -50
- package/dist/node_modules/.bun/@visx_point@3.12.0/node_modules/@visx/point/esm/Point.js +0 -18
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/coerceNumber.js +0 -10
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/getTicks.js +0 -9
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/toString.js +0 -6
- package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/shapes/Line.js +0 -47
- package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/shapes/LinePath.js +0 -50
- package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/util/D3ShapeFactories.js +0 -9
- package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/util/setNumberOrNumberAccessor.js +0 -6
- package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/lib/shapes/Line.js +0 -53
- package/dist/node_modules/.bun/@visx_text@3.12.0_f4eacebf2041cd4f/node_modules/@visx/text/esm/Text.js +0 -57
- package/dist/node_modules/.bun/@visx_text@3.12.0_f4eacebf2041cd4f/node_modules/@visx/text/esm/hooks/useText.js +0 -91
- package/dist/node_modules/.bun/@visx_text@3.12.0_f4eacebf2041cd4f/node_modules/@visx/text/esm/util/getStringWidth.js +0 -21
- package/dist/node_modules/.bun/balanced-match@0.4.2/node_modules/balanced-match/index.js +0 -32
- package/dist/node_modules/.bun/balanced-match@1.0.2/node_modules/balanced-match/index.js +0 -33
- package/dist/node_modules/.bun/classnames@2.5.1/node_modules/classnames/index.js +0 -32
- package/dist/node_modules/.bun/clsx@2.1.1/node_modules/clsx/dist/clsx.js +0 -16
- package/dist/node_modules/.bun/invariant@2.2.4/node_modules/invariant/browser.js +0 -28
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_Hash.js +0 -21
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_ListCache.js +0 -21
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_Map.js +0 -10
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_MapCache.js +0 -21
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_Symbol.js +0 -9
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_assocIndexOf.js +0 -14
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_baseGetTag.js +0 -15
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_baseIsNative.js +0 -16
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_coreJsData.js +0 -9
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_freeGlobal.js +0 -8
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_getMapData.js +0 -14
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_getNative.js +0 -15
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_getRawTag.js +0 -19
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_getValue.js +0 -11
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashClear.js +0 -13
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashDelete.js +0 -12
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashGet.js +0 -18
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashHas.js +0 -14
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashSet.js +0 -14
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_isKeyable.js +0 -12
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_isMasked.js +0 -16
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheClear.js +0 -11
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheDelete.js +0 -14
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheGet.js +0 -14
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheHas.js +0 -13
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheSet.js +0 -14
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheClear.js +0 -19
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheDelete.js +0 -14
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheGet.js +0 -13
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheHas.js +0 -13
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheSet.js +0 -14
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_nativeCreate.js +0 -9
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_objectToString.js +0 -12
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_root.js +0 -10
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_toSource.js +0 -20
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/eq.js +0 -11
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/isFunction.js +0 -16
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/isObject.js +0 -12
- package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/memoize.js +0 -20
- package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/formula_evaluator.js +0 -37
- package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/lexer.js +0 -509
- package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/math_function.js +0 -108
- package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/postfix.js +0 -31
- package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/postfix_evaluator.js +0 -45
- package/dist/node_modules/.bun/react-redux@9.3.0_9e2203c65d1d5fa1/node_modules/react-redux/dist/react-redux.js +0 -471
- package/dist/node_modules/.bun/reduce-css-calc@1.3.0/node_modules/reduce-css-calc/index.js +0 -49
- package/dist/node_modules/.bun/reduce-function-call@1.0.3/node_modules/reduce-function-call/index.js +0 -34
- package/dist/node_modules/.bun/redux-undo@1.1.0/node_modules/redux-undo/dist/redux-undo.js +0 -185
- package/dist/node_modules/.bun/redux@5.0.1/node_modules/redux/dist/redux.js +0 -198
- package/dist/node_modules/.bun/use-sync-external-store@1.6.0_f4eacebf2041cd4f/node_modules/use-sync-external-store/cjs/use-sync-external-store-with-selector.development.js +0 -53
- package/dist/node_modules/.bun/use-sync-external-store@1.6.0_f4eacebf2041cd4f/node_modules/use-sync-external-store/cjs/use-sync-external-store-with-selector.production.js +0 -51
- package/dist/node_modules/.bun/use-sync-external-store@1.6.0_f4eacebf2041cd4f/node_modules/use-sync-external-store/with-selector.js +0 -10
- package/dist/toggle-bar.d.ts +0 -40
- package/dist/toggle-bar.js +0 -155
- package/dist/tool-menu.d.ts +0 -29
- package/dist/tool-menu.js +0 -41
- package/dist/tools/absolute/component.d.ts +0 -16
- package/dist/tools/absolute/component.js +0 -15
- package/dist/tools/absolute/index.d.ts +0 -20
- package/dist/tools/absolute/index.js +0 -32
- package/dist/tools/circle/bg-circle.d.ts +0 -116
- package/dist/tools/circle/bg-circle.js +0 -72
- package/dist/tools/circle/component.d.ts +0 -83
- package/dist/tools/circle/component.js +0 -195
- package/dist/tools/circle/index.d.ts +0 -20
- package/dist/tools/circle/index.js +0 -22
- package/dist/tools/exponential/component.d.ts +0 -16
- package/dist/tools/exponential/component.js +0 -14
- package/dist/tools/exponential/index.d.ts +0 -20
- package/dist/tools/exponential/index.js +0 -32
- package/dist/tools/index.d.ts +0 -27
- package/dist/tools/index.js +0 -55
- package/dist/tools/line/component.d.ts +0 -124
- package/dist/tools/line/component.js +0 -72
- package/dist/tools/line/index.d.ts +0 -13
- package/dist/tools/line/index.js +0 -6
- package/dist/tools/parabola/component.d.ts +0 -16
- package/dist/tools/parabola/component.js +0 -14
- package/dist/tools/parabola/index.d.ts +0 -20
- package/dist/tools/parabola/index.js +0 -32
- package/dist/tools/point/component.d.ts +0 -50
- package/dist/tools/point/component.js +0 -85
- package/dist/tools/point/index.d.ts +0 -15
- package/dist/tools/point/index.js +0 -13
- package/dist/tools/polygon/component.d.ts +0 -120
- package/dist/tools/polygon/component.js +0 -262
- package/dist/tools/polygon/index.d.ts +0 -19
- package/dist/tools/polygon/index.js +0 -55
- package/dist/tools/polygon/line.d.ts +0 -125
- package/dist/tools/polygon/line.js +0 -63
- package/dist/tools/polygon/polygon.d.ts +0 -122
- package/dist/tools/polygon/polygon.js +0 -74
- package/dist/tools/ray/component.d.ts +0 -101
- package/dist/tools/ray/component.js +0 -71
- package/dist/tools/ray/index.d.ts +0 -13
- package/dist/tools/ray/index.js +0 -6
- package/dist/tools/segment/component.d.ts +0 -100
- package/dist/tools/segment/component.js +0 -52
- package/dist/tools/segment/index.d.ts +0 -13
- package/dist/tools/segment/index.js +0 -6
- package/dist/tools/shared/arrow-head.d.ts +0 -51
- package/dist/tools/shared/arrow-head.js +0 -63
- package/dist/tools/shared/icons/CorrectSVG.d.ts +0 -26
- package/dist/tools/shared/icons/CorrectSVG.js +0 -29
- package/dist/tools/shared/icons/IncorrectSVG.d.ts +0 -26
- package/dist/tools/shared/icons/IncorrectSVG.js +0 -27
- package/dist/tools/shared/icons/MissingSVG.d.ts +0 -26
- package/dist/tools/shared/icons/MissingSVG.js +0 -28
- package/dist/tools/shared/line/index.d.ts +0 -245
- package/dist/tools/shared/line/index.js +0 -319
- package/dist/tools/shared/line/line-path.d.ts +0 -57
- package/dist/tools/shared/line/line-path.js +0 -71
- package/dist/tools/shared/line/with-root-edge.d.ts +0 -142
- package/dist/tools/shared/line/with-root-edge.js +0 -73
- package/dist/tools/shared/point/arrow-point.d.ts +0 -56
- package/dist/tools/shared/point/arrow-point.js +0 -41
- package/dist/tools/shared/point/arrow.d.ts +0 -45
- package/dist/tools/shared/point/arrow.js +0 -35
- package/dist/tools/shared/point/base-point.d.ts +0 -52
- package/dist/tools/shared/point/base-point.js +0 -103
- package/dist/tools/shared/point/index.d.ts +0 -216
- package/dist/tools/shared/point/index.js +0 -45
- package/dist/tools/shared/styles.d.ts +0 -29
- package/dist/tools/shared/styles.js +0 -20
- package/dist/tools/shared/types.d.ts +0 -21
- package/dist/tools/shared/types.js +0 -11
- package/dist/tools/sine/component.d.ts +0 -16
- package/dist/tools/sine/component.js +0 -22
- package/dist/tools/sine/index.d.ts +0 -20
- package/dist/tools/sine/index.js +0 -32
- package/dist/tools/vector/component.d.ts +0 -100
- package/dist/tools/vector/component.js +0 -44
- package/dist/tools/vector/index.d.ts +0 -13
- package/dist/tools/vector/index.js +0 -6
- package/dist/undo-redo.d.ts +0 -22
- package/dist/undo-redo.js +0 -47
- package/dist/use-debounce.d.ts +0 -9
- package/dist/use-debounce.js +0 -13
- package/dist/utils.d.ts +0 -61
- package/dist/utils.js +0 -75
|
@@ -1,185 +0,0 @@
|
|
|
1
|
-
//#region ../../../node_modules/.bun/redux-undo@1.1.0/node_modules/redux-undo/dist/redux-undo.mjs
|
|
2
|
-
var e = {
|
|
3
|
-
UNDO: "@@redux-undo/UNDO",
|
|
4
|
-
REDO: "@@redux-undo/REDO",
|
|
5
|
-
JUMP_TO_FUTURE: "@@redux-undo/JUMP_TO_FUTURE",
|
|
6
|
-
JUMP_TO_PAST: "@@redux-undo/JUMP_TO_PAST",
|
|
7
|
-
JUMP: "@@redux-undo/JUMP",
|
|
8
|
-
CLEAR_HISTORY: "@@redux-undo/CLEAR_HISTORY"
|
|
9
|
-
}, t = {
|
|
10
|
-
undo() {
|
|
11
|
-
return { type: e.UNDO };
|
|
12
|
-
},
|
|
13
|
-
redo() {
|
|
14
|
-
return { type: e.REDO };
|
|
15
|
-
},
|
|
16
|
-
jumpToFuture(t) {
|
|
17
|
-
return {
|
|
18
|
-
type: e.JUMP_TO_FUTURE,
|
|
19
|
-
index: t
|
|
20
|
-
};
|
|
21
|
-
},
|
|
22
|
-
jumpToPast(t) {
|
|
23
|
-
return {
|
|
24
|
-
type: e.JUMP_TO_PAST,
|
|
25
|
-
index: t
|
|
26
|
-
};
|
|
27
|
-
},
|
|
28
|
-
jump(t) {
|
|
29
|
-
return {
|
|
30
|
-
type: e.JUMP,
|
|
31
|
-
index: t
|
|
32
|
-
};
|
|
33
|
-
},
|
|
34
|
-
clearHistory() {
|
|
35
|
-
return { type: e.CLEAR_HISTORY };
|
|
36
|
-
}
|
|
37
|
-
};
|
|
38
|
-
function n(e, t = []) {
|
|
39
|
-
return Array.isArray(e) ? e : typeof e == "string" ? [e] : t;
|
|
40
|
-
}
|
|
41
|
-
function r(e) {
|
|
42
|
-
return typeof e.present < "u" && typeof e.future < "u" && typeof e.past < "u" && Array.isArray(e.future) && Array.isArray(e.past);
|
|
43
|
-
}
|
|
44
|
-
function i(e, t, n, r = null) {
|
|
45
|
-
return {
|
|
46
|
-
past: e,
|
|
47
|
-
present: t,
|
|
48
|
-
future: n,
|
|
49
|
-
group: r,
|
|
50
|
-
_latestUnfiltered: t,
|
|
51
|
-
index: e.length,
|
|
52
|
-
limit: e.length + n.length + 1
|
|
53
|
-
};
|
|
54
|
-
}
|
|
55
|
-
var a, o, s = {
|
|
56
|
-
prevState: "#9E9E9E",
|
|
57
|
-
action: "#03A9F4",
|
|
58
|
-
nextState: "#4CAF50"
|
|
59
|
-
};
|
|
60
|
-
function c() {
|
|
61
|
-
o = {
|
|
62
|
-
header: [],
|
|
63
|
-
prev: [],
|
|
64
|
-
action: [],
|
|
65
|
-
next: [],
|
|
66
|
-
msgs: []
|
|
67
|
-
};
|
|
68
|
-
}
|
|
69
|
-
function l() {
|
|
70
|
-
let { header: e, prev: t, next: n, action: r, msgs: i } = o;
|
|
71
|
-
console.group ? (console.groupCollapsed(...e), console.log(...t), console.log(...r), console.log(...n), console.log(...i), console.groupEnd()) : (console.log(...e), console.log(...t), console.log(...r), console.log(...n), console.log(...i));
|
|
72
|
-
}
|
|
73
|
-
function u(e, t, n) {
|
|
74
|
-
return [
|
|
75
|
-
`%c${e}`,
|
|
76
|
-
`color: ${t}; font-weight: bold`,
|
|
77
|
-
n
|
|
78
|
-
];
|
|
79
|
-
}
|
|
80
|
-
function d(e, t) {
|
|
81
|
-
c(), a && (console.group ? (o.header = [
|
|
82
|
-
"%credux-undo",
|
|
83
|
-
"font-style: italic",
|
|
84
|
-
"action",
|
|
85
|
-
e.type
|
|
86
|
-
], o.action = u("action", s.action, e), o.prev = u("prev history", s.prevState, t)) : (o.header = ["redux-undo action", e.type], o.action = ["action", e], o.prev = ["prev history", t]));
|
|
87
|
-
}
|
|
88
|
-
function f(e) {
|
|
89
|
-
a && (console.group ? o.next = u("next history", s.nextState, e) : o.next = ["next history", e], l());
|
|
90
|
-
}
|
|
91
|
-
function p(...e) {
|
|
92
|
-
a && (o.msgs = o.msgs.concat([...e, "\n"]));
|
|
93
|
-
}
|
|
94
|
-
function m(e) {
|
|
95
|
-
a = e;
|
|
96
|
-
}
|
|
97
|
-
function h(e, t) {
|
|
98
|
-
let n = i([], e, []);
|
|
99
|
-
return t && (n._latestUnfiltered = null), n;
|
|
100
|
-
}
|
|
101
|
-
function g(e, t, n, r) {
|
|
102
|
-
let a = e.past.length + 1;
|
|
103
|
-
p("inserting", t), p("new free: ", n - a);
|
|
104
|
-
let { past: o, _latestUnfiltered: s } = e, c = n && n <= a, l = o.slice(+!!c);
|
|
105
|
-
return i(s == null ? l : [...l, s], t, [], r);
|
|
106
|
-
}
|
|
107
|
-
function _(e, t) {
|
|
108
|
-
if (t < 0 || t >= e.future.length) return e;
|
|
109
|
-
let { past: n, future: r, _latestUnfiltered: a } = e, o = [
|
|
110
|
-
...n,
|
|
111
|
-
a,
|
|
112
|
-
...r.slice(0, t)
|
|
113
|
-
], s = r[t];
|
|
114
|
-
return i(o, s, r.slice(t + 1));
|
|
115
|
-
}
|
|
116
|
-
function v(e, t) {
|
|
117
|
-
if (t < 0 || t >= e.past.length) return e;
|
|
118
|
-
let { past: n, future: r, _latestUnfiltered: a } = e, o = n.slice(0, t), s = [
|
|
119
|
-
...n.slice(t + 1),
|
|
120
|
-
a,
|
|
121
|
-
...r
|
|
122
|
-
], c = n[t];
|
|
123
|
-
return i(o, c, s);
|
|
124
|
-
}
|
|
125
|
-
function y(e, t) {
|
|
126
|
-
return t > 0 ? _(e, t - 1) : t < 0 ? v(e, e.past.length + t) : e;
|
|
127
|
-
}
|
|
128
|
-
function b(e, t) {
|
|
129
|
-
return t.indexOf(e) > -1 ? e : !e;
|
|
130
|
-
}
|
|
131
|
-
function x(t, a = {}) {
|
|
132
|
-
m(a.debug);
|
|
133
|
-
let o = {
|
|
134
|
-
limit: void 0,
|
|
135
|
-
filter: () => !0,
|
|
136
|
-
groupBy: () => null,
|
|
137
|
-
undoType: e.UNDO,
|
|
138
|
-
redoType: e.REDO,
|
|
139
|
-
jumpToPastType: e.JUMP_TO_PAST,
|
|
140
|
-
jumpToFutureType: e.JUMP_TO_FUTURE,
|
|
141
|
-
jumpType: e.JUMP,
|
|
142
|
-
neverSkipReducer: !1,
|
|
143
|
-
ignoreInitialState: !1,
|
|
144
|
-
syncFilter: !1,
|
|
145
|
-
...a,
|
|
146
|
-
initTypes: n(a.initTypes, ["@@redux-undo/INIT"]),
|
|
147
|
-
clearHistoryType: n(a.clearHistoryType, [e.CLEAR_HISTORY])
|
|
148
|
-
}, s = o.neverSkipReducer ? (e, n, ...r) => ({
|
|
149
|
-
...e,
|
|
150
|
-
present: t(e.present, n, ...r)
|
|
151
|
-
}) : (e) => e, c;
|
|
152
|
-
return (e = c, n = {}, ...a) => {
|
|
153
|
-
d(n, e);
|
|
154
|
-
let l = e;
|
|
155
|
-
if (!c) {
|
|
156
|
-
if (p("history is uninitialized"), e === void 0) return l = h(t(e, { type: "@@redux-undo/CREATE_HISTORY" }, ...a), o.ignoreInitialState), p("do not set initialState on probe actions"), f(l), l;
|
|
157
|
-
r(e) ? (l = c = o.ignoreInitialState ? e : i(e.past, e.present, e.future), p("initialHistory initialized: initialState is a history", c)) : (l = c = h(e, o.ignoreInitialState), p("initialHistory initialized: initialState is not a history", c));
|
|
158
|
-
}
|
|
159
|
-
let u;
|
|
160
|
-
switch (n.type) {
|
|
161
|
-
case void 0: return l;
|
|
162
|
-
case o.undoType: return u = y(l, -1), p("perform undo"), f(u), s(u, n, ...a);
|
|
163
|
-
case o.redoType: return u = y(l, 1), p("perform redo"), f(u), s(u, n, ...a);
|
|
164
|
-
case o.jumpToPastType: return u = v(l, n.index), p(`perform jumpToPast to ${n.index}`), f(u), s(u, n, ...a);
|
|
165
|
-
case o.jumpToFutureType: return u = _(l, n.index), p(`perform jumpToFuture to ${n.index}`), f(u), s(u, n, ...a);
|
|
166
|
-
case o.jumpType: return u = y(l, n.index), p(`perform jump to ${n.index}`), f(u), s(u, n, ...a);
|
|
167
|
-
case b(n.type, o.clearHistoryType): return u = h(l.present, o.ignoreInitialState), p("perform clearHistory"), f(u), s(u, n, ...a);
|
|
168
|
-
default:
|
|
169
|
-
if (u = t(l.present, n, ...a), o.initTypes.some((e) => e === n.type)) return p("reset history due to init action"), f(c), c;
|
|
170
|
-
if (l._latestUnfiltered === u) return l;
|
|
171
|
-
if (typeof o.filter == "function" && !o.filter(n, u, l)) {
|
|
172
|
-
let e = i(l.past, u, l.future, l.group);
|
|
173
|
-
return o.syncFilter || (e._latestUnfiltered = l._latestUnfiltered), p("filter ignored action, not storing it in past"), f(e), e;
|
|
174
|
-
}
|
|
175
|
-
let e = o.groupBy(n, u, l);
|
|
176
|
-
if (e != null && e === l.group) {
|
|
177
|
-
let e = i(l.past, u, l.future, l.group);
|
|
178
|
-
return p("groupBy grouped the action with the previous action"), f(e), e;
|
|
179
|
-
}
|
|
180
|
-
return l = g(l, u, o.limit, e), p("inserted new state into history"), f(l), l;
|
|
181
|
-
}
|
|
182
|
-
};
|
|
183
|
-
}
|
|
184
|
-
//#endregion
|
|
185
|
-
export { x as C, t as M };
|
|
@@ -1,198 +0,0 @@
|
|
|
1
|
-
//#region ../../../node_modules/.bun/redux@5.0.1/node_modules/redux/dist/redux.mjs
|
|
2
|
-
function e(e) {
|
|
3
|
-
return `Minified Redux error #${e}; visit https://redux.js.org/Errors?code=${e} for the full message or use the non-minified dev environment for full errors. `;
|
|
4
|
-
}
|
|
5
|
-
var t = typeof Symbol == "function" && Symbol.observable || "@@observable", n = () => Math.random().toString(36).substring(7).split("").join("."), r = {
|
|
6
|
-
INIT: `@@redux/INIT${/* @__PURE__ */ n()}`,
|
|
7
|
-
REPLACE: `@@redux/REPLACE${/* @__PURE__ */ n()}`,
|
|
8
|
-
PROBE_UNKNOWN_ACTION: () => `@@redux/PROBE_UNKNOWN_ACTION${n()}`
|
|
9
|
-
};
|
|
10
|
-
function i(e) {
|
|
11
|
-
if (typeof e != "object" || !e) return !1;
|
|
12
|
-
let t = e;
|
|
13
|
-
for (; Object.getPrototypeOf(t) !== null;) t = Object.getPrototypeOf(t);
|
|
14
|
-
return Object.getPrototypeOf(e) === t || Object.getPrototypeOf(e) === null;
|
|
15
|
-
}
|
|
16
|
-
function a(e) {
|
|
17
|
-
if (e === void 0) return "undefined";
|
|
18
|
-
if (e === null) return "null";
|
|
19
|
-
let t = typeof e;
|
|
20
|
-
switch (t) {
|
|
21
|
-
case "boolean":
|
|
22
|
-
case "string":
|
|
23
|
-
case "number":
|
|
24
|
-
case "symbol":
|
|
25
|
-
case "function": return t;
|
|
26
|
-
}
|
|
27
|
-
if (Array.isArray(e)) return "array";
|
|
28
|
-
if (c(e)) return "date";
|
|
29
|
-
if (s(e)) return "error";
|
|
30
|
-
let n = o(e);
|
|
31
|
-
switch (n) {
|
|
32
|
-
case "Symbol":
|
|
33
|
-
case "Promise":
|
|
34
|
-
case "WeakMap":
|
|
35
|
-
case "WeakSet":
|
|
36
|
-
case "Map":
|
|
37
|
-
case "Set": return n;
|
|
38
|
-
}
|
|
39
|
-
return Object.prototype.toString.call(e).slice(8, -1).toLowerCase().replace(/\s/g, "");
|
|
40
|
-
}
|
|
41
|
-
function o(e) {
|
|
42
|
-
return typeof e.constructor == "function" ? e.constructor.name : null;
|
|
43
|
-
}
|
|
44
|
-
function s(e) {
|
|
45
|
-
return e instanceof Error || typeof e.message == "string" && e.constructor && typeof e.constructor.stackTraceLimit == "number";
|
|
46
|
-
}
|
|
47
|
-
function c(e) {
|
|
48
|
-
return e instanceof Date ? !0 : typeof e.toDateString == "function" && typeof e.getDate == "function" && typeof e.setDate == "function";
|
|
49
|
-
}
|
|
50
|
-
function l(e) {
|
|
51
|
-
let t = typeof e;
|
|
52
|
-
return process.env.NODE_ENV !== "production" && (t = a(e)), t;
|
|
53
|
-
}
|
|
54
|
-
function u(n, a, o) {
|
|
55
|
-
if (typeof n != "function") throw Error(process.env.NODE_ENV === "production" ? e(2) : `Expected the root reducer to be a function. Instead, received: '${l(n)}'`);
|
|
56
|
-
if (typeof a == "function" && typeof o == "function" || typeof o == "function" && typeof arguments[3] == "function") throw Error(process.env.NODE_ENV === "production" ? e(0) : "It looks like you are passing several store enhancers to createStore(). This is not supported. Instead, compose them together to a single function. See https://redux.js.org/tutorials/fundamentals/part-4-store#creating-a-store-with-enhancers for an example.");
|
|
57
|
-
if (typeof a == "function" && o === void 0 && (o = a, a = void 0), o !== void 0) {
|
|
58
|
-
if (typeof o != "function") throw Error(process.env.NODE_ENV === "production" ? e(1) : `Expected the enhancer to be a function. Instead, received: '${l(o)}'`);
|
|
59
|
-
return o(u)(n, a);
|
|
60
|
-
}
|
|
61
|
-
let s = n, c = a, d = /* @__PURE__ */ new Map(), f = d, p = 0, m = !1;
|
|
62
|
-
function h() {
|
|
63
|
-
f === d && (f = /* @__PURE__ */ new Map(), d.forEach((e, t) => {
|
|
64
|
-
f.set(t, e);
|
|
65
|
-
}));
|
|
66
|
-
}
|
|
67
|
-
function g() {
|
|
68
|
-
if (m) throw Error(process.env.NODE_ENV === "production" ? e(3) : "You may not call store.getState() while the reducer is executing. The reducer has already received the state as an argument. Pass it down from the top reducer instead of reading it from the store.");
|
|
69
|
-
return c;
|
|
70
|
-
}
|
|
71
|
-
function _(t) {
|
|
72
|
-
if (typeof t != "function") throw Error(process.env.NODE_ENV === "production" ? e(4) : `Expected the listener to be a function. Instead, received: '${l(t)}'`);
|
|
73
|
-
if (m) throw Error(process.env.NODE_ENV === "production" ? e(5) : "You may not call store.subscribe() while the reducer is executing. If you would like to be notified after the store has been updated, subscribe from a component and invoke store.getState() in the callback to access the latest state. See https://redux.js.org/api/store#subscribelistener for more details.");
|
|
74
|
-
let n = !0;
|
|
75
|
-
h();
|
|
76
|
-
let r = p++;
|
|
77
|
-
return f.set(r, t), function() {
|
|
78
|
-
if (n) {
|
|
79
|
-
if (m) throw Error(process.env.NODE_ENV === "production" ? e(6) : "You may not unsubscribe from a store listener while the reducer is executing. See https://redux.js.org/api/store#subscribelistener for more details.");
|
|
80
|
-
n = !1, h(), f.delete(r), d = null;
|
|
81
|
-
}
|
|
82
|
-
};
|
|
83
|
-
}
|
|
84
|
-
function v(t) {
|
|
85
|
-
if (!i(t)) throw Error(process.env.NODE_ENV === "production" ? e(7) : `Actions must be plain objects. Instead, the actual type was: '${l(t)}'. You may need to add middleware to your store setup to handle dispatching other values, such as 'redux-thunk' to handle dispatching functions. See https://redux.js.org/tutorials/fundamentals/part-4-store#middleware and https://redux.js.org/tutorials/fundamentals/part-6-async-logic#using-the-redux-thunk-middleware for examples.`);
|
|
86
|
-
if (t.type === void 0) throw Error(process.env.NODE_ENV === "production" ? e(8) : "Actions may not have an undefined \"type\" property. You may have misspelled an action type string constant.");
|
|
87
|
-
if (typeof t.type != "string") throw Error(process.env.NODE_ENV === "production" ? e(17) : `Action "type" property must be a string. Instead, the actual type was: '${l(t.type)}'. Value was: '${t.type}' (stringified)`);
|
|
88
|
-
if (m) throw Error(process.env.NODE_ENV === "production" ? e(9) : "Reducers may not dispatch actions.");
|
|
89
|
-
try {
|
|
90
|
-
m = !0, c = s(c, t);
|
|
91
|
-
} finally {
|
|
92
|
-
m = !1;
|
|
93
|
-
}
|
|
94
|
-
return (d = f).forEach((e) => {
|
|
95
|
-
e();
|
|
96
|
-
}), t;
|
|
97
|
-
}
|
|
98
|
-
function y(t) {
|
|
99
|
-
if (typeof t != "function") throw Error(process.env.NODE_ENV === "production" ? e(10) : `Expected the nextReducer to be a function. Instead, received: '${l(t)}`);
|
|
100
|
-
s = t, v({ type: r.REPLACE });
|
|
101
|
-
}
|
|
102
|
-
function b() {
|
|
103
|
-
let n = _;
|
|
104
|
-
return {
|
|
105
|
-
subscribe(t) {
|
|
106
|
-
if (typeof t != "object" || !t) throw Error(process.env.NODE_ENV === "production" ? e(11) : `Expected the observer to be an object. Instead, received: '${l(t)}'`);
|
|
107
|
-
function r() {
|
|
108
|
-
let e = t;
|
|
109
|
-
e.next && e.next(g());
|
|
110
|
-
}
|
|
111
|
-
return r(), { unsubscribe: n(r) };
|
|
112
|
-
},
|
|
113
|
-
[t]() {
|
|
114
|
-
return this;
|
|
115
|
-
}
|
|
116
|
-
};
|
|
117
|
-
}
|
|
118
|
-
return v({ type: r.INIT }), {
|
|
119
|
-
dispatch: v,
|
|
120
|
-
subscribe: _,
|
|
121
|
-
getState: g,
|
|
122
|
-
replaceReducer: y,
|
|
123
|
-
[t]: b
|
|
124
|
-
};
|
|
125
|
-
}
|
|
126
|
-
function d(e) {
|
|
127
|
-
typeof console < "u" && typeof console.error == "function" && console.error(e);
|
|
128
|
-
try {
|
|
129
|
-
throw Error(e);
|
|
130
|
-
} catch {}
|
|
131
|
-
}
|
|
132
|
-
function f(e, t, n, a) {
|
|
133
|
-
let o = Object.keys(t), s = n && n.type === r.INIT ? "preloadedState argument passed to createStore" : "previous state received by the reducer";
|
|
134
|
-
if (o.length === 0) return "Store does not have a valid reducer. Make sure the argument passed to combineReducers is an object whose values are reducers.";
|
|
135
|
-
if (!i(e)) return `The ${s} has unexpected type of "${l(e)}". Expected argument to be an object with the following keys: "${o.join("\", \"")}"`;
|
|
136
|
-
let c = Object.keys(e).filter((e) => !t.hasOwnProperty(e) && !a[e]);
|
|
137
|
-
if (c.forEach((e) => {
|
|
138
|
-
a[e] = !0;
|
|
139
|
-
}), !(n && n.type === r.REPLACE) && c.length > 0) return `Unexpected ${c.length > 1 ? "keys" : "key"} "${c.join("\", \"")}" found in ${s}. Expected to find one of the known reducer keys instead: "${o.join("\", \"")}". Unexpected keys will be ignored.`;
|
|
140
|
-
}
|
|
141
|
-
function p(t) {
|
|
142
|
-
Object.keys(t).forEach((n) => {
|
|
143
|
-
let i = t[n];
|
|
144
|
-
if (i(void 0, { type: r.INIT }) === void 0) throw Error(process.env.NODE_ENV === "production" ? e(12) : `The slice reducer for key "${n}" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined. If you don't want to set a value for this reducer, you can use null instead of undefined.`);
|
|
145
|
-
if (i(void 0, { type: r.PROBE_UNKNOWN_ACTION() }) === void 0) throw Error(process.env.NODE_ENV === "production" ? e(13) : `The slice reducer for key "${n}" returned undefined when probed with a random type. Don't try to handle '${r.INIT}' or other actions in "redux/*" namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined, but can be null.`);
|
|
146
|
-
});
|
|
147
|
-
}
|
|
148
|
-
function m(t) {
|
|
149
|
-
let n = Object.keys(t), r = {};
|
|
150
|
-
for (let e = 0; e < n.length; e++) {
|
|
151
|
-
let i = n[e];
|
|
152
|
-
process.env.NODE_ENV !== "production" && t[i] === void 0 && d(`No reducer provided for key "${i}"`), typeof t[i] == "function" && (r[i] = t[i]);
|
|
153
|
-
}
|
|
154
|
-
let i = Object.keys(r), a;
|
|
155
|
-
process.env.NODE_ENV !== "production" && (a = {});
|
|
156
|
-
let o;
|
|
157
|
-
try {
|
|
158
|
-
p(r);
|
|
159
|
-
} catch (e) {
|
|
160
|
-
o = e;
|
|
161
|
-
}
|
|
162
|
-
return function(t = {}, n) {
|
|
163
|
-
if (o) throw o;
|
|
164
|
-
if (process.env.NODE_ENV !== "production") {
|
|
165
|
-
let e = f(t, r, n, a);
|
|
166
|
-
e && d(e);
|
|
167
|
-
}
|
|
168
|
-
let s = !1, c = {};
|
|
169
|
-
for (let a = 0; a < i.length; a++) {
|
|
170
|
-
let o = i[a], l = r[o], u = t[o], d = l(u, n);
|
|
171
|
-
if (d === void 0) {
|
|
172
|
-
let t = n && n.type;
|
|
173
|
-
throw Error(process.env.NODE_ENV === "production" ? e(14) : `When called with an action of type ${t ? `"${String(t)}"` : "(unknown type)"}, the slice reducer for key "${o}" returned undefined. To ignore an action, you must explicitly return the previous state. If you want this reducer to hold no value, you can return null instead of undefined.`);
|
|
174
|
-
}
|
|
175
|
-
c[o] = d, s ||= d !== u;
|
|
176
|
-
}
|
|
177
|
-
return s ||= i.length !== Object.keys(t).length, s ? c : t;
|
|
178
|
-
};
|
|
179
|
-
}
|
|
180
|
-
function h(...e) {
|
|
181
|
-
return e.length === 0 ? (e) => e : e.length === 1 ? e[0] : e.reduce((e, t) => (...n) => e(t(...n)));
|
|
182
|
-
}
|
|
183
|
-
function g(...t) {
|
|
184
|
-
return (n) => (r, i) => {
|
|
185
|
-
let a = n(r, i), o = () => {
|
|
186
|
-
throw Error(process.env.NODE_ENV === "production" ? e(15) : "Dispatching while constructing your middleware is not allowed. Other middleware would not be applied to this dispatch.");
|
|
187
|
-
}, s = {
|
|
188
|
-
getState: a.getState,
|
|
189
|
-
dispatch: (e, ...t) => o(e, ...t)
|
|
190
|
-
};
|
|
191
|
-
return o = h(...t.map((e) => e(s)))(a.dispatch), {
|
|
192
|
-
...a,
|
|
193
|
-
dispatch: o
|
|
194
|
-
};
|
|
195
|
-
};
|
|
196
|
-
}
|
|
197
|
-
//#endregion
|
|
198
|
-
export { g as applyMiddleware, m as combineReducers, u as createStore };
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
import { __commonJSMin as e, __require as t } from "../../../../../../_virtual/_rolldown/runtime.js";
|
|
2
|
-
//#region ../../../node_modules/.bun/use-sync-external-store@1.6.0+f4eacebf2041cd4f/node_modules/use-sync-external-store/cjs/use-sync-external-store-with-selector.development.js
|
|
3
|
-
var n = /* @__PURE__ */ e(((e) => {
|
|
4
|
-
process.env.NODE_ENV !== "production" && (function() {
|
|
5
|
-
function n(e, t) {
|
|
6
|
-
return e === t && (e !== 0 || 1 / e == 1 / t) || e !== e && t !== t;
|
|
7
|
-
}
|
|
8
|
-
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ < "u" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart == "function" && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());
|
|
9
|
-
var r = t("react"), i = typeof Object.is == "function" ? Object.is : n, a = r.useSyncExternalStore, o = r.useRef, s = r.useEffect, c = r.useMemo, l = r.useDebugValue;
|
|
10
|
-
e.useSyncExternalStoreWithSelector = function(e, t, n, r, u) {
|
|
11
|
-
var d = o(null);
|
|
12
|
-
if (d.current === null) {
|
|
13
|
-
var f = {
|
|
14
|
-
hasValue: !1,
|
|
15
|
-
value: null
|
|
16
|
-
};
|
|
17
|
-
d.current = f;
|
|
18
|
-
} else f = d.current;
|
|
19
|
-
d = c(function() {
|
|
20
|
-
function e(e) {
|
|
21
|
-
if (!a) {
|
|
22
|
-
if (a = !0, o = e, e = r(e), u !== void 0 && f.hasValue) {
|
|
23
|
-
var t = f.value;
|
|
24
|
-
if (u(t, e)) return s = t;
|
|
25
|
-
}
|
|
26
|
-
return s = e;
|
|
27
|
-
}
|
|
28
|
-
if (t = s, i(o, e)) return t;
|
|
29
|
-
var n = r(e);
|
|
30
|
-
return u !== void 0 && u(t, n) ? (o = e, t) : (o = e, s = n);
|
|
31
|
-
}
|
|
32
|
-
var a = !1, o, s, c = n === void 0 ? null : n;
|
|
33
|
-
return [function() {
|
|
34
|
-
return e(t());
|
|
35
|
-
}, c === null ? void 0 : function() {
|
|
36
|
-
return e(c());
|
|
37
|
-
}];
|
|
38
|
-
}, [
|
|
39
|
-
t,
|
|
40
|
-
n,
|
|
41
|
-
r,
|
|
42
|
-
u
|
|
43
|
-
]);
|
|
44
|
-
var p = a(e, d[0], d[1]);
|
|
45
|
-
return s(function() {
|
|
46
|
-
f.hasValue = !0, f.value = p;
|
|
47
|
-
}, [p]), l(p), p;
|
|
48
|
-
}, typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ < "u" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop == "function" && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error());
|
|
49
|
-
})();
|
|
50
|
-
}));
|
|
51
|
-
//#endregion
|
|
52
|
-
export default n();
|
|
53
|
-
export { n as require_use_sync_external_store_with_selector_development };
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import { __commonJSMin as e, __require as t } from "../../../../../../_virtual/_rolldown/runtime.js";
|
|
2
|
-
//#region ../../../node_modules/.bun/use-sync-external-store@1.6.0+f4eacebf2041cd4f/node_modules/use-sync-external-store/cjs/use-sync-external-store-with-selector.production.js
|
|
3
|
-
var n = /* @__PURE__ */ e(((e) => {
|
|
4
|
-
var n = t("react");
|
|
5
|
-
function r(e, t) {
|
|
6
|
-
return e === t && (e !== 0 || 1 / e == 1 / t) || e !== e && t !== t;
|
|
7
|
-
}
|
|
8
|
-
var i = typeof Object.is == "function" ? Object.is : r, a = n.useSyncExternalStore, o = n.useRef, s = n.useEffect, c = n.useMemo, l = n.useDebugValue;
|
|
9
|
-
e.useSyncExternalStoreWithSelector = function(e, t, n, r, u) {
|
|
10
|
-
var d = o(null);
|
|
11
|
-
if (d.current === null) {
|
|
12
|
-
var f = {
|
|
13
|
-
hasValue: !1,
|
|
14
|
-
value: null
|
|
15
|
-
};
|
|
16
|
-
d.current = f;
|
|
17
|
-
} else f = d.current;
|
|
18
|
-
d = c(function() {
|
|
19
|
-
function e(e) {
|
|
20
|
-
if (!a) {
|
|
21
|
-
if (a = !0, o = e, e = r(e), u !== void 0 && f.hasValue) {
|
|
22
|
-
var t = f.value;
|
|
23
|
-
if (u(t, e)) return s = t;
|
|
24
|
-
}
|
|
25
|
-
return s = e;
|
|
26
|
-
}
|
|
27
|
-
if (t = s, i(o, e)) return t;
|
|
28
|
-
var n = r(e);
|
|
29
|
-
return u !== void 0 && u(t, n) ? (o = e, t) : (o = e, s = n);
|
|
30
|
-
}
|
|
31
|
-
var a = !1, o, s, c = n === void 0 ? null : n;
|
|
32
|
-
return [function() {
|
|
33
|
-
return e(t());
|
|
34
|
-
}, c === null ? void 0 : function() {
|
|
35
|
-
return e(c());
|
|
36
|
-
}];
|
|
37
|
-
}, [
|
|
38
|
-
t,
|
|
39
|
-
n,
|
|
40
|
-
r,
|
|
41
|
-
u
|
|
42
|
-
]);
|
|
43
|
-
var p = a(e, d[0], d[1]);
|
|
44
|
-
return s(function() {
|
|
45
|
-
f.hasValue = !0, f.value = p;
|
|
46
|
-
}, [p]), l(p), p;
|
|
47
|
-
};
|
|
48
|
-
}));
|
|
49
|
-
//#endregion
|
|
50
|
-
export default n();
|
|
51
|
-
export { n as require_use_sync_external_store_with_selector_production };
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { __commonJSMin as e } from "../../../../../_virtual/_rolldown/runtime.js";
|
|
2
|
-
import { require_use_sync_external_store_with_selector_production as t } from "./cjs/use-sync-external-store-with-selector.production.js";
|
|
3
|
-
import { require_use_sync_external_store_with_selector_development as n } from "./cjs/use-sync-external-store-with-selector.development.js";
|
|
4
|
-
//#region ../../../node_modules/.bun/use-sync-external-store@1.6.0+f4eacebf2041cd4f/node_modules/use-sync-external-store/with-selector.js
|
|
5
|
-
var r = /* @__PURE__ */ e(((e, r) => {
|
|
6
|
-
process.env.NODE_ENV === "production" ? r.exports = t() : r.exports = n();
|
|
7
|
-
}));
|
|
8
|
-
//#endregion
|
|
9
|
-
export default r();
|
|
10
|
-
export { r as require_with_selector };
|
package/dist/toggle-bar.d.ts
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @synced-from pie-lib/packages/graphing/src/toggle-bar.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 const MiniButton: {
|
|
12
|
-
(props: any): React.JSX.Element;
|
|
13
|
-
propTypes: {
|
|
14
|
-
disabled: PropTypes.Requireable<boolean>;
|
|
15
|
-
className: PropTypes.Requireable<string>;
|
|
16
|
-
disabledClassName: PropTypes.Requireable<string>;
|
|
17
|
-
selected: PropTypes.Requireable<boolean>;
|
|
18
|
-
value: PropTypes.Requireable<string>;
|
|
19
|
-
onClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
20
|
-
language: PropTypes.Requireable<string>;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
export declare class ToggleBar extends React.Component {
|
|
24
|
-
static propTypes: {
|
|
25
|
-
className: PropTypes.Requireable<string>;
|
|
26
|
-
options: PropTypes.Requireable<(string | null | undefined)[]>;
|
|
27
|
-
selectedToolType: PropTypes.Requireable<string>;
|
|
28
|
-
disabled: PropTypes.Requireable<boolean>;
|
|
29
|
-
draggableTools: PropTypes.Requireable<boolean>;
|
|
30
|
-
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
31
|
-
onChangeToolsOrder: PropTypes.Requireable<(...args: any[]) => any>;
|
|
32
|
-
language: PropTypes.Requireable<string>;
|
|
33
|
-
};
|
|
34
|
-
static defaultProps: {};
|
|
35
|
-
select: (e: any) => any;
|
|
36
|
-
moveTool: any;
|
|
37
|
-
handleDragEnd: any;
|
|
38
|
-
render(): React.JSX.Element;
|
|
39
|
-
}
|
|
40
|
-
export default ToggleBar;
|