@embedpdf-editor/vue3-chapter-viewer 1.1.3 → 1.1.4
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +154 -127
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -532,7 +532,9 @@ declare interface ChapterViewerZoomConfig {
|
|
|
532
532
|
}
|
|
533
533
|
|
|
534
534
|
/** 将划选文本写入系统剪贴板(Clipboard API,失败时回退 execCommand) */
|
|
535
|
-
export declare function copyTextToClipboard(text: string
|
|
535
|
+
export declare function copyTextToClipboard(text: string, options?: {
|
|
536
|
+
toastMessage?: string | false;
|
|
537
|
+
}): Promise<boolean>;
|
|
536
538
|
|
|
537
539
|
/** 生成插件列表 + 规范化后的 features(供 EmbedPDF / PdfChapterViewport 使用) */
|
|
538
540
|
export declare function createChapterViewerBundle(input: ChapterViewerOptions | CreateChapterViewerEditorOptionsInput): {
|