oddsgate-ds 1.0.63 → 1.0.64

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.
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
2
  import { ISlider } from './Slider.interface';
3
- declare const Slider: ({ arrows, dots, slidesToShow, slidesToScroll, infinite, autoplay, spacing, mediaQueries, className, style, children, onSlide, ...props }: ISlider) => React.JSX.Element;
3
+ declare const Slider: ({ arrows, dots, slidesToShow, slidesToScroll, infinite, autoplay, spacing, mediaQueries, mobileOnly, className, style, children, onSlide, ...props }: ISlider) => React.JSX.Element;
4
4
  export default Slider;
@@ -9,6 +9,8 @@ export interface ISlider {
9
9
  autoplay?: boolean;
10
10
  spacing?: string;
11
11
  mediaQueries?: object;
12
+ $mobileOnly?: boolean;
13
+ mobileOnly?: boolean;
12
14
  onSlide?: () => void;
13
15
  className?: string;
14
16
  style?: CSSProperties;
@@ -3,3 +3,4 @@ import { ISlider } from './Slider.interface';
3
3
  declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react").ReactRenderer, import("@storybook/types").Args>;
4
4
  export default _default;
5
5
  export declare const Simple: StoryObj<ISlider>;
6
+ export declare const MobileOnly: StoryObj<ISlider>;