oddsgate-ds 1.0.66 → 1.0.68

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 (46) 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/CareersCard/CareersCard.component.d.ts +4 -0
  4. package/dist/cjs/types/components/molecules/CareersCard/CareersCard.interface.d.ts +7 -0
  5. package/dist/cjs/types/components/molecules/CareersCard/CareersCard.stories.d.ts +5 -0
  6. package/dist/cjs/types/components/molecules/CareersCard/CareersCard.theme.d.ts +3 -0
  7. package/dist/cjs/types/components/molecules/CareersCard/index.d.ts +1 -0
  8. package/dist/cjs/types/components/molecules/LicenseCard/LicenseCard.component.d.ts +4 -0
  9. package/dist/cjs/types/components/molecules/LicenseCard/LicenseCard.interface.d.ts +6 -0
  10. package/dist/cjs/types/components/molecules/LicenseCard/LicenseCard.stories.d.ts +5 -0
  11. package/dist/cjs/types/components/molecules/LicenseCard/LicenseCard.theme.d.ts +3 -0
  12. package/dist/cjs/types/components/molecules/LicenseCard/index.d.ts +1 -0
  13. package/dist/cjs/types/index.d.ts +2 -0
  14. package/dist/esm/index.js +5 -5
  15. package/dist/esm/index.js.map +1 -1
  16. package/dist/esm/types/components/molecules/CareersCard/CareersCard.component.d.ts +4 -0
  17. package/dist/esm/types/components/molecules/CareersCard/CareersCard.interface.d.ts +7 -0
  18. package/dist/esm/types/components/molecules/CareersCard/CareersCard.stories.d.ts +5 -0
  19. package/dist/esm/types/components/molecules/CareersCard/CareersCard.theme.d.ts +3 -0
  20. package/dist/esm/types/components/molecules/CareersCard/index.d.ts +1 -0
  21. package/dist/esm/types/components/molecules/LicenseCard/LicenseCard.component.d.ts +4 -0
  22. package/dist/esm/types/components/molecules/LicenseCard/LicenseCard.interface.d.ts +6 -0
  23. package/dist/esm/types/components/molecules/LicenseCard/LicenseCard.stories.d.ts +5 -0
  24. package/dist/esm/types/components/molecules/LicenseCard/LicenseCard.theme.d.ts +3 -0
  25. package/dist/esm/types/components/molecules/LicenseCard/index.d.ts +1 -0
  26. package/dist/esm/types/index.d.ts +2 -0
  27. package/dist/types.d.ts +16 -1
  28. package/package.json +1 -1
  29. package/src/components/atoms/Button/Button.component.tsx +2 -0
  30. package/src/components/atoms/Button/Button.stories.tsx +3 -2
  31. package/src/components/atoms/Button/Button.theme.ts +38 -0
  32. package/src/components/atoms/FlexGrid/FlexGrid.component.tsx +1 -0
  33. package/src/components/atoms/FlexGrid/FlexGrid.theme.ts +10 -7
  34. package/src/components/molecules/CareersCard/CareersCard.component.tsx +27 -0
  35. package/src/components/molecules/CareersCard/CareersCard.interface.ts +7 -0
  36. package/src/components/molecules/CareersCard/CareersCard.stories.tsx +30 -0
  37. package/src/components/molecules/CareersCard/CareersCard.theme.ts +13 -0
  38. package/src/components/molecules/CareersCard/index.ts +1 -0
  39. package/src/components/molecules/LicenseCard/LicenseCard.component.tsx +27 -0
  40. package/src/components/molecules/LicenseCard/LicenseCard.interface.ts +6 -0
  41. package/src/components/molecules/LicenseCard/LicenseCard.stories.tsx +42 -0
  42. package/src/components/molecules/LicenseCard/LicenseCard.theme.ts +21 -0
  43. package/src/components/molecules/LicenseCard/index.ts +1 -0
  44. package/src/components/molecules/Modal/Modal.theme.ts +1 -1
  45. package/src/components/organisms/Slider/Slider.theme.ts +12 -3
  46. package/src/index.ts +2 -0
