@visactor/vrender-core 1.0.25 → 1.0.26-alpha.0

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.
@@ -6,4 +6,4 @@ Object.defineProperty(exports, "__esModule", {
6
6
  duration: 200,
7
7
  easing: "cubicOut"
8
8
  };
9
- //# sourceMappingURL=config.js.map
9
+ //# sourceMappingURL=config.js.map
@@ -3,5 +3,4 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: !0
5
5
  }), exports.Context2dFactory = exports.CanvasFactory = void 0, exports.CanvasFactory = Symbol.for("CanvasFactory"),
6
- exports.Context2dFactory = Symbol.for("Context2dFactory");
7
- //# sourceMappingURL=constants.js.map
6
+ exports.Context2dFactory = Symbol.for("Context2dFactory");
@@ -213,4 +213,5 @@ let EmptyContext2d = class {
213
213
  };
214
214
 
215
215
  EmptyContext2d = __decorate([ (0, inversify_lite_1.injectable)(), __metadata("design:paramtypes", [ Object, Number ]) ], EmptyContext2d),
216
- exports.EmptyContext2d = EmptyContext2d;
216
+ exports.EmptyContext2d = EmptyContext2d;
217
+ //# sourceMappingURL=empty-context.js.map
@@ -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;
@@ -128,4 +128,5 @@ function transformMat4(out, a, m) {
128
128
  exports.identityMat4 = identityMat4, exports.rotateX = rotateX, exports.rotateY = rotateY,
129
129
  exports.rotateZ = rotateZ, exports.translate = translate, exports.mat3Tomat4 = mat3Tomat4,
130
130
  exports.multiplyMat4Mat3 = multiplyMat4Mat3, exports.scaleMat4 = scaleMat4, exports.multiplyMat4Mat4 = multiplyMat4Mat4,
131
- exports.lookAt = lookAt, exports.ortho = ortho, exports.transformMat4 = transformMat4;
131
+ exports.lookAt = lookAt, exports.ortho = ortho, exports.transformMat4 = transformMat4;
132
+ //# sourceMappingURL=matrix.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;
@@ -162,4 +162,5 @@ const calculateLineHeight = (lineHeight, fontSize) => {
162
162
  return isNaN(_lh) ? _lh : Math.max(fontSize, _lh);
163
163
  };
164
164
 
165
- exports.calculateLineHeight = calculateLineHeight;
165
+ exports.calculateLineHeight = calculateLineHeight;
166
+ //# sourceMappingURL=utils.js.map
@@ -7,4 +7,4 @@ exports.TransformUtil = Symbol.for("TransformUtil"), exports.GraphicUtil = Symbo
7
7
  exports.LayerService = Symbol.for("LayerService"), exports.StaticLayerHandlerContribution = Symbol.for("StaticLayerHandlerContribution"),
8
8
  exports.DynamicLayerHandlerContribution = Symbol.for("DynamicLayerHandlerContribution"),
9
9
  exports.VirtualLayerHandlerContribution = Symbol.for("VirtualLayerHandlerContribution");
10
- //# sourceMappingURL=constants.js.map
10
+ //# sourceMappingURL=constants.js.map
@@ -2,4 +2,4 @@ export const DefaultStateAnimateConfig = {
2
2
  duration: 200,
3
3
  easing: "cubicOut"
4
4
  };
5
- //# sourceMappingURL=config.js.map
5
+ //# sourceMappingURL=config.js.map
@@ -1,4 +1,3 @@
1
1
  export const CanvasFactory = Symbol.for("CanvasFactory");
2
2
 
3
- export const Context2dFactory = Symbol.for("Context2dFactory");
4
- //# sourceMappingURL=constants.js.map
3
+ export const Context2dFactory = Symbol.for("Context2dFactory");
@@ -219,4 +219,5 @@ let EmptyContext2d = class {
219
219
 
220
220
  EmptyContext2d = __decorate([ injectable(), __metadata("design:paramtypes", [ Object, Number ]) ], EmptyContext2d);
221
221
 
222
- export { EmptyContext2d };
222
+ export { EmptyContext2d };
223
+ //# sourceMappingURL=empty-context.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
+ }
@@ -117,4 +117,5 @@ export function transformMat4(out, a, m) {
117
117
  let w = m[3] * x + m[7] * y + m[11] * z + m[15];
118
118
  return w = w || 1, out[0] = (m[0] * x + m[4] * y + m[8] * z + m[12]) / w, out[1] = (m[1] * x + m[5] * y + m[9] * z + m[13]) / w,
119
119
  out[2] = (m[2] * x + m[6] * y + m[10] * z + m[14]) / w, out;
120
- }
120
+ }
121
+ //# sourceMappingURL=matrix.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
+ }
@@ -147,4 +147,5 @@ export const _calculateLineHeight = (lineHeight, fontSize) => {
147
147
  export const calculateLineHeight = (lineHeight, fontSize) => {
148
148
  const _lh = _calculateLineHeight(lineHeight, fontSize);
149
149
  return isNaN(_lh) ? _lh : Math.max(fontSize, _lh);
150
- };
150
+ };
151
+ //# sourceMappingURL=utils.js.map
@@ -9,4 +9,4 @@ export const StaticLayerHandlerContribution = Symbol.for("StaticLayerHandlerCont
9
9
  export const DynamicLayerHandlerContribution = Symbol.for("DynamicLayerHandlerContribution");
10
10
 
11
11
  export const VirtualLayerHandlerContribution = Symbol.for("VirtualLayerHandlerContribution");
12
- //# sourceMappingURL=constants.js.map
12
+ //# sourceMappingURL=constants.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vrender-core",
3
- "version": "1.0.25",
3
+ "version": "1.0.26-alpha.0",
4
4
  "description": "",
5
5
  "sideEffects": [
6
6
  "./src/modules.ts",
@@ -36,8 +36,8 @@
36
36
  "typescript": "4.9.5",
37
37
  "cross-env": "^7.0.3",
38
38
  "@internal/bundler": "0.0.1",
39
- "@internal/ts-config": "0.0.1",
40
- "@internal/eslint-config": "0.0.1"
39
+ "@internal/eslint-config": "0.0.1",
40
+ "@internal/ts-config": "0.0.1"
41
41
  },
42
42
  "keywords": [
43
43
  "VisActor",