@visactor/vrender-core 1.0.43 → 1.0.44

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.
@@ -16,5 +16,4 @@ function diff(oldAttrs, newAttrs, getAttr) {
16
16
  return diffObj;
17
17
  }
18
18
 
19
- exports.diff = diff;
20
- //# sourceMappingURL=diff.js.map
19
+ exports.diff = diff;
@@ -10,4 +10,5 @@ class Generator {
10
10
  }
11
11
  }
12
12
 
13
- exports.Generator = Generator, Generator.auto_increment_id = 0;
13
+ exports.Generator = Generator, Generator.auto_increment_id = 0;
14
+ //# sourceMappingURL=generator.js.map
@@ -35,5 +35,4 @@ function flatten_simplify(points, tolerance, highestQuality) {
35
35
 
36
36
  Object.defineProperty(exports, "__esModule", {
37
37
  value: !0
38
- }), exports.flatten_simplify = void 0, exports.flatten_simplify = flatten_simplify;
39
- //# sourceMappingURL=simplify.js.map
38
+ }), exports.flatten_simplify = void 0, exports.flatten_simplify = flatten_simplify;
@@ -33,4 +33,5 @@ function textAttributesToStyle(attrs) {
33
33
  }
34
34
 
35
35
  exports.textDrawOffsetY = textDrawOffsetY, exports.textDrawOffsetX = textDrawOffsetX,
36
- exports.textLayoutOffsetY = textLayoutOffsetY, exports.textAttributesToStyle = textAttributesToStyle;
36
+ exports.textLayoutOffsetY = textLayoutOffsetY, exports.textAttributesToStyle = textAttributesToStyle;
37
+ //# sourceMappingURL=text.js.map
package/es/common/diff.js CHANGED
@@ -8,5 +8,4 @@ export function diff(oldAttrs, newAttrs, getAttr) {
8
8
  void 0 !== value && (diffObj[key] = value);
9
9
  }
10
10
  return diffObj;
11
- }
12
- //# sourceMappingURL=diff.js.map
11
+ }
@@ -4,4 +4,5 @@ export class Generator {
4
4
  }
5
5
  }
6
6
 
7
- Generator.auto_increment_id = 0;
7
+ Generator.auto_increment_id = 0;
8
+ //# sourceMappingURL=generator.js.map
@@ -29,5 +29,4 @@ function simplifyDouglasPeucker(points, sqTolerance) {
29
29
  export function flatten_simplify(points, tolerance, highestQuality) {
30
30
  if (points.length <= 10) return points;
31
31
  return points = highestQuality ? points : simplifyRadialDist(points, void 0 !== tolerance ? tolerance * tolerance : 1);
32
- }
33
- //# sourceMappingURL=simplify.js.map
32
+ }
package/es/common/text.js CHANGED
@@ -23,4 +23,5 @@ export function textAttributesToStyle(attrs) {
23
23
  })), isValid(attrs.maxLineWidth) && (style["max-width"] = parsePxValue(attrs.maxLineWidth)),
24
24
  attrs.underline ? style["text-decoration"] = "underline" : attrs.lineThrough && (style["text-decoration"] = "line-through"),
25
25
  attrs.fill && isString(attrs.fill) && (style.color = attrs.fill), style;
26
- }
26
+ }
27
+ //# sourceMappingURL=text.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vrender-core",
3
- "version": "1.0.43",
3
+ "version": "1.0.44",
4
4
  "description": "",
5
5
  "sideEffects": [
6
6
  "./src/modules.ts",