jfs-components 0.1.25 → 0.1.30

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 (97) hide show
  1. package/CHANGELOG.md +53 -0
  2. package/lib/commonjs/components/AutoplayControl/AutoplayControl.js +66 -0
  3. package/lib/commonjs/components/Carousel/Carousel.js +112 -19
  4. package/lib/commonjs/components/CompareTable/CompareTable.js +191 -25
  5. package/lib/commonjs/components/ContentSheet/ContentSheet.js +104 -10
  6. package/lib/commonjs/components/FormUpload/Additem.js +168 -0
  7. package/lib/commonjs/components/FormUpload/FormUpload.js +198 -0
  8. package/lib/commonjs/components/Grid/Grid.js +206 -0
  9. package/lib/commonjs/components/MoneyValue/MoneyValue.js +179 -54
  10. package/lib/commonjs/components/NumberPagination/NumberPagination.js +144 -0
  11. package/lib/commonjs/components/PdpCcCard/PdpCcCard.js +7 -1
  12. package/lib/commonjs/components/ProfileCard/ProfileCard.js +208 -0
  13. package/lib/commonjs/components/Table/Table.js +27 -7
  14. package/lib/commonjs/components/UpiHandle/UpiHandle.js +23 -11
  15. package/lib/commonjs/components/index.js +42 -0
  16. package/lib/commonjs/design-tokens/Coin Variables-variables-full.json +1 -1
  17. package/lib/commonjs/design-tokens/figma-modes.generated.js +21 -10
  18. package/lib/commonjs/icons/components/IconBrokenimage.js +19 -0
  19. package/lib/commonjs/icons/components/IconImage.js +19 -0
  20. package/lib/commonjs/icons/components/IconMic.js +19 -0
  21. package/lib/commonjs/icons/components/IconMicoff.js +19 -0
  22. package/lib/commonjs/icons/components/IconPause.js +19 -0
  23. package/lib/commonjs/icons/components/IconPlay.js +19 -0
  24. package/lib/commonjs/icons/components/index.js +66 -0
  25. package/lib/commonjs/icons/registry.js +2 -2
  26. package/lib/module/components/AutoplayControl/AutoplayControl.js +60 -0
  27. package/lib/module/components/Carousel/Carousel.js +111 -19
  28. package/lib/module/components/CompareTable/CompareTable.js +191 -26
  29. package/lib/module/components/ContentSheet/ContentSheet.js +108 -14
  30. package/lib/module/components/FormUpload/Additem.js +162 -0
  31. package/lib/module/components/FormUpload/FormUpload.js +192 -0
  32. package/lib/module/components/Grid/Grid.js +201 -0
  33. package/lib/module/components/MoneyValue/MoneyValue.js +182 -57
  34. package/lib/module/components/NumberPagination/NumberPagination.js +138 -0
  35. package/lib/module/components/PdpCcCard/PdpCcCard.js +7 -1
  36. package/lib/module/components/ProfileCard/ProfileCard.js +202 -0
  37. package/lib/module/components/Table/Table.js +27 -7
  38. package/lib/module/components/UpiHandle/UpiHandle.js +23 -11
  39. package/lib/module/components/index.js +7 -1
  40. package/lib/module/design-tokens/Coin Variables-variables-full.json +1 -1
  41. package/lib/module/design-tokens/figma-modes.generated.js +21 -10
  42. package/lib/module/icons/components/IconBrokenimage.js +12 -0
  43. package/lib/module/icons/components/IconImage.js +12 -0
  44. package/lib/module/icons/components/IconMic.js +12 -0
  45. package/lib/module/icons/components/IconMicoff.js +12 -0
  46. package/lib/module/icons/components/IconPause.js +12 -0
  47. package/lib/module/icons/components/IconPlay.js +12 -0
  48. package/lib/module/icons/components/index.js +6 -0
  49. package/lib/module/icons/registry.js +2 -2
  50. package/lib/typescript/src/components/AutoplayControl/AutoplayControl.d.ts +15 -0
  51. package/lib/typescript/src/components/Carousel/Carousel.d.ts +8 -1
  52. package/lib/typescript/src/components/CompareTable/CompareTable.d.ts +21 -1
  53. package/lib/typescript/src/components/ContentSheet/ContentSheet.d.ts +20 -1
  54. package/lib/typescript/src/components/FormUpload/Additem.d.ts +96 -0
  55. package/lib/typescript/src/components/FormUpload/FormUpload.d.ts +85 -0
  56. package/lib/typescript/src/components/Grid/Grid.d.ts +87 -0
  57. package/lib/typescript/src/components/MoneyValue/MoneyValue.d.ts +10 -1
  58. package/lib/typescript/src/components/NumberPagination/NumberPagination.d.ts +21 -0
  59. package/lib/typescript/src/components/PdpCcCard/PdpCcCard.d.ts +25 -1
  60. package/lib/typescript/src/components/ProfileCard/ProfileCard.d.ts +89 -0
  61. package/lib/typescript/src/components/Table/Table.d.ts +9 -1
  62. package/lib/typescript/src/components/UpiHandle/UpiHandle.d.ts +7 -1
  63. package/lib/typescript/src/components/index.d.ts +34 -28
  64. package/lib/typescript/src/design-tokens/figma-modes.generated.d.ts +10 -4
  65. package/lib/typescript/src/icons/components/IconBrokenimage.d.ts +3 -0
  66. package/lib/typescript/src/icons/components/IconImage.d.ts +3 -0
  67. package/lib/typescript/src/icons/components/IconMic.d.ts +3 -0
  68. package/lib/typescript/src/icons/components/IconMicoff.d.ts +3 -0
  69. package/lib/typescript/src/icons/components/IconPause.d.ts +3 -0
  70. package/lib/typescript/src/icons/components/IconPlay.d.ts +3 -0
  71. package/lib/typescript/src/icons/components/index.d.ts +6 -0
  72. package/lib/typescript/src/icons/registry.d.ts +1 -1
  73. package/package.json +1 -1
  74. package/src/components/AutoplayControl/AutoplayControl.tsx +77 -0
  75. package/src/components/Carousel/Carousel.tsx +133 -23
  76. package/src/components/CompareTable/CompareTable.tsx +224 -30
  77. package/src/components/ContentSheet/ContentSheet.tsx +138 -8
  78. package/src/components/FormUpload/Additem.tsx +262 -0
  79. package/src/components/FormUpload/FormUpload.tsx +313 -0
  80. package/src/components/Grid/Grid.tsx +368 -0
  81. package/src/components/MoneyValue/MoneyValue.tsx +216 -65
  82. package/src/components/NumberPagination/NumberPagination.tsx +170 -0
  83. package/src/components/PdpCcCard/PdpCcCard.tsx +36 -1
  84. package/src/components/ProfileCard/ProfileCard.tsx +268 -0
  85. package/src/components/Table/Table.tsx +29 -4
  86. package/src/components/UpiHandle/UpiHandle.tsx +35 -24
  87. package/src/components/index.ts +329 -182
  88. package/src/design-tokens/Coin Variables-variables-full.json +1 -1
  89. package/src/design-tokens/figma-modes.generated.ts +21 -10
  90. package/src/icons/components/IconBrokenimage.tsx +11 -0
  91. package/src/icons/components/IconImage.tsx +11 -0
  92. package/src/icons/components/IconMic.tsx +11 -0
  93. package/src/icons/components/IconMicoff.tsx +11 -0
  94. package/src/icons/components/IconPause.tsx +11 -0
  95. package/src/icons/components/IconPlay.tsx +11 -0
  96. package/src/icons/components/index.ts +6 -0
  97. package/src/icons/registry.ts +25 -1
