@bluepic/embed 0.4.0-next.128 → 0.4.0-next.129
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/bluepic-embed.iife.js +132 -117
- package/dist/bluepic-embed.umd.js +132 -117
- package/dist/components/AssetViewer/AssetViewer.vue.d.ts +6 -0
- package/dist/main.cjs +71 -71
- package/dist/main.mjs +9249 -9095
- package/dist/markdown-it-BJC5HRVJ.js +3836 -0
- package/dist/markdown-it-D-2rX95W.cjs +16 -0
- package/dist/style.css +1 -1
- package/dist/util/gallery.d.ts +1 -0
- package/package.json +7 -3
|
@@ -32,6 +32,12 @@ export type ViewerAsset = {
|
|
|
32
32
|
pageCount?: number;
|
|
33
33
|
/** Gated URL. Used both to fetch bytes for rasterization and to display media. */
|
|
34
34
|
downloadUrl: string;
|
|
35
|
+
/**
|
|
36
|
+
* A paginated, browser-renderable form: the file for a PDF, the server-made
|
|
37
|
+
* PDF derivative for Office/ODF. Its presence is what turns a .docx into
|
|
38
|
+
* something with pages instead of a download button.
|
|
39
|
+
*/
|
|
40
|
+
documentUrl?: string;
|
|
35
41
|
};
|
|
36
42
|
type __VLS_Props = {
|
|
37
43
|
asset: ViewerAsset;
|