@@ -0,0 +1,4 @@
1
+ import { ICareersCard } from './CareersCard.interface';
2
+ import React from 'react';
3
+ declare const CareersCard: ({ title, description, linkElement, className, style, ...props }: ICareersCard) => React.JSX.Element;
4
+ export default CareersCard;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { ICard } from '../Card/Card.interface';
3
+ export interface ICareersCard extends ICard {
4
+ title?: string;
5
+ description?: string | React.ReactElement;
6
+ linkElement?: React.ReactElement;
7
+ }
@@ -0,0 +1,5 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import { ICareersCard } from './CareersCard.interface';
3
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react").ReactRenderer, import("@storybook/types").Args>;
4
+ export default _default;
5
+ export declare const Simple: StoryObj<ICareersCard>;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { ICareersCard } from './CareersCard.interface';
3
+ export declare const StyledCareersCard: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, ICareersCard>> & string;
@@ -0,0 +1 @@
1
+ export { default } from "./CareersCard.component";
@@ -0,0 +1,4 @@
1
+ import { ILicenseCard } from './LicenseCard.interface';
2
+ import React from 'react';
3
+ declare const LicenseCard: ({ title, imageElement, description, className, style, ...props }: ILicenseCard) => React.JSX.Element;
4
+ export default LicenseCard;
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { ICard } from '../Card/Card.interface';
3
+ export interface ILicenseCard extends ICard {
4
+ title?: string;
5
+ description?: string | React.ReactElement;
6
+ }
@@ -0,0 +1,5 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import { ILicenseCard } from './LicenseCard.interface';
3
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react").ReactRenderer, import("@storybook/types").Args>;
4
+ export default _default;
5
+ export declare const Simple: StoryObj<ILicenseCard>;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { ILicenseCard } from './LicenseCard.interface';
3
+ export declare const StyledLicenseCard: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, ILicenseCard>> & string;
@@ -0,0 +1 @@
1
+ export { default } from "./LicenseCard.component";
@@ -36,8 +36,10 @@ 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
38
  export { default as ProductCard } from './components/molecules/ProductCard';
39
+ export { default as LicenseCard } from './components/molecules/LicenseCard';
39
40
  export { default as NewsCard } from './components/molecules/NewsCard';
40
41
  export { default as EventsCard } from './components/molecules/EventsCard';
42
+ export { default as CareersCard } from './components/molecules/CareersCard';
41
43
  export { default as Slider } from './components/organisms/Slider';
42
44
  export { default as Cover } from './components/organisms/Cover';
43
45
  export { default as Tabs } from './components/organisms/Tabs';