@@ -1,191 +1,338 @@
1
- export { default as AccountCard, type AccountCardProps, type AccountCardState } from './AccountCard/AccountCard';
2
- export { default as ActionFooter, type ActionFooterProps } from './ActionFooter/ActionFooter';
3
- export { default as Attached, type AttachedProps, type AttachedPosition } from './Attached/Attached';
4
- export { default as AppBar } from './AppBar/AppBar';
5
- export { default as Avatar, type AvatarProps } from './Avatar/Avatar';
6
- export { default as AvatarGroup } from './AvatarGroup/AvatarGroup';
7
- export { default as Badge, type BadgeProps, type BadgeType } from './Badge/Badge';
8
- export { default as BenefitCard, type BenefitCardProps, type BenefitCardItem } from './BenefitCard/BenefitCard';
9
- export { default as BottomNav } from './BottomNav/BottomNav';
10
- export { default as BottomNavItem } from './BottomNavItem/BottomNavItem';
11
- export { default as BrandChip, type BrandChipProps } from './BrandChip/BrandChip';
12
- export { default as Button, type ButtonProps } from './Button/Button';
13
- export { default as Card } from './Card/Card';
1
+ export { default as AccountCard, type AccountCardProps, type AccountCardState } from './AccountCard/AccountCard'
2
+ export { default as ActionFooter, type ActionFooterProps } from './ActionFooter/ActionFooter'
3
+ export { default as Attached, type AttachedProps, type AttachedPosition } from './Attached/Attached'
4
+ export { default as AppBar } from './AppBar/AppBar'
5
+ export { default as Avatar, type AvatarProps } from './Avatar/Avatar'
6
+ export { default as AvatarGroup } from './AvatarGroup/AvatarGroup'
7
+ export { default as Badge, type BadgeProps, type BadgeType } from './Badge/Badge'
8
+ export { default as BenefitCard, type BenefitCardProps, type BenefitCardItem } from './BenefitCard/BenefitCard'
9
+ export { default as BottomNav } from './BottomNav/BottomNav'
10
+ export { default as BottomNavItem } from './BottomNavItem/BottomNavItem'
11
+ export { default as BrandChip, type BrandChipProps } from './BrandChip/BrandChip'
12
+ export { default as Button, type ButtonProps } from './Button/Button'
13
+ export { default as Card } from './Card/Card'
14
14
  export { default as CardAdvisory, type CardAdvisoryProps } from './CardAdvisory/CardAdvisory'
