oddsgate-ds 1.0.150 → 1.0.151

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 { IMarquee } from './Marquee.interface';
2
2
  import React from 'react';
3
- declare const Marquee: ({ text, className, onClick, ...props }: IMarquee) => React.JSX.Element;
3
+ declare const Marquee: ({ text, className, onClick, repeat, ...props }: IMarquee) => React.JSX.Element;
4
4
  export default Marquee;
@@ -1,6 +1,7 @@
1
1
  import { CSSProperties } from 'react';
2
2
  export type IMarquee = {
3
3
  text?: string;
4
+ repeat?: number;
4
5
  className?: string;
5
6
  style?: CSSProperties;
6
7
  onClick?: () => void;
package/dist/types.d.ts CHANGED
@@ -378,12 +378,13 @@ declare const SocialLinks: ({ variant, socials, className, style, ...props }: IS
378
378
 
379
379
  type IMarquee = {
380
380
  text?: string;
381
+ repeat?: number;
381
382
  className?: string;
382
383
  style?: CSSProperties;
383
384
  onClick?: () => void;
384
385
  };
385
386
 
386
- declare const Marquee: ({ text, className, onClick, ...props }: IMarquee) => React__default.JSX.Element;
387
+ declare const Marquee: ({ text, className, onClick, repeat, ...props }: IMarquee) => React__default.JSX.Element;
387
388
 
388
389
  type Direction = 'left' | 'right' | 'up' | 'down';
389
390
  interface ICardMarquee {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oddsgate-ds",
3
- "version": "1.0.150",
3
+ "version": "1.0.151",
4
4
  "description": "Miew theme component library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",