@pie-lib/charting 7.0.4-next.3 → 7.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/actions-button.d.ts +26 -0
- package/dist/actions-button.js +84 -0
- package/dist/autosize-input.d.ts +10 -0
- package/dist/autosize-input.js +66 -0
- package/dist/axes.d.ts +84 -0
- package/dist/axes.js +376 -0
- package/dist/bars/bar.d.ts +47 -0
- package/dist/bars/bar.js +27 -0
- package/dist/bars/common/bars.d.ts +98 -0
- package/dist/bars/common/bars.js +174 -0
- package/dist/bars/common/correct-check-icon.d.ts +18 -0
- package/dist/bars/common/correct-check-icon.js +50 -0
- package/dist/bars/histogram.d.ts +47 -0
- package/dist/bars/histogram.js +28 -0
- package/dist/chart-setup.d.ts +29 -0
- package/dist/chart-setup.js +231 -0
- package/dist/chart-type.d.ts +32 -0
- package/dist/chart-type.js +68 -0
- package/dist/chart-types.d.ts +41 -0
- package/dist/chart-types.js +17 -0
- package/dist/chart.d.ts +88 -0
- package/dist/chart.js +250 -0
- package/dist/common/correctness-indicators.d.ts +70 -0
- package/dist/common/correctness-indicators.js +106 -0
- package/dist/common/drag-handle.d.ts +129 -0
- package/dist/common/drag-handle.js +120 -0
- package/dist/common/drag-icon.d.ts +23 -0
- package/dist/common/drag-icon.js +45 -0
- package/dist/common/styles.d.ts +23 -0
- package/dist/common/styles.js +17 -0
- package/dist/grid.d.ts +45 -0
- package/dist/grid.js +56 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +6 -0
- package/dist/key-legend.d.ts +19 -0
- package/dist/key-legend.js +46 -0
- package/dist/line/common/drag-handle.d.ts +120 -0
- package/dist/line/common/drag-handle.js +92 -0
- package/dist/line/common/line.d.ts +96 -0
- package/dist/line/common/line.js +114 -0
- package/dist/line/line-cross.d.ts +47 -0
- package/dist/line/line-cross.js +133 -0
- package/dist/line/line-dot.d.ts +47 -0
- package/dist/line/line-dot.js +101 -0
- package/dist/mark-label.d.ts +55 -0
- package/dist/mark-label.js +138 -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/AxisBottom.js +46 -0
- package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/AxisLeft.js +47 -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/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/operators/align.js +6 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/base.js +6 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/clamp.js +6 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/constant.js +6 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/domain.js +6 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/exponent.js +6 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/interpolate.js +10 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/nice.js +37 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/padding.js +6 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/range.js +6 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/reverse.js +9 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/round.js +7 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/scaleOperator.js +58 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/unknown.js +6 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/zero.js +9 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/scales/band.js +9 -0
- package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/scales/point.js +9 -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/createColorInterpolator.js +29 -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/isUtcScale.js +7 -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/Bar.js +29 -0
- package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/shapes/Circle.js +29 -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/esm/shapes/LinePath.js +50 -0
- package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/util/D3ShapeFactories.js +9 -0
- package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/util/setNumberOrNumberAccessor.js +6 -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/@visx_vendor@3.12.0/node_modules/@visx/vendor/esm/d3-interpolate.js +8 -0
- package/dist/node_modules/.bun/@visx_vendor@3.12.0/node_modules/@visx/vendor/esm/d3-scale.js +8 -0
- package/dist/node_modules/.bun/@visx_vendor@3.12.0/node_modules/@visx/vendor/esm/d3-time.js +8 -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/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/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/plot/common/plot.d.ts +103 -0
- package/dist/plot/common/plot.js +227 -0
- package/dist/plot/dot.d.ts +47 -0
- package/dist/plot/dot.js +62 -0
- package/dist/plot/line.d.ts +47 -0
- package/dist/plot/line.js +84 -0
- package/dist/tool-menu.d.ts +31 -0
- package/dist/utils.d.ts +39 -0
- package/dist/utils.js +101 -0
- package/package.json +39 -28
- package/CHANGELOG.json +0 -17
- package/CHANGELOG.md +0 -1116
- package/LICENSE.md +0 -5
- package/lib/actions-button.js +0 -145
- package/lib/actions-button.js.map +0 -1
- package/lib/axes.js +0 -643
- package/lib/axes.js.map +0 -1
- package/lib/bars/bar.js +0 -58
- package/lib/bars/bar.js.map +0 -1
- package/lib/bars/common/bars.js +0 -277
- package/lib/bars/common/bars.js.map +0 -1
- package/lib/bars/common/correct-check-icon.js +0 -54
- package/lib/bars/common/correct-check-icon.js.map +0 -1
- package/lib/bars/histogram.js +0 -59
- package/lib/bars/histogram.js.map +0 -1
- package/lib/chart-setup.js +0 -382
- package/lib/chart-setup.js.map +0 -1
- package/lib/chart-type.js +0 -80
- package/lib/chart-type.js.map +0 -1
- package/lib/chart-types.js +0 -22
- package/lib/chart-types.js.map +0 -1
- package/lib/chart.js +0 -384
- package/lib/chart.js.map +0 -1
- package/lib/common/correctness-indicators.js +0 -156
- package/lib/common/correctness-indicators.js.map +0 -1
- package/lib/common/drag-handle.js +0 -160
- package/lib/common/drag-handle.js.map +0 -1
- package/lib/common/drag-icon.js +0 -52
- package/lib/common/drag-icon.js.map +0 -1
- package/lib/common/styles.js +0 -22
- package/lib/common/styles.js.map +0 -1
- package/lib/grid.js +0 -112
- package/lib/grid.js.map +0 -1
- package/lib/index.js +0 -42
- package/lib/index.js.map +0 -1
- package/lib/key-legend.js +0 -87
- package/lib/key-legend.js.map +0 -1
- package/lib/line/common/drag-handle.js +0 -146
- package/lib/line/common/drag-handle.js.map +0 -1
- package/lib/line/common/line.js +0 -214
- package/lib/line/common/line.js.map +0 -1
- package/lib/line/line-cross.js +0 -214
- package/lib/line/line-cross.js.map +0 -1
- package/lib/line/line-dot.js +0 -158
- package/lib/line/line-dot.js.map +0 -1
- package/lib/mark-label.js +0 -237
- package/lib/mark-label.js.map +0 -1
- package/lib/plot/common/plot.js +0 -349
- package/lib/plot/common/plot.js.map +0 -1
- package/lib/plot/dot.js +0 -110
- package/lib/plot/dot.js.map +0 -1
- package/lib/plot/line.js +0 -140
- package/lib/plot/line.js.map +0 -1
- package/lib/tool-menu.js +0 -106
- package/lib/tool-menu.js.map +0 -1
- package/lib/utils.js +0 -189
- package/lib/utils.js.map +0 -1
- package/src/__tests__/actions-button.test.jsx +0 -280
- package/src/__tests__/axes.test.jsx +0 -667
- package/src/__tests__/chart-setup.test.jsx +0 -532
- package/src/__tests__/chart-type.test.jsx +0 -23
- package/src/__tests__/chart.test.jsx +0 -86
- package/src/__tests__/grid.test.jsx +0 -37
- package/src/__tests__/key-legend.test.jsx +0 -223
- package/src/__tests__/mark-label.test.jsx +0 -33
- package/src/__tests__/tool-menu.test.jsx +0 -522
- package/src/__tests__/utils.js +0 -36
- package/src/__tests__/utils.test.js +0 -100
- package/src/actions-button.jsx +0 -115
- package/src/axes.jsx +0 -594
- package/src/bars/__tests__/bar.test.jsx +0 -45
- package/src/bars/__tests__/histogram.test.jsx +0 -45
- package/src/bars/__tests__/utils.js +0 -30
- package/src/bars/bar.js +0 -28
- package/src/bars/common/__tests__/bars.test.jsx +0 -68
- package/src/bars/common/__tests__/utils.js +0 -30
- package/src/bars/common/bars.jsx +0 -249
- package/src/bars/common/correct-check-icon.jsx +0 -25
- package/src/bars/histogram.js +0 -28
- package/src/chart-setup.jsx +0 -356
- package/src/chart-type.js +0 -59
- package/src/chart-types.js +0 -8
- package/src/chart.jsx +0 -357
- package/src/common/__tests__/correctness-indicators.test.jsx +0 -720
- package/src/common/__tests__/drag-handle.test.jsx +0 -58
- package/src/common/__tests__/utils.js +0 -30
- package/src/common/correctness-indicators.jsx +0 -128
- package/src/common/drag-handle.jsx +0 -125
- package/src/common/drag-icon.jsx +0 -36
- package/src/common/styles.js +0 -19
- package/src/grid.jsx +0 -80
- package/src/index.js +0 -7
- package/src/key-legend.jsx +0 -77
- package/src/line/__tests__/line-cross.test.jsx +0 -463
- package/src/line/__tests__/line-dot.test.jsx +0 -41
- package/src/line/__tests__/utils.js +0 -36
- package/src/line/common/__tests__/drag-handle.test.jsx +0 -62
- package/src/line/common/__tests__/line.test.jsx +0 -79
- package/src/line/common/__tests__/utils.js +0 -30
- package/src/line/common/drag-handle.jsx +0 -114
- package/src/line/common/line.jsx +0 -171
- package/src/line/line-cross.js +0 -144
- package/src/line/line-dot.js +0 -111
- package/src/mark-label.jsx +0 -238
- package/src/plot/__tests__/dot.test.jsx +0 -344
- package/src/plot/__tests__/line.test.jsx +0 -375
- package/src/plot/__tests__/utils.js +0 -30
- package/src/plot/common/__tests__/plot.test.jsx +0 -69
- package/src/plot/common/__tests__/utils.js +0 -30
- package/src/plot/common/plot.jsx +0 -358
- package/src/plot/dot.js +0 -74
- package/src/plot/line.js +0 -98
- package/src/tool-menu.jsx +0 -85
- package/src/utils.js +0 -201
package/dist/plot/dot.js
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import e from "../node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/shapes/Circle.js";
|
|
2
|
+
import { dataToXBand as t } from "../utils.js";
|
|
3
|
+
import { correct as n, incorrect as r } from "../common/styles.js";
|
|
4
|
+
import i from "./common/plot.js";
|
|
5
|
+
import a from "react";
|
|
6
|
+
import o from "prop-types";
|
|
7
|
+
import { styled as s } from "@mui/material/styles";
|
|
8
|
+
import { types as c } from "@pie-lib/plot";
|
|
9
|
+
import { color as l } from "@pie-lib/render-ui";
|
|
10
|
+
import { jsx as u } from "react/jsx-runtime";
|
|
11
|
+
//#region src/plot/dot.tsx
|
|
12
|
+
var d = s(e)(() => ({
|
|
13
|
+
fill: l.visualElementsColors.PLOT_FILL_COLOR,
|
|
14
|
+
"&.correct": n("stroke"),
|
|
15
|
+
"&.incorrect": r("stroke")
|
|
16
|
+
})), f = (t) => {
|
|
17
|
+
let { index: n, pointDiameter: r, barX: i, barWidth: a, pointHeight: o, label: s, value: c, scale: f, dottedOverline: p } = t, m = r / 2, h = i + (a - r) / 2 + m, g = f.y(n) - (o - r) / 2 - m;
|
|
18
|
+
return p ? /* @__PURE__ */ u(e, {
|
|
19
|
+
cx: h,
|
|
20
|
+
cy: g,
|
|
21
|
+
r: m + 2,
|
|
22
|
+
strokeDasharray: "4,4",
|
|
23
|
+
stroke: l.defaults.BORDER_GRAY,
|
|
24
|
+
fill: "none"
|
|
25
|
+
}, `point-${s}-${c}-${n}`) : /* @__PURE__ */ u(d, {
|
|
26
|
+
cx: h,
|
|
27
|
+
cy: g,
|
|
28
|
+
r: m
|
|
29
|
+
}, `point-${s}-${c}-${n}`);
|
|
30
|
+
};
|
|
31
|
+
f.propTypes = {
|
|
32
|
+
index: o.number,
|
|
33
|
+
pointDiameter: o.number,
|
|
34
|
+
barX: o.number,
|
|
35
|
+
barWidth: o.number,
|
|
36
|
+
pointHeight: o.number,
|
|
37
|
+
value: o.number,
|
|
38
|
+
label: o.string,
|
|
39
|
+
scale: o.object,
|
|
40
|
+
dottedOverline: o.bool
|
|
41
|
+
};
|
|
42
|
+
var p = class extends a.Component {
|
|
43
|
+
static propTypes = {
|
|
44
|
+
data: o.array,
|
|
45
|
+
onChange: o.func,
|
|
46
|
+
graphProps: c.GraphPropsType.isRequired
|
|
47
|
+
};
|
|
48
|
+
render() {
|
|
49
|
+
let e = this.props, { data: n, graphProps: r } = e, { scale: a = {}, size: o = {} } = r || {}, s = t(a.x, n, o.width, "dotPlot");
|
|
50
|
+
return /* @__PURE__ */ u(i, {
|
|
51
|
+
...e,
|
|
52
|
+
xBand: s,
|
|
53
|
+
CustomBarElement: f
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
}, m = () => ({
|
|
57
|
+
type: "dotPlot",
|
|
58
|
+
Component: p,
|
|
59
|
+
name: "Dot Plot"
|
|
60
|
+
});
|
|
61
|
+
//#endregion
|
|
62
|
+
export { m as default };
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @synced-from pie-lib/packages/charting/src/plot/line.js
|
|
3
|
+
* @auto-generated
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically synced from pie-elements and converted to TypeScript.
|
|
6
|
+
* Manual edits will be overwritten on next sync.
|
|
7
|
+
* To make changes, edit the upstream JavaScript file and run sync again.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
import PropTypes from 'prop-types';
|
|
11
|
+
export declare class LinePlot extends React.Component {
|
|
12
|
+
static propTypes: {
|
|
13
|
+
data: PropTypes.Requireable<any[]>;
|
|
14
|
+
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
15
|
+
graphProps: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
16
|
+
scale: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
17
|
+
x: PropTypes.Validator<(...args: any[]) => any>;
|
|
18
|
+
y: PropTypes.Validator<(...args: any[]) => any>;
|
|
19
|
+
}>>>;
|
|
20
|
+
snap: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
21
|
+
x: PropTypes.Validator<(...args: any[]) => any>;
|
|
22
|
+
y: PropTypes.Validator<(...args: any[]) => any>;
|
|
23
|
+
}>>>;
|
|
24
|
+
domain: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
25
|
+
min: PropTypes.Validator<number>;
|
|
26
|
+
max: PropTypes.Validator<number>;
|
|
27
|
+
step: PropTypes.Requireable<number>;
|
|
28
|
+
}>>>;
|
|
29
|
+
range: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
30
|
+
min: PropTypes.Validator<number>;
|
|
31
|
+
max: PropTypes.Validator<number>;
|
|
32
|
+
step: PropTypes.Requireable<number>;
|
|
33
|
+
}>>>;
|
|
34
|
+
size: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
35
|
+
width: PropTypes.Validator<number>;
|
|
36
|
+
height: PropTypes.Validator<number>;
|
|
37
|
+
}>>>;
|
|
38
|
+
}>>>;
|
|
39
|
+
};
|
|
40
|
+
render(): React.JSX.Element;
|
|
41
|
+
}
|
|
42
|
+
declare const _default: () => {
|
|
43
|
+
type: string;
|
|
44
|
+
Component: typeof LinePlot;
|
|
45
|
+
name: string;
|
|
46
|
+
};
|
|
47
|
+
export default _default;
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import e from "../node_modules/.bun/@visx_group@3.12.0_f4eacebf2041cd4f/node_modules/@visx/group/esm/Group.js";
|
|
2
|
+
import t from "../node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/shapes/LinePath.js";
|
|
3
|
+
import { dataToXBand as n } from "../utils.js";
|
|
4
|
+
import { correct as r, incorrect as i } from "../common/styles.js";
|
|
5
|
+
import a from "./common/plot.js";
|
|
6
|
+
import o from "react";
|
|
7
|
+
import s from "prop-types";
|
|
8
|
+
import { styled as c } from "@mui/material/styles";
|
|
9
|
+
import { types as l } from "@pie-lib/plot";
|
|
10
|
+
import { color as u } from "@pie-lib/render-ui";
|
|
11
|
+
import { jsx as d, jsxs as f } from "react/jsx-runtime";
|
|
12
|
+
//#region src/plot/line.tsx
|
|
13
|
+
var p = c(t)(() => ({
|
|
14
|
+
stroke: u.visualElementsColors.PLOT_FILL_COLOR,
|
|
15
|
+
"&.correct": r("stroke"),
|
|
16
|
+
"&.incorrect": i("stroke")
|
|
17
|
+
})), m = (t) => {
|
|
18
|
+
let { index: n, pointDiameter: r, barX: i, barWidth: a, pointHeight: o, label: s, value: c, scale: l, dottedOverline: m } = t, h = i + (a - r) / 2, g = l.y(n) - (o - r) / 2;
|
|
19
|
+
return m ? /* @__PURE__ */ d("rect", {
|
|
20
|
+
x: h - 2,
|
|
21
|
+
y: g - r - 2,
|
|
22
|
+
width: r + 4,
|
|
23
|
+
height: r + 4,
|
|
24
|
+
strokeDasharray: "4,4",
|
|
25
|
+
stroke: u.defaults.BORDER_GRAY,
|
|
26
|
+
fill: "none"
|
|
27
|
+
}, `point-${s}-${c}-${n}`) : /* @__PURE__ */ f(e, { children: [/* @__PURE__ */ d(p, {
|
|
28
|
+
data: [{
|
|
29
|
+
x: h,
|
|
30
|
+
y: g
|
|
31
|
+
}, {
|
|
32
|
+
x: h + r,
|
|
33
|
+
y: g - r
|
|
34
|
+
}],
|
|
35
|
+
className: "line",
|
|
36
|
+
x: (e) => e.x,
|
|
37
|
+
y: (e) => e.y,
|
|
38
|
+
strokeWidth: r / 5
|
|
39
|
+
}, `point-${s}-${c}-${n}-1`), /* @__PURE__ */ d(p, {
|
|
40
|
+
data: [{
|
|
41
|
+
x: h,
|
|
42
|
+
y: g - r
|
|
43
|
+
}, {
|
|
44
|
+
x: h + r,
|
|
45
|
+
y: g
|
|
46
|
+
}],
|
|
47
|
+
x: (e) => e.x,
|
|
48
|
+
y: (e) => e.y,
|
|
49
|
+
strokeWidth: r / 5,
|
|
50
|
+
className: "line"
|
|
51
|
+
}, `point-${s}-${c}-${n}-2`)] });
|
|
52
|
+
};
|
|
53
|
+
m.propTypes = {
|
|
54
|
+
index: s.number,
|
|
55
|
+
pointDiameter: s.number,
|
|
56
|
+
barX: s.number,
|
|
57
|
+
barWidth: s.number,
|
|
58
|
+
pointHeight: s.number,
|
|
59
|
+
value: s.number,
|
|
60
|
+
label: s.string,
|
|
61
|
+
scale: s.object,
|
|
62
|
+
dottedOverline: s.bool
|
|
63
|
+
};
|
|
64
|
+
var h = class extends o.Component {
|
|
65
|
+
static propTypes = {
|
|
66
|
+
data: s.array,
|
|
67
|
+
onChange: s.func,
|
|
68
|
+
graphProps: l.GraphPropsType.isRequired
|
|
69
|
+
};
|
|
70
|
+
render() {
|
|
71
|
+
let e = this.props, { data: t, graphProps: r } = e, { scale: i = {}, size: o = {} } = r || {}, s = n(i.x, t, o.width, "linePlot");
|
|
72
|
+
return /* @__PURE__ */ d(a, {
|
|
73
|
+
...e,
|
|
74
|
+
xBand: s,
|
|
75
|
+
CustomBarElement: m
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
}, g = () => ({
|
|
79
|
+
type: "linePlot",
|
|
80
|
+
Component: h,
|
|
81
|
+
name: "Line Plot"
|
|
82
|
+
});
|
|
83
|
+
//#endregion
|
|
84
|
+
export { g as default };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @synced-from pie-lib/packages/charting/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 const MiniButton: {
|
|
12
|
+
(props: any): React.JSX.Element;
|
|
13
|
+
propTypes: {
|
|
14
|
+
disabled: PropTypes.Requireable<boolean>;
|
|
15
|
+
className: PropTypes.Requireable<string>;
|
|
16
|
+
selected: PropTypes.Requireable<boolean>;
|
|
17
|
+
value: PropTypes.Requireable<string>;
|
|
18
|
+
onClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
export declare class ToolMenu extends React.Component {
|
|
22
|
+
static propTypes: {
|
|
23
|
+
className: PropTypes.Requireable<string>;
|
|
24
|
+
addCategory: PropTypes.Requireable<(...args: any[]) => any>;
|
|
25
|
+
disabled: PropTypes.Requireable<boolean>;
|
|
26
|
+
language: PropTypes.Requireable<string>;
|
|
27
|
+
};
|
|
28
|
+
static defaultProps: {};
|
|
29
|
+
render(): React.JSX.Element;
|
|
30
|
+
}
|
|
31
|
+
export default ToolMenu;
|
package/dist/utils.d.ts
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @synced-from pie-lib/packages/charting/src/utils.js
|
|
3
|
+
* @auto-generated
|
|
4
|
+
*
|
|
5
|
+
* This file is automatically synced from pie-elements and converted to TypeScript.
|
|
6
|
+
* Manual edits will be overwritten on next sync.
|
|
7
|
+
* To make changes, edit the upstream JavaScript file and run sync again.
|
|
8
|
+
*/
|
|
9
|
+
export declare const tickCount: (min: any, max: any, step: any) => number;
|
|
10
|
+
export declare const bounds: (area: any, domain: any, range: any) => {
|
|
11
|
+
left: number;
|
|
12
|
+
right: number;
|
|
13
|
+
top: number;
|
|
14
|
+
bottom: number;
|
|
15
|
+
};
|
|
16
|
+
export declare const point: (o: any) => import("@mapbox/point-geometry").default;
|
|
17
|
+
export declare const bandKey: (d: any, index: any) => string;
|
|
18
|
+
export declare const dataToXBand: any;
|
|
19
|
+
export declare const getTickValues: (prop?: {}) => any[];
|
|
20
|
+
export declare const getDomainAndRangeByChartType: (domain: any, range: any, chartType: any) => {
|
|
21
|
+
domain: any;
|
|
22
|
+
range: any;
|
|
23
|
+
};
|
|
24
|
+
export declare const getGridLinesAndAxisByChartType: (range: any, chartType: any) => {
|
|
25
|
+
verticalLines: undefined;
|
|
26
|
+
horizontalLines: any[];
|
|
27
|
+
leftAxis: boolean;
|
|
28
|
+
} | {
|
|
29
|
+
verticalLines: never[];
|
|
30
|
+
horizontalLines: any[];
|
|
31
|
+
leftAxis: boolean;
|
|
32
|
+
};
|
|
33
|
+
export declare const getRotateAngle: (fontSize: any, height: any) => 0 | 25;
|
|
34
|
+
export declare const getTopPadding: (barWidth: any) => 0 | 50 | 30 | 15;
|
|
35
|
+
export declare const getScale: (width: any) => {
|
|
36
|
+
scale: number;
|
|
37
|
+
deltay: number;
|
|
38
|
+
};
|
|
39
|
+
export declare const getAdjustedX: (width: any, scaleValue: any) => number;
|
package/dist/utils.js
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import e from "./node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/scales/band.js";
|
|
2
|
+
import t from "./node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/scales/point.js";
|
|
3
|
+
import { utils as n } from "@pie-lib/plot";
|
|
4
|
+
n.tickCount, n.bounds, n.point;
|
|
5
|
+
var r = (e, t) => `${t}-${e.label || "-"}`, i = (n, i, a, o) => {
|
|
6
|
+
let s = a || 400, c = i && i.length ? i.map(r) : ["default"];
|
|
7
|
+
switch (o) {
|
|
8
|
+
case "bar":
|
|
9
|
+
case "dotPlot":
|
|
10
|
+
case "linePlot": return e({
|
|
11
|
+
range: [0, s],
|
|
12
|
+
domain: c,
|
|
13
|
+
padding: .2
|
|
14
|
+
});
|
|
15
|
+
case "histogram": return e({
|
|
16
|
+
range: [0, s],
|
|
17
|
+
domain: c,
|
|
18
|
+
padding: 0
|
|
19
|
+
});
|
|
20
|
+
case "lineCross":
|
|
21
|
+
case "lineDot": return t({
|
|
22
|
+
domain: c,
|
|
23
|
+
range: [0, s]
|
|
24
|
+
});
|
|
25
|
+
default: return e({
|
|
26
|
+
range: [0, s],
|
|
27
|
+
domain: c,
|
|
28
|
+
padding: 0
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
}, a = (e = {}) => {
|
|
32
|
+
let t = [], n = e.min;
|
|
33
|
+
for (; n <= e.max;) t.push(n), n = Math.round((n + e.step) * 1e4) / 1e4;
|
|
34
|
+
return t;
|
|
35
|
+
}, o = (e, t, n) => {
|
|
36
|
+
let { step: r, labelStep: i, min: a, max: o } = t || {};
|
|
37
|
+
switch (a ||= 0, (!o || o < 0) && (o = t.min + 1), r ||= i || 1, (!i || isNaN(i) && r) && (i = r || 1), t.max = o, n) {
|
|
38
|
+
case "dotPlot":
|
|
39
|
+
case "linePlot": {
|
|
40
|
+
let n = Math.round(a), r = Math.round(o);
|
|
41
|
+
return {
|
|
42
|
+
domain: {
|
|
43
|
+
...e,
|
|
44
|
+
step: 1,
|
|
45
|
+
labelStep: 1,
|
|
46
|
+
min: 0,
|
|
47
|
+
max: 1
|
|
48
|
+
},
|
|
49
|
+
range: {
|
|
50
|
+
...t,
|
|
51
|
+
min: n,
|
|
52
|
+
max: n === r ? n + 1 : r,
|
|
53
|
+
labelStep: i,
|
|
54
|
+
step: 1
|
|
55
|
+
}
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
default: return {
|
|
59
|
+
domain: {
|
|
60
|
+
...e,
|
|
61
|
+
step: 1,
|
|
62
|
+
labelStep: 1,
|
|
63
|
+
min: 0,
|
|
64
|
+
max: 1
|
|
65
|
+
},
|
|
66
|
+
range: {
|
|
67
|
+
...t,
|
|
68
|
+
labelStep: i,
|
|
69
|
+
step: r
|
|
70
|
+
}
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
}, s = (e, t) => {
|
|
74
|
+
switch (t) {
|
|
75
|
+
case "lineDot":
|
|
76
|
+
case "lineCross": return {
|
|
77
|
+
verticalLines: void 0,
|
|
78
|
+
horizontalLines: a(e),
|
|
79
|
+
leftAxis: !0
|
|
80
|
+
};
|
|
81
|
+
case "dotPlot":
|
|
82
|
+
case "linePlot": return {
|
|
83
|
+
verticalLines: [],
|
|
84
|
+
horizontalLines: [],
|
|
85
|
+
leftAxis: !1
|
|
86
|
+
};
|
|
87
|
+
default: return {
|
|
88
|
+
verticalLines: [],
|
|
89
|
+
horizontalLines: a(e),
|
|
90
|
+
leftAxis: !0
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
}, c = (e, t) => t >= e * 2 ? 25 : 0, l = (e) => e < 30 ? 50 : e < 40 ? 30 : e < 60 ? 15 : 0, u = (e) => {
|
|
94
|
+
let t, n;
|
|
95
|
+
return e > 91 ? (t = 1.3, n = -55) : e > 45 ? (t = 1.1, n = -45) : e > 40 ? (t = .5 + (e - 34) * .02, n = -25) : e > 30 ? (t = .5 + (e - 34) * .02, n = -20) : (t = .5 * .98 ** (34 - e), n = -15), {
|
|
96
|
+
scale: t,
|
|
97
|
+
deltay: n
|
|
98
|
+
};
|
|
99
|
+
}, d = (e, t) => (e - 57 * t) / 2;
|
|
100
|
+
//#endregion
|
|
101
|
+
export { r as bandKey, i as dataToXBand, d as getAdjustedX, o as getDomainAndRangeByChartType, s as getGridLinesAndAxisByChartType, c as getRotateAngle, u as getScale, a as getTickValues, l as getTopPadding };
|
package/package.json
CHANGED
|
@@ -1,31 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pie-lib/charting",
|
|
3
|
-
"
|
|
4
|
-
"access": "public"
|
|
5
|
-
},
|
|
6
|
-
"version": "7.0.4-next.3+0f77a8069",
|
|
3
|
+
"version": "7.0.4-next.31",
|
|
7
4
|
"description": "charting",
|
|
8
|
-
"keywords": [
|
|
9
|
-
"react",
|
|
10
|
-
"pie",
|
|
11
|
-
"charting"
|
|
12
|
-
],
|
|
13
|
-
"scripts": {},
|
|
14
|
-
"repository": "pie-framework/pie-lib",
|
|
15
|
-
"main": "lib/index.js",
|
|
16
|
-
"module": "src/index.js",
|
|
17
|
-
"author": "",
|
|
18
|
-
"license": "ISC",
|
|
19
5
|
"dependencies": {
|
|
20
6
|
"@emotion/react": "^11.14.0",
|
|
21
7
|
"@emotion/style": "^0.8.0",
|
|
22
8
|
"@mapbox/point-geometry": "^1.1.0",
|
|
23
9
|
"@mui/icons-material": "^7.3.4",
|
|
24
10
|
"@mui/material": "^7.3.4",
|
|
25
|
-
"@pie-lib/
|
|
26
|
-
"@pie-lib/
|
|
27
|
-
"@pie-lib/
|
|
28
|
-
"@pie-lib/translator": "^4.0.2",
|
|
11
|
+
"@pie-lib/plot": "4.0.4-next.31",
|
|
12
|
+
"@pie-lib/render-ui": "6.1.1-next.38",
|
|
13
|
+
"@pie-lib/translator": "4.0.3-next.1",
|
|
29
14
|
"@visx/axis": "^3.0.0",
|
|
30
15
|
"@visx/event": "^3.0.0",
|
|
31
16
|
"@visx/grid": "^3.0.0",
|
|
@@ -33,21 +18,47 @@
|
|
|
33
18
|
"@visx/point": "^3.0.0",
|
|
34
19
|
"@visx/scale": "^3.0.0",
|
|
35
20
|
"@visx/shape": "^3.0.0",
|
|
36
|
-
"classnames": "^2.2.6",
|
|
37
21
|
"d3-scale": "^4.0.2",
|
|
38
22
|
"d3-selection": "^3.0.0",
|
|
39
23
|
"debug": "^4.1.1",
|
|
40
24
|
"invariant": "^2.2.4",
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
25
|
+
"react-draggable": "^4.6.0",
|
|
26
|
+
"prop-types": "^15.8.1",
|
|
27
|
+
"@pie-lib/config-ui": "13.0.4-next.31",
|
|
28
|
+
"@pie-element/shared-math-rendering-mathjax": "0.1.1-next.0",
|
|
29
|
+
"@pie-element/shared-lodash": "0.1.1-next.1",
|
|
30
|
+
"clsx": "^2.1.1",
|
|
31
|
+
"d3-time": "^3.1.0",
|
|
32
|
+
"d3-interpolate": "^3.0.1",
|
|
33
|
+
"d3-shape": "^3.2.0"
|
|
45
34
|
},
|
|
46
|
-
"
|
|
47
|
-
|
|
35
|
+
"type": "module",
|
|
36
|
+
"main": "./dist/index.js",
|
|
37
|
+
"types": "./dist/index.d.ts",
|
|
38
|
+
"exports": {
|
|
39
|
+
".": {
|
|
40
|
+
"types": "./dist/index.d.ts",
|
|
41
|
+
"default": "./dist/index.js"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"files": [
|
|
45
|
+
"dist"
|
|
46
|
+
],
|
|
47
|
+
"sideEffects": false,
|
|
48
|
+
"scripts": {
|
|
49
|
+
"build": "bun x vite build && bun x tsc --emitDeclarationOnly",
|
|
50
|
+
"dev": "bun x vite",
|
|
51
|
+
"test": "bun x vitest run"
|
|
48
52
|
},
|
|
49
53
|
"devDependencies": {
|
|
50
|
-
"
|
|
54
|
+
"vite": "^8.0.1",
|
|
55
|
+
"typescript": "^5.9.3",
|
|
56
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
57
|
+
"@types/react": "^18.2.0",
|
|
58
|
+
"@types/react-dom": "^18.2.0"
|
|
51
59
|
},
|
|
52
|
-
"
|
|
60
|
+
"peerDependencies": {
|
|
61
|
+
"react": "^18.0.0",
|
|
62
|
+
"react-dom": "^18.0.0"
|
|
63
|
+
}
|
|
53
64
|
}
|
package/CHANGELOG.json
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"type": "fix",
|
|
4
|
-
"scope": "charting",
|
|
5
|
-
"subject": "fix conflicts",
|
|
6
|
-
"merge": null,
|
|
7
|
-
"header": "fix(charting): fix conflicts",
|
|
8
|
-
"body": null,
|
|
9
|
-
"footer": null,
|
|
10
|
-
"notes": [],
|
|
11
|
-
"hash": "2b3da1b4b87a518b5c18daf6f6c57db1ccc1c536",
|
|
12
|
-
"gitTags": "",
|
|
13
|
-
"committerDate": "2022-09-19 15:27:23 +0300",
|
|
14
|
-
"isTagged": true,
|
|
15
|
-
"tag": "@pie-lib/charting@5.10.0"
|
|
16
|
-
}
|
|
17
|
-
]
|