@hero-design/rn 8.0.0-rc.0 → 8.0.1
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/lib/index.js
CHANGED
|
@@ -105,7 +105,7 @@ function _defineProperty(obj, key, value) {
|
|
|
105
105
|
return obj;
|
|
106
106
|
}
|
|
107
107
|
function _extends$1() {
|
|
108
|
-
_extends$1 = Object.assign
|
|
108
|
+
_extends$1 = Object.assign ? Object.assign.bind() : function (target) {
|
|
109
109
|
for (var i = 1; i < arguments.length; i++) {
|
|
110
110
|
var source = arguments[i];
|
|
111
111
|
for (var key in source) {
|
|
@@ -1075,6 +1075,7 @@ var blue$1 = colorScales.blue,
|
|
|
1075
1075
|
violetDark15: violet$2.darken15,
|
|
1076
1076
|
violetDark30: violet$2.darken30,
|
|
1077
1077
|
violetDark45: violet$2.darken45,
|
|
1078
|
+
violetDark60: violet$2.darken60,
|
|
1078
1079
|
violetDark75: violet$2.darken75,
|
|
1079
1080
|
violetLight30: violet$2.lighten30,
|
|
1080
1081
|
violetLight60: violet$2.lighten60,
|
|
@@ -1290,52 +1291,6 @@ var globalPalette = {
|
|
|
1290
1291
|
// End of Updated 21 / Nov / 22
|
|
1291
1292
|
};
|
|
1292
1293
|
|
|
1293
|
-
var legacySystemPalette = {
|
|
1294
|
-
globalPrimary: palette$6.maasstrichtBlue,
|
|
1295
|
-
globalPrimaryLight: palette$6.maasstrichtBlueLight50,
|
|
1296
|
-
globalPrimaryBackground: palette$6.maasstrichtBlueLight90,
|
|
1297
|
-
primaryLight: palette$2.violetLight50,
|
|
1298
|
-
primaryDark: palette$2.scarletGumLight30,
|
|
1299
|
-
primaryBackground: palette$2.violetLight90,
|
|
1300
|
-
primaryBackgroundDark: palette$6.maasstrichtBlueLight30,
|
|
1301
|
-
secondaryLight: palette$2.vodka,
|
|
1302
|
-
secondaryBackground: palette$2.aliceBlue,
|
|
1303
|
-
infoMediumLight: palette$6.vodka,
|
|
1304
|
-
infoLight: palette$6.vodka,
|
|
1305
|
-
infoBackground: palette$6.aliceBlue,
|
|
1306
|
-
successLight: palette$6.emerald,
|
|
1307
|
-
successDark: palette$6.pineGreen,
|
|
1308
|
-
successBackground: palette$6.honeydew,
|
|
1309
|
-
danger: palette$6.vermilion,
|
|
1310
|
-
dangerMediumLight: palette$6.apple,
|
|
1311
|
-
dangerLight: palette$6.pastelRed,
|
|
1312
|
-
dangerBackground: palette$6.linen,
|
|
1313
|
-
warningLight: palette$6.mellowApricot,
|
|
1314
|
-
warningDark: palette$6.deepSaffron,
|
|
1315
|
-
warningBackground: palette$6.seashell,
|
|
1316
|
-
platformBackground: palette$6.white,
|
|
1317
|
-
backgroundLight: palette$6.greyLight90,
|
|
1318
|
-
backgroundDark: palette$6.maasstrichtBlue,
|
|
1319
|
-
text: palette$6.maasstrichtBlue,
|
|
1320
|
-
subduedText: palette$6.maasstrichtBlueLight30,
|
|
1321
|
-
disabledText: palette$6.maasstrichtBlueLight50,
|
|
1322
|
-
disabledLightText: palette$6.greyLight30,
|
|
1323
|
-
invertedText: palette$6.white,
|
|
1324
|
-
outline: palette$6.greyLight75,
|
|
1325
|
-
archivedLight: palette$6.greyLight30,
|
|
1326
|
-
archivedDark: palette$6.sonicSilver,
|
|
1327
|
-
archivedBackground: palette$6.greyLight90,
|
|
1328
|
-
black: palette$6.black,
|
|
1329
|
-
inactiveBackground: palette$6.maasstrichtBlueLight50,
|
|
1330
|
-
shadow: palette$6.greyLight45,
|
|
1331
|
-
// Updated 14 / Nov / 22
|
|
1332
|
-
mutedGlobalPrimary: palette$6.maasstrichtBlueLight30,
|
|
1333
|
-
onGlobalPrimary: palette$6.white,
|
|
1334
|
-
globalSecondary: palette$6.maasstrichtBlueLight30,
|
|
1335
|
-
globalPrimaryOutline: palette$6.maasstrichtBlue,
|
|
1336
|
-
globalSecondaryOutline: palette$6.greyLight75
|
|
1337
|
-
};
|
|
1338
|
-
|
|
1339
1294
|
var swagBrandSystemPallete = {
|
|
1340
1295
|
primary: palette$2.scarletGum,
|
|
1341
1296
|
onPrimary: palette$2.white,
|
|
@@ -1347,14 +1302,7 @@ var swagBrandSystemPallete = {
|
|
|
1347
1302
|
decorativePrimary: palette$2.white,
|
|
1348
1303
|
decorativePrimarySurface: palette$2.maasstrichtBlueLight80
|
|
1349
1304
|
};
|
|
1350
|
-
var
|
|
1351
|
-
mutedPrimary: palette$2.maasstrichtBlueLight90,
|
|
1352
|
-
highlightedSecondarySurface: palette$2.aliceBlue,
|
|
1353
|
-
mutedSecondary: palette$2.maasstrichtBlueLight50,
|
|
1354
|
-
disabledSecondary: palette$2.scarletGumLight50,
|
|
1355
|
-
lightHighlightedSurface: palette$2.scarletGumLight90
|
|
1356
|
-
};
|
|
1357
|
-
var swagSystemPalette = _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({}, legacySystemPalette), swagLegacyBrandSystemPalette), globalPalette), swagBrandSystemPallete);
|
|
1305
|
+
var swagSystemPalette = _objectSpread2(_objectSpread2({}, globalPalette), swagBrandSystemPallete);
|
|
1358
1306
|
|
|
1359
1307
|
var workBrandSystemPallete = {
|
|
1360
1308
|
primary: palette.policeBlue,
|
|
@@ -1440,7 +1388,7 @@ var getFonts = function getFonts(_ref) {
|
|
|
1440
1388
|
},
|
|
1441
1389
|
playful: {
|
|
1442
1390
|
light: "".concat(playful, "-Light"),
|
|
1443
|
-
regular: "".concat(playful
|
|
1391
|
+
regular: "".concat(playful),
|
|
1444
1392
|
semiBold: "".concat(playful, "-SemiBold")
|
|
1445
1393
|
}
|
|
1446
1394
|
};
|
|
@@ -1741,15 +1689,14 @@ var getBottomSheetTheme = function getBottomSheetTheme(theme) {
|
|
|
1741
1689
|
backdrop: theme.colors.overlayGlobalSurface
|
|
1742
1690
|
};
|
|
1743
1691
|
var sizes = {
|
|
1744
|
-
sectionHeight: theme.sizes.xxxxxlarge,
|
|
1745
1692
|
closeIcon: theme.sizes.xxxlarge
|
|
1746
1693
|
};
|
|
1747
1694
|
var space = {
|
|
1748
1695
|
headerWrapperVerticalPadding: theme.space.small,
|
|
1749
1696
|
headerWrapperHorizontalPadding: theme.space.medium,
|
|
1750
1697
|
closeIconMargin: theme.space.smallMedium,
|
|
1751
|
-
footerVerticalPadding: theme.space.
|
|
1752
|
-
footerHorizontalPadding: theme.space.
|
|
1698
|
+
footerVerticalPadding: theme.space.xxsmall,
|
|
1699
|
+
footerHorizontalPadding: theme.space.smallMedium
|
|
1753
1700
|
};
|
|
1754
1701
|
var shadows = {
|
|
1755
1702
|
offset: {
|
|
@@ -2336,9 +2283,6 @@ var getSectionHeadingTheme = function getSectionHeadingTheme(theme) {
|
|
|
2336
2283
|
};
|
|
2337
2284
|
|
|
2338
2285
|
var getSelectTheme = function getSelectTheme(theme) {
|
|
2339
|
-
var colors = {
|
|
2340
|
-
footerText: theme.colors.secondary
|
|
2341
|
-
};
|
|
2342
2286
|
var space = {
|
|
2343
2287
|
minimumOptionListHeight: theme.space.xxxxlarge * 5,
|
|
2344
2288
|
sectionSpacing: theme.space.smallMedium,
|
|
@@ -2355,7 +2299,6 @@ var getSelectTheme = function getSelectTheme(theme) {
|
|
|
2355
2299
|
};
|
|
2356
2300
|
return {
|
|
2357
2301
|
space: space,
|
|
2358
|
-
colors: colors,
|
|
2359
2302
|
radii: radii
|
|
2360
2303
|
};
|
|
2361
2304
|
};
|
|
@@ -2428,25 +2371,15 @@ var getSwitchTheme = function getSwitchTheme(theme) {
|
|
|
2428
2371
|
}
|
|
2429
2372
|
};
|
|
2430
2373
|
var sizes = {
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
},
|
|
2435
|
-
widths: {
|
|
2436
|
-
small: theme.sizes.xxxlarge,
|
|
2437
|
-
medium: theme.sizes.xxxxxlarge
|
|
2438
|
-
},
|
|
2439
|
-
heights: {
|
|
2440
|
-
small: theme.sizes.large,
|
|
2441
|
-
medium: theme.sizes.xlarge
|
|
2442
|
-
},
|
|
2374
|
+
thumb: theme.sizes.medium,
|
|
2375
|
+
width: theme.sizes.xxxlarge,
|
|
2376
|
+
height: theme.sizes.large,
|
|
2443
2377
|
selector: {
|
|
2444
2378
|
height: theme.sizes.xxxxlarge
|
|
2445
2379
|
}
|
|
2446
2380
|
};
|
|
2447
2381
|
var spaces = {
|
|
2448
|
-
|
|
2449
|
-
medium: theme.space.xsmall,
|
|
2382
|
+
paddingHorizontal: theme.space.xsmall,
|
|
2450
2383
|
selector: {
|
|
2451
2384
|
iconPadding: theme.space.medium,
|
|
2452
2385
|
wrapperPadding: theme.space.xsmall
|
|
@@ -2506,8 +2439,6 @@ var getTagTheme = function getTagTheme(theme) {
|
|
|
2506
2439
|
"default": theme.borderWidths.base
|
|
2507
2440
|
};
|
|
2508
2441
|
var colors = {
|
|
2509
|
-
"default": theme.colors.onDefaultGlobalSurface,
|
|
2510
|
-
defaultBackground: undefined,
|
|
2511
2442
|
primary: theme.colors.primary,
|
|
2512
2443
|
primaryBackground: undefined,
|
|
2513
2444
|
info: theme.colors.onInfoSurface,
|
|
@@ -5698,7 +5629,7 @@ var useDeprecation = function useDeprecation(message) {
|
|
|
5698
5629
|
React.useEffect(function () {
|
|
5699
5630
|
// eslint-disable-next-line no-console
|
|
5700
5631
|
if (cond) {
|
|
5701
|
-
console.
|
|
5632
|
+
console.error(message);
|
|
5702
5633
|
}
|
|
5703
5634
|
}, [message, cond]);
|
|
5704
5635
|
};
|
|
@@ -5819,7 +5750,7 @@ var Typography = {
|
|
|
5819
5750
|
};
|
|
5820
5751
|
|
|
5821
5752
|
// 🔴 DO NOT EDIT — This file is generated automatically.
|
|
5822
|
-
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', '
|
|
5753
|
+
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'];
|
|
5823
5754
|
|
|
5824
5755
|
var activate = 59000;
|
|
5825
5756
|
var adjustment = 59003;
|
|
@@ -5834,76 +5765,76 @@ var box = 59013;
|
|
|
5834
5765
|
var buildings = 59014;
|
|
5835
5766
|
var cake = 59015;
|
|
5836
5767
|
var calendar = 59017;
|
|
5837
|
-
var clock =
|
|
5838
|
-
var cog =
|
|
5839
|
-
var coin =
|
|
5840
|
-
var contacts =
|
|
5841
|
-
var diamond =
|
|
5842
|
-
var directory =
|
|
5843
|
-
var document$1 =
|
|
5844
|
-
var envelope =
|
|
5845
|
-
var expense =
|
|
5846
|
-
var eye =
|
|
5847
|
-
var feed =
|
|
5848
|
-
var feedbacks =
|
|
5849
|
-
var file =
|
|
5850
|
-
var filter =
|
|
5851
|
-
var folder =
|
|
5852
|
-
var globe =
|
|
5853
|
-
var graph =
|
|
5854
|
-
var heart =
|
|
5855
|
-
var home =
|
|
5856
|
-
var image =
|
|
5857
|
-
var instapay =
|
|
5858
|
-
var list =
|
|
5859
|
-
var loading =
|
|
5860
|
-
var location =
|
|
5861
|
-
var lock =
|
|
5862
|
-
var menu =
|
|
5863
|
-
var moneybag =
|
|
5864
|
-
var moon =
|
|
5865
|
-
var node =
|
|
5866
|
-
var paperclip =
|
|
5867
|
-
var pencil =
|
|
5868
|
-
var phone =
|
|
5869
|
-
var plane =
|
|
5870
|
-
var print =
|
|
5871
|
-
var reply =
|
|
5872
|
-
var reschedule =
|
|
5873
|
-
var rostering =
|
|
5874
|
-
var save =
|
|
5875
|
-
var schedule =
|
|
5876
|
-
var send =
|
|
5877
|
-
var speaker =
|
|
5878
|
-
var star =
|
|
5879
|
-
var stopwatch =
|
|
5880
|
-
var suitcase =
|
|
5881
|
-
var survey =
|
|
5882
|
-
var swag =
|
|
5883
|
-
var tag =
|
|
5884
|
-
var target =
|
|
5885
|
-
var teams =
|
|
5886
|
-
var timesheet =
|
|
5887
|
-
var unlock =
|
|
5888
|
-
var user =
|
|
5889
|
-
var wallet =
|
|
5890
|
-
var warning =
|
|
5891
|
-
var add =
|
|
5892
|
-
var bold =
|
|
5893
|
-
var cancel =
|
|
5894
|
-
var checkmark =
|
|
5895
|
-
var italic =
|
|
5896
|
-
var number =
|
|
5897
|
-
var percentage =
|
|
5898
|
-
var redeem =
|
|
5899
|
-
var refresh =
|
|
5900
|
-
var remove =
|
|
5901
|
-
var restart =
|
|
5902
|
-
var strikethrough =
|
|
5903
|
-
var sync =
|
|
5904
|
-
var transfer =
|
|
5905
|
-
var unavailable =
|
|
5906
|
-
var underline =
|
|
5768
|
+
var clock = 59042;
|
|
5769
|
+
var cog = 59045;
|
|
5770
|
+
var coin = 59046;
|
|
5771
|
+
var contacts = 59047;
|
|
5772
|
+
var diamond = 59049;
|
|
5773
|
+
var directory = 59051;
|
|
5774
|
+
var document$1 = 59052;
|
|
5775
|
+
var envelope = 59056;
|
|
5776
|
+
var expense = 59057;
|
|
5777
|
+
var eye = 59060;
|
|
5778
|
+
var feed = 59064;
|
|
5779
|
+
var feedbacks = 59065;
|
|
5780
|
+
var file = 59083;
|
|
5781
|
+
var filter = 59084;
|
|
5782
|
+
var folder = 59086;
|
|
5783
|
+
var globe = 59096;
|
|
5784
|
+
var graph = 59098;
|
|
5785
|
+
var heart = 59101;
|
|
5786
|
+
var home = 59102;
|
|
5787
|
+
var image = 59103;
|
|
5788
|
+
var instapay = 59106;
|
|
5789
|
+
var list = 59107;
|
|
5790
|
+
var loading = 59109;
|
|
5791
|
+
var location = 59110;
|
|
5792
|
+
var lock = 59111;
|
|
5793
|
+
var menu = 59115;
|
|
5794
|
+
var moneybag = 59116;
|
|
5795
|
+
var moon = 59117;
|
|
5796
|
+
var node = 59120;
|
|
5797
|
+
var paperclip = 59122;
|
|
5798
|
+
var pencil = 59124;
|
|
5799
|
+
var phone = 59125;
|
|
5800
|
+
var plane = 59127;
|
|
5801
|
+
var print = 59129;
|
|
5802
|
+
var reply = 59132;
|
|
5803
|
+
var reschedule = 59133;
|
|
5804
|
+
var rostering = 59134;
|
|
5805
|
+
var save = 59135;
|
|
5806
|
+
var schedule = 59137;
|
|
5807
|
+
var send = 59139;
|
|
5808
|
+
var speaker = 59141;
|
|
5809
|
+
var star = 59145;
|
|
5810
|
+
var stopwatch = 59147;
|
|
5811
|
+
var suitcase = 59148;
|
|
5812
|
+
var survey = 59149;
|
|
5813
|
+
var swag = 59150;
|
|
5814
|
+
var tag = 59152;
|
|
5815
|
+
var target = 59153;
|
|
5816
|
+
var teams = 59154;
|
|
5817
|
+
var timesheet = 59155;
|
|
5818
|
+
var unlock = 59158;
|
|
5819
|
+
var user = 59159;
|
|
5820
|
+
var wallet = 59162;
|
|
5821
|
+
var warning = 59163;
|
|
5822
|
+
var add = 59169;
|
|
5823
|
+
var bold = 59188;
|
|
5824
|
+
var cancel = 59198;
|
|
5825
|
+
var checkmark = 59201;
|
|
5826
|
+
var italic = 59273;
|
|
5827
|
+
var number = 59296;
|
|
5828
|
+
var percentage = 59300;
|
|
5829
|
+
var redeem = 59308;
|
|
5830
|
+
var refresh = 59309;
|
|
5831
|
+
var remove = 59310;
|
|
5832
|
+
var restart = 59312;
|
|
5833
|
+
var strikethrough = 59331;
|
|
5834
|
+
var sync = 59336;
|
|
5835
|
+
var transfer = 59339;
|
|
5836
|
+
var unavailable = 59342;
|
|
5837
|
+
var underline = 59343;
|
|
5907
5838
|
var glyphMap = {
|
|
5908
5839
|
activate: activate,
|
|
5909
5840
|
"add-emoji": 59001,
|
|
@@ -5924,348 +5855,340 @@ var glyphMap = {
|
|
|
5924
5855
|
"calendar-clock": 59016,
|
|
5925
5856
|
calendar: calendar,
|
|
5926
5857
|
"candy-box-menu": 59018,
|
|
5927
|
-
"
|
|
5928
|
-
"
|
|
5929
|
-
"
|
|
5930
|
-
"
|
|
5931
|
-
"
|
|
5932
|
-
"
|
|
5933
|
-
"
|
|
5934
|
-
"
|
|
5935
|
-
"
|
|
5936
|
-
"
|
|
5937
|
-
"
|
|
5938
|
-
"
|
|
5939
|
-
"
|
|
5940
|
-
"
|
|
5941
|
-
"
|
|
5942
|
-
"
|
|
5943
|
-
"
|
|
5944
|
-
"circle-
|
|
5945
|
-
"circle-
|
|
5946
|
-
"circle-
|
|
5947
|
-
"circle-
|
|
5948
|
-
"circle-
|
|
5949
|
-
"
|
|
5950
|
-
"circle-ok": 59042,
|
|
5951
|
-
"circle-pencil": 59043,
|
|
5952
|
-
"circle-question": 59044,
|
|
5953
|
-
"circle-remove": 59045,
|
|
5954
|
-
"circle-right": 59046,
|
|
5955
|
-
"circle-up": 59047,
|
|
5956
|
-
"circle-warning": 59048,
|
|
5957
|
-
"clock-3": 59049,
|
|
5858
|
+
"caret-down-small": 59019,
|
|
5859
|
+
"caret-down": 59020,
|
|
5860
|
+
"caret-left-small": 59021,
|
|
5861
|
+
"caret-left": 59022,
|
|
5862
|
+
"caret-right-small": 59023,
|
|
5863
|
+
"caret-right": 59024,
|
|
5864
|
+
"caret-up-small": 59025,
|
|
5865
|
+
"caret-up": 59026,
|
|
5866
|
+
"check-radio": 59027,
|
|
5867
|
+
"circle-add": 59028,
|
|
5868
|
+
"circle-cancel": 59029,
|
|
5869
|
+
"circle-check": 59030,
|
|
5870
|
+
"circle-down": 59031,
|
|
5871
|
+
"circle-info": 59032,
|
|
5872
|
+
"circle-left": 59033,
|
|
5873
|
+
"circle-ok": 59034,
|
|
5874
|
+
"circle-pencil": 59035,
|
|
5875
|
+
"circle-question": 59036,
|
|
5876
|
+
"circle-remove": 59037,
|
|
5877
|
+
"circle-right": 59038,
|
|
5878
|
+
"circle-up": 59039,
|
|
5879
|
+
"circle-warning": 59040,
|
|
5880
|
+
"clock-3": 59041,
|
|
5958
5881
|
clock: clock,
|
|
5959
|
-
"cloud-download":
|
|
5960
|
-
"cloud-upload":
|
|
5882
|
+
"cloud-download": 59043,
|
|
5883
|
+
"cloud-upload": 59044,
|
|
5961
5884
|
cog: cog,
|
|
5962
5885
|
coin: coin,
|
|
5963
5886
|
contacts: contacts,
|
|
5964
|
-
"credit-card":
|
|
5887
|
+
"credit-card": 59048,
|
|
5965
5888
|
diamond: diamond,
|
|
5966
|
-
"direction-arrows":
|
|
5889
|
+
"direction-arrows": 59050,
|
|
5967
5890
|
directory: directory,
|
|
5968
5891
|
document: document$1,
|
|
5969
|
-
"dollar-coin-shine":
|
|
5970
|
-
"double-buildings":
|
|
5971
|
-
"edit-template":
|
|
5892
|
+
"dollar-coin-shine": 59053,
|
|
5893
|
+
"double-buildings": 59054,
|
|
5894
|
+
"edit-template": 59055,
|
|
5972
5895
|
envelope: envelope,
|
|
5973
5896
|
expense: expense,
|
|
5974
|
-
"eye-circle":
|
|
5975
|
-
"eye-invisible":
|
|
5897
|
+
"eye-circle": 59058,
|
|
5898
|
+
"eye-invisible": 59059,
|
|
5976
5899
|
eye: eye,
|
|
5977
|
-
"face-meh":
|
|
5978
|
-
"face-sad":
|
|
5979
|
-
"face-smiley":
|
|
5900
|
+
"face-meh": 59061,
|
|
5901
|
+
"face-sad": 59062,
|
|
5902
|
+
"face-smiley": 59063,
|
|
5980
5903
|
feed: feed,
|
|
5981
5904
|
feedbacks: feedbacks,
|
|
5982
|
-
"file-certified":
|
|
5983
|
-
"file-clone":
|
|
5984
|
-
"file-copy":
|
|
5985
|
-
"file-csv":
|
|
5986
|
-
"file-dispose":
|
|
5987
|
-
"file-doc":
|
|
5988
|
-
"file-excel":
|
|
5989
|
-
"file-export":
|
|
5990
|
-
"file-lock":
|
|
5991
|
-
"file-pdf":
|
|
5992
|
-
"file-powerpoint":
|
|
5993
|
-
"file-search":
|
|
5994
|
-
"file-secured":
|
|
5995
|
-
"file-sheets":
|
|
5996
|
-
"file-slide":
|
|
5997
|
-
"file-verified":
|
|
5998
|
-
"file-word":
|
|
5905
|
+
"file-certified": 59066,
|
|
5906
|
+
"file-clone": 59067,
|
|
5907
|
+
"file-copy": 59068,
|
|
5908
|
+
"file-csv": 59069,
|
|
5909
|
+
"file-dispose": 59070,
|
|
5910
|
+
"file-doc": 59071,
|
|
5911
|
+
"file-excel": 59072,
|
|
5912
|
+
"file-export": 59073,
|
|
5913
|
+
"file-lock": 59074,
|
|
5914
|
+
"file-pdf": 59075,
|
|
5915
|
+
"file-powerpoint": 59076,
|
|
5916
|
+
"file-search": 59077,
|
|
5917
|
+
"file-secured": 59078,
|
|
5918
|
+
"file-sheets": 59079,
|
|
5919
|
+
"file-slide": 59080,
|
|
5920
|
+
"file-verified": 59081,
|
|
5921
|
+
"file-word": 59082,
|
|
5999
5922
|
file: file,
|
|
6000
5923
|
filter: filter,
|
|
6001
|
-
"folder-user":
|
|
5924
|
+
"folder-user": 59085,
|
|
6002
5925
|
folder: folder,
|
|
6003
|
-
"format-bold":
|
|
6004
|
-
"format-heading1":
|
|
6005
|
-
"format-heading2":
|
|
6006
|
-
"format-italic":
|
|
6007
|
-
"format-list-bulleted":
|
|
6008
|
-
"format-list-numbered":
|
|
6009
|
-
"format-underlined":
|
|
6010
|
-
"funnel-filter":
|
|
6011
|
-
"global-dollar":
|
|
5926
|
+
"format-bold": 59087,
|
|
5927
|
+
"format-heading1": 59088,
|
|
5928
|
+
"format-heading2": 59089,
|
|
5929
|
+
"format-italic": 59090,
|
|
5930
|
+
"format-list-bulleted": 59091,
|
|
5931
|
+
"format-list-numbered": 59092,
|
|
5932
|
+
"format-underlined": 59093,
|
|
5933
|
+
"funnel-filter": 59094,
|
|
5934
|
+
"global-dollar": 59095,
|
|
6012
5935
|
globe: globe,
|
|
6013
|
-
"graduation-cap":
|
|
5936
|
+
"graduation-cap": 59097,
|
|
6014
5937
|
graph: graph,
|
|
6015
|
-
"happy-sun":
|
|
6016
|
-
"health-bag":
|
|
5938
|
+
"happy-sun": 59099,
|
|
5939
|
+
"health-bag": 59100,
|
|
6017
5940
|
heart: heart,
|
|
6018
5941
|
home: home,
|
|
6019
5942
|
image: image,
|
|
6020
|
-
"import":
|
|
6021
|
-
"incident-siren":
|
|
5943
|
+
"import": 59104,
|
|
5944
|
+
"incident-siren": 59105,
|
|
6022
5945
|
instapay: instapay,
|
|
6023
5946
|
list: list,
|
|
6024
|
-
"loading-2":
|
|
5947
|
+
"loading-2": 59108,
|
|
6025
5948
|
loading: loading,
|
|
6026
5949
|
location: location,
|
|
6027
5950
|
lock: lock,
|
|
6028
|
-
"looks-one":
|
|
6029
|
-
"looks-two":
|
|
6030
|
-
"media-content":
|
|
5951
|
+
"looks-one": 59112,
|
|
5952
|
+
"looks-two": 59113,
|
|
5953
|
+
"media-content": 59114,
|
|
6031
5954
|
menu: menu,
|
|
6032
5955
|
moneybag: moneybag,
|
|
6033
5956
|
moon: moon,
|
|
6034
|
-
"multiple-stars":
|
|
6035
|
-
"multiple-users":
|
|
5957
|
+
"multiple-stars": 59118,
|
|
5958
|
+
"multiple-users": 59119,
|
|
6036
5959
|
node: node,
|
|
6037
|
-
"open-folder":
|
|
5960
|
+
"open-folder": 59121,
|
|
6038
5961
|
paperclip: paperclip,
|
|
6039
|
-
"payment-summary":
|
|
5962
|
+
"payment-summary": 59123,
|
|
6040
5963
|
pencil: pencil,
|
|
6041
5964
|
phone: phone,
|
|
6042
|
-
"piggy-bank":
|
|
5965
|
+
"piggy-bank": 59126,
|
|
6043
5966
|
plane: plane,
|
|
6044
|
-
"play-circle":
|
|
5967
|
+
"play-circle": 59128,
|
|
6045
5968
|
print: print,
|
|
6046
|
-
"raising-hands":
|
|
6047
|
-
"reply-arrow":
|
|
5969
|
+
"raising-hands": 59130,
|
|
5970
|
+
"reply-arrow": 59131,
|
|
6048
5971
|
reply: reply,
|
|
6049
5972
|
reschedule: reschedule,
|
|
6050
5973
|
rostering: rostering,
|
|
6051
5974
|
save: save,
|
|
6052
|
-
"schedule-send":
|
|
5975
|
+
"schedule-send": 59136,
|
|
6053
5976
|
schedule: schedule,
|
|
6054
|
-
"search-person":
|
|
5977
|
+
"search-person": 59138,
|
|
6055
5978
|
send: send,
|
|
6056
|
-
"speaker-active":
|
|
5979
|
+
"speaker-active": 59140,
|
|
6057
5980
|
speaker: speaker,
|
|
6058
|
-
"star-award":
|
|
6059
|
-
"star-badge":
|
|
6060
|
-
"star-medal":
|
|
5981
|
+
"star-award": 59142,
|
|
5982
|
+
"star-badge": 59143,
|
|
5983
|
+
"star-medal": 59144,
|
|
6061
5984
|
star: star,
|
|
6062
|
-
"steps-circle":
|
|
5985
|
+
"steps-circle": 59146,
|
|
6063
5986
|
stopwatch: stopwatch,
|
|
6064
5987
|
suitcase: suitcase,
|
|
6065
5988
|
survey: survey,
|
|
6066
5989
|
swag: swag,
|
|
6067
|
-
"switch":
|
|
5990
|
+
"switch": 59151,
|
|
6068
5991
|
tag: tag,
|
|
6069
5992
|
target: target,
|
|
6070
5993
|
teams: teams,
|
|
6071
5994
|
timesheet: timesheet,
|
|
6072
|
-
"touch-id":
|
|
6073
|
-
"trash-bin":
|
|
5995
|
+
"touch-id": 59156,
|
|
5996
|
+
"trash-bin": 59157,
|
|
6074
5997
|
unlock: unlock,
|
|
6075
5998
|
user: user,
|
|
6076
|
-
"video-1":
|
|
6077
|
-
"video-2":
|
|
5999
|
+
"video-1": 59160,
|
|
6000
|
+
"video-2": 59161,
|
|
6078
6001
|
wallet: wallet,
|
|
6079
6002
|
warning: warning,
|
|
6080
|
-
"activate-outlined":
|
|
6081
|
-
"add-credit-card-outlined":
|
|
6082
|
-
"add-person-outlined":
|
|
6083
|
-
"add-section-outlined":
|
|
6084
|
-
"add-time-outlined":
|
|
6003
|
+
"activate-outlined": 59164,
|
|
6004
|
+
"add-credit-card-outlined": 59165,
|
|
6005
|
+
"add-person-outlined": 59166,
|
|
6006
|
+
"add-section-outlined": 59167,
|
|
6007
|
+
"add-time-outlined": 59168,
|
|
6085
6008
|
add: add,
|
|
6086
|
-
"adjustment-outlined":
|
|
6087
|
-
"alignment-2-outlined":
|
|
6088
|
-
"alignment-outlined":
|
|
6089
|
-
"all-caps":
|
|
6090
|
-
"arrow-down":
|
|
6091
|
-
"arrow-downwards":
|
|
6092
|
-
"arrow-left":
|
|
6093
|
-
"arrow-leftwards":
|
|
6094
|
-
"arrow-right":
|
|
6095
|
-
"arrow-rightwards":
|
|
6096
|
-
"arrow-up":
|
|
6097
|
-
"arrow-upwards":
|
|
6098
|
-
"at-sign":
|
|
6099
|
-
"bell-active-outlined":
|
|
6100
|
-
"bell-outlined":
|
|
6101
|
-
"bell-slash-outlined":
|
|
6102
|
-
"billing-outlined":
|
|
6103
|
-
"body-outlined":
|
|
6009
|
+
"adjustment-outlined": 59170,
|
|
6010
|
+
"alignment-2-outlined": 59171,
|
|
6011
|
+
"alignment-outlined": 59172,
|
|
6012
|
+
"all-caps": 59173,
|
|
6013
|
+
"arrow-down": 59174,
|
|
6014
|
+
"arrow-downwards": 59175,
|
|
6015
|
+
"arrow-left": 59176,
|
|
6016
|
+
"arrow-leftwards": 59177,
|
|
6017
|
+
"arrow-right": 59178,
|
|
6018
|
+
"arrow-rightwards": 59179,
|
|
6019
|
+
"arrow-up": 59180,
|
|
6020
|
+
"arrow-upwards": 59181,
|
|
6021
|
+
"at-sign": 59182,
|
|
6022
|
+
"bell-active-outlined": 59183,
|
|
6023
|
+
"bell-outlined": 59184,
|
|
6024
|
+
"bell-slash-outlined": 59185,
|
|
6025
|
+
"billing-outlined": 59186,
|
|
6026
|
+
"body-outlined": 59187,
|
|
6104
6027
|
bold: bold,
|
|
6105
|
-
"bookmark-added-outlined":
|
|
6106
|
-
"bookmark-outlined":
|
|
6107
|
-
"box-check-outlined":
|
|
6108
|
-
"box-outlined":
|
|
6109
|
-
"bullet-points":
|
|
6110
|
-
"cake-outlined":
|
|
6111
|
-
"calendar-dates-outlined":
|
|
6112
|
-
"calendar-star-outlined":
|
|
6113
|
-
"camera-outlined":
|
|
6028
|
+
"bookmark-added-outlined": 59189,
|
|
6029
|
+
"bookmark-outlined": 59190,
|
|
6030
|
+
"box-check-outlined": 59191,
|
|
6031
|
+
"box-outlined": 59192,
|
|
6032
|
+
"bullet-points": 59193,
|
|
6033
|
+
"cake-outlined": 59194,
|
|
6034
|
+
"calendar-dates-outlined": 59195,
|
|
6035
|
+
"calendar-star-outlined": 59196,
|
|
6036
|
+
"camera-outlined": 59197,
|
|
6114
6037
|
cancel: cancel,
|
|
6115
|
-
"chat-bubble-outlined":
|
|
6116
|
-
"chat-unread-outlined":
|
|
6038
|
+
"chat-bubble-outlined": 59199,
|
|
6039
|
+
"chat-unread-outlined": 59200,
|
|
6117
6040
|
checkmark: checkmark,
|
|
6118
|
-
"circle-add-outlined":
|
|
6119
|
-
"circle-cancel-outlined":
|
|
6120
|
-
"circle-down-outlined":
|
|
6121
|
-
"circle-info-outlined":
|
|
6122
|
-
"circle-left-outlined":
|
|
6123
|
-
"circle-ok-outlined":
|
|
6124
|
-
"circle-question-outlined":
|
|
6125
|
-
"circle-remove-outlined":
|
|
6126
|
-
"circle-right-outlined":
|
|
6127
|
-
"circle-up-outlined":
|
|
6128
|
-
"circle-warning-outlined":
|
|
6129
|
-
"clock-2-outlined":
|
|
6130
|
-
"clock-outlined":
|
|
6131
|
-
"cog-outlined":
|
|
6132
|
-
"coin-outlined":
|
|
6133
|
-
"comment-outlined":
|
|
6134
|
-
"contacts-outlined":
|
|
6135
|
-
"credit-card-outlined":
|
|
6136
|
-
"cup-outlined":
|
|
6137
|
-
"direction-arrows-outlined":
|
|
6138
|
-
"directory-outlined":
|
|
6139
|
-
"document-outlined":
|
|
6140
|
-
"dollar-card-outlined":
|
|
6141
|
-
"dollar-coin-shine-outlined":
|
|
6142
|
-
"dollar-sign":
|
|
6143
|
-
"double-buildings-outlined":
|
|
6144
|
-
"double-left-arrows":
|
|
6145
|
-
"double-right-arrows":
|
|
6146
|
-
"download-outlined":
|
|
6147
|
-
"edit-template-outlined":
|
|
6148
|
-
"email-outlined":
|
|
6149
|
-
"enter-arrow":
|
|
6150
|
-
"envelope-outlined":
|
|
6151
|
-
"expense-outlined":
|
|
6152
|
-
"explore-outlined":
|
|
6153
|
-
"external-link":
|
|
6154
|
-
"eye-invisible-outlined":
|
|
6155
|
-
"eye-outlined":
|
|
6156
|
-
"face-id":
|
|
6157
|
-
"face-meh-outlined":
|
|
6158
|
-
"face-open-smiley-outlined":
|
|
6159
|
-
"face-sad-outlined":
|
|
6160
|
-
"face-smiley-outlined":
|
|
6161
|
-
"feed-outlined":
|
|
6162
|
-
"file-certified-outlined":
|
|
6163
|
-
"file-clone-outlined":
|
|
6164
|
-
"file-copy-outlined":
|
|
6165
|
-
"file-dispose-outlined":
|
|
6166
|
-
"file-dollar-outlined":
|
|
6167
|
-
"file-download-outlined":
|
|
6168
|
-
"file-export-outlined":
|
|
6169
|
-
"file-lock-outlined":
|
|
6170
|
-
"file-outlined":
|
|
6171
|
-
"file-search-outlined":
|
|
6172
|
-
"file-secured-outlined":
|
|
6173
|
-
"file-verified-outlined":
|
|
6174
|
-
"filter-outlined":
|
|
6175
|
-
"folder-outlined":
|
|
6176
|
-
"folder-user-outlined":
|
|
6177
|
-
"funnel-filter-outline":
|
|
6178
|
-
"graph-outlined":
|
|
6179
|
-
"hand-holding-user-outlined":
|
|
6180
|
-
"happy-sun-outlined":
|
|
6181
|
-
"health-bag-outlined":
|
|
6182
|
-
"heart-outlined":
|
|
6183
|
-
"home-active-outlined":
|
|
6184
|
-
"home-outlined":
|
|
6185
|
-
"id-card-outlined":
|
|
6186
|
-
"image-outlined":
|
|
6187
|
-
"import-outlined":
|
|
6188
|
-
"instapay-outlined":
|
|
6041
|
+
"circle-add-outlined": 59202,
|
|
6042
|
+
"circle-cancel-outlined": 59203,
|
|
6043
|
+
"circle-down-outlined": 59204,
|
|
6044
|
+
"circle-info-outlined": 59205,
|
|
6045
|
+
"circle-left-outlined": 59206,
|
|
6046
|
+
"circle-ok-outlined": 59207,
|
|
6047
|
+
"circle-question-outlined": 59208,
|
|
6048
|
+
"circle-remove-outlined": 59209,
|
|
6049
|
+
"circle-right-outlined": 59210,
|
|
6050
|
+
"circle-up-outlined": 59211,
|
|
6051
|
+
"circle-warning-outlined": 59212,
|
|
6052
|
+
"clock-2-outlined": 59213,
|
|
6053
|
+
"clock-outlined": 59214,
|
|
6054
|
+
"cog-outlined": 59215,
|
|
6055
|
+
"coin-outlined": 59216,
|
|
6056
|
+
"comment-outlined": 59217,
|
|
6057
|
+
"contacts-outlined": 59218,
|
|
6058
|
+
"credit-card-outlined": 59219,
|
|
6059
|
+
"cup-outlined": 59220,
|
|
6060
|
+
"direction-arrows-outlined": 59221,
|
|
6061
|
+
"directory-outlined": 59222,
|
|
6062
|
+
"document-outlined": 59223,
|
|
6063
|
+
"dollar-card-outlined": 59224,
|
|
6064
|
+
"dollar-coin-shine-outlined": 59225,
|
|
6065
|
+
"dollar-sign": 59226,
|
|
6066
|
+
"double-buildings-outlined": 59227,
|
|
6067
|
+
"double-left-arrows": 59228,
|
|
6068
|
+
"double-right-arrows": 59229,
|
|
6069
|
+
"download-outlined": 59230,
|
|
6070
|
+
"edit-template-outlined": 59231,
|
|
6071
|
+
"email-outlined": 59232,
|
|
6072
|
+
"enter-arrow": 59233,
|
|
6073
|
+
"envelope-outlined": 59234,
|
|
6074
|
+
"expense-outlined": 59235,
|
|
6075
|
+
"explore-outlined": 59236,
|
|
6076
|
+
"external-link": 59237,
|
|
6077
|
+
"eye-invisible-outlined": 59238,
|
|
6078
|
+
"eye-outlined": 59239,
|
|
6079
|
+
"face-id": 59240,
|
|
6080
|
+
"face-meh-outlined": 59241,
|
|
6081
|
+
"face-open-smiley-outlined": 59242,
|
|
6082
|
+
"face-sad-outlined": 59243,
|
|
6083
|
+
"face-smiley-outlined": 59244,
|
|
6084
|
+
"feed-outlined": 59245,
|
|
6085
|
+
"file-certified-outlined": 59246,
|
|
6086
|
+
"file-clone-outlined": 59247,
|
|
6087
|
+
"file-copy-outlined": 59248,
|
|
6088
|
+
"file-dispose-outlined": 59249,
|
|
6089
|
+
"file-dollar-outlined": 59250,
|
|
6090
|
+
"file-download-outlined": 59251,
|
|
6091
|
+
"file-export-outlined": 59252,
|
|
6092
|
+
"file-lock-outlined": 59253,
|
|
6093
|
+
"file-outlined": 59254,
|
|
6094
|
+
"file-search-outlined": 59255,
|
|
6095
|
+
"file-secured-outlined": 59256,
|
|
6096
|
+
"file-verified-outlined": 59257,
|
|
6097
|
+
"filter-outlined": 59258,
|
|
6098
|
+
"folder-outlined": 59259,
|
|
6099
|
+
"folder-user-outlined": 59260,
|
|
6100
|
+
"funnel-filter-outline": 59261,
|
|
6101
|
+
"graph-outlined": 59262,
|
|
6102
|
+
"hand-holding-user-outlined": 59263,
|
|
6103
|
+
"happy-sun-outlined": 59264,
|
|
6104
|
+
"health-bag-outlined": 59265,
|
|
6105
|
+
"heart-outlined": 59266,
|
|
6106
|
+
"home-active-outlined": 59267,
|
|
6107
|
+
"home-outlined": 59268,
|
|
6108
|
+
"id-card-outlined": 59269,
|
|
6109
|
+
"image-outlined": 59270,
|
|
6110
|
+
"import-outlined": 59271,
|
|
6111
|
+
"instapay-outlined": 59272,
|
|
6189
6112
|
italic: italic,
|
|
6190
|
-
"link-1":
|
|
6191
|
-
"link-2":
|
|
6192
|
-
"list-outlined":
|
|
6193
|
-
"live-help-outlined":
|
|
6194
|
-
"location-outlined":
|
|
6195
|
-
"lock-outlined":
|
|
6196
|
-
"locked-file-outlined":
|
|
6197
|
-
"log-out":
|
|
6198
|
-
"media-content-outlined":
|
|
6199
|
-
"menu-close":
|
|
6200
|
-
"menu-expand":
|
|
6201
|
-
"menu-fold-outlined":
|
|
6202
|
-
"menu-unfold-outlined":
|
|
6203
|
-
"moneybag-outlined":
|
|
6204
|
-
"moon-outlined":
|
|
6205
|
-
"more-horizontal":
|
|
6206
|
-
"more-vertical":
|
|
6207
|
-
"multiple-folders-outlined":
|
|
6208
|
-
"multiple-users-outlined":
|
|
6209
|
-
"near-me-outlined":
|
|
6210
|
-
"node-outlined":
|
|
6211
|
-
"number-points":
|
|
6113
|
+
"link-1": 59274,
|
|
6114
|
+
"link-2": 59275,
|
|
6115
|
+
"list-outlined": 59276,
|
|
6116
|
+
"live-help-outlined": 59277,
|
|
6117
|
+
"location-outlined": 59278,
|
|
6118
|
+
"lock-outlined": 59279,
|
|
6119
|
+
"locked-file-outlined": 59280,
|
|
6120
|
+
"log-out": 59281,
|
|
6121
|
+
"media-content-outlined": 59282,
|
|
6122
|
+
"menu-close": 59283,
|
|
6123
|
+
"menu-expand": 59284,
|
|
6124
|
+
"menu-fold-outlined": 59285,
|
|
6125
|
+
"menu-unfold-outlined": 59286,
|
|
6126
|
+
"moneybag-outlined": 59287,
|
|
6127
|
+
"moon-outlined": 59288,
|
|
6128
|
+
"more-horizontal": 59289,
|
|
6129
|
+
"more-vertical": 59290,
|
|
6130
|
+
"multiple-folders-outlined": 59291,
|
|
6131
|
+
"multiple-users-outlined": 59292,
|
|
6132
|
+
"near-me-outlined": 59293,
|
|
6133
|
+
"node-outlined": 59294,
|
|
6134
|
+
"number-points": 59295,
|
|
6212
6135
|
number: number,
|
|
6213
|
-
"payment-summary-outlined":
|
|
6214
|
-
"payslip-outlined":
|
|
6215
|
-
"pencil-outlined":
|
|
6136
|
+
"payment-summary-outlined": 59297,
|
|
6137
|
+
"payslip-outlined": 59298,
|
|
6138
|
+
"pencil-outlined": 59299,
|
|
6216
6139
|
percentage: percentage,
|
|
6217
|
-
"phone-outlined":
|
|
6218
|
-
"piggy-bank-outlined":
|
|
6219
|
-
"plane-outlined":
|
|
6220
|
-
"play-circle-outlined":
|
|
6221
|
-
"print-outlined":
|
|
6222
|
-
"qr-code-outlined":
|
|
6223
|
-
"re-assign":
|
|
6140
|
+
"phone-outlined": 59301,
|
|
6141
|
+
"piggy-bank-outlined": 59302,
|
|
6142
|
+
"plane-outlined": 59303,
|
|
6143
|
+
"play-circle-outlined": 59304,
|
|
6144
|
+
"print-outlined": 59305,
|
|
6145
|
+
"qr-code-outlined": 59306,
|
|
6146
|
+
"re-assign": 59307,
|
|
6224
6147
|
redeem: redeem,
|
|
6225
6148
|
refresh: refresh,
|
|
6226
6149
|
remove: remove,
|
|
6227
|
-
"reply-outlined":
|
|
6150
|
+
"reply-outlined": 59311,
|
|
6228
6151
|
restart: restart,
|
|
6229
|
-
"return-arrow":
|
|
6230
|
-
"rostering-outlined":
|
|
6231
|
-
"save-outlined":
|
|
6232
|
-
"schedule-outlined":
|
|
6233
|
-
"search-outlined":
|
|
6234
|
-
"search-secured-outlined":
|
|
6235
|
-
"send-outlined":
|
|
6236
|
-
"share-1":
|
|
6237
|
-
"share-2":
|
|
6238
|
-
"share-outlined":
|
|
6239
|
-
"single-down-arrow":
|
|
6240
|
-
"single-left-arrow":
|
|
6241
|
-
"single-right-arrow":
|
|
6242
|
-
"single-up-arrow":
|
|
6243
|
-
"speaker-active-outlined":
|
|
6244
|
-
"speaker-outlined":
|
|
6245
|
-
"star-outlined":
|
|
6246
|
-
"stopwatch-outlined":
|
|
6152
|
+
"return-arrow": 59313,
|
|
6153
|
+
"rostering-outlined": 59314,
|
|
6154
|
+
"save-outlined": 59315,
|
|
6155
|
+
"schedule-outlined": 59316,
|
|
6156
|
+
"search-outlined": 59317,
|
|
6157
|
+
"search-secured-outlined": 59318,
|
|
6158
|
+
"send-outlined": 59319,
|
|
6159
|
+
"share-1": 59320,
|
|
6160
|
+
"share-2": 59321,
|
|
6161
|
+
"share-outlined": 59322,
|
|
6162
|
+
"single-down-arrow": 59323,
|
|
6163
|
+
"single-left-arrow": 59324,
|
|
6164
|
+
"single-right-arrow": 59325,
|
|
6165
|
+
"single-up-arrow": 59326,
|
|
6166
|
+
"speaker-active-outlined": 59327,
|
|
6167
|
+
"speaker-outlined": 59328,
|
|
6168
|
+
"star-outlined": 59329,
|
|
6169
|
+
"stopwatch-outlined": 59330,
|
|
6247
6170
|
strikethrough: strikethrough,
|
|
6248
|
-
"suitcase-clock-outlined":
|
|
6249
|
-
"suitcase-outlined":
|
|
6250
|
-
"survey-outlined":
|
|
6251
|
-
"switch-outlined":
|
|
6171
|
+
"suitcase-clock-outlined": 59332,
|
|
6172
|
+
"suitcase-outlined": 59333,
|
|
6173
|
+
"survey-outlined": 59334,
|
|
6174
|
+
"switch-outlined": 59335,
|
|
6252
6175
|
sync: sync,
|
|
6253
|
-
"target-outlined":
|
|
6254
|
-
"timesheet-outlined":
|
|
6176
|
+
"target-outlined": 59337,
|
|
6177
|
+
"timesheet-outlined": 59338,
|
|
6255
6178
|
transfer: transfer,
|
|
6256
|
-
"trash-bin-outlined":
|
|
6257
|
-
"umbrela-outlined":
|
|
6179
|
+
"trash-bin-outlined": 59340,
|
|
6180
|
+
"umbrela-outlined": 59341,
|
|
6258
6181
|
unavailable: unavailable,
|
|
6259
6182
|
underline: underline,
|
|
6260
|
-
"unlock-outlined":
|
|
6261
|
-
"upload-outlined":
|
|
6262
|
-
"user-circle-outlined":
|
|
6263
|
-
"user-gear-outlined":
|
|
6264
|
-
"user-outlined":
|
|
6265
|
-
"user-rectangle-outlined":
|
|
6266
|
-
"video-1-outlined":
|
|
6267
|
-
"video-2-outlined":
|
|
6268
|
-
"wallet-outlined":
|
|
6183
|
+
"unlock-outlined": 59344,
|
|
6184
|
+
"upload-outlined": 59345,
|
|
6185
|
+
"user-circle-outlined": 59346,
|
|
6186
|
+
"user-gear-outlined": 59347,
|
|
6187
|
+
"user-outlined": 59348,
|
|
6188
|
+
"user-rectangle-outlined": 59349,
|
|
6189
|
+
"video-1-outlined": 59350,
|
|
6190
|
+
"video-2-outlined": 59351,
|
|
6191
|
+
"wallet-outlined": 59352
|
|
6269
6192
|
};
|
|
6270
6193
|
|
|
6271
6194
|
var HeroIcon = reactNativeVectorIcons.createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
|
|
@@ -6414,11 +6337,9 @@ var Accordion = function Accordion(_ref) {
|
|
|
6414
6337
|
|
|
6415
6338
|
var Container$1 = index$a(reactNative.View)(function (_ref) {
|
|
6416
6339
|
var theme = _ref.theme,
|
|
6417
|
-
_ref$themeVariant = _ref.themeVariant,
|
|
6418
|
-
themeVariant = _ref$themeVariant === void 0 ? 'default' : _ref$themeVariant,
|
|
6419
6340
|
themeIntent = _ref.themeIntent;
|
|
6420
6341
|
return {
|
|
6421
|
-
borderRadius:
|
|
6342
|
+
borderRadius: theme.__hd__.alert.radii["default"],
|
|
6422
6343
|
backgroundColor: theme.__hd__.alert.colors[themeIntent],
|
|
6423
6344
|
minHeight: theme.__hd__.alert.sizes.height,
|
|
6424
6345
|
flexDirection: 'row'
|
|
@@ -6487,13 +6408,9 @@ var Alert = function Alert(_ref2) {
|
|
|
6487
6408
|
_ref2$intent = _ref2.intent,
|
|
6488
6409
|
intent = _ref2$intent === void 0 ? 'info' : _ref2$intent,
|
|
6489
6410
|
onClose = _ref2.onClose,
|
|
6490
|
-
_variant = _ref2.variant,
|
|
6491
6411
|
style = _ref2.style,
|
|
6492
6412
|
testID = _ref2.testID;
|
|
6493
|
-
var variant = _variant === undefined ? 'default' : _variant;
|
|
6494
|
-
useDeprecation("Alert's variant prop will be removed in the next major release. Rounded will be the only variant available.", _variant !== undefined);
|
|
6495
6413
|
return /*#__PURE__*/React__default["default"].createElement(Container$1, {
|
|
6496
|
-
themeVariant: variant,
|
|
6497
6414
|
themeIntent: intent,
|
|
6498
6415
|
style: style,
|
|
6499
6416
|
testID: testID
|
|
@@ -7101,7 +7018,6 @@ var StyledFooter = index$a(reactNative.View)(function (_ref4) {
|
|
|
7101
7018
|
return {
|
|
7102
7019
|
paddingHorizontal: theme.__hd__.bottomSheet.space.footerHorizontalPadding,
|
|
7103
7020
|
paddingVertical: theme.__hd__.bottomSheet.space.footerVerticalPadding,
|
|
7104
|
-
minHeight: theme.__hd__.bottomSheet.sizes.sectionHeight,
|
|
7105
7021
|
alignItems: 'center',
|
|
7106
7022
|
justifyContent: 'flex-end',
|
|
7107
7023
|
flexDirection: 'row'
|
|
@@ -7236,28 +7152,6 @@ var LoadingIndicator = function LoadingIndicator(_ref2) {
|
|
|
7236
7152
|
}, nativeProps), Array.from(new Array(count), renderLoadingDot, themeVariant));
|
|
7237
7153
|
};
|
|
7238
7154
|
|
|
7239
|
-
var genBasicTransparentContainerStyles = function genBasicTransparentContainerStyles(theme, disabled) {
|
|
7240
|
-
var borderColorStyling = function borderColorStyling() {
|
|
7241
|
-
if (disabled) {
|
|
7242
|
-
return {
|
|
7243
|
-
borderColor: theme.__hd__.button.colors.disabledBorder
|
|
7244
|
-
};
|
|
7245
|
-
}
|
|
7246
|
-
return {
|
|
7247
|
-
borderColor: theme.__hd__.button.colors.invertedText
|
|
7248
|
-
};
|
|
7249
|
-
};
|
|
7250
|
-
return _objectSpread2({
|
|
7251
|
-
width: '100%',
|
|
7252
|
-
flexDirection: 'row',
|
|
7253
|
-
justifyContent: 'center',
|
|
7254
|
-
alignItems: 'center',
|
|
7255
|
-
padding: theme.__hd__.button.space.buttonPadding - theme.__hd__.button.borderWidth["default"],
|
|
7256
|
-
borderWidth: theme.__hd__.button.borderWidth["default"],
|
|
7257
|
-
borderRadius: theme.__hd__.button.radii["default"],
|
|
7258
|
-
backgroundColor: 'transparent'
|
|
7259
|
-
}, borderColorStyling());
|
|
7260
|
-
};
|
|
7261
7155
|
var genFilledContainerStyles = function genFilledContainerStyles(theme, intent, disabled) {
|
|
7262
7156
|
var backgroundColorStyling = function backgroundColorStyling() {
|
|
7263
7157
|
if (disabled) {
|
|
@@ -7338,8 +7232,6 @@ var StyledButtonContainer = index$a(reactNative.TouchableOpacity)(function (_ref
|
|
|
7338
7232
|
themeVariant = _ref.themeVariant,
|
|
7339
7233
|
theme = _ref.theme;
|
|
7340
7234
|
switch (themeVariant) {
|
|
7341
|
-
case 'basic-transparent':
|
|
7342
|
-
return genBasicTransparentContainerStyles(theme, disabled);
|
|
7343
7235
|
case 'filled-primary':
|
|
7344
7236
|
return genFilledContainerStyles(theme, 'primary', disabled);
|
|
7345
7237
|
case 'filled-secondary':
|
|
@@ -7370,12 +7262,6 @@ var StyledButtonText = index$a(Typography.Text)(function (_ref2) {
|
|
|
7370
7262
|
theme = _ref2.theme;
|
|
7371
7263
|
var themeStyling = function themeStyling() {
|
|
7372
7264
|
switch (themeVariant) {
|
|
7373
|
-
case 'basic-transparent':
|
|
7374
|
-
return {
|
|
7375
|
-
fontSize: theme.__hd__.button.fontSize["default"],
|
|
7376
|
-
lineHeight: theme.__hd__.button.lineHeight["default"],
|
|
7377
|
-
color: disabled ? theme.__hd__.button.colors.disabledText : theme.__hd__.button.colors.invertedText
|
|
7378
|
-
};
|
|
7379
7265
|
case 'filled-primary':
|
|
7380
7266
|
case 'filled-secondary':
|
|
7381
7267
|
case 'filled-danger':
|
|
@@ -7424,10 +7310,6 @@ var StyledButtonIcon = index$a(Icon)(function (_ref4) {
|
|
|
7424
7310
|
theme = _ref4.theme;
|
|
7425
7311
|
var themeStyling = function themeStyling() {
|
|
7426
7312
|
switch (themeVariant) {
|
|
7427
|
-
case 'basic-transparent':
|
|
7428
|
-
return {
|
|
7429
|
-
color: disabled ? theme.__hd__.button.colors.disabledText : theme.__hd__.button.colors.invertedText
|
|
7430
|
-
};
|
|
7431
7313
|
case 'filled-primary':
|
|
7432
7314
|
case 'filled-secondary':
|
|
7433
7315
|
case 'filled-danger':
|
|
@@ -7470,8 +7352,6 @@ var TEXT_VARIANTS = {
|
|
|
7470
7352
|
};
|
|
7471
7353
|
var getThemeVariant = function getThemeVariant(variant, intent) {
|
|
7472
7354
|
switch (variant) {
|
|
7473
|
-
case 'basic-transparent':
|
|
7474
|
-
return variant;
|
|
7475
7355
|
case 'filled':
|
|
7476
7356
|
return FILLED_VARIANTS[intent];
|
|
7477
7357
|
case 'outlined':
|
|
@@ -7498,7 +7378,6 @@ var Button = function Button(_ref) {
|
|
|
7498
7378
|
_ref$variant = _ref.variant,
|
|
7499
7379
|
variant = _ref$variant === void 0 ? 'filled' : _ref$variant;
|
|
7500
7380
|
var themeVariant = getThemeVariant(variant, intent);
|
|
7501
|
-
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');
|
|
7502
7381
|
return /*#__PURE__*/React__default["default"].createElement(StyledButtonContainer, {
|
|
7503
7382
|
accessibilityHint: accessibilityHint,
|
|
7504
7383
|
accessibilityLabel: accessibilityLabel,
|
|
@@ -10547,41 +10426,23 @@ var DataCard = function DataCard(_ref) {
|
|
|
10547
10426
|
};
|
|
10548
10427
|
|
|
10549
10428
|
var StyledCard = index$a(reactNative.View)(function (_ref) {
|
|
10550
|
-
var
|
|
10551
|
-
theme = _ref.theme,
|
|
10429
|
+
var theme = _ref.theme,
|
|
10552
10430
|
themeIntent = _ref.themeIntent;
|
|
10553
|
-
return _objectSpread2(_objectSpread2(
|
|
10554
|
-
flexDirection: 'row'
|
|
10555
|
-
}), themeIntent !== undefined && {
|
|
10431
|
+
return _objectSpread2(_objectSpread2({}, themeIntent !== undefined && {
|
|
10556
10432
|
backgroundColor: theme.__hd__.card.colors[themeIntent]
|
|
10557
10433
|
}), {}, {
|
|
10558
10434
|
borderRadius: theme.__hd__.card.radii["default"],
|
|
10559
10435
|
overflow: 'hidden'
|
|
10560
10436
|
});
|
|
10561
10437
|
});
|
|
10562
|
-
// DEPRECATED
|
|
10563
|
-
var LeftDataCard = index$a(reactNative.View)(function (_ref2) {
|
|
10564
|
-
var theme = _ref2.theme;
|
|
10565
|
-
return {
|
|
10566
|
-
backgroundColor: theme.__hd__.card.colors.dataCardIndicator,
|
|
10567
|
-
width: theme.__hd__.card.sizes.indicatorWidth,
|
|
10568
|
-
height: '100%'
|
|
10569
|
-
};
|
|
10570
|
-
});
|
|
10571
10438
|
|
|
10572
|
-
var _excluded$8 = ["
|
|
10439
|
+
var _excluded$8 = ["intent", "children"];
|
|
10573
10440
|
var Card = function Card(_ref) {
|
|
10574
|
-
var
|
|
10575
|
-
intent = _ref.intent,
|
|
10441
|
+
var intent = _ref.intent,
|
|
10576
10442
|
children = _ref.children,
|
|
10577
10443
|
nativeProps = _objectWithoutProperties(_ref, _excluded$8);
|
|
10578
|
-
var variant = _variant === undefined ? 'basic' : _variant;
|
|
10579
|
-
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);
|
|
10580
10444
|
return /*#__PURE__*/React__default["default"].createElement(StyledCard, _extends$1({}, nativeProps, {
|
|
10581
|
-
themeVariant: variant,
|
|
10582
10445
|
themeIntent: intent
|
|
10583
|
-
}), variant === 'data' && /*#__PURE__*/React__default["default"].createElement(LeftDataCard, {
|
|
10584
|
-
testID: "data-card-indicator"
|
|
10585
10446
|
}), children);
|
|
10586
10447
|
};
|
|
10587
10448
|
var index$8 = Object.assign(Card, {
|
|
@@ -10832,6 +10693,9 @@ var getVariant$1 = function getVariant(_ref) {
|
|
|
10832
10693
|
}
|
|
10833
10694
|
return 'default';
|
|
10834
10695
|
};
|
|
10696
|
+
// Fix issue: Placeholder is not shown on iOS when multiline is true
|
|
10697
|
+
// https://github.com/callstack/react-native-paper/pull/3331
|
|
10698
|
+
var EMPTY_PLACEHOLDER_VALUE = ' ';
|
|
10835
10699
|
var TextInput = function TextInput(_ref2) {
|
|
10836
10700
|
var _ref3;
|
|
10837
10701
|
var label = _ref2.label,
|
|
@@ -10917,7 +10781,7 @@ var TextInput = function TextInput(_ref2) {
|
|
|
10917
10781
|
(_nativeProps$onChange = nativeProps.onChangeText) === null || _nativeProps$onChange === void 0 ? void 0 : _nativeProps$onChange.call(nativeProps, text);
|
|
10918
10782
|
},
|
|
10919
10783
|
defaultValue: defaultValue,
|
|
10920
|
-
placeholder: isFocused || label === undefined ? nativeProps.placeholder :
|
|
10784
|
+
placeholder: isFocused || label === undefined ? nativeProps.placeholder : EMPTY_PLACEHOLDER_VALUE
|
|
10921
10785
|
});
|
|
10922
10786
|
return /*#__PURE__*/React__default["default"].createElement(StyledContainer$3, {
|
|
10923
10787
|
style: style,
|
|
@@ -10972,6 +10836,8 @@ var TextInput = function TextInput(_ref2) {
|
|
|
10972
10836
|
|
|
10973
10837
|
var DatePickerAndroid = function DatePickerAndroid(_ref) {
|
|
10974
10838
|
var value = _ref.value,
|
|
10839
|
+
minDate = _ref.minDate,
|
|
10840
|
+
maxDate = _ref.maxDate,
|
|
10975
10841
|
label = _ref.label,
|
|
10976
10842
|
placeholder = _ref.placeholder,
|
|
10977
10843
|
_onChange = _ref.onChange,
|
|
@@ -11013,6 +10879,8 @@ var DatePickerAndroid = function DatePickerAndroid(_ref) {
|
|
|
11013
10879
|
testID: "datePickerAndroid",
|
|
11014
10880
|
mode: "date",
|
|
11015
10881
|
value: pickerInitValue,
|
|
10882
|
+
minimumDate: minDate,
|
|
10883
|
+
maximumDate: maxDate,
|
|
11016
10884
|
display: "default",
|
|
11017
10885
|
onChange: function onChange(_, date) {
|
|
11018
10886
|
setOpen(false);
|
|
@@ -11032,6 +10900,8 @@ var StyledPickerWrapper$1 = index$a(reactNative.View)(function (_ref) {
|
|
|
11032
10900
|
|
|
11033
10901
|
var DatePickerIOS = function DatePickerIOS(_ref) {
|
|
11034
10902
|
var value = _ref.value,
|
|
10903
|
+
minDate = _ref.minDate,
|
|
10904
|
+
maxDate = _ref.maxDate,
|
|
11035
10905
|
label = _ref.label,
|
|
11036
10906
|
placeholder = _ref.placeholder,
|
|
11037
10907
|
onChange = _ref.onChange,
|
|
@@ -11079,21 +10949,21 @@ var DatePickerIOS = function DatePickerIOS(_ref) {
|
|
|
11079
10949
|
return setOpen(false);
|
|
11080
10950
|
},
|
|
11081
10951
|
header: label,
|
|
11082
|
-
footer: /*#__PURE__*/React__default["default"].createElement(
|
|
10952
|
+
footer: /*#__PURE__*/React__default["default"].createElement(CompoundButton, {
|
|
10953
|
+
variant: "text",
|
|
10954
|
+
text: confirmLabel,
|
|
11083
10955
|
onPress: function onPress() {
|
|
11084
10956
|
if (selectingDate) {
|
|
11085
10957
|
onChange(selectingDate);
|
|
11086
10958
|
}
|
|
11087
10959
|
setOpen(false);
|
|
11088
10960
|
}
|
|
11089
|
-
}
|
|
11090
|
-
fontSize: "large",
|
|
11091
|
-
fontWeight: "semi-bold",
|
|
11092
|
-
intent: "primary"
|
|
11093
|
-
}, confirmLabel))
|
|
10961
|
+
})
|
|
11094
10962
|
}, /*#__PURE__*/React__default["default"].createElement(StyledPickerWrapper$1, null, /*#__PURE__*/React__default["default"].createElement(DateTimePicker__default["default"], {
|
|
11095
10963
|
testID: "datePickerIOS",
|
|
11096
10964
|
value: selectingDate,
|
|
10965
|
+
minimumDate: minDate,
|
|
10966
|
+
maximumDate: maxDate,
|
|
11097
10967
|
mode: "date",
|
|
11098
10968
|
onChange: function onChange(_, date) {
|
|
11099
10969
|
if (date) {
|
|
@@ -11204,7 +11074,7 @@ var calculateSnapPointsData = function calculateSnapPointsData(minimumHeight, he
|
|
|
11204
11074
|
var uniqSnapPointOffsetValues = Array.from(new Set([].concat(_toConsumableArray(snapPointsOffsetValues), [0])));
|
|
11205
11075
|
return {
|
|
11206
11076
|
list: uniqSnapPointOffsetValues,
|
|
11207
|
-
minHeightOffset: Math.max.apply(Math,
|
|
11077
|
+
minHeightOffset: Math.max.apply(Math, uniqSnapPointOffsetValues),
|
|
11208
11078
|
maxHeightOffset: 0 // Max height
|
|
11209
11079
|
};
|
|
11210
11080
|
};
|
|
@@ -12855,48 +12725,14 @@ var SectionHeading = function SectionHeading(_ref) {
|
|
|
12855
12725
|
}, text)), rightChildren);
|
|
12856
12726
|
};
|
|
12857
12727
|
|
|
12858
|
-
var SectionSpacer = index$a(reactNative.View)(function (_ref) {
|
|
12859
|
-
var theme = _ref.theme;
|
|
12860
|
-
return {
|
|
12861
|
-
marginTop: theme.__hd__.select.space.sectionSpacing
|
|
12862
|
-
};
|
|
12863
|
-
});
|
|
12864
|
-
var OptionSpacer = index$a(reactNative.View)(function (_ref2) {
|
|
12865
|
-
var theme = _ref2.theme;
|
|
12866
|
-
return {
|
|
12867
|
-
marginTop: theme.__hd__.select.space.optionSpacing
|
|
12868
|
-
};
|
|
12869
|
-
});
|
|
12870
|
-
var FooterText = index$a(Typography.Text)(function (_ref3) {
|
|
12871
|
-
var theme = _ref3.theme;
|
|
12872
|
-
return {
|
|
12873
|
-
color: theme.__hd__.select.colors.footerText
|
|
12874
|
-
};
|
|
12875
|
-
});
|
|
12876
|
-
var StyledSearchBar = index$a(reactNative.View)(function (_ref4) {
|
|
12877
|
-
var theme = _ref4.theme;
|
|
12878
|
-
return {
|
|
12879
|
-
marginTop: theme.__hd__.select.space.searchBarMarginTopSpacing,
|
|
12880
|
-
paddingHorizontal: theme.__hd__.select.space.searchBarHorizontalSpacing,
|
|
12881
|
-
paddingBottom: theme.__hd__.select.space.searchBarBottomSpacing
|
|
12882
|
-
};
|
|
12883
|
-
});
|
|
12884
|
-
var StyledSectionList = index$a(reactNative.SectionList)(function (_ref5) {
|
|
12885
|
-
var theme = _ref5.theme;
|
|
12886
|
-
return {
|
|
12887
|
-
paddingHorizontal: theme.__hd__.select.space.optionListHorizontalPadding
|
|
12888
|
-
};
|
|
12889
|
-
});
|
|
12890
|
-
|
|
12891
12728
|
var Footer = function Footer(_ref) {
|
|
12892
12729
|
var label = _ref.label,
|
|
12893
12730
|
onPress = _ref.onPress;
|
|
12894
|
-
return /*#__PURE__*/React__default["default"].createElement(
|
|
12731
|
+
return /*#__PURE__*/React__default["default"].createElement(CompoundButton, {
|
|
12732
|
+
variant: "text",
|
|
12733
|
+
text: label,
|
|
12895
12734
|
onPress: onPress
|
|
12896
|
-
}
|
|
12897
|
-
fontSize: "large",
|
|
12898
|
-
fontWeight: "semi-bold"
|
|
12899
|
-
}, label));
|
|
12735
|
+
});
|
|
12900
12736
|
};
|
|
12901
12737
|
|
|
12902
12738
|
var isSections = function isSections(options) {
|
|
@@ -12961,6 +12797,33 @@ var useKeyboard = function useKeyboard() {
|
|
|
12961
12797
|
};
|
|
12962
12798
|
};
|
|
12963
12799
|
|
|
12800
|
+
var SectionSpacer = index$a(reactNative.View)(function (_ref) {
|
|
12801
|
+
var theme = _ref.theme;
|
|
12802
|
+
return {
|
|
12803
|
+
marginTop: theme.__hd__.select.space.sectionSpacing
|
|
12804
|
+
};
|
|
12805
|
+
});
|
|
12806
|
+
var OptionSpacer = index$a(reactNative.View)(function (_ref2) {
|
|
12807
|
+
var theme = _ref2.theme;
|
|
12808
|
+
return {
|
|
12809
|
+
marginTop: theme.__hd__.select.space.optionSpacing
|
|
12810
|
+
};
|
|
12811
|
+
});
|
|
12812
|
+
var StyledSearchBar = index$a(reactNative.View)(function (_ref3) {
|
|
12813
|
+
var theme = _ref3.theme;
|
|
12814
|
+
return {
|
|
12815
|
+
marginTop: theme.__hd__.select.space.searchBarMarginTopSpacing,
|
|
12816
|
+
paddingHorizontal: theme.__hd__.select.space.searchBarHorizontalSpacing,
|
|
12817
|
+
paddingBottom: theme.__hd__.select.space.searchBarBottomSpacing
|
|
12818
|
+
};
|
|
12819
|
+
});
|
|
12820
|
+
var StyledSectionList = index$a(reactNative.SectionList)(function (_ref4) {
|
|
12821
|
+
var theme = _ref4.theme;
|
|
12822
|
+
return {
|
|
12823
|
+
paddingHorizontal: theme.__hd__.select.space.optionListHorizontalPadding
|
|
12824
|
+
};
|
|
12825
|
+
});
|
|
12826
|
+
|
|
12964
12827
|
var BaseOptionList = function BaseOptionList(_ref) {
|
|
12965
12828
|
var keyExtractor = _ref.keyExtractor,
|
|
12966
12829
|
loading = _ref.loading,
|
|
@@ -13088,7 +12951,6 @@ function MultiSelect(_ref) {
|
|
|
13088
12951
|
loading = _ref$loading === void 0 ? false : _ref$loading,
|
|
13089
12952
|
inputProps = _ref.inputProps,
|
|
13090
12953
|
onConfirm = _ref.onConfirm,
|
|
13091
|
-
onDimiss = _ref.onDimiss,
|
|
13092
12954
|
onDismiss = _ref.onDismiss,
|
|
13093
12955
|
onEndReached = _ref.onEndReached,
|
|
13094
12956
|
onQueryChange = _ref.onQueryChange,
|
|
@@ -13102,7 +12964,6 @@ function MultiSelect(_ref) {
|
|
|
13102
12964
|
_ref$disabled = _ref.disabled,
|
|
13103
12965
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
13104
12966
|
required = _ref.required,
|
|
13105
|
-
numberOfLines = _ref.numberOfLines,
|
|
13106
12967
|
style = _ref.style,
|
|
13107
12968
|
testID = _ref.testID,
|
|
13108
12969
|
value = _ref.value;
|
|
@@ -13125,9 +12986,6 @@ function MultiSelect(_ref) {
|
|
|
13125
12986
|
}).map(function (opt) {
|
|
13126
12987
|
return opt.text;
|
|
13127
12988
|
}).join(', ');
|
|
13128
|
-
useDeprecation("Select's onDimiss is deprecated and will be removed in the next major release. Please use onDismiss instead.", onDimiss !== undefined);
|
|
13129
|
-
useDeprecation("Select's numberOfLines is deprecated and will be removed in the next major release. Please use inputProps.numberOfLines instead.", numberOfLines !== undefined);
|
|
13130
|
-
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);
|
|
13131
12989
|
React.useEffect(function () {
|
|
13132
12990
|
setSelectingValue(value);
|
|
13133
12991
|
}, [open]);
|
|
@@ -13139,9 +12997,7 @@ function MultiSelect(_ref) {
|
|
|
13139
12997
|
}
|
|
13140
12998
|
}, /*#__PURE__*/React__default["default"].createElement(reactNative.View, {
|
|
13141
12999
|
pointerEvents: "none"
|
|
13142
|
-
}, /*#__PURE__*/React__default["default"].createElement(TextInput, _extends$1({
|
|
13143
|
-
numberOfLines: numberOfLines
|
|
13144
|
-
}, inputProps, {
|
|
13000
|
+
}, /*#__PURE__*/React__default["default"].createElement(TextInput, _extends$1({}, inputProps, {
|
|
13145
13001
|
label: label,
|
|
13146
13002
|
value: displayedValue,
|
|
13147
13003
|
suffix: "arrow-down",
|
|
@@ -13161,7 +13017,7 @@ function MultiSelect(_ref) {
|
|
|
13161
13017
|
onRequestClose: function onRequestClose() {
|
|
13162
13018
|
return setOpen(false);
|
|
13163
13019
|
},
|
|
13164
|
-
onDismiss: onDismiss
|
|
13020
|
+
onDismiss: onDismiss,
|
|
13165
13021
|
header: label,
|
|
13166
13022
|
style: {
|
|
13167
13023
|
paddingBottom: isKeyboardVisible ? keyboardHeight : 0
|
|
@@ -13280,7 +13136,6 @@ var SingleSelect = function SingleSelect(_ref) {
|
|
|
13280
13136
|
loading = _ref$loading === void 0 ? false : _ref$loading,
|
|
13281
13137
|
inputProps = _ref.inputProps,
|
|
13282
13138
|
onConfirm = _ref.onConfirm,
|
|
13283
|
-
onDimiss = _ref.onDimiss,
|
|
13284
13139
|
onDismiss = _ref.onDismiss,
|
|
13285
13140
|
onEndReached = _ref.onEndReached,
|
|
13286
13141
|
onQueryChange = _ref.onQueryChange,
|
|
@@ -13294,7 +13149,6 @@ var SingleSelect = function SingleSelect(_ref) {
|
|
|
13294
13149
|
_ref$disabled = _ref.disabled,
|
|
13295
13150
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
13296
13151
|
required = _ref.required,
|
|
13297
|
-
numberOfLines = _ref.numberOfLines,
|
|
13298
13152
|
style = _ref.style,
|
|
13299
13153
|
testID = _ref.testID,
|
|
13300
13154
|
value = _ref.value;
|
|
@@ -13311,9 +13165,6 @@ var SingleSelect = function SingleSelect(_ref) {
|
|
|
13311
13165
|
var displayedValue = (_flatOptions$find = flatOptions.find(function (opt) {
|
|
13312
13166
|
return value === opt.value;
|
|
13313
13167
|
})) === null || _flatOptions$find === void 0 ? void 0 : _flatOptions$find.text;
|
|
13314
|
-
useDeprecation("Select's onDimiss is deprecated and will be removed in the next major release. Please use onDismiss instead.", onDimiss !== undefined);
|
|
13315
|
-
useDeprecation("Select's numberOfLines is deprecated and will be removed in the next major release. Please use inputProps.numberOfLines instead.", numberOfLines !== undefined);
|
|
13316
|
-
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);
|
|
13317
13168
|
return /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement(reactNative.View, {
|
|
13318
13169
|
pointerEvents: !editable || disabled || inputProps !== null && inputProps !== void 0 && inputProps.loading ? 'none' : 'auto'
|
|
13319
13170
|
}, /*#__PURE__*/React__default["default"].createElement(reactNative.TouchableOpacity, {
|
|
@@ -13322,9 +13173,7 @@ var SingleSelect = function SingleSelect(_ref) {
|
|
|
13322
13173
|
}
|
|
13323
13174
|
}, /*#__PURE__*/React__default["default"].createElement(reactNative.View, {
|
|
13324
13175
|
pointerEvents: "none"
|
|
13325
|
-
}, /*#__PURE__*/React__default["default"].createElement(TextInput, _extends$1({
|
|
13326
|
-
numberOfLines: numberOfLines
|
|
13327
|
-
}, inputProps, {
|
|
13176
|
+
}, /*#__PURE__*/React__default["default"].createElement(TextInput, _extends$1({}, inputProps, {
|
|
13328
13177
|
label: label,
|
|
13329
13178
|
value: displayedValue,
|
|
13330
13179
|
suffix: "arrow-down",
|
|
@@ -13344,7 +13193,7 @@ var SingleSelect = function SingleSelect(_ref) {
|
|
|
13344
13193
|
onRequestClose: function onRequestClose() {
|
|
13345
13194
|
return setOpen(false);
|
|
13346
13195
|
},
|
|
13347
|
-
onDismiss: onDismiss
|
|
13196
|
+
onDismiss: onDismiss,
|
|
13348
13197
|
header: label,
|
|
13349
13198
|
style: {
|
|
13350
13199
|
paddingBottom: isKeyboardVisible ? keyboardHeight : 0
|
|
@@ -13382,31 +13231,6 @@ var index$4 = Object.assign(SingleSelect, {
|
|
|
13382
13231
|
});
|
|
13383
13232
|
|
|
13384
13233
|
var StyledWrapper$1 = index$a(reactNative.View)(function (_ref) {
|
|
13385
|
-
var theme = _ref.theme,
|
|
13386
|
-
themeVariant = _ref.themeVariant,
|
|
13387
|
-
themeSize = _ref.themeSize;
|
|
13388
|
-
return {
|
|
13389
|
-
height: theme.__hd__["switch"].sizes.heights[themeSize],
|
|
13390
|
-
width: theme.__hd__["switch"].sizes.widths[themeSize],
|
|
13391
|
-
paddingHorizontal: theme.__hd__["switch"].spaces[themeSize],
|
|
13392
|
-
borderRadius: theme.__hd__["switch"].radii.rounded,
|
|
13393
|
-
backgroundColor: theme.__hd__["switch"].colors.backgroundColors[themeVariant],
|
|
13394
|
-
display: 'flex',
|
|
13395
|
-
justifyContent: 'center'
|
|
13396
|
-
};
|
|
13397
|
-
});
|
|
13398
|
-
var StyledKnot = index$a(reactNative.Animated.View)(function (_ref2) {
|
|
13399
|
-
var theme = _ref2.theme,
|
|
13400
|
-
themeSize = _ref2.themeSize;
|
|
13401
|
-
return {
|
|
13402
|
-
width: theme.__hd__["switch"].sizes.thumbs[themeSize],
|
|
13403
|
-
height: theme.__hd__["switch"].sizes.thumbs[themeSize],
|
|
13404
|
-
backgroundColor: theme.__hd__["switch"].colors.thumb,
|
|
13405
|
-
borderRadius: theme.__hd__["switch"].radii.rounded
|
|
13406
|
-
};
|
|
13407
|
-
});
|
|
13408
|
-
|
|
13409
|
-
var StyledWrapper = index$a(reactNative.View)(function (_ref) {
|
|
13410
13234
|
var theme = _ref.theme;
|
|
13411
13235
|
return {
|
|
13412
13236
|
flexDirection: 'row',
|
|
@@ -13486,7 +13310,7 @@ var SelectorSwitch = function SelectorSwitch(_ref) {
|
|
|
13486
13310
|
return onPress(value);
|
|
13487
13311
|
} : undefined,
|
|
13488
13312
|
testID: testID
|
|
13489
|
-
}, /*#__PURE__*/React__default["default"].createElement(StyledWrapper, {
|
|
13313
|
+
}, /*#__PURE__*/React__default["default"].createElement(StyledWrapper$1, {
|
|
13490
13314
|
style: style
|
|
13491
13315
|
}, options.map(function (opt, index) {
|
|
13492
13316
|
return (
|
|
@@ -13500,6 +13324,29 @@ var SelectorSwitch = function SelectorSwitch(_ref) {
|
|
|
13500
13324
|
})));
|
|
13501
13325
|
};
|
|
13502
13326
|
|
|
13327
|
+
var StyledWrapper = index$a(reactNative.View)(function (_ref) {
|
|
13328
|
+
var theme = _ref.theme,
|
|
13329
|
+
themeVariant = _ref.themeVariant;
|
|
13330
|
+
return {
|
|
13331
|
+
height: theme.__hd__["switch"].sizes.height,
|
|
13332
|
+
width: theme.__hd__["switch"].sizes.width,
|
|
13333
|
+
paddingHorizontal: theme.__hd__["switch"].spaces.paddingHorizontal,
|
|
13334
|
+
borderRadius: theme.__hd__["switch"].radii.rounded,
|
|
13335
|
+
backgroundColor: theme.__hd__["switch"].colors.backgroundColors[themeVariant],
|
|
13336
|
+
display: 'flex',
|
|
13337
|
+
justifyContent: 'center'
|
|
13338
|
+
};
|
|
13339
|
+
});
|
|
13340
|
+
var StyledKnot = index$a(reactNative.Animated.View)(function (_ref2) {
|
|
13341
|
+
var theme = _ref2.theme;
|
|
13342
|
+
return {
|
|
13343
|
+
width: theme.__hd__["switch"].sizes.thumb,
|
|
13344
|
+
height: theme.__hd__["switch"].sizes.thumb,
|
|
13345
|
+
backgroundColor: theme.__hd__["switch"].colors.thumb,
|
|
13346
|
+
borderRadius: theme.__hd__["switch"].radii.rounded
|
|
13347
|
+
};
|
|
13348
|
+
});
|
|
13349
|
+
|
|
13503
13350
|
var getVariant = function getVariant(_ref) {
|
|
13504
13351
|
var disabled = _ref.disabled,
|
|
13505
13352
|
checked = _ref.checked;
|
|
@@ -13509,22 +13356,19 @@ var getVariant = function getVariant(_ref) {
|
|
|
13509
13356
|
return checked ? 'checked' : 'unchecked';
|
|
13510
13357
|
};
|
|
13511
13358
|
var Switch = function Switch(_ref2) {
|
|
13512
|
-
var
|
|
13513
|
-
_ref2$disabled = _ref2.disabled,
|
|
13359
|
+
var _ref2$disabled = _ref2.disabled,
|
|
13514
13360
|
disabled = _ref2$disabled === void 0 ? false : _ref2$disabled,
|
|
13515
13361
|
_ref2$checked = _ref2.checked,
|
|
13516
13362
|
checked = _ref2$checked === void 0 ? false : _ref2$checked,
|
|
13517
13363
|
onPress = _ref2.onPress,
|
|
13518
13364
|
style = _ref2.style,
|
|
13519
13365
|
testID = _ref2.testID;
|
|
13520
|
-
var size = _size === undefined ? 'medium' : _size;
|
|
13521
13366
|
var theme = useTheme$1();
|
|
13522
13367
|
var variant = getVariant({
|
|
13523
13368
|
disabled: disabled,
|
|
13524
13369
|
checked: checked
|
|
13525
13370
|
});
|
|
13526
|
-
|
|
13527
|
-
var offset = checked ? (theme.__hd__["switch"].sizes.widths[size] - theme.__hd__["switch"].sizes.thumbs[size]) / 2 + theme.__hd__["switch"].sizes.thumbs[size] / 2 : 0;
|
|
13371
|
+
var offset = checked ? (theme.__hd__["switch"].sizes.width - theme.__hd__["switch"].sizes.thumb) / 2 + theme.__hd__["switch"].sizes.thumb / 2 : 0;
|
|
13528
13372
|
var _useState = React.useState(function () {
|
|
13529
13373
|
return new reactNative.Animated.Value(offset);
|
|
13530
13374
|
}),
|
|
@@ -13541,12 +13385,10 @@ var Switch = function Switch(_ref2) {
|
|
|
13541
13385
|
testID: testID,
|
|
13542
13386
|
onPress: onPress,
|
|
13543
13387
|
disabled: disabled
|
|
13544
|
-
}, /*#__PURE__*/React__default["default"].createElement(StyledWrapper
|
|
13388
|
+
}, /*#__PURE__*/React__default["default"].createElement(StyledWrapper, {
|
|
13545
13389
|
themeVariant: variant,
|
|
13546
|
-
themeSize: size,
|
|
13547
13390
|
style: style
|
|
13548
13391
|
}, /*#__PURE__*/React__default["default"].createElement(StyledKnot, {
|
|
13549
|
-
themeSize: size,
|
|
13550
13392
|
style: {
|
|
13551
13393
|
left: animatedOffset
|
|
13552
13394
|
}
|
|
@@ -13684,20 +13526,9 @@ var useAnimatedValueArray = function useAnimatedValueArray(initialValues) {
|
|
|
13684
13526
|
};
|
|
13685
13527
|
|
|
13686
13528
|
var TabWithBadge = function TabWithBadge(_ref) {
|
|
13687
|
-
var
|
|
13688
|
-
config = _ref.config,
|
|
13529
|
+
var config = _ref.config,
|
|
13689
13530
|
tabItem = _ref.tabItem;
|
|
13690
13531
|
var theme = useTheme$1();
|
|
13691
|
-
// Deprecated. To be removed.
|
|
13692
|
-
if (showBadge !== undefined) {
|
|
13693
|
-
return /*#__PURE__*/React__default["default"].createElement(Badge$1.Status, {
|
|
13694
|
-
testID: "deprecated-badge",
|
|
13695
|
-
visible: showBadge,
|
|
13696
|
-
style: {
|
|
13697
|
-
paddingHorizontal: theme.space.small
|
|
13698
|
-
}
|
|
13699
|
-
}, tabItem);
|
|
13700
|
-
}
|
|
13701
13532
|
if (!config) return /*#__PURE__*/React__default["default"].createElement(reactNative.View, null, tabItem);
|
|
13702
13533
|
if (config.type === 'status') {
|
|
13703
13534
|
return /*#__PURE__*/React__default["default"].createElement(Badge$1.Status, {
|
|
@@ -13826,7 +13657,6 @@ var ScrollableTab = function ScrollableTab(_ref2) {
|
|
|
13826
13657
|
testID = tab.testID,
|
|
13827
13658
|
activeItem = tab.activeItem,
|
|
13828
13659
|
originalInactiveItem = tab.inactiveItem,
|
|
13829
|
-
showBadge = tab.showBadge,
|
|
13830
13660
|
badge = tab.badge;
|
|
13831
13661
|
var active = selectedTabKey === key;
|
|
13832
13662
|
var activeAnimated = tabsAnims[index];
|
|
@@ -13857,7 +13687,6 @@ var ScrollableTab = function ScrollableTab(_ref2) {
|
|
|
13857
13687
|
}]
|
|
13858
13688
|
}
|
|
13859
13689
|
})), /*#__PURE__*/React__default["default"].createElement(HeaderTabItemWrapper, null, /*#__PURE__*/React__default["default"].createElement(TabWithBadge, {
|
|
13860
|
-
showBadge: showBadge,
|
|
13861
13690
|
config: badge,
|
|
13862
13691
|
tabItem: tabItem
|
|
13863
13692
|
}))));
|
|
@@ -13920,9 +13749,6 @@ var Tabs = function Tabs(_ref2) {
|
|
|
13920
13749
|
_ref2$swipeEnabled = _ref2.swipeEnabled,
|
|
13921
13750
|
swipeEnabled = _ref2$swipeEnabled === void 0 ? true : _ref2$swipeEnabled,
|
|
13922
13751
|
componentTestID = _ref2.testID;
|
|
13923
|
-
useDeprecation("Tabs' showBadge will be removed in the next major release. Please use badge prop instead.", tabs.some(function (item) {
|
|
13924
|
-
return item.showBadge !== undefined;
|
|
13925
|
-
}));
|
|
13926
13752
|
var theme = useTheme$1();
|
|
13927
13753
|
var insets = reactNativeSafeAreaContext.useSafeAreaInsets();
|
|
13928
13754
|
var pagerViewRef = React__default["default"].useRef(null);
|
|
@@ -13960,7 +13786,6 @@ var Tabs = function Tabs(_ref2) {
|
|
|
13960
13786
|
testID = tab.testID,
|
|
13961
13787
|
activeItem = tab.activeItem,
|
|
13962
13788
|
originalInactiveItem = tab.inactiveItem,
|
|
13963
|
-
showBadge = tab.showBadge,
|
|
13964
13789
|
badge = tab.badge;
|
|
13965
13790
|
var active = selectedTabKey === key;
|
|
13966
13791
|
var inactiveItem = originalInactiveItem !== null && originalInactiveItem !== void 0 ? originalInactiveItem : activeItem;
|
|
@@ -13976,7 +13801,6 @@ var Tabs = function Tabs(_ref2) {
|
|
|
13976
13801
|
},
|
|
13977
13802
|
testID: testID
|
|
13978
13803
|
}, /*#__PURE__*/React__default["default"].createElement(HeaderTabItem$1, null, /*#__PURE__*/React__default["default"].createElement(TabWithBadge, {
|
|
13979
|
-
showBadge: showBadge,
|
|
13980
13804
|
config: badge,
|
|
13981
13805
|
tabItem: tabItem
|
|
13982
13806
|
})));
|
|
@@ -14080,7 +13904,6 @@ var Tag = function Tag(_ref) {
|
|
|
14080
13904
|
style = _ref.style,
|
|
14081
13905
|
testID = _ref.testID,
|
|
14082
13906
|
nativeProps = _objectWithoutProperties(_ref, _excluded);
|
|
14083
|
-
useDeprecation("Tag's default intent is deprecated and will be removed in the next major release.\nPlease use primary intent instead.", intent !== 'default');
|
|
14084
13907
|
return /*#__PURE__*/React__default["default"].createElement(StyledView, _extends$1({}, nativeProps, {
|
|
14085
13908
|
themeIntent: intent,
|
|
14086
13909
|
themeVariant: variant,
|
|
@@ -14204,18 +14027,16 @@ var TimePickerIOS = function TimePickerIOS(_ref) {
|
|
|
14204
14027
|
return setOpen(false);
|
|
14205
14028
|
},
|
|
14206
14029
|
header: label,
|
|
14207
|
-
footer: /*#__PURE__*/React__default["default"].createElement(
|
|
14030
|
+
footer: /*#__PURE__*/React__default["default"].createElement(CompoundButton, {
|
|
14031
|
+
variant: "text",
|
|
14032
|
+
text: confirmLabel,
|
|
14208
14033
|
onPress: function onPress() {
|
|
14209
14034
|
if (selectingDate) {
|
|
14210
14035
|
onChange(selectingDate);
|
|
14211
14036
|
}
|
|
14212
14037
|
setOpen(false);
|
|
14213
14038
|
}
|
|
14214
|
-
}
|
|
14215
|
-
fontSize: "large",
|
|
14216
|
-
fontWeight: "semi-bold",
|
|
14217
|
-
intent: "primary"
|
|
14218
|
-
}, confirmLabel))
|
|
14039
|
+
})
|
|
14219
14040
|
}, /*#__PURE__*/React__default["default"].createElement(StyledPickerWrapper, null, /*#__PURE__*/React__default["default"].createElement(DateTimePicker__default["default"], {
|
|
14220
14041
|
testID: "timePickerIOS",
|
|
14221
14042
|
value: selectingDate,
|
|
@@ -25687,8 +25508,7 @@ function checkDCE() {
|
|
|
25687
25508
|
voids: a
|
|
25688
25509
|
}));
|
|
25689
25510
|
if (v.length > 0) if ("continue" === function () {
|
|
25690
|
-
var
|
|
25691
|
-
r = _v[0],
|
|
25511
|
+
var r = v[0],
|
|
25692
25512
|
n = v[v.length - 1],
|
|
25693
25513
|
_r4 = _slicedToArray(r, 2),
|
|
25694
25514
|
o = _r4[1],
|