@useloops/design-system 1.4.273 → 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/README.md +8 -0
- package/dist/esm/index.js +4 -4
- package/dist/index.d.ts +34 -28
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -511,7 +511,7 @@ interface IconProps {
|
|
|
511
511
|
}
|
|
512
512
|
declare const Icon: FunctionComponent<IconProps>;
|
|
513
513
|
|
|
514
|
-
type IconName = 'brand-wordmark' | 'brand-logomark' | 'menu' | 'menu-open' | 'chevron-up' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'arrow-left' | 'arrow-right' | 'search' | 'close' | 'more-horizontal' | 'more-vertical' | 'home' | 'home-filled' | 'settings' | 'controls' | 'help' | 'filter-list' | 'open-in-new' | 'nav-toggle' | 'nav-collapse' | 'nav-expand' | 'play-circle' | 'play-video' | 'email' | 'document' | 'folder' | 'attach-file' | 'save' | 'image' | 'image-add' | 'image-search' | 'upload' | 'upload-cloud' | 'upload-cloud-filled' | 'time' | 'time-filled' | 'zoom-in' | 'zoom-out' | 'add' | 'remove' | '
|
|
514
|
+
type IconName = 'brand-wordmark' | 'brand-logomark' | 'menu' | 'menu-open' | 'chevron-up' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'arrow-left' | 'arrow-right' | 'search' | 'close' | 'more-horizontal' | 'more-vertical' | 'home' | 'home-filled' | 'settings' | 'controls' | 'help' | 'filter-list' | 'open-in-new' | 'nav-toggle' | 'nav-collapse' | 'nav-expand' | 'expand-window' | 'reduce-window' | 'play-circle' | 'play-video' | 'email' | 'document' | 'folder' | 'attach-file' | 'save' | 'image' | 'image-add' | 'image-search' | 'image-no' | 'upload' | 'upload-cloud' | 'upload-cloud-filled' | 'time' | 'time-filled' | 'zoom-in' | 'zoom-out' | 'add' | 'remove' | 'dashboard' | 'list-view' | 'grid-view' | 'grid-view-filled' | 'grid-view-small' | 'grid-view-large' | 'eye' | 'eye-off' | 'notification' | 'pound' | 'euro' | 'dollar' | 'play' | 'pause' | 'stop' | 'shuffle' | 'replay' | 'volume-mute' | 'volume-high' | 'volume-low' | 'test' | 'test-pending' | 'test-edit' | 'data-bar' | 'send' | 'comment' | 'comment-filled' | 'chat' | 'microphone' | 'keyboard' | 'error' | 'warning' | 'lightbulb' | 'thumb-up' | 'info' | 'info-filled' | 'cancel' | 'compress' | 'expand' | 'unfold' | 'drag-handle' | 'focus' | 'drag-select' | 'lock' | 'copy' | 'edit' | 'delete' | 'check' | 'check-circle' | 'check-circle-filled' | 'alert-dot' | 'pin' | 'pin-filled' | 'star' | 'star-half' | 'star-filled' | 'thumbs-up-down' | 'emoticon' | 'linear-scale' | 'check-double' | 'rank' | 'ai' | 'work' | 'gift' | 'social-medium-single-colour' | 'social-linkedin-single-colour' | 'social-youtube-single-colour' | 'social-linkedin-full-colour' | 'social-google-full-colour' | 'badge-tick' | 'badge-tick-in-circle' | 'badge-cross' | 'badge-cross-in-circle' | 'badge-hyphen' | 'badge-hyphen-in-circle' | 'badge-question' | 'badge-question-in-circle';
|
|
515
515
|
|
|
516
516
|
interface CustomTheme {
|
|
517
517
|
palette: {
|
|
@@ -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[];
|