odaptos_design_system 1.4.130 → 1.4.132

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 (55) hide show
  1. package/dist/FeaturesTable/FeaturesTable.d.ts +11 -0
  2. package/dist/FeaturesTable/components/TableBody/TableBody.d.ts +7 -0
  3. package/dist/FeaturesTable/components/TableBody/components/FeatureGroup.d.ts +7 -0
  4. package/dist/FeaturesTable/components/TableBody/components/FeatureRow.d.ts +6 -0
  5. package/dist/FeaturesTable/components/TableBody/components/RowCell.d.ts +8 -0
  6. package/dist/FeaturesTable/components/TableBody/components/SectionTitleRow.d.ts +6 -0
  7. package/dist/FeaturesTable/components/TableHeader/TableHeader.d.ts +9 -0
  8. package/dist/FeaturesTable/components/TableHeader/components/HeaderCell.d.ts +12 -0
  9. package/dist/Icons/Partners/Partner1.d.ts +3 -0
  10. package/dist/Icons/Partners/Partner2.d.ts +3 -0
  11. package/dist/Icons/Partners/Partner3.d.ts +3 -0
  12. package/dist/Icons/Partners/Partner4.d.ts +3 -0
  13. package/dist/Icons/Partners/Partner5.d.ts +3 -0
  14. package/dist/Icons/Partners/Partner6.d.ts +3 -0
  15. package/dist/Icons/Partners/Partner7.d.ts +3 -0
  16. package/dist/Icons/Partners/Partner8.d.ts +3 -0
  17. package/dist/Icons/Partners/Partner9.d.ts +3 -0
  18. package/dist/Icons/index.d.ts +9 -0
  19. package/dist/LogoSlider/LogoSlider.d.ts +2 -0
  20. package/dist/PricingCard/PricingCard.d.ts +2 -2
  21. package/dist/ToggleTab/ToggleTab.d.ts +2 -2
  22. package/dist/index.d.ts +2 -0
  23. package/dist/odaptos_design_system.cjs.development.js +1613 -529
  24. package/dist/odaptos_design_system.cjs.development.js.map +1 -1
  25. package/dist/odaptos_design_system.cjs.production.min.js +1 -1
  26. package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
  27. package/dist/odaptos_design_system.esm.js +1587 -516
  28. package/dist/odaptos_design_system.esm.js.map +1 -1
  29. package/package.json +1 -1
  30. package/src/FeaturesTable/FeaturesTable.module.scss +81 -0
  31. package/src/FeaturesTable/FeaturesTable.tsx +37 -0
  32. package/src/FeaturesTable/components/TableBody/TableBody.tsx +53 -0
  33. package/src/FeaturesTable/components/TableBody/components/FeatureGroup.tsx +28 -0
  34. package/src/FeaturesTable/components/TableBody/components/FeatureRow.tsx +46 -0
  35. package/src/FeaturesTable/components/TableBody/components/RowCell.tsx +31 -0
  36. package/src/FeaturesTable/components/TableBody/components/SectionTitleRow.tsx +16 -0
  37. package/src/FeaturesTable/components/TableHeader/TableHeader.tsx +41 -0
  38. package/src/FeaturesTable/components/TableHeader/components/HeaderCell.tsx +88 -0
  39. package/src/Icons/Partners/Partner1.tsx +165 -0
  40. package/src/Icons/Partners/Partner2.tsx +101 -0
  41. package/src/Icons/Partners/Partner3.tsx +47 -0
  42. package/src/Icons/Partners/Partner4.tsx +199 -0
  43. package/src/Icons/Partners/Partner5.tsx +79 -0
  44. package/src/Icons/Partners/Partner6.tsx +39 -0
  45. package/src/Icons/Partners/Partner7.tsx +45 -0
  46. package/src/Icons/Partners/Partner8.tsx +37 -0
  47. package/src/Icons/Partners/Partner9.tsx +63 -0
  48. package/src/Icons/index.ts +9 -0
  49. package/src/Interviews/Chat.tsx +3 -2
  50. package/src/LogoSlider/LogoSlider.module.scss +54 -0
  51. package/src/LogoSlider/LogoSlider.tsx +42 -0
  52. package/src/PricingCard/PricingCard.tsx +7 -9
  53. package/src/ToggleTab/ToggleTab.tsx +1 -3
  54. package/src/__mocks__/PricingPageData/pricingPageMockedData.js +2117 -0
  55. package/src/index.ts +2 -0
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ interface FeaturesTableProps {
3
+ pricingCards: any;
4
+ featuresSections: any;
5
+ cmsContent: any;
6
+ sectionsTitleMapping: any;
7
+ isYearlyOrMonthly: 'yearly' | 'monthly';
8
+ actionsArray: any[];
9
+ }
10
+ export declare const FeaturesTable: ({ pricingCards, cmsContent, featuresSections, sectionsTitleMapping, isYearlyOrMonthly, actionsArray, }: FeaturesTableProps) => React.JSX.Element;
11
+ export {};
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ interface TableBodyProps {
3
+ featuresSections: object;
4
+ sectionsTitleMapping: any[];
5
+ }
6
+ declare const TableBody: React.FC<TableBodyProps>;
7
+ export default TableBody;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ interface FeatureGroupProps {
3
+ sectionTitle: string;
4
+ featureSection: any[];
5
+ }
6
+ export declare const FeatureGroup: ({ sectionTitle, featureSection, }: FeatureGroupProps) => React.JSX.Element;
7
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ interface FeatureRowProps {
3
+ feature: any;
4
+ }
5
+ export declare const FeatureRow: ({ feature }: FeatureRowProps) => React.JSX.Element;
6
+ export {};
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ interface RowCellProps {
3
+ prefix: string;
4
+ value: string;
5
+ sufix: string;
6
+ }
7
+ export declare const RowCell: ({ prefix, value, sufix }: RowCellProps) => React.JSX.Element;
8
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ interface SectionTitleRowProps {
3
+ sectionName: string;
4
+ }
5
+ export declare const SectionTitleRow: ({ sectionName }: SectionTitleRowProps) => React.JSX.Element;
6
+ export {};
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ interface TableHeaderProps {
3
+ plans: any;
4
+ cmsContent: any;
5
+ isYearlyOrMonthly: 'yearly' | 'monthly';
6
+ actionsArray: any;
7
+ }
8
+ declare const TableHeader: React.FC<TableHeaderProps>;
9
+ export default TableHeader;
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ interface HeaderCellProps {
3
+ planName: string;
4
+ isYearlyOrMonthly: 'yearly' | 'monthly';
5
+ yearlyPrice: number;
6
+ monthlyPrice: number;
7
+ cmsContent: any;
8
+ action: () => void;
9
+ tier: number;
10
+ }
11
+ declare const HeaderCell: React.FC<HeaderCellProps>;
12
+ export default HeaderCell;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function Partner1({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function Partner2({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function Partner3({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function Partner4({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function Partner5({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function Partner6({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function Partner7({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function Partner8({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function Partner9({ ...rest }: SvgIconProps): React.JSX.Element;
@@ -151,3 +151,12 @@ export { default as NotifAlertIcon } from './Notifications/NotifAlertIcon';
151
151
  export { default as DashedArrow } from './Other/DashedArrowSvg';
152
152
  export { default as ProjectHoverSvg } from './Other/ProjectHoverSvg';
153
153
  export { default as ProjectSvg } from './Other/ProjectSvg';
154
+ export { default as Partner1SVG } from './Partners/Partner1';
155
+ export { default as Partner2SVG } from './Partners/Partner2';
156
+ export { default as Partner3SVG } from './Partners/Partner3';
157
+ export { default as Partner4SVG } from './Partners/Partner4';
158
+ export { default as Partner5SVG } from './Partners/Partner5';
159
+ export { default as Partner6SVG } from './Partners/Partner6';
160
+ export { default as Partner7SVG } from './Partners/Partner7';
161
+ export { default as Partner8SVG } from './Partners/Partner8';
162
+ export { default as Partner9SVG } from './Partners/Partner9';
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const LogoSlider: () => React.JSX.Element;
@@ -21,5 +21,5 @@ interface PricingCardProps {
21
21
  currency?: string;
22
22
  tier: 1 | 2 | 3 | 4;
23
23
  }
24
- declare const PricingCard: React.FC<PricingCardProps>;
25
- export default PricingCard;
24
+ export declare const PricingCard: ({ cardInfo: { title, description, monthlyPrice, yearlyPrice }, cmsContent, isYearlyOrMonthly, interviewsNumber, featuresList, isDark, isHighlighted, highlightMessage, onClick, currency, tier, }: PricingCardProps) => React.JSX.Element;
25
+ export {};
@@ -9,5 +9,5 @@ interface ToggleTabProps {
9
9
  selectedOption: 1 | 2;
10
10
  variant: 'marketing';
11
11
  }
12
- declare const ToggleTab: React.FC<ToggleTabProps>;
13
- export default ToggleTab;
12
+ export declare const ToggleTab: React.FC<ToggleTabProps>;
13
+ export {};
package/dist/index.d.ts CHANGED
@@ -7,6 +7,7 @@ export * from './Cards/CardButton';
7
7
  export * from './Checkbox/Checkbox';
8
8
  export * from './ColorGuide/colors';
9
9
  export * from './DatePicker/DatePicker';
10
+ export * from './FeaturesTable/FeaturesTable';
10
11
  export * from './Icons';
11
12
  export * from './Interviews/Chat';
12
13
  export * from './Interviews/ChatInput';
@@ -19,6 +20,7 @@ export * from './Interviews/Scenario';
19
20
  export * from './Interviews/Task';
20
21
  export * from './Interviews/WelcomeMessage';
21
22
  export * from './LateralMenu/LateralMenu';
23
+ export * from './LogoSlider/LogoSlider';
22
24
  export * from './Modal/Modal';
23
25
  export * from './MultiSelect/MultiSelect';
24
26
  export * from './Notifications/Banner';