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