@useloops/design-system 1.4.274 → 1.4.275
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/esm/index.js +4 -4
- package/dist/index.d.ts +33 -27
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1768,44 +1768,49 @@ interface PlanHeading {
|
|
|
1768
1768
|
interface PlanRow {
|
|
1769
1769
|
heading: string;
|
|
1770
1770
|
description: string;
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1771
|
+
tier1: string;
|
|
1772
|
+
tier2: string;
|
|
1773
|
+
tier3: string;
|
|
1774
|
+
tier4: string;
|
|
1775
1775
|
}
|
|
1776
1776
|
interface PlanFeatureTableData {
|
|
1777
1777
|
headings: {
|
|
1778
|
-
'01-
|
|
1779
|
-
'02-
|
|
1780
|
-
'03-
|
|
1781
|
-
'04-
|
|
1778
|
+
'01-tier1': PlanHeading;
|
|
1779
|
+
'02-tier2': PlanHeading;
|
|
1780
|
+
'03-tier3': PlanHeading;
|
|
1781
|
+
'04-tier4': PlanHeading;
|
|
1782
1782
|
};
|
|
1783
1783
|
rows: {
|
|
1784
|
-
'
|
|
1785
|
-
'
|
|
1786
|
-
'
|
|
1787
|
-
'
|
|
1788
|
-
'
|
|
1789
|
-
'
|
|
1790
|
-
'
|
|
1791
|
-
'
|
|
1792
|
-
'
|
|
1793
|
-
'
|
|
1794
|
-
'
|
|
1784
|
+
'01-servicing': PlanRow;
|
|
1785
|
+
'02-respondents': PlanRow;
|
|
1786
|
+
'03-questions': PlanRow;
|
|
1787
|
+
'04-ai': PlanRow;
|
|
1788
|
+
'05-demographics': PlanRow;
|
|
1789
|
+
'06-training': PlanRow;
|
|
1790
|
+
'07-invite': PlanRow;
|
|
1791
|
+
'08-email': PlanRow;
|
|
1792
|
+
'09-beta': PlanRow;
|
|
1793
|
+
'10-sso': PlanRow;
|
|
1794
|
+
'11-minimum': PlanRow;
|
|
1795
1795
|
};
|
|
1796
1796
|
}
|
|
1797
1797
|
|
|
1798
1798
|
interface PlanFeatureTableProps {
|
|
1799
1799
|
currencySymbol: string;
|
|
1800
1800
|
data?: PlanFeatureTableData;
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1801
|
+
loading?: boolean;
|
|
1802
|
+
tier1Price: number | string;
|
|
1803
|
+
tier1RespondentPrice: number | string;
|
|
1804
|
+
tier1QuestionLimit: number | string;
|
|
1805
|
+
tier2Price: number | string;
|
|
1806
|
+
tier2RespondentPrice: number | string;
|
|
1807
|
+
tier2QuestionLimit: number | string;
|
|
1808
|
+
tier3Price: number | string;
|
|
1809
|
+
tier3RespondentPrice: number | string;
|
|
1810
|
+
tier3QuestionLimit: number | string;
|
|
1811
|
+
tier4Price: number | string;
|
|
1812
|
+
tier4RespondentPrice: number | string;
|
|
1813
|
+
tier4QuestionLimit: number | string;
|
|
1809
1814
|
variation?: 'default' | 'platform';
|
|
1810
1815
|
}
|
|
1811
1816
|
declare const PlanFeatureTable: FunctionComponent<PlanFeatureTableProps>;
|
|
@@ -1825,6 +1830,7 @@ interface PlanTierCardProps {
|
|
|
1825
1830
|
features?: string[];
|
|
1826
1831
|
heading: string;
|
|
1827
1832
|
label?: string;
|
|
1833
|
+
loading?: boolean;
|
|
1828
1834
|
perMonth: string;
|
|
1829
1835
|
respondentsTitle?: string;
|
|
1830
1836
|
respondentsFeatures?: string[];
|