jfs-components 0.0.72 → 0.0.73

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.
Files changed (116) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/lib/commonjs/components/AccordionCheckbox/AccordionCheckbox.js +239 -0
  3. package/lib/commonjs/components/BrandChip/BrandChip.js +149 -0
  4. package/lib/commonjs/components/CardBankAccount/CardBankAccount.js +213 -0
  5. package/lib/commonjs/components/CardInsight/CardInsight.js +166 -0
  6. package/lib/commonjs/components/CheckboxGroup/CheckboxGroup.js +67 -0
  7. package/lib/commonjs/components/CheckboxItem/CheckboxItem.js +125 -0
  8. package/lib/commonjs/components/CircularProgressBar/CircularProgressBar.js +56 -9
  9. package/lib/commonjs/components/CoverageBarComparison/CoverageBarComparison.js +272 -0
  10. package/lib/commonjs/components/CoverageRing/CoverageRing.js +141 -0
  11. package/lib/commonjs/components/DonutChart/DonutChart.js +309 -0
  12. package/lib/commonjs/components/DonutChartSummary/DonutChartSummary.js +155 -0
  13. package/lib/commonjs/components/LinearMeter/LinearMeter.js +9 -28
  14. package/lib/commonjs/components/LinearProgress/LinearProgress.js +68 -0
  15. package/lib/commonjs/components/MetricLegendItem/MetricLegendItem.js +95 -0
  16. package/lib/commonjs/components/MonthlyStatusGrid/MonthlyStatusGrid.js +286 -0
  17. package/lib/commonjs/components/OTP/OTP.js +381 -37
  18. package/lib/commonjs/components/ProductOverview/ProductOverview.js +147 -0
  19. package/lib/commonjs/components/RangeTrack/RangeTrack.js +269 -0
  20. package/lib/commonjs/components/SavingsGoalSummary/SavingsGoalSummary.js +181 -0
  21. package/lib/commonjs/components/SegmentedTrack/SegmentedTrack.js +171 -0
  22. package/lib/commonjs/components/StatGroup/StatGroup.js +128 -0
  23. package/lib/commonjs/components/StatItem/StatItem.js +65 -35
  24. package/lib/commonjs/components/StrengthIndicator/StrengthIndicator.js +157 -0
  25. package/lib/commonjs/components/SummaryTile/SummaryTile.js +150 -0
  26. package/lib/commonjs/components/index.js +171 -1
  27. package/lib/commonjs/design-tokens/Coin Variables-variables-full.json +1 -1
  28. package/lib/commonjs/icons/registry.js +1 -1
  29. package/lib/commonjs/utils/index.js +7 -0
  30. package/lib/commonjs/utils/number-utils.js +57 -0
  31. package/lib/module/components/AccordionCheckbox/AccordionCheckbox.js +233 -0
  32. package/lib/module/components/BrandChip/BrandChip.js +143 -0
  33. package/lib/module/components/CardBankAccount/CardBankAccount.js +208 -0
  34. package/lib/module/components/CardInsight/CardInsight.js +161 -0
  35. package/lib/module/components/CheckboxGroup/CheckboxGroup.js +62 -0
  36. package/lib/module/components/CheckboxItem/CheckboxItem.js +119 -0
  37. package/lib/module/components/CircularProgressBar/CircularProgressBar.js +56 -9
  38. package/lib/module/components/CoverageBarComparison/CoverageBarComparison.js +266 -0
  39. package/lib/module/components/CoverageRing/CoverageRing.js +136 -0
  40. package/lib/module/components/DonutChart/DonutChart.js +303 -0
  41. package/lib/module/components/DonutChartSummary/DonutChartSummary.js +150 -0
  42. package/lib/module/components/LinearMeter/LinearMeter.js +9 -28
  43. package/lib/module/components/LinearProgress/LinearProgress.js +63 -0
  44. package/lib/module/components/MetricLegendItem/MetricLegendItem.js +90 -0
  45. package/lib/module/components/MonthlyStatusGrid/MonthlyStatusGrid.js +281 -0
  46. package/lib/module/components/OTP/OTP.js +381 -38
  47. package/lib/module/components/ProductOverview/ProductOverview.js +142 -0
  48. package/lib/module/components/RangeTrack/RangeTrack.js +263 -0
  49. package/lib/module/components/SavingsGoalSummary/SavingsGoalSummary.js +175 -0
  50. package/lib/module/components/SegmentedTrack/SegmentedTrack.js +166 -0
  51. package/lib/module/components/StatGroup/StatGroup.js +123 -0
  52. package/lib/module/components/StatItem/StatItem.js +66 -36
  53. package/lib/module/components/StrengthIndicator/StrengthIndicator.js +152 -0
  54. package/lib/module/components/SummaryTile/SummaryTile.js +145 -0
  55. package/lib/module/components/index.js +21 -1
  56. package/lib/module/design-tokens/Coin Variables-variables-full.json +1 -1
  57. package/lib/module/icons/registry.js +1 -1
  58. package/lib/module/utils/index.js +2 -1
  59. package/lib/module/utils/number-utils.js +53 -0
  60. package/lib/typescript/src/components/AccordionCheckbox/AccordionCheckbox.d.ts +71 -0
  61. package/lib/typescript/src/components/BrandChip/BrandChip.d.ts +43 -0
  62. package/lib/typescript/src/components/CardBankAccount/CardBankAccount.d.ts +79 -0
  63. package/lib/typescript/src/components/CardInsight/CardInsight.d.ts +48 -0
  64. package/lib/typescript/src/components/CheckboxGroup/CheckboxGroup.d.ts +41 -0
  65. package/lib/typescript/src/components/CheckboxItem/CheckboxItem.d.ts +56 -0
  66. package/lib/typescript/src/components/CircularProgressBar/CircularProgressBar.d.ts +11 -1
  67. package/lib/typescript/src/components/CoverageBarComparison/CoverageBarComparison.d.ts +105 -0
  68. package/lib/typescript/src/components/CoverageRing/CoverageRing.d.ts +90 -0
  69. package/lib/typescript/src/components/DonutChart/DonutChart.d.ts +117 -0
  70. package/lib/typescript/src/components/DonutChartSummary/DonutChartSummary.d.ts +103 -0
  71. package/lib/typescript/src/components/LinearProgress/LinearProgress.d.ts +17 -0
  72. package/lib/typescript/src/components/MetricLegendItem/MetricLegendItem.d.ts +37 -0
  73. package/lib/typescript/src/components/MonthlyStatusGrid/MonthlyStatusGrid.d.ts +119 -0
  74. package/lib/typescript/src/components/OTP/OTP.d.ts +88 -2
  75. package/lib/typescript/src/components/ProductOverview/ProductOverview.d.ts +39 -0
  76. package/lib/typescript/src/components/RangeTrack/RangeTrack.d.ts +173 -0
  77. package/lib/typescript/src/components/SavingsGoalSummary/SavingsGoalSummary.d.ts +95 -0
  78. package/lib/typescript/src/components/SegmentedTrack/SegmentedTrack.d.ts +108 -0
  79. package/lib/typescript/src/components/StatGroup/StatGroup.d.ts +45 -0
  80. package/lib/typescript/src/components/StatItem/StatItem.d.ts +24 -7
  81. package/lib/typescript/src/components/StrengthIndicator/StrengthIndicator.d.ts +58 -0
  82. package/lib/typescript/src/components/SummaryTile/SummaryTile.d.ts +60 -0
  83. package/lib/typescript/src/components/index.d.ts +22 -2
  84. package/lib/typescript/src/icons/registry.d.ts +1 -1
  85. package/lib/typescript/src/utils/index.d.ts +1 -0
  86. package/lib/typescript/src/utils/number-utils.d.ts +29 -0
  87. package/package.json +1 -1
  88. package/src/components/AccordionCheckbox/AccordionCheckbox.tsx +323 -0
  89. package/src/components/BrandChip/BrandChip.tsx +235 -0
  90. package/src/components/CardBankAccount/CardBankAccount.tsx +295 -0
  91. package/src/components/CardInsight/CardInsight.tsx +239 -0
  92. package/src/components/CheckboxGroup/CheckboxGroup.tsx +86 -0
  93. package/src/components/CheckboxItem/CheckboxItem.tsx +174 -0
  94. package/src/components/CircularProgressBar/CircularProgressBar.tsx +74 -9
  95. package/src/components/CoverageBarComparison/CoverageBarComparison.tsx +378 -0
  96. package/src/components/CoverageRing/CoverageRing.tsx +225 -0
  97. package/src/components/DonutChart/DonutChart.tsx +503 -0
  98. package/src/components/DonutChartSummary/DonutChartSummary.tsx +256 -0
  99. package/src/components/LinearMeter/LinearMeter.tsx +9 -39
  100. package/src/components/LinearProgress/LinearProgress.tsx +92 -0
  101. package/src/components/MetricLegendItem/MetricLegendItem.tsx +167 -0
  102. package/src/components/MonthlyStatusGrid/MonthlyStatusGrid.tsx +438 -0
  103. package/src/components/OTP/OTP.tsx +476 -29
  104. package/src/components/ProductOverview/ProductOverview.tsx +236 -0
  105. package/src/components/RangeTrack/RangeTrack.tsx +394 -0
  106. package/src/components/SavingsGoalSummary/SavingsGoalSummary.tsx +269 -0
  107. package/src/components/SegmentedTrack/SegmentedTrack.tsx +268 -0
  108. package/src/components/StatGroup/StatGroup.tsx +169 -0
  109. package/src/components/StatItem/StatItem.tsx +117 -40
  110. package/src/components/StrengthIndicator/StrengthIndicator.tsx +205 -0
  111. package/src/components/SummaryTile/SummaryTile.tsx +251 -0
  112. package/src/components/index.ts +32 -2
  113. package/src/design-tokens/Coin Variables-variables-full.json +1 -1
  114. package/src/icons/registry.ts +1 -1
  115. package/src/utils/index.ts +1 -0
  116. package/src/utils/number-utils.ts +60 -0
