@remotion/rounded-text-box 4.0.463 → 4.0.465

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.
Files changed (2) hide show
  1. package/dist/cjs/index.js +8 -18
  2. package/package.json +4 -4
package/dist/cjs/index.js CHANGED
@@ -2,37 +2,27 @@ var __defProp = Object.defineProperty;
2
2
  var __getOwnPropNames = Object.getOwnPropertyNames;
3
3
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
4
  var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- function __accessProp(key) {
6
- return this[key];
7
- }
5
+ var __moduleCache = /* @__PURE__ */ new WeakMap;
8
6
  var __toCommonJS = (from) => {
9
- var entry = (__moduleCache ??= new WeakMap).get(from), desc;
7
+ var entry = __moduleCache.get(from), desc;
10
8
  if (entry)
11
9
  return entry;
12
10
  entry = __defProp({}, "__esModule", { value: true });
13
- if (from && typeof from === "object" || typeof from === "function") {
14
- for (var key of __getOwnPropNames(from))
15
- if (!__hasOwnProp.call(entry, key))
16
- __defProp(entry, key, {
17
- get: __accessProp.bind(from, key),
18
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
19
- });
20
- }
11
+ if (from && typeof from === "object" || typeof from === "function")
12
+ __getOwnPropNames(from).map((key) => !__hasOwnProp.call(entry, key) && __defProp(entry, key, {
13
+ get: () => from[key],
14
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
15
+ }));
21
16
  __moduleCache.set(from, entry);
22
17
  return entry;
23
18
  };
24
- var __moduleCache;
25
- var __returnValue = (v) => v;
26
- function __exportSetter(name, newValue) {
27
- this[name] = __returnValue.bind(null, newValue);
28
- }
29
19
  var __export = (target, all) => {
30
20
  for (var name in all)
31
21
  __defProp(target, name, {
32
22
  get: all[name],
33
23
  enumerable: true,
34
24
  configurable: true,
35
- set: __exportSetter.bind(all, name)
25
+ set: (newValue) => all[name] = () => newValue
36
26
  });
37
27
  };
38
28
 
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/rounded-text-box"
4
4
  },
5
5
  "name": "@remotion/rounded-text-box",
6
- "version": "4.0.463",
6
+ "version": "4.0.465",
7
7
  "description": "Create a TikTok-like multiline text box SVG path with rounded corners",
8
8
  "main": "dist/cjs/index.js",
9
9
  "types": "dist/cjs/index.d.ts",
@@ -24,11 +24,11 @@
24
24
  }
25
25
  },
26
26
  "dependencies": {
27
- "@remotion/layout-utils": "4.0.463",
28
- "@remotion/paths": "4.0.463"
27
+ "@remotion/layout-utils": "4.0.465",
28
+ "@remotion/paths": "4.0.465"
29
29
  },
30
30
  "devDependencies": {
31
- "@remotion/eslint-config-internal": "4.0.463",
31
+ "@remotion/eslint-config-internal": "4.0.465",
32
32
  "eslint": "9.19.0",
33
33
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
34
34
  },