package/dist/types.d.ts CHANGED
@@ -527,6 +527,13 @@ interface IProductCard extends ICard {
527
527
 
528
528
  declare const ProductCard: ({ title, imageElement, description, className, style, ...props }: IProductCard) => React__default.JSX.Element;
529
529
 
530
+ interface ILicenseCard extends ICard {
531
+ title?: string;
532
+ description?: string | React.ReactElement;
533
+ }
534
+
535
+ declare const LicenseCard: ({ title, imageElement, description, className, style, ...props }: ILicenseCard) => React__default.JSX.Element;
536
+
530
537
  interface INewsCard extends ICard {
531
538
  date?: string;
532
539
  category?: string;
@@ -547,6 +554,14 @@ interface IEventsCard extends ICard {
547
554
 
548
555
  declare const EventsCard: ({ variant, date, category, title, imageElement, linkElement, description, ...props }: IEventsCard) => React__default.JSX.Element;
549
556
 
557
+ interface ICareersCard extends ICard {
558
+ title?: string;
559
+ description?: string | React.ReactElement;
560
+ linkElement?: React.ReactElement;
561
+ }
562
+
563
+ declare const CareersCard: ({ title, description, linkElement, className, style, ...props }: ICareersCard) => React__default.JSX.Element;
564
+
550
565
  interface ISlider {
551
566
  $responsiveCSS?: string;
552
567
  arrows?: boolean;
@@ -621,4 +636,4 @@ declare function clickOutSideToClose(ref: React.RefObject<HTMLDivElement>, close
621
636
 
622
637
  declare const isTouchDevice: () => boolean;
623
638
 
624
- export { Accordion, AccordionItem, BlogCard, Button, CheckRadioField, Chip, CircularSlider, CloseButton, Column, Counter, Cover, Dropdown, DropdownItem, EmptyState, EventsCard, Flex, FormField, GlobalStyles, Heading, Icon, IconBox, IconTitle, ImageWrapper, Loader, LogosCard, Marquee, Modal, NewsCard, OffCanvas, PortalComponent, ProductCard, Quote, RichText, Row, ScrollingNav, Separator, ShareModal, Slider, SocialLinks, Spacer, Tabs, TeamCard, Video, VideoEmbed, clickOutSideToClose, iconsList, isTouchDevice, variables };
639
+ export { Accordion, AccordionItem, BlogCard, Button, CareersCard, CheckRadioField, Chip, CircularSlider, CloseButton, Column, Counter, Cover, Dropdown, DropdownItem, EmptyState, EventsCard, Flex, FormField, GlobalStyles, Heading, Icon, IconBox, IconTitle, ImageWrapper, LicenseCard, Loader, LogosCard, Marquee, Modal, NewsCard, OffCanvas, PortalComponent, ProductCard, Quote, RichText, Row, ScrollingNav, Separator, ShareModal, Slider, SocialLinks, Spacer, Tabs, TeamCard, Video, VideoEmbed, clickOutSideToClose, iconsList, isTouchDevice, variables };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oddsgate-ds",
3
- "version": "1.0.66",
3
+ "version": "1.0.68",
4
4
  "description": "Miew theme component library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -41,7 +41,9 @@ const Button = ({
41
41
  >
42
42
  {variant === "primary" ? (
43
43
  <>
44
+ {leftIcon}
44
45
  {children && <span>{children}</span>}
46
+ {rightIcon}
45
47
  {!rightIcon && !leftIcon && (<Icon icon={"icon-arrow-right"} />)}
46
48
  </>
47
49
  ) : (
@@ -41,13 +41,14 @@ export const Primary: StoryObj<IButton> = {
41
41
  render: args => <Button {...args} />,
42
42
  args: {
43
43
  mode: 'dark',
44
- rightIcon: <Icon icon="icon-chevron-right"></Icon>
44
+ rightIcon: <Icon icon="icon-arrow-right"></Icon>
45
45
  }
46
46
  }
47
47
  export const Secondary: StoryObj<IButton> = {
48
48
  args: {
49
49
  ...Primary.args,
50
- variant: 'secondary'
50
+ variant: 'secondary',
51
+ rightIcon: <Icon icon="icon-arrow-right"></Icon>
51
52
  }
52
53
  }
53
54
  export const Link: StoryObj<IButton> = {
@@ -71,6 +71,44 @@ export const StyledButton = styled.a<IButtonSC>`
71
71
  }
72
72
  }
73
73
  `;
74
+ case "secondary":
75
+ return css`
76
+ ${fontSize('h5')};
77
+ padding: 0.8rem 1.6rem;
78
+ border-radius: 50px;
79
+ text-transform:uppercase;
80
+
81
+ ${props.$mode === "light" ? `
82
+ color: ${colors.primary50};
83
+ background-color: ${colors.secondary50};
84
+
85
+ ` : `
86
+ color: ${colors.secondary50};
87
+ background-color: ${colors.primary50};
88
+ `}
89
+
90
+ & span{
91
+ transition: all 0.3s ease;
92
+ }
93
+ & i{
94
+ position: absolute;
95
+ top: 50%;
96
+ right: 0.6rem;
97
+ font-size: 16px;
98
+ opacity: 0;
99
+ transform: scale(0) translateX(-4px) translateY(-50%);
100
+ }
101
+
102
+ &:hover{
103
+ & span{
104
+ transform: translateX(-0.5rem);
105
+ }
106
+ & i{
107
+ opacity: 1;
108
+ transform: scale(1) translateX(0) translateY(-50%);
109
+ }
110
+ }
111
+ `;
74
112
  case "link":
75
113
  return css`
76
114
  ${fontSize('h5')};
@@ -18,6 +18,7 @@ export const Row = ({
18
18
  return (
19
19
  <StyledContainer $fluid={fluid} className={className} style={style}>
20
20
  <StyledRow
21
+ $fluid={fluid}
21
22
  $direction={direction}
22
23
  $align={align}
23
24
  $justify={justify}
@@ -20,7 +20,7 @@ export const StyledContainer = styled.div<IRowSC>`
20
20
  ${props => !props.$fluid && Object.keys(CONTAINER_NAMES)
21
21
  .sort((k1, k2) => CONTAINER_NAMES.indexOf(k1) - CONTAINER_NAMES.indexOf(k2))
22
22
  .map(k => config(CONTAINER_NAMES).mediaContainer[CONTAINER_NAMES[k]]`
23
- max-width: ${grid_conf.container[CONTAINER_NAMES[k]]};
23
+ max-width: ${grid_conf.container[CONTAINER_NAMES[k]]};
24
24
  `)}
25
25
 
26
26
  `
@@ -32,8 +32,8 @@ export const StyledRow = styled.div<IRowSC>`
32
32
  justify-content: ${props => props.$justify ? props.$justify : "flex-start"};
33
33
  flex-wrap: ${props => props.$wrap ? props.$wrap : "wrap"};
34
34
 
35
- margin-right: -${gutter};
36
- margin-left: -${gutter};
35
+ margin-left: ${props => props.$fluid ? "0" : `-${gutter}`};
36
+ margin-right: ${props => props.$fluid ? "0" : `-${gutter}`};
37
37
 
38
38
  @media only screen and (max-width: ${responsiveMedia}) {
39
39
  ${({ $mobileSpace }) => $mobileSpace && `
@@ -47,6 +47,10 @@ export const StyledColumn = styled.div<IColumnSC>`
47
47
  padding-right: ${gutter};
48
48
  padding-left: ${gutter};
49
49
 
50
+ ${({ $align }) => $align && `
51
+ align: ${$align};
52
+ `}
53
+
50
54
  ${({ $xs }) => $xs && `
51
55
  flex-basis: ${100 / grid_conf.gridSize * $xs}%;
52
56
  max-width: ${100 / grid_conf.gridSize * $xs}%;
@@ -66,13 +70,12 @@ export const StyledColumn = styled.div<IColumnSC>`
66
70
  }
67
71
 
68
72
  @media only screen and (max-width: ${responsiveMedia}) {
69
- ${({ $mobileOrder }) => $mobileOrder && `
70
- order: ${$mobileOrder};
71
- `}
72
-
73
73
  &:empty{
74
74
  display:none
75
75
  }
76
+ ${({ $mobileOrder }) => $mobileOrder && `
77
+ order: ${$mobileOrder};
78
+ `}
76
79
  }
77
80
  `;
78
81
 
@@ -0,0 +1,27 @@
1
+ import Heading from '@/components/atoms/Heading'
2
+ import { ICareersCard } from './CareersCard.interface'
3
+ import React from 'react'
4
+ import { StyledCareersCard } from './CareersCard.theme'
5
+
6
+ const CareersCard = ({
7
+ title,
8
+ description,
9
+ linkElement,
10
+ className,
11
+ style,
12
+ ...props
13
+ }: ICareersCard) => {
14
+ return (
15
+ <StyledCareersCard className={className} style={style}>
16
+ <Heading tag={'h3'} size={'h4'} className={'text-uppercase fw-bold'}>
17
+ {title}
18
+ </Heading>
19
+ <Heading tag={'span'} size={'h5'} className={'mt-4 mb-4'}>
20
+ {description}
21
+ </Heading>
22
+ {linkElement}
23
+ </StyledCareersCard>
24
+ )
25
+ }
26
+
27
+ export default CareersCard
@@ -0,0 +1,7 @@
1
+ import { ICard } from '../Card/Card.interface';
2
+
3
+ export interface ICareersCard extends ICard {
4
+ title?: string
5
+ description?: string | React.ReactElement
6
+ linkElement?: React.ReactElement
7
+ }
@@ -0,0 +1,30 @@
1
+ import type { Meta, StoryObj } from '@storybook/react'
2
+
3
+ import CareersCard from './CareersCard.component'
4
+ import { ICareersCard } from './CareersCard.interface'
5
+ import React from 'react'
6
+
7
+ // More on default export: https://storybook.js.org/docs/react/writing-stories/introduction#default-export
8
+ export default {
9
+ title: 'Components/CareersCard',
10
+ component: CareersCard,
11
+ tags: ['autodocs']
12
+ } as Meta
13
+
14
+ export const Simple: StoryObj<ICareersCard> = {
15
+ render: args => (
16
+ <>
17
+ <CareersCard
18
+ {...args}
19
+ title="Lorem"
20
+ style={{ maxWidth: '320px' }}
21
+ ></CareersCard>
22
+ <CareersCard {...args} style={{ maxWidth: '320px' }}></CareersCard>
23
+ </>
24
+ ),
25
+ args: {
26
+ title: 'Cras vel facilisis tellus',
27
+ description:
28
+ 'Cras vel facilisis tellus, id iaculis risus. Vestibulum non mollis ipsum. Vestibulum faucibus nisl sit amet magna interdum tristique. Cras vel facilisis tellus, id iaculis risus. Vestibulum non mollis ipsum. Vestibulum faucibus nisl sit amet magna interdum tristique.'
29
+ }
30
+ }
@@ -0,0 +1,13 @@
1
+ import { colors, radius } from '@/styles/variables';
2
+ import styled, { css } from 'styled-components';
3
+
4
+ import { ICareersCard } from './CareersCard.interface';
5
+
6
+ export const StyledCareersCard = styled.div <ICareersCard>`
7
+ color: ${colors.third10};
8
+ background-color: ${colors.secondary50};
9
+ padding: 2rem;
10
+ border-radius: ${radius.md};
11
+
12
+ `;
13
+
@@ -0,0 +1 @@
1
+ export { default } from "./CareersCard.component";
@@ -0,0 +1,27 @@
1
+ import Heading from '@/components/atoms/Heading'
2
+ import { ILicenseCard } from './LicenseCard.interface'
3
+ import React from 'react'
4
+ import { StyledLicenseCard } from './LicenseCard.theme'
5
+
6
+ const LicenseCard = ({
7
+ title,
8
+ imageElement,
9
+ description,
10
+ className,
11
+ style,
12
+ ...props
13
+ }: ILicenseCard) => {
14
+ return (
15
+ <StyledLicenseCard className={className} style={style}>
16
+ <Heading tag={'h3'} size={'h2'} className={'text-uppercase fw-bold'}>
17
+ {title}
18
+ </Heading>
19
+ <Heading tag={'span'} size={'h5'} className={'mt-4 mb-4'}>
20
+ {description}
21
+ </Heading>
22
+ {imageElement}
23
+ </StyledLicenseCard>
24
+ )
25
+ }
26
+
27
+ export default LicenseCard
@@ -0,0 +1,6 @@
1
+ import { ICard } from '../Card/Card.interface';
2
+
3
+ export interface ILicenseCard extends ICard {
4
+ title?: string
5
+ description?: string | React.ReactElement
6
+ }
@@ -0,0 +1,42 @@
1
+ import type { Meta, StoryObj } from '@storybook/react'
2
+
3
+ import { ILicenseCard } from './LicenseCard.interface'
4
+ import LicenseCard from './LicenseCard.component'
5
+ import React from 'react'
6
+
7
+ // More on default export: https://storybook.js.org/docs/react/writing-stories/introduction#default-export
8
+ export default {
9
+ title: 'Components/LicenseCard',
10
+ component: LicenseCard,
11
+ tags: ['autodocs']
12
+ } as Meta
13
+
14
+ const image = (
15
+ <img
16
+ width="100%"
17
+ height="100%"
18
+ sizes="100vw"
19
+ decoding="async"
20
+ src="/assets/placeholder.png"
21
+ alt="Empty state"
22
+ />
23
+ )
24
+
25
+ export const Simple: StoryObj<ILicenseCard> = {
26
+ render: args => (
27
+ <>
28
+ <LicenseCard
29
+ {...args}
30
+ title="Lorem"
31
+ style={{ maxWidth: '320px' }}
32
+ ></LicenseCard>
33
+ <LicenseCard {...args} style={{ maxWidth: '320px' }}></LicenseCard>
34
+ </>
35
+ ),
36
+ args: {
37
+ title: 'Cras vel facilisis tellus',
38
+ imageElement: image,
39
+ description:
40
+ 'Cras vel facilisis tellus, id iaculis risus. Vestibulum non mollis ipsum. Vestibulum faucibus nisl sit amet magna interdum tristique. Cras vel facilisis tellus, id iaculis risus. Vestibulum non mollis ipsum. Vestibulum faucibus nisl sit amet magna interdum tristique.'
41
+ }
42
+ }
@@ -0,0 +1,21 @@
1
+ import { colors, radius } from '@/styles/variables';
2
+ import styled, { css } from 'styled-components';
3
+
4
+ import { ILicenseCard } from './LicenseCard.interface';
5
+
6
+ export const StyledLicenseCard = styled.div <ILicenseCard>`
7
+ display: flex;
8
+ flex-flow: column;
9
+ align-items: center;
10
+ text-align:center;
11
+ background-color: ${colors.third10};
12
+ padding: 2rem;
13
+ border-radius: 0 ${radius.lg};
14
+
15
+ & img{
16
+ width: 100%;
17
+ max-width: 7rem;
18
+ object-fit: contain;
19
+ }
20
+ `;
21
+
@@ -0,0 +1 @@
1
+ export { default } from "./LicenseCard.component";
@@ -35,7 +35,7 @@ export const StyledWrapper = styled.div<IModal>`
35
35
  will-change: transform;
36
36
  overflow: hidden;
37
37
  overflow-y: auto;
38
- z-index: ${zIndexes['modal']};
38
+ z-index: 101;
39
39
 
40
40
  &:focus {
41
41
  outline: none
@@ -1,4 +1,4 @@
1
- import { colors, radius, responsiveMedia, shadows, spaces } from '@/styles/variables';
1
+ import { colors, gutter, radius, responsiveMedia, shadows, spaces } from '@/styles/variables';
2
2
  import styled, { css } from 'styled-components';
3
3
 
4
4
  import { ISlider } from './Slider.interface';
@@ -134,7 +134,6 @@ const SliderStyles = `
134
134
  }
135
135
  `;
136
136
 
137
-
138
137
  export const StyledSlider = styled.div<ISlider>`
139
138
  position:relative;
140
139
  width: 100%;
@@ -144,13 +143,23 @@ export const StyledSlider = styled.div<ISlider>`
144
143
  ${SliderStyles}
145
144
  }
146
145
  @media only screen and (min-width: ${responsiveMedia}) {
146
+ .blaze-track{
147
+ display: flex;
148
+ flex-direction: row;
149
+ align-items: stretch;
150
+ justify-content: flex-start;
151
+ flex-wrap: wrap;
152
+
153
+ margin-right: -${gutter};
154
+ margin-left: -${gutter};
155
+ }
147
156
  .blaze-controls{
148
157
  display:none;
149
158
  }
150
159
  }
151
160
  `)
152
161
  : (`
162
+
153
163
  ${SliderStyles}
154
164
  `)}
155
-
156
165
  `;
package/src/index.ts CHANGED
@@ -42,8 +42,10 @@ export { default as BlogCard } from './components/molecules/BlogCard'
42
42
  export { default as TeamCard } from './components/molecules/TeamCard'
43
43
  export { default as LogosCard } from './components/molecules/LogosCard'
44
44
  export { default as ProductCard } from './components/molecules/ProductCard'
45
+ export { default as LicenseCard } from './components/molecules/LicenseCard'
45
46
  export { default as NewsCard } from './components/molecules/NewsCard'
46
47
  export { default as EventsCard } from './components/molecules/EventsCard'
48
+ export { default as CareersCard } from './components/molecules/CareersCard'
47
49
  // //organisms
48
50
  export { default as Slider } from './components/organisms/Slider'
49
51
  export { default as Cover } from './components/organisms/Cover'