@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 +5 -0
- package/dist/post-builder.cjs.js +15 -15
- package/dist/post-builder.css +1 -1
- package/dist/post-builder.js +2586 -2429
- package/package.json +1 -1
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
|
}
|