@hero-design/rn 7.25.0 → 7.26.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/.turbo/turbo-build.log +9 -9
- package/assets/fonts/BeVietnamPro-Bold.ttf +0 -0
- package/assets/fonts/{be-vietnam-pro-light.ttf → BeVietnamPro-Light.ttf} +0 -0
- package/assets/fonts/{be-vietnam-pro-regular.ttf → BeVietnamPro-Regular.ttf} +0 -0
- package/assets/fonts/{be-vietnam-pro-semibold.ttf → BeVietnamPro-SemiBold.ttf} +0 -0
- package/assets/fonts/RebondGrotesque-Light.otf +0 -0
- package/assets/fonts/RebondGrotesque-Regular.otf +0 -0
- package/assets/fonts/RebondGrotesque-SemiBold.otf +0 -0
- package/{lib/assets/fonts/hero-icons.ttf → assets/fonts/hero-icons-mobile.ttf} +0 -0
- package/es/index.js +9154 -12299
- package/jest.config.js +6 -2
- package/{assets/fonts/hero-icons.ttf → lib/assets/fonts/hero-icons-mobile.ttf} +0 -0
- package/lib/index.js +9154 -12298
- package/package.json +4 -4
- package/rollup.config.js +1 -1
- 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 +11 -0
- package/src/components/Attachment/__tests__/__snapshots__/index.spec.tsx.snap +1 -0
- package/src/components/Avatar/{index.tsx → Avatar.tsx} +33 -18
- package/src/components/Avatar/AvatarStack/StyledAvatarStack.tsx +29 -0
- package/src/components/Avatar/AvatarStack/__tests__/StyledAvatarStack.spec.tsx +33 -0
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/StyledAvatarStack.spec.tsx.snap +80 -0
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/index.spec.tsx.snap +552 -0
- package/src/components/Avatar/AvatarStack/__tests__/index.spec.tsx +59 -0
- package/src/components/Avatar/AvatarStack/index.tsx +61 -0
- package/src/components/Avatar/AvatarStack/utils.ts +22 -0
- package/src/components/Avatar/StyledAvatar.tsx +6 -25
- package/src/components/Avatar/__tests__/StyledAvatar.spec.tsx +3 -19
- package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +3 -24
- package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +118 -20
- package/src/components/Avatar/__tests__/index.spec.tsx +25 -8
- package/src/components/Avatar/index.ts +6 -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/UtilityButton/__tests__/__snapshots__/index.spec.tsx.snap +2 -0
- package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +11 -0
- package/src/components/Calendar/__tests__/__snapshots__/CalendarRowItem.spec.tsx.snap +5 -0
- package/src/components/Card/DataCard/__tests__/__snapshots__/StyledDataCard.spec.tsx.snap +1 -1
- package/src/components/Card/DataCard/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
- package/src/components/Card/__tests__/__snapshots__/index.spec.tsx.snap +4 -0
- package/src/components/Checkbox/__tests__/__snapshots__/index.spec.tsx.snap +4 -0
- package/src/components/ContentNavigator/__tests__/__snapshots__/StyledContentNavigator.spec.tsx.snap +1 -0
- package/src/components/ContentNavigator/__tests__/__snapshots__/index.spec.tsx.snap +2 -0
- package/src/components/ContentNavigator/index.tsx +8 -12
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +1 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +3 -0
- package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +12 -0
- package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +1 -0
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/HeroIcon/index.tsx +5 -1
- package/src/components/Icon/IconList.ts +11 -0
- package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +4 -0
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +54 -31
- package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +4 -0
- package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +5 -1
- package/src/components/Progress/ProgressBar.tsx +19 -2
- package/src/components/Progress/ProgressCircle.tsx +30 -9
- package/src/components/Progress/StyledProgressBar.tsx +14 -7
- package/src/components/Progress/StyledProgressCircle.tsx +35 -24
- package/src/components/Progress/__tests__/__snapshots__/index.spec.js.snap +337 -30
- package/src/components/Progress/__tests__/index.spec.js +15 -0
- package/src/components/Progress/constants.ts +16 -0
- package/src/components/Progress/types.ts +7 -1
- package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +2 -0
- package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +3 -0
- package/src/components/RichTextEditor/RichTextEditor.tsx +1 -1
- package/src/components/RichTextEditor/__mocks__/heroEditorApp.ts +2 -0
- package/src/components/RichTextEditor/__tests__/RichTextEditor.spec.tsx +36 -25
- package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +8 -4
- package/src/components/RichTextEditor/heroEditorApp.ts +3 -0
- package/src/components/SectionHeading/__tests__/__snapshots__/index.spec.tsx.snap +4 -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/MultiSelect/__tests__/index.spec.tsx +22 -0
- package/src/components/Select/MultiSelect/index.tsx +35 -13
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +1 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +20 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +46 -0
- package/src/components/Select/__tests__/__snapshots__/StyledSelect.spec.tsx.snap +1 -0
- package/src/components/Swipeable/__tests__/__snapshots__/SwipeableAction.spec.tsx.snap +3 -0
- package/src/components/Swipeable/__tests__/__snapshots__/index.spec.tsx.snap +1 -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__/ScrollableTabs.spec.tsx.snap +2 -0
- package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +5 -0
- package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +22 -0
- package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +31 -0
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +1 -0
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +3 -0
- package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +13 -0
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarGroup.spec.tsx.snap +6 -0
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +6 -0
- package/src/components/Typography/Text/StyledText.tsx +6 -2
- package/src/components/Typography/Text/__tests__/StyledText.spec.tsx +22 -0
- package/src/components/Typography/Text/__tests__/__snapshots__/StyledText.spec.tsx.snap +63 -0
- package/src/components/Typography/Text/index.tsx +8 -0
- package/src/index.ts +2 -1
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +84 -21
- package/src/theme/components/avatar.ts +29 -5
- package/src/theme/components/badge.ts +1 -1
- package/src/theme/components/button.ts +2 -2
- package/src/theme/components/empty.ts +2 -2
- package/src/theme/components/fab.ts +3 -3
- package/src/theme/components/pinInput.ts +2 -2
- package/src/theme/components/progress.ts +37 -9
- package/src/theme/components/tag.ts +1 -1
- package/src/theme/components/typography.ts +1 -7
- package/src/theme/global/colors/global.ts +12 -3
- package/src/theme/global/colors/types.ts +5 -0
- package/src/theme/global/scale.ts +6 -2
- package/src/theme/global/typography.ts +23 -5
- package/types/components/Avatar/Avatar.d.ts +33 -0
- package/types/components/Avatar/AvatarStack/StyledAvatarStack.d.ts +17 -0
- package/types/components/Avatar/AvatarStack/index.d.ts +23 -0
- package/types/components/Avatar/AvatarStack/utils.d.ts +4 -0
- package/types/components/Avatar/StyledAvatar.d.ts +2 -12
- package/types/components/Avatar/index.d.ts +6 -25
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/Icon/utils.d.ts +1 -1
- package/types/components/Progress/ProgressBar.d.ts +1 -1
- package/types/components/Progress/ProgressCircle.d.ts +4 -2
- package/types/components/Progress/StyledProgressBar.d.ts +2 -0
- package/types/components/Progress/StyledProgressCircle.d.ts +2 -0
- package/types/components/Progress/constants.d.ts +15 -0
- package/types/components/Progress/index.d.ts +1 -1
- package/types/components/Progress/types.d.ts +1 -1
- package/types/components/RichTextEditor/__mocks__/heroEditorApp.d.ts +2 -0
- package/types/components/RichTextEditor/heroEditorApp.d.ts +2 -0
- package/types/components/Select/MultiSelect/index.d.ts +4 -1
- package/types/components/Typography/Text/StyledText.d.ts +1 -0
- package/types/components/Typography/Text/index.d.ts +7 -1
- package/types/index.d.ts +2 -2
- package/types/theme/components/avatar.d.ts +4 -2
- package/types/theme/components/progress.d.ts +30 -9
- package/types/theme/components/typography.d.ts +1 -5
- package/types/theme/global/colors/types.d.ts +5 -0
- package/types/theme/global/index.d.ts +5 -0
- package/types/theme/global/scale.d.ts +4 -1
- package/types/theme/global/typography.d.ts +9 -2
- package/src/components/Icon/HeroIcon/fonts/hero-icons.ttf +0 -0
|
@@ -125,6 +125,7 @@ Array [
|
|
|
125
125
|
themeFontSize="medium"
|
|
126
126
|
themeFontWeight="regular"
|
|
127
127
|
themeIntent="body"
|
|
128
|
+
themeTypeface="neutral"
|
|
128
129
|
themeVariant="default"
|
|
129
130
|
>
|
|
130
131
|
Choose collaborators
|
|
@@ -334,6 +335,7 @@ Array [
|
|
|
334
335
|
themeFontSize="large"
|
|
335
336
|
themeFontWeight="semi-bold"
|
|
336
337
|
themeIntent="body"
|
|
338
|
+
themeTypeface="neutral"
|
|
337
339
|
>
|
|
338
340
|
Choose collaborators
|
|
339
341
|
</Text>
|
|
@@ -517,6 +519,7 @@ Array [
|
|
|
517
519
|
themeFontSize="large"
|
|
518
520
|
themeFontWeight="regular"
|
|
519
521
|
themeIntent="body"
|
|
522
|
+
themeTypeface="neutral"
|
|
520
523
|
>
|
|
521
524
|
D
|
|
522
525
|
</Text>
|
|
@@ -627,6 +630,7 @@ Array [
|
|
|
627
630
|
themeFontSize="large"
|
|
628
631
|
themeFontWeight="semi-bold"
|
|
629
632
|
themeIntent="body"
|
|
633
|
+
themeTypeface="neutral"
|
|
630
634
|
>
|
|
631
635
|
Daniel
|
|
632
636
|
</Text>
|
|
@@ -646,6 +650,7 @@ Array [
|
|
|
646
650
|
themeFontSize="large"
|
|
647
651
|
themeFontWeight="regular"
|
|
648
652
|
themeIntent="subdued"
|
|
653
|
+
themeTypeface="neutral"
|
|
649
654
|
>
|
|
650
655
|
Senior Developer
|
|
651
656
|
</Text>
|
|
@@ -764,6 +769,7 @@ Array [
|
|
|
764
769
|
themeFontSize="large"
|
|
765
770
|
themeFontWeight="semi-bold"
|
|
766
771
|
themeIntent="body"
|
|
772
|
+
themeTypeface="neutral"
|
|
767
773
|
>
|
|
768
774
|
Daemon
|
|
769
775
|
</Text>
|
|
@@ -783,6 +789,7 @@ Array [
|
|
|
783
789
|
themeFontSize="large"
|
|
784
790
|
themeFontWeight="regular"
|
|
785
791
|
themeIntent="subdued"
|
|
792
|
+
themeTypeface="neutral"
|
|
786
793
|
>
|
|
787
794
|
Manager
|
|
788
795
|
</Text>
|
|
@@ -906,6 +913,7 @@ Array [
|
|
|
906
913
|
themeFontSize="large"
|
|
907
914
|
themeFontWeight="regular"
|
|
908
915
|
themeIntent="body"
|
|
916
|
+
themeTypeface="neutral"
|
|
909
917
|
>
|
|
910
918
|
J
|
|
911
919
|
</Text>
|
|
@@ -1016,6 +1024,7 @@ Array [
|
|
|
1016
1024
|
themeFontSize="large"
|
|
1017
1025
|
themeFontWeight="semi-bold"
|
|
1018
1026
|
themeIntent="body"
|
|
1027
|
+
themeTypeface="neutral"
|
|
1019
1028
|
>
|
|
1020
1029
|
Jennifer
|
|
1021
1030
|
</Text>
|
|
@@ -1035,6 +1044,7 @@ Array [
|
|
|
1035
1044
|
themeFontSize="large"
|
|
1036
1045
|
themeFontWeight="regular"
|
|
1037
1046
|
themeIntent="subdued"
|
|
1047
|
+
themeTypeface="neutral"
|
|
1038
1048
|
>
|
|
1039
1049
|
UX Designer
|
|
1040
1050
|
</Text>
|
|
@@ -1153,6 +1163,7 @@ Array [
|
|
|
1153
1163
|
themeFontSize="large"
|
|
1154
1164
|
themeFontWeight="semi-bold"
|
|
1155
1165
|
themeIntent="body"
|
|
1166
|
+
themeTypeface="neutral"
|
|
1156
1167
|
>
|
|
1157
1168
|
Josh
|
|
1158
1169
|
</Text>
|
|
@@ -1172,6 +1183,7 @@ Array [
|
|
|
1172
1183
|
themeFontSize="large"
|
|
1173
1184
|
themeFontWeight="regular"
|
|
1174
1185
|
themeIntent="subdued"
|
|
1186
|
+
themeTypeface="neutral"
|
|
1175
1187
|
>
|
|
1176
1188
|
Junior Developer
|
|
1177
1189
|
</Text>
|
|
@@ -1352,6 +1364,7 @@ Array [
|
|
|
1352
1364
|
themeFontSize="small"
|
|
1353
1365
|
themeFontWeight="regular"
|
|
1354
1366
|
themeIntent="body"
|
|
1367
|
+
themeTypeface="neutral"
|
|
1355
1368
|
themeVariant="filled"
|
|
1356
1369
|
>
|
|
1357
1370
|
Allow notifications
|
|
@@ -1579,6 +1592,7 @@ Array [
|
|
|
1579
1592
|
themeFontSize="large"
|
|
1580
1593
|
themeFontWeight="semi-bold"
|
|
1581
1594
|
themeIntent="body"
|
|
1595
|
+
themeTypeface="neutral"
|
|
1582
1596
|
>
|
|
1583
1597
|
Allow notifications
|
|
1584
1598
|
</Text>
|
|
@@ -1819,6 +1833,7 @@ Array [
|
|
|
1819
1833
|
themeFontSize="large"
|
|
1820
1834
|
themeFontWeight="regular"
|
|
1821
1835
|
themeIntent="body"
|
|
1836
|
+
themeTypeface="neutral"
|
|
1822
1837
|
>
|
|
1823
1838
|
Monday
|
|
1824
1839
|
</Text>
|
|
@@ -1940,6 +1955,7 @@ Array [
|
|
|
1940
1955
|
themeFontSize="large"
|
|
1941
1956
|
themeFontWeight="regular"
|
|
1942
1957
|
themeIntent="body"
|
|
1958
|
+
themeTypeface="neutral"
|
|
1943
1959
|
>
|
|
1944
1960
|
Tuesday
|
|
1945
1961
|
</Text>
|
|
@@ -2061,6 +2077,7 @@ Array [
|
|
|
2061
2077
|
themeFontSize="large"
|
|
2062
2078
|
themeFontWeight="regular"
|
|
2063
2079
|
themeIntent="body"
|
|
2080
|
+
themeTypeface="neutral"
|
|
2064
2081
|
>
|
|
2065
2082
|
Wednesday
|
|
2066
2083
|
</Text>
|
|
@@ -2182,6 +2199,7 @@ Array [
|
|
|
2182
2199
|
themeFontSize="large"
|
|
2183
2200
|
themeFontWeight="regular"
|
|
2184
2201
|
themeIntent="body"
|
|
2202
|
+
themeTypeface="neutral"
|
|
2185
2203
|
>
|
|
2186
2204
|
Thursday
|
|
2187
2205
|
</Text>
|
|
@@ -2303,6 +2321,7 @@ Array [
|
|
|
2303
2321
|
themeFontSize="large"
|
|
2304
2322
|
themeFontWeight="regular"
|
|
2305
2323
|
themeIntent="body"
|
|
2324
|
+
themeTypeface="neutral"
|
|
2306
2325
|
>
|
|
2307
2326
|
Friday
|
|
2308
2327
|
</Text>
|
|
@@ -2424,6 +2443,7 @@ Array [
|
|
|
2424
2443
|
themeFontSize="large"
|
|
2425
2444
|
themeFontWeight="regular"
|
|
2426
2445
|
themeIntent="body"
|
|
2446
|
+
themeTypeface="neutral"
|
|
2427
2447
|
>
|
|
2428
2448
|
Saturday
|
|
2429
2449
|
</Text>
|
|
@@ -2546,6 +2566,7 @@ Array [
|
|
|
2546
2566
|
themeFontSize="large"
|
|
2547
2567
|
themeFontWeight="regular"
|
|
2548
2568
|
themeIntent="body"
|
|
2569
|
+
themeTypeface="neutral"
|
|
2549
2570
|
>
|
|
2550
2571
|
Sunday
|
|
2551
2572
|
</Text>
|
|
@@ -2726,6 +2747,7 @@ Array [
|
|
|
2726
2747
|
themeFontSize="small"
|
|
2727
2748
|
themeFontWeight="regular"
|
|
2728
2749
|
themeIntent="body"
|
|
2750
|
+
themeTypeface="neutral"
|
|
2729
2751
|
themeVariant="filled"
|
|
2730
2752
|
>
|
|
2731
2753
|
Allow notifications
|
|
@@ -2950,6 +2972,7 @@ Array [
|
|
|
2950
2972
|
themeFontSize="large"
|
|
2951
2973
|
themeFontWeight="semi-bold"
|
|
2952
2974
|
themeIntent="body"
|
|
2975
|
+
themeTypeface="neutral"
|
|
2953
2976
|
>
|
|
2954
2977
|
Allow notifications
|
|
2955
2978
|
</Text>
|
|
@@ -3186,6 +3209,7 @@ Array [
|
|
|
3186
3209
|
themeFontSize="large"
|
|
3187
3210
|
themeFontWeight="regular"
|
|
3188
3211
|
themeIntent="body"
|
|
3212
|
+
themeTypeface="neutral"
|
|
3189
3213
|
>
|
|
3190
3214
|
Monday
|
|
3191
3215
|
</Text>
|
|
@@ -3305,6 +3329,7 @@ Array [
|
|
|
3305
3329
|
themeFontSize="large"
|
|
3306
3330
|
themeFontWeight="regular"
|
|
3307
3331
|
themeIntent="body"
|
|
3332
|
+
themeTypeface="neutral"
|
|
3308
3333
|
>
|
|
3309
3334
|
Tuesday
|
|
3310
3335
|
</Text>
|
|
@@ -3424,6 +3449,7 @@ Array [
|
|
|
3424
3449
|
themeFontSize="large"
|
|
3425
3450
|
themeFontWeight="regular"
|
|
3426
3451
|
themeIntent="body"
|
|
3452
|
+
themeTypeface="neutral"
|
|
3427
3453
|
>
|
|
3428
3454
|
Wednesday
|
|
3429
3455
|
</Text>
|
|
@@ -3543,6 +3569,7 @@ Array [
|
|
|
3543
3569
|
themeFontSize="large"
|
|
3544
3570
|
themeFontWeight="regular"
|
|
3545
3571
|
themeIntent="body"
|
|
3572
|
+
themeTypeface="neutral"
|
|
3546
3573
|
>
|
|
3547
3574
|
Thursday
|
|
3548
3575
|
</Text>
|
|
@@ -3662,6 +3689,7 @@ Array [
|
|
|
3662
3689
|
themeFontSize="large"
|
|
3663
3690
|
themeFontWeight="regular"
|
|
3664
3691
|
themeIntent="body"
|
|
3692
|
+
themeTypeface="neutral"
|
|
3665
3693
|
>
|
|
3666
3694
|
Friday
|
|
3667
3695
|
</Text>
|
|
@@ -3781,6 +3809,7 @@ Array [
|
|
|
3781
3809
|
themeFontSize="large"
|
|
3782
3810
|
themeFontWeight="regular"
|
|
3783
3811
|
themeIntent="body"
|
|
3812
|
+
themeTypeface="neutral"
|
|
3784
3813
|
>
|
|
3785
3814
|
Saturday
|
|
3786
3815
|
</Text>
|
|
@@ -3901,6 +3930,7 @@ Array [
|
|
|
3901
3930
|
themeFontSize="large"
|
|
3902
3931
|
themeFontWeight="regular"
|
|
3903
3932
|
themeIntent="body"
|
|
3933
|
+
themeTypeface="neutral"
|
|
3904
3934
|
>
|
|
3905
3935
|
Sunday
|
|
3906
3936
|
</Text>
|
|
@@ -4083,6 +4113,7 @@ Array [
|
|
|
4083
4113
|
themeFontSize="small"
|
|
4084
4114
|
themeFontWeight="regular"
|
|
4085
4115
|
themeIntent="body"
|
|
4116
|
+
themeTypeface="neutral"
|
|
4086
4117
|
themeVariant="readonly"
|
|
4087
4118
|
>
|
|
4088
4119
|
Allow notifications
|
|
@@ -4324,6 +4355,7 @@ Array [
|
|
|
4324
4355
|
themeFontSize="large"
|
|
4325
4356
|
themeFontWeight="semi-bold"
|
|
4326
4357
|
themeIntent="body"
|
|
4358
|
+
themeTypeface="neutral"
|
|
4327
4359
|
>
|
|
4328
4360
|
Allow notifications
|
|
4329
4361
|
</Text>
|
|
@@ -4564,6 +4596,7 @@ Array [
|
|
|
4564
4596
|
themeFontSize="large"
|
|
4565
4597
|
themeFontWeight="regular"
|
|
4566
4598
|
themeIntent="body"
|
|
4599
|
+
themeTypeface="neutral"
|
|
4567
4600
|
>
|
|
4568
4601
|
Monday
|
|
4569
4602
|
</Text>
|
|
@@ -4685,6 +4718,7 @@ Array [
|
|
|
4685
4718
|
themeFontSize="large"
|
|
4686
4719
|
themeFontWeight="regular"
|
|
4687
4720
|
themeIntent="body"
|
|
4721
|
+
themeTypeface="neutral"
|
|
4688
4722
|
>
|
|
4689
4723
|
Tuesday
|
|
4690
4724
|
</Text>
|
|
@@ -4806,6 +4840,7 @@ Array [
|
|
|
4806
4840
|
themeFontSize="large"
|
|
4807
4841
|
themeFontWeight="regular"
|
|
4808
4842
|
themeIntent="body"
|
|
4843
|
+
themeTypeface="neutral"
|
|
4809
4844
|
>
|
|
4810
4845
|
Wednesday
|
|
4811
4846
|
</Text>
|
|
@@ -4927,6 +4962,7 @@ Array [
|
|
|
4927
4962
|
themeFontSize="large"
|
|
4928
4963
|
themeFontWeight="regular"
|
|
4929
4964
|
themeIntent="body"
|
|
4965
|
+
themeTypeface="neutral"
|
|
4930
4966
|
>
|
|
4931
4967
|
Thursday
|
|
4932
4968
|
</Text>
|
|
@@ -5048,6 +5084,7 @@ Array [
|
|
|
5048
5084
|
themeFontSize="large"
|
|
5049
5085
|
themeFontWeight="regular"
|
|
5050
5086
|
themeIntent="body"
|
|
5087
|
+
themeTypeface="neutral"
|
|
5051
5088
|
>
|
|
5052
5089
|
Friday
|
|
5053
5090
|
</Text>
|
|
@@ -5169,6 +5206,7 @@ Array [
|
|
|
5169
5206
|
themeFontSize="large"
|
|
5170
5207
|
themeFontWeight="regular"
|
|
5171
5208
|
themeIntent="body"
|
|
5209
|
+
themeTypeface="neutral"
|
|
5172
5210
|
>
|
|
5173
5211
|
Saturday
|
|
5174
5212
|
</Text>
|
|
@@ -5291,6 +5329,7 @@ Array [
|
|
|
5291
5329
|
themeFontSize="large"
|
|
5292
5330
|
themeFontWeight="regular"
|
|
5293
5331
|
themeIntent="body"
|
|
5332
|
+
themeTypeface="neutral"
|
|
5294
5333
|
>
|
|
5295
5334
|
Sunday
|
|
5296
5335
|
</Text>
|
|
@@ -5471,6 +5510,7 @@ Array [
|
|
|
5471
5510
|
themeFontSize="small"
|
|
5472
5511
|
themeFontWeight="regular"
|
|
5473
5512
|
themeIntent="body"
|
|
5513
|
+
themeTypeface="neutral"
|
|
5474
5514
|
themeVariant="filled"
|
|
5475
5515
|
>
|
|
5476
5516
|
Allow notifications
|
|
@@ -5695,6 +5735,7 @@ Array [
|
|
|
5695
5735
|
themeFontSize="large"
|
|
5696
5736
|
themeFontWeight="semi-bold"
|
|
5697
5737
|
themeIntent="body"
|
|
5738
|
+
themeTypeface="neutral"
|
|
5698
5739
|
>
|
|
5699
5740
|
Allow notifications
|
|
5700
5741
|
</Text>
|
|
@@ -5870,6 +5911,7 @@ Array [
|
|
|
5870
5911
|
themeFontSize="large"
|
|
5871
5912
|
themeFontWeight="regular"
|
|
5872
5913
|
themeIntent="body"
|
|
5914
|
+
themeTypeface="neutral"
|
|
5873
5915
|
>
|
|
5874
5916
|
A
|
|
5875
5917
|
</Text>
|
|
@@ -5972,6 +6014,7 @@ Array [
|
|
|
5972
6014
|
themeFontSize="large"
|
|
5973
6015
|
themeFontWeight="regular"
|
|
5974
6016
|
themeIntent="body"
|
|
6017
|
+
themeTypeface="neutral"
|
|
5975
6018
|
>
|
|
5976
6019
|
A1
|
|
5977
6020
|
</Text>
|
|
@@ -6086,6 +6129,7 @@ Array [
|
|
|
6086
6129
|
themeFontSize="large"
|
|
6087
6130
|
themeFontWeight="regular"
|
|
6088
6131
|
themeIntent="body"
|
|
6132
|
+
themeTypeface="neutral"
|
|
6089
6133
|
>
|
|
6090
6134
|
B
|
|
6091
6135
|
</Text>
|
|
@@ -6188,6 +6232,7 @@ Array [
|
|
|
6188
6232
|
themeFontSize="large"
|
|
6189
6233
|
themeFontWeight="regular"
|
|
6190
6234
|
themeIntent="body"
|
|
6235
|
+
themeTypeface="neutral"
|
|
6191
6236
|
>
|
|
6192
6237
|
B1
|
|
6193
6238
|
</Text>
|
|
@@ -6297,6 +6342,7 @@ Array [
|
|
|
6297
6342
|
themeFontSize="large"
|
|
6298
6343
|
themeFontWeight="regular"
|
|
6299
6344
|
themeIntent="body"
|
|
6345
|
+
themeTypeface="neutral"
|
|
6300
6346
|
>
|
|
6301
6347
|
B2
|
|
6302
6348
|
</Text>
|
|
@@ -37,6 +37,7 @@ exports[`rendering renders correctly when intent is danger 1`] = `
|
|
|
37
37
|
themeFontSize="medium"
|
|
38
38
|
themeFontWeight="regular"
|
|
39
39
|
themeIntent="body"
|
|
40
|
+
themeTypeface="neutral"
|
|
40
41
|
>
|
|
41
42
|
Action title
|
|
42
43
|
</Text>
|
|
@@ -80,6 +81,7 @@ exports[`rendering renders correctly when intent is primary 1`] = `
|
|
|
80
81
|
themeFontSize="medium"
|
|
81
82
|
themeFontWeight="regular"
|
|
82
83
|
themeIntent="body"
|
|
84
|
+
themeTypeface="neutral"
|
|
83
85
|
>
|
|
84
86
|
Action title
|
|
85
87
|
</Text>
|
|
@@ -123,6 +125,7 @@ exports[`rendering renders correctly when intent is success 1`] = `
|
|
|
123
125
|
themeFontSize="medium"
|
|
124
126
|
themeFontWeight="regular"
|
|
125
127
|
themeIntent="body"
|
|
128
|
+
themeTypeface="neutral"
|
|
126
129
|
>
|
|
127
130
|
Action title
|
|
128
131
|
</Text>
|
|
@@ -87,6 +87,7 @@ exports[`Tabs.Scroll renders correctly 1`] = `
|
|
|
87
87
|
themeFontSize="medium"
|
|
88
88
|
themeFontWeight="regular"
|
|
89
89
|
themeIntent="body"
|
|
90
|
+
themeTypeface="neutral"
|
|
90
91
|
>
|
|
91
92
|
Move to Work
|
|
92
93
|
</Text>
|
|
@@ -283,6 +284,7 @@ exports[`Tabs.Scroll renders correctly 1`] = `
|
|
|
283
284
|
themeFontSize="medium"
|
|
284
285
|
themeFontWeight="semi-bold"
|
|
285
286
|
themeIntent="body"
|
|
287
|
+
themeTypeface="neutral"
|
|
286
288
|
>
|
|
287
289
|
Work
|
|
288
290
|
</Text>
|
|
@@ -87,6 +87,7 @@ exports[`Tabs renders correctly 1`] = `
|
|
|
87
87
|
themeFontSize="medium"
|
|
88
88
|
themeFontWeight="regular"
|
|
89
89
|
themeIntent="body"
|
|
90
|
+
themeTypeface="neutral"
|
|
90
91
|
>
|
|
91
92
|
Move to Work
|
|
92
93
|
</Text>
|
|
@@ -175,6 +176,7 @@ exports[`Tabs renders correctly 1`] = `
|
|
|
175
176
|
themeFontSize="medium"
|
|
176
177
|
themeFontWeight="semi-bold"
|
|
177
178
|
themeIntent="body"
|
|
179
|
+
themeTypeface="neutral"
|
|
178
180
|
>
|
|
179
181
|
Work
|
|
180
182
|
</Text>
|
|
@@ -221,6 +223,7 @@ exports[`Tabs renders correctly 1`] = `
|
|
|
221
223
|
themeFontSize="medium"
|
|
222
224
|
themeFontWeight="regular"
|
|
223
225
|
themeIntent="body"
|
|
226
|
+
themeTypeface="neutral"
|
|
224
227
|
>
|
|
225
228
|
Personal
|
|
226
229
|
</Text>
|
|
@@ -274,6 +277,7 @@ exports[`Tabs renders correctly 1`] = `
|
|
|
274
277
|
themeFontSize="medium"
|
|
275
278
|
themeFontWeight="regular"
|
|
276
279
|
themeIntent="body"
|
|
280
|
+
themeTypeface="neutral"
|
|
277
281
|
>
|
|
278
282
|
Home
|
|
279
283
|
</Text>
|
|
@@ -352,6 +356,7 @@ exports[`Tabs renders correctly 1`] = `
|
|
|
352
356
|
themeFontSize="medium"
|
|
353
357
|
themeFontWeight="regular"
|
|
354
358
|
themeIntent="body"
|
|
359
|
+
themeTypeface="neutral"
|
|
355
360
|
>
|
|
356
361
|
Wallet
|
|
357
362
|
</Text>
|
|
@@ -22,6 +22,7 @@ exports[`Label renders correctly with themeVariant default 1`] = `
|
|
|
22
22
|
themeFontSize="medium"
|
|
23
23
|
themeFontWeight="regular"
|
|
24
24
|
themeIntent="body"
|
|
25
|
+
themeTypeface="neutral"
|
|
25
26
|
themeVariant="default"
|
|
26
27
|
>
|
|
27
28
|
Label
|
|
@@ -50,6 +51,7 @@ exports[`Label renders correctly with themeVariant disabled 1`] = `
|
|
|
50
51
|
themeFontSize="medium"
|
|
51
52
|
themeFontWeight="regular"
|
|
52
53
|
themeIntent="body"
|
|
54
|
+
themeTypeface="neutral"
|
|
53
55
|
themeVariant="disabled"
|
|
54
56
|
>
|
|
55
57
|
Label
|
|
@@ -78,6 +80,7 @@ exports[`Label renders correctly with themeVariant error 1`] = `
|
|
|
78
80
|
themeFontSize="medium"
|
|
79
81
|
themeFontWeight="regular"
|
|
80
82
|
themeIntent="body"
|
|
83
|
+
themeTypeface="neutral"
|
|
81
84
|
themeVariant="error"
|
|
82
85
|
>
|
|
83
86
|
Label
|
|
@@ -106,6 +109,7 @@ exports[`Label renders correctly with themeVariant filled 1`] = `
|
|
|
106
109
|
themeFontSize="medium"
|
|
107
110
|
themeFontWeight="regular"
|
|
108
111
|
themeIntent="body"
|
|
112
|
+
themeTypeface="neutral"
|
|
109
113
|
themeVariant="filled"
|
|
110
114
|
>
|
|
111
115
|
Label
|
|
@@ -134,6 +138,7 @@ exports[`Label renders correctly with themeVariant readonly 1`] = `
|
|
|
134
138
|
themeFontSize="medium"
|
|
135
139
|
themeFontWeight="regular"
|
|
136
140
|
themeIntent="body"
|
|
141
|
+
themeTypeface="neutral"
|
|
137
142
|
themeVariant="readonly"
|
|
138
143
|
>
|
|
139
144
|
Label
|
|
@@ -185,6 +190,7 @@ exports[`LabelInsideTextInput renders correctly with themeVariant default 1`] =
|
|
|
185
190
|
themeFontSize="medium"
|
|
186
191
|
themeFontWeight="regular"
|
|
187
192
|
themeIntent="body"
|
|
193
|
+
themeTypeface="neutral"
|
|
188
194
|
themeVariant="default"
|
|
189
195
|
>
|
|
190
196
|
Label
|
|
@@ -217,6 +223,7 @@ exports[`LabelInsideTextInput renders correctly with themeVariant disabled 1`] =
|
|
|
217
223
|
themeFontSize="medium"
|
|
218
224
|
themeFontWeight="regular"
|
|
219
225
|
themeIntent="body"
|
|
226
|
+
themeTypeface="neutral"
|
|
220
227
|
themeVariant="disabled"
|
|
221
228
|
>
|
|
222
229
|
Label
|
|
@@ -249,6 +256,7 @@ exports[`LabelInsideTextInput renders correctly with themeVariant error 1`] = `
|
|
|
249
256
|
themeFontSize="medium"
|
|
250
257
|
themeFontWeight="regular"
|
|
251
258
|
themeIntent="body"
|
|
259
|
+
themeTypeface="neutral"
|
|
252
260
|
themeVariant="error"
|
|
253
261
|
>
|
|
254
262
|
Label
|
|
@@ -281,6 +289,7 @@ exports[`LabelInsideTextInput renders correctly with themeVariant filled 1`] = `
|
|
|
281
289
|
themeFontSize="medium"
|
|
282
290
|
themeFontWeight="regular"
|
|
283
291
|
themeIntent="body"
|
|
292
|
+
themeTypeface="neutral"
|
|
284
293
|
themeVariant="filled"
|
|
285
294
|
>
|
|
286
295
|
Label
|
|
@@ -313,6 +322,7 @@ exports[`LabelInsideTextInput renders correctly with themeVariant readonly 1`] =
|
|
|
313
322
|
themeFontSize="medium"
|
|
314
323
|
themeFontWeight="regular"
|
|
315
324
|
themeIntent="body"
|
|
325
|
+
themeTypeface="neutral"
|
|
316
326
|
themeVariant="readonly"
|
|
317
327
|
>
|
|
318
328
|
Label
|
|
@@ -341,6 +351,7 @@ exports[`StyledAsteriskLabel renders correctly with themeVariant default 1`] = `
|
|
|
341
351
|
themeFontSize="medium"
|
|
342
352
|
themeFontWeight="regular"
|
|
343
353
|
themeIntent="body"
|
|
354
|
+
themeTypeface="neutral"
|
|
344
355
|
themeVariant="default"
|
|
345
356
|
>
|
|
346
357
|
*
|
|
@@ -369,6 +380,7 @@ exports[`StyledAsteriskLabel renders correctly with themeVariant disabled 1`] =
|
|
|
369
380
|
themeFontSize="medium"
|
|
370
381
|
themeFontWeight="regular"
|
|
371
382
|
themeIntent="body"
|
|
383
|
+
themeTypeface="neutral"
|
|
372
384
|
themeVariant="disabled"
|
|
373
385
|
>
|
|
374
386
|
*
|
|
@@ -397,6 +409,7 @@ exports[`StyledAsteriskLabel renders correctly with themeVariant error 1`] = `
|
|
|
397
409
|
themeFontSize="medium"
|
|
398
410
|
themeFontWeight="regular"
|
|
399
411
|
themeIntent="body"
|
|
412
|
+
themeTypeface="neutral"
|
|
400
413
|
themeVariant="error"
|
|
401
414
|
>
|
|
402
415
|
*
|
|
@@ -425,6 +438,7 @@ exports[`StyledAsteriskLabel renders correctly with themeVariant filled 1`] = `
|
|
|
425
438
|
themeFontSize="medium"
|
|
426
439
|
themeFontWeight="regular"
|
|
427
440
|
themeIntent="body"
|
|
441
|
+
themeTypeface="neutral"
|
|
428
442
|
themeVariant="filled"
|
|
429
443
|
>
|
|
430
444
|
*
|
|
@@ -453,6 +467,7 @@ exports[`StyledAsteriskLabel renders correctly with themeVariant readonly 1`] =
|
|
|
453
467
|
themeFontSize="medium"
|
|
454
468
|
themeFontWeight="regular"
|
|
455
469
|
themeIntent="body"
|
|
470
|
+
themeTypeface="neutral"
|
|
456
471
|
themeVariant="readonly"
|
|
457
472
|
>
|
|
458
473
|
*
|
|
@@ -615,6 +630,7 @@ exports[`StyledErrorMessage renders correctly 1`] = `
|
|
|
615
630
|
themeFontSize="medium"
|
|
616
631
|
themeFontWeight="regular"
|
|
617
632
|
themeIntent="body"
|
|
633
|
+
themeTypeface="neutral"
|
|
618
634
|
>
|
|
619
635
|
must not exceed character limit
|
|
620
636
|
</Text>
|
|
@@ -665,6 +681,7 @@ exports[`StyledHelperText renders correctly 1`] = `
|
|
|
665
681
|
themeFontSize="medium"
|
|
666
682
|
themeFontWeight="regular"
|
|
667
683
|
themeIntent="body"
|
|
684
|
+
themeTypeface="neutral"
|
|
668
685
|
>
|
|
669
686
|
helper text
|
|
670
687
|
</Text>
|
|
@@ -698,6 +715,7 @@ exports[`StyledMaxLengthMessage renders correctly with themeVariant default 1`]
|
|
|
698
715
|
themeFontSize="medium"
|
|
699
716
|
themeFontWeight="regular"
|
|
700
717
|
themeIntent="body"
|
|
718
|
+
themeTypeface="neutral"
|
|
701
719
|
themeVariant="default"
|
|
702
720
|
>
|
|
703
721
|
100/255
|
|
@@ -732,6 +750,7 @@ exports[`StyledMaxLengthMessage renders correctly with themeVariant disabled 1`]
|
|
|
732
750
|
themeFontSize="medium"
|
|
733
751
|
themeFontWeight="regular"
|
|
734
752
|
themeIntent="body"
|
|
753
|
+
themeTypeface="neutral"
|
|
735
754
|
themeVariant="disabled"
|
|
736
755
|
>
|
|
737
756
|
100/255
|
|
@@ -766,6 +785,7 @@ exports[`StyledMaxLengthMessage renders correctly with themeVariant error 1`] =
|
|
|
766
785
|
themeFontSize="medium"
|
|
767
786
|
themeFontWeight="regular"
|
|
768
787
|
themeIntent="body"
|
|
788
|
+
themeTypeface="neutral"
|
|
769
789
|
themeVariant="error"
|
|
770
790
|
>
|
|
771
791
|
100/255
|
|
@@ -800,6 +820,7 @@ exports[`StyledMaxLengthMessage renders correctly with themeVariant filled 1`] =
|
|
|
800
820
|
themeFontSize="medium"
|
|
801
821
|
themeFontWeight="regular"
|
|
802
822
|
themeIntent="body"
|
|
823
|
+
themeTypeface="neutral"
|
|
803
824
|
themeVariant="filled"
|
|
804
825
|
>
|
|
805
826
|
100/255
|
|
@@ -834,6 +855,7 @@ exports[`StyledMaxLengthMessage renders correctly with themeVariant readonly 1`]
|
|
|
834
855
|
themeFontSize="medium"
|
|
835
856
|
themeFontWeight="regular"
|
|
836
857
|
themeIntent="body"
|
|
858
|
+
themeTypeface="neutral"
|
|
837
859
|
themeVariant="readonly"
|
|
838
860
|
>
|
|
839
861
|
100/255
|