@hero-design/rn 8.110.1 → 8.112.0
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/.cursor/rules/performance-optimization.mdc +64 -0
- package/.cursor/rules/rn-rules.mdc +165 -0
- package/.cursor/rules/testing-rules.mdc +114 -0
- package/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +26 -0
- package/assets/fonts/BeVietnamPro-BoldItalic.ttf +0 -0
- package/assets/fonts/BeVietnamPro-LightItalic.ttf +0 -0
- package/assets/fonts/BeVietnamPro-RegularItalic.ttf +0 -0
- package/assets/fonts/BeVietnamPro-SemiBoldItalic.ttf +0 -0
- package/assets/fonts/Saiga-LightItalic.otf +0 -0
- package/assets/fonts/Saiga-MediumItalic.otf +0 -0
- package/assets/fonts/Saiga-RegularItalic.otf +0 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +429 -389
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +429 -389
- package/package.json +6 -7
- package/src/components/Accordion/__tests__/__snapshots__/AccordionItem.spec.tsx.snap +8 -0
- package/src/components/Accordion/__tests__/__snapshots__/index.spec.tsx.snap +12 -0
- package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +13 -0
- package/src/components/Alert/index.tsx +10 -2
- package/src/components/AnimatedScroller/__tests__/__snapshots__/ScrollablesWithFAB.spec.tsx.snap +70 -0
- package/src/components/Attachment/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/StyledAvatarStack.spec.tsx.snap +2 -0
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/index.spec.tsx.snap +31 -0
- package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +1 -0
- package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +2 -0
- package/src/components/Badge/__tests__/__snapshots__/Badge.spec.tsx.snap +8 -0
- package/src/components/Badge/__tests__/__snapshots__/Status.spec.tsx.snap +1 -0
- package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +4 -0
- package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +2 -0
- package/src/components/Button/Button.tsx +10 -4
- package/src/components/Button/UtilityButton/__tests__/__snapshots__/index.spec.tsx.snap +2 -0
- package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +33 -0
- package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +13 -0
- package/src/components/Calendar/__tests__/__snapshots__/CalendarRangeConnector.spec.tsx.snap +5 -0
- package/src/components/Calendar/__tests__/__snapshots__/CalendarRowItem.spec.tsx.snap +5 -0
- package/src/components/Card/__tests__/__snapshots__/index.spec.tsx.snap +8 -0
- package/src/components/Carousel/__tests__/__snapshots__/CardCarousel.spec.tsx.snap +16 -0
- package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +20 -0
- package/src/components/Chart/ColumnChart/__tests__/__snapshots__/index.spec.tsx.snap +49 -0
- package/src/components/Chart/Line/__tests__/__snapshots__/index.spec.tsx.snap +60 -0
- package/src/components/Chart/shared/__tests__/__snapshots__/ChartFrame.spec.tsx.snap +62 -0
- package/src/components/Chart/shared/__tests__/__snapshots__/ChartHeader.spec.tsx.snap +2 -0
- package/src/components/Chart/shared/__tests__/__snapshots__/EmptyState.spec.tsx.snap +2 -0
- package/src/components/Chart/shared/__tests__/__snapshots__/XAxis.spec.tsx.snap +12 -0
- package/src/components/Chart/shared/__tests__/__snapshots__/YAxis.spec.tsx.snap +36 -0
- package/src/components/Checkbox/__tests__/__snapshots__/DefaultCheckBox.spec.tsx.snap +4 -0
- package/src/components/Checkbox/__tests__/__snapshots__/InlineCheckBox.spec.tsx.snap +6 -0
- package/src/components/Chip/__tests__/__snapshots__/index.spec.tsx.snap +19 -0
- package/src/components/Chip/index.tsx +9 -8
- package/src/components/ContentNavigator/__tests__/__snapshots__/index.spec.tsx.snap +3 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePicker.spec.tsx.snap +3 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +1 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerCalendar.spec.tsx.snap +1 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +6 -0
- package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +6 -0
- package/src/components/FAB/Pair/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +2 -0
- package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/FilterTrigger/__tests__/__snapshots__/index.spec.tsx.snap +6 -0
- package/src/components/FloatingIsland/__tests__/__snapshots__/index.spec.tsx.snap +6 -0
- package/src/components/HeroDesignProvider/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +8 -0
- package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +4 -0
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +13 -0
- package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +4 -0
- package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +4 -0
- package/src/components/Modal/__tests__/__snapshots__/index.spec.tsx.snap +2 -0
- package/src/components/PinInput/__tests__/__snapshots__/PinCell.spec.tsx.snap +5 -0
- package/src/components/PinInput/__tests__/__snapshots__/index.spec.tsx.snap +4 -0
- package/src/components/Portal/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/Progress/__tests__/__snapshots__/index.spec.js.snap +3 -0
- package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +4 -0
- package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +10 -0
- package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +4 -0
- package/src/components/Search/__tests__/__snapshots__/SearchOneLine.spec.tsx.snap +2 -0
- package/src/components/Search/__tests__/__snapshots__/SearchSuffixIcon.spec.tsx.snap +1 -0
- package/src/components/Search/__tests__/__snapshots__/SearchTwoLine.spec.tsx.snap +4 -0
- package/src/components/SectionHeading/__tests__/__snapshots__/index.spec.tsx.snap +7 -0
- package/src/components/SegmentedControl/__tests__/__snapshots__/SegmentedItem.spec.tsx.snap +1 -0
- package/src/components/SegmentedControl/__tests__/__snapshots__/index.spec.tsx.snap +3 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +1 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +20 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +51 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +1 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +24 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +39 -0
- package/src/components/Select/index.internal.tsx +13 -0
- package/src/components/StatusScreens/Empty/__tests__/__snapshots__/index.spec.tsx.snap +8 -0
- package/src/components/StatusScreens/Error/__tests__/__snapshots__/index.spec.tsx.snap +13 -0
- package/src/components/StatusScreens/Success/__tests__/__snapshots__/index.spec.tsx.snap +16 -0
- package/src/components/Swipeable/__tests__/__snapshots__/SwipeableAction.spec.tsx.snap +3 -0
- package/src/components/Swipeable/__tests__/__snapshots__/index.spec.tsx.snap +2 -0
- package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/Option.spec.tsx.snap +1 -0
- package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/Tabs/__tests__/__snapshots__/SceneView.spec.tsx.snap +3 -0
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +9 -0
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabsHeader.spec.tsx.snap +4 -0
- package/src/components/Tabs/__tests__/__snapshots__/TabWithBadge.spec.tsx.snap +1 -0
- package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +18 -0
- package/src/components/Tag/__tests__/__snapshots__/Tag.spec.tsx.snap +10 -0
- package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +7 -0
- package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +40 -0
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +3 -0
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +5 -0
- package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +13 -0
- package/src/components/Toolbar/ToolbarGroup.tsx +10 -4
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarGroup.spec.tsx.snap +6 -0
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +7 -0
- package/src/components/Typography/Body/StyledBody.tsx +24 -19
- package/src/components/Typography/Body/__tests__/__snapshots__/index.spec.tsx.snap +229 -0
- package/src/components/Typography/Body/__tests__/index.spec.tsx +19 -0
- package/src/components/Typography/Body/index.tsx +8 -2
- package/src/components/Typography/Caption/StyledCaption.tsx +15 -8
- package/src/components/Typography/Caption/__tests__/__snapshots__/index.spec.tsx.snap +219 -0
- package/src/components/Typography/Caption/__tests__/index.spec.tsx +19 -0
- package/src/components/Typography/Caption/index.tsx +18 -10
- package/src/components/Typography/Label/StyledLabel.tsx +16 -6
- package/src/components/Typography/Label/__tests__/__snapshots__/StyledLabel.tsx.snap +8 -0
- package/src/components/Typography/Label/__tests__/__snapshots__/index.spec.tsx.snap +126 -0
- package/src/components/Typography/Label/__tests__/index.spec.tsx +12 -0
- package/src/components/Typography/Label/index.tsx +17 -9
- package/src/components/Typography/Title/StyledTitle.tsx +22 -8
- package/src/components/Typography/Title/__tests__/__snapshots__/index.spec.tsx.snap +441 -0
- package/src/components/Typography/Title/__tests__/index.spec.tsx +23 -0
- package/src/components/Typography/Title/index.tsx +8 -2
- package/src/index.internal.ts +14 -0
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +24 -10
- package/src/theme/components/typography.ts +12 -10
- package/src/theme/global/typography.ts +9 -0
- package/src/types.internal.ts +14 -1
- package/stats/8.111.0/rn-stats.html +4842 -0
- package/types/components/Alert/index.d.ts +8 -2
- package/types/components/Button/Button.d.ts +8 -4
- package/types/components/Chip/index.d.ts +7 -2
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/Select/index.internal.d.ts +13 -0
- package/types/components/TextInput/StyledTextInput.d.ts +1 -1
- package/types/components/TextInput/index.d.ts +1 -1
- package/types/components/Toolbar/ToolbarGroup.d.ts +8 -4
- package/types/components/Typography/Body/StyledBody.d.ts +1 -0
- package/types/components/Typography/Body/index.d.ts +6 -2
- package/types/components/Typography/Caption/StyledCaption.d.ts +1 -0
- package/types/components/Typography/Caption/index.d.ts +5 -1
- package/types/components/Typography/Label/StyledLabel.d.ts +1 -0
- package/types/components/Typography/Label/index.d.ts +5 -1
- package/types/components/Typography/Title/StyledTitle.d.ts +1 -0
- package/types/components/Typography/Title/index.d.ts +6 -2
- package/types/index.internal.d.ts +13 -0
- package/types/theme/components/typography.d.ts +12 -10
- package/types/theme/global/typography.d.ts +3 -0
- package/types/types.internal.d.ts +13 -0
|
@@ -59,6 +59,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
59
59
|
]
|
|
60
60
|
}
|
|
61
61
|
themeIntent="body"
|
|
62
|
+
themeIsItalic={false}
|
|
62
63
|
themeTypeface="neutral"
|
|
63
64
|
themeVariant="regular"
|
|
64
65
|
>
|
|
@@ -140,6 +141,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
140
141
|
}
|
|
141
142
|
themeButtonVariant="filled-primary"
|
|
142
143
|
themeIntent="body"
|
|
144
|
+
themeIsItalic={false}
|
|
143
145
|
themeLevel="h5"
|
|
144
146
|
themeTypeface="neutral"
|
|
145
147
|
>
|
|
@@ -233,6 +235,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
233
235
|
[
|
|
234
236
|
{
|
|
235
237
|
"color": "#4d6265",
|
|
238
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
236
239
|
"fontSize": 10,
|
|
237
240
|
"letterSpacing": 0,
|
|
238
241
|
"lineHeight": 14,
|
|
@@ -243,6 +246,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
243
246
|
]
|
|
244
247
|
}
|
|
245
248
|
themeIntent="subdued"
|
|
249
|
+
themeIsItalic={false}
|
|
246
250
|
>
|
|
247
251
|
May 2025
|
|
248
252
|
</Text>
|
|
@@ -284,6 +288,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
284
288
|
[
|
|
285
289
|
{
|
|
286
290
|
"color": "#4d6265",
|
|
291
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
287
292
|
"fontSize": 10,
|
|
288
293
|
"letterSpacing": 0,
|
|
289
294
|
"lineHeight": 14,
|
|
@@ -294,6 +299,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
294
299
|
]
|
|
295
300
|
}
|
|
296
301
|
themeIntent="subdued"
|
|
302
|
+
themeIsItalic={false}
|
|
297
303
|
>
|
|
298
304
|
Jun 2025
|
|
299
305
|
</Text>
|
|
@@ -335,6 +341,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
335
341
|
[
|
|
336
342
|
{
|
|
337
343
|
"color": "#4d6265",
|
|
344
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
338
345
|
"fontSize": 10,
|
|
339
346
|
"letterSpacing": 0,
|
|
340
347
|
"lineHeight": 14,
|
|
@@ -345,6 +352,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
345
352
|
]
|
|
346
353
|
}
|
|
347
354
|
themeIntent="subdued"
|
|
355
|
+
themeIsItalic={false}
|
|
348
356
|
>
|
|
349
357
|
Jul 2025
|
|
350
358
|
</Text>
|
|
@@ -386,6 +394,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
386
394
|
[
|
|
387
395
|
{
|
|
388
396
|
"color": "#4d6265",
|
|
397
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
389
398
|
"fontSize": 10,
|
|
390
399
|
"letterSpacing": 0,
|
|
391
400
|
"lineHeight": 14,
|
|
@@ -396,6 +405,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
396
405
|
]
|
|
397
406
|
}
|
|
398
407
|
themeIntent="subdued"
|
|
408
|
+
themeIsItalic={false}
|
|
399
409
|
>
|
|
400
410
|
Aug 2025
|
|
401
411
|
</Text>
|
|
@@ -447,6 +457,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
447
457
|
[
|
|
448
458
|
{
|
|
449
459
|
"color": "#4d6265",
|
|
460
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
450
461
|
"fontSize": 10,
|
|
451
462
|
"letterSpacing": 0,
|
|
452
463
|
"lineHeight": 14,
|
|
@@ -457,6 +468,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
457
468
|
]
|
|
458
469
|
}
|
|
459
470
|
themeIntent="subdued"
|
|
471
|
+
themeIsItalic={false}
|
|
460
472
|
>
|
|
461
473
|
$0
|
|
462
474
|
</Text>
|
|
@@ -499,6 +511,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
499
511
|
[
|
|
500
512
|
{
|
|
501
513
|
"color": "#4d6265",
|
|
514
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
502
515
|
"fontSize": 10,
|
|
503
516
|
"letterSpacing": 0,
|
|
504
517
|
"lineHeight": 14,
|
|
@@ -509,6 +522,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
509
522
|
]
|
|
510
523
|
}
|
|
511
524
|
themeIntent="subdued"
|
|
525
|
+
themeIsItalic={false}
|
|
512
526
|
>
|
|
513
527
|
$20
|
|
514
528
|
</Text>
|
|
@@ -551,6 +565,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
551
565
|
[
|
|
552
566
|
{
|
|
553
567
|
"color": "#4d6265",
|
|
568
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
554
569
|
"fontSize": 10,
|
|
555
570
|
"letterSpacing": 0,
|
|
556
571
|
"lineHeight": 14,
|
|
@@ -561,6 +576,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
561
576
|
]
|
|
562
577
|
}
|
|
563
578
|
themeIntent="subdued"
|
|
579
|
+
themeIsItalic={false}
|
|
564
580
|
>
|
|
565
581
|
$40
|
|
566
582
|
</Text>
|
|
@@ -603,6 +619,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
603
619
|
[
|
|
604
620
|
{
|
|
605
621
|
"color": "#4d6265",
|
|
622
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
606
623
|
"fontSize": 10,
|
|
607
624
|
"letterSpacing": 0,
|
|
608
625
|
"lineHeight": 14,
|
|
@@ -613,6 +630,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
613
630
|
]
|
|
614
631
|
}
|
|
615
632
|
themeIntent="subdued"
|
|
633
|
+
themeIsItalic={false}
|
|
616
634
|
>
|
|
617
635
|
$60
|
|
618
636
|
</Text>
|
|
@@ -655,6 +673,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
655
673
|
[
|
|
656
674
|
{
|
|
657
675
|
"color": "#4d6265",
|
|
676
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
658
677
|
"fontSize": 10,
|
|
659
678
|
"letterSpacing": 0,
|
|
660
679
|
"lineHeight": 14,
|
|
@@ -665,6 +684,7 @@ exports[`ChartFrame should not render empty state when emptyText is provided 1`]
|
|
|
665
684
|
]
|
|
666
685
|
}
|
|
667
686
|
themeIntent="subdued"
|
|
687
|
+
themeIsItalic={false}
|
|
668
688
|
>
|
|
669
689
|
$80
|
|
670
690
|
</Text>
|
|
@@ -1056,6 +1076,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1056
1076
|
]
|
|
1057
1077
|
}
|
|
1058
1078
|
themeIntent="body"
|
|
1079
|
+
themeIsItalic={false}
|
|
1059
1080
|
themeTypeface="neutral"
|
|
1060
1081
|
themeVariant="regular"
|
|
1061
1082
|
>
|
|
@@ -1137,6 +1158,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1137
1158
|
}
|
|
1138
1159
|
themeButtonVariant="filled-primary"
|
|
1139
1160
|
themeIntent="body"
|
|
1161
|
+
themeIsItalic={false}
|
|
1140
1162
|
themeLevel="h5"
|
|
1141
1163
|
themeTypeface="neutral"
|
|
1142
1164
|
>
|
|
@@ -1230,6 +1252,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1230
1252
|
[
|
|
1231
1253
|
{
|
|
1232
1254
|
"color": "#4d6265",
|
|
1255
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
1233
1256
|
"fontSize": 10,
|
|
1234
1257
|
"letterSpacing": 0,
|
|
1235
1258
|
"lineHeight": 14,
|
|
@@ -1240,6 +1263,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1240
1263
|
]
|
|
1241
1264
|
}
|
|
1242
1265
|
themeIntent="subdued"
|
|
1266
|
+
themeIsItalic={false}
|
|
1243
1267
|
>
|
|
1244
1268
|
May 2025
|
|
1245
1269
|
</Text>
|
|
@@ -1281,6 +1305,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1281
1305
|
[
|
|
1282
1306
|
{
|
|
1283
1307
|
"color": "#4d6265",
|
|
1308
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
1284
1309
|
"fontSize": 10,
|
|
1285
1310
|
"letterSpacing": 0,
|
|
1286
1311
|
"lineHeight": 14,
|
|
@@ -1291,6 +1316,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1291
1316
|
]
|
|
1292
1317
|
}
|
|
1293
1318
|
themeIntent="subdued"
|
|
1319
|
+
themeIsItalic={false}
|
|
1294
1320
|
>
|
|
1295
1321
|
Jun 2025
|
|
1296
1322
|
</Text>
|
|
@@ -1332,6 +1358,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1332
1358
|
[
|
|
1333
1359
|
{
|
|
1334
1360
|
"color": "#4d6265",
|
|
1361
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
1335
1362
|
"fontSize": 10,
|
|
1336
1363
|
"letterSpacing": 0,
|
|
1337
1364
|
"lineHeight": 14,
|
|
@@ -1342,6 +1369,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1342
1369
|
]
|
|
1343
1370
|
}
|
|
1344
1371
|
themeIntent="subdued"
|
|
1372
|
+
themeIsItalic={false}
|
|
1345
1373
|
>
|
|
1346
1374
|
Jul 2025
|
|
1347
1375
|
</Text>
|
|
@@ -1383,6 +1411,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1383
1411
|
[
|
|
1384
1412
|
{
|
|
1385
1413
|
"color": "#4d6265",
|
|
1414
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
1386
1415
|
"fontSize": 10,
|
|
1387
1416
|
"letterSpacing": 0,
|
|
1388
1417
|
"lineHeight": 14,
|
|
@@ -1393,6 +1422,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1393
1422
|
]
|
|
1394
1423
|
}
|
|
1395
1424
|
themeIntent="subdued"
|
|
1425
|
+
themeIsItalic={false}
|
|
1396
1426
|
>
|
|
1397
1427
|
Aug 2025
|
|
1398
1428
|
</Text>
|
|
@@ -1444,6 +1474,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1444
1474
|
[
|
|
1445
1475
|
{
|
|
1446
1476
|
"color": "#4d6265",
|
|
1477
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
1447
1478
|
"fontSize": 10,
|
|
1448
1479
|
"letterSpacing": 0,
|
|
1449
1480
|
"lineHeight": 14,
|
|
@@ -1454,6 +1485,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1454
1485
|
]
|
|
1455
1486
|
}
|
|
1456
1487
|
themeIntent="subdued"
|
|
1488
|
+
themeIsItalic={false}
|
|
1457
1489
|
>
|
|
1458
1490
|
$0
|
|
1459
1491
|
</Text>
|
|
@@ -1496,6 +1528,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1496
1528
|
[
|
|
1497
1529
|
{
|
|
1498
1530
|
"color": "#4d6265",
|
|
1531
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
1499
1532
|
"fontSize": 10,
|
|
1500
1533
|
"letterSpacing": 0,
|
|
1501
1534
|
"lineHeight": 14,
|
|
@@ -1506,6 +1539,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1506
1539
|
]
|
|
1507
1540
|
}
|
|
1508
1541
|
themeIntent="subdued"
|
|
1542
|
+
themeIsItalic={false}
|
|
1509
1543
|
>
|
|
1510
1544
|
$20
|
|
1511
1545
|
</Text>
|
|
@@ -1548,6 +1582,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1548
1582
|
[
|
|
1549
1583
|
{
|
|
1550
1584
|
"color": "#4d6265",
|
|
1585
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
1551
1586
|
"fontSize": 10,
|
|
1552
1587
|
"letterSpacing": 0,
|
|
1553
1588
|
"lineHeight": 14,
|
|
@@ -1558,6 +1593,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1558
1593
|
]
|
|
1559
1594
|
}
|
|
1560
1595
|
themeIntent="subdued"
|
|
1596
|
+
themeIsItalic={false}
|
|
1561
1597
|
>
|
|
1562
1598
|
$40
|
|
1563
1599
|
</Text>
|
|
@@ -1600,6 +1636,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1600
1636
|
[
|
|
1601
1637
|
{
|
|
1602
1638
|
"color": "#4d6265",
|
|
1639
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
1603
1640
|
"fontSize": 10,
|
|
1604
1641
|
"letterSpacing": 0,
|
|
1605
1642
|
"lineHeight": 14,
|
|
@@ -1610,6 +1647,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1610
1647
|
]
|
|
1611
1648
|
}
|
|
1612
1649
|
themeIntent="subdued"
|
|
1650
|
+
themeIsItalic={false}
|
|
1613
1651
|
>
|
|
1614
1652
|
$60
|
|
1615
1653
|
</Text>
|
|
@@ -1652,6 +1690,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1652
1690
|
[
|
|
1653
1691
|
{
|
|
1654
1692
|
"color": "#4d6265",
|
|
1693
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
1655
1694
|
"fontSize": 10,
|
|
1656
1695
|
"letterSpacing": 0,
|
|
1657
1696
|
"lineHeight": 14,
|
|
@@ -1662,6 +1701,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1662
1701
|
]
|
|
1663
1702
|
}
|
|
1664
1703
|
themeIntent="subdued"
|
|
1704
|
+
themeIsItalic={false}
|
|
1665
1705
|
>
|
|
1666
1706
|
$80
|
|
1667
1707
|
</Text>
|
|
@@ -1982,6 +2022,7 @@ exports[`ChartFrame should render correctly 1`] = `
|
|
|
1982
2022
|
]
|
|
1983
2023
|
}
|
|
1984
2024
|
themeIntent="body"
|
|
2025
|
+
themeIsItalic={false}
|
|
1985
2026
|
themeTypeface="neutral"
|
|
1986
2027
|
themeVariant="regular"
|
|
1987
2028
|
>
|
|
@@ -2073,6 +2114,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2073
2114
|
]
|
|
2074
2115
|
}
|
|
2075
2116
|
themeIntent="body"
|
|
2117
|
+
themeIsItalic={false}
|
|
2076
2118
|
themeTypeface="neutral"
|
|
2077
2119
|
themeVariant="regular"
|
|
2078
2120
|
>
|
|
@@ -2154,6 +2196,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2154
2196
|
}
|
|
2155
2197
|
themeButtonVariant="filled-primary"
|
|
2156
2198
|
themeIntent="body"
|
|
2199
|
+
themeIsItalic={false}
|
|
2157
2200
|
themeLevel="h5"
|
|
2158
2201
|
themeTypeface="neutral"
|
|
2159
2202
|
>
|
|
@@ -2247,6 +2290,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2247
2290
|
[
|
|
2248
2291
|
{
|
|
2249
2292
|
"color": "#4d6265",
|
|
2293
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
2250
2294
|
"fontSize": 10,
|
|
2251
2295
|
"letterSpacing": 0,
|
|
2252
2296
|
"lineHeight": 14,
|
|
@@ -2257,6 +2301,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2257
2301
|
]
|
|
2258
2302
|
}
|
|
2259
2303
|
themeIntent="subdued"
|
|
2304
|
+
themeIsItalic={false}
|
|
2260
2305
|
>
|
|
2261
2306
|
May 2025
|
|
2262
2307
|
</Text>
|
|
@@ -2298,6 +2343,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2298
2343
|
[
|
|
2299
2344
|
{
|
|
2300
2345
|
"color": "#4d6265",
|
|
2346
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
2301
2347
|
"fontSize": 10,
|
|
2302
2348
|
"letterSpacing": 0,
|
|
2303
2349
|
"lineHeight": 14,
|
|
@@ -2308,6 +2354,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2308
2354
|
]
|
|
2309
2355
|
}
|
|
2310
2356
|
themeIntent="subdued"
|
|
2357
|
+
themeIsItalic={false}
|
|
2311
2358
|
>
|
|
2312
2359
|
Jun 2025
|
|
2313
2360
|
</Text>
|
|
@@ -2349,6 +2396,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2349
2396
|
[
|
|
2350
2397
|
{
|
|
2351
2398
|
"color": "#4d6265",
|
|
2399
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
2352
2400
|
"fontSize": 10,
|
|
2353
2401
|
"letterSpacing": 0,
|
|
2354
2402
|
"lineHeight": 14,
|
|
@@ -2359,6 +2407,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2359
2407
|
]
|
|
2360
2408
|
}
|
|
2361
2409
|
themeIntent="subdued"
|
|
2410
|
+
themeIsItalic={false}
|
|
2362
2411
|
>
|
|
2363
2412
|
Jul 2025
|
|
2364
2413
|
</Text>
|
|
@@ -2400,6 +2449,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2400
2449
|
[
|
|
2401
2450
|
{
|
|
2402
2451
|
"color": "#4d6265",
|
|
2452
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
2403
2453
|
"fontSize": 10,
|
|
2404
2454
|
"letterSpacing": 0,
|
|
2405
2455
|
"lineHeight": 14,
|
|
@@ -2410,6 +2460,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2410
2460
|
]
|
|
2411
2461
|
}
|
|
2412
2462
|
themeIntent="subdued"
|
|
2463
|
+
themeIsItalic={false}
|
|
2413
2464
|
>
|
|
2414
2465
|
Aug 2025
|
|
2415
2466
|
</Text>
|
|
@@ -2461,6 +2512,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2461
2512
|
[
|
|
2462
2513
|
{
|
|
2463
2514
|
"color": "#4d6265",
|
|
2515
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
2464
2516
|
"fontSize": 10,
|
|
2465
2517
|
"letterSpacing": 0,
|
|
2466
2518
|
"lineHeight": 14,
|
|
@@ -2471,6 +2523,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2471
2523
|
]
|
|
2472
2524
|
}
|
|
2473
2525
|
themeIntent="subdued"
|
|
2526
|
+
themeIsItalic={false}
|
|
2474
2527
|
>
|
|
2475
2528
|
$0
|
|
2476
2529
|
</Text>
|
|
@@ -2513,6 +2566,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2513
2566
|
[
|
|
2514
2567
|
{
|
|
2515
2568
|
"color": "#4d6265",
|
|
2569
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
2516
2570
|
"fontSize": 10,
|
|
2517
2571
|
"letterSpacing": 0,
|
|
2518
2572
|
"lineHeight": 14,
|
|
@@ -2523,6 +2577,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2523
2577
|
]
|
|
2524
2578
|
}
|
|
2525
2579
|
themeIntent="subdued"
|
|
2580
|
+
themeIsItalic={false}
|
|
2526
2581
|
>
|
|
2527
2582
|
$20
|
|
2528
2583
|
</Text>
|
|
@@ -2565,6 +2620,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2565
2620
|
[
|
|
2566
2621
|
{
|
|
2567
2622
|
"color": "#4d6265",
|
|
2623
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
2568
2624
|
"fontSize": 10,
|
|
2569
2625
|
"letterSpacing": 0,
|
|
2570
2626
|
"lineHeight": 14,
|
|
@@ -2575,6 +2631,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2575
2631
|
]
|
|
2576
2632
|
}
|
|
2577
2633
|
themeIntent="subdued"
|
|
2634
|
+
themeIsItalic={false}
|
|
2578
2635
|
>
|
|
2579
2636
|
$40
|
|
2580
2637
|
</Text>
|
|
@@ -2617,6 +2674,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2617
2674
|
[
|
|
2618
2675
|
{
|
|
2619
2676
|
"color": "#4d6265",
|
|
2677
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
2620
2678
|
"fontSize": 10,
|
|
2621
2679
|
"letterSpacing": 0,
|
|
2622
2680
|
"lineHeight": 14,
|
|
@@ -2627,6 +2685,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2627
2685
|
]
|
|
2628
2686
|
}
|
|
2629
2687
|
themeIntent="subdued"
|
|
2688
|
+
themeIsItalic={false}
|
|
2630
2689
|
>
|
|
2631
2690
|
$60
|
|
2632
2691
|
</Text>
|
|
@@ -2669,6 +2728,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2669
2728
|
[
|
|
2670
2729
|
{
|
|
2671
2730
|
"color": "#4d6265",
|
|
2731
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
2672
2732
|
"fontSize": 10,
|
|
2673
2733
|
"letterSpacing": 0,
|
|
2674
2734
|
"lineHeight": 14,
|
|
@@ -2679,6 +2739,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
2679
2739
|
]
|
|
2680
2740
|
}
|
|
2681
2741
|
themeIntent="subdued"
|
|
2742
|
+
themeIsItalic={false}
|
|
2682
2743
|
>
|
|
2683
2744
|
$80
|
|
2684
2745
|
</Text>
|
|
@@ -3025,6 +3086,7 @@ exports[`ChartFrame should render empty state when data is empty 1`] = `
|
|
|
3025
3086
|
}
|
|
3026
3087
|
themeFontWeight="semi-bold"
|
|
3027
3088
|
themeIntent="muted"
|
|
3089
|
+
themeIsItalic={false}
|
|
3028
3090
|
>
|
|
3029
3091
|
NO RECENT DATA
|
|
3030
3092
|
</Text>
|
|
@@ -47,6 +47,7 @@ exports[`ChartHeader should render correctly 1`] = `
|
|
|
47
47
|
]
|
|
48
48
|
}
|
|
49
49
|
themeIntent="body"
|
|
50
|
+
themeIsItalic={false}
|
|
50
51
|
themeTypeface="neutral"
|
|
51
52
|
themeVariant="regular"
|
|
52
53
|
>
|
|
@@ -128,6 +129,7 @@ exports[`ChartHeader should render correctly 1`] = `
|
|
|
128
129
|
}
|
|
129
130
|
themeButtonVariant="filled-primary"
|
|
130
131
|
themeIntent="body"
|
|
132
|
+
themeIsItalic={false}
|
|
131
133
|
themeLevel="h5"
|
|
132
134
|
themeTypeface="neutral"
|
|
133
135
|
>
|
|
@@ -49,6 +49,7 @@ exports[`EmptyState renders correctly on web 1`] = `
|
|
|
49
49
|
}
|
|
50
50
|
themeFontWeight="semi-bold"
|
|
51
51
|
themeIntent="muted"
|
|
52
|
+
themeIsItalic={false}
|
|
52
53
|
>
|
|
53
54
|
No data
|
|
54
55
|
</Text>
|
|
@@ -126,6 +127,7 @@ exports[`EmptyState should render 1`] = `
|
|
|
126
127
|
}
|
|
127
128
|
themeFontWeight="semi-bold"
|
|
128
129
|
themeIntent="muted"
|
|
130
|
+
themeIsItalic={false}
|
|
129
131
|
>
|
|
130
132
|
No data
|
|
131
133
|
</Text>
|
|
@@ -46,6 +46,7 @@ exports[`XAxis renders correctly on web 1`] = `
|
|
|
46
46
|
[
|
|
47
47
|
{
|
|
48
48
|
"color": "#4d6265",
|
|
49
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
49
50
|
"fontSize": 10,
|
|
50
51
|
"letterSpacing": 0,
|
|
51
52
|
"lineHeight": 14,
|
|
@@ -56,6 +57,7 @@ exports[`XAxis renders correctly on web 1`] = `
|
|
|
56
57
|
]
|
|
57
58
|
}
|
|
58
59
|
themeIntent="subdued"
|
|
60
|
+
themeIsItalic={false}
|
|
59
61
|
>
|
|
60
62
|
Label 1
|
|
61
63
|
</Text>
|
|
@@ -91,6 +93,7 @@ exports[`XAxis renders correctly on web 1`] = `
|
|
|
91
93
|
[
|
|
92
94
|
{
|
|
93
95
|
"color": "#4d6265",
|
|
96
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
94
97
|
"fontSize": 10,
|
|
95
98
|
"letterSpacing": 0,
|
|
96
99
|
"lineHeight": 14,
|
|
@@ -101,6 +104,7 @@ exports[`XAxis renders correctly on web 1`] = `
|
|
|
101
104
|
]
|
|
102
105
|
}
|
|
103
106
|
themeIntent="subdued"
|
|
107
|
+
themeIsItalic={false}
|
|
104
108
|
>
|
|
105
109
|
Label 2
|
|
106
110
|
</Text>
|
|
@@ -136,6 +140,7 @@ exports[`XAxis renders correctly on web 1`] = `
|
|
|
136
140
|
[
|
|
137
141
|
{
|
|
138
142
|
"color": "#4d6265",
|
|
143
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
139
144
|
"fontSize": 10,
|
|
140
145
|
"letterSpacing": 0,
|
|
141
146
|
"lineHeight": 14,
|
|
@@ -146,6 +151,7 @@ exports[`XAxis renders correctly on web 1`] = `
|
|
|
146
151
|
]
|
|
147
152
|
}
|
|
148
153
|
themeIntent="subdued"
|
|
154
|
+
themeIsItalic={false}
|
|
149
155
|
>
|
|
150
156
|
Label 3
|
|
151
157
|
</Text>
|
|
@@ -227,6 +233,7 @@ exports[`XAxis should render correctly 1`] = `
|
|
|
227
233
|
[
|
|
228
234
|
{
|
|
229
235
|
"color": "#4d6265",
|
|
236
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
230
237
|
"fontSize": 10,
|
|
231
238
|
"letterSpacing": 0,
|
|
232
239
|
"lineHeight": 14,
|
|
@@ -237,6 +244,7 @@ exports[`XAxis should render correctly 1`] = `
|
|
|
237
244
|
]
|
|
238
245
|
}
|
|
239
246
|
themeIntent="subdued"
|
|
247
|
+
themeIsItalic={false}
|
|
240
248
|
>
|
|
241
249
|
Label 1
|
|
242
250
|
</Text>
|
|
@@ -278,6 +286,7 @@ exports[`XAxis should render correctly 1`] = `
|
|
|
278
286
|
[
|
|
279
287
|
{
|
|
280
288
|
"color": "#4d6265",
|
|
289
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
281
290
|
"fontSize": 10,
|
|
282
291
|
"letterSpacing": 0,
|
|
283
292
|
"lineHeight": 14,
|
|
@@ -288,6 +297,7 @@ exports[`XAxis should render correctly 1`] = `
|
|
|
288
297
|
]
|
|
289
298
|
}
|
|
290
299
|
themeIntent="subdued"
|
|
300
|
+
themeIsItalic={false}
|
|
291
301
|
>
|
|
292
302
|
Label 2
|
|
293
303
|
</Text>
|
|
@@ -329,6 +339,7 @@ exports[`XAxis should render correctly 1`] = `
|
|
|
329
339
|
[
|
|
330
340
|
{
|
|
331
341
|
"color": "#4d6265",
|
|
342
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
332
343
|
"fontSize": 10,
|
|
333
344
|
"letterSpacing": 0,
|
|
334
345
|
"lineHeight": 14,
|
|
@@ -339,6 +350,7 @@ exports[`XAxis should render correctly 1`] = `
|
|
|
339
350
|
]
|
|
340
351
|
}
|
|
341
352
|
themeIntent="subdued"
|
|
353
|
+
themeIsItalic={false}
|
|
342
354
|
>
|
|
343
355
|
Label 3
|
|
344
356
|
</Text>
|