@hero-design/rn 7.9.0 → 7.10.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/.turbo/turbo-build.log +8 -8
- package/assets/fonts/hero-icons.ttf +0 -0
- package/es/index.js +731 -252
- package/lib/assets/fonts/hero-icons.ttf +0 -0
- package/lib/index.js +730 -251
- package/package.json +2 -2
- package/src/components/Button/Button.tsx +10 -2
- package/src/components/Button/LoadingIndicator/StyledLoadingIndicator.tsx +7 -1
- package/src/components/Button/LoadingIndicator/__tests__/StyledLoadingIndicator.spec.tsx +3 -0
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +60 -0
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +363 -0
- package/src/components/Button/LoadingIndicator/__tests__/index.spec.tsx +3 -0
- package/src/components/Button/LoadingIndicator/index.tsx +4 -1
- package/src/components/Button/StyledButton.tsx +57 -1
- package/src/components/Button/UtilityButton/__tests__/__snapshots__/index.spec.tsx.snap +167 -0
- package/src/components/Button/UtilityButton/__tests__/index.spec.tsx +55 -0
- package/src/components/Button/UtilityButton/index.tsx +53 -0
- package/src/components/Button/UtilityButton/styled.tsx +25 -0
- package/src/components/Button/__tests__/Button.spec.tsx +3 -0
- package/src/components/Button/__tests__/StyledButton.spec.tsx +18 -0
- package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +468 -0
- package/src/components/Button/index.tsx +3 -0
- package/src/components/Icon/HeroIcon/selection.json +1 -1
- package/src/components/Icon/IconList.ts +2 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +248 -94
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +248 -94
- package/src/components/TextInput/StyledTextInput.tsx +133 -11
- package/src/components/TextInput/__tests__/StyledTextInput.spec.tsx +143 -7
- package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +922 -15
- package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +2078 -0
- package/src/components/TextInput/__tests__/index.spec.tsx +302 -11
- package/src/components/TextInput/index.tsx +232 -28
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +69 -3
- package/src/theme/components/button.ts +6 -0
- package/src/theme/components/textInput.ts +62 -3
- package/src/theme/global/colors.ts +1 -0
- package/src/types.ts +8 -1
- package/types/components/Alert/StyledAlert.d.ts +0 -0
- package/types/components/Alert/__tests__/index.spec.d.ts +0 -0
- package/types/components/Alert/index.d.ts +0 -0
- package/types/components/Avatar/StyledAvatar.d.ts +0 -0
- package/types/components/Avatar/__tests__/StyledAvatar.spec.d.ts +0 -0
- package/types/components/Avatar/__tests__/index.spec.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/__tests__/Badge.spec.d.ts +0 -0
- package/types/components/Badge/__tests__/Status.spec.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/__tests__/index.spec.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/__tests__/index.spec.d.ts +0 -0
- package/types/components/BottomSheet/index.d.ts +0 -0
- package/types/components/Button/Button.d.ts +2 -2
- package/types/components/Button/IconButton.d.ts +0 -0
- package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +1 -1
- package/types/components/Button/LoadingIndicator/__tests__/StyledLoadingIndicator.spec.d.ts +0 -0
- package/types/components/Button/LoadingIndicator/__tests__/index.spec.d.ts +0 -0
- package/types/components/Button/LoadingIndicator/index.d.ts +1 -1
- package/types/components/Button/StyledButton.d.ts +1 -1
- package/types/components/Button/UtilityButton/__tests__/index.spec.d.ts +1 -0
- package/types/components/Button/UtilityButton/index.d.ts +23 -0
- package/types/components/Button/UtilityButton/styled.d.ts +17 -0
- package/types/components/Button/__tests__/Button.spec.d.ts +0 -0
- package/types/components/Button/__tests__/IconButton.spec.d.ts +0 -0
- package/types/components/Button/__tests__/StyledButton.spec.d.ts +0 -0
- package/types/components/Button/index.d.ts +2 -0
- package/types/components/Card/DataCard/StyledDataCard.d.ts +0 -0
- package/types/components/Card/DataCard/__tests__/StyledDataCard.spec.d.ts +0 -0
- package/types/components/Card/DataCard/__tests__/index.spec.d.ts +0 -0
- package/types/components/Card/DataCard/index.d.ts +0 -0
- package/types/components/Card/StyledCard.d.ts +0 -0
- package/types/components/Card/__tests__/StyledCard.spec.d.ts +0 -0
- package/types/components/Card/__tests__/index.spec.d.ts +0 -0
- package/types/components/Card/index.d.ts +0 -0
- package/types/components/Checkbox/StyledCheckbox.d.ts +0 -0
- package/types/components/Checkbox/__tests__/StyledCheckbox.spec.d.ts +0 -0
- package/types/components/Checkbox/__tests__/index.spec.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/__tests__/StyledCollapse.spec.d.ts +0 -0
- package/types/components/Collapse/__tests__/index.spec.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/__tests__/StyledContentNavigator.spec.d.ts +0 -0
- package/types/components/ContentNavigator/__tests__/index.spec.d.ts +0 -0
- package/types/components/ContentNavigator/index.d.ts +0 -0
- package/types/components/Divider/StyledDivider.d.ts +0 -0
- package/types/components/Divider/__tests__/StyledDivider.spec.d.ts +0 -0
- package/types/components/Divider/index.d.ts +0 -0
- package/types/components/Drawer/StyledDrawer.d.ts +0 -0
- package/types/components/Drawer/__tests__/index.spec.d.ts +0 -0
- package/types/components/Drawer/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/__tests__/index.spec.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/__tests__/AnimatedFABIcon.spec.d.ts +0 -0
- package/types/components/FAB/__tests__/StyledFAB.spec.d.ts +0 -0
- package/types/components/FAB/__tests__/index.spec.d.ts +0 -0
- package/types/components/FAB/index.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/__tests__/index.spec.d.ts +0 -0
- package/types/components/Icon/index.d.ts +0 -0
- package/types/components/Icon/utils.d.ts +1 -1
- 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/__tests__/BasicListItem.spec.d.ts +0 -0
- package/types/components/List/__tests__/ListItem.spec.d.ts +0 -0
- package/types/components/List/__tests__/StyledBasicListItem.spec.d.ts +0 -0
- package/types/components/List/__tests__/StyledListItem.spec.d.ts +0 -0
- package/types/components/List/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/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/__tests__/Radio.spec.d.ts +0 -0
- package/types/components/Radio/__tests__/RadioGroup.spec.d.ts +0 -0
- package/types/components/Radio/__tests__/StyledRadio.spec.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/SectionHeading/StyledHeading.d.ts +0 -0
- package/types/components/SectionHeading/__tests__/StyledHeading.spec.d.ts +0 -0
- package/types/components/SectionHeading/__tests__/index.spec.d.ts +0 -0
- package/types/components/SectionHeading/index.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/__tests__/Option.spec.d.ts +0 -0
- package/types/components/Select/MultiSelect/__tests__/OptionList.spec.d.ts +0 -0
- package/types/components/Select/MultiSelect/__tests__/index.spec.d.ts +0 -0
- package/types/components/Select/MultiSelect/index.d.ts +0 -0
- package/types/components/Select/SingleSelect/Option.d.ts +0 -0
- package/types/components/Select/SingleSelect/OptionList.d.ts +0 -0
- package/types/components/Select/SingleSelect/__tests__/Option.spec.d.ts +0 -0
- package/types/components/Select/SingleSelect/__tests__/OptionList.spec.d.ts +0 -0
- package/types/components/Select/SingleSelect/__tests__/index.spec.d.ts +0 -0
- package/types/components/Select/SingleSelect/index.d.ts +0 -0
- package/types/components/Select/StyledSelect.d.ts +0 -0
- package/types/components/Select/__tests__/StyledSelect.spec.d.ts +0 -0
- package/types/components/Select/helpers.d.ts +0 -0
- package/types/components/Select/index.d.ts +0 -0
- package/types/components/Select/types.d.ts +0 -0
- package/types/components/Spinner/AnimatedSpinner.d.ts +0 -0
- package/types/components/Spinner/StyledSpinner.d.ts +0 -0
- package/types/components/Spinner/__tests__/AnimatedSpinner.spec.d.ts +0 -0
- package/types/components/Spinner/__tests__/StyledSpinner.spec.d.ts +0 -0
- package/types/components/Spinner/__tests__/index.spec.d.ts +0 -0
- package/types/components/Spinner/index.d.ts +0 -0
- package/types/components/Switch/StyledSwitch.d.ts +0 -0
- package/types/components/Switch/__tests__/StyledHeading.spec.d.ts +0 -0
- package/types/components/Switch/__tests__/index.spec.d.ts +0 -0
- package/types/components/Switch/index.d.ts +0 -0
- package/types/components/Tabs/ActiveTabIndicator.d.ts +0 -0
- package/types/components/Tabs/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/__tests__/ScrollableTabs.spec.d.ts +0 -0
- package/types/components/Tabs/__tests__/index.spec.d.ts +0 -0
- package/types/components/Tabs/index.d.ts +0 -0
- package/types/components/Tabs/utils.d.ts +0 -0
- package/types/components/Tag/StyledTag.d.ts +0 -0
- package/types/components/Tag/__tests__/Tag.spec.d.ts +0 -0
- package/types/components/Tag/index.d.ts +0 -0
- package/types/components/TextInput/StyledTextInput.d.ts +82 -3
- package/types/components/TextInput/__tests__/StyledTextInput.spec.d.ts +0 -0
- package/types/components/TextInput/__tests__/index.spec.d.ts +0 -0
- package/types/components/TextInput/index.d.ts +33 -5
- 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/__tests__/Toast.spec.d.ts +0 -0
- package/types/components/Toast/__tests__/ToastContainer.spec.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/__tests__/ToolbarGroup.spec.d.ts +0 -0
- package/types/components/Toolbar/__tests__/ToolbarItem.spec.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/__tests__/StyledText.spec.d.ts +0 -0
- package/types/components/Typography/Text/__tests__/index.spec.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/__tests__/index.spec.d.ts +0 -0
- package/types/theme/components/alert.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 -0
- package/types/theme/components/button.d.ts +6 -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/divider.d.ts +0 -0
- package/types/theme/components/drawer.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/list.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/sectionHeading.d.ts +0 -0
- package/types/theme/components/select.d.ts +0 -0
- package/types/theme/components/spinner.d.ts +0 -0
- package/types/theme/components/switch.d.ts +0 -0
- package/types/theme/components/tabs.d.ts +0 -0
- package/types/theme/components/tag.d.ts +0 -0
- package/types/theme/components/textInput.d.ts +61 -2
- 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/global/borders.d.ts +0 -0
- package/types/theme/global/colors.d.ts +1 -0
- package/types/theme/global/index.d.ts +1 -0
- package/types/theme/global/scale.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 +2 -1
- package/types/utils/__tests__/scale.spec.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/es/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as ReactNative from 'react-native';
|
|
2
2
|
import ReactNative__default, { Dimensions, StyleSheet as StyleSheet$1, Text as Text$1, View, TouchableOpacity, Image, Animated, Platform, TouchableWithoutFeedback, Pressable, Easing, Modal, TouchableHighlight, TextInput as TextInput$1, requireNativeComponent, UIManager, I18nManager, Keyboard, FlatList, LayoutAnimation } from 'react-native';
|
|
3
|
-
import React, {
|
|
3
|
+
import React, { useContext, createContext, createElement, forwardRef, useRef, useEffect, useState, useCallback, Children, useLayoutEffect, useImperativeHandle, useMemo } from 'react';
|
|
4
4
|
import { useSafeAreaInsets } from 'react-native-safe-area-context';
|
|
5
5
|
|
|
6
6
|
function ownKeys(object, enumerableOnly) {
|
|
@@ -2621,6 +2621,7 @@ var systemPalette = {
|
|
|
2621
2621
|
backgroundLight: palette$6.greyLight95,
|
|
2622
2622
|
backgroundDark: palette$6.greyDark75,
|
|
2623
2623
|
text: palette$6.greyDark75,
|
|
2624
|
+
subduedText: palette$6.greyDark30,
|
|
2624
2625
|
disabledText: palette$6.greyDark15,
|
|
2625
2626
|
disabledLightText: palette$6.greyLight45,
|
|
2626
2627
|
invertedText: palette$6.white,
|
|
@@ -2921,7 +2922,9 @@ var getButtonTheme = function getButtonTheme(theme) {
|
|
|
2921
2922
|
"default": theme.fonts.semiBold
|
|
2922
2923
|
};
|
|
2923
2924
|
var fontSize = {
|
|
2924
|
-
"default": theme.fontSizes.xlarge
|
|
2925
|
+
"default": theme.fontSizes.xlarge,
|
|
2926
|
+
utility: theme.fontSizes.large,
|
|
2927
|
+
textVariant: theme.fontSizes.large
|
|
2925
2928
|
};
|
|
2926
2929
|
var lineHeight = {
|
|
2927
2930
|
"default": theme.lineHeights.large
|
|
@@ -2931,13 +2934,16 @@ var getButtonTheme = function getButtonTheme(theme) {
|
|
|
2931
2934
|
};
|
|
2932
2935
|
var space = {
|
|
2933
2936
|
buttonPadding: theme.space.medium,
|
|
2934
|
-
iconPadding: theme.space.small
|
|
2937
|
+
iconPadding: theme.space.small,
|
|
2938
|
+
utilityPadding: theme.space.small,
|
|
2939
|
+
utilityIconPadding: theme.space.smallMedium
|
|
2935
2940
|
};
|
|
2936
2941
|
var sizes = {
|
|
2937
2942
|
iconSize: theme.fontSizes.xxlarge
|
|
2938
2943
|
};
|
|
2939
2944
|
var radii = {
|
|
2940
|
-
"default": theme.space.xlarge
|
|
2945
|
+
"default": theme.space.xlarge,
|
|
2946
|
+
utilityRadii: theme.space.small
|
|
2941
2947
|
};
|
|
2942
2948
|
var colors = {
|
|
2943
2949
|
primary: theme.colors.primary,
|
|
@@ -2950,7 +2956,8 @@ var getButtonTheme = function getButtonTheme(theme) {
|
|
|
2950
2956
|
disabledText: theme.colors.disabledLightText,
|
|
2951
2957
|
disabledBorder: theme.colors.disabledLightText,
|
|
2952
2958
|
disabledBackground: theme.colors.disabledLightText,
|
|
2953
|
-
invertedText: theme.colors.invertedText
|
|
2959
|
+
invertedText: theme.colors.invertedText,
|
|
2960
|
+
utilityBackground: theme.colors.backgroundLight
|
|
2954
2961
|
};
|
|
2955
2962
|
return {
|
|
2956
2963
|
borderWidth: borderWidth,
|
|
@@ -3380,20 +3387,79 @@ var getTagTheme = function getTagTheme(theme) {
|
|
|
3380
3387
|
var getTextInputTheme = function getTextInputTheme(theme) {
|
|
3381
3388
|
var colors = {
|
|
3382
3389
|
labelBackground: theme.colors.platformBackground,
|
|
3383
|
-
|
|
3390
|
+
asterisks: {
|
|
3391
|
+
"default": theme.colors.danger,
|
|
3392
|
+
error: theme.colors.danger,
|
|
3393
|
+
disabled: theme.colors.disabledLightText,
|
|
3394
|
+
readonly: theme.colors.disabledText,
|
|
3395
|
+
filled: theme.colors.danger,
|
|
3396
|
+
focused: theme.colors.danger
|
|
3397
|
+
},
|
|
3398
|
+
error: theme.colors.danger,
|
|
3399
|
+
placeholderIfNotFocused: theme.colors.text,
|
|
3400
|
+
placeholderIfFocued: theme.colors.disabledText,
|
|
3401
|
+
label: theme.colors.text,
|
|
3402
|
+
readonlyLabel: theme.colors.disabledText,
|
|
3403
|
+
disabledLabel: theme.colors.disabledLightText,
|
|
3404
|
+
text: theme.colors.text,
|
|
3405
|
+
borders: {
|
|
3406
|
+
"default": theme.colors.text,
|
|
3407
|
+
error: theme.colors.danger,
|
|
3408
|
+
disabled: theme.colors.disabledLightText,
|
|
3409
|
+
readonly: theme.colors.disabledText,
|
|
3410
|
+
filled: theme.colors.text,
|
|
3411
|
+
focused: theme.colors.text
|
|
3412
|
+
},
|
|
3413
|
+
labels: {
|
|
3414
|
+
"default": theme.colors.text,
|
|
3415
|
+
error: theme.colors.text,
|
|
3416
|
+
disabled: theme.colors.disabledLightText,
|
|
3417
|
+
readonly: theme.colors.disabledText,
|
|
3418
|
+
filled: theme.colors.text,
|
|
3419
|
+
focused: theme.colors.text
|
|
3420
|
+
},
|
|
3421
|
+
labelsInsideTextInput: {
|
|
3422
|
+
"default": theme.colors.text,
|
|
3423
|
+
error: theme.colors.text,
|
|
3424
|
+
disabled: theme.colors.disabledLightText,
|
|
3425
|
+
readonly: theme.colors.disabledText,
|
|
3426
|
+
filled: theme.colors.text,
|
|
3427
|
+
focused: theme.colors.text
|
|
3428
|
+
},
|
|
3429
|
+
maxLengthLabels: {
|
|
3430
|
+
"default": theme.colors.text,
|
|
3431
|
+
error: theme.colors.danger,
|
|
3432
|
+
disabled: theme.colors.disabledLightText,
|
|
3433
|
+
readonly: theme.colors.disabledText,
|
|
3434
|
+
filled: theme.colors.text,
|
|
3435
|
+
focused: theme.colors.text
|
|
3436
|
+
}
|
|
3384
3437
|
};
|
|
3385
3438
|
var space = {
|
|
3386
3439
|
containerPadding: theme.space.medium,
|
|
3387
3440
|
labelLeft: theme.space.medium,
|
|
3388
3441
|
labelTop: theme.lineHeights.small / -2,
|
|
3442
|
+
labelPaddingBottom: theme.space.small,
|
|
3389
3443
|
labelHorizontalPadding: theme.space.xsmall,
|
|
3390
|
-
inputHorizontalMargin: theme.space.small
|
|
3444
|
+
inputHorizontalMargin: theme.space.small,
|
|
3445
|
+
containerMarginVertical: theme.space.small,
|
|
3446
|
+
errorContainerMarginLeft: theme.space.medium,
|
|
3447
|
+
errorContainerMarginRight: theme.space.xsmall,
|
|
3448
|
+
errorMarginLeft: theme.space.xsmall,
|
|
3449
|
+
maxLengthLabelMarginLeft: theme.space.xsmall
|
|
3391
3450
|
};
|
|
3392
3451
|
var fontSizes = {
|
|
3393
|
-
text: theme.fontSizes.
|
|
3452
|
+
text: theme.fontSizes.medium,
|
|
3453
|
+
labelInsideTextInput: theme.fontSizes.medium,
|
|
3454
|
+
error: theme.fontSizes.small,
|
|
3455
|
+
maxLength: theme.fontSizes.small,
|
|
3456
|
+
asteriskLabel: theme.fontSizes.medium
|
|
3394
3457
|
};
|
|
3395
3458
|
var borderWidths = {
|
|
3396
|
-
container:
|
|
3459
|
+
container: {
|
|
3460
|
+
normal: theme.borderWidths.base,
|
|
3461
|
+
focused: theme.borderWidths.medium
|
|
3462
|
+
}
|
|
3397
3463
|
};
|
|
3398
3464
|
var radii = {
|
|
3399
3465
|
container: theme.radii.medium
|
|
@@ -9938,6 +10004,68 @@ var icons = [
|
|
|
9938
10004
|
setId: 0,
|
|
9939
10005
|
iconIdx: 94
|
|
9940
10006
|
},
|
|
10007
|
+
{
|
|
10008
|
+
icon: {
|
|
10009
|
+
paths: [
|
|
10010
|
+
"M810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM597.333 725.333h-85.333v-341.333h-85.333v-85.333h170.667v426.667z"
|
|
10011
|
+
],
|
|
10012
|
+
attrs: [
|
|
10013
|
+
{
|
|
10014
|
+
}
|
|
10015
|
+
],
|
|
10016
|
+
isMulticolor: false,
|
|
10017
|
+
isMulticolor2: false,
|
|
10018
|
+
grid: 0,
|
|
10019
|
+
tags: [
|
|
10020
|
+
"looks-one"
|
|
10021
|
+
]
|
|
10022
|
+
},
|
|
10023
|
+
attrs: [
|
|
10024
|
+
{
|
|
10025
|
+
}
|
|
10026
|
+
],
|
|
10027
|
+
properties: {
|
|
10028
|
+
order: 2599,
|
|
10029
|
+
id: 306,
|
|
10030
|
+
name: "looks-one",
|
|
10031
|
+
prevSize: 32,
|
|
10032
|
+
code: 59950
|
|
10033
|
+
},
|
|
10034
|
+
setIdx: 0,
|
|
10035
|
+
setId: 0,
|
|
10036
|
+
iconIdx: 95
|
|
10037
|
+
},
|
|
10038
|
+
{
|
|
10039
|
+
icon: {
|
|
10040
|
+
paths: [
|
|
10041
|
+
"M810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM640 469.333c0 47.36-38.4 85.333-85.333 85.333h-85.333v85.333h170.667v85.333h-256v-170.667c0-47.36 38.4-85.333 85.333-85.333h85.333v-85.333h-170.667v-85.333h170.667c46.933 0 85.333 37.973 85.333 85.333v85.333z"
|
|
10042
|
+
],
|
|
10043
|
+
attrs: [
|
|
10044
|
+
{
|
|
10045
|
+
}
|
|
10046
|
+
],
|
|
10047
|
+
isMulticolor: false,
|
|
10048
|
+
isMulticolor2: false,
|
|
10049
|
+
grid: 0,
|
|
10050
|
+
tags: [
|
|
10051
|
+
"looks-two"
|
|
10052
|
+
]
|
|
10053
|
+
},
|
|
10054
|
+
attrs: [
|
|
10055
|
+
{
|
|
10056
|
+
}
|
|
10057
|
+
],
|
|
10058
|
+
properties: {
|
|
10059
|
+
order: 2598,
|
|
10060
|
+
id: 305,
|
|
10061
|
+
name: "looks-two",
|
|
10062
|
+
prevSize: 32,
|
|
10063
|
+
code: 59951
|
|
10064
|
+
},
|
|
10065
|
+
setIdx: 0,
|
|
10066
|
+
setId: 0,
|
|
10067
|
+
iconIdx: 96
|
|
10068
|
+
},
|
|
9941
10069
|
{
|
|
9942
10070
|
icon: {
|
|
9943
10071
|
paths: [
|
|
@@ -9961,7 +10089,7 @@ var icons = [
|
|
|
9961
10089
|
},
|
|
9962
10090
|
setIdx: 0,
|
|
9963
10091
|
setId: 0,
|
|
9964
|
-
iconIdx:
|
|
10092
|
+
iconIdx: 97
|
|
9965
10093
|
},
|
|
9966
10094
|
{
|
|
9967
10095
|
icon: {
|
|
@@ -9988,7 +10116,7 @@ var icons = [
|
|
|
9988
10116
|
},
|
|
9989
10117
|
setIdx: 0,
|
|
9990
10118
|
setId: 0,
|
|
9991
|
-
iconIdx:
|
|
10119
|
+
iconIdx: 98
|
|
9992
10120
|
},
|
|
9993
10121
|
{
|
|
9994
10122
|
icon: {
|
|
@@ -10013,7 +10141,7 @@ var icons = [
|
|
|
10013
10141
|
},
|
|
10014
10142
|
setIdx: 0,
|
|
10015
10143
|
setId: 0,
|
|
10016
|
-
iconIdx:
|
|
10144
|
+
iconIdx: 99
|
|
10017
10145
|
},
|
|
10018
10146
|
{
|
|
10019
10147
|
icon: {
|
|
@@ -10038,7 +10166,7 @@ var icons = [
|
|
|
10038
10166
|
},
|
|
10039
10167
|
setIdx: 0,
|
|
10040
10168
|
setId: 0,
|
|
10041
|
-
iconIdx:
|
|
10169
|
+
iconIdx: 100
|
|
10042
10170
|
},
|
|
10043
10171
|
{
|
|
10044
10172
|
icon: {
|
|
@@ -10065,7 +10193,7 @@ var icons = [
|
|
|
10065
10193
|
},
|
|
10066
10194
|
setIdx: 0,
|
|
10067
10195
|
setId: 0,
|
|
10068
|
-
iconIdx:
|
|
10196
|
+
iconIdx: 101
|
|
10069
10197
|
},
|
|
10070
10198
|
{
|
|
10071
10199
|
icon: {
|
|
@@ -10095,7 +10223,7 @@ var icons = [
|
|
|
10095
10223
|
},
|
|
10096
10224
|
setIdx: 0,
|
|
10097
10225
|
setId: 0,
|
|
10098
|
-
iconIdx:
|
|
10226
|
+
iconIdx: 102
|
|
10099
10227
|
},
|
|
10100
10228
|
{
|
|
10101
10229
|
icon: {
|
|
@@ -10120,7 +10248,7 @@ var icons = [
|
|
|
10120
10248
|
},
|
|
10121
10249
|
setIdx: 0,
|
|
10122
10250
|
setId: 0,
|
|
10123
|
-
iconIdx:
|
|
10251
|
+
iconIdx: 103
|
|
10124
10252
|
},
|
|
10125
10253
|
{
|
|
10126
10254
|
icon: {
|
|
@@ -10145,7 +10273,7 @@ var icons = [
|
|
|
10145
10273
|
},
|
|
10146
10274
|
setIdx: 0,
|
|
10147
10275
|
setId: 0,
|
|
10148
|
-
iconIdx:
|
|
10276
|
+
iconIdx: 104
|
|
10149
10277
|
},
|
|
10150
10278
|
{
|
|
10151
10279
|
icon: {
|
|
@@ -10170,7 +10298,7 @@ var icons = [
|
|
|
10170
10298
|
},
|
|
10171
10299
|
setIdx: 0,
|
|
10172
10300
|
setId: 0,
|
|
10173
|
-
iconIdx:
|
|
10301
|
+
iconIdx: 105
|
|
10174
10302
|
},
|
|
10175
10303
|
{
|
|
10176
10304
|
icon: {
|
|
@@ -10195,7 +10323,7 @@ var icons = [
|
|
|
10195
10323
|
},
|
|
10196
10324
|
setIdx: 0,
|
|
10197
10325
|
setId: 0,
|
|
10198
|
-
iconIdx:
|
|
10326
|
+
iconIdx: 106
|
|
10199
10327
|
},
|
|
10200
10328
|
{
|
|
10201
10329
|
icon: {
|
|
@@ -10221,7 +10349,7 @@ var icons = [
|
|
|
10221
10349
|
},
|
|
10222
10350
|
setIdx: 0,
|
|
10223
10351
|
setId: 0,
|
|
10224
|
-
iconIdx:
|
|
10352
|
+
iconIdx: 107
|
|
10225
10353
|
},
|
|
10226
10354
|
{
|
|
10227
10355
|
icon: {
|
|
@@ -10246,7 +10374,7 @@ var icons = [
|
|
|
10246
10374
|
},
|
|
10247
10375
|
setIdx: 0,
|
|
10248
10376
|
setId: 0,
|
|
10249
|
-
iconIdx:
|
|
10377
|
+
iconIdx: 108
|
|
10250
10378
|
},
|
|
10251
10379
|
{
|
|
10252
10380
|
icon: {
|
|
@@ -10271,7 +10399,7 @@ var icons = [
|
|
|
10271
10399
|
},
|
|
10272
10400
|
setIdx: 0,
|
|
10273
10401
|
setId: 0,
|
|
10274
|
-
iconIdx:
|
|
10402
|
+
iconIdx: 109
|
|
10275
10403
|
},
|
|
10276
10404
|
{
|
|
10277
10405
|
icon: {
|
|
@@ -10296,7 +10424,7 @@ var icons = [
|
|
|
10296
10424
|
},
|
|
10297
10425
|
setIdx: 0,
|
|
10298
10426
|
setId: 0,
|
|
10299
|
-
iconIdx:
|
|
10427
|
+
iconIdx: 110
|
|
10300
10428
|
},
|
|
10301
10429
|
{
|
|
10302
10430
|
icon: {
|
|
@@ -10321,7 +10449,7 @@ var icons = [
|
|
|
10321
10449
|
},
|
|
10322
10450
|
setIdx: 0,
|
|
10323
10451
|
setId: 0,
|
|
10324
|
-
iconIdx:
|
|
10452
|
+
iconIdx: 111
|
|
10325
10453
|
},
|
|
10326
10454
|
{
|
|
10327
10455
|
icon: {
|
|
@@ -10346,7 +10474,7 @@ var icons = [
|
|
|
10346
10474
|
},
|
|
10347
10475
|
setIdx: 0,
|
|
10348
10476
|
setId: 0,
|
|
10349
|
-
iconIdx:
|
|
10477
|
+
iconIdx: 112
|
|
10350
10478
|
},
|
|
10351
10479
|
{
|
|
10352
10480
|
icon: {
|
|
@@ -10375,7 +10503,7 @@ var icons = [
|
|
|
10375
10503
|
},
|
|
10376
10504
|
setIdx: 0,
|
|
10377
10505
|
setId: 0,
|
|
10378
|
-
iconIdx:
|
|
10506
|
+
iconIdx: 113
|
|
10379
10507
|
},
|
|
10380
10508
|
{
|
|
10381
10509
|
icon: {
|
|
@@ -10400,7 +10528,7 @@ var icons = [
|
|
|
10400
10528
|
},
|
|
10401
10529
|
setIdx: 0,
|
|
10402
10530
|
setId: 0,
|
|
10403
|
-
iconIdx:
|
|
10531
|
+
iconIdx: 114
|
|
10404
10532
|
},
|
|
10405
10533
|
{
|
|
10406
10534
|
icon: {
|
|
@@ -10425,7 +10553,7 @@ var icons = [
|
|
|
10425
10553
|
},
|
|
10426
10554
|
setIdx: 0,
|
|
10427
10555
|
setId: 0,
|
|
10428
|
-
iconIdx:
|
|
10556
|
+
iconIdx: 115
|
|
10429
10557
|
},
|
|
10430
10558
|
{
|
|
10431
10559
|
icon: {
|
|
@@ -10450,7 +10578,7 @@ var icons = [
|
|
|
10450
10578
|
},
|
|
10451
10579
|
setIdx: 0,
|
|
10452
10580
|
setId: 0,
|
|
10453
|
-
iconIdx:
|
|
10581
|
+
iconIdx: 116
|
|
10454
10582
|
},
|
|
10455
10583
|
{
|
|
10456
10584
|
icon: {
|
|
@@ -10475,7 +10603,7 @@ var icons = [
|
|
|
10475
10603
|
},
|
|
10476
10604
|
setIdx: 0,
|
|
10477
10605
|
setId: 0,
|
|
10478
|
-
iconIdx:
|
|
10606
|
+
iconIdx: 117
|
|
10479
10607
|
},
|
|
10480
10608
|
{
|
|
10481
10609
|
icon: {
|
|
@@ -10500,7 +10628,7 @@ var icons = [
|
|
|
10500
10628
|
},
|
|
10501
10629
|
setIdx: 0,
|
|
10502
10630
|
setId: 0,
|
|
10503
|
-
iconIdx:
|
|
10631
|
+
iconIdx: 118
|
|
10504
10632
|
},
|
|
10505
10633
|
{
|
|
10506
10634
|
icon: {
|
|
@@ -10531,7 +10659,7 @@ var icons = [
|
|
|
10531
10659
|
},
|
|
10532
10660
|
setIdx: 0,
|
|
10533
10661
|
setId: 0,
|
|
10534
|
-
iconIdx:
|
|
10662
|
+
iconIdx: 119
|
|
10535
10663
|
},
|
|
10536
10664
|
{
|
|
10537
10665
|
icon: {
|
|
@@ -10556,7 +10684,7 @@ var icons = [
|
|
|
10556
10684
|
},
|
|
10557
10685
|
setIdx: 0,
|
|
10558
10686
|
setId: 0,
|
|
10559
|
-
iconIdx:
|
|
10687
|
+
iconIdx: 120
|
|
10560
10688
|
},
|
|
10561
10689
|
{
|
|
10562
10690
|
icon: {
|
|
@@ -10587,7 +10715,7 @@ var icons = [
|
|
|
10587
10715
|
},
|
|
10588
10716
|
setIdx: 0,
|
|
10589
10717
|
setId: 0,
|
|
10590
|
-
iconIdx:
|
|
10718
|
+
iconIdx: 121
|
|
10591
10719
|
},
|
|
10592
10720
|
{
|
|
10593
10721
|
icon: {
|
|
@@ -10612,7 +10740,7 @@ var icons = [
|
|
|
10612
10740
|
},
|
|
10613
10741
|
setIdx: 0,
|
|
10614
10742
|
setId: 0,
|
|
10615
|
-
iconIdx:
|
|
10743
|
+
iconIdx: 122
|
|
10616
10744
|
},
|
|
10617
10745
|
{
|
|
10618
10746
|
icon: {
|
|
@@ -10637,7 +10765,7 @@ var icons = [
|
|
|
10637
10765
|
},
|
|
10638
10766
|
setIdx: 0,
|
|
10639
10767
|
setId: 0,
|
|
10640
|
-
iconIdx:
|
|
10768
|
+
iconIdx: 123
|
|
10641
10769
|
},
|
|
10642
10770
|
{
|
|
10643
10771
|
icon: {
|
|
@@ -10662,7 +10790,7 @@ var icons = [
|
|
|
10662
10790
|
},
|
|
10663
10791
|
setIdx: 0,
|
|
10664
10792
|
setId: 0,
|
|
10665
|
-
iconIdx:
|
|
10793
|
+
iconIdx: 124
|
|
10666
10794
|
},
|
|
10667
10795
|
{
|
|
10668
10796
|
icon: {
|
|
@@ -10687,7 +10815,7 @@ var icons = [
|
|
|
10687
10815
|
},
|
|
10688
10816
|
setIdx: 0,
|
|
10689
10817
|
setId: 0,
|
|
10690
|
-
iconIdx:
|
|
10818
|
+
iconIdx: 125
|
|
10691
10819
|
},
|
|
10692
10820
|
{
|
|
10693
10821
|
icon: {
|
|
@@ -10719,7 +10847,7 @@ var icons = [
|
|
|
10719
10847
|
},
|
|
10720
10848
|
setIdx: 0,
|
|
10721
10849
|
setId: 0,
|
|
10722
|
-
iconIdx:
|
|
10850
|
+
iconIdx: 126
|
|
10723
10851
|
},
|
|
10724
10852
|
{
|
|
10725
10853
|
icon: {
|
|
@@ -10744,7 +10872,7 @@ var icons = [
|
|
|
10744
10872
|
},
|
|
10745
10873
|
setIdx: 0,
|
|
10746
10874
|
setId: 0,
|
|
10747
|
-
iconIdx:
|
|
10875
|
+
iconIdx: 127
|
|
10748
10876
|
},
|
|
10749
10877
|
{
|
|
10750
10878
|
icon: {
|
|
@@ -10778,7 +10906,7 @@ var icons = [
|
|
|
10778
10906
|
},
|
|
10779
10907
|
setIdx: 0,
|
|
10780
10908
|
setId: 0,
|
|
10781
|
-
iconIdx:
|
|
10909
|
+
iconIdx: 128
|
|
10782
10910
|
},
|
|
10783
10911
|
{
|
|
10784
10912
|
icon: {
|
|
@@ -10804,7 +10932,7 @@ var icons = [
|
|
|
10804
10932
|
},
|
|
10805
10933
|
setIdx: 0,
|
|
10806
10934
|
setId: 0,
|
|
10807
|
-
iconIdx:
|
|
10935
|
+
iconIdx: 129
|
|
10808
10936
|
},
|
|
10809
10937
|
{
|
|
10810
10938
|
icon: {
|
|
@@ -10829,7 +10957,7 @@ var icons = [
|
|
|
10829
10957
|
},
|
|
10830
10958
|
setIdx: 0,
|
|
10831
10959
|
setId: 0,
|
|
10832
|
-
iconIdx:
|
|
10960
|
+
iconIdx: 130
|
|
10833
10961
|
},
|
|
10834
10962
|
{
|
|
10835
10963
|
icon: {
|
|
@@ -10856,7 +10984,7 @@ var icons = [
|
|
|
10856
10984
|
},
|
|
10857
10985
|
setIdx: 0,
|
|
10858
10986
|
setId: 0,
|
|
10859
|
-
iconIdx:
|
|
10987
|
+
iconIdx: 131
|
|
10860
10988
|
},
|
|
10861
10989
|
{
|
|
10862
10990
|
icon: {
|
|
@@ -10886,7 +11014,7 @@ var icons = [
|
|
|
10886
11014
|
},
|
|
10887
11015
|
setIdx: 0,
|
|
10888
11016
|
setId: 0,
|
|
10889
|
-
iconIdx:
|
|
11017
|
+
iconIdx: 132
|
|
10890
11018
|
},
|
|
10891
11019
|
{
|
|
10892
11020
|
icon: {
|
|
@@ -10911,7 +11039,7 @@ var icons = [
|
|
|
10911
11039
|
},
|
|
10912
11040
|
setIdx: 0,
|
|
10913
11041
|
setId: 0,
|
|
10914
|
-
iconIdx:
|
|
11042
|
+
iconIdx: 133
|
|
10915
11043
|
},
|
|
10916
11044
|
{
|
|
10917
11045
|
icon: {
|
|
@@ -10936,7 +11064,7 @@ var icons = [
|
|
|
10936
11064
|
},
|
|
10937
11065
|
setIdx: 0,
|
|
10938
11066
|
setId: 0,
|
|
10939
|
-
iconIdx:
|
|
11067
|
+
iconIdx: 134
|
|
10940
11068
|
},
|
|
10941
11069
|
{
|
|
10942
11070
|
icon: {
|
|
@@ -10962,7 +11090,7 @@ var icons = [
|
|
|
10962
11090
|
},
|
|
10963
11091
|
setIdx: 0,
|
|
10964
11092
|
setId: 0,
|
|
10965
|
-
iconIdx:
|
|
11093
|
+
iconIdx: 135
|
|
10966
11094
|
},
|
|
10967
11095
|
{
|
|
10968
11096
|
icon: {
|
|
@@ -10987,7 +11115,7 @@ var icons = [
|
|
|
10987
11115
|
},
|
|
10988
11116
|
setIdx: 0,
|
|
10989
11117
|
setId: 0,
|
|
10990
|
-
iconIdx:
|
|
11118
|
+
iconIdx: 136
|
|
10991
11119
|
},
|
|
10992
11120
|
{
|
|
10993
11121
|
icon: {
|
|
@@ -11013,7 +11141,7 @@ var icons = [
|
|
|
11013
11141
|
},
|
|
11014
11142
|
setIdx: 0,
|
|
11015
11143
|
setId: 0,
|
|
11016
|
-
iconIdx:
|
|
11144
|
+
iconIdx: 137
|
|
11017
11145
|
},
|
|
11018
11146
|
{
|
|
11019
11147
|
icon: {
|
|
@@ -11038,7 +11166,7 @@ var icons = [
|
|
|
11038
11166
|
},
|
|
11039
11167
|
setIdx: 0,
|
|
11040
11168
|
setId: 0,
|
|
11041
|
-
iconIdx:
|
|
11169
|
+
iconIdx: 138
|
|
11042
11170
|
},
|
|
11043
11171
|
{
|
|
11044
11172
|
icon: {
|
|
@@ -11063,7 +11191,7 @@ var icons = [
|
|
|
11063
11191
|
},
|
|
11064
11192
|
setIdx: 0,
|
|
11065
11193
|
setId: 0,
|
|
11066
|
-
iconIdx:
|
|
11194
|
+
iconIdx: 139
|
|
11067
11195
|
},
|
|
11068
11196
|
{
|
|
11069
11197
|
icon: {
|
|
@@ -11094,7 +11222,7 @@ var icons = [
|
|
|
11094
11222
|
},
|
|
11095
11223
|
setIdx: 0,
|
|
11096
11224
|
setId: 0,
|
|
11097
|
-
iconIdx:
|
|
11225
|
+
iconIdx: 140
|
|
11098
11226
|
},
|
|
11099
11227
|
{
|
|
11100
11228
|
icon: {
|
|
@@ -11119,7 +11247,7 @@ var icons = [
|
|
|
11119
11247
|
},
|
|
11120
11248
|
setIdx: 0,
|
|
11121
11249
|
setId: 0,
|
|
11122
|
-
iconIdx:
|
|
11250
|
+
iconIdx: 141
|
|
11123
11251
|
},
|
|
11124
11252
|
{
|
|
11125
11253
|
icon: {
|
|
@@ -11144,7 +11272,7 @@ var icons = [
|
|
|
11144
11272
|
},
|
|
11145
11273
|
setIdx: 0,
|
|
11146
11274
|
setId: 0,
|
|
11147
|
-
iconIdx:
|
|
11275
|
+
iconIdx: 142
|
|
11148
11276
|
},
|
|
11149
11277
|
{
|
|
11150
11278
|
icon: {
|
|
@@ -11169,7 +11297,7 @@ var icons = [
|
|
|
11169
11297
|
},
|
|
11170
11298
|
setIdx: 0,
|
|
11171
11299
|
setId: 0,
|
|
11172
|
-
iconIdx:
|
|
11300
|
+
iconIdx: 143
|
|
11173
11301
|
},
|
|
11174
11302
|
{
|
|
11175
11303
|
icon: {
|
|
@@ -11194,7 +11322,7 @@ var icons = [
|
|
|
11194
11322
|
},
|
|
11195
11323
|
setIdx: 0,
|
|
11196
11324
|
setId: 0,
|
|
11197
|
-
iconIdx:
|
|
11325
|
+
iconIdx: 144
|
|
11198
11326
|
},
|
|
11199
11327
|
{
|
|
11200
11328
|
icon: {
|
|
@@ -11220,7 +11348,7 @@ var icons = [
|
|
|
11220
11348
|
},
|
|
11221
11349
|
setIdx: 0,
|
|
11222
11350
|
setId: 0,
|
|
11223
|
-
iconIdx:
|
|
11351
|
+
iconIdx: 145
|
|
11224
11352
|
},
|
|
11225
11353
|
{
|
|
11226
11354
|
icon: {
|
|
@@ -11245,7 +11373,7 @@ var icons = [
|
|
|
11245
11373
|
},
|
|
11246
11374
|
setIdx: 0,
|
|
11247
11375
|
setId: 0,
|
|
11248
|
-
iconIdx:
|
|
11376
|
+
iconIdx: 146
|
|
11249
11377
|
},
|
|
11250
11378
|
{
|
|
11251
11379
|
icon: {
|
|
@@ -11270,7 +11398,7 @@ var icons = [
|
|
|
11270
11398
|
},
|
|
11271
11399
|
setIdx: 0,
|
|
11272
11400
|
setId: 0,
|
|
11273
|
-
iconIdx:
|
|
11401
|
+
iconIdx: 147
|
|
11274
11402
|
},
|
|
11275
11403
|
{
|
|
11276
11404
|
icon: {
|
|
@@ -11300,7 +11428,7 @@ var icons = [
|
|
|
11300
11428
|
},
|
|
11301
11429
|
setIdx: 0,
|
|
11302
11430
|
setId: 0,
|
|
11303
|
-
iconIdx:
|
|
11431
|
+
iconIdx: 148
|
|
11304
11432
|
},
|
|
11305
11433
|
{
|
|
11306
11434
|
icon: {
|
|
@@ -11325,7 +11453,7 @@ var icons = [
|
|
|
11325
11453
|
},
|
|
11326
11454
|
setIdx: 0,
|
|
11327
11455
|
setId: 0,
|
|
11328
|
-
iconIdx:
|
|
11456
|
+
iconIdx: 149
|
|
11329
11457
|
},
|
|
11330
11458
|
{
|
|
11331
11459
|
icon: {
|
|
@@ -11350,7 +11478,7 @@ var icons = [
|
|
|
11350
11478
|
},
|
|
11351
11479
|
setIdx: 0,
|
|
11352
11480
|
setId: 0,
|
|
11353
|
-
iconIdx:
|
|
11481
|
+
iconIdx: 150
|
|
11354
11482
|
},
|
|
11355
11483
|
{
|
|
11356
11484
|
icon: {
|
|
@@ -11375,7 +11503,7 @@ var icons = [
|
|
|
11375
11503
|
},
|
|
11376
11504
|
setIdx: 0,
|
|
11377
11505
|
setId: 0,
|
|
11378
|
-
iconIdx:
|
|
11506
|
+
iconIdx: 151
|
|
11379
11507
|
},
|
|
11380
11508
|
{
|
|
11381
11509
|
icon: {
|
|
@@ -11400,7 +11528,7 @@ var icons = [
|
|
|
11400
11528
|
},
|
|
11401
11529
|
setIdx: 0,
|
|
11402
11530
|
setId: 0,
|
|
11403
|
-
iconIdx:
|
|
11531
|
+
iconIdx: 152
|
|
11404
11532
|
},
|
|
11405
11533
|
{
|
|
11406
11534
|
icon: {
|
|
@@ -11425,7 +11553,7 @@ var icons = [
|
|
|
11425
11553
|
},
|
|
11426
11554
|
setIdx: 0,
|
|
11427
11555
|
setId: 0,
|
|
11428
|
-
iconIdx:
|
|
11556
|
+
iconIdx: 153
|
|
11429
11557
|
},
|
|
11430
11558
|
{
|
|
11431
11559
|
icon: {
|
|
@@ -11450,7 +11578,7 @@ var icons = [
|
|
|
11450
11578
|
},
|
|
11451
11579
|
setIdx: 0,
|
|
11452
11580
|
setId: 0,
|
|
11453
|
-
iconIdx:
|
|
11581
|
+
iconIdx: 154
|
|
11454
11582
|
},
|
|
11455
11583
|
{
|
|
11456
11584
|
icon: {
|
|
@@ -11475,7 +11603,7 @@ var icons = [
|
|
|
11475
11603
|
},
|
|
11476
11604
|
setIdx: 0,
|
|
11477
11605
|
setId: 0,
|
|
11478
|
-
iconIdx:
|
|
11606
|
+
iconIdx: 155
|
|
11479
11607
|
},
|
|
11480
11608
|
{
|
|
11481
11609
|
icon: {
|
|
@@ -11503,7 +11631,7 @@ var icons = [
|
|
|
11503
11631
|
},
|
|
11504
11632
|
setIdx: 0,
|
|
11505
11633
|
setId: 0,
|
|
11506
|
-
iconIdx:
|
|
11634
|
+
iconIdx: 156
|
|
11507
11635
|
},
|
|
11508
11636
|
{
|
|
11509
11637
|
icon: {
|
|
@@ -11528,7 +11656,7 @@ var icons = [
|
|
|
11528
11656
|
},
|
|
11529
11657
|
setIdx: 0,
|
|
11530
11658
|
setId: 0,
|
|
11531
|
-
iconIdx:
|
|
11659
|
+
iconIdx: 157
|
|
11532
11660
|
},
|
|
11533
11661
|
{
|
|
11534
11662
|
icon: {
|
|
@@ -11553,7 +11681,7 @@ var icons = [
|
|
|
11553
11681
|
},
|
|
11554
11682
|
setIdx: 0,
|
|
11555
11683
|
setId: 0,
|
|
11556
|
-
iconIdx:
|
|
11684
|
+
iconIdx: 158
|
|
11557
11685
|
},
|
|
11558
11686
|
{
|
|
11559
11687
|
icon: {
|
|
@@ -11578,7 +11706,7 @@ var icons = [
|
|
|
11578
11706
|
},
|
|
11579
11707
|
setIdx: 0,
|
|
11580
11708
|
setId: 0,
|
|
11581
|
-
iconIdx:
|
|
11709
|
+
iconIdx: 159
|
|
11582
11710
|
},
|
|
11583
11711
|
{
|
|
11584
11712
|
icon: {
|
|
@@ -11603,7 +11731,7 @@ var icons = [
|
|
|
11603
11731
|
},
|
|
11604
11732
|
setIdx: 0,
|
|
11605
11733
|
setId: 0,
|
|
11606
|
-
iconIdx:
|
|
11734
|
+
iconIdx: 160
|
|
11607
11735
|
},
|
|
11608
11736
|
{
|
|
11609
11737
|
icon: {
|
|
@@ -11630,7 +11758,7 @@ var icons = [
|
|
|
11630
11758
|
},
|
|
11631
11759
|
setIdx: 0,
|
|
11632
11760
|
setId: 0,
|
|
11633
|
-
iconIdx:
|
|
11761
|
+
iconIdx: 161
|
|
11634
11762
|
},
|
|
11635
11763
|
{
|
|
11636
11764
|
icon: {
|
|
@@ -11660,7 +11788,7 @@ var icons = [
|
|
|
11660
11788
|
},
|
|
11661
11789
|
setIdx: 0,
|
|
11662
11790
|
setId: 0,
|
|
11663
|
-
iconIdx:
|
|
11791
|
+
iconIdx: 162
|
|
11664
11792
|
},
|
|
11665
11793
|
{
|
|
11666
11794
|
icon: {
|
|
@@ -11685,7 +11813,7 @@ var icons = [
|
|
|
11685
11813
|
},
|
|
11686
11814
|
setIdx: 0,
|
|
11687
11815
|
setId: 0,
|
|
11688
|
-
iconIdx:
|
|
11816
|
+
iconIdx: 163
|
|
11689
11817
|
},
|
|
11690
11818
|
{
|
|
11691
11819
|
icon: {
|
|
@@ -11710,7 +11838,7 @@ var icons = [
|
|
|
11710
11838
|
},
|
|
11711
11839
|
setIdx: 0,
|
|
11712
11840
|
setId: 0,
|
|
11713
|
-
iconIdx:
|
|
11841
|
+
iconIdx: 164
|
|
11714
11842
|
},
|
|
11715
11843
|
{
|
|
11716
11844
|
icon: {
|
|
@@ -11735,7 +11863,7 @@ var icons = [
|
|
|
11735
11863
|
},
|
|
11736
11864
|
setIdx: 0,
|
|
11737
11865
|
setId: 0,
|
|
11738
|
-
iconIdx:
|
|
11866
|
+
iconIdx: 165
|
|
11739
11867
|
},
|
|
11740
11868
|
{
|
|
11741
11869
|
icon: {
|
|
@@ -11760,7 +11888,7 @@ var icons = [
|
|
|
11760
11888
|
},
|
|
11761
11889
|
setIdx: 0,
|
|
11762
11890
|
setId: 0,
|
|
11763
|
-
iconIdx:
|
|
11891
|
+
iconIdx: 166
|
|
11764
11892
|
},
|
|
11765
11893
|
{
|
|
11766
11894
|
icon: {
|
|
@@ -11786,7 +11914,7 @@ var icons = [
|
|
|
11786
11914
|
},
|
|
11787
11915
|
setIdx: 0,
|
|
11788
11916
|
setId: 0,
|
|
11789
|
-
iconIdx:
|
|
11917
|
+
iconIdx: 167
|
|
11790
11918
|
},
|
|
11791
11919
|
{
|
|
11792
11920
|
icon: {
|
|
@@ -11811,7 +11939,7 @@ var icons = [
|
|
|
11811
11939
|
},
|
|
11812
11940
|
setIdx: 0,
|
|
11813
11941
|
setId: 0,
|
|
11814
|
-
iconIdx:
|
|
11942
|
+
iconIdx: 168
|
|
11815
11943
|
},
|
|
11816
11944
|
{
|
|
11817
11945
|
icon: {
|
|
@@ -11837,7 +11965,7 @@ var icons = [
|
|
|
11837
11965
|
},
|
|
11838
11966
|
setIdx: 0,
|
|
11839
11967
|
setId: 0,
|
|
11840
|
-
iconIdx:
|
|
11968
|
+
iconIdx: 169
|
|
11841
11969
|
},
|
|
11842
11970
|
{
|
|
11843
11971
|
icon: {
|
|
@@ -11863,7 +11991,7 @@ var icons = [
|
|
|
11863
11991
|
},
|
|
11864
11992
|
setIdx: 0,
|
|
11865
11993
|
setId: 0,
|
|
11866
|
-
iconIdx:
|
|
11994
|
+
iconIdx: 170
|
|
11867
11995
|
},
|
|
11868
11996
|
{
|
|
11869
11997
|
icon: {
|
|
@@ -11889,7 +12017,7 @@ var icons = [
|
|
|
11889
12017
|
},
|
|
11890
12018
|
setIdx: 0,
|
|
11891
12019
|
setId: 0,
|
|
11892
|
-
iconIdx:
|
|
12020
|
+
iconIdx: 171
|
|
11893
12021
|
},
|
|
11894
12022
|
{
|
|
11895
12023
|
icon: {
|
|
@@ -11916,7 +12044,7 @@ var icons = [
|
|
|
11916
12044
|
},
|
|
11917
12045
|
setIdx: 0,
|
|
11918
12046
|
setId: 0,
|
|
11919
|
-
iconIdx:
|
|
12047
|
+
iconIdx: 172
|
|
11920
12048
|
},
|
|
11921
12049
|
{
|
|
11922
12050
|
icon: {
|
|
@@ -11942,7 +12070,7 @@ var icons = [
|
|
|
11942
12070
|
},
|
|
11943
12071
|
setIdx: 0,
|
|
11944
12072
|
setId: 0,
|
|
11945
|
-
iconIdx:
|
|
12073
|
+
iconIdx: 173
|
|
11946
12074
|
},
|
|
11947
12075
|
{
|
|
11948
12076
|
icon: {
|
|
@@ -11968,7 +12096,7 @@ var icons = [
|
|
|
11968
12096
|
},
|
|
11969
12097
|
setIdx: 0,
|
|
11970
12098
|
setId: 0,
|
|
11971
|
-
iconIdx:
|
|
12099
|
+
iconIdx: 174
|
|
11972
12100
|
},
|
|
11973
12101
|
{
|
|
11974
12102
|
icon: {
|
|
@@ -11995,7 +12123,7 @@ var icons = [
|
|
|
11995
12123
|
},
|
|
11996
12124
|
setIdx: 0,
|
|
11997
12125
|
setId: 0,
|
|
11998
|
-
iconIdx:
|
|
12126
|
+
iconIdx: 175
|
|
11999
12127
|
},
|
|
12000
12128
|
{
|
|
12001
12129
|
icon: {
|
|
@@ -12020,7 +12148,7 @@ var icons = [
|
|
|
12020
12148
|
},
|
|
12021
12149
|
setIdx: 0,
|
|
12022
12150
|
setId: 0,
|
|
12023
|
-
iconIdx:
|
|
12151
|
+
iconIdx: 176
|
|
12024
12152
|
},
|
|
12025
12153
|
{
|
|
12026
12154
|
icon: {
|
|
@@ -12046,7 +12174,7 @@ var icons = [
|
|
|
12046
12174
|
},
|
|
12047
12175
|
setIdx: 0,
|
|
12048
12176
|
setId: 0,
|
|
12049
|
-
iconIdx:
|
|
12177
|
+
iconIdx: 177
|
|
12050
12178
|
},
|
|
12051
12179
|
{
|
|
12052
12180
|
icon: {
|
|
@@ -12072,7 +12200,7 @@ var icons = [
|
|
|
12072
12200
|
},
|
|
12073
12201
|
setIdx: 0,
|
|
12074
12202
|
setId: 0,
|
|
12075
|
-
iconIdx:
|
|
12203
|
+
iconIdx: 178
|
|
12076
12204
|
},
|
|
12077
12205
|
{
|
|
12078
12206
|
icon: {
|
|
@@ -12099,7 +12227,7 @@ var icons = [
|
|
|
12099
12227
|
},
|
|
12100
12228
|
setIdx: 0,
|
|
12101
12229
|
setId: 0,
|
|
12102
|
-
iconIdx:
|
|
12230
|
+
iconIdx: 179
|
|
12103
12231
|
},
|
|
12104
12232
|
{
|
|
12105
12233
|
icon: {
|
|
@@ -12124,7 +12252,7 @@ var icons = [
|
|
|
12124
12252
|
},
|
|
12125
12253
|
setIdx: 0,
|
|
12126
12254
|
setId: 0,
|
|
12127
|
-
iconIdx:
|
|
12255
|
+
iconIdx: 180
|
|
12128
12256
|
},
|
|
12129
12257
|
{
|
|
12130
12258
|
icon: {
|
|
@@ -12150,7 +12278,7 @@ var icons = [
|
|
|
12150
12278
|
},
|
|
12151
12279
|
setIdx: 0,
|
|
12152
12280
|
setId: 0,
|
|
12153
|
-
iconIdx:
|
|
12281
|
+
iconIdx: 181
|
|
12154
12282
|
},
|
|
12155
12283
|
{
|
|
12156
12284
|
icon: {
|
|
@@ -12175,7 +12303,7 @@ var icons = [
|
|
|
12175
12303
|
},
|
|
12176
12304
|
setIdx: 0,
|
|
12177
12305
|
setId: 0,
|
|
12178
|
-
iconIdx:
|
|
12306
|
+
iconIdx: 182
|
|
12179
12307
|
},
|
|
12180
12308
|
{
|
|
12181
12309
|
icon: {
|
|
@@ -12201,7 +12329,7 @@ var icons = [
|
|
|
12201
12329
|
},
|
|
12202
12330
|
setIdx: 0,
|
|
12203
12331
|
setId: 0,
|
|
12204
|
-
iconIdx:
|
|
12332
|
+
iconIdx: 183
|
|
12205
12333
|
},
|
|
12206
12334
|
{
|
|
12207
12335
|
icon: {
|
|
@@ -12229,7 +12357,7 @@ var icons = [
|
|
|
12229
12357
|
},
|
|
12230
12358
|
setIdx: 0,
|
|
12231
12359
|
setId: 0,
|
|
12232
|
-
iconIdx:
|
|
12360
|
+
iconIdx: 184
|
|
12233
12361
|
},
|
|
12234
12362
|
{
|
|
12235
12363
|
icon: {
|
|
@@ -12259,7 +12387,7 @@ var icons = [
|
|
|
12259
12387
|
},
|
|
12260
12388
|
setIdx: 0,
|
|
12261
12389
|
setId: 0,
|
|
12262
|
-
iconIdx:
|
|
12390
|
+
iconIdx: 185
|
|
12263
12391
|
},
|
|
12264
12392
|
{
|
|
12265
12393
|
icon: {
|
|
@@ -12284,7 +12412,7 @@ var icons = [
|
|
|
12284
12412
|
},
|
|
12285
12413
|
setIdx: 0,
|
|
12286
12414
|
setId: 0,
|
|
12287
|
-
iconIdx:
|
|
12415
|
+
iconIdx: 186
|
|
12288
12416
|
},
|
|
12289
12417
|
{
|
|
12290
12418
|
icon: {
|
|
@@ -12309,7 +12437,7 @@ var icons = [
|
|
|
12309
12437
|
},
|
|
12310
12438
|
setIdx: 0,
|
|
12311
12439
|
setId: 0,
|
|
12312
|
-
iconIdx:
|
|
12440
|
+
iconIdx: 187
|
|
12313
12441
|
},
|
|
12314
12442
|
{
|
|
12315
12443
|
icon: {
|
|
@@ -12334,7 +12462,7 @@ var icons = [
|
|
|
12334
12462
|
},
|
|
12335
12463
|
setIdx: 0,
|
|
12336
12464
|
setId: 0,
|
|
12337
|
-
iconIdx:
|
|
12465
|
+
iconIdx: 188
|
|
12338
12466
|
},
|
|
12339
12467
|
{
|
|
12340
12468
|
icon: {
|
|
@@ -12361,7 +12489,7 @@ var icons = [
|
|
|
12361
12489
|
},
|
|
12362
12490
|
setIdx: 0,
|
|
12363
12491
|
setId: 0,
|
|
12364
|
-
iconIdx:
|
|
12492
|
+
iconIdx: 189
|
|
12365
12493
|
},
|
|
12366
12494
|
{
|
|
12367
12495
|
icon: {
|
|
@@ -12386,7 +12514,7 @@ var icons = [
|
|
|
12386
12514
|
},
|
|
12387
12515
|
setIdx: 0,
|
|
12388
12516
|
setId: 0,
|
|
12389
|
-
iconIdx:
|
|
12517
|
+
iconIdx: 190
|
|
12390
12518
|
},
|
|
12391
12519
|
{
|
|
12392
12520
|
icon: {
|
|
@@ -12411,7 +12539,7 @@ var icons = [
|
|
|
12411
12539
|
},
|
|
12412
12540
|
setIdx: 0,
|
|
12413
12541
|
setId: 0,
|
|
12414
|
-
iconIdx:
|
|
12542
|
+
iconIdx: 191
|
|
12415
12543
|
},
|
|
12416
12544
|
{
|
|
12417
12545
|
icon: {
|
|
@@ -12436,7 +12564,7 @@ var icons = [
|
|
|
12436
12564
|
},
|
|
12437
12565
|
setIdx: 0,
|
|
12438
12566
|
setId: 0,
|
|
12439
|
-
iconIdx:
|
|
12567
|
+
iconIdx: 192
|
|
12440
12568
|
},
|
|
12441
12569
|
{
|
|
12442
12570
|
icon: {
|
|
@@ -12462,7 +12590,7 @@ var icons = [
|
|
|
12462
12590
|
},
|
|
12463
12591
|
setIdx: 0,
|
|
12464
12592
|
setId: 0,
|
|
12465
|
-
iconIdx:
|
|
12593
|
+
iconIdx: 193
|
|
12466
12594
|
},
|
|
12467
12595
|
{
|
|
12468
12596
|
icon: {
|
|
@@ -12488,7 +12616,7 @@ var icons = [
|
|
|
12488
12616
|
},
|
|
12489
12617
|
setIdx: 0,
|
|
12490
12618
|
setId: 0,
|
|
12491
|
-
iconIdx:
|
|
12619
|
+
iconIdx: 194
|
|
12492
12620
|
},
|
|
12493
12621
|
{
|
|
12494
12622
|
icon: {
|
|
@@ -12515,7 +12643,7 @@ var icons = [
|
|
|
12515
12643
|
},
|
|
12516
12644
|
setIdx: 0,
|
|
12517
12645
|
setId: 0,
|
|
12518
|
-
iconIdx:
|
|
12646
|
+
iconIdx: 195
|
|
12519
12647
|
},
|
|
12520
12648
|
{
|
|
12521
12649
|
icon: {
|
|
@@ -12541,7 +12669,7 @@ var icons = [
|
|
|
12541
12669
|
},
|
|
12542
12670
|
setIdx: 0,
|
|
12543
12671
|
setId: 0,
|
|
12544
|
-
iconIdx:
|
|
12672
|
+
iconIdx: 196
|
|
12545
12673
|
},
|
|
12546
12674
|
{
|
|
12547
12675
|
icon: {
|
|
@@ -12566,7 +12694,7 @@ var icons = [
|
|
|
12566
12694
|
},
|
|
12567
12695
|
setIdx: 0,
|
|
12568
12696
|
setId: 0,
|
|
12569
|
-
iconIdx:
|
|
12697
|
+
iconIdx: 197
|
|
12570
12698
|
},
|
|
12571
12699
|
{
|
|
12572
12700
|
icon: {
|
|
@@ -12591,7 +12719,7 @@ var icons = [
|
|
|
12591
12719
|
},
|
|
12592
12720
|
setIdx: 0,
|
|
12593
12721
|
setId: 0,
|
|
12594
|
-
iconIdx:
|
|
12722
|
+
iconIdx: 198
|
|
12595
12723
|
},
|
|
12596
12724
|
{
|
|
12597
12725
|
icon: {
|
|
@@ -12616,7 +12744,7 @@ var icons = [
|
|
|
12616
12744
|
},
|
|
12617
12745
|
setIdx: 0,
|
|
12618
12746
|
setId: 0,
|
|
12619
|
-
iconIdx:
|
|
12747
|
+
iconIdx: 199
|
|
12620
12748
|
},
|
|
12621
12749
|
{
|
|
12622
12750
|
icon: {
|
|
@@ -12642,7 +12770,7 @@ var icons = [
|
|
|
12642
12770
|
},
|
|
12643
12771
|
setIdx: 0,
|
|
12644
12772
|
setId: 0,
|
|
12645
|
-
iconIdx:
|
|
12773
|
+
iconIdx: 200
|
|
12646
12774
|
},
|
|
12647
12775
|
{
|
|
12648
12776
|
icon: {
|
|
@@ -12667,7 +12795,7 @@ var icons = [
|
|
|
12667
12795
|
},
|
|
12668
12796
|
setIdx: 0,
|
|
12669
12797
|
setId: 0,
|
|
12670
|
-
iconIdx:
|
|
12798
|
+
iconIdx: 201
|
|
12671
12799
|
},
|
|
12672
12800
|
{
|
|
12673
12801
|
icon: {
|
|
@@ -12695,7 +12823,7 @@ var icons = [
|
|
|
12695
12823
|
},
|
|
12696
12824
|
setIdx: 0,
|
|
12697
12825
|
setId: 0,
|
|
12698
|
-
iconIdx:
|
|
12826
|
+
iconIdx: 202
|
|
12699
12827
|
},
|
|
12700
12828
|
{
|
|
12701
12829
|
icon: {
|
|
@@ -12721,7 +12849,7 @@ var icons = [
|
|
|
12721
12849
|
},
|
|
12722
12850
|
setIdx: 0,
|
|
12723
12851
|
setId: 0,
|
|
12724
|
-
iconIdx:
|
|
12852
|
+
iconIdx: 203
|
|
12725
12853
|
},
|
|
12726
12854
|
{
|
|
12727
12855
|
icon: {
|
|
@@ -12746,7 +12874,7 @@ var icons = [
|
|
|
12746
12874
|
},
|
|
12747
12875
|
setIdx: 0,
|
|
12748
12876
|
setId: 0,
|
|
12749
|
-
iconIdx:
|
|
12877
|
+
iconIdx: 204
|
|
12750
12878
|
},
|
|
12751
12879
|
{
|
|
12752
12880
|
icon: {
|
|
@@ -12774,7 +12902,7 @@ var icons = [
|
|
|
12774
12902
|
},
|
|
12775
12903
|
setIdx: 0,
|
|
12776
12904
|
setId: 0,
|
|
12777
|
-
iconIdx:
|
|
12905
|
+
iconIdx: 205
|
|
12778
12906
|
},
|
|
12779
12907
|
{
|
|
12780
12908
|
icon: {
|
|
@@ -12802,7 +12930,7 @@ var icons = [
|
|
|
12802
12930
|
},
|
|
12803
12931
|
setIdx: 0,
|
|
12804
12932
|
setId: 0,
|
|
12805
|
-
iconIdx:
|
|
12933
|
+
iconIdx: 206
|
|
12806
12934
|
},
|
|
12807
12935
|
{
|
|
12808
12936
|
icon: {
|
|
@@ -12830,7 +12958,7 @@ var icons = [
|
|
|
12830
12958
|
},
|
|
12831
12959
|
setIdx: 0,
|
|
12832
12960
|
setId: 0,
|
|
12833
|
-
iconIdx:
|
|
12961
|
+
iconIdx: 207
|
|
12834
12962
|
},
|
|
12835
12963
|
{
|
|
12836
12964
|
icon: {
|
|
@@ -12858,7 +12986,7 @@ var icons = [
|
|
|
12858
12986
|
},
|
|
12859
12987
|
setIdx: 0,
|
|
12860
12988
|
setId: 0,
|
|
12861
|
-
iconIdx:
|
|
12989
|
+
iconIdx: 208
|
|
12862
12990
|
},
|
|
12863
12991
|
{
|
|
12864
12992
|
icon: {
|
|
@@ -12883,7 +13011,7 @@ var icons = [
|
|
|
12883
13011
|
},
|
|
12884
13012
|
setIdx: 0,
|
|
12885
13013
|
setId: 0,
|
|
12886
|
-
iconIdx:
|
|
13014
|
+
iconIdx: 209
|
|
12887
13015
|
},
|
|
12888
13016
|
{
|
|
12889
13017
|
icon: {
|
|
@@ -12908,7 +13036,7 @@ var icons = [
|
|
|
12908
13036
|
},
|
|
12909
13037
|
setIdx: 0,
|
|
12910
13038
|
setId: 0,
|
|
12911
|
-
iconIdx:
|
|
13039
|
+
iconIdx: 210
|
|
12912
13040
|
},
|
|
12913
13041
|
{
|
|
12914
13042
|
icon: {
|
|
@@ -12935,7 +13063,7 @@ var icons = [
|
|
|
12935
13063
|
},
|
|
12936
13064
|
setIdx: 0,
|
|
12937
13065
|
setId: 0,
|
|
12938
|
-
iconIdx:
|
|
13066
|
+
iconIdx: 211
|
|
12939
13067
|
},
|
|
12940
13068
|
{
|
|
12941
13069
|
icon: {
|
|
@@ -12961,7 +13089,7 @@ var icons = [
|
|
|
12961
13089
|
},
|
|
12962
13090
|
setIdx: 0,
|
|
12963
13091
|
setId: 0,
|
|
12964
|
-
iconIdx:
|
|
13092
|
+
iconIdx: 212
|
|
12965
13093
|
},
|
|
12966
13094
|
{
|
|
12967
13095
|
icon: {
|
|
@@ -12986,7 +13114,7 @@ var icons = [
|
|
|
12986
13114
|
},
|
|
12987
13115
|
setIdx: 0,
|
|
12988
13116
|
setId: 0,
|
|
12989
|
-
iconIdx:
|
|
13117
|
+
iconIdx: 213
|
|
12990
13118
|
},
|
|
12991
13119
|
{
|
|
12992
13120
|
icon: {
|
|
@@ -13011,7 +13139,7 @@ var icons = [
|
|
|
13011
13139
|
},
|
|
13012
13140
|
setIdx: 0,
|
|
13013
13141
|
setId: 0,
|
|
13014
|
-
iconIdx:
|
|
13142
|
+
iconIdx: 214
|
|
13015
13143
|
},
|
|
13016
13144
|
{
|
|
13017
13145
|
icon: {
|
|
@@ -13036,7 +13164,7 @@ var icons = [
|
|
|
13036
13164
|
},
|
|
13037
13165
|
setIdx: 0,
|
|
13038
13166
|
setId: 0,
|
|
13039
|
-
iconIdx:
|
|
13167
|
+
iconIdx: 215
|
|
13040
13168
|
},
|
|
13041
13169
|
{
|
|
13042
13170
|
icon: {
|
|
@@ -13062,7 +13190,7 @@ var icons = [
|
|
|
13062
13190
|
},
|
|
13063
13191
|
setIdx: 0,
|
|
13064
13192
|
setId: 0,
|
|
13065
|
-
iconIdx:
|
|
13193
|
+
iconIdx: 216
|
|
13066
13194
|
},
|
|
13067
13195
|
{
|
|
13068
13196
|
icon: {
|
|
@@ -13087,7 +13215,7 @@ var icons = [
|
|
|
13087
13215
|
},
|
|
13088
13216
|
setIdx: 0,
|
|
13089
13217
|
setId: 0,
|
|
13090
|
-
iconIdx:
|
|
13218
|
+
iconIdx: 217
|
|
13091
13219
|
},
|
|
13092
13220
|
{
|
|
13093
13221
|
icon: {
|
|
@@ -13112,7 +13240,7 @@ var icons = [
|
|
|
13112
13240
|
},
|
|
13113
13241
|
setIdx: 0,
|
|
13114
13242
|
setId: 0,
|
|
13115
|
-
iconIdx:
|
|
13243
|
+
iconIdx: 218
|
|
13116
13244
|
},
|
|
13117
13245
|
{
|
|
13118
13246
|
icon: {
|
|
@@ -13137,7 +13265,7 @@ var icons = [
|
|
|
13137
13265
|
},
|
|
13138
13266
|
setIdx: 0,
|
|
13139
13267
|
setId: 0,
|
|
13140
|
-
iconIdx:
|
|
13268
|
+
iconIdx: 219
|
|
13141
13269
|
},
|
|
13142
13270
|
{
|
|
13143
13271
|
icon: {
|
|
@@ -13163,7 +13291,7 @@ var icons = [
|
|
|
13163
13291
|
},
|
|
13164
13292
|
setIdx: 0,
|
|
13165
13293
|
setId: 0,
|
|
13166
|
-
iconIdx:
|
|
13294
|
+
iconIdx: 220
|
|
13167
13295
|
},
|
|
13168
13296
|
{
|
|
13169
13297
|
icon: {
|
|
@@ -13188,7 +13316,7 @@ var icons = [
|
|
|
13188
13316
|
},
|
|
13189
13317
|
setIdx: 0,
|
|
13190
13318
|
setId: 0,
|
|
13191
|
-
iconIdx:
|
|
13319
|
+
iconIdx: 221
|
|
13192
13320
|
},
|
|
13193
13321
|
{
|
|
13194
13322
|
icon: {
|
|
@@ -13213,7 +13341,7 @@ var icons = [
|
|
|
13213
13341
|
},
|
|
13214
13342
|
setIdx: 0,
|
|
13215
13343
|
setId: 0,
|
|
13216
|
-
iconIdx:
|
|
13344
|
+
iconIdx: 222
|
|
13217
13345
|
},
|
|
13218
13346
|
{
|
|
13219
13347
|
icon: {
|
|
@@ -13238,7 +13366,7 @@ var icons = [
|
|
|
13238
13366
|
},
|
|
13239
13367
|
setIdx: 0,
|
|
13240
13368
|
setId: 0,
|
|
13241
|
-
iconIdx:
|
|
13369
|
+
iconIdx: 223
|
|
13242
13370
|
},
|
|
13243
13371
|
{
|
|
13244
13372
|
icon: {
|
|
@@ -13266,7 +13394,7 @@ var icons = [
|
|
|
13266
13394
|
},
|
|
13267
13395
|
setIdx: 0,
|
|
13268
13396
|
setId: 0,
|
|
13269
|
-
iconIdx:
|
|
13397
|
+
iconIdx: 224
|
|
13270
13398
|
},
|
|
13271
13399
|
{
|
|
13272
13400
|
icon: {
|
|
@@ -13291,7 +13419,7 @@ var icons = [
|
|
|
13291
13419
|
},
|
|
13292
13420
|
setIdx: 0,
|
|
13293
13421
|
setId: 0,
|
|
13294
|
-
iconIdx:
|
|
13422
|
+
iconIdx: 225
|
|
13295
13423
|
},
|
|
13296
13424
|
{
|
|
13297
13425
|
icon: {
|
|
@@ -13319,7 +13447,7 @@ var icons = [
|
|
|
13319
13447
|
},
|
|
13320
13448
|
setIdx: 0,
|
|
13321
13449
|
setId: 0,
|
|
13322
|
-
iconIdx:
|
|
13450
|
+
iconIdx: 226
|
|
13323
13451
|
},
|
|
13324
13452
|
{
|
|
13325
13453
|
icon: {
|
|
@@ -13344,7 +13472,7 @@ var icons = [
|
|
|
13344
13472
|
},
|
|
13345
13473
|
setIdx: 0,
|
|
13346
13474
|
setId: 0,
|
|
13347
|
-
iconIdx:
|
|
13475
|
+
iconIdx: 227
|
|
13348
13476
|
},
|
|
13349
13477
|
{
|
|
13350
13478
|
icon: {
|
|
@@ -13369,7 +13497,7 @@ var icons = [
|
|
|
13369
13497
|
},
|
|
13370
13498
|
setIdx: 0,
|
|
13371
13499
|
setId: 0,
|
|
13372
|
-
iconIdx:
|
|
13500
|
+
iconIdx: 228
|
|
13373
13501
|
},
|
|
13374
13502
|
{
|
|
13375
13503
|
icon: {
|
|
@@ -13394,7 +13522,7 @@ var icons = [
|
|
|
13394
13522
|
},
|
|
13395
13523
|
setIdx: 0,
|
|
13396
13524
|
setId: 0,
|
|
13397
|
-
iconIdx:
|
|
13525
|
+
iconIdx: 229
|
|
13398
13526
|
},
|
|
13399
13527
|
{
|
|
13400
13528
|
icon: {
|
|
@@ -13419,7 +13547,7 @@ var icons = [
|
|
|
13419
13547
|
},
|
|
13420
13548
|
setIdx: 0,
|
|
13421
13549
|
setId: 0,
|
|
13422
|
-
iconIdx:
|
|
13550
|
+
iconIdx: 230
|
|
13423
13551
|
},
|
|
13424
13552
|
{
|
|
13425
13553
|
icon: {
|
|
@@ -13444,7 +13572,7 @@ var icons = [
|
|
|
13444
13572
|
},
|
|
13445
13573
|
setIdx: 0,
|
|
13446
13574
|
setId: 0,
|
|
13447
|
-
iconIdx:
|
|
13575
|
+
iconIdx: 231
|
|
13448
13576
|
},
|
|
13449
13577
|
{
|
|
13450
13578
|
icon: {
|
|
@@ -13469,7 +13597,7 @@ var icons = [
|
|
|
13469
13597
|
},
|
|
13470
13598
|
setIdx: 0,
|
|
13471
13599
|
setId: 0,
|
|
13472
|
-
iconIdx:
|
|
13600
|
+
iconIdx: 232
|
|
13473
13601
|
},
|
|
13474
13602
|
{
|
|
13475
13603
|
icon: {
|
|
@@ -13494,7 +13622,7 @@ var icons = [
|
|
|
13494
13622
|
},
|
|
13495
13623
|
setIdx: 0,
|
|
13496
13624
|
setId: 0,
|
|
13497
|
-
iconIdx:
|
|
13625
|
+
iconIdx: 233
|
|
13498
13626
|
},
|
|
13499
13627
|
{
|
|
13500
13628
|
icon: {
|
|
@@ -13519,7 +13647,7 @@ var icons = [
|
|
|
13519
13647
|
},
|
|
13520
13648
|
setIdx: 0,
|
|
13521
13649
|
setId: 0,
|
|
13522
|
-
iconIdx:
|
|
13650
|
+
iconIdx: 234
|
|
13523
13651
|
},
|
|
13524
13652
|
{
|
|
13525
13653
|
icon: {
|
|
@@ -13544,7 +13672,7 @@ var icons = [
|
|
|
13544
13672
|
},
|
|
13545
13673
|
setIdx: 0,
|
|
13546
13674
|
setId: 0,
|
|
13547
|
-
iconIdx:
|
|
13675
|
+
iconIdx: 235
|
|
13548
13676
|
},
|
|
13549
13677
|
{
|
|
13550
13678
|
icon: {
|
|
@@ -13569,7 +13697,7 @@ var icons = [
|
|
|
13569
13697
|
},
|
|
13570
13698
|
setIdx: 0,
|
|
13571
13699
|
setId: 0,
|
|
13572
|
-
iconIdx:
|
|
13700
|
+
iconIdx: 236
|
|
13573
13701
|
},
|
|
13574
13702
|
{
|
|
13575
13703
|
icon: {
|
|
@@ -13596,7 +13724,7 @@ var icons = [
|
|
|
13596
13724
|
},
|
|
13597
13725
|
setIdx: 0,
|
|
13598
13726
|
setId: 0,
|
|
13599
|
-
iconIdx:
|
|
13727
|
+
iconIdx: 237
|
|
13600
13728
|
},
|
|
13601
13729
|
{
|
|
13602
13730
|
icon: {
|
|
@@ -13621,7 +13749,7 @@ var icons = [
|
|
|
13621
13749
|
},
|
|
13622
13750
|
setIdx: 0,
|
|
13623
13751
|
setId: 0,
|
|
13624
|
-
iconIdx:
|
|
13752
|
+
iconIdx: 238
|
|
13625
13753
|
},
|
|
13626
13754
|
{
|
|
13627
13755
|
icon: {
|
|
@@ -13646,7 +13774,7 @@ var icons = [
|
|
|
13646
13774
|
},
|
|
13647
13775
|
setIdx: 0,
|
|
13648
13776
|
setId: 0,
|
|
13649
|
-
iconIdx:
|
|
13777
|
+
iconIdx: 239
|
|
13650
13778
|
},
|
|
13651
13779
|
{
|
|
13652
13780
|
icon: {
|
|
@@ -13671,7 +13799,7 @@ var icons = [
|
|
|
13671
13799
|
},
|
|
13672
13800
|
setIdx: 0,
|
|
13673
13801
|
setId: 0,
|
|
13674
|
-
iconIdx:
|
|
13802
|
+
iconIdx: 240
|
|
13675
13803
|
},
|
|
13676
13804
|
{
|
|
13677
13805
|
icon: {
|
|
@@ -13696,7 +13824,7 @@ var icons = [
|
|
|
13696
13824
|
},
|
|
13697
13825
|
setIdx: 0,
|
|
13698
13826
|
setId: 0,
|
|
13699
|
-
iconIdx:
|
|
13827
|
+
iconIdx: 241
|
|
13700
13828
|
},
|
|
13701
13829
|
{
|
|
13702
13830
|
icon: {
|
|
@@ -13721,7 +13849,7 @@ var icons = [
|
|
|
13721
13849
|
},
|
|
13722
13850
|
setIdx: 0,
|
|
13723
13851
|
setId: 0,
|
|
13724
|
-
iconIdx:
|
|
13852
|
+
iconIdx: 242
|
|
13725
13853
|
},
|
|
13726
13854
|
{
|
|
13727
13855
|
icon: {
|
|
@@ -13750,7 +13878,7 @@ var icons = [
|
|
|
13750
13878
|
},
|
|
13751
13879
|
setIdx: 0,
|
|
13752
13880
|
setId: 0,
|
|
13753
|
-
iconIdx:
|
|
13881
|
+
iconIdx: 243
|
|
13754
13882
|
},
|
|
13755
13883
|
{
|
|
13756
13884
|
icon: {
|
|
@@ -13779,7 +13907,7 @@ var icons = [
|
|
|
13779
13907
|
},
|
|
13780
13908
|
setIdx: 0,
|
|
13781
13909
|
setId: 0,
|
|
13782
|
-
iconIdx:
|
|
13910
|
+
iconIdx: 244
|
|
13783
13911
|
},
|
|
13784
13912
|
{
|
|
13785
13913
|
icon: {
|
|
@@ -13804,7 +13932,7 @@ var icons = [
|
|
|
13804
13932
|
},
|
|
13805
13933
|
setIdx: 0,
|
|
13806
13934
|
setId: 0,
|
|
13807
|
-
iconIdx:
|
|
13935
|
+
iconIdx: 245
|
|
13808
13936
|
},
|
|
13809
13937
|
{
|
|
13810
13938
|
icon: {
|
|
@@ -13829,7 +13957,7 @@ var icons = [
|
|
|
13829
13957
|
},
|
|
13830
13958
|
setIdx: 0,
|
|
13831
13959
|
setId: 0,
|
|
13832
|
-
iconIdx:
|
|
13960
|
+
iconIdx: 246
|
|
13833
13961
|
},
|
|
13834
13962
|
{
|
|
13835
13963
|
icon: {
|
|
@@ -13856,7 +13984,7 @@ var icons = [
|
|
|
13856
13984
|
},
|
|
13857
13985
|
setIdx: 0,
|
|
13858
13986
|
setId: 0,
|
|
13859
|
-
iconIdx:
|
|
13987
|
+
iconIdx: 247
|
|
13860
13988
|
},
|
|
13861
13989
|
{
|
|
13862
13990
|
icon: {
|
|
@@ -13883,7 +14011,7 @@ var icons = [
|
|
|
13883
14011
|
},
|
|
13884
14012
|
setIdx: 0,
|
|
13885
14013
|
setId: 0,
|
|
13886
|
-
iconIdx:
|
|
14014
|
+
iconIdx: 248
|
|
13887
14015
|
},
|
|
13888
14016
|
{
|
|
13889
14017
|
icon: {
|
|
@@ -13908,7 +14036,7 @@ var icons = [
|
|
|
13908
14036
|
},
|
|
13909
14037
|
setIdx: 0,
|
|
13910
14038
|
setId: 0,
|
|
13911
|
-
iconIdx:
|
|
14039
|
+
iconIdx: 249
|
|
13912
14040
|
},
|
|
13913
14041
|
{
|
|
13914
14042
|
icon: {
|
|
@@ -13938,7 +14066,7 @@ var icons = [
|
|
|
13938
14066
|
},
|
|
13939
14067
|
setIdx: 0,
|
|
13940
14068
|
setId: 0,
|
|
13941
|
-
iconIdx:
|
|
14069
|
+
iconIdx: 250
|
|
13942
14070
|
},
|
|
13943
14071
|
{
|
|
13944
14072
|
icon: {
|
|
@@ -13963,7 +14091,7 @@ var icons = [
|
|
|
13963
14091
|
},
|
|
13964
14092
|
setIdx: 0,
|
|
13965
14093
|
setId: 0,
|
|
13966
|
-
iconIdx:
|
|
14094
|
+
iconIdx: 251
|
|
13967
14095
|
},
|
|
13968
14096
|
{
|
|
13969
14097
|
icon: {
|
|
@@ -13988,7 +14116,7 @@ var icons = [
|
|
|
13988
14116
|
},
|
|
13989
14117
|
setIdx: 0,
|
|
13990
14118
|
setId: 0,
|
|
13991
|
-
iconIdx:
|
|
14119
|
+
iconIdx: 252
|
|
13992
14120
|
},
|
|
13993
14121
|
{
|
|
13994
14122
|
icon: {
|
|
@@ -14016,7 +14144,7 @@ var icons = [
|
|
|
14016
14144
|
},
|
|
14017
14145
|
setIdx: 0,
|
|
14018
14146
|
setId: 0,
|
|
14019
|
-
iconIdx:
|
|
14147
|
+
iconIdx: 253
|
|
14020
14148
|
},
|
|
14021
14149
|
{
|
|
14022
14150
|
icon: {
|
|
@@ -14041,7 +14169,7 @@ var icons = [
|
|
|
14041
14169
|
},
|
|
14042
14170
|
setIdx: 0,
|
|
14043
14171
|
setId: 0,
|
|
14044
|
-
iconIdx:
|
|
14172
|
+
iconIdx: 254
|
|
14045
14173
|
},
|
|
14046
14174
|
{
|
|
14047
14175
|
icon: {
|
|
@@ -14072,7 +14200,7 @@ var icons = [
|
|
|
14072
14200
|
},
|
|
14073
14201
|
setIdx: 0,
|
|
14074
14202
|
setId: 0,
|
|
14075
|
-
iconIdx:
|
|
14203
|
+
iconIdx: 255
|
|
14076
14204
|
},
|
|
14077
14205
|
{
|
|
14078
14206
|
icon: {
|
|
@@ -14098,7 +14226,7 @@ var icons = [
|
|
|
14098
14226
|
},
|
|
14099
14227
|
setIdx: 0,
|
|
14100
14228
|
setId: 0,
|
|
14101
|
-
iconIdx:
|
|
14229
|
+
iconIdx: 256
|
|
14102
14230
|
},
|
|
14103
14231
|
{
|
|
14104
14232
|
icon: {
|
|
@@ -14123,7 +14251,7 @@ var icons = [
|
|
|
14123
14251
|
},
|
|
14124
14252
|
setIdx: 0,
|
|
14125
14253
|
setId: 0,
|
|
14126
|
-
iconIdx:
|
|
14254
|
+
iconIdx: 257
|
|
14127
14255
|
},
|
|
14128
14256
|
{
|
|
14129
14257
|
icon: {
|
|
@@ -14148,7 +14276,7 @@ var icons = [
|
|
|
14148
14276
|
},
|
|
14149
14277
|
setIdx: 0,
|
|
14150
14278
|
setId: 0,
|
|
14151
|
-
iconIdx:
|
|
14279
|
+
iconIdx: 258
|
|
14152
14280
|
},
|
|
14153
14281
|
{
|
|
14154
14282
|
icon: {
|
|
@@ -14176,7 +14304,7 @@ var icons = [
|
|
|
14176
14304
|
},
|
|
14177
14305
|
setIdx: 0,
|
|
14178
14306
|
setId: 0,
|
|
14179
|
-
iconIdx:
|
|
14307
|
+
iconIdx: 259
|
|
14180
14308
|
},
|
|
14181
14309
|
{
|
|
14182
14310
|
icon: {
|
|
@@ -14201,7 +14329,7 @@ var icons = [
|
|
|
14201
14329
|
},
|
|
14202
14330
|
setIdx: 0,
|
|
14203
14331
|
setId: 0,
|
|
14204
|
-
iconIdx:
|
|
14332
|
+
iconIdx: 260
|
|
14205
14333
|
},
|
|
14206
14334
|
{
|
|
14207
14335
|
icon: {
|
|
@@ -14226,7 +14354,7 @@ var icons = [
|
|
|
14226
14354
|
},
|
|
14227
14355
|
setIdx: 0,
|
|
14228
14356
|
setId: 0,
|
|
14229
|
-
iconIdx:
|
|
14357
|
+
iconIdx: 261
|
|
14230
14358
|
},
|
|
14231
14359
|
{
|
|
14232
14360
|
icon: {
|
|
@@ -14256,7 +14384,7 @@ var icons = [
|
|
|
14256
14384
|
},
|
|
14257
14385
|
setIdx: 0,
|
|
14258
14386
|
setId: 0,
|
|
14259
|
-
iconIdx:
|
|
14387
|
+
iconIdx: 262
|
|
14260
14388
|
},
|
|
14261
14389
|
{
|
|
14262
14390
|
icon: {
|
|
@@ -14289,7 +14417,7 @@ var icons = [
|
|
|
14289
14417
|
},
|
|
14290
14418
|
setIdx: 0,
|
|
14291
14419
|
setId: 0,
|
|
14292
|
-
iconIdx:
|
|
14420
|
+
iconIdx: 263
|
|
14293
14421
|
},
|
|
14294
14422
|
{
|
|
14295
14423
|
icon: {
|
|
@@ -14314,7 +14442,7 @@ var icons = [
|
|
|
14314
14442
|
},
|
|
14315
14443
|
setIdx: 0,
|
|
14316
14444
|
setId: 0,
|
|
14317
|
-
iconIdx:
|
|
14445
|
+
iconIdx: 264
|
|
14318
14446
|
},
|
|
14319
14447
|
{
|
|
14320
14448
|
icon: {
|
|
@@ -14346,7 +14474,7 @@ var icons = [
|
|
|
14346
14474
|
},
|
|
14347
14475
|
setIdx: 0,
|
|
14348
14476
|
setId: 0,
|
|
14349
|
-
iconIdx:
|
|
14477
|
+
iconIdx: 265
|
|
14350
14478
|
},
|
|
14351
14479
|
{
|
|
14352
14480
|
icon: {
|
|
@@ -14371,7 +14499,7 @@ var icons = [
|
|
|
14371
14499
|
},
|
|
14372
14500
|
setIdx: 0,
|
|
14373
14501
|
setId: 0,
|
|
14374
|
-
iconIdx:
|
|
14502
|
+
iconIdx: 266
|
|
14375
14503
|
},
|
|
14376
14504
|
{
|
|
14377
14505
|
icon: {
|
|
@@ -14396,7 +14524,7 @@ var icons = [
|
|
|
14396
14524
|
},
|
|
14397
14525
|
setIdx: 0,
|
|
14398
14526
|
setId: 0,
|
|
14399
|
-
iconIdx:
|
|
14527
|
+
iconIdx: 267
|
|
14400
14528
|
},
|
|
14401
14529
|
{
|
|
14402
14530
|
icon: {
|
|
@@ -14421,7 +14549,7 @@ var icons = [
|
|
|
14421
14549
|
},
|
|
14422
14550
|
setIdx: 0,
|
|
14423
14551
|
setId: 0,
|
|
14424
|
-
iconIdx:
|
|
14552
|
+
iconIdx: 268
|
|
14425
14553
|
},
|
|
14426
14554
|
{
|
|
14427
14555
|
icon: {
|
|
@@ -14446,7 +14574,7 @@ var icons = [
|
|
|
14446
14574
|
},
|
|
14447
14575
|
setIdx: 0,
|
|
14448
14576
|
setId: 0,
|
|
14449
|
-
iconIdx:
|
|
14577
|
+
iconIdx: 269
|
|
14450
14578
|
},
|
|
14451
14579
|
{
|
|
14452
14580
|
icon: {
|
|
@@ -14471,7 +14599,7 @@ var icons = [
|
|
|
14471
14599
|
},
|
|
14472
14600
|
setIdx: 0,
|
|
14473
14601
|
setId: 0,
|
|
14474
|
-
iconIdx:
|
|
14602
|
+
iconIdx: 270
|
|
14475
14603
|
},
|
|
14476
14604
|
{
|
|
14477
14605
|
icon: {
|
|
@@ -14496,7 +14624,7 @@ var icons = [
|
|
|
14496
14624
|
},
|
|
14497
14625
|
setIdx: 0,
|
|
14498
14626
|
setId: 0,
|
|
14499
|
-
iconIdx:
|
|
14627
|
+
iconIdx: 271
|
|
14500
14628
|
},
|
|
14501
14629
|
{
|
|
14502
14630
|
icon: {
|
|
@@ -14521,7 +14649,7 @@ var icons = [
|
|
|
14521
14649
|
},
|
|
14522
14650
|
setIdx: 0,
|
|
14523
14651
|
setId: 0,
|
|
14524
|
-
iconIdx:
|
|
14652
|
+
iconIdx: 272
|
|
14525
14653
|
},
|
|
14526
14654
|
{
|
|
14527
14655
|
icon: {
|
|
@@ -14546,7 +14674,7 @@ var icons = [
|
|
|
14546
14674
|
},
|
|
14547
14675
|
setIdx: 0,
|
|
14548
14676
|
setId: 0,
|
|
14549
|
-
iconIdx:
|
|
14677
|
+
iconIdx: 273
|
|
14550
14678
|
},
|
|
14551
14679
|
{
|
|
14552
14680
|
icon: {
|
|
@@ -14573,7 +14701,7 @@ var icons = [
|
|
|
14573
14701
|
},
|
|
14574
14702
|
setIdx: 0,
|
|
14575
14703
|
setId: 0,
|
|
14576
|
-
iconIdx:
|
|
14704
|
+
iconIdx: 274
|
|
14577
14705
|
},
|
|
14578
14706
|
{
|
|
14579
14707
|
icon: {
|
|
@@ -14598,7 +14726,7 @@ var icons = [
|
|
|
14598
14726
|
},
|
|
14599
14727
|
setIdx: 0,
|
|
14600
14728
|
setId: 0,
|
|
14601
|
-
iconIdx:
|
|
14729
|
+
iconIdx: 275
|
|
14602
14730
|
},
|
|
14603
14731
|
{
|
|
14604
14732
|
icon: {
|
|
@@ -14623,7 +14751,7 @@ var icons = [
|
|
|
14623
14751
|
},
|
|
14624
14752
|
setIdx: 0,
|
|
14625
14753
|
setId: 0,
|
|
14626
|
-
iconIdx:
|
|
14754
|
+
iconIdx: 276
|
|
14627
14755
|
},
|
|
14628
14756
|
{
|
|
14629
14757
|
icon: {
|
|
@@ -14652,7 +14780,7 @@ var icons = [
|
|
|
14652
14780
|
},
|
|
14653
14781
|
setIdx: 0,
|
|
14654
14782
|
setId: 0,
|
|
14655
|
-
iconIdx:
|
|
14783
|
+
iconIdx: 277
|
|
14656
14784
|
},
|
|
14657
14785
|
{
|
|
14658
14786
|
icon: {
|
|
@@ -14677,7 +14805,7 @@ var icons = [
|
|
|
14677
14805
|
},
|
|
14678
14806
|
setIdx: 0,
|
|
14679
14807
|
setId: 0,
|
|
14680
|
-
iconIdx:
|
|
14808
|
+
iconIdx: 278
|
|
14681
14809
|
},
|
|
14682
14810
|
{
|
|
14683
14811
|
icon: {
|
|
@@ -14702,7 +14830,7 @@ var icons = [
|
|
|
14702
14830
|
},
|
|
14703
14831
|
setIdx: 0,
|
|
14704
14832
|
setId: 0,
|
|
14705
|
-
iconIdx:
|
|
14833
|
+
iconIdx: 279
|
|
14706
14834
|
},
|
|
14707
14835
|
{
|
|
14708
14836
|
icon: {
|
|
@@ -14727,7 +14855,7 @@ var icons = [
|
|
|
14727
14855
|
},
|
|
14728
14856
|
setIdx: 0,
|
|
14729
14857
|
setId: 0,
|
|
14730
|
-
iconIdx:
|
|
14858
|
+
iconIdx: 280
|
|
14731
14859
|
},
|
|
14732
14860
|
{
|
|
14733
14861
|
icon: {
|
|
@@ -14752,7 +14880,7 @@ var icons = [
|
|
|
14752
14880
|
},
|
|
14753
14881
|
setIdx: 0,
|
|
14754
14882
|
setId: 0,
|
|
14755
|
-
iconIdx:
|
|
14883
|
+
iconIdx: 281
|
|
14756
14884
|
},
|
|
14757
14885
|
{
|
|
14758
14886
|
icon: {
|
|
@@ -14777,7 +14905,7 @@ var icons = [
|
|
|
14777
14905
|
},
|
|
14778
14906
|
setIdx: 0,
|
|
14779
14907
|
setId: 0,
|
|
14780
|
-
iconIdx:
|
|
14908
|
+
iconIdx: 282
|
|
14781
14909
|
},
|
|
14782
14910
|
{
|
|
14783
14911
|
icon: {
|
|
@@ -14802,7 +14930,7 @@ var icons = [
|
|
|
14802
14930
|
},
|
|
14803
14931
|
setIdx: 0,
|
|
14804
14932
|
setId: 0,
|
|
14805
|
-
iconIdx:
|
|
14933
|
+
iconIdx: 283
|
|
14806
14934
|
},
|
|
14807
14935
|
{
|
|
14808
14936
|
icon: {
|
|
@@ -14830,7 +14958,7 @@ var icons = [
|
|
|
14830
14958
|
},
|
|
14831
14959
|
setIdx: 0,
|
|
14832
14960
|
setId: 0,
|
|
14833
|
-
iconIdx:
|
|
14961
|
+
iconIdx: 284
|
|
14834
14962
|
},
|
|
14835
14963
|
{
|
|
14836
14964
|
icon: {
|
|
@@ -14855,7 +14983,7 @@ var icons = [
|
|
|
14855
14983
|
},
|
|
14856
14984
|
setIdx: 0,
|
|
14857
14985
|
setId: 0,
|
|
14858
|
-
iconIdx:
|
|
14986
|
+
iconIdx: 285
|
|
14859
14987
|
},
|
|
14860
14988
|
{
|
|
14861
14989
|
icon: {
|
|
@@ -14887,7 +15015,7 @@ var icons = [
|
|
|
14887
15015
|
},
|
|
14888
15016
|
setIdx: 0,
|
|
14889
15017
|
setId: 0,
|
|
14890
|
-
iconIdx:
|
|
15018
|
+
iconIdx: 286
|
|
14891
15019
|
},
|
|
14892
15020
|
{
|
|
14893
15021
|
icon: {
|
|
@@ -14912,7 +15040,7 @@ var icons = [
|
|
|
14912
15040
|
},
|
|
14913
15041
|
setIdx: 0,
|
|
14914
15042
|
setId: 0,
|
|
14915
|
-
iconIdx:
|
|
15043
|
+
iconIdx: 287
|
|
14916
15044
|
},
|
|
14917
15045
|
{
|
|
14918
15046
|
icon: {
|
|
@@ -14940,7 +15068,7 @@ var icons = [
|
|
|
14940
15068
|
},
|
|
14941
15069
|
setIdx: 0,
|
|
14942
15070
|
setId: 0,
|
|
14943
|
-
iconIdx:
|
|
15071
|
+
iconIdx: 288
|
|
14944
15072
|
},
|
|
14945
15073
|
{
|
|
14946
15074
|
icon: {
|
|
@@ -14965,7 +15093,7 @@ var icons = [
|
|
|
14965
15093
|
},
|
|
14966
15094
|
setIdx: 0,
|
|
14967
15095
|
setId: 0,
|
|
14968
|
-
iconIdx:
|
|
15096
|
+
iconIdx: 289
|
|
14969
15097
|
},
|
|
14970
15098
|
{
|
|
14971
15099
|
icon: {
|
|
@@ -14993,7 +15121,7 @@ var icons = [
|
|
|
14993
15121
|
},
|
|
14994
15122
|
setIdx: 0,
|
|
14995
15123
|
setId: 0,
|
|
14996
|
-
iconIdx:
|
|
15124
|
+
iconIdx: 290
|
|
14997
15125
|
},
|
|
14998
15126
|
{
|
|
14999
15127
|
icon: {
|
|
@@ -15018,7 +15146,7 @@ var icons = [
|
|
|
15018
15146
|
},
|
|
15019
15147
|
setIdx: 0,
|
|
15020
15148
|
setId: 0,
|
|
15021
|
-
iconIdx:
|
|
15149
|
+
iconIdx: 291
|
|
15022
15150
|
},
|
|
15023
15151
|
{
|
|
15024
15152
|
icon: {
|
|
@@ -15044,7 +15172,7 @@ var icons = [
|
|
|
15044
15172
|
},
|
|
15045
15173
|
setIdx: 0,
|
|
15046
15174
|
setId: 0,
|
|
15047
|
-
iconIdx:
|
|
15175
|
+
iconIdx: 292
|
|
15048
15176
|
},
|
|
15049
15177
|
{
|
|
15050
15178
|
icon: {
|
|
@@ -15072,7 +15200,7 @@ var icons = [
|
|
|
15072
15200
|
},
|
|
15073
15201
|
setIdx: 0,
|
|
15074
15202
|
setId: 0,
|
|
15075
|
-
iconIdx:
|
|
15203
|
+
iconIdx: 293
|
|
15076
15204
|
},
|
|
15077
15205
|
{
|
|
15078
15206
|
icon: {
|
|
@@ -15097,7 +15225,7 @@ var icons = [
|
|
|
15097
15225
|
},
|
|
15098
15226
|
setIdx: 0,
|
|
15099
15227
|
setId: 0,
|
|
15100
|
-
iconIdx:
|
|
15228
|
+
iconIdx: 294
|
|
15101
15229
|
},
|
|
15102
15230
|
{
|
|
15103
15231
|
icon: {
|
|
@@ -15122,7 +15250,7 @@ var icons = [
|
|
|
15122
15250
|
},
|
|
15123
15251
|
setIdx: 0,
|
|
15124
15252
|
setId: 0,
|
|
15125
|
-
iconIdx:
|
|
15253
|
+
iconIdx: 295
|
|
15126
15254
|
},
|
|
15127
15255
|
{
|
|
15128
15256
|
icon: {
|
|
@@ -15149,7 +15277,7 @@ var icons = [
|
|
|
15149
15277
|
},
|
|
15150
15278
|
setIdx: 0,
|
|
15151
15279
|
setId: 0,
|
|
15152
|
-
iconIdx:
|
|
15280
|
+
iconIdx: 296
|
|
15153
15281
|
},
|
|
15154
15282
|
{
|
|
15155
15283
|
icon: {
|
|
@@ -15174,7 +15302,7 @@ var icons = [
|
|
|
15174
15302
|
},
|
|
15175
15303
|
setIdx: 0,
|
|
15176
15304
|
setId: 0,
|
|
15177
|
-
iconIdx:
|
|
15305
|
+
iconIdx: 297
|
|
15178
15306
|
},
|
|
15179
15307
|
{
|
|
15180
15308
|
icon: {
|
|
@@ -15206,7 +15334,7 @@ var icons = [
|
|
|
15206
15334
|
},
|
|
15207
15335
|
setIdx: 0,
|
|
15208
15336
|
setId: 0,
|
|
15209
|
-
iconIdx:
|
|
15337
|
+
iconIdx: 298
|
|
15210
15338
|
},
|
|
15211
15339
|
{
|
|
15212
15340
|
icon: {
|
|
@@ -15232,7 +15360,7 @@ var icons = [
|
|
|
15232
15360
|
},
|
|
15233
15361
|
setIdx: 0,
|
|
15234
15362
|
setId: 0,
|
|
15235
|
-
iconIdx:
|
|
15363
|
+
iconIdx: 299
|
|
15236
15364
|
},
|
|
15237
15365
|
{
|
|
15238
15366
|
icon: {
|
|
@@ -15263,7 +15391,7 @@ var icons = [
|
|
|
15263
15391
|
},
|
|
15264
15392
|
setIdx: 0,
|
|
15265
15393
|
setId: 0,
|
|
15266
|
-
iconIdx:
|
|
15394
|
+
iconIdx: 300
|
|
15267
15395
|
},
|
|
15268
15396
|
{
|
|
15269
15397
|
icon: {
|
|
@@ -15288,7 +15416,7 @@ var icons = [
|
|
|
15288
15416
|
},
|
|
15289
15417
|
setIdx: 0,
|
|
15290
15418
|
setId: 0,
|
|
15291
|
-
iconIdx:
|
|
15419
|
+
iconIdx: 301
|
|
15292
15420
|
},
|
|
15293
15421
|
{
|
|
15294
15422
|
icon: {
|
|
@@ -15313,7 +15441,7 @@ var icons = [
|
|
|
15313
15441
|
},
|
|
15314
15442
|
setIdx: 0,
|
|
15315
15443
|
setId: 0,
|
|
15316
|
-
iconIdx:
|
|
15444
|
+
iconIdx: 302
|
|
15317
15445
|
},
|
|
15318
15446
|
{
|
|
15319
15447
|
icon: {
|
|
@@ -15344,7 +15472,7 @@ var icons = [
|
|
|
15344
15472
|
},
|
|
15345
15473
|
setIdx: 0,
|
|
15346
15474
|
setId: 0,
|
|
15347
|
-
iconIdx:
|
|
15475
|
+
iconIdx: 303
|
|
15348
15476
|
}
|
|
15349
15477
|
];
|
|
15350
15478
|
var height = 1024;
|
|
@@ -15478,7 +15606,7 @@ var Typography = {
|
|
|
15478
15606
|
Text: Text
|
|
15479
15607
|
};
|
|
15480
15608
|
|
|
15481
|
-
var Container$
|
|
15609
|
+
var Container$1 = index$5(View)(function (_ref) {
|
|
15482
15610
|
var theme = _ref.theme,
|
|
15483
15611
|
_ref$themeVariant = _ref.themeVariant,
|
|
15484
15612
|
themeVariant = _ref$themeVariant === void 0 ? 'default' : _ref$themeVariant,
|
|
@@ -15550,7 +15678,7 @@ var Alert = function Alert(_ref) {
|
|
|
15550
15678
|
variant = _ref$variant === void 0 ? 'default' : _ref$variant,
|
|
15551
15679
|
style = _ref.style,
|
|
15552
15680
|
testID = _ref.testID;
|
|
15553
|
-
return /*#__PURE__*/React.createElement(Container$
|
|
15681
|
+
return /*#__PURE__*/React.createElement(Container$1, {
|
|
15554
15682
|
themeVariant: variant,
|
|
15555
15683
|
themeIntent: intent,
|
|
15556
15684
|
style: style,
|
|
@@ -15796,7 +15924,7 @@ var Badge$1 = Object.assign(Badge, {
|
|
|
15796
15924
|
Status: Status
|
|
15797
15925
|
});
|
|
15798
15926
|
|
|
15799
|
-
var IconList = ['activate', 'add-person', 'adjustment', 'alignment', 'bank', 'bell', 'billing', 'bookmark', 'box-check', 'box', 'buildings', 'cake', 'calendar-clock', 'calendar', 'candy-box-menu', 'carat-down-small', 'carat-down', 'carat-left', 'carat-right', 'carat-up', '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', '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', 'folder-user', 'folder', 'funnel-filter', 'global-dollar', 'globe', 'graduation-cap', 'graph', 'happy-sun', 'health-bag', 'heart', 'home', 'image', 'import', 'incident-siren', 'instapay', 'list', 'loading', 'loading-2', 'location', 'lock', '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', 'reschedule', 'rostering', 'save', 'schedule', 'search-person', 'send', 'speaker', 'star-medal', 'star', 'steps-circle', 'stopwatch', 'suitcase', 'survey', 'swag', 'switch', 'tag', 'target', 'teams', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'activate-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'arrow-down', 'arrow-left', 'arrow-right', 'arrow-up', 'at-sign', 'bell-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bookmark-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calendar-dates-outlined', 'calendar-star-outlined', 'camera-outlined', 'cancel', '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', 'direction-arrows-outlined', 'directory-outlined', 'document-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', '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-download-outlined', 'file-export-outlined', 'file-lock-outlined', 'file-outlined', 'file-search-outlined', 'file-secured-outlined', 'file-verified-outlined', 'folder-outlined', 'folder-user-outlined', 'funnel-filter-outline', 'graph-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'link-1', 'link-2', 'list-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', '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', 'send-outlined', 'share-1', 'share-2', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'speaker-outlined', 'star-outlined', 'stopwatch-outlined', 'strikethrough', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'target-outlined', 'timesheet-outlined', 'transfer', 'trash-bin-outlined', 'unavailable', 'underline', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'wallet-outlined', 'warning'];
|
|
15927
|
+
var IconList = ['activate', 'add-person', 'adjustment', 'alignment', 'bank', 'bell', 'billing', 'bookmark', 'box-check', 'box', 'buildings', 'cake', 'calendar-clock', 'calendar', 'candy-box-menu', 'carat-down-small', 'carat-down', 'carat-left', 'carat-right', 'carat-up', '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', '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', 'folder-user', 'folder', 'funnel-filter', 'global-dollar', 'globe', 'graduation-cap', 'graph', 'happy-sun', 'health-bag', 'heart', 'home', 'image', 'import', 'incident-siren', 'instapay', 'list', 'loading', 'loading-2', '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', 'reschedule', 'rostering', 'save', 'schedule', 'search-person', 'send', 'speaker', 'star-medal', 'star', 'steps-circle', 'stopwatch', 'suitcase', 'survey', 'swag', 'switch', 'tag', 'target', 'teams', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'activate-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'arrow-down', 'arrow-left', 'arrow-right', 'arrow-up', 'at-sign', 'bell-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bookmark-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calendar-dates-outlined', 'calendar-star-outlined', 'camera-outlined', 'cancel', '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', 'direction-arrows-outlined', 'directory-outlined', 'document-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', '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-download-outlined', 'file-export-outlined', 'file-lock-outlined', 'file-outlined', 'file-search-outlined', 'file-secured-outlined', 'file-verified-outlined', 'folder-outlined', 'folder-user-outlined', 'funnel-filter-outline', 'graph-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'link-1', 'link-2', 'list-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', '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', 'send-outlined', 'share-1', 'share-2', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'speaker-outlined', 'star-outlined', 'stopwatch-outlined', 'strikethrough', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'target-outlined', 'timesheet-outlined', 'transfer', 'trash-bin-outlined', 'unavailable', 'underline', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'wallet-outlined', 'warning'];
|
|
15800
15928
|
|
|
15801
15929
|
var isHeroIcon = function isHeroIcon(x) {
|
|
15802
15930
|
return IconList.includes(x);
|
|
@@ -16075,12 +16203,15 @@ var StyledLoadingDot = index$5(View)(function (_ref2) {
|
|
|
16075
16203
|
};
|
|
16076
16204
|
|
|
16077
16205
|
case 'outlined-primary':
|
|
16206
|
+
case 'text-primary':
|
|
16078
16207
|
return genLoadingIndicatorStyles(theme, 'primary');
|
|
16079
16208
|
|
|
16080
16209
|
case 'outlined-secondary':
|
|
16210
|
+
case 'text-secondary':
|
|
16081
16211
|
return genLoadingIndicatorStyles(theme, 'secondary');
|
|
16082
16212
|
|
|
16083
16213
|
case 'outlined-danger':
|
|
16214
|
+
case 'text-danger':
|
|
16084
16215
|
return genLoadingIndicatorStyles(theme, 'danger');
|
|
16085
16216
|
}
|
|
16086
16217
|
};
|
|
@@ -16281,6 +16412,31 @@ var genOutlineTextStyles = function genOutlineTextStyles(theme, intent, pressed,
|
|
|
16281
16412
|
}, textColorStyling());
|
|
16282
16413
|
};
|
|
16283
16414
|
|
|
16415
|
+
var genTextVariantTextStyles = function genTextVariantTextStyles(theme, intent, pressed, disabled) {
|
|
16416
|
+
var textColorStyling = function textColorStyling() {
|
|
16417
|
+
if (disabled) {
|
|
16418
|
+
return {
|
|
16419
|
+
color: theme.__hd__.button.colors.disabledText
|
|
16420
|
+
};
|
|
16421
|
+
}
|
|
16422
|
+
|
|
16423
|
+
if (pressed) {
|
|
16424
|
+
return {
|
|
16425
|
+
color: theme.__hd__.button.colors[PRESSED_COLORS[intent]]
|
|
16426
|
+
};
|
|
16427
|
+
}
|
|
16428
|
+
|
|
16429
|
+
return {
|
|
16430
|
+
color: theme.__hd__.button.colors[intent]
|
|
16431
|
+
};
|
|
16432
|
+
};
|
|
16433
|
+
|
|
16434
|
+
return _objectSpread2({
|
|
16435
|
+
fontSize: theme.__hd__.button.fontSize.textVariant,
|
|
16436
|
+
lineHeight: theme.__hd__.button.lineHeight["default"]
|
|
16437
|
+
}, textColorStyling());
|
|
16438
|
+
};
|
|
16439
|
+
|
|
16284
16440
|
var StyledButtonContainer = index$5(View)(function (_ref) {
|
|
16285
16441
|
var _ref$disabled = _ref.disabled,
|
|
16286
16442
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
@@ -16310,6 +16466,19 @@ var StyledButtonContainer = index$5(View)(function (_ref) {
|
|
|
16310
16466
|
|
|
16311
16467
|
case 'outlined-danger':
|
|
16312
16468
|
return genOutlineContainerStyles(theme, 'danger', pressed, disabled);
|
|
16469
|
+
|
|
16470
|
+
case 'text-primary':
|
|
16471
|
+
case 'text-secondary':
|
|
16472
|
+
case 'text-danger':
|
|
16473
|
+
return {
|
|
16474
|
+
width: '100%',
|
|
16475
|
+
flexDirection: 'row',
|
|
16476
|
+
justifyContent: 'center',
|
|
16477
|
+
alignItems: 'center',
|
|
16478
|
+
padding: theme.__hd__.button.space.buttonPadding,
|
|
16479
|
+
borderWidth: 0,
|
|
16480
|
+
backgroundColor: 'transparent'
|
|
16481
|
+
};
|
|
16313
16482
|
}
|
|
16314
16483
|
});
|
|
16315
16484
|
var StyledButtonText = index$5(Typography.Text)(function (_ref2) {
|
|
@@ -16344,6 +16513,15 @@ var StyledButtonText = index$5(Typography.Text)(function (_ref2) {
|
|
|
16344
16513
|
|
|
16345
16514
|
case 'outlined-danger':
|
|
16346
16515
|
return genOutlineTextStyles(theme, 'danger', pressed, disabled);
|
|
16516
|
+
|
|
16517
|
+
case 'text-primary':
|
|
16518
|
+
return genTextVariantTextStyles(theme, 'primary', pressed, disabled);
|
|
16519
|
+
|
|
16520
|
+
case 'text-secondary':
|
|
16521
|
+
return genTextVariantTextStyles(theme, 'secondary', pressed, disabled);
|
|
16522
|
+
|
|
16523
|
+
case 'text-danger':
|
|
16524
|
+
return genTextVariantTextStyles(theme, 'danger', pressed, disabled);
|
|
16347
16525
|
}
|
|
16348
16526
|
};
|
|
16349
16527
|
|
|
@@ -16397,6 +16575,15 @@ var StyledButtonIcon = index$5(Icon)(function (_ref4) {
|
|
|
16397
16575
|
|
|
16398
16576
|
case 'outlined-danger':
|
|
16399
16577
|
return genOutlineTextStyles(theme, 'danger', pressed, disabled);
|
|
16578
|
+
|
|
16579
|
+
case 'text-primary':
|
|
16580
|
+
return genTextVariantTextStyles(theme, 'primary', pressed, disabled);
|
|
16581
|
+
|
|
16582
|
+
case 'text-secondary':
|
|
16583
|
+
return genTextVariantTextStyles(theme, 'secondary', pressed, disabled);
|
|
16584
|
+
|
|
16585
|
+
case 'text-danger':
|
|
16586
|
+
return genTextVariantTextStyles(theme, 'danger', pressed, disabled);
|
|
16400
16587
|
}
|
|
16401
16588
|
};
|
|
16402
16589
|
|
|
@@ -16415,6 +16602,11 @@ var OUTLINED_VARIANTS = {
|
|
|
16415
16602
|
secondary: 'outlined-secondary',
|
|
16416
16603
|
danger: 'outlined-danger'
|
|
16417
16604
|
};
|
|
16605
|
+
var TEXT_VARIANTS = {
|
|
16606
|
+
primary: 'text-primary',
|
|
16607
|
+
secondary: 'text-secondary',
|
|
16608
|
+
danger: 'text-danger'
|
|
16609
|
+
};
|
|
16418
16610
|
var getThemeVariant = function getThemeVariant(variant, intent) {
|
|
16419
16611
|
switch (variant) {
|
|
16420
16612
|
case 'basic-transparent':
|
|
@@ -16425,6 +16617,9 @@ var getThemeVariant = function getThemeVariant(variant, intent) {
|
|
|
16425
16617
|
|
|
16426
16618
|
case 'outlined':
|
|
16427
16619
|
return OUTLINED_VARIANTS[intent];
|
|
16620
|
+
|
|
16621
|
+
case 'text':
|
|
16622
|
+
return TEXT_VARIANTS[intent];
|
|
16428
16623
|
}
|
|
16429
16624
|
};
|
|
16430
16625
|
|
|
@@ -16509,8 +16704,65 @@ var IconButton = function IconButton(_ref) {
|
|
|
16509
16704
|
}));
|
|
16510
16705
|
};
|
|
16511
16706
|
|
|
16707
|
+
var ButtonContainer = index$5(TouchableOpacity)(function (_ref) {
|
|
16708
|
+
var theme = _ref.theme;
|
|
16709
|
+
return {
|
|
16710
|
+
width: '100%',
|
|
16711
|
+
flexDirection: 'row',
|
|
16712
|
+
justifyContent: 'center',
|
|
16713
|
+
alignItems: 'center',
|
|
16714
|
+
padding: theme.__hd__.button.space.utilityPadding,
|
|
16715
|
+
borderRadius: theme.__hd__.button.radii.utilityRadii,
|
|
16716
|
+
backgroundColor: theme.__hd__.button.colors.utilityBackground
|
|
16717
|
+
};
|
|
16718
|
+
});
|
|
16719
|
+
var IconWrapper = index$5(View)(function (_ref2) {
|
|
16720
|
+
var theme = _ref2.theme;
|
|
16721
|
+
return {
|
|
16722
|
+
paddingRight: theme.__hd__.button.space.utilityIconPadding
|
|
16723
|
+
};
|
|
16724
|
+
});
|
|
16725
|
+
var ButtonText = index$5(Typography.Text)(function (_ref3) {
|
|
16726
|
+
var theme = _ref3.theme;
|
|
16727
|
+
return {
|
|
16728
|
+
flexShrink: 1,
|
|
16729
|
+
textAlign: 'center',
|
|
16730
|
+
fontSize: theme.__hd__.button.fontSize.utility,
|
|
16731
|
+
fontFamily: theme.__hd__.button.fonts["default"]
|
|
16732
|
+
};
|
|
16733
|
+
});
|
|
16734
|
+
|
|
16735
|
+
var TEXT_INTENTS = {
|
|
16736
|
+
primary: 'primary',
|
|
16737
|
+
text: 'body'
|
|
16738
|
+
};
|
|
16739
|
+
|
|
16740
|
+
var UtilityButton = function UtilityButton(_ref) {
|
|
16741
|
+
var icon = _ref.icon,
|
|
16742
|
+
onPress = _ref.onPress,
|
|
16743
|
+
text = _ref.text,
|
|
16744
|
+
testID = _ref.testID,
|
|
16745
|
+
_ref$intent = _ref.intent,
|
|
16746
|
+
intent = _ref$intent === void 0 ? 'text' : _ref$intent,
|
|
16747
|
+
style = _ref.style,
|
|
16748
|
+
hitSlop = _ref.hitSlop;
|
|
16749
|
+
return /*#__PURE__*/React.createElement(ButtonContainer, {
|
|
16750
|
+
style: style,
|
|
16751
|
+
onPress: onPress,
|
|
16752
|
+
testID: testID,
|
|
16753
|
+
hitSlop: hitSlop
|
|
16754
|
+
}, /*#__PURE__*/React.createElement(IconWrapper, null, /*#__PURE__*/React.createElement(Icon, {
|
|
16755
|
+
icon: icon,
|
|
16756
|
+
intent: intent,
|
|
16757
|
+
testID: "".concat(testID, "-icon")
|
|
16758
|
+
})), /*#__PURE__*/React.createElement(ButtonText, {
|
|
16759
|
+
intent: TEXT_INTENTS[intent]
|
|
16760
|
+
}, text));
|
|
16761
|
+
};
|
|
16762
|
+
|
|
16512
16763
|
var CompoundButton = Button;
|
|
16513
16764
|
CompoundButton.Icon = IconButton;
|
|
16765
|
+
CompoundButton.Utility = UtilityButton;
|
|
16514
16766
|
|
|
16515
16767
|
var Header = function Header(_ref) {
|
|
16516
16768
|
var content = _ref.content,
|
|
@@ -16875,7 +17127,7 @@ function ContentNavigator(_ref) {
|
|
|
16875
17127
|
}
|
|
16876
17128
|
|
|
16877
17129
|
var AnimatedPressable = Animated.createAnimatedComponent(Pressable);
|
|
16878
|
-
var StyledContainer$
|
|
17130
|
+
var StyledContainer$2 = index$5(View)(function (_ref) {
|
|
16879
17131
|
var theme = _ref.theme,
|
|
16880
17132
|
enableShadow = _ref.enableShadow;
|
|
16881
17133
|
return _objectSpread2(_objectSpread2({}, StyleSheet$1.absoluteFillObject), {}, {
|
|
@@ -16940,7 +17192,7 @@ var Drawer = function Drawer(_ref) {
|
|
|
16940
17192
|
return animation.stop();
|
|
16941
17193
|
};
|
|
16942
17194
|
}, [visible]);
|
|
16943
|
-
return /*#__PURE__*/React.createElement(StyledContainer$
|
|
17195
|
+
return /*#__PURE__*/React.createElement(StyledContainer$2, {
|
|
16944
17196
|
testID: testID,
|
|
16945
17197
|
enableShadow: enableShadow,
|
|
16946
17198
|
pointerEvents: "box-none"
|
|
@@ -17126,7 +17378,7 @@ var ActionItem = function ActionItem(_ref) {
|
|
|
17126
17378
|
}), /*#__PURE__*/React.createElement(StyledActionItemText, null, title));
|
|
17127
17379
|
};
|
|
17128
17380
|
|
|
17129
|
-
var StyledContainer = index$5(View)({
|
|
17381
|
+
var StyledContainer$1 = index$5(View)({
|
|
17130
17382
|
position: 'absolute',
|
|
17131
17383
|
left: 0,
|
|
17132
17384
|
right: 0,
|
|
@@ -17207,7 +17459,7 @@ var ActionGroup = function ActionGroup(_ref2) {
|
|
|
17207
17459
|
inputRange: [0, 1],
|
|
17208
17460
|
outputRange: [0, 0.9]
|
|
17209
17461
|
});
|
|
17210
|
-
return /*#__PURE__*/React.createElement(StyledContainer, {
|
|
17462
|
+
return /*#__PURE__*/React.createElement(StyledContainer$1, {
|
|
17211
17463
|
testID: testID,
|
|
17212
17464
|
pointerEvents: "box-none",
|
|
17213
17465
|
style: style
|
|
@@ -18058,22 +18310,18 @@ var OptionList$1 = function OptionList(_ref) {
|
|
|
18058
18310
|
}));
|
|
18059
18311
|
};
|
|
18060
18312
|
|
|
18061
|
-
var
|
|
18313
|
+
var StyledContainer = index$5(View)(function (_ref) {
|
|
18062
18314
|
var theme = _ref.theme;
|
|
18063
18315
|
return {
|
|
18064
|
-
position: 'relative',
|
|
18065
18316
|
width: '100%',
|
|
18066
|
-
|
|
18067
|
-
borderRadius: theme.__hd__.textInput.radii.container,
|
|
18068
|
-
padding: theme.__hd__.textInput.space.containerPadding,
|
|
18069
|
-
flexDirection: 'row',
|
|
18070
|
-
alignItems: 'center'
|
|
18317
|
+
marginVertical: theme.__hd__.textInput.space.containerMarginVertical
|
|
18071
18318
|
};
|
|
18072
18319
|
});
|
|
18073
|
-
var
|
|
18320
|
+
var StyledLabelContainer = index$5(View)(function (_ref2) {
|
|
18074
18321
|
var theme = _ref2.theme;
|
|
18075
18322
|
return {
|
|
18076
18323
|
position: 'absolute',
|
|
18324
|
+
flexDirection: 'row',
|
|
18077
18325
|
left: theme.__hd__.textInput.space.labelLeft,
|
|
18078
18326
|
top: theme.__hd__.textInput.space.labelTop,
|
|
18079
18327
|
backgroundColor: theme.__hd__.textInput.colors.labelBackground,
|
|
@@ -18081,48 +18329,279 @@ var Label = index$5(Typography.Text)(function (_ref2) {
|
|
|
18081
18329
|
paddingHorizontal: theme.__hd__.textInput.space.labelHorizontalPadding
|
|
18082
18330
|
};
|
|
18083
18331
|
});
|
|
18084
|
-
var
|
|
18085
|
-
var theme = _ref3.theme
|
|
18332
|
+
var StyledLabel = index$5(Typography.Text)(function (_ref3) {
|
|
18333
|
+
var theme = _ref3.theme,
|
|
18334
|
+
themeVariant = _ref3.themeVariant;
|
|
18335
|
+
return {
|
|
18336
|
+
color: theme.__hd__.textInput.colors.labels[themeVariant]
|
|
18337
|
+
};
|
|
18338
|
+
});
|
|
18339
|
+
var StyledAsteriskLabel = index$5(Typography.Text)(function (_ref4) {
|
|
18340
|
+
var theme = _ref4.theme,
|
|
18341
|
+
themeVariant = _ref4.themeVariant;
|
|
18086
18342
|
return {
|
|
18343
|
+
color: theme.__hd__.textInput.colors.asterisks[themeVariant]
|
|
18344
|
+
};
|
|
18345
|
+
});
|
|
18346
|
+
var StyledLabelContainerInsideTextInput = index$5(View)(function () {
|
|
18347
|
+
return _objectSpread2({
|
|
18348
|
+
flexDirection: 'row',
|
|
18349
|
+
zIndex: 9999,
|
|
18350
|
+
alignItems: 'center'
|
|
18351
|
+
}, StyleSheet$1.absoluteFillObject);
|
|
18352
|
+
});
|
|
18353
|
+
var StyledLabelInsideTextInput = index$5(Typography.Text)(function (_ref5) {
|
|
18354
|
+
var theme = _ref5.theme,
|
|
18355
|
+
themeVariant = _ref5.themeVariant;
|
|
18356
|
+
return {
|
|
18357
|
+
textAlignVertical: 'center',
|
|
18358
|
+
alignContent: 'center',
|
|
18359
|
+
fontSize: theme.__hd__.textInput.fontSizes.labelInsideTextInput,
|
|
18360
|
+
alignItems: 'center',
|
|
18361
|
+
color: theme.__hd__.textInput.colors.labelsInsideTextInput[themeVariant]
|
|
18362
|
+
};
|
|
18363
|
+
});
|
|
18364
|
+
var StyledAsteriskLabelInsideTextInput = index$5(Typography.Text)(function (_ref6) {
|
|
18365
|
+
var theme = _ref6.theme,
|
|
18366
|
+
themeVariant = _ref6.themeVariant;
|
|
18367
|
+
return {
|
|
18368
|
+
color: theme.__hd__.textInput.colors.asterisks[themeVariant],
|
|
18369
|
+
fontSize: theme.__hd__.textInput.fontSizes.asteriskLabel
|
|
18370
|
+
};
|
|
18371
|
+
});
|
|
18372
|
+
var StyledErrorContainer = index$5(View)(function (_ref7) {
|
|
18373
|
+
var theme = _ref7.theme;
|
|
18374
|
+
return {
|
|
18375
|
+
marginLeft: theme.__hd__.textInput.space.errorContainerMarginLeft,
|
|
18376
|
+
marginRight: theme.__hd__.textInput.space.errorContainerMarginRight,
|
|
18377
|
+
flexDirection: 'row',
|
|
18378
|
+
alignItems: 'center',
|
|
18087
18379
|
flex: 1,
|
|
18380
|
+
flexGrow: 4
|
|
18381
|
+
};
|
|
18382
|
+
});
|
|
18383
|
+
var StyledError = index$5(Typography.Text)(function (_ref8) {
|
|
18384
|
+
var theme = _ref8.theme;
|
|
18385
|
+
return {
|
|
18386
|
+
color: theme.__hd__.textInput.colors.error,
|
|
18387
|
+
fontSize: theme.__hd__.textInput.fontSizes.error,
|
|
18388
|
+
marginLeft: theme.__hd__.textInput.space.errorMarginLeft
|
|
18389
|
+
};
|
|
18390
|
+
});
|
|
18391
|
+
var StyledMaxLengthMessage = index$5(Typography.Text)(function (_ref9) {
|
|
18392
|
+
var theme = _ref9.theme,
|
|
18393
|
+
themeVariant = _ref9.themeVariant;
|
|
18394
|
+
return {
|
|
18395
|
+
color: theme.__hd__.textInput.colors.maxLengthLabels[themeVariant],
|
|
18396
|
+
fontSize: theme.__hd__.textInput.fontSizes.maxLength,
|
|
18397
|
+
marginRight: theme.__hd__.textInput.space.maxLengthLabelMarginLeft,
|
|
18398
|
+
alignSelf: 'flex-end',
|
|
18399
|
+
flex: 1,
|
|
18400
|
+
flexGrow: 1,
|
|
18401
|
+
textAlign: 'right'
|
|
18402
|
+
};
|
|
18403
|
+
});
|
|
18404
|
+
var StyledHelperText = index$5(Typography.Text)(function (_ref10) {
|
|
18405
|
+
var theme = _ref10.theme;
|
|
18406
|
+
return {
|
|
18407
|
+
fontSize: theme.__hd__.textInput.fontSizes.error,
|
|
18408
|
+
marginLeft: theme.__hd__.textInput.space.errorMarginLeft
|
|
18409
|
+
};
|
|
18410
|
+
});
|
|
18411
|
+
var StyledTextInput = index$5(TextInput$1)(function (_ref11) {
|
|
18412
|
+
var theme = _ref11.theme;
|
|
18413
|
+
return {
|
|
18414
|
+
textAlignVertical: 'center',
|
|
18088
18415
|
fontSize: theme.__hd__.textInput.fontSizes.text,
|
|
18416
|
+
alignSelf: 'stretch',
|
|
18417
|
+
flexGrow: 2,
|
|
18089
18418
|
marginHorizontal: theme.__hd__.textInput.space.inputHorizontalMargin
|
|
18090
18419
|
};
|
|
18091
18420
|
});
|
|
18421
|
+
var StyledBorderBackDrop = index$5(View)(function (_ref12) {
|
|
18422
|
+
var _theme$__hd__$textInp;
|
|
18423
|
+
|
|
18424
|
+
var theme = _ref12.theme,
|
|
18425
|
+
themeVariant = _ref12.themeVariant;
|
|
18426
|
+
return _objectSpread2(_objectSpread2({}, StyleSheet$1.absoluteFillObject), {}, {
|
|
18427
|
+
borderWidth: themeVariant === 'focused' ? theme.__hd__.textInput.borderWidths.container.focused : theme.__hd__.textInput.borderWidths.container.normal,
|
|
18428
|
+
borderRadius: theme.__hd__.textInput.radii.container,
|
|
18429
|
+
borderColor: (_theme$__hd__$textInp = theme.__hd__.textInput.colors.borders[themeVariant]) !== null && _theme$__hd__$textInp !== void 0 ? _theme$__hd__$textInp : theme.__hd__.textInput.colors.borders["default"]
|
|
18430
|
+
});
|
|
18431
|
+
});
|
|
18432
|
+
var StyledTextInputContainer = index$5(View)(function (_ref13) {
|
|
18433
|
+
var theme = _ref13.theme;
|
|
18434
|
+
return {
|
|
18435
|
+
flexDirection: 'row',
|
|
18436
|
+
alignItems: 'center',
|
|
18437
|
+
padding: theme.__hd__.textInput.space.containerPadding
|
|
18438
|
+
};
|
|
18439
|
+
});
|
|
18440
|
+
var StyledTextInputAndLabelContainer = index$5(View)(function () {
|
|
18441
|
+
return {
|
|
18442
|
+
flexDirection: 'row',
|
|
18443
|
+
alignItems: 'center',
|
|
18444
|
+
alignSelf: 'stretch',
|
|
18445
|
+
flexGrow: 2
|
|
18446
|
+
};
|
|
18447
|
+
});
|
|
18448
|
+
var StyledErrorAndHelpTextContainer = index$5(View)(function () {
|
|
18449
|
+
return {
|
|
18450
|
+
flex: 1,
|
|
18451
|
+
flexDirection: 'row',
|
|
18452
|
+
justifyContent: 'space-between'
|
|
18453
|
+
};
|
|
18454
|
+
});
|
|
18092
18455
|
|
|
18093
|
-
var _excluded$1 = ["label", "prefix", "suffix", "style", "textStyle", "testID", "accessibilityLabelledBy"];
|
|
18456
|
+
var _excluded$1 = ["label", "prefix", "suffix", "style", "textStyle", "testID", "accessibilityLabelledBy", "error", "required", "editable", "disabled", "maxLength", "helpText", "value"];
|
|
18457
|
+
var getVariant = function getVariant(_ref) {
|
|
18458
|
+
var disabled = _ref.disabled,
|
|
18459
|
+
error = _ref.error,
|
|
18460
|
+
editable = _ref.editable,
|
|
18461
|
+
isFocused = _ref.isFocused,
|
|
18462
|
+
isEmptyValue = _ref.isEmptyValue;
|
|
18094
18463
|
|
|
18095
|
-
|
|
18096
|
-
|
|
18097
|
-
|
|
18098
|
-
suffix = _ref.suffix,
|
|
18099
|
-
style = _ref.style,
|
|
18100
|
-
textStyle = _ref.textStyle,
|
|
18101
|
-
testID = _ref.testID,
|
|
18102
|
-
accessibilityLabelledBy = _ref.accessibilityLabelledBy,
|
|
18103
|
-
nativeProps = _objectWithoutProperties$1(_ref, _excluded$1);
|
|
18464
|
+
if (disabled) {
|
|
18465
|
+
return 'disabled';
|
|
18466
|
+
}
|
|
18104
18467
|
|
|
18105
|
-
|
|
18468
|
+
if (error) {
|
|
18469
|
+
return 'error';
|
|
18470
|
+
}
|
|
18471
|
+
|
|
18472
|
+
if (!editable) {
|
|
18473
|
+
return 'readonly';
|
|
18474
|
+
}
|
|
18475
|
+
|
|
18476
|
+
if (isFocused) {
|
|
18477
|
+
return 'focused';
|
|
18478
|
+
}
|
|
18479
|
+
|
|
18480
|
+
if (!isEmptyValue) {
|
|
18481
|
+
return 'filled';
|
|
18482
|
+
}
|
|
18483
|
+
|
|
18484
|
+
return 'default';
|
|
18485
|
+
};
|
|
18486
|
+
|
|
18487
|
+
var TextInput = function TextInput(_ref2) {
|
|
18488
|
+
var label = _ref2.label,
|
|
18489
|
+
prefix = _ref2.prefix,
|
|
18490
|
+
suffix = _ref2.suffix,
|
|
18491
|
+
style = _ref2.style,
|
|
18492
|
+
textStyle = _ref2.textStyle,
|
|
18493
|
+
testID = _ref2.testID,
|
|
18494
|
+
accessibilityLabelledBy = _ref2.accessibilityLabelledBy,
|
|
18495
|
+
error = _ref2.error,
|
|
18496
|
+
required = _ref2.required,
|
|
18497
|
+
_ref2$editable = _ref2.editable,
|
|
18498
|
+
editable = _ref2$editable === void 0 ? true : _ref2$editable,
|
|
18499
|
+
_ref2$disabled = _ref2.disabled,
|
|
18500
|
+
disabled = _ref2$disabled === void 0 ? false : _ref2$disabled,
|
|
18501
|
+
maxLength = _ref2.maxLength,
|
|
18502
|
+
helpText = _ref2.helpText,
|
|
18503
|
+
_ref2$value = _ref2.value,
|
|
18504
|
+
value = _ref2$value === void 0 ? '' : _ref2$value,
|
|
18505
|
+
nativeProps = _objectWithoutProperties$1(_ref2, _excluded$1);
|
|
18506
|
+
|
|
18507
|
+
var textInputReference = useRef(null);
|
|
18508
|
+
var isEmptyValue = value.length === 0;
|
|
18509
|
+
|
|
18510
|
+
var _React$useState = React.useState(false),
|
|
18511
|
+
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
18512
|
+
isFocused = _React$useState2[0],
|
|
18513
|
+
setIsFocused = _React$useState2[1];
|
|
18514
|
+
|
|
18515
|
+
var variant = getVariant({
|
|
18516
|
+
disabled: disabled,
|
|
18517
|
+
error: error,
|
|
18518
|
+
editable: editable,
|
|
18519
|
+
isFocused: isFocused,
|
|
18520
|
+
isEmptyValue: isEmptyValue
|
|
18521
|
+
});
|
|
18522
|
+
var shouldShowMaxLength = maxLength !== undefined;
|
|
18523
|
+
var theme = useTheme();
|
|
18524
|
+
return /*#__PURE__*/React.createElement(StyledContainer, {
|
|
18106
18525
|
style: style,
|
|
18526
|
+
pointerEvents: variant === 'disabled' ? 'none' : 'auto',
|
|
18107
18527
|
testID: testID
|
|
18108
|
-
},
|
|
18528
|
+
}, /*#__PURE__*/React.createElement(StyledTextInputContainer, null, /*#__PURE__*/React.createElement(StyledBorderBackDrop, {
|
|
18529
|
+
themeVariant: variant
|
|
18530
|
+
}), (isFocused || label && !isEmptyValue) && /*#__PURE__*/React.createElement(StyledLabelContainer, {
|
|
18531
|
+
pointerEvents: "none"
|
|
18532
|
+
}, required && /*#__PURE__*/React.createElement(StyledAsteriskLabel, {
|
|
18533
|
+
themeVariant: variant,
|
|
18534
|
+
fontSize: "small"
|
|
18535
|
+
}, "*"), /*#__PURE__*/React.createElement(StyledLabel, {
|
|
18109
18536
|
nativeID: accessibilityLabelledBy,
|
|
18110
18537
|
testID: "input-label",
|
|
18111
|
-
fontSize: "small"
|
|
18112
|
-
|
|
18538
|
+
fontSize: "small",
|
|
18539
|
+
themeVariant: variant
|
|
18540
|
+
}, label)), typeof prefix === 'string' ? /*#__PURE__*/React.createElement(Icon, {
|
|
18541
|
+
intent: disabled ? 'disabled-text' : 'text',
|
|
18113
18542
|
testID: "input-prefix",
|
|
18114
18543
|
icon: prefix,
|
|
18115
18544
|
size: "xsmall"
|
|
18116
|
-
}), /*#__PURE__*/React.createElement(
|
|
18117
|
-
|
|
18118
|
-
|
|
18545
|
+
}) : prefix, /*#__PURE__*/React.createElement(StyledTextInputAndLabelContainer, null, !isFocused && isEmptyValue && /*#__PURE__*/React.createElement(StyledLabelContainerInsideTextInput, {
|
|
18546
|
+
pointerEvents: "none"
|
|
18547
|
+
}, required && /*#__PURE__*/React.createElement(StyledAsteriskLabelInsideTextInput, {
|
|
18548
|
+
themeVariant: variant
|
|
18549
|
+
}, "*"), /*#__PURE__*/React.createElement(StyledLabelInsideTextInput, {
|
|
18550
|
+
nativeID: accessibilityLabelledBy,
|
|
18551
|
+
testID: "input-label",
|
|
18552
|
+
fontSize: "medium",
|
|
18553
|
+
themeVariant: variant
|
|
18554
|
+
}, label)), /*#__PURE__*/React.createElement(StyledTextInput // when input is not editable on Android, the text color is gray
|
|
18555
|
+
// hence, adding this to make the text color the same as iOS
|
|
18556
|
+
, _extends$3({
|
|
18557
|
+
style: StyleSheet$1.flatten([{
|
|
18558
|
+
color: theme.__hd__.textInput.colors.text
|
|
18559
|
+
}, textStyle]),
|
|
18560
|
+
testID: "text-input",
|
|
18561
|
+
accessibilityState: {
|
|
18562
|
+
disabled: disabled
|
|
18563
|
+
} // @ts-ignore
|
|
18119
18564
|
,
|
|
18120
18565
|
accessibilityLabelledBy: accessibilityLabelledBy
|
|
18121
|
-
}, nativeProps
|
|
18566
|
+
}, nativeProps, {
|
|
18567
|
+
onFocus: function onFocus(event) {
|
|
18568
|
+
var _nativeProps$onFocus;
|
|
18569
|
+
|
|
18570
|
+
setIsFocused(true);
|
|
18571
|
+
(_nativeProps$onFocus = nativeProps.onFocus) === null || _nativeProps$onFocus === void 0 ? void 0 : _nativeProps$onFocus.call(nativeProps, event);
|
|
18572
|
+
},
|
|
18573
|
+
onBlur: function onBlur(event) {
|
|
18574
|
+
var _nativeProps$onBlur;
|
|
18575
|
+
|
|
18576
|
+
setIsFocused(false);
|
|
18577
|
+
(_nativeProps$onBlur = nativeProps.onBlur) === null || _nativeProps$onBlur === void 0 ? void 0 : _nativeProps$onBlur.call(nativeProps, event);
|
|
18578
|
+
},
|
|
18579
|
+
ref: textInputReference,
|
|
18580
|
+
editable: editable,
|
|
18581
|
+
maxLength: maxLength,
|
|
18582
|
+
value: value,
|
|
18583
|
+
onChangeText: function onChangeText(text) {
|
|
18584
|
+
var _nativeProps$onChange;
|
|
18585
|
+
|
|
18586
|
+
(_nativeProps$onChange = nativeProps.onChangeText) === null || _nativeProps$onChange === void 0 ? void 0 : _nativeProps$onChange.call(nativeProps, text);
|
|
18587
|
+
},
|
|
18588
|
+
placeholder: variant === 'focused' ? nativeProps.placeholder : undefined
|
|
18589
|
+
}))), typeof suffix === 'string' ? /*#__PURE__*/React.createElement(Icon, {
|
|
18590
|
+
intent: disabled ? 'disabled-text' : 'text',
|
|
18122
18591
|
testID: "input-suffix",
|
|
18123
18592
|
icon: suffix,
|
|
18124
18593
|
size: "xsmall"
|
|
18125
|
-
}))
|
|
18594
|
+
}) : suffix), /*#__PURE__*/React.createElement(StyledErrorAndHelpTextContainer, null, error && /*#__PURE__*/React.createElement(StyledErrorContainer, null, /*#__PURE__*/React.createElement(Icon, {
|
|
18595
|
+
testID: "input-error-icon",
|
|
18596
|
+
icon: "circle-info",
|
|
18597
|
+
size: "xsmall",
|
|
18598
|
+
intent: "danger"
|
|
18599
|
+
}), /*#__PURE__*/React.createElement(StyledError, {
|
|
18600
|
+
testID: "input-error-message"
|
|
18601
|
+
}, error)), shouldShowMaxLength && /*#__PURE__*/React.createElement(StyledMaxLengthMessage, {
|
|
18602
|
+
themeVariant: variant,
|
|
18603
|
+
fontSize: "small"
|
|
18604
|
+
}, value.length, "/", maxLength), helpText && /*#__PURE__*/React.createElement(StyledHelperText, null, helpText)));
|
|
18126
18605
|
};
|
|
18127
18606
|
|
|
18128
18607
|
function MultiSelect(_ref) {
|