@pie-lib/graphing-solution-set 4.0.4-next.3 → 4.0.4-next.31
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 +23 -0
- package/dist/autosize-input.d.ts +10 -0
- package/dist/autosize-input.js +66 -0
- package/dist/axis/arrow.d.ts +13 -0
- package/dist/axis/arrow.js +34 -0
- package/dist/axis/axes.d.ts +132 -0
- package/dist/axis/axes.js +214 -0
- package/dist/axis/index.d.ts +10 -0
- package/dist/bg.d.ts +51 -0
- package/dist/bg.js +44 -0
- package/dist/container/actions.d.ts +15 -0
- package/dist/container/actions.js +7 -0
- package/dist/container/index.d.ts +58 -0
- package/dist/container/index.js +48 -0
- package/dist/container/marks.d.ts +10 -0
- package/dist/container/marks.js +11 -0
- package/dist/container/middleware.d.ts +10 -0
- package/dist/container/middleware.js +4 -0
- package/dist/container/reducer.d.ts +14 -0
- package/dist/container/reducer.js +7 -0
- package/dist/coordinates-label.d.ts +50 -0
- package/dist/coordinates-label.js +46 -0
- package/dist/graph-with-controls.d.ts +85 -0
- package/dist/graph-with-controls.js +155 -0
- package/dist/graph.d.ts +119 -0
- package/dist/graph.js +221 -0
- package/dist/grid-setup.d.ts +27 -0
- package/dist/grid-setup.js +307 -0
- package/dist/grid.d.ts +43 -0
- package/dist/grid.js +59 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +6 -0
- package/dist/labels.d.ts +73 -0
- package/dist/labels.js +134 -0
- package/dist/mark-label.d.ts +50 -0
- package/dist/mark-label.js +84 -0
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/Axis.js +101 -0
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/AxisRenderer.js +63 -0
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/Ticks.js +44 -0
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/constants/orientation.js +9 -0
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/createPoint.js +14 -0
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getAxisRangePaddingConfig.js +21 -0
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getLabelTransform.js +16 -0
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getTickFormatter.js +8 -0
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getTickPosition.js +15 -0
- package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/grids/Grid.js +79 -0
- package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/grids/GridColumns.js +79 -0
- package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/grids/GridRows.js +79 -0
- package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/utils/getScaleBandwidth.js +6 -0
- package/dist/node_modules/.bun/@visx_group@3.12.0_f4eacebf2041cd4f/node_modules/@visx/group/esm/Group.js +50 -0
- package/dist/node_modules/.bun/@visx_point@3.12.0/node_modules/@visx/point/esm/Point.js +18 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/coerceNumber.js +10 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/getTicks.js +9 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/toString.js +6 -0
- package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/shapes/Line.js +47 -0
- package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/lib/shapes/Line.js +53 -0
- package/dist/node_modules/.bun/@visx_text@3.12.0_f4eacebf2041cd4f/node_modules/@visx/text/esm/Text.js +57 -0
- package/dist/node_modules/.bun/@visx_text@3.12.0_f4eacebf2041cd4f/node_modules/@visx/text/esm/hooks/useText.js +91 -0
- package/dist/node_modules/.bun/@visx_text@3.12.0_f4eacebf2041cd4f/node_modules/@visx/text/esm/util/getStringWidth.js +21 -0
- package/dist/node_modules/.bun/balanced-match@0.4.2/node_modules/balanced-match/index.js +32 -0
- package/dist/node_modules/.bun/balanced-match@1.0.2/node_modules/balanced-match/index.js +33 -0
- package/dist/node_modules/.bun/classnames@2.5.1/node_modules/classnames/index.js +32 -0
- package/dist/node_modules/.bun/clsx@2.1.1/node_modules/clsx/dist/clsx.js +16 -0
- package/dist/node_modules/.bun/invariant@2.2.4/node_modules/invariant/browser.js +28 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_Hash.js +21 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_ListCache.js +21 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_Map.js +10 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_MapCache.js +21 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_Symbol.js +9 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_assocIndexOf.js +14 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_baseGetTag.js +15 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_baseIsNative.js +16 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_coreJsData.js +9 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_freeGlobal.js +8 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_getMapData.js +14 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_getNative.js +15 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_getRawTag.js +19 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_getValue.js +11 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_hashClear.js +13 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_hashDelete.js +12 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_hashGet.js +18 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_hashHas.js +14 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_hashSet.js +14 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_isKeyable.js +12 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_isMasked.js +16 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_listCacheClear.js +11 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_listCacheDelete.js +14 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_listCacheGet.js +14 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_listCacheHas.js +13 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_listCacheSet.js +14 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_mapCacheClear.js +19 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_mapCacheDelete.js +14 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_mapCacheGet.js +13 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_mapCacheHas.js +13 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_mapCacheSet.js +14 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_nativeCreate.js +9 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_objectToString.js +12 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_root.js +10 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/_toSource.js +20 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/eq.js +11 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/isFunction.js +16 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/isObject.js +12 -0
- package/dist/node_modules/.bun/lodash@4.17.21/node_modules/lodash/memoize.js +20 -0
- package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/formula_evaluator.js +37 -0
- package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/lexer.js +509 -0
- package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/math_function.js +108 -0
- package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/postfix.js +31 -0
- package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/postfix_evaluator.js +45 -0
- package/dist/node_modules/.bun/react-redux@9.3.0_9e2203c65d1d5fa1/node_modules/react-redux/dist/react-redux.js +471 -0
- package/dist/node_modules/.bun/reduce-css-calc@1.3.0/node_modules/reduce-css-calc/index.js +49 -0
- package/dist/node_modules/.bun/reduce-function-call@1.0.3/node_modules/reduce-function-call/index.js +34 -0
- package/dist/node_modules/.bun/redux-undo@1.1.0/node_modules/redux-undo/dist/redux-undo.js +185 -0
- package/dist/node_modules/.bun/redux@5.0.1/node_modules/redux/dist/redux.js +198 -0
- 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 +53 -0
- 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 +51 -0
- package/dist/node_modules/.bun/use-sync-external-store@1.6.0_f4eacebf2041cd4f/node_modules/use-sync-external-store/with-selector.js +10 -0
- package/dist/toggle-bar.d.ts +40 -0
- package/dist/tool-menu.d.ts +21 -0
- package/dist/tool-menu.js +188 -0
- package/dist/tools/index.d.ts +17 -0
- package/dist/tools/index.js +12 -0
- package/dist/tools/line/component.d.ts +113 -0
- package/dist/tools/line/component.js +58 -0
- package/dist/tools/line/index.d.ts +13 -0
- package/dist/tools/line/index.js +6 -0
- package/dist/tools/polygon/component.d.ts +117 -0
- package/dist/tools/polygon/component.js +194 -0
- package/dist/tools/polygon/index.d.ts +19 -0
- package/dist/tools/polygon/index.js +55 -0
- package/dist/tools/polygon/line.d.ts +125 -0
- package/dist/tools/polygon/polygon.d.ts +122 -0
- package/dist/tools/polygon/polygon.js +62 -0
- package/dist/tools/shared/arrow-head.d.ts +43 -0
- package/dist/tools/shared/arrow-head.js +37 -0
- package/dist/tools/shared/line/index.d.ts +240 -0
- package/dist/tools/shared/line/index.js +320 -0
- package/dist/tools/shared/line/line-path.d.ts +57 -0
- package/dist/tools/shared/line/with-root-edge.d.ts +143 -0
- package/dist/tools/shared/point/arrow-point.d.ts +57 -0
- package/dist/tools/shared/point/arrow-point.js +47 -0
- package/dist/tools/shared/point/arrow.d.ts +46 -0
- package/dist/tools/shared/point/arrow.js +36 -0
- package/dist/tools/shared/point/base-point.d.ts +50 -0
- package/dist/tools/shared/point/base-point.js +88 -0
- package/dist/tools/shared/point/index.d.ts +217 -0
- package/dist/tools/shared/point/index.js +51 -0
- package/dist/tools/shared/styles.d.ts +24 -0
- package/dist/tools/shared/styles.js +17 -0
- package/dist/tools/shared/types.d.ts +15 -0
- package/dist/tools/shared/types.js +10 -0
- package/dist/undo-redo.d.ts +20 -0
- package/dist/undo-redo.js +33 -0
- package/dist/use-debounce.d.ts +9 -0
- package/dist/use-debounce.js +13 -0
- package/dist/utils.d.ts +58 -0
- package/dist/utils.js +72 -0
- package/package.json +46 -34
- package/CHANGELOG.json +0 -1
- package/CHANGELOG.md +0 -449
- package/LICENSE.md +0 -5
- package/lib/axis/arrow.js +0 -79
- package/lib/axis/arrow.js.map +0 -1
- package/lib/axis/axes.js +0 -327
- package/lib/axis/axes.js.map +0 -1
- package/lib/axis/index.js +0 -21
- package/lib/axis/index.js.map +0 -1
- package/lib/bg.js +0 -114
- package/lib/bg.js.map +0 -1
- package/lib/container/actions.js +0 -18
- package/lib/container/actions.js.map +0 -1
- package/lib/container/index.js +0 -120
- package/lib/container/index.js.map +0 -1
- package/lib/container/marks.js +0 -22
- package/lib/container/marks.js.map +0 -1
- package/lib/container/middleware.js +0 -19
- package/lib/container/middleware.js.map +0 -1
- package/lib/container/reducer.js +0 -18
- package/lib/container/reducer.js.map +0 -1
- package/lib/coordinates-label.js +0 -77
- package/lib/coordinates-label.js.map +0 -1
- package/lib/graph-with-controls.js +0 -297
- package/lib/graph-with-controls.js.map +0 -1
- package/lib/graph.js +0 -353
- package/lib/graph.js.map +0 -1
- package/lib/grid-setup.js +0 -414
- package/lib/grid-setup.js.map +0 -1
- package/lib/grid.js +0 -131
- package/lib/grid.js.map +0 -1
- package/lib/index.js +0 -40
- package/lib/index.js.map +0 -1
- package/lib/labels.js +0 -199
- package/lib/labels.js.map +0 -1
- package/lib/mark-label.js +0 -159
- package/lib/mark-label.js.map +0 -1
- package/lib/toggle-bar.js +0 -248
- package/lib/toggle-bar.js.map +0 -1
- package/lib/tool-menu.js +0 -218
- package/lib/tool-menu.js.map +0 -1
- package/lib/tools/index.js +0 -24
- package/lib/tools/index.js.map +0 -1
- package/lib/tools/line/component.js +0 -92
- package/lib/tools/line/component.js.map +0 -1
- package/lib/tools/line/index.js +0 -11
- package/lib/tools/line/index.js.map +0 -1
- package/lib/tools/polygon/component.js +0 -358
- package/lib/tools/polygon/component.js.map +0 -1
- package/lib/tools/polygon/index.js +0 -89
- package/lib/tools/polygon/index.js.map +0 -1
- package/lib/tools/polygon/line.js +0 -114
- package/lib/tools/polygon/line.js.map +0 -1
- package/lib/tools/polygon/polygon.js +0 -128
- package/lib/tools/polygon/polygon.js.map +0 -1
- package/lib/tools/shared/arrow-head.js +0 -62
- package/lib/tools/shared/arrow-head.js.map +0 -1
- package/lib/tools/shared/line/index.js +0 -539
- package/lib/tools/shared/line/index.js.map +0 -1
- package/lib/tools/shared/line/line-path.js +0 -121
- package/lib/tools/shared/line/line-path.js.map +0 -1
- package/lib/tools/shared/line/with-root-edge.js +0 -121
- package/lib/tools/shared/line/with-root-edge.js.map +0 -1
- package/lib/tools/shared/point/arrow-point.js +0 -86
- package/lib/tools/shared/point/arrow-point.js.map +0 -1
- package/lib/tools/shared/point/arrow.js +0 -70
- package/lib/tools/shared/point/arrow.js.map +0 -1
- package/lib/tools/shared/point/base-point.js +0 -137
- package/lib/tools/shared/point/base-point.js.map +0 -1
- package/lib/tools/shared/point/index.js +0 -80
- package/lib/tools/shared/point/index.js.map +0 -1
- package/lib/tools/shared/styles.js +0 -26
- package/lib/tools/shared/styles.js.map +0 -1
- package/lib/tools/shared/types.js +0 -15
- package/lib/tools/shared/types.js.map +0 -1
- package/lib/undo-redo.js +0 -67
- package/lib/undo-redo.js.map +0 -1
- package/lib/use-debounce.js +0 -25
- package/lib/use-debounce.js.map +0 -1
- package/lib/utils.js +0 -235
- package/lib/utils.js.map +0 -1
- package/src/__tests__/bg.test.jsx +0 -250
- package/src/__tests__/coordinates-label.test.jsx +0 -243
- package/src/__tests__/graph-with-controls.test.jsx +0 -184
- package/src/__tests__/graph.test.jsx +0 -93
- package/src/__tests__/grid-setup.test.jsx +0 -645
- package/src/__tests__/grid.test.jsx +0 -23
- package/src/__tests__/labels.test.jsx +0 -41
- package/src/__tests__/mark-label.test.jsx +0 -66
- package/src/__tests__/toggle-bar.test.jsx +0 -106
- package/src/__tests__/tool-menu.test.jsx +0 -453
- package/src/__tests__/undo-redo.test.jsx +0 -26
- package/src/__tests__/use-debounce.test.js +0 -21
- package/src/__tests__/utils.js +0 -41
- package/src/__tests__/utils.test.js +0 -105
- package/src/axis/__tests__/arrow.test.jsx +0 -43
- package/src/axis/__tests__/axes.test.jsx +0 -182
- package/src/axis/arrow.jsx +0 -57
- package/src/axis/axes.jsx +0 -284
- package/src/axis/index.js +0 -3
- package/src/bg.jsx +0 -96
- package/src/container/__tests__/actions.test.js +0 -105
- package/src/container/__tests__/index.test.jsx +0 -227
- package/src/container/__tests__/marks.test.js +0 -172
- package/src/container/__tests__/middleware.test.js +0 -235
- package/src/container/__tests__/reducer.test.js +0 -324
- package/src/container/actions.js +0 -8
- package/src/container/index.jsx +0 -85
- package/src/container/marks.js +0 -14
- package/src/container/middleware.js +0 -7
- package/src/container/reducer.js +0 -5
- package/src/coordinates-label.jsx +0 -62
- package/src/graph-with-controls.jsx +0 -242
- package/src/graph.jsx +0 -333
- package/src/grid-setup.jsx +0 -432
- package/src/grid.jsx +0 -133
- package/src/index.js +0 -7
- package/src/labels.jsx +0 -173
- package/src/mark-label.jsx +0 -125
- package/src/toggle-bar.jsx +0 -221
- package/src/tool-menu.jsx +0 -235
- package/src/tools/index.js +0 -8
- package/src/tools/line/__tests__/component.test.jsx +0 -37
- package/src/tools/line/component.jsx +0 -77
- package/src/tools/line/index.js +0 -4
- package/src/tools/polygon/__tests__/component.test.jsx +0 -487
- package/src/tools/polygon/__tests__/index.test.js +0 -65
- package/src/tools/polygon/__tests__/line.test.jsx +0 -23
- package/src/tools/polygon/__tests__/polygon.test.jsx +0 -44
- package/src/tools/polygon/component.jsx +0 -324
- package/src/tools/polygon/index.js +0 -52
- package/src/tools/polygon/line.jsx +0 -80
- package/src/tools/polygon/polygon.jsx +0 -93
- package/src/tools/shared/__tests__/arrow-head.test.jsx +0 -33
- package/src/tools/shared/arrow-head.jsx +0 -46
- package/src/tools/shared/line/__tests__/index.test.jsx +0 -553
- package/src/tools/shared/line/__tests__/line-path.test.jsx +0 -56
- package/src/tools/shared/line/__tests__/with-root-edge.test.jsx +0 -488
- package/src/tools/shared/line/index.jsx +0 -471
- package/src/tools/shared/line/line-path.jsx +0 -85
- package/src/tools/shared/line/with-root-edge.jsx +0 -97
- package/src/tools/shared/point/__tests__/arrow-point.test.jsx +0 -91
- package/src/tools/shared/point/__tests__/arrow.test.jsx +0 -469
- package/src/tools/shared/point/__tests__/base-point.test.jsx +0 -87
- package/src/tools/shared/point/arrow-point.jsx +0 -60
- package/src/tools/shared/point/arrow.jsx +0 -40
- package/src/tools/shared/point/base-point.jsx +0 -113
- package/src/tools/shared/point/index.jsx +0 -58
- package/src/tools/shared/styles.js +0 -20
- package/src/tools/shared/types.js +0 -8
- package/src/undo-redo.jsx +0 -37
- package/src/use-debounce.js +0 -13
- package/src/utils.js +0 -230
package/dist/node_modules/.bun/reduce-function-call@1.0.3/node_modules/reduce-function-call/index.js
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { __commonJSMin as e } from "../../../../../_virtual/_rolldown/runtime.js";
|
|
2
|
+
import { require_balanced_match as t } from "../../../balanced-match@1.0.2/node_modules/balanced-match/index.js";
|
|
3
|
+
//#region ../../../node_modules/.bun/reduce-function-call@1.0.3/node_modules/reduce-function-call/index.js
|
|
4
|
+
var n = /* @__PURE__ */ e(((e, n) => {
|
|
5
|
+
var r = t();
|
|
6
|
+
n.exports = i;
|
|
7
|
+
function i(e, t, n) {
|
|
8
|
+
var r = e;
|
|
9
|
+
return a(e, t).reduce(function(e, i) {
|
|
10
|
+
return e.replace(i.functionIdentifier + "(" + i.matches.body + ")", o(i.matches.body, i.functionIdentifier, n, r, t));
|
|
11
|
+
}, e);
|
|
12
|
+
}
|
|
13
|
+
function a(e, t) {
|
|
14
|
+
var n = [], i = typeof t == "string" ? RegExp("\\b(" + t + ")\\(") : t;
|
|
15
|
+
do {
|
|
16
|
+
var a = i.exec(e);
|
|
17
|
+
if (!a) return n;
|
|
18
|
+
if (a[1] === void 0) throw Error("Missing the first couple of parenthesis to get the function identifier in " + t);
|
|
19
|
+
var o = a[1], s = a.index, c = r("(", ")", e.substring(s));
|
|
20
|
+
if (!c || c.start !== a[0].length - 1) throw SyntaxError(o + "(): missing closing ')' in the value '" + e + "'");
|
|
21
|
+
n.push({
|
|
22
|
+
matches: c,
|
|
23
|
+
functionIdentifier: o
|
|
24
|
+
}), e = c.post;
|
|
25
|
+
} while (i.test(e));
|
|
26
|
+
return n;
|
|
27
|
+
}
|
|
28
|
+
function o(e, t, n, r, a) {
|
|
29
|
+
return n(i(e, a, n), t, r);
|
|
30
|
+
}
|
|
31
|
+
}));
|
|
32
|
+
//#endregion
|
|
33
|
+
export default n();
|
|
34
|
+
export { n as require_reduce_function_call };
|
|
@@ -0,0 +1,185 @@
|
|
|
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 };
|
|
@@ -0,0 +1,198 @@
|
|
|
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 };
|
|
@@ -0,0 +1,53 @@
|
|
|
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 };
|
|
@@ -0,0 +1,51 @@
|
|
|
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 };
|
|
@@ -0,0 +1,10 @@
|
|
|
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 };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @synced-from pie-lib/packages/graphing-solution-set/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;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @synced-from pie-lib/packages/graphing-solution-set/src/tool-menu.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 ToolMenu extends React.Component {
|
|
12
|
+
static propTypes: {
|
|
13
|
+
gssLineData: PropTypes.Requireable<object>;
|
|
14
|
+
disabled: PropTypes.Requireable<boolean>;
|
|
15
|
+
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
16
|
+
};
|
|
17
|
+
onChangeRadioValue: any;
|
|
18
|
+
lineTypeChange: any;
|
|
19
|
+
render(): React.JSX.Element;
|
|
20
|
+
}
|
|
21
|
+
export default ToolMenu;
|