@kinxcdn/commerce-player 1.5.1 → 1.5.3
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/commerce-player.min.js +6 -6
- package/dist/esm/index.js +4 -4
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -173,12 +173,14 @@ declare const WidgetPlayer: React.FC<WidgetPlayerInputBase>;
|
|
|
173
173
|
interface CollectionShowcaseProps {
|
|
174
174
|
collectionId: string;
|
|
175
175
|
aspectRatio?: string;
|
|
176
|
+
isPreview?: boolean;
|
|
176
177
|
}
|
|
177
178
|
declare const CollectionShowcase: React.FC<CollectionShowcaseProps>;
|
|
178
179
|
|
|
179
180
|
type FloatingPlayerProps = {
|
|
180
181
|
shortsId: string;
|
|
181
182
|
type: "view" | "shopping";
|
|
183
|
+
isPreview?: boolean;
|
|
182
184
|
};
|
|
183
185
|
declare const FloatingPlayerIndex: React.FC<FloatingPlayerProps>;
|
|
184
186
|
|