@flowgram.ai/document 0.1.26 → 0.1.28

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/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;
@@ -1139,6 +1141,7 @@ declare enum FlowNodeBaseType {
1139
1141
  SUB_CANVAS = "subCanvas"
1140
1142
  }
1141
1143
  declare enum FlowNodeSplitType {
1144
+ SIMPLE_SPLIT = "simpleSplit",
1142
1145
  DYNAMIC_SPLIT = "dynamicSplit",
1143
1146
  STATIC_SPLIT = "staticSplit"
1144
1147
  }
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;
@@ -1139,6 +1141,7 @@ declare enum FlowNodeBaseType {
1139
1141
  SUB_CANVAS = "subCanvas"
1140
1142
  }
1141
1143
  declare enum FlowNodeSplitType {
1144
+ SIMPLE_SPLIT = "simpleSplit",
1142
1145
  DYNAMIC_SPLIT = "dynamicSplit",
1143
1146
  STATIC_SPLIT = "staticSplit"
1144
1147
  }
package/dist/index.js CHANGED
@@ -90,6 +90,7 @@ var FlowNodeBaseType = /* @__PURE__ */ ((FlowNodeBaseType2) => {
90
90
  return FlowNodeBaseType2;
91
91
  })(FlowNodeBaseType || {});
92
92
  var FlowNodeSplitType = /* @__PURE__ */ ((FlowNodeSplitType2) => {
93
+ FlowNodeSplitType2["SIMPLE_SPLIT"] = "simpleSplit";
93
94
  FlowNodeSplitType2["DYNAMIC_SPLIT"] = "dynamicSplit";
94
95
  FlowNodeSplitType2["STATIC_SPLIT"] = "staticSplit";
95
96
  return FlowNodeSplitType2;