@hero-design/rn 8.91.4 → 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.
Files changed (67) hide show
  1. package/.turbo/turbo-build.log +2 -2
  2. package/CHANGELOG.md +16 -0
  3. package/assets/fonts/hero-icons-mobile.ttf +0 -0
  4. package/es/index.js +418 -408
  5. package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
  6. package/lib/index.js +418 -408
  7. package/package.json +1 -1
  8. package/src/components/Alert/StyledAlert.tsx +1 -0
  9. package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +56 -0
  10. package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/StyledAvatarStack.spec.tsx.snap +8 -10
  11. package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/index.spec.tsx.snap +116 -145
  12. package/src/components/Avatar/StyledAvatar.tsx +1 -1
  13. package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +4 -5
  14. package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +8 -10
  15. package/src/components/BottomNavigation/StyledBottomNavigation.tsx +3 -5
  16. package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +6 -4
  17. package/src/components/Chip/__tests__/__snapshots__/index.spec.tsx.snap +28 -28
  18. package/src/components/FloatingIsland/__tests__/__snapshots__/index.spec.tsx.snap +12 -12
  19. package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
  20. package/src/components/Icon/IconList.ts +1 -0
  21. package/src/components/List/StyledListItem.tsx +1 -5
  22. package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +8 -10
  23. package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +6 -6
  24. package/src/components/MapPin/StyledMapPin.tsx +14 -3
  25. package/src/components/MapPin/__tests__/__snapshots__/index.spec.tsx.snap +58 -65
  26. package/src/components/MapPin/index.tsx +7 -8
  27. package/src/components/Search/StyledSearch.tsx +1 -4
  28. package/src/components/Search/__tests__/__snapshots__/SearchOneLine.spec.tsx.snap +3 -2
  29. package/src/components/Search/__tests__/__snapshots__/SearchTwoLine.spec.tsx.snap +3 -2
  30. package/src/components/Toast/StyledToast.tsx +1 -5
  31. package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +21 -21
  32. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +59 -32
  33. package/src/theme/components/alert.ts +5 -1
  34. package/src/theme/components/avatar.ts +1 -1
  35. package/src/theme/components/bottomNavigation.ts +7 -5
  36. package/src/theme/components/chip.ts +2 -2
  37. package/src/theme/components/floatingIsland.ts +1 -1
  38. package/src/theme/components/list.ts +1 -7
  39. package/src/theme/components/mapPin.ts +6 -2
  40. package/src/theme/components/search.ts +1 -5
  41. package/src/theme/components/toast.ts +1 -5
  42. package/src/theme/global/colors/eBens.ts +3 -0
  43. package/src/theme/global/colors/jobs.ts +3 -0
  44. package/src/theme/global/colors/swag.ts +3 -0
  45. package/src/theme/global/colors/swagDark.ts +3 -0
  46. package/src/theme/global/colors/wallet.ts +3 -0
  47. package/src/theme/global/colors/work.ts +3 -0
  48. package/stats/8.91.5/rn-stats.html +4842 -0
  49. package/types/components/Avatar/StyledAvatar.d.ts +2 -2
  50. package/types/components/Icon/IconList.d.ts +1 -1
  51. package/types/components/Icon/index.d.ts +1 -1
  52. package/types/components/MapPin/StyledMapPin.d.ts +12 -2
  53. package/types/components/TextInput/index.d.ts +1 -1
  54. package/types/theme/components/alert.d.ts +3 -0
  55. package/types/theme/components/avatar.d.ts +1 -1
  56. package/types/theme/components/bottomNavigation.d.ts +5 -7
  57. package/types/theme/components/chip.d.ts +1 -1
  58. package/types/theme/components/list.d.ts +1 -10
  59. package/types/theme/components/mapPin.d.ts +6 -2
  60. package/types/theme/components/search.d.ts +1 -8
  61. package/types/theme/components/toast.d.ts +1 -8
  62. package/types/theme/global/colors/eBens.d.ts +3 -0
  63. package/types/theme/global/colors/jobs.d.ts +3 -0
  64. package/types/theme/global/colors/swag.d.ts +3 -0
  65. package/types/theme/global/colors/swagDark.d.ts +3 -0
  66. package/types/theme/global/colors/wallet.d.ts +3 -0
  67. package/types/theme/global/colors/work.d.ts +3 -0
package/lib/index.js CHANGED
@@ -1955,6 +1955,9 @@ var swagBrandSystemPallete$1 = {
1955
1955
  decorativePrimary: palette$4.white,
1956
1956
  decorativePrimarySurface: palette$4.maasstrichtBlueLight80
1957
1957
  };
1958
+ /**
1959
+ * @deprecated This palette is deprecated and will be removed in the next major release.
1960
+ */
1958
1961
  var swagSystemPalette$1 = _objectSpread2(_objectSpread2({}, globalPalette$1), swagBrandSystemPallete$1);
1959
1962
 
