@trafilea/afrodita-components 6.21.4 → 6.21.5
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/build/index.d.ts +4 -0
- package/build/index.esm.js +300 -279
- package/build/index.esm.js.map +1 -1
- package/build/index.js +300 -279
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -2737,6 +2737,7 @@ declare type ProductGalleryProps = {
|
|
|
2737
2737
|
hasOverflowArrows?: boolean;
|
|
2738
2738
|
withZoom?: boolean;
|
|
2739
2739
|
hasToPreserveOrder?: boolean;
|
|
2740
|
+
isRatioSquare?: boolean;
|
|
2740
2741
|
};
|
|
2741
2742
|
declare const ProductGallery: React.FC<ProductGalleryProps>;
|
|
2742
2743
|
|
|
@@ -3560,6 +3561,7 @@ declare type TimerProps = Partial<TimeProps> & {
|
|
|
3560
3561
|
showHours?: boolean;
|
|
3561
3562
|
timerColor?: string;
|
|
3562
3563
|
countdown?: number;
|
|
3564
|
+
template?: boolean;
|
|
3563
3565
|
};
|
|
3564
3566
|
declare const Timer: React.FC<TimerProps>;
|
|
3565
3567
|
|
|
@@ -3656,6 +3658,8 @@ declare type HurryUpProps = {
|
|
|
3656
3658
|
textPosition?: 'left' | 'right' | 'center';
|
|
3657
3659
|
clockPosition?: 'left' | 'right';
|
|
3658
3660
|
countdown?: number;
|
|
3661
|
+
template?: boolean;
|
|
3662
|
+
hurryUpTextColor?: string;
|
|
3659
3663
|
} & Partial<TimerProps>;
|
|
3660
3664
|
declare const HurryUp: React__default.FC<HurryUpProps>;
|
|
3661
3665
|
|