@hero-design/rn 8.6.1 → 8.7.0

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 (40) hide show
  1. package/.turbo/turbo-build.log +9 -9
  2. package/assets/fonts/hero-icons-mobile.ttf +0 -0
  3. package/es/index.js +440 -411
  4. package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
  5. package/lib/index.js +440 -410
  6. package/package.json +5 -5
  7. package/src/components/Carousel/StyledCarousel.tsx +5 -0
  8. package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +622 -6
  9. package/src/components/Carousel/__tests__/index.spec.tsx +3 -1
  10. package/src/components/Carousel/index.tsx +4 -4
  11. package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
  12. package/src/components/Icon/IconList.ts +6 -0
  13. package/src/components/PageControl/StyledPageControl.tsx +17 -0
  14. package/src/components/PageControl/__tests__/__snapshots__/index.spec.tsx.snap +58 -0
  15. package/src/components/PageControl/__tests__/index.spec.tsx +21 -0
  16. package/src/components/PageControl/index.tsx +75 -0
  17. package/src/components/Typography/Text/StyledText.tsx +1 -0
  18. package/src/components/Typography/Text/index.tsx +1 -0
  19. package/src/index.ts +2 -0
  20. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +18 -12
  21. package/src/theme/components/carousel.ts +1 -16
  22. package/src/theme/components/pageControl.ts +25 -0
  23. package/src/theme/components/typography.ts +2 -0
  24. package/src/theme/getTheme.ts +3 -0
  25. package/types/components/Carousel/StyledCarousel.d.ts +5 -1
  26. package/types/components/Icon/IconList.d.ts +1 -1
  27. package/types/components/Icon/index.d.ts +1 -1
  28. package/types/components/Icon/utils.d.ts +1 -1
  29. package/types/components/{Carousel/CarouselPaginator/StyledCarouselPaginator.d.ts → PageControl/StyledPageControl.d.ts} +3 -3
  30. package/types/components/PageControl/index.d.ts +21 -0
  31. package/types/components/Typography/Text/StyledText.d.ts +1 -1
  32. package/types/components/Typography/Text/index.d.ts +1 -1
  33. package/types/index.d.ts +2 -1
  34. package/types/theme/components/carousel.d.ts +0 -12
  35. package/types/theme/components/pageControl.d.ts +18 -0
  36. package/types/theme/components/typography.d.ts +2 -0
  37. package/types/theme/getTheme.d.ts +2 -0
  38. package/src/components/Carousel/CarouselPaginator/StyledCarouselPaginator.tsx +0 -20
  39. package/src/components/Carousel/CarouselPaginator/index.tsx +0 -57
  40. package/types/components/Carousel/CarouselPaginator/index.d.ts +0 -7
package/es/index.js CHANGED
@@ -1800,25 +1800,13 @@ var getCardTheme = function getCardTheme(theme) {
1800
1800
  };
1801
1801
 
