@kinxcdn/commerce-player 1.3.3 → 1.3.4
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 +2 -2
- package/dist/esm/index.js +3 -3
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { MobilePlayerProps } from '@src/components/MobilePlayer';
|
|
3
|
-
import {
|
|
3
|
+
import { WidgetPlayerInputBase } from '@src/components/WidgetPlayer/WidgetPlayer.types';
|
|
4
4
|
|
|
5
5
|
interface Collection {
|
|
6
6
|
count: number;
|
|
@@ -165,6 +165,6 @@ declare const ShoppingPlayer: React.FC<ShoppingPlayerProps>;
|
|
|
165
165
|
|
|
166
166
|
declare const PreviewPlayer: React.FC<MobilePlayerProps>;
|
|
167
167
|
|
|
168
|
-
declare const WidgetPlayer: React.FC<
|
|
168
|
+
declare const WidgetPlayer: React.FC<WidgetPlayerInputBase>;
|
|
169
169
|
|
|
170
170
|
export { PreviewPlayer, ShoppingPlayer, ViewPlayer, WidgetPlayer };
|