@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/lib/index.js
CHANGED
|
@@ -2648,6 +2648,7 @@ var systemPalette = {
|
|
|
2648
2648
|
backgroundLight: palette$6.greyLight95,
|
|
2649
2649
|
backgroundDark: palette$6.greyDark75,
|
|
2650
2650
|
text: palette$6.greyDark75,
|
|
2651
|
+
subduedText: palette$6.greyDark30,
|
|
2651
2652
|
disabledText: palette$6.greyDark15,
|
|
2652
2653
|
disabledLightText: palette$6.greyLight45,
|
|
2653
2654
|
invertedText: palette$6.white,
|
|
@@ -2948,7 +2949,9 @@ var getButtonTheme = function getButtonTheme(theme) {
|
|
|
2948
2949
|
"default": theme.fonts.semiBold
|
|
2949
2950
|
};
|
|
2950
2951
|
var fontSize = {
|
|
2951
|
-
"default": theme.fontSizes.xlarge
|
|
2952
|
+
"default": theme.fontSizes.xlarge,
|
|
2953
|
+
utility: theme.fontSizes.large,
|
|
2954
|
+
textVariant: theme.fontSizes.large
|
|
2952
2955
|
};
|
|
2953
2956
|
var lineHeight = {
|
|
2954
2957
|
"default": theme.lineHeights.large
|
|
@@ -2958,13 +2961,16 @@ var getButtonTheme = function getButtonTheme(theme) {
|
|
|
2958
2961
|
};
|
|
2959
2962
|
var space = {
|
|
2960
2963
|
buttonPadding: theme.space.medium,
|
|
2961
|
-
iconPadding: theme.space.small
|
|
2964
|
+
iconPadding: theme.space.small,
|
|
2965
|
+
utilityPadding: theme.space.small,
|
|
2966
|
+
utilityIconPadding: theme.space.smallMedium
|
|
2962
2967
|
};
|
|
2963
2968
|
var sizes = {
|
|
2964
2969
|
iconSize: theme.fontSizes.xxlarge
|
|
2965
2970
|
};
|
|
2966
2971
|
var radii = {
|
|
2967
|
-
"default": theme.space.xlarge
|
|
2972
|
+
"default": theme.space.xlarge,
|
|
2973
|
+
utilityRadii: theme.space.small
|
|
2968
2974
|
};
|
|
2969
2975
|
var colors = {
|
|
2970
2976
|
primary: theme.colors.primary,
|
|
@@ -2977,7 +2983,8 @@ var getButtonTheme = function getButtonTheme(theme) {
|
|
|
2977
2983
|
disabledText: theme.colors.disabledLightText,
|
|
2978
2984
|
disabledBorder: theme.colors.disabledLightText,
|
|
2979
2985
|
disabledBackground: theme.colors.disabledLightText,
|
|
2980
|
-
invertedText: theme.colors.invertedText
|
|
2986
|
+
invertedText: theme.colors.invertedText,
|
|
2987
|
+
utilityBackground: theme.colors.backgroundLight
|
|
2981
2988
|
};
|
|
2982
2989
|
return {
|
|
2983
2990
|
borderWidth: borderWidth,
|
|
@@ -3407,20 +3414,79 @@ var getTagTheme = function getTagTheme(theme) {
|
|
|
3407
3414
|
var getTextInputTheme = function getTextInputTheme(theme) {
|
|
3408
3415
|
var colors = {
|
|
3409
3416
|
labelBackground: theme.colors.platformBackground,
|
|
3410
|
-
|
|
3417
|
+
asterisks: {
|
|
3418
|
+
"default": theme.colors.danger,
|
|
3419
|
+
error: theme.colors.danger,
|
|
3420
|
+
disabled: theme.colors.disabledLightText,
|
|
3421
|
+
readonly: theme.colors.disabledText,
|
|
3422
|
+
filled: theme.colors.danger,
|
|
3423
|
+
focused: theme.colors.danger
|
|
3424
|
+
},
|
|
3425
|
+
error: theme.colors.danger,
|
|
3426
|
+
placeholderIfNotFocused: theme.colors.text,
|
|
3427
|
+
placeholderIfFocued: theme.colors.disabledText,
|
|
3428
|
+
label: theme.colors.text,
|
|
3429
|
+
readonlyLabel: theme.colors.disabledText,
|
|
3430
|
+
disabledLabel: theme.colors.disabledLightText,
|
|
3431
|
+
text: theme.colors.text,
|
|
3432
|
+
borders: {
|
|
3433
|
+
"default": theme.colors.text,
|
|
3434
|
+
error: theme.colors.danger,
|
|
3435
|
+
disabled: theme.colors.disabledLightText,
|
|
3436
|
+
readonly: theme.colors.disabledText,
|
|
3437
|
+
filled: theme.colors.text,
|
|
3438
|
+
focused: theme.colors.text
|
|
3439
|
+
},
|
|
3440
|
+
labels: {
|
|
3441
|
+
"default": theme.colors.text,
|
|
3442
|
+
error: theme.colors.text,
|
|
3443
|
+
disabled: theme.colors.disabledLightText,
|
|
3444
|
+
readonly: theme.colors.disabledText,
|
|
3445
|
+
filled: theme.colors.text,
|
|
3446
|
+
focused: theme.colors.text
|
|
3447
|
+
},
|
|
3448
|
+
labelsInsideTextInput: {
|
|
3449
|
+
"default": theme.colors.text,
|
|
3450
|
+
error: theme.colors.text,
|
|
3451
|
+
disabled: theme.colors.disabledLightText,
|
|
3452
|
+
readonly: theme.colors.disabledText,
|
|
3453
|
+
filled: theme.colors.text,
|
|
3454
|
+
focused: theme.colors.text
|
|
3455
|
+
},
|
|
3456
|
+
maxLengthLabels: {
|
|
3457
|
+
"default": theme.colors.text,
|
|
3458
|
+
error: theme.colors.danger,
|
|
3459
|
+
disabled: theme.colors.disabledLightText,
|
|
3460
|
+
readonly: theme.colors.disabledText,
|
|
3461
|
+
filled: theme.colors.text,
|
|
3462
|
+
focused: theme.colors.text
|
|
3463
|
+
}
|
|
3411
3464
|
};
|
|
3412
3465
|
var space = {
|
|
3413
3466
|
containerPadding: theme.space.medium,
|
|
3414
3467
|
labelLeft: theme.space.medium,
|
|
3415
3468
|
labelTop: theme.lineHeights.small / -2,
|
|
3469
|
+
labelPaddingBottom: theme.space.small,
|
|
3416
3470
|
labelHorizontalPadding: theme.space.xsmall,
|
|
3417
|
-
inputHorizontalMargin: theme.space.small
|
|
3471
|
+
inputHorizontalMargin: theme.space.small,
|
|
3472
|
+
containerMarginVertical: theme.space.small,
|
|
3473
|
+
errorContainerMarginLeft: theme.space.medium,
|
|
3474
|
+
errorContainerMarginRight: theme.space.xsmall,
|
|
3475
|
+
errorMarginLeft: theme.space.xsmall,
|
|
3476
|
+
maxLengthLabelMarginLeft: theme.space.xsmall
|
|
3418
3477
|
};
|
|
3419
3478
|
var fontSizes = {
|
|
3420
|
-
text: theme.fontSizes.
|
|
3479
|
+
text: theme.fontSizes.medium,
|
|
3480
|
+
labelInsideTextInput: theme.fontSizes.medium,
|
|
3481
|
+
error: theme.fontSizes.small,
|
|
3482
|
+
maxLength: theme.fontSizes.small,
|
|
3483
|
+
asteriskLabel: theme.fontSizes.medium
|
|
3421
3484
|
};
|
|
3422
3485
|
var borderWidths = {
|
|
3423
|
-
container:
|
|
3486
|
+
container: {
|
|
3487
|
+
normal: theme.borderWidths.base,
|
|
3488
|
+
focused: theme.borderWidths.medium
|
|
3489
|
+
}
|
|
3424
3490
|
};
|
|
3425
3491
|
var radii = {
|
|
3426
3492
|
container: theme.radii.medium
|
|
@@ -9965,6 +10031,68 @@ var icons = [
|
|
|
9965
10031
|
setId: 0,
|
|
9966
10032
|
iconIdx: 94
|
|
9967
10033
|
},
|
|
10034
|
+
{
|
|
10035
|
+
icon: {
|
|
10036
|
+
paths: [
|
|
10037
|
+
"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"
|
|
10038
|
+
],
|
|
10039
|
+
attrs: [
|
|
10040
|
+
{
|
|
10041
|
+
}
|
|
10042
|
+
],
|
|
10043
|
+
isMulticolor: false,
|
|
10044
|
+
isMulticolor2: false,
|
|
10045
|
+
grid: 0,
|
|
10046
|
+
tags: [
|
|
10047
|
+
"looks-one"
|
|
10048
|
+
]
|
|
10049
|
+
},
|
|
10050
|
+
attrs: [
|
|
10051
|
+
{
|
|
10052
|
+
}
|
|
10053
|
+
],
|
|
10054
|
+
properties: {
|
|
10055
|
+
order: 2599,
|
|
10056
|
+
id: 306,
|
|
10057
|
+
name: "looks-one",
|
|
10058
|
+
prevSize: 32,
|
|
10059
|
+
code: 59950
|
|
10060
|
+
},
|
|
10061
|
+
setIdx: 0,
|
|
10062
|
+
setId: 0,
|
|
10063
|
+
iconIdx: 95
|
|
10064
|
+
},
|
|
10065
|
+
{
|
|
10066
|
+
icon: {
|
|
10067
|
+
paths: [
|
|
10068
|
+
"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"
|
|
10069
|
+
],
|
|
10070
|
+
attrs: [
|
|
10071
|
+
{
|
|
10072
|
+
}
|
|
10073
|
+
],
|
|
10074
|
+
isMulticolor: false,
|
|
10075
|
+
isMulticolor2: false,
|
|
10076
|
+
grid: 0,
|
|
10077
|
+
tags: [
|
|
10078
|
+
"looks-two"
|
|
10079
|
+
]
|
|
10080
|
+
},
|
|
10081
|
+
attrs: [
|
|
10082
|
+
{
|
|
10083
|
+
}
|
|
10084
|
+
],
|
|
10085
|
+
properties: {
|
|
10086
|
+
order: 2598,
|
|
10087
|
+
id: 305,
|
|
10088
|
+
name: "looks-two",
|
|
10089
|
+
prevSize: 32,
|
|
10090
|
+
code: 59951
|
|
10091
|
+
},
|
|
10092
|
+
setIdx: 0,
|
|
10093
|
+
setId: 0,
|
|
10094
|
+
iconIdx: 96
|
|
10095
|
+
},
|
|
9968
10096
|
{
|
|
9969
10097
|
icon: {
|
|
9970
10098
|
paths: [
|
|
@@ -9988,7 +10116,7 @@ var icons = [
|
|
|
9988
10116
|
},
|
|
9989
10117
|
setIdx: 0,
|
|
9990
10118
|
setId: 0,
|
|
9991
|
-
iconIdx:
|
|
10119
|
+
iconIdx: 97
|
|
9992
10120
|
},
|
|
9993
10121
|
{
|
|
9994
10122
|
icon: {
|
|
@@ -10015,7 +10143,7 @@ var icons = [
|
|
|
10015
10143
|
},
|
|
10016
10144
|
setIdx: 0,
|
|
10017
10145
|
setId: 0,
|
|
10018
|
-
iconIdx:
|
|
10146
|
+
iconIdx: 98
|
|
10019
10147
|
},
|
|
10020
10148
|
{
|
|
10021
10149
|
icon: {
|
|
@@ -10040,7 +10168,7 @@ var icons = [
|
|
|
10040
10168
|
},
|
|
10041
10169
|
setIdx: 0,
|
|
10042
10170
|
setId: 0,
|
|
10043
|
-
iconIdx:
|
|
10171
|
+
iconIdx: 99
|
|
10044
10172
|
},
|
|
10045
10173
|
{
|
|
10046
10174
|
icon: {
|
|
@@ -10065,7 +10193,7 @@ var icons = [
|
|
|
10065
10193
|
},
|
|
10066
10194
|
setIdx: 0,
|
|
10067
10195
|
setId: 0,
|
|
10068
|
-
iconIdx:
|
|
10196
|
+
iconIdx: 100
|
|
10069
10197
|
},
|
|
10070
10198
|
{
|
|
10071
10199
|
icon: {
|
|
@@ -10092,7 +10220,7 @@ var icons = [
|
|
|
10092
10220
|
},
|
|
10093
10221
|
setIdx: 0,
|
|
10094
10222
|
setId: 0,
|
|
10095
|
-
iconIdx:
|
|
10223
|
+
iconIdx: 101
|
|
10096
10224
|
},
|
|
10097
10225
|
{
|
|
10098
10226
|
icon: {
|
|
@@ -10122,7 +10250,7 @@ var icons = [
|
|
|
10122
10250
|
},
|
|
10123
10251
|
setIdx: 0,
|
|
10124
10252
|
setId: 0,
|
|
10125
|
-
iconIdx:
|
|
10253
|
+
iconIdx: 102
|
|
10126
10254
|
},
|
|
10127
10255
|
{
|
|
10128
10256
|
icon: {
|
|
@@ -10147,7 +10275,7 @@ var icons = [
|
|
|
10147
10275
|
},
|
|
10148
10276
|
setIdx: 0,
|
|
10149
10277
|
setId: 0,
|
|
10150
|
-
iconIdx:
|
|
10278
|
+
iconIdx: 103
|
|
10151
10279
|
},
|
|
10152
10280
|
{
|
|
10153
10281
|
icon: {
|
|
@@ -10172,7 +10300,7 @@ var icons = [
|
|
|
10172
10300
|
},
|
|
10173
10301
|
setIdx: 0,
|
|
10174
10302
|
setId: 0,
|
|
10175
|
-
iconIdx:
|
|
10303
|
+
iconIdx: 104
|
|
10176
10304
|
},
|
|
10177
10305
|
{
|
|
10178
10306
|
icon: {
|
|
@@ -10197,7 +10325,7 @@ var icons = [
|
|
|
10197
10325
|
},
|
|
10198
10326
|
setIdx: 0,
|
|
10199
10327
|
setId: 0,
|
|
10200
|
-
iconIdx:
|
|
10328
|
+
iconIdx: 105
|
|
10201
10329
|
},
|
|
10202
10330
|
{
|
|
10203
10331
|
icon: {
|
|
@@ -10222,7 +10350,7 @@ var icons = [
|
|
|
10222
10350
|
},
|
|
10223
10351
|
setIdx: 0,
|
|
10224
10352
|
setId: 0,
|
|
10225
|
-
iconIdx:
|
|
10353
|
+
iconIdx: 106
|
|
10226
10354
|
},
|
|
10227
10355
|
{
|
|
10228
10356
|
icon: {
|
|
@@ -10248,7 +10376,7 @@ var icons = [
|
|
|
10248
10376
|
},
|
|
10249
10377
|
setIdx: 0,
|
|
10250
10378
|
setId: 0,
|
|
10251
|
-
iconIdx:
|
|
10379
|
+
iconIdx: 107
|
|
10252
10380
|
},
|
|
10253
10381
|
{
|
|
10254
10382
|
icon: {
|
|
@@ -10273,7 +10401,7 @@ var icons = [
|
|
|
10273
10401
|
},
|
|
10274
10402
|
setIdx: 0,
|
|
10275
10403
|
setId: 0,
|
|
10276
|
-
iconIdx:
|
|
10404
|
+
iconIdx: 108
|
|
10277
10405
|
},
|
|
10278
10406
|
{
|
|
10279
10407
|
icon: {
|
|
@@ -10298,7 +10426,7 @@ var icons = [
|
|
|
10298
10426
|
},
|
|
10299
10427
|
setIdx: 0,
|
|
10300
10428
|
setId: 0,
|
|
10301
|
-
iconIdx:
|
|
10429
|
+
iconIdx: 109
|
|
10302
10430
|
},
|
|
10303
10431
|
{
|
|
10304
10432
|
icon: {
|
|
@@ -10323,7 +10451,7 @@ var icons = [
|
|
|
10323
10451
|
},
|
|
10324
10452
|
setIdx: 0,
|
|
10325
10453
|
setId: 0,
|
|
10326
|
-
iconIdx:
|
|
10454
|
+
iconIdx: 110
|
|
10327
10455
|
},
|
|
10328
10456
|
{
|
|
10329
10457
|
icon: {
|
|
@@ -10348,7 +10476,7 @@ var icons = [
|
|
|
10348
10476
|
},
|
|
10349
10477
|
setIdx: 0,
|
|
10350
10478
|
setId: 0,
|
|
10351
|
-
iconIdx:
|
|
10479
|
+
iconIdx: 111
|
|
10352
10480
|
},
|
|
10353
10481
|
{
|
|
10354
10482
|
icon: {
|
|
@@ -10373,7 +10501,7 @@ var icons = [
|
|
|
10373
10501
|
},
|
|
10374
10502
|
setIdx: 0,
|
|
10375
10503
|
setId: 0,
|
|
10376
|
-
iconIdx:
|
|
10504
|
+
iconIdx: 112
|
|
10377
10505
|
},
|
|
10378
10506
|
{
|
|
10379
10507
|
icon: {
|
|
@@ -10402,7 +10530,7 @@ var icons = [
|
|
|
10402
10530
|
},
|
|
10403
10531
|
setIdx: 0,
|
|
10404
10532
|
setId: 0,
|
|
10405
|
-
iconIdx:
|
|
10533
|
+
iconIdx: 113
|
|
10406
10534
|
},
|
|
10407
10535
|
{
|
|
10408
10536
|
icon: {
|
|
@@ -10427,7 +10555,7 @@ var icons = [
|
|
|
10427
10555
|
},
|
|
10428
10556
|
setIdx: 0,
|
|
10429
10557
|
setId: 0,
|
|
10430
|
-
iconIdx:
|
|
10558
|
+
iconIdx: 114
|
|
10431
10559
|
},
|
|
10432
10560
|
{
|
|
10433
10561
|
icon: {
|
|
@@ -10452,7 +10580,7 @@ var icons = [
|
|
|
10452
10580
|
},
|
|
10453
10581
|
setIdx: 0,
|
|
10454
10582
|
setId: 0,
|
|
10455
|
-
iconIdx:
|
|
10583
|
+
iconIdx: 115
|
|
10456
10584
|
},
|
|
10457
10585
|
{
|
|
10458
10586
|
icon: {
|
|
@@ -10477,7 +10605,7 @@ var icons = [
|
|
|
10477
10605
|
},
|
|
10478
10606
|
setIdx: 0,
|
|
10479
10607
|
setId: 0,
|
|
10480
|
-
iconIdx:
|
|
10608
|
+
iconIdx: 116
|
|
10481
10609
|
},
|
|
10482
10610
|
{
|
|
10483
10611
|
icon: {
|
|
@@ -10502,7 +10630,7 @@ var icons = [
|
|
|
10502
10630
|
},
|
|
10503
10631
|
setIdx: 0,
|
|
10504
10632
|
setId: 0,
|
|
10505
|
-
iconIdx:
|
|
10633
|
+
iconIdx: 117
|
|
10506
10634
|
},
|
|
10507
10635
|
{
|
|
10508
10636
|
icon: {
|
|
@@ -10527,7 +10655,7 @@ var icons = [
|
|
|
10527
10655
|
},
|
|
10528
10656
|
setIdx: 0,
|
|
10529
10657
|
setId: 0,
|
|
10530
|
-
iconIdx:
|
|
10658
|
+
iconIdx: 118
|
|
10531
10659
|
},
|
|
10532
10660
|
{
|
|
10533
10661
|
icon: {
|
|
@@ -10558,7 +10686,7 @@ var icons = [
|
|
|
10558
10686
|
},
|
|
10559
10687
|
setIdx: 0,
|
|
10560
10688
|
setId: 0,
|
|
10561
|
-
iconIdx:
|
|
10689
|
+
iconIdx: 119
|
|
10562
10690
|
},
|
|
10563
10691
|
{
|
|
10564
10692
|
icon: {
|
|
@@ -10583,7 +10711,7 @@ var icons = [
|
|
|
10583
10711
|
},
|
|
10584
10712
|
setIdx: 0,
|
|
10585
10713
|
setId: 0,
|
|
10586
|
-
iconIdx:
|
|
10714
|
+
iconIdx: 120
|
|
10587
10715
|
},
|
|
10588
10716
|
{
|
|
10589
10717
|
icon: {
|
|
@@ -10614,7 +10742,7 @@ var icons = [
|
|
|
10614
10742
|
},
|
|
10615
10743
|
setIdx: 0,
|
|
10616
10744
|
setId: 0,
|
|
10617
|
-
iconIdx:
|
|
10745
|
+
iconIdx: 121
|
|
10618
10746
|
},
|
|
10619
10747
|
{
|
|
10620
10748
|
icon: {
|
|
@@ -10639,7 +10767,7 @@ var icons = [
|
|
|
10639
10767
|
},
|
|
10640
10768
|
setIdx: 0,
|
|
10641
10769
|
setId: 0,
|
|
10642
|
-
iconIdx:
|
|
10770
|
+
iconIdx: 122
|
|
10643
10771
|
},
|
|
10644
10772
|
{
|
|
10645
10773
|
icon: {
|
|
@@ -10664,7 +10792,7 @@ var icons = [
|
|
|
10664
10792
|
},
|
|
10665
10793
|
setIdx: 0,
|
|
10666
10794
|
setId: 0,
|
|
10667
|
-
iconIdx:
|
|
10795
|
+
iconIdx: 123
|
|
10668
10796
|
},
|
|
10669
10797
|
{
|
|
10670
10798
|
icon: {
|
|
@@ -10689,7 +10817,7 @@ var icons = [
|
|
|
10689
10817
|
},
|
|
10690
10818
|
setIdx: 0,
|
|
10691
10819
|
setId: 0,
|
|
10692
|
-
iconIdx:
|
|
10820
|
+
iconIdx: 124
|
|
10693
10821
|
},
|
|
10694
10822
|
{
|
|
10695
10823
|
icon: {
|
|
@@ -10714,7 +10842,7 @@ var icons = [
|
|
|
10714
10842
|
},
|
|
10715
10843
|
setIdx: 0,
|
|
10716
10844
|
setId: 0,
|
|
10717
|
-
iconIdx:
|
|
10845
|
+
iconIdx: 125
|
|
10718
10846
|
},
|
|
10719
10847
|
{
|
|
10720
10848
|
icon: {
|
|
@@ -10746,7 +10874,7 @@ var icons = [
|
|
|
10746
10874
|
},
|
|
10747
10875
|
setIdx: 0,
|
|
10748
10876
|
setId: 0,
|
|
10749
|
-
iconIdx:
|
|
10877
|
+
iconIdx: 126
|
|
10750
10878
|
},
|
|
10751
10879
|
{
|
|
10752
10880
|
icon: {
|
|
@@ -10771,7 +10899,7 @@ var icons = [
|
|
|
10771
10899
|
},
|
|
10772
10900
|
setIdx: 0,
|
|
10773
10901
|
setId: 0,
|
|
10774
|
-
iconIdx:
|
|
10902
|
+
iconIdx: 127
|
|
10775
10903
|
},
|
|
10776
10904
|
{
|
|
10777
10905
|
icon: {
|
|
@@ -10805,7 +10933,7 @@ var icons = [
|
|
|
10805
10933
|
},
|
|
10806
10934
|
setIdx: 0,
|
|
10807
10935
|
setId: 0,
|
|
10808
|
-
iconIdx:
|
|
10936
|
+
iconIdx: 128
|
|
10809
10937
|
},
|
|
10810
10938
|
{
|
|
10811
10939
|
icon: {
|
|
@@ -10831,7 +10959,7 @@ var icons = [
|
|
|
10831
10959
|
},
|
|
10832
10960
|
setIdx: 0,
|
|
10833
10961
|
setId: 0,
|
|
10834
|
-
iconIdx:
|
|
10962
|
+
iconIdx: 129
|
|
10835
10963
|
},
|
|
10836
10964
|
{
|
|
10837
10965
|
icon: {
|
|
@@ -10856,7 +10984,7 @@ var icons = [
|
|
|
10856
10984
|
},
|
|
10857
10985
|
setIdx: 0,
|
|
10858
10986
|
setId: 0,
|
|
10859
|
-
iconIdx:
|
|
10987
|
+
iconIdx: 130
|
|
10860
10988
|
},
|
|
10861
10989
|
{
|
|
10862
10990
|
icon: {
|
|
@@ -10883,7 +11011,7 @@ var icons = [
|
|
|
10883
11011
|
},
|
|
10884
11012
|
setIdx: 0,
|
|
10885
11013
|
setId: 0,
|
|
10886
|
-
iconIdx:
|
|
11014
|
+
iconIdx: 131
|
|
10887
11015
|
},
|
|
10888
11016
|
{
|
|
10889
11017
|
icon: {
|
|
@@ -10913,7 +11041,7 @@ var icons = [
|
|
|
10913
11041
|
},
|
|
10914
11042
|
setIdx: 0,
|
|
10915
11043
|
setId: 0,
|
|
10916
|
-
iconIdx:
|
|
11044
|
+
iconIdx: 132
|
|
10917
11045
|
},
|
|
10918
11046
|
{
|
|
10919
11047
|
icon: {
|
|
@@ -10938,7 +11066,7 @@ var icons = [
|
|
|
10938
11066
|
},
|
|
10939
11067
|
setIdx: 0,
|
|
10940
11068
|
setId: 0,
|
|
10941
|
-
iconIdx:
|
|
11069
|
+
iconIdx: 133
|
|
10942
11070
|
},
|
|
10943
11071
|
{
|
|
10944
11072
|
icon: {
|
|
@@ -10963,7 +11091,7 @@ var icons = [
|
|
|
10963
11091
|
},
|
|
10964
11092
|
setIdx: 0,
|
|
10965
11093
|
setId: 0,
|
|
10966
|
-
iconIdx:
|
|
11094
|
+
iconIdx: 134
|
|
10967
11095
|
},
|
|
10968
11096
|
{
|
|
10969
11097
|
icon: {
|
|
@@ -10989,7 +11117,7 @@ var icons = [
|
|
|
10989
11117
|
},
|
|
10990
11118
|
setIdx: 0,
|
|
10991
11119
|
setId: 0,
|
|
10992
|
-
iconIdx:
|
|
11120
|
+
iconIdx: 135
|
|
10993
11121
|
},
|
|
10994
11122
|
{
|
|
10995
11123
|
icon: {
|
|
@@ -11014,7 +11142,7 @@ var icons = [
|
|
|
11014
11142
|
},
|
|
11015
11143
|
setIdx: 0,
|
|
11016
11144
|
setId: 0,
|
|
11017
|
-
iconIdx:
|
|
11145
|
+
iconIdx: 136
|
|
11018
11146
|
},
|
|
11019
11147
|
{
|
|
11020
11148
|
icon: {
|
|
@@ -11040,7 +11168,7 @@ var icons = [
|
|
|
11040
11168
|
},
|
|
11041
11169
|
setIdx: 0,
|
|
11042
11170
|
setId: 0,
|
|
11043
|
-
iconIdx:
|
|
11171
|
+
iconIdx: 137
|
|
11044
11172
|
},
|
|
11045
11173
|
{
|
|
11046
11174
|
icon: {
|
|
@@ -11065,7 +11193,7 @@ var icons = [
|
|
|
11065
11193
|
},
|
|
11066
11194
|
setIdx: 0,
|
|
11067
11195
|
setId: 0,
|
|
11068
|
-
iconIdx:
|
|
11196
|
+
iconIdx: 138
|
|
11069
11197
|
},
|
|
11070
11198
|
{
|
|
11071
11199
|
icon: {
|
|
@@ -11090,7 +11218,7 @@ var icons = [
|
|
|
11090
11218
|
},
|
|
11091
11219
|
setIdx: 0,
|
|
11092
11220
|
setId: 0,
|
|
11093
|
-
iconIdx:
|
|
11221
|
+
iconIdx: 139
|
|
11094
11222
|
},
|
|
11095
11223
|
{
|
|
11096
11224
|
icon: {
|
|
@@ -11121,7 +11249,7 @@ var icons = [
|
|
|
11121
11249
|
},
|
|
11122
11250
|
setIdx: 0,
|
|
11123
11251
|
setId: 0,
|
|
11124
|
-
iconIdx:
|
|
11252
|
+
iconIdx: 140
|
|
11125
11253
|
},
|
|
11126
11254
|
{
|
|
11127
11255
|
icon: {
|
|
@@ -11146,7 +11274,7 @@ var icons = [
|
|
|
11146
11274
|
},
|
|
11147
11275
|
setIdx: 0,
|
|
11148
11276
|
setId: 0,
|
|
11149
|
-
iconIdx:
|
|
11277
|
+
iconIdx: 141
|
|
11150
11278
|
},
|
|
11151
11279
|
{
|
|
11152
11280
|
icon: {
|
|
@@ -11171,7 +11299,7 @@ var icons = [
|
|
|
11171
11299
|
},
|
|
11172
11300
|
setIdx: 0,
|
|
11173
11301
|
setId: 0,
|
|
11174
|
-
iconIdx:
|
|
11302
|
+
iconIdx: 142
|
|
11175
11303
|
},
|
|
11176
11304
|
{
|
|
11177
11305
|
icon: {
|
|
@@ -11196,7 +11324,7 @@ var icons = [
|
|
|
11196
11324
|
},
|
|
11197
11325
|
setIdx: 0,
|
|
11198
11326
|
setId: 0,
|
|
11199
|
-
iconIdx:
|
|
11327
|
+
iconIdx: 143
|
|
11200
11328
|
},
|
|
11201
11329
|
{
|
|
11202
11330
|
icon: {
|
|
@@ -11221,7 +11349,7 @@ var icons = [
|
|
|
11221
11349
|
},
|
|
11222
11350
|
setIdx: 0,
|
|
11223
11351
|
setId: 0,
|
|
11224
|
-
iconIdx:
|
|
11352
|
+
iconIdx: 144
|
|
11225
11353
|
},
|
|
11226
11354
|
{
|
|
11227
11355
|
icon: {
|
|
@@ -11247,7 +11375,7 @@ var icons = [
|
|
|
11247
11375
|
},
|
|
11248
11376
|
setIdx: 0,
|
|
11249
11377
|
setId: 0,
|
|
11250
|
-
iconIdx:
|
|
11378
|
+
iconIdx: 145
|
|
11251
11379
|
},
|
|
11252
11380
|
{
|
|
11253
11381
|
icon: {
|
|
@@ -11272,7 +11400,7 @@ var icons = [
|
|
|
11272
11400
|
},
|
|
11273
11401
|
setIdx: 0,
|
|
11274
11402
|
setId: 0,
|
|
11275
|
-
iconIdx:
|
|
11403
|
+
iconIdx: 146
|
|
11276
11404
|
},
|
|
11277
11405
|
{
|
|
11278
11406
|
icon: {
|
|
@@ -11297,7 +11425,7 @@ var icons = [
|
|
|
11297
11425
|
},
|
|
11298
11426
|
setIdx: 0,
|
|
11299
11427
|
setId: 0,
|
|
11300
|
-
iconIdx:
|
|
11428
|
+
iconIdx: 147
|
|
11301
11429
|
},
|
|
11302
11430
|
{
|
|
11303
11431
|
icon: {
|
|
@@ -11327,7 +11455,7 @@ var icons = [
|
|
|
11327
11455
|
},
|
|
11328
11456
|
setIdx: 0,
|
|
11329
11457
|
setId: 0,
|
|
11330
|
-
iconIdx:
|
|
11458
|
+
iconIdx: 148
|
|
11331
11459
|
},
|
|
11332
11460
|
{
|
|
11333
11461
|
icon: {
|
|
@@ -11352,7 +11480,7 @@ var icons = [
|
|
|
11352
11480
|
},
|
|
11353
11481
|
setIdx: 0,
|
|
11354
11482
|
setId: 0,
|
|
11355
|
-
iconIdx:
|
|
11483
|
+
iconIdx: 149
|
|
11356
11484
|
},
|
|
11357
11485
|
{
|
|
11358
11486
|
icon: {
|
|
@@ -11377,7 +11505,7 @@ var icons = [
|
|
|
11377
11505
|
},
|
|
11378
11506
|
setIdx: 0,
|
|
11379
11507
|
setId: 0,
|
|
11380
|
-
iconIdx:
|
|
11508
|
+
iconIdx: 150
|
|
11381
11509
|
},
|
|
11382
11510
|
{
|
|
11383
11511
|
icon: {
|
|
@@ -11402,7 +11530,7 @@ var icons = [
|
|
|
11402
11530
|
},
|
|
11403
11531
|
setIdx: 0,
|
|
11404
11532
|
setId: 0,
|
|
11405
|
-
iconIdx:
|
|
11533
|
+
iconIdx: 151
|
|
11406
11534
|
},
|
|
11407
11535
|
{
|
|
11408
11536
|
icon: {
|
|
@@ -11427,7 +11555,7 @@ var icons = [
|
|
|
11427
11555
|
},
|
|
11428
11556
|
setIdx: 0,
|
|
11429
11557
|
setId: 0,
|
|
11430
|
-
iconIdx:
|
|
11558
|
+
iconIdx: 152
|
|
11431
11559
|
},
|
|
11432
11560
|
{
|
|
11433
11561
|
icon: {
|
|
@@ -11452,7 +11580,7 @@ var icons = [
|
|
|
11452
11580
|
},
|
|
11453
11581
|
setIdx: 0,
|
|
11454
11582
|
setId: 0,
|
|
11455
|
-
iconIdx:
|
|
11583
|
+
iconIdx: 153
|
|
11456
11584
|
},
|
|
11457
11585
|
{
|
|
11458
11586
|
icon: {
|
|
@@ -11477,7 +11605,7 @@ var icons = [
|
|
|
11477
11605
|
},
|
|
11478
11606
|
setIdx: 0,
|
|
11479
11607
|
setId: 0,
|
|
11480
|
-
iconIdx:
|
|
11608
|
+
iconIdx: 154
|
|
11481
11609
|
},
|
|
11482
11610
|
{
|
|
11483
11611
|
icon: {
|
|
@@ -11502,7 +11630,7 @@ var icons = [
|
|
|
11502
11630
|
},
|
|
11503
11631
|
setIdx: 0,
|
|
11504
11632
|
setId: 0,
|
|
11505
|
-
iconIdx:
|
|
11633
|
+
iconIdx: 155
|
|
11506
11634
|
},
|
|
11507
11635
|
{
|
|
11508
11636
|
icon: {
|
|
@@ -11530,7 +11658,7 @@ var icons = [
|
|
|
11530
11658
|
},
|
|
11531
11659
|
setIdx: 0,
|
|
11532
11660
|
setId: 0,
|
|
11533
|
-
iconIdx:
|
|
11661
|
+
iconIdx: 156
|
|
11534
11662
|
},
|
|
11535
11663
|
{
|
|
11536
11664
|
icon: {
|
|
@@ -11555,7 +11683,7 @@ var icons = [
|
|
|
11555
11683
|
},
|
|
11556
11684
|
setIdx: 0,
|
|
11557
11685
|
setId: 0,
|
|
11558
|
-
iconIdx:
|
|
11686
|
+
iconIdx: 157
|
|
11559
11687
|
},
|
|
11560
11688
|
{
|
|
11561
11689
|
icon: {
|
|
@@ -11580,7 +11708,7 @@ var icons = [
|
|
|
11580
11708
|
},
|
|
11581
11709
|
setIdx: 0,
|
|
11582
11710
|
setId: 0,
|
|
11583
|
-
iconIdx:
|
|
11711
|
+
iconIdx: 158
|
|
11584
11712
|
},
|
|
11585
11713
|
{
|
|
11586
11714
|
icon: {
|
|
@@ -11605,7 +11733,7 @@ var icons = [
|
|
|
11605
11733
|
},
|
|
11606
11734
|
setIdx: 0,
|
|
11607
11735
|
setId: 0,
|
|
11608
|
-
iconIdx:
|
|
11736
|
+
iconIdx: 159
|
|
11609
11737
|
},
|
|
11610
11738
|
{
|
|
11611
11739
|
icon: {
|
|
@@ -11630,7 +11758,7 @@ var icons = [
|
|
|
11630
11758
|
},
|
|
11631
11759
|
setIdx: 0,
|
|
11632
11760
|
setId: 0,
|
|
11633
|
-
iconIdx:
|
|
11761
|
+
iconIdx: 160
|
|
11634
11762
|
},
|
|
11635
11763
|
{
|
|
11636
11764
|
icon: {
|
|
@@ -11657,7 +11785,7 @@ var icons = [
|
|
|
11657
11785
|
},
|
|
11658
11786
|
setIdx: 0,
|
|
11659
11787
|
setId: 0,
|
|
11660
|
-
iconIdx:
|
|
11788
|
+
iconIdx: 161
|
|
11661
11789
|
},
|
|
11662
11790
|
{
|
|
11663
11791
|
icon: {
|
|
@@ -11687,7 +11815,7 @@ var icons = [
|
|
|
11687
11815
|
},
|
|
11688
11816
|
setIdx: 0,
|
|
11689
11817
|
setId: 0,
|
|
11690
|
-
iconIdx:
|
|
11818
|
+
iconIdx: 162
|
|
11691
11819
|
},
|
|
11692
11820
|
{
|
|
11693
11821
|
icon: {
|
|
@@ -11712,7 +11840,7 @@ var icons = [
|
|
|
11712
11840
|
},
|
|
11713
11841
|
setIdx: 0,
|
|
11714
11842
|
setId: 0,
|
|
11715
|
-
iconIdx:
|
|
11843
|
+
iconIdx: 163
|
|
11716
11844
|
},
|
|
11717
11845
|
{
|
|
11718
11846
|
icon: {
|
|
@@ -11737,7 +11865,7 @@ var icons = [
|
|
|
11737
11865
|
},
|
|
11738
11866
|
setIdx: 0,
|
|
11739
11867
|
setId: 0,
|
|
11740
|
-
iconIdx:
|
|
11868
|
+
iconIdx: 164
|
|
11741
11869
|
},
|
|
11742
11870
|
{
|
|
11743
11871
|
icon: {
|
|
@@ -11762,7 +11890,7 @@ var icons = [
|
|
|
11762
11890
|
},
|
|
11763
11891
|
setIdx: 0,
|
|
11764
11892
|
setId: 0,
|
|
11765
|
-
iconIdx:
|
|
11893
|
+
iconIdx: 165
|
|
11766
11894
|
},
|
|
11767
11895
|
{
|
|
11768
11896
|
icon: {
|
|
@@ -11787,7 +11915,7 @@ var icons = [
|
|
|
11787
11915
|
},
|
|
11788
11916
|
setIdx: 0,
|
|
11789
11917
|
setId: 0,
|
|
11790
|
-
iconIdx:
|
|
11918
|
+
iconIdx: 166
|
|
11791
11919
|
},
|
|
11792
11920
|
{
|
|
11793
11921
|
icon: {
|
|
@@ -11813,7 +11941,7 @@ var icons = [
|
|
|
11813
11941
|
},
|
|
11814
11942
|
setIdx: 0,
|
|
11815
11943
|
setId: 0,
|
|
11816
|
-
iconIdx:
|
|
11944
|
+
iconIdx: 167
|
|
11817
11945
|
},
|
|
11818
11946
|
{
|
|
11819
11947
|
icon: {
|
|
@@ -11838,7 +11966,7 @@ var icons = [
|
|
|
11838
11966
|
},
|
|
11839
11967
|
setIdx: 0,
|
|
11840
11968
|
setId: 0,
|
|
11841
|
-
iconIdx:
|
|
11969
|
+
iconIdx: 168
|
|
11842
11970
|
},
|
|
11843
11971
|
{
|
|
11844
11972
|
icon: {
|
|
@@ -11864,7 +11992,7 @@ var icons = [
|
|
|
11864
11992
|
},
|
|
11865
11993
|
setIdx: 0,
|
|
11866
11994
|
setId: 0,
|
|
11867
|
-
iconIdx:
|
|
11995
|
+
iconIdx: 169
|
|
11868
11996
|
},
|
|
11869
11997
|
{
|
|
11870
11998
|
icon: {
|
|
@@ -11890,7 +12018,7 @@ var icons = [
|
|
|
11890
12018
|
},
|
|
11891
12019
|
setIdx: 0,
|
|
11892
12020
|
setId: 0,
|
|
11893
|
-
iconIdx:
|
|
12021
|
+
iconIdx: 170
|
|
11894
12022
|
},
|
|
11895
12023
|
{
|
|
11896
12024
|
icon: {
|
|
@@ -11916,7 +12044,7 @@ var icons = [
|
|
|
11916
12044
|
},
|
|
11917
12045
|
setIdx: 0,
|
|
11918
12046
|
setId: 0,
|
|
11919
|
-
iconIdx:
|
|
12047
|
+
iconIdx: 171
|
|
11920
12048
|
},
|
|
11921
12049
|
{
|
|
11922
12050
|
icon: {
|
|
@@ -11943,7 +12071,7 @@ var icons = [
|
|
|
11943
12071
|
},
|
|
11944
12072
|
setIdx: 0,
|
|
11945
12073
|
setId: 0,
|
|
11946
|
-
iconIdx:
|
|
12074
|
+
iconIdx: 172
|
|
11947
12075
|
},
|
|
11948
12076
|
{
|
|
11949
12077
|
icon: {
|
|
@@ -11969,7 +12097,7 @@ var icons = [
|
|
|
11969
12097
|
},
|
|
11970
12098
|
setIdx: 0,
|
|
11971
12099
|
setId: 0,
|
|
11972
|
-
iconIdx:
|
|
12100
|
+
iconIdx: 173
|
|
11973
12101
|
},
|
|
11974
12102
|
{
|
|
11975
12103
|
icon: {
|
|
@@ -11995,7 +12123,7 @@ var icons = [
|
|
|
11995
12123
|
},
|
|
11996
12124
|
setIdx: 0,
|
|
11997
12125
|
setId: 0,
|
|
11998
|
-
iconIdx:
|
|
12126
|
+
iconIdx: 174
|
|
11999
12127
|
},
|
|
12000
12128
|
{
|
|
12001
12129
|
icon: {
|
|
@@ -12022,7 +12150,7 @@ var icons = [
|
|
|
12022
12150
|
},
|
|
12023
12151
|
setIdx: 0,
|
|
12024
12152
|
setId: 0,
|
|
12025
|
-
iconIdx:
|
|
12153
|
+
iconIdx: 175
|
|
12026
12154
|
},
|
|
12027
12155
|
{
|
|
12028
12156
|
icon: {
|
|
@@ -12047,7 +12175,7 @@ var icons = [
|
|
|
12047
12175
|
},
|
|
12048
12176
|
setIdx: 0,
|
|
12049
12177
|
setId: 0,
|
|
12050
|
-
iconIdx:
|
|
12178
|
+
iconIdx: 176
|
|
12051
12179
|
},
|
|
12052
12180
|
{
|
|
12053
12181
|
icon: {
|
|
@@ -12073,7 +12201,7 @@ var icons = [
|
|
|
12073
12201
|
},
|
|
12074
12202
|
setIdx: 0,
|
|
12075
12203
|
setId: 0,
|
|
12076
|
-
iconIdx:
|
|
12204
|
+
iconIdx: 177
|
|
12077
12205
|
},
|
|
12078
12206
|
{
|
|
12079
12207
|
icon: {
|
|
@@ -12099,7 +12227,7 @@ var icons = [
|
|
|
12099
12227
|
},
|
|
12100
12228
|
setIdx: 0,
|
|
12101
12229
|
setId: 0,
|
|
12102
|
-
iconIdx:
|
|
12230
|
+
iconIdx: 178
|
|
12103
12231
|
},
|
|
12104
12232
|
{
|
|
12105
12233
|
icon: {
|
|
@@ -12126,7 +12254,7 @@ var icons = [
|
|
|
12126
12254
|
},
|
|
12127
12255
|
setIdx: 0,
|
|
12128
12256
|
setId: 0,
|
|
12129
|
-
iconIdx:
|
|
12257
|
+
iconIdx: 179
|
|
12130
12258
|
},
|
|
12131
12259
|
{
|
|
12132
12260
|
icon: {
|
|
@@ -12151,7 +12279,7 @@ var icons = [
|
|
|
12151
12279
|
},
|
|
12152
12280
|
setIdx: 0,
|
|
12153
12281
|
setId: 0,
|
|
12154
|
-
iconIdx:
|
|
12282
|
+
iconIdx: 180
|
|
12155
12283
|
},
|
|
12156
12284
|
{
|
|
12157
12285
|
icon: {
|
|
@@ -12177,7 +12305,7 @@ var icons = [
|
|
|
12177
12305
|
},
|
|
12178
12306
|
setIdx: 0,
|
|
12179
12307
|
setId: 0,
|
|
12180
|
-
iconIdx:
|
|
12308
|
+
iconIdx: 181
|
|
12181
12309
|
},
|
|
12182
12310
|
{
|
|
12183
12311
|
icon: {
|
|
@@ -12202,7 +12330,7 @@ var icons = [
|
|
|
12202
12330
|
},
|
|
12203
12331
|
setIdx: 0,
|
|
12204
12332
|
setId: 0,
|
|
12205
|
-
iconIdx:
|
|
12333
|
+
iconIdx: 182
|
|
12206
12334
|
},
|
|
12207
12335
|
{
|
|
12208
12336
|
icon: {
|
|
@@ -12228,7 +12356,7 @@ var icons = [
|
|
|
12228
12356
|
},
|
|
12229
12357
|
setIdx: 0,
|
|
12230
12358
|
setId: 0,
|
|
12231
|
-
iconIdx:
|
|
12359
|
+
iconIdx: 183
|
|
12232
12360
|
},
|
|
12233
12361
|
{
|
|
12234
12362
|
icon: {
|
|
@@ -12256,7 +12384,7 @@ var icons = [
|
|
|
12256
12384
|
},
|
|
12257
12385
|
setIdx: 0,
|
|
12258
12386
|
setId: 0,
|
|
12259
|
-
iconIdx:
|
|
12387
|
+
iconIdx: 184
|
|
12260
12388
|
},
|
|
12261
12389
|
{
|
|
12262
12390
|
icon: {
|
|
@@ -12286,7 +12414,7 @@ var icons = [
|
|
|
12286
12414
|
},
|
|
12287
12415
|
setIdx: 0,
|
|
12288
12416
|
setId: 0,
|
|
12289
|
-
iconIdx:
|
|
12417
|
+
iconIdx: 185
|
|
12290
12418
|
},
|
|
12291
12419
|
{
|
|
12292
12420
|
icon: {
|
|
@@ -12311,7 +12439,7 @@ var icons = [
|
|
|
12311
12439
|
},
|
|
12312
12440
|
setIdx: 0,
|
|
12313
12441
|
setId: 0,
|
|
12314
|
-
iconIdx:
|
|
12442
|
+
iconIdx: 186
|
|
12315
12443
|
},
|
|
12316
12444
|
{
|
|
12317
12445
|
icon: {
|
|
@@ -12336,7 +12464,7 @@ var icons = [
|
|
|
12336
12464
|
},
|
|
12337
12465
|
setIdx: 0,
|
|
12338
12466
|
setId: 0,
|
|
12339
|
-
iconIdx:
|
|
12467
|
+
iconIdx: 187
|
|
12340
12468
|
},
|
|
12341
12469
|
{
|
|
12342
12470
|
icon: {
|
|
@@ -12361,7 +12489,7 @@ var icons = [
|
|
|
12361
12489
|
},
|
|
12362
12490
|
setIdx: 0,
|
|
12363
12491
|
setId: 0,
|
|
12364
|
-
iconIdx:
|
|
12492
|
+
iconIdx: 188
|
|
12365
12493
|
},
|
|
12366
12494
|
{
|
|
12367
12495
|
icon: {
|
|
@@ -12388,7 +12516,7 @@ var icons = [
|
|
|
12388
12516
|
},
|
|
12389
12517
|
setIdx: 0,
|
|
12390
12518
|
setId: 0,
|
|
12391
|
-
iconIdx:
|
|
12519
|
+
iconIdx: 189
|
|
12392
12520
|
},
|
|
12393
12521
|
{
|
|
12394
12522
|
icon: {
|
|
@@ -12413,7 +12541,7 @@ var icons = [
|
|
|
12413
12541
|
},
|
|
12414
12542
|
setIdx: 0,
|
|
12415
12543
|
setId: 0,
|
|
12416
|
-
iconIdx:
|
|
12544
|
+
iconIdx: 190
|
|
12417
12545
|
},
|
|
12418
12546
|
{
|
|
12419
12547
|
icon: {
|
|
@@ -12438,7 +12566,7 @@ var icons = [
|
|
|
12438
12566
|
},
|
|
12439
12567
|
setIdx: 0,
|
|
12440
12568
|
setId: 0,
|
|
12441
|
-
iconIdx:
|
|
12569
|
+
iconIdx: 191
|
|
12442
12570
|
},
|
|
12443
12571
|
{
|
|
12444
12572
|
icon: {
|
|
@@ -12463,7 +12591,7 @@ var icons = [
|
|
|
12463
12591
|
},
|
|
12464
12592
|
setIdx: 0,
|
|
12465
12593
|
setId: 0,
|
|
12466
|
-
iconIdx:
|
|
12594
|
+
iconIdx: 192
|
|
12467
12595
|
},
|
|
12468
12596
|
{
|
|
12469
12597
|
icon: {
|
|
@@ -12489,7 +12617,7 @@ var icons = [
|
|
|
12489
12617
|
},
|
|
12490
12618
|
setIdx: 0,
|
|
12491
12619
|
setId: 0,
|
|
12492
|
-
iconIdx:
|
|
12620
|
+
iconIdx: 193
|
|
12493
12621
|
},
|
|
12494
12622
|
{
|
|
12495
12623
|
icon: {
|
|
@@ -12515,7 +12643,7 @@ var icons = [
|
|
|
12515
12643
|
},
|
|
12516
12644
|
setIdx: 0,
|
|
12517
12645
|
setId: 0,
|
|
12518
|
-
iconIdx:
|
|
12646
|
+
iconIdx: 194
|
|
12519
12647
|
},
|
|
12520
12648
|
{
|
|
12521
12649
|
icon: {
|
|
@@ -12542,7 +12670,7 @@ var icons = [
|
|
|
12542
12670
|
},
|
|
12543
12671
|
setIdx: 0,
|
|
12544
12672
|
setId: 0,
|
|
12545
|
-
iconIdx:
|
|
12673
|
+
iconIdx: 195
|
|
12546
12674
|
},
|
|
12547
12675
|
{
|
|
12548
12676
|
icon: {
|
|
@@ -12568,7 +12696,7 @@ var icons = [
|
|
|
12568
12696
|
},
|
|
12569
12697
|
setIdx: 0,
|
|
12570
12698
|
setId: 0,
|
|
12571
|
-
iconIdx:
|
|
12699
|
+
iconIdx: 196
|
|
12572
12700
|
},
|
|
12573
12701
|
{
|
|
12574
12702
|
icon: {
|
|
@@ -12593,7 +12721,7 @@ var icons = [
|
|
|
12593
12721
|
},
|
|
12594
12722
|
setIdx: 0,
|
|
12595
12723
|
setId: 0,
|
|
12596
|
-
iconIdx:
|
|
12724
|
+
iconIdx: 197
|
|
12597
12725
|
},
|
|
12598
12726
|
{
|
|
12599
12727
|
icon: {
|
|
@@ -12618,7 +12746,7 @@ var icons = [
|
|
|
12618
12746
|
},
|
|
12619
12747
|
setIdx: 0,
|
|
12620
12748
|
setId: 0,
|
|
12621
|
-
iconIdx:
|
|
12749
|
+
iconIdx: 198
|
|
12622
12750
|
},
|
|
12623
12751
|
{
|
|
12624
12752
|
icon: {
|
|
@@ -12643,7 +12771,7 @@ var icons = [
|
|
|
12643
12771
|
},
|
|
12644
12772
|
setIdx: 0,
|
|
12645
12773
|
setId: 0,
|
|
12646
|
-
iconIdx:
|
|
12774
|
+
iconIdx: 199
|
|
12647
12775
|
},
|
|
12648
12776
|
{
|
|
12649
12777
|
icon: {
|
|
@@ -12669,7 +12797,7 @@ var icons = [
|
|
|
12669
12797
|
},
|
|
12670
12798
|
setIdx: 0,
|
|
12671
12799
|
setId: 0,
|
|
12672
|
-
iconIdx:
|
|
12800
|
+
iconIdx: 200
|
|
12673
12801
|
},
|
|
12674
12802
|
{
|
|
12675
12803
|
icon: {
|
|
@@ -12694,7 +12822,7 @@ var icons = [
|
|
|
12694
12822
|
},
|
|
12695
12823
|
setIdx: 0,
|
|
12696
12824
|
setId: 0,
|
|
12697
|
-
iconIdx:
|
|
12825
|
+
iconIdx: 201
|
|
12698
12826
|
},
|
|
12699
12827
|
{
|
|
12700
12828
|
icon: {
|
|
@@ -12722,7 +12850,7 @@ var icons = [
|
|
|
12722
12850
|
},
|
|
12723
12851
|
setIdx: 0,
|
|
12724
12852
|
setId: 0,
|
|
12725
|
-
iconIdx:
|
|
12853
|
+
iconIdx: 202
|
|
12726
12854
|
},
|
|
12727
12855
|
{
|
|
12728
12856
|
icon: {
|
|
@@ -12748,7 +12876,7 @@ var icons = [
|
|
|
12748
12876
|
},
|
|
12749
12877
|
setIdx: 0,
|
|
12750
12878
|
setId: 0,
|
|
12751
|
-
iconIdx:
|
|
12879
|
+
iconIdx: 203
|
|
12752
12880
|
},
|
|
12753
12881
|
{
|
|
12754
12882
|
icon: {
|
|
@@ -12773,7 +12901,7 @@ var icons = [
|
|
|
12773
12901
|
},
|
|
12774
12902
|
setIdx: 0,
|
|
12775
12903
|
setId: 0,
|
|
12776
|
-
iconIdx:
|
|
12904
|
+
iconIdx: 204
|
|
12777
12905
|
},
|
|
12778
12906
|
{
|
|
12779
12907
|
icon: {
|
|
@@ -12801,7 +12929,7 @@ var icons = [
|
|
|
12801
12929
|
},
|
|
12802
12930
|
setIdx: 0,
|
|
12803
12931
|
setId: 0,
|
|
12804
|
-
iconIdx:
|
|
12932
|
+
iconIdx: 205
|
|
12805
12933
|
},
|
|
12806
12934
|
{
|
|
12807
12935
|
icon: {
|
|
@@ -12829,7 +12957,7 @@ var icons = [
|
|
|
12829
12957
|
},
|
|
12830
12958
|
setIdx: 0,
|
|
12831
12959
|
setId: 0,
|
|
12832
|
-
iconIdx:
|
|
12960
|
+
iconIdx: 206
|
|
12833
12961
|
},
|
|
12834
12962
|
{
|
|
12835
12963
|
icon: {
|
|
@@ -12857,7 +12985,7 @@ var icons = [
|
|
|
12857
12985
|
},
|
|
12858
12986
|
setIdx: 0,
|
|
12859
12987
|
setId: 0,
|
|
12860
|
-
iconIdx:
|
|
12988
|
+
iconIdx: 207
|
|
12861
12989
|
},
|
|
12862
12990
|
{
|
|
12863
12991
|
icon: {
|
|
@@ -12885,7 +13013,7 @@ var icons = [
|
|
|
12885
13013
|
},
|
|
12886
13014
|
setIdx: 0,
|
|
12887
13015
|
setId: 0,
|
|
12888
|
-
iconIdx:
|
|
13016
|
+
iconIdx: 208
|
|
12889
13017
|
},
|
|
12890
13018
|
{
|
|
12891
13019
|
icon: {
|
|
@@ -12910,7 +13038,7 @@ var icons = [
|
|
|
12910
13038
|
},
|
|
12911
13039
|
setIdx: 0,
|
|
12912
13040
|
setId: 0,
|
|
12913
|
-
iconIdx:
|
|
13041
|
+
iconIdx: 209
|
|
12914
13042
|
},
|
|
12915
13043
|
{
|
|
12916
13044
|
icon: {
|
|
@@ -12935,7 +13063,7 @@ var icons = [
|
|
|
12935
13063
|
},
|
|
12936
13064
|
setIdx: 0,
|
|
12937
13065
|
setId: 0,
|
|
12938
|
-
iconIdx:
|
|
13066
|
+
iconIdx: 210
|
|
12939
13067
|
},
|
|
12940
13068
|
{
|
|
12941
13069
|
icon: {
|
|
@@ -12962,7 +13090,7 @@ var icons = [
|
|
|
12962
13090
|
},
|
|
12963
13091
|
setIdx: 0,
|
|
12964
13092
|
setId: 0,
|
|
12965
|
-
iconIdx:
|
|
13093
|
+
iconIdx: 211
|
|
12966
13094
|
},
|
|
12967
13095
|
{
|
|
12968
13096
|
icon: {
|
|
@@ -12988,7 +13116,7 @@ var icons = [
|
|
|
12988
13116
|
},
|
|
12989
13117
|
setIdx: 0,
|
|
12990
13118
|
setId: 0,
|
|
12991
|
-
iconIdx:
|
|
13119
|
+
iconIdx: 212
|
|
12992
13120
|
},
|
|
12993
13121
|
{
|
|
12994
13122
|
icon: {
|
|
@@ -13013,7 +13141,7 @@ var icons = [
|
|
|
13013
13141
|
},
|
|
13014
13142
|
setIdx: 0,
|
|
13015
13143
|
setId: 0,
|
|
13016
|
-
iconIdx:
|
|
13144
|
+
iconIdx: 213
|
|
13017
13145
|
},
|
|
13018
13146
|
{
|
|
13019
13147
|
icon: {
|
|
@@ -13038,7 +13166,7 @@ var icons = [
|
|
|
13038
13166
|
},
|
|
13039
13167
|
setIdx: 0,
|
|
13040
13168
|
setId: 0,
|
|
13041
|
-
iconIdx:
|
|
13169
|
+
iconIdx: 214
|
|
13042
13170
|
},
|
|
13043
13171
|
{
|
|
13044
13172
|
icon: {
|
|
@@ -13063,7 +13191,7 @@ var icons = [
|
|
|
13063
13191
|
},
|
|
13064
13192
|
setIdx: 0,
|
|
13065
13193
|
setId: 0,
|
|
13066
|
-
iconIdx:
|
|
13194
|
+
iconIdx: 215
|
|
13067
13195
|
},
|
|
13068
13196
|
{
|
|
13069
13197
|
icon: {
|
|
@@ -13089,7 +13217,7 @@ var icons = [
|
|
|
13089
13217
|
},
|
|
13090
13218
|
setIdx: 0,
|
|
13091
13219
|
setId: 0,
|
|
13092
|
-
iconIdx:
|
|
13220
|
+
iconIdx: 216
|
|
13093
13221
|
},
|
|
13094
13222
|
{
|
|
13095
13223
|
icon: {
|
|
@@ -13114,7 +13242,7 @@ var icons = [
|
|
|
13114
13242
|
},
|
|
13115
13243
|
setIdx: 0,
|
|
13116
13244
|
setId: 0,
|
|
13117
|
-
iconIdx:
|
|
13245
|
+
iconIdx: 217
|
|
13118
13246
|
},
|
|
13119
13247
|
{
|
|
13120
13248
|
icon: {
|
|
@@ -13139,7 +13267,7 @@ var icons = [
|
|
|
13139
13267
|
},
|
|
13140
13268
|
setIdx: 0,
|
|
13141
13269
|
setId: 0,
|
|
13142
|
-
iconIdx:
|
|
13270
|
+
iconIdx: 218
|
|
13143
13271
|
},
|
|
13144
13272
|
{
|
|
13145
13273
|
icon: {
|
|
@@ -13164,7 +13292,7 @@ var icons = [
|
|
|
13164
13292
|
},
|
|
13165
13293
|
setIdx: 0,
|
|
13166
13294
|
setId: 0,
|
|
13167
|
-
iconIdx:
|
|
13295
|
+
iconIdx: 219
|
|
13168
13296
|
},
|
|
13169
13297
|
{
|
|
13170
13298
|
icon: {
|
|
@@ -13190,7 +13318,7 @@ var icons = [
|
|
|
13190
13318
|
},
|
|
13191
13319
|
setIdx: 0,
|
|
13192
13320
|
setId: 0,
|
|
13193
|
-
iconIdx:
|
|
13321
|
+
iconIdx: 220
|
|
13194
13322
|
},
|
|
13195
13323
|
{
|
|
13196
13324
|
icon: {
|
|
@@ -13215,7 +13343,7 @@ var icons = [
|
|
|
13215
13343
|
},
|
|
13216
13344
|
setIdx: 0,
|
|
13217
13345
|
setId: 0,
|
|
13218
|
-
iconIdx:
|
|
13346
|
+
iconIdx: 221
|
|
13219
13347
|
},
|
|
13220
13348
|
{
|
|
13221
13349
|
icon: {
|
|
@@ -13240,7 +13368,7 @@ var icons = [
|
|
|
13240
13368
|
},
|
|
13241
13369
|
setIdx: 0,
|
|
13242
13370
|
setId: 0,
|
|
13243
|
-
iconIdx:
|
|
13371
|
+
iconIdx: 222
|
|
13244
13372
|
},
|
|
13245
13373
|
{
|
|
13246
13374
|
icon: {
|
|
@@ -13265,7 +13393,7 @@ var icons = [
|
|
|
13265
13393
|
},
|
|
13266
13394
|
setIdx: 0,
|
|
13267
13395
|
setId: 0,
|
|
13268
|
-
iconIdx:
|
|
13396
|
+
iconIdx: 223
|
|
13269
13397
|
},
|
|
13270
13398
|
{
|
|
13271
13399
|
icon: {
|
|
@@ -13293,7 +13421,7 @@ var icons = [
|
|
|
13293
13421
|
},
|
|
13294
13422
|
setIdx: 0,
|
|
13295
13423
|
setId: 0,
|
|
13296
|
-
iconIdx:
|
|
13424
|
+
iconIdx: 224
|
|
13297
13425
|
},
|
|
13298
13426
|
{
|
|
13299
13427
|
icon: {
|
|
@@ -13318,7 +13446,7 @@ var icons = [
|
|
|
13318
13446
|
},
|
|
13319
13447
|
setIdx: 0,
|
|
13320
13448
|
setId: 0,
|
|
13321
|
-
iconIdx:
|
|
13449
|
+
iconIdx: 225
|
|
13322
13450
|
},
|
|
13323
13451
|
{
|
|
13324
13452
|
icon: {
|
|
@@ -13346,7 +13474,7 @@ var icons = [
|
|
|
13346
13474
|
},
|
|
13347
13475
|
setIdx: 0,
|
|
13348
13476
|
setId: 0,
|
|
13349
|
-
iconIdx:
|
|
13477
|
+
iconIdx: 226
|
|
13350
13478
|
},
|
|
13351
13479
|
{
|
|
13352
13480
|
icon: {
|
|
@@ -13371,7 +13499,7 @@ var icons = [
|
|
|
13371
13499
|
},
|
|
13372
13500
|
setIdx: 0,
|
|
13373
13501
|
setId: 0,
|
|
13374
|
-
iconIdx:
|
|
13502
|
+
iconIdx: 227
|
|
13375
13503
|
},
|
|
13376
13504
|
{
|
|
13377
13505
|
icon: {
|
|
@@ -13396,7 +13524,7 @@ var icons = [
|
|
|
13396
13524
|
},
|
|
13397
13525
|
setIdx: 0,
|
|
13398
13526
|
setId: 0,
|
|
13399
|
-
iconIdx:
|
|
13527
|
+
iconIdx: 228
|
|
13400
13528
|
},
|
|
13401
13529
|
{
|
|
13402
13530
|
icon: {
|
|
@@ -13421,7 +13549,7 @@ var icons = [
|
|
|
13421
13549
|
},
|
|
13422
13550
|
setIdx: 0,
|
|
13423
13551
|
setId: 0,
|
|
13424
|
-
iconIdx:
|
|
13552
|
+
iconIdx: 229
|
|
13425
13553
|
},
|
|
13426
13554
|
{
|
|
13427
13555
|
icon: {
|
|
@@ -13446,7 +13574,7 @@ var icons = [
|
|
|
13446
13574
|
},
|
|
13447
13575
|
setIdx: 0,
|
|
13448
13576
|
setId: 0,
|
|
13449
|
-
iconIdx:
|
|
13577
|
+
iconIdx: 230
|
|
13450
13578
|
},
|
|
13451
13579
|
{
|
|
13452
13580
|
icon: {
|
|
@@ -13471,7 +13599,7 @@ var icons = [
|
|
|
13471
13599
|
},
|
|
13472
13600
|
setIdx: 0,
|
|
13473
13601
|
setId: 0,
|
|
13474
|
-
iconIdx:
|
|
13602
|
+
iconIdx: 231
|
|
13475
13603
|
},
|
|
13476
13604
|
{
|
|
13477
13605
|
icon: {
|
|
@@ -13496,7 +13624,7 @@ var icons = [
|
|
|
13496
13624
|
},
|
|
13497
13625
|
setIdx: 0,
|
|
13498
13626
|
setId: 0,
|
|
13499
|
-
iconIdx:
|
|
13627
|
+
iconIdx: 232
|
|
13500
13628
|
},
|
|
13501
13629
|
{
|
|
13502
13630
|
icon: {
|
|
@@ -13521,7 +13649,7 @@ var icons = [
|
|
|
13521
13649
|
},
|
|
13522
13650
|
setIdx: 0,
|
|
13523
13651
|
setId: 0,
|
|
13524
|
-
iconIdx:
|
|
13652
|
+
iconIdx: 233
|
|
13525
13653
|
},
|
|
13526
13654
|
{
|
|
13527
13655
|
icon: {
|
|
@@ -13546,7 +13674,7 @@ var icons = [
|
|
|
13546
13674
|
},
|
|
13547
13675
|
setIdx: 0,
|
|
13548
13676
|
setId: 0,
|
|
13549
|
-
iconIdx:
|
|
13677
|
+
iconIdx: 234
|
|
13550
13678
|
},
|
|
13551
13679
|
{
|
|
13552
13680
|
icon: {
|
|
@@ -13571,7 +13699,7 @@ var icons = [
|
|
|
13571
13699
|
},
|
|
13572
13700
|
setIdx: 0,
|
|
13573
13701
|
setId: 0,
|
|
13574
|
-
iconIdx:
|
|
13702
|
+
iconIdx: 235
|
|
13575
13703
|
},
|
|
13576
13704
|
{
|
|
13577
13705
|
icon: {
|
|
@@ -13596,7 +13724,7 @@ var icons = [
|
|
|
13596
13724
|
},
|
|
13597
13725
|
setIdx: 0,
|
|
13598
13726
|
setId: 0,
|
|
13599
|
-
iconIdx:
|
|
13727
|
+
iconIdx: 236
|
|
13600
13728
|
},
|
|
13601
13729
|
{
|
|
13602
13730
|
icon: {
|
|
@@ -13623,7 +13751,7 @@ var icons = [
|
|
|
13623
13751
|
},
|
|
13624
13752
|
setIdx: 0,
|
|
13625
13753
|
setId: 0,
|
|
13626
|
-
iconIdx:
|
|
13754
|
+
iconIdx: 237
|
|
13627
13755
|
},
|
|
13628
13756
|
{
|
|
13629
13757
|
icon: {
|
|
@@ -13648,7 +13776,7 @@ var icons = [
|
|
|
13648
13776
|
},
|
|
13649
13777
|
setIdx: 0,
|
|
13650
13778
|
setId: 0,
|
|
13651
|
-
iconIdx:
|
|
13779
|
+
iconIdx: 238
|
|
13652
13780
|
},
|
|
13653
13781
|
{
|
|
13654
13782
|
icon: {
|
|
@@ -13673,7 +13801,7 @@ var icons = [
|
|
|
13673
13801
|
},
|
|
13674
13802
|
setIdx: 0,
|
|
13675
13803
|
setId: 0,
|
|
13676
|
-
iconIdx:
|
|
13804
|
+
iconIdx: 239
|
|
13677
13805
|
},
|
|
13678
13806
|
{
|
|
13679
13807
|
icon: {
|
|
@@ -13698,7 +13826,7 @@ var icons = [
|
|
|
13698
13826
|
},
|
|
13699
13827
|
setIdx: 0,
|
|
13700
13828
|
setId: 0,
|
|
13701
|
-
iconIdx:
|
|
13829
|
+
iconIdx: 240
|
|
13702
13830
|
},
|
|
13703
13831
|
{
|
|
13704
13832
|
icon: {
|
|
@@ -13723,7 +13851,7 @@ var icons = [
|
|
|
13723
13851
|
},
|
|
13724
13852
|
setIdx: 0,
|
|
13725
13853
|
setId: 0,
|
|
13726
|
-
iconIdx:
|
|
13854
|
+
iconIdx: 241
|
|
13727
13855
|
},
|
|
13728
13856
|
{
|
|
13729
13857
|
icon: {
|
|
@@ -13748,7 +13876,7 @@ var icons = [
|
|
|
13748
13876
|
},
|
|
13749
13877
|
setIdx: 0,
|
|
13750
13878
|
setId: 0,
|
|
13751
|
-
iconIdx:
|
|
13879
|
+
iconIdx: 242
|
|
13752
13880
|
},
|
|
13753
13881
|
{
|
|
13754
13882
|
icon: {
|
|
@@ -13777,7 +13905,7 @@ var icons = [
|
|
|
13777
13905
|
},
|
|
13778
13906
|
setIdx: 0,
|
|
13779
13907
|
setId: 0,
|
|
13780
|
-
iconIdx:
|
|
13908
|
+
iconIdx: 243
|
|
13781
13909
|
},
|
|
13782
13910
|
{
|
|
13783
13911
|
icon: {
|
|
@@ -13806,7 +13934,7 @@ var icons = [
|
|
|
13806
13934
|
},
|
|
13807
13935
|
setIdx: 0,
|
|
13808
13936
|
setId: 0,
|
|
13809
|
-
iconIdx:
|
|
13937
|
+
iconIdx: 244
|
|
13810
13938
|
},
|
|
13811
13939
|
{
|
|
13812
13940
|
icon: {
|
|
@@ -13831,7 +13959,7 @@ var icons = [
|
|
|
13831
13959
|
},
|
|
13832
13960
|
setIdx: 0,
|
|
13833
13961
|
setId: 0,
|
|
13834
|
-
iconIdx:
|
|
13962
|
+
iconIdx: 245
|
|
13835
13963
|
},
|
|
13836
13964
|
{
|
|
13837
13965
|
icon: {
|
|
@@ -13856,7 +13984,7 @@ var icons = [
|
|
|
13856
13984
|
},
|
|
13857
13985
|
setIdx: 0,
|
|
13858
13986
|
setId: 0,
|
|
13859
|
-
iconIdx:
|
|
13987
|
+
iconIdx: 246
|
|
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: 247
|
|
13887
14015
|
},
|
|
13888
14016
|
{
|
|
13889
14017
|
icon: {
|
|
@@ -13910,7 +14038,7 @@ var icons = [
|
|
|
13910
14038
|
},
|
|
13911
14039
|
setIdx: 0,
|
|
13912
14040
|
setId: 0,
|
|
13913
|
-
iconIdx:
|
|
14041
|
+
iconIdx: 248
|
|
13914
14042
|
},
|
|
13915
14043
|
{
|
|
13916
14044
|
icon: {
|
|
@@ -13935,7 +14063,7 @@ var icons = [
|
|
|
13935
14063
|
},
|
|
13936
14064
|
setIdx: 0,
|
|
13937
14065
|
setId: 0,
|
|
13938
|
-
iconIdx:
|
|
14066
|
+
iconIdx: 249
|
|
13939
14067
|
},
|
|
13940
14068
|
{
|
|
13941
14069
|
icon: {
|
|
@@ -13965,7 +14093,7 @@ var icons = [
|
|
|
13965
14093
|
},
|
|
13966
14094
|
setIdx: 0,
|
|
13967
14095
|
setId: 0,
|
|
13968
|
-
iconIdx:
|
|
14096
|
+
iconIdx: 250
|
|
13969
14097
|
},
|
|
13970
14098
|
{
|
|
13971
14099
|
icon: {
|
|
@@ -13990,7 +14118,7 @@ var icons = [
|
|
|
13990
14118
|
},
|
|
13991
14119
|
setIdx: 0,
|
|
13992
14120
|
setId: 0,
|
|
13993
|
-
iconIdx:
|
|
14121
|
+
iconIdx: 251
|
|
13994
14122
|
},
|
|
13995
14123
|
{
|
|
13996
14124
|
icon: {
|
|
@@ -14015,7 +14143,7 @@ var icons = [
|
|
|
14015
14143
|
},
|
|
14016
14144
|
setIdx: 0,
|
|
14017
14145
|
setId: 0,
|
|
14018
|
-
iconIdx:
|
|
14146
|
+
iconIdx: 252
|
|
14019
14147
|
},
|
|
14020
14148
|
{
|
|
14021
14149
|
icon: {
|
|
@@ -14043,7 +14171,7 @@ var icons = [
|
|
|
14043
14171
|
},
|
|
14044
14172
|
setIdx: 0,
|
|
14045
14173
|
setId: 0,
|
|
14046
|
-
iconIdx:
|
|
14174
|
+
iconIdx: 253
|
|
14047
14175
|
},
|
|
14048
14176
|
{
|
|
14049
14177
|
icon: {
|
|
@@ -14068,7 +14196,7 @@ var icons = [
|
|
|
14068
14196
|
},
|
|
14069
14197
|
setIdx: 0,
|
|
14070
14198
|
setId: 0,
|
|
14071
|
-
iconIdx:
|
|
14199
|
+
iconIdx: 254
|
|
14072
14200
|
},
|
|
14073
14201
|
{
|
|
14074
14202
|
icon: {
|
|
@@ -14099,7 +14227,7 @@ var icons = [
|
|
|
14099
14227
|
},
|
|
14100
14228
|
setIdx: 0,
|
|
14101
14229
|
setId: 0,
|
|
14102
|
-
iconIdx:
|
|
14230
|
+
iconIdx: 255
|
|
14103
14231
|
},
|
|
14104
14232
|
{
|
|
14105
14233
|
icon: {
|
|
@@ -14125,7 +14253,7 @@ var icons = [
|
|
|
14125
14253
|
},
|
|
14126
14254
|
setIdx: 0,
|
|
14127
14255
|
setId: 0,
|
|
14128
|
-
iconIdx:
|
|
14256
|
+
iconIdx: 256
|
|
14129
14257
|
},
|
|
14130
14258
|
{
|
|
14131
14259
|
icon: {
|
|
@@ -14150,7 +14278,7 @@ var icons = [
|
|
|
14150
14278
|
},
|
|
14151
14279
|
setIdx: 0,
|
|
14152
14280
|
setId: 0,
|
|
14153
|
-
iconIdx:
|
|
14281
|
+
iconIdx: 257
|
|
14154
14282
|
},
|
|
14155
14283
|
{
|
|
14156
14284
|
icon: {
|
|
@@ -14175,7 +14303,7 @@ var icons = [
|
|
|
14175
14303
|
},
|
|
14176
14304
|
setIdx: 0,
|
|
14177
14305
|
setId: 0,
|
|
14178
|
-
iconIdx:
|
|
14306
|
+
iconIdx: 258
|
|
14179
14307
|
},
|
|
14180
14308
|
{
|
|
14181
14309
|
icon: {
|
|
@@ -14203,7 +14331,7 @@ var icons = [
|
|
|
14203
14331
|
},
|
|
14204
14332
|
setIdx: 0,
|
|
14205
14333
|
setId: 0,
|
|
14206
|
-
iconIdx:
|
|
14334
|
+
iconIdx: 259
|
|
14207
14335
|
},
|
|
14208
14336
|
{
|
|
14209
14337
|
icon: {
|
|
@@ -14228,7 +14356,7 @@ var icons = [
|
|
|
14228
14356
|
},
|
|
14229
14357
|
setIdx: 0,
|
|
14230
14358
|
setId: 0,
|
|
14231
|
-
iconIdx:
|
|
14359
|
+
iconIdx: 260
|
|
14232
14360
|
},
|
|
14233
14361
|
{
|
|
14234
14362
|
icon: {
|
|
@@ -14253,7 +14381,7 @@ var icons = [
|
|
|
14253
14381
|
},
|
|
14254
14382
|
setIdx: 0,
|
|
14255
14383
|
setId: 0,
|
|
14256
|
-
iconIdx:
|
|
14384
|
+
iconIdx: 261
|
|
14257
14385
|
},
|
|
14258
14386
|
{
|
|
14259
14387
|
icon: {
|
|
@@ -14283,7 +14411,7 @@ var icons = [
|
|
|
14283
14411
|
},
|
|
14284
14412
|
setIdx: 0,
|
|
14285
14413
|
setId: 0,
|
|
14286
|
-
iconIdx:
|
|
14414
|
+
iconIdx: 262
|
|
14287
14415
|
},
|
|
14288
14416
|
{
|
|
14289
14417
|
icon: {
|
|
@@ -14316,7 +14444,7 @@ var icons = [
|
|
|
14316
14444
|
},
|
|
14317
14445
|
setIdx: 0,
|
|
14318
14446
|
setId: 0,
|
|
14319
|
-
iconIdx:
|
|
14447
|
+
iconIdx: 263
|
|
14320
14448
|
},
|
|
14321
14449
|
{
|
|
14322
14450
|
icon: {
|
|
@@ -14341,7 +14469,7 @@ var icons = [
|
|
|
14341
14469
|
},
|
|
14342
14470
|
setIdx: 0,
|
|
14343
14471
|
setId: 0,
|
|
14344
|
-
iconIdx:
|
|
14472
|
+
iconIdx: 264
|
|
14345
14473
|
},
|
|
14346
14474
|
{
|
|
14347
14475
|
icon: {
|
|
@@ -14373,7 +14501,7 @@ var icons = [
|
|
|
14373
14501
|
},
|
|
14374
14502
|
setIdx: 0,
|
|
14375
14503
|
setId: 0,
|
|
14376
|
-
iconIdx:
|
|
14504
|
+
iconIdx: 265
|
|
14377
14505
|
},
|
|
14378
14506
|
{
|
|
14379
14507
|
icon: {
|
|
@@ -14398,7 +14526,7 @@ var icons = [
|
|
|
14398
14526
|
},
|
|
14399
14527
|
setIdx: 0,
|
|
14400
14528
|
setId: 0,
|
|
14401
|
-
iconIdx:
|
|
14529
|
+
iconIdx: 266
|
|
14402
14530
|
},
|
|
14403
14531
|
{
|
|
14404
14532
|
icon: {
|
|
@@ -14423,7 +14551,7 @@ var icons = [
|
|
|
14423
14551
|
},
|
|
14424
14552
|
setIdx: 0,
|
|
14425
14553
|
setId: 0,
|
|
14426
|
-
iconIdx:
|
|
14554
|
+
iconIdx: 267
|
|
14427
14555
|
},
|
|
14428
14556
|
{
|
|
14429
14557
|
icon: {
|
|
@@ -14448,7 +14576,7 @@ var icons = [
|
|
|
14448
14576
|
},
|
|
14449
14577
|
setIdx: 0,
|
|
14450
14578
|
setId: 0,
|
|
14451
|
-
iconIdx:
|
|
14579
|
+
iconIdx: 268
|
|
14452
14580
|
},
|
|
14453
14581
|
{
|
|
14454
14582
|
icon: {
|
|
@@ -14473,7 +14601,7 @@ var icons = [
|
|
|
14473
14601
|
},
|
|
14474
14602
|
setIdx: 0,
|
|
14475
14603
|
setId: 0,
|
|
14476
|
-
iconIdx:
|
|
14604
|
+
iconIdx: 269
|
|
14477
14605
|
},
|
|
14478
14606
|
{
|
|
14479
14607
|
icon: {
|
|
@@ -14498,7 +14626,7 @@ var icons = [
|
|
|
14498
14626
|
},
|
|
14499
14627
|
setIdx: 0,
|
|
14500
14628
|
setId: 0,
|
|
14501
|
-
iconIdx:
|
|
14629
|
+
iconIdx: 270
|
|
14502
14630
|
},
|
|
14503
14631
|
{
|
|
14504
14632
|
icon: {
|
|
@@ -14523,7 +14651,7 @@ var icons = [
|
|
|
14523
14651
|
},
|
|
14524
14652
|
setIdx: 0,
|
|
14525
14653
|
setId: 0,
|
|
14526
|
-
iconIdx:
|
|
14654
|
+
iconIdx: 271
|
|
14527
14655
|
},
|
|
14528
14656
|
{
|
|
14529
14657
|
icon: {
|
|
@@ -14548,7 +14676,7 @@ var icons = [
|
|
|
14548
14676
|
},
|
|
14549
14677
|
setIdx: 0,
|
|
14550
14678
|
setId: 0,
|
|
14551
|
-
iconIdx:
|
|
14679
|
+
iconIdx: 272
|
|
14552
14680
|
},
|
|
14553
14681
|
{
|
|
14554
14682
|
icon: {
|
|
@@ -14573,7 +14701,7 @@ var icons = [
|
|
|
14573
14701
|
},
|
|
14574
14702
|
setIdx: 0,
|
|
14575
14703
|
setId: 0,
|
|
14576
|
-
iconIdx:
|
|
14704
|
+
iconIdx: 273
|
|
14577
14705
|
},
|
|
14578
14706
|
{
|
|
14579
14707
|
icon: {
|
|
@@ -14600,7 +14728,7 @@ var icons = [
|
|
|
14600
14728
|
},
|
|
14601
14729
|
setIdx: 0,
|
|
14602
14730
|
setId: 0,
|
|
14603
|
-
iconIdx:
|
|
14731
|
+
iconIdx: 274
|
|
14604
14732
|
},
|
|
14605
14733
|
{
|
|
14606
14734
|
icon: {
|
|
@@ -14625,7 +14753,7 @@ var icons = [
|
|
|
14625
14753
|
},
|
|
14626
14754
|
setIdx: 0,
|
|
14627
14755
|
setId: 0,
|
|
14628
|
-
iconIdx:
|
|
14756
|
+
iconIdx: 275
|
|
14629
14757
|
},
|
|
14630
14758
|
{
|
|
14631
14759
|
icon: {
|
|
@@ -14650,7 +14778,7 @@ var icons = [
|
|
|
14650
14778
|
},
|
|
14651
14779
|
setIdx: 0,
|
|
14652
14780
|
setId: 0,
|
|
14653
|
-
iconIdx:
|
|
14781
|
+
iconIdx: 276
|
|
14654
14782
|
},
|
|
14655
14783
|
{
|
|
14656
14784
|
icon: {
|
|
@@ -14679,7 +14807,7 @@ var icons = [
|
|
|
14679
14807
|
},
|
|
14680
14808
|
setIdx: 0,
|
|
14681
14809
|
setId: 0,
|
|
14682
|
-
iconIdx:
|
|
14810
|
+
iconIdx: 277
|
|
14683
14811
|
},
|
|
14684
14812
|
{
|
|
14685
14813
|
icon: {
|
|
@@ -14704,7 +14832,7 @@ var icons = [
|
|
|
14704
14832
|
},
|
|
14705
14833
|
setIdx: 0,
|
|
14706
14834
|
setId: 0,
|
|
14707
|
-
iconIdx:
|
|
14835
|
+
iconIdx: 278
|
|
14708
14836
|
},
|
|
14709
14837
|
{
|
|
14710
14838
|
icon: {
|
|
@@ -14729,7 +14857,7 @@ var icons = [
|
|
|
14729
14857
|
},
|
|
14730
14858
|
setIdx: 0,
|
|
14731
14859
|
setId: 0,
|
|
14732
|
-
iconIdx:
|
|
14860
|
+
iconIdx: 279
|
|
14733
14861
|
},
|
|
14734
14862
|
{
|
|
14735
14863
|
icon: {
|
|
@@ -14754,7 +14882,7 @@ var icons = [
|
|
|
14754
14882
|
},
|
|
14755
14883
|
setIdx: 0,
|
|
14756
14884
|
setId: 0,
|
|
14757
|
-
iconIdx:
|
|
14885
|
+
iconIdx: 280
|
|
14758
14886
|
},
|
|
14759
14887
|
{
|
|
14760
14888
|
icon: {
|
|
@@ -14779,7 +14907,7 @@ var icons = [
|
|
|
14779
14907
|
},
|
|
14780
14908
|
setIdx: 0,
|
|
14781
14909
|
setId: 0,
|
|
14782
|
-
iconIdx:
|
|
14910
|
+
iconIdx: 281
|
|
14783
14911
|
},
|
|
14784
14912
|
{
|
|
14785
14913
|
icon: {
|
|
@@ -14804,7 +14932,7 @@ var icons = [
|
|
|
14804
14932
|
},
|
|
14805
14933
|
setIdx: 0,
|
|
14806
14934
|
setId: 0,
|
|
14807
|
-
iconIdx:
|
|
14935
|
+
iconIdx: 282
|
|
14808
14936
|
},
|
|
14809
14937
|
{
|
|
14810
14938
|
icon: {
|
|
@@ -14829,7 +14957,7 @@ var icons = [
|
|
|
14829
14957
|
},
|
|
14830
14958
|
setIdx: 0,
|
|
14831
14959
|
setId: 0,
|
|
14832
|
-
iconIdx:
|
|
14960
|
+
iconIdx: 283
|
|
14833
14961
|
},
|
|
14834
14962
|
{
|
|
14835
14963
|
icon: {
|
|
@@ -14857,7 +14985,7 @@ var icons = [
|
|
|
14857
14985
|
},
|
|
14858
14986
|
setIdx: 0,
|
|
14859
14987
|
setId: 0,
|
|
14860
|
-
iconIdx:
|
|
14988
|
+
iconIdx: 284
|
|
14861
14989
|
},
|
|
14862
14990
|
{
|
|
14863
14991
|
icon: {
|
|
@@ -14882,7 +15010,7 @@ var icons = [
|
|
|
14882
15010
|
},
|
|
14883
15011
|
setIdx: 0,
|
|
14884
15012
|
setId: 0,
|
|
14885
|
-
iconIdx:
|
|
15013
|
+
iconIdx: 285
|
|
14886
15014
|
},
|
|
14887
15015
|
{
|
|
14888
15016
|
icon: {
|
|
@@ -14914,7 +15042,7 @@ var icons = [
|
|
|
14914
15042
|
},
|
|
14915
15043
|
setIdx: 0,
|
|
14916
15044
|
setId: 0,
|
|
14917
|
-
iconIdx:
|
|
15045
|
+
iconIdx: 286
|
|
14918
15046
|
},
|
|
14919
15047
|
{
|
|
14920
15048
|
icon: {
|
|
@@ -14939,7 +15067,7 @@ var icons = [
|
|
|
14939
15067
|
},
|
|
14940
15068
|
setIdx: 0,
|
|
14941
15069
|
setId: 0,
|
|
14942
|
-
iconIdx:
|
|
15070
|
+
iconIdx: 287
|
|
14943
15071
|
},
|
|
14944
15072
|
{
|
|
14945
15073
|
icon: {
|
|
@@ -14967,7 +15095,7 @@ var icons = [
|
|
|
14967
15095
|
},
|
|
14968
15096
|
setIdx: 0,
|
|
14969
15097
|
setId: 0,
|
|
14970
|
-
iconIdx:
|
|
15098
|
+
iconIdx: 288
|
|
14971
15099
|
},
|
|
14972
15100
|
{
|
|
14973
15101
|
icon: {
|
|
@@ -14992,7 +15120,7 @@ var icons = [
|
|
|
14992
15120
|
},
|
|
14993
15121
|
setIdx: 0,
|
|
14994
15122
|
setId: 0,
|
|
14995
|
-
iconIdx:
|
|
15123
|
+
iconIdx: 289
|
|
14996
15124
|
},
|
|
14997
15125
|
{
|
|
14998
15126
|
icon: {
|
|
@@ -15020,7 +15148,7 @@ var icons = [
|
|
|
15020
15148
|
},
|
|
15021
15149
|
setIdx: 0,
|
|
15022
15150
|
setId: 0,
|
|
15023
|
-
iconIdx:
|
|
15151
|
+
iconIdx: 290
|
|
15024
15152
|
},
|
|
15025
15153
|
{
|
|
15026
15154
|
icon: {
|
|
@@ -15045,7 +15173,7 @@ var icons = [
|
|
|
15045
15173
|
},
|
|
15046
15174
|
setIdx: 0,
|
|
15047
15175
|
setId: 0,
|
|
15048
|
-
iconIdx:
|
|
15176
|
+
iconIdx: 291
|
|
15049
15177
|
},
|
|
15050
15178
|
{
|
|
15051
15179
|
icon: {
|
|
@@ -15071,7 +15199,7 @@ var icons = [
|
|
|
15071
15199
|
},
|
|
15072
15200
|
setIdx: 0,
|
|
15073
15201
|
setId: 0,
|
|
15074
|
-
iconIdx:
|
|
15202
|
+
iconIdx: 292
|
|
15075
15203
|
},
|
|
15076
15204
|
{
|
|
15077
15205
|
icon: {
|
|
@@ -15099,7 +15227,7 @@ var icons = [
|
|
|
15099
15227
|
},
|
|
15100
15228
|
setIdx: 0,
|
|
15101
15229
|
setId: 0,
|
|
15102
|
-
iconIdx:
|
|
15230
|
+
iconIdx: 293
|
|
15103
15231
|
},
|
|
15104
15232
|
{
|
|
15105
15233
|
icon: {
|
|
@@ -15124,7 +15252,7 @@ var icons = [
|
|
|
15124
15252
|
},
|
|
15125
15253
|
setIdx: 0,
|
|
15126
15254
|
setId: 0,
|
|
15127
|
-
iconIdx:
|
|
15255
|
+
iconIdx: 294
|
|
15128
15256
|
},
|
|
15129
15257
|
{
|
|
15130
15258
|
icon: {
|
|
@@ -15149,7 +15277,7 @@ var icons = [
|
|
|
15149
15277
|
},
|
|
15150
15278
|
setIdx: 0,
|
|
15151
15279
|
setId: 0,
|
|
15152
|
-
iconIdx:
|
|
15280
|
+
iconIdx: 295
|
|
15153
15281
|
},
|
|
15154
15282
|
{
|
|
15155
15283
|
icon: {
|
|
@@ -15176,7 +15304,7 @@ var icons = [
|
|
|
15176
15304
|
},
|
|
15177
15305
|
setIdx: 0,
|
|
15178
15306
|
setId: 0,
|
|
15179
|
-
iconIdx:
|
|
15307
|
+
iconIdx: 296
|
|
15180
15308
|
},
|
|
15181
15309
|
{
|
|
15182
15310
|
icon: {
|
|
@@ -15201,7 +15329,7 @@ var icons = [
|
|
|
15201
15329
|
},
|
|
15202
15330
|
setIdx: 0,
|
|
15203
15331
|
setId: 0,
|
|
15204
|
-
iconIdx:
|
|
15332
|
+
iconIdx: 297
|
|
15205
15333
|
},
|
|
15206
15334
|
{
|
|
15207
15335
|
icon: {
|
|
@@ -15233,7 +15361,7 @@ var icons = [
|
|
|
15233
15361
|
},
|
|
15234
15362
|
setIdx: 0,
|
|
15235
15363
|
setId: 0,
|
|
15236
|
-
iconIdx:
|
|
15364
|
+
iconIdx: 298
|
|
15237
15365
|
},
|
|
15238
15366
|
{
|
|
15239
15367
|
icon: {
|
|
@@ -15259,7 +15387,7 @@ var icons = [
|
|
|
15259
15387
|
},
|
|
15260
15388
|
setIdx: 0,
|
|
15261
15389
|
setId: 0,
|
|
15262
|
-
iconIdx:
|
|
15390
|
+
iconIdx: 299
|
|
15263
15391
|
},
|
|
15264
15392
|
{
|
|
15265
15393
|
icon: {
|
|
@@ -15290,7 +15418,7 @@ var icons = [
|
|
|
15290
15418
|
},
|
|
15291
15419
|
setIdx: 0,
|
|
15292
15420
|
setId: 0,
|
|
15293
|
-
iconIdx:
|
|
15421
|
+
iconIdx: 300
|
|
15294
15422
|
},
|
|
15295
15423
|
{
|
|
15296
15424
|
icon: {
|
|
@@ -15315,7 +15443,7 @@ var icons = [
|
|
|
15315
15443
|
},
|
|
15316
15444
|
setIdx: 0,
|
|
15317
15445
|
setId: 0,
|
|
15318
|
-
iconIdx:
|
|
15446
|
+
iconIdx: 301
|
|
15319
15447
|
},
|
|
15320
15448
|
{
|
|
15321
15449
|
icon: {
|
|
@@ -15340,7 +15468,7 @@ var icons = [
|
|
|
15340
15468
|
},
|
|
15341
15469
|
setIdx: 0,
|
|
15342
15470
|
setId: 0,
|
|
15343
|
-
iconIdx:
|
|
15471
|
+
iconIdx: 302
|
|
15344
15472
|
},
|
|
15345
15473
|
{
|
|
15346
15474
|
icon: {
|
|
@@ -15371,7 +15499,7 @@ var icons = [
|
|
|
15371
15499
|
},
|
|
15372
15500
|
setIdx: 0,
|
|
15373
15501
|
setId: 0,
|
|
15374
|
-
iconIdx:
|
|
15502
|
+
iconIdx: 303
|
|
15375
15503
|
}
|
|
15376
15504
|
];
|
|
15377
15505
|
var height = 1024;
|
|
@@ -15505,7 +15633,7 @@ var Typography = {
|
|
|
15505
15633
|
Text: Text
|
|
15506
15634
|
};
|
|
15507
15635
|
|
|
15508
|
-
var Container$
|
|
15636
|
+
var Container$1 = index$5(ReactNative.View)(function (_ref) {
|
|
15509
15637
|
var theme = _ref.theme,
|
|
15510
15638
|
_ref$themeVariant = _ref.themeVariant,
|
|
15511
15639
|
themeVariant = _ref$themeVariant === void 0 ? 'default' : _ref$themeVariant,
|
|
@@ -15577,7 +15705,7 @@ var Alert = function Alert(_ref) {
|
|
|
15577
15705
|
variant = _ref$variant === void 0 ? 'default' : _ref$variant,
|
|
15578
15706
|
style = _ref.style,
|
|
15579
15707
|
testID = _ref.testID;
|
|
15580
|
-
return /*#__PURE__*/React__default["default"].createElement(Container$
|
|
15708
|
+
return /*#__PURE__*/React__default["default"].createElement(Container$1, {
|
|
15581
15709
|
themeVariant: variant,
|
|
15582
15710
|
themeIntent: intent,
|
|
15583
15711
|
style: style,
|
|
@@ -15823,7 +15951,7 @@ var Badge$1 = Object.assign(Badge, {
|
|
|
15823
15951
|
Status: Status
|
|
15824
15952
|
});
|
|
15825
15953
|
|
|
15826
|
-
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'];
|
|
15954
|
+
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'];
|
|
15827
15955
|
|
|
15828
15956
|
var isHeroIcon = function isHeroIcon(x) {
|
|
15829
15957
|
return IconList.includes(x);
|
|
@@ -16102,12 +16230,15 @@ var StyledLoadingDot = index$5(ReactNative.View)(function (_ref2) {
|
|
|
16102
16230
|
};
|
|
16103
16231
|
|
|
16104
16232
|
case 'outlined-primary':
|
|
16233
|
+
case 'text-primary':
|
|
16105
16234
|
return genLoadingIndicatorStyles(theme, 'primary');
|
|
16106
16235
|
|
|
16107
16236
|
case 'outlined-secondary':
|
|
16237
|
+
case 'text-secondary':
|
|
16108
16238
|
return genLoadingIndicatorStyles(theme, 'secondary');
|
|
16109
16239
|
|
|
16110
16240
|
case 'outlined-danger':
|
|
16241
|
+
case 'text-danger':
|
|
16111
16242
|
return genLoadingIndicatorStyles(theme, 'danger');
|
|
16112
16243
|
}
|
|
16113
16244
|
};
|
|
@@ -16308,6 +16439,31 @@ var genOutlineTextStyles = function genOutlineTextStyles(theme, intent, pressed,
|
|
|
16308
16439
|
}, textColorStyling());
|
|
16309
16440
|
};
|
|
16310
16441
|
|
|
16442
|
+
var genTextVariantTextStyles = function genTextVariantTextStyles(theme, intent, pressed, disabled) {
|
|
16443
|
+
var textColorStyling = function textColorStyling() {
|
|
16444
|
+
if (disabled) {
|
|
16445
|
+
return {
|
|
16446
|
+
color: theme.__hd__.button.colors.disabledText
|
|
16447
|
+
};
|
|
16448
|
+
}
|
|
16449
|
+
|
|
16450
|
+
if (pressed) {
|
|
16451
|
+
return {
|
|
16452
|
+
color: theme.__hd__.button.colors[PRESSED_COLORS[intent]]
|
|
16453
|
+
};
|
|
16454
|
+
}
|
|
16455
|
+
|
|
16456
|
+
return {
|
|
16457
|
+
color: theme.__hd__.button.colors[intent]
|
|
16458
|
+
};
|
|
16459
|
+
};
|
|
16460
|
+
|
|
16461
|
+
return _objectSpread2({
|
|
16462
|
+
fontSize: theme.__hd__.button.fontSize.textVariant,
|
|
16463
|
+
lineHeight: theme.__hd__.button.lineHeight["default"]
|
|
16464
|
+
}, textColorStyling());
|
|
16465
|
+
};
|
|
16466
|
+
|
|
16311
16467
|
var StyledButtonContainer = index$5(ReactNative.View)(function (_ref) {
|
|
16312
16468
|
var _ref$disabled = _ref.disabled,
|
|
16313
16469
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
@@ -16337,6 +16493,19 @@ var StyledButtonContainer = index$5(ReactNative.View)(function (_ref) {
|
|
|
16337
16493
|
|
|
16338
16494
|
case 'outlined-danger':
|
|
16339
16495
|
return genOutlineContainerStyles(theme, 'danger', pressed, disabled);
|
|
16496
|
+
|
|
16497
|
+
case 'text-primary':
|
|
16498
|
+
case 'text-secondary':
|
|
16499
|
+
case 'text-danger':
|
|
16500
|
+
return {
|
|
16501
|
+
width: '100%',
|
|
16502
|
+
flexDirection: 'row',
|
|
16503
|
+
justifyContent: 'center',
|
|
16504
|
+
alignItems: 'center',
|
|
16505
|
+
padding: theme.__hd__.button.space.buttonPadding,
|
|
16506
|
+
borderWidth: 0,
|
|
16507
|
+
backgroundColor: 'transparent'
|
|
16508
|
+
};
|
|
16340
16509
|
}
|
|
16341
16510
|
});
|
|
16342
16511
|
var StyledButtonText = index$5(Typography.Text)(function (_ref2) {
|
|
@@ -16371,6 +16540,15 @@ var StyledButtonText = index$5(Typography.Text)(function (_ref2) {
|
|
|
16371
16540
|
|
|
16372
16541
|
case 'outlined-danger':
|
|
16373
16542
|
return genOutlineTextStyles(theme, 'danger', pressed, disabled);
|
|
16543
|
+
|
|
16544
|
+
case 'text-primary':
|
|
16545
|
+
return genTextVariantTextStyles(theme, 'primary', pressed, disabled);
|
|
16546
|
+
|
|
16547
|
+
case 'text-secondary':
|
|
16548
|
+
return genTextVariantTextStyles(theme, 'secondary', pressed, disabled);
|
|
16549
|
+
|
|
16550
|
+
case 'text-danger':
|
|
16551
|
+
return genTextVariantTextStyles(theme, 'danger', pressed, disabled);
|
|
16374
16552
|
}
|
|
16375
16553
|
};
|
|
16376
16554
|
|
|
@@ -16424,6 +16602,15 @@ var StyledButtonIcon = index$5(Icon)(function (_ref4) {
|
|
|
16424
16602
|
|
|
16425
16603
|
case 'outlined-danger':
|
|
16426
16604
|
return genOutlineTextStyles(theme, 'danger', pressed, disabled);
|
|
16605
|
+
|
|
16606
|
+
case 'text-primary':
|
|
16607
|
+
return genTextVariantTextStyles(theme, 'primary', pressed, disabled);
|
|
16608
|
+
|
|
16609
|
+
case 'text-secondary':
|
|
16610
|
+
return genTextVariantTextStyles(theme, 'secondary', pressed, disabled);
|
|
16611
|
+
|
|
16612
|
+
case 'text-danger':
|
|
16613
|
+
return genTextVariantTextStyles(theme, 'danger', pressed, disabled);
|
|
16427
16614
|
}
|
|
16428
16615
|
};
|
|
16429
16616
|
|
|
@@ -16442,6 +16629,11 @@ var OUTLINED_VARIANTS = {
|
|
|
16442
16629
|
secondary: 'outlined-secondary',
|
|
16443
16630
|
danger: 'outlined-danger'
|
|
16444
16631
|
};
|
|
16632
|
+
var TEXT_VARIANTS = {
|
|
16633
|
+
primary: 'text-primary',
|
|
16634
|
+
secondary: 'text-secondary',
|
|
16635
|
+
danger: 'text-danger'
|
|
16636
|
+
};
|
|
16445
16637
|
var getThemeVariant = function getThemeVariant(variant, intent) {
|
|
16446
16638
|
switch (variant) {
|
|
16447
16639
|
case 'basic-transparent':
|
|
@@ -16452,6 +16644,9 @@ var getThemeVariant = function getThemeVariant(variant, intent) {
|
|
|
16452
16644
|
|
|
16453
16645
|
case 'outlined':
|
|
16454
16646
|
return OUTLINED_VARIANTS[intent];
|
|
16647
|
+
|
|
16648
|
+
case 'text':
|
|
16649
|
+
return TEXT_VARIANTS[intent];
|
|
16455
16650
|
}
|
|
16456
16651
|
};
|
|
16457
16652
|
|
|
@@ -16536,8 +16731,65 @@ var IconButton = function IconButton(_ref) {
|
|
|
16536
16731
|
}));
|
|
16537
16732
|
};
|
|
16538
16733
|
|
|
16734
|
+
var ButtonContainer = index$5(ReactNative.TouchableOpacity)(function (_ref) {
|
|
16735
|
+
var theme = _ref.theme;
|
|
16736
|
+
return {
|
|
16737
|
+
width: '100%',
|
|
16738
|
+
flexDirection: 'row',
|
|
16739
|
+
justifyContent: 'center',
|
|
16740
|
+
alignItems: 'center',
|
|
16741
|
+
padding: theme.__hd__.button.space.utilityPadding,
|
|
16742
|
+
borderRadius: theme.__hd__.button.radii.utilityRadii,
|
|
16743
|
+
backgroundColor: theme.__hd__.button.colors.utilityBackground
|
|
16744
|
+
};
|
|
16745
|
+
});
|
|
16746
|
+
var IconWrapper = index$5(ReactNative.View)(function (_ref2) {
|
|
16747
|
+
var theme = _ref2.theme;
|
|
16748
|
+
return {
|
|
16749
|
+
paddingRight: theme.__hd__.button.space.utilityIconPadding
|
|
16750
|
+
};
|
|
16751
|
+
});
|
|
16752
|
+
var ButtonText = index$5(Typography.Text)(function (_ref3) {
|
|
16753
|
+
var theme = _ref3.theme;
|
|
16754
|
+
return {
|
|
16755
|
+
flexShrink: 1,
|
|
16756
|
+
textAlign: 'center',
|
|
16757
|
+
fontSize: theme.__hd__.button.fontSize.utility,
|
|
16758
|
+
fontFamily: theme.__hd__.button.fonts["default"]
|
|
16759
|
+
};
|
|
16760
|
+
});
|
|
16761
|
+
|
|
16762
|
+
var TEXT_INTENTS = {
|
|
16763
|
+
primary: 'primary',
|
|
16764
|
+
text: 'body'
|
|
16765
|
+
};
|
|
16766
|
+
|
|
16767
|
+
var UtilityButton = function UtilityButton(_ref) {
|
|
16768
|
+
var icon = _ref.icon,
|
|
16769
|
+
onPress = _ref.onPress,
|
|
16770
|
+
text = _ref.text,
|
|
16771
|
+
testID = _ref.testID,
|
|
16772
|
+
_ref$intent = _ref.intent,
|
|
16773
|
+
intent = _ref$intent === void 0 ? 'text' : _ref$intent,
|
|
16774
|
+
style = _ref.style,
|
|
16775
|
+
hitSlop = _ref.hitSlop;
|
|
16776
|
+
return /*#__PURE__*/React__default["default"].createElement(ButtonContainer, {
|
|
16777
|
+
style: style,
|
|
16778
|
+
onPress: onPress,
|
|
16779
|
+
testID: testID,
|
|
16780
|
+
hitSlop: hitSlop
|
|
16781
|
+
}, /*#__PURE__*/React__default["default"].createElement(IconWrapper, null, /*#__PURE__*/React__default["default"].createElement(Icon, {
|
|
16782
|
+
icon: icon,
|
|
16783
|
+
intent: intent,
|
|
16784
|
+
testID: "".concat(testID, "-icon")
|
|
16785
|
+
})), /*#__PURE__*/React__default["default"].createElement(ButtonText, {
|
|
16786
|
+
intent: TEXT_INTENTS[intent]
|
|
16787
|
+
}, text));
|
|
16788
|
+
};
|
|
16789
|
+
|
|
16539
16790
|
var CompoundButton = Button;
|
|
16540
16791
|
CompoundButton.Icon = IconButton;
|
|
16792
|
+
CompoundButton.Utility = UtilityButton;
|
|
16541
16793
|
|
|
16542
16794
|
var Header = function Header(_ref) {
|
|
16543
16795
|
var content = _ref.content,
|
|
@@ -16902,7 +17154,7 @@ function ContentNavigator(_ref) {
|
|
|
16902
17154
|
}
|
|
16903
17155
|
|
|
16904
17156
|
var AnimatedPressable = ReactNative.Animated.createAnimatedComponent(ReactNative.Pressable);
|
|
16905
|
-
var StyledContainer$
|
|
17157
|
+
var StyledContainer$2 = index$5(ReactNative.View)(function (_ref) {
|
|
16906
17158
|
var theme = _ref.theme,
|
|
16907
17159
|
enableShadow = _ref.enableShadow;
|
|
16908
17160
|
return _objectSpread2(_objectSpread2({}, ReactNative.StyleSheet.absoluteFillObject), {}, {
|
|
@@ -16967,7 +17219,7 @@ var Drawer = function Drawer(_ref) {
|
|
|
16967
17219
|
return animation.stop();
|
|
16968
17220
|
};
|
|
16969
17221
|
}, [visible]);
|
|
16970
|
-
return /*#__PURE__*/React__default["default"].createElement(StyledContainer$
|
|
17222
|
+
return /*#__PURE__*/React__default["default"].createElement(StyledContainer$2, {
|
|
16971
17223
|
testID: testID,
|
|
16972
17224
|
enableShadow: enableShadow,
|
|
16973
17225
|
pointerEvents: "box-none"
|
|
@@ -17153,7 +17405,7 @@ var ActionItem = function ActionItem(_ref) {
|
|
|
17153
17405
|
}), /*#__PURE__*/React__default["default"].createElement(StyledActionItemText, null, title));
|
|
17154
17406
|
};
|
|
17155
17407
|
|
|
17156
|
-
var StyledContainer = index$5(ReactNative.View)({
|
|
17408
|
+
var StyledContainer$1 = index$5(ReactNative.View)({
|
|
17157
17409
|
position: 'absolute',
|
|
17158
17410
|
left: 0,
|
|
17159
17411
|
right: 0,
|
|
@@ -17234,7 +17486,7 @@ var ActionGroup = function ActionGroup(_ref2) {
|
|
|
17234
17486
|
inputRange: [0, 1],
|
|
17235
17487
|
outputRange: [0, 0.9]
|
|
17236
17488
|
});
|
|
17237
|
-
return /*#__PURE__*/React__default["default"].createElement(StyledContainer, {
|
|
17489
|
+
return /*#__PURE__*/React__default["default"].createElement(StyledContainer$1, {
|
|
17238
17490
|
testID: testID,
|
|
17239
17491
|
pointerEvents: "box-none",
|
|
17240
17492
|
style: style
|
|
@@ -18085,22 +18337,18 @@ var OptionList$1 = function OptionList(_ref) {
|
|
|
18085
18337
|
}));
|
|
18086
18338
|
};
|
|
18087
18339
|
|
|
18088
|
-
var
|
|
18340
|
+
var StyledContainer = index$5(ReactNative.View)(function (_ref) {
|
|
18089
18341
|
var theme = _ref.theme;
|
|
18090
18342
|
return {
|
|
18091
|
-
position: 'relative',
|
|
18092
18343
|
width: '100%',
|
|
18093
|
-
|
|
18094
|
-
borderRadius: theme.__hd__.textInput.radii.container,
|
|
18095
|
-
padding: theme.__hd__.textInput.space.containerPadding,
|
|
18096
|
-
flexDirection: 'row',
|
|
18097
|
-
alignItems: 'center'
|
|
18344
|
+
marginVertical: theme.__hd__.textInput.space.containerMarginVertical
|
|
18098
18345
|
};
|
|
18099
18346
|
});
|
|
18100
|
-
var
|
|
18347
|
+
var StyledLabelContainer = index$5(ReactNative.View)(function (_ref2) {
|
|
18101
18348
|
var theme = _ref2.theme;
|
|
18102
18349
|
return {
|
|
18103
18350
|
position: 'absolute',
|
|
18351
|
+
flexDirection: 'row',
|
|
18104
18352
|
left: theme.__hd__.textInput.space.labelLeft,
|
|
18105
18353
|
top: theme.__hd__.textInput.space.labelTop,
|
|
18106
18354
|
backgroundColor: theme.__hd__.textInput.colors.labelBackground,
|
|
@@ -18108,48 +18356,279 @@ var Label = index$5(Typography.Text)(function (_ref2) {
|
|
|
18108
18356
|
paddingHorizontal: theme.__hd__.textInput.space.labelHorizontalPadding
|
|
18109
18357
|
};
|
|
18110
18358
|
});
|
|
18111
|
-
var
|
|
18112
|
-
var theme = _ref3.theme
|
|
18359
|
+
var StyledLabel = index$5(Typography.Text)(function (_ref3) {
|
|
18360
|
+
var theme = _ref3.theme,
|
|
18361
|
+
themeVariant = _ref3.themeVariant;
|
|
18362
|
+
return {
|
|
18363
|
+
color: theme.__hd__.textInput.colors.labels[themeVariant]
|
|
18364
|
+
};
|
|
18365
|
+
});
|
|
18366
|
+
var StyledAsteriskLabel = index$5(Typography.Text)(function (_ref4) {
|
|
18367
|
+
var theme = _ref4.theme,
|
|
18368
|
+
themeVariant = _ref4.themeVariant;
|
|
18113
18369
|
return {
|
|
18370
|
+
color: theme.__hd__.textInput.colors.asterisks[themeVariant]
|
|
18371
|
+
};
|
|
18372
|
+
});
|
|
18373
|
+
var StyledLabelContainerInsideTextInput = index$5(ReactNative.View)(function () {
|
|
18374
|
+
return _objectSpread2({
|
|
18375
|
+
flexDirection: 'row',
|
|
18376
|
+
zIndex: 9999,
|
|
18377
|
+
alignItems: 'center'
|
|
18378
|
+
}, ReactNative.StyleSheet.absoluteFillObject);
|
|
18379
|
+
});
|
|
18380
|
+
var StyledLabelInsideTextInput = index$5(Typography.Text)(function (_ref5) {
|
|
18381
|
+
var theme = _ref5.theme,
|
|
18382
|
+
themeVariant = _ref5.themeVariant;
|
|
18383
|
+
return {
|
|
18384
|
+
textAlignVertical: 'center',
|
|
18385
|
+
alignContent: 'center',
|
|
18386
|
+
fontSize: theme.__hd__.textInput.fontSizes.labelInsideTextInput,
|
|
18387
|
+
alignItems: 'center',
|
|
18388
|
+
color: theme.__hd__.textInput.colors.labelsInsideTextInput[themeVariant]
|
|
18389
|
+
};
|
|
18390
|
+
});
|
|
18391
|
+
var StyledAsteriskLabelInsideTextInput = index$5(Typography.Text)(function (_ref6) {
|
|
18392
|
+
var theme = _ref6.theme,
|
|
18393
|
+
themeVariant = _ref6.themeVariant;
|
|
18394
|
+
return {
|
|
18395
|
+
color: theme.__hd__.textInput.colors.asterisks[themeVariant],
|
|
18396
|
+
fontSize: theme.__hd__.textInput.fontSizes.asteriskLabel
|
|
18397
|
+
};
|
|
18398
|
+
});
|
|
18399
|
+
var StyledErrorContainer = index$5(ReactNative.View)(function (_ref7) {
|
|
18400
|
+
var theme = _ref7.theme;
|
|
18401
|
+
return {
|
|
18402
|
+
marginLeft: theme.__hd__.textInput.space.errorContainerMarginLeft,
|
|
18403
|
+
marginRight: theme.__hd__.textInput.space.errorContainerMarginRight,
|
|
18404
|
+
flexDirection: 'row',
|
|
18405
|
+
alignItems: 'center',
|
|
18114
18406
|
flex: 1,
|
|
18407
|
+
flexGrow: 4
|
|
18408
|
+
};
|
|
18409
|
+
});
|
|
18410
|
+
var StyledError = index$5(Typography.Text)(function (_ref8) {
|
|
18411
|
+
var theme = _ref8.theme;
|
|
18412
|
+
return {
|
|
18413
|
+
color: theme.__hd__.textInput.colors.error,
|
|
18414
|
+
fontSize: theme.__hd__.textInput.fontSizes.error,
|
|
18415
|
+
marginLeft: theme.__hd__.textInput.space.errorMarginLeft
|
|
18416
|
+
};
|
|
18417
|
+
});
|
|
18418
|
+
var StyledMaxLengthMessage = index$5(Typography.Text)(function (_ref9) {
|
|
18419
|
+
var theme = _ref9.theme,
|
|
18420
|
+
themeVariant = _ref9.themeVariant;
|
|
18421
|
+
return {
|
|
18422
|
+
color: theme.__hd__.textInput.colors.maxLengthLabels[themeVariant],
|
|
18423
|
+
fontSize: theme.__hd__.textInput.fontSizes.maxLength,
|
|
18424
|
+
marginRight: theme.__hd__.textInput.space.maxLengthLabelMarginLeft,
|
|
18425
|
+
alignSelf: 'flex-end',
|
|
18426
|
+
flex: 1,
|
|
18427
|
+
flexGrow: 1,
|
|
18428
|
+
textAlign: 'right'
|
|
18429
|
+
};
|
|
18430
|
+
});
|
|
18431
|
+
var StyledHelperText = index$5(Typography.Text)(function (_ref10) {
|
|
18432
|
+
var theme = _ref10.theme;
|
|
18433
|
+
return {
|
|
18434
|
+
fontSize: theme.__hd__.textInput.fontSizes.error,
|
|
18435
|
+
marginLeft: theme.__hd__.textInput.space.errorMarginLeft
|
|
18436
|
+
};
|
|
18437
|
+
});
|
|
18438
|
+
var StyledTextInput = index$5(ReactNative.TextInput)(function (_ref11) {
|
|
18439
|
+
var theme = _ref11.theme;
|
|
18440
|
+
return {
|
|
18441
|
+
textAlignVertical: 'center',
|
|
18115
18442
|
fontSize: theme.__hd__.textInput.fontSizes.text,
|
|
18443
|
+
alignSelf: 'stretch',
|
|
18444
|
+
flexGrow: 2,
|
|
18116
18445
|
marginHorizontal: theme.__hd__.textInput.space.inputHorizontalMargin
|
|
18117
18446
|
};
|
|
18118
18447
|
});
|
|
18448
|
+
var StyledBorderBackDrop = index$5(ReactNative.View)(function (_ref12) {
|
|
18449
|
+
var _theme$__hd__$textInp;
|
|
18450
|
+
|
|
18451
|
+
var theme = _ref12.theme,
|
|
18452
|
+
themeVariant = _ref12.themeVariant;
|
|
18453
|
+
return _objectSpread2(_objectSpread2({}, ReactNative.StyleSheet.absoluteFillObject), {}, {
|
|
18454
|
+
borderWidth: themeVariant === 'focused' ? theme.__hd__.textInput.borderWidths.container.focused : theme.__hd__.textInput.borderWidths.container.normal,
|
|
18455
|
+
borderRadius: theme.__hd__.textInput.radii.container,
|
|
18456
|
+
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"]
|
|
18457
|
+
});
|
|
18458
|
+
});
|
|
18459
|
+
var StyledTextInputContainer = index$5(ReactNative.View)(function (_ref13) {
|
|
18460
|
+
var theme = _ref13.theme;
|
|
18461
|
+
return {
|
|
18462
|
+
flexDirection: 'row',
|
|
18463
|
+
alignItems: 'center',
|
|
18464
|
+
padding: theme.__hd__.textInput.space.containerPadding
|
|
18465
|
+
};
|
|
18466
|
+
});
|
|
18467
|
+
var StyledTextInputAndLabelContainer = index$5(ReactNative.View)(function () {
|
|
18468
|
+
return {
|
|
18469
|
+
flexDirection: 'row',
|
|
18470
|
+
alignItems: 'center',
|
|
18471
|
+
alignSelf: 'stretch',
|
|
18472
|
+
flexGrow: 2
|
|
18473
|
+
};
|
|
18474
|
+
});
|
|
18475
|
+
var StyledErrorAndHelpTextContainer = index$5(ReactNative.View)(function () {
|
|
18476
|
+
return {
|
|
18477
|
+
flex: 1,
|
|
18478
|
+
flexDirection: 'row',
|
|
18479
|
+
justifyContent: 'space-between'
|
|
18480
|
+
};
|
|
18481
|
+
});
|
|
18119
18482
|
|
|
18120
|
-
var _excluded$1 = ["label", "prefix", "suffix", "style", "textStyle", "testID", "accessibilityLabelledBy"];
|
|
18483
|
+
var _excluded$1 = ["label", "prefix", "suffix", "style", "textStyle", "testID", "accessibilityLabelledBy", "error", "required", "editable", "disabled", "maxLength", "helpText", "value"];
|
|
18484
|
+
var getVariant = function getVariant(_ref) {
|
|
18485
|
+
var disabled = _ref.disabled,
|
|
18486
|
+
error = _ref.error,
|
|
18487
|
+
editable = _ref.editable,
|
|
18488
|
+
isFocused = _ref.isFocused,
|
|
18489
|
+
isEmptyValue = _ref.isEmptyValue;
|
|
18121
18490
|
|
|
18122
|
-
|
|
18123
|
-
|
|
18124
|
-
|
|
18125
|
-
suffix = _ref.suffix,
|
|
18126
|
-
style = _ref.style,
|
|
18127
|
-
textStyle = _ref.textStyle,
|
|
18128
|
-
testID = _ref.testID,
|
|
18129
|
-
accessibilityLabelledBy = _ref.accessibilityLabelledBy,
|
|
18130
|
-
nativeProps = _objectWithoutProperties$1(_ref, _excluded$1);
|
|
18491
|
+
if (disabled) {
|
|
18492
|
+
return 'disabled';
|
|
18493
|
+
}
|
|
18131
18494
|
|
|
18132
|
-
|
|
18495
|
+
if (error) {
|
|
18496
|
+
return 'error';
|
|
18497
|
+
}
|
|
18498
|
+
|
|
18499
|
+
if (!editable) {
|
|
18500
|
+
return 'readonly';
|
|
18501
|
+
}
|
|
18502
|
+
|
|
18503
|
+
if (isFocused) {
|
|
18504
|
+
return 'focused';
|
|
18505
|
+
}
|
|
18506
|
+
|
|
18507
|
+
if (!isEmptyValue) {
|
|
18508
|
+
return 'filled';
|
|
18509
|
+
}
|
|
18510
|
+
|
|
18511
|
+
return 'default';
|
|
18512
|
+
};
|
|
18513
|
+
|
|
18514
|
+
var TextInput = function TextInput(_ref2) {
|
|
18515
|
+
var label = _ref2.label,
|
|
18516
|
+
prefix = _ref2.prefix,
|
|
18517
|
+
suffix = _ref2.suffix,
|
|
18518
|
+
style = _ref2.style,
|
|
18519
|
+
textStyle = _ref2.textStyle,
|
|
18520
|
+
testID = _ref2.testID,
|
|
18521
|
+
accessibilityLabelledBy = _ref2.accessibilityLabelledBy,
|
|
18522
|
+
error = _ref2.error,
|
|
18523
|
+
required = _ref2.required,
|
|
18524
|
+
_ref2$editable = _ref2.editable,
|
|
18525
|
+
editable = _ref2$editable === void 0 ? true : _ref2$editable,
|
|
18526
|
+
_ref2$disabled = _ref2.disabled,
|
|
18527
|
+
disabled = _ref2$disabled === void 0 ? false : _ref2$disabled,
|
|
18528
|
+
maxLength = _ref2.maxLength,
|
|
18529
|
+
helpText = _ref2.helpText,
|
|
18530
|
+
_ref2$value = _ref2.value,
|
|
18531
|
+
value = _ref2$value === void 0 ? '' : _ref2$value,
|
|
18532
|
+
nativeProps = _objectWithoutProperties$1(_ref2, _excluded$1);
|
|
18533
|
+
|
|
18534
|
+
var textInputReference = React.useRef(null);
|
|
18535
|
+
var isEmptyValue = value.length === 0;
|
|
18536
|
+
|
|
18537
|
+
var _React$useState = React__default["default"].useState(false),
|
|
18538
|
+
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
18539
|
+
isFocused = _React$useState2[0],
|
|
18540
|
+
setIsFocused = _React$useState2[1];
|
|
18541
|
+
|
|
18542
|
+
var variant = getVariant({
|
|
18543
|
+
disabled: disabled,
|
|
18544
|
+
error: error,
|
|
18545
|
+
editable: editable,
|
|
18546
|
+
isFocused: isFocused,
|
|
18547
|
+
isEmptyValue: isEmptyValue
|
|
18548
|
+
});
|
|
18549
|
+
var shouldShowMaxLength = maxLength !== undefined;
|
|
18550
|
+
var theme = useTheme();
|
|
18551
|
+
return /*#__PURE__*/React__default["default"].createElement(StyledContainer, {
|
|
18133
18552
|
style: style,
|
|
18553
|
+
pointerEvents: variant === 'disabled' ? 'none' : 'auto',
|
|
18134
18554
|
testID: testID
|
|
18135
|
-
},
|
|
18555
|
+
}, /*#__PURE__*/React__default["default"].createElement(StyledTextInputContainer, null, /*#__PURE__*/React__default["default"].createElement(StyledBorderBackDrop, {
|
|
18556
|
+
themeVariant: variant
|
|
18557
|
+
}), (isFocused || label && !isEmptyValue) && /*#__PURE__*/React__default["default"].createElement(StyledLabelContainer, {
|
|
18558
|
+
pointerEvents: "none"
|
|
18559
|
+
}, required && /*#__PURE__*/React__default["default"].createElement(StyledAsteriskLabel, {
|
|
18560
|
+
themeVariant: variant,
|
|
18561
|
+
fontSize: "small"
|
|
18562
|
+
}, "*"), /*#__PURE__*/React__default["default"].createElement(StyledLabel, {
|
|
18136
18563
|
nativeID: accessibilityLabelledBy,
|
|
18137
18564
|
testID: "input-label",
|
|
18138
|
-
fontSize: "small"
|
|
18139
|
-
|
|
18565
|
+
fontSize: "small",
|
|
18566
|
+
themeVariant: variant
|
|
18567
|
+
}, label)), typeof prefix === 'string' ? /*#__PURE__*/React__default["default"].createElement(Icon, {
|
|
18568
|
+
intent: disabled ? 'disabled-text' : 'text',
|
|
18140
18569
|
testID: "input-prefix",
|
|
18141
18570
|
icon: prefix,
|
|
18142
18571
|
size: "xsmall"
|
|
18143
|
-
}), /*#__PURE__*/React__default["default"].createElement(
|
|
18144
|
-
|
|
18145
|
-
|
|
18572
|
+
}) : prefix, /*#__PURE__*/React__default["default"].createElement(StyledTextInputAndLabelContainer, null, !isFocused && isEmptyValue && /*#__PURE__*/React__default["default"].createElement(StyledLabelContainerInsideTextInput, {
|
|
18573
|
+
pointerEvents: "none"
|
|
18574
|
+
}, required && /*#__PURE__*/React__default["default"].createElement(StyledAsteriskLabelInsideTextInput, {
|
|
18575
|
+
themeVariant: variant
|
|
18576
|
+
}, "*"), /*#__PURE__*/React__default["default"].createElement(StyledLabelInsideTextInput, {
|
|
18577
|
+
nativeID: accessibilityLabelledBy,
|
|
18578
|
+
testID: "input-label",
|
|
18579
|
+
fontSize: "medium",
|
|
18580
|
+
themeVariant: variant
|
|
18581
|
+
}, label)), /*#__PURE__*/React__default["default"].createElement(StyledTextInput // when input is not editable on Android, the text color is gray
|
|
18582
|
+
// hence, adding this to make the text color the same as iOS
|
|
18583
|
+
, _extends$3({
|
|
18584
|
+
style: ReactNative.StyleSheet.flatten([{
|
|
18585
|
+
color: theme.__hd__.textInput.colors.text
|
|
18586
|
+
}, textStyle]),
|
|
18587
|
+
testID: "text-input",
|
|
18588
|
+
accessibilityState: {
|
|
18589
|
+
disabled: disabled
|
|
18590
|
+
} // @ts-ignore
|
|
18146
18591
|
,
|
|
18147
18592
|
accessibilityLabelledBy: accessibilityLabelledBy
|
|
18148
|
-
}, nativeProps
|
|
18593
|
+
}, nativeProps, {
|
|
18594
|
+
onFocus: function onFocus(event) {
|
|
18595
|
+
var _nativeProps$onFocus;
|
|
18596
|
+
|
|
18597
|
+
setIsFocused(true);
|
|
18598
|
+
(_nativeProps$onFocus = nativeProps.onFocus) === null || _nativeProps$onFocus === void 0 ? void 0 : _nativeProps$onFocus.call(nativeProps, event);
|
|
18599
|
+
},
|
|
18600
|
+
onBlur: function onBlur(event) {
|
|
18601
|
+
var _nativeProps$onBlur;
|
|
18602
|
+
|
|
18603
|
+
setIsFocused(false);
|
|
18604
|
+
(_nativeProps$onBlur = nativeProps.onBlur) === null || _nativeProps$onBlur === void 0 ? void 0 : _nativeProps$onBlur.call(nativeProps, event);
|
|
18605
|
+
},
|
|
18606
|
+
ref: textInputReference,
|
|
18607
|
+
editable: editable,
|
|
18608
|
+
maxLength: maxLength,
|
|
18609
|
+
value: value,
|
|
18610
|
+
onChangeText: function onChangeText(text) {
|
|
18611
|
+
var _nativeProps$onChange;
|
|
18612
|
+
|
|
18613
|
+
(_nativeProps$onChange = nativeProps.onChangeText) === null || _nativeProps$onChange === void 0 ? void 0 : _nativeProps$onChange.call(nativeProps, text);
|
|
18614
|
+
},
|
|
18615
|
+
placeholder: variant === 'focused' ? nativeProps.placeholder : undefined
|
|
18616
|
+
}))), typeof suffix === 'string' ? /*#__PURE__*/React__default["default"].createElement(Icon, {
|
|
18617
|
+
intent: disabled ? 'disabled-text' : 'text',
|
|
18149
18618
|
testID: "input-suffix",
|
|
18150
18619
|
icon: suffix,
|
|
18151
18620
|
size: "xsmall"
|
|
18152
|
-
}))
|
|
18621
|
+
}) : suffix), /*#__PURE__*/React__default["default"].createElement(StyledErrorAndHelpTextContainer, null, error && /*#__PURE__*/React__default["default"].createElement(StyledErrorContainer, null, /*#__PURE__*/React__default["default"].createElement(Icon, {
|
|
18622
|
+
testID: "input-error-icon",
|
|
18623
|
+
icon: "circle-info",
|
|
18624
|
+
size: "xsmall",
|
|
18625
|
+
intent: "danger"
|
|
18626
|
+
}), /*#__PURE__*/React__default["default"].createElement(StyledError, {
|
|
18627
|
+
testID: "input-error-message"
|
|
18628
|
+
}, error)), shouldShowMaxLength && /*#__PURE__*/React__default["default"].createElement(StyledMaxLengthMessage, {
|
|
18629
|
+
themeVariant: variant,
|
|
18630
|
+
fontSize: "small"
|
|
18631
|
+
}, value.length, "/", maxLength), helpText && /*#__PURE__*/React__default["default"].createElement(StyledHelperText, null, helpText)));
|
|
18153
18632
|
};
|
|
18154
18633
|
|
|
18155
18634
|
function MultiSelect(_ref) {
|