15
- export { default as CardBankAccount, type CardBankAccountProps, type CardBankAccountItem } from './CardBankAccount/CardBankAccount';
16
- export { default as Carousel } from './Carousel/Carousel';
17
- export type { CarouselProps, CarouselItemProps, PaginationProps } from './Carousel/Carousel';
18
- export { default as CarouselCardAccounts, type CarouselCardAccountsProps } from './CarouselCardAccounts/CarouselCardAccounts';
19
- export { default as Checkbox, type CheckboxProps } from './Checkbox/Checkbox';
20
- export { default as CheckboxItem, type CheckboxItemProps } from './CheckboxItem/CheckboxItem';
21
- export { default as CheckboxGroup, type CheckboxGroupProps } from './CheckboxGroup/CheckboxGroup';
22
- export { default as CardFeedback, type CardFeedbackProps } from './CardFeedback/CardFeedback';
23
- export { default as CardFinancialCondition, type CardFinancialConditionProps } from './CardFinancialCondition/CardFinancialCondition';
24
- export { default as CardInsight, type CardInsightProps } from './CardInsight/CardInsight';
25
- export { default as CcCard, type CcCardProps, type CcCardBadge, type CcCardListItem } from './CcCard/CcCard';
26
- export { default as Disclaimer } from './Disclaimer/Disclaimer';
27
- export { default as Divider, type DividerProps, type DividerDirection } from './Divider/Divider';
28
- export { default as Drawer, type DrawerProps, type DrawerHandle } from './Drawer/Drawer';
29
- export { default as Dropdown, DropdownItem, type DropdownProps, type DropdownItemProps } from './Dropdown/Dropdown';
30
- export { default as DropdownInput, type DropdownInputProps, type DropdownInputHandle, type DropdownInputOption, type DropdownInputOptionValue } from './DropdownInput/DropdownInput';
31
- export { default as SuggestiveSearch, type SuggestiveSearchProps, type SuggestiveSearchOption, type SuggestiveSearchOptionValue, type SuggestiveSearchItem } from './SuggestiveSearch/SuggestiveSearch';
15
+ export {
16
+ default as CardBankAccount,
17
+ type CardBankAccountProps,
18
+ type CardBankAccountItem,
19
+ } from './CardBankAccount/CardBankAccount'
20
+ export { default as Carousel } from './Carousel/Carousel'
21
+ export type { CarouselProps, CarouselItemProps, PaginationProps } from './Carousel/Carousel'
22
+ export {
23
+ default as CarouselCardAccounts,
24
+ type CarouselCardAccountsProps,
25
+ } from './CarouselCardAccounts/CarouselCardAccounts'
26
+ export { default as Checkbox, type CheckboxProps } from './Checkbox/Checkbox'
27
+ export { default as CheckboxItem, type CheckboxItemProps } from './CheckboxItem/CheckboxItem'
28
+ export { default as CheckboxGroup, type CheckboxGroupProps } from './CheckboxGroup/CheckboxGroup'
29
+ export { default as CardFeedback, type CardFeedbackProps } from './CardFeedback/CardFeedback'
30
+ export {
31
+ default as CardFinancialCondition,
32
+ type CardFinancialConditionProps,
33
+ } from './CardFinancialCondition/CardFinancialCondition'
34
+ export { default as CardInsight, type CardInsightProps } from './CardInsight/CardInsight'
35
+ export { default as CcCard, type CcCardProps, type CcCardBadge, type CcCardListItem } from './CcCard/CcCard'
36
+ export { default as Disclaimer } from './Disclaimer/Disclaimer'
37
+ export { default as Divider, type DividerProps, type DividerDirection } from './Divider/Divider'
38
+ export { default as Drawer, type DrawerProps, type DrawerHandle } from './Drawer/Drawer'
39
+ export { default as Dropdown, DropdownItem, type DropdownProps, type DropdownItemProps } from './Dropdown/Dropdown'
40
+ export {
41
+ default as DropdownInput,
42
+ type DropdownInputProps,
43
+ type DropdownInputHandle,
44
+ type DropdownInputOption,
45
+ type DropdownInputOptionValue,
46
+ } from './DropdownInput/DropdownInput'
47
+ export {
48
+ default as SuggestiveSearch,
49
+ type SuggestiveSearchProps,
50
+ type SuggestiveSearchOption,
51
+ type SuggestiveSearchOptionValue,
52
+ type SuggestiveSearchItem,
53
+ } from './SuggestiveSearch/SuggestiveSearch'
32
54
  export { default as CardCTA, type CardCTAProps, type CardCTAType, type CardCTATypeInput } from './CardCTA/CardCTA'
33
- export { default as DebitCard, type DebitCardProps } from './DebitCard/DebitCard';
34
- export { default as FilterBar } from './FilterBar/FilterBar';
35
- export { default as FullscreenModal, type FullscreenModalProps } from './FullscreenModal/FullscreenModal';
36
- export { default as Form, type FormProps } from './Form/Form';
37
- export { useFormContext } from './Form/Form';
38
- export { default as FormField, type FormFieldProps, type FormFieldType } from './FormField/FormField';
39
- export { default as ContentSheet, type ContentSheetProps } from './ContentSheet/ContentSheet';
40
- export { default as CircularProgressBar, type CircularProgressBarProps } from './CircularProgressBar/CircularProgressBar'
41
- export { default as CircularProgressBarDoted, type CircularProgressBarDotedProps } from './CircularProgressBarDoted/CircularProgressBarDoted'
55
+ export { default as DebitCard, type DebitCardProps } from './DebitCard/DebitCard'
56
+ export { default as FilterBar } from './FilterBar/FilterBar'
57
+ export { default as FullscreenModal, type FullscreenModalProps } from './FullscreenModal/FullscreenModal'
58
+ export { default as Form, type FormProps } from './Form/Form'
59
+ export { useFormContext } from './Form/Form'
60
+ export { default as FormField, type FormFieldProps, type FormFieldType } from './FormField/FormField'
61
+ export {
62
+ default as Grid,
63
+ type GridProps,
64
+ type GridJustifyContent,
65
+ type GridAlignItems,
66
+ } from './Grid/Grid'
67
+ export { default as FormUpload, type FormUploadProps, type FormUploadAttachment } from './FormUpload/FormUpload'
68
+ export {
69
+ default as Additem,
70
+ type AdditemProps,
71
+ type AdditemPickerResult,
72
+ type AdditemPicker,
73
+ type PickedAsset,
74
+ } from './FormUpload/Additem'
75
+ export { default as ContentSheet, type ContentSheetProps } from './ContentSheet/ContentSheet'
76
+ export {
77
+ default as CircularProgressBar,
78
+ type CircularProgressBarProps,
79
+ } from './CircularProgressBar/CircularProgressBar'
80
+ export {
81
+ default as CircularProgressBarDoted,
82
+ type CircularProgressBarDotedProps,
83
+ } from './CircularProgressBarDoted/CircularProgressBarDoted'
42
84
  export { default as CircularRating, type CircularRatingProps } from './CircularRating/CircularRating'
