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.
- package/dist/FeaturesTable/FeaturesTable.d.ts +2 -2
- package/dist/FeaturesTable/components/TableBody/components/FeatureGroup.d.ts +2 -2
- package/dist/FeaturesTable/components/TableBody/components/FeatureRow.d.ts +2 -2
- package/dist/FeaturesTable/components/TableBody/components/RowCell.d.ts +2 -2
- package/dist/FeaturesTable/components/TableBody/components/SectionTitleRow.d.ts +2 -2
- package/dist/Icons/Partners/Partner1.d.ts +3 -0
- package/dist/Icons/Partners/Partner2.d.ts +3 -0
- package/dist/Icons/Partners/Partner3.d.ts +3 -0
- package/dist/Icons/Partners/Partner4.d.ts +3 -0
- package/dist/Icons/Partners/Partner5.d.ts +3 -0
- package/dist/Icons/Partners/Partner6.d.ts +3 -0
- package/dist/Icons/Partners/Partner7.d.ts +3 -0
- package/dist/Icons/Partners/Partner8.d.ts +3 -0
- package/dist/Icons/Partners/Partner9.d.ts +3 -0
- package/dist/Icons/index.d.ts +9 -0
- package/dist/LogoSlider/LogoSlider.d.ts +2 -0
- package/dist/PricingCard/PricingCard.d.ts +2 -2
- package/dist/ToggleTab/ToggleTab.d.ts +2 -2
- package/dist/index.d.ts +1 -0
- package/dist/odaptos_design_system.cjs.development.js +1377 -296
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +1351 -283
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/FeaturesTable/FeaturesTable.tsx +2 -4
- package/src/FeaturesTable/components/TableBody/TableBody.tsx +1 -2
- package/src/FeaturesTable/components/TableBody/components/FeatureGroup.tsx +4 -6
- package/src/FeaturesTable/components/TableBody/components/FeatureRow.tsx +5 -7
- package/src/FeaturesTable/components/TableBody/components/RowCell.tsx +3 -9
- package/src/FeaturesTable/components/TableBody/components/SectionTitleRow.tsx +1 -5
- package/src/Icons/Partners/Partner1.tsx +165 -0
- package/src/Icons/Partners/Partner2.tsx +101 -0
- package/src/Icons/Partners/Partner3.tsx +47 -0
- package/src/Icons/Partners/Partner4.tsx +199 -0
- package/src/Icons/Partners/Partner5.tsx +79 -0
- package/src/Icons/Partners/Partner6.tsx +39 -0
- package/src/Icons/Partners/Partner7.tsx +45 -0
- package/src/Icons/Partners/Partner8.tsx +37 -0
- package/src/Icons/Partners/Partner9.tsx +63 -0
- package/src/Icons/index.ts +9 -0
- package/src/Interviews/Chat.tsx +3 -2
- package/src/LogoSlider/LogoSlider.module.scss +54 -0
- package/src/LogoSlider/LogoSlider.tsx +42 -0
- package/src/PricingCard/PricingCard.tsx +7 -9
- package/src/ToggleTab/ToggleTab.tsx +1 -3
- 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.
|
|
11
|
-
export
|
|
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.
|
|
7
|
-
export
|
|
6
|
+
export declare const FeatureGroup: ({ sectionTitle, featureSection, }: FeatureGroupProps) => React.JSX.Element;
|
|
7
|
+
export {};
|
|
@@ -2,5 +2,5 @@ import React from 'react';
|
|
|
2
2
|
interface SectionTitleRowProps {
|
|
3
3
|
sectionName: string;
|
|
4
4
|
}
|
|
5
|
-
declare const SectionTitleRow: React.
|
|
6
|
-
export
|
|
5
|
+
export declare const SectionTitleRow: ({ sectionName }: SectionTitleRowProps) => React.JSX.Element;
|
|
6
|
+
export {};
|
package/dist/Icons/index.d.ts
CHANGED
|
@@ -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';
|
|
@@ -21,5 +21,5 @@ interface PricingCardProps {
|
|
|
21
21
|
currency?: string;
|
|
22
22
|
tier: 1 | 2 | 3 | 4;
|
|
23
23
|
}
|
|
24
|
-
declare const PricingCard: React.
|
|
25
|
-
export
|
|
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 {};
|
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';
|