1960
1963
  var globalPalette = {
@@ -2009,6 +2012,9 @@ var swagDarkBrandSystemPalette = {
2009
2012
  decorativePrimary: palette$2.maasstrichtBlue,
2010
2013
  decorativePrimarySurface: palette$2.maasstrichtBlueLight10
2011
2014
  };
2015
+ /**
2016
+ * @deprecated This palette is deprecated and will be removed in the next major release.
2017
+ */
2012
2018
  var swagDarkSystemPalette = _objectSpread2(_objectSpread2(_objectSpread2({}, globalPalette), swagDarkBrandSystemPalette), {}, {
2013
2019
  // Theme Mode
2014
2020
  themeMode: 'dark'
@@ -2059,6 +2065,9 @@ var workBrandSystemPallete = {
2059
2065
  decorativePrimary: palette.gold,
2060
2066
  decorativePrimarySurface: palette.goldLight80
2061
2067
  };
2068
+ /**
2069
+ * @deprecated This palette is deprecated and will be removed in the next major release.
2070
+ */
2062
2071
  var workSystemPalette = _objectSpread2(_objectSpread2({}, swagSystemPalette$1), workBrandSystemPallete);
2063
2072
 
2064
2073
  var jobsBrandSystemPallete = {
@@ -2072,6 +2081,9 @@ var jobsBrandSystemPallete = {
2072
2081
  decorativePrimary: palette$5.hitPink,
2073
2082
  decorativePrimarySurface: palette$5.hitPinkLight80
2074
2083
  };
2084
+ /**
2085
+ * @deprecated This palette is deprecated and will be removed in the next major release.
2086
+ */
2075
2087
  var jobsSystemPalette = _objectSpread2(_objectSpread2({}, swagSystemPalette$1), jobsBrandSystemPallete);
2076
2088
 
2077
2089
  var walletBrandSystemPallete = {
@@ -2085,6 +2097,9 @@ var walletBrandSystemPallete = {
2085
2097
  decorativePrimary: palette$1.frenchSky,
2086
2098
  decorativePrimarySurface: palette$1.frenchSkyLight80
2087
2099
  };
2100
+ /**
2101
+ * @deprecated This palette is deprecated and will be removed in the next major release.
2102
+ */
2088
2103
  var walletSystemPalette = _objectSpread2(_objectSpread2({}, swagSystemPalette$1), walletBrandSystemPallete);
2089
2104
 
2090
2105
  var eBensBrandSystemPallete = {
@@ -2098,6 +2113,9 @@ var eBensBrandSystemPallete = {
2098
2113
  decorativePrimary: palette$6.mauve,
2099
2114
  decorativePrimarySurface: palette$6.mauveLight80
2100
2115
  };
2116
+ /**
2117
+ * @deprecated This palette is deprecated and will be removed in the next major release.
2118
+ */
2101
2119
  var eBensSystemPalette = _objectSpread2(_objectSpread2({}, swagSystemPalette$1), eBensBrandSystemPallete);
2102
2120
 
2103
2121
  var ehWorkDarkSystemPalette = {
@@ -2507,12 +2525,16 @@ var getAlertTheme = function getAlertTheme(theme) {
2507
2525
  var borderWidths = {
2508
2526
  base: theme.borderWidths.base
2509
2527
  };
2528
+ var shadows = {
2529
+ wrapper: theme.shadows.cardDrawer
2530
+ };
2510
2531
  return {
2511
2532
  colors: colors,
2512
2533
  radii: radii,
2513
2534
  sizes: sizes,
2514
2535
  space: space,
2515
- borderWidths: borderWidths
2536
+ borderWidths: borderWidths,
2537
+ shadows: shadows
2516
2538
  };
2517
2539
  };
2518
2540
 
@@ -2549,7 +2571,7 @@ var getAvatarTheme = function getAvatarTheme(theme) {
2549
2571
  danger: theme.colors.error,
2550
2572
  success: theme.colors.success,
2551
2573
  warning: theme.colors.warning,
2552
- text: theme.colors.onDarkGlobalSurface
2574
+ text: theme.colors.white
2553
2575
  };
2554
2576
  var sizes = {
2555
2577
  small: theme.sizes.xlarge,
@@ -2665,25 +2687,24 @@ var getBadgeTheme = function getBadgeTheme(theme) {
2665
2687
  var getBottomNavigationTheme = function getBottomNavigationTheme(theme) {
2666
2688
  var colors = {
2667
2689
  shadow: theme.colors.primary,
2668
- background: theme.colors.defaultGlobalSurface
2690
+ background: theme.colors.defaultGlobalSurface,
2691
+ borderTop: theme.colors.secondaryOutline
2692
+ };
2693
+ var borderWidths = {
2694
+ borderTop: theme.borderWidths.base
2669
2695
  };
2670
2696
  var sizes = {
2671
2697
  height: theme.sizes['6xlarge']
2672
2698
  };
2673
2699
  var shadows = {
2674
- offset: {
2675
- width: 0,
2676
- height: 3
2677
- },
2678
- opacity: 0.27,
2679
- radius: 4.65,
2680
- elevation: 10
2700
+ wrapper: theme.shadows.tabBar
2681
2701
  };
2682
2702
  var space = {
2683
2703
  titleMarginTop: theme.space.xsmall
2684
2704
  };
2685
2705
  return {
2686
2706
  colors: colors,
2707
+ borderWidths: borderWidths,
2687
2708
  shadows: shadows,
2688
2709
  sizes: sizes,
2689
2710
  space: space
@@ -2967,7 +2988,7 @@ var getCheckboxTheme = function getCheckboxTheme(theme) {
2967
2988
 
2968
2989
  var getChipTheme = function getChipTheme(theme) {
2969
2990
  var colors = {
2970
- secondaryBackground: theme.colors.highlightedSurface,
2991
+ secondaryBackground: theme.colors.decorativeSecondarySurface,
2971
2992
  filledBackground: theme.colors.defaultGlobalSurface,
2972
2993
  wrapperSelectedBorder: 'transparent',
2973
2994
  outlinedDefaultBackground: theme.colors.defaultGlobalSurface,
@@ -2991,7 +3012,7 @@ var getChipTheme = function getChipTheme(theme) {
2991
3012
  outlinedDefaultBorder: theme.borderWidths.base
2992
3013
  };
2993
3014
  var shadows = {
2994
- filledWrapper: theme.shadows["default"]
3015
+ filledWrapper: theme.shadows.cardDrawer
2995
3016
  };
2996
3017
  var fontSizes = {
2997
3018
  icon: theme.fontSizes.small
@@ -3280,13 +3301,7 @@ var getListTheme = function getListTheme(theme) {
3280
3301
  leadingStatus: theme.radii.rounded
3281
3302
  };
3282
3303
  var shadows = {
3283
- card: {
3284
- offset: theme.shadows["default"].shadowOffset,
3285
- elevation: theme.shadows["default"].elevation,
3286
- color: theme.shadows["default"].shadowColor,
3287
- radius: theme.shadows["default"].shadowRadius,
3288
- opacity: theme.shadows["default"].shadowOpacity
3289
- }
3304
+ card: theme.shadows.cardDrawer
3290
3305
  };
3291
3306
  var widths = {
3292
3307
  leadingStatus: 8
@@ -3973,11 +3988,7 @@ var getToastTheme = function getToastTheme(theme) {
3973
3988
  base: theme.borderWidths.base
3974
3989
  };
3975
3990
  var shadows = {
3976
- offset: theme.shadows["default"].shadowOffset,
3977
- opacity: theme.shadows["default"].shadowOpacity,
3978
- radius: theme.shadows["default"].shadowRadius,
3979
- elevation: theme.shadows["default"].elevation,
3980
- color: theme.shadows["default"].shadowColor
3991
+ wrapper: theme.shadows.cardDrawer
3981
3992
  };
3982
3993
  return {
3983
3994
  colors: colors,
@@ -4231,11 +4242,7 @@ var getSearchTheme = function getSearchTheme(theme) {
4231
4242
  shadow: theme.colors.primaryOutline
4232
4243
  };
4233
4244
  var shadows = {
4234
- offset: theme.shadows["default"].shadowOffset,
4235
- opacity: theme.shadows["default"].shadowOpacity,
4236
- radius: theme.shadows["default"].shadowRadius,
4237
- elevation: theme.shadows["default"].elevation,
4238
- color: theme.shadows["default"].shadowColor
4245
+ container: theme.shadows.cardDrawer
4239
4246
  };
4240
4247
  var space = {
4241
4248
  containerHorizontalPadding: theme.space.small,
@@ -4286,7 +4293,8 @@ var getSearchTheme = function getSearchTheme(theme) {
4286
4293
 
4287
4294
  var getMapPinTheme = function getMapPinTheme(theme) {
4288
4295
  var sizes = {
4289
- "default": 42
4296
+ "default": 42,
4297
+ badge: theme.sizes.large
4290
4298
  };
4291
4299
  var fontSizes = {
4292
4300
  icon: 42
@@ -4296,15 +4304,18 @@ var getMapPinTheme = function getMapPinTheme(theme) {
4296
4304
  };
4297
4305
  var colors = {
4298
4306
  border: {
4299
- idle: theme.colors.defaultGlobalSurface,
4307
+ idle: theme.colors.white,
4300
4308
  selected: theme.colors.secondary,
4301
4309
  applied: theme.colors.secondary
4302
4310
  },
4311
+ icon: theme.colors.black,
4303
4312
  badge: theme.colors.secondary,
4304
- background: theme.colors.defaultGlobalSurface
4313
+ badgeIcon: theme.colors.onSecondary,
4314
+ background: theme.colors.white
4305
4315
  };
4306
4316
  var radii = {
4307
- "default": theme.radii.large
4317
+ "default": theme.radii.large,
4318
+ badge: theme.radii.rounded
4308
4319
  };
4309
4320
  var space = {
4310
4321
  iconTop: -theme.space.small,
@@ -4336,7 +4347,7 @@ var getFloatingIslandTheme = function getFloatingIslandTheme(theme) {
4336
4347
  wrapper: theme.radii.rounded
4337
4348
  };
4338
4349
  var shadows = {
4339
- wrapper: theme.shadows["default"]
4350
+ wrapper: theme.shadows.cardDrawer
4340
4351
  };
4341
4352
  var space = {
4342
4353
  wrapperPadding: theme.space.small,
@@ -7689,7 +7700,7 @@ var Typography = {
7689
7700
  };
7690
7701
 
7691
7702
  // 🔴 DO NOT EDIT — This file is generated automatically.
7692
- 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'];
7693
7704
 
7694
7705
  var activate = 59000;
7695
7706
  var adjustment = 59003;
@@ -7738,51 +7749,51 @@ var menu = 59127;
7738
7749
  var moneybag = 59129;
7739
7750
  var moon = 59130;
7740
7751
  var node = 59134;
7741
- var paperclip = 59136;
7742
- var pencil = 59138;
7743
- var phone = 59139;
7744
- var plane = 59142;
7745
- var print = 59145;
7746
- var reply = 59148;
7747
- var reschedule = 59149;
7748
- var rostering = 59150;
7749
- var save = 59152;
7750
- var schedule = 59154;
7751
- var search = 59156;
7752
- var send = 59157;
7753
- var speaker = 59159;
7754
- var star = 59164;
7755
- var stopwatch = 59166;
7756
- var suitcase = 59167;
7757
- var surfing = 59168;
7758
- var survey = 59169;
7759
- var swag = 59174;
7760
- var tag = 59177;
7761
- var target = 59178;
7762
- var teams = 59179;
7763
- var timesheet = 59181;
7764
- var unlock = 59184;
7765
- var user = 59185;
7766
- var wallet = 59188;
7767
- var warning = 59189;
7768
- var add = 59196;
7769
- var bold = 59226;
7770
- var cancel = 59242;
7771
- var checkmark = 59248;
7772
- var italic = 59344;
7773
- var local_mall_outlined = 59351;
7774
- var number = 59374;
7775
- var percentage = 59380;
7776
- var redeem = 59390;
7777
- var refresh = 59391;
7778
- var remove = 59392;
7779
- var restart = 59394;
7780
- var shopping_basket_outlined = 59410;
7781
- var strikethrough = 59425;
7782
- var sync = 59431;
7783
- var transfer = 59440;
7784
- var unavailable = 59445;
7785
- var underline = 59446;
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;
7786
7797
  var glyphMap = {
7787
7798
  activate: activate,
7788
7799
  "add-emoji": 59001,
@@ -7920,329 +7931,330 @@ var glyphMap = {
7920
7931
  "near-me": 59133,
7921
7932
  node: node,
7922
7933
  "open-folder": 59135,
7934
+ "paperclip-vertical": 59136,
7923
7935
  paperclip: paperclip,
7924
- "payment-summary": 59137,
7936
+ "payment-summary": 59138,
7925
7937
  pencil: pencil,
7926
7938
  phone: phone,
7927
- "piggy-bank": 59140,
7928
- "plane-up": 59141,
7939
+ "piggy-bank": 59141,
7940
+ "plane-up": 59142,
7929
7941
  plane: plane,
7930
- "play-arrow": 59143,
7931
- "play-circle": 59144,
7942
+ "play-arrow": 59144,
7943
+ "play-circle": 59145,
7932
7944
  print: print,
7933
- "raising-hands": 59146,
7934
- "reply-arrow": 59147,
7945
+ "raising-hands": 59147,
7946
+ "reply-arrow": 59148,
7935
7947
  reply: reply,
7936
7948
  reschedule: reschedule,
7937
7949
  rostering: rostering,
7938
- "salary-sacrifice": 59151,
7950
+ "salary-sacrifice": 59152,
7939
7951
  save: save,
7940
- "schedule-send": 59153,
7952
+ "schedule-send": 59154,
7941
7953
  schedule: schedule,
7942
- "search-person": 59155,
7954
+ "search-person": 59156,
7943
7955
  search: search,
7944
7956
  send: send,
7945
- "speaker-active": 59158,
7957
+ "speaker-active": 59159,
7946
7958
  speaker: speaker,
7947
- "star-award": 59160,
7948
- "star-badge": 59161,
7949
- "star-circle": 59162,
7950
- "star-medal": 59163,
7959
+ "star-award": 59161,
7960
+ "star-badge": 59162,
7961
+ "star-circle": 59163,
7962
+ "star-medal": 59164,
7951
7963
  star: star,
7952
- "steps-circle": 59165,
7964
+ "steps-circle": 59166,
7953
7965
  stopwatch: stopwatch,
7954
7966
  suitcase: suitcase,
7955
7967
  surfing: surfing,
7956
7968
  survey: survey,
7957
- "swag-pillar-benefit": 59170,
7958
- "swag-pillar-career": 59171,
7959
- "swag-pillar-money": 59172,
7960
- "swag-pillar-work": 59173,
7969
+ "swag-pillar-benefit": 59171,
7970
+ "swag-pillar-career": 59172,
7971
+ "swag-pillar-money": 59173,
7972
+ "swag-pillar-work": 59174,
7961
7973
  swag: swag,
7962
- "swipe-right": 59175,
7963
- "switch": 59176,
7974
+ "swipe-right": 59176,
7975
+ "switch": 59177,
7964
7976
  tag: tag,
7965
7977
  target: target,
7966
7978
  teams: teams,
7967
- "thumb-down": 59180,
7979
+ "thumb-down": 59181,
7968
7980
  timesheet: timesheet,
7969
- "touch-id": 59182,
7970
- "trash-bin": 59183,
7981
+ "touch-id": 59183,
7982
+ "trash-bin": 59184,
7971
7983
  unlock: unlock,
7972
7984
  user: user,
7973
- "video-1": 59186,
7974
- "video-2": 59187,
7985
+ "video-1": 59187,
7986
+ "video-2": 59188,
7975
7987
  wallet: wallet,
7976
7988
  warning: warning,
7977
- "accommodation-outlined": 59190,
7978
- "activate-outlined": 59191,
7979
- "add-credit-card-outlined": 59192,
7980
- "add-person-outlined": 59193,
7981
- "add-section-outlined": 59194,
7982
- "add-time-outlined": 59195,
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,
7983
7995
  add: add,
7984
- "adjustment-outlined": 59197,
7985
- "afternoon-outlined": 59198,
7986
- "ai-outlined": 59199,
7987
- "alignment-2-outlined": 59200,
7988
- "alignment-outlined": 59201,
7989
- "all-caps": 59202,
7990
- "application-outlined": 59203,
7991
- "arrow-down": 59204,
7992
- "arrow-downwards": 59205,
7993
- "arrow-left": 59206,
7994
- "arrow-leftwards": 59207,
7995
- "arrow-right": 59208,
7996
- "arrow-rightwards": 59209,
7997
- "arrow-up": 59210,
7998
- "arrow-upwards": 59211,
7999
- "article-outlined": 59212,
8000
- "at-sign": 59213,
8001
- "auto-graph-outlined": 59214,
8002
- "automotive-outlined": 59215,
8003
- "bakery-outlined": 59216,
8004
- "bar-outlined": 59217,
8005
- "beauty-outlined": 59218,
8006
- "beer-outlined": 59219,
8007
- "bell-active-outlined": 59220,
8008
- "bell-outlined": 59221,
8009
- "bell-slash-outlined": 59222,
8010
- "bill-management-outlined": 59223,
8011
- "billing-outlined": 59224,
8012
- "body-outlined": 59225,
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,
8013
8025
  bold: bold,
8014
- "bolt-outlined": 59227,
8015
- "book-outlined": 59228,
8016
- "bookmark-added-outlined": 59229,
8017
- "bookmark-checked-outlined": 59230,
8018
- "bookmark-outlined": 59231,
8019
- "box-1-outlined": 59232,
8020
- "box-check-outlined": 59233,
8021
- "box-outlined": 59234,
8022
- "bullet-points": 59235,
8023
- "cake-outlined": 59236,
8024
- "calendar-dates-outlined": 59237,
8025
- "calendar-star-outlined": 59238,
8026
- "call-outlined": 59239,
8027
- "call-split-outlined": 59240,
8028
- "camera-outlined": 59241,
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,
8029
8041
  cancel: cancel,
8030
- "car-forward-outlined": 59243,
8031
- "cashback-outlined": 59244,
8032
- "charging-station-outlined": 59245,
8033
- "chat-bubble-outlined": 59246,
8034
- "chat-unread-outlined": 59247,
8042
+ "car-forward-outlined": 59244,
8043
+ "cashback-outlined": 59245,
8044
+ "charging-station-outlined": 59246,
8045
+ "chat-bubble-outlined": 59247,
8046
+ "chat-unread-outlined": 59248,
8035
8047
  checkmark: checkmark,
8036
- "circle-add-outlined": 59249,
8037
- "circle-cancel-outlined": 59250,
8038
- "circle-down-outlined": 59251,
8039
- "circle-info-outlined": 59252,
8040
- "circle-left-outlined": 59253,
8041
- "circle-ok-outlined": 59254,
8042
- "circle-question-outlined": 59255,
8043
- "circle-remove-outlined": 59256,
8044
- "circle-right-outlined": 59257,
8045
- "circle-up-outlined": 59258,
8046
- "circle-warning-outlined": 59259,
8047
- "clock-2-outlined": 59260,
8048
- "clock-in-outlined": 59261,
8049
- "clock-out-outlined": 59262,
8050
- "clock-outlined": 59263,
8051
- "cog-outlined": 59264,
8052
- "coin-outlined": 59265,
8053
- "coin-super-outlined": 59266,
8054
- "comment-outlined": 59267,
8055
- "contacts-outlined": 59268,
8056
- "contacts-user-outlined": 59269,
8057
- "credit-card-outlined": 59270,
8058
- "cultural-site-outlined": 59271,
8059
- "cup-outlined": 59272,
8060
- "dentistry-outlined": 59273,
8061
- "direction-arrows-outlined": 59274,
8062
- "directory-outlined": 59275,
8063
- "document-outlined": 59276,
8064
- "dollar-box-outlined": 59277,
8065
- "dollar-card-outlined": 59278,
8066
- "dollar-coin-shine-outlined": 59279,
8067
- "dollar-credit-card-outlined": 59280,
8068
- "dollar-sign": 59281,
8069
- "double-buildings-outlined": 59282,
8070
- "double-left-arrows": 59283,
8071
- "double-right-arrows": 59284,
8072
- "download-box-outlined": 59285,
8073
- "download-outlined": 59286,
8074
- "edit-template-outlined": 59287,
8075
- "electronics-outlined": 59288,
8076
- "email-outlined": 59289,
8077
- "end-break-outlined": 59290,
8078
- "enter-arrow": 59291,
8079
- "entertainment-outlined": 59292,
8080
- "envelope-outlined": 59293,
8081
- "evening-outlined": 59294,
8082
- "expense-approval-outlined": 59295,
8083
- "expense-outlined": 59296,
8084
- "explore-outlined": 59297,
8085
- "extension-outlined": 59298,
8086
- "external-link": 59299,
8087
- "eye-invisible-outlined": 59300,
8088
- "eye-outlined": 59301,
8089
- "face-id": 59302,
8090
- "face-meh-outlined": 59303,
8091
- "face-open-smiley-outlined": 59304,
8092
- "face-sad-outlined": 59305,
8093
- "face-smiley-outlined": 59306,
8094
- "fastfood-outlined": 59307,
8095
- "feed-outlined": 59308,
8096
- "file-certified-outlined": 59309,
8097
- "file-clone-outlined": 59310,
8098
- "file-copy-outlined": 59311,
8099
- "file-dispose-outlined": 59312,
8100
- "file-dollar-certified-outlined": 59313,
8101
- "file-dollar-outlined": 59314,
8102
- "file-download-outlined": 59315,
8103
- "file-export-outlined": 59316,
8104
- "file-lock-outlined": 59317,
8105
- "file-outlined": 59318,
8106
- "file-search-outlined": 59319,
8107
- "file-secured-outlined": 59320,
8108
- "file-statutory-outlined": 59321,
8109
- "file-verified-outlined": 59322,
8110
- "filter-outlined": 59323,
8111
- "fitness-outlined": 59324,
8112
- "folder-outlined": 59325,
8113
- "folder-upload-outlined": 59326,
8114
- "folder-user-outlined": 59327,
8115
- "form-outlined": 59328,
8116
- "funnel-filter-outline": 59329,
8117
- "goal-outlined": 59330,
8118
- "graph-outlined": 59331,
8119
- "grocery-outlined": 59332,
8120
- "hand-holding-user-outlined": 59333,
8121
- "handshake-outlined": 59334,
8122
- "happy-sun-outlined": 59335,
8123
- "health-bag-outlined": 59336,
8124
- "heart-outlined": 59337,
8125
- "home-active-outlined": 59338,
8126
- "home-outlined": 59339,
8127
- "id-card-outlined": 59340,
8128
- "image-outlined": 59341,
8129
- "import-outlined": 59342,
8130
- "instapay-outlined": 59343,
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,
8131
8143
  italic: italic,
8132
- "job-search-outlined": 59345,
8133
- "leave-approval-outlined": 59346,
8134
- "link-1": 59347,
8135
- "link-2": 59348,
8136
- "list-outlined": 59349,
8137
- "live-help-outlined": 59350,
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,
8138
8150
  local_mall_outlined: local_mall_outlined,
8139
- "location-on-outlined": 59352,
8140
- "location-outlined": 59353,
8141
- "lock-outlined": 59354,
8142
- "locked-file-outlined": 59355,
8143
- "log-out": 59356,
8144
- "mail-outlined": 59357,
8145
- "map-outlined": 59358,
8146
- "media-content-outlined": 59359,
8147
- "menu-close": 59360,
8148
- "menu-expand": 59361,
8149
- "menu-fold-outlined": 59362,
8150
- "menu-unfold-outlined": 59363,
8151
- "moneybag-outlined": 59364,
8152
- "moon-outlined": 59365,
8153
- "more-horizontal": 59366,
8154
- "more-vertical": 59367,
8155
- "morning-outlined": 59368,
8156
- "multiple-folders-outlined": 59369,
8157
- "multiple-users-outlined": 59370,
8158
- "near-me-outlined": 59371,
8159
- "node-outlined": 59372,
8160
- "number-points": 59373,
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,
8161
8173
  number: number,
8162
- "overview-outlined": 59375,
8163
- "park-outlined": 59376,
8164
- "payment-summary-outlined": 59377,
8165
- "payslip-outlined": 59378,
8166
- "pencil-outlined": 59379,
8174
+ "overview-outlined": 59376,
8175
+ "park-outlined": 59377,
8176
+ "payment-summary-outlined": 59378,
8177
+ "payslip-outlined": 59379,
8178
+ "pencil-outlined": 59380,
8167
8179
  percentage: percentage,
8168
- "phone-outlined": 59381,
8169
- "piggy-bank-outlined": 59382,
8170
- "plane-outlined": 59383,
8171
- "play-circle-outlined": 59384,
8172
- "print-outlined": 59385,
8173
- "propane-tank-outlined": 59386,
8174
- "qr-code-outlined": 59387,
8175
- "qualification-outlined": 59388,
8176
- "re-assign": 59389,
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,
8177
8189
  redeem: redeem,
8178
8190
  refresh: refresh,
8179
8191
  remove: remove,
8180
- "reply-outlined": 59393,
8192
+ "reply-outlined": 59394,
8181
8193
  restart: restart,
8182
- "restaurant-outlined": 59395,
8183
- "resume-outlined": 59396,
8184
- "return-arrow": 59397,
8185
- "rostering-outlined": 59398,
8186
- "safety-outlined": 59399,
8187
- "save-outlined": 59400,
8188
- "schedule-outlined": 59401,
8189
- "search-outlined": 59402,
8190
- "search-secured-outlined": 59403,
8191
- "send-outlined": 59404,
8192
- "share-1": 59405,
8193
- "share-2": 59406,
8194
- "share-outlined-2": 59407,
8195
- "share-outlined": 59408,
8196
- "shop-outlined": 59409,
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,
8197
8209
  shopping_basket_outlined: shopping_basket_outlined,
8198
- "show-chart-outlined": 59411,
8199
- "single-down-arrow": 59412,
8200
- "single-left-arrow": 59413,
8201
- "single-right-arrow": 59414,
8202
- "single-up-arrow": 59415,
8203
- "smart-match-outlined": 59416,
8204
- "sparkle-outlined": 59417,
8205
- "speaker-active-outlined": 59418,
8206
- "speaker-outlined": 59419,
8207
- "star-circle-outlined": 59420,
8208
- "star-outlined": 59421,
8209
- "start-break-outlined": 59422,
8210
- "stash-outlined": 59423,
8211
- "stopwatch-outlined": 59424,
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,
8212
8224
  strikethrough: strikethrough,
8213
- "styler-outlined": 59426,
8214
- "suitcase-clock-outlined": 59427,
8215
- "suitcase-outlined": 59428,
8216
- "survey-outlined": 59429,
8217
- "switch-outlined": 59430,
8225
+ "styler-outlined": 59427,
8226
+ "suitcase-clock-outlined": 59428,
8227
+ "suitcase-outlined": 59429,
8228
+ "survey-outlined": 59430,
8229
+ "switch-outlined": 59431,
8218
8230
  sync: sync,
8219
- "tag-outlined": 59432,
8220
- "target-outlined": 59433,
8221
- "tennis-outlined": 59434,
8222
- "thumb-down-outlined": 59435,
8223
- "ticket-outlined": 59436,
8224
- "timesheet-outlined": 59437,
8225
- "timesheets-outlined": 59438,
8226
- "today-outlined": 59439,
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,
8227
8239
  transfer: transfer,
8228
- "transportation-outlined": 59441,
8229
- "trash-bin-outlined": 59442,
8230
- "umbrela-outlined": 59443,
8231
- "unavailability-outlined": 59444,
8240
+ "transportation-outlined": 59442,
8241
+ "trash-bin-outlined": 59443,
8242
+ "umbrela-outlined": 59444,
8243
+ "unavailability-outlined": 59445,
8232
8244
  unavailable: unavailable,
8233
8245
  underline: underline,
8234
- "union-outlined": 59447,
8235
- "unlock-outlined": 59448,
8236
- "upload-outlined": 59449,
8237
- "user-circle-outlined": 59450,
8238
- "user-gear-outlined": 59451,
8239
- "user-outlined": 59452,
8240
- "user-rectangle-outlined": 59453,
8241
- "video-1-outlined": 59454,
8242
- "video-2-outlined": 59455,
8243
- "volunteer-outlined": 59456,
8244
- "wallet-outlined": 59457,
8245
- "wellness-outlined": 59458
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
8246
8258
  };
8247
8259
 
8248
8260
  var HeroIcon = reactNativeVectorIcons.createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
@@ -8418,12 +8430,12 @@ var Container$1 = index$a(reactNative.View)(function (_ref) {
8418
8430
  _ref$themeVariant = _ref.themeVariant,
8419
8431
  themeVariant = _ref$themeVariant === void 0 ? 'rounded' : _ref$themeVariant,
8420
8432
  themeIntent = _ref.themeIntent;
8421
- return {
8433
+ return _objectSpread2({
8422
8434
  borderRadius: themeVariant === 'rounded' ? theme.__hd__.alert.radii["default"] : 0,
8423
8435
  backgroundColor: theme.__hd__.alert.colors.backgrounds[themeIntent],
8424
8436
  minHeight: theme.__hd__.alert.sizes.height,
8425
8437
  flexDirection: 'row'
8426
- };
8438
+ }, theme.__hd__.alert.shadows.wrapper);
8427
8439
  });
8428
8440
  var IconContainer$1 = index$a(reactNative.View)(function (_ref2) {
8429
8441
  var theme = _ref2.theme;
@@ -8432,7 +8444,7 @@ var IconContainer$1 = index$a(reactNative.View)(function (_ref2) {
8432
8444
  paddingLeft: theme.__hd__.alert.space.iconLeftPadding
8433
8445
  };
8434
8446
  });
8435
- var StyledIcon$4 = index$a(Icon)(function (_ref3) {
8447
+ var StyledIcon$5 = index$a(Icon)(function (_ref3) {
8436
8448
  var theme = _ref3.theme,
8437
8449
  themeIntent = _ref3.themeIntent;
8438
8450
  return {
@@ -8491,7 +8503,7 @@ var AlertIcon = function AlertIcon(_ref) {
8491
8503
  intent = _ref.intent;
8492
8504
  return icon ? /*#__PURE__*/React__namespace.default.createElement(IconContainer$1, {
8493
8505
  testID: "alert-left-icon"
8494
- }, /*#__PURE__*/React__namespace.default.createElement(StyledIcon$4, {
8506
+ }, /*#__PURE__*/React__namespace.default.createElement(StyledIcon$5, {
8495
8507
  icon: icon,
8496
8508
  size: "small",
8497
8509
  themeIntent: intent
@@ -8532,7 +8544,7 @@ var Alert = function Alert(_ref2) {
8532
8544
  }, typeof actionLabel === 'string' ? /*#__PURE__*/React__namespace.default.createElement(StyledBody$1, {
8533
8545
  variant: "small-bold",
8534
8546
  themeIntent: intent
8535
- }, actionLabel) : /*#__PURE__*/React__namespace.default.createElement(StyledIcon$4, {
8547
+ }, actionLabel) : /*#__PURE__*/React__namespace.default.createElement(StyledIcon$5, {
8536
8548
  icon: "cancel",
8537
8549
  size: "small",
8538
8550
  themeIntent: intent
@@ -8983,7 +8995,7 @@ var StyledTextWrapper$1 = index$a(reactNative.View)(function () {
8983
8995
  height: '100%'
8984
8996
  };
8985
8997
  });
8986
- var StyledText$2 = index$a(Typography.Text)(function (_ref2) {
8998
+ var StyledText$2 = index$a(Typography.Body)(function (_ref2) {
8987
8999
  var themeSize = _ref2.themeSize,
8988
9000
  theme = _ref2.theme;
8989
9001
  return _objectSpread2({
@@ -9511,7 +9523,7 @@ var StyledStatus = index$a(reactNative.Animated.View)(function (_ref3) {
9511
9523
  borderRadius: theme.radii.rounded
9512
9524
  };
9513
9525
  });
9514
- var StyledIcon$3 = index$a(Icon)(function (_ref4) {
9526
+ var StyledIcon$4 = index$a(Icon)(function (_ref4) {
9515
9527
  var themeSize = _ref4.themeSize,
9516
9528
  theme = _ref4.theme;
9517
9529
  return {
@@ -9619,7 +9631,7 @@ var Badge = function Badge(_ref) {
9619
9631
  }]
9620
9632
  }, style],
9621
9633
  testID: testID
9622
- }), isIconBadge ? /*#__PURE__*/React__namespace.default.createElement(StyledIcon$3, {
9634
+ }), isIconBadge ? /*#__PURE__*/React__namespace.default.createElement(StyledIcon$4, {
9623
9635
  icon: icon,
9624
9636
  themeSize: size,
9625
9637
  intent: "text-inverted"
@@ -9652,18 +9664,15 @@ var ContentWrapper = index$a(reactNative.View)({
9652
9664
  var BottomBarWrapper = index$a(reactNative.View)(function (_ref2) {
9653
9665
  var themeInsets = _ref2.themeInsets,
9654
9666
  theme = _ref2.theme;
9655
- return {
9667
+ return _objectSpread2({
9656
9668
  height: theme.__hd__.bottomNavigation.sizes.height + themeInsets.bottom,
9657
9669
  paddingBottom: themeInsets.bottom,
9658
9670
  paddingLeft: Math.max(themeInsets.left, themeInsets.right),
9659
9671
  paddingRight: Math.max(themeInsets.left, themeInsets.right),
9660
9672
  backgroundColor: theme.__hd__.bottomNavigation.colors.background,
9661
- shadowColor: theme.__hd__.bottomNavigation.colors.shadow,
9662
- shadowOffset: theme.__hd__.bottomNavigation.shadows.offset,
9663
- shadowOpacity: theme.__hd__.bottomNavigation.shadows.opacity,
9664
- shadowRadius: theme.__hd__.bottomNavigation.shadows.radius,
9665
- elevation: theme.__hd__.bottomNavigation.shadows.elevation
9666
- };
9673
+ borderTopColor: theme.__hd__.bottomNavigation.colors.borderTop,
9674
+ borderTopWidth: theme.__hd__.bottomNavigation.borderWidths.borderTop
9675
+ }, theme.__hd__.bottomNavigation.shadows.wrapper);
9667
9676
  });
9668
9677
  var BottomBar = index$a(reactNative.View)({
9669
9678
  flex: 1,
@@ -16264,7 +16273,7 @@ var StyledActionItemText = index$a(Typography.Body)(function (_ref2) {
16264
16273
  color: theme.__hd__.fab.colors.actionItemText
16265
16274
  };
16266
16275
  });
16267
- var StyledIcon$2 = index$a(Icon)(function (_ref3) {
16276
+ var StyledIcon$3 = index$a(Icon)(function (_ref3) {
16268
16277
  var theme = _ref3.theme;
16269
16278
  return {
16270
16279
  color: theme.__hd__.fab.colors.actionItemText
@@ -16348,7 +16357,7 @@ var ActionItem = function ActionItem(_ref) {
16348
16357
  style: style,
16349
16358
  onPress: onPress,
16350
16359
  testID: testID
16351
- }, /*#__PURE__*/React__namespace.default.createElement(React__namespace.default.Fragment, null, /*#__PURE__*/React__namespace.default.createElement(StyledIconContainer, null, /*#__PURE__*/React__namespace.default.createElement(StyledIcon$2, {
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, {
16352
16361
  size: "xsmall",
16353
16362
  icon: icon
16354
16363
  })), /*#__PURE__*/React__namespace.default.createElement(StyledActionItemText, null, title))));
@@ -16757,17 +16766,12 @@ var Container = index$a(reactNative.Animated.View)(function (_ref2) {
16757
16766
  var theme = _ref2.theme,
16758
16767
  themeVariant = _ref2.themeVariant,
16759
16768
  themeIntent = _ref2.themeIntent;
16760
- return {
16769
+ return _objectSpread2({
16761
16770
  borderRadius: themeVariant === 'round' ? theme.__hd__.toast.radii["default"] : 0,
16762
16771
  backgroundColor: theme.__hd__.toast.colors.backgrounds[themeIntent],
16763
16772
  minHeight: theme.__hd__.toast.sizes.height,
16764
- flexDirection: 'row',
16765
- shadowColor: theme.__hd__.toast.shadows.color,
16766
- shadowOffset: theme.__hd__.toast.shadows.offset,
16767
- shadowRadius: theme.__hd__.toast.shadows.radius,
16768
- shadowOpacity: theme.__hd__.toast.shadows.opacity,
16769
- elevation: theme.__hd__.toast.shadows.elevation
16770
- };
16773
+ flexDirection: 'row'
16774
+ }, theme.__hd__.toast.shadows.wrapper);
16771
16775
  });
16772
16776
  var IconContainer = index$a(reactNative.View)(function (_ref3) {
16773
16777
  var theme = _ref3.theme;
@@ -16808,7 +16812,7 @@ var StyledBody = index$a(Typography.Body)(function (_ref7) {
16808
16812
  color: theme.__hd__.toast.colors.texts[themeIntent]
16809
16813
  };
16810
16814
  });
16811
- var StyledIcon$1 = index$a(Icon)(function (_ref8) {
16815
+ var StyledIcon$2 = index$a(Icon)(function (_ref8) {
16812
16816
  var theme = _ref8.theme,
16813
16817
  themeIntent = _ref8.themeIntent;
16814
16818
  return {
@@ -16861,7 +16865,7 @@ var ToastIcon = function ToastIcon(_ref) {
16861
16865
  icon = _ref.icon;
16862
16866
  return icon ? /*#__PURE__*/React__namespace.default.createElement(IconContainer, {
16863
16867
  testID: "toast-left-icon"
16864
- }, /*#__PURE__*/React__namespace.default.createElement(StyledIcon$1, {
16868
+ }, /*#__PURE__*/React__namespace.default.createElement(StyledIcon$2, {
16865
16869
  icon: icon,
16866
16870
  size: "small",
16867
16871
  themeIntent: themeIntent
@@ -17113,15 +17117,19 @@ var StyledContent = index$a(reactNative.View)(function (_ref2) {
17113
17117
  alignItems: 'center'
17114
17118
  };
17115
17119
  });
17116
- var StyledBadge$1 = index$a(Badge$1)(function (_ref3) {
17120
+ var StyledBadge$1 = index$a(reactNative.View)(function (_ref3) {
17117
17121
  var theme = _ref3.theme;
17118
17122
  return {
17119
17123
  right: theme.__hd__.mapPin.space.iconRight,
17120
17124
  top: theme.__hd__.mapPin.space.iconTop,
17121
17125
  position: 'absolute',
17122
17126
  backgroundColor: theme.__hd__.mapPin.colors.badge,
17123
- borderColor: theme.__hd__.mapPin.colors.badge,
17124
- 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
17125
17133
  };
17126
17134
  });
17127
17135
  var StyledImage = index$a.Image(function (_ref4) {
@@ -17132,6 +17140,18 @@ var StyledImage = index$a.Image(function (_ref4) {
17132
17140
  borderRadius: theme.__hd__.mapPin.radii["default"] - theme.__hd__.mapPin.borderWidths["default"]
17133
17141
  };
17134
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
+ });
17135
17155
  function hexToRgba(hex, a) {
17136
17156
  var arrBuff = new ArrayBuffer(4);
17137
17157
  var vw = new DataView(arrBuff);
@@ -17143,8 +17163,8 @@ function hexToRgba(hex, a) {
17143
17163
  b = _arrByte[2];
17144
17164
  return "rgba(".concat(r, ",").concat(g, ",").concat(b, ",").concat(a, ")");
17145
17165
  }
17146
- var StyledFocusIcon = index$a(Icon)(function (_ref5) {
17147
- var theme = _ref5.theme;
17166
+ var StyledFocusIcon = index$a(Icon)(function (_ref7) {
17167
+ var theme = _ref7.theme;
17148
17168
  return {
17149
17169
  fontSize: theme.__hd__.mapPin.fontSizes.icon,
17150
17170
  textShadowColor: hexToRgba(theme.__hd__.mapPin.shadows.color, theme.__hd__.mapPin.shadows.opacity),
@@ -17192,16 +17212,16 @@ var MapPin = function MapPin(_ref) {
17192
17212
  themeState: state
17193
17213
  }, image && /*#__PURE__*/React__namespace.default.createElement(StyledImage, _extends$1({
17194
17214
  testID: testID ? "".concat(testID, "-image") : undefined
17195
- }, image)), icon && /*#__PURE__*/React__namespace.default.createElement(Icon, {
17215
+ }, image)), icon && /*#__PURE__*/React__namespace.default.createElement(StyledIcon$1, {
17196
17216
  icon: icon,
17197
17217
  size: "xsmall",
17198
- intent: "text",
17199
17218
  testID: testID ? "".concat(testID, "-icon") : undefined
17200
17219
  })), badgeIcon && /*#__PURE__*/React__namespace.default.createElement(StyledBadge$1, {
17201
- icon: badgeIcon,
17202
- intent: "primary",
17203
17220
  testID: testID ? "".concat(testID, "-badge") : undefined
17204
- }));
17221
+ }, /*#__PURE__*/React__namespace.default.createElement(StyledBadgeIcon, {
17222
+ icon: badgeIcon,
17223
+ size: "xxxsmall"
17224
+ })));
17205
17225
  };
17206
17226
  var index$6 = Object.assign(MapPin, {
17207
17227
  Focussed: MapPinFocussed
@@ -17224,13 +17244,8 @@ var StyledListItemContainer$1 = index$a(reactNative.TouchableHighlight)(function
17224
17244
  return sharedStyles;
17225
17245
  case 'card':
17226
17246
  return _objectSpread2(_objectSpread2({}, sharedStyles), {}, {
17227
- alignItems: 'center',
17228
- shadowColor: theme.__hd__.list.shadows.card.color,
17229
- shadowRadius: theme.__hd__.list.shadows.card.radius,
17230
- shadowOffset: theme.__hd__.list.shadows.card.offset,
17231
- shadowOpacity: theme.__hd__.list.shadows.card.opacity,
17232
- elevation: theme.__hd__.list.shadows.card.elevation
17233
- });
17247
+ alignItems: 'center'
17248
+ }, theme.__hd__.list.shadows.card);
17234
17249
  default:
17235
17250
  return sharedStyles;
17236
17251
  }
@@ -40174,12 +40189,7 @@ var StyledInputContainer = index$a(reactNative.View)(function (_ref) {
40174
40189
  borderRadius: theme.__hd__.search.radii.container,
40175
40190
  borderWidth: borderWidth,
40176
40191
  borderColor: themeFocused ? theme.__hd__.search.colors[themeVariant].focusedBorder : theme.__hd__.search.colors[themeVariant].border
40177
- }, themeVariant === 'reversed' && {
40178
- elevation: theme.__hd__.search.shadows.elevation,
40179
- shadowOffset: theme.__hd__.search.shadows.offset,
40180
- shadowOpacity: theme.__hd__.search.shadows.opacity,
40181
- shadowRadius: theme.__hd__.search.shadows.radius
40182
- });
40192
+ }, themeVariant === 'reversed' && _objectSpread2({}, theme.__hd__.search.shadows.container));
40183
40193
  });
40184
40194
  var StyledAffixContainer = index$a(reactNative.View)(function (_ref2) {
40185
40195
  var theme = _ref2.theme;