43
85
  export { default as CoverageRing, type CoverageRingProps } from './CoverageRing/CoverageRing'
44
- export { default as CoverageBarComparison, type CoverageBarComparisonProps, type CoverageBarComparisonItem } from './CoverageBarComparison/CoverageBarComparison'
45
- export { default as ComparisonBar, type ComparisonBarProps, type ComparisonBarItem } from './ComparisonBar/ComparisonBar'
46
- export { default as AllocationComparisonChart, type AllocationComparisonChartProps, type AllocationSegment } from './AllocationComparisonChart/AllocationComparisonChart'
47
- export { default as MonthlyStatusGrid, CalendarGlyph, type MonthlyStatusGridProps, type MonthlyStatusGridMonth, type MonthlyStatus, type CalendarGlyphProps } from './MonthlyStatusGrid/MonthlyStatusGrid'
48
- export { default as Gauge, type GaugeProps } from './Gauge/Gauge';
49
- export { default as HeroSection, type HeroSectionProps } from './HeroSection/HeroSection';
50
- export { default as HoldingsCard, type HoldingsCardProps } from './HoldingsCard/HoldingsCard';
51
- export { default as HStack, type HStackProps } from './HStack/HStack';
52
- export { default as Icon, type IconProps } from './Icon/Icon';
53
- export { default as IconButton } from './IconButton/IconButton';
54
- export { default as IconCapsule } from './IconCapsule/IconCapsule';
55
- export { default as Image, type ImageProps } from './Image/Image';
56
- export { default as LazyList } from './LazyList/LazyList';
57
- export { default as Link, type LinkProps } from './Link/Link';
58
- export { default as LinearMeter, type LinearMeterProps } from './LinearMeter/LinearMeter';
59
- export { default as LinearProgress, type LinearProgressProps } from './LinearProgress/LinearProgress';
60
- export { default as ListGroup } from './ListGroup/ListGroup';
61
- export { default as LottieIntroBlock, type LottieIntroBlockProps } from './LottieIntroBlock/LottieIntroBlock';
62
- export { default as LottiePlayer, type LottiePlayerProps, type LottieAnimationSource } from './LottiePlayer/LottiePlayer';
63
- export { default as ListItem } from './ListItem/ListItem';
64
- export { default as MediaCard, type MediaCardProps } from './MediaCard/MediaCard';
65
- export { default as MerchantProfile, type MerchantProfileProps } from './MerchantProfile/MerchantProfile';
66
- export { default as MessageField, type MessageFieldProps, type MessageFieldState } from './MessageField/MessageField';
67
- export { default as MetricLegendItem, type MetricLegendItemProps } from './MetricLegendItem/MetricLegendItem';
68
- export { default as MoneyValue } from './MoneyValue/MoneyValue';
69
- export { default as NoteInput, type NoteInputProps } from './NoteInput/NoteInput';
70
- export { default as Nudge, type NudgeProps } from './Nudge/Nudge';
71
- export { default as NavArrow } from './NavArrow/NavArrow';
72
- export { default as Numpad, type NumpadProps, type NumpadKeyValue } from './Numpad/Numpad';
73
- export { default as Overlay, type OverlayProps } from './Overlay/Overlay';
74
- export { default as Title, type TitleProps } from './Title/Title';
75
- export { default as Screen, type ScreenProps } from './Screen/Screen';
76
- export { default as ScrollArea, type ScrollAreaProps, type ScrollDirection } from './ScrollArea/ScrollArea';
77
- export { default as Section } from './Section/Section';
78
- export { default as Slider, type SliderProps, type SliderHandle } from './Slider/Slider';
79
- export { default as Slot, type SlotProps, type SlotLayoutDirection } from './Slot/Slot';
80
- export {
81
- default as Stack,
82
- type StackProps,
83
- type StackLayoutDirection,
84
- } from './Stack/Stack';
85
- export { default as Spinner, type SpinnerProps, type SpinnerColors } from './Spinner/Spinner';
86
- export { default as Stepper, type StepperProps } from './Stepper/Stepper';
87
- export { Step, type StepProps, type StepStatus } from './Stepper/Step';
88
- export { StepLabel, type StepLabelProps } from './Stepper/StepLabel';
89
- export { default as TextInput } from './TextInput/TextInput';
90
- export { default as StatusHero, type StatusHeroProps } from './StatusHero/StatusHero';
91
- export { default as ThreadHero, type ThreadHeroProps } from './ThreadHero/ThreadHero';
92
- export {
93
- Tooltip,
94
- TooltipTrigger,
95
- TooltipContent,
96
- type TooltipProps,
97
- type TooltipTriggerProps,
98
- type TooltipContentProps,
99
- type Placement as TooltipPlacement,
100
- } from './Tooltip/Tooltip';
86
+ export {
87
+ default as CoverageBarComparison,
88
+ type CoverageBarComparisonProps,
89
+ type CoverageBarComparisonItem,
90
+ } from './CoverageBarComparison/CoverageBarComparison'
91
+ export {
92
+ default as ComparisonBar,
93
+ type ComparisonBarProps,
94
+ type ComparisonBarItem,
95
+ } from './ComparisonBar/ComparisonBar'
96
+ export {
97
+ default as AllocationComparisonChart,
98
+ type AllocationComparisonChartProps,
99
+ type AllocationSegment,
100
+ } from './AllocationComparisonChart/AllocationComparisonChart'
101
+ export {
102
+ default as MonthlyStatusGrid,
103
+ CalendarGlyph,
104
+ type MonthlyStatusGridProps,
105
+ type MonthlyStatusGridMonth,
106
+ type MonthlyStatus,
107
+ type CalendarGlyphProps,
108
+ } from './MonthlyStatusGrid/MonthlyStatusGrid'
109
+ export { default as Gauge, type GaugeProps } from './Gauge/Gauge'
110
+ export { default as HeroSection, type HeroSectionProps } from './HeroSection/HeroSection'
111
+ export { default as HoldingsCard, type HoldingsCardProps } from './HoldingsCard/HoldingsCard'
112
+ export { default as HStack, type HStackProps } from './HStack/HStack'
113
+ export { default as Icon, type IconProps } from './Icon/Icon'
114
+ export { default as IconButton } from './IconButton/IconButton'
115
+ export { default as IconCapsule } from './IconCapsule/IconCapsule'
116
+ export { default as Image, type ImageProps } from './Image/Image'
117
+ export { default as LazyList } from './LazyList/LazyList'
118
+ export { default as Link, type LinkProps } from './Link/Link'
119
+ export { default as LinearMeter, type LinearMeterProps } from './LinearMeter/LinearMeter'
120
+ export { default as LinearProgress, type LinearProgressProps } from './LinearProgress/LinearProgress'
121
+ export { default as ListGroup } from './ListGroup/ListGroup'
122
+ export { default as LottieIntroBlock, type LottieIntroBlockProps } from './LottieIntroBlock/LottieIntroBlock'
123
+ export {
124
+ default as LottiePlayer,
125
+ type LottiePlayerProps,
126
+ type LottieAnimationSource,
127
+ } from './LottiePlayer/LottiePlayer'
128
+ export { default as ListItem } from './ListItem/ListItem'
129
+ export { default as MediaCard, type MediaCardProps } from './MediaCard/MediaCard'
130
+ export { default as MerchantProfile, type MerchantProfileProps } from './MerchantProfile/MerchantProfile'
131
+ export { default as MessageField, type MessageFieldProps, type MessageFieldState } from './MessageField/MessageField'
132
+ export { default as MetricLegendItem, type MetricLegendItemProps } from './MetricLegendItem/MetricLegendItem'
133
+ export { default as MoneyValue } from './MoneyValue/MoneyValue'
134
+ export { default as NoteInput, type NoteInputProps } from './NoteInput/NoteInput'
135
+ export { default as Nudge, type NudgeProps } from './Nudge/Nudge'
136
+ export { default as NavArrow } from './NavArrow/NavArrow'
137
+ export { default as Numpad, type NumpadProps, type NumpadKeyValue } from './Numpad/Numpad'
138
+ export { default as Overlay, type OverlayProps } from './Overlay/Overlay'
139
+ export { default as Title, type TitleProps } from './Title/Title'
140
+ export { default as Screen, type ScreenProps } from './Screen/Screen'
141
+ export { default as ScrollArea, type ScrollAreaProps, type ScrollDirection } from './ScrollArea/ScrollArea'
142
+ export { default as Section } from './Section/Section'
143
+ export { default as Slider, type SliderProps, type SliderHandle } from './Slider/Slider'
144
+ export { default as Slot, type SlotProps, type SlotLayoutDirection } from './Slot/Slot'
145
+ export { default as Stack, type StackProps, type StackLayoutDirection } from './Stack/Stack'
146
+ export { default as Spinner, type SpinnerProps, type SpinnerColors } from './Spinner/Spinner'
147
+ export { default as Stepper, type StepperProps } from './Stepper/Stepper'
148
+ export { Step, type StepProps, type StepStatus } from './Stepper/Step'
149
+ export { StepLabel, type StepLabelProps } from './Stepper/StepLabel'
150
+ export { default as TextInput } from './TextInput/TextInput'
151
+ export { default as StatusHero, type StatusHeroProps } from './StatusHero/StatusHero'
152
+ export { default as ThreadHero, type ThreadHeroProps } from './ThreadHero/ThreadHero'
153
+ export {
154
+ Tooltip,
155
+ TooltipTrigger,
156
+ TooltipContent,
157
+ type TooltipProps,
158
+ type TooltipTriggerProps,
159
+ type TooltipContentProps,
160
+ type Placement as TooltipPlacement,
161
+ } from './Tooltip/Tooltip'
101
162
 