1802
1802
  var getCarouselTheme = function getCarouselTheme(theme) {
1803
- var colors = {
1804
- paginatorBackgroundColor: theme.colors.primary
1805
- };
1806
1803
  var space = {
1807
1804
  headingMarginTop: theme.space.small,
1808
1805
  headingMarginBottom: theme.space.medium,
1809
- paginatorMarginHorizontal: theme.space.small,
1810
1806
  footerPaddingHorizontal: theme.space.large,
1811
1807
  footerPaddingVertical: theme.space.medium,
1812
1808
  footerMarginBottom: theme.space.large
1813
1809
  };
1814
- var sizes = {
1815
- indicatorWidth: theme.sizes.medium,
1816
- paginatorHeight: theme.sizes.small,
1817
- paginatorWidth: theme.sizes.small
1818
- };
1819
- var radii = {
1820
- paginatorBorderRadius: theme.radii.rounded
1821
- };
1822
1810
  var fontSizes = {
1823
1811
  heading: theme.fontSizes['xxxxxlarge']
1824
1812
  };
@@ -1829,9 +1817,6 @@ var getCarouselTheme = function getCarouselTheme(theme) {
1829
1817
  heading: theme.lineHeights['6xlarge']
1830
1818
  };
1831
1819
  return {
1832
- colors: colors,
1833
- sizes: sizes,
1834
- radii: radii,
1835
1820
  space: space,
1836
1821
  fonts: fonts,
1837
1822
  fontSizes: fontSizes,
@@ -2120,6 +2105,29 @@ var getListTheme = function getListTheme(theme) {
2120
2105
  };
2121
2106
  };
2122
2107
 
2108
+ var getPageControlTheme = function getPageControlTheme(theme) {
2109
+ var colors = {
2110
+ paginatorBackgroundColor: theme.colors.primary
2111
+ };
2112
+ var sizes = {
2113
+ indicatorWidth: theme.sizes.medium,
2114
+ paginatorHeight: theme.sizes.small,
2115
+ paginatorWidth: theme.sizes.small
2116
+ };
2117
+ var space = {
2118
+ paginatorMarginHorizontal: theme.space.small
2119
+ };
2120
+ var radii = {
2121
+ paginatorBorderRadius: theme.radii.rounded
2122
+ };
2123
+ return {
2124
+ colors: colors,
2125
+ sizes: sizes,
2126
+ space: space,
2127
+ radii: radii
2128
+ };
2129
+ };
2130
+
2123
2131
  var getPinInputTheme = function getPinInputTheme(theme) {
2124
2132
  var borderWidths = {
2125
2133
  "default": theme.borderWidths.base,
@@ -2674,6 +2682,7 @@ var getTypographyTheme = function getTypographyTheme(theme) {
2674
2682
  large: theme.fontSizes.large,
2675
2683
  xlarge: theme.fontSizes.xlarge,
2676
2684
  xxxlarge: theme.fontSizes.xxxlarge,
2685
+ xxxxlarge: theme.fontSizes.xxxxlarge,
2677
2686
  xxxxxlarge: theme.fontSizes.xxxxxlarge,
2678
2687
  '6xlarge': theme.fontSizes['6xlarge'],
2679
2688
  '7xlarge': theme.fontSizes['7xlarge']
@@ -2684,6 +2693,7 @@ var getTypographyTheme = function getTypographyTheme(theme) {
2684
2693
  large: theme.lineHeights.large,
2685
2694
  xlarge: theme.lineHeights.xlarge,
2686
2695
  xxxlarge: theme.lineHeights.xxxlarge,
2696
+ xxxxlarge: theme.lineHeights.xxxxlarge,
2687
2697
  xxxxxlarge: theme.lineHeights.xxxxxlarge,
2688
2698
  '6xlarge': theme.lineHeights['6xlarge'],
2689
2699
  '7xlarge': theme.lineHeights['7xlarge']
@@ -2723,6 +2733,7 @@ var getTheme$1 = function getTheme() {
2723
2733
  icon: getIconTheme(globalTheme),
2724
2734
  image: getImageTheme(globalTheme),
2725
2735
  list: getListTheme(globalTheme),
2736
+ pageControl: getPageControlTheme(globalTheme),
2726
2737
  pinInput: getPinInputTheme(globalTheme),
2727
2738
  progress: getProgressTheme(globalTheme),
2728
2739
  radio: getRadioTheme(globalTheme),
@@ -5772,7 +5783,7 @@ var Typography = {
5772
5783
  };
5773
5784
 
5774
5785
  // 🔴 DO NOT EDIT — This file is generated automatically.
5775
- var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bookmark-added', 'bookmark', 'box-check', 'box', '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', 'double-buildings', 'edit-template', 'envelope', 'expense', 'eye-circle', 'eye-invisible', 'eye', 'face-meh', 'face-sad', 'face-smiley', 'feed', 'feedbacks', 'file-certified', 'file-clone', 'file-copy', 'file-csv', 'file-dispose', 'file-doc', 'file-excel', 'file-export', 'file-lock', 'file-pdf', 'file-powerpoint', 'file-search', 'file-secured', 'file-sheets', 'file-slide', 'file-verified', 'file-word', 'file', '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', 'home', 'image', 'import', 'incident-siren', 'instapay', 'list', 'loading-2', 'loading', 'location', 'lock', 'looks-one', 'looks-two', 'media-content', 'menu', 'money-notes', 'moneybag', 'moon', 'multiple-stars', 'multiple-users', 'node', 'open-folder', 'paperclip', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane', 'play-circle', 'print', 'raising-hands', 'reply-arrow', 'reply', 'reschedule', 'rostering', 'save', 'schedule-send', 'schedule', 'search-person', 'send', 'speaker-active', 'speaker', 'star-award', 'star-badge', 'star-circle', 'star-medal', 'star', 'steps-circle', 'stopwatch', 'suitcase', 'survey', 'swag', 'switch', 'tag', 'target', 'teams', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'activate-outlined', 'add-credit-card-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'arrow-down', 'arrow-downwards', 'arrow-left', 'arrow-leftwards', 'arrow-right', 'arrow-rightwards', 'arrow-up', 'arrow-upwards', 'article-outlined', 'at-sign', 'auto-graph-outlined', 'bell-active-outlined', 'bell-outlined', 'bell-slash-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bookmark-added-outlined', 'bookmark-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calendar-dates-outlined', 'calendar-star-outlined', 'camera-outlined', 'cancel', '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-outlined', 'cog-outlined', 'coin-outlined', 'comment-outlined', 'contacts-outlined', 'credit-card-outlined', 'cup-outlined', 'direction-arrows-outlined', 'directory-outlined', 'document-outlined', 'dollar-card-outlined', 'dollar-coin-shine-outlined', 'dollar-credit-card-outlined', 'dollar-sign', 'double-buildings-outlined', 'double-left-arrows', 'double-right-arrows', 'download-outlined', 'edit-template-outlined', 'email-outlined', 'enter-arrow', 'envelope-outlined', 'expense-outlined', 'explore-outlined', 'external-link', 'eye-invisible-outlined', 'eye-outlined', 'face-id', 'face-meh-outlined', 'face-open-smiley-outlined', 'face-sad-outlined', 'face-smiley-outlined', 'feed-outlined', 'file-certified-outlined', 'file-clone-outlined', 'file-copy-outlined', 'file-dispose-outlined', 'file-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', 'folder-outlined', 'folder-user-outlined', 'funnel-filter-outline', 'graph-outlined', 'hand-holding-user-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-active-outlined', 'home-outlined', 'id-card-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'link-1', 'link-2', 'list-outlined', 'live-help-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'multiple-folders-outlined', 'multiple-users-outlined', 'near-me-outlined', 'node-outlined', 'number-points', 'number', 'overview-outlined', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'print-outlined', 'qr-code-outlined', 'qualification-outlined', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'return-arrow', 'rostering-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'search-secured-outlined', 'send-outlined', 'share-1', 'share-2', 'share-outlined', 'show-chart-outlined', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'speaker-active-outlined', 'speaker-outlined', 'star-circle-outlined', 'star-outlined', 'stopwatch-outlined', 'strikethrough', 'suitcase-clock-outlined', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'target-outlined', 'timesheet-outlined', 'today-outlined', 'transfer', 'trash-bin-outlined', 'umbrela-outlined', 'unavailable', 'underline', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'wallet-outlined'];
5786
+ var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bookmark-added', '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', 'double-buildings', 'edit-template', 'envelope', 'expense', 'eye-circle', 'eye-invisible', 'eye', 'face-meh', 'face-sad', 'face-smiley', 'feed', 'feedbacks', 'file-certified', 'file-clone', 'file-copy', 'file-csv', 'file-dispose', 'file-doc', 'file-excel', 'file-export', 'file-lock', 'file-pdf', 'file-powerpoint', 'file-search', 'file-secured', 'file-sheets', 'file-slide', 'file-verified', 'file-word', 'file', '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', 'home', 'image', 'import', 'incident-siren', 'instapay', 'list', 'loading-2', 'loading', 'location', 'lock', 'looks-one', 'looks-two', 'media-content', 'menu', 'money-notes', 'moneybag', 'moon', 'multiple-stars', 'multiple-users', 'node', 'open-folder', 'paperclip', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane', 'play-circle', 'print', 'raising-hands', 'reply-arrow', 'reply', 'reschedule', 'rostering', 'save', 'schedule-send', 'schedule', 'search-person', 'send', 'speaker-active', 'speaker', 'star-award', 'star-badge', 'star-circle', 'star-medal', 'star', 'steps-circle', 'stopwatch', 'suitcase', 'survey', 'swag', 'switch', 'tag', 'target', 'teams', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'activate-outlined', 'add-credit-card-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'arrow-down', 'arrow-downwards', 'arrow-left', 'arrow-leftwards', 'arrow-right', 'arrow-rightwards', 'arrow-up', 'arrow-upwards', 'article-outlined', 'at-sign', 'auto-graph-outlined', 'bell-active-outlined', 'bell-outlined', 'bell-slash-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bookmark-added-outlined', 'bookmark-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calendar-dates-outlined', 'calendar-star-outlined', 'camera-outlined', 'cancel', '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-outlined', 'cog-outlined', 'coin-outlined', 'comment-outlined', 'contacts-outlined', 'contacts-user-outlined', 'credit-card-outlined', 'cup-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-outlined', 'edit-template-outlined', 'email-outlined', 'enter-arrow', 'envelope-outlined', 'expense-outlined', 'explore-outlined', 'external-link', 'eye-invisible-outlined', 'eye-outlined', 'face-id', 'face-meh-outlined', 'face-open-smiley-outlined', 'face-sad-outlined', 'face-smiley-outlined', 'feed-outlined', 'file-certified-outlined', 'file-clone-outlined', 'file-copy-outlined', 'file-dispose-outlined', 'file-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', 'folder-outlined', 'folder-user-outlined', 'funnel-filter-outline', 'graph-outlined', 'hand-holding-user-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-active-outlined', 'home-outlined', 'id-card-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'link-1', 'link-2', 'list-outlined', 'live-help-outlined', 'location-on-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'multiple-folders-outlined', 'multiple-users-outlined', 'near-me-outlined', 'node-outlined', 'number-points', 'number', 'overview-outlined', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'print-outlined', 'qr-code-outlined', 'qualification-outlined', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'return-arrow', 'rostering-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'search-secured-outlined', 'send-outlined', 'share-1', 'share-2', 'share-outlined', 'show-chart-outlined', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'speaker-active-outlined', 'speaker-outlined', 'star-circle-outlined', 'star-outlined', 'stopwatch-outlined', 'strikethrough', 'suitcase-clock-outlined', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'target-outlined', 'timesheet-outlined', 'today-outlined', 'transfer', 'trash-bin-outlined', 'umbrela-outlined', 'unavailable', 'underline', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'wallet-outlined'];
5776
5787
 
5777
5788
  var activate = 59000;
5778
5789
  var adjustment = 59003;
@@ -5784,79 +5795,80 @@ var bell = 59009;
5784
5795
  var billing = 59010;
5785
5796
  var bookmark = 59012;
5786
5797
  var box = 59014;
5787
- var buildings = 59015;
5788
- var cake = 59016;
5789
- var calendar = 59018;
5790
- var clock = 59043;
5791
- var cog = 59046;
5792
- var coin = 59047;
5793
- var contacts = 59048;
5794
- var diamond = 59050;
5795
- var directory = 59052;
5796
- var document$1 = 59053;
5797
- var envelope = 59057;
5798
- var expense = 59058;
5799
- var eye = 59061;
5800
- var feed = 59065;
5801
- var feedbacks = 59066;
5802
- var file = 59084;
5803
- var filter = 59085;
5804
- var folder = 59087;
5805
- var globe = 59097;
5806
- var graph = 59099;
5807
- var heart = 59102;
5808
- var home = 59103;
5809
- var image = 59104;
5810
- var instapay = 59107;
5811
- var list = 59108;
5812
- var loading = 59110;
5813
- var location = 59111;
5814
- var lock = 59112;
5815
- var menu = 59116;
5816
- var moneybag = 59118;
5817
- var moon = 59119;
5818
- var node = 59122;
5819
- var paperclip = 59124;
5820
- var pencil = 59126;
5821
- var phone = 59127;
5822
- var plane = 59129;
5823
- var print = 59131;
5824
- var reply = 59134;
5825
- var reschedule = 59135;
5826
- var rostering = 59136;
5827
- var save = 59137;
5828
- var schedule = 59139;
5829
- var send = 59141;
5830
- var speaker = 59143;
5831
- var star = 59148;
5832
- var stopwatch = 59150;
5833
- var suitcase = 59151;
5834
- var survey = 59152;
5835
- var swag = 59153;
5836
- var tag = 59155;
5837
- var target = 59156;
5838
- var teams = 59157;
5839
- var timesheet = 59158;
5840
- var unlock = 59161;
5841
- var user = 59162;
5842
- var wallet = 59165;
5843
- var warning = 59166;
5844
- var add = 59172;
5845
- var bold = 59193;
5846
- var cancel = 59203;
5847
- var checkmark = 59206;
5848
- var italic = 59280;
5849
- var number = 59303;
5850
- var percentage = 59308;
5851
- var redeem = 59317;
5852
- var refresh = 59318;
5853
- var remove = 59319;
5854
- var restart = 59321;
5855
- var strikethrough = 59342;
5856
- var sync = 59347;
5857
- var transfer = 59351;
5858
- var unavailable = 59354;
5859
- var underline = 59355;
5798
+ var bpay = 59015;
5799
+ var buildings = 59016;
5800
+ var cake = 59017;
5801
+ var calendar = 59019;
5802
+ var clock = 59044;
5803
+ var cog = 59047;
5804
+ var coin = 59048;
5805
+ var contacts = 59049;
5806
+ var diamond = 59051;
5807
+ var directory = 59053;
5808
+ var document$1 = 59054;
5809
+ var envelope = 59058;
5810
+ var expense = 59059;
5811
+ var eye = 59062;
5812
+ var feed = 59066;
5813
+ var feedbacks = 59067;
5814
+ var file = 59085;
5815
+ var filter = 59086;
5816
+ var folder = 59088;
5817
+ var globe = 59098;
5818
+ var graph = 59100;
5819
+ var heart = 59103;
5820
+ var home = 59104;
5821
+ var image = 59105;
5822
+ var instapay = 59108;
5823
+ var list = 59109;
5824
+ var loading = 59111;
5825
+ var location = 59112;
5826
+ var lock = 59113;
5827
+ var menu = 59117;
5828
+ var moneybag = 59119;
5829
+ var moon = 59120;
5830
+ var node = 59123;
5831
+ var paperclip = 59125;
5832
+ var pencil = 59127;
5833
+ var phone = 59128;
5834
+ var plane = 59130;
5835
+ var print = 59132;
5836
+ var reply = 59135;
5837
+ var reschedule = 59136;
5838
+ var rostering = 59137;
5839
+ var save = 59138;
5840
+ var schedule = 59140;
5841
+ var send = 59142;
5842
+ var speaker = 59144;
5843
+ var star = 59149;
5844
+ var stopwatch = 59151;
5845
+ var suitcase = 59152;
5846
+ var survey = 59153;
5847
+ var swag = 59154;
5848
+ var tag = 59156;
5849
+ var target = 59157;
5850
+ var teams = 59158;
5851
+ var timesheet = 59159;
5852
+ var unlock = 59162;
5853
+ var user = 59163;
5854
+ var wallet = 59166;
5855
+ var warning = 59167;
5856
+ var add = 59173;
5857
+ var bold = 59194;
5858
+ var cancel = 59204;
5859
+ var checkmark = 59208;
5860
+ var italic = 59285;
5861
+ var number = 59309;
5862
+ var percentage = 59314;
5863
+ var redeem = 59323;
5864
+ var refresh = 59324;
5865
+ var remove = 59325;
5866
+ var restart = 59327;
5867
+ var strikethrough = 59348;
5868
+ var sync = 59353;
5869
+ var transfer = 59357;
5870
+ var unavailable = 59360;
5871
+ var underline = 59361;
5860
5872
  var glyphMap = {
5861
5873
  activate: activate,
5862
5874
  "add-emoji": 59001,
@@ -5873,356 +5885,362 @@ var glyphMap = {
5873
5885
  bookmark: bookmark,
5874
5886
  "box-check": 59013,
5875
5887
  box: box,
5888
+ bpay: bpay,
5876
5889
  buildings: buildings,
5877
5890
  cake: cake,
5878
- "calendar-clock": 59017,
5891
+ "calendar-clock": 59018,
5879
5892
  calendar: calendar,
5880
- "candy-box-menu": 59019,
5881
- "caret-down-small": 59020,
5882
- "caret-down": 59021,
5883
- "caret-left-small": 59022,
5884
- "caret-left": 59023,
5885
- "caret-right-small": 59024,
5886
- "caret-right": 59025,
5887
- "caret-up-small": 59026,
5888
- "caret-up": 59027,
5889
- "check-radio": 59028,
5890
- "circle-add": 59029,
5891
- "circle-cancel": 59030,
5892
- "circle-check": 59031,
5893
- "circle-down": 59032,
5894
- "circle-info": 59033,
5895
- "circle-left": 59034,
5896
- "circle-ok": 59035,
5897
- "circle-pencil": 59036,
5898
- "circle-question": 59037,
5899
- "circle-remove": 59038,
5900
- "circle-right": 59039,
5901
- "circle-up": 59040,
5902
- "circle-warning": 59041,
5903
- "clock-3": 59042,
5893
+ "candy-box-menu": 59020,
5894
+ "caret-down-small": 59021,
5895
+ "caret-down": 59022,
5896
+ "caret-left-small": 59023,
5897
+ "caret-left": 59024,
5898
+ "caret-right-small": 59025,
5899
+ "caret-right": 59026,
5900
+ "caret-up-small": 59027,
5901
+ "caret-up": 59028,
5902
+ "check-radio": 59029,
5903
+ "circle-add": 59030,
5904
+ "circle-cancel": 59031,
5905
+ "circle-check": 59032,
5906
+ "circle-down": 59033,
5907
+ "circle-info": 59034,
5908
+ "circle-left": 59035,
5909
+ "circle-ok": 59036,
5910
+ "circle-pencil": 59037,
5911
+ "circle-question": 59038,
5912
+ "circle-remove": 59039,
5913
+ "circle-right": 59040,
5914
+ "circle-up": 59041,
5915
+ "circle-warning": 59042,
5916
+ "clock-3": 59043,
5904
5917
  clock: clock,
5905
- "cloud-download": 59044,
5906
- "cloud-upload": 59045,
5918
+ "cloud-download": 59045,
5919
+ "cloud-upload": 59046,
5907
5920
  cog: cog,
5908
5921
  coin: coin,
5909
5922
  contacts: contacts,
5910
- "credit-card": 59049,
5923
+ "credit-card": 59050,
5911
5924
  diamond: diamond,
5912
- "direction-arrows": 59051,
5925
+ "direction-arrows": 59052,
5913
5926
  directory: directory,
5914
5927
  document: document$1,
5915
- "dollar-coin-shine": 59054,
5916
- "double-buildings": 59055,
5917
- "edit-template": 59056,
5928
+ "dollar-coin-shine": 59055,
5929
+ "double-buildings": 59056,
5930
+ "edit-template": 59057,
5918
5931
  envelope: envelope,
5919
5932
  expense: expense,
5920
- "eye-circle": 59059,
5921
- "eye-invisible": 59060,
5933
+ "eye-circle": 59060,
5934
+ "eye-invisible": 59061,
5922
5935
  eye: eye,
5923
- "face-meh": 59062,
5924
- "face-sad": 59063,
5925
- "face-smiley": 59064,
5936
+ "face-meh": 59063,
5937
+ "face-sad": 59064,
5938
+ "face-smiley": 59065,
5926
5939
  feed: feed,
5927
5940
  feedbacks: feedbacks,
5928
- "file-certified": 59067,
5929
- "file-clone": 59068,
5930
- "file-copy": 59069,
5931
- "file-csv": 59070,
5932
- "file-dispose": 59071,
5933
- "file-doc": 59072,
5934
- "file-excel": 59073,
5935
- "file-export": 59074,
5936
- "file-lock": 59075,
5937
- "file-pdf": 59076,
5938
- "file-powerpoint": 59077,
5939
- "file-search": 59078,
5940
- "file-secured": 59079,
5941
- "file-sheets": 59080,
5942
- "file-slide": 59081,
5943
- "file-verified": 59082,
5944
- "file-word": 59083,
5941
+ "file-certified": 59068,
5942
+ "file-clone": 59069,
5943
+ "file-copy": 59070,
5944
+ "file-csv": 59071,
5945
+ "file-dispose": 59072,
5946
+ "file-doc": 59073,
5947
+ "file-excel": 59074,
5948
+ "file-export": 59075,
5949
+ "file-lock": 59076,
5950
+ "file-pdf": 59077,
5951
+ "file-powerpoint": 59078,
5952
+ "file-search": 59079,
5953
+ "file-secured": 59080,
5954
+ "file-sheets": 59081,
5955
+ "file-slide": 59082,
5956
+ "file-verified": 59083,
5957
+ "file-word": 59084,
5945
5958
  file: file,
5946
5959
  filter: filter,
5947
- "folder-user": 59086,
5960
+ "folder-user": 59087,
5948
5961
  folder: folder,
5949
- "format-bold": 59088,
5950
- "format-heading1": 59089,
5951
- "format-heading2": 59090,
5952
- "format-italic": 59091,
5953
- "format-list-bulleted": 59092,
5954
- "format-list-numbered": 59093,
5955
- "format-underlined": 59094,
5956
- "funnel-filter": 59095,
5957
- "global-dollar": 59096,
5962
+ "format-bold": 59089,
5963
+ "format-heading1": 59090,
5964
+ "format-heading2": 59091,
5965
+ "format-italic": 59092,
5966
+ "format-list-bulleted": 59093,
5967
+ "format-list-numbered": 59094,
5968
+ "format-underlined": 59095,
5969
+ "funnel-filter": 59096,
5970
+ "global-dollar": 59097,
5958
5971
  globe: globe,
5959
- "graduation-cap": 59098,
5972
+ "graduation-cap": 59099,
5960
5973
  graph: graph,
5961
- "happy-sun": 59100,
5962
- "health-bag": 59101,
5974
+ "happy-sun": 59101,
5975
+ "health-bag": 59102,
5963
5976
  heart: heart,
5964
5977
  home: home,
5965
5978
  image: image,
5966
- "import": 59105,
5967
- "incident-siren": 59106,
5979
+ "import": 59106,
5980
+ "incident-siren": 59107,
5968
5981
  instapay: instapay,
5969
5982
  list: list,
5970
- "loading-2": 59109,
5983
+ "loading-2": 59110,
5971
5984
  loading: loading,
5972
5985
  location: location,
5973
5986
  lock: lock,
5974
- "looks-one": 59113,
5975
- "looks-two": 59114,
5976
- "media-content": 59115,
5987
+ "looks-one": 59114,
5988
+ "looks-two": 59115,
5989
+ "media-content": 59116,
5977
5990
  menu: menu,
5978
- "money-notes": 59117,
5991
+ "money-notes": 59118,
5979
5992
  moneybag: moneybag,
5980
5993
  moon: moon,
5981
- "multiple-stars": 59120,
5982
- "multiple-users": 59121,
5994
+ "multiple-stars": 59121,
5995
+ "multiple-users": 59122,
5983
5996
  node: node,
5984
- "open-folder": 59123,
5997
+ "open-folder": 59124,
5985
5998
  paperclip: paperclip,
5986
- "payment-summary": 59125,
5999
+ "payment-summary": 59126,
5987
6000
  pencil: pencil,
5988
6001
  phone: phone,
5989
- "piggy-bank": 59128,
6002
+ "piggy-bank": 59129,
5990
6003
  plane: plane,
5991
- "play-circle": 59130,
6004
+ "play-circle": 59131,
5992
6005
  print: print,
5993
- "raising-hands": 59132,
5994
- "reply-arrow": 59133,
6006
+ "raising-hands": 59133,
6007
+ "reply-arrow": 59134,
5995
6008
  reply: reply,
5996
6009
  reschedule: reschedule,
5997
6010
  rostering: rostering,
5998
6011
  save: save,
5999
- "schedule-send": 59138,
6012
+ "schedule-send": 59139,
6000
6013
  schedule: schedule,
6001
- "search-person": 59140,
6014
+ "search-person": 59141,
6002
6015
  send: send,
6003
- "speaker-active": 59142,
6016
+ "speaker-active": 59143,
6004
6017
  speaker: speaker,
6005
- "star-award": 59144,
6006
- "star-badge": 59145,
6007
- "star-circle": 59146,
6008
- "star-medal": 59147,
6018
+ "star-award": 59145,
6019
+ "star-badge": 59146,
6020
+ "star-circle": 59147,
6021
+ "star-medal": 59148,
6009
6022
  star: star,
6010
- "steps-circle": 59149,
6023
+ "steps-circle": 59150,
6011
6024
  stopwatch: stopwatch,
6012
6025
  suitcase: suitcase,
6013
6026
  survey: survey,
6014
6027
  swag: swag,
6015
- "switch": 59154,
6028
+ "switch": 59155,
6016
6029
  tag: tag,
6017
6030
  target: target,
6018
6031
  teams: teams,
6019
6032
  timesheet: timesheet,
6020
- "touch-id": 59159,
6021
- "trash-bin": 59160,
6033
+ "touch-id": 59160,
6034
+ "trash-bin": 59161,
6022
6035
  unlock: unlock,
6023
6036
  user: user,
6024
- "video-1": 59163,
6025
- "video-2": 59164,
6037
+ "video-1": 59164,
6038
+ "video-2": 59165,
6026
6039
  wallet: wallet,
6027
6040
  warning: warning,
6028
- "activate-outlined": 59167,
6029
- "add-credit-card-outlined": 59168,
6030
- "add-person-outlined": 59169,
6031
- "add-section-outlined": 59170,
6032
- "add-time-outlined": 59171,
6041
+ "activate-outlined": 59168,
6042
+ "add-credit-card-outlined": 59169,
6043
+ "add-person-outlined": 59170,
6044
+ "add-section-outlined": 59171,
6045
+ "add-time-outlined": 59172,
6033
6046
  add: add,
6034
- "adjustment-outlined": 59173,
6035
- "alignment-2-outlined": 59174,
6036
- "alignment-outlined": 59175,
6037
- "all-caps": 59176,
6038
- "arrow-down": 59177,
6039
- "arrow-downwards": 59178,
6040
- "arrow-left": 59179,
6041
- "arrow-leftwards": 59180,
6042
- "arrow-right": 59181,
6043
- "arrow-rightwards": 59182,
6044
- "arrow-up": 59183,
6045
- "arrow-upwards": 59184,
6046
- "article-outlined": 59185,
6047
- "at-sign": 59186,
6048
- "auto-graph-outlined": 59187,
6049
- "bell-active-outlined": 59188,
6050
- "bell-outlined": 59189,
6051
- "bell-slash-outlined": 59190,
6052
- "billing-outlined": 59191,
6053
- "body-outlined": 59192,
6047
+ "adjustment-outlined": 59174,
6048
+ "alignment-2-outlined": 59175,
6049
+ "alignment-outlined": 59176,
6050
+ "all-caps": 59177,
6051
+ "arrow-down": 59178,
6052
+ "arrow-downwards": 59179,
6053
+ "arrow-left": 59180,
6054
+ "arrow-leftwards": 59181,
6055
+ "arrow-right": 59182,
6056
+ "arrow-rightwards": 59183,
6057
+ "arrow-up": 59184,
6058
+ "arrow-upwards": 59185,
6059
+ "article-outlined": 59186,
6060
+ "at-sign": 59187,
6061
+ "auto-graph-outlined": 59188,
6062
+ "bell-active-outlined": 59189,
6063
+ "bell-outlined": 59190,
6064
+ "bell-slash-outlined": 59191,
6065
+ "billing-outlined": 59192,
6066
+ "body-outlined": 59193,
6054
6067
  bold: bold,
6055
- "bookmark-added-outlined": 59194,
6056
- "bookmark-outlined": 59195,
6057
- "box-check-outlined": 59196,
6058
- "box-outlined": 59197,
6059
- "bullet-points": 59198,
6060
- "cake-outlined": 59199,
6061
- "calendar-dates-outlined": 59200,
6062
- "calendar-star-outlined": 59201,
6063
- "camera-outlined": 59202,
6068
+ "bookmark-added-outlined": 59195,
6069
+ "bookmark-outlined": 59196,
6070
+ "box-check-outlined": 59197,
6071
+ "box-outlined": 59198,
6072
+ "bullet-points": 59199,
6073
+ "cake-outlined": 59200,
6074
+ "calendar-dates-outlined": 59201,
6075
+ "calendar-star-outlined": 59202,
6076
+ "camera-outlined": 59203,
6064
6077
  cancel: cancel,
6065
- "chat-bubble-outlined": 59204,
6066
- "chat-unread-outlined": 59205,
6078
+ "charging-station-outlined": 59205,
6079
+ "chat-bubble-outlined": 59206,
6080
+ "chat-unread-outlined": 59207,
6067
6081
  checkmark: checkmark,
6068
- "circle-add-outlined": 59207,
6069
- "circle-cancel-outlined": 59208,
6070
- "circle-down-outlined": 59209,
6071
- "circle-info-outlined": 59210,
6072
- "circle-left-outlined": 59211,
6073
- "circle-ok-outlined": 59212,
6074
- "circle-question-outlined": 59213,
6075
- "circle-remove-outlined": 59214,
6076
- "circle-right-outlined": 59215,
6077
- "circle-up-outlined": 59216,
6078
- "circle-warning-outlined": 59217,
6079
- "clock-2-outlined": 59218,
6080
- "clock-outlined": 59219,
6081
- "cog-outlined": 59220,
6082
- "coin-outlined": 59221,
6083
- "comment-outlined": 59222,
6084
- "contacts-outlined": 59223,
6085
- "credit-card-outlined": 59224,
6086
- "cup-outlined": 59225,
6087
- "direction-arrows-outlined": 59226,
6088
- "directory-outlined": 59227,
6089
- "document-outlined": 59228,
6090
- "dollar-card-outlined": 59229,
6091
- "dollar-coin-shine-outlined": 59230,
6092
- "dollar-credit-card-outlined": 59231,
6093
- "dollar-sign": 59232,
6094
- "double-buildings-outlined": 59233,
6095
- "double-left-arrows": 59234,
6096
- "double-right-arrows": 59235,
6097
- "download-outlined": 59236,
6098
- "edit-template-outlined": 59237,
6099
- "email-outlined": 59238,
6100
- "enter-arrow": 59239,
6101
- "envelope-outlined": 59240,
6102
- "expense-outlined": 59241,
6103
- "explore-outlined": 59242,
6104
- "external-link": 59243,
6105
- "eye-invisible-outlined": 59244,
6106
- "eye-outlined": 59245,
6107
- "face-id": 59246,
6108
- "face-meh-outlined": 59247,
6109
- "face-open-smiley-outlined": 59248,
6110
- "face-sad-outlined": 59249,
6111
- "face-smiley-outlined": 59250,
6112
- "feed-outlined": 59251,
6113
- "file-certified-outlined": 59252,
6114
- "file-clone-outlined": 59253,
6115
- "file-copy-outlined": 59254,
6116
- "file-dispose-outlined": 59255,
6117
- "file-dollar-outlined": 59256,
6118
- "file-download-outlined": 59257,
6119
- "file-export-outlined": 59258,
6120
- "file-lock-outlined": 59259,
6121
- "file-outlined": 59260,
6122
- "file-search-outlined": 59261,
6123
- "file-secured-outlined": 59262,
6124
- "file-statutory-outlined": 59263,
6125
- "file-verified-outlined": 59264,
6126
- "filter-outlined": 59265,
6127
- "folder-outlined": 59266,
6128
- "folder-user-outlined": 59267,
6129
- "funnel-filter-outline": 59268,
6130
- "graph-outlined": 59269,
6131
- "hand-holding-user-outlined": 59270,
6132
- "happy-sun-outlined": 59271,
6133
- "health-bag-outlined": 59272,
6134
- "heart-outlined": 59273,
6135
- "home-active-outlined": 59274,
6136
- "home-outlined": 59275,
6137
- "id-card-outlined": 59276,
6138
- "image-outlined": 59277,
6139
- "import-outlined": 59278,
6140
- "instapay-outlined": 59279,
6082
+ "circle-add-outlined": 59209,
6083
+ "circle-cancel-outlined": 59210,
6084
+ "circle-down-outlined": 59211,
6085
+ "circle-info-outlined": 59212,
6086
+ "circle-left-outlined": 59213,
6087
+ "circle-ok-outlined": 59214,
6088
+ "circle-question-outlined": 59215,
6089
+ "circle-remove-outlined": 59216,
6090
+ "circle-right-outlined": 59217,
6091
+ "circle-up-outlined": 59218,
6092
+ "circle-warning-outlined": 59219,
6093
+ "clock-2-outlined": 59220,
6094
+ "clock-outlined": 59221,
6095
+ "cog-outlined": 59222,
6096
+ "coin-outlined": 59223,
6097
+ "comment-outlined": 59224,
6098
+ "contacts-outlined": 59225,
6099
+ "contacts-user-outlined": 59226,
6100
+ "credit-card-outlined": 59227,
6101
+ "cup-outlined": 59228,
6102
+ "direction-arrows-outlined": 59229,
6103
+ "directory-outlined": 59230,
6104
+ "document-outlined": 59231,
6105
+ "dollar-box-outlined": 59232,
6106
+ "dollar-card-outlined": 59233,
6107
+ "dollar-coin-shine-outlined": 59234,
6108
+ "dollar-credit-card-outlined": 59235,
6109
+ "dollar-sign": 59236,
6110
+ "double-buildings-outlined": 59237,
6111
+ "double-left-arrows": 59238,
6112
+ "double-right-arrows": 59239,
6113
+ "download-outlined": 59240,
6114
+ "edit-template-outlined": 59241,
6115
+ "email-outlined": 59242,
6116
+ "enter-arrow": 59243,
6117
+ "envelope-outlined": 59244,
6118
+ "expense-outlined": 59245,
6119
+ "explore-outlined": 59246,
6120
+ "external-link": 59247,
6121
+ "eye-invisible-outlined": 59248,
6122
+ "eye-outlined": 59249,
6123
+ "face-id": 59250,
6124
+ "face-meh-outlined": 59251,
6125
+ "face-open-smiley-outlined": 59252,
6126
+ "face-sad-outlined": 59253,
6127
+ "face-smiley-outlined": 59254,
6128
+ "feed-outlined": 59255,
6129
+ "file-certified-outlined": 59256,
6130
+ "file-clone-outlined": 59257,
6131
+ "file-copy-outlined": 59258,
6132
+ "file-dispose-outlined": 59259,
6133
+ "file-dollar-certified-outlined": 59260,
6134
+ "file-dollar-outlined": 59261,
6135
+ "file-download-outlined": 59262,
6136
+ "file-export-outlined": 59263,
6137
+ "file-lock-outlined": 59264,
6138
+ "file-outlined": 59265,
6139
+ "file-search-outlined": 59266,
6140
+ "file-secured-outlined": 59267,
6141
+ "file-statutory-outlined": 59268,
6142
+ "file-verified-outlined": 59269,
6143
+ "filter-outlined": 59270,
6144
+ "folder-outlined": 59271,
6145
+ "folder-user-outlined": 59272,
6146
+ "funnel-filter-outline": 59273,
6147
+ "graph-outlined": 59274,
6148
+ "hand-holding-user-outlined": 59275,
6149
+ "happy-sun-outlined": 59276,
6150
+ "health-bag-outlined": 59277,
6151
+ "heart-outlined": 59278,
6152
+ "home-active-outlined": 59279,
6153
+ "home-outlined": 59280,
6154
+ "id-card-outlined": 59281,
6155
+ "image-outlined": 59282,
6156
+ "import-outlined": 59283,
6157
+ "instapay-outlined": 59284,
6141
6158
  italic: italic,
6142
- "link-1": 59281,
6143
- "link-2": 59282,
6144
- "list-outlined": 59283,
6145
- "live-help-outlined": 59284,
6146
- "location-outlined": 59285,
6147
- "lock-outlined": 59286,
6148
- "locked-file-outlined": 59287,
6149
- "log-out": 59288,
6150
- "media-content-outlined": 59289,
6151
- "menu-close": 59290,
6152
- "menu-expand": 59291,
6153
- "menu-fold-outlined": 59292,
6154
- "menu-unfold-outlined": 59293,
6155
- "moneybag-outlined": 59294,
6156
- "moon-outlined": 59295,
6157
- "more-horizontal": 59296,
6158
- "more-vertical": 59297,
6159
- "multiple-folders-outlined": 59298,
6160
- "multiple-users-outlined": 59299,
6161
- "near-me-outlined": 59300,
6162
- "node-outlined": 59301,
6163
- "number-points": 59302,
6159
+ "link-1": 59286,
6160
+ "link-2": 59287,
6161
+ "list-outlined": 59288,
6162
+ "live-help-outlined": 59289,
6163
+ "location-on-outlined": 59290,
6164
+ "location-outlined": 59291,
6165
+ "lock-outlined": 59292,
6166
+ "locked-file-outlined": 59293,
6167
+ "log-out": 59294,
6168
+ "media-content-outlined": 59295,
6169
+ "menu-close": 59296,
6170
+ "menu-expand": 59297,
6171
+ "menu-fold-outlined": 59298,
6172
+ "menu-unfold-outlined": 59299,
6173
+ "moneybag-outlined": 59300,
6174
+ "moon-outlined": 59301,
6175
+ "more-horizontal": 59302,
6176
+ "more-vertical": 59303,
6177
+ "multiple-folders-outlined": 59304,
6178
+ "multiple-users-outlined": 59305,
6179
+ "near-me-outlined": 59306,
6180
+ "node-outlined": 59307,
6181
+ "number-points": 59308,
6164
6182
  number: number,
6165
- "overview-outlined": 59304,
6166
- "payment-summary-outlined": 59305,
6167
- "payslip-outlined": 59306,
6168
- "pencil-outlined": 59307,
6183
+ "overview-outlined": 59310,
6184
+ "payment-summary-outlined": 59311,
6185
+ "payslip-outlined": 59312,
6186
+ "pencil-outlined": 59313,
6169
6187
  percentage: percentage,
6170
- "phone-outlined": 59309,
6171
- "piggy-bank-outlined": 59310,
6172
- "plane-outlined": 59311,
6173
- "play-circle-outlined": 59312,
6174
- "print-outlined": 59313,
6175
- "qr-code-outlined": 59314,
6176
- "qualification-outlined": 59315,
6177
- "re-assign": 59316,
6188
+ "phone-outlined": 59315,
6189
+ "piggy-bank-outlined": 59316,
6190
+ "plane-outlined": 59317,
6191
+ "play-circle-outlined": 59318,
6192
+ "print-outlined": 59319,
6193
+ "qr-code-outlined": 59320,
6194
+ "qualification-outlined": 59321,
6195
+ "re-assign": 59322,
6178
6196
  redeem: redeem,
6179
6197
  refresh: refresh,
6180
6198
  remove: remove,
6181
- "reply-outlined": 59320,
6199
+ "reply-outlined": 59326,
6182
6200
  restart: restart,
6183
- "return-arrow": 59322,
6184
- "rostering-outlined": 59323,
6185
- "save-outlined": 59324,
6186
- "schedule-outlined": 59325,
6187
- "search-outlined": 59326,
6188
- "search-secured-outlined": 59327,
6189
- "send-outlined": 59328,
6190
- "share-1": 59329,
6191
- "share-2": 59330,
6192
- "share-outlined": 59331,
6193
- "show-chart-outlined": 59332,
6194
- "single-down-arrow": 59333,
6195
- "single-left-arrow": 59334,
6196
- "single-right-arrow": 59335,
6197
- "single-up-arrow": 59336,
6198
- "speaker-active-outlined": 59337,
6199
- "speaker-outlined": 59338,
6200
- "star-circle-outlined": 59339,
6201
- "star-outlined": 59340,
6202
- "stopwatch-outlined": 59341,
6201
+ "return-arrow": 59328,
6202
+ "rostering-outlined": 59329,
6203
+ "save-outlined": 59330,
6204
+ "schedule-outlined": 59331,
6205
+ "search-outlined": 59332,
6206
+ "search-secured-outlined": 59333,
6207
+ "send-outlined": 59334,
6208
+ "share-1": 59335,
6209
+ "share-2": 59336,
6210
+ "share-outlined": 59337,
6211
+ "show-chart-outlined": 59338,
6212
+ "single-down-arrow": 59339,
6213
+ "single-left-arrow": 59340,
6214
+ "single-right-arrow": 59341,
6215
+ "single-up-arrow": 59342,
6216
+ "speaker-active-outlined": 59343,
6217
+ "speaker-outlined": 59344,
6218
+ "star-circle-outlined": 59345,
6219
+ "star-outlined": 59346,
6220
+ "stopwatch-outlined": 59347,
6203
6221
  strikethrough: strikethrough,
6204
- "suitcase-clock-outlined": 59343,
6205
- "suitcase-outlined": 59344,
6206
- "survey-outlined": 59345,
6207
- "switch-outlined": 59346,
6222
+ "suitcase-clock-outlined": 59349,
6223
+ "suitcase-outlined": 59350,
6224
+ "survey-outlined": 59351,
6225
+ "switch-outlined": 59352,
6208
6226
  sync: sync,
6209
- "target-outlined": 59348,
6210
- "timesheet-outlined": 59349,
6211
- "today-outlined": 59350,
6227
+ "target-outlined": 59354,
6228
+ "timesheet-outlined": 59355,
6229
+ "today-outlined": 59356,
6212
6230
  transfer: transfer,
6213
- "trash-bin-outlined": 59352,
6214
- "umbrela-outlined": 59353,
6231
+ "trash-bin-outlined": 59358,
6232
+ "umbrela-outlined": 59359,
6215
6233
  unavailable: unavailable,
6216
6234
  underline: underline,
6217
- "unlock-outlined": 59356,
6218
- "upload-outlined": 59357,
6219
- "user-circle-outlined": 59358,
6220
- "user-gear-outlined": 59359,
6221
- "user-outlined": 59360,
6222
- "user-rectangle-outlined": 59361,
6223
- "video-1-outlined": 59362,
6224
- "video-2-outlined": 59363,
6225
- "wallet-outlined": 59364
6235
+ "unlock-outlined": 59362,
6236
+ "upload-outlined": 59363,
6237
+ "user-circle-outlined": 59364,
6238
+ "user-gear-outlined": 59365,
6239
+ "user-outlined": 59366,
6240
+ "user-rectangle-outlined": 59367,
6241
+ "video-1-outlined": 59368,
6242
+ "video-2-outlined": 59369,
6243
+ "wallet-outlined": 59370
6226
6244
  };
6227
6245
 
6228
6246
  var HeroIcon = createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
@@ -10504,73 +10522,81 @@ var Calendar = function Calendar(_ref) {
10504
10522
  })));
10505
10523
  };
10506
10524
 
10507
- var StyledCarouselPaginator = index$a(View)(function () {
10525
+ var _excluded$f = ["rounded", "size", "testID", "style"];
10526
+ var Image = function Image(_ref) {
10527
+ var _ref$rounded = _ref.rounded,
10528
+ rounded = _ref$rounded === void 0 ? false : _ref$rounded,
10529
+ _ref$size = _ref.size,
10530
+ size = _ref$size === void 0 ? '6xlarge' : _ref$size,
10531
+ testID = _ref.testID,
10532
+ style = _ref.style,
10533
+ imageNativeProps = _objectWithoutProperties(_ref, _excluded$f);
10534
+ var theme = useTheme();
10535
+ var imageSize = theme.__hd__.image.sizes[size];
10536
+ return /*#__PURE__*/React.createElement(Image$1, _extends$1({
10537
+ testID: testID,
10538
+ style: [{
10539
+ width: imageSize,
10540
+ height: imageSize,
10541
+ borderRadius: rounded ? imageSize / 2 : 0
10542
+ }, style]
10543
+ }, imageNativeProps));
10544
+ };
10545
+
10546
+ var StyledPageControl$1 = index$a(View)(function () {
10508
10547
  return {
10509
10548
  flexDirection: 'row',
10510
- alignItems: 'center',
10511
- marginStart: 'auto'
10549
+ alignItems: 'center'
10512
10550
  };
10513
10551
  });
10514
- var StyledCarouselPaginatorAnimatedView = index$a(Animated.View)(function (_ref) {
10552
+ var StyledPageControlAnimatedView = index$a(Animated.View)(function (_ref) {
10515
10553
  var theme = _ref.theme;
10516
10554
  return {
10517
- height: theme.__hd__.carousel.sizes.paginatorHeight,
10518
- width: theme.__hd__.carousel.sizes.paginatorWidth,
10519
- borderRadius: theme.__hd__.carousel.radii.paginatorBorderRadius,
10520
- backgroundColor: theme.__hd__.carousel.colors.paginatorBackgroundColor,
10521
- marginHorizontal: theme.__hd__.carousel.space.paginatorMarginHorizontal
10555
+ height: theme.__hd__.pageControl.sizes.paginatorHeight,
10556
+ width: theme.__hd__.pageControl.sizes.paginatorWidth,
10557
+ borderRadius: theme.__hd__.pageControl.radii.paginatorBorderRadius,
10558
+ backgroundColor: theme.__hd__.pageControl.colors.paginatorBackgroundColor,
10559
+ marginHorizontal: theme.__hd__.pageControl.space.paginatorMarginHorizontal
10522
10560
  };
10523
10561
  });
10524
10562
 
10525
- var CarouselPaginator = function CarouselPaginator(_ref) {
10526
- var numberOfSlides = _ref.numberOfSlides,
10527
- scrollX = _ref.scrollX;
10528
- var _useWindowDimensions = useWindowDimensions(),
10529
- width = _useWindowDimensions.width;
10563
+ var PageControl = function PageControl(_ref) {
10564
+ var numberOfPages = _ref.numberOfPages,
10565
+ _ref$currentPage = _ref.currentPage,
10566
+ currentPage = _ref$currentPage === void 0 ? 0 : _ref$currentPage,
10567
+ testID = _ref.testID,
10568
+ style = _ref.style;
10530
10569
  var theme = useTheme();
10531
- return /*#__PURE__*/React.createElement(StyledCarouselPaginator, null, new Array(numberOfSlides).fill('').map(function (_, index) {
10532
- var inputRange = [(index - 1) * width - 1, index * width - 1, (index + 1) * width];
10533
- var indicatorWidth = scrollX.interpolate({
10570
+ var animatedValue = React.useRef(new Animated.Value(currentPage)).current;
10571
+ React.useEffect(function () {
10572
+ animatedValue.setValue(currentPage);
10573
+ }, [currentPage]);
10574
+ return /*#__PURE__*/React.createElement(StyledPageControl$1, {
10575
+ testID: testID,
10576
+ style: style
10577
+ }, new Array(numberOfPages).fill('').map(function (_, index) {
10578
+ var inputRange = [index - 1, index, index + 1];
10579
+ var indicatorWidth = animatedValue.interpolate({
10534
10580
  inputRange: inputRange,
10535
10581
  outputRange: [theme.space.small, theme.space.large, theme.space.small],
10536
10582
  extrapolate: 'clamp'
10537
10583
  });
10538
- var opacity = scrollX.interpolate({
10584
+ var opacity = animatedValue.interpolate({
10539
10585
  inputRange: inputRange,
10540
10586
  outputRange: [0.5, 1, 0.5],
10541
10587
  extrapolate: 'clamp'
10542
10588
  });
10543
- return /*#__PURE__*/React.createElement(StyledCarouselPaginatorAnimatedView, {
10589
+ return /*#__PURE__*/React.createElement(StyledPageControlAnimatedView, {
10544
10590
  style: [{
10545
10591
  width: indicatorWidth,
10546
10592
  opacity: opacity
10547
10593
  }],
10548
- key: index.toString()
10594
+ key: index.toString(),
10595
+ testID: "page-control-indicator".concat(index)
10549
10596
  });
10550
10597
  }));
10551
10598
  };
10552
10599
 
10553
- var _excluded$f = ["rounded", "size", "testID", "style"];
10554
- var Image = function Image(_ref) {
10555
- var _ref$rounded = _ref.rounded,
10556
- rounded = _ref$rounded === void 0 ? false : _ref$rounded,
10557
- _ref$size = _ref.size,
10558
- size = _ref$size === void 0 ? '6xlarge' : _ref$size,
10559
- testID = _ref.testID,
10560
- style = _ref.style,
10561
- imageNativeProps = _objectWithoutProperties(_ref, _excluded$f);
10562
- var theme = useTheme();
10563
- var imageSize = theme.__hd__.image.sizes[size];
10564
- return /*#__PURE__*/React.createElement(Image$1, _extends$1({
10565
- testID: testID,
10566
- style: [{
10567
- width: imageSize,
10568
- height: imageSize,
10569
- borderRadius: rounded ? imageSize / 2 : 0
10570
- }, style]
10571
- }, imageNativeProps));
10572
- };
10573
-
10574
10600
  var StyledBackDrop = index$a(View)(function (_ref) {
10575
10601
  var themeSlideBackground = _ref.themeSlideBackground;
10576
10602
  return {
@@ -10634,6 +10660,9 @@ var StyledCarouselFooterWrapper = index$a(View)(function (_ref5) {
10634
10660
  marginBottom: theme.__hd__.carousel.space.footerMarginBottom
10635
10661
  };
10636
10662
  });
10663
+ var StyledPageControl = index$a(PageControl)({
10664
+ marginStart: 'auto'
10665
+ });
10637
10666
 
10638
10667
  function isCarouselImageProps(image) {
10639
10668
  return typeof image !== 'string';
@@ -10764,9 +10793,9 @@ var Carousel = function Carousel(_ref) {
10764
10793
  width: width
10765
10794
  });
10766
10795
  }
10767
- }), /*#__PURE__*/React.createElement(StyledCarouselFooterWrapper, null, renderActions && renderActions(currentSlideIndex), shouldShowPagination(currentSlideIndex) && /*#__PURE__*/React.createElement(CarouselPaginator, {
10768
- numberOfSlides: items.length,
10769
- scrollX: scrollX
10796
+ }), /*#__PURE__*/React.createElement(StyledCarouselFooterWrapper, null, renderActions && renderActions(currentSlideIndex), shouldShowPagination(currentSlideIndex) && /*#__PURE__*/React.createElement(StyledPageControl, {
10797
+ numberOfPages: items.length,
10798
+ currentPage: currentSlideIndex
10770
10799
  }))));
10771
10800
  };
10772
10801
 
@@ -31509,4 +31538,4 @@ var index = Object.assign(RichTextEditor$1, {
31509
31538
  Toolbar: EditorToolbar
31510
31539
  });
31511
31540
 
31512
- export { Accordion, Alert, Attachment, index$9 as Avatar, Badge$1 as Badge, BottomNavigation, BottomSheet$1 as BottomSheet, Box, CompoundButton as Button, Calendar, index$8 as Card, Carousel, Checkbox, Collapse, ContentNavigator, DatePicker, Divider, index$7 as Drawer, Empty, index$6 as FAB, Icon, Image, List, PinInput, Progress, CompoundRadio as Radio, RefreshControl, index as RichTextEditor, SectionHeading, index$4 as Select, Slider, Spinner, index$5 as Swipeable, SwipeableV2, index$3 as Switch, index$2 as Tabs, Tag, TextInput, ThemeProvider, ThemeSwitcher, TimePicker, Toast, index$1 as Toolbar, Typography, eBensSystemPalette, getTheme$1 as getTheme, jobsSystemPalette, scale, swagSystemPalette, defaultTheme as theme, useAvatarColors, useTheme, walletSystemPalette, workSystemPalette };
31541
+ export { Accordion, Alert, Attachment, index$9 as Avatar, Badge$1 as Badge, BottomNavigation, BottomSheet$1 as BottomSheet, Box, CompoundButton as Button, Calendar, index$8 as Card, Carousel, Checkbox, Collapse, ContentNavigator, DatePicker, Divider, index$7 as Drawer, Empty, index$6 as FAB, Icon, Image, List, PageControl, PinInput, Progress, CompoundRadio as Radio, RefreshControl, index as RichTextEditor, SectionHeading, index$4 as Select, Slider, Spinner, index$5 as Swipeable, SwipeableV2, index$3 as Switch, index$2 as Tabs, Tag, TextInput, ThemeProvider, ThemeSwitcher, TimePicker, Toast, index$1 as Toolbar, Typography, eBensSystemPalette, getTheme$1 as getTheme, jobsSystemPalette, scale, swagSystemPalette, defaultTheme as theme, useAvatarColors, useTheme, walletSystemPalette, workSystemPalette };