@@ -5,14 +5,19 @@ export { default as AvatarGroup } from './AvatarGroup/AvatarGroup';
5
5
  export { default as Badge } from './Badge/Badge';
6
6
  export { default as BottomNav } from './BottomNav/BottomNav';
7
7
  export { default as BottomNavItem } from './BottomNavItem/BottomNavItem';
8
+ export { default as BrandChip, type BrandChipProps } from './BrandChip/BrandChip';
8
9
  export { default as Button, type ButtonProps } from './Button/Button';
9
10
  export { default as Card } from './Card/Card';
10
11
  export { default as CardAdvisory, type CardAdvisoryProps } from './CardAdvisory/CardAdvisory'
12
+ export { default as CardBankAccount, type CardBankAccountProps, type CardBankAccountItem } from './CardBankAccount/CardBankAccount';
11
13
  export { default as Carousel } from './Carousel/Carousel';
12
14
  export type { CarouselProps, CarouselItemProps, PaginationProps } from './Carousel/Carousel';
13
15
  export { default as Checkbox, type CheckboxProps } from './Checkbox/Checkbox';
16
+ export { default as CheckboxItem, type CheckboxItemProps } from './CheckboxItem/CheckboxItem';
17
+ export { default as CheckboxGroup, type CheckboxGroupProps } from './CheckboxGroup/CheckboxGroup';
14
18
  export { default as CardFeedback, type CardFeedbackProps } from './CardFeedback/CardFeedback';
