@select-org/select-post-builder 1.1.36 → 1.1.37

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.ts CHANGED
@@ -385,6 +385,11 @@ declare module '@tiptap/core' {
385
385
  * Delete link preview node by uid
386
386
  */
387
387
  deleteLinkPreviewByUid: (uid: string) => ReturnType;
388
+ /**
389
+ * Insert a link preview node directly after the top-level block containing
390
+ * the link mark with the given uid. Skips nested content (depth > 1).
391
+ */
392
+ insertLinkPreviewAfterLink: (uid: string, attrs: LinkPreviewAttributes) => ReturnType;
388
393
  };
389
394
  }
390
395
  }