vdc-editor 0.1.95 → 0.1.97

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.
@@ -180,6 +180,6 @@ export declare const useTiptapStore: () => {
180
180
  src: string;
181
181
  }[]>;
182
182
  setImageAttachment: (images: ImageAttachment[]) => void;
183
- getUpdatedContentBySuperText: (superTexts: ISuperText[], content: string) => string;
183
+ getUpdatedContentBySuperText: (superTexts: ISuperText[], content: string, formatToParagraph?: boolean) => string;
184
184
  };
185
185
  export {};
@@ -27,3 +27,4 @@ export declare function splitStringToLimitChunks(str: string, chunkSize: number)
27
27
  text: string;
28
28
  offset: number;
29
29
  }>;
30
+ export declare const parseLineBreaksToParagraph: (text: string) => string;