@hero-design/rn 8.68.0-alpha.0 → 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 +513 -154
- package/lib/index.js +513 -153
- 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/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
|
@@ -242,7 +242,7 @@ exports[`StyledLoadingIndicator has outlined-primary style 1`] = `
|
|
|
242
242
|
style={
|
|
243
243
|
[
|
|
244
244
|
{
|
|
245
|
-
"backgroundColor": "#
|
|
245
|
+
"backgroundColor": "#401960",
|
|
246
246
|
"borderRadius": 8,
|
|
247
247
|
"height": 12,
|
|
248
248
|
"marginHorizontal": 8,
|
|
@@ -288,7 +288,7 @@ exports[`StyledLoadingIndicator has outlined-secondary style 1`] = `
|
|
|
288
288
|
style={
|
|
289
289
|
[
|
|
290
290
|
{
|
|
291
|
-
"backgroundColor": "#
|
|
291
|
+
"backgroundColor": "#795e90",
|
|
292
292
|
"borderRadius": 8,
|
|
293
293
|
"height": 12,
|
|
294
294
|
"marginHorizontal": 8,
|
|
@@ -380,7 +380,7 @@ exports[`StyledLoadingIndicator has text-primary style 1`] = `
|
|
|
380
380
|
style={
|
|
381
381
|
[
|
|
382
382
|
{
|
|
383
|
-
"backgroundColor": "#
|
|
383
|
+
"backgroundColor": "#795e90",
|
|
384
384
|
"borderRadius": 8,
|
|
385
385
|
"height": 12,
|
|
386
386
|
"marginHorizontal": 8,
|
|
@@ -426,7 +426,7 @@ exports[`StyledLoadingIndicator has text-secondary style 1`] = `
|
|
|
426
426
|
style={
|
|
427
427
|
[
|
|
428
428
|
{
|
|
429
|
-
"backgroundColor": "#
|
|
429
|
+
"backgroundColor": "#795e90",
|
|
430
430
|
"borderRadius": 8,
|
|
431
431
|
"height": 12,
|
|
432
432
|
"marginHorizontal": 8,
|
|
@@ -714,7 +714,7 @@ exports[`LoadingIndicator renders correctly when themeVariant is outlined-primar
|
|
|
714
714
|
style={
|
|
715
715
|
[
|
|
716
716
|
{
|
|
717
|
-
"backgroundColor": "#
|
|
717
|
+
"backgroundColor": "#401960",
|
|
718
718
|
"borderRadius": 8,
|
|
719
719
|
"height": 12,
|
|
720
720
|
"marginHorizontal": 8,
|
|
@@ -744,7 +744,7 @@ exports[`LoadingIndicator renders correctly when themeVariant is outlined-primar
|
|
|
744
744
|
style={
|
|
745
745
|
[
|
|
746
746
|
{
|
|
747
|
-
"backgroundColor": "#
|
|
747
|
+
"backgroundColor": "#401960",
|
|
748
748
|
"borderRadius": 8,
|
|
749
749
|
"height": 12,
|
|
750
750
|
"marginHorizontal": 8,
|
|
@@ -774,7 +774,7 @@ exports[`LoadingIndicator renders correctly when themeVariant is outlined-primar
|
|
|
774
774
|
style={
|
|
775
775
|
[
|
|
776
776
|
{
|
|
777
|
-
"backgroundColor": "#
|
|
777
|
+
"backgroundColor": "#401960",
|
|
778
778
|
"borderRadius": 8,
|
|
779
779
|
"height": 12,
|
|
780
780
|
"marginHorizontal": 8,
|
|
@@ -849,7 +849,7 @@ exports[`LoadingIndicator renders correctly when themeVariant is outlined-second
|
|
|
849
849
|
style={
|
|
850
850
|
[
|
|
851
851
|
{
|
|
852
|
-
"backgroundColor": "#
|
|
852
|
+
"backgroundColor": "#795e90",
|
|
853
853
|
"borderRadius": 8,
|
|
854
854
|
"height": 12,
|
|
855
855
|
"marginHorizontal": 8,
|
|
@@ -879,7 +879,7 @@ exports[`LoadingIndicator renders correctly when themeVariant is outlined-second
|
|
|
879
879
|
style={
|
|
880
880
|
[
|
|
881
881
|
{
|
|
882
|
-
"backgroundColor": "#
|
|
882
|
+
"backgroundColor": "#795e90",
|
|
883
883
|
"borderRadius": 8,
|
|
884
884
|
"height": 12,
|
|
885
885
|
"marginHorizontal": 8,
|
|
@@ -909,7 +909,7 @@ exports[`LoadingIndicator renders correctly when themeVariant is outlined-second
|
|
|
909
909
|
style={
|
|
910
910
|
[
|
|
911
911
|
{
|
|
912
|
-
"backgroundColor": "#
|
|
912
|
+
"backgroundColor": "#795e90",
|
|
913
913
|
"borderRadius": 8,
|
|
914
914
|
"height": 12,
|
|
915
915
|
"marginHorizontal": 8,
|
|
@@ -1119,7 +1119,7 @@ exports[`LoadingIndicator renders correctly when themeVariant is text-primary 1`
|
|
|
1119
1119
|
style={
|
|
1120
1120
|
[
|
|
1121
1121
|
{
|
|
1122
|
-
"backgroundColor": "#
|
|
1122
|
+
"backgroundColor": "#795e90",
|
|
1123
1123
|
"borderRadius": 8,
|
|
1124
1124
|
"height": 12,
|
|
1125
1125
|
"marginHorizontal": 8,
|
|
@@ -1149,7 +1149,7 @@ exports[`LoadingIndicator renders correctly when themeVariant is text-primary 1`
|
|
|
1149
1149
|
style={
|
|
1150
1150
|
[
|
|
1151
1151
|
{
|
|
1152
|
-
"backgroundColor": "#
|
|
1152
|
+
"backgroundColor": "#795e90",
|
|
1153
1153
|
"borderRadius": 8,
|
|
1154
1154
|
"height": 12,
|
|
1155
1155
|
"marginHorizontal": 8,
|
|
@@ -1179,7 +1179,7 @@ exports[`LoadingIndicator renders correctly when themeVariant is text-primary 1`
|
|
|
1179
1179
|
style={
|
|
1180
1180
|
[
|
|
1181
1181
|
{
|
|
1182
|
-
"backgroundColor": "#
|
|
1182
|
+
"backgroundColor": "#795e90",
|
|
1183
1183
|
"borderRadius": 8,
|
|
1184
1184
|
"height": 12,
|
|
1185
1185
|
"marginHorizontal": 8,
|
|
@@ -1254,7 +1254,7 @@ exports[`LoadingIndicator renders correctly when themeVariant is text-secondary
|
|
|
1254
1254
|
style={
|
|
1255
1255
|
[
|
|
1256
1256
|
{
|
|
1257
|
-
"backgroundColor": "#
|
|
1257
|
+
"backgroundColor": "#795e90",
|
|
1258
1258
|
"borderRadius": 8,
|
|
1259
1259
|
"height": 12,
|
|
1260
1260
|
"marginHorizontal": 8,
|
|
@@ -1284,7 +1284,7 @@ exports[`LoadingIndicator renders correctly when themeVariant is text-secondary
|
|
|
1284
1284
|
style={
|
|
1285
1285
|
[
|
|
1286
1286
|
{
|
|
1287
|
-
"backgroundColor": "#
|
|
1287
|
+
"backgroundColor": "#795e90",
|
|
1288
1288
|
"borderRadius": 8,
|
|
1289
1289
|
"height": 12,
|
|
1290
1290
|
"marginHorizontal": 8,
|
|
@@ -1314,7 +1314,7 @@ exports[`LoadingIndicator renders correctly when themeVariant is text-secondary
|
|
|
1314
1314
|
style={
|
|
1315
1315
|
[
|
|
1316
1316
|
{
|
|
1317
|
-
"backgroundColor": "#
|
|
1317
|
+
"backgroundColor": "#795e90",
|
|
1318
1318
|
"borderRadius": 8,
|
|
1319
1319
|
"height": 12,
|
|
1320
1320
|
"marginHorizontal": 8,
|
|
@@ -36,7 +36,7 @@ exports[`Button allows render custom icon 1`] = `
|
|
|
36
36
|
{
|
|
37
37
|
"alignItems": "center",
|
|
38
38
|
"alignSelf": "stretch",
|
|
39
|
-
"backgroundColor": "#
|
|
39
|
+
"backgroundColor": "#401960",
|
|
40
40
|
"borderRadius": 32,
|
|
41
41
|
"flexDirection": "row",
|
|
42
42
|
"height": 60,
|
|
@@ -192,7 +192,7 @@ exports[`Button renders correctly 1`] = `
|
|
|
192
192
|
{
|
|
193
193
|
"alignItems": "center",
|
|
194
194
|
"alignSelf": "stretch",
|
|
195
|
-
"backgroundColor": "#
|
|
195
|
+
"backgroundColor": "#401960",
|
|
196
196
|
"borderRadius": 32,
|
|
197
197
|
"flexDirection": "row",
|
|
198
198
|
"height": 60,
|
|
@@ -294,7 +294,7 @@ exports[`Button renders correctly 2`] = `
|
|
|
294
294
|
{
|
|
295
295
|
"alignItems": "center",
|
|
296
296
|
"alignSelf": "stretch",
|
|
297
|
-
"backgroundColor": "#
|
|
297
|
+
"backgroundColor": "#401960",
|
|
298
298
|
"borderRadius": 32,
|
|
299
299
|
"flexDirection": "row",
|
|
300
300
|
"height": 60,
|
|
@@ -573,7 +573,7 @@ exports[`Button renders correctly 4`] = `
|
|
|
573
573
|
"alignItems": "center",
|
|
574
574
|
"alignSelf": "stretch",
|
|
575
575
|
"backgroundColor": "transparent",
|
|
576
|
-
"borderColor": "#
|
|
576
|
+
"borderColor": "#401960",
|
|
577
577
|
"borderRadius": 32,
|
|
578
578
|
"borderWidth": 2,
|
|
579
579
|
"flexDirection": "row",
|
|
@@ -601,7 +601,7 @@ exports[`Button renders correctly 4`] = `
|
|
|
601
601
|
},
|
|
602
602
|
[
|
|
603
603
|
{
|
|
604
|
-
"color": "#
|
|
604
|
+
"color": "#401960",
|
|
605
605
|
"flexShrink": 1,
|
|
606
606
|
"textAlign": "center",
|
|
607
607
|
},
|
|
@@ -677,7 +677,7 @@ exports[`Button renders correctly 5`] = `
|
|
|
677
677
|
"alignItems": "center",
|
|
678
678
|
"alignSelf": "stretch",
|
|
679
679
|
"backgroundColor": "transparent",
|
|
680
|
-
"borderColor": "#
|
|
680
|
+
"borderColor": "#401960",
|
|
681
681
|
"borderRadius": 32,
|
|
682
682
|
"borderWidth": 2,
|
|
683
683
|
"flexDirection": "row",
|
|
@@ -721,7 +721,7 @@ exports[`Button renders correctly 5`] = `
|
|
|
721
721
|
style={
|
|
722
722
|
[
|
|
723
723
|
{
|
|
724
|
-
"backgroundColor": "#
|
|
724
|
+
"backgroundColor": "#401960",
|
|
725
725
|
"borderRadius": 8,
|
|
726
726
|
"height": 12,
|
|
727
727
|
"marginHorizontal": 8,
|
|
@@ -751,7 +751,7 @@ exports[`Button renders correctly 5`] = `
|
|
|
751
751
|
style={
|
|
752
752
|
[
|
|
753
753
|
{
|
|
754
|
-
"backgroundColor": "#
|
|
754
|
+
"backgroundColor": "#401960",
|
|
755
755
|
"borderRadius": 8,
|
|
756
756
|
"height": 12,
|
|
757
757
|
"marginHorizontal": 8,
|
|
@@ -781,7 +781,7 @@ exports[`Button renders correctly 5`] = `
|
|
|
781
781
|
style={
|
|
782
782
|
[
|
|
783
783
|
{
|
|
784
|
-
"backgroundColor": "#
|
|
784
|
+
"backgroundColor": "#401960",
|
|
785
785
|
"borderRadius": 8,
|
|
786
786
|
"height": 12,
|
|
787
787
|
"marginHorizontal": 8,
|
|
@@ -985,7 +985,7 @@ exports[`Button renders correctly 7`] = `
|
|
|
985
985
|
},
|
|
986
986
|
[
|
|
987
987
|
{
|
|
988
|
-
"color": "#
|
|
988
|
+
"color": "#401960",
|
|
989
989
|
"flexShrink": 1,
|
|
990
990
|
"lineHeight": 22,
|
|
991
991
|
"textAlign": "center",
|
|
@@ -1060,7 +1060,7 @@ exports[`Button renders correctly 8`] = `
|
|
|
1060
1060
|
[
|
|
1061
1061
|
{
|
|
1062
1062
|
"alignItems": "center",
|
|
1063
|
-
"backgroundColor": "#
|
|
1063
|
+
"backgroundColor": "#ece8ef",
|
|
1064
1064
|
"borderRadius": 4,
|
|
1065
1065
|
"borderWidth": 0,
|
|
1066
1066
|
"flexDirection": "row",
|
|
@@ -1104,7 +1104,7 @@ exports[`Button renders correctly 8`] = `
|
|
|
1104
1104
|
style={
|
|
1105
1105
|
[
|
|
1106
1106
|
{
|
|
1107
|
-
"backgroundColor": "#
|
|
1107
|
+
"backgroundColor": "#795e90",
|
|
1108
1108
|
"borderRadius": 8,
|
|
1109
1109
|
"height": 12,
|
|
1110
1110
|
"marginHorizontal": 8,
|
|
@@ -1134,7 +1134,7 @@ exports[`Button renders correctly 8`] = `
|
|
|
1134
1134
|
style={
|
|
1135
1135
|
[
|
|
1136
1136
|
{
|
|
1137
|
-
"backgroundColor": "#
|
|
1137
|
+
"backgroundColor": "#795e90",
|
|
1138
1138
|
"borderRadius": 8,
|
|
1139
1139
|
"height": 12,
|
|
1140
1140
|
"marginHorizontal": 8,
|
|
@@ -1164,7 +1164,7 @@ exports[`Button renders correctly 8`] = `
|
|
|
1164
1164
|
style={
|
|
1165
1165
|
[
|
|
1166
1166
|
{
|
|
1167
|
-
"backgroundColor": "#
|
|
1167
|
+
"backgroundColor": "#795e90",
|
|
1168
1168
|
"borderRadius": 8,
|
|
1169
1169
|
"height": 12,
|
|
1170
1170
|
"marginHorizontal": 8,
|
|
@@ -1367,7 +1367,7 @@ exports[`Button renders correctly 10`] = `
|
|
|
1367
1367
|
},
|
|
1368
1368
|
[
|
|
1369
1369
|
{
|
|
1370
|
-
"color": "#
|
|
1370
|
+
"color": "#795e90",
|
|
1371
1371
|
"flexShrink": 1,
|
|
1372
1372
|
"lineHeight": 22,
|
|
1373
1373
|
"textAlign": "center",
|
|
@@ -1442,7 +1442,7 @@ exports[`Button renders correctly 11`] = `
|
|
|
1442
1442
|
[
|
|
1443
1443
|
{
|
|
1444
1444
|
"alignItems": "center",
|
|
1445
|
-
"backgroundColor": "#
|
|
1445
|
+
"backgroundColor": "#ece8ef",
|
|
1446
1446
|
"borderRadius": 4,
|
|
1447
1447
|
"borderWidth": 0,
|
|
1448
1448
|
"flexDirection": "row",
|
|
@@ -1486,7 +1486,7 @@ exports[`Button renders correctly 11`] = `
|
|
|
1486
1486
|
style={
|
|
1487
1487
|
[
|
|
1488
1488
|
{
|
|
1489
|
-
"backgroundColor": "#
|
|
1489
|
+
"backgroundColor": "#795e90",
|
|
1490
1490
|
"borderRadius": 8,
|
|
1491
1491
|
"height": 12,
|
|
1492
1492
|
"marginHorizontal": 8,
|
|
@@ -1516,7 +1516,7 @@ exports[`Button renders correctly 11`] = `
|
|
|
1516
1516
|
style={
|
|
1517
1517
|
[
|
|
1518
1518
|
{
|
|
1519
|
-
"backgroundColor": "#
|
|
1519
|
+
"backgroundColor": "#795e90",
|
|
1520
1520
|
"borderRadius": 8,
|
|
1521
1521
|
"height": 12,
|
|
1522
1522
|
"marginHorizontal": 8,
|
|
@@ -1546,7 +1546,7 @@ exports[`Button renders correctly 11`] = `
|
|
|
1546
1546
|
style={
|
|
1547
1547
|
[
|
|
1548
1548
|
{
|
|
1549
|
-
"backgroundColor": "#
|
|
1549
|
+
"backgroundColor": "#795e90",
|
|
1550
1550
|
"borderRadius": 8,
|
|
1551
1551
|
"height": 12,
|
|
1552
1552
|
"marginHorizontal": 8,
|
|
@@ -1824,7 +1824,7 @@ exports[`Button renders correctly 14`] = `
|
|
|
1824
1824
|
[
|
|
1825
1825
|
{
|
|
1826
1826
|
"alignItems": "center",
|
|
1827
|
-
"backgroundColor": "#
|
|
1827
|
+
"backgroundColor": "#ece8ef",
|
|
1828
1828
|
"borderRadius": 4,
|
|
1829
1829
|
"borderWidth": 0,
|
|
1830
1830
|
"flexDirection": "row",
|
|
@@ -2104,7 +2104,7 @@ exports[`Button renders loading icon 1`] = `
|
|
|
2104
2104
|
{
|
|
2105
2105
|
"alignItems": "center",
|
|
2106
2106
|
"alignSelf": "stretch",
|
|
2107
|
-
"backgroundColor": "#
|
|
2107
|
+
"backgroundColor": "#401960",
|
|
2108
2108
|
"borderRadius": 32,
|
|
2109
2109
|
"flexDirection": "row",
|
|
2110
2110
|
"height": 60,
|
|
@@ -100,7 +100,7 @@ exports[`StyledButtonContainer has filled-primary style 1`] = `
|
|
|
100
100
|
{
|
|
101
101
|
"alignItems": "center",
|
|
102
102
|
"alignSelf": "stretch",
|
|
103
|
-
"backgroundColor": "#
|
|
103
|
+
"backgroundColor": "#401960",
|
|
104
104
|
"borderRadius": 32,
|
|
105
105
|
"flexDirection": "row",
|
|
106
106
|
"height": 60,
|
|
@@ -169,7 +169,7 @@ exports[`StyledButtonContainer has filled-secondary style 1`] = `
|
|
|
169
169
|
{
|
|
170
170
|
"alignItems": "center",
|
|
171
171
|
"alignSelf": "stretch",
|
|
172
|
-
"backgroundColor": "#
|
|
172
|
+
"backgroundColor": "#795e90",
|
|
173
173
|
"borderRadius": 32,
|
|
174
174
|
"flexDirection": "row",
|
|
175
175
|
"height": 60,
|
|
@@ -310,7 +310,7 @@ exports[`StyledButtonContainer has outlined-primary style 1`] = `
|
|
|
310
310
|
"alignItems": "center",
|
|
311
311
|
"alignSelf": "stretch",
|
|
312
312
|
"backgroundColor": "transparent",
|
|
313
|
-
"borderColor": "#
|
|
313
|
+
"borderColor": "#401960",
|
|
314
314
|
"borderRadius": 32,
|
|
315
315
|
"borderWidth": 2,
|
|
316
316
|
"flexDirection": "row",
|
|
@@ -381,7 +381,7 @@ exports[`StyledButtonContainer has outlined-secondary style 1`] = `
|
|
|
381
381
|
"alignItems": "center",
|
|
382
382
|
"alignSelf": "stretch",
|
|
383
383
|
"backgroundColor": "transparent",
|
|
384
|
-
"borderColor": "#
|
|
384
|
+
"borderColor": "#795e90",
|
|
385
385
|
"borderRadius": 32,
|
|
386
386
|
"borderWidth": 2,
|
|
387
387
|
"flexDirection": "row",
|
|
@@ -923,7 +923,7 @@ exports[`StyledButtonIcon has outlined-primary style 1`] = `
|
|
|
923
923
|
},
|
|
924
924
|
[
|
|
925
925
|
{
|
|
926
|
-
"color": "#
|
|
926
|
+
"color": "#401960",
|
|
927
927
|
"fontSize": 20,
|
|
928
928
|
},
|
|
929
929
|
undefined,
|
|
@@ -974,7 +974,7 @@ exports[`StyledButtonIcon has outlined-secondary style 1`] = `
|
|
|
974
974
|
},
|
|
975
975
|
[
|
|
976
976
|
{
|
|
977
|
-
"color": "#
|
|
977
|
+
"color": "#795e90",
|
|
978
978
|
"fontSize": 20,
|
|
979
979
|
},
|
|
980
980
|
undefined,
|
|
@@ -1076,7 +1076,7 @@ exports[`StyledButtonIcon has text-primary style 1`] = `
|
|
|
1076
1076
|
},
|
|
1077
1077
|
[
|
|
1078
1078
|
{
|
|
1079
|
-
"color": "#
|
|
1079
|
+
"color": "#401960",
|
|
1080
1080
|
"fontSize": 20,
|
|
1081
1081
|
},
|
|
1082
1082
|
undefined,
|
|
@@ -1127,7 +1127,7 @@ exports[`StyledButtonIcon has text-secondary style 1`] = `
|
|
|
1127
1127
|
},
|
|
1128
1128
|
[
|
|
1129
1129
|
{
|
|
1130
|
-
"color": "#
|
|
1130
|
+
"color": "#795e90",
|
|
1131
1131
|
"fontSize": 20,
|
|
1132
1132
|
},
|
|
1133
1133
|
undefined,
|
|
@@ -1552,7 +1552,7 @@ exports[`StyledButtonText has outlined-primary style 1`] = `
|
|
|
1552
1552
|
},
|
|
1553
1553
|
[
|
|
1554
1554
|
{
|
|
1555
|
-
"color": "#
|
|
1555
|
+
"color": "#401960",
|
|
1556
1556
|
"flexShrink": 1,
|
|
1557
1557
|
"textAlign": "center",
|
|
1558
1558
|
},
|
|
@@ -1611,7 +1611,7 @@ exports[`StyledButtonText has outlined-secondary style 1`] = `
|
|
|
1611
1611
|
},
|
|
1612
1612
|
[
|
|
1613
1613
|
{
|
|
1614
|
-
"color": "#
|
|
1614
|
+
"color": "#795e90",
|
|
1615
1615
|
"flexShrink": 1,
|
|
1616
1616
|
"textAlign": "center",
|
|
1617
1617
|
},
|
|
@@ -1729,7 +1729,7 @@ exports[`StyledButtonText has text-primary style 1`] = `
|
|
|
1729
1729
|
},
|
|
1730
1730
|
[
|
|
1731
1731
|
{
|
|
1732
|
-
"color": "#
|
|
1732
|
+
"color": "#401960",
|
|
1733
1733
|
"flexShrink": 1,
|
|
1734
1734
|
"textAlign": "center",
|
|
1735
1735
|
},
|
|
@@ -1788,7 +1788,7 @@ exports[`StyledButtonText has text-secondary style 1`] = `
|
|
|
1788
1788
|
},
|
|
1789
1789
|
[
|
|
1790
1790
|
{
|
|
1791
|
-
"color": "#
|
|
1791
|
+
"color": "#795e90",
|
|
1792
1792
|
"flexShrink": 1,
|
|
1793
1793
|
"textAlign": "center",
|
|
1794
1794
|
},
|
|
@@ -90,7 +90,7 @@ exports[`CalendarRowItem renders correctly 1`] = `
|
|
|
90
90
|
style={
|
|
91
91
|
[
|
|
92
92
|
{
|
|
93
|
-
"backgroundColor": "#
|
|
93
|
+
"backgroundColor": "#401960",
|
|
94
94
|
"borderRadius": 999,
|
|
95
95
|
"bottom": "10%",
|
|
96
96
|
"height": 4,
|
|
@@ -218,7 +218,7 @@ exports[`CalendarRowItem renders correctly 2`] = `
|
|
|
218
218
|
style={
|
|
219
219
|
[
|
|
220
220
|
{
|
|
221
|
-
"backgroundColor": "#
|
|
221
|
+
"backgroundColor": "#401960",
|
|
222
222
|
"borderRadius": 999,
|
|
223
223
|
"bottom": "10%",
|
|
224
224
|
"height": 4,
|
|
@@ -310,7 +310,7 @@ exports[`CalendarRowItem renders correctly when is current date 1`] = `
|
|
|
310
310
|
style={
|
|
311
311
|
{
|
|
312
312
|
"alignItems": "center",
|
|
313
|
-
"backgroundColor": "#
|
|
313
|
+
"backgroundColor": "#401960",
|
|
314
314
|
"borderColor": "#001f23",
|
|
315
315
|
"borderRadius": 999,
|
|
316
316
|
"borderWidth": 0,
|
|
@@ -437,7 +437,7 @@ exports[`CalendarRowItem renders correctly when selected, and is current date eq
|
|
|
437
437
|
style={
|
|
438
438
|
{
|
|
439
439
|
"alignItems": "center",
|
|
440
|
-
"backgroundColor": "#
|
|
440
|
+
"backgroundColor": "#401960",
|
|
441
441
|
"borderColor": "#001f23",
|
|
442
442
|
"borderRadius": 999,
|
|
443
443
|
"borderWidth": 0,
|
|
@@ -564,7 +564,7 @@ exports[`CalendarRowItem renders correctly when selected, and is current date eq
|
|
|
564
564
|
style={
|
|
565
565
|
{
|
|
566
566
|
"alignItems": "center",
|
|
567
|
-
"backgroundColor": "#
|
|
567
|
+
"backgroundColor": "#401960",
|
|
568
568
|
"borderColor": "#001f23",
|
|
569
569
|
"borderRadius": 999,
|
|
570
570
|
"borderWidth": 0,
|
|
@@ -241,7 +241,7 @@ exports[`CardCarousel android should render correctly on iOS 1`] = `
|
|
|
241
241
|
collapsable={false}
|
|
242
242
|
style={
|
|
243
243
|
{
|
|
244
|
-
"backgroundColor": "#
|
|
244
|
+
"backgroundColor": "#401960",
|
|
245
245
|
"borderRadius": 999,
|
|
246
246
|
"height": 8,
|
|
247
247
|
"marginHorizontal": 8,
|
|
@@ -260,7 +260,7 @@ exports[`CardCarousel android should render correctly on iOS 1`] = `
|
|
|
260
260
|
collapsable={false}
|
|
261
261
|
style={
|
|
262
262
|
{
|
|
263
|
-
"backgroundColor": "#
|
|
263
|
+
"backgroundColor": "#401960",
|
|
264
264
|
"borderRadius": 999,
|
|
265
265
|
"height": 8,
|
|
266
266
|
"marginHorizontal": 8,
|
|
@@ -536,7 +536,7 @@ exports[`CardCarousel ios should render correctly on iOS 1`] = `
|
|
|
536
536
|
collapsable={false}
|
|
537
537
|
style={
|
|
538
538
|
{
|
|
539
|
-
"backgroundColor": "#
|
|
539
|
+
"backgroundColor": "#401960",
|
|
540
540
|
"borderRadius": 999,
|
|
541
541
|
"height": 8,
|
|
542
542
|
"marginHorizontal": 8,
|
|
@@ -555,7 +555,7 @@ exports[`CardCarousel ios should render correctly on iOS 1`] = `
|
|
|
555
555
|
collapsable={false}
|
|
556
556
|
style={
|
|
557
557
|
{
|
|
558
|
-
"backgroundColor": "#
|
|
558
|
+
"backgroundColor": "#401960",
|
|
559
559
|
"borderRadius": 999,
|
|
560
560
|
"height": 8,
|
|
561
561
|
"marginHorizontal": 8,
|
|
@@ -124,7 +124,7 @@ exports[`StyledPageControl should render correctly 1`] = `
|
|
|
124
124
|
collapsable={false}
|
|
125
125
|
style={
|
|
126
126
|
{
|
|
127
|
-
"backgroundColor": "#
|
|
127
|
+
"backgroundColor": "#401960",
|
|
128
128
|
"borderRadius": 999,
|
|
129
129
|
"height": 8,
|
|
130
130
|
"marginHorizontal": 8,
|
|
@@ -143,7 +143,7 @@ exports[`StyledPageControl should render correctly 1`] = `
|
|
|
143
143
|
collapsable={false}
|
|
144
144
|
style={
|
|
145
145
|
{
|
|
146
|
-
"backgroundColor": "#
|
|
146
|
+
"backgroundColor": "#401960",
|
|
147
147
|
"borderRadius": 999,
|
|
148
148
|
"height": 8,
|
|
149
149
|
"marginHorizontal": 8,
|
|
@@ -162,7 +162,7 @@ exports[`StyledPageControl should render correctly 1`] = `
|
|
|
162
162
|
collapsable={false}
|
|
163
163
|
style={
|
|
164
164
|
{
|
|
165
|
-
"backgroundColor": "#
|
|
165
|
+
"backgroundColor": "#401960",
|
|
166
166
|
"borderRadius": 999,
|
|
167
167
|
"height": 8,
|
|
168
168
|
"marginHorizontal": 8,
|
|
@@ -12,7 +12,7 @@ exports[`StyledBackDrop renders correct basic style 1`] = `
|
|
|
12
12
|
style={
|
|
13
13
|
[
|
|
14
14
|
{
|
|
15
|
-
"backgroundColor": "#
|
|
15
|
+
"backgroundColor": "#ece8ef",
|
|
16
16
|
"bottom": 0,
|
|
17
17
|
"left": 0,
|
|
18
18
|
"position": "absolute",
|
|
@@ -22,7 +22,7 @@ exports[`StyledBackDrop renders correct basic style 1`] = `
|
|
|
22
22
|
undefined,
|
|
23
23
|
]
|
|
24
24
|
}
|
|
25
|
-
themeSlideBackground="#
|
|
25
|
+
themeSlideBackground="#ece8ef"
|
|
26
26
|
/>
|
|
27
27
|
<View
|
|
28
28
|
pointerEvents="box-none"
|