@dcg-overseas/number-line 0.1.25 → 0.1.27

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/index.cjs CHANGED
@@ -554,8 +554,11 @@ const ARC_COLORS = [
554
554
  "#16a34a"
555
555
  ];
556
556
  const ARC_RY_RATIO = 0.9;
557
- const ARC_ANIMATION_STAGGER_MS = 700;
558
- const ARC_ANIMATION_DRAW_MS = 800;
557
+ const ARC_LABEL_GAP = 6;
558
+ const ARC_LABEL_FONT_SIZE = 16;
559
+ const ARC_LABEL_SPACE = ARC_LABEL_GAP + ARC_LABEL_FONT_SIZE;
560
+ const ARC_ANIMATION_DRAW_MS = 1e3;
561
+ const ARC_ANIMATION_PAUSE_MS = 400;
559
562
  function gcd(a, b) {
560
563
  let x = Math.max(1, Math.abs(Math.round(a)));
561
564
  let y = Math.max(1, Math.abs(Math.round(b)));
@@ -578,7 +581,9 @@ const AxisLayer = React.memo(function AxisLayer2({
578
581
  showMajorTicks,
579
582
  showMinorTicks,
580
583
  showLabelStep,
581
- getShowLabelStep
584
+ getShowLabelStep,
585
+ arcColors = ARC_COLORS,
586
+ deletedArcIndices
582
587
  }) {
583
588
  const range = viewMax - viewMin;
584
589
  if (range <= 0) return null;
@@ -638,7 +643,9 @@ const AxisLayer = React.memo(function AxisLayer2({
638
643
  });
639
644
  const tickH = renderAsGroup ? 7 : renderAsMajor ? 10 : renderAsHalf ? 8 : 6;
640
645
  const strokeW = renderAsGroup ? 4 : renderAsMajor ? 2 : renderAsHalf ? 2 : 1;
641
- const color = renderAsGroup || renderAsMajor || renderAsHalf ? "#374151" : "#4b5563";
646
+ const arcIndex = renderAsGroup && offset > 0 ? offset / groupSize - 1 : -1;
647
+ const arcColored = arcIndex >= 0 && arcIndex < groupCount && !(deletedArcIndices == null ? void 0 : deletedArcIndices.has(arcIndex));
648
+ const color = arcColored ? arcColors[arcIndex % arcColors.length] : renderAsGroup || renderAsMajor || renderAsHalf ? "#374151" : "#4b5563";
642
649
  return /* @__PURE__ */ jsxRuntime.jsxs("g", { children: [
643
650
  /* @__PURE__ */ jsxRuntime.jsx(
644
651
  "line",
@@ -714,7 +721,7 @@ function AnimatedArc({
714
721
  setShowLabels(false);
715
722
  setShowHitArea(false);
716
723
  setIsDrawing(false);
717
- const delay = groupIndex * ARC_ANIMATION_STAGGER_MS;
724
+ const delay = groupIndex * (ARC_ANIMATION_DRAW_MS + ARC_ANIMATION_PAUSE_MS);
718
725
  let drawTimer = 0;
719
726
  let labelTimer = 0;
720
727
  let completeTimer = 0;
@@ -808,7 +815,7 @@ function AnimatedArc({
808
815
  x: x2,
809
816
  y: textY,
810
817
  textAnchor: edgeTextAnchor(),
811
- fontSize: 16,
818
+ fontSize: ARC_LABEL_FONT_SIZE,
812
819
  fill: strokeColor,
813
820
  fontWeight: "600",
814
821
  pointerEvents: "none",
@@ -878,7 +885,7 @@ const GroupArcsLayer = React.memo(function GroupArcsLayer2({
878
885
  const color = arcColors[g % arcColors.length];
879
886
  const MIN_ARROW_SPAN = 24;
880
887
  const textY = Math.min(
881
- axisY - ry - ARC_BASELINE_LIFT - 6,
888
+ axisY - ry - ARC_BASELINE_LIFT - ARC_LABEL_GAP,
882
889
  axisY - MIN_ARROW_SPAN
883
890
  );
884
891
  const arcPath = buildArcPath({ x1, x2, y: axisY, rx, ry });
@@ -980,7 +987,7 @@ function DrawingLayer({ strokes, liveStroke, tool, width, height, onStrokeClick
980
987
  ] });
981
988
  }
982
989
  const LABEL_SPACE_BELOW_AXIS = 42;
983
- const LABEL_ABOVE_AXIS_SLOP = 30;
990
+ const LABEL_ABOVE_AXIS_SLOP = ARC_BASELINE_LIFT + ARC_LABEL_SPACE;
984
991
  const ARC_TOP_PADDING = 16;
985
992
  const MIN_ARC_HEIGHT = 24;
986
993
  function NumberLine({ className }) {
@@ -1030,11 +1037,14 @@ function NumberLine({ className }) {
1030
1037
  const rx = usable * groupSize / range / 2;
1031
1038
  ryTypical = Math.min(rx * ARC_RY_RATIO, h * 0.48);
1032
1039
  }
1033
- const minAxisY = MIN_ARC_HEIGHT + ARC_TOP_PADDING;
1040
+ const minAxisY = MIN_ARC_HEIGHT + ARC_BASELINE_LIFT + ARC_LABEL_SPACE + ARC_TOP_PADDING;
1034
1041
  const maxAxisY = h - LABEL_SPACE_BELOW_AXIS;
1035
1042
  const axisYCentered = (h + ryTypical + LABEL_ABOVE_AXIS_SLOP - LABEL_SPACE_BELOW_AXIS) / 2;
1036
1043
  const axisY = Math.min(maxAxisY, Math.max(minAxisY, axisYCentered));
1037
- const arcMaxHeight = Math.max(MIN_ARC_HEIGHT, axisY - ARC_TOP_PADDING);
1044
+ const arcMaxHeight = Math.max(
1045
+ MIN_ARC_HEIGHT,
1046
+ axisY - ARC_TOP_PADDING - ARC_BASELINE_LIFT - ARC_LABEL_SPACE
1047
+ );
1038
1048
  const [isZoomActive, setIsZoomActive] = React.useState(false);
1039
1049
  const [isPanning, setIsPanning] = React.useState(false);
1040
1050
  const panStart = React.useRef(null);
@@ -1211,7 +1221,9 @@ function NumberLine({ className }) {
1211
1221
  showMajorTicks,
1212
1222
  showMinorTicks,
1213
1223
  showLabelStep,
1214
- getShowLabelStep
1224
+ getShowLabelStep,
1225
+ arcColors,
1226
+ deletedArcIndices
1215
1227
  }
1216
1228
  ),
1217
1229
  /* @__PURE__ */ jsxRuntime.jsx(
package/dist/index.js CHANGED
@@ -552,8 +552,11 @@ const ARC_COLORS = [
552
552
  "#16a34a"
553
553
  ];
554
554
  const ARC_RY_RATIO = 0.9;
555
- const ARC_ANIMATION_STAGGER_MS = 700;
556
- const ARC_ANIMATION_DRAW_MS = 800;
555
+ const ARC_LABEL_GAP = 6;
556
+ const ARC_LABEL_FONT_SIZE = 16;
557
+ const ARC_LABEL_SPACE = ARC_LABEL_GAP + ARC_LABEL_FONT_SIZE;
558
+ const ARC_ANIMATION_DRAW_MS = 1e3;
559
+ const ARC_ANIMATION_PAUSE_MS = 400;
557
560
  function gcd(a, b) {
558
561
  let x = Math.max(1, Math.abs(Math.round(a)));
559
562
  let y = Math.max(1, Math.abs(Math.round(b)));
@@ -576,7 +579,9 @@ const AxisLayer = React.memo(function AxisLayer2({
576
579
  showMajorTicks,
577
580
  showMinorTicks,
578
581
  showLabelStep,
579
- getShowLabelStep
582
+ getShowLabelStep,
583
+ arcColors = ARC_COLORS,
584
+ deletedArcIndices
580
585
  }) {
581
586
  const range = viewMax - viewMin;
582
587
  if (range <= 0) return null;
@@ -636,7 +641,9 @@ const AxisLayer = React.memo(function AxisLayer2({
636
641
  });
637
642
  const tickH = renderAsGroup ? 7 : renderAsMajor ? 10 : renderAsHalf ? 8 : 6;
638
643
  const strokeW = renderAsGroup ? 4 : renderAsMajor ? 2 : renderAsHalf ? 2 : 1;
639
- const color = renderAsGroup || renderAsMajor || renderAsHalf ? "#374151" : "#4b5563";
644
+ const arcIndex = renderAsGroup && offset > 0 ? offset / groupSize - 1 : -1;
645
+ const arcColored = arcIndex >= 0 && arcIndex < groupCount && !(deletedArcIndices == null ? void 0 : deletedArcIndices.has(arcIndex));
646
+ const color = arcColored ? arcColors[arcIndex % arcColors.length] : renderAsGroup || renderAsMajor || renderAsHalf ? "#374151" : "#4b5563";
640
647
  return /* @__PURE__ */ jsxs("g", { children: [
641
648
  /* @__PURE__ */ jsx(
642
649
  "line",
@@ -712,7 +719,7 @@ function AnimatedArc({
712
719
  setShowLabels(false);
713
720
  setShowHitArea(false);
714
721
  setIsDrawing(false);
715
- const delay = groupIndex * ARC_ANIMATION_STAGGER_MS;
722
+ const delay = groupIndex * (ARC_ANIMATION_DRAW_MS + ARC_ANIMATION_PAUSE_MS);
716
723
  let drawTimer = 0;
717
724
  let labelTimer = 0;
718
725
  let completeTimer = 0;
@@ -806,7 +813,7 @@ function AnimatedArc({
806
813
  x: x2,
807
814
  y: textY,
808
815
  textAnchor: edgeTextAnchor(),
809
- fontSize: 16,
816
+ fontSize: ARC_LABEL_FONT_SIZE,
810
817
  fill: strokeColor,
811
818
  fontWeight: "600",
812
819
  pointerEvents: "none",
@@ -876,7 +883,7 @@ const GroupArcsLayer = memo(function GroupArcsLayer2({
876
883
  const color = arcColors[g % arcColors.length];
877
884
  const MIN_ARROW_SPAN = 24;
878
885
  const textY = Math.min(
879
- axisY - ry - ARC_BASELINE_LIFT - 6,
886
+ axisY - ry - ARC_BASELINE_LIFT - ARC_LABEL_GAP,
880
887
  axisY - MIN_ARROW_SPAN
881
888
  );
882
889
  const arcPath = buildArcPath({ x1, x2, y: axisY, rx, ry });
@@ -978,7 +985,7 @@ function DrawingLayer({ strokes, liveStroke, tool, width, height, onStrokeClick
978
985
  ] });
979
986
  }
980
987
  const LABEL_SPACE_BELOW_AXIS = 42;
981
- const LABEL_ABOVE_AXIS_SLOP = 30;
988
+ const LABEL_ABOVE_AXIS_SLOP = ARC_BASELINE_LIFT + ARC_LABEL_SPACE;
982
989
  const ARC_TOP_PADDING = 16;
983
990
  const MIN_ARC_HEIGHT = 24;
984
991
  function NumberLine({ className }) {
@@ -1028,11 +1035,14 @@ function NumberLine({ className }) {
1028
1035
  const rx = usable * groupSize / range / 2;
1029
1036
  ryTypical = Math.min(rx * ARC_RY_RATIO, h * 0.48);
1030
1037
  }
1031
- const minAxisY = MIN_ARC_HEIGHT + ARC_TOP_PADDING;
1038
+ const minAxisY = MIN_ARC_HEIGHT + ARC_BASELINE_LIFT + ARC_LABEL_SPACE + ARC_TOP_PADDING;
1032
1039
  const maxAxisY = h - LABEL_SPACE_BELOW_AXIS;
1033
1040
  const axisYCentered = (h + ryTypical + LABEL_ABOVE_AXIS_SLOP - LABEL_SPACE_BELOW_AXIS) / 2;
1034
1041
  const axisY = Math.min(maxAxisY, Math.max(minAxisY, axisYCentered));
1035
- const arcMaxHeight = Math.max(MIN_ARC_HEIGHT, axisY - ARC_TOP_PADDING);
1042
+ const arcMaxHeight = Math.max(
1043
+ MIN_ARC_HEIGHT,
1044
+ axisY - ARC_TOP_PADDING - ARC_BASELINE_LIFT - ARC_LABEL_SPACE
1045
+ );
1036
1046
  const [isZoomActive, setIsZoomActive] = useState(false);
1037
1047
  const [isPanning, setIsPanning] = useState(false);
1038
1048
  const panStart = useRef(null);
@@ -1209,7 +1219,9 @@ function NumberLine({ className }) {
1209
1219
  showMajorTicks,
1210
1220
  showMinorTicks,
1211
1221
  showLabelStep,
1212
- getShowLabelStep
1222
+ getShowLabelStep,
1223
+ arcColors,
1224
+ deletedArcIndices
1213
1225
  }
1214
1226
  ),
1215
1227
  /* @__PURE__ */ jsx(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcg-overseas/number-line",
3
- "version": "0.1.25",
3
+ "version": "0.1.27",
4
4
  "description": "Interactive number line component with group arcs and freehand drawing",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/dist/.tsbuildinfo DELETED
@@ -1 +0,0 @@
1
- {"fileNames":["../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/@types+react@18.3.28/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.2.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+prop-types@15.7.15/node_modules/@types/prop-types/index.d.ts","../../../node_modules/.pnpm/@types+react@18.3.28/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react@18.3.28/node_modules/@types/react/jsx-runtime.d.ts","../src/types.ts","../src/hooks/usehistory.ts","../src/hooks/usedrawing.ts","../src/hooks/usecontainersize.ts","../src/hooks/usezoom.ts","../src/context/numberlinecontext.ts","../src/components/numberlineprovider.tsx","../src/utils/geometry.ts","../src/components/axislayer.tsx","../src/components/grouparcslayer.tsx","../src/components/drawinglayer.tsx","../src/components/numberline.tsx","../src/index.ts"],"fileIdsList":[[48,49,50],[51],[51,52,60],[51,52,53],[51,52,53,60],[51,52,58,60,61,62,63],[51,52,53,54,55,56,57,58],[51,52],[52,53,58,59,64],[52]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb5b19b86227ace1d29ea4cf81387279d04bb34051e944bc53df69f58914b788","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc","impliedFormat":1},{"version":"035312d4945d13efa134ae482f6dc56a1a9346f7ac3be7ccbad5741058ce87f3","affectsGlobalScope":true,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},"497454b2825f0effe921e2f17780f5a5fd702c24b45591b8b4e56ac32e6df498","c3e2589ca80860c4d3b92c8e2d3b0d1068126a971ace2a8a5f9dff7b7d74aabc","b673529a943b4e5b9107755a3d7870991a62eafc0d55227240c8162276b37804","0f788ec0307d841c96c4603d9c60f26b7c66452c69ca6cf2260c4b2bcf30edcb","96d60747aec233ffa35a36551f463a35c71dd44071d001126f372bf4a92316d2","e85e164566025e53fc9270a41d6d8edcdec606525c05ef9b195e21520fc41fcd","5b7af4c67a08f9f8e85183f34952f22a78a5aa25ae4d4b5c0c2d035f23e286cf",{"version":"1b0fad669dfe35c78101ea0bb102ae63d96f92974b21a8713c6e33fb2edfe6ef","signature":"c9932d874e5eae2a6eb66a8a5e7db02dd97d63e97533b41bede73dde47fa46e2"},{"version":"7f438c1fd5c552a1a85118bf537bb1ba5c056f8a46e0838f90bace3b957b54e8","signature":"f53d813558511618a4b866bfb1865b8f91d2b8ac1df5f0efed6416a1604e2831"},"323ad53f5cf18223dca17d5ac77d27f7b02289c705416f5b353545ff56232e6c","7f7c7cab7f72c8783e187e537c9f6a1a14692f391b6921745362cde06928c57b",{"version":"29389865cafab2475cfbfba94ee63c891c2331ea6203ad3e7e8bdb0f64c1220d","signature":"0b10dff05d2ac9cb594c0a2b536f3302a51b20100c523f0a1c0d72c6e96859e7"},"283575d1dd62487ca5ac23be0773c1e8e3a556f3a9ffd65f973eec577a1a5117"],"root":[[53,65]],"options":{"allowImportingTsExtensions":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"jsx":4,"module":99,"noFallthroughCasesInSwitch":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7,"tsBuildInfoFile":"./.tsbuildinfo","useDefineForClassFields":true,"verbatimModuleSyntax":true},"referencedMap":[[51,1],[52,2],[61,3],[63,4],[62,5],[64,6],[59,7],[58,4],[56,8],[55,4],[54,4],[57,8],[65,9],[53,10],[60,10]],"affectedFilesPendingEmit":[[61,51],[63,51],[62,51],[64,51],[59,51],[58,51],[56,51],[55,51],[54,51],[57,51],[65,51],[53,51],[60,51]],"emitSignatures":[53,54,55,56,57,58,59,60,61,62,63,64,65],"version":"6.0.3"}