15
19
  export { default as CardFinancialCondition, type CardFinancialConditionProps } from './CardFinancialCondition/CardFinancialCondition';
20
+ export { default as CardInsight, type CardInsightProps } from './CardInsight/CardInsight';
16
21
  export { default as Disclaimer } from './Disclaimer/Disclaimer';
17
22
  export { default as Divider, type DividerProps, type DividerDirection } from './Divider/Divider';
18
23
  export { default as Drawer } from './Drawer/Drawer';
@@ -25,6 +30,9 @@ export { default as FormField, type FormFieldProps, type FormFieldType } from '.
25
30
  export { default as CircularProgressBar, type CircularProgressBarProps } from './CircularProgressBar/CircularProgressBar'
26
31
  export { default as CircularProgressBarDoted, type CircularProgressBarDotedProps } from './CircularProgressBarDoted/CircularProgressBarDoted'
27
32
  export { default as CircularRating, type CircularRatingProps } from './CircularRating/CircularRating'
33
+ export { default as CoverageRing, type CoverageRingProps } from './CoverageRing/CoverageRing'
34
+ export { default as CoverageBarComparison, type CoverageBarComparisonProps, type CoverageBarComparisonItem } from './CoverageBarComparison/CoverageBarComparison'
35
+ export { default as MonthlyStatusGrid, CalendarGlyph, type MonthlyStatusGridProps, type MonthlyStatusGridMonth, type MonthlyStatus, type CalendarGlyphProps } from './MonthlyStatusGrid/MonthlyStatusGrid'
28
36
  export { default as Gauge, type GaugeProps } from './Gauge/Gauge';
