@hero-design/rn 9.0.0-0 → 9.0.0-alpha.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/CHANGELOG.md +287 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +17491 -14687
- package/jest-ci.config.js +17 -0
- package/jest-setup.ts +2 -0
- package/jest.config.js +1 -3
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +17376 -14565
- package/package.json +50 -40
- package/rollup.config.js +1 -0
- package/sonar-project.properties +11 -0
- package/src/components/Accordion/AccordionItem.tsx +1 -3
- package/src/components/Accordion/__tests__/AccordionItem.spec.tsx +5 -5
- package/src/components/Accordion/__tests__/__snapshots__/AccordionItem.spec.tsx.snap +580 -408
- package/src/components/Accordion/__tests__/__snapshots__/StyledAccordion.spec.tsx.snap +76 -20
- package/src/components/Accordion/__tests__/__snapshots__/index.spec.tsx.snap +818 -644
- package/src/components/Accordion/__tests__/index.spec.tsx +2 -2
- package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +912 -644
- package/src/components/Alert/__tests__/index.spec.tsx +44 -2
- package/src/components/Alert/index.tsx +30 -4
- package/src/components/AnimatedScroller/AnimatedFAB.tsx +155 -0
- package/src/components/AnimatedScroller/AnimatedScrollable.tsx +70 -0
- package/src/components/AnimatedScroller/FlatListWithFAB.tsx +23 -0
- package/src/components/AnimatedScroller/ScrollViewWithFAB.tsx +21 -0
- package/src/components/AnimatedScroller/SectionListWithFAB.tsx +26 -0
- package/src/components/AnimatedScroller/__tests__/ScrollablesWithFAB.spec.tsx +193 -0
- package/src/components/AnimatedScroller/__tests__/__snapshots__/ScrollablesWithFAB.spec.tsx.snap +3462 -0
- package/src/components/AnimatedScroller/index.tsx +5 -0
- package/src/components/Attachment/__tests__/__snapshots__/index.spec.tsx.snap +178 -117
- package/src/components/Attachment/index.tsx +3 -1
- package/src/components/Avatar/AvatarStack/StyledAvatarStack.tsx +63 -9
- package/src/components/Avatar/AvatarStack/__tests__/StyledAvatarStack.spec.tsx +71 -9
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/StyledAvatarStack.spec.tsx.snap +410 -73
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/index.spec.tsx.snap +2904 -591
- package/src/components/Avatar/AvatarStack/__tests__/index.spec.tsx +140 -6
- package/src/components/Avatar/AvatarStack/index.tsx +94 -9
- package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +163 -62
- package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +288 -168
- package/src/components/Badge/StyledBadge.tsx +1 -4
- package/src/components/Badge/__tests__/Status.spec.tsx +1 -1
- package/src/components/Badge/__tests__/__snapshots__/Badge.spec.tsx.snap +397 -259
- package/src/components/Badge/__tests__/__snapshots__/Status.spec.tsx.snap +123 -68
- package/src/components/BottomNavigation/StyledBottomNavigation.tsx +1 -1
- package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +332 -276
- package/src/components/BottomNavigation/index.tsx +4 -1
- package/src/components/BottomSheet/Header.tsx +1 -3
- package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +330 -197
- package/src/components/Box/__tests__/__snapshots__/index.spec.tsx.snap +1042 -454
- package/src/components/Button/Button.tsx +60 -25
- package/src/components/Button/LoadingIndicator/StyledLoadingIndicator.tsx +6 -9
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +400 -140
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +1090 -880
- package/src/components/Button/StyledButton.tsx +56 -59
- package/src/components/Button/UtilityButton/StyledUtilityButton.tsx +2 -4
- package/src/components/Button/UtilityButton/__tests__/__snapshots__/index.spec.tsx.snap +206 -122
- package/src/components/Button/__tests__/Button.spec.tsx +18 -0
- package/src/components/Button/__tests__/StyledButton.spec.tsx +12 -6
- package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +1878 -1196
- package/src/components/Button/__tests__/__snapshots__/IconButton.spec.tsx.snap +74 -29
- package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +1734 -778
- package/src/components/Calendar/CalendarRowItem.tsx +5 -2
- package/src/components/Calendar/StyledCalendar.tsx +2 -2
- package/src/components/Calendar/__tests__/__snapshots__/CalendarRowItem.spec.tsx.snap +555 -335
- package/src/components/Calendar/__tests__/index.spec.tsx +76 -0
- package/src/components/Calendar/index.tsx +170 -59
- package/src/components/Card/DataCard/__tests__/__snapshots__/StyledDataCard.spec.tsx.snap +265 -69
- package/src/components/Card/DataCard/__tests__/__snapshots__/index.spec.tsx.snap +215 -75
- package/src/components/Card/__tests__/__snapshots__/StyledCard.spec.tsx.snap +36 -8
- package/src/components/Card/__tests__/__snapshots__/index.spec.tsx.snap +304 -142
- package/src/components/Card/__tests__/index.spec.tsx +1 -1
- package/src/components/Carousel/CardCarousel.tsx +23 -25
- package/src/components/Carousel/CarouselItem.tsx +39 -23
- package/src/components/Carousel/StyledCardCarousel.tsx +1 -16
- package/src/components/Carousel/StyledCarousel.tsx +8 -12
- package/src/components/Carousel/__tests__/CardCarousel.spec.tsx +18 -18
- package/src/components/Carousel/__tests__/__snapshots__/CardCarousel.spec.tsx.snap +370 -366
- package/src/components/Carousel/__tests__/__snapshots__/StyledCardCarousel.spec.tsx.snap +199 -72
- package/src/components/Carousel/__tests__/__snapshots__/StyledCarousel.spec.tsx.snap +41 -13
- package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +1621 -1861
- package/src/components/Carousel/__tests__/index.spec.tsx +107 -7
- package/src/components/Carousel/index.tsx +63 -35
- package/src/components/Carousel/types.ts +4 -4
- package/src/components/Checkbox/StyledCheckbox.tsx +24 -30
- package/src/components/Checkbox/__tests__/StyledCheckbox.spec.tsx +25 -16
- package/src/components/Checkbox/__tests__/__snapshots__/StyledCheckbox.spec.tsx.snap +432 -77
- package/src/components/Checkbox/__tests__/__snapshots__/index.spec.tsx.snap +598 -345
- package/src/components/Checkbox/__tests__/index.spec.tsx +24 -9
- package/src/components/Checkbox/index.tsx +60 -25
- package/src/components/Chip/StyledChip.tsx +121 -0
- package/src/components/Chip/__tests__/__snapshots__/index.spec.tsx.snap +1483 -0
- package/src/components/Chip/__tests__/index.spec.tsx +136 -0
- package/src/components/Chip/index.tsx +82 -0
- package/src/components/Collapse/__tests__/__snapshots__/StyledCollapse.spec.tsx.snap +74 -18
- package/src/components/Collapse/__tests__/__snapshots__/index.spec.tsx.snap +100 -44
- package/src/components/Collapse/index.tsx +1 -1
- package/src/components/ContentNavigator/StyledContentNavigator.tsx +1 -6
- package/src/components/ContentNavigator/__tests__/StyledContentNavigator.spec.tsx +1 -9
- package/src/components/ContentNavigator/__tests__/__snapshots__/StyledContentNavigator.spec.tsx.snap +37 -38
- package/src/components/ContentNavigator/__tests__/__snapshots__/index.spec.tsx.snap +449 -186
- package/src/components/ContentNavigator/__tests__/index.spec.tsx +16 -0
- package/src/components/ContentNavigator/index.tsx +30 -9
- package/src/components/DatePicker/DatePickerAndroid.tsx +8 -3
- package/src/components/DatePicker/DatePickerCalendar.tsx +44 -15
- package/src/components/DatePicker/DatePickerIOS.tsx +12 -23
- package/src/components/DatePicker/__tests__/DatePicker.spec.tsx +92 -0
- package/src/components/DatePicker/__tests__/DatePickerCalendar.spec.tsx +42 -0
- package/src/components/DatePicker/__tests__/DatePickerIOS.spec.tsx +6 -5
- package/src/components/DatePicker/__tests__/__snapshots__/DatePicker.spec.tsx.snap +676 -508
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +230 -174
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerCalendar.spec.tsx.snap +222 -166
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +518 -423
- package/src/components/DatePicker/types.ts +8 -0
- package/src/components/DatePicker/useCalculateDate.tsx +34 -0
- package/src/components/Divider/__tests__/__snapshots__/StyledDivider.spec.tsx.snap +464 -128
- package/src/components/Drawer/DragableDrawer/__tests__/__snapshots__/index.spec.tsx.snap +99 -71
- package/src/components/Drawer/DragableDrawer/index.tsx +2 -2
- package/src/components/Drawer/__tests__/__snapshots__/index.spec.tsx.snap +327 -192
- package/src/components/Drawer/index.tsx +3 -3
- package/src/components/Empty/StyledEmpty.tsx +2 -6
- package/src/components/Empty/__tests__/__snapshots__/index.spec.tsx.snap +176 -134
- package/src/components/Empty/index.tsx +4 -2
- package/src/components/Error/StyledError.tsx +4 -9
- package/src/components/Error/__tests__/__snapshots__/index.spec.tsx.snap +431 -335
- package/src/components/Error/__tests__/index.spec.tsx +9 -6
- package/src/components/Error/index.tsx +6 -2
- package/src/components/FAB/ActionGroup/ActionItem.tsx +46 -15
- package/src/components/FAB/ActionGroup/StyledActionGroup.tsx +16 -18
- package/src/components/FAB/ActionGroup/StyledActionItem.tsx +1 -5
- package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +980 -1217
- package/src/components/FAB/ActionGroup/__tests__/index.spec.tsx +32 -22
- package/src/components/FAB/ActionGroup/index.tsx +135 -94
- package/src/components/FAB/AnimatedFABIcon.tsx +3 -5
- package/src/components/FAB/FAB.tsx +170 -28
- package/src/components/FAB/StyledFAB.tsx +26 -23
- package/src/components/FAB/__tests__/StyledFAB.spec.tsx +12 -2
- package/src/components/FAB/__tests__/__snapshots__/AnimatedFABIcon.spec.tsx.snap +102 -46
- package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +204 -52
- package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +323 -180
- package/src/components/FAB/__tests__/index.spec.tsx +22 -2
- package/src/components/HeroDesignProvider/__tests__/__snapshots__/index.spec.tsx.snap +80 -0
- package/src/components/HeroDesignProvider/__tests__/index.spec.tsx +78 -0
- package/src/components/HeroDesignProvider/index.tsx +14 -0
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +36 -0
- package/src/components/Icon/__tests__/__snapshots__/index.spec.tsx.snap +162 -50
- package/src/components/Image/__tests__/__snapshots__/index.spec.tsx.snap +172 -60
- package/src/components/List/BasicListItem.tsx +2 -6
- package/src/components/List/ListItem.tsx +3 -5
- package/src/components/List/StyledListItem.tsx +8 -7
- package/src/components/List/__tests__/ListItem.spec.tsx +4 -4
- package/src/components/List/__tests__/StyledBasicListItem.spec.tsx +3 -1
- package/src/components/List/__tests__/StyledListItem.spec.tsx +3 -1
- package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +264 -198
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +798 -635
- package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +280 -140
- package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +485 -203
- package/src/components/Modal/__tests__/__snapshots__/index.spec.tsx.snap +169 -0
- package/src/components/Modal/__tests__/index.spec.tsx +99 -0
- package/src/components/Modal/index.tsx +217 -0
- package/src/components/PageControl/__tests__/__snapshots__/index.spec.tsx.snap +84 -41
- package/src/components/PageControl/index.tsx +7 -4
- package/src/components/PinInput/PinCell.tsx +3 -1
- package/src/components/PinInput/StyledPinInput.tsx +2 -7
- package/src/components/PinInput/__tests__/StyledPinInput.spec.tsx +9 -4
- package/src/components/PinInput/__tests__/__snapshots__/PinCell.spec.tsx.snap +298 -178
- package/src/components/PinInput/__tests__/__snapshots__/StyledPinInput.spec.tsx.snap +15 -48
- package/src/components/PinInput/__tests__/__snapshots__/index.spec.tsx.snap +873 -777
- package/src/components/PinInput/index.tsx +3 -1
- package/src/components/Portal/PortalHost.tsx +27 -0
- package/src/components/Portal/PortalProvider.tsx +35 -0
- package/src/components/Portal/__tests__/PortalHost.spec.tsx +48 -0
- package/src/components/Portal/__tests__/PortalProvider.spec.tsx +24 -0
- package/src/components/Portal/__tests__/__snapshots__/index.spec.tsx.snap +57 -0
- package/src/components/Portal/__tests__/index.spec.tsx +48 -0
- package/src/components/Portal/__tests__/reducer.spec.tsx +110 -0
- package/src/components/Portal/constants.ts +10 -0
- package/src/components/Portal/contexts.ts +14 -0
- package/src/components/Portal/index.tsx +66 -0
- package/src/components/Portal/reducer.ts +106 -0
- package/src/components/Portal/types.tsx +31 -0
- package/src/components/Portal/usePortal.ts +50 -0
- package/src/components/Portal/usePortalState.ts +11 -0
- package/src/components/Progress/ProgressCircle.tsx +1 -3
- package/src/components/Progress/StyledProgressBar.tsx +1 -0
- package/src/components/Progress/__tests__/__snapshots__/index.spec.js.snap +810 -671
- package/src/components/Radio/Radio.tsx +25 -6
- package/src/components/Radio/RadioGroup.tsx +13 -4
- package/src/components/Radio/StyledRadio.tsx +20 -3
- package/src/components/Radio/__tests__/Radio.spec.tsx +46 -13
- package/src/components/Radio/__tests__/RadioGroup.spec.tsx +40 -7
- package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +565 -126
- package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +1079 -196
- package/src/components/Radio/types.ts +9 -1
- package/src/components/Rate/StyledRate.tsx +16 -0
- package/src/components/Rate/__tests__/__snapshots__/index.spec.tsx.snap +1006 -0
- package/src/components/Rate/__tests__/index.spec.tsx +47 -0
- package/src/components/Rate/index.tsx +90 -0
- package/src/components/RefreshControl/__tests__/__snapshots__/index.spec.tsx.snap +131 -47
- package/src/components/RichTextEditor/RichTextEditor.tsx +94 -47
- package/src/components/RichTextEditor/__tests__/EditorToolbar.spec.tsx +5 -2
- package/src/components/RichTextEditor/__tests__/RichTextEditor.spec.tsx +3 -3
- package/src/components/RichTextEditor/__tests__/__snapshots__/EditorToolbar.spec.tsx.snap +420 -273
- package/src/components/RichTextEditor/__tests__/__snapshots__/MentionList.spec.tsx.snap +66 -37
- package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +451 -355
- package/src/components/SectionHeading/StyledHeading.tsx +21 -10
- package/src/components/SectionHeading/__tests__/StyledHeading.spec.tsx +6 -2
- package/src/components/SectionHeading/__tests__/__snapshots__/StyledHeading.spec.tsx.snap +165 -30
- package/src/components/SectionHeading/__tests__/__snapshots__/index.spec.tsx.snap +469 -169
- package/src/components/SectionHeading/__tests__/index.spec.tsx +15 -1
- package/src/components/SectionHeading/index.tsx +51 -32
- package/src/components/Select/MultiSelect/Option.tsx +3 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +100 -64
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +2557 -2320
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +2739 -911
- package/src/components/Select/MultiSelect/__tests__/index.spec.tsx +39 -22
- package/src/components/Select/MultiSelect/index.tsx +1 -1
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +78 -43
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +2460 -2228
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +1356 -843
- package/src/components/Select/SingleSelect/__tests__/index.spec.tsx +5 -9
- package/src/components/Skeleton/__tests__/__snapshots__/index.spec.tsx.snap +525 -329
- package/src/components/Skeleton/index.tsx +3 -7
- package/src/components/Slider/__tests__/__snapshots__/index.spec.tsx.snap +117 -33
- package/src/components/Spinner/__tests__/__snapshots__/AnimatedSpinner.spec.tsx.snap +114 -86
- package/src/components/Spinner/__tests__/__snapshots__/StyledSpinner.spec.tsx.snap +1336 -664
- package/src/components/Spinner/__tests__/__snapshots__/index.spec.tsx.snap +129 -101
- package/src/components/Success/StyledSuccess.tsx +4 -7
- package/src/components/Success/__tests__/__snapshots__/index.spec.tsx.snap +560 -311
- package/src/components/Success/__tests__/index.spec.tsx +37 -9
- package/src/components/Success/index.tsx +7 -4
- package/src/components/Swipeable/__tests__/SwipeableAction.spec.tsx +2 -2
- package/src/components/Swipeable/__tests__/__snapshots__/SwipeableAction.spec.tsx.snap +219 -87
- package/src/components/Swipeable/__tests__/__snapshots__/index.spec.tsx.snap +158 -24
- package/src/components/Swipeable/__tests__/index.spec.tsx +12 -5
- package/src/components/Swipeable/index.tsx +42 -15
- package/src/components/Switch/SelectorSwitch/Option.tsx +1 -1
- package/src/components/Switch/SelectorSwitch/StyledSelectorSwitch.tsx +4 -7
- package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/Option.spec.tsx.snap +242 -131
- package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/index.spec.tsx.snap +152 -116
- package/src/components/Switch/SelectorSwitch/index.tsx +7 -15
- package/src/components/Switch/__tests__/__snapshots__/StyledSwitch.spec.tsx.snap +203 -63
- package/src/components/Switch/__tests__/__snapshots__/index.spec.tsx.snap +134 -70
- package/src/components/Tabs/SceneView.tsx +11 -6
- package/src/components/Tabs/ScrollableTabs.tsx +26 -8
- package/src/components/Tabs/{ScrollableTabsHeader.tsx → ScrollableTabsHeader/ScrollableTabsHeader.tsx} +74 -45
- package/src/components/Tabs/ScrollableTabsHeader/hooks/useInitHighlightedAnimation.ts +45 -0
- package/src/components/Tabs/ScrollableTabsHeader/hooks/useInitUnderlinedAnimation.ts +91 -0
- package/src/components/Tabs/StyledScrollableTabs.tsx +14 -9
- package/src/components/Tabs/StyledTabs.tsx +1 -9
- package/src/components/Tabs/__tests__/SceneView.spec.tsx +11 -11
- package/src/components/Tabs/__tests__/ScrollableTabsHeader.spec.tsx +7 -3
- package/src/components/Tabs/__tests__/__snapshots__/SceneView.spec.tsx.snap +219 -110
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +2348 -2072
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabsHeader.spec.tsx.snap +1134 -444
- package/src/components/Tabs/__tests__/__snapshots__/TabWithBadge.spec.tsx.snap +124 -73
- package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +1694 -1487
- package/src/components/Tabs/__tests__/useInitHighlightedAnimation.spec.tsx +56 -0
- package/src/components/Tabs/__tests__/useInitUnderlinedAnimation.spec.tsx +65 -0
- package/src/components/Tabs/index.tsx +9 -6
- package/src/components/Tag/StyledTag.tsx +7 -39
- package/src/components/Tag/__tests__/Tag.spec.tsx +18 -14
- package/src/components/Tag/__tests__/__snapshots__/Tag.spec.tsx.snap +572 -377
- package/src/components/Tag/index.tsx +8 -2
- package/src/components/TextInput/StyledTextInput.tsx +18 -49
- package/src/components/TextInput/__tests__/StyledTextInput.spec.tsx +2 -46
- package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +1001 -803
- package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +3774 -3075
- package/src/components/TextInput/__tests__/index.spec.tsx +151 -9
- package/src/components/TextInput/index.tsx +253 -105
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +452 -347
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +741 -597
- package/src/components/Toast/StyledToast.tsx +1 -1
- package/src/components/Toast/Toast.tsx +6 -5
- package/src/components/Toast/ToastContainer.tsx +2 -0
- package/src/components/Toast/ToastContext.ts +20 -2
- package/src/components/Toast/ToastProvider.tsx +7 -4
- package/src/components/Toast/__tests__/Toast.spec.tsx +5 -1
- package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +916 -631
- package/src/components/Toast/__tests__/__snapshots__/ToastContainer.spec.tsx.snap +180 -68
- package/src/components/Toolbar/StyledToolbar.tsx +1 -1
- package/src/components/Toolbar/ToolbarItem.tsx +4 -6
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarGroup.spec.tsx.snap +606 -456
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +714 -401
- package/src/components/Typography/Body/StyledBody.tsx +46 -0
- package/src/components/Typography/Body/__tests__/StyledBody.tsx +56 -0
- package/src/components/Typography/Body/__tests__/__snapshots__/StyledBody.tsx.snap +801 -0
- package/src/components/Typography/Body/__tests__/__snapshots__/index.spec.tsx.snap +970 -0
- package/src/components/Typography/Body/__tests__/index.spec.tsx +54 -0
- package/src/components/Typography/Body/index.tsx +71 -0
- package/src/components/Typography/Caption/StyledCaption.tsx +17 -0
- package/src/components/Typography/Caption/__tests__/StyledCaption.spec.tsx +39 -0
- package/src/components/Typography/Caption/__tests__/__snapshots__/StyledCaption.spec.tsx.snap +491 -0
- package/src/components/Typography/Caption/__tests__/__snapshots__/index.spec.tsx.snap +651 -0
- package/src/components/Typography/Caption/__tests__/index.spec.tsx +46 -0
- package/src/components/Typography/Caption/index.tsx +61 -0
- package/src/components/Typography/Label/StyledLabel.tsx +14 -0
- package/src/components/Typography/Label/__tests__/StyledLabel.tsx +23 -0
- package/src/components/Typography/Label/__tests__/__snapshots__/StyledLabel.tsx.snap +377 -0
- package/src/components/Typography/Label/__tests__/__snapshots__/index.spec.tsx.snap +529 -0
- package/src/components/Typography/Label/__tests__/index.spec.tsx +32 -0
- package/src/components/Typography/Label/index.tsx +55 -0
- package/src/components/Typography/Text/__tests__/__snapshots__/StyledText.spec.tsx.snap +900 -340
- package/src/components/Typography/Text/index.tsx +19 -12
- package/src/components/Typography/Title/StyledTitle.tsx +20 -0
- package/src/components/Typography/Title/__tests__/StyledTitle.tsx +53 -0
- package/src/components/Typography/Title/__tests__/__snapshots__/StyledTitle.tsx.snap +1001 -0
- package/src/components/Typography/Title/__tests__/__snapshots__/index.spec.tsx.snap +1174 -0
- package/src/components/Typography/Title/__tests__/index.spec.tsx +55 -0
- package/src/components/Typography/Title/index.tsx +70 -0
- package/src/components/Typography/index.tsx +15 -0
- package/src/components/Typography/types.ts +18 -0
- package/src/index.ts +16 -0
- package/src/testHelpers/renderWithTheme.tsx +2 -2
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +539 -345
- package/src/theme/components/badge.ts +15 -0
- package/src/theme/components/button.ts +17 -1
- package/src/theme/components/calendar.ts +2 -0
- package/src/theme/components/cardCarousel.ts +1 -8
- package/src/theme/components/carousel.ts +15 -1
- package/src/theme/components/checkbox.ts +5 -2
- package/src/theme/components/chip.ts +47 -0
- package/src/theme/components/empty.ts +12 -0
- package/src/theme/components/error.ts +16 -0
- package/src/theme/components/fab.ts +17 -11
- package/src/theme/components/list.ts +9 -5
- package/src/theme/components/pinInput.ts +15 -0
- package/src/theme/components/progress.ts +2 -2
- package/src/theme/components/radio.ts +8 -2
- package/src/theme/components/rate.ts +16 -0
- package/src/theme/components/sectionHeading.ts +2 -1
- package/src/theme/components/success.ts +12 -0
- package/src/theme/components/swipeable.ts +10 -1
- package/src/theme/components/switch.ts +4 -4
- package/src/theme/components/tabs.ts +3 -2
- package/src/theme/components/tag.ts +18 -2
- package/src/theme/components/textInput.ts +4 -4
- package/src/theme/components/toast.ts +5 -5
- package/src/theme/components/typography.ts +132 -1
- package/src/theme/getTheme.ts +24 -18
- package/src/theme/global/colors/__tests__/__snapshots__/eBens.spec.ts.snap +8 -8
- package/src/theme/global/colors/__tests__/__snapshots__/global.spec.ts.snap +6 -6
- package/src/theme/global/colors/__tests__/__snapshots__/globalDark.spec.ts.snap +1 -1
- package/src/theme/global/colors/__tests__/__snapshots__/jobs.spec.ts.snap +7 -7
- package/src/theme/global/colors/__tests__/__snapshots__/swag.spec.ts.snap +7 -7
- package/src/theme/global/colors/__tests__/__snapshots__/swagDark.spec.ts.snap +1 -1
- package/src/theme/global/colors/__tests__/__snapshots__/wallet.spec.ts.snap +8 -8
- package/src/theme/global/colors/__tests__/__snapshots__/work.spec.ts.snap +10 -10
- package/src/theme/global/colors/eBens.ts +2 -2
- package/src/theme/global/colors/global.ts +5 -5
- package/src/theme/global/colors/jobs.ts +1 -1
- package/src/theme/global/colors/swag.ts +1 -1
- package/src/theme/global/colors/wallet.ts +2 -2
- package/src/theme/global/colors/work.ts +4 -4
- package/src/theme/global/index.ts +3 -0
- package/src/theme/global/shadows.ts +19 -0
- package/src/theme/global/space.ts +2 -0
- package/src/types.ts +4 -0
- package/src/utils/helpers.ts +4 -1
- package/testUtils/setup.tsx +32 -2
- package/tsconfig.json +14 -3
- package/types/components/Accordion/AccordionItem.d.ts +2 -1
- package/types/components/Accordion/StyledAccordion.d.ts +5 -6
- package/types/components/Accordion/index.d.ts +1 -1
- package/types/components/Alert/StyledAlert.d.ts +5 -6
- package/types/components/Alert/index.d.ts +18 -2
- package/types/components/AnimatedScroller/AnimatedFAB.d.ts +12 -0
- package/types/components/AnimatedScroller/AnimatedScrollable.d.ts +16 -0
- package/types/components/AnimatedScroller/FlatListWithFAB.d.ts +12 -0
- package/types/components/AnimatedScroller/ScrollViewWithFAB.d.ts +12 -0
- package/types/components/AnimatedScroller/SectionListWithFAB.d.ts +12 -0
- package/types/components/AnimatedScroller/index.d.ts +4 -0
- package/types/components/Attachment/StyledAttachment.d.ts +4 -5
- package/types/components/Attachment/index.d.ts +2 -1
- package/types/components/Avatar/Avatar.d.ts +2 -1
- package/types/components/Avatar/AvatarStack/StyledAvatarStack.d.ts +15 -3
- package/types/components/Avatar/AvatarStack/index.d.ts +14 -2
- package/types/components/Avatar/AvatarStack/utils.d.ts +0 -0
- package/types/components/Avatar/StyledAvatar.d.ts +4 -5
- package/types/components/Avatar/index.d.ts +2 -2
- package/types/components/Badge/Status.d.ts +0 -0
- package/types/components/Badge/StyledBadge.d.ts +4 -9
- package/types/components/Badge/index.d.ts +0 -0
- package/types/components/BottomNavigation/StyledBottomNavigation.d.ts +8 -9
- package/types/components/BottomNavigation/index.d.ts +0 -0
- package/types/components/BottomSheet/BottomSheetContext.d.ts +0 -1
- package/types/components/BottomSheet/Footer.d.ts +2 -1
- package/types/components/BottomSheet/Header.d.ts +2 -1
- package/types/components/BottomSheet/ScrollView.d.ts +0 -0
- package/types/components/BottomSheet/StyledBottomSheet.d.ts +8 -13
- package/types/components/BottomSheet/index.d.ts +0 -0
- package/types/components/Box/StyledBox.d.ts +1 -2
- package/types/components/Box/config.d.ts +0 -0
- package/types/components/Box/index.d.ts +2 -1
- package/types/components/Box/types.d.ts +0 -1
- package/types/components/Button/Button.d.ts +3 -3
- package/types/components/Button/IconButton.d.ts +2 -1
- package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +5 -6
- package/types/components/Button/LoadingIndicator/index.d.ts +2 -1
- package/types/components/Button/StyledButton.d.ts +16 -10
- package/types/components/Button/UtilityButton/StyledUtilityButton.d.ts +4 -5
- package/types/components/Button/UtilityButton/index.d.ts +2 -1
- package/types/components/Button/index.d.ts +0 -0
- package/types/components/Calendar/CalendarRowItem.d.ts +2 -1
- package/types/components/Calendar/StyledCalendar.d.ts +8 -9
- package/types/components/Calendar/helpers.d.ts +0 -0
- package/types/components/Calendar/index.d.ts +15 -1
- package/types/components/Card/DataCard/StyledDataCard.d.ts +2 -3
- package/types/components/Card/DataCard/index.d.ts +0 -0
- package/types/components/Card/StyledCard.d.ts +1 -2
- package/types/components/Card/index.d.ts +0 -0
- package/types/components/Carousel/CardCarousel.d.ts +2 -1
- package/types/components/Carousel/CarouselItem.d.ts +2 -1
- package/types/components/Carousel/StyledCardCarousel.d.ts +5 -12
- package/types/components/Carousel/StyledCarousel.d.ts +13 -14
- package/types/components/Carousel/contants.d.ts +0 -0
- package/types/components/Carousel/index.d.ts +2 -2
- package/types/components/Carousel/types.d.ts +4 -4
- package/types/components/Checkbox/StyledCheckbox.d.ts +12 -10
- package/types/components/Checkbox/index.d.ts +12 -1
- package/types/components/Chip/StyledChip.d.ts +30 -0
- package/types/components/Chip/index.d.ts +27 -0
- package/types/components/Collapse/StyledCollapse.d.ts +3 -6
- package/types/components/Collapse/index.d.ts +2 -1
- package/types/components/ContentNavigator/StyledContentNavigator.d.ts +2 -7
- package/types/components/ContentNavigator/index.d.ts +2 -1
- package/types/components/DatePicker/DatePickerAndroid.d.ts +2 -1
- package/types/components/DatePicker/DatePickerCalendar.d.ts +2 -1
- package/types/components/DatePicker/DatePickerIOS.d.ts +2 -2
- package/types/components/DatePicker/StyledDatePicker.d.ts +1 -2
- package/types/components/DatePicker/index.d.ts +2 -1
- package/types/components/DatePicker/types.d.ts +8 -0
- package/types/components/DatePicker/useCalculateDate.d.ts +4 -0
- package/types/components/Divider/StyledDivider.d.ts +1 -2
- package/types/components/Divider/index.d.ts +2 -1
- package/types/components/Drawer/DragableDrawer/helpers.d.ts +0 -0
- package/types/components/Drawer/DragableDrawer/index.d.ts +0 -0
- package/types/components/Drawer/StyledDrawer.d.ts +7 -14
- package/types/components/Drawer/index.d.ts +0 -0
- package/types/components/Empty/StyledEmpty.d.ts +5 -6
- package/types/components/Empty/index.d.ts +0 -0
- package/types/components/Error/StyledError.d.ts +15 -22
- package/types/components/Error/index.d.ts +0 -0
- package/types/components/FAB/ActionGroup/ActionItem.d.ts +7 -2
- package/types/components/FAB/ActionGroup/StyledActionGroup.d.ts +13 -17
- package/types/components/FAB/ActionGroup/StyledActionItem.d.ts +4 -5
- package/types/components/FAB/ActionGroup/index.d.ts +12 -1
- package/types/components/FAB/AnimatedFABIcon.d.ts +2 -1
- package/types/components/FAB/FAB.d.ts +8 -2
- package/types/components/FAB/StyledFAB.d.ts +11 -12
- package/types/components/FAB/index.d.ts +2 -2
- package/types/components/HeroDesignProvider/index.d.ts +4 -0
- package/types/components/Icon/AnimatedIcon.d.ts +2 -1
- package/types/components/Icon/HeroIcon/index.d.ts +1 -2
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +3 -2
- package/types/components/Icon/utils.d.ts +1 -1
- package/types/components/Image/index.d.ts +0 -0
- package/types/components/List/BasicListItem.d.ts +0 -0
- package/types/components/List/ListItem.d.ts +0 -0
- package/types/components/List/StyledBasicListItem.d.ts +4 -5
- package/types/components/List/StyledListItem.d.ts +7 -8
- package/types/components/List/index.d.ts +0 -0
- package/types/components/Modal/index.d.ts +37 -0
- package/types/components/PageControl/StyledPageControl.d.ts +2 -5
- package/types/components/PageControl/index.d.ts +2 -1
- package/types/components/PinInput/PinCell.d.ts +2 -1
- package/types/components/PinInput/StyledPinInput.d.ts +12 -13
- package/types/components/PinInput/index.d.ts +0 -0
- package/types/components/Portal/PortalHost.d.ts +5 -0
- package/types/components/Portal/PortalProvider.d.ts +7 -0
- package/types/components/Portal/constants.d.ts +8 -0
- package/types/components/Portal/contexts.d.ts +9 -0
- package/types/components/Portal/index.d.ts +18 -0
- package/types/components/Portal/reducer.d.ts +5 -0
- package/types/components/Portal/types.d.ts +22 -0
- package/types/components/Portal/usePortal.d.ts +8 -0
- package/types/components/Portal/usePortalState.d.ts +1 -0
- package/types/components/Progress/ProgressBar.d.ts +0 -0
- package/types/components/Progress/ProgressCircle.d.ts +0 -0
- package/types/components/Progress/StyledProgressBar.d.ts +2 -5
- package/types/components/Progress/StyledProgressCircle.d.ts +6 -7
- package/types/components/Progress/__tests__/index.spec.d.ts +0 -0
- package/types/components/Progress/constants.d.ts +0 -0
- package/types/components/Progress/index.d.ts +0 -0
- package/types/components/Progress/types.d.ts +0 -0
- package/types/components/Radio/Radio.d.ts +15 -3
- package/types/components/Radio/RadioGroup.d.ts +5 -1
- package/types/components/Radio/StyledRadio.d.ts +14 -5
- package/types/components/Radio/index.d.ts +1 -2
- package/types/components/Radio/types.d.ts +3 -0
- package/types/components/Rate/StyledRate.d.ts +10 -0
- package/types/components/Rate/index.d.ts +29 -0
- package/types/components/RefreshControl/index.d.ts +2 -1
- package/types/components/RichTextEditor/EditorEvent.d.ts +1 -0
- package/types/components/RichTextEditor/EditorToolbar.d.ts +2 -1
- package/types/components/RichTextEditor/MentionList.d.ts +2 -1
- package/types/components/RichTextEditor/RichTextEditor.d.ts +2 -2
- package/types/components/RichTextEditor/StyledRichTextEditor.d.ts +2 -3
- package/types/components/RichTextEditor/StyledToolbar.d.ts +3 -4
- package/types/components/RichTextEditor/__mocks__/heroEditorApp.d.ts +0 -0
- package/types/components/RichTextEditor/constants.d.ts +0 -0
- package/types/components/RichTextEditor/heroEditorApp.d.ts +0 -0
- package/types/components/RichTextEditor/index.d.ts +2 -3
- package/types/components/RichTextEditor/types.d.ts +0 -0
- package/types/components/RichTextEditor/utils/events.d.ts +0 -0
- package/types/components/RichTextEditor/utils/rnWebView.d.ts +0 -0
- package/types/components/SectionHeading/StyledHeading.d.ts +7 -5
- package/types/components/SectionHeading/index.d.ts +7 -1
- package/types/components/Select/BaseOptionList.d.ts +1 -1
- package/types/components/Select/Footer.d.ts +2 -1
- package/types/components/Select/MultiSelect/Option.d.ts +2 -1
- package/types/components/Select/MultiSelect/OptionList.d.ts +2 -1
- package/types/components/Select/MultiSelect/index.d.ts +1 -1
- package/types/components/Select/SingleSelect/Option.d.ts +2 -1
- package/types/components/Select/SingleSelect/OptionList.d.ts +1 -1
- package/types/components/Select/SingleSelect/StyledSingleSelect.d.ts +1 -1
- package/types/components/Select/SingleSelect/index.d.ts +1 -1
- package/types/components/Select/StyledSelect.d.ts +3 -4
- package/types/components/Select/helpers.d.ts +1 -2
- package/types/components/Select/index.d.ts +1 -1
- package/types/components/Select/types.d.ts +0 -0
- package/types/components/Skeleton/StyledSkeleton.d.ts +2 -3
- package/types/components/Skeleton/index.d.ts +2 -1
- package/types/components/Slider/index.d.ts +2 -1
- package/types/components/Spinner/AnimatedSpinner.d.ts +2 -1
- package/types/components/Spinner/StyledSpinner.d.ts +4 -5
- package/types/components/Spinner/index.d.ts +0 -0
- package/types/components/Success/StyledSuccess.d.ts +14 -19
- package/types/components/Success/index.d.ts +1 -1
- package/types/components/Swipeable/StyledSwipeable.d.ts +1 -2
- package/types/components/Swipeable/SwipeableAction.d.ts +2 -2
- package/types/components/Swipeable/index.d.ts +8 -4
- package/types/components/Switch/SelectorSwitch/Option.d.ts +2 -1
- package/types/components/Switch/SelectorSwitch/StyledSelectorSwitch.d.ts +4 -11
- package/types/components/Switch/SelectorSwitch/index.d.ts +0 -0
- package/types/components/Switch/StyledSwitch.d.ts +2 -5
- package/types/components/Switch/index.d.ts +0 -0
- package/types/components/Tabs/ActiveTabIndicator.d.ts +2 -1
- package/types/components/Tabs/SceneView.d.ts +1 -1
- package/types/components/Tabs/ScrollableTabs.d.ts +5 -1
- package/types/components/Tabs/{ScrollableTabsHeader.d.ts → ScrollableTabsHeader/ScrollableTabsHeader.d.ts} +8 -3
- package/types/components/Tabs/ScrollableTabsHeader/hooks/useInitHighlightedAnimation.d.ts +9 -0
- package/types/components/Tabs/ScrollableTabsHeader/hooks/useInitUnderlinedAnimation.d.ts +10 -0
- package/types/components/Tabs/StyledScrollableTabs.d.ts +12 -20
- package/types/components/Tabs/StyledTabs.d.ts +8 -18
- package/types/components/Tabs/TabWithBadge.d.ts +2 -2
- package/types/components/Tabs/index.d.ts +2 -1
- package/types/components/Tabs/useIsFocused.d.ts +0 -0
- package/types/components/Tabs/utils.d.ts +0 -0
- package/types/components/Tag/StyledTag.d.ts +4 -8
- package/types/components/Tag/index.d.ts +1 -0
- package/types/components/TextInput/StyledTextInput.d.ts +22 -46
- package/types/components/TextInput/index.d.ts +31 -2
- package/types/components/TimePicker/StyledTimePicker.d.ts +1 -2
- package/types/components/TimePicker/TimePickerAndroid.d.ts +2 -1
- package/types/components/TimePicker/TimePickerIOS.d.ts +2 -1
- package/types/components/TimePicker/index.d.ts +2 -1
- package/types/components/TimePicker/types.d.ts +0 -0
- package/types/components/Toast/StyledToast.d.ts +6 -9
- package/types/components/Toast/Toast.d.ts +0 -0
- package/types/components/Toast/ToastContainer.d.ts +0 -0
- package/types/components/Toast/ToastContext.d.ts +1 -1
- package/types/components/Toast/ToastProvider.d.ts +2 -1
- package/types/components/Toast/index.d.ts +1 -2
- package/types/components/Toast/types.d.ts +0 -0
- package/types/components/Toolbar/StyledToolbar.d.ts +6 -7
- package/types/components/Toolbar/ToolbarGroup.d.ts +2 -1
- package/types/components/Toolbar/ToolbarItem.d.ts +2 -1
- package/types/components/Toolbar/index.d.ts +3 -2
- package/types/components/Typography/Body/StyledBody.d.ts +14 -0
- package/types/components/Typography/Body/__tests__/StyledBody.d.ts +1 -0
- package/types/components/Typography/Body/index.d.ts +33 -0
- package/types/components/Typography/Caption/StyledCaption.d.ts +12 -0
- package/types/components/Typography/Caption/index.d.ts +27 -0
- package/types/components/Typography/Label/StyledLabel.d.ts +11 -0
- package/types/components/Typography/Label/__tests__/StyledLabel.d.ts +1 -0
- package/types/components/Typography/Label/index.d.ts +23 -0
- package/types/components/Typography/Text/StyledText.d.ts +1 -2
- package/types/components/Typography/Text/index.d.ts +2 -1
- package/types/components/Typography/Title/StyledTitle.d.ts +14 -0
- package/types/components/Typography/Title/__tests__/StyledTitle.d.ts +1 -0
- package/types/components/Typography/Title/index.d.ts +33 -0
- package/types/components/Typography/index.d.ts +11 -0
- package/types/components/Typography/types.d.ts +6 -0
- package/types/index.d.ts +6 -1
- package/types/testHelpers/renderWithTheme.d.ts +0 -0
- package/types/theme/ThemeProvider.d.ts +0 -1
- package/types/theme/ThemeSwitcher.d.ts +2 -2
- package/types/theme/components/accordion.d.ts +0 -0
- package/types/theme/components/alert.d.ts +0 -0
- package/types/theme/components/attachment.d.ts +0 -0
- package/types/theme/components/avatar.d.ts +0 -0
- package/types/theme/components/badge.d.ts +15 -0
- package/types/theme/components/bottomNavigation.d.ts +0 -0
- package/types/theme/components/bottomSheet.d.ts +0 -0
- package/types/theme/components/button.d.ts +14 -0
- package/types/theme/components/calendar.d.ts +2 -0
- package/types/theme/components/card.d.ts +0 -0
- package/types/theme/components/cardCarousel.d.ts +0 -10
- package/types/theme/components/carousel.d.ts +15 -1
- package/types/theme/components/checkbox.d.ts +5 -2
- package/types/theme/components/chip.d.ts +40 -0
- package/types/theme/components/contentNavigator.d.ts +0 -0
- package/types/theme/components/datePicker.d.ts +0 -0
- package/types/theme/components/divider.d.ts +0 -0
- package/types/theme/components/drawer.d.ts +0 -0
- package/types/theme/components/empty.d.ts +11 -0
- package/types/theme/components/error.d.ts +15 -0
- package/types/theme/components/fab.d.ts +13 -7
- package/types/theme/components/icon.d.ts +0 -0
- package/types/theme/components/image.d.ts +0 -0
- package/types/theme/components/list.d.ts +11 -7
- package/types/theme/components/pageControl.d.ts +0 -0
- package/types/theme/components/pinInput.d.ts +15 -0
- package/types/theme/components/progress.d.ts +0 -0
- package/types/theme/components/radio.d.ts +7 -1
- package/types/theme/components/rate.d.ts +11 -0
- package/types/theme/components/refreshControl.d.ts +0 -0
- package/types/theme/components/richTextEditor.d.ts +0 -0
- package/types/theme/components/sectionHeading.d.ts +1 -0
- package/types/theme/components/select.d.ts +0 -0
- package/types/theme/components/skeleton.d.ts +0 -0
- package/types/theme/components/slider.d.ts +0 -0
- package/types/theme/components/spinner.d.ts +0 -0
- package/types/theme/components/success.d.ts +11 -0
- package/types/theme/components/swipeable.d.ts +7 -0
- package/types/theme/components/switch.d.ts +1 -1
- package/types/theme/components/tabs.d.ts +1 -0
- package/types/theme/components/tag.d.ts +16 -1
- package/types/theme/components/textInput.d.ts +2 -2
- package/types/theme/components/timePicker.d.ts +0 -0
- package/types/theme/components/toast.d.ts +1 -1
- package/types/theme/components/toolbar.d.ts +0 -0
- package/types/theme/components/typography.d.ts +122 -0
- package/types/theme/getTheme.d.ts +22 -18
- package/types/theme/global/borders.d.ts +0 -0
- package/types/theme/global/colors/eBens.d.ts +0 -0
- package/types/theme/global/colors/global.d.ts +0 -0
- package/types/theme/global/colors/globalDark.d.ts +0 -0
- package/types/theme/global/colors/jobs.d.ts +0 -0
- package/types/theme/global/colors/swag.d.ts +0 -0
- package/types/theme/global/colors/swagDark.d.ts +0 -0
- package/types/theme/global/colors/types.d.ts +0 -0
- package/types/theme/global/colors/wallet.d.ts +0 -0
- package/types/theme/global/colors/work.d.ts +0 -0
- package/types/theme/global/index.d.ts +12 -0
- package/types/theme/global/scale.d.ts +0 -0
- package/types/theme/global/shadows.d.ts +16 -0
- package/types/theme/global/sizes.d.ts +0 -0
- package/types/theme/global/space.d.ts +1 -0
- package/types/theme/global/typography.d.ts +0 -0
- package/types/theme/index.d.ts +0 -0
- package/types/types.d.ts +3 -1
- package/types/utils/functions.d.ts +0 -0
- package/types/utils/helpers.d.ts +1 -1
- package/types/utils/hooks.d.ts +0 -0
- package/types/utils/scale.d.ts +0 -0
- package/.turbo/turbo-build.log +0 -8
- package/.turbo/turbo-build:types.log +0 -1
- package/.turbo/turbo-lint.log +0 -153
- package/.turbo/turbo-publish:npm.log +0 -0
- package/.turbo/turbo-type-check.log +0 -1
- package/types/components/Carousel/CarouselPaginator/StyledCarouselPaginator.d.ts +0 -14
- package/types/components/Carousel/CarouselPaginator/index.d.ts +0 -7
- package/types/components/Select/StyledOptionList.d.ts +0 -12
- package/types/components/SwipeableV2/StyledSwipeable.d.ts +0 -15
- package/types/components/SwipeableV2/index.d.ts +0 -46
- package/types/theme/global/colors/legacySystemPalette.d.ts +0 -3
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
3
|
exports[`theme returns correct theme object 1`] = `
|
|
4
|
-
|
|
5
|
-
"__hd__":
|
|
6
|
-
"accordion":
|
|
7
|
-
"colors":
|
|
4
|
+
{
|
|
5
|
+
"__hd__": {
|
|
6
|
+
"accordion": {
|
|
7
|
+
"colors": {
|
|
8
8
|
"background": "#ffffff",
|
|
9
9
|
},
|
|
10
|
-
"radii":
|
|
10
|
+
"radii": {
|
|
11
11
|
"card": 8,
|
|
12
12
|
},
|
|
13
|
-
"space":
|
|
13
|
+
"space": {
|
|
14
14
|
"padding": 16,
|
|
15
15
|
},
|
|
16
16
|
},
|
|
17
|
-
"alert":
|
|
18
|
-
"borderWidths":
|
|
17
|
+
"alert": {
|
|
18
|
+
"borderWidths": {
|
|
19
19
|
"base": 1,
|
|
20
20
|
},
|
|
21
|
-
"colors":
|
|
21
|
+
"colors": {
|
|
22
22
|
"divider": "#e8e9ea",
|
|
23
23
|
"error": "#f46363",
|
|
24
24
|
"info": "#b5c3fd",
|
|
@@ -26,40 +26,40 @@ Object {
|
|
|
26
26
|
"success": "#5ace7d",
|
|
27
27
|
"warning": "#ffbe71",
|
|
28
28
|
},
|
|
29
|
-
"radii":
|
|
29
|
+
"radii": {
|
|
30
30
|
"default": 16,
|
|
31
31
|
},
|
|
32
|
-
"sizes":
|
|
32
|
+
"sizes": {
|
|
33
33
|
"height": 48,
|
|
34
34
|
},
|
|
35
|
-
"space":
|
|
35
|
+
"space": {
|
|
36
36
|
"contentPaddingHorizontal": 12,
|
|
37
37
|
"ctaPadding": 12,
|
|
38
38
|
"iconLeftPadding": 12,
|
|
39
39
|
"textPaddingHorizontal": 12,
|
|
40
40
|
},
|
|
41
41
|
},
|
|
42
|
-
"attachment":
|
|
43
|
-
"colors":
|
|
42
|
+
"attachment": {
|
|
43
|
+
"colors": {
|
|
44
44
|
"highlightedBackground": "#ece8ef",
|
|
45
45
|
},
|
|
46
|
-
"radii":
|
|
46
|
+
"radii": {
|
|
47
47
|
"container": 8,
|
|
48
48
|
"image": 4,
|
|
49
49
|
},
|
|
50
|
-
"sizes":
|
|
50
|
+
"sizes": {
|
|
51
51
|
"imageHeight": 48,
|
|
52
52
|
"imageWidth": 32,
|
|
53
53
|
},
|
|
54
|
-
"space":
|
|
54
|
+
"space": {
|
|
55
55
|
"containerPadding": 16,
|
|
56
56
|
"containerVerticalPadding": 12,
|
|
57
57
|
"ctaPadding": 16,
|
|
58
58
|
"textHorizontalPadding": 8,
|
|
59
59
|
},
|
|
60
60
|
},
|
|
61
|
-
"avatar":
|
|
62
|
-
"colors":
|
|
61
|
+
"avatar": {
|
|
62
|
+
"colors": {
|
|
63
63
|
"danger": "#f46363",
|
|
64
64
|
"info": "#b5c3fd",
|
|
65
65
|
"primary": "#401960",
|
|
@@ -67,7 +67,7 @@ Object {
|
|
|
67
67
|
"text": "#ffffff",
|
|
68
68
|
"warning": "#ffbe71",
|
|
69
69
|
},
|
|
70
|
-
"fontSizes":
|
|
70
|
+
"fontSizes": {
|
|
71
71
|
"large": 20,
|
|
72
72
|
"medium": 18,
|
|
73
73
|
"small": 16,
|
|
@@ -77,13 +77,13 @@ Object {
|
|
|
77
77
|
"xxxxlarge": 48,
|
|
78
78
|
"xxxxxlarge": 60,
|
|
79
79
|
},
|
|
80
|
-
"fonts":
|
|
80
|
+
"fonts": {
|
|
81
81
|
"default": "BeVietnamPro-Regular",
|
|
82
82
|
},
|
|
83
|
-
"radii":
|
|
83
|
+
"radii": {
|
|
84
84
|
"rounded": 999,
|
|
85
85
|
},
|
|
86
|
-
"sizes":
|
|
86
|
+
"sizes": {
|
|
87
87
|
"large": 48,
|
|
88
88
|
"medium": 40,
|
|
89
89
|
"small": 32,
|
|
@@ -93,8 +93,8 @@ Object {
|
|
|
93
93
|
"xxxxlarge": 96,
|
|
94
94
|
"xxxxxlarge": 136,
|
|
95
95
|
},
|
|
96
|
-
"spaces":
|
|
97
|
-
"titleMarginTopForAndroid":
|
|
96
|
+
"spaces": {
|
|
97
|
+
"titleMarginTopForAndroid": {
|
|
98
98
|
"large": -4,
|
|
99
99
|
"medium": -4,
|
|
100
100
|
"small": -2,
|
|
@@ -106,80 +106,80 @@ Object {
|
|
|
106
106
|
},
|
|
107
107
|
},
|
|
108
108
|
},
|
|
109
|
-
"badge":
|
|
110
|
-
"colors":
|
|
111
|
-
"archived": "#
|
|
112
|
-
"danger": "#
|
|
113
|
-
"info": "#
|
|
109
|
+
"badge": {
|
|
110
|
+
"colors": {
|
|
111
|
+
"archived": "#606065",
|
|
112
|
+
"danger": "#cb300a",
|
|
113
|
+
"info": "#355bfb",
|
|
114
114
|
"primary": "#401960",
|
|
115
115
|
"success": "#017d6d",
|
|
116
116
|
"text": "#ffffff",
|
|
117
|
-
"warning": "#
|
|
117
|
+
"warning": "#ac5d00",
|
|
118
118
|
},
|
|
119
|
-
"fontSizes":
|
|
119
|
+
"fontSizes": {
|
|
120
120
|
"default": 12,
|
|
121
121
|
},
|
|
122
|
-
"fonts":
|
|
122
|
+
"fonts": {
|
|
123
123
|
"default": "BeVietnamPro-SemiBold",
|
|
124
124
|
},
|
|
125
|
-
"lineHeights":
|
|
125
|
+
"lineHeights": {
|
|
126
126
|
"default": 16,
|
|
127
127
|
},
|
|
128
|
-
"sizes":
|
|
128
|
+
"sizes": {
|
|
129
129
|
"height": 20,
|
|
130
130
|
"minWidth": 20,
|
|
131
131
|
"statusHeight": 8,
|
|
132
132
|
"statusWidth": 8,
|
|
133
133
|
},
|
|
134
|
-
"space":
|
|
134
|
+
"space": {
|
|
135
135
|
"horizontalPadding": 8,
|
|
136
136
|
"statusPositionRight": -2,
|
|
137
137
|
"statusPositionTop": -2,
|
|
138
138
|
},
|
|
139
139
|
},
|
|
140
|
-
"bottomNavigation":
|
|
141
|
-
"colors":
|
|
140
|
+
"bottomNavigation": {
|
|
141
|
+
"colors": {
|
|
142
142
|
"background": "#ffffff",
|
|
143
143
|
"shadow": "#401960",
|
|
144
144
|
},
|
|
145
|
-
"shadows":
|
|
145
|
+
"shadows": {
|
|
146
146
|
"elevation": 10,
|
|
147
|
-
"offset":
|
|
147
|
+
"offset": {
|
|
148
148
|
"height": 3,
|
|
149
149
|
"width": 0,
|
|
150
150
|
},
|
|
151
151
|
"opacity": 0.27,
|
|
152
152
|
"radius": 4.65,
|
|
153
153
|
},
|
|
154
|
-
"sizes":
|
|
154
|
+
"sizes": {
|
|
155
155
|
"height": 72,
|
|
156
156
|
},
|
|
157
|
-
"space":
|
|
157
|
+
"space": {
|
|
158
158
|
"titleMarginTop": 4,
|
|
159
159
|
},
|
|
160
160
|
},
|
|
161
|
-
"bottomSheet":
|
|
162
|
-
"colors":
|
|
161
|
+
"bottomSheet": {
|
|
162
|
+
"colors": {
|
|
163
163
|
"backdrop": "#000000",
|
|
164
164
|
"background": "#ffffff",
|
|
165
165
|
"shadow": "#001f23",
|
|
166
166
|
},
|
|
167
|
-
"radii":
|
|
167
|
+
"radii": {
|
|
168
168
|
"default": 16,
|
|
169
169
|
},
|
|
170
|
-
"shadows":
|
|
170
|
+
"shadows": {
|
|
171
171
|
"elevation": 10,
|
|
172
|
-
"offset":
|
|
172
|
+
"offset": {
|
|
173
173
|
"height": 3,
|
|
174
174
|
"width": 0,
|
|
175
175
|
},
|
|
176
176
|
"opacity": 0.4,
|
|
177
177
|
"radius": 16,
|
|
178
178
|
},
|
|
179
|
-
"sizes":
|
|
179
|
+
"sizes": {
|
|
180
180
|
"closeIcon": 48,
|
|
181
181
|
},
|
|
182
|
-
"space":
|
|
182
|
+
"space": {
|
|
183
183
|
"closeIconMargin": 12,
|
|
184
184
|
"footerHorizontalPadding": 12,
|
|
185
185
|
"footerVerticalPadding": 2,
|
|
@@ -187,21 +187,21 @@ Object {
|
|
|
187
187
|
"headerWrapperVerticalPadding": 8,
|
|
188
188
|
},
|
|
189
189
|
},
|
|
190
|
-
"button":
|
|
191
|
-
"borderWidth":
|
|
190
|
+
"button": {
|
|
191
|
+
"borderWidth": {
|
|
192
192
|
"default": 2,
|
|
193
193
|
},
|
|
194
|
-
"colors":
|
|
195
|
-
"danger": "#
|
|
194
|
+
"colors": {
|
|
195
|
+
"danger": "#cb300a",
|
|
196
196
|
"defaultText": "#001f23",
|
|
197
197
|
"disabledBackground": "#bfc1c5",
|
|
198
198
|
"disabledBorder": "#bfc1c5",
|
|
199
199
|
"disabledText": "#bfc1c5",
|
|
200
200
|
"invertedText": "#ffffff",
|
|
201
|
-
"pressedBackground":
|
|
201
|
+
"pressedBackground": {
|
|
202
202
|
"filledDanger": "#fcebe7",
|
|
203
|
-
"filledPrimary": "#
|
|
204
|
-
"filledSecondary": "#
|
|
203
|
+
"filledPrimary": "#33144d",
|
|
204
|
+
"filledSecondary": "#33144d",
|
|
205
205
|
"outlineDanger": "#fcebe7",
|
|
206
206
|
"outlinedPrimary": "#ece8ef",
|
|
207
207
|
"outlinedSecondary": "#ece8ef",
|
|
@@ -212,43 +212,46 @@ Object {
|
|
|
212
212
|
"primary": "#401960",
|
|
213
213
|
"secondary": "#795e90",
|
|
214
214
|
"textLoadingBackground": "#ece8ef",
|
|
215
|
-
"utilityBackground": "#
|
|
215
|
+
"utilityBackground": "#ffffff",
|
|
216
216
|
},
|
|
217
|
-
"fontSize":
|
|
217
|
+
"fontSize": {
|
|
218
218
|
"default": 18,
|
|
219
219
|
"textVariant": 16,
|
|
220
220
|
"utility": 16,
|
|
221
221
|
},
|
|
222
|
-
"fonts":
|
|
222
|
+
"fonts": {
|
|
223
223
|
"default": "BeVietnamPro-SemiBold",
|
|
224
224
|
"utility": "BeVietnamPro-Regular",
|
|
225
225
|
},
|
|
226
|
-
"
|
|
226
|
+
"lineHeights": {
|
|
227
|
+
"titleOfTextVariant": 22,
|
|
228
|
+
},
|
|
229
|
+
"radii": {
|
|
227
230
|
"default": 32,
|
|
228
231
|
"text": 4,
|
|
229
232
|
"utilityRadii": 8,
|
|
230
233
|
},
|
|
231
|
-
"sizes":
|
|
234
|
+
"sizes": {
|
|
232
235
|
"iconSize": 20,
|
|
233
236
|
},
|
|
234
|
-
"space":
|
|
237
|
+
"space": {
|
|
235
238
|
"buttonPadding": 16,
|
|
236
239
|
"iconPadding": 12,
|
|
237
240
|
"textButtonPadding": 12,
|
|
238
241
|
"utilityPadding": 8,
|
|
239
242
|
},
|
|
240
243
|
},
|
|
241
|
-
"calendar":
|
|
242
|
-
"colors":
|
|
244
|
+
"calendar": {
|
|
245
|
+
"colors": {
|
|
243
246
|
"background": "#ffffff",
|
|
244
247
|
"border": "#001f23",
|
|
245
248
|
"inverted": "#ffffff",
|
|
246
249
|
"primary": "#401960",
|
|
247
250
|
},
|
|
248
|
-
"radii":
|
|
251
|
+
"radii": {
|
|
249
252
|
"default": 999,
|
|
250
253
|
},
|
|
251
|
-
"sizes":
|
|
254
|
+
"sizes": {
|
|
252
255
|
"cellCircleHeight": 44,
|
|
253
256
|
"cellCircleWidth": 44,
|
|
254
257
|
"cellHeight": 48,
|
|
@@ -256,14 +259,16 @@ Object {
|
|
|
256
259
|
"markHeight": 4,
|
|
257
260
|
"markWidth": 4,
|
|
258
261
|
},
|
|
259
|
-
"space":
|
|
262
|
+
"space": {
|
|
260
263
|
"headerHorizontalPadding": 12,
|
|
264
|
+
"headerMarginRight": 8,
|
|
261
265
|
"headerVerticalPadding": 16,
|
|
266
|
+
"iosPickerMarginVertical": 64,
|
|
262
267
|
"rowVerticalPadding": 16,
|
|
263
268
|
},
|
|
264
269
|
},
|
|
265
|
-
"card":
|
|
266
|
-
"colors":
|
|
270
|
+
"card": {
|
|
271
|
+
"colors": {
|
|
267
272
|
"archived": "#abacaf",
|
|
268
273
|
"danger": "#f46363",
|
|
269
274
|
"dataCardIndicator": "#401960",
|
|
@@ -272,96 +277,126 @@ Object {
|
|
|
272
277
|
"success": "#5ace7d",
|
|
273
278
|
"warning": "#ffbe71",
|
|
274
279
|
},
|
|
275
|
-
"radii":
|
|
280
|
+
"radii": {
|
|
276
281
|
"default": 12,
|
|
277
282
|
},
|
|
278
|
-
"sizes":
|
|
283
|
+
"sizes": {
|
|
279
284
|
"indicatorWidth": 16,
|
|
280
285
|
},
|
|
281
286
|
},
|
|
282
|
-
"cardCarousel":
|
|
283
|
-
"colors":
|
|
287
|
+
"cardCarousel": {
|
|
288
|
+
"colors": {
|
|
284
289
|
"carouselItemBackground": "#f6f6f7",
|
|
285
|
-
"shadow": "#001f23",
|
|
286
290
|
},
|
|
287
|
-
"radii":
|
|
291
|
+
"radii": {
|
|
288
292
|
"card": 8,
|
|
289
293
|
},
|
|
290
|
-
"
|
|
291
|
-
"elevation": 4,
|
|
292
|
-
"offset": Object {
|
|
293
|
-
"height": 2,
|
|
294
|
-
"width": 0,
|
|
295
|
-
},
|
|
296
|
-
"opacity": 0.12,
|
|
297
|
-
"radius": 8,
|
|
298
|
-
},
|
|
299
|
-
"space": Object {
|
|
294
|
+
"space": {
|
|
300
295
|
"carouselItemSpacing": 8,
|
|
301
296
|
"contentContainerPaddingHorizontal": 24,
|
|
302
297
|
"pageControlMarginTop": 16,
|
|
303
298
|
},
|
|
304
299
|
},
|
|
305
|
-
"carousel":
|
|
306
|
-
"fontSizes":
|
|
300
|
+
"carousel": {
|
|
301
|
+
"fontSizes": {
|
|
307
302
|
"heading": 32,
|
|
308
303
|
},
|
|
309
|
-
"fonts":
|
|
304
|
+
"fonts": {
|
|
310
305
|
"heading": "RebondGrotesque-SemiBold",
|
|
311
306
|
},
|
|
312
|
-
"lineHeights":
|
|
307
|
+
"lineHeights": {
|
|
313
308
|
"heading": 44,
|
|
314
309
|
},
|
|
315
|
-
"space":
|
|
310
|
+
"space": {
|
|
316
311
|
"footerMarginBottom": 24,
|
|
317
312
|
"footerPaddingHorizontal": 24,
|
|
318
313
|
"footerPaddingVertical": 16,
|
|
319
314
|
"headingMarginBottom": 16,
|
|
320
|
-
"headingMarginTop": 8,
|
|
321
315
|
"pageControlPaddingVertical": 8,
|
|
322
316
|
"pageControlWrapperHeight": 48,
|
|
323
317
|
},
|
|
324
318
|
},
|
|
325
|
-
"checkbox":
|
|
326
|
-
"borderWidths":
|
|
319
|
+
"checkbox": {
|
|
320
|
+
"borderWidths": {
|
|
327
321
|
"icon": 2,
|
|
328
322
|
"wrapper": 1,
|
|
329
323
|
},
|
|
330
|
-
"colors":
|
|
331
|
-
"
|
|
332
|
-
|
|
324
|
+
"colors": {
|
|
325
|
+
"borders": {
|
|
326
|
+
"default": "#001f23",
|
|
327
|
+
"disabled": "#bfc1c5",
|
|
328
|
+
"readonly": "#808f91",
|
|
329
|
+
},
|
|
333
330
|
},
|
|
334
|
-
"radii":
|
|
331
|
+
"radii": {
|
|
335
332
|
"icon": 4,
|
|
336
333
|
"wrapper": 8,
|
|
337
334
|
},
|
|
338
|
-
"sizes":
|
|
335
|
+
"sizes": {
|
|
339
336
|
"icon": 24,
|
|
340
337
|
},
|
|
341
|
-
"space":
|
|
338
|
+
"space": {
|
|
342
339
|
"iconDescriptionPadding": 12,
|
|
343
340
|
"iconTop": 0,
|
|
344
341
|
"wrapperPadding": 16,
|
|
345
342
|
},
|
|
346
343
|
},
|
|
347
|
-
"
|
|
348
|
-
"
|
|
344
|
+
"chip": {
|
|
345
|
+
"borderWidths": {
|
|
346
|
+
"icon": 2,
|
|
347
|
+
"wrapper": 1,
|
|
348
|
+
},
|
|
349
|
+
"colors": {
|
|
350
|
+
"filledBackground": "#ffffff",
|
|
351
|
+
"outlinedBackground": "transparent",
|
|
352
|
+
"primaryBackground": "#001f23",
|
|
353
|
+
"secondaryBackground": "#ece8ef",
|
|
354
|
+
"selectedPrimaryText": "#ffffff",
|
|
355
|
+
"wrapperBorder": "#001f23",
|
|
356
|
+
"wrapperSelectedBorder": "transparent",
|
|
357
|
+
},
|
|
358
|
+
"radii": {
|
|
359
|
+
"wrapper": 999,
|
|
360
|
+
},
|
|
361
|
+
"shadows": {
|
|
362
|
+
"filledWrapper": {
|
|
363
|
+
"elevation": 3,
|
|
364
|
+
"shadowColor": "#001f23",
|
|
365
|
+
"shadowOffset": {
|
|
366
|
+
"height": 2,
|
|
367
|
+
"width": 0,
|
|
368
|
+
},
|
|
369
|
+
"shadowOpacity": 0.12,
|
|
370
|
+
"shadowRadius": 4,
|
|
371
|
+
},
|
|
372
|
+
},
|
|
373
|
+
"sizes": {
|
|
374
|
+
"wrapperBorder": 1,
|
|
375
|
+
},
|
|
376
|
+
"space": {
|
|
377
|
+
"iconWrapperMarginRight": 8,
|
|
378
|
+
"wrapperHorizontalPadding": 12,
|
|
379
|
+
"wrapperVerticalPadding": 8,
|
|
380
|
+
},
|
|
381
|
+
},
|
|
382
|
+
"contentNavigator": {
|
|
383
|
+
"space": {
|
|
349
384
|
"valueHorizontalPadding": 8,
|
|
350
385
|
},
|
|
351
386
|
},
|
|
352
|
-
"datePicker":
|
|
353
|
-
"sizes":
|
|
387
|
+
"datePicker": {
|
|
388
|
+
"sizes": {
|
|
354
389
|
"height": 176,
|
|
355
390
|
},
|
|
356
391
|
},
|
|
357
|
-
"divider":
|
|
358
|
-
"borderWidths":
|
|
392
|
+
"divider": {
|
|
393
|
+
"borderWidths": {
|
|
359
394
|
"default": 1,
|
|
360
395
|
},
|
|
361
|
-
"colors":
|
|
396
|
+
"colors": {
|
|
362
397
|
"default": "#e8e9ea",
|
|
363
398
|
},
|
|
364
|
-
"space":
|
|
399
|
+
"space": {
|
|
365
400
|
"large": 24,
|
|
366
401
|
"medium": 16,
|
|
367
402
|
"small": 8,
|
|
@@ -369,82 +404,82 @@ Object {
|
|
|
369
404
|
"xsmall": 4,
|
|
370
405
|
},
|
|
371
406
|
},
|
|
372
|
-
"drawer":
|
|
373
|
-
"colors":
|
|
407
|
+
"drawer": {
|
|
408
|
+
"colors": {
|
|
374
409
|
"backdrop": "#ffffff",
|
|
375
410
|
"background": "#ffffff",
|
|
376
411
|
"handler": "#001f23",
|
|
377
412
|
"shadow": "#001f23",
|
|
378
413
|
},
|
|
379
|
-
"radii":
|
|
414
|
+
"radii": {
|
|
380
415
|
"default": 16,
|
|
381
416
|
"handler": 4,
|
|
382
417
|
},
|
|
383
|
-
"shadows":
|
|
418
|
+
"shadows": {
|
|
384
419
|
"elevation": 10,
|
|
385
|
-
"offset":
|
|
420
|
+
"offset": {
|
|
386
421
|
"height": 3,
|
|
387
422
|
"width": 0,
|
|
388
423
|
},
|
|
389
424
|
"opacity": 0.27,
|
|
390
425
|
"radius": 4.65,
|
|
391
426
|
},
|
|
392
|
-
"sizes":
|
|
427
|
+
"sizes": {
|
|
393
428
|
"handlerHeight": 4,
|
|
394
429
|
"handlerWidth": 56,
|
|
395
430
|
},
|
|
396
|
-
"space":
|
|
431
|
+
"space": {
|
|
397
432
|
"handlerPaddingVertical": 8,
|
|
398
433
|
},
|
|
399
434
|
},
|
|
400
|
-
"empty":
|
|
401
|
-
"colors":
|
|
435
|
+
"empty": {
|
|
436
|
+
"colors": {
|
|
402
437
|
"invertedSubduedText": "#ffffff",
|
|
403
438
|
"invertedText": "#ffffff",
|
|
404
439
|
"subduedText": "#4d6265",
|
|
405
440
|
"text": "#001f23",
|
|
406
441
|
},
|
|
407
|
-
"fontSizes":
|
|
442
|
+
"fontSizes": {
|
|
408
443
|
"description": 18,
|
|
409
444
|
"title": 24,
|
|
410
445
|
},
|
|
411
|
-
"fonts":
|
|
446
|
+
"fonts": {
|
|
412
447
|
"description": "RebondGrotesque",
|
|
413
448
|
"title": "RebondGrotesque-SemiBold",
|
|
414
449
|
},
|
|
415
|
-
"sizes":
|
|
450
|
+
"sizes": {
|
|
416
451
|
"image": 168,
|
|
417
452
|
},
|
|
418
|
-
"space":
|
|
453
|
+
"space": {
|
|
419
454
|
"imageMargin": 24,
|
|
420
455
|
"titleMargin": 8,
|
|
421
456
|
"wrapperPadding": 16,
|
|
422
457
|
},
|
|
423
458
|
},
|
|
424
|
-
"error":
|
|
425
|
-
"colors":
|
|
459
|
+
"error": {
|
|
460
|
+
"colors": {
|
|
426
461
|
"description": "#4d6265",
|
|
427
462
|
"fullScreenBackground": "#ccd2d3",
|
|
428
463
|
"inPageBackground": "#f6f6f7",
|
|
429
464
|
"title": "#001f23",
|
|
430
465
|
},
|
|
431
|
-
"fontSizes":
|
|
466
|
+
"fontSizes": {
|
|
432
467
|
"description": 18,
|
|
433
468
|
"title": 24,
|
|
434
469
|
},
|
|
435
|
-
"fonts":
|
|
470
|
+
"fonts": {
|
|
436
471
|
"description": "RebondGrotesque",
|
|
437
472
|
"title": "RebondGrotesque-SemiBold",
|
|
438
473
|
},
|
|
439
|
-
"lineHeight":
|
|
474
|
+
"lineHeight": {
|
|
440
475
|
"description": 26,
|
|
441
476
|
"title": 32,
|
|
442
477
|
},
|
|
443
|
-
"sizes":
|
|
478
|
+
"sizes": {
|
|
444
479
|
"image": 176,
|
|
445
480
|
},
|
|
446
|
-
"space":
|
|
447
|
-
"button":
|
|
481
|
+
"space": {
|
|
482
|
+
"button": {
|
|
448
483
|
"margin": 16,
|
|
449
484
|
"padding": 16,
|
|
450
485
|
"wrapperHorizontalPadding": 16,
|
|
@@ -455,54 +490,51 @@ Object {
|
|
|
455
490
|
"wrapperPadding": 24,
|
|
456
491
|
},
|
|
457
492
|
},
|
|
458
|
-
"fab":
|
|
459
|
-
"colors":
|
|
493
|
+
"fab": {
|
|
494
|
+
"colors": {
|
|
460
495
|
"actionItemBackground": "#795e90",
|
|
461
|
-
"actionItemPressedBackground": "#
|
|
496
|
+
"actionItemPressedBackground": "#33144d",
|
|
462
497
|
"actionItemText": "#ffffff",
|
|
463
498
|
"backdropBackground": "#000000",
|
|
499
|
+
"buttonActiveBackground": "#33144d",
|
|
464
500
|
"buttonBackground": "#401960",
|
|
465
|
-
"buttonPressedBackground": "#
|
|
466
|
-
"headerText": "#001f23",
|
|
501
|
+
"buttonPressedBackground": "#33144d",
|
|
467
502
|
"icon": "#ffffff",
|
|
468
|
-
"shadow": "#001f23",
|
|
469
503
|
"titleText": "#ffffff",
|
|
470
504
|
},
|
|
471
|
-
"fontSizes":
|
|
505
|
+
"fontSizes": {
|
|
472
506
|
"actionItemText": 16,
|
|
473
|
-
"header": 24,
|
|
474
507
|
"title": 16,
|
|
475
508
|
},
|
|
476
|
-
"fonts":
|
|
509
|
+
"fonts": {
|
|
477
510
|
"actionItemText": "BeVietnamPro-Regular",
|
|
478
|
-
"header": "BeVietnamPro-SemiBold",
|
|
479
511
|
"title": "BeVietnamPro-SemiBold",
|
|
480
512
|
},
|
|
481
|
-
"lineHeights":
|
|
513
|
+
"lineHeights": {
|
|
482
514
|
"actionItemText": 22,
|
|
483
|
-
"header": 32,
|
|
484
515
|
"icon": 24,
|
|
485
516
|
"title": 24,
|
|
486
517
|
},
|
|
487
|
-
"radii":
|
|
518
|
+
"radii": {
|
|
488
519
|
"actionItem": 999,
|
|
489
520
|
},
|
|
490
|
-
"shadows":
|
|
491
|
-
"
|
|
492
|
-
"
|
|
521
|
+
"shadows": {
|
|
522
|
+
"color": "#001f23",
|
|
523
|
+
"elevation": 3,
|
|
524
|
+
"offset": {
|
|
493
525
|
"height": 2,
|
|
494
526
|
"width": 0,
|
|
495
527
|
},
|
|
496
528
|
"opacity": 0.12,
|
|
497
|
-
"radius":
|
|
529
|
+
"radius": 4,
|
|
498
530
|
},
|
|
499
|
-
"sizes":
|
|
531
|
+
"sizes": {
|
|
500
532
|
"height": 64,
|
|
501
533
|
"iconContainerHeight": 24,
|
|
502
534
|
"iconContainerWidth": 24,
|
|
503
535
|
"width": 64,
|
|
504
536
|
},
|
|
505
|
-
"space":
|
|
537
|
+
"space": {
|
|
506
538
|
"actionItemMargin": 8,
|
|
507
539
|
"actionItemMarginRight": 24,
|
|
508
540
|
"actionItemPadding": 12,
|
|
@@ -510,14 +542,12 @@ Object {
|
|
|
510
542
|
"buttonMarginRight": 24,
|
|
511
543
|
"buttonMarginTop": 24,
|
|
512
544
|
"containerPadding": 20,
|
|
513
|
-
"headerTextMarginBottom": 24,
|
|
514
|
-
"headerTextMarginRight": 24,
|
|
515
545
|
"titleMarginHorizontal": 8,
|
|
516
546
|
},
|
|
517
547
|
},
|
|
518
|
-
"icon":
|
|
519
|
-
"colors":
|
|
520
|
-
"danger": "#
|
|
548
|
+
"icon": {
|
|
549
|
+
"colors": {
|
|
550
|
+
"danger": "#cb300a",
|
|
521
551
|
"disabledText": "#bfc1c5",
|
|
522
552
|
"info": "#b5c3fd",
|
|
523
553
|
"invertedText": "#ffffff",
|
|
@@ -527,7 +557,7 @@ Object {
|
|
|
527
557
|
"text": "#001f23",
|
|
528
558
|
"warning": "#ffbe71",
|
|
529
559
|
},
|
|
530
|
-
"sizes":
|
|
560
|
+
"sizes": {
|
|
531
561
|
"large": 28,
|
|
532
562
|
"medium": 24,
|
|
533
563
|
"small": 20,
|
|
@@ -535,16 +565,16 @@ Object {
|
|
|
535
565
|
"xsmall": 16,
|
|
536
566
|
},
|
|
537
567
|
},
|
|
538
|
-
"image":
|
|
539
|
-
"sizes":
|
|
568
|
+
"image": {
|
|
569
|
+
"sizes": {
|
|
540
570
|
"15xlarge": 144,
|
|
541
571
|
"6xlarge": 72,
|
|
542
572
|
},
|
|
543
573
|
},
|
|
544
|
-
"list":
|
|
545
|
-
"colors":
|
|
574
|
+
"list": {
|
|
575
|
+
"colors": {
|
|
546
576
|
"checkedListItemContainerBackground": "#ece8ef",
|
|
547
|
-
"leadingStatus":
|
|
577
|
+
"leadingStatus": {
|
|
548
578
|
"archived": "#abacaf",
|
|
549
579
|
"danger": "#f46363",
|
|
550
580
|
"info": "#b5c3fd",
|
|
@@ -553,91 +583,95 @@ Object {
|
|
|
553
583
|
},
|
|
554
584
|
"listItemContainerBackground": "#ffffff",
|
|
555
585
|
},
|
|
556
|
-
"opacity":
|
|
557
|
-
"cardShadow": 1,
|
|
586
|
+
"opacity": {
|
|
558
587
|
"disabled": 0.38,
|
|
559
588
|
"enabled": 1,
|
|
560
589
|
},
|
|
561
|
-
"radii":
|
|
590
|
+
"radii": {
|
|
562
591
|
"basicItem": 4,
|
|
563
|
-
"
|
|
564
|
-
"cardShadow": 4,
|
|
592
|
+
"item": 8,
|
|
565
593
|
"leadingStatus": 999,
|
|
566
594
|
},
|
|
567
|
-
"shadows":
|
|
568
|
-
"
|
|
569
|
-
|
|
570
|
-
"
|
|
571
|
-
"
|
|
595
|
+
"shadows": {
|
|
596
|
+
"card": {
|
|
597
|
+
"color": "#001f23",
|
|
598
|
+
"elevation": 3,
|
|
599
|
+
"offset": {
|
|
600
|
+
"height": 2,
|
|
601
|
+
"width": 0,
|
|
602
|
+
},
|
|
603
|
+
"opacity": 0.12,
|
|
604
|
+
"radius": 4,
|
|
572
605
|
},
|
|
573
606
|
},
|
|
574
|
-
"space":
|
|
607
|
+
"space": {
|
|
608
|
+
"childrenContainerTopMargin": 8,
|
|
575
609
|
"leadingStatusMarginRight": 8,
|
|
576
610
|
"listItemContainerPadding": 16,
|
|
577
611
|
"prefixContainerMarginRight": 8,
|
|
578
612
|
"suffixContainerMarginLeft": 8,
|
|
579
613
|
},
|
|
580
|
-
"widths":
|
|
614
|
+
"widths": {
|
|
581
615
|
"leadingStatus": 8,
|
|
582
616
|
},
|
|
583
617
|
},
|
|
584
|
-
"pageControl":
|
|
585
|
-
"colors":
|
|
618
|
+
"pageControl": {
|
|
619
|
+
"colors": {
|
|
586
620
|
"paginatorBackgroundColor": "#401960",
|
|
587
621
|
},
|
|
588
|
-
"radii":
|
|
622
|
+
"radii": {
|
|
589
623
|
"paginatorBorderRadius": 999,
|
|
590
624
|
},
|
|
591
|
-
"sizes":
|
|
625
|
+
"sizes": {
|
|
592
626
|
"indicatorWidth": 16,
|
|
593
627
|
"paginatorHeight": 8,
|
|
594
628
|
"paginatorWidth": 8,
|
|
595
629
|
},
|
|
596
|
-
"space":
|
|
630
|
+
"space": {
|
|
597
631
|
"paginatorMarginHorizontal": 8,
|
|
598
632
|
},
|
|
599
633
|
},
|
|
600
|
-
"pinInput":
|
|
601
|
-
"borderWidths":
|
|
634
|
+
"pinInput": {
|
|
635
|
+
"borderWidths": {
|
|
602
636
|
"default": 1,
|
|
603
637
|
"focused": 2,
|
|
604
638
|
},
|
|
605
|
-
"colors":
|
|
639
|
+
"colors": {
|
|
606
640
|
"default": "#001f23",
|
|
607
641
|
"disabled": "#bfc1c5",
|
|
608
|
-
"error": "#
|
|
642
|
+
"error": "#cb300a",
|
|
609
643
|
"mask": "#001f23",
|
|
610
644
|
},
|
|
611
|
-
"fontSizes":
|
|
645
|
+
"fontSizes": {
|
|
612
646
|
"cellText": 28,
|
|
613
647
|
"errorMessage": 12,
|
|
614
648
|
},
|
|
615
|
-
"fonts":
|
|
649
|
+
"fonts": {
|
|
616
650
|
"cellText": "BeVietnamPro-SemiBold",
|
|
617
651
|
"errorMessage": "BeVietnamPro-Regular",
|
|
618
652
|
},
|
|
619
|
-
"lineHeights":
|
|
653
|
+
"lineHeights": {
|
|
620
654
|
"cellText": 36,
|
|
621
655
|
"errorMessage": 12,
|
|
622
656
|
},
|
|
623
|
-
"radii":
|
|
657
|
+
"radii": {
|
|
624
658
|
"cell": 8,
|
|
625
659
|
"mask": 999,
|
|
626
660
|
},
|
|
627
|
-
"sizes":
|
|
661
|
+
"sizes": {
|
|
628
662
|
"cellHeight": 48,
|
|
629
663
|
"cellWidth": 40,
|
|
630
664
|
"mask": 16,
|
|
631
665
|
},
|
|
632
|
-
"space":
|
|
666
|
+
"space": {
|
|
633
667
|
"errorMessagePadding": 4,
|
|
634
668
|
"spacer": 16,
|
|
635
669
|
},
|
|
636
670
|
},
|
|
637
|
-
"progress":
|
|
638
|
-
"colors":
|
|
639
|
-
"completeness":
|
|
640
|
-
"archived": "#
|
|
671
|
+
"progress": {
|
|
672
|
+
"colors": {
|
|
673
|
+
"completeness": {
|
|
674
|
+
"archived": "#606065",
|
|
641
675
|
"archivedInverted": "#ffffff",
|
|
642
676
|
"danger": "#f46363",
|
|
643
677
|
"dangerInverted": "#ffffff",
|
|
@@ -650,7 +684,7 @@ Object {
|
|
|
650
684
|
"warning": "#ffbe71",
|
|
651
685
|
"warningInverted": "#ffffff",
|
|
652
686
|
},
|
|
653
|
-
"incompleteness":
|
|
687
|
+
"incompleteness": {
|
|
654
688
|
"archived": "#e8e9ea",
|
|
655
689
|
"archivedInverted": "#bcbdbf",
|
|
656
690
|
"danger": "#e8e9ea",
|
|
@@ -665,78 +699,94 @@ Object {
|
|
|
665
699
|
"warningInverted": "#ffcb8d",
|
|
666
700
|
},
|
|
667
701
|
},
|
|
668
|
-
"radii":
|
|
702
|
+
"radii": {
|
|
669
703
|
"default": 999,
|
|
670
704
|
},
|
|
671
|
-
"sizes":
|
|
672
|
-
"barHeight":
|
|
673
|
-
"circleCompletenessHeight":
|
|
705
|
+
"sizes": {
|
|
706
|
+
"barHeight": 8,
|
|
707
|
+
"circleCompletenessHeight": 8,
|
|
674
708
|
"circleDiameter": 72,
|
|
675
709
|
},
|
|
676
710
|
},
|
|
677
|
-
"radio":
|
|
678
|
-
"borderWidths":
|
|
711
|
+
"radio": {
|
|
712
|
+
"borderWidths": {
|
|
679
713
|
"circle": 2,
|
|
680
714
|
},
|
|
681
|
-
"colors":
|
|
682
|
-
"
|
|
715
|
+
"colors": {
|
|
716
|
+
"checked": "#ece8ef",
|
|
717
|
+
"circle": "#401960",
|
|
718
|
+
"intents": {
|
|
719
|
+
"dark": "#f6f6f7",
|
|
720
|
+
"light": "#ffffff",
|
|
721
|
+
},
|
|
683
722
|
},
|
|
684
|
-
"sizes":
|
|
723
|
+
"sizes": {
|
|
685
724
|
"circle": 20,
|
|
686
725
|
"innerCircle": 10,
|
|
687
726
|
},
|
|
688
|
-
"space":
|
|
727
|
+
"space": {
|
|
689
728
|
"circleLeftMargin": 8,
|
|
690
|
-
"
|
|
729
|
+
"groupTopMarginMedium": 16,
|
|
730
|
+
"groupTopMarginSmall": 4,
|
|
731
|
+
},
|
|
732
|
+
},
|
|
733
|
+
"rate": {
|
|
734
|
+
"colors": {
|
|
735
|
+
"iconStroke": "#401960",
|
|
736
|
+
},
|
|
737
|
+
"spaces": {
|
|
738
|
+
"iconWrapperMarginRight": 4,
|
|
739
|
+
"iconWrapperPadding": 8,
|
|
691
740
|
},
|
|
692
741
|
},
|
|
693
|
-
"refreshControl":
|
|
694
|
-
"colors":
|
|
742
|
+
"refreshControl": {
|
|
743
|
+
"colors": {
|
|
695
744
|
"indicator": "#401960",
|
|
696
745
|
},
|
|
697
746
|
},
|
|
698
|
-
"richTextEditor":
|
|
699
|
-
"colors":
|
|
747
|
+
"richTextEditor": {
|
|
748
|
+
"colors": {
|
|
700
749
|
"text": "#001f23",
|
|
701
750
|
"toolbarBackgroundColor": "#f6f6f7",
|
|
702
751
|
"toolbarBorderColor": "#e8e9ea",
|
|
703
752
|
"toolbarButtonSelectedBackground": "#ece8ef",
|
|
704
753
|
},
|
|
705
|
-
"fontSizes":
|
|
754
|
+
"fontSizes": {
|
|
706
755
|
"editor": 14,
|
|
707
756
|
},
|
|
708
|
-
"radii":
|
|
757
|
+
"radii": {
|
|
709
758
|
"mention": 8,
|
|
710
759
|
},
|
|
711
|
-
"sizes":
|
|
760
|
+
"sizes": {
|
|
712
761
|
"editorMinHeight": 24,
|
|
713
762
|
"toolbarButtonSize": 48,
|
|
714
763
|
"toolbarSeparatorHeight": 16,
|
|
715
764
|
"toolbarSeparatorWidth": 2,
|
|
716
765
|
},
|
|
717
|
-
"space":
|
|
766
|
+
"space": {
|
|
718
767
|
"editorPadding": 16,
|
|
719
768
|
"mention": 4,
|
|
720
769
|
"toolbarHorizontalPadding": 8,
|
|
721
770
|
"wrapperMarginBottom": 16,
|
|
722
771
|
},
|
|
723
772
|
},
|
|
724
|
-
"sectionHeading":
|
|
725
|
-
"colors":
|
|
773
|
+
"sectionHeading": {
|
|
774
|
+
"colors": {
|
|
726
775
|
"background": "#f6f6f7",
|
|
776
|
+
"backgroundSmall": "#ccd2d3",
|
|
727
777
|
},
|
|
728
|
-
"space":
|
|
778
|
+
"space": {
|
|
729
779
|
"headingHorizontalPadding": 16,
|
|
730
780
|
"headingMarginBottom": 16,
|
|
731
781
|
"headingVerticalPadding": 8,
|
|
732
|
-
"iconMarginRight":
|
|
782
|
+
"iconMarginRight": 12,
|
|
733
783
|
},
|
|
734
784
|
},
|
|
735
|
-
"select":
|
|
736
|
-
"radii":
|
|
785
|
+
"select": {
|
|
786
|
+
"radii": {
|
|
737
787
|
"option": 4,
|
|
738
788
|
},
|
|
739
|
-
"space":
|
|
789
|
+
"space": {
|
|
740
790
|
"minimumOptionListHeight": 280,
|
|
741
791
|
"optionListHorizontalPadding": 12,
|
|
742
792
|
"optionSpacing": 4,
|
|
@@ -748,73 +798,73 @@ Object {
|
|
|
748
798
|
"suffixMarginRight": 12,
|
|
749
799
|
},
|
|
750
800
|
},
|
|
751
|
-
"skeleton":
|
|
752
|
-
"colors":
|
|
801
|
+
"skeleton": {
|
|
802
|
+
"colors": {
|
|
753
803
|
"darkBackground": "#ffffff",
|
|
754
|
-
"darkGradientEnd": "#
|
|
804
|
+
"darkGradientEnd": "#dadbde",
|
|
755
805
|
"darkGradientStart": "#ffffff",
|
|
756
806
|
"lightBackground": "#f6f6f7",
|
|
757
|
-
"lightGradientEnd": "#
|
|
807
|
+
"lightGradientEnd": "#dadbde",
|
|
758
808
|
"lightGradientStart": "#f6f6f7",
|
|
759
809
|
},
|
|
760
|
-
"radii":
|
|
810
|
+
"radii": {
|
|
761
811
|
"circular": 999,
|
|
762
812
|
"rectangular": 0,
|
|
763
813
|
"rounded": 16,
|
|
764
814
|
},
|
|
765
815
|
},
|
|
766
|
-
"slider":
|
|
767
|
-
"colors":
|
|
816
|
+
"slider": {
|
|
817
|
+
"colors": {
|
|
768
818
|
"maximumTrackTint": "#ece8ef",
|
|
769
819
|
"minimumTrackTint": "#401960",
|
|
770
820
|
"thumbTint": "#f6f6f7",
|
|
771
821
|
},
|
|
772
822
|
},
|
|
773
|
-
"spinner":
|
|
774
|
-
"colors":
|
|
775
|
-
"dot":
|
|
823
|
+
"spinner": {
|
|
824
|
+
"colors": {
|
|
825
|
+
"dot": {
|
|
776
826
|
"inverted": "#ffffff",
|
|
777
827
|
"primary": "#401960",
|
|
778
828
|
},
|
|
779
829
|
},
|
|
780
|
-
"radii":
|
|
830
|
+
"radii": {
|
|
781
831
|
"default": 999,
|
|
782
832
|
},
|
|
783
|
-
"space":
|
|
784
|
-
"spinnerDot":
|
|
833
|
+
"space": {
|
|
834
|
+
"spinnerDot": {
|
|
785
835
|
"medium": 16,
|
|
786
836
|
"small": 8,
|
|
787
837
|
},
|
|
788
|
-
"spinnerDotPadding":
|
|
838
|
+
"spinnerDotPadding": {
|
|
789
839
|
"medium": 8,
|
|
790
840
|
"small": 4,
|
|
791
841
|
},
|
|
792
|
-
"spinnerTextPaddingTop":
|
|
842
|
+
"spinnerTextPaddingTop": {
|
|
793
843
|
"medium": 8,
|
|
794
844
|
"small": 4,
|
|
795
845
|
},
|
|
796
846
|
},
|
|
797
847
|
},
|
|
798
|
-
"success":
|
|
799
|
-
"colors":
|
|
848
|
+
"success": {
|
|
849
|
+
"colors": {
|
|
800
850
|
"description": "#4d6265",
|
|
801
851
|
"fullScreenBackground": "#ccd2d3",
|
|
802
852
|
"inPageBackground": "#f6f6f7",
|
|
803
853
|
"title": "#001f23",
|
|
804
854
|
},
|
|
805
|
-
"fontSizes":
|
|
855
|
+
"fontSizes": {
|
|
806
856
|
"description": 18,
|
|
807
857
|
"title": 24,
|
|
808
858
|
},
|
|
809
|
-
"fonts":
|
|
859
|
+
"fonts": {
|
|
810
860
|
"description": "RebondGrotesque",
|
|
811
861
|
"title": "RebondGrotesque-SemiBold",
|
|
812
862
|
},
|
|
813
|
-
"sizes":
|
|
863
|
+
"sizes": {
|
|
814
864
|
"image": 176,
|
|
815
865
|
},
|
|
816
|
-
"space":
|
|
817
|
-
"button":
|
|
866
|
+
"space": {
|
|
867
|
+
"button": {
|
|
818
868
|
"margin": 16,
|
|
819
869
|
"padding": 16,
|
|
820
870
|
"wrapperHorizontalPadding": 16,
|
|
@@ -825,54 +875,61 @@ Object {
|
|
|
825
875
|
"wrapperPadding": 24,
|
|
826
876
|
},
|
|
827
877
|
},
|
|
828
|
-
"swipeable":
|
|
829
|
-
"colors":
|
|
878
|
+
"swipeable": {
|
|
879
|
+
"colors": {
|
|
830
880
|
"danger": "#f46363",
|
|
881
|
+
"defaultContainerBackground": "#ffffff",
|
|
831
882
|
"primary": "#401960",
|
|
832
883
|
"success": "#5ace7d",
|
|
833
884
|
},
|
|
885
|
+
"radii": {
|
|
886
|
+
"swipeableContainer": 8,
|
|
887
|
+
},
|
|
888
|
+
"space": {
|
|
889
|
+
"containerExtraWidth": 4,
|
|
890
|
+
},
|
|
834
891
|
},
|
|
835
|
-
"switch":
|
|
836
|
-
"colors":
|
|
837
|
-
"backgroundColors":
|
|
892
|
+
"switch": {
|
|
893
|
+
"colors": {
|
|
894
|
+
"backgroundColors": {
|
|
838
895
|
"checked": "#401960",
|
|
839
896
|
"disabled-checked": "#ece8ef",
|
|
840
897
|
"disabled-unchecked": "#bfc1c5",
|
|
841
898
|
"unchecked": "#808f91",
|
|
842
899
|
},
|
|
843
|
-
"selector":
|
|
844
|
-
"background": "#
|
|
845
|
-
"textBackground": "#
|
|
900
|
+
"selector": {
|
|
901
|
+
"background": "#ffffff",
|
|
902
|
+
"textBackground": "#ccd2d3",
|
|
846
903
|
},
|
|
847
904
|
"thumb": "#ffffff",
|
|
848
905
|
},
|
|
849
|
-
"radii":
|
|
906
|
+
"radii": {
|
|
850
907
|
"rounded": 999,
|
|
851
|
-
"selector":
|
|
908
|
+
"selector": {
|
|
852
909
|
"default": 999,
|
|
853
910
|
},
|
|
854
911
|
},
|
|
855
|
-
"sizes":
|
|
912
|
+
"sizes": {
|
|
856
913
|
"height": 24,
|
|
857
|
-
"selector":
|
|
858
|
-
"height":
|
|
914
|
+
"selector": {
|
|
915
|
+
"height": 40,
|
|
859
916
|
},
|
|
860
917
|
"thumb": 16,
|
|
861
918
|
"width": 48,
|
|
862
919
|
},
|
|
863
|
-
"spaces":
|
|
920
|
+
"spaces": {
|
|
864
921
|
"paddingHorizontal": 4,
|
|
865
|
-
"selector":
|
|
922
|
+
"selector": {
|
|
866
923
|
"iconPadding": 16,
|
|
867
|
-
"
|
|
924
|
+
"wrapperHorizontalPadding": 4,
|
|
868
925
|
},
|
|
869
926
|
},
|
|
870
927
|
},
|
|
871
|
-
"tabs":
|
|
872
|
-
"borderWidths":
|
|
873
|
-
"headerBottom":
|
|
928
|
+
"tabs": {
|
|
929
|
+
"borderWidths": {
|
|
930
|
+
"headerBottom": 2,
|
|
874
931
|
},
|
|
875
|
-
"colors":
|
|
932
|
+
"colors": {
|
|
876
933
|
"active": "#001f23",
|
|
877
934
|
"activeBackground": "#ccd2d3",
|
|
878
935
|
"headerBottom": "#e8e9ea",
|
|
@@ -880,106 +937,107 @@ Object {
|
|
|
880
937
|
"indicator": "#401960",
|
|
881
938
|
"text": "#001f23",
|
|
882
939
|
},
|
|
883
|
-
"radii":
|
|
884
|
-
"outline":
|
|
940
|
+
"radii": {
|
|
941
|
+
"outline": 16,
|
|
885
942
|
},
|
|
886
|
-
"sizes":
|
|
943
|
+
"sizes": {
|
|
887
944
|
"indicator": 2,
|
|
888
945
|
},
|
|
889
|
-
"space":
|
|
946
|
+
"space": {
|
|
890
947
|
"flatListHorizontalPadding": 8,
|
|
891
948
|
"itemHorizontalPadding": 8,
|
|
892
949
|
"itemMargin": 12,
|
|
893
950
|
"itemVerticalPadding": 8,
|
|
894
951
|
"outlineHorizontalPadding": 8,
|
|
895
952
|
"outlineVerticalPadding": 4,
|
|
953
|
+
"tabIndicatorBottom": -2,
|
|
896
954
|
},
|
|
897
955
|
},
|
|
898
|
-
"tag":
|
|
899
|
-
"borderWidths":
|
|
956
|
+
"tag": {
|
|
957
|
+
"borderWidths": {
|
|
900
958
|
"default": 1,
|
|
901
959
|
},
|
|
902
|
-
"colors":
|
|
903
|
-
"archived": "#
|
|
904
|
-
"archivedBackground": "#
|
|
905
|
-
"danger": "#
|
|
960
|
+
"colors": {
|
|
961
|
+
"archived": "#606065",
|
|
962
|
+
"archivedBackground": "#dadbde",
|
|
963
|
+
"danger": "#cb300a",
|
|
906
964
|
"dangerBackground": "#fcebe7",
|
|
907
|
-
"info": "#
|
|
965
|
+
"info": "#355bfb",
|
|
908
966
|
"infoBackground": "#ecf0ff",
|
|
909
|
-
"primary": "#
|
|
910
|
-
"primaryBackground":
|
|
967
|
+
"primary": "#401960",
|
|
968
|
+
"primaryBackground": "#ece8ef",
|
|
911
969
|
"success": "#017d6d",
|
|
912
970
|
"successBackground": "#f0fef4",
|
|
913
971
|
"text": "#001f23",
|
|
914
|
-
"warning": "#
|
|
972
|
+
"warning": "#ac5d00",
|
|
915
973
|
"warningBackground": "#fff6eb",
|
|
916
974
|
},
|
|
917
|
-
"fontSizes":
|
|
975
|
+
"fontSizes": {
|
|
918
976
|
"default": 12,
|
|
919
977
|
},
|
|
920
|
-
"fonts":
|
|
978
|
+
"fonts": {
|
|
921
979
|
"default": "BeVietnamPro-SemiBold",
|
|
922
980
|
},
|
|
923
|
-
"lineHeights":
|
|
981
|
+
"lineHeights": {
|
|
924
982
|
"default": 16,
|
|
925
983
|
},
|
|
926
|
-
"radii":
|
|
984
|
+
"radii": {
|
|
927
985
|
"default": 4,
|
|
928
986
|
},
|
|
929
|
-
"space":
|
|
987
|
+
"space": {
|
|
930
988
|
"horizontalPadding": 8,
|
|
931
989
|
"verticalPadding": 4,
|
|
932
990
|
},
|
|
933
991
|
},
|
|
934
|
-
"textInput":
|
|
935
|
-
"borderWidths":
|
|
936
|
-
"container":
|
|
992
|
+
"textInput": {
|
|
993
|
+
"borderWidths": {
|
|
994
|
+
"container": {
|
|
937
995
|
"focused": 2,
|
|
938
996
|
"normal": 1,
|
|
939
997
|
},
|
|
940
998
|
},
|
|
941
|
-
"colors":
|
|
942
|
-
"asterisks":
|
|
943
|
-
"default": "#
|
|
999
|
+
"colors": {
|
|
1000
|
+
"asterisks": {
|
|
1001
|
+
"default": "#cb300a",
|
|
944
1002
|
"disabled": "#bfc1c5",
|
|
945
|
-
"error": "#
|
|
946
|
-
"filled": "#
|
|
1003
|
+
"error": "#cb300a",
|
|
1004
|
+
"filled": "#cb300a",
|
|
947
1005
|
"readonly": "#808f91",
|
|
948
1006
|
},
|
|
949
|
-
"borders":
|
|
1007
|
+
"borders": {
|
|
950
1008
|
"default": "#001f23",
|
|
951
1009
|
"disabled": "#bfc1c5",
|
|
952
|
-
"error": "#
|
|
1010
|
+
"error": "#cb300a",
|
|
953
1011
|
"filled": "#001f23",
|
|
954
1012
|
"readonly": "#808f91",
|
|
955
1013
|
},
|
|
956
1014
|
"containerBackground": "#ffffff",
|
|
957
|
-
"error": "#
|
|
1015
|
+
"error": "#cb300a",
|
|
958
1016
|
"labelBackground": "#ffffff",
|
|
959
|
-
"labels":
|
|
1017
|
+
"labels": {
|
|
960
1018
|
"default": "#001f23",
|
|
961
1019
|
"disabled": "#bfc1c5",
|
|
962
1020
|
"error": "#001f23",
|
|
963
1021
|
"filled": "#001f23",
|
|
964
1022
|
"readonly": "#808f91",
|
|
965
1023
|
},
|
|
966
|
-
"labelsInsideTextInput":
|
|
1024
|
+
"labelsInsideTextInput": {
|
|
967
1025
|
"default": "#001f23",
|
|
968
1026
|
"disabled": "#bfc1c5",
|
|
969
1027
|
"error": "#001f23",
|
|
970
1028
|
"filled": "#001f23",
|
|
971
1029
|
"readonly": "#808f91",
|
|
972
1030
|
},
|
|
973
|
-
"maxLengthLabels":
|
|
1031
|
+
"maxLengthLabels": {
|
|
974
1032
|
"default": "#001f23",
|
|
975
1033
|
"disabled": "#bfc1c5",
|
|
976
|
-
"error": "#
|
|
1034
|
+
"error": "#cb300a",
|
|
977
1035
|
"filled": "#001f23",
|
|
978
1036
|
"readonly": "#808f91",
|
|
979
1037
|
},
|
|
980
1038
|
"text": "#001f23",
|
|
981
1039
|
},
|
|
982
|
-
"fontSizes":
|
|
1040
|
+
"fontSizes": {
|
|
983
1041
|
"asteriskLabel": 16,
|
|
984
1042
|
"error": 12,
|
|
985
1043
|
"labelInsideTextInput": 16,
|
|
@@ -987,70 +1045,70 @@ Object {
|
|
|
987
1045
|
"text": 16,
|
|
988
1046
|
"topLabel": 12,
|
|
989
1047
|
},
|
|
990
|
-
"fonts":
|
|
1048
|
+
"fonts": {
|
|
991
1049
|
"text": "BeVietnamPro-Regular",
|
|
992
1050
|
},
|
|
993
|
-
"lineHeights":
|
|
1051
|
+
"lineHeights": {
|
|
994
1052
|
"topLabel": 12,
|
|
995
1053
|
},
|
|
996
|
-
"radii":
|
|
1054
|
+
"radii": {
|
|
997
1055
|
"container": 8,
|
|
998
1056
|
},
|
|
999
|
-
"sizes":
|
|
1057
|
+
"sizes": {
|
|
1000
1058
|
"errorAndHelpTextContainerHeight": 16,
|
|
1001
1059
|
"textInputMaxHeight": 144,
|
|
1002
1060
|
"textareaHeight": 144,
|
|
1003
1061
|
},
|
|
1004
|
-
"space":
|
|
1062
|
+
"space": {
|
|
1005
1063
|
"containerMarginTop": 8,
|
|
1006
1064
|
"containerPadding": 16,
|
|
1007
|
-
"
|
|
1065
|
+
"errorAndHelpTextContainerHorizontalPadding": 16,
|
|
1066
|
+
"errorAndHelpTextContainerPaddingTop": 2,
|
|
1008
1067
|
"errorContainerMarginRight": 4,
|
|
1009
1068
|
"errorMarginLeft": 4,
|
|
1010
1069
|
"inputHorizontalMargin": 8,
|
|
1011
1070
|
"labelHorizontalPadding": 4,
|
|
1012
1071
|
"labelInsideTextInputMarginTop": -2,
|
|
1013
|
-
"labelLeft":
|
|
1072
|
+
"labelLeft": 32,
|
|
1014
1073
|
"labelPaddingBottom": 8,
|
|
1015
|
-
"labelTop":
|
|
1016
|
-
"maxLengthLabelMarginLeft": 4,
|
|
1074
|
+
"labelTop": 10.666666666666666,
|
|
1017
1075
|
},
|
|
1018
1076
|
},
|
|
1019
|
-
"timePicker":
|
|
1020
|
-
"sizes":
|
|
1077
|
+
"timePicker": {
|
|
1078
|
+
"sizes": {
|
|
1021
1079
|
"height": 176,
|
|
1022
1080
|
},
|
|
1023
1081
|
},
|
|
1024
|
-
"toast":
|
|
1025
|
-
"borderWidths":
|
|
1082
|
+
"toast": {
|
|
1083
|
+
"borderWidths": {
|
|
1026
1084
|
"base": 1,
|
|
1027
1085
|
},
|
|
1028
|
-
"colors":
|
|
1086
|
+
"colors": {
|
|
1029
1087
|
"divider": "#e8e9ea",
|
|
1030
1088
|
"error": "#f46363",
|
|
1031
1089
|
"info": "#b5c3fd",
|
|
1032
1090
|
"notification": "#ffffff",
|
|
1033
|
-
"shadow": "#001f23",
|
|
1034
1091
|
"snackbar": "#001f23",
|
|
1035
1092
|
"success": "#5ace7d",
|
|
1036
1093
|
"warning": "#ffbe71",
|
|
1037
1094
|
},
|
|
1038
|
-
"radii":
|
|
1095
|
+
"radii": {
|
|
1039
1096
|
"default": 16,
|
|
1040
1097
|
},
|
|
1041
|
-
"shadows":
|
|
1042
|
-
"
|
|
1043
|
-
"
|
|
1098
|
+
"shadows": {
|
|
1099
|
+
"color": "#001f23",
|
|
1100
|
+
"elevation": 3,
|
|
1101
|
+
"offset": {
|
|
1044
1102
|
"height": 2,
|
|
1045
1103
|
"width": 0,
|
|
1046
1104
|
},
|
|
1047
1105
|
"opacity": 0.12,
|
|
1048
1106
|
"radius": 4,
|
|
1049
1107
|
},
|
|
1050
|
-
"sizes":
|
|
1108
|
+
"sizes": {
|
|
1051
1109
|
"height": 48,
|
|
1052
1110
|
},
|
|
1053
|
-
"space":
|
|
1111
|
+
"space": {
|
|
1054
1112
|
"contentVerticalPadding": 12,
|
|
1055
1113
|
"ctaPadding": 12,
|
|
1056
1114
|
"iconLeftPadding": 12,
|
|
@@ -1059,11 +1117,11 @@ Object {
|
|
|
1059
1117
|
"wrapperVerticalPadding": 24,
|
|
1060
1118
|
},
|
|
1061
1119
|
},
|
|
1062
|
-
"toolbar":
|
|
1063
|
-
"borderWidths":
|
|
1120
|
+
"toolbar": {
|
|
1121
|
+
"borderWidths": {
|
|
1064
1122
|
"default": 1,
|
|
1065
1123
|
},
|
|
1066
|
-
"colors":
|
|
1124
|
+
"colors": {
|
|
1067
1125
|
"background": "#ffffff",
|
|
1068
1126
|
"border": "#e8e9ea",
|
|
1069
1127
|
"danger": "#ffbe71",
|
|
@@ -1075,26 +1133,26 @@ Object {
|
|
|
1075
1133
|
"secondary": "#795e90",
|
|
1076
1134
|
"success": "#5ace7d",
|
|
1077
1135
|
},
|
|
1078
|
-
"radii":
|
|
1136
|
+
"radii": {
|
|
1079
1137
|
"iconButtonWrapperBorderRadius": 24,
|
|
1080
1138
|
},
|
|
1081
|
-
"sizes":
|
|
1139
|
+
"sizes": {
|
|
1082
1140
|
"itemWrapperHeight": 64,
|
|
1083
1141
|
},
|
|
1084
|
-
"space":
|
|
1142
|
+
"space": {
|
|
1085
1143
|
"horizontalPadding": 8,
|
|
1086
1144
|
"iconButtonLabelMarginLeft": 8,
|
|
1087
1145
|
"iconButtonWrapperPadding": 12,
|
|
1088
1146
|
"verticalPadding": 8,
|
|
1089
1147
|
},
|
|
1090
1148
|
},
|
|
1091
|
-
"typography":
|
|
1092
|
-
"colors":
|
|
1093
|
-
"archived": "#
|
|
1149
|
+
"typography": {
|
|
1150
|
+
"colors": {
|
|
1151
|
+
"archived": "#606065",
|
|
1094
1152
|
"body": "#001f23",
|
|
1095
1153
|
"danger": "#f46363",
|
|
1096
1154
|
"disabled": "#bfc1c5",
|
|
1097
|
-
"info": "#
|
|
1155
|
+
"info": "#355bfb",
|
|
1098
1156
|
"inverted": "#ffffff",
|
|
1099
1157
|
"primary": "#401960",
|
|
1100
1158
|
"secondary": "#795e90",
|
|
@@ -1102,36 +1160,158 @@ Object {
|
|
|
1102
1160
|
"success": "#5ace7d",
|
|
1103
1161
|
"warning": "#ffbe71",
|
|
1104
1162
|
},
|
|
1105
|
-
"fontSizes":
|
|
1163
|
+
"fontSizes": {
|
|
1106
1164
|
"6xlarge": 36,
|
|
1107
1165
|
"7xlarge": 42,
|
|
1166
|
+
"body": {
|
|
1167
|
+
"neutral": {
|
|
1168
|
+
"regular": 16,
|
|
1169
|
+
"small": 14,
|
|
1170
|
+
},
|
|
1171
|
+
"playful": {
|
|
1172
|
+
"regular": 18,
|
|
1173
|
+
"small": 16,
|
|
1174
|
+
},
|
|
1175
|
+
},
|
|
1176
|
+
"caption": 12,
|
|
1177
|
+
"label": 10,
|
|
1108
1178
|
"large": 16,
|
|
1109
1179
|
"medium": 14,
|
|
1110
1180
|
"small": 12,
|
|
1181
|
+
"titles": {
|
|
1182
|
+
"neutral": {
|
|
1183
|
+
"h1": 42,
|
|
1184
|
+
"h2": 32,
|
|
1185
|
+
"h3": 28,
|
|
1186
|
+
"h4": 24,
|
|
1187
|
+
"h5": 18,
|
|
1188
|
+
"h6": 18,
|
|
1189
|
+
},
|
|
1190
|
+
"playful": {
|
|
1191
|
+
"h1": 36,
|
|
1192
|
+
"h2": 32,
|
|
1193
|
+
"h3": 28,
|
|
1194
|
+
"h4": 24,
|
|
1195
|
+
"h5": 18,
|
|
1196
|
+
"h6": 16,
|
|
1197
|
+
},
|
|
1198
|
+
},
|
|
1111
1199
|
"xlarge": 18,
|
|
1112
1200
|
"xsmall": 10,
|
|
1113
1201
|
"xxxlarge": 24,
|
|
1114
1202
|
"xxxxlarge": 28,
|
|
1115
1203
|
"xxxxxlarge": 32,
|
|
1116
1204
|
},
|
|
1117
|
-
"
|
|
1118
|
-
"
|
|
1205
|
+
"fontWeights": {
|
|
1206
|
+
"body": {
|
|
1207
|
+
"neutral": {
|
|
1208
|
+
"regular": "BeVietnamPro-Regular",
|
|
1209
|
+
"semiBold": "BeVietnamPro-SemiBold",
|
|
1210
|
+
},
|
|
1211
|
+
"playful": {
|
|
1212
|
+
"regular": "RebondGrotesque",
|
|
1213
|
+
"semiBold": "RebondGrotesque-SemiBold",
|
|
1214
|
+
},
|
|
1215
|
+
},
|
|
1216
|
+
"titles": {
|
|
1217
|
+
"neutral": {
|
|
1218
|
+
"h1": "BeVietnamPro-Regular",
|
|
1219
|
+
"h2": "BeVietnamPro-SemiBold",
|
|
1220
|
+
"h3": "BeVietnamPro-SemiBold",
|
|
1221
|
+
"h4": "BeVietnamPro-SemiBold",
|
|
1222
|
+
"h5": "BeVietnamPro-SemiBold",
|
|
1223
|
+
"h6": "BeVietnamPro-Regular",
|
|
1224
|
+
},
|
|
1225
|
+
"playful": {
|
|
1226
|
+
"h1": "RebondGrotesque-SemiBold",
|
|
1227
|
+
"h2": "RebondGrotesque-SemiBold",
|
|
1228
|
+
"h3": "RebondGrotesque-SemiBold",
|
|
1229
|
+
"h4": "RebondGrotesque-SemiBold",
|
|
1230
|
+
"h5": "RebondGrotesque-SemiBold",
|
|
1231
|
+
"h6": "RebondGrotesque",
|
|
1232
|
+
},
|
|
1233
|
+
},
|
|
1234
|
+
},
|
|
1235
|
+
"fonts": {
|
|
1236
|
+
"neutral": {
|
|
1119
1237
|
"light": "BeVietnamPro-Light",
|
|
1120
1238
|
"regular": "BeVietnamPro-Regular",
|
|
1121
1239
|
"semiBold": "BeVietnamPro-SemiBold",
|
|
1122
1240
|
},
|
|
1123
|
-
"playful":
|
|
1241
|
+
"playful": {
|
|
1124
1242
|
"light": "RebondGrotesque-Light",
|
|
1125
1243
|
"regular": "RebondGrotesque",
|
|
1126
1244
|
"semiBold": "RebondGrotesque-SemiBold",
|
|
1127
1245
|
},
|
|
1128
1246
|
},
|
|
1129
|
-
"
|
|
1247
|
+
"letterSpacings": {
|
|
1248
|
+
"body": {
|
|
1249
|
+
"neutral": {
|
|
1250
|
+
"regular": 0.48,
|
|
1251
|
+
"semiBold": 0.24,
|
|
1252
|
+
"small": 0.48,
|
|
1253
|
+
},
|
|
1254
|
+
"playful": {
|
|
1255
|
+
"regular": 0.54,
|
|
1256
|
+
"semiBold": 0.54,
|
|
1257
|
+
"small": 0.54,
|
|
1258
|
+
},
|
|
1259
|
+
},
|
|
1260
|
+
"titles": {
|
|
1261
|
+
"neutral": {
|
|
1262
|
+
"h1": 0,
|
|
1263
|
+
"h2": 1.5,
|
|
1264
|
+
"h3": 0.24,
|
|
1265
|
+
"h4": 0,
|
|
1266
|
+
"h5": 0.24,
|
|
1267
|
+
"h6": 0.48,
|
|
1268
|
+
},
|
|
1269
|
+
"playful": {
|
|
1270
|
+
"h1": 1.5,
|
|
1271
|
+
"h2": 1.5,
|
|
1272
|
+
"h3": 0.24,
|
|
1273
|
+
"h4": 0.24,
|
|
1274
|
+
"h5": 0.24,
|
|
1275
|
+
"h6": 0.48,
|
|
1276
|
+
},
|
|
1277
|
+
},
|
|
1278
|
+
},
|
|
1279
|
+
"lineHeights": {
|
|
1130
1280
|
"6xlarge": 44,
|
|
1131
1281
|
"7xlarge": 50,
|
|
1282
|
+
"body": {
|
|
1283
|
+
"neutral": {
|
|
1284
|
+
"regular": 24,
|
|
1285
|
+
"small": 22,
|
|
1286
|
+
},
|
|
1287
|
+
"playful": {
|
|
1288
|
+
"regular": 26,
|
|
1289
|
+
"small": 24,
|
|
1290
|
+
},
|
|
1291
|
+
},
|
|
1292
|
+
"caption": 16,
|
|
1293
|
+
"label": 14,
|
|
1132
1294
|
"large": 24,
|
|
1133
1295
|
"medium": 22,
|
|
1134
1296
|
"small": 16,
|
|
1297
|
+
"titles": {
|
|
1298
|
+
"neutral": {
|
|
1299
|
+
"h1": 50,
|
|
1300
|
+
"h2": 40,
|
|
1301
|
+
"h3": 36,
|
|
1302
|
+
"h4": 32,
|
|
1303
|
+
"h5": 28,
|
|
1304
|
+
"h6": 28,
|
|
1305
|
+
},
|
|
1306
|
+
"playful": {
|
|
1307
|
+
"h1": 44,
|
|
1308
|
+
"h2": 40,
|
|
1309
|
+
"h3": 36,
|
|
1310
|
+
"h4": 32,
|
|
1311
|
+
"h5": 26,
|
|
1312
|
+
"h6": 28,
|
|
1313
|
+
},
|
|
1314
|
+
},
|
|
1135
1315
|
"xlarge": 26,
|
|
1136
1316
|
"xsmall": 14,
|
|
1137
1317
|
"xxxlarge": 32,
|
|
@@ -1140,13 +1320,13 @@ Object {
|
|
|
1140
1320
|
},
|
|
1141
1321
|
},
|
|
1142
1322
|
},
|
|
1143
|
-
"borderWidths":
|
|
1323
|
+
"borderWidths": {
|
|
1144
1324
|
"base": 1,
|
|
1145
1325
|
"medium": 2,
|
|
1146
1326
|
},
|
|
1147
|
-
"colors":
|
|
1327
|
+
"colors": {
|
|
1148
1328
|
"archived": "#abacaf",
|
|
1149
|
-
"archivedSurface": "#
|
|
1329
|
+
"archivedSurface": "#dadbde",
|
|
1150
1330
|
"darkGlobalSurface": "#001f23",
|
|
1151
1331
|
"decorativePrimary": "#ffffff",
|
|
1152
1332
|
"decorativePrimarySurface": "#ccd2d3",
|
|
@@ -1168,17 +1348,17 @@ Object {
|
|
|
1168
1348
|
"mutedSuccess": "#7bd897",
|
|
1169
1349
|
"mutedWarning": "#ffcb8d",
|
|
1170
1350
|
"neutralGlobalSurface": "#f6f6f7",
|
|
1171
|
-
"onArchivedSurface": "#
|
|
1351
|
+
"onArchivedSurface": "#606065",
|
|
1172
1352
|
"onDarkGlobalSurface": "#ffffff",
|
|
1173
1353
|
"onDefaultGlobalSurface": "#001f23",
|
|
1174
|
-
"onErrorSurface": "#
|
|
1175
|
-
"onInfoSurface": "#
|
|
1354
|
+
"onErrorSurface": "#cb300a",
|
|
1355
|
+
"onInfoSurface": "#355bfb",
|
|
1176
1356
|
"onPrimary": "#ffffff",
|
|
1177
1357
|
"onSecondary": "#ffffff",
|
|
1178
1358
|
"onSuccessSurface": "#017d6d",
|
|
1179
|
-
"onWarningSurface": "#
|
|
1359
|
+
"onWarningSurface": "#ac5d00",
|
|
1180
1360
|
"overlayGlobalSurface": "#000000",
|
|
1181
|
-
"pressedSurface": "#
|
|
1361
|
+
"pressedSurface": "#33144d",
|
|
1182
1362
|
"primary": "#401960",
|
|
1183
1363
|
"primaryOutline": "#001f23",
|
|
1184
1364
|
"secondary": "#795e90",
|
|
@@ -1188,7 +1368,7 @@ Object {
|
|
|
1188
1368
|
"warning": "#ffbe71",
|
|
1189
1369
|
"warningSurface": "#fff6eb",
|
|
1190
1370
|
},
|
|
1191
|
-
"fontSizes":
|
|
1371
|
+
"fontSizes": {
|
|
1192
1372
|
"6xlarge": 36,
|
|
1193
1373
|
"7xlarge": 42,
|
|
1194
1374
|
"large": 16,
|
|
@@ -1201,19 +1381,19 @@ Object {
|
|
|
1201
1381
|
"xxxxlarge": 28,
|
|
1202
1382
|
"xxxxxlarge": 32,
|
|
1203
1383
|
},
|
|
1204
|
-
"fonts":
|
|
1205
|
-
"neutral":
|
|
1384
|
+
"fonts": {
|
|
1385
|
+
"neutral": {
|
|
1206
1386
|
"light": "BeVietnamPro-Light",
|
|
1207
1387
|
"regular": "BeVietnamPro-Regular",
|
|
1208
1388
|
"semiBold": "BeVietnamPro-SemiBold",
|
|
1209
1389
|
},
|
|
1210
|
-
"playful":
|
|
1390
|
+
"playful": {
|
|
1211
1391
|
"light": "RebondGrotesque-Light",
|
|
1212
1392
|
"regular": "RebondGrotesque",
|
|
1213
1393
|
"semiBold": "RebondGrotesque-SemiBold",
|
|
1214
1394
|
},
|
|
1215
1395
|
},
|
|
1216
|
-
"lineHeights":
|
|
1396
|
+
"lineHeights": {
|
|
1217
1397
|
"6xlarge": 44,
|
|
1218
1398
|
"7xlarge": 50,
|
|
1219
1399
|
"large": 24,
|
|
@@ -1226,7 +1406,7 @@ Object {
|
|
|
1226
1406
|
"xxxxlarge": 36,
|
|
1227
1407
|
"xxxxxlarge": 40,
|
|
1228
1408
|
},
|
|
1229
|
-
"radii":
|
|
1409
|
+
"radii": {
|
|
1230
1410
|
"5xlarge": 32,
|
|
1231
1411
|
"base": 4,
|
|
1232
1412
|
"large": 12,
|
|
@@ -1236,11 +1416,24 @@ Object {
|
|
|
1236
1416
|
"xxlarge": 20,
|
|
1237
1417
|
"xxxlarge": 24,
|
|
1238
1418
|
},
|
|
1239
|
-
"
|
|
1419
|
+
"shadows": {
|
|
1420
|
+
"default": {
|
|
1421
|
+
"elevation": 3,
|
|
1422
|
+
"shadowColor": "#001f23",
|
|
1423
|
+
"shadowOffset": {
|
|
1424
|
+
"height": 2,
|
|
1425
|
+
"width": 0,
|
|
1426
|
+
},
|
|
1427
|
+
"shadowOpacity": 0.12,
|
|
1428
|
+
"shadowRadius": 4,
|
|
1429
|
+
},
|
|
1430
|
+
},
|
|
1431
|
+
"sizes": {
|
|
1240
1432
|
"14xlarge": 136,
|
|
1241
1433
|
"15xlarge": 144,
|
|
1242
1434
|
"18xlarge": 168,
|
|
1243
1435
|
"19xlarge": 176,
|
|
1436
|
+
"5xlarge": 64,
|
|
1244
1437
|
"6xlarge": 72,
|
|
1245
1438
|
"7xlarge": 80,
|
|
1246
1439
|
"9xlarge": 96,
|
|
@@ -1256,7 +1449,8 @@ Object {
|
|
|
1256
1449
|
"xxxxlarge": 56,
|
|
1257
1450
|
"xxxxxlarge": 64,
|
|
1258
1451
|
},
|
|
1259
|
-
"space":
|
|
1452
|
+
"space": {
|
|
1453
|
+
"5xlarge": 64,
|
|
1260
1454
|
"large": 24,
|
|
1261
1455
|
"medium": 16,
|
|
1262
1456
|
"small": 8,
|