@useblu/ocean-react 1.25.0 → 1.25.2

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/index.js CHANGED
@@ -4875,24 +4875,28 @@ exports["default"] = _default;
4875
4875
  var Slider = /*@__PURE__*/getDefaultExportFromCjs(lib$1);
4876
4876
 
4877
4877
  var Carousel = function (_a) {
4878
- var _b = _a.columns, columns = _b === void 0 ? 1 : _b, _c = _a.infinite, infinite = _c === void 0 ? false : _c, children = _a.children;
4878
+ var _b = _a.columns, columns = _b === void 0 ? 1 : _b, _c = _a.infinite, infinite = _c === void 0 ? false : _c, _d = _a.autoplay, autoplay = _d === void 0 ? false : _d, children = _a.children;
4879
4879
  var columnsAsNumber = Number(columns);
4880
4880
  var appendDots = function (dots) { return (e__default['default'].createElement(CarouselDotList, { dots: dots })); };
4881
4881
  var settings = {
4882
4882
  dots: true,
4883
4883
  infinite: infinite,
4884
- speed: 500,
4884
+ speed: 1500,
4885
4885
  slidesToShow: columnsAsNumber,
4886
4886
  slidesToScroll: columnsAsNumber,
4887
4887
  prevArrow: e__default['default'].createElement(Z, null),
4888
4888
  nextArrow: e__default['default'].createElement(q$1, null),
4889
4889
  appendDots: appendDots,
4890
+ autoplay: autoplay,
4891
+ autoplaySpeed: 7000,
4890
4892
  responsive: [
4891
4893
  {
4892
4894
  breakpoint: 768,
4893
4895
  settings: {
4896
+ autoplay: false,
4894
4897
  slidesToShow: 1,
4895
4898
  slidesToScroll: 1,
4899
+ speed: 1500,
4896
4900
  },
4897
4901
  },
4898
4902
  ],