@flowgram.ai/document 0.1.26 → 0.1.27
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.map +1 -1
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -805,6 +805,7 @@ interface FlowTransitionLine {
|
|
|
805
805
|
activated?: boolean;
|
|
806
806
|
side?: LABEL_SIDE_TYPE;
|
|
807
807
|
style?: React.CSSProperties;
|
|
808
|
+
lineId?: string;
|
|
808
809
|
}
|
|
809
810
|
declare enum FlowTransitionLabelEnum {
|
|
810
811
|
ADDER_LABEL = 0,
|
|
@@ -821,6 +822,7 @@ interface FlowTransitionLabel {
|
|
|
821
822
|
width?: number;
|
|
822
823
|
rotate?: string;
|
|
823
824
|
props?: Record<string, any>;
|
|
825
|
+
labelId?: string;
|
|
824
826
|
}
|
|
825
827
|
interface AdderProps {
|
|
826
828
|
node: FlowNodeEntity;
|
package/dist/index.d.ts
CHANGED
|
@@ -805,6 +805,7 @@ interface FlowTransitionLine {
|
|
|
805
805
|
activated?: boolean;
|
|
806
806
|
side?: LABEL_SIDE_TYPE;
|
|
807
807
|
style?: React.CSSProperties;
|
|
808
|
+
lineId?: string;
|
|
808
809
|
}
|
|
809
810
|
declare enum FlowTransitionLabelEnum {
|
|
810
811
|
ADDER_LABEL = 0,
|
|
@@ -821,6 +822,7 @@ interface FlowTransitionLabel {
|
|
|
821
822
|
width?: number;
|
|
822
823
|
rotate?: string;
|
|
823
824
|
props?: Record<string, any>;
|
|
825
|
+
labelId?: string;
|
|
824
826
|
}
|
|
825
827
|
interface AdderProps {
|
|
826
828
|
node: FlowNodeEntity;
|