29
37
  export { default as HoldingsCard, type HoldingsCardProps } from './HoldingsCard/HoldingsCard';
30
38
  export { default as HStack, type HStackProps } from './HStack/HStack';
@@ -33,10 +41,12 @@ export { default as IconCapsule } from './IconCapsule/IconCapsule';
33
41
  export { default as Image, type ImageProps } from './Image/Image';
34
42
  export { default as LazyList } from './LazyList/LazyList';
35
43
  export { default as LinearMeter, type LinearMeterProps } from './LinearMeter/LinearMeter';
44
+ export { default as LinearProgress, type LinearProgressProps } from './LinearProgress/LinearProgress';
36
45
  export { default as ListGroup } from './ListGroup/ListGroup';
37
46
  export { default as ListItem } from './ListItem/ListItem';
38
47
  export { default as MediaCard, type MediaCardProps } from './MediaCard/MediaCard';
39
48
  export { default as MerchantProfile, type MerchantProfileProps } from './MerchantProfile/MerchantProfile';
49
+ export { default as MetricLegendItem, type MetricLegendItemProps } from './MetricLegendItem/MetricLegendItem';
40
50
  export { default as MoneyValue } from './MoneyValue/MoneyValue';
41
51
  export { default as NoteInput, type NoteInputProps } from './NoteInput/NoteInput';
42
52
  export { default as Nudge, type NudgeProps } from './Nudge/Nudge';
@@ -61,6 +71,7 @@ export { default as VStack, type VStackProps } from './VStack/VStack';
61
71
  export { default as ChipGroup, type ChipGroupProps } from './ChipGroup/ChipGroup';
62
72
  export { default as EmptyState, type EmptyStateProps } from './EmptyState/EmptyState';
63
73
  export { default as Accordion, type AccordionProps } from './Accordion/Accordion';
74
+ export { default as AccordionCheckbox, type AccordionCheckboxProps } from './AccordionCheckbox/AccordionCheckbox';
64
75
  export { default as ActionTile, type ActionTileProps } from './ActionTile/ActionTile';
65
76
  export { default as Balance, type BalanceProps } from './Balance/Balance';
66
77
  export { default as ButtonGroup, type ButtonGroupProps } from './ButtonGroup/ButtonGroup';
