jfs-components 0.0.71 → 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.
- package/CHANGELOG.md +60 -0
- package/lib/commonjs/components/AccordionCheckbox/AccordionCheckbox.js +239 -0
- package/lib/commonjs/components/BrandChip/BrandChip.js +149 -0
- package/lib/commonjs/components/CardAdvisory/CardAdvisory.js +2 -2
- package/lib/commonjs/components/CardBankAccount/CardBankAccount.js +213 -0
- package/lib/commonjs/components/CardFinancialCondition/CardFinancialCondition.js +213 -0
- package/lib/commonjs/components/CardInsight/CardInsight.js +166 -0
- package/lib/commonjs/components/Carousel/Carousel.js +9 -7
- package/lib/commonjs/components/CheckboxGroup/CheckboxGroup.js +67 -0
- package/lib/commonjs/components/CheckboxItem/CheckboxItem.js +125 -0
- package/lib/commonjs/components/CircularProgressBar/CircularProgressBar.js +56 -9
- package/lib/commonjs/components/CoverageBarComparison/CoverageBarComparison.js +272 -0
- package/lib/commonjs/components/CoverageRing/CoverageRing.js +141 -0
- package/lib/commonjs/components/DonutChart/DonutChart.js +309 -0
- package/lib/commonjs/components/DonutChartSummary/DonutChartSummary.js +155 -0
- package/lib/commonjs/components/HoldingsCard/HoldingsCard.js +2 -2
- package/lib/commonjs/components/InstitutionBadge/InstitutionBadge.js +132 -0
- package/lib/commonjs/components/LinearMeter/LinearMeter.js +9 -28
- package/lib/commonjs/components/LinearProgress/LinearProgress.js +68 -0
- package/lib/commonjs/components/MetricLegendItem/MetricLegendItem.js +95 -0
- package/lib/commonjs/components/MonthlyStatusGrid/MonthlyStatusGrid.js +286 -0
- package/lib/commonjs/components/OTP/OTP.js +381 -37
- package/lib/commonjs/components/ProductOverview/ProductOverview.js +147 -0
- package/lib/commonjs/components/Radio/Radio.js +194 -0
- package/lib/commonjs/components/RadioButton/RadioButton.js +21 -188
- package/lib/commonjs/components/RangeTrack/RangeTrack.js +269 -0
- package/lib/commonjs/components/SavingsGoalSummary/SavingsGoalSummary.js +181 -0
- package/lib/commonjs/components/SegmentedTrack/SegmentedTrack.js +171 -0
- package/lib/commonjs/components/StatGroup/StatGroup.js +128 -0
- package/lib/commonjs/components/StatItem/StatItem.js +65 -35
- package/lib/commonjs/components/StrengthIndicator/StrengthIndicator.js +157 -0
- package/lib/commonjs/components/SummaryTile/SummaryTile.js +150 -0
- package/lib/commonjs/components/index.js +192 -1
- package/lib/commonjs/design-tokens/Coin Variables-variables-full.json +1 -1
- package/lib/commonjs/icons/registry.js +1 -1
- package/lib/commonjs/utils/index.js +7 -0
- package/lib/commonjs/utils/number-utils.js +57 -0
- package/lib/module/components/AccordionCheckbox/AccordionCheckbox.js +233 -0
- package/lib/module/components/BrandChip/BrandChip.js +143 -0
- package/lib/module/components/CardAdvisory/CardAdvisory.js +2 -2
- package/lib/module/components/CardBankAccount/CardBankAccount.js +208 -0
- package/lib/module/components/CardFinancialCondition/CardFinancialCondition.js +207 -0
- package/lib/module/components/CardInsight/CardInsight.js +161 -0
- package/lib/module/components/Carousel/Carousel.js +9 -7
- package/lib/module/components/CheckboxGroup/CheckboxGroup.js +62 -0
- package/lib/module/components/CheckboxItem/CheckboxItem.js +119 -0
- package/lib/module/components/CircularProgressBar/CircularProgressBar.js +56 -9
- package/lib/module/components/CoverageBarComparison/CoverageBarComparison.js +266 -0
- package/lib/module/components/CoverageRing/CoverageRing.js +136 -0
- package/lib/module/components/DonutChart/DonutChart.js +303 -0
- package/lib/module/components/DonutChartSummary/DonutChartSummary.js +150 -0
- package/lib/module/components/HoldingsCard/HoldingsCard.js +2 -2
- package/lib/module/components/InstitutionBadge/InstitutionBadge.js +127 -0
- package/lib/module/components/LinearMeter/LinearMeter.js +9 -28
- package/lib/module/components/LinearProgress/LinearProgress.js +63 -0
- package/lib/module/components/MetricLegendItem/MetricLegendItem.js +90 -0
- package/lib/module/components/MonthlyStatusGrid/MonthlyStatusGrid.js +281 -0
- package/lib/module/components/OTP/OTP.js +381 -38
- package/lib/module/components/ProductOverview/ProductOverview.js +142 -0
- package/lib/module/components/Radio/Radio.js +188 -0
- package/lib/module/components/RadioButton/RadioButton.js +20 -185
- package/lib/module/components/RangeTrack/RangeTrack.js +263 -0
- package/lib/module/components/SavingsGoalSummary/SavingsGoalSummary.js +175 -0
- package/lib/module/components/SegmentedTrack/SegmentedTrack.js +166 -0
- package/lib/module/components/StatGroup/StatGroup.js +123 -0
- package/lib/module/components/StatItem/StatItem.js +66 -36
- package/lib/module/components/StrengthIndicator/StrengthIndicator.js +152 -0
- package/lib/module/components/SummaryTile/SummaryTile.js +145 -0
- package/lib/module/components/index.js +28 -1
- package/lib/module/design-tokens/Coin Variables-variables-full.json +1 -1
- package/lib/module/icons/registry.js +1 -1
- package/lib/module/utils/index.js +2 -1
- package/lib/module/utils/number-utils.js +53 -0
- package/lib/typescript/src/components/AccordionCheckbox/AccordionCheckbox.d.ts +71 -0
- package/lib/typescript/src/components/BrandChip/BrandChip.d.ts +43 -0
- package/lib/typescript/src/components/CardBankAccount/CardBankAccount.d.ts +79 -0
- package/lib/typescript/src/components/CardFinancialCondition/CardFinancialCondition.d.ts +50 -0
- package/lib/typescript/src/components/CardInsight/CardInsight.d.ts +48 -0
- package/lib/typescript/src/components/CheckboxGroup/CheckboxGroup.d.ts +41 -0
- package/lib/typescript/src/components/CheckboxItem/CheckboxItem.d.ts +56 -0
- package/lib/typescript/src/components/CircularProgressBar/CircularProgressBar.d.ts +11 -1
- package/lib/typescript/src/components/CoverageBarComparison/CoverageBarComparison.d.ts +105 -0
- package/lib/typescript/src/components/CoverageRing/CoverageRing.d.ts +90 -0
- package/lib/typescript/src/components/DonutChart/DonutChart.d.ts +117 -0
- package/lib/typescript/src/components/DonutChartSummary/DonutChartSummary.d.ts +103 -0
- package/lib/typescript/src/components/InstitutionBadge/InstitutionBadge.d.ts +30 -0
- package/lib/typescript/src/components/LinearProgress/LinearProgress.d.ts +17 -0
- package/lib/typescript/src/components/MetricLegendItem/MetricLegendItem.d.ts +37 -0
- package/lib/typescript/src/components/MonthlyStatusGrid/MonthlyStatusGrid.d.ts +119 -0
- package/lib/typescript/src/components/OTP/OTP.d.ts +88 -2
- package/lib/typescript/src/components/ProductOverview/ProductOverview.d.ts +39 -0
- package/lib/typescript/src/components/Radio/Radio.d.ts +30 -0
- package/lib/typescript/src/components/RadioButton/RadioButton.d.ts +20 -28
- package/lib/typescript/src/components/RangeTrack/RangeTrack.d.ts +173 -0
- package/lib/typescript/src/components/SavingsGoalSummary/SavingsGoalSummary.d.ts +95 -0
- package/lib/typescript/src/components/SegmentedTrack/SegmentedTrack.d.ts +108 -0
- package/lib/typescript/src/components/StatGroup/StatGroup.d.ts +45 -0
- package/lib/typescript/src/components/StatItem/StatItem.d.ts +24 -7
- package/lib/typescript/src/components/StrengthIndicator/StrengthIndicator.d.ts +58 -0
- package/lib/typescript/src/components/SummaryTile/SummaryTile.d.ts +60 -0
- package/lib/typescript/src/components/index.d.ts +29 -2
- package/lib/typescript/src/icons/registry.d.ts +1 -1
- package/lib/typescript/src/utils/index.d.ts +1 -0
- package/lib/typescript/src/utils/number-utils.d.ts +29 -0
- package/package.json +1 -1
- package/src/components/AccordionCheckbox/AccordionCheckbox.tsx +323 -0
- package/src/components/BrandChip/BrandChip.tsx +235 -0
- package/src/components/CardAdvisory/CardAdvisory.tsx +2 -2
- package/src/components/CardBankAccount/CardBankAccount.tsx +295 -0
- package/src/components/CardFinancialCondition/CardFinancialCondition.tsx +366 -0
- package/src/components/CardInsight/CardInsight.tsx +239 -0
- package/src/components/Carousel/Carousel.tsx +14 -6
- package/src/components/CheckboxGroup/CheckboxGroup.tsx +86 -0
- package/src/components/CheckboxItem/CheckboxItem.tsx +174 -0
- package/src/components/CircularProgressBar/CircularProgressBar.tsx +74 -9
- package/src/components/CoverageBarComparison/CoverageBarComparison.tsx +378 -0
- package/src/components/CoverageRing/CoverageRing.tsx +225 -0
- package/src/components/DonutChart/DonutChart.tsx +503 -0
- package/src/components/DonutChartSummary/DonutChartSummary.tsx +256 -0
- package/src/components/HoldingsCard/HoldingsCard.tsx +2 -2
- package/src/components/InstitutionBadge/InstitutionBadge.tsx +216 -0
- package/src/components/LinearMeter/LinearMeter.tsx +9 -39
- package/src/components/LinearProgress/LinearProgress.tsx +92 -0
- package/src/components/MetricLegendItem/MetricLegendItem.tsx +167 -0
- package/src/components/MonthlyStatusGrid/MonthlyStatusGrid.tsx +438 -0
- package/src/components/OTP/OTP.tsx +476 -29
- package/src/components/ProductOverview/ProductOverview.tsx +236 -0
- package/src/components/Radio/Radio.tsx +227 -0
- package/src/components/RadioButton/RadioButton.tsx +23 -225
- package/src/components/RangeTrack/RangeTrack.tsx +394 -0
- package/src/components/SavingsGoalSummary/SavingsGoalSummary.tsx +269 -0
- package/src/components/SegmentedTrack/SegmentedTrack.tsx +268 -0
- package/src/components/StatGroup/StatGroup.tsx +169 -0
- package/src/components/StatItem/StatItem.tsx +117 -40
- package/src/components/StrengthIndicator/StrengthIndicator.tsx +205 -0
- package/src/components/SummaryTile/SummaryTile.tsx +251 -0
- package/src/components/index.ts +39 -2
- package/src/design-tokens/Coin Variables-variables-full.json +1 -1
- package/src/icons/registry.ts +1 -1
- package/src/utils/index.ts +1 -0
- package/src/utils/number-utils.ts +60 -0
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _reactNative = require("react-native");
|
|
9
|
+
var _figmaVariablesResolver = require("../../design-tokens/figma-variables-resolver");
|
|
10
|
+
var _reactUtils = require("../../utils/react-utils");
|
|
11
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
12
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
13
|
+
/**
|
|
14
|
+
* Confidence levels supported by the indicator. Mirrors the Figma `Confidence`
|
|
15
|
+
* mode collection exactly (`High` | `Medium` | `Low` | `None`).
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Accepted shape for the `confidence` prop. Either:
|
|
20
|
+
* - one of the named levels (`'High' | 'Medium' | 'Low' | 'None'`), or
|
|
21
|
+
* - a float in `[0, 1]`. Floats are bucketed to the nearest level using
|
|
22
|
+
* midpoint thresholds (1/6, 1/2, 5/6) so anchor values land squarely:
|
|
23
|
+
* `0` → `None`, `~0.33` → `Low`, `~0.66` → `Medium`, `1` → `High`.
|
|
24
|
+
* Values outside `[0, 1]` are clamped.
|
|
25
|
+
*/
|
|
26
|
+
|
|
27
|
+
const BAR_SIZES = ['small', 'medium', 'large'];
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Maps an overall confidence level to per-bar confidence modes. Bars are
|
|
31
|
+
* filled from the smallest (left) to the largest (right) as confidence
|
|
32
|
+
* rises, with each lit bar tinted at its own confidence level so the
|
|
33
|
+
* indicator visually communicates *which* level the value is at — not just
|
|
34
|
+
* how many bars are lit.
|
|
35
|
+
*
|
|
36
|
+
* High -> [High, High, High] (3/3 lit, bright)
|
|
37
|
+
* Medium -> [Medium, Medium, None] (2/3 lit, mid intensity)
|
|
38
|
+
* Low -> [Low, None, None] (1/3 lit, low intensity)
|
|
39
|
+
* None -> [None, None, None] (0/3 lit)
|
|
40
|
+
*
|
|
41
|
+
* Each bar resolves its color through `getVariableByName` with its own
|
|
42
|
+
* per-bar `Confidence` mode, so the mapping survives any token updates in
|
|
43
|
+
* the Figma variables export.
|
|
44
|
+
*/
|
|
45
|
+
const CONFIDENCE_TO_BARS = {
|
|
46
|
+
High: ['High', 'High', 'High'],
|
|
47
|
+
Medium: ['Medium', 'Medium', 'None'],
|
|
48
|
+
Low: ['Low', 'None', 'None'],
|
|
49
|
+
None: ['None', 'None', 'None']
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Fallback colors used when the `strengthIndicator/*` design tokens have not
|
|
54
|
+
* yet been imported into `Coin Variables-variables-full.json`. The `High`
|
|
55
|
+
* fallback matches the Figma export (`#25ab21`); the intermediate levels
|
|
56
|
+
* use progressively lighter greens, and `None` uses a neutral gray for
|
|
57
|
+
* unlit bars. Once the tokens land, `getVariableByName` returns the
|
|
58
|
+
* canonical value and these fallbacks are bypassed.
|
|
59
|
+
*/
|
|
60
|
+
const FALLBACK_BAR_COLOR = {
|
|
61
|
+
High: '#25ab21',
|
|
62
|
+
Medium: '#5cc257',
|
|
63
|
+
Low: '#a8dba2',
|
|
64
|
+
None: '#d9d9dd'
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Bucket a float `[0, 1]` into the nearest named confidence level using
|
|
69
|
+
* midpoint thresholds between the four anchor values (`0`, `1/3`, `2/3`,
|
|
70
|
+
* `1`). Out-of-range values are clamped.
|
|
71
|
+
*/
|
|
72
|
+
function floatToConfidence(value) {
|
|
73
|
+
const clamped = Math.min(Math.max(value, 0), 1);
|
|
74
|
+
if (clamped > 5 / 6) return 'High';
|
|
75
|
+
if (clamped > 1 / 2) return 'Medium';
|
|
76
|
+
if (clamped > 1 / 6) return 'Low';
|
|
77
|
+
return 'None';
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Normalize the union `confidence` prop into a single named level.
|
|
82
|
+
* Strings pass through; numbers are bucketed via {@link floatToConfidence}.
|
|
83
|
+
* Anything else (e.g. `null`/`undefined`) defaults to `'High'` to match
|
|
84
|
+
* Figma's default mode.
|
|
85
|
+
*/
|
|
86
|
+
function resolveConfidence(value) {
|
|
87
|
+
if (typeof value === 'number') return floatToConfidence(value);
|
|
88
|
+
if (value === 'High' || value === 'Medium' || value === 'Low' || value === 'None') {
|
|
89
|
+
return value;
|
|
90
|
+
}
|
|
91
|
+
return 'High';
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* StrengthIndicator renders three fixed-size, ascending bars that
|
|
96
|
+
* communicate a discrete confidence/strength level — typically used to
|
|
97
|
+
* signal model confidence, signal quality, or password strength.
|
|
98
|
+
*
|
|
99
|
+
* Sizes are intentionally fixed (matching the Figma spec): 3px-wide bars
|
|
100
|
+
* 6/9/12px tall with a 2px gap and 2px container padding.
|
|
101
|
+
*
|
|
102
|
+
* Pass a single `confidence` value (named enum *or* float `[0, 1]`); the
|
|
103
|
+
* component normalizes it to a level, maps that level to a per-bar
|
|
104
|
+
* confidence mode, and resolves each bar's color through design tokens
|
|
105
|
+
* (`strengthIndicator/bar/<size>/background`).
|
|
106
|
+
*
|
|
107
|
+
* @component
|
|
108
|
+
* @param {StrengthIndicatorProps} props
|
|
109
|
+
*/
|
|
110
|
+
function StrengthIndicator({
|
|
111
|
+
confidence = 'High',
|
|
112
|
+
modes = _reactUtils.EMPTY_MODES,
|
|
113
|
+
style,
|
|
114
|
+
...rest
|
|
115
|
+
}) {
|
|
116
|
+
const containerGap = (0, _figmaVariablesResolver.getVariableByName)('strengthIndicator/container/gap', modes) ?? 2;
|
|
117
|
+
const containerPadding = (0, _figmaVariablesResolver.getVariableByName)('strengthIndicator/container/padding', modes) ?? 2;
|
|
118
|
+
const barWidth = (0, _figmaVariablesResolver.getVariableByName)('strengthIndicator/bar/width', modes) ?? 3;
|
|
119
|
+
const barRadius = (0, _figmaVariablesResolver.getVariableByName)('strengthIndicator/bar/radius', modes) ?? 1;
|
|
120
|
+
const barHeights = {
|
|
121
|
+
small: (0, _figmaVariablesResolver.getVariableByName)('strengthIndicator/bar/height/small', modes) ?? 6,
|
|
122
|
+
medium: (0, _figmaVariablesResolver.getVariableByName)('strengthIndicator/bar/height/medium', modes) ?? 9,
|
|
123
|
+
large: (0, _figmaVariablesResolver.getVariableByName)('strengthIndicator/bar/height/large', modes) ?? 12
|
|
124
|
+
};
|
|
125
|
+
const resolvedLevel = resolveConfidence(confidence);
|
|
126
|
+
const perBarConfidence = CONFIDENCE_TO_BARS[resolvedLevel];
|
|
127
|
+
const containerStyle = {
|
|
128
|
+
flexDirection: 'row',
|
|
129
|
+
alignItems: 'flex-end',
|
|
130
|
+
gap: containerGap,
|
|
131
|
+
padding: containerPadding
|
|
132
|
+
};
|
|
133
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
134
|
+
style: [containerStyle, style],
|
|
135
|
+
accessibilityRole: "image",
|
|
136
|
+
accessibilityLabel: `Strength indicator: ${resolvedLevel} confidence`,
|
|
137
|
+
...rest,
|
|
138
|
+
children: BAR_SIZES.map((size, index) => {
|
|
139
|
+
const barConfidence = perBarConfidence[index] ?? 'None';
|
|
140
|
+
const barModes = {
|
|
141
|
+
...modes,
|
|
142
|
+
Confidence: barConfidence
|
|
143
|
+
};
|
|
144
|
+
const tokenColor = (0, _figmaVariablesResolver.getVariableByName)(`strengthIndicator/bar/${size}/background`, barModes);
|
|
145
|
+
const backgroundColor = tokenColor ?? FALLBACK_BAR_COLOR[barConfidence];
|
|
146
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
147
|
+
style: {
|
|
148
|
+
width: barWidth,
|
|
149
|
+
height: barHeights[size],
|
|
150
|
+
borderRadius: barRadius,
|
|
151
|
+
backgroundColor
|
|
152
|
+
}
|
|
153
|
+
}, size);
|
|
154
|
+
})
|
|
155
|
+
});
|
|
156
|
+
}
|
|
157
|
+
var _default = exports.default = StrengthIndicator;
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _reactNative = require("react-native");
|
|
9
|
+
var _figmaVariablesResolver = require("../../design-tokens/figma-variables-resolver");
|
|
10
|
+
var _reactUtils = require("../../utils/react-utils");
|
|
11
|
+
var _Button = _interopRequireDefault(require("../Button/Button"));
|
|
12
|
+
var _NavArrow = _interopRequireDefault(require("../NavArrow/NavArrow"));
|
|
13
|
+
var _StrengthIndicator = _interopRequireDefault(require("../StrengthIndicator/StrengthIndicator"));
|
|
14
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
15
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
16
|
+
/**
|
|
17
|
+
* SummaryTile composes a title (with an inline `StrengthIndicator`), a
|
|
18
|
+
* supporting description and an action slot into a compact horizontal row,
|
|
19
|
+
* commonly used at the top of dashboard cards (e.g. "Spending — know your
|
|
20
|
+
* spending and savings"). An optional trailing chevron and tile-level
|
|
21
|
+
* `onPress` handler turn the whole row into a navigational entry point.
|
|
22
|
+
*
|
|
23
|
+
* @component
|
|
24
|
+
* @param {SummaryTileProps} props
|
|
25
|
+
*/
|
|
26
|
+
function SummaryTile({
|
|
27
|
+
title = 'Spending',
|
|
28
|
+
description = 'Know your spending and savings',
|
|
29
|
+
confidence = 'None',
|
|
30
|
+
chevron = false,
|
|
31
|
+
children,
|
|
32
|
+
onPress,
|
|
33
|
+
modes = _reactUtils.EMPTY_MODES,
|
|
34
|
+
style,
|
|
35
|
+
titleStyle,
|
|
36
|
+
descriptionStyle,
|
|
37
|
+
accessibilityLabel
|
|
38
|
+
}) {
|
|
39
|
+
const containerGap = (0, _figmaVariablesResolver.getVariableByName)('summaryTile/gap', modes) ?? 8;
|
|
40
|
+
const containerPadding = (0, _figmaVariablesResolver.getVariableByName)('summaryTile/padding', modes) ?? 0;
|
|
41
|
+
const contentGap = (0, _figmaVariablesResolver.getVariableByName)('summaryTile/content/gap', modes) ?? 8;
|
|
42
|
+
const titleWrapGap = (0, _figmaVariablesResolver.getVariableByName)('summaryTile/titleWrap/gap', modes) ?? 4;
|
|
43
|
+
const titleColor = (0, _figmaVariablesResolver.getVariableByName)('summaryTile/title/color', modes) ?? '#0d0d0f';
|
|
44
|
+
const titleFontFamily = (0, _figmaVariablesResolver.getVariableByName)('summaryTile/title/fontFamily', modes) ?? 'JioType Var';
|
|
45
|
+
const titleFontSize = (0, _figmaVariablesResolver.getVariableByName)('summaryTile/title/fontSize', modes) ?? 16;
|
|
46
|
+
const titleFontWeight = (0, _figmaVariablesResolver.getVariableByName)('summaryTile/title/fontWeight', modes) ?? 700;
|
|
47
|
+
const titleLineHeight = (0, _figmaVariablesResolver.getVariableByName)('summaryTile/title/lineHeight', modes) ?? 18;
|
|
48
|
+
const descriptionColor = (0, _figmaVariablesResolver.getVariableByName)('summaryTile/description/color', modes) ?? '#24262b';
|
|
49
|
+
const descriptionFontFamily = (0, _figmaVariablesResolver.getVariableByName)('summaryTile/description/fontFamily', modes) ?? 'JioType Var';
|
|
50
|
+
const descriptionFontSize = (0, _figmaVariablesResolver.getVariableByName)('summaryTile/description/fontSize', modes) ?? 12;
|
|
51
|
+
const descriptionFontWeight = (0, _figmaVariablesResolver.getVariableByName)('summaryTile/description/fontWeight', modes) ?? 500;
|
|
52
|
+
const descriptionLineHeight = (0, _figmaVariablesResolver.getVariableByName)('summaryTile/description/lineHeight', modes) ?? 16;
|
|
53
|
+
const titleTextStyle = {
|
|
54
|
+
color: titleColor,
|
|
55
|
+
fontFamily: titleFontFamily,
|
|
56
|
+
fontSize: titleFontSize,
|
|
57
|
+
fontWeight: String(titleFontWeight),
|
|
58
|
+
lineHeight: titleLineHeight
|
|
59
|
+
};
|
|
60
|
+
const descriptionTextStyle = {
|
|
61
|
+
color: descriptionColor,
|
|
62
|
+
fontFamily: descriptionFontFamily,
|
|
63
|
+
fontSize: descriptionFontSize,
|
|
64
|
+
fontWeight: String(descriptionFontWeight),
|
|
65
|
+
lineHeight: descriptionLineHeight
|
|
66
|
+
};
|
|
67
|
+
const showIndicator = confidence !== null;
|
|
68
|
+
|
|
69
|
+
// When the entire tile is pressable, the default `Button` slot is
|
|
70
|
+
// suppressed so we don't render a `<button>` inside another `<button>`
|
|
71
|
+
// (which is invalid HTML and triggers a React hydration warning on
|
|
72
|
+
// web). Consumers can still pass an explicit non-button node via
|
|
73
|
+
// `children` if they want a visible affordance alongside `onPress`.
|
|
74
|
+
const isPressable = onPress != null;
|
|
75
|
+
const actionSlot = children !== undefined ? children !== null ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
|
|
76
|
+
children: (0, _reactUtils.cloneChildrenWithModes)(children, modes)
|
|
77
|
+
}) : null : isPressable ? null : /*#__PURE__*/(0, _jsxRuntime.jsx)(_Button.default, {
|
|
78
|
+
label: "Button",
|
|
79
|
+
modes: {
|
|
80
|
+
'AppearanceBrand': 'Secondary',
|
|
81
|
+
...modes,
|
|
82
|
+
'Button / Size': 'S'
|
|
83
|
+
}
|
|
84
|
+
});
|
|
85
|
+
const tileContent = /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
|
|
86
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
87
|
+
style: {
|
|
88
|
+
flex: 1,
|
|
89
|
+
minWidth: 0,
|
|
90
|
+
flexDirection: 'column',
|
|
91
|
+
gap: contentGap,
|
|
92
|
+
alignItems: 'flex-start'
|
|
93
|
+
},
|
|
94
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
95
|
+
style: {
|
|
96
|
+
flexDirection: 'row',
|
|
97
|
+
alignItems: 'center',
|
|
98
|
+
gap: titleWrapGap,
|
|
99
|
+
width: '100%'
|
|
100
|
+
},
|
|
101
|
+
children: [title ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
102
|
+
style: [titleTextStyle, titleStyle],
|
|
103
|
+
numberOfLines: 1,
|
|
104
|
+
children: title
|
|
105
|
+
}) : null, showIndicator ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_StrengthIndicator.default, {
|
|
106
|
+
confidence: confidence,
|
|
107
|
+
modes: modes
|
|
108
|
+
}) : null]
|
|
109
|
+
}), description ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
110
|
+
style: [descriptionTextStyle, descriptionStyle],
|
|
111
|
+
children: description
|
|
112
|
+
}) : null]
|
|
113
|
+
}), actionSlot != null ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
114
|
+
style: {
|
|
115
|
+
flexDirection: 'row',
|
|
116
|
+
alignItems: 'center'
|
|
117
|
+
},
|
|
118
|
+
children: actionSlot
|
|
119
|
+
}) : null, chevron ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_NavArrow.default, {
|
|
120
|
+
direction: "Forward",
|
|
121
|
+
modes: modes
|
|
122
|
+
}) : null]
|
|
123
|
+
});
|
|
124
|
+
const containerLayoutStyle = {
|
|
125
|
+
flexDirection: 'row',
|
|
126
|
+
alignItems: 'center',
|
|
127
|
+
gap: containerGap,
|
|
128
|
+
padding: containerPadding,
|
|
129
|
+
width: '100%'
|
|
130
|
+
};
|
|
131
|
+
if (onPress) {
|
|
132
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
|
|
133
|
+
onPress: onPress,
|
|
134
|
+
accessibilityRole: "button",
|
|
135
|
+
accessibilityLabel: accessibilityLabel ?? title,
|
|
136
|
+
style: ({
|
|
137
|
+
pressed
|
|
138
|
+
}) => [containerLayoutStyle, style, pressed ? {
|
|
139
|
+
opacity: 0.7
|
|
140
|
+
} : null],
|
|
141
|
+
children: tileContent
|
|
142
|
+
});
|
|
143
|
+
}
|
|
144
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
145
|
+
style: [containerLayoutStyle, style],
|
|
146
|
+
accessibilityLabel: accessibilityLabel,
|
|
147
|
+
children: tileContent
|
|
148
|
+
});
|
|
149
|
+
}
|
|
150
|
+
var _default = exports.default = SummaryTile;
|
|
@@ -9,6 +9,12 @@ Object.defineProperty(exports, "Accordion", {
|
|
|
9
9
|
return _Accordion.default;
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
|
+
Object.defineProperty(exports, "AccordionCheckbox", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return _AccordionCheckbox.default;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
12
18
|
Object.defineProperty(exports, "ActionFooter", {
|
|
13
19
|
enumerable: true,
|
|
14
20
|
get: function () {
|
|
@@ -69,6 +75,12 @@ Object.defineProperty(exports, "BottomNavItem", {
|
|
|
69
75
|
return _BottomNavItem.default;
|
|
70
76
|
}
|
|
71
77
|
});
|
|
78
|
+
Object.defineProperty(exports, "BrandChip", {
|
|
79
|
+
enumerable: true,
|
|
80
|
+
get: function () {
|
|
81
|
+
return _BrandChip.default;
|
|
82
|
+
}
|
|
83
|
+
});
|
|
72
84
|
Object.defineProperty(exports, "Button", {
|
|
73
85
|
enumerable: true,
|
|
74
86
|
get: function () {
|
|
@@ -81,6 +93,12 @@ Object.defineProperty(exports, "ButtonGroup", {
|
|
|
81
93
|
return _ButtonGroup.default;
|
|
82
94
|
}
|
|
83
95
|
});
|
|
96
|
+
Object.defineProperty(exports, "CalendarGlyph", {
|
|
97
|
+
enumerable: true,
|
|
98
|
+
get: function () {
|
|
99
|
+
return _MonthlyStatusGrid.CalendarGlyph;
|
|
100
|
+
}
|
|
101
|
+
});
|
|
84
102
|
Object.defineProperty(exports, "Card", {
|
|
85
103
|
enumerable: true,
|
|
86
104
|
get: function () {
|
|
@@ -93,6 +111,12 @@ Object.defineProperty(exports, "CardAdvisory", {
|
|
|
93
111
|
return _CardAdvisory.default;
|
|
94
112
|
}
|
|
95
113
|
});
|
|
114
|
+
Object.defineProperty(exports, "CardBankAccount", {
|
|
115
|
+
enumerable: true,
|
|
116
|
+
get: function () {
|
|
117
|
+
return _CardBankAccount.default;
|
|
118
|
+
}
|
|
119
|
+
});
|
|
96
120
|
Object.defineProperty(exports, "CardCTA", {
|
|
97
121
|
enumerable: true,
|
|
98
122
|
get: function () {
|
|
@@ -105,6 +129,18 @@ Object.defineProperty(exports, "CardFeedback", {
|
|
|
105
129
|
return _CardFeedback.default;
|
|
106
130
|
}
|
|
107
131
|
});
|
|
132
|
+
Object.defineProperty(exports, "CardFinancialCondition", {
|
|
133
|
+
enumerable: true,
|
|
134
|
+
get: function () {
|
|
135
|
+
return _CardFinancialCondition.default;
|
|
136
|
+
}
|
|
137
|
+
});
|
|
138
|
+
Object.defineProperty(exports, "CardInsight", {
|
|
139
|
+
enumerable: true,
|
|
140
|
+
get: function () {
|
|
141
|
+
return _CardInsight.default;
|
|
142
|
+
}
|
|
143
|
+
});
|
|
108
144
|
Object.defineProperty(exports, "CardProviderInfo", {
|
|
109
145
|
enumerable: true,
|
|
110
146
|
get: function () {
|
|
@@ -123,6 +159,18 @@ Object.defineProperty(exports, "Checkbox", {
|
|
|
123
159
|
return _Checkbox.default;
|
|
124
160
|
}
|
|
125
161
|
});
|
|
162
|
+
Object.defineProperty(exports, "CheckboxGroup", {
|
|
163
|
+
enumerable: true,
|
|
164
|
+
get: function () {
|
|
165
|
+
return _CheckboxGroup.default;
|
|
166
|
+
}
|
|
167
|
+
});
|
|
168
|
+
Object.defineProperty(exports, "CheckboxItem", {
|
|
169
|
+
enumerable: true,
|
|
170
|
+
get: function () {
|
|
171
|
+
return _CheckboxItem.default;
|
|
172
|
+
}
|
|
173
|
+
});
|
|
126
174
|
Object.defineProperty(exports, "ChipGroup", {
|
|
127
175
|
enumerable: true,
|
|
128
176
|
get: function () {
|
|
@@ -153,6 +201,18 @@ Object.defineProperty(exports, "CircularRating", {
|
|
|
153
201
|
return _CircularRating.default;
|
|
154
202
|
}
|
|
155
203
|
});
|
|
204
|
+
Object.defineProperty(exports, "CoverageBarComparison", {
|
|
205
|
+
enumerable: true,
|
|
206
|
+
get: function () {
|
|
207
|
+
return _CoverageBarComparison.default;
|
|
208
|
+
}
|
|
209
|
+
});
|
|
210
|
+
Object.defineProperty(exports, "CoverageRing", {
|
|
211
|
+
enumerable: true,
|
|
212
|
+
get: function () {
|
|
213
|
+
return _CoverageRing.default;
|
|
214
|
+
}
|
|
215
|
+
});
|
|
156
216
|
Object.defineProperty(exports, "DebitCard", {
|
|
157
217
|
enumerable: true,
|
|
158
218
|
get: function () {
|
|
@@ -171,6 +231,24 @@ Object.defineProperty(exports, "Divider", {
|
|
|
171
231
|
return _Divider.default;
|
|
172
232
|
}
|
|
173
233
|
});
|
|
234
|
+
Object.defineProperty(exports, "DonutChart", {
|
|
235
|
+
enumerable: true,
|
|
236
|
+
get: function () {
|
|
237
|
+
return _DonutChart.default;
|
|
238
|
+
}
|
|
239
|
+
});
|
|
240
|
+
Object.defineProperty(exports, "DonutChartSegment", {
|
|
241
|
+
enumerable: true,
|
|
242
|
+
get: function () {
|
|
243
|
+
return _DonutChart.DonutChartSegment;
|
|
244
|
+
}
|
|
245
|
+
});
|
|
246
|
+
Object.defineProperty(exports, "DonutChartSummary", {
|
|
247
|
+
enumerable: true,
|
|
248
|
+
get: function () {
|
|
249
|
+
return _DonutChartSummary.default;
|
|
250
|
+
}
|
|
251
|
+
});
|
|
174
252
|
Object.defineProperty(exports, "Drawer", {
|
|
175
253
|
enumerable: true,
|
|
176
254
|
get: function () {
|
|
@@ -243,6 +321,12 @@ Object.defineProperty(exports, "InputSearch", {
|
|
|
243
321
|
return _InputSearch.default;
|
|
244
322
|
}
|
|
245
323
|
});
|
|
324
|
+
Object.defineProperty(exports, "InstitutionBadge", {
|
|
325
|
+
enumerable: true,
|
|
326
|
+
get: function () {
|
|
327
|
+
return _InstitutionBadge.default;
|
|
328
|
+
}
|
|
329
|
+
});
|
|
246
330
|
Object.defineProperty(exports, "LazyList", {
|
|
247
331
|
enumerable: true,
|
|
248
332
|
get: function () {
|
|
@@ -255,6 +339,12 @@ Object.defineProperty(exports, "LinearMeter", {
|
|
|
255
339
|
return _LinearMeter.default;
|
|
256
340
|
}
|
|
257
341
|
});
|
|
342
|
+
Object.defineProperty(exports, "LinearProgress", {
|
|
343
|
+
enumerable: true,
|
|
344
|
+
get: function () {
|
|
345
|
+
return _LinearProgress.default;
|
|
346
|
+
}
|
|
347
|
+
});
|
|
258
348
|
Object.defineProperty(exports, "ListGroup", {
|
|
259
349
|
enumerable: true,
|
|
260
350
|
get: function () {
|
|
@@ -279,12 +369,24 @@ Object.defineProperty(exports, "MerchantProfile", {
|
|
|
279
369
|
return _MerchantProfile.default;
|
|
280
370
|
}
|
|
281
371
|
});
|
|
372
|
+
Object.defineProperty(exports, "MetricLegendItem", {
|
|
373
|
+
enumerable: true,
|
|
374
|
+
get: function () {
|
|
375
|
+
return _MetricLegendItem.default;
|
|
376
|
+
}
|
|
377
|
+
});
|
|
282
378
|
Object.defineProperty(exports, "MoneyValue", {
|
|
283
379
|
enumerable: true,
|
|
284
380
|
get: function () {
|
|
285
381
|
return _MoneyValue.default;
|
|
286
382
|
}
|
|
287
383
|
});
|
|
384
|
+
Object.defineProperty(exports, "MonthlyStatusGrid", {
|
|
385
|
+
enumerable: true,
|
|
386
|
+
get: function () {
|
|
387
|
+
return _MonthlyStatusGrid.default;
|
|
388
|
+
}
|
|
389
|
+
});
|
|
288
390
|
Object.defineProperty(exports, "NavArrow", {
|
|
289
391
|
enumerable: true,
|
|
290
392
|
get: function () {
|
|
@@ -315,6 +417,12 @@ Object.defineProperty(exports, "OTP", {
|
|
|
315
417
|
return _OTP.default;
|
|
316
418
|
}
|
|
317
419
|
});
|
|
420
|
+
Object.defineProperty(exports, "OTPResend", {
|
|
421
|
+
enumerable: true,
|
|
422
|
+
get: function () {
|
|
423
|
+
return _OTP.OTPResend;
|
|
424
|
+
}
|
|
425
|
+
});
|
|
318
426
|
Object.defineProperty(exports, "PaymentFeedback", {
|
|
319
427
|
enumerable: true,
|
|
320
428
|
get: function () {
|
|
@@ -339,24 +447,48 @@ Object.defineProperty(exports, "ProductLabel", {
|
|
|
339
447
|
return _ProductLabel.default;
|
|
340
448
|
}
|
|
341
449
|
});
|
|
450
|
+
Object.defineProperty(exports, "ProductOverview", {
|
|
451
|
+
enumerable: true,
|
|
452
|
+
get: function () {
|
|
453
|
+
return _ProductOverview.default;
|
|
454
|
+
}
|
|
455
|
+
});
|
|
342
456
|
Object.defineProperty(exports, "ProgressBadge", {
|
|
343
457
|
enumerable: true,
|
|
344
458
|
get: function () {
|
|
345
459
|
return _ProgressBadge.default;
|
|
346
460
|
}
|
|
347
461
|
});
|
|
462
|
+
Object.defineProperty(exports, "Radio", {
|
|
463
|
+
enumerable: true,
|
|
464
|
+
get: function () {
|
|
465
|
+
return _Radio.default;
|
|
466
|
+
}
|
|
467
|
+
});
|
|
348
468
|
Object.defineProperty(exports, "RadioButton", {
|
|
349
469
|
enumerable: true,
|
|
350
470
|
get: function () {
|
|
351
471
|
return _RadioButton.default;
|
|
352
472
|
}
|
|
353
473
|
});
|
|
474
|
+
Object.defineProperty(exports, "RangeTrack", {
|
|
475
|
+
enumerable: true,
|
|
476
|
+
get: function () {
|
|
477
|
+
return _RangeTrack.default;
|
|
478
|
+
}
|
|
479
|
+
});
|
|
354
480
|
Object.defineProperty(exports, "RechargeCard", {
|
|
355
481
|
enumerable: true,
|
|
356
482
|
get: function () {
|
|
357
483
|
return _RechargeCard.default;
|
|
358
484
|
}
|
|
359
485
|
});
|
|
486
|
+
Object.defineProperty(exports, "SavingsGoalSummary", {
|
|
487
|
+
enumerable: true,
|
|
488
|
+
get: function () {
|
|
489
|
+
return _SavingsGoalSummary.default;
|
|
490
|
+
}
|
|
491
|
+
});
|
|
360
492
|
Object.defineProperty(exports, "Screen", {
|
|
361
493
|
enumerable: true,
|
|
362
494
|
get: function () {
|
|
@@ -375,6 +507,24 @@ Object.defineProperty(exports, "SegmentedControl", {
|
|
|
375
507
|
return _SegmentedControl.default;
|
|
376
508
|
}
|
|
377
509
|
});
|
|
510
|
+
Object.defineProperty(exports, "SegmentedTrack", {
|
|
511
|
+
enumerable: true,
|
|
512
|
+
get: function () {
|
|
513
|
+
return _SegmentedTrack.default;
|
|
514
|
+
}
|
|
515
|
+
});
|
|
516
|
+
Object.defineProperty(exports, "SegmentedTrackSegment", {
|
|
517
|
+
enumerable: true,
|
|
518
|
+
get: function () {
|
|
519
|
+
return _SegmentedTrack.SegmentedTrackSegment;
|
|
520
|
+
}
|
|
521
|
+
});
|
|
522
|
+
Object.defineProperty(exports, "StatGroup", {
|
|
523
|
+
enumerable: true,
|
|
524
|
+
get: function () {
|
|
525
|
+
return _StatGroup.default;
|
|
526
|
+
}
|
|
527
|
+
});
|
|
378
528
|
Object.defineProperty(exports, "StatItem", {
|
|
379
529
|
enumerable: true,
|
|
380
530
|
get: function () {
|
|
@@ -405,6 +555,18 @@ Object.defineProperty(exports, "Stepper", {
|
|
|
405
555
|
return _Stepper.default;
|
|
406
556
|
}
|
|
407
557
|
});
|
|
558
|
+
Object.defineProperty(exports, "StrengthIndicator", {
|
|
559
|
+
enumerable: true,
|
|
560
|
+
get: function () {
|
|
561
|
+
return _StrengthIndicator.default;
|
|
562
|
+
}
|
|
563
|
+
});
|
|
564
|
+
Object.defineProperty(exports, "SummaryTile", {
|
|
565
|
+
enumerable: true,
|
|
566
|
+
get: function () {
|
|
567
|
+
return _SummaryTile.default;
|
|
568
|
+
}
|
|
569
|
+
});
|
|
408
570
|
Object.defineProperty(exports, "SupportText", {
|
|
409
571
|
enumerable: true,
|
|
410
572
|
get: function () {
|
|
@@ -537,6 +699,12 @@ Object.defineProperty(exports, "useFormContext", {
|
|
|
537
699
|
return _Form.useFormContext;
|
|
538
700
|
}
|
|
539
701
|
});
|
|
702
|
+
Object.defineProperty(exports, "useOtpResend", {
|
|
703
|
+
enumerable: true,
|
|
704
|
+
get: function () {
|
|
705
|
+
return _OTP.useOtpResend;
|
|
706
|
+
}
|
|
707
|
+
});
|
|
540
708
|
Object.defineProperty(exports, "useToast", {
|
|
541
709
|
enumerable: true,
|
|
542
710
|
get: function () {
|
|
@@ -550,12 +718,18 @@ var _AvatarGroup = _interopRequireDefault(require("./AvatarGroup/AvatarGroup"));
|
|
|
550
718
|
var _Badge = _interopRequireDefault(require("./Badge/Badge"));
|
|
551
719
|
var _BottomNav = _interopRequireDefault(require("./BottomNav/BottomNav"));
|
|
552
720
|
var _BottomNavItem = _interopRequireDefault(require("./BottomNavItem/BottomNavItem"));
|
|
721
|
+
var _BrandChip = _interopRequireDefault(require("./BrandChip/BrandChip"));
|
|
553
722
|
var _Button = _interopRequireDefault(require("./Button/Button"));
|
|
554
723
|
var _Card = _interopRequireDefault(require("./Card/Card"));
|
|
555
724
|
var _CardAdvisory = _interopRequireDefault(require("./CardAdvisory/CardAdvisory"));
|
|
725
|
+
var _CardBankAccount = _interopRequireDefault(require("./CardBankAccount/CardBankAccount"));
|
|
556
726
|
var _Carousel = _interopRequireDefault(require("./Carousel/Carousel"));
|
|
557
727
|
var _Checkbox = _interopRequireDefault(require("./Checkbox/Checkbox"));
|
|
728
|
+
var _CheckboxItem = _interopRequireDefault(require("./CheckboxItem/CheckboxItem"));
|
|
729
|
+
var _CheckboxGroup = _interopRequireDefault(require("./CheckboxGroup/CheckboxGroup"));
|
|
558
730
|
var _CardFeedback = _interopRequireDefault(require("./CardFeedback/CardFeedback"));
|
|
731
|
+
var _CardFinancialCondition = _interopRequireDefault(require("./CardFinancialCondition/CardFinancialCondition"));
|
|
732
|
+
var _CardInsight = _interopRequireDefault(require("./CardInsight/CardInsight"));
|
|
559
733
|
var _Disclaimer = _interopRequireDefault(require("./Disclaimer/Disclaimer"));
|
|
560
734
|
var _Divider = _interopRequireDefault(require("./Divider/Divider"));
|
|
561
735
|
var _Drawer = _interopRequireDefault(require("./Drawer/Drawer"));
|
|
@@ -567,6 +741,9 @@ var _FormField = _interopRequireDefault(require("./FormField/FormField"));
|
|
|
567
741
|
var _CircularProgressBar = _interopRequireDefault(require("./CircularProgressBar/CircularProgressBar"));
|
|
568
742
|
var _CircularProgressBarDoted = _interopRequireDefault(require("./CircularProgressBarDoted/CircularProgressBarDoted"));
|
|
569
743
|
var _CircularRating = _interopRequireDefault(require("./CircularRating/CircularRating"));
|
|
744
|
+
var _CoverageRing = _interopRequireDefault(require("./CoverageRing/CoverageRing"));
|
|
745
|
+
var _CoverageBarComparison = _interopRequireDefault(require("./CoverageBarComparison/CoverageBarComparison"));
|
|
746
|
+
var _MonthlyStatusGrid = _interopRequireWildcard(require("./MonthlyStatusGrid/MonthlyStatusGrid"));
|
|
570
747
|
var _Gauge = _interopRequireDefault(require("./Gauge/Gauge"));
|
|
571
748
|
var _HoldingsCard = _interopRequireDefault(require("./HoldingsCard/HoldingsCard"));
|
|
572
749
|
var _HStack = _interopRequireDefault(require("./HStack/HStack"));
|
|
@@ -575,10 +752,12 @@ var _IconCapsule = _interopRequireDefault(require("./IconCapsule/IconCapsule"));
|
|
|
575
752
|
var _Image = _interopRequireDefault(require("./Image/Image"));
|
|
576
753
|
var _LazyList = _interopRequireDefault(require("./LazyList/LazyList"));
|
|
577
754
|
var _LinearMeter = _interopRequireDefault(require("./LinearMeter/LinearMeter"));
|
|
755
|
+
var _LinearProgress = _interopRequireDefault(require("./LinearProgress/LinearProgress"));
|
|
578
756
|
var _ListGroup = _interopRequireDefault(require("./ListGroup/ListGroup"));
|
|
579
757
|
var _ListItem = _interopRequireDefault(require("./ListItem/ListItem"));
|
|
580
758
|
var _MediaCard = _interopRequireDefault(require("./MediaCard/MediaCard"));
|
|
581
759
|
var _MerchantProfile = _interopRequireDefault(require("./MerchantProfile/MerchantProfile"));
|
|
760
|
+
var _MetricLegendItem = _interopRequireDefault(require("./MetricLegendItem/MetricLegendItem"));
|
|
582
761
|
var _MoneyValue = _interopRequireDefault(require("./MoneyValue/MoneyValue"));
|
|
583
762
|
var _NoteInput = _interopRequireDefault(require("./NoteInput/NoteInput"));
|
|
584
763
|
var _Nudge = _interopRequireDefault(require("./Nudge/Nudge"));
|
|
@@ -602,16 +781,24 @@ var _VStack = _interopRequireDefault(require("./VStack/VStack"));
|
|
|
602
781
|
var _ChipGroup = _interopRequireDefault(require("./ChipGroup/ChipGroup"));
|
|
603
782
|
var _EmptyState = _interopRequireDefault(require("./EmptyState/EmptyState"));
|
|
604
783
|
var _Accordion = _interopRequireDefault(require("./Accordion/Accordion"));
|
|
784
|
+
var _AccordionCheckbox = _interopRequireDefault(require("./AccordionCheckbox/AccordionCheckbox"));
|
|
605
785
|
var _ActionTile = _interopRequireDefault(require("./ActionTile/ActionTile"));
|
|
606
786
|
var _Balance = _interopRequireDefault(require("./Balance/Balance"));
|
|
607
787
|
var _ButtonGroup = _interopRequireDefault(require("./ButtonGroup/ButtonGroup"));
|
|
608
788
|
var _CardProviderInfo = _interopRequireDefault(require("./CardProviderInfo/CardProviderInfo"));
|
|
609
789
|
var _ChipSelect = _interopRequireDefault(require("./ChipSelect/ChipSelect"));
|
|
610
790
|
var _InputSearch = _interopRequireDefault(require("./InputSearch/InputSearch"));
|
|
791
|
+
var _InstitutionBadge = _interopRequireDefault(require("./InstitutionBadge/InstitutionBadge"));
|
|
611
792
|
var _SupportText = _interopRequireDefault(require("./SupportText/SupportText"));
|
|
612
793
|
var _SupportTextIcon = _interopRequireDefault(require("./SupportText/SupportTextIcon"));
|
|
794
|
+
var _Radio = _interopRequireDefault(require("./Radio/Radio"));
|
|
613
795
|
var _RadioButton = _interopRequireDefault(require("./RadioButton/RadioButton"));
|
|
614
796
|
var _RechargeCard = _interopRequireDefault(require("./RechargeCard/RechargeCard"));
|
|
797
|
+
var _SavingsGoalSummary = _interopRequireDefault(require("./SavingsGoalSummary/SavingsGoalSummary"));
|
|
798
|
+
var _DonutChart = _interopRequireWildcard(require("./DonutChart/DonutChart"));
|
|
799
|
+
var _DonutChartSummary = _interopRequireDefault(require("./DonutChartSummary/DonutChartSummary"));
|
|
800
|
+
var _RangeTrack = _interopRequireDefault(require("./RangeTrack/RangeTrack"));
|
|
801
|
+
var _SegmentedTrack = _interopRequireWildcard(require("./SegmentedTrack/SegmentedTrack"));
|
|
615
802
|
var _Tabs = _interopRequireDefault(require("./Tabs/Tabs"));
|
|
616
803
|
var _TabItem = _interopRequireDefault(require("./Tabs/TabItem"));
|
|
617
804
|
var _Toast = _interopRequireDefault(require("./Toast/Toast"));
|
|
@@ -621,11 +808,15 @@ var _AmountInput = _interopRequireDefault(require("./AmountInput/AmountInput"));
|
|
|
621
808
|
var _Popup = _interopRequireDefault(require("./Popup/Popup"));
|
|
622
809
|
var _PortfolioHero = _interopRequireDefault(require("./PortfolioHero/PortfolioHero"));
|
|
623
810
|
var _ProductLabel = _interopRequireDefault(require("./ProductLabel/ProductLabel"));
|
|
811
|
+
var _ProductOverview = _interopRequireDefault(require("./ProductOverview/ProductOverview"));
|
|
624
812
|
var _ProgressBadge = _interopRequireDefault(require("./ProgressBadge/ProgressBadge"));
|
|
625
813
|
var _SwappableAmount = _interopRequireDefault(require("./SwappableAmount/SwappableAmount"));
|
|
626
|
-
var _OTP =
|
|
814
|
+
var _OTP = _interopRequireWildcard(require("./OTP/OTP"));
|
|
627
815
|
var _PaymentFeedback = _interopRequireDefault(require("./PaymentFeedback/PaymentFeedback"));
|
|
628
816
|
var _StatItem = _interopRequireDefault(require("./StatItem/StatItem"));
|
|
817
|
+
var _StatGroup = _interopRequireDefault(require("./StatGroup/StatGroup"));
|
|
818
|
+
var _StrengthIndicator = _interopRequireDefault(require("./StrengthIndicator/StrengthIndicator"));
|
|
819
|
+
var _SummaryTile = _interopRequireDefault(require("./SummaryTile/SummaryTile"));
|
|
629
820
|
var _Text = _interopRequireDefault(require("./Text/Text"));
|
|
630
821
|
var _SegmentedControl = _interopRequireDefault(require("./SegmentedControl/SegmentedControl"));
|
|
631
822
|
var _Toggle = _interopRequireDefault(require("./Toggle/Toggle"));
|