@hero-design/rn 8.0.0-rc.0 → 8.0.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/.eslintrc.js +2 -1
- package/.turbo/turbo-build.log +9 -9
- package/assets/fonts/{RebondGrotesque-Regular.otf → RebondGrotesque.otf} +0 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +437 -617
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +436 -616
- package/package.json +9 -7
- package/src/components/Alert/StyledAlert.tsx +2 -3
- package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +6 -12
- package/src/components/Alert/index.tsx +3 -23
- package/src/components/BottomSheet/StyledBottomSheet.tsx +0 -1
- package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +4 -6
- package/src/components/Box/__tests__/__snapshots__/index.spec.tsx.snap +4 -26
- package/src/components/Button/Button.tsx +7 -16
- package/src/components/Button/StyledButton.tsx +0 -46
- package/src/components/Button/__tests__/Button.spec.tsx +10 -11
- package/src/components/Button/__tests__/StyledButton.spec.tsx +0 -3
- package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +0 -91
- package/src/components/Card/StyledCard.tsx +2 -11
- package/src/components/Card/__tests__/StyledCard.spec.tsx +2 -14
- package/src/components/Card/__tests__/__snapshots__/StyledCard.spec.tsx.snap +0 -32
- package/src/components/Card/__tests__/__snapshots__/index.spec.tsx.snap +0 -4
- package/src/components/Card/__tests__/index.spec.tsx +1 -13
- package/src/components/Card/index.tsx +5 -26
- package/src/components/DatePicker/DatePickerAndroid.tsx +4 -0
- package/src/components/DatePicker/DatePickerIOS.tsx +9 -11
- package/src/components/DatePicker/__tests__/DatePicker.spec.tsx +4 -0
- package/src/components/DatePicker/__tests__/DatePickerAndroid.spec.tsx +4 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +3 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +31 -12
- package/src/components/DatePicker/types.ts +8 -0
- package/src/components/Empty/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +0 -8
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +5 -7
- package/src/components/Progress/ProgressCircle.tsx +1 -1
- package/src/components/Select/Footer.tsx +2 -7
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +120 -50
- package/src/components/Select/MultiSelect/index.tsx +1 -20
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +5 -0
- package/src/components/Select/SingleSelect/index.tsx +5 -24
- package/src/components/Select/StyledSelect.tsx +1 -12
- package/src/components/Select/types.ts +1 -11
- package/src/components/Switch/StyledSwitch.tsx +7 -12
- package/src/components/Switch/__tests__/StyledSwitch.spec.tsx +2 -2
- package/src/components/Switch/__tests__/__snapshots__/StyledSwitch.spec.tsx.snap +10 -15
- package/src/components/Switch/__tests__/__snapshots__/index.spec.tsx.snap +8 -12
- package/src/components/Switch/index.tsx +6 -22
- package/src/components/Tabs/ScrollableTabs.tsx +1 -6
- package/src/components/Tabs/TabWithBadge.tsx +1 -15
- package/src/components/Tabs/__tests__/ScrollableTabs.spec.tsx +3 -1
- package/src/components/Tabs/__tests__/TabWithBadge.spec.tsx +0 -12
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +4 -3
- package/src/components/Tabs/__tests__/__snapshots__/TabWithBadge.spec.tsx.snap +0 -70
- package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +1 -2
- package/src/components/Tabs/__tests__/index.spec.tsx +3 -1
- package/src/components/Tabs/index.tsx +12 -24
- package/src/components/Tag/StyledTag.tsx +0 -1
- package/src/components/Tag/__tests__/Tag.spec.tsx +0 -9
- package/src/components/Tag/__tests__/__snapshots__/Tag.spec.tsx.snap +0 -40
- package/src/components/Tag/index.tsx +3 -16
- package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +12 -0
- package/src/components/TextInput/__tests__/index.spec.tsx +4 -2
- package/src/components/TextInput/index.tsx +7 -1
- package/src/components/TimePicker/TimePickerIOS.tsx +5 -11
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +1 -0
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +31 -12
- package/src/components/Typography/Text/__tests__/__snapshots__/StyledText.spec.tsx.snap +1 -1
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +9 -72
- package/src/theme/components/bottomSheet.ts +2 -3
- package/src/theme/components/select.ts +1 -5
- package/src/theme/components/switch.ts +4 -14
- package/src/theme/components/tag.ts +0 -2
- package/src/theme/global/colors/swag.ts +1 -20
- package/src/theme/global/colors/types.ts +1 -58
- package/src/theme/global/typography.ts +1 -1
- package/src/utils/hooks.ts +1 -1
- 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 +0 -1
- package/types/components/Alert/index.d.ts +1 -6
- 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 +0 -0
- package/types/components/Badge/index.d.ts +0 -0
- package/types/components/BottomNavigation/StyledBottomNavigation.d.ts +0 -0
- package/types/components/BottomNavigation/index.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/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 +2 -3
- 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 +1 -1
- 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 +1 -8
- package/types/components/Card/index.d.ts +2 -8
- 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 +1 -1
- package/types/components/DatePicker/DatePickerIOS.d.ts +1 -1
- 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 +8 -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/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 +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- 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 +0 -0
- package/types/components/List/StyledListItem.d.ts +0 -0
- package/types/components/List/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/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 +1 -1
- 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 +1 -1
- package/types/components/Select/StyledSelect.d.ts +1 -5
- package/types/components/Select/helpers.d.ts +0 -0
- package/types/components/Select/index.d.ts +1 -1
- package/types/components/Select/types.d.ts +1 -11
- 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/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 -4
- package/types/components/Switch/index.d.ts +1 -6
- package/types/components/Tabs/ActiveTabIndicator.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 +1 -2
- package/types/components/Tabs/index.d.ts +2 -3
- package/types/components/Tabs/utils.d.ts +0 -0
- package/types/components/Tag/StyledTag.d.ts +1 -1
- package/types/components/Tag/index.d.ts +2 -2
- 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 +0 -0
- package/types/testHelpers/renderWithTheme.d.ts +0 -0
- package/types/theme/ThemeProvider.d.ts +0 -0
- package/types/theme/ThemeSwitcher.d.ts +0 -0
- 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 +0 -0
- package/types/theme/components/bottomNavigation.d.ts +0 -0
- package/types/theme/components/bottomSheet.d.ts +0 -1
- 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/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/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/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/sectionHeading.d.ts +0 -0
- package/types/theme/components/select.d.ts +0 -3
- package/types/theme/components/slider.d.ts +0 -0
- package/types/theme/components/spinner.d.ts +0 -0
- package/types/theme/components/swipeable.d.ts +0 -0
- package/types/theme/components/switch.d.ts +4 -14
- package/types/theme/components/tabs.d.ts +0 -0
- package/types/theme/components/tag.d.ts +0 -2
- 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 +0 -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/jobs.d.ts +0 -0
- package/types/theme/global/colors/swag.d.ts +0 -0
- package/types/theme/global/colors/types.d.ts +1 -52
- 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 -47
- 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/.expo/README.md +0 -15
- package/.expo/packager-info.json +0 -10
- package/.expo/prebuild/cached-packages.json +0 -4
- package/.expo/settings.json +0 -10
- package/.expo/xcodebuild-error.log +0 -2
- package/.expo/xcodebuild.log +0 -11199
- package/.turbo/turbo-build:types.log +0 -2
- package/.turbo/turbo-build:watch.log +0 -1
- package/.turbo/turbo-lint.log +0 -96
- package/.turbo/turbo-test.log +0 -909
- package/src/components/Select/__tests__/StyledSelect.spec.tsx +0 -14
- package/src/components/Select/__tests__/__snapshots__/StyledSelect.spec.tsx.snap +0 -29
- package/src/theme/__tests__/ensureCompatibleWithV7.spec.tsx +0 -13
- package/src/theme/global/colors/legacySystemPalette.ts +0 -53
- package/types/components/Accordion/utils.d.ts +0 -1
- package/types/components/Select/StyledOptionList.d.ts +0 -12
- package/types/theme/global/colors/legacySystemPalette.d.ts +0 -3
- package/types/theme/utils.d.ts +0 -2
package/es/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as reactNative from 'react-native';
|
|
2
|
-
import { Platform, Dimensions, StyleSheet as StyleSheet$1, Animated, View, Easing, TouchableOpacity, Text as Text$1, Image as Image$1, TouchableWithoutFeedback, Pressable, SafeAreaView, KeyboardAvoidingView, Modal, TextInput as TextInput$1, PanResponder, TouchableHighlight, InteractionManager, useWindowDimensions,
|
|
2
|
+
import { Platform, Dimensions, StyleSheet as StyleSheet$1, Animated, View, Easing, TouchableOpacity, Text as Text$1, Image as Image$1, TouchableWithoutFeedback, Pressable, SafeAreaView, KeyboardAvoidingView, Modal, TextInput as TextInput$1, PanResponder, TouchableHighlight, InteractionManager, useWindowDimensions, Keyboard, SectionList, FlatList, LayoutAnimation, RefreshControl as RefreshControl$1 } from 'react-native';
|
|
3
3
|
import React, { useContext, createContext, createElement, useMemo, forwardRef, useEffect, useCallback, useRef, useState, useLayoutEffect, useImperativeHandle } from 'react';
|
|
4
4
|
import { createIconSet } from 'react-native-vector-icons';
|
|
5
5
|
import { useSafeAreaInsets } from 'react-native-safe-area-context';
|
|
@@ -76,7 +76,7 @@ function _defineProperty(obj, key, value) {
|
|
|
76
76
|
return obj;
|
|
77
77
|
}
|
|
78
78
|
function _extends$1() {
|
|
79
|
-
_extends$1 = Object.assign
|
|
79
|
+
_extends$1 = Object.assign ? Object.assign.bind() : function (target) {
|
|
80
80
|
for (var i = 1; i < arguments.length; i++) {
|
|
81
81
|
var source = arguments[i];
|
|
82
82
|
for (var key in source) {
|
|
@@ -1046,6 +1046,7 @@ var blue$1 = colorScales.blue,
|
|
|
1046
1046
|
violetDark15: violet$2.darken15,
|
|
1047
1047
|
violetDark30: violet$2.darken30,
|
|
1048
1048
|
violetDark45: violet$2.darken45,
|
|
1049
|
+
violetDark60: violet$2.darken60,
|
|
1049
1050
|
violetDark75: violet$2.darken75,
|
|
1050
1051
|
violetLight30: violet$2.lighten30,
|
|
1051
1052
|
violetLight60: violet$2.lighten60,
|
|
@@ -1261,52 +1262,6 @@ var globalPalette = {
|
|
|
1261
1262
|
// End of Updated 21 / Nov / 22
|
|
1262
1263
|
};
|
|
1263
1264
|
|
|
1264
|
-
var legacySystemPalette = {
|
|
1265
|
-
globalPrimary: palette$6.maasstrichtBlue,
|
|
1266
|
-
globalPrimaryLight: palette$6.maasstrichtBlueLight50,
|
|
1267
|
-
globalPrimaryBackground: palette$6.maasstrichtBlueLight90,
|
|
1268
|
-
primaryLight: palette$2.violetLight50,
|
|
1269
|
-
primaryDark: palette$2.scarletGumLight30,
|
|
1270
|
-
primaryBackground: palette$2.violetLight90,
|
|
1271
|
-
primaryBackgroundDark: palette$6.maasstrichtBlueLight30,
|
|
1272
|
-
secondaryLight: palette$2.vodka,
|
|
1273
|
-
secondaryBackground: palette$2.aliceBlue,
|
|
1274
|
-
infoMediumLight: palette$6.vodka,
|
|
1275
|
-
infoLight: palette$6.vodka,
|
|
1276
|
-
infoBackground: palette$6.aliceBlue,
|
|
1277
|
-
successLight: palette$6.emerald,
|
|
1278
|
-
successDark: palette$6.pineGreen,
|
|
1279
|
-
successBackground: palette$6.honeydew,
|
|
1280
|
-
danger: palette$6.vermilion,
|
|
1281
|
-
dangerMediumLight: palette$6.apple,
|
|
1282
|
-
dangerLight: palette$6.pastelRed,
|
|
1283
|
-
dangerBackground: palette$6.linen,
|
|
1284
|
-
warningLight: palette$6.mellowApricot,
|
|
1285
|
-
warningDark: palette$6.deepSaffron,
|
|
1286
|
-
warningBackground: palette$6.seashell,
|
|
1287
|
-
platformBackground: palette$6.white,
|
|
1288
|
-
backgroundLight: palette$6.greyLight90,
|
|
1289
|
-
backgroundDark: palette$6.maasstrichtBlue,
|
|
1290
|
-
text: palette$6.maasstrichtBlue,
|
|
1291
|
-
subduedText: palette$6.maasstrichtBlueLight30,
|
|
1292
|
-
disabledText: palette$6.maasstrichtBlueLight50,
|
|
1293
|
-
disabledLightText: palette$6.greyLight30,
|
|
1294
|
-
invertedText: palette$6.white,
|
|
1295
|
-
outline: palette$6.greyLight75,
|
|
1296
|
-
archivedLight: palette$6.greyLight30,
|
|
1297
|
-
archivedDark: palette$6.sonicSilver,
|
|
1298
|
-
archivedBackground: palette$6.greyLight90,
|
|
1299
|
-
black: palette$6.black,
|
|
1300
|
-
inactiveBackground: palette$6.maasstrichtBlueLight50,
|
|
1301
|
-
shadow: palette$6.greyLight45,
|
|
1302
|
-
// Updated 14 / Nov / 22
|
|
1303
|
-
mutedGlobalPrimary: palette$6.maasstrichtBlueLight30,
|
|
1304
|
-
onGlobalPrimary: palette$6.white,
|
|
1305
|
-
globalSecondary: palette$6.maasstrichtBlueLight30,
|
|
1306
|
-
globalPrimaryOutline: palette$6.maasstrichtBlue,
|
|
1307
|
-
globalSecondaryOutline: palette$6.greyLight75
|
|
1308
|
-
};
|
|
1309
|
-
|
|
1310
1265
|
var swagBrandSystemPallete = {
|
|
1311
1266
|
primary: palette$2.scarletGum,
|
|
1312
1267
|
onPrimary: palette$2.white,
|
|
@@ -1318,14 +1273,7 @@ var swagBrandSystemPallete = {
|
|
|
1318
1273
|
decorativePrimary: palette$2.white,
|
|
1319
1274
|
decorativePrimarySurface: palette$2.maasstrichtBlueLight80
|
|
1320
1275
|
};
|
|
1321
|
-
var
|
|
1322
|
-
mutedPrimary: palette$2.maasstrichtBlueLight90,
|
|
1323
|
-
highlightedSecondarySurface: palette$2.aliceBlue,
|
|
1324
|
-
mutedSecondary: palette$2.maasstrichtBlueLight50,
|
|
1325
|
-
disabledSecondary: palette$2.scarletGumLight50,
|
|
1326
|
-
lightHighlightedSurface: palette$2.scarletGumLight90
|
|
1327
|
-
};
|
|
1328
|
-
var swagSystemPalette = _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({}, legacySystemPalette), swagLegacyBrandSystemPalette), globalPalette), swagBrandSystemPallete);
|
|
1276
|
+
var swagSystemPalette = _objectSpread2(_objectSpread2({}, globalPalette), swagBrandSystemPallete);
|
|
1329
1277
|
|
|
1330
1278
|
var workBrandSystemPallete = {
|
|
1331
1279
|
primary: palette.policeBlue,
|
|
@@ -1411,7 +1359,7 @@ var getFonts = function getFonts(_ref) {
|
|
|
1411
1359
|
},
|
|
1412
1360
|
playful: {
|
|
1413
1361
|
light: "".concat(playful, "-Light"),
|
|
1414
|
-
regular: "".concat(playful
|
|
1362
|
+
regular: "".concat(playful),
|
|
1415
1363
|
semiBold: "".concat(playful, "-SemiBold")
|
|
1416
1364
|
}
|
|
1417
1365
|
};
|
|
@@ -1712,15 +1660,14 @@ var getBottomSheetTheme = function getBottomSheetTheme(theme) {
|
|
|
1712
1660
|
backdrop: theme.colors.overlayGlobalSurface
|
|
1713
1661
|
};
|
|
1714
1662
|
var sizes = {
|
|
1715
|
-
sectionHeight: theme.sizes.xxxxxlarge,
|
|
1716
1663
|
closeIcon: theme.sizes.xxxlarge
|
|
1717
1664
|
};
|
|
1718
1665
|
var space = {
|
|
1719
1666
|
headerWrapperVerticalPadding: theme.space.small,
|
|
1720
1667
|
headerWrapperHorizontalPadding: theme.space.medium,
|
|
1721
1668
|
closeIconMargin: theme.space.smallMedium,
|
|
1722
|
-
footerVerticalPadding: theme.space.
|
|
1723
|
-
footerHorizontalPadding: theme.space.
|
|
1669
|
+
footerVerticalPadding: theme.space.xxsmall,
|
|
1670
|
+
footerHorizontalPadding: theme.space.smallMedium
|
|
1724
1671
|
};
|
|
1725
1672
|
var shadows = {
|
|
1726
1673
|
offset: {
|
|
@@ -2307,9 +2254,6 @@ var getSectionHeadingTheme = function getSectionHeadingTheme(theme) {
|
|
|
2307
2254
|
};
|
|
2308
2255
|
|
|
2309
2256
|
var getSelectTheme = function getSelectTheme(theme) {
|
|
2310
|
-
var colors = {
|
|
2311
|
-
footerText: theme.colors.secondary
|
|
2312
|
-
};
|
|
2313
2257
|
var space = {
|
|
2314
2258
|
minimumOptionListHeight: theme.space.xxxxlarge * 5,
|
|
2315
2259
|
sectionSpacing: theme.space.smallMedium,
|
|
@@ -2326,7 +2270,6 @@ var getSelectTheme = function getSelectTheme(theme) {
|
|
|
2326
2270
|
};
|
|
2327
2271
|
return {
|
|
2328
2272
|
space: space,
|
|
2329
|
-
colors: colors,
|
|
2330
2273
|
radii: radii
|
|
2331
2274
|
};
|
|
2332
2275
|
};
|
|
@@ -2399,25 +2342,15 @@ var getSwitchTheme = function getSwitchTheme(theme) {
|
|
|
2399
2342
|
}
|
|
2400
2343
|
};
|
|
2401
2344
|
var sizes = {
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
},
|
|
2406
|
-
widths: {
|
|
2407
|
-
small: theme.sizes.xxxlarge,
|
|
2408
|
-
medium: theme.sizes.xxxxxlarge
|
|
2409
|
-
},
|
|
2410
|
-
heights: {
|
|
2411
|
-
small: theme.sizes.large,
|
|
2412
|
-
medium: theme.sizes.xlarge
|
|
2413
|
-
},
|
|
2345
|
+
thumb: theme.sizes.medium,
|
|
2346
|
+
width: theme.sizes.xxxlarge,
|
|
2347
|
+
height: theme.sizes.large,
|
|
2414
2348
|
selector: {
|
|
2415
2349
|
height: theme.sizes.xxxxlarge
|
|
2416
2350
|
}
|
|
2417
2351
|
};
|
|
2418
2352
|
var spaces = {
|
|
2419
|
-
|
|
2420
|
-
medium: theme.space.xsmall,
|
|
2353
|
+
paddingHorizontal: theme.space.xsmall,
|
|
2421
2354
|
selector: {
|
|
2422
2355
|
iconPadding: theme.space.medium,
|
|
2423
2356
|
wrapperPadding: theme.space.xsmall
|
|
@@ -2477,8 +2410,6 @@ var getTagTheme = function getTagTheme(theme) {
|
|
|
2477
2410
|
"default": theme.borderWidths.base
|
|
2478
2411
|
};
|
|
2479
2412
|
var colors = {
|
|
2480
|
-
"default": theme.colors.onDefaultGlobalSurface,
|
|
2481
|
-
defaultBackground: undefined,
|
|
2482
2413
|
primary: theme.colors.primary,
|
|
2483
2414
|
primaryBackground: undefined,
|
|
2484
2415
|
info: theme.colors.onInfoSurface,
|
|
@@ -5669,7 +5600,7 @@ var useDeprecation = function useDeprecation(message) {
|
|
|
5669
5600
|
useEffect(function () {
|
|
5670
5601
|
// eslint-disable-next-line no-console
|
|
5671
5602
|
if (cond) {
|
|
5672
|
-
console.
|
|
5603
|
+
console.error(message);
|
|
5673
5604
|
}
|
|
5674
5605
|
}, [message, cond]);
|
|
5675
5606
|
};
|
|
@@ -5790,7 +5721,7 @@ var Typography = {
|
|
|
5790
5721
|
};
|
|
5791
5722
|
|
|
5792
5723
|
// 🔴 DO NOT EDIT — This file is generated automatically.
|
|
5793
|
-
var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bookmark', 'box-check', 'box', 'buildings', 'cake', 'calendar-clock', 'calendar', 'candy-box-menu', '
|
|
5724
|
+
var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bookmark', 'box-check', 'box', 'buildings', 'cake', 'calendar-clock', 'calendar', 'candy-box-menu', 'caret-down-small', 'caret-down', 'caret-left-small', 'caret-left', 'caret-right-small', 'caret-right', 'caret-up-small', 'caret-up', 'check-radio', 'circle-add', 'circle-cancel', 'circle-check', 'circle-down', 'circle-info', 'circle-left', 'circle-ok', 'circle-pencil', 'circle-question', 'circle-remove', 'circle-right', 'circle-up', 'circle-warning', 'clock-3', 'clock', 'cloud-download', 'cloud-upload', 'cog', 'coin', 'contacts', 'credit-card', 'diamond', 'direction-arrows', 'directory', 'document', 'dollar-coin-shine', 'double-buildings', 'edit-template', 'envelope', 'expense', 'eye-circle', 'eye-invisible', 'eye', 'face-meh', 'face-sad', 'face-smiley', 'feed', 'feedbacks', 'file-certified', 'file-clone', 'file-copy', 'file-csv', 'file-dispose', 'file-doc', 'file-excel', 'file-export', 'file-lock', 'file-pdf', 'file-powerpoint', 'file-search', 'file-secured', 'file-sheets', 'file-slide', 'file-verified', 'file-word', 'file', 'filter', 'folder-user', 'folder', 'format-bold', 'format-heading1', 'format-heading2', 'format-italic', 'format-list-bulleted', 'format-list-numbered', 'format-underlined', 'funnel-filter', 'global-dollar', 'globe', 'graduation-cap', 'graph', 'happy-sun', 'health-bag', 'heart', 'home', 'image', 'import', 'incident-siren', 'instapay', 'list', 'loading-2', 'loading', 'location', 'lock', 'looks-one', 'looks-two', 'media-content', 'menu', 'moneybag', 'moon', 'multiple-stars', 'multiple-users', 'node', 'open-folder', 'paperclip', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane', 'play-circle', 'print', 'raising-hands', 'reply-arrow', 'reply', 'reschedule', 'rostering', 'save', 'schedule-send', 'schedule', 'search-person', 'send', 'speaker-active', 'speaker', 'star-award', 'star-badge', 'star-medal', 'star', 'steps-circle', 'stopwatch', 'suitcase', 'survey', 'swag', 'switch', 'tag', 'target', 'teams', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'activate-outlined', 'add-credit-card-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'arrow-down', 'arrow-downwards', 'arrow-left', 'arrow-leftwards', 'arrow-right', 'arrow-rightwards', 'arrow-up', 'arrow-upwards', 'at-sign', 'bell-active-outlined', 'bell-outlined', 'bell-slash-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bookmark-added-outlined', 'bookmark-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calendar-dates-outlined', 'calendar-star-outlined', 'camera-outlined', 'cancel', 'chat-bubble-outlined', 'chat-unread-outlined', 'checkmark', 'circle-add-outlined', 'circle-cancel-outlined', 'circle-down-outlined', 'circle-info-outlined', 'circle-left-outlined', 'circle-ok-outlined', 'circle-question-outlined', 'circle-remove-outlined', 'circle-right-outlined', 'circle-up-outlined', 'circle-warning-outlined', 'clock-2-outlined', 'clock-outlined', 'cog-outlined', 'coin-outlined', 'comment-outlined', 'contacts-outlined', 'credit-card-outlined', 'cup-outlined', 'direction-arrows-outlined', 'directory-outlined', 'document-outlined', 'dollar-card-outlined', 'dollar-coin-shine-outlined', 'dollar-sign', 'double-buildings-outlined', 'double-left-arrows', 'double-right-arrows', 'download-outlined', 'edit-template-outlined', 'email-outlined', 'enter-arrow', 'envelope-outlined', 'expense-outlined', 'explore-outlined', 'external-link', 'eye-invisible-outlined', 'eye-outlined', 'face-id', 'face-meh-outlined', 'face-open-smiley-outlined', 'face-sad-outlined', 'face-smiley-outlined', 'feed-outlined', 'file-certified-outlined', 'file-clone-outlined', 'file-copy-outlined', 'file-dispose-outlined', 'file-dollar-outlined', 'file-download-outlined', 'file-export-outlined', 'file-lock-outlined', 'file-outlined', 'file-search-outlined', 'file-secured-outlined', 'file-verified-outlined', 'filter-outlined', 'folder-outlined', 'folder-user-outlined', 'funnel-filter-outline', 'graph-outlined', 'hand-holding-user-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-active-outlined', 'home-outlined', 'id-card-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'link-1', 'link-2', 'list-outlined', 'live-help-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'multiple-folders-outlined', 'multiple-users-outlined', 'near-me-outlined', 'node-outlined', 'number-points', 'number', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'print-outlined', 'qr-code-outlined', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'return-arrow', 'rostering-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'search-secured-outlined', 'send-outlined', 'share-1', 'share-2', 'share-outlined', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'speaker-active-outlined', 'speaker-outlined', 'star-outlined', 'stopwatch-outlined', 'strikethrough', 'suitcase-clock-outlined', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'target-outlined', 'timesheet-outlined', 'transfer', 'trash-bin-outlined', 'umbrela-outlined', 'unavailable', 'underline', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'wallet-outlined'];
|
|
5794
5725
|
|
|
5795
5726
|
var activate = 59000;
|
|
5796
5727
|
var adjustment = 59003;
|
|
@@ -5805,76 +5736,76 @@ var box = 59013;
|
|
|
5805
5736
|
var buildings = 59014;
|
|
5806
5737
|
var cake = 59015;
|
|
5807
5738
|
var calendar = 59017;
|
|
5808
|
-
var clock =
|
|
5809
|
-
var cog =
|
|
5810
|
-
var coin =
|
|
5811
|
-
var contacts =
|
|
5812
|
-
var diamond =
|
|
5813
|
-
var directory =
|
|
5814
|
-
var document$1 =
|
|
5815
|
-
var envelope =
|
|
5816
|
-
var expense =
|
|
5817
|
-
var eye =
|
|
5818
|
-
var feed =
|
|
5819
|
-
var feedbacks =
|
|
5820
|
-
var file =
|
|
5821
|
-
var filter =
|
|
5822
|
-
var folder =
|
|
5823
|
-
var globe =
|
|
5824
|
-
var graph =
|
|
5825
|
-
var heart =
|
|
5826
|
-
var home =
|
|
5827
|
-
var image =
|
|
5828
|
-
var instapay =
|
|
5829
|
-
var list =
|
|
5830
|
-
var loading =
|
|
5831
|
-
var location =
|
|
5832
|
-
var lock =
|
|
5833
|
-
var menu =
|
|
5834
|
-
var moneybag =
|
|
5835
|
-
var moon =
|
|
5836
|
-
var node =
|
|
5837
|
-
var paperclip =
|
|
5838
|
-
var pencil =
|
|
5839
|
-
var phone =
|
|
5840
|
-
var plane =
|
|
5841
|
-
var print =
|
|
5842
|
-
var reply =
|
|
5843
|
-
var reschedule =
|
|
5844
|
-
var rostering =
|
|
5845
|
-
var save =
|
|
5846
|
-
var schedule =
|
|
5847
|
-
var send =
|
|
5848
|
-
var speaker =
|
|
5849
|
-
var star =
|
|
5850
|
-
var stopwatch =
|
|
5851
|
-
var suitcase =
|
|
5852
|
-
var survey =
|
|
5853
|
-
var swag =
|
|
5854
|
-
var tag =
|
|
5855
|
-
var target =
|
|
5856
|
-
var teams =
|
|
5857
|
-
var timesheet =
|
|
5858
|
-
var unlock =
|
|
5859
|
-
var user =
|
|
5860
|
-
var wallet =
|
|
5861
|
-
var warning =
|
|
5862
|
-
var add =
|
|
5863
|
-
var bold =
|
|
5864
|
-
var cancel =
|
|
5865
|
-
var checkmark =
|
|
5866
|
-
var italic =
|
|
5867
|
-
var number =
|
|
5868
|
-
var percentage =
|
|
5869
|
-
var redeem =
|
|
5870
|
-
var refresh =
|
|
5871
|
-
var remove =
|
|
5872
|
-
var restart =
|
|
5873
|
-
var strikethrough =
|
|
5874
|
-
var sync =
|
|
5875
|
-
var transfer =
|
|
5876
|
-
var unavailable =
|
|
5877
|
-
var underline =
|
|
5739
|
+
var clock = 59042;
|
|
5740
|
+
var cog = 59045;
|
|
5741
|
+
var coin = 59046;
|
|
5742
|
+
var contacts = 59047;
|
|
5743
|
+
var diamond = 59049;
|
|
5744
|
+
var directory = 59051;
|
|
5745
|
+
var document$1 = 59052;
|
|
5746
|
+
var envelope = 59056;
|
|
5747
|
+
var expense = 59057;
|
|
5748
|
+
var eye = 59060;
|
|
5749
|
+
var feed = 59064;
|
|
5750
|
+
var feedbacks = 59065;
|
|
5751
|
+
var file = 59083;
|
|
5752
|
+
var filter = 59084;
|
|
5753
|
+
var folder = 59086;
|
|
5754
|
+
var globe = 59096;
|
|
5755
|
+
var graph = 59098;
|
|
5756
|
+
var heart = 59101;
|
|
5757
|
+
var home = 59102;
|
|
5758
|
+
var image = 59103;
|
|
5759
|
+
var instapay = 59106;
|
|
5760
|
+
var list = 59107;
|
|
5761
|
+
var loading = 59109;
|
|
5762
|
+
var location = 59110;
|
|
5763
|
+
var lock = 59111;
|
|
5764
|
+
var menu = 59115;
|
|
5765
|
+
var moneybag = 59116;
|
|
5766
|
+
var moon = 59117;
|
|
5767
|
+
var node = 59120;
|
|
5768
|
+
var paperclip = 59122;
|
|
5769
|
+
var pencil = 59124;
|
|
5770
|
+
var phone = 59125;
|
|
5771
|
+
var plane = 59127;
|
|
5772
|
+
var print = 59129;
|
|
5773
|
+
var reply = 59132;
|
|
5774
|
+
var reschedule = 59133;
|
|
5775
|
+
var rostering = 59134;
|
|
5776
|
+
var save = 59135;
|
|
5777
|
+
var schedule = 59137;
|
|
5778
|
+
var send = 59139;
|
|
5779
|
+
var speaker = 59141;
|
|
5780
|
+
var star = 59145;
|
|
5781
|
+
var stopwatch = 59147;
|
|
5782
|
+
var suitcase = 59148;
|
|
5783
|
+
var survey = 59149;
|
|
5784
|
+
var swag = 59150;
|
|
5785
|
+
var tag = 59152;
|
|
5786
|
+
var target = 59153;
|
|
5787
|
+
var teams = 59154;
|
|
5788
|
+
var timesheet = 59155;
|
|
5789
|
+
var unlock = 59158;
|
|
5790
|
+
var user = 59159;
|
|
5791
|
+
var wallet = 59162;
|
|
5792
|
+
var warning = 59163;
|
|
5793
|
+
var add = 59169;
|
|
5794
|
+
var bold = 59188;
|
|
5795
|
+
var cancel = 59198;
|
|
5796
|
+
var checkmark = 59201;
|
|
5797
|
+
var italic = 59273;
|
|
5798
|
+
var number = 59296;
|
|
5799
|
+
var percentage = 59300;
|
|
5800
|
+
var redeem = 59308;
|
|
5801
|
+
var refresh = 59309;
|
|
5802
|
+
var remove = 59310;
|
|
5803
|
+
var restart = 59312;
|
|
5804
|
+
var strikethrough = 59331;
|
|
5805
|
+
var sync = 59336;
|
|
5806
|
+
var transfer = 59339;
|
|
5807
|
+
var unavailable = 59342;
|
|
5808
|
+
var underline = 59343;
|
|
5878
5809
|
var glyphMap = {
|
|
5879
5810
|
activate: activate,
|
|
5880
5811
|
"add-emoji": 59001,
|
|
@@ -5895,348 +5826,340 @@ var glyphMap = {
|
|
|
5895
5826
|
"calendar-clock": 59016,
|
|
5896
5827
|
calendar: calendar,
|
|
5897
5828
|
"candy-box-menu": 59018,
|
|
5898
|
-
"
|
|
5899
|
-
"
|
|
5900
|
-
"
|
|
5901
|
-
"
|
|
5902
|
-
"
|
|
5903
|
-
"
|
|
5904
|
-
"
|
|
5905
|
-
"
|
|
5906
|
-
"
|
|
5907
|
-
"
|
|
5908
|
-
"
|
|
5909
|
-
"
|
|
5910
|
-
"
|
|
5911
|
-
"
|
|
5912
|
-
"
|
|
5913
|
-
"
|
|
5914
|
-
"
|
|
5915
|
-
"circle-
|
|
5916
|
-
"circle-
|
|
5917
|
-
"circle-
|
|
5918
|
-
"circle-
|
|
5919
|
-
"circle-
|
|
5920
|
-
"
|
|
5921
|
-
"circle-ok": 59042,
|
|
5922
|
-
"circle-pencil": 59043,
|
|
5923
|
-
"circle-question": 59044,
|
|
5924
|
-
"circle-remove": 59045,
|
|
5925
|
-
"circle-right": 59046,
|
|
5926
|
-
"circle-up": 59047,
|
|
5927
|
-
"circle-warning": 59048,
|
|
5928
|
-
"clock-3": 59049,
|
|
5829
|
+
"caret-down-small": 59019,
|
|
5830
|
+
"caret-down": 59020,
|
|
5831
|
+
"caret-left-small": 59021,
|
|
5832
|
+
"caret-left": 59022,
|
|
5833
|
+
"caret-right-small": 59023,
|
|
5834
|
+
"caret-right": 59024,
|
|
5835
|
+
"caret-up-small": 59025,
|
|
5836
|
+
"caret-up": 59026,
|
|
5837
|
+
"check-radio": 59027,
|
|
5838
|
+
"circle-add": 59028,
|
|
5839
|
+
"circle-cancel": 59029,
|
|
5840
|
+
"circle-check": 59030,
|
|
5841
|
+
"circle-down": 59031,
|
|
5842
|
+
"circle-info": 59032,
|
|
5843
|
+
"circle-left": 59033,
|
|
5844
|
+
"circle-ok": 59034,
|
|
5845
|
+
"circle-pencil": 59035,
|
|
5846
|
+
"circle-question": 59036,
|
|
5847
|
+
"circle-remove": 59037,
|
|
5848
|
+
"circle-right": 59038,
|
|
5849
|
+
"circle-up": 59039,
|
|
5850
|
+
"circle-warning": 59040,
|
|
5851
|
+
"clock-3": 59041,
|
|
5929
5852
|
clock: clock,
|
|
5930
|
-
"cloud-download":
|
|
5931
|
-
"cloud-upload":
|
|
5853
|
+
"cloud-download": 59043,
|
|
5854
|
+
"cloud-upload": 59044,
|
|
5932
5855
|
cog: cog,
|
|
5933
5856
|
coin: coin,
|
|
5934
5857
|
contacts: contacts,
|
|
5935
|
-
"credit-card":
|
|
5858
|
+
"credit-card": 59048,
|
|
5936
5859
|
diamond: diamond,
|
|
5937
|
-
"direction-arrows":
|
|
5860
|
+
"direction-arrows": 59050,
|
|
5938
5861
|
directory: directory,
|
|
5939
5862
|
document: document$1,
|
|
5940
|
-
"dollar-coin-shine":
|
|
5941
|
-
"double-buildings":
|
|
5942
|
-
"edit-template":
|
|
5863
|
+
"dollar-coin-shine": 59053,
|
|
5864
|
+
"double-buildings": 59054,
|
|
5865
|
+
"edit-template": 59055,
|
|
5943
5866
|
envelope: envelope,
|
|
5944
5867
|
expense: expense,
|
|
5945
|
-
"eye-circle":
|
|
5946
|
-
"eye-invisible":
|
|
5868
|
+
"eye-circle": 59058,
|
|
5869
|
+
"eye-invisible": 59059,
|
|
5947
5870
|
eye: eye,
|
|
5948
|
-
"face-meh":
|
|
5949
|
-
"face-sad":
|
|
5950
|
-
"face-smiley":
|
|
5871
|
+
"face-meh": 59061,
|
|
5872
|
+
"face-sad": 59062,
|
|
5873
|
+
"face-smiley": 59063,
|
|
5951
5874
|
feed: feed,
|
|
5952
5875
|
feedbacks: feedbacks,
|
|
5953
|
-
"file-certified":
|
|
5954
|
-
"file-clone":
|
|
5955
|
-
"file-copy":
|
|
5956
|
-
"file-csv":
|
|
5957
|
-
"file-dispose":
|
|
5958
|
-
"file-doc":
|
|
5959
|
-
"file-excel":
|
|
5960
|
-
"file-export":
|
|
5961
|
-
"file-lock":
|
|
5962
|
-
"file-pdf":
|
|
5963
|
-
"file-powerpoint":
|
|
5964
|
-
"file-search":
|
|
5965
|
-
"file-secured":
|
|
5966
|
-
"file-sheets":
|
|
5967
|
-
"file-slide":
|
|
5968
|
-
"file-verified":
|
|
5969
|
-
"file-word":
|
|
5876
|
+
"file-certified": 59066,
|
|
5877
|
+
"file-clone": 59067,
|
|
5878
|
+
"file-copy": 59068,
|
|
5879
|
+
"file-csv": 59069,
|
|
5880
|
+
"file-dispose": 59070,
|
|
5881
|
+
"file-doc": 59071,
|
|
5882
|
+
"file-excel": 59072,
|
|
5883
|
+
"file-export": 59073,
|
|
5884
|
+
"file-lock": 59074,
|
|
5885
|
+
"file-pdf": 59075,
|
|
5886
|
+
"file-powerpoint": 59076,
|
|
5887
|
+
"file-search": 59077,
|
|
5888
|
+
"file-secured": 59078,
|
|
5889
|
+
"file-sheets": 59079,
|
|
5890
|
+
"file-slide": 59080,
|
|
5891
|
+
"file-verified": 59081,
|
|
5892
|
+
"file-word": 59082,
|
|
5970
5893
|
file: file,
|
|
5971
5894
|
filter: filter,
|
|
5972
|
-
"folder-user":
|
|
5895
|
+
"folder-user": 59085,
|
|
5973
5896
|
folder: folder,
|
|
5974
|
-
"format-bold":
|
|
5975
|
-
"format-heading1":
|
|
5976
|
-
"format-heading2":
|
|
5977
|
-
"format-italic":
|
|
5978
|
-
"format-list-bulleted":
|
|
5979
|
-
"format-list-numbered":
|
|
5980
|
-
"format-underlined":
|
|
5981
|
-
"funnel-filter":
|
|
5982
|
-
"global-dollar":
|
|
5897
|
+
"format-bold": 59087,
|
|
5898
|
+
"format-heading1": 59088,
|
|
5899
|
+
"format-heading2": 59089,
|
|
5900
|
+
"format-italic": 59090,
|
|
5901
|
+
"format-list-bulleted": 59091,
|
|
5902
|
+
"format-list-numbered": 59092,
|
|
5903
|
+
"format-underlined": 59093,
|
|
5904
|
+
"funnel-filter": 59094,
|
|
5905
|
+
"global-dollar": 59095,
|
|
5983
5906
|
globe: globe,
|
|
5984
|
-
"graduation-cap":
|
|
5907
|
+
"graduation-cap": 59097,
|
|
5985
5908
|
graph: graph,
|
|
5986
|
-
"happy-sun":
|
|
5987
|
-
"health-bag":
|
|
5909
|
+
"happy-sun": 59099,
|
|
5910
|
+
"health-bag": 59100,
|
|
5988
5911
|
heart: heart,
|
|
5989
5912
|
home: home,
|
|
5990
5913
|
image: image,
|
|
5991
|
-
"import":
|
|
5992
|
-
"incident-siren":
|
|
5914
|
+
"import": 59104,
|
|
5915
|
+
"incident-siren": 59105,
|
|
5993
5916
|
instapay: instapay,
|
|
5994
5917
|
list: list,
|
|
5995
|
-
"loading-2":
|
|
5918
|
+
"loading-2": 59108,
|
|
5996
5919
|
loading: loading,
|
|
5997
5920
|
location: location,
|
|
5998
5921
|
lock: lock,
|
|
5999
|
-
"looks-one":
|
|
6000
|
-
"looks-two":
|
|
6001
|
-
"media-content":
|
|
5922
|
+
"looks-one": 59112,
|
|
5923
|
+
"looks-two": 59113,
|
|
5924
|
+
"media-content": 59114,
|
|
6002
5925
|
menu: menu,
|
|
6003
5926
|
moneybag: moneybag,
|
|
6004
5927
|
moon: moon,
|
|
6005
|
-
"multiple-stars":
|
|
6006
|
-
"multiple-users":
|
|
5928
|
+
"multiple-stars": 59118,
|
|
5929
|
+
"multiple-users": 59119,
|
|
6007
5930
|
node: node,
|
|
6008
|
-
"open-folder":
|
|
5931
|
+
"open-folder": 59121,
|
|
6009
5932
|
paperclip: paperclip,
|
|
6010
|
-
"payment-summary":
|
|
5933
|
+
"payment-summary": 59123,
|
|
6011
5934
|
pencil: pencil,
|
|
6012
5935
|
phone: phone,
|
|
6013
|
-
"piggy-bank":
|
|
5936
|
+
"piggy-bank": 59126,
|
|
6014
5937
|
plane: plane,
|
|
6015
|
-
"play-circle":
|
|
5938
|
+
"play-circle": 59128,
|
|
6016
5939
|
print: print,
|
|
6017
|
-
"raising-hands":
|
|
6018
|
-
"reply-arrow":
|
|
5940
|
+
"raising-hands": 59130,
|
|
5941
|
+
"reply-arrow": 59131,
|
|
6019
5942
|
reply: reply,
|
|
6020
5943
|
reschedule: reschedule,
|
|
6021
5944
|
rostering: rostering,
|
|
6022
5945
|
save: save,
|
|
6023
|
-
"schedule-send":
|
|
5946
|
+
"schedule-send": 59136,
|
|
6024
5947
|
schedule: schedule,
|
|
6025
|
-
"search-person":
|
|
5948
|
+
"search-person": 59138,
|
|
6026
5949
|
send: send,
|
|
6027
|
-
"speaker-active":
|
|
5950
|
+
"speaker-active": 59140,
|
|
6028
5951
|
speaker: speaker,
|
|
6029
|
-
"star-award":
|
|
6030
|
-
"star-badge":
|
|
6031
|
-
"star-medal":
|
|
5952
|
+
"star-award": 59142,
|
|
5953
|
+
"star-badge": 59143,
|
|
5954
|
+
"star-medal": 59144,
|
|
6032
5955
|
star: star,
|
|
6033
|
-
"steps-circle":
|
|
5956
|
+
"steps-circle": 59146,
|
|
6034
5957
|
stopwatch: stopwatch,
|
|
6035
5958
|
suitcase: suitcase,
|
|
6036
5959
|
survey: survey,
|
|
6037
5960
|
swag: swag,
|
|
6038
|
-
"switch":
|
|
5961
|
+
"switch": 59151,
|
|
6039
5962
|
tag: tag,
|
|
6040
5963
|
target: target,
|
|
6041
5964
|
teams: teams,
|
|
6042
5965
|
timesheet: timesheet,
|
|
6043
|
-
"touch-id":
|
|
6044
|
-
"trash-bin":
|
|
5966
|
+
"touch-id": 59156,
|
|
5967
|
+
"trash-bin": 59157,
|
|
6045
5968
|
unlock: unlock,
|
|
6046
5969
|
user: user,
|
|
6047
|
-
"video-1":
|
|
6048
|
-
"video-2":
|
|
5970
|
+
"video-1": 59160,
|
|
5971
|
+
"video-2": 59161,
|
|
6049
5972
|
wallet: wallet,
|
|
6050
5973
|
warning: warning,
|
|
6051
|
-
"activate-outlined":
|
|
6052
|
-
"add-credit-card-outlined":
|
|
6053
|
-
"add-person-outlined":
|
|
6054
|
-
"add-section-outlined":
|
|
6055
|
-
"add-time-outlined":
|
|
5974
|
+
"activate-outlined": 59164,
|
|
5975
|
+
"add-credit-card-outlined": 59165,
|
|
5976
|
+
"add-person-outlined": 59166,
|
|
5977
|
+
"add-section-outlined": 59167,
|
|
5978
|
+
"add-time-outlined": 59168,
|
|
6056
5979
|
add: add,
|
|
6057
|
-
"adjustment-outlined":
|
|
6058
|
-
"alignment-2-outlined":
|
|
6059
|
-
"alignment-outlined":
|
|
6060
|
-
"all-caps":
|
|
6061
|
-
"arrow-down":
|
|
6062
|
-
"arrow-downwards":
|
|
6063
|
-
"arrow-left":
|
|
6064
|
-
"arrow-leftwards":
|
|
6065
|
-
"arrow-right":
|
|
6066
|
-
"arrow-rightwards":
|
|
6067
|
-
"arrow-up":
|
|
6068
|
-
"arrow-upwards":
|
|
6069
|
-
"at-sign":
|
|
6070
|
-
"bell-active-outlined":
|
|
6071
|
-
"bell-outlined":
|
|
6072
|
-
"bell-slash-outlined":
|
|
6073
|
-
"billing-outlined":
|
|
6074
|
-
"body-outlined":
|
|
5980
|
+
"adjustment-outlined": 59170,
|
|
5981
|
+
"alignment-2-outlined": 59171,
|
|
5982
|
+
"alignment-outlined": 59172,
|
|
5983
|
+
"all-caps": 59173,
|
|
5984
|
+
"arrow-down": 59174,
|
|
5985
|
+
"arrow-downwards": 59175,
|
|
5986
|
+
"arrow-left": 59176,
|
|
5987
|
+
"arrow-leftwards": 59177,
|
|
5988
|
+
"arrow-right": 59178,
|
|
5989
|
+
"arrow-rightwards": 59179,
|
|
5990
|
+
"arrow-up": 59180,
|
|
5991
|
+
"arrow-upwards": 59181,
|
|
5992
|
+
"at-sign": 59182,
|
|
5993
|
+
"bell-active-outlined": 59183,
|
|
5994
|
+
"bell-outlined": 59184,
|
|
5995
|
+
"bell-slash-outlined": 59185,
|
|
5996
|
+
"billing-outlined": 59186,
|
|
5997
|
+
"body-outlined": 59187,
|
|
6075
5998
|
bold: bold,
|
|
6076
|
-
"bookmark-added-outlined":
|
|
6077
|
-
"bookmark-outlined":
|
|
6078
|
-
"box-check-outlined":
|
|
6079
|
-
"box-outlined":
|
|
6080
|
-
"bullet-points":
|
|
6081
|
-
"cake-outlined":
|
|
6082
|
-
"calendar-dates-outlined":
|
|
6083
|
-
"calendar-star-outlined":
|
|
6084
|
-
"camera-outlined":
|
|
5999
|
+
"bookmark-added-outlined": 59189,
|
|
6000
|
+
"bookmark-outlined": 59190,
|
|
6001
|
+
"box-check-outlined": 59191,
|
|
6002
|
+
"box-outlined": 59192,
|
|
6003
|
+
"bullet-points": 59193,
|
|
6004
|
+
"cake-outlined": 59194,
|
|
6005
|
+
"calendar-dates-outlined": 59195,
|
|
6006
|
+
"calendar-star-outlined": 59196,
|
|
6007
|
+
"camera-outlined": 59197,
|
|
6085
6008
|
cancel: cancel,
|
|
6086
|
-
"chat-bubble-outlined":
|
|
6087
|
-
"chat-unread-outlined":
|
|
6009
|
+
"chat-bubble-outlined": 59199,
|
|
6010
|
+
"chat-unread-outlined": 59200,
|
|
6088
6011
|
checkmark: checkmark,
|
|
6089
|
-
"circle-add-outlined":
|
|
6090
|
-
"circle-cancel-outlined":
|
|
6091
|
-
"circle-down-outlined":
|
|
6092
|
-
"circle-info-outlined":
|
|
6093
|
-
"circle-left-outlined":
|
|
6094
|
-
"circle-ok-outlined":
|
|
6095
|
-
"circle-question-outlined":
|
|
6096
|
-
"circle-remove-outlined":
|
|
6097
|
-
"circle-right-outlined":
|
|
6098
|
-
"circle-up-outlined":
|
|
6099
|
-
"circle-warning-outlined":
|
|
6100
|
-
"clock-2-outlined":
|
|
6101
|
-
"clock-outlined":
|
|
6102
|
-
"cog-outlined":
|
|
6103
|
-
"coin-outlined":
|
|
6104
|
-
"comment-outlined":
|
|
6105
|
-
"contacts-outlined":
|
|
6106
|
-
"credit-card-outlined":
|
|
6107
|
-
"cup-outlined":
|
|
6108
|
-
"direction-arrows-outlined":
|
|
6109
|
-
"directory-outlined":
|
|
6110
|
-
"document-outlined":
|
|
6111
|
-
"dollar-card-outlined":
|
|
6112
|
-
"dollar-coin-shine-outlined":
|
|
6113
|
-
"dollar-sign":
|
|
6114
|
-
"double-buildings-outlined":
|
|
6115
|
-
"double-left-arrows":
|
|
6116
|
-
"double-right-arrows":
|
|
6117
|
-
"download-outlined":
|
|
6118
|
-
"edit-template-outlined":
|
|
6119
|
-
"email-outlined":
|
|
6120
|
-
"enter-arrow":
|
|
6121
|
-
"envelope-outlined":
|
|
6122
|
-
"expense-outlined":
|
|
6123
|
-
"explore-outlined":
|
|
6124
|
-
"external-link":
|
|
6125
|
-
"eye-invisible-outlined":
|
|
6126
|
-
"eye-outlined":
|
|
6127
|
-
"face-id":
|
|
6128
|
-
"face-meh-outlined":
|
|
6129
|
-
"face-open-smiley-outlined":
|
|
6130
|
-
"face-sad-outlined":
|
|
6131
|
-
"face-smiley-outlined":
|
|
6132
|
-
"feed-outlined":
|
|
6133
|
-
"file-certified-outlined":
|
|
6134
|
-
"file-clone-outlined":
|
|
6135
|
-
"file-copy-outlined":
|
|
6136
|
-
"file-dispose-outlined":
|
|
6137
|
-
"file-dollar-outlined":
|
|
6138
|
-
"file-download-outlined":
|
|
6139
|
-
"file-export-outlined":
|
|
6140
|
-
"file-lock-outlined":
|
|
6141
|
-
"file-outlined":
|
|
6142
|
-
"file-search-outlined":
|
|
6143
|
-
"file-secured-outlined":
|
|
6144
|
-
"file-verified-outlined":
|
|
6145
|
-
"filter-outlined":
|
|
6146
|
-
"folder-outlined":
|
|
6147
|
-
"folder-user-outlined":
|
|
6148
|
-
"funnel-filter-outline":
|
|
6149
|
-
"graph-outlined":
|
|
6150
|
-
"hand-holding-user-outlined":
|
|
6151
|
-
"happy-sun-outlined":
|
|
6152
|
-
"health-bag-outlined":
|
|
6153
|
-
"heart-outlined":
|
|
6154
|
-
"home-active-outlined":
|
|
6155
|
-
"home-outlined":
|
|
6156
|
-
"id-card-outlined":
|
|
6157
|
-
"image-outlined":
|
|
6158
|
-
"import-outlined":
|
|
6159
|
-
"instapay-outlined":
|
|
6012
|
+
"circle-add-outlined": 59202,
|
|
6013
|
+
"circle-cancel-outlined": 59203,
|
|
6014
|
+
"circle-down-outlined": 59204,
|
|
6015
|
+
"circle-info-outlined": 59205,
|
|
6016
|
+
"circle-left-outlined": 59206,
|
|
6017
|
+
"circle-ok-outlined": 59207,
|
|
6018
|
+
"circle-question-outlined": 59208,
|
|
6019
|
+
"circle-remove-outlined": 59209,
|
|
6020
|
+
"circle-right-outlined": 59210,
|
|
6021
|
+
"circle-up-outlined": 59211,
|
|
6022
|
+
"circle-warning-outlined": 59212,
|
|
6023
|
+
"clock-2-outlined": 59213,
|
|
6024
|
+
"clock-outlined": 59214,
|
|
6025
|
+
"cog-outlined": 59215,
|
|
6026
|
+
"coin-outlined": 59216,
|
|
6027
|
+
"comment-outlined": 59217,
|
|
6028
|
+
"contacts-outlined": 59218,
|
|
6029
|
+
"credit-card-outlined": 59219,
|
|
6030
|
+
"cup-outlined": 59220,
|
|
6031
|
+
"direction-arrows-outlined": 59221,
|
|
6032
|
+
"directory-outlined": 59222,
|
|
6033
|
+
"document-outlined": 59223,
|
|
6034
|
+
"dollar-card-outlined": 59224,
|
|
6035
|
+
"dollar-coin-shine-outlined": 59225,
|
|
6036
|
+
"dollar-sign": 59226,
|
|
6037
|
+
"double-buildings-outlined": 59227,
|
|
6038
|
+
"double-left-arrows": 59228,
|
|
6039
|
+
"double-right-arrows": 59229,
|
|
6040
|
+
"download-outlined": 59230,
|
|
6041
|
+
"edit-template-outlined": 59231,
|
|
6042
|
+
"email-outlined": 59232,
|
|
6043
|
+
"enter-arrow": 59233,
|
|
6044
|
+
"envelope-outlined": 59234,
|
|
6045
|
+
"expense-outlined": 59235,
|
|
6046
|
+
"explore-outlined": 59236,
|
|
6047
|
+
"external-link": 59237,
|
|
6048
|
+
"eye-invisible-outlined": 59238,
|
|
6049
|
+
"eye-outlined": 59239,
|
|
6050
|
+
"face-id": 59240,
|
|
6051
|
+
"face-meh-outlined": 59241,
|
|
6052
|
+
"face-open-smiley-outlined": 59242,
|
|
6053
|
+
"face-sad-outlined": 59243,
|
|
6054
|
+
"face-smiley-outlined": 59244,
|
|
6055
|
+
"feed-outlined": 59245,
|
|
6056
|
+
"file-certified-outlined": 59246,
|
|
6057
|
+
"file-clone-outlined": 59247,
|
|
6058
|
+
"file-copy-outlined": 59248,
|
|
6059
|
+
"file-dispose-outlined": 59249,
|
|
6060
|
+
"file-dollar-outlined": 59250,
|
|
6061
|
+
"file-download-outlined": 59251,
|
|
6062
|
+
"file-export-outlined": 59252,
|
|
6063
|
+
"file-lock-outlined": 59253,
|
|
6064
|
+
"file-outlined": 59254,
|
|
6065
|
+
"file-search-outlined": 59255,
|
|
6066
|
+
"file-secured-outlined": 59256,
|
|
6067
|
+
"file-verified-outlined": 59257,
|
|
6068
|
+
"filter-outlined": 59258,
|
|
6069
|
+
"folder-outlined": 59259,
|
|
6070
|
+
"folder-user-outlined": 59260,
|
|
6071
|
+
"funnel-filter-outline": 59261,
|
|
6072
|
+
"graph-outlined": 59262,
|
|
6073
|
+
"hand-holding-user-outlined": 59263,
|
|
6074
|
+
"happy-sun-outlined": 59264,
|
|
6075
|
+
"health-bag-outlined": 59265,
|
|
6076
|
+
"heart-outlined": 59266,
|
|
6077
|
+
"home-active-outlined": 59267,
|
|
6078
|
+
"home-outlined": 59268,
|
|
6079
|
+
"id-card-outlined": 59269,
|
|
6080
|
+
"image-outlined": 59270,
|
|
6081
|
+
"import-outlined": 59271,
|
|
6082
|
+
"instapay-outlined": 59272,
|
|
6160
6083
|
italic: italic,
|
|
6161
|
-
"link-1":
|
|
6162
|
-
"link-2":
|
|
6163
|
-
"list-outlined":
|
|
6164
|
-
"live-help-outlined":
|
|
6165
|
-
"location-outlined":
|
|
6166
|
-
"lock-outlined":
|
|
6167
|
-
"locked-file-outlined":
|
|
6168
|
-
"log-out":
|
|
6169
|
-
"media-content-outlined":
|
|
6170
|
-
"menu-close":
|
|
6171
|
-
"menu-expand":
|
|
6172
|
-
"menu-fold-outlined":
|
|
6173
|
-
"menu-unfold-outlined":
|
|
6174
|
-
"moneybag-outlined":
|
|
6175
|
-
"moon-outlined":
|
|
6176
|
-
"more-horizontal":
|
|
6177
|
-
"more-vertical":
|
|
6178
|
-
"multiple-folders-outlined":
|
|
6179
|
-
"multiple-users-outlined":
|
|
6180
|
-
"near-me-outlined":
|
|
6181
|
-
"node-outlined":
|
|
6182
|
-
"number-points":
|
|
6084
|
+
"link-1": 59274,
|
|
6085
|
+
"link-2": 59275,
|
|
6086
|
+
"list-outlined": 59276,
|
|
6087
|
+
"live-help-outlined": 59277,
|
|
6088
|
+
"location-outlined": 59278,
|
|
6089
|
+
"lock-outlined": 59279,
|
|
6090
|
+
"locked-file-outlined": 59280,
|
|
6091
|
+
"log-out": 59281,
|
|
6092
|
+
"media-content-outlined": 59282,
|
|
6093
|
+
"menu-close": 59283,
|
|
6094
|
+
"menu-expand": 59284,
|
|
6095
|
+
"menu-fold-outlined": 59285,
|
|
6096
|
+
"menu-unfold-outlined": 59286,
|
|
6097
|
+
"moneybag-outlined": 59287,
|
|
6098
|
+
"moon-outlined": 59288,
|
|
6099
|
+
"more-horizontal": 59289,
|
|
6100
|
+
"more-vertical": 59290,
|
|
6101
|
+
"multiple-folders-outlined": 59291,
|
|
6102
|
+
"multiple-users-outlined": 59292,
|
|
6103
|
+
"near-me-outlined": 59293,
|
|
6104
|
+
"node-outlined": 59294,
|
|
6105
|
+
"number-points": 59295,
|
|
6183
6106
|
number: number,
|
|
6184
|
-
"payment-summary-outlined":
|
|
6185
|
-
"payslip-outlined":
|
|
6186
|
-
"pencil-outlined":
|
|
6107
|
+
"payment-summary-outlined": 59297,
|
|
6108
|
+
"payslip-outlined": 59298,
|
|
6109
|
+
"pencil-outlined": 59299,
|
|
6187
6110
|
percentage: percentage,
|
|
6188
|
-
"phone-outlined":
|
|
6189
|
-
"piggy-bank-outlined":
|
|
6190
|
-
"plane-outlined":
|
|
6191
|
-
"play-circle-outlined":
|
|
6192
|
-
"print-outlined":
|
|
6193
|
-
"qr-code-outlined":
|
|
6194
|
-
"re-assign":
|
|
6111
|
+
"phone-outlined": 59301,
|
|
6112
|
+
"piggy-bank-outlined": 59302,
|
|
6113
|
+
"plane-outlined": 59303,
|
|
6114
|
+
"play-circle-outlined": 59304,
|
|
6115
|
+
"print-outlined": 59305,
|
|
6116
|
+
"qr-code-outlined": 59306,
|
|
6117
|
+
"re-assign": 59307,
|
|
6195
6118
|
redeem: redeem,
|
|
6196
6119
|
refresh: refresh,
|
|
6197
6120
|
remove: remove,
|
|
6198
|
-
"reply-outlined":
|
|
6121
|
+
"reply-outlined": 59311,
|
|
6199
6122
|
restart: restart,
|
|
6200
|
-
"return-arrow":
|
|
6201
|
-
"rostering-outlined":
|
|
6202
|
-
"save-outlined":
|
|
6203
|
-
"schedule-outlined":
|
|
6204
|
-
"search-outlined":
|
|
6205
|
-
"search-secured-outlined":
|
|
6206
|
-
"send-outlined":
|
|
6207
|
-
"share-1":
|
|
6208
|
-
"share-2":
|
|
6209
|
-
"share-outlined":
|
|
6210
|
-
"single-down-arrow":
|
|
6211
|
-
"single-left-arrow":
|
|
6212
|
-
"single-right-arrow":
|
|
6213
|
-
"single-up-arrow":
|
|
6214
|
-
"speaker-active-outlined":
|
|
6215
|
-
"speaker-outlined":
|
|
6216
|
-
"star-outlined":
|
|
6217
|
-
"stopwatch-outlined":
|
|
6123
|
+
"return-arrow": 59313,
|
|
6124
|
+
"rostering-outlined": 59314,
|
|
6125
|
+
"save-outlined": 59315,
|
|
6126
|
+
"schedule-outlined": 59316,
|
|
6127
|
+
"search-outlined": 59317,
|
|
6128
|
+
"search-secured-outlined": 59318,
|
|
6129
|
+
"send-outlined": 59319,
|
|
6130
|
+
"share-1": 59320,
|
|
6131
|
+
"share-2": 59321,
|
|
6132
|
+
"share-outlined": 59322,
|
|
6133
|
+
"single-down-arrow": 59323,
|
|
6134
|
+
"single-left-arrow": 59324,
|
|
6135
|
+
"single-right-arrow": 59325,
|
|
6136
|
+
"single-up-arrow": 59326,
|
|
6137
|
+
"speaker-active-outlined": 59327,
|
|
6138
|
+
"speaker-outlined": 59328,
|
|
6139
|
+
"star-outlined": 59329,
|
|
6140
|
+
"stopwatch-outlined": 59330,
|
|
6218
6141
|
strikethrough: strikethrough,
|
|
6219
|
-
"suitcase-clock-outlined":
|
|
6220
|
-
"suitcase-outlined":
|
|
6221
|
-
"survey-outlined":
|
|
6222
|
-
"switch-outlined":
|
|
6142
|
+
"suitcase-clock-outlined": 59332,
|
|
6143
|
+
"suitcase-outlined": 59333,
|
|
6144
|
+
"survey-outlined": 59334,
|
|
6145
|
+
"switch-outlined": 59335,
|
|
6223
6146
|
sync: sync,
|
|
6224
|
-
"target-outlined":
|
|
6225
|
-
"timesheet-outlined":
|
|
6147
|
+
"target-outlined": 59337,
|
|
6148
|
+
"timesheet-outlined": 59338,
|
|
6226
6149
|
transfer: transfer,
|
|
6227
|
-
"trash-bin-outlined":
|
|
6228
|
-
"umbrela-outlined":
|
|
6150
|
+
"trash-bin-outlined": 59340,
|
|
6151
|
+
"umbrela-outlined": 59341,
|
|
6229
6152
|
unavailable: unavailable,
|
|
6230
6153
|
underline: underline,
|
|
6231
|
-
"unlock-outlined":
|
|
6232
|
-
"upload-outlined":
|
|
6233
|
-
"user-circle-outlined":
|
|
6234
|
-
"user-gear-outlined":
|
|
6235
|
-
"user-outlined":
|
|
6236
|
-
"user-rectangle-outlined":
|
|
6237
|
-
"video-1-outlined":
|
|
6238
|
-
"video-2-outlined":
|
|
6239
|
-
"wallet-outlined":
|
|
6154
|
+
"unlock-outlined": 59344,
|
|
6155
|
+
"upload-outlined": 59345,
|
|
6156
|
+
"user-circle-outlined": 59346,
|
|
6157
|
+
"user-gear-outlined": 59347,
|
|
6158
|
+
"user-outlined": 59348,
|
|
6159
|
+
"user-rectangle-outlined": 59349,
|
|
6160
|
+
"video-1-outlined": 59350,
|
|
6161
|
+
"video-2-outlined": 59351,
|
|
6162
|
+
"wallet-outlined": 59352
|
|
6240
6163
|
};
|
|
6241
6164
|
|
|
6242
6165
|
var HeroIcon = createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
|
|
@@ -6385,11 +6308,9 @@ var Accordion = function Accordion(_ref) {
|
|
|
6385
6308
|
|
|
6386
6309
|
var Container$1 = index$a(View)(function (_ref) {
|
|
6387
6310
|
var theme = _ref.theme,
|
|
6388
|
-
_ref$themeVariant = _ref.themeVariant,
|
|
6389
|
-
themeVariant = _ref$themeVariant === void 0 ? 'default' : _ref$themeVariant,
|
|
6390
6311
|
themeIntent = _ref.themeIntent;
|
|
6391
6312
|
return {
|
|
6392
|
-
borderRadius:
|
|
6313
|
+
borderRadius: theme.__hd__.alert.radii["default"],
|
|
6393
6314
|
backgroundColor: theme.__hd__.alert.colors[themeIntent],
|
|
6394
6315
|
minHeight: theme.__hd__.alert.sizes.height,
|
|
6395
6316
|
flexDirection: 'row'
|
|
@@ -6458,13 +6379,9 @@ var Alert = function Alert(_ref2) {
|
|
|
6458
6379
|
_ref2$intent = _ref2.intent,
|
|
6459
6380
|
intent = _ref2$intent === void 0 ? 'info' : _ref2$intent,
|
|
6460
6381
|
onClose = _ref2.onClose,
|
|
6461
|
-
_variant = _ref2.variant,
|
|
6462
6382
|
style = _ref2.style,
|
|
6463
6383
|
testID = _ref2.testID;
|
|
6464
|
-
var variant = _variant === undefined ? 'default' : _variant;
|
|
6465
|
-
useDeprecation("Alert's variant prop will be removed in the next major release. Rounded will be the only variant available.", _variant !== undefined);
|
|
6466
6384
|
return /*#__PURE__*/React.createElement(Container$1, {
|
|
6467
|
-
themeVariant: variant,
|
|
6468
6385
|
themeIntent: intent,
|
|
6469
6386
|
style: style,
|
|
6470
6387
|
testID: testID
|
|
@@ -7072,7 +6989,6 @@ var StyledFooter = index$a(View)(function (_ref4) {
|
|
|
7072
6989
|
return {
|
|
7073
6990
|
paddingHorizontal: theme.__hd__.bottomSheet.space.footerHorizontalPadding,
|
|
7074
6991
|
paddingVertical: theme.__hd__.bottomSheet.space.footerVerticalPadding,
|
|
7075
|
-
minHeight: theme.__hd__.bottomSheet.sizes.sectionHeight,
|
|
7076
6992
|
alignItems: 'center',
|
|
7077
6993
|
justifyContent: 'flex-end',
|
|
7078
6994
|
flexDirection: 'row'
|
|
@@ -7207,28 +7123,6 @@ var LoadingIndicator = function LoadingIndicator(_ref2) {
|
|
|
7207
7123
|
}, nativeProps), Array.from(new Array(count), renderLoadingDot, themeVariant));
|
|
7208
7124
|
};
|
|
7209
7125
|
|
|
7210
|
-
var genBasicTransparentContainerStyles = function genBasicTransparentContainerStyles(theme, disabled) {
|
|
7211
|
-
var borderColorStyling = function borderColorStyling() {
|
|
7212
|
-
if (disabled) {
|
|
7213
|
-
return {
|
|
7214
|
-
borderColor: theme.__hd__.button.colors.disabledBorder
|
|
7215
|
-
};
|
|
7216
|
-
}
|
|
7217
|
-
return {
|
|
7218
|
-
borderColor: theme.__hd__.button.colors.invertedText
|
|
7219
|
-
};
|
|
7220
|
-
};
|
|
7221
|
-
return _objectSpread2({
|
|
7222
|
-
width: '100%',
|
|
7223
|
-
flexDirection: 'row',
|
|
7224
|
-
justifyContent: 'center',
|
|
7225
|
-
alignItems: 'center',
|
|
7226
|
-
padding: theme.__hd__.button.space.buttonPadding - theme.__hd__.button.borderWidth["default"],
|
|
7227
|
-
borderWidth: theme.__hd__.button.borderWidth["default"],
|
|
7228
|
-
borderRadius: theme.__hd__.button.radii["default"],
|
|
7229
|
-
backgroundColor: 'transparent'
|
|
7230
|
-
}, borderColorStyling());
|
|
7231
|
-
};
|
|
7232
7126
|
var genFilledContainerStyles = function genFilledContainerStyles(theme, intent, disabled) {
|
|
7233
7127
|
var backgroundColorStyling = function backgroundColorStyling() {
|
|
7234
7128
|
if (disabled) {
|
|
@@ -7309,8 +7203,6 @@ var StyledButtonContainer = index$a(TouchableOpacity)(function (_ref) {
|
|
|
7309
7203
|
themeVariant = _ref.themeVariant,
|
|
7310
7204
|
theme = _ref.theme;
|
|
7311
7205
|
switch (themeVariant) {
|
|
7312
|
-
case 'basic-transparent':
|
|
7313
|
-
return genBasicTransparentContainerStyles(theme, disabled);
|
|
7314
7206
|
case 'filled-primary':
|
|
7315
7207
|
return genFilledContainerStyles(theme, 'primary', disabled);
|
|
7316
7208
|
case 'filled-secondary':
|
|
@@ -7341,12 +7233,6 @@ var StyledButtonText = index$a(Typography.Text)(function (_ref2) {
|
|
|
7341
7233
|
theme = _ref2.theme;
|
|
7342
7234
|
var themeStyling = function themeStyling() {
|
|
7343
7235
|
switch (themeVariant) {
|
|
7344
|
-
case 'basic-transparent':
|
|
7345
|
-
return {
|
|
7346
|
-
fontSize: theme.__hd__.button.fontSize["default"],
|
|
7347
|
-
lineHeight: theme.__hd__.button.lineHeight["default"],
|
|
7348
|
-
color: disabled ? theme.__hd__.button.colors.disabledText : theme.__hd__.button.colors.invertedText
|
|
7349
|
-
};
|
|
7350
7236
|
case 'filled-primary':
|
|
7351
7237
|
case 'filled-secondary':
|
|
7352
7238
|
case 'filled-danger':
|
|
@@ -7395,10 +7281,6 @@ var StyledButtonIcon = index$a(Icon)(function (_ref4) {
|
|
|
7395
7281
|
theme = _ref4.theme;
|
|
7396
7282
|
var themeStyling = function themeStyling() {
|
|
7397
7283
|
switch (themeVariant) {
|
|
7398
|
-
case 'basic-transparent':
|
|
7399
|
-
return {
|
|
7400
|
-
color: disabled ? theme.__hd__.button.colors.disabledText : theme.__hd__.button.colors.invertedText
|
|
7401
|
-
};
|
|
7402
7284
|
case 'filled-primary':
|
|
7403
7285
|
case 'filled-secondary':
|
|
7404
7286
|
case 'filled-danger':
|
|
@@ -7441,8 +7323,6 @@ var TEXT_VARIANTS = {
|
|
|
7441
7323
|
};
|
|
7442
7324
|
var getThemeVariant = function getThemeVariant(variant, intent) {
|
|
7443
7325
|
switch (variant) {
|
|
7444
|
-
case 'basic-transparent':
|
|
7445
|
-
return variant;
|
|
7446
7326
|
case 'filled':
|
|
7447
7327
|
return FILLED_VARIANTS[intent];
|
|
7448
7328
|
case 'outlined':
|
|
@@ -7469,7 +7349,6 @@ var Button = function Button(_ref) {
|
|
|
7469
7349
|
_ref$variant = _ref.variant,
|
|
7470
7350
|
variant = _ref$variant === void 0 ? 'filled' : _ref$variant;
|
|
7471
7351
|
var themeVariant = getThemeVariant(variant, intent);
|
|
7472
|
-
useDeprecation("Button's basic-transparent variant is deprecated and will be removed in the next major release.\nPlease use other variants instead.", variant === 'basic-transparent');
|
|
7473
7352
|
return /*#__PURE__*/React.createElement(StyledButtonContainer, {
|
|
7474
7353
|
accessibilityHint: accessibilityHint,
|
|
7475
7354
|
accessibilityLabel: accessibilityLabel,
|
|
@@ -10518,41 +10397,23 @@ var DataCard = function DataCard(_ref) {
|
|
|
10518
10397
|
};
|
|
10519
10398
|
|
|
10520
10399
|
var StyledCard = index$a(View)(function (_ref) {
|
|
10521
|
-
var
|
|
10522
|
-
theme = _ref.theme,
|
|
10400
|
+
var theme = _ref.theme,
|
|
10523
10401
|
themeIntent = _ref.themeIntent;
|
|
10524
|
-
return _objectSpread2(_objectSpread2(
|
|
10525
|
-
flexDirection: 'row'
|
|
10526
|
-
}), themeIntent !== undefined && {
|
|
10402
|
+
return _objectSpread2(_objectSpread2({}, themeIntent !== undefined && {
|
|
10527
10403
|
backgroundColor: theme.__hd__.card.colors[themeIntent]
|
|
10528
10404
|
}), {}, {
|
|
10529
10405
|
borderRadius: theme.__hd__.card.radii["default"],
|
|
10530
10406
|
overflow: 'hidden'
|
|
10531
10407
|
});
|
|
10532
10408
|
});
|
|
10533
|
-
// DEPRECATED
|
|
10534
|
-
var LeftDataCard = index$a(View)(function (_ref2) {
|
|
10535
|
-
var theme = _ref2.theme;
|
|
10536
|
-
return {
|
|
10537
|
-
backgroundColor: theme.__hd__.card.colors.dataCardIndicator,
|
|
10538
|
-
width: theme.__hd__.card.sizes.indicatorWidth,
|
|
10539
|
-
height: '100%'
|
|
10540
|
-
};
|
|
10541
|
-
});
|
|
10542
10409
|
|
|
10543
|
-
var _excluded$8 = ["
|
|
10410
|
+
var _excluded$8 = ["intent", "children"];
|
|
10544
10411
|
var Card = function Card(_ref) {
|
|
10545
|
-
var
|
|
10546
|
-
intent = _ref.intent,
|
|
10412
|
+
var intent = _ref.intent,
|
|
10547
10413
|
children = _ref.children,
|
|
10548
10414
|
nativeProps = _objectWithoutProperties(_ref, _excluded$8);
|
|
10549
|
-
var variant = _variant === undefined ? 'basic' : _variant;
|
|
10550
|
-
useDeprecation("Card's variant prop is deprecated and will be removed in the next major release.\nPlease remove it or use Card.Data instead.", _variant !== undefined);
|
|
10551
10415
|
return /*#__PURE__*/React.createElement(StyledCard, _extends$1({}, nativeProps, {
|
|
10552
|
-
themeVariant: variant,
|
|
10553
10416
|
themeIntent: intent
|
|
10554
|
-
}), variant === 'data' && /*#__PURE__*/React.createElement(LeftDataCard, {
|
|
10555
|
-
testID: "data-card-indicator"
|
|
10556
10417
|
}), children);
|
|
10557
10418
|
};
|
|
10558
10419
|
var index$8 = Object.assign(Card, {
|
|
@@ -10803,6 +10664,9 @@ var getVariant$1 = function getVariant(_ref) {
|
|
|
10803
10664
|
}
|
|
10804
10665
|
return 'default';
|
|
10805
10666
|
};
|
|
10667
|
+
// Fix issue: Placeholder is not shown on iOS when multiline is true
|
|
10668
|
+
// https://github.com/callstack/react-native-paper/pull/3331
|
|
10669
|
+
var EMPTY_PLACEHOLDER_VALUE = ' ';
|
|
10806
10670
|
var TextInput = function TextInput(_ref2) {
|
|
10807
10671
|
var _ref3;
|
|
10808
10672
|
var label = _ref2.label,
|
|
@@ -10888,7 +10752,7 @@ var TextInput = function TextInput(_ref2) {
|
|
|
10888
10752
|
(_nativeProps$onChange = nativeProps.onChangeText) === null || _nativeProps$onChange === void 0 ? void 0 : _nativeProps$onChange.call(nativeProps, text);
|
|
10889
10753
|
},
|
|
10890
10754
|
defaultValue: defaultValue,
|
|
10891
|
-
placeholder: isFocused || label === undefined ? nativeProps.placeholder :
|
|
10755
|
+
placeholder: isFocused || label === undefined ? nativeProps.placeholder : EMPTY_PLACEHOLDER_VALUE
|
|
10892
10756
|
});
|
|
10893
10757
|
return /*#__PURE__*/React.createElement(StyledContainer$3, {
|
|
10894
10758
|
style: style,
|
|
@@ -10943,6 +10807,8 @@ var TextInput = function TextInput(_ref2) {
|
|
|
10943
10807
|
|
|
10944
10808
|
var DatePickerAndroid = function DatePickerAndroid(_ref) {
|
|
10945
10809
|
var value = _ref.value,
|
|
10810
|
+
minDate = _ref.minDate,
|
|
10811
|
+
maxDate = _ref.maxDate,
|
|
10946
10812
|
label = _ref.label,
|
|
10947
10813
|
placeholder = _ref.placeholder,
|
|
10948
10814
|
_onChange = _ref.onChange,
|
|
@@ -10984,6 +10850,8 @@ var DatePickerAndroid = function DatePickerAndroid(_ref) {
|
|
|
10984
10850
|
testID: "datePickerAndroid",
|
|
10985
10851
|
mode: "date",
|
|
10986
10852
|
value: pickerInitValue,
|
|
10853
|
+
minimumDate: minDate,
|
|
10854
|
+
maximumDate: maxDate,
|
|
10987
10855
|
display: "default",
|
|
10988
10856
|
onChange: function onChange(_, date) {
|
|
10989
10857
|
setOpen(false);
|
|
@@ -11003,6 +10871,8 @@ var StyledPickerWrapper$1 = index$a(View)(function (_ref) {
|
|
|
11003
10871
|
|
|
11004
10872
|
var DatePickerIOS = function DatePickerIOS(_ref) {
|
|
11005
10873
|
var value = _ref.value,
|
|
10874
|
+
minDate = _ref.minDate,
|
|
10875
|
+
maxDate = _ref.maxDate,
|
|
11006
10876
|
label = _ref.label,
|
|
11007
10877
|
placeholder = _ref.placeholder,
|
|
11008
10878
|
onChange = _ref.onChange,
|
|
@@ -11050,21 +10920,21 @@ var DatePickerIOS = function DatePickerIOS(_ref) {
|
|
|
11050
10920
|
return setOpen(false);
|
|
11051
10921
|
},
|
|
11052
10922
|
header: label,
|
|
11053
|
-
footer: /*#__PURE__*/React.createElement(
|
|
10923
|
+
footer: /*#__PURE__*/React.createElement(CompoundButton, {
|
|
10924
|
+
variant: "text",
|
|
10925
|
+
text: confirmLabel,
|
|
11054
10926
|
onPress: function onPress() {
|
|
11055
10927
|
if (selectingDate) {
|
|
11056
10928
|
onChange(selectingDate);
|
|
11057
10929
|
}
|
|
11058
10930
|
setOpen(false);
|
|
11059
10931
|
}
|
|
11060
|
-
}
|
|
11061
|
-
fontSize: "large",
|
|
11062
|
-
fontWeight: "semi-bold",
|
|
11063
|
-
intent: "primary"
|
|
11064
|
-
}, confirmLabel))
|
|
10932
|
+
})
|
|
11065
10933
|
}, /*#__PURE__*/React.createElement(StyledPickerWrapper$1, null, /*#__PURE__*/React.createElement(DateTimePicker, {
|
|
11066
10934
|
testID: "datePickerIOS",
|
|
11067
10935
|
value: selectingDate,
|
|
10936
|
+
minimumDate: minDate,
|
|
10937
|
+
maximumDate: maxDate,
|
|
11068
10938
|
mode: "date",
|
|
11069
10939
|
onChange: function onChange(_, date) {
|
|
11070
10940
|
if (date) {
|
|
@@ -11175,7 +11045,7 @@ var calculateSnapPointsData = function calculateSnapPointsData(minimumHeight, he
|
|
|
11175
11045
|
var uniqSnapPointOffsetValues = Array.from(new Set([].concat(_toConsumableArray(snapPointsOffsetValues), [0])));
|
|
11176
11046
|
return {
|
|
11177
11047
|
list: uniqSnapPointOffsetValues,
|
|
11178
|
-
minHeightOffset: Math.max.apply(Math,
|
|
11048
|
+
minHeightOffset: Math.max.apply(Math, uniqSnapPointOffsetValues),
|
|
11179
11049
|
maxHeightOffset: 0 // Max height
|
|
11180
11050
|
};
|
|
11181
11051
|
};
|
|
@@ -12826,48 +12696,14 @@ var SectionHeading = function SectionHeading(_ref) {
|
|
|
12826
12696
|
}, text)), rightChildren);
|
|
12827
12697
|
};
|
|
12828
12698
|
|
|
12829
|
-
var SectionSpacer = index$a(View)(function (_ref) {
|
|
12830
|
-
var theme = _ref.theme;
|
|
12831
|
-
return {
|
|
12832
|
-
marginTop: theme.__hd__.select.space.sectionSpacing
|
|
12833
|
-
};
|
|
12834
|
-
});
|
|
12835
|
-
var OptionSpacer = index$a(View)(function (_ref2) {
|
|
12836
|
-
var theme = _ref2.theme;
|
|
12837
|
-
return {
|
|
12838
|
-
marginTop: theme.__hd__.select.space.optionSpacing
|
|
12839
|
-
};
|
|
12840
|
-
});
|
|
12841
|
-
var FooterText = index$a(Typography.Text)(function (_ref3) {
|
|
12842
|
-
var theme = _ref3.theme;
|
|
12843
|
-
return {
|
|
12844
|
-
color: theme.__hd__.select.colors.footerText
|
|
12845
|
-
};
|
|
12846
|
-
});
|
|
12847
|
-
var StyledSearchBar = index$a(View)(function (_ref4) {
|
|
12848
|
-
var theme = _ref4.theme;
|
|
12849
|
-
return {
|
|
12850
|
-
marginTop: theme.__hd__.select.space.searchBarMarginTopSpacing,
|
|
12851
|
-
paddingHorizontal: theme.__hd__.select.space.searchBarHorizontalSpacing,
|
|
12852
|
-
paddingBottom: theme.__hd__.select.space.searchBarBottomSpacing
|
|
12853
|
-
};
|
|
12854
|
-
});
|
|
12855
|
-
var StyledSectionList = index$a(SectionList)(function (_ref5) {
|
|
12856
|
-
var theme = _ref5.theme;
|
|
12857
|
-
return {
|
|
12858
|
-
paddingHorizontal: theme.__hd__.select.space.optionListHorizontalPadding
|
|
12859
|
-
};
|
|
12860
|
-
});
|
|
12861
|
-
|
|
12862
12699
|
var Footer = function Footer(_ref) {
|
|
12863
12700
|
var label = _ref.label,
|
|
12864
12701
|
onPress = _ref.onPress;
|
|
12865
|
-
return /*#__PURE__*/React.createElement(
|
|
12702
|
+
return /*#__PURE__*/React.createElement(CompoundButton, {
|
|
12703
|
+
variant: "text",
|
|
12704
|
+
text: label,
|
|
12866
12705
|
onPress: onPress
|
|
12867
|
-
}
|
|
12868
|
-
fontSize: "large",
|
|
12869
|
-
fontWeight: "semi-bold"
|
|
12870
|
-
}, label));
|
|
12706
|
+
});
|
|
12871
12707
|
};
|
|
12872
12708
|
|
|
12873
12709
|
var isSections = function isSections(options) {
|
|
@@ -12932,6 +12768,33 @@ var useKeyboard = function useKeyboard() {
|
|
|
12932
12768
|
};
|
|
12933
12769
|
};
|
|
12934
12770
|
|
|
12771
|
+
var SectionSpacer = index$a(View)(function (_ref) {
|
|
12772
|
+
var theme = _ref.theme;
|
|
12773
|
+
return {
|
|
12774
|
+
marginTop: theme.__hd__.select.space.sectionSpacing
|
|
12775
|
+
};
|
|
12776
|
+
});
|
|
12777
|
+
var OptionSpacer = index$a(View)(function (_ref2) {
|
|
12778
|
+
var theme = _ref2.theme;
|
|
12779
|
+
return {
|
|
12780
|
+
marginTop: theme.__hd__.select.space.optionSpacing
|
|
12781
|
+
};
|
|
12782
|
+
});
|
|
12783
|
+
var StyledSearchBar = index$a(View)(function (_ref3) {
|
|
12784
|
+
var theme = _ref3.theme;
|
|
12785
|
+
return {
|
|
12786
|
+
marginTop: theme.__hd__.select.space.searchBarMarginTopSpacing,
|
|
12787
|
+
paddingHorizontal: theme.__hd__.select.space.searchBarHorizontalSpacing,
|
|
12788
|
+
paddingBottom: theme.__hd__.select.space.searchBarBottomSpacing
|
|
12789
|
+
};
|
|
12790
|
+
});
|
|
12791
|
+
var StyledSectionList = index$a(SectionList)(function (_ref4) {
|
|
12792
|
+
var theme = _ref4.theme;
|
|
12793
|
+
return {
|
|
12794
|
+
paddingHorizontal: theme.__hd__.select.space.optionListHorizontalPadding
|
|
12795
|
+
};
|
|
12796
|
+
});
|
|
12797
|
+
|
|
12935
12798
|
var BaseOptionList = function BaseOptionList(_ref) {
|
|
12936
12799
|
var keyExtractor = _ref.keyExtractor,
|
|
12937
12800
|
loading = _ref.loading,
|
|
@@ -13059,7 +12922,6 @@ function MultiSelect(_ref) {
|
|
|
13059
12922
|
loading = _ref$loading === void 0 ? false : _ref$loading,
|
|
13060
12923
|
inputProps = _ref.inputProps,
|
|
13061
12924
|
onConfirm = _ref.onConfirm,
|
|
13062
|
-
onDimiss = _ref.onDimiss,
|
|
13063
12925
|
onDismiss = _ref.onDismiss,
|
|
13064
12926
|
onEndReached = _ref.onEndReached,
|
|
13065
12927
|
onQueryChange = _ref.onQueryChange,
|
|
@@ -13073,7 +12935,6 @@ function MultiSelect(_ref) {
|
|
|
13073
12935
|
_ref$disabled = _ref.disabled,
|
|
13074
12936
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
13075
12937
|
required = _ref.required,
|
|
13076
|
-
numberOfLines = _ref.numberOfLines,
|
|
13077
12938
|
style = _ref.style,
|
|
13078
12939
|
testID = _ref.testID,
|
|
13079
12940
|
value = _ref.value;
|
|
@@ -13096,9 +12957,6 @@ function MultiSelect(_ref) {
|
|
|
13096
12957
|
}).map(function (opt) {
|
|
13097
12958
|
return opt.text;
|
|
13098
12959
|
}).join(', ');
|
|
13099
|
-
useDeprecation("Select's onDimiss is deprecated and will be removed in the next major release. Please use onDismiss instead.", onDimiss !== undefined);
|
|
13100
|
-
useDeprecation("Select's numberOfLines is deprecated and will be removed in the next major release. Please use inputProps.numberOfLines instead.", numberOfLines !== undefined);
|
|
13101
|
-
useDeprecation("Select's inputProps.required is deprecated and will be removed in the next major release. Please use Select's required prop instead.", (inputProps === null || inputProps === void 0 ? void 0 : inputProps.required) !== undefined);
|
|
13102
12960
|
useEffect(function () {
|
|
13103
12961
|
setSelectingValue(value);
|
|
13104
12962
|
}, [open]);
|
|
@@ -13110,9 +12968,7 @@ function MultiSelect(_ref) {
|
|
|
13110
12968
|
}
|
|
13111
12969
|
}, /*#__PURE__*/React.createElement(View, {
|
|
13112
12970
|
pointerEvents: "none"
|
|
13113
|
-
}, /*#__PURE__*/React.createElement(TextInput, _extends$1({
|
|
13114
|
-
numberOfLines: numberOfLines
|
|
13115
|
-
}, inputProps, {
|
|
12971
|
+
}, /*#__PURE__*/React.createElement(TextInput, _extends$1({}, inputProps, {
|
|
13116
12972
|
label: label,
|
|
13117
12973
|
value: displayedValue,
|
|
13118
12974
|
suffix: "arrow-down",
|
|
@@ -13132,7 +12988,7 @@ function MultiSelect(_ref) {
|
|
|
13132
12988
|
onRequestClose: function onRequestClose() {
|
|
13133
12989
|
return setOpen(false);
|
|
13134
12990
|
},
|
|
13135
|
-
onDismiss: onDismiss
|
|
12991
|
+
onDismiss: onDismiss,
|
|
13136
12992
|
header: label,
|
|
13137
12993
|
style: {
|
|
13138
12994
|
paddingBottom: isKeyboardVisible ? keyboardHeight : 0
|
|
@@ -13251,7 +13107,6 @@ var SingleSelect = function SingleSelect(_ref) {
|
|
|
13251
13107
|
loading = _ref$loading === void 0 ? false : _ref$loading,
|
|
13252
13108
|
inputProps = _ref.inputProps,
|
|
13253
13109
|
onConfirm = _ref.onConfirm,
|
|
13254
|
-
onDimiss = _ref.onDimiss,
|
|
13255
13110
|
onDismiss = _ref.onDismiss,
|
|
13256
13111
|
onEndReached = _ref.onEndReached,
|
|
13257
13112
|
onQueryChange = _ref.onQueryChange,
|
|
@@ -13265,7 +13120,6 @@ var SingleSelect = function SingleSelect(_ref) {
|
|
|
13265
13120
|
_ref$disabled = _ref.disabled,
|
|
13266
13121
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
13267
13122
|
required = _ref.required,
|
|
13268
|
-
numberOfLines = _ref.numberOfLines,
|
|
13269
13123
|
style = _ref.style,
|
|
13270
13124
|
testID = _ref.testID,
|
|
13271
13125
|
value = _ref.value;
|
|
@@ -13282,9 +13136,6 @@ var SingleSelect = function SingleSelect(_ref) {
|
|
|
13282
13136
|
var displayedValue = (_flatOptions$find = flatOptions.find(function (opt) {
|
|
13283
13137
|
return value === opt.value;
|
|
13284
13138
|
})) === null || _flatOptions$find === void 0 ? void 0 : _flatOptions$find.text;
|
|
13285
|
-
useDeprecation("Select's onDimiss is deprecated and will be removed in the next major release. Please use onDismiss instead.", onDimiss !== undefined);
|
|
13286
|
-
useDeprecation("Select's numberOfLines is deprecated and will be removed in the next major release. Please use inputProps.numberOfLines instead.", numberOfLines !== undefined);
|
|
13287
|
-
useDeprecation("Select's inputProps.required is deprecated and will be removed in the next major release. Please use Select's required prop instead.", (inputProps === null || inputProps === void 0 ? void 0 : inputProps.required) !== undefined);
|
|
13288
13139
|
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(View, {
|
|
13289
13140
|
pointerEvents: !editable || disabled || inputProps !== null && inputProps !== void 0 && inputProps.loading ? 'none' : 'auto'
|
|
13290
13141
|
}, /*#__PURE__*/React.createElement(TouchableOpacity, {
|
|
@@ -13293,9 +13144,7 @@ var SingleSelect = function SingleSelect(_ref) {
|
|
|
13293
13144
|
}
|
|
13294
13145
|
}, /*#__PURE__*/React.createElement(View, {
|
|
13295
13146
|
pointerEvents: "none"
|
|
13296
|
-
}, /*#__PURE__*/React.createElement(TextInput, _extends$1({
|
|
13297
|
-
numberOfLines: numberOfLines
|
|
13298
|
-
}, inputProps, {
|
|
13147
|
+
}, /*#__PURE__*/React.createElement(TextInput, _extends$1({}, inputProps, {
|
|
13299
13148
|
label: label,
|
|
13300
13149
|
value: displayedValue,
|
|
13301
13150
|
suffix: "arrow-down",
|
|
@@ -13315,7 +13164,7 @@ var SingleSelect = function SingleSelect(_ref) {
|
|
|
13315
13164
|
onRequestClose: function onRequestClose() {
|
|
13316
13165
|
return setOpen(false);
|
|
13317
13166
|
},
|
|
13318
|
-
onDismiss: onDismiss
|
|
13167
|
+
onDismiss: onDismiss,
|
|
13319
13168
|
header: label,
|
|
13320
13169
|
style: {
|
|
13321
13170
|
paddingBottom: isKeyboardVisible ? keyboardHeight : 0
|
|
@@ -13353,31 +13202,6 @@ var index$4 = Object.assign(SingleSelect, {
|
|
|
13353
13202
|
});
|
|
13354
13203
|
|
|
13355
13204
|
var StyledWrapper$1 = index$a(View)(function (_ref) {
|
|
13356
|
-
var theme = _ref.theme,
|
|
13357
|
-
themeVariant = _ref.themeVariant,
|
|
13358
|
-
themeSize = _ref.themeSize;
|
|
13359
|
-
return {
|
|
13360
|
-
height: theme.__hd__["switch"].sizes.heights[themeSize],
|
|
13361
|
-
width: theme.__hd__["switch"].sizes.widths[themeSize],
|
|
13362
|
-
paddingHorizontal: theme.__hd__["switch"].spaces[themeSize],
|
|
13363
|
-
borderRadius: theme.__hd__["switch"].radii.rounded,
|
|
13364
|
-
backgroundColor: theme.__hd__["switch"].colors.backgroundColors[themeVariant],
|
|
13365
|
-
display: 'flex',
|
|
13366
|
-
justifyContent: 'center'
|
|
13367
|
-
};
|
|
13368
|
-
});
|
|
13369
|
-
var StyledKnot = index$a(Animated.View)(function (_ref2) {
|
|
13370
|
-
var theme = _ref2.theme,
|
|
13371
|
-
themeSize = _ref2.themeSize;
|
|
13372
|
-
return {
|
|
13373
|
-
width: theme.__hd__["switch"].sizes.thumbs[themeSize],
|
|
13374
|
-
height: theme.__hd__["switch"].sizes.thumbs[themeSize],
|
|
13375
|
-
backgroundColor: theme.__hd__["switch"].colors.thumb,
|
|
13376
|
-
borderRadius: theme.__hd__["switch"].radii.rounded
|
|
13377
|
-
};
|
|
13378
|
-
});
|
|
13379
|
-
|
|
13380
|
-
var StyledWrapper = index$a(View)(function (_ref) {
|
|
13381
13205
|
var theme = _ref.theme;
|
|
13382
13206
|
return {
|
|
13383
13207
|
flexDirection: 'row',
|
|
@@ -13457,7 +13281,7 @@ var SelectorSwitch = function SelectorSwitch(_ref) {
|
|
|
13457
13281
|
return onPress(value);
|
|
13458
13282
|
} : undefined,
|
|
13459
13283
|
testID: testID
|
|
13460
|
-
}, /*#__PURE__*/React.createElement(StyledWrapper, {
|
|
13284
|
+
}, /*#__PURE__*/React.createElement(StyledWrapper$1, {
|
|
13461
13285
|
style: style
|
|
13462
13286
|
}, options.map(function (opt, index) {
|
|
13463
13287
|
return (
|
|
@@ -13471,6 +13295,29 @@ var SelectorSwitch = function SelectorSwitch(_ref) {
|
|
|
13471
13295
|
})));
|
|
13472
13296
|
};
|
|
13473
13297
|
|
|
13298
|
+
var StyledWrapper = index$a(View)(function (_ref) {
|
|
13299
|
+
var theme = _ref.theme,
|
|
13300
|
+
themeVariant = _ref.themeVariant;
|
|
13301
|
+
return {
|
|
13302
|
+
height: theme.__hd__["switch"].sizes.height,
|
|
13303
|
+
width: theme.__hd__["switch"].sizes.width,
|
|
13304
|
+
paddingHorizontal: theme.__hd__["switch"].spaces.paddingHorizontal,
|
|
13305
|
+
borderRadius: theme.__hd__["switch"].radii.rounded,
|
|
13306
|
+
backgroundColor: theme.__hd__["switch"].colors.backgroundColors[themeVariant],
|
|
13307
|
+
display: 'flex',
|
|
13308
|
+
justifyContent: 'center'
|
|
13309
|
+
};
|
|
13310
|
+
});
|
|
13311
|
+
var StyledKnot = index$a(Animated.View)(function (_ref2) {
|
|
13312
|
+
var theme = _ref2.theme;
|
|
13313
|
+
return {
|
|
13314
|
+
width: theme.__hd__["switch"].sizes.thumb,
|
|
13315
|
+
height: theme.__hd__["switch"].sizes.thumb,
|
|
13316
|
+
backgroundColor: theme.__hd__["switch"].colors.thumb,
|
|
13317
|
+
borderRadius: theme.__hd__["switch"].radii.rounded
|
|
13318
|
+
};
|
|
13319
|
+
});
|
|
13320
|
+
|
|
13474
13321
|
var getVariant = function getVariant(_ref) {
|
|
13475
13322
|
var disabled = _ref.disabled,
|
|
13476
13323
|
checked = _ref.checked;
|
|
@@ -13480,22 +13327,19 @@ var getVariant = function getVariant(_ref) {
|
|
|
13480
13327
|
return checked ? 'checked' : 'unchecked';
|
|
13481
13328
|
};
|
|
13482
13329
|
var Switch = function Switch(_ref2) {
|
|
13483
|
-
var
|
|
13484
|
-
_ref2$disabled = _ref2.disabled,
|
|
13330
|
+
var _ref2$disabled = _ref2.disabled,
|
|
13485
13331
|
disabled = _ref2$disabled === void 0 ? false : _ref2$disabled,
|
|
13486
13332
|
_ref2$checked = _ref2.checked,
|
|
13487
13333
|
checked = _ref2$checked === void 0 ? false : _ref2$checked,
|
|
13488
13334
|
onPress = _ref2.onPress,
|
|
13489
13335
|
style = _ref2.style,
|
|
13490
13336
|
testID = _ref2.testID;
|
|
13491
|
-
var size = _size === undefined ? 'medium' : _size;
|
|
13492
13337
|
var theme = useTheme$1();
|
|
13493
13338
|
var variant = getVariant({
|
|
13494
13339
|
disabled: disabled,
|
|
13495
13340
|
checked: checked
|
|
13496
13341
|
});
|
|
13497
|
-
|
|
13498
|
-
var offset = checked ? (theme.__hd__["switch"].sizes.widths[size] - theme.__hd__["switch"].sizes.thumbs[size]) / 2 + theme.__hd__["switch"].sizes.thumbs[size] / 2 : 0;
|
|
13342
|
+
var offset = checked ? (theme.__hd__["switch"].sizes.width - theme.__hd__["switch"].sizes.thumb) / 2 + theme.__hd__["switch"].sizes.thumb / 2 : 0;
|
|
13499
13343
|
var _useState = useState(function () {
|
|
13500
13344
|
return new Animated.Value(offset);
|
|
13501
13345
|
}),
|
|
@@ -13512,12 +13356,10 @@ var Switch = function Switch(_ref2) {
|
|
|
13512
13356
|
testID: testID,
|
|
13513
13357
|
onPress: onPress,
|
|
13514
13358
|
disabled: disabled
|
|
13515
|
-
}, /*#__PURE__*/React.createElement(StyledWrapper
|
|
13359
|
+
}, /*#__PURE__*/React.createElement(StyledWrapper, {
|
|
13516
13360
|
themeVariant: variant,
|
|
13517
|
-
themeSize: size,
|
|
13518
13361
|
style: style
|
|
13519
13362
|
}, /*#__PURE__*/React.createElement(StyledKnot, {
|
|
13520
|
-
themeSize: size,
|
|
13521
13363
|
style: {
|
|
13522
13364
|
left: animatedOffset
|
|
13523
13365
|
}
|
|
@@ -13655,20 +13497,9 @@ var useAnimatedValueArray = function useAnimatedValueArray(initialValues) {
|
|
|
13655
13497
|
};
|
|
13656
13498
|
|
|
13657
13499
|
var TabWithBadge = function TabWithBadge(_ref) {
|
|
13658
|
-
var
|
|
13659
|
-
config = _ref.config,
|
|
13500
|
+
var config = _ref.config,
|
|
13660
13501
|
tabItem = _ref.tabItem;
|
|
13661
13502
|
var theme = useTheme$1();
|
|
13662
|
-
// Deprecated. To be removed.
|
|
13663
|
-
if (showBadge !== undefined) {
|
|
13664
|
-
return /*#__PURE__*/React.createElement(Badge$1.Status, {
|
|
13665
|
-
testID: "deprecated-badge",
|
|
13666
|
-
visible: showBadge,
|
|
13667
|
-
style: {
|
|
13668
|
-
paddingHorizontal: theme.space.small
|
|
13669
|
-
}
|
|
13670
|
-
}, tabItem);
|
|
13671
|
-
}
|
|
13672
13503
|
if (!config) return /*#__PURE__*/React.createElement(View, null, tabItem);
|
|
13673
13504
|
if (config.type === 'status') {
|
|
13674
13505
|
return /*#__PURE__*/React.createElement(Badge$1.Status, {
|
|
@@ -13797,7 +13628,6 @@ var ScrollableTab = function ScrollableTab(_ref2) {
|
|
|
13797
13628
|
testID = tab.testID,
|
|
13798
13629
|
activeItem = tab.activeItem,
|
|
13799
13630
|
originalInactiveItem = tab.inactiveItem,
|
|
13800
|
-
showBadge = tab.showBadge,
|
|
13801
13631
|
badge = tab.badge;
|
|
13802
13632
|
var active = selectedTabKey === key;
|
|
13803
13633
|
var activeAnimated = tabsAnims[index];
|
|
@@ -13828,7 +13658,6 @@ var ScrollableTab = function ScrollableTab(_ref2) {
|
|
|
13828
13658
|
}]
|
|
13829
13659
|
}
|
|
13830
13660
|
})), /*#__PURE__*/React.createElement(HeaderTabItemWrapper, null, /*#__PURE__*/React.createElement(TabWithBadge, {
|
|
13831
|
-
showBadge: showBadge,
|
|
13832
13661
|
config: badge,
|
|
13833
13662
|
tabItem: tabItem
|
|
13834
13663
|
}))));
|
|
@@ -13891,9 +13720,6 @@ var Tabs = function Tabs(_ref2) {
|
|
|
13891
13720
|
_ref2$swipeEnabled = _ref2.swipeEnabled,
|
|
13892
13721
|
swipeEnabled = _ref2$swipeEnabled === void 0 ? true : _ref2$swipeEnabled,
|
|
13893
13722
|
componentTestID = _ref2.testID;
|
|
13894
|
-
useDeprecation("Tabs' showBadge will be removed in the next major release. Please use badge prop instead.", tabs.some(function (item) {
|
|
13895
|
-
return item.showBadge !== undefined;
|
|
13896
|
-
}));
|
|
13897
13723
|
var theme = useTheme$1();
|
|
13898
13724
|
var insets = useSafeAreaInsets();
|
|
13899
13725
|
var pagerViewRef = React.useRef(null);
|
|
@@ -13931,7 +13757,6 @@ var Tabs = function Tabs(_ref2) {
|
|
|
13931
13757
|
testID = tab.testID,
|
|
13932
13758
|
activeItem = tab.activeItem,
|
|
13933
13759
|
originalInactiveItem = tab.inactiveItem,
|
|
13934
|
-
showBadge = tab.showBadge,
|
|
13935
13760
|
badge = tab.badge;
|
|
13936
13761
|
var active = selectedTabKey === key;
|
|
13937
13762
|
var inactiveItem = originalInactiveItem !== null && originalInactiveItem !== void 0 ? originalInactiveItem : activeItem;
|
|
@@ -13947,7 +13772,6 @@ var Tabs = function Tabs(_ref2) {
|
|
|
13947
13772
|
},
|
|
13948
13773
|
testID: testID
|
|
13949
13774
|
}, /*#__PURE__*/React.createElement(HeaderTabItem$1, null, /*#__PURE__*/React.createElement(TabWithBadge, {
|
|
13950
|
-
showBadge: showBadge,
|
|
13951
13775
|
config: badge,
|
|
13952
13776
|
tabItem: tabItem
|
|
13953
13777
|
})));
|
|
@@ -14051,7 +13875,6 @@ var Tag = function Tag(_ref) {
|
|
|
14051
13875
|
style = _ref.style,
|
|
14052
13876
|
testID = _ref.testID,
|
|
14053
13877
|
nativeProps = _objectWithoutProperties(_ref, _excluded);
|
|
14054
|
-
useDeprecation("Tag's default intent is deprecated and will be removed in the next major release.\nPlease use primary intent instead.", intent !== 'default');
|
|
14055
13878
|
return /*#__PURE__*/React.createElement(StyledView, _extends$1({}, nativeProps, {
|
|
14056
13879
|
themeIntent: intent,
|
|
14057
13880
|
themeVariant: variant,
|
|
@@ -14175,18 +13998,16 @@ var TimePickerIOS = function TimePickerIOS(_ref) {
|
|
|
14175
13998
|
return setOpen(false);
|
|
14176
13999
|
},
|
|
14177
14000
|
header: label,
|
|
14178
|
-
footer: /*#__PURE__*/React.createElement(
|
|
14001
|
+
footer: /*#__PURE__*/React.createElement(CompoundButton, {
|
|
14002
|
+
variant: "text",
|
|
14003
|
+
text: confirmLabel,
|
|
14179
14004
|
onPress: function onPress() {
|
|
14180
14005
|
if (selectingDate) {
|
|
14181
14006
|
onChange(selectingDate);
|
|
14182
14007
|
}
|
|
14183
14008
|
setOpen(false);
|
|
14184
14009
|
}
|
|
14185
|
-
}
|
|
14186
|
-
fontSize: "large",
|
|
14187
|
-
fontWeight: "semi-bold",
|
|
14188
|
-
intent: "primary"
|
|
14189
|
-
}, confirmLabel))
|
|
14010
|
+
})
|
|
14190
14011
|
}, /*#__PURE__*/React.createElement(StyledPickerWrapper, null, /*#__PURE__*/React.createElement(DateTimePicker, {
|
|
14191
14012
|
testID: "timePickerIOS",
|
|
14192
14013
|
value: selectingDate,
|
|
@@ -25658,8 +25479,7 @@ function checkDCE() {
|
|
|
25658
25479
|
voids: a
|
|
25659
25480
|
}));
|
|
25660
25481
|
if (v.length > 0) if ("continue" === function () {
|
|
25661
|
-
var
|
|
25662
|
-
r = _v[0],
|
|
25482
|
+
var r = v[0],
|
|
25663
25483
|
n = v[v.length - 1],
|
|
25664
25484
|
_r4 = _slicedToArray(r, 2),
|
|
25665
25485
|
o = _r4[1],
|