@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/index.d.ts CHANGED
@@ -1768,44 +1768,49 @@ interface PlanHeading {
1768
1768
  interface PlanRow {
1769
1769
  heading: string;
1770
1770
  description: string;
1771
- starter: string;
1772
- team: string;
1773
- plus: string;
1774
- scale: string;
1771
+ tier1: string;
1772
+ tier2: string;
1773
+ tier3: string;
1774
+ tier4: string;
1775
1775
  }
1776
1776
  interface PlanFeatureTableData {
1777
1777
  headings: {
1778
- '01-starter': PlanHeading;
1779
- '02-team': PlanHeading;
1780
- '03-plus': PlanHeading;
1781
- '04-scale': PlanHeading;
1778
+ '01-tier1': PlanHeading;
1779
+ '02-tier2': PlanHeading;
1780
+ '03-tier3': PlanHeading;
1781
+ '04-tier4': PlanHeading;
1782
1782
  };
1783
1783
  rows: {
1784
- '02-servicing': PlanRow;
1785
- '03-respondents': PlanRow;
1786
- '04-questions': PlanRow;
1787
- '05-ai': PlanRow;
1788
- '06-demographics': PlanRow;
1789
- '07-training': PlanRow;
1790
- '08-invite': PlanRow;
1791
- '09-email': PlanRow;
1792
- '10-beta': PlanRow;
1793
- '11-sso': PlanRow;
1794
- '12-minimum': PlanRow;
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
- starterPrice: string;
1802
- starterRespondentPrice: string;
1803
- teamPrice: string;
1804
- teamRespondentPrice: string;
1805
- plusPrice: string;
1806
- plusRespondentPrice: string;
1807
- scalePrice: string;
1808
- scaleRespondentPrice: string;
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[];