oddsgate-ds 1.0.25 → 1.0.27

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.
Files changed (42) hide show
  1. package/dist/cjs/index.js +5 -5
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/components/molecules/ProductCard/ProductCard.component.d.ts +4 -0
  4. package/dist/cjs/types/components/molecules/ProductCard/ProductCard.interface.d.ts +6 -0
  5. package/dist/{esm/types/components/molecules/ProjectCard/ProjectCard.stories.d.ts → cjs/types/components/molecules/ProductCard/ProductCard.stories.d.ts} +2 -2
  6. package/dist/cjs/types/components/molecules/ProductCard/ProductCard.theme.d.ts +4 -0
  7. package/dist/cjs/types/components/molecules/ProductCard/index.d.ts +1 -0
  8. package/dist/cjs/types/index.d.ts +1 -1
  9. package/dist/esm/index.js +5 -5
  10. package/dist/esm/index.js.map +1 -1
  11. package/dist/esm/types/components/molecules/ProductCard/ProductCard.component.d.ts +4 -0
  12. package/dist/esm/types/components/molecules/ProductCard/ProductCard.interface.d.ts +6 -0
  13. package/dist/{cjs/types/components/molecules/ProjectCard/ProjectCard.stories.d.ts → esm/types/components/molecules/ProductCard/ProductCard.stories.d.ts} +2 -2
  14. package/dist/esm/types/components/molecules/ProductCard/ProductCard.theme.d.ts +4 -0
  15. package/dist/esm/types/components/molecules/ProductCard/index.d.ts +1 -0
  16. package/dist/esm/types/index.d.ts +1 -1
  17. package/dist/types.d.ts +4 -6
  18. package/package.json +1 -1
  19. package/src/components/atoms/Button/Button.theme.ts +2 -2
  20. package/src/components/atoms/SocialLinks/SocialLinks.theme.ts +1 -1
  21. package/src/components/molecules/ProductCard/ProductCard.component.tsx +44 -0
  22. package/src/components/molecules/ProductCard/ProductCard.interface.ts +6 -0
  23. package/src/components/molecules/ProductCard/ProductCard.stories.tsx +33 -0
  24. package/src/components/molecules/ProductCard/ProductCard.theme.ts +24 -0
  25. package/src/components/molecules/ProductCard/index.ts +1 -0
  26. package/src/components/organisms/CircularSlider/CircularSlider.component.tsx +2 -2
  27. package/src/components/organisms/CircularSlider/CircularSlider.theme.ts +4 -10
  28. package/src/index.ts +1 -1
  29. package/src/styles/utilities.ts +7 -0
  30. package/dist/cjs/types/components/molecules/ProjectCard/ProjectCard.component.d.ts +0 -4
  31. package/dist/cjs/types/components/molecules/ProjectCard/ProjectCard.interface.d.ts +0 -8
  32. package/dist/cjs/types/components/molecules/ProjectCard/ProjectCard.theme.d.ts +0 -3
  33. package/dist/cjs/types/components/molecules/ProjectCard/index.d.ts +0 -1
  34. package/dist/esm/types/components/molecules/ProjectCard/ProjectCard.component.d.ts +0 -4
  35. package/dist/esm/types/components/molecules/ProjectCard/ProjectCard.interface.d.ts +0 -8
  36. package/dist/esm/types/components/molecules/ProjectCard/ProjectCard.theme.d.ts +0 -3
  37. package/dist/esm/types/components/molecules/ProjectCard/index.d.ts +0 -1
  38. package/src/components/molecules/ProjectCard/ProjectCard.component.tsx +0 -45
  39. package/src/components/molecules/ProjectCard/ProjectCard.interface.ts +0 -8
  40. package/src/components/molecules/ProjectCard/ProjectCard.stories.tsx +0 -72
  41. package/src/components/molecules/ProjectCard/ProjectCard.theme.ts +0 -61
  42. package/src/components/molecules/ProjectCard/index.ts +0 -1
@@ -0,0 +1,4 @@
1
+ import { IProductCard } from './ProductCard.interface';
2
+ import React from 'react';
3
+ declare const ProductCard: ({ title, imageElement, description, className, style, ...props }: IProductCard) => React.JSX.Element;
4
+ export default ProductCard;
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { ICard } from '../Card/Card.interface';
3
+ export interface IProductCard extends ICard {
4
+ title?: string;
5
+ description?: string | React.ReactElement;
6
+ }
@@ -1,5 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/react';
2
- import { IProjectCard } from './ProjectCard.interface';
2
+ import { IProductCard } from './ProductCard.interface';
3
3
  declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react").ReactRenderer, import("@storybook/types").Args>;
4
4
  export default _default;
5
- export declare const Simple: StoryObj<IProjectCard>;
5
+ export declare const Simple: StoryObj<IProductCard>;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IProductCard } from './ProductCard.interface';
3
+ export declare const StyledProductCard: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, IProductCard>> & string;
4
+ export declare const StyledProductCardWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, IProductCard>> & string;
@@ -0,0 +1 @@
1
+ export { default } from "./ProductCard.component";
@@ -35,7 +35,7 @@ export { default as IconTitle } from './components/molecules/IconTitle';
35
35
  export { default as BlogCard } from './components/molecules/BlogCard';
36
36
  export { default as TeamCard } from './components/molecules/TeamCard';
37
37
  export { default as LogosCard } from './components/molecules/LogosCard';
38
- export { default as ProjectCard } from './components/molecules/ProjectCard';
38
+ export { default as ProductCard } from './components/molecules/ProductCard';
39
39
  export { default as Slider } from './components/organisms/Slider';
40
40
  export { default as Cover } from './components/organisms/Cover';
41
41
  export { default as Tabs } from './components/organisms/Tabs';