@bluepic/embed 0.4.0-next.127 → 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 +135 -120
- package/dist/bluepic-embed.umd.js +135 -120
- package/dist/components/AssetViewer/AssetViewer.vue.d.ts +6 -0
- package/dist/embed/embed.d.ts +2 -2
- package/dist/main.cjs +92 -92
- package/dist/main.mjs +15047 -14738
- 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;
|
package/dist/embed/embed.d.ts
CHANGED
|
@@ -8603,7 +8603,7 @@ export declare class BluepicEmbed extends EventTarget {
|
|
|
8603
8603
|
surface?: string | undefined;
|
|
8604
8604
|
primary?: string | undefined;
|
|
8605
8605
|
contrast?: "normal" | "high" | undefined;
|
|
8606
|
-
radius?: "none" | "
|
|
8606
|
+
radius?: "none" | "md" | "sm" | "lg" | "full" | undefined;
|
|
8607
8607
|
font?: {
|
|
8608
8608
|
size?: number | undefined;
|
|
8609
8609
|
} | undefined;
|
|
@@ -8736,7 +8736,7 @@ export declare class BluepicEmbed extends EventTarget {
|
|
|
8736
8736
|
surface?: string | undefined;
|
|
8737
8737
|
primary?: string | undefined;
|
|
8738
8738
|
contrast?: "normal" | "high" | undefined;
|
|
8739
|
-
radius?: "none" | "
|
|
8739
|
+
radius?: "none" | "md" | "sm" | "lg" | "full" | undefined;
|
|
8740
8740
|
font?: {
|
|
8741
8741
|
size?: number | undefined;
|
|
8742
8742
|
} | undefined;
|