@hero-design/rn 7.8.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 +741 -258
- package/lib/assets/fonts/hero-icons.ttf +0 -0
- package/lib/index.js +740 -257
- 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/Card/DataCard/StyledDataCard.tsx +1 -3
- package/src/components/Card/DataCard/__tests__/__snapshots__/StyledDataCard.spec.tsx.snap +0 -1
- package/src/components/Card/DataCard/__tests__/__snapshots__/index.spec.tsx.snap +0 -5
- package/src/components/Card/StyledCard.tsx +1 -3
- package/src/components/Card/__tests__/__snapshots__/StyledCard.spec.tsx.snap +0 -1
- package/src/components/Icon/HeroIcon/index.tsx +3 -1
- package/src/components/Icon/HeroIcon/selection.json +1 -1
- package/src/components/Icon/IconList.ts +2 -0
- package/src/components/Icon/index.tsx +2 -1
- 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 +73 -3
- package/src/theme/components/button.ts +6 -0
- package/src/theme/components/card.ts +5 -1
- package/src/theme/components/icon.ts +1 -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/Button/Button.d.ts +2 -2
- package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +1 -1
- package/types/components/Button/LoadingIndicator/index.d.ts +1 -1
- package/types/components/Button/StyledButton.d.ts +1 -1
- package/types/components/{Select/MultiSelect/__tests__/StyledMultiSelect.spec.d.ts → Button/UtilityButton/__tests__/index.spec.d.ts} +0 -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/index.d.ts +2 -0
- package/types/components/Icon/HeroIcon/index.d.ts +1 -1
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/Icon/utils.d.ts +1 -1
- package/types/components/TextInput/StyledTextInput.d.ts +82 -3
- package/types/components/TextInput/index.d.ts +33 -5
- package/types/theme/components/button.d.ts +6 -0
- package/types/theme/components/card.d.ts +3 -0
- package/types/theme/components/icon.d.ts +1 -0
- package/types/theme/components/textInput.d.ts +61 -2
- package/types/theme/global/colors.d.ts +1 -0
- package/types/theme/global/index.d.ts +1 -0
- package/types/types.d.ts +2 -1
- 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/types/components/Select/MultiSelect/Footer.d.ts +0 -5
- package/types/components/Select/MultiSelect/StyledMultiSelect.d.ts +0 -26
- package/types/components/Select/MultiSelect/types.d.ts +0 -5
package/es/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as ReactNative from 'react-native';
|
|
2
2
|
import ReactNative__default, { Dimensions, StyleSheet as StyleSheet$1, Text as Text$1, View, TouchableOpacity, Image, Animated, Platform, TouchableWithoutFeedback, Pressable, Easing, Modal, TouchableHighlight, TextInput as TextInput$1, requireNativeComponent, UIManager, I18nManager, Keyboard, FlatList, LayoutAnimation } from 'react-native';
|
|
3
|
-
import React, {
|
|
3
|
+
import React, { useContext, createContext, createElement, forwardRef, useRef, useEffect, useState, useCallback, Children, useLayoutEffect, useImperativeHandle, useMemo } from 'react';
|
|
4
4
|
import { useSafeAreaInsets } from 'react-native-safe-area-context';
|
|
5
5
|
|
|
6
6
|
function ownKeys(object, enumerableOnly) {
|
|
@@ -2621,6 +2621,7 @@ var systemPalette = {
|
|
|
2621
2621
|
backgroundLight: palette$6.greyLight95,
|
|
2622
2622
|
backgroundDark: palette$6.greyDark75,
|
|
2623
2623
|
text: palette$6.greyDark75,
|
|
2624
|
+
subduedText: palette$6.greyDark30,
|
|
2624
2625
|
disabledText: palette$6.greyDark15,
|
|
2625
2626
|
disabledLightText: palette$6.greyLight45,
|
|
2626
2627
|
invertedText: palette$6.white,
|
|
@@ -2921,7 +2922,9 @@ var getButtonTheme = function getButtonTheme(theme) {
|
|
|
2921
2922
|
"default": theme.fonts.semiBold
|
|
2922
2923
|
};
|
|
2923
2924
|
var fontSize = {
|
|
2924
|
-
"default": theme.fontSizes.xlarge
|
|
2925
|
+
"default": theme.fontSizes.xlarge,
|
|
2926
|
+
utility: theme.fontSizes.large,
|
|
2927
|
+
textVariant: theme.fontSizes.large
|
|
2925
2928
|
};
|
|
2926
2929
|
var lineHeight = {
|
|
2927
2930
|
"default": theme.lineHeights.large
|
|
@@ -2931,13 +2934,16 @@ var getButtonTheme = function getButtonTheme(theme) {
|
|
|
2931
2934
|
};
|
|
2932
2935
|
var space = {
|
|
2933
2936
|
buttonPadding: theme.space.medium,
|
|
2934
|
-
iconPadding: theme.space.small
|
|
2937
|
+
iconPadding: theme.space.small,
|
|
2938
|
+
utilityPadding: theme.space.small,
|
|
2939
|
+
utilityIconPadding: theme.space.smallMedium
|
|
2935
2940
|
};
|
|
2936
2941
|
var sizes = {
|
|
2937
2942
|
iconSize: theme.fontSizes.xxlarge
|
|
2938
2943
|
};
|
|
2939
2944
|
var radii = {
|
|
2940
|
-
"default": theme.space.xlarge
|
|
2945
|
+
"default": theme.space.xlarge,
|
|
2946
|
+
utilityRadii: theme.space.small
|
|
2941
2947
|
};
|
|
2942
2948
|
var colors = {
|
|
2943
2949
|
primary: theme.colors.primary,
|
|
@@ -2950,7 +2956,8 @@ var getButtonTheme = function getButtonTheme(theme) {
|
|
|
2950
2956
|
disabledText: theme.colors.disabledLightText,
|
|
2951
2957
|
disabledBorder: theme.colors.disabledLightText,
|
|
2952
2958
|
disabledBackground: theme.colors.disabledLightText,
|
|
2953
|
-
invertedText: theme.colors.invertedText
|
|
2959
|
+
invertedText: theme.colors.invertedText,
|
|
2960
|
+
utilityBackground: theme.colors.backgroundLight
|
|
2954
2961
|
};
|
|
2955
2962
|
return {
|
|
2956
2963
|
borderWidth: borderWidth,
|
|
@@ -2975,11 +2982,15 @@ var getCardTheme = function getCardTheme(theme) {
|
|
|
2975
2982
|
danger: theme.colors.dangerMediumLight
|
|
2976
2983
|
}
|
|
2977
2984
|
};
|
|
2985
|
+
var sizes = {
|
|
2986
|
+
indicatorWidth: theme.space.medium
|
|
2987
|
+
};
|
|
2978
2988
|
var radii = {
|
|
2979
2989
|
"default": theme.radii.large
|
|
2980
2990
|
};
|
|
2981
2991
|
return {
|
|
2982
2992
|
colors: colors,
|
|
2993
|
+
sizes: sizes,
|
|
2983
2994
|
radii: radii
|
|
2984
2995
|
};
|
|
2985
2996
|
};
|
|
@@ -3135,7 +3146,8 @@ var getIconTheme = function getIconTheme(theme) {
|
|
|
3135
3146
|
danger: theme.colors.danger,
|
|
3136
3147
|
success: theme.colors.success,
|
|
3137
3148
|
warning: theme.colors.warning,
|
|
3138
|
-
disabledText: theme.colors.disabledText
|
|
3149
|
+
disabledText: theme.colors.disabledText,
|
|
3150
|
+
invertedText: theme.colors.invertedText
|
|
3139
3151
|
};
|
|
3140
3152
|
var sizes = {
|
|
3141
3153
|
xsmall: theme.fontSizes.large,
|
|
@@ -3375,20 +3387,79 @@ var getTagTheme = function getTagTheme(theme) {
|
|
|
3375
3387
|
var getTextInputTheme = function getTextInputTheme(theme) {
|
|
3376
3388
|
var colors = {
|
|
3377
3389
|
labelBackground: theme.colors.platformBackground,
|
|
3378
|
-
|
|
3390
|
+
asterisks: {
|
|
3391
|
+
"default": theme.colors.danger,
|
|
3392
|
+
error: theme.colors.danger,
|
|
3393
|
+
disabled: theme.colors.disabledLightText,
|
|
3394
|
+
readonly: theme.colors.disabledText,
|
|
3395
|
+
filled: theme.colors.danger,
|
|
3396
|
+
focused: theme.colors.danger
|
|
3397
|
+
},
|
|
3398
|
+
error: theme.colors.danger,
|
|
3399
|
+
placeholderIfNotFocused: theme.colors.text,
|
|
3400
|
+
placeholderIfFocued: theme.colors.disabledText,
|
|
3401
|
+
label: theme.colors.text,
|
|
3402
|
+
readonlyLabel: theme.colors.disabledText,
|
|
3403
|
+
disabledLabel: theme.colors.disabledLightText,
|
|
3404
|
+
text: theme.colors.text,
|
|
3405
|
+
borders: {
|
|
3406
|
+
"default": theme.colors.text,
|
|
3407
|
+
error: theme.colors.danger,
|
|
3408
|
+
disabled: theme.colors.disabledLightText,
|
|
3409
|
+
readonly: theme.colors.disabledText,
|
|
3410
|
+
filled: theme.colors.text,
|
|
3411
|
+
focused: theme.colors.text
|
|
3412
|
+
},
|
|
3413
|
+
labels: {
|
|
3414
|
+
"default": theme.colors.text,
|
|
3415
|
+
error: theme.colors.text,
|
|
3416
|
+
disabled: theme.colors.disabledLightText,
|
|
3417
|
+
readonly: theme.colors.disabledText,
|
|
3418
|
+
filled: theme.colors.text,
|
|
3419
|
+
focused: theme.colors.text
|
|
3420
|
+
},
|
|
3421
|
+
labelsInsideTextInput: {
|
|
3422
|
+
"default": theme.colors.text,
|
|
3423
|
+
error: theme.colors.text,
|
|
3424
|
+
disabled: theme.colors.disabledLightText,
|
|
3425
|
+
readonly: theme.colors.disabledText,
|
|
3426
|
+
filled: theme.colors.text,
|
|
3427
|
+
focused: theme.colors.text
|
|
3428
|
+
},
|
|
3429
|
+
maxLengthLabels: {
|
|
3430
|
+
"default": theme.colors.text,
|
|
3431
|
+
error: theme.colors.danger,
|
|
3432
|
+
disabled: theme.colors.disabledLightText,
|
|
3433
|
+
readonly: theme.colors.disabledText,
|
|
3434
|
+
filled: theme.colors.text,
|
|
3435
|
+
focused: theme.colors.text
|
|
3436
|
+
}
|
|
3379
3437
|
};
|
|
3380
3438
|
var space = {
|
|
3381
3439
|
containerPadding: theme.space.medium,
|
|
3382
3440
|
labelLeft: theme.space.medium,
|
|
3383
3441
|
labelTop: theme.lineHeights.small / -2,
|
|
3442
|
+
labelPaddingBottom: theme.space.small,
|
|
3384
3443
|
labelHorizontalPadding: theme.space.xsmall,
|
|
3385
|
-
inputHorizontalMargin: theme.space.small
|
|
3444
|
+
inputHorizontalMargin: theme.space.small,
|
|
3445
|
+
containerMarginVertical: theme.space.small,
|
|
3446
|
+
errorContainerMarginLeft: theme.space.medium,
|
|
3447
|
+
errorContainerMarginRight: theme.space.xsmall,
|
|
3448
|
+
errorMarginLeft: theme.space.xsmall,
|
|
3449
|
+
maxLengthLabelMarginLeft: theme.space.xsmall
|
|
3386
3450
|
};
|
|
3387
3451
|
var fontSizes = {
|
|
3388
|
-
text: theme.fontSizes.
|
|
3452
|
+
text: theme.fontSizes.medium,
|
|
3453
|
+
labelInsideTextInput: theme.fontSizes.medium,
|
|
3454
|
+
error: theme.fontSizes.small,
|
|
3455
|
+
maxLength: theme.fontSizes.small,
|
|
3456
|
+
asteriskLabel: theme.fontSizes.medium
|
|
3389
3457
|
};
|
|
3390
3458
|
var borderWidths = {
|
|
3391
|
-
container:
|
|
3459
|
+
container: {
|
|
3460
|
+
normal: theme.borderWidths.base,
|
|
3461
|
+
focused: theme.borderWidths.medium
|
|
3462
|
+
}
|
|
3392
3463
|
};
|
|
3393
3464
|
var radii = {
|
|
3394
3465
|
container: theme.radii.medium
|
|
@@ -9933,6 +10004,68 @@ var icons = [
|
|
|
9933
10004
|
setId: 0,
|
|
9934
10005
|
iconIdx: 94
|
|
9935
10006
|
},
|
|
10007
|
+
{
|
|
10008
|
+
icon: {
|
|
10009
|
+
paths: [
|
|
10010
|
+
"M810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM597.333 725.333h-85.333v-341.333h-85.333v-85.333h170.667v426.667z"
|
|
10011
|
+
],
|
|
10012
|
+
attrs: [
|
|
10013
|
+
{
|
|
10014
|
+
}
|
|
10015
|
+
],
|
|
10016
|
+
isMulticolor: false,
|
|
10017
|
+
isMulticolor2: false,
|
|
10018
|
+
grid: 0,
|
|
10019
|
+
tags: [
|
|
10020
|
+
"looks-one"
|
|
10021
|
+
]
|
|
10022
|
+
},
|
|
10023
|
+
attrs: [
|
|
10024
|
+
{
|
|
10025
|
+
}
|
|
10026
|
+
],
|
|
10027
|
+
properties: {
|
|
10028
|
+
order: 2599,
|
|
10029
|
+
id: 306,
|
|
10030
|
+
name: "looks-one",
|
|
10031
|
+
prevSize: 32,
|
|
10032
|
+
code: 59950
|
|
10033
|
+
},
|
|
10034
|
+
setIdx: 0,
|
|
10035
|
+
setId: 0,
|
|
10036
|
+
iconIdx: 95
|
|
10037
|
+
},
|
|
10038
|
+
{
|
|
10039
|
+
icon: {
|
|
10040
|
+
paths: [
|
|
10041
|
+
"M810.667 128h-597.333c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h597.333c46.933 0 85.333-38.4 85.333-85.333v-597.333c0-46.933-38.4-85.333-85.333-85.333zM640 469.333c0 47.36-38.4 85.333-85.333 85.333h-85.333v85.333h170.667v85.333h-256v-170.667c0-47.36 38.4-85.333 85.333-85.333h85.333v-85.333h-170.667v-85.333h170.667c46.933 0 85.333 37.973 85.333 85.333v85.333z"
|
|
10042
|
+
],
|
|
10043
|
+
attrs: [
|
|
10044
|
+
{
|
|
10045
|
+
}
|
|
10046
|
+
],
|
|
10047
|
+
isMulticolor: false,
|
|
10048
|
+
isMulticolor2: false,
|
|
10049
|
+
grid: 0,
|
|
10050
|
+
tags: [
|
|
10051
|
+
"looks-two"
|
|
10052
|
+
]
|
|
10053
|
+
},
|
|
10054
|
+
attrs: [
|
|
10055
|
+
{
|
|
10056
|
+
}
|
|
10057
|
+
],
|
|
10058
|
+
properties: {
|
|
10059
|
+
order: 2598,
|
|
10060
|
+
id: 305,
|
|
10061
|
+
name: "looks-two",
|
|
10062
|
+
prevSize: 32,
|
|
10063
|
+
code: 59951
|
|
10064
|
+
},
|
|
10065
|
+
setIdx: 0,
|
|
10066
|
+
setId: 0,
|
|
10067
|
+
iconIdx: 96
|
|
10068
|
+
},
|
|
9936
10069
|
{
|
|
9937
10070
|
icon: {
|
|
9938
10071
|
paths: [
|
|
@@ -9956,7 +10089,7 @@ var icons = [
|
|
|
9956
10089
|
},
|
|
9957
10090
|
setIdx: 0,
|
|
9958
10091
|
setId: 0,
|
|
9959
|
-
iconIdx:
|
|
10092
|
+
iconIdx: 97
|
|
9960
10093
|
},
|
|
9961
10094
|
{
|
|
9962
10095
|
icon: {
|
|
@@ -9983,7 +10116,7 @@ var icons = [
|
|
|
9983
10116
|
},
|
|
9984
10117
|
setIdx: 0,
|
|
9985
10118
|
setId: 0,
|
|
9986
|
-
iconIdx:
|
|
10119
|
+
iconIdx: 98
|
|
9987
10120
|
},
|
|
9988
10121
|
{
|
|
9989
10122
|
icon: {
|
|
@@ -10008,7 +10141,7 @@ var icons = [
|
|
|
10008
10141
|
},
|
|
10009
10142
|
setIdx: 0,
|
|
10010
10143
|
setId: 0,
|
|
10011
|
-
iconIdx:
|
|
10144
|
+
iconIdx: 99
|
|
10012
10145
|
},
|
|
10013
10146
|
{
|
|
10014
10147
|
icon: {
|
|
@@ -10033,7 +10166,7 @@ var icons = [
|
|
|
10033
10166
|
},
|
|
10034
10167
|
setIdx: 0,
|
|
10035
10168
|
setId: 0,
|
|
10036
|
-
iconIdx:
|
|
10169
|
+
iconIdx: 100
|
|
10037
10170
|
},
|
|
10038
10171
|
{
|
|
10039
10172
|
icon: {
|
|
@@ -10060,7 +10193,7 @@ var icons = [
|
|
|
10060
10193
|
},
|
|
10061
10194
|
setIdx: 0,
|
|
10062
10195
|
setId: 0,
|
|
10063
|
-
iconIdx:
|
|
10196
|
+
iconIdx: 101
|
|
10064
10197
|
},
|
|
10065
10198
|
{
|
|
10066
10199
|
icon: {
|
|
@@ -10090,7 +10223,7 @@ var icons = [
|
|
|
10090
10223
|
},
|
|
10091
10224
|
setIdx: 0,
|
|
10092
10225
|
setId: 0,
|
|
10093
|
-
iconIdx:
|
|
10226
|
+
iconIdx: 102
|
|
10094
10227
|
},
|
|
10095
10228
|
{
|
|
10096
10229
|
icon: {
|
|
@@ -10115,7 +10248,7 @@ var icons = [
|
|
|
10115
10248
|
},
|
|
10116
10249
|
setIdx: 0,
|
|
10117
10250
|
setId: 0,
|
|
10118
|
-
iconIdx:
|
|
10251
|
+
iconIdx: 103
|
|
10119
10252
|
},
|
|
10120
10253
|
{
|
|
10121
10254
|
icon: {
|
|
@@ -10140,7 +10273,7 @@ var icons = [
|
|
|
10140
10273
|
},
|
|
10141
10274
|
setIdx: 0,
|
|
10142
10275
|
setId: 0,
|
|
10143
|
-
iconIdx:
|
|
10276
|
+
iconIdx: 104
|
|
10144
10277
|
},
|
|
10145
10278
|
{
|
|
10146
10279
|
icon: {
|
|
@@ -10165,7 +10298,7 @@ var icons = [
|
|
|
10165
10298
|
},
|
|
10166
10299
|
setIdx: 0,
|
|
10167
10300
|
setId: 0,
|
|
10168
|
-
iconIdx:
|
|
10301
|
+
iconIdx: 105
|
|
10169
10302
|
},
|
|
10170
10303
|
{
|
|
10171
10304
|
icon: {
|
|
@@ -10190,7 +10323,7 @@ var icons = [
|
|
|
10190
10323
|
},
|
|
10191
10324
|
setIdx: 0,
|
|
10192
10325
|
setId: 0,
|
|
10193
|
-
iconIdx:
|
|
10326
|
+
iconIdx: 106
|
|
10194
10327
|
},
|
|
10195
10328
|
{
|
|
10196
10329
|
icon: {
|
|
@@ -10216,7 +10349,7 @@ var icons = [
|
|
|
10216
10349
|
},
|
|
10217
10350
|
setIdx: 0,
|
|
10218
10351
|
setId: 0,
|
|
10219
|
-
iconIdx:
|
|
10352
|
+
iconIdx: 107
|
|
10220
10353
|
},
|
|
10221
10354
|
{
|
|
10222
10355
|
icon: {
|
|
@@ -10241,7 +10374,7 @@ var icons = [
|
|
|
10241
10374
|
},
|
|
10242
10375
|
setIdx: 0,
|
|
10243
10376
|
setId: 0,
|
|
10244
|
-
iconIdx:
|
|
10377
|
+
iconIdx: 108
|
|
10245
10378
|
},
|
|
10246
10379
|
{
|
|
10247
10380
|
icon: {
|
|
@@ -10266,7 +10399,7 @@ var icons = [
|
|
|
10266
10399
|
},
|
|
10267
10400
|
setIdx: 0,
|
|
10268
10401
|
setId: 0,
|
|
10269
|
-
iconIdx:
|
|
10402
|
+
iconIdx: 109
|
|
10270
10403
|
},
|
|
10271
10404
|
{
|
|
10272
10405
|
icon: {
|
|
@@ -10291,7 +10424,7 @@ var icons = [
|
|
|
10291
10424
|
},
|
|
10292
10425
|
setIdx: 0,
|
|
10293
10426
|
setId: 0,
|
|
10294
|
-
iconIdx:
|
|
10427
|
+
iconIdx: 110
|
|
10295
10428
|
},
|
|
10296
10429
|
{
|
|
10297
10430
|
icon: {
|
|
@@ -10316,7 +10449,7 @@ var icons = [
|
|
|
10316
10449
|
},
|
|
10317
10450
|
setIdx: 0,
|
|
10318
10451
|
setId: 0,
|
|
10319
|
-
iconIdx:
|
|
10452
|
+
iconIdx: 111
|
|
10320
10453
|
},
|
|
10321
10454
|
{
|
|
10322
10455
|
icon: {
|
|
@@ -10341,7 +10474,7 @@ var icons = [
|
|
|
10341
10474
|
},
|
|
10342
10475
|
setIdx: 0,
|
|
10343
10476
|
setId: 0,
|
|
10344
|
-
iconIdx:
|
|
10477
|
+
iconIdx: 112
|
|
10345
10478
|
},
|
|
10346
10479
|
{
|
|
10347
10480
|
icon: {
|
|
@@ -10370,7 +10503,7 @@ var icons = [
|
|
|
10370
10503
|
},
|
|
10371
10504
|
setIdx: 0,
|
|
10372
10505
|
setId: 0,
|
|
10373
|
-
iconIdx:
|
|
10506
|
+
iconIdx: 113
|
|
10374
10507
|
},
|
|
10375
10508
|
{
|
|
10376
10509
|
icon: {
|
|
@@ -10395,7 +10528,7 @@ var icons = [
|
|
|
10395
10528
|
},
|
|
10396
10529
|
setIdx: 0,
|
|
10397
10530
|
setId: 0,
|
|
10398
|
-
iconIdx:
|
|
10531
|
+
iconIdx: 114
|
|
10399
10532
|
},
|
|
10400
10533
|
{
|
|
10401
10534
|
icon: {
|
|
@@ -10420,7 +10553,7 @@ var icons = [
|
|
|
10420
10553
|
},
|
|
10421
10554
|
setIdx: 0,
|
|
10422
10555
|
setId: 0,
|
|
10423
|
-
iconIdx:
|
|
10556
|
+
iconIdx: 115
|
|
10424
10557
|
},
|
|
10425
10558
|
{
|
|
10426
10559
|
icon: {
|
|
@@ -10445,7 +10578,7 @@ var icons = [
|
|
|
10445
10578
|
},
|
|
10446
10579
|
setIdx: 0,
|
|
10447
10580
|
setId: 0,
|
|
10448
|
-
iconIdx:
|
|
10581
|
+
iconIdx: 116
|
|
10449
10582
|
},
|
|
10450
10583
|
{
|
|
10451
10584
|
icon: {
|
|
@@ -10470,7 +10603,7 @@ var icons = [
|
|
|
10470
10603
|
},
|
|
10471
10604
|
setIdx: 0,
|
|
10472
10605
|
setId: 0,
|
|
10473
|
-
iconIdx:
|
|
10606
|
+
iconIdx: 117
|
|
10474
10607
|
},
|
|
10475
10608
|
{
|
|
10476
10609
|
icon: {
|
|
@@ -10495,7 +10628,7 @@ var icons = [
|
|
|
10495
10628
|
},
|
|
10496
10629
|
setIdx: 0,
|
|
10497
10630
|
setId: 0,
|
|
10498
|
-
iconIdx:
|
|
10631
|
+
iconIdx: 118
|
|
10499
10632
|
},
|
|
10500
10633
|
{
|
|
10501
10634
|
icon: {
|
|
@@ -10526,7 +10659,7 @@ var icons = [
|
|
|
10526
10659
|
},
|
|
10527
10660
|
setIdx: 0,
|
|
10528
10661
|
setId: 0,
|
|
10529
|
-
iconIdx:
|
|
10662
|
+
iconIdx: 119
|
|
10530
10663
|
},
|
|
10531
10664
|
{
|
|
10532
10665
|
icon: {
|
|
@@ -10551,7 +10684,7 @@ var icons = [
|
|
|
10551
10684
|
},
|
|
10552
10685
|
setIdx: 0,
|
|
10553
10686
|
setId: 0,
|
|
10554
|
-
iconIdx:
|
|
10687
|
+
iconIdx: 120
|
|
10555
10688
|
},
|
|
10556
10689
|
{
|
|
10557
10690
|
icon: {
|
|
@@ -10582,7 +10715,7 @@ var icons = [
|
|
|
10582
10715
|
},
|
|
10583
10716
|
setIdx: 0,
|
|
10584
10717
|
setId: 0,
|
|
10585
|
-
iconIdx:
|
|
10718
|
+
iconIdx: 121
|
|
10586
10719
|
},
|
|
10587
10720
|
{
|
|
10588
10721
|
icon: {
|
|
@@ -10607,7 +10740,7 @@ var icons = [
|
|
|
10607
10740
|
},
|
|
10608
10741
|
setIdx: 0,
|
|
10609
10742
|
setId: 0,
|
|
10610
|
-
iconIdx:
|
|
10743
|
+
iconIdx: 122
|
|
10611
10744
|
},
|
|
10612
10745
|
{
|
|
10613
10746
|
icon: {
|
|
@@ -10632,7 +10765,7 @@ var icons = [
|
|
|
10632
10765
|
},
|
|
10633
10766
|
setIdx: 0,
|
|
10634
10767
|
setId: 0,
|
|
10635
|
-
iconIdx:
|
|
10768
|
+
iconIdx: 123
|
|
10636
10769
|
},
|
|
10637
10770
|
{
|
|
10638
10771
|
icon: {
|
|
@@ -10657,7 +10790,7 @@ var icons = [
|
|
|
10657
10790
|
},
|
|
10658
10791
|
setIdx: 0,
|
|
10659
10792
|
setId: 0,
|
|
10660
|
-
iconIdx:
|
|
10793
|
+
iconIdx: 124
|
|
10661
10794
|
},
|
|
10662
10795
|
{
|
|
10663
10796
|
icon: {
|
|
@@ -10682,7 +10815,7 @@ var icons = [
|
|
|
10682
10815
|
},
|
|
10683
10816
|
setIdx: 0,
|
|
10684
10817
|
setId: 0,
|
|
10685
|
-
iconIdx:
|
|
10818
|
+
iconIdx: 125
|
|
10686
10819
|
},
|
|
10687
10820
|
{
|
|
10688
10821
|
icon: {
|
|
@@ -10714,7 +10847,7 @@ var icons = [
|
|
|
10714
10847
|
},
|
|
10715
10848
|
setIdx: 0,
|
|
10716
10849
|
setId: 0,
|
|
10717
|
-
iconIdx:
|
|
10850
|
+
iconIdx: 126
|
|
10718
10851
|
},
|
|
10719
10852
|
{
|
|
10720
10853
|
icon: {
|
|
@@ -10739,7 +10872,7 @@ var icons = [
|
|
|
10739
10872
|
},
|
|
10740
10873
|
setIdx: 0,
|
|
10741
10874
|
setId: 0,
|
|
10742
|
-
iconIdx:
|
|
10875
|
+
iconIdx: 127
|
|
10743
10876
|
},
|
|
10744
10877
|
{
|
|
10745
10878
|
icon: {
|
|
@@ -10773,7 +10906,7 @@ var icons = [
|
|
|
10773
10906
|
},
|
|
10774
10907
|
setIdx: 0,
|
|
10775
10908
|
setId: 0,
|
|
10776
|
-
iconIdx:
|
|
10909
|
+
iconIdx: 128
|
|
10777
10910
|
},
|
|
10778
10911
|
{
|
|
10779
10912
|
icon: {
|
|
@@ -10799,7 +10932,7 @@ var icons = [
|
|
|
10799
10932
|
},
|
|
10800
10933
|
setIdx: 0,
|
|
10801
10934
|
setId: 0,
|
|
10802
|
-
iconIdx:
|
|
10935
|
+
iconIdx: 129
|
|
10803
10936
|
},
|
|
10804
10937
|
{
|
|
10805
10938
|
icon: {
|
|
@@ -10824,7 +10957,7 @@ var icons = [
|
|
|
10824
10957
|
},
|
|
10825
10958
|
setIdx: 0,
|
|
10826
10959
|
setId: 0,
|
|
10827
|
-
iconIdx:
|
|
10960
|
+
iconIdx: 130
|
|
10828
10961
|
},
|
|
10829
10962
|
{
|
|
10830
10963
|
icon: {
|
|
@@ -10851,7 +10984,7 @@ var icons = [
|
|
|
10851
10984
|
},
|
|
10852
10985
|
setIdx: 0,
|
|
10853
10986
|
setId: 0,
|
|
10854
|
-
iconIdx:
|
|
10987
|
+
iconIdx: 131
|
|
10855
10988
|
},
|
|
10856
10989
|
{
|
|
10857
10990
|
icon: {
|
|
@@ -10881,7 +11014,7 @@ var icons = [
|
|
|
10881
11014
|
},
|
|
10882
11015
|
setIdx: 0,
|
|
10883
11016
|
setId: 0,
|
|
10884
|
-
iconIdx:
|
|
11017
|
+
iconIdx: 132
|
|
10885
11018
|
},
|
|
10886
11019
|
{
|
|
10887
11020
|
icon: {
|
|
@@ -10906,7 +11039,7 @@ var icons = [
|
|
|
10906
11039
|
},
|
|
10907
11040
|
setIdx: 0,
|
|
10908
11041
|
setId: 0,
|
|
10909
|
-
iconIdx:
|
|
11042
|
+
iconIdx: 133
|
|
10910
11043
|
},
|
|
10911
11044
|
{
|
|
10912
11045
|
icon: {
|
|
@@ -10931,7 +11064,7 @@ var icons = [
|
|
|
10931
11064
|
},
|
|
10932
11065
|
setIdx: 0,
|
|
10933
11066
|
setId: 0,
|
|
10934
|
-
iconIdx:
|
|
11067
|
+
iconIdx: 134
|
|
10935
11068
|
},
|
|
10936
11069
|
{
|
|
10937
11070
|
icon: {
|
|
@@ -10957,7 +11090,7 @@ var icons = [
|
|
|
10957
11090
|
},
|
|
10958
11091
|
setIdx: 0,
|
|
10959
11092
|
setId: 0,
|
|
10960
|
-
iconIdx:
|
|
11093
|
+
iconIdx: 135
|
|
10961
11094
|
},
|
|
10962
11095
|
{
|
|
10963
11096
|
icon: {
|
|
@@ -10982,7 +11115,7 @@ var icons = [
|
|
|
10982
11115
|
},
|
|
10983
11116
|
setIdx: 0,
|
|
10984
11117
|
setId: 0,
|
|
10985
|
-
iconIdx:
|
|
11118
|
+
iconIdx: 136
|
|
10986
11119
|
},
|
|
10987
11120
|
{
|
|
10988
11121
|
icon: {
|
|
@@ -11008,7 +11141,7 @@ var icons = [
|
|
|
11008
11141
|
},
|
|
11009
11142
|
setIdx: 0,
|
|
11010
11143
|
setId: 0,
|
|
11011
|
-
iconIdx:
|
|
11144
|
+
iconIdx: 137
|
|
11012
11145
|
},
|
|
11013
11146
|
{
|
|
11014
11147
|
icon: {
|
|
@@ -11033,7 +11166,7 @@ var icons = [
|
|
|
11033
11166
|
},
|
|
11034
11167
|
setIdx: 0,
|
|
11035
11168
|
setId: 0,
|
|
11036
|
-
iconIdx:
|
|
11169
|
+
iconIdx: 138
|
|
11037
11170
|
},
|
|
11038
11171
|
{
|
|
11039
11172
|
icon: {
|
|
@@ -11058,7 +11191,7 @@ var icons = [
|
|
|
11058
11191
|
},
|
|
11059
11192
|
setIdx: 0,
|
|
11060
11193
|
setId: 0,
|
|
11061
|
-
iconIdx:
|
|
11194
|
+
iconIdx: 139
|
|
11062
11195
|
},
|
|
11063
11196
|
{
|
|
11064
11197
|
icon: {
|
|
@@ -11089,7 +11222,7 @@ var icons = [
|
|
|
11089
11222
|
},
|
|
11090
11223
|
setIdx: 0,
|
|
11091
11224
|
setId: 0,
|
|
11092
|
-
iconIdx:
|
|
11225
|
+
iconIdx: 140
|
|
11093
11226
|
},
|
|
11094
11227
|
{
|
|
11095
11228
|
icon: {
|
|
@@ -11114,7 +11247,7 @@ var icons = [
|
|
|
11114
11247
|
},
|
|
11115
11248
|
setIdx: 0,
|
|
11116
11249
|
setId: 0,
|
|
11117
|
-
iconIdx:
|
|
11250
|
+
iconIdx: 141
|
|
11118
11251
|
},
|
|
11119
11252
|
{
|
|
11120
11253
|
icon: {
|
|
@@ -11139,7 +11272,7 @@ var icons = [
|
|
|
11139
11272
|
},
|
|
11140
11273
|
setIdx: 0,
|
|
11141
11274
|
setId: 0,
|
|
11142
|
-
iconIdx:
|
|
11275
|
+
iconIdx: 142
|
|
11143
11276
|
},
|
|
11144
11277
|
{
|
|
11145
11278
|
icon: {
|
|
@@ -11164,7 +11297,7 @@ var icons = [
|
|
|
11164
11297
|
},
|
|
11165
11298
|
setIdx: 0,
|
|
11166
11299
|
setId: 0,
|
|
11167
|
-
iconIdx:
|
|
11300
|
+
iconIdx: 143
|
|
11168
11301
|
},
|
|
11169
11302
|
{
|
|
11170
11303
|
icon: {
|
|
@@ -11189,7 +11322,7 @@ var icons = [
|
|
|
11189
11322
|
},
|
|
11190
11323
|
setIdx: 0,
|
|
11191
11324
|
setId: 0,
|
|
11192
|
-
iconIdx:
|
|
11325
|
+
iconIdx: 144
|
|
11193
11326
|
},
|
|
11194
11327
|
{
|
|
11195
11328
|
icon: {
|
|
@@ -11215,7 +11348,7 @@ var icons = [
|
|
|
11215
11348
|
},
|
|
11216
11349
|
setIdx: 0,
|
|
11217
11350
|
setId: 0,
|
|
11218
|
-
iconIdx:
|
|
11351
|
+
iconIdx: 145
|
|
11219
11352
|
},
|
|
11220
11353
|
{
|
|
11221
11354
|
icon: {
|
|
@@ -11240,7 +11373,7 @@ var icons = [
|
|
|
11240
11373
|
},
|
|
11241
11374
|
setIdx: 0,
|
|
11242
11375
|
setId: 0,
|
|
11243
|
-
iconIdx:
|
|
11376
|
+
iconIdx: 146
|
|
11244
11377
|
},
|
|
11245
11378
|
{
|
|
11246
11379
|
icon: {
|
|
@@ -11265,7 +11398,7 @@ var icons = [
|
|
|
11265
11398
|
},
|
|
11266
11399
|
setIdx: 0,
|
|
11267
11400
|
setId: 0,
|
|
11268
|
-
iconIdx:
|
|
11401
|
+
iconIdx: 147
|
|
11269
11402
|
},
|
|
11270
11403
|
{
|
|
11271
11404
|
icon: {
|
|
@@ -11295,7 +11428,7 @@ var icons = [
|
|
|
11295
11428
|
},
|
|
11296
11429
|
setIdx: 0,
|
|
11297
11430
|
setId: 0,
|
|
11298
|
-
iconIdx:
|
|
11431
|
+
iconIdx: 148
|
|
11299
11432
|
},
|
|
11300
11433
|
{
|
|
11301
11434
|
icon: {
|
|
@@ -11320,7 +11453,7 @@ var icons = [
|
|
|
11320
11453
|
},
|
|
11321
11454
|
setIdx: 0,
|
|
11322
11455
|
setId: 0,
|
|
11323
|
-
iconIdx:
|
|
11456
|
+
iconIdx: 149
|
|
11324
11457
|
},
|
|
11325
11458
|
{
|
|
11326
11459
|
icon: {
|
|
@@ -11345,7 +11478,7 @@ var icons = [
|
|
|
11345
11478
|
},
|
|
11346
11479
|
setIdx: 0,
|
|
11347
11480
|
setId: 0,
|
|
11348
|
-
iconIdx:
|
|
11481
|
+
iconIdx: 150
|
|
11349
11482
|
},
|
|
11350
11483
|
{
|
|
11351
11484
|
icon: {
|
|
@@ -11370,7 +11503,7 @@ var icons = [
|
|
|
11370
11503
|
},
|
|
11371
11504
|
setIdx: 0,
|
|
11372
11505
|
setId: 0,
|
|
11373
|
-
iconIdx:
|
|
11506
|
+
iconIdx: 151
|
|
11374
11507
|
},
|
|
11375
11508
|
{
|
|
11376
11509
|
icon: {
|
|
@@ -11395,7 +11528,7 @@ var icons = [
|
|
|
11395
11528
|
},
|
|
11396
11529
|
setIdx: 0,
|
|
11397
11530
|
setId: 0,
|
|
11398
|
-
iconIdx:
|
|
11531
|
+
iconIdx: 152
|
|
11399
11532
|
},
|
|
11400
11533
|
{
|
|
11401
11534
|
icon: {
|
|
@@ -11420,7 +11553,7 @@ var icons = [
|
|
|
11420
11553
|
},
|
|
11421
11554
|
setIdx: 0,
|
|
11422
11555
|
setId: 0,
|
|
11423
|
-
iconIdx:
|
|
11556
|
+
iconIdx: 153
|
|
11424
11557
|
},
|
|
11425
11558
|
{
|
|
11426
11559
|
icon: {
|
|
@@ -11445,7 +11578,7 @@ var icons = [
|
|
|
11445
11578
|
},
|
|
11446
11579
|
setIdx: 0,
|
|
11447
11580
|
setId: 0,
|
|
11448
|
-
iconIdx:
|
|
11581
|
+
iconIdx: 154
|
|
11449
11582
|
},
|
|
11450
11583
|
{
|
|
11451
11584
|
icon: {
|
|
@@ -11470,7 +11603,7 @@ var icons = [
|
|
|
11470
11603
|
},
|
|
11471
11604
|
setIdx: 0,
|
|
11472
11605
|
setId: 0,
|
|
11473
|
-
iconIdx:
|
|
11606
|
+
iconIdx: 155
|
|
11474
11607
|
},
|
|
11475
11608
|
{
|
|
11476
11609
|
icon: {
|
|
@@ -11498,7 +11631,7 @@ var icons = [
|
|
|
11498
11631
|
},
|
|
11499
11632
|
setIdx: 0,
|
|
11500
11633
|
setId: 0,
|
|
11501
|
-
iconIdx:
|
|
11634
|
+
iconIdx: 156
|
|
11502
11635
|
},
|
|
11503
11636
|
{
|
|
11504
11637
|
icon: {
|
|
@@ -11523,7 +11656,7 @@ var icons = [
|
|
|
11523
11656
|
},
|
|
11524
11657
|
setIdx: 0,
|
|
11525
11658
|
setId: 0,
|
|
11526
|
-
iconIdx:
|
|
11659
|
+
iconIdx: 157
|
|
11527
11660
|
},
|
|
11528
11661
|
{
|
|
11529
11662
|
icon: {
|
|
@@ -11548,7 +11681,7 @@ var icons = [
|
|
|
11548
11681
|
},
|
|
11549
11682
|
setIdx: 0,
|
|
11550
11683
|
setId: 0,
|
|
11551
|
-
iconIdx:
|
|
11684
|
+
iconIdx: 158
|
|
11552
11685
|
},
|
|
11553
11686
|
{
|
|
11554
11687
|
icon: {
|
|
@@ -11573,7 +11706,7 @@ var icons = [
|
|
|
11573
11706
|
},
|
|
11574
11707
|
setIdx: 0,
|
|
11575
11708
|
setId: 0,
|
|
11576
|
-
iconIdx:
|
|
11709
|
+
iconIdx: 159
|
|
11577
11710
|
},
|
|
11578
11711
|
{
|
|
11579
11712
|
icon: {
|
|
@@ -11598,7 +11731,7 @@ var icons = [
|
|
|
11598
11731
|
},
|
|
11599
11732
|
setIdx: 0,
|
|
11600
11733
|
setId: 0,
|
|
11601
|
-
iconIdx:
|
|
11734
|
+
iconIdx: 160
|
|
11602
11735
|
},
|
|
11603
11736
|
{
|
|
11604
11737
|
icon: {
|
|
@@ -11625,7 +11758,7 @@ var icons = [
|
|
|
11625
11758
|
},
|
|
11626
11759
|
setIdx: 0,
|
|
11627
11760
|
setId: 0,
|
|
11628
|
-
iconIdx:
|
|
11761
|
+
iconIdx: 161
|
|
11629
11762
|
},
|
|
11630
11763
|
{
|
|
11631
11764
|
icon: {
|
|
@@ -11655,7 +11788,7 @@ var icons = [
|
|
|
11655
11788
|
},
|
|
11656
11789
|
setIdx: 0,
|
|
11657
11790
|
setId: 0,
|
|
11658
|
-
iconIdx:
|
|
11791
|
+
iconIdx: 162
|
|
11659
11792
|
},
|
|
11660
11793
|
{
|
|
11661
11794
|
icon: {
|
|
@@ -11680,7 +11813,7 @@ var icons = [
|
|
|
11680
11813
|
},
|
|
11681
11814
|
setIdx: 0,
|
|
11682
11815
|
setId: 0,
|
|
11683
|
-
iconIdx:
|
|
11816
|
+
iconIdx: 163
|
|
11684
11817
|
},
|
|
11685
11818
|
{
|
|
11686
11819
|
icon: {
|
|
@@ -11705,7 +11838,7 @@ var icons = [
|
|
|
11705
11838
|
},
|
|
11706
11839
|
setIdx: 0,
|
|
11707
11840
|
setId: 0,
|
|
11708
|
-
iconIdx:
|
|
11841
|
+
iconIdx: 164
|
|
11709
11842
|
},
|
|
11710
11843
|
{
|
|
11711
11844
|
icon: {
|
|
@@ -11730,7 +11863,7 @@ var icons = [
|
|
|
11730
11863
|
},
|
|
11731
11864
|
setIdx: 0,
|
|
11732
11865
|
setId: 0,
|
|
11733
|
-
iconIdx:
|
|
11866
|
+
iconIdx: 165
|
|
11734
11867
|
},
|
|
11735
11868
|
{
|
|
11736
11869
|
icon: {
|
|
@@ -11755,7 +11888,7 @@ var icons = [
|
|
|
11755
11888
|
},
|
|
11756
11889
|
setIdx: 0,
|
|
11757
11890
|
setId: 0,
|
|
11758
|
-
iconIdx:
|
|
11891
|
+
iconIdx: 166
|
|
11759
11892
|
},
|
|
11760
11893
|
{
|
|
11761
11894
|
icon: {
|
|
@@ -11781,7 +11914,7 @@ var icons = [
|
|
|
11781
11914
|
},
|
|
11782
11915
|
setIdx: 0,
|
|
11783
11916
|
setId: 0,
|
|
11784
|
-
iconIdx:
|
|
11917
|
+
iconIdx: 167
|
|
11785
11918
|
},
|
|
11786
11919
|
{
|
|
11787
11920
|
icon: {
|
|
@@ -11806,7 +11939,7 @@ var icons = [
|
|
|
11806
11939
|
},
|
|
11807
11940
|
setIdx: 0,
|
|
11808
11941
|
setId: 0,
|
|
11809
|
-
iconIdx:
|
|
11942
|
+
iconIdx: 168
|
|
11810
11943
|
},
|
|
11811
11944
|
{
|
|
11812
11945
|
icon: {
|
|
@@ -11832,7 +11965,7 @@ var icons = [
|
|
|
11832
11965
|
},
|
|
11833
11966
|
setIdx: 0,
|
|
11834
11967
|
setId: 0,
|
|
11835
|
-
iconIdx:
|
|
11968
|
+
iconIdx: 169
|
|
11836
11969
|
},
|
|
11837
11970
|
{
|
|
11838
11971
|
icon: {
|
|
@@ -11858,7 +11991,7 @@ var icons = [
|
|
|
11858
11991
|
},
|
|
11859
11992
|
setIdx: 0,
|
|
11860
11993
|
setId: 0,
|
|
11861
|
-
iconIdx:
|
|
11994
|
+
iconIdx: 170
|
|
11862
11995
|
},
|
|
11863
11996
|
{
|
|
11864
11997
|
icon: {
|
|
@@ -11884,7 +12017,7 @@ var icons = [
|
|
|
11884
12017
|
},
|
|
11885
12018
|
setIdx: 0,
|
|
11886
12019
|
setId: 0,
|
|
11887
|
-
iconIdx:
|
|
12020
|
+
iconIdx: 171
|
|
11888
12021
|
},
|
|
11889
12022
|
{
|
|
11890
12023
|
icon: {
|
|
@@ -11911,7 +12044,7 @@ var icons = [
|
|
|
11911
12044
|
},
|
|
11912
12045
|
setIdx: 0,
|
|
11913
12046
|
setId: 0,
|
|
11914
|
-
iconIdx:
|
|
12047
|
+
iconIdx: 172
|
|
11915
12048
|
},
|
|
11916
12049
|
{
|
|
11917
12050
|
icon: {
|
|
@@ -11937,7 +12070,7 @@ var icons = [
|
|
|
11937
12070
|
},
|
|
11938
12071
|
setIdx: 0,
|
|
11939
12072
|
setId: 0,
|
|
11940
|
-
iconIdx:
|
|
12073
|
+
iconIdx: 173
|
|
11941
12074
|
},
|
|
11942
12075
|
{
|
|
11943
12076
|
icon: {
|
|
@@ -11963,7 +12096,7 @@ var icons = [
|
|
|
11963
12096
|
},
|
|
11964
12097
|
setIdx: 0,
|
|
11965
12098
|
setId: 0,
|
|
11966
|
-
iconIdx:
|
|
12099
|
+
iconIdx: 174
|
|
11967
12100
|
},
|
|
11968
12101
|
{
|
|
11969
12102
|
icon: {
|
|
@@ -11990,7 +12123,7 @@ var icons = [
|
|
|
11990
12123
|
},
|
|
11991
12124
|
setIdx: 0,
|
|
11992
12125
|
setId: 0,
|
|
11993
|
-
iconIdx:
|
|
12126
|
+
iconIdx: 175
|
|
11994
12127
|
},
|
|
11995
12128
|
{
|
|
11996
12129
|
icon: {
|
|
@@ -12015,7 +12148,7 @@ var icons = [
|
|
|
12015
12148
|
},
|
|
12016
12149
|
setIdx: 0,
|
|
12017
12150
|
setId: 0,
|
|
12018
|
-
iconIdx:
|
|
12151
|
+
iconIdx: 176
|
|
12019
12152
|
},
|
|
12020
12153
|
{
|
|
12021
12154
|
icon: {
|
|
@@ -12041,7 +12174,7 @@ var icons = [
|
|
|
12041
12174
|
},
|
|
12042
12175
|
setIdx: 0,
|
|
12043
12176
|
setId: 0,
|
|
12044
|
-
iconIdx:
|
|
12177
|
+
iconIdx: 177
|
|
12045
12178
|
},
|
|
12046
12179
|
{
|
|
12047
12180
|
icon: {
|
|
@@ -12067,7 +12200,7 @@ var icons = [
|
|
|
12067
12200
|
},
|
|
12068
12201
|
setIdx: 0,
|
|
12069
12202
|
setId: 0,
|
|
12070
|
-
iconIdx:
|
|
12203
|
+
iconIdx: 178
|
|
12071
12204
|
},
|
|
12072
12205
|
{
|
|
12073
12206
|
icon: {
|
|
@@ -12094,7 +12227,7 @@ var icons = [
|
|
|
12094
12227
|
},
|
|
12095
12228
|
setIdx: 0,
|
|
12096
12229
|
setId: 0,
|
|
12097
|
-
iconIdx:
|
|
12230
|
+
iconIdx: 179
|
|
12098
12231
|
},
|
|
12099
12232
|
{
|
|
12100
12233
|
icon: {
|
|
@@ -12119,7 +12252,7 @@ var icons = [
|
|
|
12119
12252
|
},
|
|
12120
12253
|
setIdx: 0,
|
|
12121
12254
|
setId: 0,
|
|
12122
|
-
iconIdx:
|
|
12255
|
+
iconIdx: 180
|
|
12123
12256
|
},
|
|
12124
12257
|
{
|
|
12125
12258
|
icon: {
|
|
@@ -12145,7 +12278,7 @@ var icons = [
|
|
|
12145
12278
|
},
|
|
12146
12279
|
setIdx: 0,
|
|
12147
12280
|
setId: 0,
|
|
12148
|
-
iconIdx:
|
|
12281
|
+
iconIdx: 181
|
|
12149
12282
|
},
|
|
12150
12283
|
{
|
|
12151
12284
|
icon: {
|
|
@@ -12170,7 +12303,7 @@ var icons = [
|
|
|
12170
12303
|
},
|
|
12171
12304
|
setIdx: 0,
|
|
12172
12305
|
setId: 0,
|
|
12173
|
-
iconIdx:
|
|
12306
|
+
iconIdx: 182
|
|
12174
12307
|
},
|
|
12175
12308
|
{
|
|
12176
12309
|
icon: {
|
|
@@ -12196,7 +12329,7 @@ var icons = [
|
|
|
12196
12329
|
},
|
|
12197
12330
|
setIdx: 0,
|
|
12198
12331
|
setId: 0,
|
|
12199
|
-
iconIdx:
|
|
12332
|
+
iconIdx: 183
|
|
12200
12333
|
},
|
|
12201
12334
|
{
|
|
12202
12335
|
icon: {
|
|
@@ -12224,7 +12357,7 @@ var icons = [
|
|
|
12224
12357
|
},
|
|
12225
12358
|
setIdx: 0,
|
|
12226
12359
|
setId: 0,
|
|
12227
|
-
iconIdx:
|
|
12360
|
+
iconIdx: 184
|
|
12228
12361
|
},
|
|
12229
12362
|
{
|
|
12230
12363
|
icon: {
|
|
@@ -12254,7 +12387,7 @@ var icons = [
|
|
|
12254
12387
|
},
|
|
12255
12388
|
setIdx: 0,
|
|
12256
12389
|
setId: 0,
|
|
12257
|
-
iconIdx:
|
|
12390
|
+
iconIdx: 185
|
|
12258
12391
|
},
|
|
12259
12392
|
{
|
|
12260
12393
|
icon: {
|
|
@@ -12279,7 +12412,7 @@ var icons = [
|
|
|
12279
12412
|
},
|
|
12280
12413
|
setIdx: 0,
|
|
12281
12414
|
setId: 0,
|
|
12282
|
-
iconIdx:
|
|
12415
|
+
iconIdx: 186
|
|
12283
12416
|
},
|
|
12284
12417
|
{
|
|
12285
12418
|
icon: {
|
|
@@ -12304,7 +12437,7 @@ var icons = [
|
|
|
12304
12437
|
},
|
|
12305
12438
|
setIdx: 0,
|
|
12306
12439
|
setId: 0,
|
|
12307
|
-
iconIdx:
|
|
12440
|
+
iconIdx: 187
|
|
12308
12441
|
},
|
|
12309
12442
|
{
|
|
12310
12443
|
icon: {
|
|
@@ -12329,7 +12462,7 @@ var icons = [
|
|
|
12329
12462
|
},
|
|
12330
12463
|
setIdx: 0,
|
|
12331
12464
|
setId: 0,
|
|
12332
|
-
iconIdx:
|
|
12465
|
+
iconIdx: 188
|
|
12333
12466
|
},
|
|
12334
12467
|
{
|
|
12335
12468
|
icon: {
|
|
@@ -12356,7 +12489,7 @@ var icons = [
|
|
|
12356
12489
|
},
|
|
12357
12490
|
setIdx: 0,
|
|
12358
12491
|
setId: 0,
|
|
12359
|
-
iconIdx:
|
|
12492
|
+
iconIdx: 189
|
|
12360
12493
|
},
|
|
12361
12494
|
{
|
|
12362
12495
|
icon: {
|
|
@@ -12381,7 +12514,7 @@ var icons = [
|
|
|
12381
12514
|
},
|
|
12382
12515
|
setIdx: 0,
|
|
12383
12516
|
setId: 0,
|
|
12384
|
-
iconIdx:
|
|
12517
|
+
iconIdx: 190
|
|
12385
12518
|
},
|
|
12386
12519
|
{
|
|
12387
12520
|
icon: {
|
|
@@ -12406,7 +12539,7 @@ var icons = [
|
|
|
12406
12539
|
},
|
|
12407
12540
|
setIdx: 0,
|
|
12408
12541
|
setId: 0,
|
|
12409
|
-
iconIdx:
|
|
12542
|
+
iconIdx: 191
|
|
12410
12543
|
},
|
|
12411
12544
|
{
|
|
12412
12545
|
icon: {
|
|
@@ -12431,7 +12564,7 @@ var icons = [
|
|
|
12431
12564
|
},
|
|
12432
12565
|
setIdx: 0,
|
|
12433
12566
|
setId: 0,
|
|
12434
|
-
iconIdx:
|
|
12567
|
+
iconIdx: 192
|
|
12435
12568
|
},
|
|
12436
12569
|
{
|
|
12437
12570
|
icon: {
|
|
@@ -12457,7 +12590,7 @@ var icons = [
|
|
|
12457
12590
|
},
|
|
12458
12591
|
setIdx: 0,
|
|
12459
12592
|
setId: 0,
|
|
12460
|
-
iconIdx:
|
|
12593
|
+
iconIdx: 193
|
|
12461
12594
|
},
|
|
12462
12595
|
{
|
|
12463
12596
|
icon: {
|
|
@@ -12483,7 +12616,7 @@ var icons = [
|
|
|
12483
12616
|
},
|
|
12484
12617
|
setIdx: 0,
|
|
12485
12618
|
setId: 0,
|
|
12486
|
-
iconIdx:
|
|
12619
|
+
iconIdx: 194
|
|
12487
12620
|
},
|
|
12488
12621
|
{
|
|
12489
12622
|
icon: {
|
|
@@ -12510,7 +12643,7 @@ var icons = [
|
|
|
12510
12643
|
},
|
|
12511
12644
|
setIdx: 0,
|
|
12512
12645
|
setId: 0,
|
|
12513
|
-
iconIdx:
|
|
12646
|
+
iconIdx: 195
|
|
12514
12647
|
},
|
|
12515
12648
|
{
|
|
12516
12649
|
icon: {
|
|
@@ -12536,7 +12669,7 @@ var icons = [
|
|
|
12536
12669
|
},
|
|
12537
12670
|
setIdx: 0,
|
|
12538
12671
|
setId: 0,
|
|
12539
|
-
iconIdx:
|
|
12672
|
+
iconIdx: 196
|
|
12540
12673
|
},
|
|
12541
12674
|
{
|
|
12542
12675
|
icon: {
|
|
@@ -12561,7 +12694,7 @@ var icons = [
|
|
|
12561
12694
|
},
|
|
12562
12695
|
setIdx: 0,
|
|
12563
12696
|
setId: 0,
|
|
12564
|
-
iconIdx:
|
|
12697
|
+
iconIdx: 197
|
|
12565
12698
|
},
|
|
12566
12699
|
{
|
|
12567
12700
|
icon: {
|
|
@@ -12586,7 +12719,7 @@ var icons = [
|
|
|
12586
12719
|
},
|
|
12587
12720
|
setIdx: 0,
|
|
12588
12721
|
setId: 0,
|
|
12589
|
-
iconIdx:
|
|
12722
|
+
iconIdx: 198
|
|
12590
12723
|
},
|
|
12591
12724
|
{
|
|
12592
12725
|
icon: {
|
|
@@ -12611,7 +12744,7 @@ var icons = [
|
|
|
12611
12744
|
},
|
|
12612
12745
|
setIdx: 0,
|
|
12613
12746
|
setId: 0,
|
|
12614
|
-
iconIdx:
|
|
12747
|
+
iconIdx: 199
|
|
12615
12748
|
},
|
|
12616
12749
|
{
|
|
12617
12750
|
icon: {
|
|
@@ -12637,7 +12770,7 @@ var icons = [
|
|
|
12637
12770
|
},
|
|
12638
12771
|
setIdx: 0,
|
|
12639
12772
|
setId: 0,
|
|
12640
|
-
iconIdx:
|
|
12773
|
+
iconIdx: 200
|
|
12641
12774
|
},
|
|
12642
12775
|
{
|
|
12643
12776
|
icon: {
|
|
@@ -12662,7 +12795,7 @@ var icons = [
|
|
|
12662
12795
|
},
|
|
12663
12796
|
setIdx: 0,
|
|
12664
12797
|
setId: 0,
|
|
12665
|
-
iconIdx:
|
|
12798
|
+
iconIdx: 201
|
|
12666
12799
|
},
|
|
12667
12800
|
{
|
|
12668
12801
|
icon: {
|
|
@@ -12690,7 +12823,7 @@ var icons = [
|
|
|
12690
12823
|
},
|
|
12691
12824
|
setIdx: 0,
|
|
12692
12825
|
setId: 0,
|
|
12693
|
-
iconIdx:
|
|
12826
|
+
iconIdx: 202
|
|
12694
12827
|
},
|
|
12695
12828
|
{
|
|
12696
12829
|
icon: {
|
|
@@ -12716,7 +12849,7 @@ var icons = [
|
|
|
12716
12849
|
},
|
|
12717
12850
|
setIdx: 0,
|
|
12718
12851
|
setId: 0,
|
|
12719
|
-
iconIdx:
|
|
12852
|
+
iconIdx: 203
|
|
12720
12853
|
},
|
|
12721
12854
|
{
|
|
12722
12855
|
icon: {
|
|
@@ -12741,7 +12874,7 @@ var icons = [
|
|
|
12741
12874
|
},
|
|
12742
12875
|
setIdx: 0,
|
|
12743
12876
|
setId: 0,
|
|
12744
|
-
iconIdx:
|
|
12877
|
+
iconIdx: 204
|
|
12745
12878
|
},
|
|
12746
12879
|
{
|
|
12747
12880
|
icon: {
|
|
@@ -12769,7 +12902,7 @@ var icons = [
|
|
|
12769
12902
|
},
|
|
12770
12903
|
setIdx: 0,
|
|
12771
12904
|
setId: 0,
|
|
12772
|
-
iconIdx:
|
|
12905
|
+
iconIdx: 205
|
|
12773
12906
|
},
|
|
12774
12907
|
{
|
|
12775
12908
|
icon: {
|
|
@@ -12797,7 +12930,7 @@ var icons = [
|
|
|
12797
12930
|
},
|
|
12798
12931
|
setIdx: 0,
|
|
12799
12932
|
setId: 0,
|
|
12800
|
-
iconIdx:
|
|
12933
|
+
iconIdx: 206
|
|
12801
12934
|
},
|
|
12802
12935
|
{
|
|
12803
12936
|
icon: {
|
|
@@ -12825,7 +12958,7 @@ var icons = [
|
|
|
12825
12958
|
},
|
|
12826
12959
|
setIdx: 0,
|
|
12827
12960
|
setId: 0,
|
|
12828
|
-
iconIdx:
|
|
12961
|
+
iconIdx: 207
|
|
12829
12962
|
},
|
|
12830
12963
|
{
|
|
12831
12964
|
icon: {
|
|
@@ -12853,7 +12986,7 @@ var icons = [
|
|
|
12853
12986
|
},
|
|
12854
12987
|
setIdx: 0,
|
|
12855
12988
|
setId: 0,
|
|
12856
|
-
iconIdx:
|
|
12989
|
+
iconIdx: 208
|
|
12857
12990
|
},
|
|
12858
12991
|
{
|
|
12859
12992
|
icon: {
|
|
@@ -12878,7 +13011,7 @@ var icons = [
|
|
|
12878
13011
|
},
|
|
12879
13012
|
setIdx: 0,
|
|
12880
13013
|
setId: 0,
|
|
12881
|
-
iconIdx:
|
|
13014
|
+
iconIdx: 209
|
|
12882
13015
|
},
|
|
12883
13016
|
{
|
|
12884
13017
|
icon: {
|
|
@@ -12903,7 +13036,7 @@ var icons = [
|
|
|
12903
13036
|
},
|
|
12904
13037
|
setIdx: 0,
|
|
12905
13038
|
setId: 0,
|
|
12906
|
-
iconIdx:
|
|
13039
|
+
iconIdx: 210
|
|
12907
13040
|
},
|
|
12908
13041
|
{
|
|
12909
13042
|
icon: {
|
|
@@ -12930,7 +13063,7 @@ var icons = [
|
|
|
12930
13063
|
},
|
|
12931
13064
|
setIdx: 0,
|
|
12932
13065
|
setId: 0,
|
|
12933
|
-
iconIdx:
|
|
13066
|
+
iconIdx: 211
|
|
12934
13067
|
},
|
|
12935
13068
|
{
|
|
12936
13069
|
icon: {
|
|
@@ -12956,7 +13089,7 @@ var icons = [
|
|
|
12956
13089
|
},
|
|
12957
13090
|
setIdx: 0,
|
|
12958
13091
|
setId: 0,
|
|
12959
|
-
iconIdx:
|
|
13092
|
+
iconIdx: 212
|
|
12960
13093
|
},
|
|
12961
13094
|
{
|
|
12962
13095
|
icon: {
|
|
@@ -12981,7 +13114,7 @@ var icons = [
|
|
|
12981
13114
|
},
|
|
12982
13115
|
setIdx: 0,
|
|
12983
13116
|
setId: 0,
|
|
12984
|
-
iconIdx:
|
|
13117
|
+
iconIdx: 213
|
|
12985
13118
|
},
|
|
12986
13119
|
{
|
|
12987
13120
|
icon: {
|
|
@@ -13006,7 +13139,7 @@ var icons = [
|
|
|
13006
13139
|
},
|
|
13007
13140
|
setIdx: 0,
|
|
13008
13141
|
setId: 0,
|
|
13009
|
-
iconIdx:
|
|
13142
|
+
iconIdx: 214
|
|
13010
13143
|
},
|
|
13011
13144
|
{
|
|
13012
13145
|
icon: {
|
|
@@ -13031,7 +13164,7 @@ var icons = [
|
|
|
13031
13164
|
},
|
|
13032
13165
|
setIdx: 0,
|
|
13033
13166
|
setId: 0,
|
|
13034
|
-
iconIdx:
|
|
13167
|
+
iconIdx: 215
|
|
13035
13168
|
},
|
|
13036
13169
|
{
|
|
13037
13170
|
icon: {
|
|
@@ -13057,7 +13190,7 @@ var icons = [
|
|
|
13057
13190
|
},
|
|
13058
13191
|
setIdx: 0,
|
|
13059
13192
|
setId: 0,
|
|
13060
|
-
iconIdx:
|
|
13193
|
+
iconIdx: 216
|
|
13061
13194
|
},
|
|
13062
13195
|
{
|
|
13063
13196
|
icon: {
|
|
@@ -13082,7 +13215,7 @@ var icons = [
|
|
|
13082
13215
|
},
|
|
13083
13216
|
setIdx: 0,
|
|
13084
13217
|
setId: 0,
|
|
13085
|
-
iconIdx:
|
|
13218
|
+
iconIdx: 217
|
|
13086
13219
|
},
|
|
13087
13220
|
{
|
|
13088
13221
|
icon: {
|
|
@@ -13107,7 +13240,7 @@ var icons = [
|
|
|
13107
13240
|
},
|
|
13108
13241
|
setIdx: 0,
|
|
13109
13242
|
setId: 0,
|
|
13110
|
-
iconIdx:
|
|
13243
|
+
iconIdx: 218
|
|
13111
13244
|
},
|
|
13112
13245
|
{
|
|
13113
13246
|
icon: {
|
|
@@ -13132,7 +13265,7 @@ var icons = [
|
|
|
13132
13265
|
},
|
|
13133
13266
|
setIdx: 0,
|
|
13134
13267
|
setId: 0,
|
|
13135
|
-
iconIdx:
|
|
13268
|
+
iconIdx: 219
|
|
13136
13269
|
},
|
|
13137
13270
|
{
|
|
13138
13271
|
icon: {
|
|
@@ -13158,7 +13291,7 @@ var icons = [
|
|
|
13158
13291
|
},
|
|
13159
13292
|
setIdx: 0,
|
|
13160
13293
|
setId: 0,
|
|
13161
|
-
iconIdx:
|
|
13294
|
+
iconIdx: 220
|
|
13162
13295
|
},
|
|
13163
13296
|
{
|
|
13164
13297
|
icon: {
|
|
@@ -13183,7 +13316,7 @@ var icons = [
|
|
|
13183
13316
|
},
|
|
13184
13317
|
setIdx: 0,
|
|
13185
13318
|
setId: 0,
|
|
13186
|
-
iconIdx:
|
|
13319
|
+
iconIdx: 221
|
|
13187
13320
|
},
|
|
13188
13321
|
{
|
|
13189
13322
|
icon: {
|
|
@@ -13208,7 +13341,7 @@ var icons = [
|
|
|
13208
13341
|
},
|
|
13209
13342
|
setIdx: 0,
|
|
13210
13343
|
setId: 0,
|
|
13211
|
-
iconIdx:
|
|
13344
|
+
iconIdx: 222
|
|
13212
13345
|
},
|
|
13213
13346
|
{
|
|
13214
13347
|
icon: {
|
|
@@ -13233,7 +13366,7 @@ var icons = [
|
|
|
13233
13366
|
},
|
|
13234
13367
|
setIdx: 0,
|
|
13235
13368
|
setId: 0,
|
|
13236
|
-
iconIdx:
|
|
13369
|
+
iconIdx: 223
|
|
13237
13370
|
},
|
|
13238
13371
|
{
|
|
13239
13372
|
icon: {
|
|
@@ -13261,7 +13394,7 @@ var icons = [
|
|
|
13261
13394
|
},
|
|
13262
13395
|
setIdx: 0,
|
|
13263
13396
|
setId: 0,
|
|
13264
|
-
iconIdx:
|
|
13397
|
+
iconIdx: 224
|
|
13265
13398
|
},
|
|
13266
13399
|
{
|
|
13267
13400
|
icon: {
|
|
@@ -13286,7 +13419,7 @@ var icons = [
|
|
|
13286
13419
|
},
|
|
13287
13420
|
setIdx: 0,
|
|
13288
13421
|
setId: 0,
|
|
13289
|
-
iconIdx:
|
|
13422
|
+
iconIdx: 225
|
|
13290
13423
|
},
|
|
13291
13424
|
{
|
|
13292
13425
|
icon: {
|
|
@@ -13314,7 +13447,7 @@ var icons = [
|
|
|
13314
13447
|
},
|
|
13315
13448
|
setIdx: 0,
|
|
13316
13449
|
setId: 0,
|
|
13317
|
-
iconIdx:
|
|
13450
|
+
iconIdx: 226
|
|
13318
13451
|
},
|
|
13319
13452
|
{
|
|
13320
13453
|
icon: {
|
|
@@ -13339,7 +13472,7 @@ var icons = [
|
|
|
13339
13472
|
},
|
|
13340
13473
|
setIdx: 0,
|
|
13341
13474
|
setId: 0,
|
|
13342
|
-
iconIdx:
|
|
13475
|
+
iconIdx: 227
|
|
13343
13476
|
},
|
|
13344
13477
|
{
|
|
13345
13478
|
icon: {
|
|
@@ -13364,7 +13497,7 @@ var icons = [
|
|
|
13364
13497
|
},
|
|
13365
13498
|
setIdx: 0,
|
|
13366
13499
|
setId: 0,
|
|
13367
|
-
iconIdx:
|
|
13500
|
+
iconIdx: 228
|
|
13368
13501
|
},
|
|
13369
13502
|
{
|
|
13370
13503
|
icon: {
|
|
@@ -13389,7 +13522,7 @@ var icons = [
|
|
|
13389
13522
|
},
|
|
13390
13523
|
setIdx: 0,
|
|
13391
13524
|
setId: 0,
|
|
13392
|
-
iconIdx:
|
|
13525
|
+
iconIdx: 229
|
|
13393
13526
|
},
|
|
13394
13527
|
{
|
|
13395
13528
|
icon: {
|
|
@@ -13414,7 +13547,7 @@ var icons = [
|
|
|
13414
13547
|
},
|
|
13415
13548
|
setIdx: 0,
|
|
13416
13549
|
setId: 0,
|
|
13417
|
-
iconIdx:
|
|
13550
|
+
iconIdx: 230
|
|
13418
13551
|
},
|
|
13419
13552
|
{
|
|
13420
13553
|
icon: {
|
|
@@ -13439,7 +13572,7 @@ var icons = [
|
|
|
13439
13572
|
},
|
|
13440
13573
|
setIdx: 0,
|
|
13441
13574
|
setId: 0,
|
|
13442
|
-
iconIdx:
|
|
13575
|
+
iconIdx: 231
|
|
13443
13576
|
},
|
|
13444
13577
|
{
|
|
13445
13578
|
icon: {
|
|
@@ -13464,7 +13597,7 @@ var icons = [
|
|
|
13464
13597
|
},
|
|
13465
13598
|
setIdx: 0,
|
|
13466
13599
|
setId: 0,
|
|
13467
|
-
iconIdx:
|
|
13600
|
+
iconIdx: 232
|
|
13468
13601
|
},
|
|
13469
13602
|
{
|
|
13470
13603
|
icon: {
|
|
@@ -13489,7 +13622,7 @@ var icons = [
|
|
|
13489
13622
|
},
|
|
13490
13623
|
setIdx: 0,
|
|
13491
13624
|
setId: 0,
|
|
13492
|
-
iconIdx:
|
|
13625
|
+
iconIdx: 233
|
|
13493
13626
|
},
|
|
13494
13627
|
{
|
|
13495
13628
|
icon: {
|
|
@@ -13514,7 +13647,7 @@ var icons = [
|
|
|
13514
13647
|
},
|
|
13515
13648
|
setIdx: 0,
|
|
13516
13649
|
setId: 0,
|
|
13517
|
-
iconIdx:
|
|
13650
|
+
iconIdx: 234
|
|
13518
13651
|
},
|
|
13519
13652
|
{
|
|
13520
13653
|
icon: {
|
|
@@ -13539,7 +13672,7 @@ var icons = [
|
|
|
13539
13672
|
},
|
|
13540
13673
|
setIdx: 0,
|
|
13541
13674
|
setId: 0,
|
|
13542
|
-
iconIdx:
|
|
13675
|
+
iconIdx: 235
|
|
13543
13676
|
},
|
|
13544
13677
|
{
|
|
13545
13678
|
icon: {
|
|
@@ -13564,7 +13697,7 @@ var icons = [
|
|
|
13564
13697
|
},
|
|
13565
13698
|
setIdx: 0,
|
|
13566
13699
|
setId: 0,
|
|
13567
|
-
iconIdx:
|
|
13700
|
+
iconIdx: 236
|
|
13568
13701
|
},
|
|
13569
13702
|
{
|
|
13570
13703
|
icon: {
|
|
@@ -13591,7 +13724,7 @@ var icons = [
|
|
|
13591
13724
|
},
|
|
13592
13725
|
setIdx: 0,
|
|
13593
13726
|
setId: 0,
|
|
13594
|
-
iconIdx:
|
|
13727
|
+
iconIdx: 237
|
|
13595
13728
|
},
|
|
13596
13729
|
{
|
|
13597
13730
|
icon: {
|
|
@@ -13616,7 +13749,7 @@ var icons = [
|
|
|
13616
13749
|
},
|
|
13617
13750
|
setIdx: 0,
|
|
13618
13751
|
setId: 0,
|
|
13619
|
-
iconIdx:
|
|
13752
|
+
iconIdx: 238
|
|
13620
13753
|
},
|
|
13621
13754
|
{
|
|
13622
13755
|
icon: {
|
|
@@ -13641,7 +13774,7 @@ var icons = [
|
|
|
13641
13774
|
},
|
|
13642
13775
|
setIdx: 0,
|
|
13643
13776
|
setId: 0,
|
|
13644
|
-
iconIdx:
|
|
13777
|
+
iconIdx: 239
|
|
13645
13778
|
},
|
|
13646
13779
|
{
|
|
13647
13780
|
icon: {
|
|
@@ -13666,7 +13799,7 @@ var icons = [
|
|
|
13666
13799
|
},
|
|
13667
13800
|
setIdx: 0,
|
|
13668
13801
|
setId: 0,
|
|
13669
|
-
iconIdx:
|
|
13802
|
+
iconIdx: 240
|
|
13670
13803
|
},
|
|
13671
13804
|
{
|
|
13672
13805
|
icon: {
|
|
@@ -13691,7 +13824,7 @@ var icons = [
|
|
|
13691
13824
|
},
|
|
13692
13825
|
setIdx: 0,
|
|
13693
13826
|
setId: 0,
|
|
13694
|
-
iconIdx:
|
|
13827
|
+
iconIdx: 241
|
|
13695
13828
|
},
|
|
13696
13829
|
{
|
|
13697
13830
|
icon: {
|
|
@@ -13716,7 +13849,7 @@ var icons = [
|
|
|
13716
13849
|
},
|
|
13717
13850
|
setIdx: 0,
|
|
13718
13851
|
setId: 0,
|
|
13719
|
-
iconIdx:
|
|
13852
|
+
iconIdx: 242
|
|
13720
13853
|
},
|
|
13721
13854
|
{
|
|
13722
13855
|
icon: {
|
|
@@ -13745,7 +13878,7 @@ var icons = [
|
|
|
13745
13878
|
},
|
|
13746
13879
|
setIdx: 0,
|
|
13747
13880
|
setId: 0,
|
|
13748
|
-
iconIdx:
|
|
13881
|
+
iconIdx: 243
|
|
13749
13882
|
},
|
|
13750
13883
|
{
|
|
13751
13884
|
icon: {
|
|
@@ -13774,7 +13907,7 @@ var icons = [
|
|
|
13774
13907
|
},
|
|
13775
13908
|
setIdx: 0,
|
|
13776
13909
|
setId: 0,
|
|
13777
|
-
iconIdx:
|
|
13910
|
+
iconIdx: 244
|
|
13778
13911
|
},
|
|
13779
13912
|
{
|
|
13780
13913
|
icon: {
|
|
@@ -13799,7 +13932,7 @@ var icons = [
|
|
|
13799
13932
|
},
|
|
13800
13933
|
setIdx: 0,
|
|
13801
13934
|
setId: 0,
|
|
13802
|
-
iconIdx:
|
|
13935
|
+
iconIdx: 245
|
|
13803
13936
|
},
|
|
13804
13937
|
{
|
|
13805
13938
|
icon: {
|
|
@@ -13824,7 +13957,7 @@ var icons = [
|
|
|
13824
13957
|
},
|
|
13825
13958
|
setIdx: 0,
|
|
13826
13959
|
setId: 0,
|
|
13827
|
-
iconIdx:
|
|
13960
|
+
iconIdx: 246
|
|
13828
13961
|
},
|
|
13829
13962
|
{
|
|
13830
13963
|
icon: {
|
|
@@ -13851,7 +13984,7 @@ var icons = [
|
|
|
13851
13984
|
},
|
|
13852
13985
|
setIdx: 0,
|
|
13853
13986
|
setId: 0,
|
|
13854
|
-
iconIdx:
|
|
13987
|
+
iconIdx: 247
|
|
13855
13988
|
},
|
|
13856
13989
|
{
|
|
13857
13990
|
icon: {
|
|
@@ -13878,7 +14011,7 @@ var icons = [
|
|
|
13878
14011
|
},
|
|
13879
14012
|
setIdx: 0,
|
|
13880
14013
|
setId: 0,
|
|
13881
|
-
iconIdx:
|
|
14014
|
+
iconIdx: 248
|
|
13882
14015
|
},
|
|
13883
14016
|
{
|
|
13884
14017
|
icon: {
|
|
@@ -13903,7 +14036,7 @@ var icons = [
|
|
|
13903
14036
|
},
|
|
13904
14037
|
setIdx: 0,
|
|
13905
14038
|
setId: 0,
|
|
13906
|
-
iconIdx:
|
|
14039
|
+
iconIdx: 249
|
|
13907
14040
|
},
|
|
13908
14041
|
{
|
|
13909
14042
|
icon: {
|
|
@@ -13933,7 +14066,7 @@ var icons = [
|
|
|
13933
14066
|
},
|
|
13934
14067
|
setIdx: 0,
|
|
13935
14068
|
setId: 0,
|
|
13936
|
-
iconIdx:
|
|
14069
|
+
iconIdx: 250
|
|
13937
14070
|
},
|
|
13938
14071
|
{
|
|
13939
14072
|
icon: {
|
|
@@ -13958,7 +14091,7 @@ var icons = [
|
|
|
13958
14091
|
},
|
|
13959
14092
|
setIdx: 0,
|
|
13960
14093
|
setId: 0,
|
|
13961
|
-
iconIdx:
|
|
14094
|
+
iconIdx: 251
|
|
13962
14095
|
},
|
|
13963
14096
|
{
|
|
13964
14097
|
icon: {
|
|
@@ -13983,7 +14116,7 @@ var icons = [
|
|
|
13983
14116
|
},
|
|
13984
14117
|
setIdx: 0,
|
|
13985
14118
|
setId: 0,
|
|
13986
|
-
iconIdx:
|
|
14119
|
+
iconIdx: 252
|
|
13987
14120
|
},
|
|
13988
14121
|
{
|
|
13989
14122
|
icon: {
|
|
@@ -14011,7 +14144,7 @@ var icons = [
|
|
|
14011
14144
|
},
|
|
14012
14145
|
setIdx: 0,
|
|
14013
14146
|
setId: 0,
|
|
14014
|
-
iconIdx:
|
|
14147
|
+
iconIdx: 253
|
|
14015
14148
|
},
|
|
14016
14149
|
{
|
|
14017
14150
|
icon: {
|
|
@@ -14036,7 +14169,7 @@ var icons = [
|
|
|
14036
14169
|
},
|
|
14037
14170
|
setIdx: 0,
|
|
14038
14171
|
setId: 0,
|
|
14039
|
-
iconIdx:
|
|
14172
|
+
iconIdx: 254
|
|
14040
14173
|
},
|
|
14041
14174
|
{
|
|
14042
14175
|
icon: {
|
|
@@ -14067,7 +14200,7 @@ var icons = [
|
|
|
14067
14200
|
},
|
|
14068
14201
|
setIdx: 0,
|
|
14069
14202
|
setId: 0,
|
|
14070
|
-
iconIdx:
|
|
14203
|
+
iconIdx: 255
|
|
14071
14204
|
},
|
|
14072
14205
|
{
|
|
14073
14206
|
icon: {
|
|
@@ -14093,7 +14226,7 @@ var icons = [
|
|
|
14093
14226
|
},
|
|
14094
14227
|
setIdx: 0,
|
|
14095
14228
|
setId: 0,
|
|
14096
|
-
iconIdx:
|
|
14229
|
+
iconIdx: 256
|
|
14097
14230
|
},
|
|
14098
14231
|
{
|
|
14099
14232
|
icon: {
|
|
@@ -14118,7 +14251,7 @@ var icons = [
|
|
|
14118
14251
|
},
|
|
14119
14252
|
setIdx: 0,
|
|
14120
14253
|
setId: 0,
|
|
14121
|
-
iconIdx:
|
|
14254
|
+
iconIdx: 257
|
|
14122
14255
|
},
|
|
14123
14256
|
{
|
|
14124
14257
|
icon: {
|
|
@@ -14143,7 +14276,7 @@ var icons = [
|
|
|
14143
14276
|
},
|
|
14144
14277
|
setIdx: 0,
|
|
14145
14278
|
setId: 0,
|
|
14146
|
-
iconIdx:
|
|
14279
|
+
iconIdx: 258
|
|
14147
14280
|
},
|
|
14148
14281
|
{
|
|
14149
14282
|
icon: {
|
|
@@ -14171,7 +14304,7 @@ var icons = [
|
|
|
14171
14304
|
},
|
|
14172
14305
|
setIdx: 0,
|
|
14173
14306
|
setId: 0,
|
|
14174
|
-
iconIdx:
|
|
14307
|
+
iconIdx: 259
|
|
14175
14308
|
},
|
|
14176
14309
|
{
|
|
14177
14310
|
icon: {
|
|
@@ -14196,7 +14329,7 @@ var icons = [
|
|
|
14196
14329
|
},
|
|
14197
14330
|
setIdx: 0,
|
|
14198
14331
|
setId: 0,
|
|
14199
|
-
iconIdx:
|
|
14332
|
+
iconIdx: 260
|
|
14200
14333
|
},
|
|
14201
14334
|
{
|
|
14202
14335
|
icon: {
|
|
@@ -14221,7 +14354,7 @@ var icons = [
|
|
|
14221
14354
|
},
|
|
14222
14355
|
setIdx: 0,
|
|
14223
14356
|
setId: 0,
|
|
14224
|
-
iconIdx:
|
|
14357
|
+
iconIdx: 261
|
|
14225
14358
|
},
|
|
14226
14359
|
{
|
|
14227
14360
|
icon: {
|
|
@@ -14251,7 +14384,7 @@ var icons = [
|
|
|
14251
14384
|
},
|
|
14252
14385
|
setIdx: 0,
|
|
14253
14386
|
setId: 0,
|
|
14254
|
-
iconIdx:
|
|
14387
|
+
iconIdx: 262
|
|
14255
14388
|
},
|
|
14256
14389
|
{
|
|
14257
14390
|
icon: {
|
|
@@ -14284,7 +14417,7 @@ var icons = [
|
|
|
14284
14417
|
},
|
|
14285
14418
|
setIdx: 0,
|
|
14286
14419
|
setId: 0,
|
|
14287
|
-
iconIdx:
|
|
14420
|
+
iconIdx: 263
|
|
14288
14421
|
},
|
|
14289
14422
|
{
|
|
14290
14423
|
icon: {
|
|
@@ -14309,7 +14442,7 @@ var icons = [
|
|
|
14309
14442
|
},
|
|
14310
14443
|
setIdx: 0,
|
|
14311
14444
|
setId: 0,
|
|
14312
|
-
iconIdx:
|
|
14445
|
+
iconIdx: 264
|
|
14313
14446
|
},
|
|
14314
14447
|
{
|
|
14315
14448
|
icon: {
|
|
@@ -14341,7 +14474,7 @@ var icons = [
|
|
|
14341
14474
|
},
|
|
14342
14475
|
setIdx: 0,
|
|
14343
14476
|
setId: 0,
|
|
14344
|
-
iconIdx:
|
|
14477
|
+
iconIdx: 265
|
|
14345
14478
|
},
|
|
14346
14479
|
{
|
|
14347
14480
|
icon: {
|
|
@@ -14366,7 +14499,7 @@ var icons = [
|
|
|
14366
14499
|
},
|
|
14367
14500
|
setIdx: 0,
|
|
14368
14501
|
setId: 0,
|
|
14369
|
-
iconIdx:
|
|
14502
|
+
iconIdx: 266
|
|
14370
14503
|
},
|
|
14371
14504
|
{
|
|
14372
14505
|
icon: {
|
|
@@ -14391,7 +14524,7 @@ var icons = [
|
|
|
14391
14524
|
},
|
|
14392
14525
|
setIdx: 0,
|
|
14393
14526
|
setId: 0,
|
|
14394
|
-
iconIdx:
|
|
14527
|
+
iconIdx: 267
|
|
14395
14528
|
},
|
|
14396
14529
|
{
|
|
14397
14530
|
icon: {
|
|
@@ -14416,7 +14549,7 @@ var icons = [
|
|
|
14416
14549
|
},
|
|
14417
14550
|
setIdx: 0,
|
|
14418
14551
|
setId: 0,
|
|
14419
|
-
iconIdx:
|
|
14552
|
+
iconIdx: 268
|
|
14420
14553
|
},
|
|
14421
14554
|
{
|
|
14422
14555
|
icon: {
|
|
@@ -14441,7 +14574,7 @@ var icons = [
|
|
|
14441
14574
|
},
|
|
14442
14575
|
setIdx: 0,
|
|
14443
14576
|
setId: 0,
|
|
14444
|
-
iconIdx:
|
|
14577
|
+
iconIdx: 269
|
|
14445
14578
|
},
|
|
14446
14579
|
{
|
|
14447
14580
|
icon: {
|
|
@@ -14466,7 +14599,7 @@ var icons = [
|
|
|
14466
14599
|
},
|
|
14467
14600
|
setIdx: 0,
|
|
14468
14601
|
setId: 0,
|
|
14469
|
-
iconIdx:
|
|
14602
|
+
iconIdx: 270
|
|
14470
14603
|
},
|
|
14471
14604
|
{
|
|
14472
14605
|
icon: {
|
|
@@ -14491,7 +14624,7 @@ var icons = [
|
|
|
14491
14624
|
},
|
|
14492
14625
|
setIdx: 0,
|
|
14493
14626
|
setId: 0,
|
|
14494
|
-
iconIdx:
|
|
14627
|
+
iconIdx: 271
|
|
14495
14628
|
},
|
|
14496
14629
|
{
|
|
14497
14630
|
icon: {
|
|
@@ -14516,7 +14649,7 @@ var icons = [
|
|
|
14516
14649
|
},
|
|
14517
14650
|
setIdx: 0,
|
|
14518
14651
|
setId: 0,
|
|
14519
|
-
iconIdx:
|
|
14652
|
+
iconIdx: 272
|
|
14520
14653
|
},
|
|
14521
14654
|
{
|
|
14522
14655
|
icon: {
|
|
@@ -14541,7 +14674,7 @@ var icons = [
|
|
|
14541
14674
|
},
|
|
14542
14675
|
setIdx: 0,
|
|
14543
14676
|
setId: 0,
|
|
14544
|
-
iconIdx:
|
|
14677
|
+
iconIdx: 273
|
|
14545
14678
|
},
|
|
14546
14679
|
{
|
|
14547
14680
|
icon: {
|
|
@@ -14568,7 +14701,7 @@ var icons = [
|
|
|
14568
14701
|
},
|
|
14569
14702
|
setIdx: 0,
|
|
14570
14703
|
setId: 0,
|
|
14571
|
-
iconIdx:
|
|
14704
|
+
iconIdx: 274
|
|
14572
14705
|
},
|
|
14573
14706
|
{
|
|
14574
14707
|
icon: {
|
|
@@ -14593,7 +14726,7 @@ var icons = [
|
|
|
14593
14726
|
},
|
|
14594
14727
|
setIdx: 0,
|
|
14595
14728
|
setId: 0,
|
|
14596
|
-
iconIdx:
|
|
14729
|
+
iconIdx: 275
|
|
14597
14730
|
},
|
|
14598
14731
|
{
|
|
14599
14732
|
icon: {
|
|
@@ -14618,7 +14751,7 @@ var icons = [
|
|
|
14618
14751
|
},
|
|
14619
14752
|
setIdx: 0,
|
|
14620
14753
|
setId: 0,
|
|
14621
|
-
iconIdx:
|
|
14754
|
+
iconIdx: 276
|
|
14622
14755
|
},
|
|
14623
14756
|
{
|
|
14624
14757
|
icon: {
|
|
@@ -14647,7 +14780,7 @@ var icons = [
|
|
|
14647
14780
|
},
|
|
14648
14781
|
setIdx: 0,
|
|
14649
14782
|
setId: 0,
|
|
14650
|
-
iconIdx:
|
|
14783
|
+
iconIdx: 277
|
|
14651
14784
|
},
|
|
14652
14785
|
{
|
|
14653
14786
|
icon: {
|
|
@@ -14672,7 +14805,7 @@ var icons = [
|
|
|
14672
14805
|
},
|
|
14673
14806
|
setIdx: 0,
|
|
14674
14807
|
setId: 0,
|
|
14675
|
-
iconIdx:
|
|
14808
|
+
iconIdx: 278
|
|
14676
14809
|
},
|
|
14677
14810
|
{
|
|
14678
14811
|
icon: {
|
|
@@ -14697,7 +14830,7 @@ var icons = [
|
|
|
14697
14830
|
},
|
|
14698
14831
|
setIdx: 0,
|
|
14699
14832
|
setId: 0,
|
|
14700
|
-
iconIdx:
|
|
14833
|
+
iconIdx: 279
|
|
14701
14834
|
},
|
|
14702
14835
|
{
|
|
14703
14836
|
icon: {
|
|
@@ -14722,7 +14855,7 @@ var icons = [
|
|
|
14722
14855
|
},
|
|
14723
14856
|
setIdx: 0,
|
|
14724
14857
|
setId: 0,
|
|
14725
|
-
iconIdx:
|
|
14858
|
+
iconIdx: 280
|
|
14726
14859
|
},
|
|
14727
14860
|
{
|
|
14728
14861
|
icon: {
|
|
@@ -14747,7 +14880,7 @@ var icons = [
|
|
|
14747
14880
|
},
|
|
14748
14881
|
setIdx: 0,
|
|
14749
14882
|
setId: 0,
|
|
14750
|
-
iconIdx:
|
|
14883
|
+
iconIdx: 281
|
|
14751
14884
|
},
|
|
14752
14885
|
{
|
|
14753
14886
|
icon: {
|
|
@@ -14772,7 +14905,7 @@ var icons = [
|
|
|
14772
14905
|
},
|
|
14773
14906
|
setIdx: 0,
|
|
14774
14907
|
setId: 0,
|
|
14775
|
-
iconIdx:
|
|
14908
|
+
iconIdx: 282
|
|
14776
14909
|
},
|
|
14777
14910
|
{
|
|
14778
14911
|
icon: {
|
|
@@ -14797,7 +14930,7 @@ var icons = [
|
|
|
14797
14930
|
},
|
|
14798
14931
|
setIdx: 0,
|
|
14799
14932
|
setId: 0,
|
|
14800
|
-
iconIdx:
|
|
14933
|
+
iconIdx: 283
|
|
14801
14934
|
},
|
|
14802
14935
|
{
|
|
14803
14936
|
icon: {
|
|
@@ -14825,7 +14958,7 @@ var icons = [
|
|
|
14825
14958
|
},
|
|
14826
14959
|
setIdx: 0,
|
|
14827
14960
|
setId: 0,
|
|
14828
|
-
iconIdx:
|
|
14961
|
+
iconIdx: 284
|
|
14829
14962
|
},
|
|
14830
14963
|
{
|
|
14831
14964
|
icon: {
|
|
@@ -14850,7 +14983,7 @@ var icons = [
|
|
|
14850
14983
|
},
|
|
14851
14984
|
setIdx: 0,
|
|
14852
14985
|
setId: 0,
|
|
14853
|
-
iconIdx:
|
|
14986
|
+
iconIdx: 285
|
|
14854
14987
|
},
|
|
14855
14988
|
{
|
|
14856
14989
|
icon: {
|
|
@@ -14882,7 +15015,7 @@ var icons = [
|
|
|
14882
15015
|
},
|
|
14883
15016
|
setIdx: 0,
|
|
14884
15017
|
setId: 0,
|
|
14885
|
-
iconIdx:
|
|
15018
|
+
iconIdx: 286
|
|
14886
15019
|
},
|
|
14887
15020
|
{
|
|
14888
15021
|
icon: {
|
|
@@ -14907,7 +15040,7 @@ var icons = [
|
|
|
14907
15040
|
},
|
|
14908
15041
|
setIdx: 0,
|
|
14909
15042
|
setId: 0,
|
|
14910
|
-
iconIdx:
|
|
15043
|
+
iconIdx: 287
|
|
14911
15044
|
},
|
|
14912
15045
|
{
|
|
14913
15046
|
icon: {
|
|
@@ -14935,7 +15068,7 @@ var icons = [
|
|
|
14935
15068
|
},
|
|
14936
15069
|
setIdx: 0,
|
|
14937
15070
|
setId: 0,
|
|
14938
|
-
iconIdx:
|
|
15071
|
+
iconIdx: 288
|
|
14939
15072
|
},
|
|
14940
15073
|
{
|
|
14941
15074
|
icon: {
|
|
@@ -14960,7 +15093,7 @@ var icons = [
|
|
|
14960
15093
|
},
|
|
14961
15094
|
setIdx: 0,
|
|
14962
15095
|
setId: 0,
|
|
14963
|
-
iconIdx:
|
|
15096
|
+
iconIdx: 289
|
|
14964
15097
|
},
|
|
14965
15098
|
{
|
|
14966
15099
|
icon: {
|
|
@@ -14988,7 +15121,7 @@ var icons = [
|
|
|
14988
15121
|
},
|
|
14989
15122
|
setIdx: 0,
|
|
14990
15123
|
setId: 0,
|
|
14991
|
-
iconIdx:
|
|
15124
|
+
iconIdx: 290
|
|
14992
15125
|
},
|
|
14993
15126
|
{
|
|
14994
15127
|
icon: {
|
|
@@ -15013,7 +15146,7 @@ var icons = [
|
|
|
15013
15146
|
},
|
|
15014
15147
|
setIdx: 0,
|
|
15015
15148
|
setId: 0,
|
|
15016
|
-
iconIdx:
|
|
15149
|
+
iconIdx: 291
|
|
15017
15150
|
},
|
|
15018
15151
|
{
|
|
15019
15152
|
icon: {
|
|
@@ -15039,7 +15172,7 @@ var icons = [
|
|
|
15039
15172
|
},
|
|
15040
15173
|
setIdx: 0,
|
|
15041
15174
|
setId: 0,
|
|
15042
|
-
iconIdx:
|
|
15175
|
+
iconIdx: 292
|
|
15043
15176
|
},
|
|
15044
15177
|
{
|
|
15045
15178
|
icon: {
|
|
@@ -15067,7 +15200,7 @@ var icons = [
|
|
|
15067
15200
|
},
|
|
15068
15201
|
setIdx: 0,
|
|
15069
15202
|
setId: 0,
|
|
15070
|
-
iconIdx:
|
|
15203
|
+
iconIdx: 293
|
|
15071
15204
|
},
|
|
15072
15205
|
{
|
|
15073
15206
|
icon: {
|
|
@@ -15092,7 +15225,7 @@ var icons = [
|
|
|
15092
15225
|
},
|
|
15093
15226
|
setIdx: 0,
|
|
15094
15227
|
setId: 0,
|
|
15095
|
-
iconIdx:
|
|
15228
|
+
iconIdx: 294
|
|
15096
15229
|
},
|
|
15097
15230
|
{
|
|
15098
15231
|
icon: {
|
|
@@ -15117,7 +15250,7 @@ var icons = [
|
|
|
15117
15250
|
},
|
|
15118
15251
|
setIdx: 0,
|
|
15119
15252
|
setId: 0,
|
|
15120
|
-
iconIdx:
|
|
15253
|
+
iconIdx: 295
|
|
15121
15254
|
},
|
|
15122
15255
|
{
|
|
15123
15256
|
icon: {
|
|
@@ -15144,7 +15277,7 @@ var icons = [
|
|
|
15144
15277
|
},
|
|
15145
15278
|
setIdx: 0,
|
|
15146
15279
|
setId: 0,
|
|
15147
|
-
iconIdx:
|
|
15280
|
+
iconIdx: 296
|
|
15148
15281
|
},
|
|
15149
15282
|
{
|
|
15150
15283
|
icon: {
|
|
@@ -15169,7 +15302,7 @@ var icons = [
|
|
|
15169
15302
|
},
|
|
15170
15303
|
setIdx: 0,
|
|
15171
15304
|
setId: 0,
|
|
15172
|
-
iconIdx:
|
|
15305
|
+
iconIdx: 297
|
|
15173
15306
|
},
|
|
15174
15307
|
{
|
|
15175
15308
|
icon: {
|
|
@@ -15201,7 +15334,7 @@ var icons = [
|
|
|
15201
15334
|
},
|
|
15202
15335
|
setIdx: 0,
|
|
15203
15336
|
setId: 0,
|
|
15204
|
-
iconIdx:
|
|
15337
|
+
iconIdx: 298
|
|
15205
15338
|
},
|
|
15206
15339
|
{
|
|
15207
15340
|
icon: {
|
|
@@ -15227,7 +15360,7 @@ var icons = [
|
|
|
15227
15360
|
},
|
|
15228
15361
|
setIdx: 0,
|
|
15229
15362
|
setId: 0,
|
|
15230
|
-
iconIdx:
|
|
15363
|
+
iconIdx: 299
|
|
15231
15364
|
},
|
|
15232
15365
|
{
|
|
15233
15366
|
icon: {
|
|
@@ -15258,7 +15391,7 @@ var icons = [
|
|
|
15258
15391
|
},
|
|
15259
15392
|
setIdx: 0,
|
|
15260
15393
|
setId: 0,
|
|
15261
|
-
iconIdx:
|
|
15394
|
+
iconIdx: 300
|
|
15262
15395
|
},
|
|
15263
15396
|
{
|
|
15264
15397
|
icon: {
|
|
@@ -15283,7 +15416,7 @@ var icons = [
|
|
|
15283
15416
|
},
|
|
15284
15417
|
setIdx: 0,
|
|
15285
15418
|
setId: 0,
|
|
15286
|
-
iconIdx:
|
|
15419
|
+
iconIdx: 301
|
|
15287
15420
|
},
|
|
15288
15421
|
{
|
|
15289
15422
|
icon: {
|
|
@@ -15308,7 +15441,7 @@ var icons = [
|
|
|
15308
15441
|
},
|
|
15309
15442
|
setIdx: 0,
|
|
15310
15443
|
setId: 0,
|
|
15311
|
-
iconIdx:
|
|
15444
|
+
iconIdx: 302
|
|
15312
15445
|
},
|
|
15313
15446
|
{
|
|
15314
15447
|
icon: {
|
|
@@ -15339,7 +15472,7 @@ var icons = [
|
|
|
15339
15472
|
},
|
|
15340
15473
|
setIdx: 0,
|
|
15341
15474
|
setId: 0,
|
|
15342
|
-
iconIdx:
|
|
15475
|
+
iconIdx: 303
|
|
15343
15476
|
}
|
|
15344
15477
|
];
|
|
15345
15478
|
var height = 1024;
|
|
@@ -15399,7 +15532,8 @@ var COLOR_INTENTS = {
|
|
|
15399
15532
|
danger: 'danger',
|
|
15400
15533
|
success: 'success',
|
|
15401
15534
|
warning: 'warning',
|
|
15402
|
-
'disabled-text': 'disabledText'
|
|
15535
|
+
'disabled-text': 'disabledText',
|
|
15536
|
+
'text-inverted': 'invertedText'
|
|
15403
15537
|
};
|
|
15404
15538
|
var StyledHeroIcon = index$5(HeroIcon)(function (_ref) {
|
|
15405
15539
|
var themeIntent = _ref.themeIntent,
|
|
@@ -15472,7 +15606,7 @@ var Typography = {
|
|
|
15472
15606
|
Text: Text
|
|
15473
15607
|
};
|
|
15474
15608
|
|
|
15475
|
-
var Container$
|
|
15609
|
+
var Container$1 = index$5(View)(function (_ref) {
|
|
15476
15610
|
var theme = _ref.theme,
|
|
15477
15611
|
_ref$themeVariant = _ref.themeVariant,
|
|
15478
15612
|
themeVariant = _ref$themeVariant === void 0 ? 'default' : _ref$themeVariant,
|
|
@@ -15544,7 +15678,7 @@ var Alert = function Alert(_ref) {
|
|
|
15544
15678
|
variant = _ref$variant === void 0 ? 'default' : _ref$variant,
|
|
15545
15679
|
style = _ref.style,
|
|
15546
15680
|
testID = _ref.testID;
|
|
15547
|
-
return /*#__PURE__*/React.createElement(Container$
|
|
15681
|
+
return /*#__PURE__*/React.createElement(Container$1, {
|
|
15548
15682
|
themeVariant: variant,
|
|
15549
15683
|
themeIntent: intent,
|
|
15550
15684
|
style: style,
|
|
@@ -15790,7 +15924,7 @@ var Badge$1 = Object.assign(Badge, {
|
|
|
15790
15924
|
Status: Status
|
|
15791
15925
|
});
|
|
15792
15926
|
|
|
15793
|
-
var IconList = ['activate', 'add-person', 'adjustment', 'alignment', 'bank', 'bell', 'billing', 'bookmark', 'box-check', 'box', 'buildings', 'cake', 'calendar-clock', 'calendar', 'candy-box-menu', 'carat-down-small', 'carat-down', 'carat-left', 'carat-right', 'carat-up', 'circle-add', 'circle-cancel', 'circle-check', 'circle-down', 'circle-info', 'circle-left', 'circle-ok', 'circle-pencil', 'circle-question', 'circle-remove', 'circle-right', 'circle-up', 'circle-warning', 'clock', 'cloud-download', 'cloud-upload', 'cog', 'coin', 'contacts', 'credit-card', 'diamond', 'direction-arrows', 'directory', 'document', 'dollar-coin-shine', 'double-buildings', 'edit-template', 'envelope', 'expense', 'eye-circle', 'eye-invisible', 'eye', 'face-meh', 'face-sad', 'face-smiley', 'feed', 'feedbacks', 'file-certified', 'file-clone', 'file-copy', 'file-csv', 'file-dispose', 'file-doc', 'file-excel', 'file-export', 'file-lock', 'file-pdf', 'file-powerpoint', 'file-search', 'file-secured', 'file-sheets', 'file-slide', 'file-verified', 'file-word', 'file', 'folder-user', 'folder', 'funnel-filter', 'global-dollar', 'globe', 'graduation-cap', 'graph', 'happy-sun', 'health-bag', 'heart', 'home', 'image', 'import', 'incident-siren', 'instapay', 'list', 'loading', 'loading-2', 'location', 'lock', 'media-content', 'menu', 'moneybag', 'moon', 'multiple-stars', 'multiple-users', 'node', 'open-folder', 'paperclip', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane', 'play-circle', 'print', 'raising-hands', 'reply', 'reschedule', 'rostering', 'save', 'schedule', 'search-person', 'send', 'speaker', 'star-medal', 'star', 'steps-circle', 'stopwatch', 'suitcase', 'survey', 'swag', 'switch', 'tag', 'target', 'teams', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'activate-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'arrow-down', 'arrow-left', 'arrow-right', 'arrow-up', 'at-sign', 'bell-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bookmark-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calendar-dates-outlined', 'calendar-star-outlined', 'camera-outlined', 'cancel', 'checkmark', 'circle-add-outlined', 'circle-cancel-outlined', 'circle-down-outlined', 'circle-info-outlined', 'circle-left-outlined', 'circle-ok-outlined', 'circle-question-outlined', 'circle-remove-outlined', 'circle-right-outlined', 'circle-up-outlined', 'circle-warning-outlined', 'clock-2-outlined', 'clock-outlined', 'cog-outlined', 'coin-outlined', 'comment-outlined', 'contacts-outlined', 'credit-card-outlined', 'direction-arrows-outlined', 'directory-outlined', 'document-outlined', 'dollar-coin-shine-outlined', 'dollar-sign', 'double-buildings-outlined', 'double-left-arrows', 'double-right-arrows', 'download-outlined', 'edit-template-outlined', 'email-outlined', 'enter-arrow', 'envelope-outlined', 'expense-outlined', 'external-link', 'eye-invisible-outlined', 'eye-outlined', 'face-id', 'face-meh-outlined', 'face-open-smiley-outlined', 'face-sad-outlined', 'face-smiley-outlined', 'feed-outlined', 'file-certified-outlined', 'file-clone-outlined', 'file-copy-outlined', 'file-dispose-outlined', 'file-download-outlined', 'file-export-outlined', 'file-lock-outlined', 'file-outlined', 'file-search-outlined', 'file-secured-outlined', 'file-verified-outlined', 'folder-outlined', 'folder-user-outlined', 'funnel-filter-outline', 'graph-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'link-1', 'link-2', 'list-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'multiple-folders-outlined', 'multiple-users-outlined', 'node-outlined', 'number-points', 'number', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'print-outlined', 'qr-code-outlined', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'return-arrow', 'rostering-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'send-outlined', 'share-1', 'share-2', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'speaker-outlined', 'star-outlined', 'stopwatch-outlined', 'strikethrough', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'target-outlined', 'timesheet-outlined', 'transfer', 'trash-bin-outlined', 'unavailable', 'underline', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'wallet-outlined', 'warning'];
|
|
15927
|
+
var IconList = ['activate', 'add-person', 'adjustment', 'alignment', 'bank', 'bell', 'billing', 'bookmark', 'box-check', 'box', 'buildings', 'cake', 'calendar-clock', 'calendar', 'candy-box-menu', 'carat-down-small', 'carat-down', 'carat-left', 'carat-right', 'carat-up', 'circle-add', 'circle-cancel', 'circle-check', 'circle-down', 'circle-info', 'circle-left', 'circle-ok', 'circle-pencil', 'circle-question', 'circle-remove', 'circle-right', 'circle-up', 'circle-warning', 'clock', 'cloud-download', 'cloud-upload', 'cog', 'coin', 'contacts', 'credit-card', 'diamond', 'direction-arrows', 'directory', 'document', 'dollar-coin-shine', 'double-buildings', 'edit-template', 'envelope', 'expense', 'eye-circle', 'eye-invisible', 'eye', 'face-meh', 'face-sad', 'face-smiley', 'feed', 'feedbacks', 'file-certified', 'file-clone', 'file-copy', 'file-csv', 'file-dispose', 'file-doc', 'file-excel', 'file-export', 'file-lock', 'file-pdf', 'file-powerpoint', 'file-search', 'file-secured', 'file-sheets', 'file-slide', 'file-verified', 'file-word', 'file', 'folder-user', 'folder', 'funnel-filter', 'global-dollar', 'globe', 'graduation-cap', 'graph', 'happy-sun', 'health-bag', 'heart', 'home', 'image', 'import', 'incident-siren', 'instapay', 'list', 'loading', 'loading-2', 'location', 'lock', 'looks-one', 'looks-two', 'media-content', 'menu', 'moneybag', 'moon', 'multiple-stars', 'multiple-users', 'node', 'open-folder', 'paperclip', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane', 'play-circle', 'print', 'raising-hands', 'reply', 'reschedule', 'rostering', 'save', 'schedule', 'search-person', 'send', 'speaker', 'star-medal', 'star', 'steps-circle', 'stopwatch', 'suitcase', 'survey', 'swag', 'switch', 'tag', 'target', 'teams', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'activate-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'arrow-down', 'arrow-left', 'arrow-right', 'arrow-up', 'at-sign', 'bell-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bookmark-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calendar-dates-outlined', 'calendar-star-outlined', 'camera-outlined', 'cancel', 'checkmark', 'circle-add-outlined', 'circle-cancel-outlined', 'circle-down-outlined', 'circle-info-outlined', 'circle-left-outlined', 'circle-ok-outlined', 'circle-question-outlined', 'circle-remove-outlined', 'circle-right-outlined', 'circle-up-outlined', 'circle-warning-outlined', 'clock-2-outlined', 'clock-outlined', 'cog-outlined', 'coin-outlined', 'comment-outlined', 'contacts-outlined', 'credit-card-outlined', 'direction-arrows-outlined', 'directory-outlined', 'document-outlined', 'dollar-coin-shine-outlined', 'dollar-sign', 'double-buildings-outlined', 'double-left-arrows', 'double-right-arrows', 'download-outlined', 'edit-template-outlined', 'email-outlined', 'enter-arrow', 'envelope-outlined', 'expense-outlined', 'external-link', 'eye-invisible-outlined', 'eye-outlined', 'face-id', 'face-meh-outlined', 'face-open-smiley-outlined', 'face-sad-outlined', 'face-smiley-outlined', 'feed-outlined', 'file-certified-outlined', 'file-clone-outlined', 'file-copy-outlined', 'file-dispose-outlined', 'file-download-outlined', 'file-export-outlined', 'file-lock-outlined', 'file-outlined', 'file-search-outlined', 'file-secured-outlined', 'file-verified-outlined', 'folder-outlined', 'folder-user-outlined', 'funnel-filter-outline', 'graph-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'link-1', 'link-2', 'list-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'multiple-folders-outlined', 'multiple-users-outlined', 'node-outlined', 'number-points', 'number', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'print-outlined', 'qr-code-outlined', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'return-arrow', 'rostering-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'send-outlined', 'share-1', 'share-2', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'speaker-outlined', 'star-outlined', 'stopwatch-outlined', 'strikethrough', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'target-outlined', 'timesheet-outlined', 'transfer', 'trash-bin-outlined', 'unavailable', 'underline', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'wallet-outlined', 'warning'];
|
|
15794
15928
|
|
|
15795
15929
|
var isHeroIcon = function isHeroIcon(x) {
|
|
15796
15930
|
return IconList.includes(x);
|
|
@@ -16069,12 +16203,15 @@ var StyledLoadingDot = index$5(View)(function (_ref2) {
|
|
|
16069
16203
|
};
|
|
16070
16204
|
|
|
16071
16205
|
case 'outlined-primary':
|
|
16206
|
+
case 'text-primary':
|
|
16072
16207
|
return genLoadingIndicatorStyles(theme, 'primary');
|
|
16073
16208
|
|
|
16074
16209
|
case 'outlined-secondary':
|
|
16210
|
+
case 'text-secondary':
|
|
16075
16211
|
return genLoadingIndicatorStyles(theme, 'secondary');
|
|
16076
16212
|
|
|
16077
16213
|
case 'outlined-danger':
|
|
16214
|
+
case 'text-danger':
|
|
16078
16215
|
return genLoadingIndicatorStyles(theme, 'danger');
|
|
16079
16216
|
}
|
|
16080
16217
|
};
|
|
@@ -16275,6 +16412,31 @@ var genOutlineTextStyles = function genOutlineTextStyles(theme, intent, pressed,
|
|
|
16275
16412
|
}, textColorStyling());
|
|
16276
16413
|
};
|
|
16277
16414
|
|
|
16415
|
+
var genTextVariantTextStyles = function genTextVariantTextStyles(theme, intent, pressed, disabled) {
|
|
16416
|
+
var textColorStyling = function textColorStyling() {
|
|
16417
|
+
if (disabled) {
|
|
16418
|
+
return {
|
|
16419
|
+
color: theme.__hd__.button.colors.disabledText
|
|
16420
|
+
};
|
|
16421
|
+
}
|
|
16422
|
+
|
|
16423
|
+
if (pressed) {
|
|
16424
|
+
return {
|
|
16425
|
+
color: theme.__hd__.button.colors[PRESSED_COLORS[intent]]
|
|
16426
|
+
};
|
|
16427
|
+
}
|
|
16428
|
+
|
|
16429
|
+
return {
|
|
16430
|
+
color: theme.__hd__.button.colors[intent]
|
|
16431
|
+
};
|
|
16432
|
+
};
|
|
16433
|
+
|
|
16434
|
+
return _objectSpread2({
|
|
16435
|
+
fontSize: theme.__hd__.button.fontSize.textVariant,
|
|
16436
|
+
lineHeight: theme.__hd__.button.lineHeight["default"]
|
|
16437
|
+
}, textColorStyling());
|
|
16438
|
+
};
|
|
16439
|
+
|
|
16278
16440
|
var StyledButtonContainer = index$5(View)(function (_ref) {
|
|
16279
16441
|
var _ref$disabled = _ref.disabled,
|
|
16280
16442
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
@@ -16304,6 +16466,19 @@ var StyledButtonContainer = index$5(View)(function (_ref) {
|
|
|
16304
16466
|
|
|
16305
16467
|
case 'outlined-danger':
|
|
16306
16468
|
return genOutlineContainerStyles(theme, 'danger', pressed, disabled);
|
|
16469
|
+
|
|
16470
|
+
case 'text-primary':
|
|
16471
|
+
case 'text-secondary':
|
|
16472
|
+
case 'text-danger':
|
|
16473
|
+
return {
|
|
16474
|
+
width: '100%',
|
|
16475
|
+
flexDirection: 'row',
|
|
16476
|
+
justifyContent: 'center',
|
|
16477
|
+
alignItems: 'center',
|
|
16478
|
+
padding: theme.__hd__.button.space.buttonPadding,
|
|
16479
|
+
borderWidth: 0,
|
|
16480
|
+
backgroundColor: 'transparent'
|
|
16481
|
+
};
|
|
16307
16482
|
}
|
|
16308
16483
|
});
|
|
16309
16484
|
var StyledButtonText = index$5(Typography.Text)(function (_ref2) {
|
|
@@ -16338,6 +16513,15 @@ var StyledButtonText = index$5(Typography.Text)(function (_ref2) {
|
|
|
16338
16513
|
|
|
16339
16514
|
case 'outlined-danger':
|
|
16340
16515
|
return genOutlineTextStyles(theme, 'danger', pressed, disabled);
|
|
16516
|
+
|
|
16517
|
+
case 'text-primary':
|
|
16518
|
+
return genTextVariantTextStyles(theme, 'primary', pressed, disabled);
|
|
16519
|
+
|
|
16520
|
+
case 'text-secondary':
|
|
16521
|
+
return genTextVariantTextStyles(theme, 'secondary', pressed, disabled);
|
|
16522
|
+
|
|
16523
|
+
case 'text-danger':
|
|
16524
|
+
return genTextVariantTextStyles(theme, 'danger', pressed, disabled);
|
|
16341
16525
|
}
|
|
16342
16526
|
};
|
|
16343
16527
|
|
|
@@ -16391,6 +16575,15 @@ var StyledButtonIcon = index$5(Icon)(function (_ref4) {
|
|
|
16391
16575
|
|
|
16392
16576
|
case 'outlined-danger':
|
|
16393
16577
|
return genOutlineTextStyles(theme, 'danger', pressed, disabled);
|
|
16578
|
+
|
|
16579
|
+
case 'text-primary':
|
|
16580
|
+
return genTextVariantTextStyles(theme, 'primary', pressed, disabled);
|
|
16581
|
+
|
|
16582
|
+
case 'text-secondary':
|
|
16583
|
+
return genTextVariantTextStyles(theme, 'secondary', pressed, disabled);
|
|
16584
|
+
|
|
16585
|
+
case 'text-danger':
|
|
16586
|
+
return genTextVariantTextStyles(theme, 'danger', pressed, disabled);
|
|
16394
16587
|
}
|
|
16395
16588
|
};
|
|
16396
16589
|
|
|
@@ -16409,6 +16602,11 @@ var OUTLINED_VARIANTS = {
|
|
|
16409
16602
|
secondary: 'outlined-secondary',
|
|
16410
16603
|
danger: 'outlined-danger'
|
|
16411
16604
|
};
|
|
16605
|
+
var TEXT_VARIANTS = {
|
|
16606
|
+
primary: 'text-primary',
|
|
16607
|
+
secondary: 'text-secondary',
|
|
16608
|
+
danger: 'text-danger'
|
|
16609
|
+
};
|
|
16412
16610
|
var getThemeVariant = function getThemeVariant(variant, intent) {
|
|
16413
16611
|
switch (variant) {
|
|
16414
16612
|
case 'basic-transparent':
|
|
@@ -16419,6 +16617,9 @@ var getThemeVariant = function getThemeVariant(variant, intent) {
|
|
|
16419
16617
|
|
|
16420
16618
|
case 'outlined':
|
|
16421
16619
|
return OUTLINED_VARIANTS[intent];
|
|
16620
|
+
|
|
16621
|
+
case 'text':
|
|
16622
|
+
return TEXT_VARIANTS[intent];
|
|
16422
16623
|
}
|
|
16423
16624
|
};
|
|
16424
16625
|
|
|
@@ -16503,8 +16704,65 @@ var IconButton = function IconButton(_ref) {
|
|
|
16503
16704
|
}));
|
|
16504
16705
|
};
|
|
16505
16706
|
|
|
16707
|
+
var ButtonContainer = index$5(TouchableOpacity)(function (_ref) {
|
|
16708
|
+
var theme = _ref.theme;
|
|
16709
|
+
return {
|
|
16710
|
+
width: '100%',
|
|
16711
|
+
flexDirection: 'row',
|
|
16712
|
+
justifyContent: 'center',
|
|
16713
|
+
alignItems: 'center',
|
|
16714
|
+
padding: theme.__hd__.button.space.utilityPadding,
|
|
16715
|
+
borderRadius: theme.__hd__.button.radii.utilityRadii,
|
|
16716
|
+
backgroundColor: theme.__hd__.button.colors.utilityBackground
|
|
16717
|
+
};
|
|
16718
|
+
});
|
|
16719
|
+
var IconWrapper = index$5(View)(function (_ref2) {
|
|
16720
|
+
var theme = _ref2.theme;
|
|
16721
|
+
return {
|
|
16722
|
+
paddingRight: theme.__hd__.button.space.utilityIconPadding
|
|
16723
|
+
};
|
|
16724
|
+
});
|
|
16725
|
+
var ButtonText = index$5(Typography.Text)(function (_ref3) {
|
|
16726
|
+
var theme = _ref3.theme;
|
|
16727
|
+
return {
|
|
16728
|
+
flexShrink: 1,
|
|
16729
|
+
textAlign: 'center',
|
|
16730
|
+
fontSize: theme.__hd__.button.fontSize.utility,
|
|
16731
|
+
fontFamily: theme.__hd__.button.fonts["default"]
|
|
16732
|
+
};
|
|
16733
|
+
});
|
|
16734
|
+
|
|
16735
|
+
var TEXT_INTENTS = {
|
|
16736
|
+
primary: 'primary',
|
|
16737
|
+
text: 'body'
|
|
16738
|
+
};
|
|
16739
|
+
|
|
16740
|
+
var UtilityButton = function UtilityButton(_ref) {
|
|
16741
|
+
var icon = _ref.icon,
|
|
16742
|
+
onPress = _ref.onPress,
|
|
16743
|
+
text = _ref.text,
|
|
16744
|
+
testID = _ref.testID,
|
|
16745
|
+
_ref$intent = _ref.intent,
|
|
16746
|
+
intent = _ref$intent === void 0 ? 'text' : _ref$intent,
|
|
16747
|
+
style = _ref.style,
|
|
16748
|
+
hitSlop = _ref.hitSlop;
|
|
16749
|
+
return /*#__PURE__*/React.createElement(ButtonContainer, {
|
|
16750
|
+
style: style,
|
|
16751
|
+
onPress: onPress,
|
|
16752
|
+
testID: testID,
|
|
16753
|
+
hitSlop: hitSlop
|
|
16754
|
+
}, /*#__PURE__*/React.createElement(IconWrapper, null, /*#__PURE__*/React.createElement(Icon, {
|
|
16755
|
+
icon: icon,
|
|
16756
|
+
intent: intent,
|
|
16757
|
+
testID: "".concat(testID, "-icon")
|
|
16758
|
+
})), /*#__PURE__*/React.createElement(ButtonText, {
|
|
16759
|
+
intent: TEXT_INTENTS[intent]
|
|
16760
|
+
}, text));
|
|
16761
|
+
};
|
|
16762
|
+
|
|
16506
16763
|
var CompoundButton = Button;
|
|
16507
16764
|
CompoundButton.Icon = IconButton;
|
|
16765
|
+
CompoundButton.Utility = UtilityButton;
|
|
16508
16766
|
|
|
16509
16767
|
var Header = function Header(_ref) {
|
|
16510
16768
|
var content = _ref.content,
|
|
@@ -16640,7 +16898,6 @@ var StyledDataCard = index$5(View)(function (_ref) {
|
|
|
16640
16898
|
return {
|
|
16641
16899
|
borderRadius: theme.__hd__.card.radii["default"],
|
|
16642
16900
|
overflow: 'hidden',
|
|
16643
|
-
flex: 1,
|
|
16644
16901
|
flexDirection: 'row'
|
|
16645
16902
|
};
|
|
16646
16903
|
});
|
|
@@ -16649,7 +16906,7 @@ var Indicator = index$5(View)(function (_ref2) {
|
|
|
16649
16906
|
themeIntent = _ref2.themeIntent;
|
|
16650
16907
|
return {
|
|
16651
16908
|
backgroundColor: theme.__hd__.card.colors.indicator[themeIntent],
|
|
16652
|
-
width:
|
|
16909
|
+
width: theme.__hd__.card.sizes.indicatorWidth,
|
|
16653
16910
|
height: '100%'
|
|
16654
16911
|
};
|
|
16655
16912
|
});
|
|
@@ -16676,7 +16933,6 @@ var StyledCard = index$5(View)(function (_ref) {
|
|
|
16676
16933
|
overflow: 'hidden'
|
|
16677
16934
|
};
|
|
16678
16935
|
var dataStyles = {
|
|
16679
|
-
flex: 1,
|
|
16680
16936
|
flexDirection: 'row'
|
|
16681
16937
|
};
|
|
16682
16938
|
|
|
@@ -16692,7 +16948,7 @@ var LeftDataCard = index$5(View)(function (_ref2) {
|
|
|
16692
16948
|
var theme = _ref2.theme;
|
|
16693
16949
|
return {
|
|
16694
16950
|
backgroundColor: theme.__hd__.card.colors.dataCardIndicator,
|
|
16695
|
-
width:
|
|
16951
|
+
width: theme.__hd__.card.sizes.indicatorWidth,
|
|
16696
16952
|
height: '100%'
|
|
16697
16953
|
};
|
|
16698
16954
|
});
|
|
@@ -16871,7 +17127,7 @@ function ContentNavigator(_ref) {
|
|
|
16871
17127
|
}
|
|
16872
17128
|
|
|
16873
17129
|
var AnimatedPressable = Animated.createAnimatedComponent(Pressable);
|
|
16874
|
-
var StyledContainer$
|
|
17130
|
+
var StyledContainer$2 = index$5(View)(function (_ref) {
|
|
16875
17131
|
var theme = _ref.theme,
|
|
16876
17132
|
enableShadow = _ref.enableShadow;
|
|
16877
17133
|
return _objectSpread2(_objectSpread2({}, StyleSheet$1.absoluteFillObject), {}, {
|
|
@@ -16936,7 +17192,7 @@ var Drawer = function Drawer(_ref) {
|
|
|
16936
17192
|
return animation.stop();
|
|
16937
17193
|
};
|
|
16938
17194
|
}, [visible]);
|
|
16939
|
-
return /*#__PURE__*/React.createElement(StyledContainer$
|
|
17195
|
+
return /*#__PURE__*/React.createElement(StyledContainer$2, {
|
|
16940
17196
|
testID: testID,
|
|
16941
17197
|
enableShadow: enableShadow,
|
|
16942
17198
|
pointerEvents: "box-none"
|
|
@@ -17122,7 +17378,7 @@ var ActionItem = function ActionItem(_ref) {
|
|
|
17122
17378
|
}), /*#__PURE__*/React.createElement(StyledActionItemText, null, title));
|
|
17123
17379
|
};
|
|
17124
17380
|
|
|
17125
|
-
var StyledContainer = index$5(View)({
|
|
17381
|
+
var StyledContainer$1 = index$5(View)({
|
|
17126
17382
|
position: 'absolute',
|
|
17127
17383
|
left: 0,
|
|
17128
17384
|
right: 0,
|
|
@@ -17203,7 +17459,7 @@ var ActionGroup = function ActionGroup(_ref2) {
|
|
|
17203
17459
|
inputRange: [0, 1],
|
|
17204
17460
|
outputRange: [0, 0.9]
|
|
17205
17461
|
});
|
|
17206
|
-
return /*#__PURE__*/React.createElement(StyledContainer, {
|
|
17462
|
+
return /*#__PURE__*/React.createElement(StyledContainer$1, {
|
|
17207
17463
|
testID: testID,
|
|
17208
17464
|
pointerEvents: "box-none",
|
|
17209
17465
|
style: style
|
|
@@ -18054,22 +18310,18 @@ var OptionList$1 = function OptionList(_ref) {
|
|
|
18054
18310
|
}));
|
|
18055
18311
|
};
|
|
18056
18312
|
|
|
18057
|
-
var
|
|
18313
|
+
var StyledContainer = index$5(View)(function (_ref) {
|
|
18058
18314
|
var theme = _ref.theme;
|
|
18059
18315
|
return {
|
|
18060
|
-
position: 'relative',
|
|
18061
18316
|
width: '100%',
|
|
18062
|
-
|
|
18063
|
-
borderRadius: theme.__hd__.textInput.radii.container,
|
|
18064
|
-
padding: theme.__hd__.textInput.space.containerPadding,
|
|
18065
|
-
flexDirection: 'row',
|
|
18066
|
-
alignItems: 'center'
|
|
18317
|
+
marginVertical: theme.__hd__.textInput.space.containerMarginVertical
|
|
18067
18318
|
};
|
|
18068
18319
|
});
|
|
18069
|
-
var
|
|
18320
|
+
var StyledLabelContainer = index$5(View)(function (_ref2) {
|
|
18070
18321
|
var theme = _ref2.theme;
|
|
18071
18322
|
return {
|
|
18072
18323
|
position: 'absolute',
|
|
18324
|
+
flexDirection: 'row',
|
|
18073
18325
|
left: theme.__hd__.textInput.space.labelLeft,
|
|
18074
18326
|
top: theme.__hd__.textInput.space.labelTop,
|
|
18075
18327
|
backgroundColor: theme.__hd__.textInput.colors.labelBackground,
|
|
@@ -18077,48 +18329,279 @@ var Label = index$5(Typography.Text)(function (_ref2) {
|
|
|
18077
18329
|
paddingHorizontal: theme.__hd__.textInput.space.labelHorizontalPadding
|
|
18078
18330
|
};
|
|
18079
18331
|
});
|
|
18080
|
-
var
|
|
18081
|
-
var theme = _ref3.theme
|
|
18332
|
+
var StyledLabel = index$5(Typography.Text)(function (_ref3) {
|
|
18333
|
+
var theme = _ref3.theme,
|
|
18334
|
+
themeVariant = _ref3.themeVariant;
|
|
18335
|
+
return {
|
|
18336
|
+
color: theme.__hd__.textInput.colors.labels[themeVariant]
|
|
18337
|
+
};
|
|
18338
|
+
});
|
|
18339
|
+
var StyledAsteriskLabel = index$5(Typography.Text)(function (_ref4) {
|
|
18340
|
+
var theme = _ref4.theme,
|
|
18341
|
+
themeVariant = _ref4.themeVariant;
|
|
18342
|
+
return {
|
|
18343
|
+
color: theme.__hd__.textInput.colors.asterisks[themeVariant]
|
|
18344
|
+
};
|
|
18345
|
+
});
|
|
18346
|
+
var StyledLabelContainerInsideTextInput = index$5(View)(function () {
|
|
18347
|
+
return _objectSpread2({
|
|
18348
|
+
flexDirection: 'row',
|
|
18349
|
+
zIndex: 9999,
|
|
18350
|
+
alignItems: 'center'
|
|
18351
|
+
}, StyleSheet$1.absoluteFillObject);
|
|
18352
|
+
});
|
|
18353
|
+
var StyledLabelInsideTextInput = index$5(Typography.Text)(function (_ref5) {
|
|
18354
|
+
var theme = _ref5.theme,
|
|
18355
|
+
themeVariant = _ref5.themeVariant;
|
|
18356
|
+
return {
|
|
18357
|
+
textAlignVertical: 'center',
|
|
18358
|
+
alignContent: 'center',
|
|
18359
|
+
fontSize: theme.__hd__.textInput.fontSizes.labelInsideTextInput,
|
|
18360
|
+
alignItems: 'center',
|
|
18361
|
+
color: theme.__hd__.textInput.colors.labelsInsideTextInput[themeVariant]
|
|
18362
|
+
};
|
|
18363
|
+
});
|
|
18364
|
+
var StyledAsteriskLabelInsideTextInput = index$5(Typography.Text)(function (_ref6) {
|
|
18365
|
+
var theme = _ref6.theme,
|
|
18366
|
+
themeVariant = _ref6.themeVariant;
|
|
18367
|
+
return {
|
|
18368
|
+
color: theme.__hd__.textInput.colors.asterisks[themeVariant],
|
|
18369
|
+
fontSize: theme.__hd__.textInput.fontSizes.asteriskLabel
|
|
18370
|
+
};
|
|
18371
|
+
});
|
|
18372
|
+
var StyledErrorContainer = index$5(View)(function (_ref7) {
|
|
18373
|
+
var theme = _ref7.theme;
|
|
18374
|
+
return {
|
|
18375
|
+
marginLeft: theme.__hd__.textInput.space.errorContainerMarginLeft,
|
|
18376
|
+
marginRight: theme.__hd__.textInput.space.errorContainerMarginRight,
|
|
18377
|
+
flexDirection: 'row',
|
|
18378
|
+
alignItems: 'center',
|
|
18379
|
+
flex: 1,
|
|
18380
|
+
flexGrow: 4
|
|
18381
|
+
};
|
|
18382
|
+
});
|
|
18383
|
+
var StyledError = index$5(Typography.Text)(function (_ref8) {
|
|
18384
|
+
var theme = _ref8.theme;
|
|
18385
|
+
return {
|
|
18386
|
+
color: theme.__hd__.textInput.colors.error,
|
|
18387
|
+
fontSize: theme.__hd__.textInput.fontSizes.error,
|
|
18388
|
+
marginLeft: theme.__hd__.textInput.space.errorMarginLeft
|
|
18389
|
+
};
|
|
18390
|
+
});
|
|
18391
|
+
var StyledMaxLengthMessage = index$5(Typography.Text)(function (_ref9) {
|
|
18392
|
+
var theme = _ref9.theme,
|
|
18393
|
+
themeVariant = _ref9.themeVariant;
|
|
18082
18394
|
return {
|
|
18395
|
+
color: theme.__hd__.textInput.colors.maxLengthLabels[themeVariant],
|
|
18396
|
+
fontSize: theme.__hd__.textInput.fontSizes.maxLength,
|
|
18397
|
+
marginRight: theme.__hd__.textInput.space.maxLengthLabelMarginLeft,
|
|
18398
|
+
alignSelf: 'flex-end',
|
|
18083
18399
|
flex: 1,
|
|
18400
|
+
flexGrow: 1,
|
|
18401
|
+
textAlign: 'right'
|
|
18402
|
+
};
|
|
18403
|
+
});
|
|
18404
|
+
var StyledHelperText = index$5(Typography.Text)(function (_ref10) {
|
|
18405
|
+
var theme = _ref10.theme;
|
|
18406
|
+
return {
|
|
18407
|
+
fontSize: theme.__hd__.textInput.fontSizes.error,
|
|
18408
|
+
marginLeft: theme.__hd__.textInput.space.errorMarginLeft
|
|
18409
|
+
};
|
|
18410
|
+
});
|
|
18411
|
+
var StyledTextInput = index$5(TextInput$1)(function (_ref11) {
|
|
18412
|
+
var theme = _ref11.theme;
|
|
18413
|
+
return {
|
|
18414
|
+
textAlignVertical: 'center',
|
|
18084
18415
|
fontSize: theme.__hd__.textInput.fontSizes.text,
|
|
18416
|
+
alignSelf: 'stretch',
|
|
18417
|
+
flexGrow: 2,
|
|
18085
18418
|
marginHorizontal: theme.__hd__.textInput.space.inputHorizontalMargin
|
|
18086
18419
|
};
|
|
18087
18420
|
});
|
|
18421
|
+
var StyledBorderBackDrop = index$5(View)(function (_ref12) {
|
|
18422
|
+
var _theme$__hd__$textInp;
|
|
18423
|
+
|
|
18424
|
+
var theme = _ref12.theme,
|
|
18425
|
+
themeVariant = _ref12.themeVariant;
|
|
18426
|
+
return _objectSpread2(_objectSpread2({}, StyleSheet$1.absoluteFillObject), {}, {
|
|
18427
|
+
borderWidth: themeVariant === 'focused' ? theme.__hd__.textInput.borderWidths.container.focused : theme.__hd__.textInput.borderWidths.container.normal,
|
|
18428
|
+
borderRadius: theme.__hd__.textInput.radii.container,
|
|
18429
|
+
borderColor: (_theme$__hd__$textInp = theme.__hd__.textInput.colors.borders[themeVariant]) !== null && _theme$__hd__$textInp !== void 0 ? _theme$__hd__$textInp : theme.__hd__.textInput.colors.borders["default"]
|
|
18430
|
+
});
|
|
18431
|
+
});
|
|
18432
|
+
var StyledTextInputContainer = index$5(View)(function (_ref13) {
|
|
18433
|
+
var theme = _ref13.theme;
|
|
18434
|
+
return {
|
|
18435
|
+
flexDirection: 'row',
|
|
18436
|
+
alignItems: 'center',
|
|
18437
|
+
padding: theme.__hd__.textInput.space.containerPadding
|
|
18438
|
+
};
|
|
18439
|
+
});
|
|
18440
|
+
var StyledTextInputAndLabelContainer = index$5(View)(function () {
|
|
18441
|
+
return {
|
|
18442
|
+
flexDirection: 'row',
|
|
18443
|
+
alignItems: 'center',
|
|
18444
|
+
alignSelf: 'stretch',
|
|
18445
|
+
flexGrow: 2
|
|
18446
|
+
};
|
|
18447
|
+
});
|
|
18448
|
+
var StyledErrorAndHelpTextContainer = index$5(View)(function () {
|
|
18449
|
+
return {
|
|
18450
|
+
flex: 1,
|
|
18451
|
+
flexDirection: 'row',
|
|
18452
|
+
justifyContent: 'space-between'
|
|
18453
|
+
};
|
|
18454
|
+
});
|
|
18088
18455
|
|
|
18089
|
-
var _excluded$1 = ["label", "prefix", "suffix", "style", "textStyle", "testID", "accessibilityLabelledBy"];
|
|
18456
|
+
var _excluded$1 = ["label", "prefix", "suffix", "style", "textStyle", "testID", "accessibilityLabelledBy", "error", "required", "editable", "disabled", "maxLength", "helpText", "value"];
|
|
18457
|
+
var getVariant = function getVariant(_ref) {
|
|
18458
|
+
var disabled = _ref.disabled,
|
|
18459
|
+
error = _ref.error,
|
|
18460
|
+
editable = _ref.editable,
|
|
18461
|
+
isFocused = _ref.isFocused,
|
|
18462
|
+
isEmptyValue = _ref.isEmptyValue;
|
|
18090
18463
|
|
|
18091
|
-
|
|
18092
|
-
|
|
18093
|
-
|
|
18094
|
-
suffix = _ref.suffix,
|
|
18095
|
-
style = _ref.style,
|
|
18096
|
-
textStyle = _ref.textStyle,
|
|
18097
|
-
testID = _ref.testID,
|
|
18098
|
-
accessibilityLabelledBy = _ref.accessibilityLabelledBy,
|
|
18099
|
-
nativeProps = _objectWithoutProperties$1(_ref, _excluded$1);
|
|
18464
|
+
if (disabled) {
|
|
18465
|
+
return 'disabled';
|
|
18466
|
+
}
|
|
18100
18467
|
|
|
18101
|
-
|
|
18468
|
+
if (error) {
|
|
18469
|
+
return 'error';
|
|
18470
|
+
}
|
|
18471
|
+
|
|
18472
|
+
if (!editable) {
|
|
18473
|
+
return 'readonly';
|
|
18474
|
+
}
|
|
18475
|
+
|
|
18476
|
+
if (isFocused) {
|
|
18477
|
+
return 'focused';
|
|
18478
|
+
}
|
|
18479
|
+
|
|
18480
|
+
if (!isEmptyValue) {
|
|
18481
|
+
return 'filled';
|
|
18482
|
+
}
|
|
18483
|
+
|
|
18484
|
+
return 'default';
|
|
18485
|
+
};
|
|
18486
|
+
|
|
18487
|
+
var TextInput = function TextInput(_ref2) {
|
|
18488
|
+
var label = _ref2.label,
|
|
18489
|
+
prefix = _ref2.prefix,
|
|
18490
|
+
suffix = _ref2.suffix,
|
|
18491
|
+
style = _ref2.style,
|
|
18492
|
+
textStyle = _ref2.textStyle,
|
|
18493
|
+
testID = _ref2.testID,
|
|
18494
|
+
accessibilityLabelledBy = _ref2.accessibilityLabelledBy,
|
|
18495
|
+
error = _ref2.error,
|
|
18496
|
+
required = _ref2.required,
|
|
18497
|
+
_ref2$editable = _ref2.editable,
|
|
18498
|
+
editable = _ref2$editable === void 0 ? true : _ref2$editable,
|
|
18499
|
+
_ref2$disabled = _ref2.disabled,
|
|
18500
|
+
disabled = _ref2$disabled === void 0 ? false : _ref2$disabled,
|
|
18501
|
+
maxLength = _ref2.maxLength,
|
|
18502
|
+
helpText = _ref2.helpText,
|
|
18503
|
+
_ref2$value = _ref2.value,
|
|
18504
|
+
value = _ref2$value === void 0 ? '' : _ref2$value,
|
|
18505
|
+
nativeProps = _objectWithoutProperties$1(_ref2, _excluded$1);
|
|
18506
|
+
|
|
18507
|
+
var textInputReference = useRef(null);
|
|
18508
|
+
var isEmptyValue = value.length === 0;
|
|
18509
|
+
|
|
18510
|
+
var _React$useState = React.useState(false),
|
|
18511
|
+
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
18512
|
+
isFocused = _React$useState2[0],
|
|
18513
|
+
setIsFocused = _React$useState2[1];
|
|
18514
|
+
|
|
18515
|
+
var variant = getVariant({
|
|
18516
|
+
disabled: disabled,
|
|
18517
|
+
error: error,
|
|
18518
|
+
editable: editable,
|
|
18519
|
+
isFocused: isFocused,
|
|
18520
|
+
isEmptyValue: isEmptyValue
|
|
18521
|
+
});
|
|
18522
|
+
var shouldShowMaxLength = maxLength !== undefined;
|
|
18523
|
+
var theme = useTheme();
|
|
18524
|
+
return /*#__PURE__*/React.createElement(StyledContainer, {
|
|
18102
18525
|
style: style,
|
|
18526
|
+
pointerEvents: variant === 'disabled' ? 'none' : 'auto',
|
|
18103
18527
|
testID: testID
|
|
18104
|
-
},
|
|
18528
|
+
}, /*#__PURE__*/React.createElement(StyledTextInputContainer, null, /*#__PURE__*/React.createElement(StyledBorderBackDrop, {
|
|
18529
|
+
themeVariant: variant
|
|
18530
|
+
}), (isFocused || label && !isEmptyValue) && /*#__PURE__*/React.createElement(StyledLabelContainer, {
|
|
18531
|
+
pointerEvents: "none"
|
|
18532
|
+
}, required && /*#__PURE__*/React.createElement(StyledAsteriskLabel, {
|
|
18533
|
+
themeVariant: variant,
|
|
18534
|
+
fontSize: "small"
|
|
18535
|
+
}, "*"), /*#__PURE__*/React.createElement(StyledLabel, {
|
|
18105
18536
|
nativeID: accessibilityLabelledBy,
|
|
18106
18537
|
testID: "input-label",
|
|
18107
|
-
fontSize: "small"
|
|
18108
|
-
|
|
18538
|
+
fontSize: "small",
|
|
18539
|
+
themeVariant: variant
|
|
18540
|
+
}, label)), typeof prefix === 'string' ? /*#__PURE__*/React.createElement(Icon, {
|
|
18541
|
+
intent: disabled ? 'disabled-text' : 'text',
|
|
18109
18542
|
testID: "input-prefix",
|
|
18110
18543
|
icon: prefix,
|
|
18111
18544
|
size: "xsmall"
|
|
18112
|
-
}), /*#__PURE__*/React.createElement(
|
|
18113
|
-
|
|
18114
|
-
|
|
18545
|
+
}) : prefix, /*#__PURE__*/React.createElement(StyledTextInputAndLabelContainer, null, !isFocused && isEmptyValue && /*#__PURE__*/React.createElement(StyledLabelContainerInsideTextInput, {
|
|
18546
|
+
pointerEvents: "none"
|
|
18547
|
+
}, required && /*#__PURE__*/React.createElement(StyledAsteriskLabelInsideTextInput, {
|
|
18548
|
+
themeVariant: variant
|
|
18549
|
+
}, "*"), /*#__PURE__*/React.createElement(StyledLabelInsideTextInput, {
|
|
18550
|
+
nativeID: accessibilityLabelledBy,
|
|
18551
|
+
testID: "input-label",
|
|
18552
|
+
fontSize: "medium",
|
|
18553
|
+
themeVariant: variant
|
|
18554
|
+
}, label)), /*#__PURE__*/React.createElement(StyledTextInput // when input is not editable on Android, the text color is gray
|
|
18555
|
+
// hence, adding this to make the text color the same as iOS
|
|
18556
|
+
, _extends$3({
|
|
18557
|
+
style: StyleSheet$1.flatten([{
|
|
18558
|
+
color: theme.__hd__.textInput.colors.text
|
|
18559
|
+
}, textStyle]),
|
|
18560
|
+
testID: "text-input",
|
|
18561
|
+
accessibilityState: {
|
|
18562
|
+
disabled: disabled
|
|
18563
|
+
} // @ts-ignore
|
|
18115
18564
|
,
|
|
18116
18565
|
accessibilityLabelledBy: accessibilityLabelledBy
|
|
18117
|
-
}, nativeProps
|
|
18566
|
+
}, nativeProps, {
|
|
18567
|
+
onFocus: function onFocus(event) {
|
|
18568
|
+
var _nativeProps$onFocus;
|
|
18569
|
+
|
|
18570
|
+
setIsFocused(true);
|
|
18571
|
+
(_nativeProps$onFocus = nativeProps.onFocus) === null || _nativeProps$onFocus === void 0 ? void 0 : _nativeProps$onFocus.call(nativeProps, event);
|
|
18572
|
+
},
|
|
18573
|
+
onBlur: function onBlur(event) {
|
|
18574
|
+
var _nativeProps$onBlur;
|
|
18575
|
+
|
|
18576
|
+
setIsFocused(false);
|
|
18577
|
+
(_nativeProps$onBlur = nativeProps.onBlur) === null || _nativeProps$onBlur === void 0 ? void 0 : _nativeProps$onBlur.call(nativeProps, event);
|
|
18578
|
+
},
|
|
18579
|
+
ref: textInputReference,
|
|
18580
|
+
editable: editable,
|
|
18581
|
+
maxLength: maxLength,
|
|
18582
|
+
value: value,
|
|
18583
|
+
onChangeText: function onChangeText(text) {
|
|
18584
|
+
var _nativeProps$onChange;
|
|
18585
|
+
|
|
18586
|
+
(_nativeProps$onChange = nativeProps.onChangeText) === null || _nativeProps$onChange === void 0 ? void 0 : _nativeProps$onChange.call(nativeProps, text);
|
|
18587
|
+
},
|
|
18588
|
+
placeholder: variant === 'focused' ? nativeProps.placeholder : undefined
|
|
18589
|
+
}))), typeof suffix === 'string' ? /*#__PURE__*/React.createElement(Icon, {
|
|
18590
|
+
intent: disabled ? 'disabled-text' : 'text',
|
|
18118
18591
|
testID: "input-suffix",
|
|
18119
18592
|
icon: suffix,
|
|
18120
18593
|
size: "xsmall"
|
|
18121
|
-
}))
|
|
18594
|
+
}) : suffix), /*#__PURE__*/React.createElement(StyledErrorAndHelpTextContainer, null, error && /*#__PURE__*/React.createElement(StyledErrorContainer, null, /*#__PURE__*/React.createElement(Icon, {
|
|
18595
|
+
testID: "input-error-icon",
|
|
18596
|
+
icon: "circle-info",
|
|
18597
|
+
size: "xsmall",
|
|
18598
|
+
intent: "danger"
|
|
18599
|
+
}), /*#__PURE__*/React.createElement(StyledError, {
|
|
18600
|
+
testID: "input-error-message"
|
|
18601
|
+
}, error)), shouldShowMaxLength && /*#__PURE__*/React.createElement(StyledMaxLengthMessage, {
|
|
18602
|
+
themeVariant: variant,
|
|
18603
|
+
fontSize: "small"
|
|
18604
|
+
}, value.length, "/", maxLength), helpText && /*#__PURE__*/React.createElement(StyledHelperText, null, helpText)));
|
|
18122
18605
|
};
|
|
18123
18606
|
|
|
18124
18607
|
function MultiSelect(_ref) {
|