@visactor/vrender 0.16.18 → 0.16.19-alpha.2
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/cjs/index.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/dist/index.js +56 -36
- package/dist/index.min.js +1 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/index.js.map +1 -1
- package/package.json +5 -5
package/cjs/index.d.ts
CHANGED
package/cjs/index.js
CHANGED
|
@@ -21,5 +21,5 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
21
21
|
|
|
22
22
|
const vrender_core_1 = require("@visactor/vrender-core"), vrender_kits_1 = require("@visactor/vrender-kits");
|
|
23
23
|
|
|
24
|
-
exports.version = "0.16.
|
|
24
|
+
exports.version = "0.16.19-alpha.2", (0, vrender_kits_1.loadAllModule)(vrender_core_1.container),
|
|
25
25
|
__exportStar(require("@visactor/vrender-core"), exports), __exportStar(require("@visactor/vrender-kits"), exports);
|
package/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,yDAAmD;AACnD,yDAAuD;AAG1C,QAAA,OAAO,GAAG,
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,yDAAmD;AACnD,yDAAuD;AAG1C,QAAA,OAAO,GAAG,iBAAiB,CAAC;AAEzC,IAAA,4BAAa,EAAC,wBAAS,CAAC,CAAC;AAEzB,yDAAuC;AACvC,yDAAuC","file":"index.js","sourcesContent":["import { container } from '@visactor/vrender-core';\nimport { loadAllModule } from '@visactor/vrender-kits';\n\n// 导出版本号\nexport const version = \"0.16.19-alpha.2\";\n\nloadAllModule(container);\n\nexport * from '@visactor/vrender-core';\nexport * from '@visactor/vrender-kits';\n"]}
|
package/dist/index.js
CHANGED
|
@@ -6422,7 +6422,10 @@
|
|
|
6422
6422
|
lineClamp: 1 / 0,
|
|
6423
6423
|
suffixPosition: "end"
|
|
6424
6424
|
};
|
|
6425
|
-
var
|
|
6425
|
+
var DefaultPickStyle = {
|
|
6426
|
+
pickStrokeBuffer: 0
|
|
6427
|
+
};
|
|
6428
|
+
var DefaultStyle = Object.assign(Object.assign(Object.assign(Object.assign({
|
|
6426
6429
|
opacity: 1,
|
|
6427
6430
|
background: null,
|
|
6428
6431
|
texture: null,
|
|
@@ -6433,7 +6436,7 @@
|
|
|
6433
6436
|
blur: 0,
|
|
6434
6437
|
cursor: null,
|
|
6435
6438
|
html: null
|
|
6436
|
-
}, DefaultFillStyle), DefaultStrokeStyle), DefaultLayout);
|
|
6439
|
+
}, DefaultFillStyle), DefaultStrokeStyle), DefaultLayout), DefaultPickStyle);
|
|
6437
6440
|
var DefaultConnectAttribute = {
|
|
6438
6441
|
connectedType: "none",
|
|
6439
6442
|
connectedStyle: {},
|
|
@@ -19202,12 +19205,14 @@
|
|
|
19202
19205
|
shadowBlur = _attribute$shadowBlur2 === void 0 ? theme.shadowBlur : _attribute$shadowBlur2,
|
|
19203
19206
|
_attribute$lineWidth = attribute.lineWidth,
|
|
19204
19207
|
lineWidth = _attribute$lineWidth === void 0 ? theme.lineWidth : _attribute$lineWidth,
|
|
19208
|
+
_attribute$pickStroke = attribute.pickStrokeBuffer,
|
|
19209
|
+
pickStrokeBuffer = _attribute$pickStroke === void 0 ? theme.pickStrokeBuffer : _attribute$pickStroke,
|
|
19205
19210
|
_attribute$strokeBoun2 = attribute.strokeBoundsBuffer,
|
|
19206
19211
|
strokeBoundsBuffer = _attribute$strokeBoun2 === void 0 ? theme.strokeBoundsBuffer : _attribute$strokeBoun2,
|
|
19207
19212
|
tb1 = this.tempAABBBounds1,
|
|
19208
19213
|
tb2 = this.tempAABBBounds2;
|
|
19209
19214
|
if (stroke) {
|
|
19210
|
-
var scaledHalfLineWidth = lineWidth / Math.abs(scaleX + scaleY);
|
|
19215
|
+
var scaledHalfLineWidth = (lineWidth + pickStrokeBuffer) / Math.abs(scaleX + scaleY);
|
|
19211
19216
|
boundStroke(tb1, scaledHalfLineWidth, miter, strokeBoundsBuffer), aabbBounds.union(tb1), tb1.setValue(tb2.x1, tb2.y1, tb2.x2, tb2.y2);
|
|
19212
19217
|
}
|
|
19213
19218
|
if (shadowBlur) {
|
|
@@ -19215,8 +19220,8 @@
|
|
|
19215
19220
|
shadowOffsetX = _attribute$shadowOffs === void 0 ? theme.shadowOffsetX : _attribute$shadowOffs,
|
|
19216
19221
|
_attribute$shadowOffs2 = attribute.shadowOffsetY,
|
|
19217
19222
|
shadowOffsetY = _attribute$shadowOffs2 === void 0 ? theme.shadowOffsetY : _attribute$shadowOffs2,
|
|
19218
|
-
shadowBlurWidth = shadowBlur / Math.abs(scaleX + scaleY) * 2
|
|
19219
|
-
boundStroke(tb1, shadowBlurWidth,
|
|
19223
|
+
shadowBlurWidth = shadowBlur / Math.abs(scaleX + scaleY) * 2;
|
|
19224
|
+
boundStroke(tb1, shadowBlurWidth, !1, strokeBoundsBuffer + 1), tb1.translate(shadowOffsetX, shadowOffsetY), aabbBounds.union(tb1);
|
|
19220
19225
|
}
|
|
19221
19226
|
this.combindShadowAABBBounds(aabbBounds, graphic), transformBoundsWithMatrix(aabbBounds, aabbBounds, graphic.transMatrix);
|
|
19222
19227
|
}
|
|
@@ -31585,7 +31590,7 @@
|
|
|
31585
31590
|
blur = _attribute$blur === void 0 ? defaultParams.blur : _attribute$blur,
|
|
31586
31591
|
_attribute$globalComp = attribute.globalCompositeOperation,
|
|
31587
31592
|
globalCompositeOperation = _attribute$globalComp === void 0 ? defaultParams.globalCompositeOperation : _attribute$globalComp;
|
|
31588
|
-
opacity <= 1e-12 || (shadowBlur || shadowOffsetX || shadowOffsetY ? (_context.shadowBlur = shadowBlur, _context.shadowColor = shadowColor, _context.shadowOffsetX = shadowOffsetX, _context.shadowOffsetY = shadowOffsetY, this._clearShadowStyle = !0) : this._clearShadowStyle && (_context.shadowBlur = 0, _context.shadowOffsetX = 0, _context.shadowOffsetY = 0), blur ? (_context.filter = "blur(".concat(blur, "px)"), this._clearFilterStyle = !0) : this._clearFilterStyle && (_context.filter = "blur(0px)", this._clearFilterStyle = !1), globalCompositeOperation ? (_context.globalCompositeOperation = globalCompositeOperation, this._clearGlobalCompositeOperationStyle = !0) : this._clearGlobalCompositeOperationStyle && (_context.globalCompositeOperation = "source-over", this._clearGlobalCompositeOperationStyle = !1));
|
|
31593
|
+
opacity <= 1e-12 || (shadowBlur || shadowOffsetX || shadowOffsetY ? (_context.shadowBlur = shadowBlur * this.dpr, _context.shadowColor = shadowColor, _context.shadowOffsetX = shadowOffsetX * this.dpr, _context.shadowOffsetY = shadowOffsetY * this.dpr, this._clearShadowStyle = !0) : this._clearShadowStyle && (_context.shadowBlur = 0, _context.shadowOffsetX = 0, _context.shadowOffsetY = 0), blur ? (_context.filter = "blur(".concat(blur, "px)"), this._clearFilterStyle = !0) : this._clearFilterStyle && (_context.filter = "blur(0px)", this._clearFilterStyle = !1), globalCompositeOperation ? (_context.globalCompositeOperation = globalCompositeOperation, this._clearGlobalCompositeOperationStyle = !0) : this._clearGlobalCompositeOperationStyle && (_context.globalCompositeOperation = "source-over", this._clearGlobalCompositeOperationStyle = !1));
|
|
31589
31594
|
}
|
|
31590
31595
|
}, {
|
|
31591
31596
|
key: "setStrokeStyle",
|
|
@@ -31941,8 +31946,9 @@
|
|
|
31941
31946
|
return !!picked || (picked = context.isPointInPath(point.x, point.y), picked);
|
|
31942
31947
|
}, function (context, circleAttribute, themeAttribute) {
|
|
31943
31948
|
if (picked) return !0;
|
|
31944
|
-
var lineWidth = circleAttribute.lineWidth || themeAttribute.lineWidth
|
|
31945
|
-
|
|
31949
|
+
var lineWidth = circleAttribute.lineWidth || themeAttribute.lineWidth,
|
|
31950
|
+
pickStrokeBuffer = circleAttribute.pickStrokeBuffer || themeAttribute.pickStrokeBuffer;
|
|
31951
|
+
return pickContext.lineWidth = getScaledStroke(pickContext, lineWidth + pickStrokeBuffer, pickContext.dpr), picked = context.isPointInStroke(point.x, point.y), picked;
|
|
31946
31952
|
}), pickContext.highPerformanceRestore(), picked;
|
|
31947
31953
|
}
|
|
31948
31954
|
}]);
|
|
@@ -32000,8 +32006,9 @@
|
|
|
32000
32006
|
return !!picked || (picked = context.isPointInPath(point.x, point.y), picked);
|
|
32001
32007
|
}, function (context, rectAttribute, themeAttribute) {
|
|
32002
32008
|
if (picked) return !0;
|
|
32003
|
-
var lineWidth = rectAttribute.lineWidth || themeAttribute.lineWidth
|
|
32004
|
-
|
|
32009
|
+
var lineWidth = rectAttribute.lineWidth || themeAttribute.lineWidth,
|
|
32010
|
+
pickStrokeBuffer = rectAttribute.pickStrokeBuffer || themeAttribute.pickStrokeBuffer;
|
|
32011
|
+
return pickContext.lineWidth = getScaledStroke(pickContext, lineWidth + pickStrokeBuffer, pickContext.dpr), picked = context.isPointInStroke(point.x, point.y), picked;
|
|
32005
32012
|
});else {
|
|
32006
32013
|
var _rect$attribute2 = rect.attribute,
|
|
32007
32014
|
_rect$attribute2$fill = _rect$attribute2.fill,
|
|
@@ -32066,8 +32073,9 @@
|
|
|
32066
32073
|
return !!picked || (picked = context.isPointInPath(point.x, point.y), picked);
|
|
32067
32074
|
}, function (context, arcAttribute, themeAttribute) {
|
|
32068
32075
|
if (picked) return !0;
|
|
32069
|
-
var lineWidth = arcAttribute.lineWidth || themeAttribute.lineWidth
|
|
32070
|
-
|
|
32076
|
+
var lineWidth = arcAttribute.lineWidth || themeAttribute.lineWidth,
|
|
32077
|
+
pickStrokeBuffer = arcAttribute.pickStrokeBuffer || themeAttribute.pickStrokeBuffer;
|
|
32078
|
+
return pickContext.lineWidth = getScaledStroke(pickContext, lineWidth + pickStrokeBuffer, pickContext.dpr), picked = context.isPointInStroke(point.x, point.y), picked;
|
|
32071
32079
|
}), pickContext.highPerformanceRestore(), picked;
|
|
32072
32080
|
}
|
|
32073
32081
|
}]);
|
|
@@ -32214,10 +32222,11 @@
|
|
|
32214
32222
|
var picked = !1;
|
|
32215
32223
|
return this.canvasRenderer.drawShape(line, pickContext, x, y, {}, null, function (context) {
|
|
32216
32224
|
return !!picked || (picked = context.isPointInPath(pickPoint.x, pickPoint.y), picked);
|
|
32217
|
-
}, function (context,
|
|
32225
|
+
}, function (context, lineAttribute, themeAttribute) {
|
|
32218
32226
|
if (picked) return !0;
|
|
32219
|
-
var lineWidth =
|
|
32220
|
-
|
|
32227
|
+
var lineWidth = lineAttribute.lineWidth || themeAttribute.lineWidth,
|
|
32228
|
+
pickStrokeBuffer = lineAttribute.pickStrokeBuffer || themeAttribute.pickStrokeBuffer;
|
|
32229
|
+
return pickContext.lineWidth = getScaledStroke(pickContext, lineWidth + pickStrokeBuffer, pickContext.dpr), picked = context.isPointInStroke(pickPoint.x, pickPoint.y), picked;
|
|
32221
32230
|
}), this.canvasRenderer.z = 0, pickContext.modelMatrix !== lastModelMatrix && mat4Allocate.free(pickContext.modelMatrix), pickContext.modelMatrix = lastModelMatrix, pickContext.highPerformanceRestore(), picked;
|
|
32222
32231
|
}
|
|
32223
32232
|
}]);
|
|
@@ -32276,8 +32285,9 @@
|
|
|
32276
32285
|
return !!picked || (picked = context.isPointInPath(pickPoint.x, pickPoint.y), picked);
|
|
32277
32286
|
}, function (context, pathAttribute, themeAttribute) {
|
|
32278
32287
|
if (picked) return !0;
|
|
32279
|
-
var lineWidth = pathAttribute.lineWidth || themeAttribute.lineWidth
|
|
32280
|
-
|
|
32288
|
+
var lineWidth = pathAttribute.lineWidth || themeAttribute.lineWidth,
|
|
32289
|
+
pickStrokeBuffer = pathAttribute.pickStrokeBuffer || themeAttribute.pickStrokeBuffer;
|
|
32290
|
+
return pickContext.lineWidth = getScaledStroke(pickContext, lineWidth + pickStrokeBuffer, pickContext.dpr), picked = context.isPointInStroke(pickPoint.x, pickPoint.y), picked;
|
|
32281
32291
|
}), this.canvasRenderer.z = 0, pickContext.modelMatrix !== lastModelMatrix && mat4Allocate.free(pickContext.modelMatrix), pickContext.modelMatrix = lastModelMatrix, pickContext.highPerformanceRestore(), picked;
|
|
32282
32292
|
}
|
|
32283
32293
|
}]);
|
|
@@ -32339,8 +32349,9 @@
|
|
|
32339
32349
|
return !!picked || (picked = context.isPointInPath(pickPoint.x, pickPoint.y), picked);
|
|
32340
32350
|
}, function (context, symbolAttribute, themeAttribute) {
|
|
32341
32351
|
if (picked) return !0;
|
|
32342
|
-
var lineWidth = symbolAttribute.lineWidth || themeAttribute.lineWidth
|
|
32343
|
-
|
|
32352
|
+
var lineWidth = symbolAttribute.lineWidth || themeAttribute.lineWidth,
|
|
32353
|
+
pickStrokeBuffer = symbolAttribute.pickStrokeBuffer || themeAttribute.pickStrokeBuffer;
|
|
32354
|
+
return pickContext.lineWidth = getScaledStroke(pickContext, lineWidth + pickStrokeBuffer, pickContext.dpr), picked = context.isPointInStroke(pickPoint.x, pickPoint.y), picked;
|
|
32344
32355
|
}), this.canvasRenderer.z = 0, pickContext.modelMatrix !== lastModelMatrix && mat4Allocate.free(pickContext.modelMatrix), pickContext.modelMatrix = lastModelMatrix, pickContext.highPerformanceRestore(), picked;
|
|
32345
32356
|
}
|
|
32346
32357
|
}]);
|
|
@@ -32465,8 +32476,9 @@
|
|
|
32465
32476
|
return !!picked || (picked = context.isPointInPath(point.x, point.y), picked);
|
|
32466
32477
|
}, function (context, pathAttribute, themeAttribute) {
|
|
32467
32478
|
if (picked) return !0;
|
|
32468
|
-
var lineWidth = pathAttribute.lineWidth || themeAttribute.lineWidth
|
|
32469
|
-
|
|
32479
|
+
var lineWidth = pathAttribute.lineWidth || themeAttribute.lineWidth,
|
|
32480
|
+
pickStrokeBuffer = pathAttribute.pickStrokeBuffer || themeAttribute.pickStrokeBuffer;
|
|
32481
|
+
return pickContext.lineWidth = getScaledStroke(pickContext, lineWidth + pickStrokeBuffer, pickContext.dpr), picked = context.isPointInStroke(point.x, point.y), picked;
|
|
32470
32482
|
}), pickContext.highPerformanceRestore(), picked;
|
|
32471
32483
|
}
|
|
32472
32484
|
}]);
|
|
@@ -33390,8 +33402,9 @@
|
|
|
33390
33402
|
return !!picked || (picked = context.isPointInPath(point.x, point.y), picked);
|
|
33391
33403
|
}, function (context, pathAttribute, themeAttribute) {
|
|
33392
33404
|
if (picked) return !0;
|
|
33393
|
-
var lineWidth = pathAttribute.lineWidth || themeAttribute.lineWidth
|
|
33394
|
-
|
|
33405
|
+
var lineWidth = pathAttribute.lineWidth || themeAttribute.lineWidth,
|
|
33406
|
+
pickStrokeBuffer = pathAttribute.pickStrokeBuffer || themeAttribute.pickStrokeBuffer;
|
|
33407
|
+
return pickContext.lineWidth = lineWidth + pickStrokeBuffer, picked = context.isPointInStroke(point.x, point.y), picked;
|
|
33395
33408
|
}), pickContext.highPerformanceRestore(), picked;
|
|
33396
33409
|
}
|
|
33397
33410
|
}]);
|
|
@@ -33442,8 +33455,9 @@
|
|
|
33442
33455
|
return !!picked || (picked = context.isPointInPath(point.x, point.y), picked);
|
|
33443
33456
|
}, function (context, circleAttribute, themeAttribute) {
|
|
33444
33457
|
if (picked) return !0;
|
|
33445
|
-
var lineWidth = circleAttribute.lineWidth || themeAttribute.lineWidth
|
|
33446
|
-
|
|
33458
|
+
var lineWidth = circleAttribute.lineWidth || themeAttribute.lineWidth,
|
|
33459
|
+
pickStrokeBuffer = circleAttribute.pickStrokeBuffer || themeAttribute.pickStrokeBuffer;
|
|
33460
|
+
return pickContext.lineWidth = lineWidth + pickStrokeBuffer, picked = context.isPointInStroke(point.x, point.y), picked;
|
|
33447
33461
|
}), pickContext.highPerformanceRestore(), picked;
|
|
33448
33462
|
}
|
|
33449
33463
|
}]);
|
|
@@ -33501,8 +33515,9 @@
|
|
|
33501
33515
|
return !!picked || (picked = context.isPointInPath(point.x, point.y), picked);
|
|
33502
33516
|
}, function (context, rectAttribute, themeAttribute) {
|
|
33503
33517
|
if (picked) return !0;
|
|
33504
|
-
var lineWidth = rectAttribute.lineWidth || themeAttribute.lineWidth
|
|
33505
|
-
|
|
33518
|
+
var lineWidth = rectAttribute.lineWidth || themeAttribute.lineWidth,
|
|
33519
|
+
pickStrokeBuffer = rectAttribute.pickStrokeBuffer || themeAttribute.pickStrokeBuffer;
|
|
33520
|
+
return pickContext.lineWidth = lineWidth + pickStrokeBuffer, picked = context.isPointInStroke(point.x, point.y), picked;
|
|
33506
33521
|
});else if (picked) {
|
|
33507
33522
|
var _rect$attribute2 = rect.attribute,
|
|
33508
33523
|
_rect$attribute2$fill = _rect$attribute2.fill,
|
|
@@ -33567,8 +33582,9 @@
|
|
|
33567
33582
|
return !!picked || (picked = context.isPointInPath(point.x, point.y), picked);
|
|
33568
33583
|
}, function (context, arcAttribute, themeAttribute) {
|
|
33569
33584
|
if (picked) return !0;
|
|
33570
|
-
var lineWidth = arcAttribute.lineWidth || themeAttribute.lineWidth
|
|
33571
|
-
|
|
33585
|
+
var lineWidth = arcAttribute.lineWidth || themeAttribute.lineWidth,
|
|
33586
|
+
pickStrokeBuffer = arcAttribute.pickStrokeBuffer || themeAttribute.pickStrokeBuffer;
|
|
33587
|
+
return pickContext.lineWidth = lineWidth + pickStrokeBuffer, picked = context.isPointInStroke(point.x, point.y), picked;
|
|
33572
33588
|
}), pickContext.highPerformanceRestore(), picked;
|
|
33573
33589
|
}
|
|
33574
33590
|
}]);
|
|
@@ -33667,8 +33683,9 @@
|
|
|
33667
33683
|
return !!picked || (picked = context.isPointInPath(point.x, point.y), picked);
|
|
33668
33684
|
}, function (context, circleAttribute, themeAttribute) {
|
|
33669
33685
|
if (picked) return !0;
|
|
33670
|
-
var lineWidth = circleAttribute.lineWidth || themeAttribute.lineWidth
|
|
33671
|
-
|
|
33686
|
+
var lineWidth = circleAttribute.lineWidth || themeAttribute.lineWidth,
|
|
33687
|
+
pickStrokeBuffer = circleAttribute.pickStrokeBuffer || themeAttribute.pickStrokeBuffer;
|
|
33688
|
+
return pickContext.lineWidth = lineWidth + pickStrokeBuffer, picked = context.isPointInStroke(point.x, point.y), picked;
|
|
33672
33689
|
}), pickContext.highPerformanceRestore(), picked;
|
|
33673
33690
|
}
|
|
33674
33691
|
}]);
|
|
@@ -33719,8 +33736,9 @@
|
|
|
33719
33736
|
return !!picked || (picked = context.isPointInPath(point.x, point.y), picked);
|
|
33720
33737
|
}, function (context, symbolAttribute, themeAttribute) {
|
|
33721
33738
|
if (picked) return !0;
|
|
33722
|
-
var lineWidth = symbolAttribute.lineWidth || themeAttribute.lineWidth
|
|
33723
|
-
|
|
33739
|
+
var lineWidth = symbolAttribute.lineWidth || themeAttribute.lineWidth,
|
|
33740
|
+
pickStrokeBuffer = symbolAttribute.pickStrokeBuffer || themeAttribute.pickStrokeBuffer;
|
|
33741
|
+
return pickContext.lineWidth = lineWidth + pickStrokeBuffer, picked = context.isPointInStroke(point.x, point.y), picked;
|
|
33724
33742
|
}), pickContext.highPerformanceRestore(), picked;
|
|
33725
33743
|
}
|
|
33726
33744
|
}]);
|
|
@@ -33792,8 +33810,9 @@
|
|
|
33792
33810
|
return !!picked || (picked = context.isPointInPath(point.x, point.y), picked);
|
|
33793
33811
|
}, function (context, pathAttribute, themeAttribute) {
|
|
33794
33812
|
if (picked) return !0;
|
|
33795
|
-
var lineWidth = pathAttribute.lineWidth || themeAttribute.lineWidth
|
|
33796
|
-
|
|
33813
|
+
var lineWidth = pathAttribute.lineWidth || themeAttribute.lineWidth,
|
|
33814
|
+
pickStrokeBuffer = pathAttribute.pickStrokeBuffer || themeAttribute.pickStrokeBuffer;
|
|
33815
|
+
return pickContext.lineWidth = lineWidth + pickStrokeBuffer, picked = context.isPointInStroke(point.x, point.y), picked;
|
|
33797
33816
|
}), pickContext.highPerformanceRestore(), picked;
|
|
33798
33817
|
}
|
|
33799
33818
|
}]);
|
|
@@ -35094,7 +35113,7 @@
|
|
|
35094
35113
|
|
|
35095
35114
|
var roughModule = _roughModule;
|
|
35096
35115
|
|
|
35097
|
-
const version = "0.16.
|
|
35116
|
+
const version = "0.16.19-alpha.2";
|
|
35098
35117
|
loadAllModule(container);
|
|
35099
35118
|
|
|
35100
35119
|
exports.ACustomAnimate = ACustomAnimate;
|
|
@@ -35156,6 +35175,7 @@
|
|
|
35156
35175
|
exports.DefaultMatrixAllocate = DefaultMatrixAllocate;
|
|
35157
35176
|
exports.DefaultMorphingAnimateConfig = DefaultMorphingAnimateConfig;
|
|
35158
35177
|
exports.DefaultPathAttribute = DefaultPathAttribute;
|
|
35178
|
+
exports.DefaultPickStyle = DefaultPickStyle;
|
|
35159
35179
|
exports.DefaultPolygonAttribute = DefaultPolygonAttribute;
|
|
35160
35180
|
exports.DefaultRect3dAttribute = DefaultRect3dAttribute;
|
|
35161
35181
|
exports.DefaultRectAttribute = DefaultRectAttribute;
|