@bluepic/embed 0.4.0-next.102 → 0.4.0-next.103
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 +69 -69
- package/dist/bluepic-embed.umd.js +78 -78
- package/dist/embed/embed.d.ts +14 -0
- package/dist/main.cjs +68 -68
- package/dist/main.mjs +7512 -7272
- package/dist/util/gallery.d.ts +66 -2
- package/package.json +5 -4
package/dist/embed/embed.d.ts
CHANGED
|
@@ -8596,6 +8596,7 @@ export declare class BluepicEmbed extends EventTarget {
|
|
|
8596
8596
|
logo?: string | undefined;
|
|
8597
8597
|
title?: string | undefined;
|
|
8598
8598
|
customStyle?: Record<string, string> | undefined;
|
|
8599
|
+
categoryOrder?: string[] | undefined;
|
|
8599
8600
|
captions?: Record<string, string> | undefined;
|
|
8600
8601
|
categories?: Record<string, string> | undefined;
|
|
8601
8602
|
};
|
|
@@ -8618,6 +8619,12 @@ export declare class BluepicEmbed extends EventTarget {
|
|
|
8618
8619
|
createdAt: string;
|
|
8619
8620
|
updatedAt: string;
|
|
8620
8621
|
pinnedBy: string[];
|
|
8622
|
+
assets?: {
|
|
8623
|
+
assetId: string;
|
|
8624
|
+
category?: string | null | undefined;
|
|
8625
|
+
title?: string | null | undefined;
|
|
8626
|
+
description?: string | null | undefined;
|
|
8627
|
+
}[] | undefined;
|
|
8621
8628
|
} | undefined, {
|
|
8622
8629
|
id: number;
|
|
8623
8630
|
uid: string;
|
|
@@ -8665,6 +8672,7 @@ export declare class BluepicEmbed extends EventTarget {
|
|
|
8665
8672
|
logo?: string | undefined;
|
|
8666
8673
|
title?: string | undefined;
|
|
8667
8674
|
customStyle?: Record<string, string> | undefined;
|
|
8675
|
+
categoryOrder?: string[] | undefined;
|
|
8668
8676
|
captions?: Record<string, string> | undefined;
|
|
8669
8677
|
categories?: Record<string, string> | undefined;
|
|
8670
8678
|
};
|
|
@@ -8687,6 +8695,12 @@ export declare class BluepicEmbed extends EventTarget {
|
|
|
8687
8695
|
createdAt: string;
|
|
8688
8696
|
updatedAt: string;
|
|
8689
8697
|
pinnedBy: string[];
|
|
8698
|
+
assets?: {
|
|
8699
|
+
assetId: string;
|
|
8700
|
+
category?: string | null | undefined;
|
|
8701
|
+
title?: string | null | undefined;
|
|
8702
|
+
description?: string | null | undefined;
|
|
8703
|
+
}[] | undefined;
|
|
8690
8704
|
} | undefined>;
|
|
8691
8705
|
bxCoreVersion: Ref<string | undefined, string | undefined>;
|
|
8692
8706
|
allowPanAndZoom: Ref<boolean, boolean>;
|