odaptos_design_system 1.4.131 → 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 (48) hide show
  1. package/dist/FeaturesTable/FeaturesTable.d.ts +2 -2
  2. package/dist/FeaturesTable/components/TableBody/components/FeatureGroup.d.ts +2 -2
  3. package/dist/FeaturesTable/components/TableBody/components/FeatureRow.d.ts +2 -2
  4. package/dist/FeaturesTable/components/TableBody/components/RowCell.d.ts +2 -2
  5. package/dist/FeaturesTable/components/TableBody/components/SectionTitleRow.d.ts +2 -2
  6. package/dist/Icons/Partners/Partner1.d.ts +3 -0
  7. package/dist/Icons/Partners/Partner2.d.ts +3 -0
  8. package/dist/Icons/Partners/Partner3.d.ts +3 -0
  9. package/dist/Icons/Partners/Partner4.d.ts +3 -0
  10. package/dist/Icons/Partners/Partner5.d.ts +3 -0
  11. package/dist/Icons/Partners/Partner6.d.ts +3 -0
  12. package/dist/Icons/Partners/Partner7.d.ts +3 -0
  13. package/dist/Icons/Partners/Partner8.d.ts +3 -0
  14. package/dist/Icons/Partners/Partner9.d.ts +3 -0
  15. package/dist/Icons/index.d.ts +9 -0
  16. package/dist/LogoSlider/LogoSlider.d.ts +2 -0
  17. package/dist/PricingCard/PricingCard.d.ts +2 -2
  18. package/dist/ToggleTab/ToggleTab.d.ts +2 -2
  19. package/dist/index.d.ts +1 -0
  20. package/dist/odaptos_design_system.cjs.development.js +1377 -296
  21. package/dist/odaptos_design_system.cjs.development.js.map +1 -1
  22. package/dist/odaptos_design_system.cjs.production.min.js +1 -1
  23. package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
  24. package/dist/odaptos_design_system.esm.js +1351 -283
  25. package/dist/odaptos_design_system.esm.js.map +1 -1
  26. package/package.json +1 -1
  27. package/src/FeaturesTable/FeaturesTable.tsx +2 -4
  28. package/src/FeaturesTable/components/TableBody/TableBody.tsx +1 -2
  29. package/src/FeaturesTable/components/TableBody/components/FeatureGroup.tsx +4 -6
  30. package/src/FeaturesTable/components/TableBody/components/FeatureRow.tsx +5 -7
  31. package/src/FeaturesTable/components/TableBody/components/RowCell.tsx +3 -9
  32. package/src/FeaturesTable/components/TableBody/components/SectionTitleRow.tsx +1 -5
  33. package/src/Icons/Partners/Partner1.tsx +165 -0
  34. package/src/Icons/Partners/Partner2.tsx +101 -0
  35. package/src/Icons/Partners/Partner3.tsx +47 -0
  36. package/src/Icons/Partners/Partner4.tsx +199 -0
  37. package/src/Icons/Partners/Partner5.tsx +79 -0
  38. package/src/Icons/Partners/Partner6.tsx +39 -0
  39. package/src/Icons/Partners/Partner7.tsx +45 -0
  40. package/src/Icons/Partners/Partner8.tsx +37 -0
  41. package/src/Icons/Partners/Partner9.tsx +63 -0
  42. package/src/Icons/index.ts +9 -0
  43. package/src/Interviews/Chat.tsx +3 -2
  44. package/src/LogoSlider/LogoSlider.module.scss +54 -0
  45. package/src/LogoSlider/LogoSlider.tsx +42 -0
  46. package/src/PricingCard/PricingCard.tsx +7 -9
  47. package/src/ToggleTab/ToggleTab.tsx +1 -3
  48. package/src/index.ts +1 -0
@@ -7,5 +7,5 @@ interface FeaturesTableProps {
7
7
  isYearlyOrMonthly: 'yearly' | 'monthly';
8
8
  actionsArray: any[];
9
9
  }
10
- declare const FeaturesTable: React.FC<FeaturesTableProps>;
11
- export default FeaturesTable;
10
+ export declare const FeaturesTable: ({ pricingCards, cmsContent, featuresSections, sectionsTitleMapping, isYearlyOrMonthly, actionsArray, }: FeaturesTableProps) => React.JSX.Element;
11
+ export {};
@@ -3,5 +3,5 @@ interface FeatureGroupProps {
3
3
  sectionTitle: string;
4
4
  featureSection: any[];
5
5
  }
6
- declare const FeatureGroup: React.FC<FeatureGroupProps>;
7
- export default FeatureGroup;
6
+ export declare const FeatureGroup: ({ sectionTitle, featureSection, }: FeatureGroupProps) => React.JSX.Element;
7
+ export {};
@@ -2,5 +2,5 @@ import React from 'react';
2
2
  interface FeatureRowProps {
3
3
  feature: any;
4
4
  }
5
- declare const FeatureRow: React.FC<FeatureRowProps>;
6
- export default FeatureRow;
5
+ export declare const FeatureRow: ({ feature }: FeatureRowProps) => React.JSX.Element;
6
+ export {};
@@ -4,5 +4,5 @@ interface RowCellProps {
4
4
  value: string;
5
5
  sufix: string;
6
6
  }
7
- declare const RowCell: React.FC<RowCellProps>;
8
- export default RowCell;
7
+ export declare const RowCell: ({ prefix, value, sufix }: RowCellProps) => React.JSX.Element;
8
+ export {};
@@ -2,5 +2,5 @@ import React from 'react';
2
2
  interface SectionTitleRowProps {
3
3
  sectionName: string;
4
4
  }
5
- declare const SectionTitleRow: React.FC<SectionTitleRowProps>;
6
- export default SectionTitleRow;
5
+ export declare const SectionTitleRow: ({ sectionName }: SectionTitleRowProps) => React.JSX.Element;
6
+ export {};
@@ -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
@@ -20,6 +20,7 @@ export * from './Interviews/Scenario';
20
20
  export * from './Interviews/Task';
21
21
  export * from './Interviews/WelcomeMessage';
22
22
  export * from './LateralMenu/LateralMenu';
23
+ export * from './LogoSlider/LogoSlider';
23
24
  export * from './Modal/Modal';
24
25
  export * from './MultiSelect/MultiSelect';
25
26
  export * from './Notifications/Banner';