@logicflow/core 2.0.14 → 2.0.15
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/.turbo/turbo-build$colon$dev.log +2 -2
- package/.turbo/turbo-build.log +5 -5
- package/CHANGELOG.md +6 -0
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/es/view/edge/BaseEdge.js +1 -1
- package/lib/view/edge/BaseEdge.js +1 -1
- package/package.json +1 -1
- package/src/view/edge/BaseEdge.tsx +1 -1
- package/stats.html +1 -1
package/es/view/edge/BaseEdge.js
CHANGED
|
@@ -331,7 +331,7 @@ var BaseEdge = /** @class */ (function (_super) {
|
|
|
331
331
|
*/
|
|
332
332
|
BaseEdge.prototype.getStartArrow = function () {
|
|
333
333
|
var model = this.props.model;
|
|
334
|
-
var _a = model.getArrowStyle(), stroke = _a.stroke, strokeWidth = _a.strokeWidth, offset = _a.offset, verticalLength = _a.verticalLength, _b = _a.startArrowType, startArrowType = _b === void 0 ? '
|
|
334
|
+
var _a = model.getArrowStyle(), stroke = _a.stroke, strokeWidth = _a.strokeWidth, offset = _a.offset, verticalLength = _a.verticalLength, _b = _a.startArrowType, startArrowType = _b === void 0 ? 'none' : _b, strokeLinecap = _a.strokeLinecap, strokeLinejoin = _a.strokeLinejoin;
|
|
335
335
|
return this.getArrowPath(startArrowType, {
|
|
336
336
|
stroke: stroke,
|
|
337
337
|
strokeWidth: strokeWidth,
|
|
@@ -357,7 +357,7 @@ var BaseEdge = /** @class */ (function (_super) {
|
|
|
357
357
|
*/
|
|
358
358
|
BaseEdge.prototype.getStartArrow = function () {
|
|
359
359
|
var model = this.props.model;
|
|
360
|
-
var _a = model.getArrowStyle(), stroke = _a.stroke, strokeWidth = _a.strokeWidth, offset = _a.offset, verticalLength = _a.verticalLength, _b = _a.startArrowType, startArrowType = _b === void 0 ? '
|
|
360
|
+
var _a = model.getArrowStyle(), stroke = _a.stroke, strokeWidth = _a.strokeWidth, offset = _a.offset, verticalLength = _a.verticalLength, _b = _a.startArrowType, startArrowType = _b === void 0 ? 'none' : _b, strokeLinecap = _a.strokeLinecap, strokeLinejoin = _a.strokeLinejoin;
|
|
361
361
|
return this.getArrowPath(startArrowType, {
|
|
362
362
|
stroke: stroke,
|
|
363
363
|
strokeWidth: strokeWidth,
|
package/package.json
CHANGED