mayak-common-library 0.0.687 → 0.0.689

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/index.d.mts CHANGED
@@ -1037,7 +1037,11 @@ interface SliderContainerProps {
1037
1037
  buttonText?: string;
1038
1038
  buttonHref?: string;
1039
1039
  title?: string;
1040
- slidesView?: 3 | 4;
1040
+ slidesView?: 3 | 4 | 6;
1041
+ dots?: boolean;
1042
+ navigation?: boolean;
1043
+ loop?: boolean;
1044
+ fullScreen?: boolean;
1041
1045
  }
1042
1046
  declare const SliderContainer: FC<SliderContainerProps & PropsWithChildren>;
1043
1047
 
package/dist/index.d.ts CHANGED
@@ -1037,7 +1037,11 @@ interface SliderContainerProps {
1037
1037
  buttonText?: string;
1038
1038
  buttonHref?: string;
1039
1039
  title?: string;
1040
- slidesView?: 3 | 4;
1040
+ slidesView?: 3 | 4 | 6;
1041
+ dots?: boolean;
1042
+ navigation?: boolean;
1043
+ loop?: boolean;
1044
+ fullScreen?: boolean;
1041
1045
  }
1042
1046
  declare const SliderContainer: FC<SliderContainerProps & PropsWithChildren>;
1043
1047