102
- export { default as TransactionDetails } from './TransactionDetails/TransactionDetails';
103
- export { default as TransactionStatus } from './TransactionStatus/TransactionStatus';
104
- export { default as TransactionBubble, type TransactionBubbleProps } from './TransactionBubble/TransactionBubble';
105
- export { default as UpiHandle } from './UpiHandle/UpiHandle';
106
- export { default as VStack, type VStackProps } from './VStack/VStack';
107
- export { default as ChipGroup, type ChipGroupProps } from './ChipGroup/ChipGroup';
108
- export { default as EmptyState, type EmptyStateProps } from './EmptyState/EmptyState';
109
- export { default as ExpandableCheckbox, type ExpandableCheckboxProps } from './ExpandableCheckbox/ExpandableCheckbox';
110
- export { default as Accordion, type AccordionProps } from './Accordion/Accordion';
111
- export { default as AccordionCheckbox, type AccordionCheckboxProps } from './AccordionCheckbox/AccordionCheckbox';
112
- export { default as ActionTile, type ActionTileProps } from './ActionTile/ActionTile';
113
- export { default as Balance, type BalanceProps } from './Balance/Balance';
114
- export { default as ButtonGroup, type ButtonGroupProps } from './ButtonGroup/ButtonGroup';
115
- export { default as CardProviderInfo, type CardProviderInfoProps } from './CardProviderInfo/CardProviderInfo';
116
- export { default as ChipSelect, type ChipSelectProps } from './ChipSelect/ChipSelect';
117
- export { default as InputSearch, type InputSearchProps } from './InputSearch/InputSearch';
118
- export { default as InstitutionBadge, type InstitutionBadgeProps } from './InstitutionBadge/InstitutionBadge';
119
- export { default as SupportText, type SupportTextProps } from './SupportText/SupportText';
120
- export { default as SupportTextIcon, type SupportTextIconProps, type SupportTextStatus } from './SupportText/SupportTextIcon';
121
- export { default as Radio, type RadioProps } from './Radio/Radio';
163
+ export { default as TransactionDetails } from './TransactionDetails/TransactionDetails'
164
+ export { default as TransactionStatus } from './TransactionStatus/TransactionStatus'
165
+ export { default as TransactionBubble, type TransactionBubbleProps } from './TransactionBubble/TransactionBubble'
166
+ export { default as UpiHandle } from './UpiHandle/UpiHandle'
167
+ export { default as VStack, type VStackProps } from './VStack/VStack'
168
+ export { default as ChipGroup, type ChipGroupProps } from './ChipGroup/ChipGroup'
169
+ export { default as EmptyState, type EmptyStateProps } from './EmptyState/EmptyState'
170
+ export { default as ExpandableCheckbox, type ExpandableCheckboxProps } from './ExpandableCheckbox/ExpandableCheckbox'
171
+ export { default as Accordion, type AccordionProps } from './Accordion/Accordion'
172
+ export { default as AccordionCheckbox, type AccordionCheckboxProps } from './AccordionCheckbox/AccordionCheckbox'
173
+ export { default as ActionTile, type ActionTileProps } from './ActionTile/ActionTile'
174
+ export { default as Balance, type BalanceProps } from './Balance/Balance'
175
+ export { default as ButtonGroup, type ButtonGroupProps } from './ButtonGroup/ButtonGroup'
176
+ export { default as CardProviderInfo, type CardProviderInfoProps } from './CardProviderInfo/CardProviderInfo'
177
+ export { default as ChipSelect, type ChipSelectProps } from './ChipSelect/ChipSelect'
178
+ export { default as InputSearch, type InputSearchProps } from './InputSearch/InputSearch'
179
+ export { default as InstitutionBadge, type InstitutionBadgeProps } from './InstitutionBadge/InstitutionBadge'
180
+ export { default as SupportText, type SupportTextProps } from './SupportText/SupportText'
181
+ export {
182
+ default as SupportTextIcon,
183
+ type SupportTextIconProps,
184
+ type SupportTextStatus,
185
+ } from './SupportText/SupportTextIcon'
186
+ export { default as Radio, type RadioProps } from './Radio/Radio'
122
187
  /**
123
188
  * @deprecated Use `Radio` instead. `RadioButton` is kept as an alias for
124
189
  * backward compatibility and will be removed in a future major release.
125
190
  */
