@flowgram.ai/document 0.1.17 → 0.1.21
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/dist/esm/index.js +6 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -156,6 +156,11 @@ declare const ConstantKeys: {
|
|
|
156
156
|
* 线条、label 激活后的颜色
|
|
157
157
|
*/
|
|
158
158
|
BASE_ACTIVATED_COLOR: string;
|
|
159
|
+
/**
|
|
160
|
+
* Branch bottom margin
|
|
161
|
+
* 分支下边距
|
|
162
|
+
*/
|
|
163
|
+
INLINE_BLOCKS_PADDING_TOP: string;
|
|
159
164
|
NODE_SPACING: string;
|
|
160
165
|
ROUNDED_LINE_X_RADIUS: string;
|
|
161
166
|
ROUNDED_LINE_Y_RADIUS: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -156,6 +156,11 @@ declare const ConstantKeys: {
|
|
|
156
156
|
* 线条、label 激活后的颜色
|
|
157
157
|
*/
|
|
158
158
|
BASE_ACTIVATED_COLOR: string;
|
|
159
|
+
/**
|
|
160
|
+
* Branch bottom margin
|
|
161
|
+
* 分支下边距
|
|
162
|
+
*/
|
|
163
|
+
INLINE_BLOCKS_PADDING_TOP: string;
|
|
159
164
|
NODE_SPACING: string;
|
|
160
165
|
ROUNDED_LINE_X_RADIUS: string;
|
|
161
166
|
ROUNDED_LINE_Y_RADIUS: string;
|
package/dist/index.js
CHANGED
|
@@ -1660,7 +1660,12 @@ var ConstantKeys = {
|
|
|
1660
1660
|
/***
|
|
1661
1661
|
* 线条、label 激活后的颜色
|
|
1662
1662
|
*/
|
|
1663
|
-
BASE_ACTIVATED_COLOR: "BASE_ACTIVATED_COLOR"
|
|
1663
|
+
BASE_ACTIVATED_COLOR: "BASE_ACTIVATED_COLOR",
|
|
1664
|
+
/**
|
|
1665
|
+
* Branch bottom margin
|
|
1666
|
+
* 分支下边距
|
|
1667
|
+
*/
|
|
1668
|
+
INLINE_BLOCKS_PADDING_TOP: "INLINE_BLOCKS_PADDING_TOP"
|
|
1664
1669
|
};
|
|
1665
1670
|
|
|
1666
1671
|
// src/flow-document-contribution.ts
|