@hero-design/rn 8.91.3 → 8.91.5
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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +27 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +433 -450
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +433 -450
- package/package.json +1 -1
- package/src/components/Alert/StyledAlert.tsx +1 -0
- package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +56 -0
- package/src/components/AnimatedScroller/__tests__/__snapshots__/ScrollablesWithFAB.spec.tsx.snap +18 -18
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/StyledAvatarStack.spec.tsx.snap +8 -10
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/index.spec.tsx.snap +116 -145
- package/src/components/Avatar/StyledAvatar.tsx +1 -1
- package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +4 -5
- package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +8 -10
- package/src/components/BottomNavigation/StyledBottomNavigation.tsx +3 -5
- package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +6 -4
- package/src/components/BottomSheet/StyledBottomSheet.tsx +0 -10
- package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +0 -16
- package/src/components/Calendar/CalendarRange.tsx +5 -1
- package/src/components/Calendar/__tests__/helper.spec.ts +20 -8
- package/src/components/Calendar/helpers.ts +6 -2
- package/src/components/Chip/__tests__/__snapshots__/index.spec.tsx.snap +28 -28
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +0 -16
- package/src/components/FAB/ActionGroup/StyledActionGroup.tsx +1 -1
- package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +11 -11
- package/src/components/FAB/Pair/__tests__/__snapshots__/index.spec.tsx.snap +6 -6
- package/src/components/FAB/StyledFAB.tsx +1 -5
- package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +6 -6
- package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +9 -9
- package/src/components/FloatingIsland/__tests__/__snapshots__/index.spec.tsx.snap +12 -12
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +1 -0
- package/src/components/List/StyledListItem.tsx +1 -5
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +9 -11
- package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +6 -6
- package/src/components/MapPin/StyledMapPin.tsx +14 -3
- package/src/components/MapPin/__tests__/__snapshots__/index.spec.tsx.snap +58 -65
- package/src/components/MapPin/index.tsx +7 -8
- package/src/components/Search/StyledSearch.tsx +1 -4
- package/src/components/Search/__tests__/__snapshots__/SearchOneLine.spec.tsx.snap +3 -2
- package/src/components/Search/__tests__/__snapshots__/SearchTwoLine.spec.tsx.snap +3 -2
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +0 -40
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +0 -32
- package/src/components/Switch/__tests__/__snapshots__/StyledSwitch.spec.tsx.snap +1 -1
- package/src/components/Switch/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +0 -8
- package/src/components/Toast/StyledToast.tsx +1 -5
- package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +21 -21
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +72 -50
- package/src/theme/components/alert.ts +5 -1
- package/src/theme/components/avatar.ts +1 -1
- package/src/theme/components/bottomNavigation.ts +7 -5
- package/src/theme/components/bottomSheet.ts +2 -9
- package/src/theme/components/chip.ts +2 -2
- package/src/theme/components/fab.ts +5 -9
- package/src/theme/components/floatingIsland.ts +1 -1
- package/src/theme/components/list.ts +1 -7
- package/src/theme/components/mapPin.ts +6 -2
- package/src/theme/components/search.ts +1 -5
- package/src/theme/components/toast.ts +1 -5
- package/src/theme/global/colors/__tests__/__snapshots__/eBens.spec.ts.snap +2 -0
- package/src/theme/global/colors/__tests__/__snapshots__/global.spec.ts.snap +2 -0
- package/src/theme/global/colors/__tests__/__snapshots__/jobs.spec.ts.snap +2 -0
- package/src/theme/global/colors/__tests__/__snapshots__/swag.spec.ts.snap +2 -0
- package/src/theme/global/colors/__tests__/__snapshots__/swagLight.spec.ts.snap +2 -0
- package/src/theme/global/colors/__tests__/__snapshots__/swagLightGlobal.spec.ts.snap +2 -0
- package/src/theme/global/colors/__tests__/__snapshots__/swagLightJobs.spec.ts.snap +2 -0
- package/src/theme/global/colors/__tests__/__snapshots__/wallet.spec.ts.snap +2 -0
- package/src/theme/global/colors/__tests__/__snapshots__/work.spec.ts.snap +2 -0
- package/src/theme/global/colors/eBens.ts +3 -0
- package/src/theme/global/colors/global.ts +3 -0
- package/src/theme/global/colors/jobs.ts +3 -0
- package/src/theme/global/colors/swag.ts +3 -0
- package/src/theme/global/colors/swagDark.ts +3 -0
- package/src/theme/global/colors/wallet.ts +3 -0
- package/src/theme/global/colors/work.ts +3 -0
- package/stats/8.91.4/rn-stats.html +4842 -0
- package/stats/8.91.5/rn-stats.html +4842 -0
- package/types/components/Avatar/StyledAvatar.d.ts +2 -2
- package/types/components/Calendar/helpers.d.ts +5 -2
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/MapPin/StyledMapPin.d.ts +12 -2
- package/types/components/TextInput/index.d.ts +1 -1
- package/types/theme/components/alert.d.ts +3 -0
- package/types/theme/components/avatar.d.ts +1 -1
- package/types/theme/components/bottomNavigation.d.ts +5 -7
- package/types/theme/components/bottomSheet.d.ts +1 -10
- package/types/theme/components/chip.d.ts +1 -1
- package/types/theme/components/fab.d.ts +2 -9
- package/types/theme/components/list.d.ts +1 -10
- package/types/theme/components/mapPin.d.ts +6 -2
- package/types/theme/components/search.d.ts +1 -8
- package/types/theme/components/toast.d.ts +1 -8
- package/types/theme/global/colors/eBens.d.ts +3 -0
- package/types/theme/global/colors/jobs.d.ts +3 -0
- package/types/theme/global/colors/swag.d.ts +3 -0
- package/types/theme/global/colors/swagDark.d.ts +3 -0
- package/types/theme/global/colors/wallet.d.ts +3 -0
- package/types/theme/global/colors/work.d.ts +3 -0
|
@@ -86,9 +86,9 @@ exports[`AvatarStack allow rendering custom surplus 1`] = `
|
|
|
86
86
|
{
|
|
87
87
|
"color": "#001f23",
|
|
88
88
|
"fontFamily": "BeVietnamPro-Regular",
|
|
89
|
-
"fontSize":
|
|
90
|
-
"letterSpacing": 0.
|
|
91
|
-
"lineHeight":
|
|
89
|
+
"fontSize": 16,
|
|
90
|
+
"letterSpacing": 0.48,
|
|
91
|
+
"lineHeight": 24,
|
|
92
92
|
},
|
|
93
93
|
[
|
|
94
94
|
{
|
|
@@ -104,11 +104,10 @@ exports[`AvatarStack allow rendering custom surplus 1`] = `
|
|
|
104
104
|
],
|
|
105
105
|
]
|
|
106
106
|
}
|
|
107
|
-
themeFontSize="medium"
|
|
108
|
-
themeFontWeight="regular"
|
|
109
107
|
themeIntent="body"
|
|
110
108
|
themeSize="small"
|
|
111
109
|
themeTypeface="neutral"
|
|
110
|
+
themeVariant="regular"
|
|
112
111
|
>
|
|
113
112
|
TT
|
|
114
113
|
</Text>
|
|
@@ -176,9 +175,9 @@ exports[`AvatarStack allow rendering custom surplus 1`] = `
|
|
|
176
175
|
{
|
|
177
176
|
"color": "#001f23",
|
|
178
177
|
"fontFamily": "BeVietnamPro-Regular",
|
|
179
|
-
"fontSize":
|
|
180
|
-
"letterSpacing": 0.
|
|
181
|
-
"lineHeight":
|
|
178
|
+
"fontSize": 16,
|
|
179
|
+
"letterSpacing": 0.48,
|
|
180
|
+
"lineHeight": 24,
|
|
182
181
|
},
|
|
183
182
|
[
|
|
184
183
|
{
|
|
@@ -194,11 +193,10 @@ exports[`AvatarStack allow rendering custom surplus 1`] = `
|
|
|
194
193
|
],
|
|
195
194
|
]
|
|
196
195
|
}
|
|
197
|
-
themeFontSize="medium"
|
|
198
|
-
themeFontWeight="regular"
|
|
199
196
|
themeIntent="body"
|
|
200
197
|
themeSize="small"
|
|
201
198
|
themeTypeface="neutral"
|
|
199
|
+
themeVariant="regular"
|
|
202
200
|
>
|
|
203
201
|
SS
|
|
204
202
|
</Text>
|
|
@@ -266,9 +264,9 @@ exports[`AvatarStack allow rendering custom surplus 1`] = `
|
|
|
266
264
|
{
|
|
267
265
|
"color": "#001f23",
|
|
268
266
|
"fontFamily": "BeVietnamPro-Regular",
|
|
269
|
-
"fontSize":
|
|
270
|
-
"letterSpacing": 0.
|
|
271
|
-
"lineHeight":
|
|
267
|
+
"fontSize": 16,
|
|
268
|
+
"letterSpacing": 0.48,
|
|
269
|
+
"lineHeight": 24,
|
|
272
270
|
},
|
|
273
271
|
[
|
|
274
272
|
{
|
|
@@ -284,11 +282,10 @@ exports[`AvatarStack allow rendering custom surplus 1`] = `
|
|
|
284
282
|
],
|
|
285
283
|
]
|
|
286
284
|
}
|
|
287
|
-
themeFontSize="medium"
|
|
288
|
-
themeFontWeight="regular"
|
|
289
285
|
themeIntent="body"
|
|
290
286
|
themeSize="small"
|
|
291
287
|
themeTypeface="neutral"
|
|
288
|
+
themeVariant="regular"
|
|
292
289
|
>
|
|
293
290
|
AA
|
|
294
291
|
</Text>
|
|
@@ -356,9 +353,9 @@ exports[`AvatarStack allow rendering custom surplus 1`] = `
|
|
|
356
353
|
{
|
|
357
354
|
"color": "#001f23",
|
|
358
355
|
"fontFamily": "BeVietnamPro-Regular",
|
|
359
|
-
"fontSize":
|
|
360
|
-
"letterSpacing": 0.
|
|
361
|
-
"lineHeight":
|
|
356
|
+
"fontSize": 16,
|
|
357
|
+
"letterSpacing": 0.48,
|
|
358
|
+
"lineHeight": 24,
|
|
362
359
|
},
|
|
363
360
|
[
|
|
364
361
|
{
|
|
@@ -374,11 +371,10 @@ exports[`AvatarStack allow rendering custom surplus 1`] = `
|
|
|
374
371
|
],
|
|
375
372
|
]
|
|
376
373
|
}
|
|
377
|
-
themeFontSize="medium"
|
|
378
|
-
themeFontWeight="regular"
|
|
379
374
|
themeIntent="body"
|
|
380
375
|
themeSize="small"
|
|
381
376
|
themeTypeface="neutral"
|
|
377
|
+
themeVariant="regular"
|
|
382
378
|
>
|
|
383
379
|
OO
|
|
384
380
|
</Text>
|
|
@@ -446,9 +442,9 @@ exports[`AvatarStack allow rendering custom surplus 1`] = `
|
|
|
446
442
|
{
|
|
447
443
|
"color": "#001f23",
|
|
448
444
|
"fontFamily": "BeVietnamPro-Regular",
|
|
449
|
-
"fontSize":
|
|
450
|
-
"letterSpacing": 0.
|
|
451
|
-
"lineHeight":
|
|
445
|
+
"fontSize": 16,
|
|
446
|
+
"letterSpacing": 0.48,
|
|
447
|
+
"lineHeight": 24,
|
|
452
448
|
},
|
|
453
449
|
[
|
|
454
450
|
{
|
|
@@ -464,11 +460,10 @@ exports[`AvatarStack allow rendering custom surplus 1`] = `
|
|
|
464
460
|
],
|
|
465
461
|
]
|
|
466
462
|
}
|
|
467
|
-
themeFontSize="medium"
|
|
468
|
-
themeFontWeight="regular"
|
|
469
463
|
themeIntent="body"
|
|
470
464
|
themeSize="small"
|
|
471
465
|
themeTypeface="neutral"
|
|
466
|
+
themeVariant="regular"
|
|
472
467
|
>
|
|
473
468
|
NA
|
|
474
469
|
</Text>
|
|
@@ -631,9 +626,9 @@ exports[`AvatarStack does not render surplus when max is equal or larger than th
|
|
|
631
626
|
{
|
|
632
627
|
"color": "#001f23",
|
|
633
628
|
"fontFamily": "BeVietnamPro-Regular",
|
|
634
|
-
"fontSize":
|
|
635
|
-
"letterSpacing": 0.
|
|
636
|
-
"lineHeight":
|
|
629
|
+
"fontSize": 16,
|
|
630
|
+
"letterSpacing": 0.48,
|
|
631
|
+
"lineHeight": 24,
|
|
637
632
|
},
|
|
638
633
|
[
|
|
639
634
|
{
|
|
@@ -649,11 +644,10 @@ exports[`AvatarStack does not render surplus when max is equal or larger than th
|
|
|
649
644
|
],
|
|
650
645
|
]
|
|
651
646
|
}
|
|
652
|
-
themeFontSize="medium"
|
|
653
|
-
themeFontWeight="regular"
|
|
654
647
|
themeIntent="body"
|
|
655
648
|
themeSize="small"
|
|
656
649
|
themeTypeface="neutral"
|
|
650
|
+
themeVariant="regular"
|
|
657
651
|
>
|
|
658
652
|
TT
|
|
659
653
|
</Text>
|
|
@@ -721,9 +715,9 @@ exports[`AvatarStack does not render surplus when max is equal or larger than th
|
|
|
721
715
|
{
|
|
722
716
|
"color": "#001f23",
|
|
723
717
|
"fontFamily": "BeVietnamPro-Regular",
|
|
724
|
-
"fontSize":
|
|
725
|
-
"letterSpacing": 0.
|
|
726
|
-
"lineHeight":
|
|
718
|
+
"fontSize": 16,
|
|
719
|
+
"letterSpacing": 0.48,
|
|
720
|
+
"lineHeight": 24,
|
|
727
721
|
},
|
|
728
722
|
[
|
|
729
723
|
{
|
|
@@ -739,11 +733,10 @@ exports[`AvatarStack does not render surplus when max is equal or larger than th
|
|
|
739
733
|
],
|
|
740
734
|
]
|
|
741
735
|
}
|
|
742
|
-
themeFontSize="medium"
|
|
743
|
-
themeFontWeight="regular"
|
|
744
736
|
themeIntent="body"
|
|
745
737
|
themeSize="small"
|
|
746
738
|
themeTypeface="neutral"
|
|
739
|
+
themeVariant="regular"
|
|
747
740
|
>
|
|
748
741
|
SS
|
|
749
742
|
</Text>
|
|
@@ -811,9 +804,9 @@ exports[`AvatarStack does not render surplus when max is equal or larger than th
|
|
|
811
804
|
{
|
|
812
805
|
"color": "#001f23",
|
|
813
806
|
"fontFamily": "BeVietnamPro-Regular",
|
|
814
|
-
"fontSize":
|
|
815
|
-
"letterSpacing": 0.
|
|
816
|
-
"lineHeight":
|
|
807
|
+
"fontSize": 16,
|
|
808
|
+
"letterSpacing": 0.48,
|
|
809
|
+
"lineHeight": 24,
|
|
817
810
|
},
|
|
818
811
|
[
|
|
819
812
|
{
|
|
@@ -829,11 +822,10 @@ exports[`AvatarStack does not render surplus when max is equal or larger than th
|
|
|
829
822
|
],
|
|
830
823
|
]
|
|
831
824
|
}
|
|
832
|
-
themeFontSize="medium"
|
|
833
|
-
themeFontWeight="regular"
|
|
834
825
|
themeIntent="body"
|
|
835
826
|
themeSize="small"
|
|
836
827
|
themeTypeface="neutral"
|
|
828
|
+
themeVariant="regular"
|
|
837
829
|
>
|
|
838
830
|
AA
|
|
839
831
|
</Text>
|
|
@@ -901,9 +893,9 @@ exports[`AvatarStack does not render surplus when max is equal or larger than th
|
|
|
901
893
|
{
|
|
902
894
|
"color": "#001f23",
|
|
903
895
|
"fontFamily": "BeVietnamPro-Regular",
|
|
904
|
-
"fontSize":
|
|
905
|
-
"letterSpacing": 0.
|
|
906
|
-
"lineHeight":
|
|
896
|
+
"fontSize": 16,
|
|
897
|
+
"letterSpacing": 0.48,
|
|
898
|
+
"lineHeight": 24,
|
|
907
899
|
},
|
|
908
900
|
[
|
|
909
901
|
{
|
|
@@ -919,11 +911,10 @@ exports[`AvatarStack does not render surplus when max is equal or larger than th
|
|
|
919
911
|
],
|
|
920
912
|
]
|
|
921
913
|
}
|
|
922
|
-
themeFontSize="medium"
|
|
923
|
-
themeFontWeight="regular"
|
|
924
914
|
themeIntent="body"
|
|
925
915
|
themeSize="small"
|
|
926
916
|
themeTypeface="neutral"
|
|
917
|
+
themeVariant="regular"
|
|
927
918
|
>
|
|
928
919
|
OO
|
|
929
920
|
</Text>
|
|
@@ -1039,9 +1030,9 @@ exports[`AvatarStack does not render surplus when total is equal to the number o
|
|
|
1039
1030
|
{
|
|
1040
1031
|
"color": "#001f23",
|
|
1041
1032
|
"fontFamily": "BeVietnamPro-Regular",
|
|
1042
|
-
"fontSize":
|
|
1043
|
-
"letterSpacing": 0.
|
|
1044
|
-
"lineHeight":
|
|
1033
|
+
"fontSize": 16,
|
|
1034
|
+
"letterSpacing": 0.48,
|
|
1035
|
+
"lineHeight": 24,
|
|
1045
1036
|
},
|
|
1046
1037
|
[
|
|
1047
1038
|
{
|
|
@@ -1057,11 +1048,10 @@ exports[`AvatarStack does not render surplus when total is equal to the number o
|
|
|
1057
1048
|
],
|
|
1058
1049
|
]
|
|
1059
1050
|
}
|
|
1060
|
-
themeFontSize="medium"
|
|
1061
|
-
themeFontWeight="regular"
|
|
1062
1051
|
themeIntent="body"
|
|
1063
1052
|
themeSize="small"
|
|
1064
1053
|
themeTypeface="neutral"
|
|
1054
|
+
themeVariant="regular"
|
|
1065
1055
|
>
|
|
1066
1056
|
TT
|
|
1067
1057
|
</Text>
|
|
@@ -1129,9 +1119,9 @@ exports[`AvatarStack does not render surplus when total is equal to the number o
|
|
|
1129
1119
|
{
|
|
1130
1120
|
"color": "#001f23",
|
|
1131
1121
|
"fontFamily": "BeVietnamPro-Regular",
|
|
1132
|
-
"fontSize":
|
|
1133
|
-
"letterSpacing": 0.
|
|
1134
|
-
"lineHeight":
|
|
1122
|
+
"fontSize": 16,
|
|
1123
|
+
"letterSpacing": 0.48,
|
|
1124
|
+
"lineHeight": 24,
|
|
1135
1125
|
},
|
|
1136
1126
|
[
|
|
1137
1127
|
{
|
|
@@ -1147,11 +1137,10 @@ exports[`AvatarStack does not render surplus when total is equal to the number o
|
|
|
1147
1137
|
],
|
|
1148
1138
|
]
|
|
1149
1139
|
}
|
|
1150
|
-
themeFontSize="medium"
|
|
1151
|
-
themeFontWeight="regular"
|
|
1152
1140
|
themeIntent="body"
|
|
1153
1141
|
themeSize="small"
|
|
1154
1142
|
themeTypeface="neutral"
|
|
1143
|
+
themeVariant="regular"
|
|
1155
1144
|
>
|
|
1156
1145
|
SS
|
|
1157
1146
|
</Text>
|
|
@@ -1219,9 +1208,9 @@ exports[`AvatarStack does not render surplus when total is equal to the number o
|
|
|
1219
1208
|
{
|
|
1220
1209
|
"color": "#001f23",
|
|
1221
1210
|
"fontFamily": "BeVietnamPro-Regular",
|
|
1222
|
-
"fontSize":
|
|
1223
|
-
"letterSpacing": 0.
|
|
1224
|
-
"lineHeight":
|
|
1211
|
+
"fontSize": 16,
|
|
1212
|
+
"letterSpacing": 0.48,
|
|
1213
|
+
"lineHeight": 24,
|
|
1225
1214
|
},
|
|
1226
1215
|
[
|
|
1227
1216
|
{
|
|
@@ -1237,11 +1226,10 @@ exports[`AvatarStack does not render surplus when total is equal to the number o
|
|
|
1237
1226
|
],
|
|
1238
1227
|
]
|
|
1239
1228
|
}
|
|
1240
|
-
themeFontSize="medium"
|
|
1241
|
-
themeFontWeight="regular"
|
|
1242
1229
|
themeIntent="body"
|
|
1243
1230
|
themeSize="small"
|
|
1244
1231
|
themeTypeface="neutral"
|
|
1232
|
+
themeVariant="regular"
|
|
1245
1233
|
>
|
|
1246
1234
|
AA
|
|
1247
1235
|
</Text>
|
|
@@ -1309,9 +1297,9 @@ exports[`AvatarStack does not render surplus when total is equal to the number o
|
|
|
1309
1297
|
{
|
|
1310
1298
|
"color": "#001f23",
|
|
1311
1299
|
"fontFamily": "BeVietnamPro-Regular",
|
|
1312
|
-
"fontSize":
|
|
1313
|
-
"letterSpacing": 0.
|
|
1314
|
-
"lineHeight":
|
|
1300
|
+
"fontSize": 16,
|
|
1301
|
+
"letterSpacing": 0.48,
|
|
1302
|
+
"lineHeight": 24,
|
|
1315
1303
|
},
|
|
1316
1304
|
[
|
|
1317
1305
|
{
|
|
@@ -1327,11 +1315,10 @@ exports[`AvatarStack does not render surplus when total is equal to the number o
|
|
|
1327
1315
|
],
|
|
1328
1316
|
]
|
|
1329
1317
|
}
|
|
1330
|
-
themeFontSize="medium"
|
|
1331
|
-
themeFontWeight="regular"
|
|
1332
1318
|
themeIntent="body"
|
|
1333
1319
|
themeSize="small"
|
|
1334
1320
|
themeTypeface="neutral"
|
|
1321
|
+
themeVariant="regular"
|
|
1335
1322
|
>
|
|
1336
1323
|
OO
|
|
1337
1324
|
</Text>
|
|
@@ -1447,9 +1434,9 @@ exports[`AvatarStack render correctly surplus when both max and total are set 1`
|
|
|
1447
1434
|
{
|
|
1448
1435
|
"color": "#001f23",
|
|
1449
1436
|
"fontFamily": "BeVietnamPro-Regular",
|
|
1450
|
-
"fontSize":
|
|
1451
|
-
"letterSpacing": 0.
|
|
1452
|
-
"lineHeight":
|
|
1437
|
+
"fontSize": 16,
|
|
1438
|
+
"letterSpacing": 0.48,
|
|
1439
|
+
"lineHeight": 24,
|
|
1453
1440
|
},
|
|
1454
1441
|
[
|
|
1455
1442
|
{
|
|
@@ -1465,11 +1452,10 @@ exports[`AvatarStack render correctly surplus when both max and total are set 1`
|
|
|
1465
1452
|
],
|
|
1466
1453
|
]
|
|
1467
1454
|
}
|
|
1468
|
-
themeFontSize="medium"
|
|
1469
|
-
themeFontWeight="regular"
|
|
1470
1455
|
themeIntent="body"
|
|
1471
1456
|
themeSize="small"
|
|
1472
1457
|
themeTypeface="neutral"
|
|
1458
|
+
themeVariant="regular"
|
|
1473
1459
|
>
|
|
1474
1460
|
TT
|
|
1475
1461
|
</Text>
|
|
@@ -1537,9 +1523,9 @@ exports[`AvatarStack render correctly surplus when both max and total are set 1`
|
|
|
1537
1523
|
{
|
|
1538
1524
|
"color": "#001f23",
|
|
1539
1525
|
"fontFamily": "BeVietnamPro-Regular",
|
|
1540
|
-
"fontSize":
|
|
1541
|
-
"letterSpacing": 0.
|
|
1542
|
-
"lineHeight":
|
|
1526
|
+
"fontSize": 16,
|
|
1527
|
+
"letterSpacing": 0.48,
|
|
1528
|
+
"lineHeight": 24,
|
|
1543
1529
|
},
|
|
1544
1530
|
[
|
|
1545
1531
|
{
|
|
@@ -1555,11 +1541,10 @@ exports[`AvatarStack render correctly surplus when both max and total are set 1`
|
|
|
1555
1541
|
],
|
|
1556
1542
|
]
|
|
1557
1543
|
}
|
|
1558
|
-
themeFontSize="medium"
|
|
1559
|
-
themeFontWeight="regular"
|
|
1560
1544
|
themeIntent="body"
|
|
1561
1545
|
themeSize="small"
|
|
1562
1546
|
themeTypeface="neutral"
|
|
1547
|
+
themeVariant="regular"
|
|
1563
1548
|
>
|
|
1564
1549
|
SS
|
|
1565
1550
|
</Text>
|
|
@@ -1723,9 +1708,9 @@ exports[`AvatarStack renders correctly when variant is horizontal 1`] = `
|
|
|
1723
1708
|
{
|
|
1724
1709
|
"color": "#001f23",
|
|
1725
1710
|
"fontFamily": "BeVietnamPro-Regular",
|
|
1726
|
-
"fontSize":
|
|
1727
|
-
"letterSpacing": 0.
|
|
1728
|
-
"lineHeight":
|
|
1711
|
+
"fontSize": 16,
|
|
1712
|
+
"letterSpacing": 0.48,
|
|
1713
|
+
"lineHeight": 24,
|
|
1729
1714
|
},
|
|
1730
1715
|
[
|
|
1731
1716
|
{
|
|
@@ -1741,11 +1726,10 @@ exports[`AvatarStack renders correctly when variant is horizontal 1`] = `
|
|
|
1741
1726
|
],
|
|
1742
1727
|
]
|
|
1743
1728
|
}
|
|
1744
|
-
themeFontSize="medium"
|
|
1745
|
-
themeFontWeight="regular"
|
|
1746
1729
|
themeIntent="body"
|
|
1747
1730
|
themeSize="small"
|
|
1748
1731
|
themeTypeface="neutral"
|
|
1732
|
+
themeVariant="regular"
|
|
1749
1733
|
>
|
|
1750
1734
|
TT
|
|
1751
1735
|
</Text>
|
|
@@ -1813,9 +1797,9 @@ exports[`AvatarStack renders correctly when variant is horizontal 1`] = `
|
|
|
1813
1797
|
{
|
|
1814
1798
|
"color": "#001f23",
|
|
1815
1799
|
"fontFamily": "BeVietnamPro-Regular",
|
|
1816
|
-
"fontSize":
|
|
1817
|
-
"letterSpacing": 0.
|
|
1818
|
-
"lineHeight":
|
|
1800
|
+
"fontSize": 16,
|
|
1801
|
+
"letterSpacing": 0.48,
|
|
1802
|
+
"lineHeight": 24,
|
|
1819
1803
|
},
|
|
1820
1804
|
[
|
|
1821
1805
|
{
|
|
@@ -1831,11 +1815,10 @@ exports[`AvatarStack renders correctly when variant is horizontal 1`] = `
|
|
|
1831
1815
|
],
|
|
1832
1816
|
]
|
|
1833
1817
|
}
|
|
1834
|
-
themeFontSize="medium"
|
|
1835
|
-
themeFontWeight="regular"
|
|
1836
1818
|
themeIntent="body"
|
|
1837
1819
|
themeSize="small"
|
|
1838
1820
|
themeTypeface="neutral"
|
|
1821
|
+
themeVariant="regular"
|
|
1839
1822
|
>
|
|
1840
1823
|
SS
|
|
1841
1824
|
</Text>
|
|
@@ -1903,9 +1886,9 @@ exports[`AvatarStack renders correctly when variant is horizontal 1`] = `
|
|
|
1903
1886
|
{
|
|
1904
1887
|
"color": "#001f23",
|
|
1905
1888
|
"fontFamily": "BeVietnamPro-Regular",
|
|
1906
|
-
"fontSize":
|
|
1907
|
-
"letterSpacing": 0.
|
|
1908
|
-
"lineHeight":
|
|
1889
|
+
"fontSize": 16,
|
|
1890
|
+
"letterSpacing": 0.48,
|
|
1891
|
+
"lineHeight": 24,
|
|
1909
1892
|
},
|
|
1910
1893
|
[
|
|
1911
1894
|
{
|
|
@@ -1921,11 +1904,10 @@ exports[`AvatarStack renders correctly when variant is horizontal 1`] = `
|
|
|
1921
1904
|
],
|
|
1922
1905
|
]
|
|
1923
1906
|
}
|
|
1924
|
-
themeFontSize="medium"
|
|
1925
|
-
themeFontWeight="regular"
|
|
1926
1907
|
themeIntent="body"
|
|
1927
1908
|
themeSize="small"
|
|
1928
1909
|
themeTypeface="neutral"
|
|
1910
|
+
themeVariant="regular"
|
|
1929
1911
|
>
|
|
1930
1912
|
AA
|
|
1931
1913
|
</Text>
|
|
@@ -1993,9 +1975,9 @@ exports[`AvatarStack renders correctly when variant is horizontal 1`] = `
|
|
|
1993
1975
|
{
|
|
1994
1976
|
"color": "#001f23",
|
|
1995
1977
|
"fontFamily": "BeVietnamPro-Regular",
|
|
1996
|
-
"fontSize":
|
|
1997
|
-
"letterSpacing": 0.
|
|
1998
|
-
"lineHeight":
|
|
1978
|
+
"fontSize": 16,
|
|
1979
|
+
"letterSpacing": 0.48,
|
|
1980
|
+
"lineHeight": 24,
|
|
1999
1981
|
},
|
|
2000
1982
|
[
|
|
2001
1983
|
{
|
|
@@ -2011,11 +1993,10 @@ exports[`AvatarStack renders correctly when variant is horizontal 1`] = `
|
|
|
2011
1993
|
],
|
|
2012
1994
|
]
|
|
2013
1995
|
}
|
|
2014
|
-
themeFontSize="medium"
|
|
2015
|
-
themeFontWeight="regular"
|
|
2016
1996
|
themeIntent="body"
|
|
2017
1997
|
themeSize="small"
|
|
2018
1998
|
themeTypeface="neutral"
|
|
1999
|
+
themeVariant="regular"
|
|
2019
2000
|
>
|
|
2020
2001
|
OO
|
|
2021
2002
|
</Text>
|
|
@@ -2083,9 +2064,9 @@ exports[`AvatarStack renders correctly when variant is horizontal 1`] = `
|
|
|
2083
2064
|
{
|
|
2084
2065
|
"color": "#001f23",
|
|
2085
2066
|
"fontFamily": "BeVietnamPro-Regular",
|
|
2086
|
-
"fontSize":
|
|
2087
|
-
"letterSpacing": 0.
|
|
2088
|
-
"lineHeight":
|
|
2067
|
+
"fontSize": 16,
|
|
2068
|
+
"letterSpacing": 0.48,
|
|
2069
|
+
"lineHeight": 24,
|
|
2089
2070
|
},
|
|
2090
2071
|
[
|
|
2091
2072
|
{
|
|
@@ -2101,11 +2082,10 @@ exports[`AvatarStack renders correctly when variant is horizontal 1`] = `
|
|
|
2101
2082
|
],
|
|
2102
2083
|
]
|
|
2103
2084
|
}
|
|
2104
|
-
themeFontSize="medium"
|
|
2105
|
-
themeFontWeight="regular"
|
|
2106
2085
|
themeIntent="body"
|
|
2107
2086
|
themeSize="small"
|
|
2108
2087
|
themeTypeface="neutral"
|
|
2088
|
+
themeVariant="regular"
|
|
2109
2089
|
>
|
|
2110
2090
|
NA
|
|
2111
2091
|
</Text>
|
|
@@ -2222,9 +2202,9 @@ exports[`AvatarStack renders correctly when variant is vertical 1`] = `
|
|
|
2222
2202
|
{
|
|
2223
2203
|
"color": "#001f23",
|
|
2224
2204
|
"fontFamily": "BeVietnamPro-Regular",
|
|
2225
|
-
"fontSize":
|
|
2226
|
-
"letterSpacing": 0.
|
|
2227
|
-
"lineHeight":
|
|
2205
|
+
"fontSize": 16,
|
|
2206
|
+
"letterSpacing": 0.48,
|
|
2207
|
+
"lineHeight": 24,
|
|
2228
2208
|
},
|
|
2229
2209
|
[
|
|
2230
2210
|
{
|
|
@@ -2240,11 +2220,10 @@ exports[`AvatarStack renders correctly when variant is vertical 1`] = `
|
|
|
2240
2220
|
],
|
|
2241
2221
|
]
|
|
2242
2222
|
}
|
|
2243
|
-
themeFontSize="medium"
|
|
2244
|
-
themeFontWeight="regular"
|
|
2245
2223
|
themeIntent="body"
|
|
2246
2224
|
themeSize="small"
|
|
2247
2225
|
themeTypeface="neutral"
|
|
2226
|
+
themeVariant="regular"
|
|
2248
2227
|
>
|
|
2249
2228
|
TT
|
|
2250
2229
|
</Text>
|
|
@@ -2312,9 +2291,9 @@ exports[`AvatarStack renders correctly when variant is vertical 1`] = `
|
|
|
2312
2291
|
{
|
|
2313
2292
|
"color": "#001f23",
|
|
2314
2293
|
"fontFamily": "BeVietnamPro-Regular",
|
|
2315
|
-
"fontSize":
|
|
2316
|
-
"letterSpacing": 0.
|
|
2317
|
-
"lineHeight":
|
|
2294
|
+
"fontSize": 16,
|
|
2295
|
+
"letterSpacing": 0.48,
|
|
2296
|
+
"lineHeight": 24,
|
|
2318
2297
|
},
|
|
2319
2298
|
[
|
|
2320
2299
|
{
|
|
@@ -2330,11 +2309,10 @@ exports[`AvatarStack renders correctly when variant is vertical 1`] = `
|
|
|
2330
2309
|
],
|
|
2331
2310
|
]
|
|
2332
2311
|
}
|
|
2333
|
-
themeFontSize="medium"
|
|
2334
|
-
themeFontWeight="regular"
|
|
2335
2312
|
themeIntent="body"
|
|
2336
2313
|
themeSize="small"
|
|
2337
2314
|
themeTypeface="neutral"
|
|
2315
|
+
themeVariant="regular"
|
|
2338
2316
|
>
|
|
2339
2317
|
SS
|
|
2340
2318
|
</Text>
|
|
@@ -2402,9 +2380,9 @@ exports[`AvatarStack renders correctly when variant is vertical 1`] = `
|
|
|
2402
2380
|
{
|
|
2403
2381
|
"color": "#001f23",
|
|
2404
2382
|
"fontFamily": "BeVietnamPro-Regular",
|
|
2405
|
-
"fontSize":
|
|
2406
|
-
"letterSpacing": 0.
|
|
2407
|
-
"lineHeight":
|
|
2383
|
+
"fontSize": 16,
|
|
2384
|
+
"letterSpacing": 0.48,
|
|
2385
|
+
"lineHeight": 24,
|
|
2408
2386
|
},
|
|
2409
2387
|
[
|
|
2410
2388
|
{
|
|
@@ -2420,11 +2398,10 @@ exports[`AvatarStack renders correctly when variant is vertical 1`] = `
|
|
|
2420
2398
|
],
|
|
2421
2399
|
]
|
|
2422
2400
|
}
|
|
2423
|
-
themeFontSize="medium"
|
|
2424
|
-
themeFontWeight="regular"
|
|
2425
2401
|
themeIntent="body"
|
|
2426
2402
|
themeSize="small"
|
|
2427
2403
|
themeTypeface="neutral"
|
|
2404
|
+
themeVariant="regular"
|
|
2428
2405
|
>
|
|
2429
2406
|
AA
|
|
2430
2407
|
</Text>
|
|
@@ -2492,9 +2469,9 @@ exports[`AvatarStack renders correctly when variant is vertical 1`] = `
|
|
|
2492
2469
|
{
|
|
2493
2470
|
"color": "#001f23",
|
|
2494
2471
|
"fontFamily": "BeVietnamPro-Regular",
|
|
2495
|
-
"fontSize":
|
|
2496
|
-
"letterSpacing": 0.
|
|
2497
|
-
"lineHeight":
|
|
2472
|
+
"fontSize": 16,
|
|
2473
|
+
"letterSpacing": 0.48,
|
|
2474
|
+
"lineHeight": 24,
|
|
2498
2475
|
},
|
|
2499
2476
|
[
|
|
2500
2477
|
{
|
|
@@ -2510,11 +2487,10 @@ exports[`AvatarStack renders correctly when variant is vertical 1`] = `
|
|
|
2510
2487
|
],
|
|
2511
2488
|
]
|
|
2512
2489
|
}
|
|
2513
|
-
themeFontSize="medium"
|
|
2514
|
-
themeFontWeight="regular"
|
|
2515
2490
|
themeIntent="body"
|
|
2516
2491
|
themeSize="small"
|
|
2517
2492
|
themeTypeface="neutral"
|
|
2493
|
+
themeVariant="regular"
|
|
2518
2494
|
>
|
|
2519
2495
|
OO
|
|
2520
2496
|
</Text>
|
|
@@ -2582,9 +2558,9 @@ exports[`AvatarStack renders correctly when variant is vertical 1`] = `
|
|
|
2582
2558
|
{
|
|
2583
2559
|
"color": "#001f23",
|
|
2584
2560
|
"fontFamily": "BeVietnamPro-Regular",
|
|
2585
|
-
"fontSize":
|
|
2586
|
-
"letterSpacing": 0.
|
|
2587
|
-
"lineHeight":
|
|
2561
|
+
"fontSize": 16,
|
|
2562
|
+
"letterSpacing": 0.48,
|
|
2563
|
+
"lineHeight": 24,
|
|
2588
2564
|
},
|
|
2589
2565
|
[
|
|
2590
2566
|
{
|
|
@@ -2600,11 +2576,10 @@ exports[`AvatarStack renders correctly when variant is vertical 1`] = `
|
|
|
2600
2576
|
],
|
|
2601
2577
|
]
|
|
2602
2578
|
}
|
|
2603
|
-
themeFontSize="medium"
|
|
2604
|
-
themeFontWeight="regular"
|
|
2605
2579
|
themeIntent="body"
|
|
2606
2580
|
themeSize="small"
|
|
2607
2581
|
themeTypeface="neutral"
|
|
2582
|
+
themeVariant="regular"
|
|
2608
2583
|
>
|
|
2609
2584
|
NA
|
|
2610
2585
|
</Text>
|
|
@@ -2721,9 +2696,9 @@ exports[`AvatarStack renders correctly with custom props 1`] = `
|
|
|
2721
2696
|
{
|
|
2722
2697
|
"color": "#001f23",
|
|
2723
2698
|
"fontFamily": "BeVietnamPro-Regular",
|
|
2724
|
-
"fontSize":
|
|
2725
|
-
"letterSpacing": 0.
|
|
2726
|
-
"lineHeight":
|
|
2699
|
+
"fontSize": 16,
|
|
2700
|
+
"letterSpacing": 0.48,
|
|
2701
|
+
"lineHeight": 24,
|
|
2727
2702
|
},
|
|
2728
2703
|
[
|
|
2729
2704
|
{
|
|
@@ -2739,11 +2714,10 @@ exports[`AvatarStack renders correctly with custom props 1`] = `
|
|
|
2739
2714
|
],
|
|
2740
2715
|
]
|
|
2741
2716
|
}
|
|
2742
|
-
themeFontSize="medium"
|
|
2743
|
-
themeFontWeight="regular"
|
|
2744
2717
|
themeIntent="body"
|
|
2745
2718
|
themeSize="medium"
|
|
2746
2719
|
themeTypeface="neutral"
|
|
2720
|
+
themeVariant="regular"
|
|
2747
2721
|
>
|
|
2748
2722
|
TT
|
|
2749
2723
|
</Text>
|
|
@@ -2811,9 +2785,9 @@ exports[`AvatarStack renders correctly with custom props 1`] = `
|
|
|
2811
2785
|
{
|
|
2812
2786
|
"color": "#001f23",
|
|
2813
2787
|
"fontFamily": "BeVietnamPro-Regular",
|
|
2814
|
-
"fontSize":
|
|
2815
|
-
"letterSpacing": 0.
|
|
2816
|
-
"lineHeight":
|
|
2788
|
+
"fontSize": 16,
|
|
2789
|
+
"letterSpacing": 0.48,
|
|
2790
|
+
"lineHeight": 24,
|
|
2817
2791
|
},
|
|
2818
2792
|
[
|
|
2819
2793
|
{
|
|
@@ -2829,11 +2803,10 @@ exports[`AvatarStack renders correctly with custom props 1`] = `
|
|
|
2829
2803
|
],
|
|
2830
2804
|
]
|
|
2831
2805
|
}
|
|
2832
|
-
themeFontSize="medium"
|
|
2833
|
-
themeFontWeight="regular"
|
|
2834
2806
|
themeIntent="body"
|
|
2835
2807
|
themeSize="medium"
|
|
2836
2808
|
themeTypeface="neutral"
|
|
2809
|
+
themeVariant="regular"
|
|
2837
2810
|
>
|
|
2838
2811
|
SS
|
|
2839
2812
|
</Text>
|
|
@@ -2901,9 +2874,9 @@ exports[`AvatarStack renders correctly with custom props 1`] = `
|
|
|
2901
2874
|
{
|
|
2902
2875
|
"color": "#001f23",
|
|
2903
2876
|
"fontFamily": "BeVietnamPro-Regular",
|
|
2904
|
-
"fontSize":
|
|
2905
|
-
"letterSpacing": 0.
|
|
2906
|
-
"lineHeight":
|
|
2877
|
+
"fontSize": 16,
|
|
2878
|
+
"letterSpacing": 0.48,
|
|
2879
|
+
"lineHeight": 24,
|
|
2907
2880
|
},
|
|
2908
2881
|
[
|
|
2909
2882
|
{
|
|
@@ -2919,11 +2892,10 @@ exports[`AvatarStack renders correctly with custom props 1`] = `
|
|
|
2919
2892
|
],
|
|
2920
2893
|
]
|
|
2921
2894
|
}
|
|
2922
|
-
themeFontSize="medium"
|
|
2923
|
-
themeFontWeight="regular"
|
|
2924
2895
|
themeIntent="body"
|
|
2925
2896
|
themeSize="medium"
|
|
2926
2897
|
themeTypeface="neutral"
|
|
2898
|
+
themeVariant="regular"
|
|
2927
2899
|
>
|
|
2928
2900
|
AA
|
|
2929
2901
|
</Text>
|
|
@@ -2992,9 +2964,9 @@ exports[`AvatarStack renders correctly with custom props 1`] = `
|
|
|
2992
2964
|
{
|
|
2993
2965
|
"color": "#001f23",
|
|
2994
2966
|
"fontFamily": "BeVietnamPro-Regular",
|
|
2995
|
-
"fontSize":
|
|
2996
|
-
"letterSpacing": 0.
|
|
2997
|
-
"lineHeight":
|
|
2967
|
+
"fontSize": 16,
|
|
2968
|
+
"letterSpacing": 0.48,
|
|
2969
|
+
"lineHeight": 24,
|
|
2998
2970
|
},
|
|
2999
2971
|
[
|
|
3000
2972
|
{
|
|
@@ -3010,11 +2982,10 @@ exports[`AvatarStack renders correctly with custom props 1`] = `
|
|
|
3010
2982
|
],
|
|
3011
2983
|
]
|
|
3012
2984
|
}
|
|
3013
|
-
themeFontSize="medium"
|
|
3014
|
-
themeFontWeight="regular"
|
|
3015
2985
|
themeIntent="body"
|
|
3016
2986
|
themeSize="medium"
|
|
3017
2987
|
themeTypeface="neutral"
|
|
2988
|
+
themeVariant="regular"
|
|
3018
2989
|
>
|
|
3019
2990
|
+2
|
|
3020
2991
|
</Text>
|