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.
- package/dist/FeaturesTable/FeaturesTable.d.ts +11 -0
- package/dist/FeaturesTable/components/TableBody/TableBody.d.ts +7 -0
- package/dist/FeaturesTable/components/TableBody/components/FeatureGroup.d.ts +7 -0
- package/dist/FeaturesTable/components/TableBody/components/FeatureRow.d.ts +6 -0
- package/dist/FeaturesTable/components/TableBody/components/RowCell.d.ts +8 -0
- package/dist/FeaturesTable/components/TableBody/components/SectionTitleRow.d.ts +6 -0
- package/dist/FeaturesTable/components/TableHeader/TableHeader.d.ts +9 -0
- package/dist/FeaturesTable/components/TableHeader/components/HeaderCell.d.ts +12 -0
- 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 +2 -0
- package/dist/odaptos_design_system.cjs.development.js +1613 -529
- 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 +1587 -516
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/FeaturesTable/FeaturesTable.module.scss +81 -0
- package/src/FeaturesTable/FeaturesTable.tsx +37 -0
- package/src/FeaturesTable/components/TableBody/TableBody.tsx +53 -0
- package/src/FeaturesTable/components/TableBody/components/FeatureGroup.tsx +28 -0
- package/src/FeaturesTable/components/TableBody/components/FeatureRow.tsx +46 -0
- package/src/FeaturesTable/components/TableBody/components/RowCell.tsx +31 -0
- package/src/FeaturesTable/components/TableBody/components/SectionTitleRow.tsx +16 -0
- package/src/FeaturesTable/components/TableHeader/TableHeader.tsx +41 -0
- package/src/FeaturesTable/components/TableHeader/components/HeaderCell.tsx +88 -0
- 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/__mocks__/PricingPageData/pricingPageMockedData.js +2117 -0
- 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,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;
|
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
|
@@ -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';
|