@remotion/paths 4.0.313 → 4.0.315

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.
@@ -2137,7 +2137,6 @@ var getBoundingBox = (d) => {
2137
2137
  const unarced = removeATSHVQInstructions(normalizeInstructions(parsed));
2138
2138
  return getBoundingBoxFromInstructions(unarced);
2139
2139
  };
2140
-
2141
2140
  // src/helpers/arc.ts
2142
2141
  var mod = (x, m) => {
2143
2142
  return (x % m + m) % m;
@@ -3739,5 +3738,6 @@ export {
3739
3738
  getBoundingBox,
3740
3739
  extendViewBox,
3741
3740
  evolvePath,
3741
+ cutPath,
3742
3742
  PathInternals
3743
3743
  };
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export { cutPath } from './cut-path';
1
2
  export { evolvePath } from './evolve-path';
2
3
  export { extendViewBox } from './extend-viewbox';
3
4
  export { getBoundingBox } from './get-bounding-box';
package/dist/index.js CHANGED
@@ -1,9 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PathInternals = exports.warpPath = exports.translatePath = exports.serializeInstructions = exports.scalePath = exports.reversePath = exports.resetPath = exports.reduceInstructions = exports.parsePath = exports.normalizePath = exports.interpolatePath = exports.getTangentAtLength = exports.getSubpaths = exports.getPointAtLength = exports.getLength = exports.getInstructionIndexAtLength = exports.getBoundingBox = exports.extendViewBox = exports.evolvePath = void 0;
3
+ exports.PathInternals = exports.warpPath = exports.translatePath = exports.serializeInstructions = exports.scalePath = exports.reversePath = exports.resetPath = exports.reduceInstructions = exports.parsePath = exports.normalizePath = exports.interpolatePath = exports.getTangentAtLength = exports.getSubpaths = exports.getPointAtLength = exports.getLength = exports.getInstructionIndexAtLength = exports.getBoundingBox = exports.extendViewBox = exports.evolvePath = exports.cutPath = void 0;
4
4
  const cut_path_1 = require("./cut-path");
5
5
  const debug_path_1 = require("./debug-path");
6
6
  const get_bounding_box_1 = require("./get-bounding-box");
7
+ var cut_path_2 = require("./cut-path");
8
+ Object.defineProperty(exports, "cutPath", { enumerable: true, get: function () { return cut_path_2.cutPath; } });
7
9
  var evolve_path_1 = require("./evolve-path");
8
10
  Object.defineProperty(exports, "evolvePath", { enumerable: true, get: function () { return evolve_path_1.evolvePath; } });
9
11
  var extend_viewbox_1 = require("./extend-viewbox");
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/paths"
4
4
  },
5
5
  "name": "@remotion/paths",
6
- "version": "4.0.313",
6
+ "version": "4.0.315",
7
7
  "description": "Utilities for working with SVG paths",
8
8
  "main": "dist/index.js",
9
9
  "types": "dist/index.d.ts",
@@ -21,7 +21,7 @@
21
21
  ],
22
22
  "devDependencies": {
23
23
  "eslint": "9.19.0",
24
- "@remotion/eslint-config-internal": "4.0.313"
24
+ "@remotion/eslint-config-internal": "4.0.315"
25
25
  },
26
26
  "exports": {
27
27
  "./package.json": "./package.json",