@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/lib/index.js
CHANGED
|
@@ -1938,8 +1938,10 @@ var globalPalette$1 = {
|
|
|
1938
1938
|
archived: palette$9.silverChalice,
|
|
1939
1939
|
mutedArchived: palette$9.silverChaliceLight20,
|
|
1940
1940
|
archivedSurface: palette$9.cumberlandFog,
|
|
1941
|
-
onArchivedSurface: palette$9.windsorGrey
|
|
1941
|
+
onArchivedSurface: palette$9.windsorGrey,
|
|
1942
1942
|
// End of Updated 21 / Nov / 22
|
|
1943
|
+
black: '#000000',
|
|
1944
|
+
white: '#ffffff'
|
|
1943
1945
|
};
|
|
1944
1946
|
|
|
1945
1947
|
var swagBrandSystemPallete$1 = {
|
|
@@ -1953,6 +1955,9 @@ var swagBrandSystemPallete$1 = {
|
|
|
1953
1955
|
decorativePrimary: palette$4.white,
|
|
1954
1956
|
decorativePrimarySurface: palette$4.maasstrichtBlueLight80
|
|
1955
1957
|
};
|
|
1958
|
+
/**
|
|
1959
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
1960
|
+
*/
|
|
1956
1961
|
var swagSystemPalette$1 = _objectSpread2(_objectSpread2({}, globalPalette$1), swagBrandSystemPallete$1);
|
|
1957
1962
|
|
|
1958
1963
|
var globalPalette = {
|
|
@@ -2007,6 +2012,9 @@ var swagDarkBrandSystemPalette = {
|
|
|
2007
2012
|
decorativePrimary: palette$2.maasstrichtBlue,
|
|
2008
2013
|
decorativePrimarySurface: palette$2.maasstrichtBlueLight10
|
|
2009
2014
|
};
|
|
2015
|
+
/**
|
|
2016
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
2017
|
+
*/
|
|
2010
2018
|
var swagDarkSystemPalette = _objectSpread2(_objectSpread2(_objectSpread2({}, globalPalette), swagDarkBrandSystemPalette), {}, {
|
|
2011
2019
|
// Theme Mode
|
|
2012
2020
|
themeMode: 'dark'
|
|
@@ -2057,6 +2065,9 @@ var workBrandSystemPallete = {
|
|
|
2057
2065
|
decorativePrimary: palette.gold,
|
|
2058
2066
|
decorativePrimarySurface: palette.goldLight80
|
|
2059
2067
|
};
|
|
2068
|
+
/**
|
|
2069
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
2070
|
+
*/
|
|
2060
2071
|
var workSystemPalette = _objectSpread2(_objectSpread2({}, swagSystemPalette$1), workBrandSystemPallete);
|
|
2061
2072
|
|
|
2062
2073
|
var jobsBrandSystemPallete = {
|
|
@@ -2070,6 +2081,9 @@ var jobsBrandSystemPallete = {
|
|
|
2070
2081
|
decorativePrimary: palette$5.hitPink,
|
|
2071
2082
|
decorativePrimarySurface: palette$5.hitPinkLight80
|
|
2072
2083
|
};
|
|
2084
|
+
/**
|
|
2085
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
2086
|
+
*/
|
|
2073
2087
|
var jobsSystemPalette = _objectSpread2(_objectSpread2({}, swagSystemPalette$1), jobsBrandSystemPallete);
|
|
2074
2088
|
|
|
2075
2089
|
var walletBrandSystemPallete = {
|
|
@@ -2083,6 +2097,9 @@ var walletBrandSystemPallete = {
|
|
|
2083
2097
|
decorativePrimary: palette$1.frenchSky,
|
|
2084
2098
|
decorativePrimarySurface: palette$1.frenchSkyLight80
|
|
2085
2099
|
};
|
|
2100
|
+
/**
|
|
2101
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
2102
|
+
*/
|
|
2086
2103
|
var walletSystemPalette = _objectSpread2(_objectSpread2({}, swagSystemPalette$1), walletBrandSystemPallete);
|
|
2087
2104
|
|
|
2088
2105
|
var eBensBrandSystemPallete = {
|
|
@@ -2096,6 +2113,9 @@ var eBensBrandSystemPallete = {
|
|
|
2096
2113
|
decorativePrimary: palette$6.mauve,
|
|
2097
2114
|
decorativePrimarySurface: palette$6.mauveLight80
|
|
2098
2115
|
};
|
|
2116
|
+
/**
|
|
2117
|
+
* @deprecated This palette is deprecated and will be removed in the next major release.
|
|
2118
|
+
*/
|
|
2099
2119
|
var eBensSystemPalette = _objectSpread2(_objectSpread2({}, swagSystemPalette$1), eBensBrandSystemPallete);
|
|
2100
2120
|
|
|
2101
2121
|
var ehWorkDarkSystemPalette = {
|
|
@@ -2505,12 +2525,16 @@ var getAlertTheme = function getAlertTheme(theme) {
|
|
|
2505
2525
|
var borderWidths = {
|
|
2506
2526
|
base: theme.borderWidths.base
|
|
2507
2527
|
};
|
|
2528
|
+
var shadows = {
|
|
2529
|
+
wrapper: theme.shadows.cardDrawer
|
|
2530
|
+
};
|
|
2508
2531
|
return {
|
|
2509
2532
|
colors: colors,
|
|
2510
2533
|
radii: radii,
|
|
2511
2534
|
sizes: sizes,
|
|
2512
2535
|
space: space,
|
|
2513
|
-
borderWidths: borderWidths
|
|
2536
|
+
borderWidths: borderWidths,
|
|
2537
|
+
shadows: shadows
|
|
2514
2538
|
};
|
|
2515
2539
|
};
|
|
2516
2540
|
|
|
@@ -2547,7 +2571,7 @@ var getAvatarTheme = function getAvatarTheme(theme) {
|
|
|
2547
2571
|
danger: theme.colors.error,
|
|
2548
2572
|
success: theme.colors.success,
|
|
2549
2573
|
warning: theme.colors.warning,
|
|
2550
|
-
text: theme.colors.
|
|
2574
|
+
text: theme.colors.white
|
|
2551
2575
|
};
|
|
2552
2576
|
var sizes = {
|
|
2553
2577
|
small: theme.sizes.xlarge,
|
|
@@ -2663,25 +2687,24 @@ var getBadgeTheme = function getBadgeTheme(theme) {
|
|
|
2663
2687
|
var getBottomNavigationTheme = function getBottomNavigationTheme(theme) {
|
|
2664
2688
|
var colors = {
|
|
2665
2689
|
shadow: theme.colors.primary,
|
|
2666
|
-
background: theme.colors.defaultGlobalSurface
|
|
2690
|
+
background: theme.colors.defaultGlobalSurface,
|
|
2691
|
+
borderTop: theme.colors.secondaryOutline
|
|
2692
|
+
};
|
|
2693
|
+
var borderWidths = {
|
|
2694
|
+
borderTop: theme.borderWidths.base
|
|
2667
2695
|
};
|
|
2668
2696
|
var sizes = {
|
|
2669
2697
|
height: theme.sizes['6xlarge']
|
|
2670
2698
|
};
|
|
2671
2699
|
var shadows = {
|
|
2672
|
-
|
|
2673
|
-
width: 0,
|
|
2674
|
-
height: 3
|
|
2675
|
-
},
|
|
2676
|
-
opacity: 0.27,
|
|
2677
|
-
radius: 4.65,
|
|
2678
|
-
elevation: 10
|
|
2700
|
+
wrapper: theme.shadows.tabBar
|
|
2679
2701
|
};
|
|
2680
2702
|
var space = {
|
|
2681
2703
|
titleMarginTop: theme.space.xsmall
|
|
2682
2704
|
};
|
|
2683
2705
|
return {
|
|
2684
2706
|
colors: colors,
|
|
2707
|
+
borderWidths: borderWidths,
|
|
2685
2708
|
shadows: shadows,
|
|
2686
2709
|
sizes: sizes,
|
|
2687
2710
|
space: space
|
|
@@ -2692,7 +2715,7 @@ var getBottomSheetTheme = function getBottomSheetTheme(theme) {
|
|
|
2692
2715
|
var colors = {
|
|
2693
2716
|
shadow: theme.colors.primaryOutline,
|
|
2694
2717
|
background: theme.colors.defaultGlobalSurface,
|
|
2695
|
-
backdrop: theme.colors.
|
|
2718
|
+
backdrop: theme.colors.black,
|
|
2696
2719
|
floatingHeaderIconBackground: theme.colors.archivedSurface
|
|
2697
2720
|
};
|
|
2698
2721
|
var sizes = {
|
|
@@ -2709,15 +2732,6 @@ var getBottomSheetTheme = function getBottomSheetTheme(theme) {
|
|
|
2709
2732
|
floatingInnerPadding: theme.space.small,
|
|
2710
2733
|
floatingHeaderIconPadding: theme.space.small
|
|
2711
2734
|
};
|
|
2712
|
-
var shadows = {
|
|
2713
|
-
offset: {
|
|
2714
|
-
width: 0,
|
|
2715
|
-
height: 3
|
|
2716
|
-
},
|
|
2717
|
-
opacity: 0.4,
|
|
2718
|
-
radius: theme.radii.xlarge,
|
|
2719
|
-
elevation: 10
|
|
2720
|
-
};
|
|
2721
2735
|
var radii = {
|
|
2722
2736
|
"default": theme.radii.xlarge,
|
|
2723
2737
|
floating: theme.radii['5xlarge'],
|
|
@@ -2725,7 +2739,6 @@ var getBottomSheetTheme = function getBottomSheetTheme(theme) {
|
|
|
2725
2739
|
};
|
|
2726
2740
|
return {
|
|
2727
2741
|
colors: colors,
|
|
2728
|
-
shadows: shadows,
|
|
2729
2742
|
radii: radii,
|
|
2730
2743
|
sizes: sizes,
|
|
2731
2744
|
space: space
|
|
@@ -2975,7 +2988,7 @@ var getCheckboxTheme = function getCheckboxTheme(theme) {
|
|
|
2975
2988
|
|
|
2976
2989
|
var getChipTheme = function getChipTheme(theme) {
|
|
2977
2990
|
var colors = {
|
|
2978
|
-
secondaryBackground: theme.colors.
|
|
2991
|
+
secondaryBackground: theme.colors.decorativeSecondarySurface,
|
|
2979
2992
|
filledBackground: theme.colors.defaultGlobalSurface,
|
|
2980
2993
|
wrapperSelectedBorder: 'transparent',
|
|
2981
2994
|
outlinedDefaultBackground: theme.colors.defaultGlobalSurface,
|
|
@@ -2999,7 +3012,7 @@ var getChipTheme = function getChipTheme(theme) {
|
|
|
2999
3012
|
outlinedDefaultBorder: theme.borderWidths.base
|
|
3000
3013
|
};
|
|
3001
3014
|
var shadows = {
|
|
3002
|
-
filledWrapper: theme.shadows
|
|
3015
|
+
filledWrapper: theme.shadows.cardDrawer
|
|
3003
3016
|
};
|
|
3004
3017
|
var fontSizes = {
|
|
3005
3018
|
icon: theme.fontSizes.small
|
|
@@ -3169,12 +3182,12 @@ var getFABTheme = function getFABTheme(theme) {
|
|
|
3169
3182
|
buttonBackground: theme.colors.overlayGlobalSurface,
|
|
3170
3183
|
buttonPressedBackground: theme.colors.overlayGlobalSurface,
|
|
3171
3184
|
buttonActiveBackground: theme.colors.overlayGlobalSurface,
|
|
3172
|
-
icon: theme.colors.
|
|
3185
|
+
icon: theme.colors.onDarkGlobalSurface,
|
|
3173
3186
|
actionItemBackground: theme.colors.overlayGlobalSurface,
|
|
3174
3187
|
actionItemPressedBackground: theme.colors.overlayGlobalSurface,
|
|
3175
|
-
backdropBackground: theme.colors.
|
|
3176
|
-
titleText: theme.colors.
|
|
3177
|
-
actionItemText: theme.colors.
|
|
3188
|
+
backdropBackground: theme.colors.black,
|
|
3189
|
+
titleText: theme.colors.onDarkGlobalSurface,
|
|
3190
|
+
actionItemText: theme.colors.onDarkGlobalSurface
|
|
3178
3191
|
};
|
|
3179
3192
|
var sizes = {
|
|
3180
3193
|
width: theme.sizes.xxxxxlarge,
|
|
@@ -3198,11 +3211,7 @@ var getFABTheme = function getFABTheme(theme) {
|
|
|
3198
3211
|
icon: theme.lineHeights.large
|
|
3199
3212
|
};
|
|
3200
3213
|
var shadows = {
|
|
3201
|
-
|
|
3202
|
-
opacity: theme.shadows["default"].shadowOpacity,
|
|
3203
|
-
radius: theme.shadows["default"].shadowRadius,
|
|
3204
|
-
elevation: theme.shadows["default"].elevation,
|
|
3205
|
-
color: theme.shadows["default"].shadowColor
|
|
3214
|
+
"default": theme.shadows.cardDrawer
|
|
3206
3215
|
};
|
|
3207
3216
|
var space = {
|
|
3208
3217
|
actionItemPadding: theme.space.smallMedium,
|
|
@@ -3292,13 +3301,7 @@ var getListTheme = function getListTheme(theme) {
|
|
|
3292
3301
|
leadingStatus: theme.radii.rounded
|
|
3293
3302
|
};
|
|
3294
3303
|
var shadows = {
|
|
3295
|
-
card:
|
|
3296
|
-
offset: theme.shadows["default"].shadowOffset,
|
|
3297
|
-
elevation: theme.shadows["default"].elevation,
|
|
3298
|
-
color: theme.shadows["default"].shadowColor,
|
|
3299
|
-
radius: theme.shadows["default"].shadowRadius,
|
|
3300
|
-
opacity: theme.shadows["default"].shadowOpacity
|
|
3301
|
-
}
|
|
3304
|
+
card: theme.shadows.cardDrawer
|
|
3302
3305
|
};
|
|
3303
3306
|
var widths = {
|
|
3304
3307
|
leadingStatus: 8
|
|
@@ -3985,11 +3988,7 @@ var getToastTheme = function getToastTheme(theme) {
|
|
|
3985
3988
|
base: theme.borderWidths.base
|
|
3986
3989
|
};
|
|
3987
3990
|
var shadows = {
|
|
3988
|
-
|
|
3989
|
-
opacity: theme.shadows["default"].shadowOpacity,
|
|
3990
|
-
radius: theme.shadows["default"].shadowRadius,
|
|
3991
|
-
elevation: theme.shadows["default"].elevation,
|
|
3992
|
-
color: theme.shadows["default"].shadowColor
|
|
3991
|
+
wrapper: theme.shadows.cardDrawer
|
|
3993
3992
|
};
|
|
3994
3993
|
return {
|
|
3995
3994
|
colors: colors,
|
|
@@ -4243,11 +4242,7 @@ var getSearchTheme = function getSearchTheme(theme) {
|
|
|
4243
4242
|
shadow: theme.colors.primaryOutline
|
|
4244
4243
|
};
|
|
4245
4244
|
var shadows = {
|
|
4246
|
-
|
|
4247
|
-
opacity: theme.shadows["default"].shadowOpacity,
|
|
4248
|
-
radius: theme.shadows["default"].shadowRadius,
|
|
4249
|
-
elevation: theme.shadows["default"].elevation,
|
|
4250
|
-
color: theme.shadows["default"].shadowColor
|
|
4245
|
+
container: theme.shadows.cardDrawer
|
|
4251
4246
|
};
|
|
4252
4247
|
var space = {
|
|
4253
4248
|
containerHorizontalPadding: theme.space.small,
|
|
@@ -4298,7 +4293,8 @@ var getSearchTheme = function getSearchTheme(theme) {
|
|
|
4298
4293
|
|
|
4299
4294
|
var getMapPinTheme = function getMapPinTheme(theme) {
|
|
4300
4295
|
var sizes = {
|
|
4301
|
-
"default": 42
|
|
4296
|
+
"default": 42,
|
|
4297
|
+
badge: theme.sizes.large
|
|
4302
4298
|
};
|
|
4303
4299
|
var fontSizes = {
|
|
4304
4300
|
icon: 42
|
|
@@ -4308,15 +4304,18 @@ var getMapPinTheme = function getMapPinTheme(theme) {
|
|
|
4308
4304
|
};
|
|
4309
4305
|
var colors = {
|
|
4310
4306
|
border: {
|
|
4311
|
-
idle: theme.colors.
|
|
4307
|
+
idle: theme.colors.white,
|
|
4312
4308
|
selected: theme.colors.secondary,
|
|
4313
4309
|
applied: theme.colors.secondary
|
|
4314
4310
|
},
|
|
4311
|
+
icon: theme.colors.black,
|
|
4315
4312
|
badge: theme.colors.secondary,
|
|
4316
|
-
|
|
4313
|
+
badgeIcon: theme.colors.onSecondary,
|
|
4314
|
+
background: theme.colors.white
|
|
4317
4315
|
};
|
|
4318
4316
|
var radii = {
|
|
4319
|
-
"default": theme.radii.large
|
|
4317
|
+
"default": theme.radii.large,
|
|
4318
|
+
badge: theme.radii.rounded
|
|
4320
4319
|
};
|
|
4321
4320
|
var space = {
|
|
4322
4321
|
iconTop: -theme.space.small,
|
|
@@ -4348,7 +4347,7 @@ var getFloatingIslandTheme = function getFloatingIslandTheme(theme) {
|
|
|
4348
4347
|
wrapper: theme.radii.rounded
|
|
4349
4348
|
};
|
|
4350
4349
|
var shadows = {
|
|
4351
|
-
wrapper: theme.shadows
|
|
4350
|
+
wrapper: theme.shadows.cardDrawer
|
|
4352
4351
|
};
|
|
4353
4352
|
var space = {
|
|
4354
4353
|
wrapperPadding: theme.space.small,
|
|
@@ -7701,7 +7700,7 @@ var Typography = {
|
|
|
7701
7700
|
};
|
|
7702
7701
|
|
|
7703
7702
|
// 🔴 DO NOT EDIT — This file is generated automatically.
|
|
7704
|
-
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'];
|
|
7703
|
+
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'];
|
|
7705
7704
|
|
|
7706
7705
|
var activate = 59000;
|
|
7707
7706
|
var adjustment = 59003;
|
|
@@ -7750,51 +7749,51 @@ var menu = 59127;
|
|
|
7750
7749
|
var moneybag = 59129;
|
|
7751
7750
|
var moon = 59130;
|
|
7752
7751
|
var node = 59134;
|
|
7753
|
-
var paperclip =
|
|
7754
|
-
var pencil =
|
|
7755
|
-
var phone =
|
|
7756
|
-
var plane =
|
|
7757
|
-
var print =
|
|
7758
|
-
var reply =
|
|
7759
|
-
var reschedule =
|
|
7760
|
-
var rostering =
|
|
7761
|
-
var save =
|
|
7762
|
-
var schedule =
|
|
7763
|
-
var search =
|
|
7764
|
-
var send =
|
|
7765
|
-
var speaker =
|
|
7766
|
-
var star =
|
|
7767
|
-
var stopwatch =
|
|
7768
|
-
var suitcase =
|
|
7769
|
-
var surfing =
|
|
7770
|
-
var survey =
|
|
7771
|
-
var swag =
|
|
7772
|
-
var tag =
|
|
7773
|
-
var target =
|
|
7774
|
-
var teams =
|
|
7775
|
-
var timesheet =
|
|
7776
|
-
var unlock =
|
|
7777
|
-
var user =
|
|
7778
|
-
var wallet =
|
|
7779
|
-
var warning =
|
|
7780
|
-
var add =
|
|
7781
|
-
var bold =
|
|
7782
|
-
var cancel =
|
|
7783
|
-
var checkmark =
|
|
7784
|
-
var italic =
|
|
7785
|
-
var local_mall_outlined =
|
|
7786
|
-
var number =
|
|
7787
|
-
var percentage =
|
|
7788
|
-
var redeem =
|
|
7789
|
-
var refresh =
|
|
7790
|
-
var remove =
|
|
7791
|
-
var restart =
|
|
7792
|
-
var shopping_basket_outlined =
|
|
7793
|
-
var strikethrough =
|
|
7794
|
-
var sync =
|
|
7795
|
-
var transfer =
|
|
7796
|
-
var unavailable =
|
|
7797
|
-
var underline =
|
|
7752
|
+
var paperclip = 59137;
|
|
7753
|
+
var pencil = 59139;
|
|
7754
|
+
var phone = 59140;
|
|
7755
|
+
var plane = 59143;
|
|
7756
|
+
var print = 59146;
|
|
7757
|
+
var reply = 59149;
|
|
7758
|
+
var reschedule = 59150;
|
|
7759
|
+
var rostering = 59151;
|
|
7760
|
+
var save = 59153;
|
|
7761
|
+
var schedule = 59155;
|
|
7762
|
+
var search = 59157;
|
|
7763
|
+
var send = 59158;
|
|
7764
|
+
var speaker = 59160;
|
|
7765
|
+
var star = 59165;
|
|
7766
|
+
var stopwatch = 59167;
|
|
7767
|
+
var suitcase = 59168;
|
|
7768
|
+
var surfing = 59169;
|
|
7769
|
+
var survey = 59170;
|
|
7770
|
+
var swag = 59175;
|
|
7771
|
+
var tag = 59178;
|
|
7772
|
+
var target = 59179;
|
|
7773
|
+
var teams = 59180;
|
|
7774
|
+
var timesheet = 59182;
|
|
7775
|
+
var unlock = 59185;
|
|
7776
|
+
var user = 59186;
|
|
7777
|
+
var wallet = 59189;
|
|
7778
|
+
var warning = 59190;
|
|
7779
|
+
var add = 59197;
|
|
7780
|
+
var bold = 59227;
|
|
7781
|
+
var cancel = 59243;
|
|
7782
|
+
var checkmark = 59249;
|
|
7783
|
+
var italic = 59345;
|
|
7784
|
+
var local_mall_outlined = 59352;
|
|
7785
|
+
var number = 59375;
|
|
7786
|
+
var percentage = 59381;
|
|
7787
|
+
var redeem = 59391;
|
|
7788
|
+
var refresh = 59392;
|
|
7789
|
+
var remove = 59393;
|
|
7790
|
+
var restart = 59395;
|
|
7791
|
+
var shopping_basket_outlined = 59411;
|
|
7792
|
+
var strikethrough = 59426;
|
|
7793
|
+
var sync = 59432;
|
|
7794
|
+
var transfer = 59441;
|
|
7795
|
+
var unavailable = 59446;
|
|
7796
|
+
var underline = 59447;
|
|
7798
7797
|
var glyphMap = {
|
|
7799
7798
|
activate: activate,
|
|
7800
7799
|
"add-emoji": 59001,
|
|
@@ -7932,329 +7931,330 @@ var glyphMap = {
|
|
|
7932
7931
|
"near-me": 59133,
|
|
7933
7932
|
node: node,
|
|
7934
7933
|
"open-folder": 59135,
|
|
7934
|
+
"paperclip-vertical": 59136,
|
|
7935
7935
|
paperclip: paperclip,
|
|
7936
|
-
"payment-summary":
|
|
7936
|
+
"payment-summary": 59138,
|
|
7937
7937
|
pencil: pencil,
|
|
7938
7938
|
phone: phone,
|
|
7939
|
-
"piggy-bank":
|
|
7940
|
-
"plane-up":
|
|
7939
|
+
"piggy-bank": 59141,
|
|
7940
|
+
"plane-up": 59142,
|
|
7941
7941
|
plane: plane,
|
|
7942
|
-
"play-arrow":
|
|
7943
|
-
"play-circle":
|
|
7942
|
+
"play-arrow": 59144,
|
|
7943
|
+
"play-circle": 59145,
|
|
7944
7944
|
print: print,
|
|
7945
|
-
"raising-hands":
|
|
7946
|
-
"reply-arrow":
|
|
7945
|
+
"raising-hands": 59147,
|
|
7946
|
+
"reply-arrow": 59148,
|
|
7947
7947
|
reply: reply,
|
|
7948
7948
|
reschedule: reschedule,
|
|
7949
7949
|
rostering: rostering,
|
|
7950
|
-
"salary-sacrifice":
|
|
7950
|
+
"salary-sacrifice": 59152,
|
|
7951
7951
|
save: save,
|
|
7952
|
-
"schedule-send":
|
|
7952
|
+
"schedule-send": 59154,
|
|
7953
7953
|
schedule: schedule,
|
|
7954
|
-
"search-person":
|
|
7954
|
+
"search-person": 59156,
|
|
7955
7955
|
search: search,
|
|
7956
7956
|
send: send,
|
|
7957
|
-
"speaker-active":
|
|
7957
|
+
"speaker-active": 59159,
|
|
7958
7958
|
speaker: speaker,
|
|
7959
|
-
"star-award":
|
|
7960
|
-
"star-badge":
|
|
7961
|
-
"star-circle":
|
|
7962
|
-
"star-medal":
|
|
7959
|
+
"star-award": 59161,
|
|
7960
|
+
"star-badge": 59162,
|
|
7961
|
+
"star-circle": 59163,
|
|
7962
|
+
"star-medal": 59164,
|
|
7963
7963
|
star: star,
|
|
7964
|
-
"steps-circle":
|
|
7964
|
+
"steps-circle": 59166,
|
|
7965
7965
|
stopwatch: stopwatch,
|
|
7966
7966
|
suitcase: suitcase,
|
|
7967
7967
|
surfing: surfing,
|
|
7968
7968
|
survey: survey,
|
|
7969
|
-
"swag-pillar-benefit":
|
|
7970
|
-
"swag-pillar-career":
|
|
7971
|
-
"swag-pillar-money":
|
|
7972
|
-
"swag-pillar-work":
|
|
7969
|
+
"swag-pillar-benefit": 59171,
|
|
7970
|
+
"swag-pillar-career": 59172,
|
|
7971
|
+
"swag-pillar-money": 59173,
|
|
7972
|
+
"swag-pillar-work": 59174,
|
|
7973
7973
|
swag: swag,
|
|
7974
|
-
"swipe-right":
|
|
7975
|
-
"switch":
|
|
7974
|
+
"swipe-right": 59176,
|
|
7975
|
+
"switch": 59177,
|
|
7976
7976
|
tag: tag,
|
|
7977
7977
|
target: target,
|
|
7978
7978
|
teams: teams,
|
|
7979
|
-
"thumb-down":
|
|
7979
|
+
"thumb-down": 59181,
|
|
7980
7980
|
timesheet: timesheet,
|
|
7981
|
-
"touch-id":
|
|
7982
|
-
"trash-bin":
|
|
7981
|
+
"touch-id": 59183,
|
|
7982
|
+
"trash-bin": 59184,
|
|
7983
7983
|
unlock: unlock,
|
|
7984
7984
|
user: user,
|
|
7985
|
-
"video-1":
|
|
7986
|
-
"video-2":
|
|
7985
|
+
"video-1": 59187,
|
|
7986
|
+
"video-2": 59188,
|
|
7987
7987
|
wallet: wallet,
|
|
7988
7988
|
warning: warning,
|
|
7989
|
-
"accommodation-outlined":
|
|
7990
|
-
"activate-outlined":
|
|
7991
|
-
"add-credit-card-outlined":
|
|
7992
|
-
"add-person-outlined":
|
|
7993
|
-
"add-section-outlined":
|
|
7994
|
-
"add-time-outlined":
|
|
7989
|
+
"accommodation-outlined": 59191,
|
|
7990
|
+
"activate-outlined": 59192,
|
|
7991
|
+
"add-credit-card-outlined": 59193,
|
|
7992
|
+
"add-person-outlined": 59194,
|
|
7993
|
+
"add-section-outlined": 59195,
|
|
7994
|
+
"add-time-outlined": 59196,
|
|
7995
7995
|
add: add,
|
|
7996
|
-
"adjustment-outlined":
|
|
7997
|
-
"afternoon-outlined":
|
|
7998
|
-
"ai-outlined":
|
|
7999
|
-
"alignment-2-outlined":
|
|
8000
|
-
"alignment-outlined":
|
|
8001
|
-
"all-caps":
|
|
8002
|
-
"application-outlined":
|
|
8003
|
-
"arrow-down":
|
|
8004
|
-
"arrow-downwards":
|
|
8005
|
-
"arrow-left":
|
|
8006
|
-
"arrow-leftwards":
|
|
8007
|
-
"arrow-right":
|
|
8008
|
-
"arrow-rightwards":
|
|
8009
|
-
"arrow-up":
|
|
8010
|
-
"arrow-upwards":
|
|
8011
|
-
"article-outlined":
|
|
8012
|
-
"at-sign":
|
|
8013
|
-
"auto-graph-outlined":
|
|
8014
|
-
"automotive-outlined":
|
|
8015
|
-
"bakery-outlined":
|
|
8016
|
-
"bar-outlined":
|
|
8017
|
-
"beauty-outlined":
|
|
8018
|
-
"beer-outlined":
|
|
8019
|
-
"bell-active-outlined":
|
|
8020
|
-
"bell-outlined":
|
|
8021
|
-
"bell-slash-outlined":
|
|
8022
|
-
"bill-management-outlined":
|
|
8023
|
-
"billing-outlined":
|
|
8024
|
-
"body-outlined":
|
|
7996
|
+
"adjustment-outlined": 59198,
|
|
7997
|
+
"afternoon-outlined": 59199,
|
|
7998
|
+
"ai-outlined": 59200,
|
|
7999
|
+
"alignment-2-outlined": 59201,
|
|
8000
|
+
"alignment-outlined": 59202,
|
|
8001
|
+
"all-caps": 59203,
|
|
8002
|
+
"application-outlined": 59204,
|
|
8003
|
+
"arrow-down": 59205,
|
|
8004
|
+
"arrow-downwards": 59206,
|
|
8005
|
+
"arrow-left": 59207,
|
|
8006
|
+
"arrow-leftwards": 59208,
|
|
8007
|
+
"arrow-right": 59209,
|
|
8008
|
+
"arrow-rightwards": 59210,
|
|
8009
|
+
"arrow-up": 59211,
|
|
8010
|
+
"arrow-upwards": 59212,
|
|
8011
|
+
"article-outlined": 59213,
|
|
8012
|
+
"at-sign": 59214,
|
|
8013
|
+
"auto-graph-outlined": 59215,
|
|
8014
|
+
"automotive-outlined": 59216,
|
|
8015
|
+
"bakery-outlined": 59217,
|
|
8016
|
+
"bar-outlined": 59218,
|
|
8017
|
+
"beauty-outlined": 59219,
|
|
8018
|
+
"beer-outlined": 59220,
|
|
8019
|
+
"bell-active-outlined": 59221,
|
|
8020
|
+
"bell-outlined": 59222,
|
|
8021
|
+
"bell-slash-outlined": 59223,
|
|
8022
|
+
"bill-management-outlined": 59224,
|
|
8023
|
+
"billing-outlined": 59225,
|
|
8024
|
+
"body-outlined": 59226,
|
|
8025
8025
|
bold: bold,
|
|
8026
|
-
"bolt-outlined":
|
|
8027
|
-
"book-outlined":
|
|
8028
|
-
"bookmark-added-outlined":
|
|
8029
|
-
"bookmark-checked-outlined":
|
|
8030
|
-
"bookmark-outlined":
|
|
8031
|
-
"box-1-outlined":
|
|
8032
|
-
"box-check-outlined":
|
|
8033
|
-
"box-outlined":
|
|
8034
|
-
"bullet-points":
|
|
8035
|
-
"cake-outlined":
|
|
8036
|
-
"calendar-dates-outlined":
|
|
8037
|
-
"calendar-star-outlined":
|
|
8038
|
-
"call-outlined":
|
|
8039
|
-
"call-split-outlined":
|
|
8040
|
-
"camera-outlined":
|
|
8026
|
+
"bolt-outlined": 59228,
|
|
8027
|
+
"book-outlined": 59229,
|
|
8028
|
+
"bookmark-added-outlined": 59230,
|
|
8029
|
+
"bookmark-checked-outlined": 59231,
|
|
8030
|
+
"bookmark-outlined": 59232,
|
|
8031
|
+
"box-1-outlined": 59233,
|
|
8032
|
+
"box-check-outlined": 59234,
|
|
8033
|
+
"box-outlined": 59235,
|
|
8034
|
+
"bullet-points": 59236,
|
|
8035
|
+
"cake-outlined": 59237,
|
|
8036
|
+
"calendar-dates-outlined": 59238,
|
|
8037
|
+
"calendar-star-outlined": 59239,
|
|
8038
|
+
"call-outlined": 59240,
|
|
8039
|
+
"call-split-outlined": 59241,
|
|
8040
|
+
"camera-outlined": 59242,
|
|
8041
8041
|
cancel: cancel,
|
|
8042
|
-
"car-forward-outlined":
|
|
8043
|
-
"cashback-outlined":
|
|
8044
|
-
"charging-station-outlined":
|
|
8045
|
-
"chat-bubble-outlined":
|
|
8046
|
-
"chat-unread-outlined":
|
|
8042
|
+
"car-forward-outlined": 59244,
|
|
8043
|
+
"cashback-outlined": 59245,
|
|
8044
|
+
"charging-station-outlined": 59246,
|
|
8045
|
+
"chat-bubble-outlined": 59247,
|
|
8046
|
+
"chat-unread-outlined": 59248,
|
|
8047
8047
|
checkmark: checkmark,
|
|
8048
|
-
"circle-add-outlined":
|
|
8049
|
-
"circle-cancel-outlined":
|
|
8050
|
-
"circle-down-outlined":
|
|
8051
|
-
"circle-info-outlined":
|
|
8052
|
-
"circle-left-outlined":
|
|
8053
|
-
"circle-ok-outlined":
|
|
8054
|
-
"circle-question-outlined":
|
|
8055
|
-
"circle-remove-outlined":
|
|
8056
|
-
"circle-right-outlined":
|
|
8057
|
-
"circle-up-outlined":
|
|
8058
|
-
"circle-warning-outlined":
|
|
8059
|
-
"clock-2-outlined":
|
|
8060
|
-
"clock-in-outlined":
|
|
8061
|
-
"clock-out-outlined":
|
|
8062
|
-
"clock-outlined":
|
|
8063
|
-
"cog-outlined":
|
|
8064
|
-
"coin-outlined":
|
|
8065
|
-
"coin-super-outlined":
|
|
8066
|
-
"comment-outlined":
|
|
8067
|
-
"contacts-outlined":
|
|
8068
|
-
"contacts-user-outlined":
|
|
8069
|
-
"credit-card-outlined":
|
|
8070
|
-
"cultural-site-outlined":
|
|
8071
|
-
"cup-outlined":
|
|
8072
|
-
"dentistry-outlined":
|
|
8073
|
-
"direction-arrows-outlined":
|
|
8074
|
-
"directory-outlined":
|
|
8075
|
-
"document-outlined":
|
|
8076
|
-
"dollar-box-outlined":
|
|
8077
|
-
"dollar-card-outlined":
|
|
8078
|
-
"dollar-coin-shine-outlined":
|
|
8079
|
-
"dollar-credit-card-outlined":
|
|
8080
|
-
"dollar-sign":
|
|
8081
|
-
"double-buildings-outlined":
|
|
8082
|
-
"double-left-arrows":
|
|
8083
|
-
"double-right-arrows":
|
|
8084
|
-
"download-box-outlined":
|
|
8085
|
-
"download-outlined":
|
|
8086
|
-
"edit-template-outlined":
|
|
8087
|
-
"electronics-outlined":
|
|
8088
|
-
"email-outlined":
|
|
8089
|
-
"end-break-outlined":
|
|
8090
|
-
"enter-arrow":
|
|
8091
|
-
"entertainment-outlined":
|
|
8092
|
-
"envelope-outlined":
|
|
8093
|
-
"evening-outlined":
|
|
8094
|
-
"expense-approval-outlined":
|
|
8095
|
-
"expense-outlined":
|
|
8096
|
-
"explore-outlined":
|
|
8097
|
-
"extension-outlined":
|
|
8098
|
-
"external-link":
|
|
8099
|
-
"eye-invisible-outlined":
|
|
8100
|
-
"eye-outlined":
|
|
8101
|
-
"face-id":
|
|
8102
|
-
"face-meh-outlined":
|
|
8103
|
-
"face-open-smiley-outlined":
|
|
8104
|
-
"face-sad-outlined":
|
|
8105
|
-
"face-smiley-outlined":
|
|
8106
|
-
"fastfood-outlined":
|
|
8107
|
-
"feed-outlined":
|
|
8108
|
-
"file-certified-outlined":
|
|
8109
|
-
"file-clone-outlined":
|
|
8110
|
-
"file-copy-outlined":
|
|
8111
|
-
"file-dispose-outlined":
|
|
8112
|
-
"file-dollar-certified-outlined":
|
|
8113
|
-
"file-dollar-outlined":
|
|
8114
|
-
"file-download-outlined":
|
|
8115
|
-
"file-export-outlined":
|
|
8116
|
-
"file-lock-outlined":
|
|
8117
|
-
"file-outlined":
|
|
8118
|
-
"file-search-outlined":
|
|
8119
|
-
"file-secured-outlined":
|
|
8120
|
-
"file-statutory-outlined":
|
|
8121
|
-
"file-verified-outlined":
|
|
8122
|
-
"filter-outlined":
|
|
8123
|
-
"fitness-outlined":
|
|
8124
|
-
"folder-outlined":
|
|
8125
|
-
"folder-upload-outlined":
|
|
8126
|
-
"folder-user-outlined":
|
|
8127
|
-
"form-outlined":
|
|
8128
|
-
"funnel-filter-outline":
|
|
8129
|
-
"goal-outlined":
|
|
8130
|
-
"graph-outlined":
|
|
8131
|
-
"grocery-outlined":
|
|
8132
|
-
"hand-holding-user-outlined":
|
|
8133
|
-
"handshake-outlined":
|
|
8134
|
-
"happy-sun-outlined":
|
|
8135
|
-
"health-bag-outlined":
|
|
8136
|
-
"heart-outlined":
|
|
8137
|
-
"home-active-outlined":
|
|
8138
|
-
"home-outlined":
|
|
8139
|
-
"id-card-outlined":
|
|
8140
|
-
"image-outlined":
|
|
8141
|
-
"import-outlined":
|
|
8142
|
-
"instapay-outlined":
|
|
8048
|
+
"circle-add-outlined": 59250,
|
|
8049
|
+
"circle-cancel-outlined": 59251,
|
|
8050
|
+
"circle-down-outlined": 59252,
|
|
8051
|
+
"circle-info-outlined": 59253,
|
|
8052
|
+
"circle-left-outlined": 59254,
|
|
8053
|
+
"circle-ok-outlined": 59255,
|
|
8054
|
+
"circle-question-outlined": 59256,
|
|
8055
|
+
"circle-remove-outlined": 59257,
|
|
8056
|
+
"circle-right-outlined": 59258,
|
|
8057
|
+
"circle-up-outlined": 59259,
|
|
8058
|
+
"circle-warning-outlined": 59260,
|
|
8059
|
+
"clock-2-outlined": 59261,
|
|
8060
|
+
"clock-in-outlined": 59262,
|
|
8061
|
+
"clock-out-outlined": 59263,
|
|
8062
|
+
"clock-outlined": 59264,
|
|
8063
|
+
"cog-outlined": 59265,
|
|
8064
|
+
"coin-outlined": 59266,
|
|
8065
|
+
"coin-super-outlined": 59267,
|
|
8066
|
+
"comment-outlined": 59268,
|
|
8067
|
+
"contacts-outlined": 59269,
|
|
8068
|
+
"contacts-user-outlined": 59270,
|
|
8069
|
+
"credit-card-outlined": 59271,
|
|
8070
|
+
"cultural-site-outlined": 59272,
|
|
8071
|
+
"cup-outlined": 59273,
|
|
8072
|
+
"dentistry-outlined": 59274,
|
|
8073
|
+
"direction-arrows-outlined": 59275,
|
|
8074
|
+
"directory-outlined": 59276,
|
|
8075
|
+
"document-outlined": 59277,
|
|
8076
|
+
"dollar-box-outlined": 59278,
|
|
8077
|
+
"dollar-card-outlined": 59279,
|
|
8078
|
+
"dollar-coin-shine-outlined": 59280,
|
|
8079
|
+
"dollar-credit-card-outlined": 59281,
|
|
8080
|
+
"dollar-sign": 59282,
|
|
8081
|
+
"double-buildings-outlined": 59283,
|
|
8082
|
+
"double-left-arrows": 59284,
|
|
8083
|
+
"double-right-arrows": 59285,
|
|
8084
|
+
"download-box-outlined": 59286,
|
|
8085
|
+
"download-outlined": 59287,
|
|
8086
|
+
"edit-template-outlined": 59288,
|
|
8087
|
+
"electronics-outlined": 59289,
|
|
8088
|
+
"email-outlined": 59290,
|
|
8089
|
+
"end-break-outlined": 59291,
|
|
8090
|
+
"enter-arrow": 59292,
|
|
8091
|
+
"entertainment-outlined": 59293,
|
|
8092
|
+
"envelope-outlined": 59294,
|
|
8093
|
+
"evening-outlined": 59295,
|
|
8094
|
+
"expense-approval-outlined": 59296,
|
|
8095
|
+
"expense-outlined": 59297,
|
|
8096
|
+
"explore-outlined": 59298,
|
|
8097
|
+
"extension-outlined": 59299,
|
|
8098
|
+
"external-link": 59300,
|
|
8099
|
+
"eye-invisible-outlined": 59301,
|
|
8100
|
+
"eye-outlined": 59302,
|
|
8101
|
+
"face-id": 59303,
|
|
8102
|
+
"face-meh-outlined": 59304,
|
|
8103
|
+
"face-open-smiley-outlined": 59305,
|
|
8104
|
+
"face-sad-outlined": 59306,
|
|
8105
|
+
"face-smiley-outlined": 59307,
|
|
8106
|
+
"fastfood-outlined": 59308,
|
|
8107
|
+
"feed-outlined": 59309,
|
|
8108
|
+
"file-certified-outlined": 59310,
|
|
8109
|
+
"file-clone-outlined": 59311,
|
|
8110
|
+
"file-copy-outlined": 59312,
|
|
8111
|
+
"file-dispose-outlined": 59313,
|
|
8112
|
+
"file-dollar-certified-outlined": 59314,
|
|
8113
|
+
"file-dollar-outlined": 59315,
|
|
8114
|
+
"file-download-outlined": 59316,
|
|
8115
|
+
"file-export-outlined": 59317,
|
|
8116
|
+
"file-lock-outlined": 59318,
|
|
8117
|
+
"file-outlined": 59319,
|
|
8118
|
+
"file-search-outlined": 59320,
|
|
8119
|
+
"file-secured-outlined": 59321,
|
|
8120
|
+
"file-statutory-outlined": 59322,
|
|
8121
|
+
"file-verified-outlined": 59323,
|
|
8122
|
+
"filter-outlined": 59324,
|
|
8123
|
+
"fitness-outlined": 59325,
|
|
8124
|
+
"folder-outlined": 59326,
|
|
8125
|
+
"folder-upload-outlined": 59327,
|
|
8126
|
+
"folder-user-outlined": 59328,
|
|
8127
|
+
"form-outlined": 59329,
|
|
8128
|
+
"funnel-filter-outline": 59330,
|
|
8129
|
+
"goal-outlined": 59331,
|
|
8130
|
+
"graph-outlined": 59332,
|
|
8131
|
+
"grocery-outlined": 59333,
|
|
8132
|
+
"hand-holding-user-outlined": 59334,
|
|
8133
|
+
"handshake-outlined": 59335,
|
|
8134
|
+
"happy-sun-outlined": 59336,
|
|
8135
|
+
"health-bag-outlined": 59337,
|
|
8136
|
+
"heart-outlined": 59338,
|
|
8137
|
+
"home-active-outlined": 59339,
|
|
8138
|
+
"home-outlined": 59340,
|
|
8139
|
+
"id-card-outlined": 59341,
|
|
8140
|
+
"image-outlined": 59342,
|
|
8141
|
+
"import-outlined": 59343,
|
|
8142
|
+
"instapay-outlined": 59344,
|
|
8143
8143
|
italic: italic,
|
|
8144
|
-
"job-search-outlined":
|
|
8145
|
-
"leave-approval-outlined":
|
|
8146
|
-
"link-1":
|
|
8147
|
-
"link-2":
|
|
8148
|
-
"list-outlined":
|
|
8149
|
-
"live-help-outlined":
|
|
8144
|
+
"job-search-outlined": 59346,
|
|
8145
|
+
"leave-approval-outlined": 59347,
|
|
8146
|
+
"link-1": 59348,
|
|
8147
|
+
"link-2": 59349,
|
|
8148
|
+
"list-outlined": 59350,
|
|
8149
|
+
"live-help-outlined": 59351,
|
|
8150
8150
|
local_mall_outlined: local_mall_outlined,
|
|
8151
|
-
"location-on-outlined":
|
|
8152
|
-
"location-outlined":
|
|
8153
|
-
"lock-outlined":
|
|
8154
|
-
"locked-file-outlined":
|
|
8155
|
-
"log-out":
|
|
8156
|
-
"mail-outlined":
|
|
8157
|
-
"map-outlined":
|
|
8158
|
-
"media-content-outlined":
|
|
8159
|
-
"menu-close":
|
|
8160
|
-
"menu-expand":
|
|
8161
|
-
"menu-fold-outlined":
|
|
8162
|
-
"menu-unfold-outlined":
|
|
8163
|
-
"moneybag-outlined":
|
|
8164
|
-
"moon-outlined":
|
|
8165
|
-
"more-horizontal":
|
|
8166
|
-
"more-vertical":
|
|
8167
|
-
"morning-outlined":
|
|
8168
|
-
"multiple-folders-outlined":
|
|
8169
|
-
"multiple-users-outlined":
|
|
8170
|
-
"near-me-outlined":
|
|
8171
|
-
"node-outlined":
|
|
8172
|
-
"number-points":
|
|
8151
|
+
"location-on-outlined": 59353,
|
|
8152
|
+
"location-outlined": 59354,
|
|
8153
|
+
"lock-outlined": 59355,
|
|
8154
|
+
"locked-file-outlined": 59356,
|
|
8155
|
+
"log-out": 59357,
|
|
8156
|
+
"mail-outlined": 59358,
|
|
8157
|
+
"map-outlined": 59359,
|
|
8158
|
+
"media-content-outlined": 59360,
|
|
8159
|
+
"menu-close": 59361,
|
|
8160
|
+
"menu-expand": 59362,
|
|
8161
|
+
"menu-fold-outlined": 59363,
|
|
8162
|
+
"menu-unfold-outlined": 59364,
|
|
8163
|
+
"moneybag-outlined": 59365,
|
|
8164
|
+
"moon-outlined": 59366,
|
|
8165
|
+
"more-horizontal": 59367,
|
|
8166
|
+
"more-vertical": 59368,
|
|
8167
|
+
"morning-outlined": 59369,
|
|
8168
|
+
"multiple-folders-outlined": 59370,
|
|
8169
|
+
"multiple-users-outlined": 59371,
|
|
8170
|
+
"near-me-outlined": 59372,
|
|
8171
|
+
"node-outlined": 59373,
|
|
8172
|
+
"number-points": 59374,
|
|
8173
8173
|
number: number,
|
|
8174
|
-
"overview-outlined":
|
|
8175
|
-
"park-outlined":
|
|
8176
|
-
"payment-summary-outlined":
|
|
8177
|
-
"payslip-outlined":
|
|
8178
|
-
"pencil-outlined":
|
|
8174
|
+
"overview-outlined": 59376,
|
|
8175
|
+
"park-outlined": 59377,
|
|
8176
|
+
"payment-summary-outlined": 59378,
|
|
8177
|
+
"payslip-outlined": 59379,
|
|
8178
|
+
"pencil-outlined": 59380,
|
|
8179
8179
|
percentage: percentage,
|
|
8180
|
-
"phone-outlined":
|
|
8181
|
-
"piggy-bank-outlined":
|
|
8182
|
-
"plane-outlined":
|
|
8183
|
-
"play-circle-outlined":
|
|
8184
|
-
"print-outlined":
|
|
8185
|
-
"propane-tank-outlined":
|
|
8186
|
-
"qr-code-outlined":
|
|
8187
|
-
"qualification-outlined":
|
|
8188
|
-
"re-assign":
|
|
8180
|
+
"phone-outlined": 59382,
|
|
8181
|
+
"piggy-bank-outlined": 59383,
|
|
8182
|
+
"plane-outlined": 59384,
|
|
8183
|
+
"play-circle-outlined": 59385,
|
|
8184
|
+
"print-outlined": 59386,
|
|
8185
|
+
"propane-tank-outlined": 59387,
|
|
8186
|
+
"qr-code-outlined": 59388,
|
|
8187
|
+
"qualification-outlined": 59389,
|
|
8188
|
+
"re-assign": 59390,
|
|
8189
8189
|
redeem: redeem,
|
|
8190
8190
|
refresh: refresh,
|
|
8191
8191
|
remove: remove,
|
|
8192
|
-
"reply-outlined":
|
|
8192
|
+
"reply-outlined": 59394,
|
|
8193
8193
|
restart: restart,
|
|
8194
|
-
"restaurant-outlined":
|
|
8195
|
-
"resume-outlined":
|
|
8196
|
-
"return-arrow":
|
|
8197
|
-
"rostering-outlined":
|
|
8198
|
-
"safety-outlined":
|
|
8199
|
-
"save-outlined":
|
|
8200
|
-
"schedule-outlined":
|
|
8201
|
-
"search-outlined":
|
|
8202
|
-
"search-secured-outlined":
|
|
8203
|
-
"send-outlined":
|
|
8204
|
-
"share-1":
|
|
8205
|
-
"share-2":
|
|
8206
|
-
"share-outlined-2":
|
|
8207
|
-
"share-outlined":
|
|
8208
|
-
"shop-outlined":
|
|
8194
|
+
"restaurant-outlined": 59396,
|
|
8195
|
+
"resume-outlined": 59397,
|
|
8196
|
+
"return-arrow": 59398,
|
|
8197
|
+
"rostering-outlined": 59399,
|
|
8198
|
+
"safety-outlined": 59400,
|
|
8199
|
+
"save-outlined": 59401,
|
|
8200
|
+
"schedule-outlined": 59402,
|
|
8201
|
+
"search-outlined": 59403,
|
|
8202
|
+
"search-secured-outlined": 59404,
|
|
8203
|
+
"send-outlined": 59405,
|
|
8204
|
+
"share-1": 59406,
|
|
8205
|
+
"share-2": 59407,
|
|
8206
|
+
"share-outlined-2": 59408,
|
|
8207
|
+
"share-outlined": 59409,
|
|
8208
|
+
"shop-outlined": 59410,
|
|
8209
8209
|
shopping_basket_outlined: shopping_basket_outlined,
|
|
8210
|
-
"show-chart-outlined":
|
|
8211
|
-
"single-down-arrow":
|
|
8212
|
-
"single-left-arrow":
|
|
8213
|
-
"single-right-arrow":
|
|
8214
|
-
"single-up-arrow":
|
|
8215
|
-
"smart-match-outlined":
|
|
8216
|
-
"sparkle-outlined":
|
|
8217
|
-
"speaker-active-outlined":
|
|
8218
|
-
"speaker-outlined":
|
|
8219
|
-
"star-circle-outlined":
|
|
8220
|
-
"star-outlined":
|
|
8221
|
-
"start-break-outlined":
|
|
8222
|
-
"stash-outlined":
|
|
8223
|
-
"stopwatch-outlined":
|
|
8210
|
+
"show-chart-outlined": 59412,
|
|
8211
|
+
"single-down-arrow": 59413,
|
|
8212
|
+
"single-left-arrow": 59414,
|
|
8213
|
+
"single-right-arrow": 59415,
|
|
8214
|
+
"single-up-arrow": 59416,
|
|
8215
|
+
"smart-match-outlined": 59417,
|
|
8216
|
+
"sparkle-outlined": 59418,
|
|
8217
|
+
"speaker-active-outlined": 59419,
|
|
8218
|
+
"speaker-outlined": 59420,
|
|
8219
|
+
"star-circle-outlined": 59421,
|
|
8220
|
+
"star-outlined": 59422,
|
|
8221
|
+
"start-break-outlined": 59423,
|
|
8222
|
+
"stash-outlined": 59424,
|
|
8223
|
+
"stopwatch-outlined": 59425,
|
|
8224
8224
|
strikethrough: strikethrough,
|
|
8225
|
-
"styler-outlined":
|
|
8226
|
-
"suitcase-clock-outlined":
|
|
8227
|
-
"suitcase-outlined":
|
|
8228
|
-
"survey-outlined":
|
|
8229
|
-
"switch-outlined":
|
|
8225
|
+
"styler-outlined": 59427,
|
|
8226
|
+
"suitcase-clock-outlined": 59428,
|
|
8227
|
+
"suitcase-outlined": 59429,
|
|
8228
|
+
"survey-outlined": 59430,
|
|
8229
|
+
"switch-outlined": 59431,
|
|
8230
8230
|
sync: sync,
|
|
8231
|
-
"tag-outlined":
|
|
8232
|
-
"target-outlined":
|
|
8233
|
-
"tennis-outlined":
|
|
8234
|
-
"thumb-down-outlined":
|
|
8235
|
-
"ticket-outlined":
|
|
8236
|
-
"timesheet-outlined":
|
|
8237
|
-
"timesheets-outlined":
|
|
8238
|
-
"today-outlined":
|
|
8231
|
+
"tag-outlined": 59433,
|
|
8232
|
+
"target-outlined": 59434,
|
|
8233
|
+
"tennis-outlined": 59435,
|
|
8234
|
+
"thumb-down-outlined": 59436,
|
|
8235
|
+
"ticket-outlined": 59437,
|
|
8236
|
+
"timesheet-outlined": 59438,
|
|
8237
|
+
"timesheets-outlined": 59439,
|
|
8238
|
+
"today-outlined": 59440,
|
|
8239
8239
|
transfer: transfer,
|
|
8240
|
-
"transportation-outlined":
|
|
8241
|
-
"trash-bin-outlined":
|
|
8242
|
-
"umbrela-outlined":
|
|
8243
|
-
"unavailability-outlined":
|
|
8240
|
+
"transportation-outlined": 59442,
|
|
8241
|
+
"trash-bin-outlined": 59443,
|
|
8242
|
+
"umbrela-outlined": 59444,
|
|
8243
|
+
"unavailability-outlined": 59445,
|
|
8244
8244
|
unavailable: unavailable,
|
|
8245
8245
|
underline: underline,
|
|
8246
|
-
"union-outlined":
|
|
8247
|
-
"unlock-outlined":
|
|
8248
|
-
"upload-outlined":
|
|
8249
|
-
"user-circle-outlined":
|
|
8250
|
-
"user-gear-outlined":
|
|
8251
|
-
"user-outlined":
|
|
8252
|
-
"user-rectangle-outlined":
|
|
8253
|
-
"video-1-outlined":
|
|
8254
|
-
"video-2-outlined":
|
|
8255
|
-
"volunteer-outlined":
|
|
8256
|
-
"wallet-outlined":
|
|
8257
|
-
"wellness-outlined":
|
|
8246
|
+
"union-outlined": 59448,
|
|
8247
|
+
"unlock-outlined": 59449,
|
|
8248
|
+
"upload-outlined": 59450,
|
|
8249
|
+
"user-circle-outlined": 59451,
|
|
8250
|
+
"user-gear-outlined": 59452,
|
|
8251
|
+
"user-outlined": 59453,
|
|
8252
|
+
"user-rectangle-outlined": 59454,
|
|
8253
|
+
"video-1-outlined": 59455,
|
|
8254
|
+
"video-2-outlined": 59456,
|
|
8255
|
+
"volunteer-outlined": 59457,
|
|
8256
|
+
"wallet-outlined": 59458,
|
|
8257
|
+
"wellness-outlined": 59459
|
|
8258
8258
|
};
|
|
8259
8259
|
|
|
8260
8260
|
var HeroIcon = reactNativeVectorIcons.createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
|
|
@@ -8430,12 +8430,12 @@ var Container$1 = index$a(reactNative.View)(function (_ref) {
|
|
|
8430
8430
|
_ref$themeVariant = _ref.themeVariant,
|
|
8431
8431
|
themeVariant = _ref$themeVariant === void 0 ? 'rounded' : _ref$themeVariant,
|
|
8432
8432
|
themeIntent = _ref.themeIntent;
|
|
8433
|
-
return {
|
|
8433
|
+
return _objectSpread2({
|
|
8434
8434
|
borderRadius: themeVariant === 'rounded' ? theme.__hd__.alert.radii["default"] : 0,
|
|
8435
8435
|
backgroundColor: theme.__hd__.alert.colors.backgrounds[themeIntent],
|
|
8436
8436
|
minHeight: theme.__hd__.alert.sizes.height,
|
|
8437
8437
|
flexDirection: 'row'
|
|
8438
|
-
};
|
|
8438
|
+
}, theme.__hd__.alert.shadows.wrapper);
|
|
8439
8439
|
});
|
|
8440
8440
|
var IconContainer$1 = index$a(reactNative.View)(function (_ref2) {
|
|
8441
8441
|
var theme = _ref2.theme;
|
|
@@ -8444,7 +8444,7 @@ var IconContainer$1 = index$a(reactNative.View)(function (_ref2) {
|
|
|
8444
8444
|
paddingLeft: theme.__hd__.alert.space.iconLeftPadding
|
|
8445
8445
|
};
|
|
8446
8446
|
});
|
|
8447
|
-
var StyledIcon$
|
|
8447
|
+
var StyledIcon$5 = index$a(Icon)(function (_ref3) {
|
|
8448
8448
|
var theme = _ref3.theme,
|
|
8449
8449
|
themeIntent = _ref3.themeIntent;
|
|
8450
8450
|
return {
|
|
@@ -8503,7 +8503,7 @@ var AlertIcon = function AlertIcon(_ref) {
|
|
|
8503
8503
|
intent = _ref.intent;
|
|
8504
8504
|
return icon ? /*#__PURE__*/React__namespace.default.createElement(IconContainer$1, {
|
|
8505
8505
|
testID: "alert-left-icon"
|
|
8506
|
-
}, /*#__PURE__*/React__namespace.default.createElement(StyledIcon$
|
|
8506
|
+
}, /*#__PURE__*/React__namespace.default.createElement(StyledIcon$5, {
|
|
8507
8507
|
icon: icon,
|
|
8508
8508
|
size: "small",
|
|
8509
8509
|
themeIntent: intent
|
|
@@ -8544,7 +8544,7 @@ var Alert = function Alert(_ref2) {
|
|
|
8544
8544
|
}, typeof actionLabel === 'string' ? /*#__PURE__*/React__namespace.default.createElement(StyledBody$1, {
|
|
8545
8545
|
variant: "small-bold",
|
|
8546
8546
|
themeIntent: intent
|
|
8547
|
-
}, actionLabel) : /*#__PURE__*/React__namespace.default.createElement(StyledIcon$
|
|
8547
|
+
}, actionLabel) : /*#__PURE__*/React__namespace.default.createElement(StyledIcon$5, {
|
|
8548
8548
|
icon: "cancel",
|
|
8549
8549
|
size: "small",
|
|
8550
8550
|
themeIntent: intent
|
|
@@ -8995,7 +8995,7 @@ var StyledTextWrapper$1 = index$a(reactNative.View)(function () {
|
|
|
8995
8995
|
height: '100%'
|
|
8996
8996
|
};
|
|
8997
8997
|
});
|
|
8998
|
-
var StyledText$2 = index$a(Typography.
|
|
8998
|
+
var StyledText$2 = index$a(Typography.Body)(function (_ref2) {
|
|
8999
8999
|
var themeSize = _ref2.themeSize,
|
|
9000
9000
|
theme = _ref2.theme;
|
|
9001
9001
|
return _objectSpread2({
|
|
@@ -9523,7 +9523,7 @@ var StyledStatus = index$a(reactNative.Animated.View)(function (_ref3) {
|
|
|
9523
9523
|
borderRadius: theme.radii.rounded
|
|
9524
9524
|
};
|
|
9525
9525
|
});
|
|
9526
|
-
var StyledIcon$
|
|
9526
|
+
var StyledIcon$4 = index$a(Icon)(function (_ref4) {
|
|
9527
9527
|
var themeSize = _ref4.themeSize,
|
|
9528
9528
|
theme = _ref4.theme;
|
|
9529
9529
|
return {
|
|
@@ -9631,7 +9631,7 @@ var Badge = function Badge(_ref) {
|
|
|
9631
9631
|
}]
|
|
9632
9632
|
}, style],
|
|
9633
9633
|
testID: testID
|
|
9634
|
-
}), isIconBadge ? /*#__PURE__*/React__namespace.default.createElement(StyledIcon$
|
|
9634
|
+
}), isIconBadge ? /*#__PURE__*/React__namespace.default.createElement(StyledIcon$4, {
|
|
9635
9635
|
icon: icon,
|
|
9636
9636
|
themeSize: size,
|
|
9637
9637
|
intent: "text-inverted"
|
|
@@ -9664,18 +9664,15 @@ var ContentWrapper = index$a(reactNative.View)({
|
|
|
9664
9664
|
var BottomBarWrapper = index$a(reactNative.View)(function (_ref2) {
|
|
9665
9665
|
var themeInsets = _ref2.themeInsets,
|
|
9666
9666
|
theme = _ref2.theme;
|
|
9667
|
-
return {
|
|
9667
|
+
return _objectSpread2({
|
|
9668
9668
|
height: theme.__hd__.bottomNavigation.sizes.height + themeInsets.bottom,
|
|
9669
9669
|
paddingBottom: themeInsets.bottom,
|
|
9670
9670
|
paddingLeft: Math.max(themeInsets.left, themeInsets.right),
|
|
9671
9671
|
paddingRight: Math.max(themeInsets.left, themeInsets.right),
|
|
9672
9672
|
backgroundColor: theme.__hd__.bottomNavigation.colors.background,
|
|
9673
|
-
|
|
9674
|
-
|
|
9675
|
-
|
|
9676
|
-
shadowRadius: theme.__hd__.bottomNavigation.shadows.radius,
|
|
9677
|
-
elevation: theme.__hd__.bottomNavigation.shadows.elevation
|
|
9678
|
-
};
|
|
9673
|
+
borderTopColor: theme.__hd__.bottomNavigation.colors.borderTop,
|
|
9674
|
+
borderTopWidth: theme.__hd__.bottomNavigation.borderWidths.borderTop
|
|
9675
|
+
}, theme.__hd__.bottomNavigation.shadows.wrapper);
|
|
9679
9676
|
});
|
|
9680
9677
|
var BottomBar = index$a(reactNative.View)({
|
|
9681
9678
|
flex: 1,
|
|
@@ -9827,11 +9824,6 @@ var StyledFloatingBottomSheet = index$a(reactNative.Animated.View)(function (_re
|
|
|
9827
9824
|
var theme = _ref2.theme;
|
|
9828
9825
|
return {
|
|
9829
9826
|
width: '100%',
|
|
9830
|
-
shadowColor: theme.__hd__.bottomSheet.colors.shadow,
|
|
9831
|
-
shadowOffset: theme.__hd__.bottomSheet.shadows.offset,
|
|
9832
|
-
shadowOpacity: theme.__hd__.bottomSheet.shadows.opacity,
|
|
9833
|
-
shadowRadius: theme.__hd__.bottomSheet.shadows.radius,
|
|
9834
|
-
elevation: theme.__hd__.bottomSheet.shadows.elevation,
|
|
9835
9827
|
backgroundColor: theme.__hd__.bottomSheet.colors.background,
|
|
9836
9828
|
borderRadius: theme.__hd__.bottomSheet.radii.floating,
|
|
9837
9829
|
maxHeight: '100%',
|
|
@@ -9845,11 +9837,6 @@ var StyledBottomSheet = index$a(AnimatedSafeAreaView)(function (_ref3) {
|
|
|
9845
9837
|
borderTopRightRadius: theme.__hd__.bottomSheet.radii["default"],
|
|
9846
9838
|
backgroundColor: theme.__hd__.bottomSheet.colors.background,
|
|
9847
9839
|
width: '100%',
|
|
9848
|
-
shadowColor: theme.__hd__.bottomSheet.colors.shadow,
|
|
9849
|
-
shadowOffset: theme.__hd__.bottomSheet.shadows.offset,
|
|
9850
|
-
shadowOpacity: theme.__hd__.bottomSheet.shadows.opacity,
|
|
9851
|
-
shadowRadius: theme.__hd__.bottomSheet.shadows.radius,
|
|
9852
|
-
elevation: theme.__hd__.bottomSheet.shadows.elevation,
|
|
9853
9840
|
maxHeight: '94%'
|
|
9854
9841
|
};
|
|
9855
9842
|
});
|
|
@@ -13207,8 +13194,8 @@ var setStartOrEndDate = function setStartOrEndDate(_ref2) {
|
|
|
13207
13194
|
var date = _ref2.date,
|
|
13208
13195
|
startDate = _ref2.startDate,
|
|
13209
13196
|
endDate = _ref2.endDate;
|
|
13210
|
-
// Prevent selecting same date
|
|
13211
|
-
if (isEqDate(date, startDate) || isEqDate(date, endDate)) {
|
|
13197
|
+
// Prevent selecting same date when both dates are set
|
|
13198
|
+
if (startDate && endDate && (isEqDate(date, startDate) || isEqDate(date, endDate))) {
|
|
13212
13199
|
return {
|
|
13213
13200
|
startDate: startDate,
|
|
13214
13201
|
endDate: endDate
|
|
@@ -13377,7 +13364,7 @@ var CalendarRange = function CalendarRange(_ref) {
|
|
|
13377
13364
|
if (isEqDate(value === null || value === void 0 ? void 0 : value.startDate, date) || isEqDate(value === null || value === void 0 ? void 0 : value.endDate, date)) {
|
|
13378
13365
|
return /*#__PURE__*/React__namespace.default.createElement(SelectedDate, {
|
|
13379
13366
|
isStart: isEqDate(date, value === null || value === void 0 ? void 0 : value.startDate),
|
|
13380
|
-
showConnector: !!(value !== null && value !== void 0 && value.startDate) && !!(value !== null && value !== void 0 && value.endDate),
|
|
13367
|
+
showConnector: !!(value !== null && value !== void 0 && value.startDate) && !!(value !== null && value !== void 0 && value.endDate) && !isEqDate(value.startDate, value.endDate),
|
|
13381
13368
|
key: date.toDateString(),
|
|
13382
13369
|
date: date,
|
|
13383
13370
|
onPress: function onPress() {
|
|
@@ -16286,7 +16273,7 @@ var StyledActionItemText = index$a(Typography.Body)(function (_ref2) {
|
|
|
16286
16273
|
color: theme.__hd__.fab.colors.actionItemText
|
|
16287
16274
|
};
|
|
16288
16275
|
});
|
|
16289
|
-
var StyledIcon$
|
|
16276
|
+
var StyledIcon$3 = index$a(Icon)(function (_ref3) {
|
|
16290
16277
|
var theme = _ref3.theme;
|
|
16291
16278
|
return {
|
|
16292
16279
|
color: theme.__hd__.fab.colors.actionItemText
|
|
@@ -16297,7 +16284,7 @@ var AnimatedTouchableHighlight = reactNative.Animated.createAnimatedComponent(re
|
|
|
16297
16284
|
var StyledFAB$2 = index$a(AnimatedTouchableHighlight)(function (_ref) {
|
|
16298
16285
|
var theme = _ref.theme,
|
|
16299
16286
|
themeActive = _ref.themeActive;
|
|
16300
|
-
return {
|
|
16287
|
+
return _objectSpread2({
|
|
16301
16288
|
backgroundColor: themeActive ? theme.__hd__.fab.colors.buttonActiveBackground : theme.__hd__.fab.colors.buttonBackground,
|
|
16302
16289
|
borderRadius: theme.radii.rounded,
|
|
16303
16290
|
alignItems: 'center',
|
|
@@ -16305,13 +16292,8 @@ var StyledFAB$2 = index$a(AnimatedTouchableHighlight)(function (_ref) {
|
|
|
16305
16292
|
alignSelf: 'flex-start',
|
|
16306
16293
|
padding: theme.__hd__.fab.space.containerPadding,
|
|
16307
16294
|
flexDirection: 'row',
|
|
16308
|
-
elevation: theme.__hd__.fab.shadows.elevation,
|
|
16309
|
-
shadowColor: theme.__hd__.fab.shadows.color,
|
|
16310
|
-
shadowOffset: theme.__hd__.fab.shadows.offset,
|
|
16311
|
-
shadowRadius: theme.__hd__.fab.shadows.radius,
|
|
16312
|
-
shadowOpacity: theme.__hd__.fab.shadows.opacity,
|
|
16313
16295
|
height: theme.__hd__.fab.sizes.height
|
|
16314
|
-
};
|
|
16296
|
+
}, theme.__hd__.fab.shadows["default"]);
|
|
16315
16297
|
});
|
|
16316
16298
|
var StyledFABIcon = index$a(Icon)(function (_ref2) {
|
|
16317
16299
|
var theme = _ref2.theme;
|
|
@@ -16375,7 +16357,7 @@ var ActionItem = function ActionItem(_ref) {
|
|
|
16375
16357
|
style: style,
|
|
16376
16358
|
onPress: onPress,
|
|
16377
16359
|
testID: testID
|
|
16378
|
-
}, /*#__PURE__*/React__namespace.default.createElement(React__namespace.default.Fragment, null, /*#__PURE__*/React__namespace.default.createElement(StyledIconContainer, null, /*#__PURE__*/React__namespace.default.createElement(StyledIcon$
|
|
16360
|
+
}, /*#__PURE__*/React__namespace.default.createElement(React__namespace.default.Fragment, null, /*#__PURE__*/React__namespace.default.createElement(StyledIconContainer, null, /*#__PURE__*/React__namespace.default.createElement(StyledIcon$3, {
|
|
16379
16361
|
size: "xsmall",
|
|
16380
16362
|
icon: icon
|
|
16381
16363
|
})), /*#__PURE__*/React__namespace.default.createElement(StyledActionItemText, null, title))));
|
|
@@ -16607,7 +16589,7 @@ var StyledBackdrop = index$a(AnimatedPressable)(function (_ref2) {
|
|
|
16607
16589
|
right: 0,
|
|
16608
16590
|
top: 0,
|
|
16609
16591
|
bottom: 0,
|
|
16610
|
-
opacity: 0.
|
|
16592
|
+
opacity: 0.4,
|
|
16611
16593
|
backgroundColor: theme.__hd__.fab.colors.backdropBackground
|
|
16612
16594
|
};
|
|
16613
16595
|
});
|
|
@@ -16784,17 +16766,12 @@ var Container = index$a(reactNative.Animated.View)(function (_ref2) {
|
|
|
16784
16766
|
var theme = _ref2.theme,
|
|
16785
16767
|
themeVariant = _ref2.themeVariant,
|
|
16786
16768
|
themeIntent = _ref2.themeIntent;
|
|
16787
|
-
return {
|
|
16769
|
+
return _objectSpread2({
|
|
16788
16770
|
borderRadius: themeVariant === 'round' ? theme.__hd__.toast.radii["default"] : 0,
|
|
16789
16771
|
backgroundColor: theme.__hd__.toast.colors.backgrounds[themeIntent],
|
|
16790
16772
|
minHeight: theme.__hd__.toast.sizes.height,
|
|
16791
|
-
flexDirection: 'row'
|
|
16792
|
-
|
|
16793
|
-
shadowOffset: theme.__hd__.toast.shadows.offset,
|
|
16794
|
-
shadowRadius: theme.__hd__.toast.shadows.radius,
|
|
16795
|
-
shadowOpacity: theme.__hd__.toast.shadows.opacity,
|
|
16796
|
-
elevation: theme.__hd__.toast.shadows.elevation
|
|
16797
|
-
};
|
|
16773
|
+
flexDirection: 'row'
|
|
16774
|
+
}, theme.__hd__.toast.shadows.wrapper);
|
|
16798
16775
|
});
|
|
16799
16776
|
var IconContainer = index$a(reactNative.View)(function (_ref3) {
|
|
16800
16777
|
var theme = _ref3.theme;
|
|
@@ -16835,7 +16812,7 @@ var StyledBody = index$a(Typography.Body)(function (_ref7) {
|
|
|
16835
16812
|
color: theme.__hd__.toast.colors.texts[themeIntent]
|
|
16836
16813
|
};
|
|
16837
16814
|
});
|
|
16838
|
-
var StyledIcon$
|
|
16815
|
+
var StyledIcon$2 = index$a(Icon)(function (_ref8) {
|
|
16839
16816
|
var theme = _ref8.theme,
|
|
16840
16817
|
themeIntent = _ref8.themeIntent;
|
|
16841
16818
|
return {
|
|
@@ -16888,7 +16865,7 @@ var ToastIcon = function ToastIcon(_ref) {
|
|
|
16888
16865
|
icon = _ref.icon;
|
|
16889
16866
|
return icon ? /*#__PURE__*/React__namespace.default.createElement(IconContainer, {
|
|
16890
16867
|
testID: "toast-left-icon"
|
|
16891
|
-
}, /*#__PURE__*/React__namespace.default.createElement(StyledIcon$
|
|
16868
|
+
}, /*#__PURE__*/React__namespace.default.createElement(StyledIcon$2, {
|
|
16892
16869
|
icon: icon,
|
|
16893
16870
|
size: "small",
|
|
16894
16871
|
themeIntent: themeIntent
|
|
@@ -17140,15 +17117,19 @@ var StyledContent = index$a(reactNative.View)(function (_ref2) {
|
|
|
17140
17117
|
alignItems: 'center'
|
|
17141
17118
|
};
|
|
17142
17119
|
});
|
|
17143
|
-
var StyledBadge$1 = index$a(
|
|
17120
|
+
var StyledBadge$1 = index$a(reactNative.View)(function (_ref3) {
|
|
17144
17121
|
var theme = _ref3.theme;
|
|
17145
17122
|
return {
|
|
17146
17123
|
right: theme.__hd__.mapPin.space.iconRight,
|
|
17147
17124
|
top: theme.__hd__.mapPin.space.iconTop,
|
|
17148
17125
|
position: 'absolute',
|
|
17149
17126
|
backgroundColor: theme.__hd__.mapPin.colors.badge,
|
|
17150
|
-
|
|
17151
|
-
zIndex: 2
|
|
17127
|
+
borderRadius: theme.__hd__.mapPin.radii.badge,
|
|
17128
|
+
zIndex: 2,
|
|
17129
|
+
alignItems: 'center',
|
|
17130
|
+
justifyContent: 'center',
|
|
17131
|
+
width: theme.__hd__.mapPin.sizes.badge,
|
|
17132
|
+
height: theme.__hd__.mapPin.sizes.badge
|
|
17152
17133
|
};
|
|
17153
17134
|
});
|
|
17154
17135
|
var StyledImage = index$a.Image(function (_ref4) {
|
|
@@ -17159,6 +17140,18 @@ var StyledImage = index$a.Image(function (_ref4) {
|
|
|
17159
17140
|
borderRadius: theme.__hd__.mapPin.radii["default"] - theme.__hd__.mapPin.borderWidths["default"]
|
|
17160
17141
|
};
|
|
17161
17142
|
});
|
|
17143
|
+
var StyledIcon$1 = index$a(Icon)(function (_ref5) {
|
|
17144
|
+
var theme = _ref5.theme;
|
|
17145
|
+
return {
|
|
17146
|
+
color: theme.__hd__.mapPin.colors.icon
|
|
17147
|
+
};
|
|
17148
|
+
});
|
|
17149
|
+
var StyledBadgeIcon = index$a(Icon)(function (_ref6) {
|
|
17150
|
+
var theme = _ref6.theme;
|
|
17151
|
+
return {
|
|
17152
|
+
color: theme.__hd__.mapPin.colors.badgeIcon
|
|
17153
|
+
};
|
|
17154
|
+
});
|
|
17162
17155
|
function hexToRgba(hex, a) {
|
|
17163
17156
|
var arrBuff = new ArrayBuffer(4);
|
|
17164
17157
|
var vw = new DataView(arrBuff);
|
|
@@ -17170,8 +17163,8 @@ function hexToRgba(hex, a) {
|
|
|
17170
17163
|
b = _arrByte[2];
|
|
17171
17164
|
return "rgba(".concat(r, ",").concat(g, ",").concat(b, ",").concat(a, ")");
|
|
17172
17165
|
}
|
|
17173
|
-
var StyledFocusIcon = index$a(Icon)(function (
|
|
17174
|
-
var theme =
|
|
17166
|
+
var StyledFocusIcon = index$a(Icon)(function (_ref7) {
|
|
17167
|
+
var theme = _ref7.theme;
|
|
17175
17168
|
return {
|
|
17176
17169
|
fontSize: theme.__hd__.mapPin.fontSizes.icon,
|
|
17177
17170
|
textShadowColor: hexToRgba(theme.__hd__.mapPin.shadows.color, theme.__hd__.mapPin.shadows.opacity),
|
|
@@ -17219,16 +17212,16 @@ var MapPin = function MapPin(_ref) {
|
|
|
17219
17212
|
themeState: state
|
|
17220
17213
|
}, image && /*#__PURE__*/React__namespace.default.createElement(StyledImage, _extends$1({
|
|
17221
17214
|
testID: testID ? "".concat(testID, "-image") : undefined
|
|
17222
|
-
}, image)), icon && /*#__PURE__*/React__namespace.default.createElement(
|
|
17215
|
+
}, image)), icon && /*#__PURE__*/React__namespace.default.createElement(StyledIcon$1, {
|
|
17223
17216
|
icon: icon,
|
|
17224
17217
|
size: "xsmall",
|
|
17225
|
-
intent: "text",
|
|
17226
17218
|
testID: testID ? "".concat(testID, "-icon") : undefined
|
|
17227
17219
|
})), badgeIcon && /*#__PURE__*/React__namespace.default.createElement(StyledBadge$1, {
|
|
17228
|
-
icon: badgeIcon,
|
|
17229
|
-
intent: "primary",
|
|
17230
17220
|
testID: testID ? "".concat(testID, "-badge") : undefined
|
|
17231
|
-
}
|
|
17221
|
+
}, /*#__PURE__*/React__namespace.default.createElement(StyledBadgeIcon, {
|
|
17222
|
+
icon: badgeIcon,
|
|
17223
|
+
size: "xxxsmall"
|
|
17224
|
+
})));
|
|
17232
17225
|
};
|
|
17233
17226
|
var index$6 = Object.assign(MapPin, {
|
|
17234
17227
|
Focussed: MapPinFocussed
|
|
@@ -17251,13 +17244,8 @@ var StyledListItemContainer$1 = index$a(reactNative.TouchableHighlight)(function
|
|
|
17251
17244
|
return sharedStyles;
|
|
17252
17245
|
case 'card':
|
|
17253
17246
|
return _objectSpread2(_objectSpread2({}, sharedStyles), {}, {
|
|
17254
|
-
alignItems: 'center'
|
|
17255
|
-
|
|
17256
|
-
shadowRadius: theme.__hd__.list.shadows.card.radius,
|
|
17257
|
-
shadowOffset: theme.__hd__.list.shadows.card.offset,
|
|
17258
|
-
shadowOpacity: theme.__hd__.list.shadows.card.opacity,
|
|
17259
|
-
elevation: theme.__hd__.list.shadows.card.elevation
|
|
17260
|
-
});
|
|
17247
|
+
alignItems: 'center'
|
|
17248
|
+
}, theme.__hd__.list.shadows.card);
|
|
17261
17249
|
default:
|
|
17262
17250
|
return sharedStyles;
|
|
17263
17251
|
}
|
|
@@ -40201,12 +40189,7 @@ var StyledInputContainer = index$a(reactNative.View)(function (_ref) {
|
|
|
40201
40189
|
borderRadius: theme.__hd__.search.radii.container,
|
|
40202
40190
|
borderWidth: borderWidth,
|
|
40203
40191
|
borderColor: themeFocused ? theme.__hd__.search.colors[themeVariant].focusedBorder : theme.__hd__.search.colors[themeVariant].border
|
|
40204
|
-
}, themeVariant === 'reversed' && {
|
|
40205
|
-
elevation: theme.__hd__.search.shadows.elevation,
|
|
40206
|
-
shadowOffset: theme.__hd__.search.shadows.offset,
|
|
40207
|
-
shadowOpacity: theme.__hd__.search.shadows.opacity,
|
|
40208
|
-
shadowRadius: theme.__hd__.search.shadows.radius
|
|
40209
|
-
});
|
|
40192
|
+
}, themeVariant === 'reversed' && _objectSpread2({}, theme.__hd__.search.shadows.container));
|
|
40210
40193
|
});
|
|
40211
40194
|
var StyledAffixContainer = index$a(reactNative.View)(function (_ref2) {
|
|
40212
40195
|
var theme = _ref2.theme;
|