@@ -77,6 +88,11 @@ export { default as Radio, type RadioProps } from './Radio/Radio';
77
88
  */
78
89
  export { default as RadioButton, type RadioButtonProps } from './RadioButton/RadioButton';
79
90
  export { default as RechargeCard, type RechargeCardProps } from './RechargeCard/RechargeCard';
91
+ export { default as SavingsGoalSummary, type SavingsGoalSummaryProps, type SavingsGoalSummaryItem } from './SavingsGoalSummary/SavingsGoalSummary';
92
+ export { default as DonutChart, type DonutChartProps, type DonutChartSegmentData, type DonutChartSegmentProps, DonutChartSegment } from './DonutChart/DonutChart';
93
+ export { default as DonutChartSummary, type DonutChartSummaryProps, type DonutChartSummaryItem } from './DonutChartSummary/DonutChartSummary';
94
+ export { default as RangeTrack, type RangeTrackProps, type RangeTrackTab, type RangeTrackItem } from './RangeTrack/RangeTrack';
95
+ export { default as SegmentedTrack, type SegmentedTrackProps, type SegmentedTrackSegmentData, type SegmentedTrackSegmentProps, SegmentedTrackSegment } from './SegmentedTrack/SegmentedTrack';
80
96
  export { default as Tabs, type TabsProps } from './Tabs/Tabs';
81
97
  export { default as TabItem, type TabItemProps } from './Tabs/TabItem';
82
98
  export { default as Toast, type ToastProps } from './Toast/Toast';
@@ -86,11 +102,25 @@ export { default as AmountInput, type AmountInputProps } from './AmountInput/Amo
86
102
  export { default as Popup, type PopupProps, type PopupRef } from './Popup/Popup';
87
103
  export { default as PortfolioHero, type PortfolioHeroProps } from './PortfolioHero/PortfolioHero';
88
104
  export { default as ProductLabel, type ProductLabelProps } from './ProductLabel/ProductLabel';
105
+ export { default as ProductOverview, type ProductOverviewProps, type ProductOverviewStat } from './ProductOverview/ProductOverview';
89
106
  export { default as ProgressBadge, type ProgressBadgeProps } from './ProgressBadge/ProgressBadge';
90
107
  export { default as SwappableAmount, type SwappableAmountProps } from './SwappableAmount/SwappableAmount';
91
- export { default as OTP, type OTPProps } from './OTP/OTP';
108
+ export {
109
+ default as OTP,
110
+ OTPResend,
111
+ useOtpResend,
112
+ type OTPProps,
113
+ type OTPResendProps,
114
+ type OTPResendConfig,
115
+ type UseOtpResendOptions,
116
+ type UseOtpResendReturn,
117
+ type OtpResendState,
118
+ } from './OTP/OTP';
92
119
  export { default as PaymentFeedback, type PaymentFeedbackProps } from './PaymentFeedback/PaymentFeedback';
93
- export { default as StatItem, type StatItemProps } from './StatItem/StatItem';
120
+ export { default as StatItem, type StatItemProps, type StatItemLabelPosition } from './StatItem/StatItem';
121
+ export { default as StatGroup, type StatGroupProps, type StatGroupItem } from './StatGroup/StatGroup';
122
+ export { default as StrengthIndicator, type StrengthIndicatorProps, type StrengthIndicatorConfidence, type StrengthIndicatorConfidenceValue } from './StrengthIndicator/StrengthIndicator';
123
+ export { default as SummaryTile, type SummaryTileProps } from './SummaryTile/SummaryTile';
94
124
  export { default as Text, type TextProps } from './Text/Text';
95
125
  export { default as SegmentedControl, type SegmentedControlProps, type SegmentedControlItem } from './SegmentedControl/SegmentedControl';
96
126
  export { default as Toggle, type ToggleProps } from './Toggle/Toggle';