@hero-design/rn 8.68.0-alpha.1 → 8.68.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 +8 -0
- package/CHANGELOG.md +12 -0
- package/es/index.js +514 -155
- package/lib/index.js +514 -154
- package/package.json +1 -1
- package/src/components/Accordion/__tests__/__snapshots__/AccordionItem.spec.tsx.snap +4 -4
- package/src/components/Accordion/__tests__/__snapshots__/index.spec.tsx.snap +6 -6
- package/src/components/Alert/StyledAlert.tsx +24 -2
- package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +150 -30
- package/src/components/Alert/index.tsx +15 -10
- package/src/components/AnimatedScroller/__tests__/__snapshots__/ScrollablesWithFAB.spec.tsx.snap +18 -18
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/StyledAvatarStack.spec.tsx.snap +2 -2
- package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +1 -1
- package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +3 -3
- package/src/components/Badge/StyledBadge.tsx +13 -5
- package/src/components/Badge/__tests__/Badge.spec.tsx +9 -0
- package/src/components/Badge/__tests__/__snapshots__/Badge.spec.tsx.snap +129 -13
- package/src/components/Badge/index.tsx +8 -2
- package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +3 -3
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +4 -4
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +12 -12
- package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +21 -21
- package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +12 -12
- package/src/components/Calendar/__tests__/__snapshots__/CalendarRowItem.spec.tsx.snap +5 -5
- package/src/components/Card/DataCard/__tests__/__snapshots__/StyledDataCard.spec.tsx.snap +1 -1
- package/src/components/Card/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
- package/src/components/Carousel/__tests__/__snapshots__/CardCarousel.spec.tsx.snap +4 -4
- package/src/components/Carousel/__tests__/__snapshots__/StyledCardCarousel.spec.tsx.snap +3 -3
- package/src/components/Carousel/__tests__/__snapshots__/StyledCarousel.spec.tsx.snap +2 -2
- package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +30 -30
- package/src/components/Chip/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +1 -1
- package/src/components/Error/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
- package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +22 -22
- package/src/components/FAB/__tests__/__snapshots__/AnimatedFABIcon.spec.tsx.snap +2 -2
- package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +3 -3
- package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +4 -4
- package/src/components/HeroDesignProvider/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
- package/src/components/Icon/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
- package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +2 -2
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +6 -6
- package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +2 -2
- package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +2 -2
- package/src/components/PageControl/__tests__/__snapshots__/index.spec.tsx.snap +3 -3
- package/src/components/Progress/__tests__/__snapshots__/index.spec.js.snap +5 -5
- package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +10 -10
- package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +14 -14
- package/src/components/Rate/__tests__/__snapshots__/index.spec.tsx.snap +10 -10
- package/src/components/Search/SearchOneLine.tsx +196 -0
- package/src/components/Search/SearchSuffixIcon.tsx +37 -0
- package/src/components/Search/SearchTwoLine.tsx +64 -0
- package/src/components/Search/StyledSearch.tsx +67 -0
- package/src/components/Search/__tests__/SearchOneLine.spec.tsx +197 -0
- package/src/components/Search/__tests__/SearchSuffixIcon.spec.tsx +12 -0
- package/src/components/Search/__tests__/SearchTwoLine.spec.tsx +20 -0
- package/src/components/Search/__tests__/__snapshots__/SearchOneLine.spec.tsx.snap +707 -0
- package/src/components/Search/__tests__/__snapshots__/SearchSuffixIcon.spec.tsx.snap +134 -0
- package/src/components/Search/__tests__/__snapshots__/SearchTwoLine.spec.tsx.snap +170 -0
- package/src/components/Search/__tests__/__snapshots__/utils.spec.tsx.snap +115 -0
- package/src/components/Search/__tests__/utils.spec.tsx +19 -0
- package/src/components/Search/index.tsx +17 -0
- package/src/components/Search/utils.tsx +31 -0
- package/src/components/SectionHeading/__tests__/__snapshots__/StyledHeading.spec.tsx.snap +1 -1
- package/src/components/SectionHeading/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +2 -2
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +14 -14
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +14 -14
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +1 -1
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +8 -8
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
- package/src/components/Slider/__tests__/__snapshots__/index.spec.tsx.snap +9 -9
- package/src/components/Spinner/__tests__/__snapshots__/AnimatedSpinner.spec.tsx.snap +4 -4
- package/src/components/Spinner/__tests__/__snapshots__/StyledSpinner.spec.tsx.snap +32 -32
- package/src/components/Spinner/__tests__/__snapshots__/index.spec.tsx.snap +4 -4
- package/src/components/Success/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
- package/src/components/Swipeable/__tests__/__snapshots__/SwipeableAction.spec.tsx.snap +1 -1
- package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
- package/src/components/Switch/__tests__/__snapshots__/StyledSwitch.spec.tsx.snap +2 -2
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +24 -9
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabsHeader.spec.tsx.snap +19 -9
- package/src/components/Tabs/__tests__/__snapshots__/TabWithBadge.spec.tsx.snap +7 -2
- package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +24 -9
- package/src/components/Tag/__tests__/__snapshots__/Tag.spec.tsx.snap +5 -5
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +1 -1
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarGroup.spec.tsx.snap +18 -18
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +7 -7
- package/src/components/Typography/Body/__tests__/__snapshots__/StyledBody.tsx.snap +1 -1
- package/src/components/Typography/Body/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
- package/src/components/Typography/Caption/__tests__/__snapshots__/StyledCaption.spec.tsx.snap +1 -1
- package/src/components/Typography/Caption/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
- package/src/components/Typography/Label/__tests__/__snapshots__/StyledLabel.tsx.snap +1 -1
- package/src/components/Typography/Label/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
- package/src/components/Typography/Text/__tests__/__snapshots__/StyledText.spec.tsx.snap +1 -1
- package/src/components/Typography/Title/__tests__/__snapshots__/StyledTitle.tsx.snap +1 -1
- package/src/components/Typography/Title/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
- package/src/index.ts +2 -0
- package/src/theme/ThemeSwitcher.tsx +2 -12
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +136 -77
- package/src/theme/components/alert.ts +14 -5
- package/src/theme/components/badge.ts +21 -21
- package/src/theme/components/search.ts +56 -0
- package/src/theme/getTheme.ts +5 -2
- package/src/theme/global/colors/swagLight.ts +1 -1
- package/stats/8.67.0/rn-stats.html +4844 -0
- package/stats/8.68.0/rn-stats.html +4842 -0
- package/types/components/Accordion/AccordionItem.d.ts +0 -0
- package/types/components/Accordion/StyledAccordion.d.ts +0 -0
- package/types/components/Accordion/index.d.ts +0 -0
- package/types/components/Alert/StyledAlert.d.ts +17 -2
- package/types/components/Alert/index.d.ts +0 -0
- package/types/components/Attachment/StyledAttachment.d.ts +0 -0
- package/types/components/Attachment/index.d.ts +0 -0
- package/types/components/Avatar/Avatar.d.ts +0 -0
- package/types/components/Avatar/AvatarStack/StyledAvatarStack.d.ts +0 -0
- package/types/components/Avatar/AvatarStack/index.d.ts +0 -0
- package/types/components/Avatar/AvatarStack/utils.d.ts +0 -0
- package/types/components/Avatar/StyledAvatar.d.ts +0 -0
- package/types/components/Avatar/index.d.ts +0 -0
- package/types/components/Badge/Status.d.ts +0 -0
- package/types/components/Badge/StyledBadge.d.ts +4 -0
- package/types/components/Badge/index.d.ts +6 -2
- package/types/components/BottomNavigation/StyledBottomNavigation.d.ts +0 -0
- package/types/components/BottomNavigation/index.d.ts +0 -0
- package/types/components/BottomSheet/BottomSheetContext.d.ts +0 -0
- package/types/components/BottomSheet/Footer.d.ts +0 -0
- package/types/components/BottomSheet/Header.d.ts +0 -0
- package/types/components/BottomSheet/ScrollView.d.ts +0 -0
- package/types/components/BottomSheet/StyledBottomSheet.d.ts +0 -0
- package/types/components/BottomSheet/index.d.ts +0 -0
- package/types/components/Box/StyledBox.d.ts +0 -0
- package/types/components/Box/config.d.ts +0 -0
- package/types/components/Box/index.d.ts +0 -0
- package/types/components/Box/types.d.ts +0 -0
- package/types/components/Button/Button.d.ts +0 -0
- package/types/components/Button/IconButton.d.ts +0 -0
- package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +0 -0
- package/types/components/Button/LoadingIndicator/index.d.ts +0 -0
- package/types/components/Button/StyledButton.d.ts +0 -0
- package/types/components/Button/UtilityButton/StyledUtilityButton.d.ts +0 -0
- package/types/components/Button/UtilityButton/index.d.ts +0 -0
- package/types/components/Button/index.d.ts +0 -0
- package/types/components/Calendar/CalendarRowItem.d.ts +0 -0
- package/types/components/Calendar/StyledCalendar.d.ts +0 -0
- package/types/components/Calendar/helpers.d.ts +0 -0
- package/types/components/Calendar/index.d.ts +0 -0
- package/types/components/Card/DataCard/StyledDataCard.d.ts +0 -0
- package/types/components/Card/DataCard/index.d.ts +0 -0
- package/types/components/Card/StyledCard.d.ts +0 -0
- package/types/components/Card/index.d.ts +0 -0
- package/types/components/Carousel/CardCarousel.d.ts +0 -0
- package/types/components/Carousel/CarouselItem.d.ts +0 -0
- package/types/components/Carousel/StyledCardCarousel.d.ts +0 -0
- package/types/components/Carousel/StyledCarousel.d.ts +0 -0
- package/types/components/Carousel/contants.d.ts +0 -0
- package/types/components/Carousel/index.d.ts +0 -0
- package/types/components/Carousel/types.d.ts +0 -0
- package/types/components/Checkbox/StyledCheckbox.d.ts +0 -0
- package/types/components/Checkbox/index.d.ts +0 -0
- package/types/components/Collapse/StyledCollapse.d.ts +0 -0
- package/types/components/Collapse/index.d.ts +0 -0
- package/types/components/ContentNavigator/StyledContentNavigator.d.ts +0 -0
- package/types/components/ContentNavigator/index.d.ts +0 -0
- package/types/components/DatePicker/DatePickerAndroid.d.ts +0 -0
- package/types/components/DatePicker/DatePickerCalendar.d.ts +0 -0
- package/types/components/DatePicker/DatePickerIOS.d.ts +0 -0
- package/types/components/DatePicker/StyledDatePicker.d.ts +0 -0
- package/types/components/DatePicker/index.d.ts +0 -0
- package/types/components/DatePicker/types.d.ts +0 -0
- package/types/components/Divider/StyledDivider.d.ts +0 -0
- package/types/components/Divider/index.d.ts +0 -0
- 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 +0 -0
- package/types/components/Drawer/index.d.ts +0 -0
- package/types/components/Empty/StyledEmpty.d.ts +0 -0
- package/types/components/Empty/index.d.ts +0 -0
- package/types/components/Error/StyledError.d.ts +0 -0
- package/types/components/Error/index.d.ts +0 -0
- package/types/components/FAB/ActionGroup/ActionItem.d.ts +0 -0
- package/types/components/FAB/ActionGroup/StyledActionGroup.d.ts +0 -0
- package/types/components/FAB/ActionGroup/StyledActionItem.d.ts +0 -0
- package/types/components/FAB/ActionGroup/index.d.ts +0 -0
- package/types/components/FAB/AnimatedFABIcon.d.ts +0 -0
- package/types/components/FAB/FAB.d.ts +0 -0
- package/types/components/FAB/StyledFAB.d.ts +0 -0
- package/types/components/FAB/index.d.ts +0 -0
- package/types/components/Icon/AnimatedIcon.d.ts +0 -0
- package/types/components/Icon/HeroIcon/index.d.ts +0 -0
- package/types/components/Icon/IconList.d.ts +0 -0
- package/types/components/Icon/index.d.ts +0 -0
- package/types/components/Icon/utils.d.ts +0 -0
- 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 +0 -0
- package/types/components/List/StyledListItem.d.ts +0 -0
- package/types/components/List/index.d.ts +0 -0
- package/types/components/PageControl/StyledPageControl.d.ts +0 -0
- package/types/components/PageControl/index.d.ts +0 -0
- package/types/components/PinInput/PinCell.d.ts +0 -0
- package/types/components/PinInput/StyledPinInput.d.ts +0 -0
- package/types/components/PinInput/index.d.ts +0 -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 +0 -0
- package/types/components/Progress/StyledProgressCircle.d.ts +0 -0
- 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 +0 -0
- package/types/components/Radio/RadioGroup.d.ts +0 -0
- package/types/components/Radio/StyledRadio.d.ts +0 -0
- package/types/components/Radio/index.d.ts +0 -0
- package/types/components/Radio/types.d.ts +0 -0
- package/types/components/RefreshControl/index.d.ts +0 -0
- package/types/components/RichTextEditor/EditorEvent.d.ts +0 -0
- package/types/components/RichTextEditor/EditorToolbar.d.ts +0 -0
- package/types/components/RichTextEditor/MentionList.d.ts +0 -0
- package/types/components/RichTextEditor/RichTextEditor.d.ts +0 -0
- package/types/components/RichTextEditor/StyledRichTextEditor.d.ts +0 -0
- package/types/components/RichTextEditor/StyledToolbar.d.ts +0 -0
- 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 +0 -0
- 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/Search/SearchOneLine.d.ts +60 -0
- package/types/components/Search/SearchSuffixIcon.d.ts +24 -0
- package/types/components/Search/SearchTwoLine.d.ts +31 -0
- package/types/components/Search/StyledSearch.d.ts +44 -0
- package/types/components/Search/index.d.ts +10 -0
- package/types/components/Search/utils.d.ts +8 -0
- package/types/components/SectionHeading/StyledHeading.d.ts +0 -0
- package/types/components/SectionHeading/index.d.ts +0 -0
- package/types/components/Select/BaseOptionList.d.ts +0 -0
- package/types/components/Select/Footer.d.ts +0 -0
- package/types/components/Select/MultiSelect/Option.d.ts +0 -0
- package/types/components/Select/MultiSelect/OptionList.d.ts +0 -0
- package/types/components/Select/MultiSelect/index.d.ts +0 -0
- package/types/components/Select/SingleSelect/Option.d.ts +0 -0
- package/types/components/Select/SingleSelect/OptionList.d.ts +0 -0
- package/types/components/Select/SingleSelect/StyledSingleSelect.d.ts +0 -0
- package/types/components/Select/SingleSelect/index.d.ts +0 -0
- package/types/components/Select/StyledSelect.d.ts +0 -0
- package/types/components/Select/helpers.d.ts +0 -0
- package/types/components/Select/index.d.ts +0 -0
- package/types/components/Select/types.d.ts +0 -0
- package/types/components/Skeleton/StyledSkeleton.d.ts +0 -0
- package/types/components/Skeleton/index.d.ts +0 -0
- package/types/components/Slider/index.d.ts +0 -0
- package/types/components/Spinner/AnimatedSpinner.d.ts +0 -0
- package/types/components/Spinner/StyledSpinner.d.ts +0 -0
- package/types/components/Spinner/index.d.ts +0 -0
- package/types/components/Success/StyledSuccess.d.ts +0 -0
- package/types/components/Success/index.d.ts +0 -0
- package/types/components/Swipeable/StyledSwipeable.d.ts +0 -0
- package/types/components/Swipeable/SwipeableAction.d.ts +0 -0
- package/types/components/Swipeable/index.d.ts +0 -0
- package/types/components/Switch/SelectorSwitch/Option.d.ts +0 -0
- package/types/components/Switch/SelectorSwitch/StyledSelectorSwitch.d.ts +0 -0
- package/types/components/Switch/SelectorSwitch/index.d.ts +0 -0
- package/types/components/Switch/StyledSwitch.d.ts +0 -0
- package/types/components/Switch/index.d.ts +0 -0
- package/types/components/Tabs/ActiveTabIndicator.d.ts +0 -0
- package/types/components/Tabs/SceneView.d.ts +0 -0
- package/types/components/Tabs/ScrollableTabs.d.ts +0 -0
- package/types/components/Tabs/StyledScrollableTabs.d.ts +0 -0
- package/types/components/Tabs/StyledTabs.d.ts +0 -0
- package/types/components/Tabs/TabWithBadge.d.ts +0 -0
- package/types/components/Tabs/index.d.ts +0 -0
- 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 +0 -0
- package/types/components/Tag/index.d.ts +0 -0
- package/types/components/TextInput/StyledTextInput.d.ts +0 -0
- package/types/components/TextInput/index.d.ts +0 -0
- package/types/components/TimePicker/StyledTimePicker.d.ts +0 -0
- package/types/components/TimePicker/TimePickerAndroid.d.ts +0 -0
- package/types/components/TimePicker/TimePickerIOS.d.ts +0 -0
- package/types/components/TimePicker/index.d.ts +0 -0
- package/types/components/TimePicker/types.d.ts +0 -0
- package/types/components/Toast/StyledToast.d.ts +0 -0
- 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 +0 -0
- package/types/components/Toast/ToastProvider.d.ts +0 -0
- package/types/components/Toast/index.d.ts +0 -0
- package/types/components/Toast/types.d.ts +0 -0
- package/types/components/Toolbar/StyledToolbar.d.ts +0 -0
- package/types/components/Toolbar/ToolbarGroup.d.ts +0 -0
- package/types/components/Toolbar/ToolbarItem.d.ts +0 -0
- package/types/components/Toolbar/index.d.ts +0 -0
- package/types/components/Typography/Text/StyledText.d.ts +0 -0
- package/types/components/Typography/Text/index.d.ts +0 -0
- package/types/components/Typography/index.d.ts +0 -0
- package/types/index.d.ts +2 -1
- package/types/testHelpers/renderWithTheme.d.ts +0 -0
- package/types/theme/ThemeProvider.d.ts +0 -0
- package/types/theme/ThemeSwitcher.d.ts +1 -1
- package/types/theme/components/accordion.d.ts +0 -0
- package/types/theme/components/alert.d.ts +14 -5
- 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 +21 -21
- 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 +0 -0
- package/types/theme/components/calendar.d.ts +0 -0
- package/types/theme/components/card.d.ts +0 -0
- package/types/theme/components/cardCarousel.d.ts +0 -0
- package/types/theme/components/carousel.d.ts +0 -0
- package/types/theme/components/checkbox.d.ts +0 -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 +0 -0
- package/types/theme/components/error.d.ts +0 -0
- package/types/theme/components/fab.d.ts +0 -0
- 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 +0 -0
- package/types/theme/components/pageControl.d.ts +0 -0
- package/types/theme/components/pinInput.d.ts +0 -0
- package/types/theme/components/progress.d.ts +0 -0
- package/types/theme/components/radio.d.ts +0 -0
- package/types/theme/components/refreshControl.d.ts +0 -0
- package/types/theme/components/richTextEditor.d.ts +0 -0
- package/types/theme/components/search.d.ts +38 -0
- package/types/theme/components/sectionHeading.d.ts +0 -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 +0 -0
- package/types/theme/components/swipeable.d.ts +0 -0
- package/types/theme/components/switch.d.ts +0 -0
- package/types/theme/components/tabs.d.ts +0 -0
- package/types/theme/components/tag.d.ts +0 -0
- package/types/theme/components/textInput.d.ts +0 -0
- package/types/theme/components/timePicker.d.ts +0 -0
- package/types/theme/components/toast.d.ts +0 -0
- package/types/theme/components/toolbar.d.ts +0 -0
- package/types/theme/components/typography.d.ts +0 -0
- package/types/theme/getTheme.d.ts +2 -0
- 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 +0 -0
- package/types/theme/global/scale.d.ts +0 -0
- package/types/theme/global/sizes.d.ts +0 -0
- package/types/theme/global/space.d.ts +0 -0
- package/types/theme/global/typography.d.ts +0 -0
- package/types/theme/index.d.ts +0 -0
- package/types/types.d.ts +0 -0
- package/types/utils/functions.d.ts +0 -0
- package/types/utils/helpers.d.ts +0 -0
- package/types/utils/hooks.d.ts +0 -0
- package/types/utils/scale.d.ts +0 -0
- package/types/components/Tabs/ScrollableTabsHeader.d.ts +0 -35
|
@@ -15,7 +15,7 @@ exports[`Carousel renders correctly with pageControlPosition bottom 1`] = `
|
|
|
15
15
|
style={
|
|
16
16
|
[
|
|
17
17
|
{
|
|
18
|
-
"backgroundColor": "#
|
|
18
|
+
"backgroundColor": "#ece8ef",
|
|
19
19
|
"bottom": 0,
|
|
20
20
|
"left": 0,
|
|
21
21
|
"position": "absolute",
|
|
@@ -25,7 +25,7 @@ exports[`Carousel renders correctly with pageControlPosition bottom 1`] = `
|
|
|
25
25
|
undefined,
|
|
26
26
|
]
|
|
27
27
|
}
|
|
28
|
-
themeSlideBackground="#
|
|
28
|
+
themeSlideBackground="#ece8ef"
|
|
29
29
|
/>
|
|
30
30
|
<View
|
|
31
31
|
style={
|
|
@@ -55,13 +55,13 @@ exports[`Carousel renders correctly with pageControlPosition bottom 1`] = `
|
|
|
55
55
|
data={
|
|
56
56
|
[
|
|
57
57
|
{
|
|
58
|
-
"background": "#
|
|
58
|
+
"background": "#ece8ef",
|
|
59
59
|
"body": "Access your Work, Money and Benefits in the palm of your hand.",
|
|
60
60
|
"heading": "Welcome to the new Employment Hero app",
|
|
61
61
|
"image": 1,
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
|
-
"background": "#
|
|
64
|
+
"background": "#ccd2d3",
|
|
65
65
|
"body": "Our app now has a new bright clean modern look and feel with the same great features.",
|
|
66
66
|
"content": <Image
|
|
67
67
|
source={
|
|
@@ -74,7 +74,7 @@ exports[`Carousel renders correctly with pageControlPosition bottom 1`] = `
|
|
|
74
74
|
"image": "https://picsum.photos/800/1200",
|
|
75
75
|
},
|
|
76
76
|
{
|
|
77
|
-
"background": "#
|
|
77
|
+
"background": "#ccd2d3",
|
|
78
78
|
"body": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus vitae pulvinar quam, ac facilisis massa. Aliquam facilisis nisi eu justo dignissim, vel tempus justo iaculis.",
|
|
79
79
|
"heading": "Easier to get around",
|
|
80
80
|
"image": {
|
|
@@ -85,7 +85,7 @@ exports[`Carousel renders correctly with pageControlPosition bottom 1`] = `
|
|
|
85
85
|
},
|
|
86
86
|
},
|
|
87
87
|
{
|
|
88
|
-
"background": "#
|
|
88
|
+
"background": "#ccd2d3",
|
|
89
89
|
"heading": "Test slide 4",
|
|
90
90
|
"image": {
|
|
91
91
|
"height": 100,
|
|
@@ -94,7 +94,7 @@ exports[`Carousel renders correctly with pageControlPosition bottom 1`] = `
|
|
|
94
94
|
},
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
|
-
"background": "#
|
|
97
|
+
"background": "#ccd2d3",
|
|
98
98
|
"heading": "Test slide 5",
|
|
99
99
|
},
|
|
100
100
|
]
|
|
@@ -701,7 +701,7 @@ exports[`Carousel renders correctly with pageControlPosition bottom 1`] = `
|
|
|
701
701
|
{
|
|
702
702
|
"alignItems": "center",
|
|
703
703
|
"alignSelf": "stretch",
|
|
704
|
-
"backgroundColor": "#
|
|
704
|
+
"backgroundColor": "#401960",
|
|
705
705
|
"borderRadius": 32,
|
|
706
706
|
"flexDirection": "row",
|
|
707
707
|
"height": 60,
|
|
@@ -769,7 +769,7 @@ exports[`Carousel renders correctly with pageControlPosition bottom 1`] = `
|
|
|
769
769
|
collapsable={false}
|
|
770
770
|
style={
|
|
771
771
|
{
|
|
772
|
-
"backgroundColor": "#
|
|
772
|
+
"backgroundColor": "#401960",
|
|
773
773
|
"borderRadius": 999,
|
|
774
774
|
"height": 8,
|
|
775
775
|
"marginHorizontal": 8,
|
|
@@ -788,7 +788,7 @@ exports[`Carousel renders correctly with pageControlPosition bottom 1`] = `
|
|
|
788
788
|
collapsable={false}
|
|
789
789
|
style={
|
|
790
790
|
{
|
|
791
|
-
"backgroundColor": "#
|
|
791
|
+
"backgroundColor": "#401960",
|
|
792
792
|
"borderRadius": 999,
|
|
793
793
|
"height": 8,
|
|
794
794
|
"marginHorizontal": 8,
|
|
@@ -807,7 +807,7 @@ exports[`Carousel renders correctly with pageControlPosition bottom 1`] = `
|
|
|
807
807
|
collapsable={false}
|
|
808
808
|
style={
|
|
809
809
|
{
|
|
810
|
-
"backgroundColor": "#
|
|
810
|
+
"backgroundColor": "#401960",
|
|
811
811
|
"borderRadius": 999,
|
|
812
812
|
"height": 8,
|
|
813
813
|
"marginHorizontal": 8,
|
|
@@ -826,7 +826,7 @@ exports[`Carousel renders correctly with pageControlPosition bottom 1`] = `
|
|
|
826
826
|
collapsable={false}
|
|
827
827
|
style={
|
|
828
828
|
{
|
|
829
|
-
"backgroundColor": "#
|
|
829
|
+
"backgroundColor": "#401960",
|
|
830
830
|
"borderRadius": 999,
|
|
831
831
|
"height": 8,
|
|
832
832
|
"marginHorizontal": 8,
|
|
@@ -845,7 +845,7 @@ exports[`Carousel renders correctly with pageControlPosition bottom 1`] = `
|
|
|
845
845
|
collapsable={false}
|
|
846
846
|
style={
|
|
847
847
|
{
|
|
848
|
-
"backgroundColor": "#
|
|
848
|
+
"backgroundColor": "#401960",
|
|
849
849
|
"borderRadius": 999,
|
|
850
850
|
"height": 8,
|
|
851
851
|
"marginHorizontal": 8,
|
|
@@ -897,7 +897,7 @@ exports[`Carousel renders correctly with pageControlPosition top 1`] = `
|
|
|
897
897
|
style={
|
|
898
898
|
[
|
|
899
899
|
{
|
|
900
|
-
"backgroundColor": "#
|
|
900
|
+
"backgroundColor": "#ece8ef",
|
|
901
901
|
"bottom": 0,
|
|
902
902
|
"left": 0,
|
|
903
903
|
"position": "absolute",
|
|
@@ -907,7 +907,7 @@ exports[`Carousel renders correctly with pageControlPosition top 1`] = `
|
|
|
907
907
|
undefined,
|
|
908
908
|
]
|
|
909
909
|
}
|
|
910
|
-
themeSlideBackground="#
|
|
910
|
+
themeSlideBackground="#ece8ef"
|
|
911
911
|
/>
|
|
912
912
|
<View
|
|
913
913
|
style={
|
|
@@ -946,7 +946,7 @@ exports[`Carousel renders correctly with pageControlPosition top 1`] = `
|
|
|
946
946
|
collapsable={false}
|
|
947
947
|
style={
|
|
948
948
|
{
|
|
949
|
-
"backgroundColor": "#
|
|
949
|
+
"backgroundColor": "#401960",
|
|
950
950
|
"borderRadius": 999,
|
|
951
951
|
"height": 8,
|
|
952
952
|
"marginHorizontal": 8,
|
|
@@ -965,7 +965,7 @@ exports[`Carousel renders correctly with pageControlPosition top 1`] = `
|
|
|
965
965
|
collapsable={false}
|
|
966
966
|
style={
|
|
967
967
|
{
|
|
968
|
-
"backgroundColor": "#
|
|
968
|
+
"backgroundColor": "#401960",
|
|
969
969
|
"borderRadius": 999,
|
|
970
970
|
"height": 8,
|
|
971
971
|
"marginHorizontal": 8,
|
|
@@ -984,7 +984,7 @@ exports[`Carousel renders correctly with pageControlPosition top 1`] = `
|
|
|
984
984
|
collapsable={false}
|
|
985
985
|
style={
|
|
986
986
|
{
|
|
987
|
-
"backgroundColor": "#
|
|
987
|
+
"backgroundColor": "#401960",
|
|
988
988
|
"borderRadius": 999,
|
|
989
989
|
"height": 8,
|
|
990
990
|
"marginHorizontal": 8,
|
|
@@ -1003,7 +1003,7 @@ exports[`Carousel renders correctly with pageControlPosition top 1`] = `
|
|
|
1003
1003
|
collapsable={false}
|
|
1004
1004
|
style={
|
|
1005
1005
|
{
|
|
1006
|
-
"backgroundColor": "#
|
|
1006
|
+
"backgroundColor": "#401960",
|
|
1007
1007
|
"borderRadius": 999,
|
|
1008
1008
|
"height": 8,
|
|
1009
1009
|
"marginHorizontal": 8,
|
|
@@ -1022,7 +1022,7 @@ exports[`Carousel renders correctly with pageControlPosition top 1`] = `
|
|
|
1022
1022
|
collapsable={false}
|
|
1023
1023
|
style={
|
|
1024
1024
|
{
|
|
1025
|
-
"backgroundColor": "#
|
|
1025
|
+
"backgroundColor": "#401960",
|
|
1026
1026
|
"borderRadius": 999,
|
|
1027
1027
|
"height": 8,
|
|
1028
1028
|
"marginHorizontal": 8,
|
|
@@ -1050,13 +1050,13 @@ exports[`Carousel renders correctly with pageControlPosition top 1`] = `
|
|
|
1050
1050
|
data={
|
|
1051
1051
|
[
|
|
1052
1052
|
{
|
|
1053
|
-
"background": "#
|
|
1053
|
+
"background": "#ece8ef",
|
|
1054
1054
|
"body": "Access your Work, Money and Benefits in the palm of your hand.",
|
|
1055
1055
|
"heading": "Welcome to the new Employment Hero app",
|
|
1056
1056
|
"image": 1,
|
|
1057
1057
|
},
|
|
1058
1058
|
{
|
|
1059
|
-
"background": "#
|
|
1059
|
+
"background": "#ccd2d3",
|
|
1060
1060
|
"body": "Our app now has a new bright clean modern look and feel with the same great features.",
|
|
1061
1061
|
"content": <Image
|
|
1062
1062
|
source={
|
|
@@ -1069,7 +1069,7 @@ exports[`Carousel renders correctly with pageControlPosition top 1`] = `
|
|
|
1069
1069
|
"image": "https://picsum.photos/800/1200",
|
|
1070
1070
|
},
|
|
1071
1071
|
{
|
|
1072
|
-
"background": "#
|
|
1072
|
+
"background": "#ccd2d3",
|
|
1073
1073
|
"body": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus vitae pulvinar quam, ac facilisis massa. Aliquam facilisis nisi eu justo dignissim, vel tempus justo iaculis.",
|
|
1074
1074
|
"heading": "Easier to get around",
|
|
1075
1075
|
"image": {
|
|
@@ -1080,7 +1080,7 @@ exports[`Carousel renders correctly with pageControlPosition top 1`] = `
|
|
|
1080
1080
|
},
|
|
1081
1081
|
},
|
|
1082
1082
|
{
|
|
1083
|
-
"background": "#
|
|
1083
|
+
"background": "#ccd2d3",
|
|
1084
1084
|
"heading": "Test slide 4",
|
|
1085
1085
|
"image": {
|
|
1086
1086
|
"height": 100,
|
|
@@ -1089,7 +1089,7 @@ exports[`Carousel renders correctly with pageControlPosition top 1`] = `
|
|
|
1089
1089
|
},
|
|
1090
1090
|
},
|
|
1091
1091
|
{
|
|
1092
|
-
"background": "#
|
|
1092
|
+
"background": "#ccd2d3",
|
|
1093
1093
|
"heading": "Test slide 5",
|
|
1094
1094
|
},
|
|
1095
1095
|
]
|
|
@@ -1696,7 +1696,7 @@ exports[`Carousel renders correctly with pageControlPosition top 1`] = `
|
|
|
1696
1696
|
{
|
|
1697
1697
|
"alignItems": "center",
|
|
1698
1698
|
"alignSelf": "stretch",
|
|
1699
|
-
"backgroundColor": "#
|
|
1699
|
+
"backgroundColor": "#401960",
|
|
1700
1700
|
"borderRadius": 32,
|
|
1701
1701
|
"flexDirection": "row",
|
|
1702
1702
|
"height": 60,
|
|
@@ -1780,7 +1780,7 @@ exports[`Carousel should render correctly when image is undefined 1`] = `
|
|
|
1780
1780
|
style={
|
|
1781
1781
|
[
|
|
1782
1782
|
{
|
|
1783
|
-
"backgroundColor": "#
|
|
1783
|
+
"backgroundColor": "#ccd2d3",
|
|
1784
1784
|
"bottom": 0,
|
|
1785
1785
|
"left": 0,
|
|
1786
1786
|
"position": "absolute",
|
|
@@ -1790,7 +1790,7 @@ exports[`Carousel should render correctly when image is undefined 1`] = `
|
|
|
1790
1790
|
undefined,
|
|
1791
1791
|
]
|
|
1792
1792
|
}
|
|
1793
|
-
themeSlideBackground="#
|
|
1793
|
+
themeSlideBackground="#ccd2d3"
|
|
1794
1794
|
/>
|
|
1795
1795
|
<View
|
|
1796
1796
|
style={
|
|
@@ -1820,7 +1820,7 @@ exports[`Carousel should render correctly when image is undefined 1`] = `
|
|
|
1820
1820
|
data={
|
|
1821
1821
|
[
|
|
1822
1822
|
{
|
|
1823
|
-
"background": "#
|
|
1823
|
+
"background": "#ccd2d3",
|
|
1824
1824
|
"heading": "Test slide 5",
|
|
1825
1825
|
},
|
|
1826
1826
|
]
|
|
@@ -1972,7 +1972,7 @@ exports[`Carousel should render correctly when image is undefined 1`] = `
|
|
|
1972
1972
|
{
|
|
1973
1973
|
"alignItems": "center",
|
|
1974
1974
|
"alignSelf": "stretch",
|
|
1975
|
-
"backgroundColor": "#
|
|
1975
|
+
"backgroundColor": "#401960",
|
|
1976
1976
|
"borderRadius": 32,
|
|
1977
1977
|
"flexDirection": "row",
|
|
1978
1978
|
"height": 60,
|
|
@@ -655,7 +655,7 @@ exports[`Chip renders correctly with custom icon 2`] = `
|
|
|
655
655
|
{
|
|
656
656
|
"alignItems": "center",
|
|
657
657
|
"alignSelf": "flex-start",
|
|
658
|
-
"backgroundColor": "#
|
|
658
|
+
"backgroundColor": "#ece8ef",
|
|
659
659
|
"borderColor": "transparent",
|
|
660
660
|
"borderRadius": 999,
|
|
661
661
|
"borderWidth": 1,
|
|
@@ -1143,7 +1143,7 @@ exports[`Chip renders correctly with variant filled and selected true 1`] = `
|
|
|
1143
1143
|
{
|
|
1144
1144
|
"alignItems": "center",
|
|
1145
1145
|
"alignSelf": "flex-start",
|
|
1146
|
-
"backgroundColor": "#
|
|
1146
|
+
"backgroundColor": "#ece8ef",
|
|
1147
1147
|
"borderColor": "transparent",
|
|
1148
1148
|
"borderRadius": 999,
|
|
1149
1149
|
"borderWidth": 1,
|
|
@@ -52,7 +52,7 @@ exports[`ActionGroup has active false 1`] = `
|
|
|
52
52
|
{
|
|
53
53
|
"alignItems": "center",
|
|
54
54
|
"alignSelf": "flex-end",
|
|
55
|
-
"backgroundColor": "#
|
|
55
|
+
"backgroundColor": "#401960",
|
|
56
56
|
"borderRadius": 999,
|
|
57
57
|
"bottom": undefined,
|
|
58
58
|
"elevation": 3,
|
|
@@ -113,7 +113,7 @@ exports[`ActionGroup has active false 1`] = `
|
|
|
113
113
|
},
|
|
114
114
|
[
|
|
115
115
|
{
|
|
116
|
-
"color": "#
|
|
116
|
+
"color": "#ffffff",
|
|
117
117
|
"lineHeight": 24,
|
|
118
118
|
"textAlign": "center",
|
|
119
119
|
"textAlignVertical": "center",
|
|
@@ -140,7 +140,7 @@ exports[`ActionGroup has active false 1`] = `
|
|
|
140
140
|
},
|
|
141
141
|
[
|
|
142
142
|
{
|
|
143
|
-
"color": "#
|
|
143
|
+
"color": "#ffffff",
|
|
144
144
|
"marginHorizontal": 8,
|
|
145
145
|
"textAlign": "center",
|
|
146
146
|
"textAlignVertical": "center",
|
|
@@ -234,7 +234,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
234
234
|
{
|
|
235
235
|
"alignItems": "center",
|
|
236
236
|
"alignSelf": "flex-end",
|
|
237
|
-
"backgroundColor": "#
|
|
237
|
+
"backgroundColor": "#33144d",
|
|
238
238
|
"borderRadius": 999,
|
|
239
239
|
"bottom": undefined,
|
|
240
240
|
"elevation": 3,
|
|
@@ -307,7 +307,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
307
307
|
},
|
|
308
308
|
[
|
|
309
309
|
{
|
|
310
|
-
"color": "#
|
|
310
|
+
"color": "#ffffff",
|
|
311
311
|
"lineHeight": 24,
|
|
312
312
|
"textAlign": "center",
|
|
313
313
|
"textAlignVertical": "center",
|
|
@@ -459,7 +459,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
459
459
|
{
|
|
460
460
|
"alignItems": "center",
|
|
461
461
|
"alignSelf": "flex-end",
|
|
462
|
-
"backgroundColor": "#
|
|
462
|
+
"backgroundColor": "#795e90",
|
|
463
463
|
"borderRadius": 999,
|
|
464
464
|
"flexDirection": "row",
|
|
465
465
|
"margin": 8,
|
|
@@ -498,7 +498,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
498
498
|
},
|
|
499
499
|
[
|
|
500
500
|
{
|
|
501
|
-
"color": "#
|
|
501
|
+
"color": "#ffffff",
|
|
502
502
|
},
|
|
503
503
|
undefined,
|
|
504
504
|
],
|
|
@@ -521,7 +521,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
521
521
|
},
|
|
522
522
|
[
|
|
523
523
|
{
|
|
524
|
-
"color": "#
|
|
524
|
+
"color": "#ffffff",
|
|
525
525
|
},
|
|
526
526
|
undefined,
|
|
527
527
|
],
|
|
@@ -570,7 +570,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
570
570
|
{
|
|
571
571
|
"alignItems": "center",
|
|
572
572
|
"alignSelf": "flex-end",
|
|
573
|
-
"backgroundColor": "#
|
|
573
|
+
"backgroundColor": "#795e90",
|
|
574
574
|
"borderRadius": 999,
|
|
575
575
|
"flexDirection": "row",
|
|
576
576
|
"margin": 8,
|
|
@@ -609,7 +609,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
609
609
|
},
|
|
610
610
|
[
|
|
611
611
|
{
|
|
612
|
-
"color": "#
|
|
612
|
+
"color": "#ffffff",
|
|
613
613
|
},
|
|
614
614
|
undefined,
|
|
615
615
|
],
|
|
@@ -632,7 +632,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
632
632
|
},
|
|
633
633
|
[
|
|
634
634
|
{
|
|
635
|
-
"color": "#
|
|
635
|
+
"color": "#ffffff",
|
|
636
636
|
},
|
|
637
637
|
undefined,
|
|
638
638
|
],
|
|
@@ -681,7 +681,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
681
681
|
{
|
|
682
682
|
"alignItems": "center",
|
|
683
683
|
"alignSelf": "flex-end",
|
|
684
|
-
"backgroundColor": "#
|
|
684
|
+
"backgroundColor": "#795e90",
|
|
685
685
|
"borderRadius": 999,
|
|
686
686
|
"flexDirection": "row",
|
|
687
687
|
"margin": 8,
|
|
@@ -720,7 +720,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
720
720
|
},
|
|
721
721
|
[
|
|
722
722
|
{
|
|
723
|
-
"color": "#
|
|
723
|
+
"color": "#ffffff",
|
|
724
724
|
},
|
|
725
725
|
undefined,
|
|
726
726
|
],
|
|
@@ -743,7 +743,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
743
743
|
},
|
|
744
744
|
[
|
|
745
745
|
{
|
|
746
|
-
"color": "#
|
|
746
|
+
"color": "#ffffff",
|
|
747
747
|
},
|
|
748
748
|
undefined,
|
|
749
749
|
],
|
|
@@ -792,7 +792,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
792
792
|
{
|
|
793
793
|
"alignItems": "center",
|
|
794
794
|
"alignSelf": "flex-end",
|
|
795
|
-
"backgroundColor": "#
|
|
795
|
+
"backgroundColor": "#795e90",
|
|
796
796
|
"borderRadius": 999,
|
|
797
797
|
"flexDirection": "row",
|
|
798
798
|
"margin": 8,
|
|
@@ -831,7 +831,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
831
831
|
},
|
|
832
832
|
[
|
|
833
833
|
{
|
|
834
|
-
"color": "#
|
|
834
|
+
"color": "#ffffff",
|
|
835
835
|
},
|
|
836
836
|
undefined,
|
|
837
837
|
],
|
|
@@ -854,7 +854,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
854
854
|
},
|
|
855
855
|
[
|
|
856
856
|
{
|
|
857
|
-
"color": "#
|
|
857
|
+
"color": "#ffffff",
|
|
858
858
|
},
|
|
859
859
|
undefined,
|
|
860
860
|
],
|
|
@@ -903,7 +903,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
903
903
|
{
|
|
904
904
|
"alignItems": "center",
|
|
905
905
|
"alignSelf": "flex-end",
|
|
906
|
-
"backgroundColor": "#
|
|
906
|
+
"backgroundColor": "#795e90",
|
|
907
907
|
"borderRadius": 999,
|
|
908
908
|
"flexDirection": "row",
|
|
909
909
|
"margin": 8,
|
|
@@ -942,7 +942,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
942
942
|
},
|
|
943
943
|
[
|
|
944
944
|
{
|
|
945
|
-
"color": "#
|
|
945
|
+
"color": "#ffffff",
|
|
946
946
|
},
|
|
947
947
|
undefined,
|
|
948
948
|
],
|
|
@@ -965,7 +965,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
965
965
|
},
|
|
966
966
|
[
|
|
967
967
|
{
|
|
968
|
-
"color": "#
|
|
968
|
+
"color": "#ffffff",
|
|
969
969
|
},
|
|
970
970
|
undefined,
|
|
971
971
|
],
|
|
@@ -1004,7 +1004,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
1004
1004
|
{
|
|
1005
1005
|
"alignItems": "center",
|
|
1006
1006
|
"alignSelf": "flex-end",
|
|
1007
|
-
"backgroundColor": "#
|
|
1007
|
+
"backgroundColor": "#33144d",
|
|
1008
1008
|
"borderRadius": 999,
|
|
1009
1009
|
"bottom": undefined,
|
|
1010
1010
|
"elevation": 3,
|
|
@@ -1078,7 +1078,7 @@ exports[`ActionGroup has active true 1`] = `
|
|
|
1078
1078
|
},
|
|
1079
1079
|
[
|
|
1080
1080
|
{
|
|
1081
|
-
"color": "#
|
|
1081
|
+
"color": "#ffffff",
|
|
1082
1082
|
"lineHeight": 24,
|
|
1083
1083
|
"textAlign": "center",
|
|
1084
1084
|
"textAlignVertical": "center",
|
|
@@ -30,7 +30,7 @@ exports[`AnimatedFABIcon renders correctly when isActive is false 1`] = `
|
|
|
30
30
|
},
|
|
31
31
|
[
|
|
32
32
|
{
|
|
33
|
-
"color": "#
|
|
33
|
+
"color": "#ffffff",
|
|
34
34
|
"lineHeight": 24,
|
|
35
35
|
"textAlign": "center",
|
|
36
36
|
"textAlignVertical": "center",
|
|
@@ -96,7 +96,7 @@ exports[`AnimatedFABIcon renders correctly when isActive is true 1`] = `
|
|
|
96
96
|
},
|
|
97
97
|
[
|
|
98
98
|
{
|
|
99
|
-
"color": "#
|
|
99
|
+
"color": "#ffffff",
|
|
100
100
|
"lineHeight": 24,
|
|
101
101
|
"textAlign": "center",
|
|
102
102
|
"textAlignVertical": "center",
|
|
@@ -30,7 +30,7 @@ exports[`StyledFAB renders correctly 1`] = `
|
|
|
30
30
|
{
|
|
31
31
|
"alignItems": "center",
|
|
32
32
|
"alignSelf": "flex-start",
|
|
33
|
-
"backgroundColor": "#
|
|
33
|
+
"backgroundColor": "#401960",
|
|
34
34
|
"borderRadius": 999,
|
|
35
35
|
"elevation": 3,
|
|
36
36
|
"flexDirection": "row",
|
|
@@ -121,7 +121,7 @@ exports[`StyledFAB renders correctly 2`] = `
|
|
|
121
121
|
{
|
|
122
122
|
"alignItems": "center",
|
|
123
123
|
"alignSelf": "flex-start",
|
|
124
|
-
"backgroundColor": "#
|
|
124
|
+
"backgroundColor": "#33144d",
|
|
125
125
|
"borderRadius": 999,
|
|
126
126
|
"elevation": 3,
|
|
127
127
|
"flexDirection": "row",
|
|
@@ -200,7 +200,7 @@ exports[`StyledFABIcon renders correctly 1`] = `
|
|
|
200
200
|
},
|
|
201
201
|
[
|
|
202
202
|
{
|
|
203
|
-
"color": "#
|
|
203
|
+
"color": "#ffffff",
|
|
204
204
|
"lineHeight": 24,
|
|
205
205
|
"textAlign": "center",
|
|
206
206
|
"textAlignVertical": "center",
|
|
@@ -73,7 +73,7 @@ exports[`FAB when animated is false renders StyledFABIcon 1`] = `
|
|
|
73
73
|
},
|
|
74
74
|
[
|
|
75
75
|
{
|
|
76
|
-
"color": "#
|
|
76
|
+
"color": "#ffffff",
|
|
77
77
|
"lineHeight": 24,
|
|
78
78
|
"textAlign": "center",
|
|
79
79
|
"textAlignVertical": "center",
|
|
@@ -212,7 +212,7 @@ exports[`FAB when animated is true renders animatedFABIcon 1`] = `
|
|
|
212
212
|
},
|
|
213
213
|
[
|
|
214
214
|
{
|
|
215
|
-
"color": "#
|
|
215
|
+
"color": "#ffffff",
|
|
216
216
|
"lineHeight": 24,
|
|
217
217
|
"textAlign": "center",
|
|
218
218
|
"textAlignVertical": "center",
|
|
@@ -341,7 +341,7 @@ exports[`FAB when title has value renders correctly 1`] = `
|
|
|
341
341
|
},
|
|
342
342
|
[
|
|
343
343
|
{
|
|
344
|
-
"color": "#
|
|
344
|
+
"color": "#ffffff",
|
|
345
345
|
"lineHeight": 24,
|
|
346
346
|
"textAlign": "center",
|
|
347
347
|
"textAlignVertical": "center",
|
|
@@ -368,7 +368,7 @@ exports[`FAB when title has value renders correctly 1`] = `
|
|
|
368
368
|
},
|
|
369
369
|
[
|
|
370
370
|
{
|
|
371
|
-
"color": "#
|
|
371
|
+
"color": "#ffffff",
|
|
372
372
|
"marginHorizontal": 8,
|
|
373
373
|
"textAlign": "center",
|
|
374
374
|
"textAlignVertical": "center",
|
|
@@ -61,7 +61,7 @@ exports[`BasicListItem when suffix and prefix are icon name renders correctly 1`
|
|
|
61
61
|
style={
|
|
62
62
|
[
|
|
63
63
|
{
|
|
64
|
-
"color": "#
|
|
64
|
+
"color": "#401960",
|
|
65
65
|
"fontSize": 24,
|
|
66
66
|
},
|
|
67
67
|
undefined,
|
|
@@ -136,7 +136,7 @@ exports[`BasicListItem when suffix and prefix are icon name renders correctly 1`
|
|
|
136
136
|
style={
|
|
137
137
|
[
|
|
138
138
|
{
|
|
139
|
-
"color": "#
|
|
139
|
+
"color": "#401960",
|
|
140
140
|
"fontSize": 20,
|
|
141
141
|
},
|
|
142
142
|
undefined,
|
|
@@ -103,7 +103,7 @@ exports[`ListItem renders correctly ListItem with children 1`] = `
|
|
|
103
103
|
onStartShouldSetResponder={[Function]}
|
|
104
104
|
style={
|
|
105
105
|
{
|
|
106
|
-
"backgroundColor": "#
|
|
106
|
+
"backgroundColor": "#401960",
|
|
107
107
|
"borderRadius": 999,
|
|
108
108
|
"height": 32,
|
|
109
109
|
"opacity": 1,
|
|
@@ -226,7 +226,7 @@ exports[`ListItem renders correctly ListItem with children 1`] = `
|
|
|
226
226
|
style={
|
|
227
227
|
[
|
|
228
228
|
{
|
|
229
|
-
"color": "#
|
|
229
|
+
"color": "#401960",
|
|
230
230
|
"fontSize": 20,
|
|
231
231
|
},
|
|
232
232
|
undefined,
|
|
@@ -505,7 +505,7 @@ exports[`ListItem renders correctly ListItem with icon 1`] = `
|
|
|
505
505
|
style={
|
|
506
506
|
[
|
|
507
507
|
{
|
|
508
|
-
"color": "#
|
|
508
|
+
"color": "#401960",
|
|
509
509
|
"fontSize": 20,
|
|
510
510
|
},
|
|
511
511
|
undefined,
|
|
@@ -665,7 +665,7 @@ exports[`ListItem renders correctly ListItem with leading status 1`] = `
|
|
|
665
665
|
style={
|
|
666
666
|
[
|
|
667
667
|
{
|
|
668
|
-
"color": "#
|
|
668
|
+
"color": "#401960",
|
|
669
669
|
"fontSize": 20,
|
|
670
670
|
},
|
|
671
671
|
undefined,
|
|
@@ -805,7 +805,7 @@ exports[`ListItem renders correctly ListItem with prefix suffix is React.Element
|
|
|
805
805
|
onStartShouldSetResponder={[Function]}
|
|
806
806
|
style={
|
|
807
807
|
{
|
|
808
|
-
"backgroundColor": "#
|
|
808
|
+
"backgroundColor": "#401960",
|
|
809
809
|
"borderRadius": 999,
|
|
810
810
|
"height": 32,
|
|
811
811
|
"opacity": 1,
|
|
@@ -945,7 +945,7 @@ exports[`ListItem renders correctly ListItem with prefix suffix is React.Element
|
|
|
945
945
|
style={
|
|
946
946
|
[
|
|
947
947
|
{
|
|
948
|
-
"backgroundColor": "#
|
|
948
|
+
"backgroundColor": "#401960",
|
|
949
949
|
"borderRadius": 999,
|
|
950
950
|
"display": "flex",
|
|
951
951
|
"height": 24,
|