@plait/mind 0.18.0 → 0.19.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.
- package/constants/node-style.d.ts +7 -3
- package/esm2020/constants/node-style.mjs +5 -4
- package/esm2020/transforms/abstract-node.mjs +3 -3
- package/esm2020/utils/draw/node-shape.mjs +3 -5
- package/esm2020/utils/node-style/branch.mjs +3 -3
- package/esm2020/utils/node-style/shape.mjs +8 -1
- package/fesm2015/plait-mind.mjs +17 -10
- package/fesm2015/plait-mind.mjs.map +1 -1
- package/fesm2020/plait-mind.mjs +17 -10
- package/fesm2020/plait-mind.mjs.map +1 -1
- package/package.json +1 -1
- package/utils/node-style/shape.d.ts +1 -0
package/fesm2020/plait-mind.mjs
CHANGED
|
@@ -659,15 +659,16 @@ const adjustNodeToRoot = (board, node) => {
|
|
|
659
659
|
};
|
|
660
660
|
|
|
661
661
|
const DefaultAbstractNodeStyle = {
|
|
662
|
-
|
|
663
|
-
branchWidth: 2,
|
|
662
|
+
branch: { color: GRAY_COLOR, width: 2 },
|
|
664
663
|
shape: {
|
|
665
664
|
strokeColor: GRAY_COLOR,
|
|
666
665
|
strokeWidth: 2
|
|
667
666
|
}
|
|
668
667
|
};
|
|
669
668
|
const DefaultNodeStyle = {
|
|
670
|
-
|
|
669
|
+
branch: {
|
|
670
|
+
width: 3
|
|
671
|
+
},
|
|
671
672
|
shape: {
|
|
672
673
|
rectangleRadius: 4,
|
|
673
674
|
strokeWidth: 3,
|
|
@@ -868,13 +869,13 @@ const getAbstractBranchWidth = (board, element) => {
|
|
|
868
869
|
if (!isNullOrUndefined(element.branchWidth)) {
|
|
869
870
|
return element.branchWidth;
|
|
870
871
|
}
|
|
871
|
-
return DefaultAbstractNodeStyle.
|
|
872
|
+
return DefaultAbstractNodeStyle.branch.width;
|
|
872
873
|
};
|
|
873
874
|
const getAbstractBranchColor = (board, element) => {
|
|
874
875
|
if (element.branchColor) {
|
|
875
876
|
return element.branchColor;
|
|
876
877
|
}
|
|
877
|
-
return DefaultAbstractNodeStyle.
|
|
878
|
+
return DefaultAbstractNodeStyle.branch.color;
|
|
878
879
|
};
|
|
879
880
|
const getNextBranchColor = (board, root) => {
|
|
880
881
|
const index = root.children.length;
|
|
@@ -916,6 +917,13 @@ const getStrokeWidthByElement = (board, element) => {
|
|
|
916
917
|
(AbstractNode.isAbstract(element) ? DefaultAbstractNodeStyle.shape.strokeWidth : DefaultNodeStyle.shape.strokeWidth);
|
|
917
918
|
return strokeWidth;
|
|
918
919
|
};
|
|
920
|
+
const getFillByElement = (board, element) => {
|
|
921
|
+
if (element.fill) {
|
|
922
|
+
return element.fill;
|
|
923
|
+
}
|
|
924
|
+
const defaultRootFill = getMindThemeColor(board).rootFill;
|
|
925
|
+
return element.isRoot ? defaultRootFill : DefaultNodeStyle.shape.fill;
|
|
926
|
+
};
|
|
919
927
|
const getShapeByElement = (board, element) => {
|
|
920
928
|
const shape = getAvailableProperty(board, element, 'shape');
|
|
921
929
|
return shape || MindElementShape.roundRectangle;
|
|
@@ -2043,8 +2051,7 @@ function drawRoundRectangleByNode(board, node) {
|
|
|
2043
2051
|
return drawRoundRectangleByElement(board, rectangle, node.origin);
|
|
2044
2052
|
}
|
|
2045
2053
|
function drawRoundRectangleByElement(board, nodeRectangle, element) {
|
|
2046
|
-
const
|
|
2047
|
-
const fill = element.fill ? element.fill : element.isRoot ? defaultRootFill : DefaultNodeStyle.shape.fill;
|
|
2054
|
+
const fill = getFillByElement(board, element);
|
|
2048
2055
|
const stroke = getStrokeByMindElement(board, element);
|
|
2049
2056
|
const strokeWidth = getStrokeWidthByElement(board, element);
|
|
2050
2057
|
const nodeG = drawRoundRectangle(PlaitBoard.getRoughSVG(board), nodeRectangle.x, nodeRectangle.y, nodeRectangle.x + nodeRectangle.width, nodeRectangle.y + nodeRectangle.height, {
|
|
@@ -2225,8 +2232,8 @@ const setAbstractByElements = (board, groupParent, group) => {
|
|
|
2225
2232
|
};
|
|
2226
2233
|
const insertAbstractNode = (board, path, start, end) => {
|
|
2227
2234
|
const mindElement = createMindElement('概要', 28, 20, {
|
|
2228
|
-
strokeWidth: DefaultAbstractNodeStyle.
|
|
2229
|
-
branchWidth: DefaultAbstractNodeStyle.
|
|
2235
|
+
strokeWidth: DefaultAbstractNodeStyle.branch.width,
|
|
2236
|
+
branchWidth: DefaultAbstractNodeStyle.branch.width
|
|
2230
2237
|
});
|
|
2231
2238
|
mindElement.start = start;
|
|
2232
2239
|
mindElement.end = end;
|
|
@@ -4031,5 +4038,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImpor
|
|
|
4031
4038
|
* Generated bundle index. Do not edit.
|
|
4032
4039
|
*/
|
|
4033
4040
|
|
|
4034
|
-
export { ABSTRACT_HANDLE_COLOR, ABSTRACT_HANDLE_LENGTH, ABSTRACT_HANDLE_MASK_WIDTH, ABSTRACT_INCLUDED_OUTLINE_OFFSET, AbstractHandlePosition, AbstractResizeState, BASE, BRANCH_FONT_FAMILY, BRANCH_WIDTH, BaseDrawer, BranchShape, DEFAULT_FONT_FAMILY, DefaultAbstractNodeStyle, DefaultNodeStyle, ELEMENT_TO_NODE, EXTEND_DIAMETER, EXTEND_OFFSET, GRAY_COLOR, INHERIT_ATTRIBUTE_KEYS, IS_DRAGGING, LayoutDirection, LayoutDirectionsMap, MindColorfulThemeColor, MindDarkThemeColor, MindDefaultThemeColor, MindElement, MindElementShape, MindEmojiBaseComponent, MindImageBaseComponent, MindModule, MindNode, MindNodeComponent, MindPointerType, MindQueries, MindRetroThemeColor, MindSoftThemeColor, MindStarryThemeColor, MindThemeColor, MindThemeColors, MindTransforms, NODE_MIN_WIDTH, PRIMARY_COLOR, PlaitMind, PlaitMindComponent, QUICK_INSERT_CIRCLE_COLOR, QUICK_INSERT_CIRCLE_OFFSET, QUICK_INSERT_INNER_CROSS_COLOR, ROOT_TOPIC_FONT_SIZE, ROOT_TOPIC_HEIGHT, STROKE_WIDTH, TOPIC_COLOR, TOPIC_DEFAULT_MAX_WORD_COUNT, TOPIC_FONT_SIZE, TRANSPARENT, WithMindPluginKey, addActiveOnDragOrigin, adjustAbstractToNode, adjustNodeToRoot, adjustRootToNode, canSetAbstract, copyNewNode, correctLayoutByDirection, createDefaultMind, createEmptyMind, createMindElement, deleteElementHandleAbstract, deleteElementsHandleRightNodeCount, detectDropTarget, directionCorrector, directionDetector, divideElementByParent, drawFakeDragNode, drawFakeDropNode, editTopic, extractNodesText, findLastChild, findLocationLeftIndex, getAbstractBranchColor, getAbstractBranchWidth, getAbstractHandleRectangle, getAllowedDirection, getAvailableSubLayoutsByLayoutDirections, getBehindAbstracts, getBranchColorByMindElement, getBranchDirectionsByLayouts, getBranchShapeByMindElement, getBranchWidthByMindElement, getChildrenCount, getCorrespondingAbstract, getDefaultBranchColor, getDefaultBranchColorByIndex, getDefaultLayout, getEmojiForeignRectangle, getEmojiRectangle, getFirstLevelElement, getHitAbstractHandle, getImageForeignRectangle, getInCorrectLayoutDirection, getLayoutDirection$1 as getLayoutDirection, getLayoutReverseDirection, getLocationScope, getMindThemeColor, getNextBranchColor, getOverallAbstracts, getPathByDropTarget, getRectangleByElement, getRectangleByNode, getRectangleByResizingLocation, getRelativeStartEndByAbstractRef, getRootLayout, getShapeByElement, getStrokeByMindElement, getStrokeWidthByElement, getTopicRectangleByElement, getTopicRectangleByNode, getValidAbstractRefs, handleTouchedAbstract, hasAfterDraw, hasPreviousOrNextOfDropPath, insertElementHandleAbstract, insertElementHandleRightNodeCount, insertMindElement, isChildElement, isChildOfAbstract, isChildRight, isChildUp, isCorrectLayout, isDragging, isDropStandardRight, isHitEmojis, isHitImage, isHitMindElement, isInRightBranchOfStandardLayout, isMixedLayout, isSetAbstract, isValidTarget, isVirtualKey, removeActiveOnDragOrigin, separateChildren, setIsDragging, withMind, withMindExtend };
|
|
4041
|
+
export { ABSTRACT_HANDLE_COLOR, ABSTRACT_HANDLE_LENGTH, ABSTRACT_HANDLE_MASK_WIDTH, ABSTRACT_INCLUDED_OUTLINE_OFFSET, AbstractHandlePosition, AbstractResizeState, BASE, BRANCH_FONT_FAMILY, BRANCH_WIDTH, BaseDrawer, BranchShape, DEFAULT_FONT_FAMILY, DefaultAbstractNodeStyle, DefaultNodeStyle, ELEMENT_TO_NODE, EXTEND_DIAMETER, EXTEND_OFFSET, GRAY_COLOR, INHERIT_ATTRIBUTE_KEYS, IS_DRAGGING, LayoutDirection, LayoutDirectionsMap, MindColorfulThemeColor, MindDarkThemeColor, MindDefaultThemeColor, MindElement, MindElementShape, MindEmojiBaseComponent, MindImageBaseComponent, MindModule, MindNode, MindNodeComponent, MindPointerType, MindQueries, MindRetroThemeColor, MindSoftThemeColor, MindStarryThemeColor, MindThemeColor, MindThemeColors, MindTransforms, NODE_MIN_WIDTH, PRIMARY_COLOR, PlaitMind, PlaitMindComponent, QUICK_INSERT_CIRCLE_COLOR, QUICK_INSERT_CIRCLE_OFFSET, QUICK_INSERT_INNER_CROSS_COLOR, ROOT_TOPIC_FONT_SIZE, ROOT_TOPIC_HEIGHT, STROKE_WIDTH, TOPIC_COLOR, TOPIC_DEFAULT_MAX_WORD_COUNT, TOPIC_FONT_SIZE, TRANSPARENT, WithMindPluginKey, addActiveOnDragOrigin, adjustAbstractToNode, adjustNodeToRoot, adjustRootToNode, canSetAbstract, copyNewNode, correctLayoutByDirection, createDefaultMind, createEmptyMind, createMindElement, deleteElementHandleAbstract, deleteElementsHandleRightNodeCount, detectDropTarget, directionCorrector, directionDetector, divideElementByParent, drawFakeDragNode, drawFakeDropNode, editTopic, extractNodesText, findLastChild, findLocationLeftIndex, getAbstractBranchColor, getAbstractBranchWidth, getAbstractHandleRectangle, getAllowedDirection, getAvailableSubLayoutsByLayoutDirections, getBehindAbstracts, getBranchColorByMindElement, getBranchDirectionsByLayouts, getBranchShapeByMindElement, getBranchWidthByMindElement, getChildrenCount, getCorrespondingAbstract, getDefaultBranchColor, getDefaultBranchColorByIndex, getDefaultLayout, getEmojiForeignRectangle, getEmojiRectangle, getFillByElement, getFirstLevelElement, getHitAbstractHandle, getImageForeignRectangle, getInCorrectLayoutDirection, getLayoutDirection$1 as getLayoutDirection, getLayoutReverseDirection, getLocationScope, getMindThemeColor, getNextBranchColor, getOverallAbstracts, getPathByDropTarget, getRectangleByElement, getRectangleByNode, getRectangleByResizingLocation, getRelativeStartEndByAbstractRef, getRootLayout, getShapeByElement, getStrokeByMindElement, getStrokeWidthByElement, getTopicRectangleByElement, getTopicRectangleByNode, getValidAbstractRefs, handleTouchedAbstract, hasAfterDraw, hasPreviousOrNextOfDropPath, insertElementHandleAbstract, insertElementHandleRightNodeCount, insertMindElement, isChildElement, isChildOfAbstract, isChildRight, isChildUp, isCorrectLayout, isDragging, isDropStandardRight, isHitEmojis, isHitImage, isHitMindElement, isInRightBranchOfStandardLayout, isMixedLayout, isSetAbstract, isValidTarget, isVirtualKey, removeActiveOnDragOrigin, separateChildren, setIsDragging, withMind, withMindExtend };
|
|
4035
4042
|
//# sourceMappingURL=plait-mind.mjs.map
|