@bluepic/embed 0.4.0-next.104 → 0.4.0-next.106
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 +80 -80
- package/dist/bluepic-embed.umd.js +80 -80
- package/dist/embed/embed.d.ts +8 -6
- package/dist/main.cjs +69 -69
- package/dist/main.mjs +7817 -7727
- package/package.json +3 -3
package/dist/embed/embed.d.ts
CHANGED
|
@@ -8596,9 +8596,11 @@ 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;
|
|
8600
8599
|
captions?: Record<string, string> | undefined;
|
|
8601
|
-
categories?:
|
|
8600
|
+
categories?: {
|
|
8601
|
+
label: string;
|
|
8602
|
+
items: string[];
|
|
8603
|
+
}[] | undefined;
|
|
8602
8604
|
};
|
|
8603
8605
|
landingPage: {
|
|
8604
8606
|
headerTitle?: string | undefined;
|
|
@@ -8621,7 +8623,6 @@ export declare class BluepicEmbed extends EventTarget {
|
|
|
8621
8623
|
pinnedBy: string[];
|
|
8622
8624
|
assets?: {
|
|
8623
8625
|
assetId: string;
|
|
8624
|
-
category?: string | null | undefined;
|
|
8625
8626
|
title?: string | null | undefined;
|
|
8626
8627
|
description?: string | null | undefined;
|
|
8627
8628
|
}[] | undefined;
|
|
@@ -8672,9 +8673,11 @@ export declare class BluepicEmbed extends EventTarget {
|
|
|
8672
8673
|
logo?: string | undefined;
|
|
8673
8674
|
title?: string | undefined;
|
|
8674
8675
|
customStyle?: Record<string, string> | undefined;
|
|
8675
|
-
categoryOrder?: string[] | undefined;
|
|
8676
8676
|
captions?: Record<string, string> | undefined;
|
|
8677
|
-
categories?:
|
|
8677
|
+
categories?: {
|
|
8678
|
+
label: string;
|
|
8679
|
+
items: string[];
|
|
8680
|
+
}[] | undefined;
|
|
8678
8681
|
};
|
|
8679
8682
|
landingPage: {
|
|
8680
8683
|
headerTitle?: string | undefined;
|
|
@@ -8697,7 +8700,6 @@ export declare class BluepicEmbed extends EventTarget {
|
|
|
8697
8700
|
pinnedBy: string[];
|
|
8698
8701
|
assets?: {
|
|
8699
8702
|
assetId: string;
|
|
8700
|
-
category?: string | null | undefined;
|
|
8701
8703
|
title?: string | null | undefined;
|
|
8702
8704
|
description?: string | null | undefined;
|
|
8703
8705
|
}[] | undefined;
|