@hero-design/rn 8.91.3 → 8.91.5
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 +2 -2
- package/CHANGELOG.md +27 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +433 -450
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +433 -450
- package/package.json +1 -1
- package/src/components/Alert/StyledAlert.tsx +1 -0
- package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +56 -0
- package/src/components/AnimatedScroller/__tests__/__snapshots__/ScrollablesWithFAB.spec.tsx.snap +18 -18
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/StyledAvatarStack.spec.tsx.snap +8 -10
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/index.spec.tsx.snap +116 -145
- package/src/components/Avatar/StyledAvatar.tsx +1 -1
- package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +4 -5
- package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +8 -10
- package/src/components/BottomNavigation/StyledBottomNavigation.tsx +3 -5
- package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +6 -4
- package/src/components/BottomSheet/StyledBottomSheet.tsx +0 -10
- package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +0 -16
- package/src/components/Calendar/CalendarRange.tsx +5 -1
- package/src/components/Calendar/__tests__/helper.spec.ts +20 -8
- package/src/components/Calendar/helpers.ts +6 -2
- package/src/components/Chip/__tests__/__snapshots__/index.spec.tsx.snap +28 -28
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +0 -16
- package/src/components/FAB/ActionGroup/StyledActionGroup.tsx +1 -1
- package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +11 -11
- package/src/components/FAB/Pair/__tests__/__snapshots__/index.spec.tsx.snap +6 -6
- package/src/components/FAB/StyledFAB.tsx +1 -5
- package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +6 -6
- package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +9 -9
- package/src/components/FloatingIsland/__tests__/__snapshots__/index.spec.tsx.snap +12 -12
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +1 -0
- package/src/components/List/StyledListItem.tsx +1 -5
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +9 -11
- package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +6 -6
- package/src/components/MapPin/StyledMapPin.tsx +14 -3
- package/src/components/MapPin/__tests__/__snapshots__/index.spec.tsx.snap +58 -65
- package/src/components/MapPin/index.tsx +7 -8
- package/src/components/Search/StyledSearch.tsx +1 -4
- package/src/components/Search/__tests__/__snapshots__/SearchOneLine.spec.tsx.snap +3 -2
- package/src/components/Search/__tests__/__snapshots__/SearchTwoLine.spec.tsx.snap +3 -2
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +0 -40
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +0 -32
- package/src/components/Switch/__tests__/__snapshots__/StyledSwitch.spec.tsx.snap +1 -1
- package/src/components/Switch/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +0 -8
- package/src/components/Toast/StyledToast.tsx +1 -5
- package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +21 -21
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +72 -50
- package/src/theme/components/alert.ts +5 -1
- package/src/theme/components/avatar.ts +1 -1
- package/src/theme/components/bottomNavigation.ts +7 -5
- package/src/theme/components/bottomSheet.ts +2 -9
- package/src/theme/components/chip.ts +2 -2
- package/src/theme/components/fab.ts +5 -9
- package/src/theme/components/floatingIsland.ts +1 -1
- package/src/theme/components/list.ts +1 -7
- package/src/theme/components/mapPin.ts +6 -2
- package/src/theme/components/search.ts +1 -5
- package/src/theme/components/toast.ts +1 -5
- package/src/theme/global/colors/__tests__/__snapshots__/eBens.spec.ts.snap +2 -0
- package/src/theme/global/colors/__tests__/__snapshots__/global.spec.ts.snap +2 -0
- package/src/theme/global/colors/__tests__/__snapshots__/jobs.spec.ts.snap +2 -0
- package/src/theme/global/colors/__tests__/__snapshots__/swag.spec.ts.snap +2 -0
- package/src/theme/global/colors/__tests__/__snapshots__/swagLight.spec.ts.snap +2 -0
- package/src/theme/global/colors/__tests__/__snapshots__/swagLightGlobal.spec.ts.snap +2 -0
- package/src/theme/global/colors/__tests__/__snapshots__/swagLightJobs.spec.ts.snap +2 -0
- package/src/theme/global/colors/__tests__/__snapshots__/wallet.spec.ts.snap +2 -0
- package/src/theme/global/colors/__tests__/__snapshots__/work.spec.ts.snap +2 -0
- package/src/theme/global/colors/eBens.ts +3 -0
- package/src/theme/global/colors/global.ts +3 -0
- package/src/theme/global/colors/jobs.ts +3 -0
- package/src/theme/global/colors/swag.ts +3 -0
- package/src/theme/global/colors/swagDark.ts +3 -0
- package/src/theme/global/colors/wallet.ts +3 -0
- package/src/theme/global/colors/work.ts +3 -0
- package/stats/8.91.4/rn-stats.html +4842 -0
- package/stats/8.91.5/rn-stats.html +4842 -0
- package/types/components/Avatar/StyledAvatar.d.ts +2 -2
- package/types/components/Calendar/helpers.d.ts +5 -2
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/MapPin/StyledMapPin.d.ts +12 -2
- package/types/components/TextInput/index.d.ts +1 -1
- package/types/theme/components/alert.d.ts +3 -0
- package/types/theme/components/avatar.d.ts +1 -1
- package/types/theme/components/bottomNavigation.d.ts +5 -7
- package/types/theme/components/bottomSheet.d.ts +1 -10
- package/types/theme/components/chip.d.ts +1 -1
- package/types/theme/components/fab.d.ts +2 -9
- package/types/theme/components/list.d.ts +1 -10
- package/types/theme/components/mapPin.d.ts +6 -2
- package/types/theme/components/search.d.ts +1 -8
- package/types/theme/components/toast.d.ts +1 -8
- package/types/theme/global/colors/eBens.d.ts +3 -0
- package/types/theme/global/colors/jobs.d.ts +3 -0
- package/types/theme/global/colors/swag.d.ts +3 -0
- package/types/theme/global/colors/swagDark.d.ts +3 -0
- package/types/theme/global/colors/wallet.d.ts +3 -0
- package/types/theme/global/colors/work.d.ts +3 -0
package/es/index.js
CHANGED
|
@@ -1910,8 +1910,10 @@ var globalPalette$1 = {
|
|
|
1910
1910
|
archived: palette$9.silverChalice,
|
|
1911
1911
|
mutedArchived: palette$9.silverChaliceLight20,
|
|
1912
1912
|
archivedSurface: palette$9.cumberlandFog,
|
|
1913
|
-
onArchivedSurface: palette$9.windsorGrey
|
|
1913
|
+
onArchivedSurface: palette$9.windsorGrey,
|
|
1914
1914
|
// End of Updated 21 / Nov / 22
|
|
1915
|
+
black: '#000000',
|
|
1916
|
+
white: '#ffffff'
|
|
1915
1917
|
};
|
|
1916
1918
|
|
|
1917
1919
|
var swagBrandSystemPallete$1 = {
|
|
@@ -1925,6 +1927,9 @@ var swagBrandSystemPallete$1 = {
|
|
|
1925
1927
|
decorativePrimary: palette$4.white,
|
|
1926
1928
|
decorativePrimarySurface: palette$4.maasstrichtBlueLight80
|
|
1927
1929
|
};
|
|
1930
|
+
/**
|
|
1931
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
1932
|
+
*/
|
|
1928
1933
|
var swagSystemPalette$1 = _objectSpread2(_objectSpread2({}, globalPalette$1), swagBrandSystemPallete$1);
|
|
1929
1934
|
|
|
1930
1935
|
var globalPalette = {
|
|
@@ -1979,6 +1984,9 @@ var swagDarkBrandSystemPalette = {
|
|
|
1979
1984
|
decorativePrimary: palette$2.maasstrichtBlue,
|
|
1980
1985
|
decorativePrimarySurface: palette$2.maasstrichtBlueLight10
|
|
1981
1986
|
};
|
|
1987
|
+
/**
|
|
1988
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
1989
|
+
*/
|
|
1982
1990
|
var swagDarkSystemPalette = _objectSpread2(_objectSpread2(_objectSpread2({}, globalPalette), swagDarkBrandSystemPalette), {}, {
|
|
1983
1991
|
// Theme Mode
|
|
1984
1992
|
themeMode: 'dark'
|
|
@@ -2029,6 +2037,9 @@ var workBrandSystemPallete = {
|
|
|
2029
2037
|
decorativePrimary: palette.gold,
|
|
2030
2038
|
decorativePrimarySurface: palette.goldLight80
|
|
2031
2039
|
};
|
|
2040
|
+
/**
|
|
2041
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
2042
|
+
*/
|
|
2032
2043
|
var workSystemPalette = _objectSpread2(_objectSpread2({}, swagSystemPalette$1), workBrandSystemPallete);
|
|
2033
2044
|
|
|
2034
2045
|
var jobsBrandSystemPallete = {
|
|
@@ -2042,6 +2053,9 @@ var jobsBrandSystemPallete = {
|
|
|
2042
2053
|
decorativePrimary: palette$5.hitPink,
|
|
2043
2054
|
decorativePrimarySurface: palette$5.hitPinkLight80
|
|
2044
2055
|
};
|
|
2056
|
+
/**
|
|
2057
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
2058
|
+
*/
|
|
2045
2059
|
var jobsSystemPalette = _objectSpread2(_objectSpread2({}, swagSystemPalette$1), jobsBrandSystemPallete);
|
|
2046
2060
|
|
|
2047
2061
|
var walletBrandSystemPallete = {
|
|
@@ -2055,6 +2069,9 @@ var walletBrandSystemPallete = {
|
|
|
2055
2069
|
decorativePrimary: palette$1.frenchSky,
|
|
2056
2070
|
decorativePrimarySurface: palette$1.frenchSkyLight80
|
|
2057
2071
|
};
|
|
2072
|
+
/**
|
|
2073
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
2074
|
+
*/
|
|
2058
2075
|
var walletSystemPalette = _objectSpread2(_objectSpread2({}, swagSystemPalette$1), walletBrandSystemPallete);
|
|
2059
2076
|
|
|
2060
2077
|
var eBensBrandSystemPallete = {
|
|
@@ -2068,6 +2085,9 @@ var eBensBrandSystemPallete = {
|
|
|
2068
2085
|
decorativePrimary: palette$6.mauve,
|
|
2069
2086
|
decorativePrimarySurface: palette$6.mauveLight80
|
|
2070
2087
|
};
|
|
2088
|
+
/**
|
|
2089
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
2090
|
+
*/
|
|
2071
2091
|
var eBensSystemPalette = _objectSpread2(_objectSpread2({}, swagSystemPalette$1), eBensBrandSystemPallete);
|
|
2072
2092
|
|
|
2073
2093
|
var ehWorkDarkSystemPalette = {
|
|
@@ -2477,12 +2497,16 @@ var getAlertTheme = function getAlertTheme(theme) {
|
|
|
2477
2497
|
var borderWidths = {
|
|
2478
2498
|
base: theme.borderWidths.base
|
|
2479
2499
|
};
|
|
2500
|
+
var shadows = {
|
|
2501
|
+
wrapper: theme.shadows.cardDrawer
|
|
2502
|
+
};
|
|
2480
2503
|
return {
|
|
2481
2504
|
colors: colors,
|
|
2482
2505
|
radii: radii,
|
|
2483
2506
|
sizes: sizes,
|
|
2484
2507
|
space: space,
|
|
2485
|
-
borderWidths: borderWidths
|
|
2508
|
+
borderWidths: borderWidths,
|
|
2509
|
+
shadows: shadows
|
|
2486
2510
|
};
|
|
2487
2511
|
};
|
|
2488
2512
|
|
|
@@ -2519,7 +2543,7 @@ var getAvatarTheme = function getAvatarTheme(theme) {
|
|
|
2519
2543
|
danger: theme.colors.error,
|
|
2520
2544
|
success: theme.colors.success,
|
|
2521
2545
|
warning: theme.colors.warning,
|
|
2522
|
-
text: theme.colors.
|
|
2546
|
+
text: theme.colors.white
|
|
2523
2547
|
};
|
|
2524
2548
|
var sizes = {
|
|
2525
2549
|
small: theme.sizes.xlarge,
|
|
@@ -2635,25 +2659,24 @@ var getBadgeTheme = function getBadgeTheme(theme) {
|
|
|
2635
2659
|
var getBottomNavigationTheme = function getBottomNavigationTheme(theme) {
|
|
2636
2660
|
var colors = {
|
|
2637
2661
|
shadow: theme.colors.primary,
|
|
2638
|
-
background: theme.colors.defaultGlobalSurface
|
|
2662
|
+
background: theme.colors.defaultGlobalSurface,
|
|
2663
|
+
borderTop: theme.colors.secondaryOutline
|
|
2664
|
+
};
|
|
2665
|
+
var borderWidths = {
|
|
2666
|
+
borderTop: theme.borderWidths.base
|
|
2639
2667
|
};
|
|
2640
2668
|
var sizes = {
|
|
2641
2669
|
height: theme.sizes['6xlarge']
|
|
2642
2670
|
};
|
|
2643
2671
|
var shadows = {
|
|
2644
|
-
|
|
2645
|
-
width: 0,
|
|
2646
|
-
height: 3
|
|
2647
|
-
},
|
|
2648
|
-
opacity: 0.27,
|
|
2649
|
-
radius: 4.65,
|
|
2650
|
-
elevation: 10
|
|
2672
|
+
wrapper: theme.shadows.tabBar
|
|
2651
2673
|
};
|
|
2652
2674
|
var space = {
|
|
2653
2675
|
titleMarginTop: theme.space.xsmall
|
|
2654
2676
|
};
|
|
2655
2677
|
return {
|
|
2656
2678
|
colors: colors,
|
|
2679
|
+
borderWidths: borderWidths,
|
|
2657
2680
|
shadows: shadows,
|
|
2658
2681
|
sizes: sizes,
|
|
2659
2682
|
space: space
|
|
@@ -2664,7 +2687,7 @@ var getBottomSheetTheme = function getBottomSheetTheme(theme) {
|
|
|
2664
2687
|
var colors = {
|
|
2665
2688
|
shadow: theme.colors.primaryOutline,
|
|
2666
2689
|
background: theme.colors.defaultGlobalSurface,
|
|
2667
|
-
backdrop: theme.colors.
|
|
2690
|
+
backdrop: theme.colors.black,
|
|
2668
2691
|
floatingHeaderIconBackground: theme.colors.archivedSurface
|
|
2669
2692
|
};
|
|
2670
2693
|
var sizes = {
|
|
@@ -2681,15 +2704,6 @@ var getBottomSheetTheme = function getBottomSheetTheme(theme) {
|
|
|
2681
2704
|
floatingInnerPadding: theme.space.small,
|
|
2682
2705
|
floatingHeaderIconPadding: theme.space.small
|
|
2683
2706
|
};
|
|
2684
|
-
var shadows = {
|
|
2685
|
-
offset: {
|
|
2686
|
-
width: 0,
|
|
2687
|
-
height: 3
|
|
2688
|
-
},
|
|
2689
|
-
opacity: 0.4,
|
|
2690
|
-
radius: theme.radii.xlarge,
|
|
2691
|
-
elevation: 10
|
|
2692
|
-
};
|
|
2693
2707
|
var radii = {
|
|
2694
2708
|
"default": theme.radii.xlarge,
|
|
2695
2709
|
floating: theme.radii['5xlarge'],
|
|
@@ -2697,7 +2711,6 @@ var getBottomSheetTheme = function getBottomSheetTheme(theme) {
|
|
|
2697
2711
|
};
|
|
2698
2712
|
return {
|
|
2699
2713
|
colors: colors,
|
|
2700
|
-
shadows: shadows,
|
|
2701
2714
|
radii: radii,
|
|
2702
2715
|
sizes: sizes,
|
|
2703
2716
|
space: space
|
|
@@ -2947,7 +2960,7 @@ var getCheckboxTheme = function getCheckboxTheme(theme) {
|
|
|
2947
2960
|
|
|
2948
2961
|
var getChipTheme = function getChipTheme(theme) {
|
|
2949
2962
|
var colors = {
|
|
2950
|
-
secondaryBackground: theme.colors.
|
|
2963
|
+
secondaryBackground: theme.colors.decorativeSecondarySurface,
|
|
2951
2964
|
filledBackground: theme.colors.defaultGlobalSurface,
|
|
2952
2965
|
wrapperSelectedBorder: 'transparent',
|
|
2953
2966
|
outlinedDefaultBackground: theme.colors.defaultGlobalSurface,
|
|
@@ -2971,7 +2984,7 @@ var getChipTheme = function getChipTheme(theme) {
|
|
|
2971
2984
|
outlinedDefaultBorder: theme.borderWidths.base
|
|
2972
2985
|
};
|
|
2973
2986
|
var shadows = {
|
|
2974
|
-
filledWrapper: theme.shadows
|
|
2987
|
+
filledWrapper: theme.shadows.cardDrawer
|
|
2975
2988
|
};
|
|
2976
2989
|
var fontSizes = {
|
|
2977
2990
|
icon: theme.fontSizes.small
|
|
@@ -3141,12 +3154,12 @@ var getFABTheme = function getFABTheme(theme) {
|
|
|
3141
3154
|
buttonBackground: theme.colors.overlayGlobalSurface,
|
|
3142
3155
|
buttonPressedBackground: theme.colors.overlayGlobalSurface,
|
|
3143
3156
|
buttonActiveBackground: theme.colors.overlayGlobalSurface,
|
|
3144
|
-
icon: theme.colors.
|
|
3157
|
+
icon: theme.colors.onDarkGlobalSurface,
|
|
3145
3158
|
actionItemBackground: theme.colors.overlayGlobalSurface,
|
|
3146
3159
|
actionItemPressedBackground: theme.colors.overlayGlobalSurface,
|
|
3147
|
-
backdropBackground: theme.colors.
|
|
3148
|
-
titleText: theme.colors.
|
|
3149
|
-
actionItemText: theme.colors.
|
|
3160
|
+
backdropBackground: theme.colors.black,
|
|
3161
|
+
titleText: theme.colors.onDarkGlobalSurface,
|
|
3162
|
+
actionItemText: theme.colors.onDarkGlobalSurface
|
|
3150
3163
|
};
|
|
3151
3164
|
var sizes = {
|
|
3152
3165
|
width: theme.sizes.xxxxxlarge,
|
|
@@ -3170,11 +3183,7 @@ var getFABTheme = function getFABTheme(theme) {
|
|
|
3170
3183
|
icon: theme.lineHeights.large
|
|
3171
3184
|
};
|
|
3172
3185
|
var shadows = {
|
|
3173
|
-
|
|
3174
|
-
opacity: theme.shadows["default"].shadowOpacity,
|
|
3175
|
-
radius: theme.shadows["default"].shadowRadius,
|
|
3176
|
-
elevation: theme.shadows["default"].elevation,
|
|
3177
|
-
color: theme.shadows["default"].shadowColor
|
|
3186
|
+
"default": theme.shadows.cardDrawer
|
|
3178
3187
|
};
|
|
3179
3188
|
var space = {
|
|
3180
3189
|
actionItemPadding: theme.space.smallMedium,
|
|
@@ -3264,13 +3273,7 @@ var getListTheme = function getListTheme(theme) {
|
|
|
3264
3273
|
leadingStatus: theme.radii.rounded
|
|
3265
3274
|
};
|
|
3266
3275
|
var shadows = {
|
|
3267
|
-
card:
|
|
3268
|
-
offset: theme.shadows["default"].shadowOffset,
|
|
3269
|
-
elevation: theme.shadows["default"].elevation,
|
|
3270
|
-
color: theme.shadows["default"].shadowColor,
|
|
3271
|
-
radius: theme.shadows["default"].shadowRadius,
|
|
3272
|
-
opacity: theme.shadows["default"].shadowOpacity
|
|
3273
|
-
}
|
|
3276
|
+
card: theme.shadows.cardDrawer
|
|
3274
3277
|
};
|
|
3275
3278
|
var widths = {
|
|
3276
3279
|
leadingStatus: 8
|
|
@@ -3957,11 +3960,7 @@ var getToastTheme = function getToastTheme(theme) {
|
|
|
3957
3960
|
base: theme.borderWidths.base
|
|
3958
3961
|
};
|
|
3959
3962
|
var shadows = {
|
|
3960
|
-
|
|
3961
|
-
opacity: theme.shadows["default"].shadowOpacity,
|
|
3962
|
-
radius: theme.shadows["default"].shadowRadius,
|
|
3963
|
-
elevation: theme.shadows["default"].elevation,
|
|
3964
|
-
color: theme.shadows["default"].shadowColor
|
|
3963
|
+
wrapper: theme.shadows.cardDrawer
|
|
3965
3964
|
};
|
|
3966
3965
|
return {
|
|
3967
3966
|
colors: colors,
|
|
@@ -4215,11 +4214,7 @@ var getSearchTheme = function getSearchTheme(theme) {
|
|
|
4215
4214
|
shadow: theme.colors.primaryOutline
|
|
4216
4215
|
};
|
|
4217
4216
|
var shadows = {
|
|
4218
|
-
|
|
4219
|
-
opacity: theme.shadows["default"].shadowOpacity,
|
|
4220
|
-
radius: theme.shadows["default"].shadowRadius,
|
|
4221
|
-
elevation: theme.shadows["default"].elevation,
|
|
4222
|
-
color: theme.shadows["default"].shadowColor
|
|
4217
|
+
container: theme.shadows.cardDrawer
|
|
4223
4218
|
};
|
|
4224
4219
|
var space = {
|
|
4225
4220
|
containerHorizontalPadding: theme.space.small,
|
|
@@ -4270,7 +4265,8 @@ var getSearchTheme = function getSearchTheme(theme) {
|
|
|
4270
4265
|
|
|
4271
4266
|
var getMapPinTheme = function getMapPinTheme(theme) {
|
|
4272
4267
|
var sizes = {
|
|
4273
|
-
"default": 42
|
|
4268
|
+
"default": 42,
|
|
4269
|
+
badge: theme.sizes.large
|
|
4274
4270
|
};
|
|
4275
4271
|
var fontSizes = {
|
|
4276
4272
|
icon: 42
|
|
@@ -4280,15 +4276,18 @@ var getMapPinTheme = function getMapPinTheme(theme) {
|
|
|
4280
4276
|
};
|
|
4281
4277
|
var colors = {
|
|
4282
4278
|
border: {
|
|
4283
|
-
idle: theme.colors.
|
|
4279
|
+
idle: theme.colors.white,
|
|
4284
4280
|
selected: theme.colors.secondary,
|
|
4285
4281
|
applied: theme.colors.secondary
|
|
4286
4282
|
},
|
|
4283
|
+
icon: theme.colors.black,
|
|
4287
4284
|
badge: theme.colors.secondary,
|
|
4288
|
-
|
|
4285
|
+
badgeIcon: theme.colors.onSecondary,
|
|
4286
|
+
background: theme.colors.white
|
|
4289
4287
|
};
|
|
4290
4288
|
var radii = {
|
|
4291
|
-
"default": theme.radii.large
|
|
4289
|
+
"default": theme.radii.large,
|
|
4290
|
+
badge: theme.radii.rounded
|
|
4292
4291
|
};
|
|
4293
4292
|
var space = {
|
|
4294
4293
|
iconTop: -theme.space.small,
|
|
@@ -4320,7 +4319,7 @@ var getFloatingIslandTheme = function getFloatingIslandTheme(theme) {
|
|
|
4320
4319
|
wrapper: theme.radii.rounded
|
|
4321
4320
|
};
|
|
4322
4321
|
var shadows = {
|
|
4323
|
-
wrapper: theme.shadows
|
|
4322
|
+
wrapper: theme.shadows.cardDrawer
|
|
4324
4323
|
};
|
|
4325
4324
|
var space = {
|
|
4326
4325
|
wrapperPadding: theme.space.small,
|
|
@@ -7673,7 +7672,7 @@ var Typography = {
|
|
|
7673
7672
|
};
|
|
7674
7673
|
|
|
7675
7674
|
// 🔴 DO NOT EDIT — This file is generated automatically.
|
|
7676
|
-
var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bolt', 'bookmark-added', 'bookmark-checked', 'bookmark', 'box-check', 'box', 'bpay', 'buildings', 'cake', 'calendar-clock', 'calendar', 'candy-box-menu', 'caret-down-small', 'caret-down', 'caret-left-small', 'caret-left', 'caret-right-small', 'caret-right', 'caret-up-small', 'caret-up', 'check-radio', 'circle-add', 'circle-cancel', 'circle-check', 'circle-down', 'circle-info', 'circle-left', 'circle-ok', 'circle-pencil', 'circle-question', 'circle-remove', 'circle-right', 'circle-up', 'circle-warning', 'clock-3', 'clock', 'cloud-download', 'cloud-upload', 'cog', 'coin', 'contacts', 'credit-card', 'diamond', 'direction-arrows', 'directory', 'document', 'dollar-coin-shine', 'dot', 'double-buildings', 'edit-template', 'envelope', 'exclude', 'expand-content', 'expense', 'explore_nearby', 'eye-circle', 'eye-invisible', 'eye', 'face-meh', 'face-sad', 'face-smiley', 'feed', 'feedbacks', 'file-certified', 'file-clone', 'file-copy', 'file-csv', 'file-dispose', 'file-doc', 'file-excel', 'file-export', 'file-lock', 'file-pdf', 'file-powerpoint', 'file-search', 'file-secured', 'file-sheets', 'file-slide', 'file-verified', 'file-word', 'file', 'filter', 'folder-user', 'folder', 'format-bold', 'format-heading1', 'format-heading2', 'format-italic', 'format-list-bulleted', 'format-list-numbered', 'format-underlined', 'funnel-filter', 'global-dollar', 'globe', 'graduation-cap', 'graph', 'happy-sun', 'health-bag', 'heart', 'hero-points', 'home', 'image', 'import', 'incident-siren', 'instapay-daily', 'instapay-now', 'instapay', 'list', 'loading-2', 'loading', 'location-on', 'location', 'lock', 'looks-one', 'looks-two', 'media-content', 'menu', 'money-notes', 'moneybag', 'moon', 'multiple-stars', 'multiple-users', 'near-me', 'node', 'open-folder', 'paperclip', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane-up', 'plane', 'play-arrow', 'play-circle', 'print', 'raising-hands', 'reply-arrow', 'reply', 'reschedule', 'rostering', 'salary-sacrifice', 'save', 'schedule-send', 'schedule', 'search-person', 'search', 'send', 'speaker-active', 'speaker', 'star-award', 'star-badge', 'star-circle', 'star-medal', 'star', 'steps-circle', 'stopwatch', 'suitcase', 'surfing', 'survey', 'swag-pillar-benefit', 'swag-pillar-career', 'swag-pillar-money', 'swag-pillar-work', 'swag', 'swipe-right', 'switch', 'tag', 'target', 'teams', 'thumb-down', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'accommodation-outlined', 'activate-outlined', 'add-credit-card-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'afternoon-outlined', 'ai-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'application-outlined', 'arrow-down', 'arrow-downwards', 'arrow-left', 'arrow-leftwards', 'arrow-right', 'arrow-rightwards', 'arrow-up', 'arrow-upwards', 'article-outlined', 'at-sign', 'auto-graph-outlined', 'automotive-outlined', 'bakery-outlined', 'bar-outlined', 'beauty-outlined', 'beer-outlined', 'bell-active-outlined', 'bell-outlined', 'bell-slash-outlined', 'bill-management-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bolt-outlined', 'book-outlined', 'bookmark-added-outlined', 'bookmark-checked-outlined', 'bookmark-outlined', 'box-1-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calendar-dates-outlined', 'calendar-star-outlined', 'call-outlined', 'call-split-outlined', 'camera-outlined', 'cancel', 'car-forward-outlined', 'cashback-outlined', 'charging-station-outlined', 'chat-bubble-outlined', 'chat-unread-outlined', 'checkmark', 'circle-add-outlined', 'circle-cancel-outlined', 'circle-down-outlined', 'circle-info-outlined', 'circle-left-outlined', 'circle-ok-outlined', 'circle-question-outlined', 'circle-remove-outlined', 'circle-right-outlined', 'circle-up-outlined', 'circle-warning-outlined', 'clock-2-outlined', 'clock-in-outlined', 'clock-out-outlined', 'clock-outlined', 'cog-outlined', 'coin-outlined', 'coin-super-outlined', 'comment-outlined', 'contacts-outlined', 'contacts-user-outlined', 'credit-card-outlined', 'cultural-site-outlined', 'cup-outlined', 'dentistry-outlined', 'direction-arrows-outlined', 'directory-outlined', 'document-outlined', 'dollar-box-outlined', 'dollar-card-outlined', 'dollar-coin-shine-outlined', 'dollar-credit-card-outlined', 'dollar-sign', 'double-buildings-outlined', 'double-left-arrows', 'double-right-arrows', 'download-box-outlined', 'download-outlined', 'edit-template-outlined', 'electronics-outlined', 'email-outlined', 'end-break-outlined', 'enter-arrow', 'entertainment-outlined', 'envelope-outlined', 'evening-outlined', 'expense-approval-outlined', 'expense-outlined', 'explore-outlined', 'extension-outlined', 'external-link', 'eye-invisible-outlined', 'eye-outlined', 'face-id', 'face-meh-outlined', 'face-open-smiley-outlined', 'face-sad-outlined', 'face-smiley-outlined', 'fastfood-outlined', 'feed-outlined', 'file-certified-outlined', 'file-clone-outlined', 'file-copy-outlined', 'file-dispose-outlined', 'file-dollar-certified-outlined', 'file-dollar-outlined', 'file-download-outlined', 'file-export-outlined', 'file-lock-outlined', 'file-outlined', 'file-search-outlined', 'file-secured-outlined', 'file-statutory-outlined', 'file-verified-outlined', 'filter-outlined', 'fitness-outlined', 'folder-outlined', 'folder-upload-outlined', 'folder-user-outlined', 'form-outlined', 'funnel-filter-outline', 'goal-outlined', 'graph-outlined', 'grocery-outlined', 'hand-holding-user-outlined', 'handshake-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-active-outlined', 'home-outlined', 'id-card-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'job-search-outlined', 'leave-approval-outlined', 'link-1', 'link-2', 'list-outlined', 'live-help-outlined', 'local_mall_outlined', 'location-on-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'mail-outlined', 'map-outlined', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'morning-outlined', 'multiple-folders-outlined', 'multiple-users-outlined', 'near-me-outlined', 'node-outlined', 'number-points', 'number', 'overview-outlined', 'park-outlined', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'print-outlined', 'propane-tank-outlined', 'qr-code-outlined', 'qualification-outlined', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'restaurant-outlined', 'resume-outlined', 'return-arrow', 'rostering-outlined', 'safety-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'search-secured-outlined', 'send-outlined', 'share-1', 'share-2', 'share-outlined-2', 'share-outlined', 'shop-outlined', 'shopping_basket_outlined', 'show-chart-outlined', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'smart-match-outlined', 'sparkle-outlined', 'speaker-active-outlined', 'speaker-outlined', 'star-circle-outlined', 'star-outlined', 'start-break-outlined', 'stash-outlined', 'stopwatch-outlined', 'strikethrough', 'styler-outlined', 'suitcase-clock-outlined', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'tag-outlined', 'target-outlined', 'tennis-outlined', 'thumb-down-outlined', 'ticket-outlined', 'timesheet-outlined', 'timesheets-outlined', 'today-outlined', 'transfer', 'transportation-outlined', 'trash-bin-outlined', 'umbrela-outlined', 'unavailability-outlined', 'unavailable', 'underline', 'union-outlined', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'volunteer-outlined', 'wallet-outlined', 'wellness-outlined'];
|
|
7675
|
+
var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bolt', 'bookmark-added', 'bookmark-checked', 'bookmark', 'box-check', 'box', 'bpay', 'buildings', 'cake', 'calendar-clock', 'calendar', 'candy-box-menu', 'caret-down-small', 'caret-down', 'caret-left-small', 'caret-left', 'caret-right-small', 'caret-right', 'caret-up-small', 'caret-up', 'check-radio', 'circle-add', 'circle-cancel', 'circle-check', 'circle-down', 'circle-info', 'circle-left', 'circle-ok', 'circle-pencil', 'circle-question', 'circle-remove', 'circle-right', 'circle-up', 'circle-warning', 'clock-3', 'clock', 'cloud-download', 'cloud-upload', 'cog', 'coin', 'contacts', 'credit-card', 'diamond', 'direction-arrows', 'directory', 'document', 'dollar-coin-shine', 'dot', 'double-buildings', 'edit-template', 'envelope', 'exclude', 'expand-content', 'expense', 'explore_nearby', 'eye-circle', 'eye-invisible', 'eye', 'face-meh', 'face-sad', 'face-smiley', 'feed', 'feedbacks', 'file-certified', 'file-clone', 'file-copy', 'file-csv', 'file-dispose', 'file-doc', 'file-excel', 'file-export', 'file-lock', 'file-pdf', 'file-powerpoint', 'file-search', 'file-secured', 'file-sheets', 'file-slide', 'file-verified', 'file-word', 'file', 'filter', 'folder-user', 'folder', 'format-bold', 'format-heading1', 'format-heading2', 'format-italic', 'format-list-bulleted', 'format-list-numbered', 'format-underlined', 'funnel-filter', 'global-dollar', 'globe', 'graduation-cap', 'graph', 'happy-sun', 'health-bag', 'heart', 'hero-points', 'home', 'image', 'import', 'incident-siren', 'instapay-daily', 'instapay-now', 'instapay', 'list', 'loading-2', 'loading', 'location-on', 'location', 'lock', 'looks-one', 'looks-two', 'media-content', 'menu', 'money-notes', 'moneybag', 'moon', 'multiple-stars', 'multiple-users', 'near-me', 'node', 'open-folder', 'paperclip-vertical', 'paperclip', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane-up', 'plane', 'play-arrow', 'play-circle', 'print', 'raising-hands', 'reply-arrow', 'reply', 'reschedule', 'rostering', 'salary-sacrifice', 'save', 'schedule-send', 'schedule', 'search-person', 'search', 'send', 'speaker-active', 'speaker', 'star-award', 'star-badge', 'star-circle', 'star-medal', 'star', 'steps-circle', 'stopwatch', 'suitcase', 'surfing', 'survey', 'swag-pillar-benefit', 'swag-pillar-career', 'swag-pillar-money', 'swag-pillar-work', 'swag', 'swipe-right', 'switch', 'tag', 'target', 'teams', 'thumb-down', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'accommodation-outlined', 'activate-outlined', 'add-credit-card-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'afternoon-outlined', 'ai-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'application-outlined', 'arrow-down', 'arrow-downwards', 'arrow-left', 'arrow-leftwards', 'arrow-right', 'arrow-rightwards', 'arrow-up', 'arrow-upwards', 'article-outlined', 'at-sign', 'auto-graph-outlined', 'automotive-outlined', 'bakery-outlined', 'bar-outlined', 'beauty-outlined', 'beer-outlined', 'bell-active-outlined', 'bell-outlined', 'bell-slash-outlined', 'bill-management-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bolt-outlined', 'book-outlined', 'bookmark-added-outlined', 'bookmark-checked-outlined', 'bookmark-outlined', 'box-1-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calendar-dates-outlined', 'calendar-star-outlined', 'call-outlined', 'call-split-outlined', 'camera-outlined', 'cancel', 'car-forward-outlined', 'cashback-outlined', 'charging-station-outlined', 'chat-bubble-outlined', 'chat-unread-outlined', 'checkmark', 'circle-add-outlined', 'circle-cancel-outlined', 'circle-down-outlined', 'circle-info-outlined', 'circle-left-outlined', 'circle-ok-outlined', 'circle-question-outlined', 'circle-remove-outlined', 'circle-right-outlined', 'circle-up-outlined', 'circle-warning-outlined', 'clock-2-outlined', 'clock-in-outlined', 'clock-out-outlined', 'clock-outlined', 'cog-outlined', 'coin-outlined', 'coin-super-outlined', 'comment-outlined', 'contacts-outlined', 'contacts-user-outlined', 'credit-card-outlined', 'cultural-site-outlined', 'cup-outlined', 'dentistry-outlined', 'direction-arrows-outlined', 'directory-outlined', 'document-outlined', 'dollar-box-outlined', 'dollar-card-outlined', 'dollar-coin-shine-outlined', 'dollar-credit-card-outlined', 'dollar-sign', 'double-buildings-outlined', 'double-left-arrows', 'double-right-arrows', 'download-box-outlined', 'download-outlined', 'edit-template-outlined', 'electronics-outlined', 'email-outlined', 'end-break-outlined', 'enter-arrow', 'entertainment-outlined', 'envelope-outlined', 'evening-outlined', 'expense-approval-outlined', 'expense-outlined', 'explore-outlined', 'extension-outlined', 'external-link', 'eye-invisible-outlined', 'eye-outlined', 'face-id', 'face-meh-outlined', 'face-open-smiley-outlined', 'face-sad-outlined', 'face-smiley-outlined', 'fastfood-outlined', 'feed-outlined', 'file-certified-outlined', 'file-clone-outlined', 'file-copy-outlined', 'file-dispose-outlined', 'file-dollar-certified-outlined', 'file-dollar-outlined', 'file-download-outlined', 'file-export-outlined', 'file-lock-outlined', 'file-outlined', 'file-search-outlined', 'file-secured-outlined', 'file-statutory-outlined', 'file-verified-outlined', 'filter-outlined', 'fitness-outlined', 'folder-outlined', 'folder-upload-outlined', 'folder-user-outlined', 'form-outlined', 'funnel-filter-outline', 'goal-outlined', 'graph-outlined', 'grocery-outlined', 'hand-holding-user-outlined', 'handshake-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-active-outlined', 'home-outlined', 'id-card-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'job-search-outlined', 'leave-approval-outlined', 'link-1', 'link-2', 'list-outlined', 'live-help-outlined', 'local_mall_outlined', 'location-on-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'mail-outlined', 'map-outlined', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'morning-outlined', 'multiple-folders-outlined', 'multiple-users-outlined', 'near-me-outlined', 'node-outlined', 'number-points', 'number', 'overview-outlined', 'park-outlined', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'print-outlined', 'propane-tank-outlined', 'qr-code-outlined', 'qualification-outlined', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'restaurant-outlined', 'resume-outlined', 'return-arrow', 'rostering-outlined', 'safety-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'search-secured-outlined', 'send-outlined', 'share-1', 'share-2', 'share-outlined-2', 'share-outlined', 'shop-outlined', 'shopping_basket_outlined', 'show-chart-outlined', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'smart-match-outlined', 'sparkle-outlined', 'speaker-active-outlined', 'speaker-outlined', 'star-circle-outlined', 'star-outlined', 'start-break-outlined', 'stash-outlined', 'stopwatch-outlined', 'strikethrough', 'styler-outlined', 'suitcase-clock-outlined', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'tag-outlined', 'target-outlined', 'tennis-outlined', 'thumb-down-outlined', 'ticket-outlined', 'timesheet-outlined', 'timesheets-outlined', 'today-outlined', 'transfer', 'transportation-outlined', 'trash-bin-outlined', 'umbrela-outlined', 'unavailability-outlined', 'unavailable', 'underline', 'union-outlined', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'volunteer-outlined', 'wallet-outlined', 'wellness-outlined'];
|
|
7677
7676
|
|
|
7678
7677
|
var activate = 59000;
|
|
7679
7678
|
var adjustment = 59003;
|
|
@@ -7722,51 +7721,51 @@ var menu = 59127;
|
|
|
7722
7721
|
var moneybag = 59129;
|
|
7723
7722
|
var moon = 59130;
|
|
7724
7723
|
var node = 59134;
|
|
7725
|
-
var paperclip =
|
|
7726
|
-
var pencil =
|
|
7727
|
-
var phone =
|
|
7728
|
-
var plane =
|
|
7729
|
-
var print =
|
|
7730
|
-
var reply =
|
|
7731
|
-
var reschedule =
|
|
7732
|
-
var rostering =
|
|
7733
|
-
var save =
|
|
7734
|
-
var schedule =
|
|
7735
|
-
var search =
|
|
7736
|
-
var send =
|
|
7737
|
-
var speaker =
|
|
7738
|
-
var star =
|
|
7739
|
-
var stopwatch =
|
|
7740
|
-
var suitcase =
|
|
7741
|
-
var surfing =
|
|
7742
|
-
var survey =
|
|
7743
|
-
var swag =
|
|
7744
|
-
var tag =
|
|
7745
|
-
var target =
|
|
7746
|
-
var teams =
|
|
7747
|
-
var timesheet =
|
|
7748
|
-
var unlock =
|
|
7749
|
-
var user =
|
|
7750
|
-
var wallet =
|
|
7751
|
-
var warning =
|
|
7752
|
-
var add =
|
|
7753
|
-
var bold =
|
|
7754
|
-
var cancel =
|
|
7755
|
-
var checkmark =
|
|
7756
|
-
var italic =
|
|
7757
|
-
var local_mall_outlined =
|
|
7758
|
-
var number =
|
|
7759
|
-
var percentage =
|
|
7760
|
-
var redeem =
|
|
7761
|
-
var refresh =
|
|
7762
|
-
var remove =
|
|
7763
|
-
var restart =
|
|
7764
|
-
var shopping_basket_outlined =
|
|
7765
|
-
var strikethrough =
|
|
7766
|
-
var sync =
|
|
7767
|
-
var transfer =
|
|
7768
|
-
var unavailable =
|
|
7769
|
-
var underline =
|
|
7724
|
+
var paperclip = 59137;
|
|
7725
|
+
var pencil = 59139;
|
|
7726
|
+
var phone = 59140;
|
|
7727
|
+
var plane = 59143;
|
|
7728
|
+
var print = 59146;
|
|
7729
|
+
var reply = 59149;
|
|
7730
|
+
var reschedule = 59150;
|
|
7731
|
+
var rostering = 59151;
|
|
7732
|
+
var save = 59153;
|
|
7733
|
+
var schedule = 59155;
|
|
7734
|
+
var search = 59157;
|
|
7735
|
+
var send = 59158;
|
|
7736
|
+
var speaker = 59160;
|
|
7737
|
+
var star = 59165;
|
|
7738
|
+
var stopwatch = 59167;
|
|
7739
|
+
var suitcase = 59168;
|
|
7740
|
+
var surfing = 59169;
|
|
7741
|
+
var survey = 59170;
|
|
7742
|
+
var swag = 59175;
|
|
7743
|
+
var tag = 59178;
|
|
7744
|
+
var target = 59179;
|
|
7745
|
+
var teams = 59180;
|
|
7746
|
+
var timesheet = 59182;
|
|
7747
|
+
var unlock = 59185;
|
|
7748
|
+
var user = 59186;
|
|
7749
|
+
var wallet = 59189;
|
|
7750
|
+
var warning = 59190;
|
|
7751
|
+
var add = 59197;
|
|
7752
|
+
var bold = 59227;
|
|
7753
|
+
var cancel = 59243;
|
|
7754
|
+
var checkmark = 59249;
|
|
7755
|
+
var italic = 59345;
|
|
7756
|
+
var local_mall_outlined = 59352;
|
|
7757
|
+
var number = 59375;
|
|
7758
|
+
var percentage = 59381;
|
|
7759
|
+
var redeem = 59391;
|
|
7760
|
+
var refresh = 59392;
|
|
7761
|
+
var remove = 59393;
|
|
7762
|
+
var restart = 59395;
|
|
7763
|
+
var shopping_basket_outlined = 59411;
|
|
7764
|
+
var strikethrough = 59426;
|
|
7765
|
+
var sync = 59432;
|
|
7766
|
+
var transfer = 59441;
|
|
7767
|
+
var unavailable = 59446;
|
|
7768
|
+
var underline = 59447;
|
|
7770
7769
|
var glyphMap = {
|
|
7771
7770
|
activate: activate,
|
|
7772
7771
|
"add-emoji": 59001,
|
|
@@ -7904,329 +7903,330 @@ var glyphMap = {
|
|
|
7904
7903
|
"near-me": 59133,
|
|
7905
7904
|
node: node,
|
|
7906
7905
|
"open-folder": 59135,
|
|
7906
|
+
"paperclip-vertical": 59136,
|
|
7907
7907
|
paperclip: paperclip,
|
|
7908
|
-
"payment-summary":
|
|
7908
|
+
"payment-summary": 59138,
|
|
7909
7909
|
pencil: pencil,
|
|
7910
7910
|
phone: phone,
|
|
7911
|
-
"piggy-bank":
|
|
7912
|
-
"plane-up":
|
|
7911
|
+
"piggy-bank": 59141,
|
|
7912
|
+
"plane-up": 59142,
|
|
7913
7913
|
plane: plane,
|
|
7914
|
-
"play-arrow":
|
|
7915
|
-
"play-circle":
|
|
7914
|
+
"play-arrow": 59144,
|
|
7915
|
+
"play-circle": 59145,
|
|
7916
7916
|
print: print,
|
|
7917
|
-
"raising-hands":
|
|
7918
|
-
"reply-arrow":
|
|
7917
|
+
"raising-hands": 59147,
|
|
7918
|
+
"reply-arrow": 59148,
|
|
7919
7919
|
reply: reply,
|
|
7920
7920
|
reschedule: reschedule,
|
|
7921
7921
|
rostering: rostering,
|
|
7922
|
-
"salary-sacrifice":
|
|
7922
|
+
"salary-sacrifice": 59152,
|
|
7923
7923
|
save: save,
|
|
7924
|
-
"schedule-send":
|
|
7924
|
+
"schedule-send": 59154,
|
|
7925
7925
|
schedule: schedule,
|
|
7926
|
-
"search-person":
|
|
7926
|
+
"search-person": 59156,
|
|
7927
7927
|
search: search,
|
|
7928
7928
|
send: send,
|
|
7929
|
-
"speaker-active":
|
|
7929
|
+
"speaker-active": 59159,
|
|
7930
7930
|
speaker: speaker,
|
|
7931
|
-
"star-award":
|
|
7932
|
-
"star-badge":
|
|
7933
|
-
"star-circle":
|
|
7934
|
-
"star-medal":
|
|
7931
|
+
"star-award": 59161,
|
|
7932
|
+
"star-badge": 59162,
|
|
7933
|
+
"star-circle": 59163,
|
|
7934
|
+
"star-medal": 59164,
|
|
7935
7935
|
star: star,
|
|
7936
|
-
"steps-circle":
|
|
7936
|
+
"steps-circle": 59166,
|
|
7937
7937
|
stopwatch: stopwatch,
|
|
7938
7938
|
suitcase: suitcase,
|
|
7939
7939
|
surfing: surfing,
|
|
7940
7940
|
survey: survey,
|
|
7941
|
-
"swag-pillar-benefit":
|
|
7942
|
-
"swag-pillar-career":
|
|
7943
|
-
"swag-pillar-money":
|
|
7944
|
-
"swag-pillar-work":
|
|
7941
|
+
"swag-pillar-benefit": 59171,
|
|
7942
|
+
"swag-pillar-career": 59172,
|
|
7943
|
+
"swag-pillar-money": 59173,
|
|
7944
|
+
"swag-pillar-work": 59174,
|
|
7945
7945
|
swag: swag,
|
|
7946
|
-
"swipe-right":
|
|
7947
|
-
"switch":
|
|
7946
|
+
"swipe-right": 59176,
|
|
7947
|
+
"switch": 59177,
|
|
7948
7948
|
tag: tag,
|
|
7949
7949
|
target: target,
|
|
7950
7950
|
teams: teams,
|
|
7951
|
-
"thumb-down":
|
|
7951
|
+
"thumb-down": 59181,
|
|
7952
7952
|
timesheet: timesheet,
|
|
7953
|
-
"touch-id":
|
|
7954
|
-
"trash-bin":
|
|
7953
|
+
"touch-id": 59183,
|
|
7954
|
+
"trash-bin": 59184,
|
|
7955
7955
|
unlock: unlock,
|
|
7956
7956
|
user: user,
|
|
7957
|
-
"video-1":
|
|
7958
|
-
"video-2":
|
|
7957
|
+
"video-1": 59187,
|
|
7958
|
+
"video-2": 59188,
|
|
7959
7959
|
wallet: wallet,
|
|
7960
7960
|
warning: warning,
|
|
7961
|
-
"accommodation-outlined":
|
|
7962
|
-
"activate-outlined":
|
|
7963
|
-
"add-credit-card-outlined":
|
|
7964
|
-
"add-person-outlined":
|
|
7965
|
-
"add-section-outlined":
|
|
7966
|
-
"add-time-outlined":
|
|
7961
|
+
"accommodation-outlined": 59191,
|
|
7962
|
+
"activate-outlined": 59192,
|
|
7963
|
+
"add-credit-card-outlined": 59193,
|
|
7964
|
+
"add-person-outlined": 59194,
|
|
7965
|
+
"add-section-outlined": 59195,
|
|
7966
|
+
"add-time-outlined": 59196,
|
|
7967
7967
|
add: add,
|
|
7968
|
-
"adjustment-outlined":
|
|
7969
|
-
"afternoon-outlined":
|
|
7970
|
-
"ai-outlined":
|
|
7971
|
-
"alignment-2-outlined":
|
|
7972
|
-
"alignment-outlined":
|
|
7973
|
-
"all-caps":
|
|
7974
|
-
"application-outlined":
|
|
7975
|
-
"arrow-down":
|
|
7976
|
-
"arrow-downwards":
|
|
7977
|
-
"arrow-left":
|
|
7978
|
-
"arrow-leftwards":
|
|
7979
|
-
"arrow-right":
|
|
7980
|
-
"arrow-rightwards":
|
|
7981
|
-
"arrow-up":
|
|
7982
|
-
"arrow-upwards":
|
|
7983
|
-
"article-outlined":
|
|
7984
|
-
"at-sign":
|
|
7985
|
-
"auto-graph-outlined":
|
|
7986
|
-
"automotive-outlined":
|
|
7987
|
-
"bakery-outlined":
|
|
7988
|
-
"bar-outlined":
|
|
7989
|
-
"beauty-outlined":
|
|
7990
|
-
"beer-outlined":
|
|
7991
|
-
"bell-active-outlined":
|
|
7992
|
-
"bell-outlined":
|
|
7993
|
-
"bell-slash-outlined":
|
|
7994
|
-
"bill-management-outlined":
|
|
7995
|
-
"billing-outlined":
|
|
7996
|
-
"body-outlined":
|
|
7968
|
+
"adjustment-outlined": 59198,
|
|
7969
|
+
"afternoon-outlined": 59199,
|
|
7970
|
+
"ai-outlined": 59200,
|
|
7971
|
+
"alignment-2-outlined": 59201,
|
|
7972
|
+
"alignment-outlined": 59202,
|
|
7973
|
+
"all-caps": 59203,
|
|
7974
|
+
"application-outlined": 59204,
|
|
7975
|
+
"arrow-down": 59205,
|
|
7976
|
+
"arrow-downwards": 59206,
|
|
7977
|
+
"arrow-left": 59207,
|
|
7978
|
+
"arrow-leftwards": 59208,
|
|
7979
|
+
"arrow-right": 59209,
|
|
7980
|
+
"arrow-rightwards": 59210,
|
|
7981
|
+
"arrow-up": 59211,
|
|
7982
|
+
"arrow-upwards": 59212,
|
|
7983
|
+
"article-outlined": 59213,
|
|
7984
|
+
"at-sign": 59214,
|
|
7985
|
+
"auto-graph-outlined": 59215,
|
|
7986
|
+
"automotive-outlined": 59216,
|
|
7987
|
+
"bakery-outlined": 59217,
|
|
7988
|
+
"bar-outlined": 59218,
|
|
7989
|
+
"beauty-outlined": 59219,
|
|
7990
|
+
"beer-outlined": 59220,
|
|
7991
|
+
"bell-active-outlined": 59221,
|
|
7992
|
+
"bell-outlined": 59222,
|
|
7993
|
+
"bell-slash-outlined": 59223,
|
|
7994
|
+
"bill-management-outlined": 59224,
|
|
7995
|
+
"billing-outlined": 59225,
|
|
7996
|
+
"body-outlined": 59226,
|
|
7997
7997
|
bold: bold,
|
|
7998
|
-
"bolt-outlined":
|
|
7999
|
-
"book-outlined":
|
|
8000
|
-
"bookmark-added-outlined":
|
|
8001
|
-
"bookmark-checked-outlined":
|
|
8002
|
-
"bookmark-outlined":
|
|
8003
|
-
"box-1-outlined":
|
|
8004
|
-
"box-check-outlined":
|
|
8005
|
-
"box-outlined":
|
|
8006
|
-
"bullet-points":
|
|
8007
|
-
"cake-outlined":
|
|
8008
|
-
"calendar-dates-outlined":
|
|
8009
|
-
"calendar-star-outlined":
|
|
8010
|
-
"call-outlined":
|
|
8011
|
-
"call-split-outlined":
|
|
8012
|
-
"camera-outlined":
|
|
7998
|
+
"bolt-outlined": 59228,
|
|
7999
|
+
"book-outlined": 59229,
|
|
8000
|
+
"bookmark-added-outlined": 59230,
|
|
8001
|
+
"bookmark-checked-outlined": 59231,
|
|
8002
|
+
"bookmark-outlined": 59232,
|
|
8003
|
+
"box-1-outlined": 59233,
|
|
8004
|
+
"box-check-outlined": 59234,
|
|
8005
|
+
"box-outlined": 59235,
|
|
8006
|
+
"bullet-points": 59236,
|
|
8007
|
+
"cake-outlined": 59237,
|
|
8008
|
+
"calendar-dates-outlined": 59238,
|
|
8009
|
+
"calendar-star-outlined": 59239,
|
|
8010
|
+
"call-outlined": 59240,
|
|
8011
|
+
"call-split-outlined": 59241,
|
|
8012
|
+
"camera-outlined": 59242,
|
|
8013
8013
|
cancel: cancel,
|
|
8014
|
-
"car-forward-outlined":
|
|
8015
|
-
"cashback-outlined":
|
|
8016
|
-
"charging-station-outlined":
|
|
8017
|
-
"chat-bubble-outlined":
|
|
8018
|
-
"chat-unread-outlined":
|
|
8014
|
+
"car-forward-outlined": 59244,
|
|
8015
|
+
"cashback-outlined": 59245,
|
|
8016
|
+
"charging-station-outlined": 59246,
|
|
8017
|
+
"chat-bubble-outlined": 59247,
|
|
8018
|
+
"chat-unread-outlined": 59248,
|
|
8019
8019
|
checkmark: checkmark,
|
|
8020
|
-
"circle-add-outlined":
|
|
8021
|
-
"circle-cancel-outlined":
|
|
8022
|
-
"circle-down-outlined":
|
|
8023
|
-
"circle-info-outlined":
|
|
8024
|
-
"circle-left-outlined":
|
|
8025
|
-
"circle-ok-outlined":
|
|
8026
|
-
"circle-question-outlined":
|
|
8027
|
-
"circle-remove-outlined":
|
|
8028
|
-
"circle-right-outlined":
|
|
8029
|
-
"circle-up-outlined":
|
|
8030
|
-
"circle-warning-outlined":
|
|
8031
|
-
"clock-2-outlined":
|
|
8032
|
-
"clock-in-outlined":
|
|
8033
|
-
"clock-out-outlined":
|
|
8034
|
-
"clock-outlined":
|
|
8035
|
-
"cog-outlined":
|
|
8036
|
-
"coin-outlined":
|
|
8037
|
-
"coin-super-outlined":
|
|
8038
|
-
"comment-outlined":
|
|
8039
|
-
"contacts-outlined":
|
|
8040
|
-
"contacts-user-outlined":
|
|
8041
|
-
"credit-card-outlined":
|
|
8042
|
-
"cultural-site-outlined":
|
|
8043
|
-
"cup-outlined":
|
|
8044
|
-
"dentistry-outlined":
|
|
8045
|
-
"direction-arrows-outlined":
|
|
8046
|
-
"directory-outlined":
|
|
8047
|
-
"document-outlined":
|
|
8048
|
-
"dollar-box-outlined":
|
|
8049
|
-
"dollar-card-outlined":
|
|
8050
|
-
"dollar-coin-shine-outlined":
|
|
8051
|
-
"dollar-credit-card-outlined":
|
|
8052
|
-
"dollar-sign":
|
|
8053
|
-
"double-buildings-outlined":
|
|
8054
|
-
"double-left-arrows":
|
|
8055
|
-
"double-right-arrows":
|
|
8056
|
-
"download-box-outlined":
|
|
8057
|
-
"download-outlined":
|
|
8058
|
-
"edit-template-outlined":
|
|
8059
|
-
"electronics-outlined":
|
|
8060
|
-
"email-outlined":
|
|
8061
|
-
"end-break-outlined":
|
|
8062
|
-
"enter-arrow":
|
|
8063
|
-
"entertainment-outlined":
|
|
8064
|
-
"envelope-outlined":
|
|
8065
|
-
"evening-outlined":
|
|
8066
|
-
"expense-approval-outlined":
|
|
8067
|
-
"expense-outlined":
|
|
8068
|
-
"explore-outlined":
|
|
8069
|
-
"extension-outlined":
|
|
8070
|
-
"external-link":
|
|
8071
|
-
"eye-invisible-outlined":
|
|
8072
|
-
"eye-outlined":
|
|
8073
|
-
"face-id":
|
|
8074
|
-
"face-meh-outlined":
|
|
8075
|
-
"face-open-smiley-outlined":
|
|
8076
|
-
"face-sad-outlined":
|
|
8077
|
-
"face-smiley-outlined":
|
|
8078
|
-
"fastfood-outlined":
|
|
8079
|
-
"feed-outlined":
|
|
8080
|
-
"file-certified-outlined":
|
|
8081
|
-
"file-clone-outlined":
|
|
8082
|
-
"file-copy-outlined":
|
|
8083
|
-
"file-dispose-outlined":
|
|
8084
|
-
"file-dollar-certified-outlined":
|
|
8085
|
-
"file-dollar-outlined":
|
|
8086
|
-
"file-download-outlined":
|
|
8087
|
-
"file-export-outlined":
|
|
8088
|
-
"file-lock-outlined":
|
|
8089
|
-
"file-outlined":
|
|
8090
|
-
"file-search-outlined":
|
|
8091
|
-
"file-secured-outlined":
|
|
8092
|
-
"file-statutory-outlined":
|
|
8093
|
-
"file-verified-outlined":
|
|
8094
|
-
"filter-outlined":
|
|
8095
|
-
"fitness-outlined":
|
|
8096
|
-
"folder-outlined":
|
|
8097
|
-
"folder-upload-outlined":
|
|
8098
|
-
"folder-user-outlined":
|
|
8099
|
-
"form-outlined":
|
|
8100
|
-
"funnel-filter-outline":
|
|
8101
|
-
"goal-outlined":
|
|
8102
|
-
"graph-outlined":
|
|
8103
|
-
"grocery-outlined":
|
|
8104
|
-
"hand-holding-user-outlined":
|
|
8105
|
-
"handshake-outlined":
|
|
8106
|
-
"happy-sun-outlined":
|
|
8107
|
-
"health-bag-outlined":
|
|
8108
|
-
"heart-outlined":
|
|
8109
|
-
"home-active-outlined":
|
|
8110
|
-
"home-outlined":
|
|
8111
|
-
"id-card-outlined":
|
|
8112
|
-
"image-outlined":
|
|
8113
|
-
"import-outlined":
|
|
8114
|
-
"instapay-outlined":
|
|
8020
|
+
"circle-add-outlined": 59250,
|
|
8021
|
+
"circle-cancel-outlined": 59251,
|
|
8022
|
+
"circle-down-outlined": 59252,
|
|
8023
|
+
"circle-info-outlined": 59253,
|
|
8024
|
+
"circle-left-outlined": 59254,
|
|
8025
|
+
"circle-ok-outlined": 59255,
|
|
8026
|
+
"circle-question-outlined": 59256,
|
|
8027
|
+
"circle-remove-outlined": 59257,
|
|
8028
|
+
"circle-right-outlined": 59258,
|
|
8029
|
+
"circle-up-outlined": 59259,
|
|
8030
|
+
"circle-warning-outlined": 59260,
|
|
8031
|
+
"clock-2-outlined": 59261,
|
|
8032
|
+
"clock-in-outlined": 59262,
|
|
8033
|
+
"clock-out-outlined": 59263,
|
|
8034
|
+
"clock-outlined": 59264,
|
|
8035
|
+
"cog-outlined": 59265,
|
|
8036
|
+
"coin-outlined": 59266,
|
|
8037
|
+
"coin-super-outlined": 59267,
|
|
8038
|
+
"comment-outlined": 59268,
|
|
8039
|
+
"contacts-outlined": 59269,
|
|
8040
|
+
"contacts-user-outlined": 59270,
|
|
8041
|
+
"credit-card-outlined": 59271,
|
|
8042
|
+
"cultural-site-outlined": 59272,
|
|
8043
|
+
"cup-outlined": 59273,
|
|
8044
|
+
"dentistry-outlined": 59274,
|
|
8045
|
+
"direction-arrows-outlined": 59275,
|
|
8046
|
+
"directory-outlined": 59276,
|
|
8047
|
+
"document-outlined": 59277,
|
|
8048
|
+
"dollar-box-outlined": 59278,
|
|
8049
|
+
"dollar-card-outlined": 59279,
|
|
8050
|
+
"dollar-coin-shine-outlined": 59280,
|
|
8051
|
+
"dollar-credit-card-outlined": 59281,
|
|
8052
|
+
"dollar-sign": 59282,
|
|
8053
|
+
"double-buildings-outlined": 59283,
|
|
8054
|
+
"double-left-arrows": 59284,
|
|
8055
|
+
"double-right-arrows": 59285,
|
|
8056
|
+
"download-box-outlined": 59286,
|
|
8057
|
+
"download-outlined": 59287,
|
|
8058
|
+
"edit-template-outlined": 59288,
|
|
8059
|
+
"electronics-outlined": 59289,
|
|
8060
|
+
"email-outlined": 59290,
|
|
8061
|
+
"end-break-outlined": 59291,
|
|
8062
|
+
"enter-arrow": 59292,
|
|
8063
|
+
"entertainment-outlined": 59293,
|
|
8064
|
+
"envelope-outlined": 59294,
|
|
8065
|
+
"evening-outlined": 59295,
|
|
8066
|
+
"expense-approval-outlined": 59296,
|
|
8067
|
+
"expense-outlined": 59297,
|
|
8068
|
+
"explore-outlined": 59298,
|
|
8069
|
+
"extension-outlined": 59299,
|
|
8070
|
+
"external-link": 59300,
|
|
8071
|
+
"eye-invisible-outlined": 59301,
|
|
8072
|
+
"eye-outlined": 59302,
|
|
8073
|
+
"face-id": 59303,
|
|
8074
|
+
"face-meh-outlined": 59304,
|
|
8075
|
+
"face-open-smiley-outlined": 59305,
|
|
8076
|
+
"face-sad-outlined": 59306,
|
|
8077
|
+
"face-smiley-outlined": 59307,
|
|
8078
|
+
"fastfood-outlined": 59308,
|
|
8079
|
+
"feed-outlined": 59309,
|
|
8080
|
+
"file-certified-outlined": 59310,
|
|
8081
|
+
"file-clone-outlined": 59311,
|
|
8082
|
+
"file-copy-outlined": 59312,
|
|
8083
|
+
"file-dispose-outlined": 59313,
|
|
8084
|
+
"file-dollar-certified-outlined": 59314,
|
|
8085
|
+
"file-dollar-outlined": 59315,
|
|
8086
|
+
"file-download-outlined": 59316,
|
|
8087
|
+
"file-export-outlined": 59317,
|
|
8088
|
+
"file-lock-outlined": 59318,
|
|
8089
|
+
"file-outlined": 59319,
|
|
8090
|
+
"file-search-outlined": 59320,
|
|
8091
|
+
"file-secured-outlined": 59321,
|
|
8092
|
+
"file-statutory-outlined": 59322,
|
|
8093
|
+
"file-verified-outlined": 59323,
|
|
8094
|
+
"filter-outlined": 59324,
|
|
8095
|
+
"fitness-outlined": 59325,
|
|
8096
|
+
"folder-outlined": 59326,
|
|
8097
|
+
"folder-upload-outlined": 59327,
|
|
8098
|
+
"folder-user-outlined": 59328,
|
|
8099
|
+
"form-outlined": 59329,
|
|
8100
|
+
"funnel-filter-outline": 59330,
|
|
8101
|
+
"goal-outlined": 59331,
|
|
8102
|
+
"graph-outlined": 59332,
|
|
8103
|
+
"grocery-outlined": 59333,
|
|
8104
|
+
"hand-holding-user-outlined": 59334,
|
|
8105
|
+
"handshake-outlined": 59335,
|
|
8106
|
+
"happy-sun-outlined": 59336,
|
|
8107
|
+
"health-bag-outlined": 59337,
|
|
8108
|
+
"heart-outlined": 59338,
|
|
8109
|
+
"home-active-outlined": 59339,
|
|
8110
|
+
"home-outlined": 59340,
|
|
8111
|
+
"id-card-outlined": 59341,
|
|
8112
|
+
"image-outlined": 59342,
|
|
8113
|
+
"import-outlined": 59343,
|
|
8114
|
+
"instapay-outlined": 59344,
|
|
8115
8115
|
italic: italic,
|
|
8116
|
-
"job-search-outlined":
|
|
8117
|
-
"leave-approval-outlined":
|
|
8118
|
-
"link-1":
|
|
8119
|
-
"link-2":
|
|
8120
|
-
"list-outlined":
|
|
8121
|
-
"live-help-outlined":
|
|
8116
|
+
"job-search-outlined": 59346,
|
|
8117
|
+
"leave-approval-outlined": 59347,
|
|
8118
|
+
"link-1": 59348,
|
|
8119
|
+
"link-2": 59349,
|
|
8120
|
+
"list-outlined": 59350,
|
|
8121
|
+
"live-help-outlined": 59351,
|
|
8122
8122
|
local_mall_outlined: local_mall_outlined,
|
|
8123
|
-
"location-on-outlined":
|
|
8124
|
-
"location-outlined":
|
|
8125
|
-
"lock-outlined":
|
|
8126
|
-
"locked-file-outlined":
|
|
8127
|
-
"log-out":
|
|
8128
|
-
"mail-outlined":
|
|
8129
|
-
"map-outlined":
|
|
8130
|
-
"media-content-outlined":
|
|
8131
|
-
"menu-close":
|
|
8132
|
-
"menu-expand":
|
|
8133
|
-
"menu-fold-outlined":
|
|
8134
|
-
"menu-unfold-outlined":
|
|
8135
|
-
"moneybag-outlined":
|
|
8136
|
-
"moon-outlined":
|
|
8137
|
-
"more-horizontal":
|
|
8138
|
-
"more-vertical":
|
|
8139
|
-
"morning-outlined":
|
|
8140
|
-
"multiple-folders-outlined":
|
|
8141
|
-
"multiple-users-outlined":
|
|
8142
|
-
"near-me-outlined":
|
|
8143
|
-
"node-outlined":
|
|
8144
|
-
"number-points":
|
|
8123
|
+
"location-on-outlined": 59353,
|
|
8124
|
+
"location-outlined": 59354,
|
|
8125
|
+
"lock-outlined": 59355,
|
|
8126
|
+
"locked-file-outlined": 59356,
|
|
8127
|
+
"log-out": 59357,
|
|
8128
|
+
"mail-outlined": 59358,
|
|
8129
|
+
"map-outlined": 59359,
|
|
8130
|
+
"media-content-outlined": 59360,
|
|
8131
|
+
"menu-close": 59361,
|
|
8132
|
+
"menu-expand": 59362,
|
|
8133
|
+
"menu-fold-outlined": 59363,
|
|
8134
|
+
"menu-unfold-outlined": 59364,
|
|
8135
|
+
"moneybag-outlined": 59365,
|
|
8136
|
+
"moon-outlined": 59366,
|
|
8137
|
+
"more-horizontal": 59367,
|
|
8138
|
+
"more-vertical": 59368,
|
|
8139
|
+
"morning-outlined": 59369,
|
|
8140
|
+
"multiple-folders-outlined": 59370,
|
|
8141
|
+
"multiple-users-outlined": 59371,
|
|
8142
|
+
"near-me-outlined": 59372,
|
|
8143
|
+
"node-outlined": 59373,
|
|
8144
|
+
"number-points": 59374,
|
|
8145
8145
|
number: number,
|
|
8146
|
-
"overview-outlined":
|
|
8147
|
-
"park-outlined":
|
|
8148
|
-
"payment-summary-outlined":
|
|
8149
|
-
"payslip-outlined":
|
|
8150
|
-
"pencil-outlined":
|
|
8146
|
+
"overview-outlined": 59376,
|
|
8147
|
+
"park-outlined": 59377,
|
|
8148
|
+
"payment-summary-outlined": 59378,
|
|
8149
|
+
"payslip-outlined": 59379,
|
|
8150
|
+
"pencil-outlined": 59380,
|
|
8151
8151
|
percentage: percentage,
|
|
8152
|
-
"phone-outlined":
|
|
8153
|
-
"piggy-bank-outlined":
|
|
8154
|
-
"plane-outlined":
|
|
8155
|
-
"play-circle-outlined":
|
|
8156
|
-
"print-outlined":
|
|
8157
|
-
"propane-tank-outlined":
|
|
8158
|
-
"qr-code-outlined":
|
|
8159
|
-
"qualification-outlined":
|
|
8160
|
-
"re-assign":
|
|
8152
|
+
"phone-outlined": 59382,
|
|
8153
|
+
"piggy-bank-outlined": 59383,
|
|
8154
|
+
"plane-outlined": 59384,
|
|
8155
|
+
"play-circle-outlined": 59385,
|
|
8156
|
+
"print-outlined": 59386,
|
|
8157
|
+
"propane-tank-outlined": 59387,
|
|
8158
|
+
"qr-code-outlined": 59388,
|
|
8159
|
+
"qualification-outlined": 59389,
|
|
8160
|
+
"re-assign": 59390,
|
|
8161
8161
|
redeem: redeem,
|
|
8162
8162
|
refresh: refresh,
|
|
8163
8163
|
remove: remove,
|
|
8164
|
-
"reply-outlined":
|
|
8164
|
+
"reply-outlined": 59394,
|
|
8165
8165
|
restart: restart,
|
|
8166
|
-
"restaurant-outlined":
|
|
8167
|
-
"resume-outlined":
|
|
8168
|
-
"return-arrow":
|
|
8169
|
-
"rostering-outlined":
|
|
8170
|
-
"safety-outlined":
|
|
8171
|
-
"save-outlined":
|
|
8172
|
-
"schedule-outlined":
|
|
8173
|
-
"search-outlined":
|
|
8174
|
-
"search-secured-outlined":
|
|
8175
|
-
"send-outlined":
|
|
8176
|
-
"share-1":
|
|
8177
|
-
"share-2":
|
|
8178
|
-
"share-outlined-2":
|
|
8179
|
-
"share-outlined":
|
|
8180
|
-
"shop-outlined":
|
|
8166
|
+
"restaurant-outlined": 59396,
|
|
8167
|
+
"resume-outlined": 59397,
|
|
8168
|
+
"return-arrow": 59398,
|
|
8169
|
+
"rostering-outlined": 59399,
|
|
8170
|
+
"safety-outlined": 59400,
|
|
8171
|
+
"save-outlined": 59401,
|
|
8172
|
+
"schedule-outlined": 59402,
|
|
8173
|
+
"search-outlined": 59403,
|
|
8174
|
+
"search-secured-outlined": 59404,
|
|
8175
|
+
"send-outlined": 59405,
|
|
8176
|
+
"share-1": 59406,
|
|
8177
|
+
"share-2": 59407,
|
|
8178
|
+
"share-outlined-2": 59408,
|
|
8179
|
+
"share-outlined": 59409,
|
|
8180
|
+
"shop-outlined": 59410,
|
|
8181
8181
|
shopping_basket_outlined: shopping_basket_outlined,
|
|
8182
|
-
"show-chart-outlined":
|
|
8183
|
-
"single-down-arrow":
|
|
8184
|
-
"single-left-arrow":
|
|
8185
|
-
"single-right-arrow":
|
|
8186
|
-
"single-up-arrow":
|
|
8187
|
-
"smart-match-outlined":
|
|
8188
|
-
"sparkle-outlined":
|
|
8189
|
-
"speaker-active-outlined":
|
|
8190
|
-
"speaker-outlined":
|
|
8191
|
-
"star-circle-outlined":
|
|
8192
|
-
"star-outlined":
|
|
8193
|
-
"start-break-outlined":
|
|
8194
|
-
"stash-outlined":
|
|
8195
|
-
"stopwatch-outlined":
|
|
8182
|
+
"show-chart-outlined": 59412,
|
|
8183
|
+
"single-down-arrow": 59413,
|
|
8184
|
+
"single-left-arrow": 59414,
|
|
8185
|
+
"single-right-arrow": 59415,
|
|
8186
|
+
"single-up-arrow": 59416,
|
|
8187
|
+
"smart-match-outlined": 59417,
|
|
8188
|
+
"sparkle-outlined": 59418,
|
|
8189
|
+
"speaker-active-outlined": 59419,
|
|
8190
|
+
"speaker-outlined": 59420,
|
|
8191
|
+
"star-circle-outlined": 59421,
|
|
8192
|
+
"star-outlined": 59422,
|
|
8193
|
+
"start-break-outlined": 59423,
|
|
8194
|
+
"stash-outlined": 59424,
|
|
8195
|
+
"stopwatch-outlined": 59425,
|
|
8196
8196
|
strikethrough: strikethrough,
|
|
8197
|
-
"styler-outlined":
|
|
8198
|
-
"suitcase-clock-outlined":
|
|
8199
|
-
"suitcase-outlined":
|
|
8200
|
-
"survey-outlined":
|
|
8201
|
-
"switch-outlined":
|
|
8197
|
+
"styler-outlined": 59427,
|
|
8198
|
+
"suitcase-clock-outlined": 59428,
|
|
8199
|
+
"suitcase-outlined": 59429,
|
|
8200
|
+
"survey-outlined": 59430,
|
|
8201
|
+
"switch-outlined": 59431,
|
|
8202
8202
|
sync: sync,
|
|
8203
|
-
"tag-outlined":
|
|
8204
|
-
"target-outlined":
|
|
8205
|
-
"tennis-outlined":
|
|
8206
|
-
"thumb-down-outlined":
|
|
8207
|
-
"ticket-outlined":
|
|
8208
|
-
"timesheet-outlined":
|
|
8209
|
-
"timesheets-outlined":
|
|
8210
|
-
"today-outlined":
|
|
8203
|
+
"tag-outlined": 59433,
|
|
8204
|
+
"target-outlined": 59434,
|
|
8205
|
+
"tennis-outlined": 59435,
|
|
8206
|
+
"thumb-down-outlined": 59436,
|
|
8207
|
+
"ticket-outlined": 59437,
|
|
8208
|
+
"timesheet-outlined": 59438,
|
|
8209
|
+
"timesheets-outlined": 59439,
|
|
8210
|
+
"today-outlined": 59440,
|
|
8211
8211
|
transfer: transfer,
|
|
8212
|
-
"transportation-outlined":
|
|
8213
|
-
"trash-bin-outlined":
|
|
8214
|
-
"umbrela-outlined":
|
|
8215
|
-
"unavailability-outlined":
|
|
8212
|
+
"transportation-outlined": 59442,
|
|
8213
|
+
"trash-bin-outlined": 59443,
|
|
8214
|
+
"umbrela-outlined": 59444,
|
|
8215
|
+
"unavailability-outlined": 59445,
|
|
8216
8216
|
unavailable: unavailable,
|
|
8217
8217
|
underline: underline,
|
|
8218
|
-
"union-outlined":
|
|
8219
|
-
"unlock-outlined":
|
|
8220
|
-
"upload-outlined":
|
|
8221
|
-
"user-circle-outlined":
|
|
8222
|
-
"user-gear-outlined":
|
|
8223
|
-
"user-outlined":
|
|
8224
|
-
"user-rectangle-outlined":
|
|
8225
|
-
"video-1-outlined":
|
|
8226
|
-
"video-2-outlined":
|
|
8227
|
-
"volunteer-outlined":
|
|
8228
|
-
"wallet-outlined":
|
|
8229
|
-
"wellness-outlined":
|
|
8218
|
+
"union-outlined": 59448,
|
|
8219
|
+
"unlock-outlined": 59449,
|
|
8220
|
+
"upload-outlined": 59450,
|
|
8221
|
+
"user-circle-outlined": 59451,
|
|
8222
|
+
"user-gear-outlined": 59452,
|
|
8223
|
+
"user-outlined": 59453,
|
|
8224
|
+
"user-rectangle-outlined": 59454,
|
|
8225
|
+
"video-1-outlined": 59455,
|
|
8226
|
+
"video-2-outlined": 59456,
|
|
8227
|
+
"volunteer-outlined": 59457,
|
|
8228
|
+
"wallet-outlined": 59458,
|
|
8229
|
+
"wellness-outlined": 59459
|
|
8230
8230
|
};
|
|
8231
8231
|
|
|
8232
8232
|
var HeroIcon = createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
|
|
@@ -8402,12 +8402,12 @@ var Container$1 = index$a(View)(function (_ref) {
|
|
|
8402
8402
|
_ref$themeVariant = _ref.themeVariant,
|
|
8403
8403
|
themeVariant = _ref$themeVariant === void 0 ? 'rounded' : _ref$themeVariant,
|
|
8404
8404
|
themeIntent = _ref.themeIntent;
|
|
8405
|
-
return {
|
|
8405
|
+
return _objectSpread2({
|
|
8406
8406
|
borderRadius: themeVariant === 'rounded' ? theme.__hd__.alert.radii["default"] : 0,
|
|
8407
8407
|
backgroundColor: theme.__hd__.alert.colors.backgrounds[themeIntent],
|
|
8408
8408
|
minHeight: theme.__hd__.alert.sizes.height,
|
|
8409
8409
|
flexDirection: 'row'
|
|
8410
|
-
};
|
|
8410
|
+
}, theme.__hd__.alert.shadows.wrapper);
|
|
8411
8411
|
});
|
|
8412
8412
|
var IconContainer$1 = index$a(View)(function (_ref2) {
|
|
8413
8413
|
var theme = _ref2.theme;
|
|
@@ -8416,7 +8416,7 @@ var IconContainer$1 = index$a(View)(function (_ref2) {
|
|
|
8416
8416
|
paddingLeft: theme.__hd__.alert.space.iconLeftPadding
|
|
8417
8417
|
};
|
|
8418
8418
|
});
|
|
8419
|
-
var StyledIcon$
|
|
8419
|
+
var StyledIcon$5 = index$a(Icon)(function (_ref3) {
|
|
8420
8420
|
var theme = _ref3.theme,
|
|
8421
8421
|
themeIntent = _ref3.themeIntent;
|
|
8422
8422
|
return {
|
|
@@ -8475,7 +8475,7 @@ var AlertIcon = function AlertIcon(_ref) {
|
|
|
8475
8475
|
intent = _ref.intent;
|
|
8476
8476
|
return icon ? /*#__PURE__*/React__default.createElement(IconContainer$1, {
|
|
8477
8477
|
testID: "alert-left-icon"
|
|
8478
|
-
}, /*#__PURE__*/React__default.createElement(StyledIcon$
|
|
8478
|
+
}, /*#__PURE__*/React__default.createElement(StyledIcon$5, {
|
|
8479
8479
|
icon: icon,
|
|
8480
8480
|
size: "small",
|
|
8481
8481
|
themeIntent: intent
|
|
@@ -8516,7 +8516,7 @@ var Alert = function Alert(_ref2) {
|
|
|
8516
8516
|
}, typeof actionLabel === 'string' ? /*#__PURE__*/React__default.createElement(StyledBody$1, {
|
|
8517
8517
|
variant: "small-bold",
|
|
8518
8518
|
themeIntent: intent
|
|
8519
|
-
}, actionLabel) : /*#__PURE__*/React__default.createElement(StyledIcon$
|
|
8519
|
+
}, actionLabel) : /*#__PURE__*/React__default.createElement(StyledIcon$5, {
|
|
8520
8520
|
icon: "cancel",
|
|
8521
8521
|
size: "small",
|
|
8522
8522
|
themeIntent: intent
|
|
@@ -8967,7 +8967,7 @@ var StyledTextWrapper$1 = index$a(View)(function () {
|
|
|
8967
8967
|
height: '100%'
|
|
8968
8968
|
};
|
|
8969
8969
|
});
|
|
8970
|
-
var StyledText$2 = index$a(Typography.
|
|
8970
|
+
var StyledText$2 = index$a(Typography.Body)(function (_ref2) {
|
|
8971
8971
|
var themeSize = _ref2.themeSize,
|
|
8972
8972
|
theme = _ref2.theme;
|
|
8973
8973
|
return _objectSpread2({
|
|
@@ -9495,7 +9495,7 @@ var StyledStatus = index$a(Animated.View)(function (_ref3) {
|
|
|
9495
9495
|
borderRadius: theme.radii.rounded
|
|
9496
9496
|
};
|
|
9497
9497
|
});
|
|
9498
|
-
var StyledIcon$
|
|
9498
|
+
var StyledIcon$4 = index$a(Icon)(function (_ref4) {
|
|
9499
9499
|
var themeSize = _ref4.themeSize,
|
|
9500
9500
|
theme = _ref4.theme;
|
|
9501
9501
|
return {
|
|
@@ -9603,7 +9603,7 @@ var Badge = function Badge(_ref) {
|
|
|
9603
9603
|
}]
|
|
9604
9604
|
}, style],
|
|
9605
9605
|
testID: testID
|
|
9606
|
-
}), isIconBadge ? /*#__PURE__*/React__default.createElement(StyledIcon$
|
|
9606
|
+
}), isIconBadge ? /*#__PURE__*/React__default.createElement(StyledIcon$4, {
|
|
9607
9607
|
icon: icon,
|
|
9608
9608
|
themeSize: size,
|
|
9609
9609
|
intent: "text-inverted"
|
|
@@ -9636,18 +9636,15 @@ var ContentWrapper = index$a(View)({
|
|
|
9636
9636
|
var BottomBarWrapper = index$a(View)(function (_ref2) {
|
|
9637
9637
|
var themeInsets = _ref2.themeInsets,
|
|
9638
9638
|
theme = _ref2.theme;
|
|
9639
|
-
return {
|
|
9639
|
+
return _objectSpread2({
|
|
9640
9640
|
height: theme.__hd__.bottomNavigation.sizes.height + themeInsets.bottom,
|
|
9641
9641
|
paddingBottom: themeInsets.bottom,
|
|
9642
9642
|
paddingLeft: Math.max(themeInsets.left, themeInsets.right),
|
|
9643
9643
|
paddingRight: Math.max(themeInsets.left, themeInsets.right),
|
|
9644
9644
|
backgroundColor: theme.__hd__.bottomNavigation.colors.background,
|
|
9645
|
-
|
|
9646
|
-
|
|
9647
|
-
|
|
9648
|
-
shadowRadius: theme.__hd__.bottomNavigation.shadows.radius,
|
|
9649
|
-
elevation: theme.__hd__.bottomNavigation.shadows.elevation
|
|
9650
|
-
};
|
|
9645
|
+
borderTopColor: theme.__hd__.bottomNavigation.colors.borderTop,
|
|
9646
|
+
borderTopWidth: theme.__hd__.bottomNavigation.borderWidths.borderTop
|
|
9647
|
+
}, theme.__hd__.bottomNavigation.shadows.wrapper);
|
|
9651
9648
|
});
|
|
9652
9649
|
var BottomBar = index$a(View)({
|
|
9653
9650
|
flex: 1,
|
|
@@ -9799,11 +9796,6 @@ var StyledFloatingBottomSheet = index$a(Animated.View)(function (_ref2) {
|
|
|
9799
9796
|
var theme = _ref2.theme;
|
|
9800
9797
|
return {
|
|
9801
9798
|
width: '100%',
|
|
9802
|
-
shadowColor: theme.__hd__.bottomSheet.colors.shadow,
|
|
9803
|
-
shadowOffset: theme.__hd__.bottomSheet.shadows.offset,
|
|
9804
|
-
shadowOpacity: theme.__hd__.bottomSheet.shadows.opacity,
|
|
9805
|
-
shadowRadius: theme.__hd__.bottomSheet.shadows.radius,
|
|
9806
|
-
elevation: theme.__hd__.bottomSheet.shadows.elevation,
|
|
9807
9799
|
backgroundColor: theme.__hd__.bottomSheet.colors.background,
|
|
9808
9800
|
borderRadius: theme.__hd__.bottomSheet.radii.floating,
|
|
9809
9801
|
maxHeight: '100%',
|
|
@@ -9817,11 +9809,6 @@ var StyledBottomSheet = index$a(AnimatedSafeAreaView)(function (_ref3) {
|
|
|
9817
9809
|
borderTopRightRadius: theme.__hd__.bottomSheet.radii["default"],
|
|
9818
9810
|
backgroundColor: theme.__hd__.bottomSheet.colors.background,
|
|
9819
9811
|
width: '100%',
|
|
9820
|
-
shadowColor: theme.__hd__.bottomSheet.colors.shadow,
|
|
9821
|
-
shadowOffset: theme.__hd__.bottomSheet.shadows.offset,
|
|
9822
|
-
shadowOpacity: theme.__hd__.bottomSheet.shadows.opacity,
|
|
9823
|
-
shadowRadius: theme.__hd__.bottomSheet.shadows.radius,
|
|
9824
|
-
elevation: theme.__hd__.bottomSheet.shadows.elevation,
|
|
9825
9812
|
maxHeight: '94%'
|
|
9826
9813
|
};
|
|
9827
9814
|
});
|
|
@@ -13179,8 +13166,8 @@ var setStartOrEndDate = function setStartOrEndDate(_ref2) {
|
|
|
13179
13166
|
var date = _ref2.date,
|
|
13180
13167
|
startDate = _ref2.startDate,
|
|
13181
13168
|
endDate = _ref2.endDate;
|
|
13182
|
-
// Prevent selecting same date
|
|
13183
|
-
if (isEqDate(date, startDate) || isEqDate(date, endDate)) {
|
|
13169
|
+
// Prevent selecting same date when both dates are set
|
|
13170
|
+
if (startDate && endDate && (isEqDate(date, startDate) || isEqDate(date, endDate))) {
|
|
13184
13171
|
return {
|
|
13185
13172
|
startDate: startDate,
|
|
13186
13173
|
endDate: endDate
|
|
@@ -13349,7 +13336,7 @@ var CalendarRange = function CalendarRange(_ref) {
|
|
|
13349
13336
|
if (isEqDate(value === null || value === void 0 ? void 0 : value.startDate, date) || isEqDate(value === null || value === void 0 ? void 0 : value.endDate, date)) {
|
|
13350
13337
|
return /*#__PURE__*/React__default.createElement(SelectedDate, {
|
|
13351
13338
|
isStart: isEqDate(date, value === null || value === void 0 ? void 0 : value.startDate),
|
|
13352
|
-
showConnector: !!(value !== null && value !== void 0 && value.startDate) && !!(value !== null && value !== void 0 && value.endDate),
|
|
13339
|
+
showConnector: !!(value !== null && value !== void 0 && value.startDate) && !!(value !== null && value !== void 0 && value.endDate) && !isEqDate(value.startDate, value.endDate),
|
|
13353
13340
|
key: date.toDateString(),
|
|
13354
13341
|
date: date,
|
|
13355
13342
|
onPress: function onPress() {
|
|
@@ -16258,7 +16245,7 @@ var StyledActionItemText = index$a(Typography.Body)(function (_ref2) {
|
|
|
16258
16245
|
color: theme.__hd__.fab.colors.actionItemText
|
|
16259
16246
|
};
|
|
16260
16247
|
});
|
|
16261
|
-
var StyledIcon$
|
|
16248
|
+
var StyledIcon$3 = index$a(Icon)(function (_ref3) {
|
|
16262
16249
|
var theme = _ref3.theme;
|
|
16263
16250
|
return {
|
|
16264
16251
|
color: theme.__hd__.fab.colors.actionItemText
|
|
@@ -16269,7 +16256,7 @@ var AnimatedTouchableHighlight = Animated.createAnimatedComponent(TouchableOpaci
|
|
|
16269
16256
|
var StyledFAB$2 = index$a(AnimatedTouchableHighlight)(function (_ref) {
|
|
16270
16257
|
var theme = _ref.theme,
|
|
16271
16258
|
themeActive = _ref.themeActive;
|
|
16272
|
-
return {
|
|
16259
|
+
return _objectSpread2({
|
|
16273
16260
|
backgroundColor: themeActive ? theme.__hd__.fab.colors.buttonActiveBackground : theme.__hd__.fab.colors.buttonBackground,
|
|
16274
16261
|
borderRadius: theme.radii.rounded,
|
|
16275
16262
|
alignItems: 'center',
|
|
@@ -16277,13 +16264,8 @@ var StyledFAB$2 = index$a(AnimatedTouchableHighlight)(function (_ref) {
|
|
|
16277
16264
|
alignSelf: 'flex-start',
|
|
16278
16265
|
padding: theme.__hd__.fab.space.containerPadding,
|
|
16279
16266
|
flexDirection: 'row',
|
|
16280
|
-
elevation: theme.__hd__.fab.shadows.elevation,
|
|
16281
|
-
shadowColor: theme.__hd__.fab.shadows.color,
|
|
16282
|
-
shadowOffset: theme.__hd__.fab.shadows.offset,
|
|
16283
|
-
shadowRadius: theme.__hd__.fab.shadows.radius,
|
|
16284
|
-
shadowOpacity: theme.__hd__.fab.shadows.opacity,
|
|
16285
16267
|
height: theme.__hd__.fab.sizes.height
|
|
16286
|
-
};
|
|
16268
|
+
}, theme.__hd__.fab.shadows["default"]);
|
|
16287
16269
|
});
|
|
16288
16270
|
var StyledFABIcon = index$a(Icon)(function (_ref2) {
|
|
16289
16271
|
var theme = _ref2.theme;
|
|
@@ -16347,7 +16329,7 @@ var ActionItem = function ActionItem(_ref) {
|
|
|
16347
16329
|
style: style,
|
|
16348
16330
|
onPress: onPress,
|
|
16349
16331
|
testID: testID
|
|
16350
|
-
}, /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(StyledIconContainer, null, /*#__PURE__*/React__default.createElement(StyledIcon$
|
|
16332
|
+
}, /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(StyledIconContainer, null, /*#__PURE__*/React__default.createElement(StyledIcon$3, {
|
|
16351
16333
|
size: "xsmall",
|
|
16352
16334
|
icon: icon
|
|
16353
16335
|
})), /*#__PURE__*/React__default.createElement(StyledActionItemText, null, title))));
|
|
@@ -16579,7 +16561,7 @@ var StyledBackdrop = index$a(AnimatedPressable)(function (_ref2) {
|
|
|
16579
16561
|
right: 0,
|
|
16580
16562
|
top: 0,
|
|
16581
16563
|
bottom: 0,
|
|
16582
|
-
opacity: 0.
|
|
16564
|
+
opacity: 0.4,
|
|
16583
16565
|
backgroundColor: theme.__hd__.fab.colors.backdropBackground
|
|
16584
16566
|
};
|
|
16585
16567
|
});
|
|
@@ -16756,17 +16738,12 @@ var Container = index$a(Animated.View)(function (_ref2) {
|
|
|
16756
16738
|
var theme = _ref2.theme,
|
|
16757
16739
|
themeVariant = _ref2.themeVariant,
|
|
16758
16740
|
themeIntent = _ref2.themeIntent;
|
|
16759
|
-
return {
|
|
16741
|
+
return _objectSpread2({
|
|
16760
16742
|
borderRadius: themeVariant === 'round' ? theme.__hd__.toast.radii["default"] : 0,
|
|
16761
16743
|
backgroundColor: theme.__hd__.toast.colors.backgrounds[themeIntent],
|
|
16762
16744
|
minHeight: theme.__hd__.toast.sizes.height,
|
|
16763
|
-
flexDirection: 'row'
|
|
16764
|
-
|
|
16765
|
-
shadowOffset: theme.__hd__.toast.shadows.offset,
|
|
16766
|
-
shadowRadius: theme.__hd__.toast.shadows.radius,
|
|
16767
|
-
shadowOpacity: theme.__hd__.toast.shadows.opacity,
|
|
16768
|
-
elevation: theme.__hd__.toast.shadows.elevation
|
|
16769
|
-
};
|
|
16745
|
+
flexDirection: 'row'
|
|
16746
|
+
}, theme.__hd__.toast.shadows.wrapper);
|
|
16770
16747
|
});
|
|
16771
16748
|
var IconContainer = index$a(View)(function (_ref3) {
|
|
16772
16749
|
var theme = _ref3.theme;
|
|
@@ -16807,7 +16784,7 @@ var StyledBody = index$a(Typography.Body)(function (_ref7) {
|
|
|
16807
16784
|
color: theme.__hd__.toast.colors.texts[themeIntent]
|
|
16808
16785
|
};
|
|
16809
16786
|
});
|
|
16810
|
-
var StyledIcon$
|
|
16787
|
+
var StyledIcon$2 = index$a(Icon)(function (_ref8) {
|
|
16811
16788
|
var theme = _ref8.theme,
|
|
16812
16789
|
themeIntent = _ref8.themeIntent;
|
|
16813
16790
|
return {
|
|
@@ -16860,7 +16837,7 @@ var ToastIcon = function ToastIcon(_ref) {
|
|
|
16860
16837
|
icon = _ref.icon;
|
|
16861
16838
|
return icon ? /*#__PURE__*/React__default.createElement(IconContainer, {
|
|
16862
16839
|
testID: "toast-left-icon"
|
|
16863
|
-
}, /*#__PURE__*/React__default.createElement(StyledIcon$
|
|
16840
|
+
}, /*#__PURE__*/React__default.createElement(StyledIcon$2, {
|
|
16864
16841
|
icon: icon,
|
|
16865
16842
|
size: "small",
|
|
16866
16843
|
themeIntent: themeIntent
|
|
@@ -17112,15 +17089,19 @@ var StyledContent = index$a(View)(function (_ref2) {
|
|
|
17112
17089
|
alignItems: 'center'
|
|
17113
17090
|
};
|
|
17114
17091
|
});
|
|
17115
|
-
var StyledBadge$1 = index$a(
|
|
17092
|
+
var StyledBadge$1 = index$a(View)(function (_ref3) {
|
|
17116
17093
|
var theme = _ref3.theme;
|
|
17117
17094
|
return {
|
|
17118
17095
|
right: theme.__hd__.mapPin.space.iconRight,
|
|
17119
17096
|
top: theme.__hd__.mapPin.space.iconTop,
|
|
17120
17097
|
position: 'absolute',
|
|
17121
17098
|
backgroundColor: theme.__hd__.mapPin.colors.badge,
|
|
17122
|
-
|
|
17123
|
-
zIndex: 2
|
|
17099
|
+
borderRadius: theme.__hd__.mapPin.radii.badge,
|
|
17100
|
+
zIndex: 2,
|
|
17101
|
+
alignItems: 'center',
|
|
17102
|
+
justifyContent: 'center',
|
|
17103
|
+
width: theme.__hd__.mapPin.sizes.badge,
|
|
17104
|
+
height: theme.__hd__.mapPin.sizes.badge
|
|
17124
17105
|
};
|
|
17125
17106
|
});
|
|
17126
17107
|
var StyledImage = index$a.Image(function (_ref4) {
|
|
@@ -17131,6 +17112,18 @@ var StyledImage = index$a.Image(function (_ref4) {
|
|
|
17131
17112
|
borderRadius: theme.__hd__.mapPin.radii["default"] - theme.__hd__.mapPin.borderWidths["default"]
|
|
17132
17113
|
};
|
|
17133
17114
|
});
|
|
17115
|
+
var StyledIcon$1 = index$a(Icon)(function (_ref5) {
|
|
17116
|
+
var theme = _ref5.theme;
|
|
17117
|
+
return {
|
|
17118
|
+
color: theme.__hd__.mapPin.colors.icon
|
|
17119
|
+
};
|
|
17120
|
+
});
|
|
17121
|
+
var StyledBadgeIcon = index$a(Icon)(function (_ref6) {
|
|
17122
|
+
var theme = _ref6.theme;
|
|
17123
|
+
return {
|
|
17124
|
+
color: theme.__hd__.mapPin.colors.badgeIcon
|
|
17125
|
+
};
|
|
17126
|
+
});
|
|
17134
17127
|
function hexToRgba(hex, a) {
|
|
17135
17128
|
var arrBuff = new ArrayBuffer(4);
|
|
17136
17129
|
var vw = new DataView(arrBuff);
|
|
@@ -17142,8 +17135,8 @@ function hexToRgba(hex, a) {
|
|
|
17142
17135
|
b = _arrByte[2];
|
|
17143
17136
|
return "rgba(".concat(r, ",").concat(g, ",").concat(b, ",").concat(a, ")");
|
|
17144
17137
|
}
|
|
17145
|
-
var StyledFocusIcon = index$a(Icon)(function (
|
|
17146
|
-
var theme =
|
|
17138
|
+
var StyledFocusIcon = index$a(Icon)(function (_ref7) {
|
|
17139
|
+
var theme = _ref7.theme;
|
|
17147
17140
|
return {
|
|
17148
17141
|
fontSize: theme.__hd__.mapPin.fontSizes.icon,
|
|
17149
17142
|
textShadowColor: hexToRgba(theme.__hd__.mapPin.shadows.color, theme.__hd__.mapPin.shadows.opacity),
|
|
@@ -17191,16 +17184,16 @@ var MapPin = function MapPin(_ref) {
|
|
|
17191
17184
|
themeState: state
|
|
17192
17185
|
}, image && /*#__PURE__*/React__default.createElement(StyledImage, _extends$1({
|
|
17193
17186
|
testID: testID ? "".concat(testID, "-image") : undefined
|
|
17194
|
-
}, image)), icon && /*#__PURE__*/React__default.createElement(
|
|
17187
|
+
}, image)), icon && /*#__PURE__*/React__default.createElement(StyledIcon$1, {
|
|
17195
17188
|
icon: icon,
|
|
17196
17189
|
size: "xsmall",
|
|
17197
|
-
intent: "text",
|
|
17198
17190
|
testID: testID ? "".concat(testID, "-icon") : undefined
|
|
17199
17191
|
})), badgeIcon && /*#__PURE__*/React__default.createElement(StyledBadge$1, {
|
|
17200
|
-
icon: badgeIcon,
|
|
17201
|
-
intent: "primary",
|
|
17202
17192
|
testID: testID ? "".concat(testID, "-badge") : undefined
|
|
17203
|
-
}
|
|
17193
|
+
}, /*#__PURE__*/React__default.createElement(StyledBadgeIcon, {
|
|
17194
|
+
icon: badgeIcon,
|
|
17195
|
+
size: "xxxsmall"
|
|
17196
|
+
})));
|
|
17204
17197
|
};
|
|
17205
17198
|
var index$6 = Object.assign(MapPin, {
|
|
17206
17199
|
Focussed: MapPinFocussed
|
|
@@ -17223,13 +17216,8 @@ var StyledListItemContainer$1 = index$a(TouchableHighlight)(function (_ref) {
|
|
|
17223
17216
|
return sharedStyles;
|
|
17224
17217
|
case 'card':
|
|
17225
17218
|
return _objectSpread2(_objectSpread2({}, sharedStyles), {}, {
|
|
17226
|
-
alignItems: 'center'
|
|
17227
|
-
|
|
17228
|
-
shadowRadius: theme.__hd__.list.shadows.card.radius,
|
|
17229
|
-
shadowOffset: theme.__hd__.list.shadows.card.offset,
|
|
17230
|
-
shadowOpacity: theme.__hd__.list.shadows.card.opacity,
|
|
17231
|
-
elevation: theme.__hd__.list.shadows.card.elevation
|
|
17232
|
-
});
|
|
17219
|
+
alignItems: 'center'
|
|
17220
|
+
}, theme.__hd__.list.shadows.card);
|
|
17233
17221
|
default:
|
|
17234
17222
|
return sharedStyles;
|
|
17235
17223
|
}
|
|
@@ -40173,12 +40161,7 @@ var StyledInputContainer = index$a(View)(function (_ref) {
|
|
|
40173
40161
|
borderRadius: theme.__hd__.search.radii.container,
|
|
40174
40162
|
borderWidth: borderWidth,
|
|
40175
40163
|
borderColor: themeFocused ? theme.__hd__.search.colors[themeVariant].focusedBorder : theme.__hd__.search.colors[themeVariant].border
|
|
40176
|
-
}, themeVariant === 'reversed' && {
|
|
40177
|
-
elevation: theme.__hd__.search.shadows.elevation,
|
|
40178
|
-
shadowOffset: theme.__hd__.search.shadows.offset,
|
|
40179
|
-
shadowOpacity: theme.__hd__.search.shadows.opacity,
|
|
40180
|
-
shadowRadius: theme.__hd__.search.shadows.radius
|
|
40181
|
-
});
|
|
40164
|
+
}, themeVariant === 'reversed' && _objectSpread2({}, theme.__hd__.search.shadows.container));
|
|
40182
40165
|
});
|
|
40183
40166
|
var StyledAffixContainer = index$a(View)(function (_ref2) {
|
|
40184
40167
|
var theme = _ref2.theme;
|