126
- export { default as RadioButton, type RadioButtonProps } from './RadioButton/RadioButton';
127
- export { default as RechargeCard, type RechargeCardProps } from './RechargeCard/RechargeCard';
128
- export { default as SavingsGoalSummary, type SavingsGoalSummaryProps, type SavingsGoalSummaryItem } from './SavingsGoalSummary/SavingsGoalSummary';
129
- export { default as DonutChart, type DonutChartProps, type DonutChartSegmentData, type DonutChartSegmentProps, DonutChartSegment } from './DonutChart/DonutChart';
130
- export { default as AreaLineChart, useChart, type AreaLineChartProps, type ChartSeries, type ChartPoint, type ChartInset, type GoalPinConfig, type ChartGridProps, type ChartXAxisProps, type ChartYAxisProps, type ChartGoalPinProps } from './AreaLineChart/AreaLineChart';
131
- export { default as ClusterBubble, type ClusterBubbleProps, type ClusterBubbleLabelPlacement, type ClusterBubbleLabelDirection } from './ClusterBubble/ClusterBubble';
132
- export { default as BubbleChart, type BubbleChartProps, type BubbleDatum } from './BubbleChart/BubbleChart';
133
- export { default as DonutChartSummary, type DonutChartSummaryProps, type DonutChartSummaryItem } from './DonutChartSummary/DonutChartSummary';
134
- export { default as RangeTrack, type RangeTrackProps, type RangeTrackTab, type RangeTrackItem } from './RangeTrack/RangeTrack';
135
- export { default as SegmentedTrack, type SegmentedTrackProps, type SegmentedTrackSegmentData, type SegmentedTrackSegmentProps, SegmentedTrackSegment } from './SegmentedTrack/SegmentedTrack';
136
- export { default as Tabs, type TabsProps } from './Tabs/Tabs';
137
- export { default as TabItem, type TabItemProps } from './Tabs/TabItem';
138
- export { default as Toast, type ToastProps } from './Toast/Toast';
139
- export { default as ToastProvider, type ToastProviderProps } from './Toast/ToastProvider';
140
- export { useToast, addToast, closeToast, closeAll, type ToastOptions, type ToastEntry, type ToastPlacement } from './Toast/useToast';
141
- export { default as AmountInput, type AmountInputProps } from './AmountInput/AmountInput';
142
- export { default as PageHero, type PageHeroProps } from './PageHero/PageHero';
143
- export { default as PdpCcCard, type PdpCcCardProps, type PdpCcCardMetric } from './PdpCcCard/PdpCcCard';
144
- export { default as Popup, type PopupProps, type PopupRef } from './Popup/Popup';
145
- export { default as PortfolioHero, type PortfolioHeroProps } from './PortfolioHero/PortfolioHero';
146
- export { default as PlanComparisonCard, type PlanComparisonCardProps, type PlanComparisonColumn, type PlanComparisonRow, type PlanComparisonCellValue } from './PlanComparisonCard/PlanComparisonCard';
147
- export { default as CompareTable, type CompareTableProps, type CompareTableColumn, type CompareTableRow, type CompareTableCellValue, type CompareTableSection } from './CompareTable/CompareTable';
148
- export {
149
- default as Table,
150
- TableHeader,
151
- TableHeaderCell,
152
- TableBody,
153
- TableRow,
154
- TableCell,
155
- type TableProps,
156
- type TableColumn,
157
- type TableCellAlign,
158
- type TableHeaderProps,
159
- type TableHeaderCellProps,
160
- type TableBodyProps,
161
- type TableRowProps,
162
- type TableCellProps,
163
- } from './Table/Table';
164
- export { default as PoweredByLabel, type PoweredByLabelProps } from './PoweredByLabel/PoweredByLabel';
165
- export { default as ProductLabel, type ProductLabelProps } from './ProductLabel/ProductLabel';
166
- export { default as ProductMerchandisingCard, type ProductMerchandisingCardProps } from './ProductMerchandisingCard/ProductMerchandisingCard';
167
- export { default as ProductOverview, type ProductOverviewProps, type ProductOverviewStat } from './ProductOverview/ProductOverview';
168
- export { default as ProjectionMarker, type ProjectionMarkerProps } from './ProjectionMarker/ProjectionMarker';
169
- export { default as ProgressBadge, type ProgressBadgeProps } from './ProgressBadge/ProgressBadge';
170
- export { default as SwappableAmount, type SwappableAmountProps } from './SwappableAmount/SwappableAmount';
171
- export {
172
- default as OTP,
173
- OTPResend,
174
- useOtpResend,
175
- type OTPProps,
176
- type OTPResendProps,
177
- type OTPResendConfig,
178
- type UseOtpResendOptions,
179
- type UseOtpResendReturn,
180
- type OtpResendState,
181
- } from './OTP/OTP';
182
- export { default as PaymentFeedback, type PaymentFeedbackProps } from './PaymentFeedback/PaymentFeedback';
183
- export { default as StatItem, type StatItemProps, type StatItemLabelPosition } from './StatItem/StatItem';
184
- export { default as StatGroup, type StatGroupProps, type StatGroupItem } from './StatGroup/StatGroup';
185
- export { default as StrengthIndicator, type StrengthIndicatorProps, type StrengthIndicatorConfidence, type StrengthIndicatorConfidenceValue } from './StrengthIndicator/StrengthIndicator';
186
- export { default as SummaryTile, type SummaryTileProps } from './SummaryTile/SummaryTile';
187
- export { default as TestimonialsCard, type TestimonialsCardProps } from './TestimonialsCard/TestimonialsCard';
188
- export { default as Text, type TextProps } from './Text/Text';
189
- export { default as TextSegment, type TextSegmentProps, type TextSegmentRun } from './TextSegment/TextSegment';
190
- export { default as SegmentedControl, type SegmentedControlProps, type SegmentedControlItem } from './SegmentedControl/SegmentedControl';
191
- export { default as Toggle, type ToggleProps } from './Toggle/Toggle';
191
+ export { default as RadioButton, type RadioButtonProps } from './RadioButton/RadioButton'
192
+ export { default as RechargeCard, type RechargeCardProps } from './RechargeCard/RechargeCard'
193
+ export {
194
+ default as SavingsGoalSummary,
195
+ type SavingsGoalSummaryProps,
196
+ type SavingsGoalSummaryItem,
197
+ } from './SavingsGoalSummary/SavingsGoalSummary'
198
+ export {
199
+ default as DonutChart,
200
+ type DonutChartProps,
201
+ type DonutChartSegmentData,
202
+ type DonutChartSegmentProps,
203
+ DonutChartSegment,
204
+ } from './DonutChart/DonutChart'
205
+ export {
206
+ default as AreaLineChart,
207
+ useChart,
208
+ type AreaLineChartProps,
209
+ type ChartSeries,
210
+ type ChartPoint,
211
+ type ChartInset,
212
+ type GoalPinConfig,
213
+ type ChartGridProps,
214
+ type ChartXAxisProps,
215
+ type ChartYAxisProps,
216
+ type ChartGoalPinProps,
217
+ } from './AreaLineChart/AreaLineChart'
218
+ export {
219
+ default as ClusterBubble,
220
+ type ClusterBubbleProps,
221
+ type ClusterBubbleLabelPlacement,
222
+ type ClusterBubbleLabelDirection,
223
+ } from './ClusterBubble/ClusterBubble'
224
+ export { default as BubbleChart, type BubbleChartProps, type BubbleDatum } from './BubbleChart/BubbleChart'
225
+ export {
226
+ default as DonutChartSummary,
227
+ type DonutChartSummaryProps,
228
+ type DonutChartSummaryItem,
229
+ } from './DonutChartSummary/DonutChartSummary'
230
+ export {
231
+ default as RangeTrack,
232
+ type RangeTrackProps,
233
+ type RangeTrackTab,
234
+ type RangeTrackItem,
235
+ } from './RangeTrack/RangeTrack'
236
+ export {
237
+ default as SegmentedTrack,
238
+ type SegmentedTrackProps,
239
+ type SegmentedTrackSegmentData,
240
+ type SegmentedTrackSegmentProps,
241
+ SegmentedTrackSegment,
242
+ } from './SegmentedTrack/SegmentedTrack'
243
+ export { default as Tabs, type TabsProps } from './Tabs/Tabs'
244
+ export { default as TabItem, type TabItemProps } from './Tabs/TabItem'
245
+ export { default as Toast, type ToastProps } from './Toast/Toast'
246
+ export { default as ToastProvider, type ToastProviderProps } from './Toast/ToastProvider'
247
+ export {
248
+ useToast,
249
+ addToast,
250
+ closeToast,
251
+ closeAll,
252
+ type ToastOptions,
253
+ type ToastEntry,
254
+ type ToastPlacement,
255
+ } from './Toast/useToast'
256
+ export { default as AmountInput, type AmountInputProps } from './AmountInput/AmountInput'
257
+ export { default as PageHero, type PageHeroProps } from './PageHero/PageHero'
258
+ export { default as PdpCcCard, type PdpCcCardProps, type PdpCcCardMetric } from './PdpCcCard/PdpCcCard'
259
+ export { default as Popup, type PopupProps, type PopupRef } from './Popup/Popup'
260
+ export { default as PortfolioHero, type PortfolioHeroProps } from './PortfolioHero/PortfolioHero'
261
+ export {
262
+ default as PlanComparisonCard,
263
+ type PlanComparisonCardProps,
264
+ type PlanComparisonColumn,
265
+ type PlanComparisonRow,
266
+ type PlanComparisonCellValue,
267
+ } from './PlanComparisonCard/PlanComparisonCard'
268
+ export {
269
+ default as CompareTable,
270
+ type CompareTableProps,
271
+ type CompareTableColumn,
272
+ type CompareTableRow,
273
+ type CompareTableCellValue,
274
+ type CompareTableSection,
275
+ } from './CompareTable/CompareTable'
276
+ export {
277
+ default as Table,
278
+ TableHeader,
279
+ TableHeaderCell,
280
+ TableBody,
281
+ TableRow,
282
+ TableCell,
283
+ type TableProps,
284
+ type TableColumn,
285
+ type TableCellAlign,
286
+ type TableHeaderProps,
287
+ type TableHeaderCellProps,
288
+ type TableBodyProps,
289
+ type TableRowProps,
290
+ type TableCellProps,
291
+ } from './Table/Table'
292
+ export { default as PoweredByLabel, type PoweredByLabelProps } from './PoweredByLabel/PoweredByLabel'
293
+ export { default as ProductLabel, type ProductLabelProps } from './ProductLabel/ProductLabel'
294
+ export { default as ProfileCard, type ProfileCardProps, type ProfileCardUpiHandle } from './ProfileCard/ProfileCard'
295
+ export {
296
+ default as ProductMerchandisingCard,
297
+ type ProductMerchandisingCardProps,
298
+ } from './ProductMerchandisingCard/ProductMerchandisingCard'
299
+ export {
300
+ default as ProductOverview,
301
+ type ProductOverviewProps,
302
+ type ProductOverviewStat,
303
+ } from './ProductOverview/ProductOverview'
304
+ export { default as ProjectionMarker, type ProjectionMarkerProps } from './ProjectionMarker/ProjectionMarker'
305
+ export { default as ProgressBadge, type ProgressBadgeProps } from './ProgressBadge/ProgressBadge'
306
+ export { default as SwappableAmount, type SwappableAmountProps } from './SwappableAmount/SwappableAmount'
307
+ export {
308
+ default as OTP,
309
+ OTPResend,
310
+ useOtpResend,
311
+ type OTPProps,
312
+ type OTPResendProps,
313
+ type OTPResendConfig,
314
+ type UseOtpResendOptions,
315
+ type UseOtpResendReturn,
316
+ type OtpResendState,
317
+ } from './OTP/OTP'
318
+ export { default as PaymentFeedback, type PaymentFeedbackProps } from './PaymentFeedback/PaymentFeedback'
319
+ export { default as StatItem, type StatItemProps, type StatItemLabelPosition } from './StatItem/StatItem'
320
+ export { default as StatGroup, type StatGroupProps, type StatGroupItem } from './StatGroup/StatGroup'
321
+ export {
322
+ default as StrengthIndicator,
323
+ type StrengthIndicatorProps,
324
+ type StrengthIndicatorConfidence,
325
+ type StrengthIndicatorConfidenceValue,
326
+ } from './StrengthIndicator/StrengthIndicator'
327
+ export { default as SummaryTile, type SummaryTileProps } from './SummaryTile/SummaryTile'
328
+ export { default as TestimonialsCard, type TestimonialsCardProps } from './TestimonialsCard/TestimonialsCard'
329
+ export { default as Text, type TextProps } from './Text/Text'
330
+ export { default as TextSegment, type TextSegmentProps, type TextSegmentRun } from './TextSegment/TextSegment'
331
+ export {
332
+ default as SegmentedControl,
333
+ type SegmentedControlProps,
334
+ type SegmentedControlItem,
335
+ } from './SegmentedControl/SegmentedControl'
336
+ export { default as Toggle, type ToggleProps } from './Toggle/Toggle'
337
+ export { default as AutoplayControl, type AutoplayControlProps } from './AutoplayControl/AutoplayControl'
338
+ export { default as NumberPagination, type NumberPaginationProps } from './NumberPagination/NumberPagination'