@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/lib/index.js CHANGED
@@ -1476,7 +1476,9 @@ var getRadii = function getRadii(baseRadius) {
1476
1476
  base: baseRadius,
1477
1477
  medium: baseRadius * 2,
1478
1478
  large: baseRadius * 3,
1479
- xlarge: baseRadius * 4 // 16
1479
+ xlarge: baseRadius * 4,
1480
+ xxlarge: baseRadius * 5,
1481
+ xxxlarge: baseRadius * 6 // 24
1480
1482
  };
1481
1483
  };
1482
1484
 
@@ -1829,25 +1831,13 @@ var getCardTheme = function getCardTheme(theme) {
1829
1831
  };
1830
1832
 
1831
1833
  var getCarouselTheme = function getCarouselTheme(theme) {
1832
- var colors = {
1833
- paginatorBackgroundColor: theme.colors.primary
1834
- };
1835
1834
  var space = {
1836
1835
  headingMarginTop: theme.space.small,
1837
1836
  headingMarginBottom: theme.space.medium,
1838
- paginatorMarginHorizontal: theme.space.small,
1839
1837
  footerPaddingHorizontal: theme.space.large,
1840
1838
  footerPaddingVertical: theme.space.medium,
1841
1839
  footerMarginBottom: theme.space.large
1842
1840
  };
1843
- var sizes = {
1844
- indicatorWidth: theme.sizes.medium,
1845
- paginatorHeight: theme.sizes.small,
1846
- paginatorWidth: theme.sizes.small
1847
- };
1848
- var radii = {
1849
- paginatorBorderRadius: theme.radii.rounded
1850
- };
1851
1841
  var fontSizes = {
1852
1842
  heading: theme.fontSizes['xxxxxlarge']
1853
1843
  };
@@ -1858,9 +1848,6 @@ var getCarouselTheme = function getCarouselTheme(theme) {
1858
1848
  heading: theme.lineHeights['6xlarge']
1859
1849
  };
1860
1850
  return {
1861
- colors: colors,
1862
- sizes: sizes,
1863
- radii: radii,
1864
1851
  space: space,
1865
1852
  fonts: fonts,
1866
1853
  fontSizes: fontSizes,
@@ -2149,6 +2136,29 @@ var getListTheme = function getListTheme(theme) {
2149
2136
  };
2150
2137
  };
2151
2138
 
2139
+ var getPageControlTheme = function getPageControlTheme(theme) {
2140
+ var colors = {
2141
+ paginatorBackgroundColor: theme.colors.primary
2142
+ };
2143
+ var sizes = {
2144
+ indicatorWidth: theme.sizes.medium,
2145
+ paginatorHeight: theme.sizes.small,
2146
+ paginatorWidth: theme.sizes.small
2147
+ };
2148
+ var space = {
2149
+ paginatorMarginHorizontal: theme.space.small
2150
+ };
2151
+ var radii = {
2152
+ paginatorBorderRadius: theme.radii.rounded
2153
+ };
2154
+ return {
2155
+ colors: colors,
2156
+ sizes: sizes,
2157
+ space: space,
2158
+ radii: radii
2159
+ };
2160
+ };
2161
+
2152
2162
  var getPinInputTheme = function getPinInputTheme(theme) {
2153
2163
  var borderWidths = {
2154
2164
  "default": theme.borderWidths.base,
@@ -2703,6 +2713,7 @@ var getTypographyTheme = function getTypographyTheme(theme) {
2703
2713
  large: theme.fontSizes.large,
2704
2714
  xlarge: theme.fontSizes.xlarge,
2705
2715
  xxxlarge: theme.fontSizes.xxxlarge,
2716
+ xxxxlarge: theme.fontSizes.xxxxlarge,
2706
2717
  xxxxxlarge: theme.fontSizes.xxxxxlarge,
2707
2718
  '6xlarge': theme.fontSizes['6xlarge'],
2708
2719
  '7xlarge': theme.fontSizes['7xlarge']
@@ -2713,6 +2724,7 @@ var getTypographyTheme = function getTypographyTheme(theme) {
2713
2724
  large: theme.lineHeights.large,
2714
2725
  xlarge: theme.lineHeights.xlarge,
2715
2726
  xxxlarge: theme.lineHeights.xxxlarge,
2727
+ xxxxlarge: theme.lineHeights.xxxxlarge,
2716
2728
  xxxxxlarge: theme.lineHeights.xxxxxlarge,
2717
2729
  '6xlarge': theme.lineHeights['6xlarge'],
2718
2730
  '7xlarge': theme.lineHeights['7xlarge']
@@ -2752,6 +2764,7 @@ var getTheme$1 = function getTheme() {
2752
2764
  icon: getIconTheme(globalTheme),
2753
2765
  image: getImageTheme(globalTheme),
2754
2766
  list: getListTheme(globalTheme),
2767
+ pageControl: getPageControlTheme(globalTheme),
2755
2768
  pinInput: getPinInputTheme(globalTheme),
2756
2769
  progress: getProgressTheme(globalTheme),
2757
2770
  radio: getRadioTheme(globalTheme),
@@ -5801,7 +5814,7 @@ var Typography = {
5801
5814
  };
5802
5815
 
5803
5816
  // 🔴 DO NOT EDIT — This file is generated automatically.
5804
- 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'];
5817
+ 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'];
5805
5818
 
5806
5819
  var activate = 59000;
5807
5820
  var adjustment = 59003;
@@ -5813,79 +5826,80 @@ var bell = 59009;
5813
5826
  var billing = 59010;
5814
5827
  var bookmark = 59012;
5815
5828
  var box = 59014;
5816
- var buildings = 59015;
5817
- var cake = 59016;
5818
- var calendar = 59018;
5819
- var clock = 59043;
5820
- var cog = 59046;
5821
- var coin = 59047;
5822
- var contacts = 59048;
5823
- var diamond = 59050;
5824
- var directory = 59052;
5825
- var document$1 = 59053;
5826
- var envelope = 59057;
5827
- var expense = 59058;
5828
- var eye = 59061;
5829
- var feed = 59065;
5830
- var feedbacks = 59066;
5831
- var file = 59084;
5832
- var filter = 59085;
5833
- var folder = 59087;
5834
- var globe = 59097;
5835
- var graph = 59099;
5836
- var heart = 59102;
5837
- var home = 59103;
5838
- var image = 59104;
5839
- var instapay = 59107;
5840
- var list = 59108;
5841
- var loading = 59110;
5842
- var location = 59111;
5843
- var lock = 59112;
5844
- var menu = 59116;
5845
- var moneybag = 59118;
5846
- var moon = 59119;
5847
- var node = 59122;
5848
- var paperclip = 59124;
5849
- var pencil = 59126;
5850
- var phone = 59127;
5851
- var plane = 59129;
5852
- var print = 59131;
5853
- var reply = 59134;
5854
- var reschedule = 59135;
5855
- var rostering = 59136;
5856
- var save = 59137;
5857
- var schedule = 59139;
5858
- var send = 59141;
5859
- var speaker = 59143;
5860
- var star = 59148;
5861
- var stopwatch = 59150;
5862
- var suitcase = 59151;
5863
- var survey = 59152;
5864
- var swag = 59153;
5865
- var tag = 59155;
5866
- var target = 59156;
5867
- var teams = 59157;
5868
- var timesheet = 59158;
5869
- var unlock = 59161;
5870
- var user = 59162;
5871
- var wallet = 59165;
5872
- var warning = 59166;
5873
- var add = 59172;
5874
- var bold = 59193;
5875
- var cancel = 59203;
5876
- var checkmark = 59206;
5877
- var italic = 59280;
5878
- var number = 59303;
5879
- var percentage = 59308;
5880
- var redeem = 59317;
5881
- var refresh = 59318;
5882
- var remove = 59319;
5883
- var restart = 59321;
5884
- var strikethrough = 59342;
5885
- var sync = 59347;
5886
- var transfer = 59351;
5887
- var unavailable = 59354;
5888
- var underline = 59355;
5829
+ var bpay = 59015;
5830
+ var buildings = 59016;
5831
+ var cake = 59017;
5832
+ var calendar = 59019;
5833
+ var clock = 59044;
5834
+ var cog = 59047;
5835
+ var coin = 59048;
5836
+ var contacts = 59049;
5837
+ var diamond = 59051;
5838
+ var directory = 59053;
5839
+ var document$1 = 59054;
5840
+ var envelope = 59058;
5841
+ var expense = 59059;
5842
+ var eye = 59062;
5843
+ var feed = 59066;
5844
+ var feedbacks = 59067;
5845
+ var file = 59085;
5846
+ var filter = 59086;
5847
+ var folder = 59088;
5848
+ var globe = 59098;
5849
+ var graph = 59100;
5850
+ var heart = 59103;
5851
+ var home = 59104;
5852
+ var image = 59105;
5853
+ var instapay = 59108;
5854
+ var list = 59109;
5855
+ var loading = 59111;
5856
+ var location = 59112;
5857
+ var lock = 59113;
5858
+ var menu = 59117;
5859
+ var moneybag = 59119;
5860
+ var moon = 59120;
5861
+ var node = 59123;
5862
+ var paperclip = 59125;
5863
+ var pencil = 59127;
5864
+ var phone = 59128;
5865
+ var plane = 59130;
5866
+ var print = 59132;
5867
+ var reply = 59135;
5868
+ var reschedule = 59136;
5869
+ var rostering = 59137;
5870
+ var save = 59138;
5871
+ var schedule = 59140;
5872
+ var send = 59142;
5873
+ var speaker = 59144;
5874
+ var star = 59149;
5875
+ var stopwatch = 59151;
5876
+ var suitcase = 59152;
5877
+ var survey = 59153;
5878
+ var swag = 59154;
5879
+ var tag = 59156;
5880
+ var target = 59157;
5881
+ var teams = 59158;
5882
+ var timesheet = 59159;
5883
+ var unlock = 59162;
5884
+ var user = 59163;
5885
+ var wallet = 59166;
5886
+ var warning = 59167;
5887
+ var add = 59173;
5888
+ var bold = 59194;
5889
+ var cancel = 59205;
5890
+ var checkmark = 59209;
5891
+ var italic = 59286;
5892
+ var number = 59310;
5893
+ var percentage = 59315;
5894
+ var redeem = 59324;
5895
+ var refresh = 59325;
5896
+ var remove = 59326;
5897
+ var restart = 59328;
5898
+ var strikethrough = 59349;
5899
+ var sync = 59354;
5900
+ var transfer = 59358;
5901
+ var unavailable = 59361;
5902
+ var underline = 59362;
5889
5903
  var glyphMap = {
5890
5904
  activate: activate,
5891
5905
  "add-emoji": 59001,
@@ -5902,356 +5916,363 @@ var glyphMap = {
5902
5916
  bookmark: bookmark,
5903
5917
  "box-check": 59013,
5904
5918
  box: box,
5919
+ bpay: bpay,
5905
5920
  buildings: buildings,
5906
5921
  cake: cake,
5907
- "calendar-clock": 59017,
5922
+ "calendar-clock": 59018,
5908
5923
  calendar: calendar,
5909
- "candy-box-menu": 59019,
5910
- "caret-down-small": 59020,
5911
- "caret-down": 59021,
5912
- "caret-left-small": 59022,
5913
- "caret-left": 59023,
5914
- "caret-right-small": 59024,
5915
- "caret-right": 59025,
5916
- "caret-up-small": 59026,
5917
- "caret-up": 59027,
5918
- "check-radio": 59028,
5919
- "circle-add": 59029,
5920
- "circle-cancel": 59030,
5921
- "circle-check": 59031,
5922
- "circle-down": 59032,
5923
- "circle-info": 59033,
5924
- "circle-left": 59034,
5925
- "circle-ok": 59035,
5926
- "circle-pencil": 59036,
5927
- "circle-question": 59037,
5928
- "circle-remove": 59038,
5929
- "circle-right": 59039,
5930
- "circle-up": 59040,
5931
- "circle-warning": 59041,
5932
- "clock-3": 59042,
5924
+ "candy-box-menu": 59020,
5925
+ "caret-down-small": 59021,
5926
+ "caret-down": 59022,
5927
+ "caret-left-small": 59023,
5928
+ "caret-left": 59024,
5929
+ "caret-right-small": 59025,
5930
+ "caret-right": 59026,
5931
+ "caret-up-small": 59027,
5932
+ "caret-up": 59028,
5933
+ "check-radio": 59029,
5934
+ "circle-add": 59030,
5935
+ "circle-cancel": 59031,
5936
+ "circle-check": 59032,
5937
+ "circle-down": 59033,
5938
+ "circle-info": 59034,
5939
+ "circle-left": 59035,
5940
+ "circle-ok": 59036,
5941
+ "circle-pencil": 59037,
5942
+ "circle-question": 59038,
5943
+ "circle-remove": 59039,
5944
+ "circle-right": 59040,
5945
+ "circle-up": 59041,
5946
+ "circle-warning": 59042,
5947
+ "clock-3": 59043,
5933
5948
  clock: clock,
5934
- "cloud-download": 59044,
5935
- "cloud-upload": 59045,
5949
+ "cloud-download": 59045,
5950
+ "cloud-upload": 59046,
5936
5951
  cog: cog,
5937
5952
  coin: coin,
5938
5953
  contacts: contacts,
5939
- "credit-card": 59049,
5954
+ "credit-card": 59050,
5940
5955
  diamond: diamond,
5941
- "direction-arrows": 59051,
5956
+ "direction-arrows": 59052,
5942
5957
  directory: directory,
5943
5958
  document: document$1,
5944
- "dollar-coin-shine": 59054,
5945
- "double-buildings": 59055,
5946
- "edit-template": 59056,
5959
+ "dollar-coin-shine": 59055,
5960
+ "double-buildings": 59056,
5961
+ "edit-template": 59057,
5947
5962
  envelope: envelope,
5948
5963
  expense: expense,
5949
- "eye-circle": 59059,
5950
- "eye-invisible": 59060,
5964
+ "eye-circle": 59060,
5965
+ "eye-invisible": 59061,
5951
5966
  eye: eye,
5952
- "face-meh": 59062,
5953
- "face-sad": 59063,
5954
- "face-smiley": 59064,
5967
+ "face-meh": 59063,
5968
+ "face-sad": 59064,
5969
+ "face-smiley": 59065,
5955
5970
  feed: feed,
5956
5971
  feedbacks: feedbacks,
5957
- "file-certified": 59067,
5958
- "file-clone": 59068,
5959
- "file-copy": 59069,
5960
- "file-csv": 59070,
5961
- "file-dispose": 59071,
5962
- "file-doc": 59072,
5963
- "file-excel": 59073,
5964
- "file-export": 59074,
5965
- "file-lock": 59075,
5966
- "file-pdf": 59076,
5967
- "file-powerpoint": 59077,
5968
- "file-search": 59078,
5969
- "file-secured": 59079,
5970
- "file-sheets": 59080,
5971
- "file-slide": 59081,
5972
- "file-verified": 59082,
5973
- "file-word": 59083,
5972
+ "file-certified": 59068,
5973
+ "file-clone": 59069,
5974
+ "file-copy": 59070,
5975
+ "file-csv": 59071,
5976
+ "file-dispose": 59072,
5977
+ "file-doc": 59073,
5978
+ "file-excel": 59074,
5979
+ "file-export": 59075,
5980
+ "file-lock": 59076,
5981
+ "file-pdf": 59077,
5982
+ "file-powerpoint": 59078,
5983
+ "file-search": 59079,
5984
+ "file-secured": 59080,
5985
+ "file-sheets": 59081,
5986
+ "file-slide": 59082,
5987
+ "file-verified": 59083,
5988
+ "file-word": 59084,
5974
5989
  file: file,
5975
5990
  filter: filter,
5976
- "folder-user": 59086,
5991
+ "folder-user": 59087,
5977
5992
  folder: folder,
5978
- "format-bold": 59088,
5979
- "format-heading1": 59089,
5980
- "format-heading2": 59090,
5981
- "format-italic": 59091,
5982
- "format-list-bulleted": 59092,
5983
- "format-list-numbered": 59093,
5984
- "format-underlined": 59094,
5985
- "funnel-filter": 59095,
5986
- "global-dollar": 59096,
5993
+ "format-bold": 59089,
5994
+ "format-heading1": 59090,
5995
+ "format-heading2": 59091,
5996
+ "format-italic": 59092,
5997
+ "format-list-bulleted": 59093,
5998
+ "format-list-numbered": 59094,
5999
+ "format-underlined": 59095,
6000
+ "funnel-filter": 59096,
6001
+ "global-dollar": 59097,
5987
6002
  globe: globe,
5988
- "graduation-cap": 59098,
6003
+ "graduation-cap": 59099,
5989
6004
  graph: graph,
5990
- "happy-sun": 59100,
5991
- "health-bag": 59101,
6005
+ "happy-sun": 59101,
6006
+ "health-bag": 59102,
5992
6007
  heart: heart,
5993
6008
  home: home,
5994
6009
  image: image,
5995
- "import": 59105,
5996
- "incident-siren": 59106,
6010
+ "import": 59106,
6011
+ "incident-siren": 59107,
5997
6012
  instapay: instapay,
5998
6013
  list: list,
5999
- "loading-2": 59109,
6014
+ "loading-2": 59110,
6000
6015
  loading: loading,
6001
6016
  location: location,
6002
6017
  lock: lock,
6003
- "looks-one": 59113,
6004
- "looks-two": 59114,
6005
- "media-content": 59115,
6018
+ "looks-one": 59114,
6019
+ "looks-two": 59115,
6020
+ "media-content": 59116,
6006
6021
  menu: menu,
6007
- "money-notes": 59117,
6022
+ "money-notes": 59118,
6008
6023
  moneybag: moneybag,
6009
6024
  moon: moon,
6010
- "multiple-stars": 59120,
6011
- "multiple-users": 59121,
6025
+ "multiple-stars": 59121,
6026
+ "multiple-users": 59122,
6012
6027
  node: node,
6013
- "open-folder": 59123,
6028
+ "open-folder": 59124,
6014
6029
  paperclip: paperclip,
6015
- "payment-summary": 59125,
6030
+ "payment-summary": 59126,
6016
6031
  pencil: pencil,
6017
6032
  phone: phone,
6018
- "piggy-bank": 59128,
6033
+ "piggy-bank": 59129,
6019
6034
  plane: plane,
6020
- "play-circle": 59130,
6035
+ "play-circle": 59131,
6021
6036
  print: print,
6022
- "raising-hands": 59132,
6023
- "reply-arrow": 59133,
6037
+ "raising-hands": 59133,
6038
+ "reply-arrow": 59134,
6024
6039
  reply: reply,
6025
6040
  reschedule: reschedule,
6026
6041
  rostering: rostering,
6027
6042
  save: save,
6028
- "schedule-send": 59138,
6043
+ "schedule-send": 59139,
6029
6044
  schedule: schedule,
6030
- "search-person": 59140,
6045
+ "search-person": 59141,
6031
6046
  send: send,
6032
- "speaker-active": 59142,
6047
+ "speaker-active": 59143,
6033
6048
  speaker: speaker,
6034
- "star-award": 59144,
6035
- "star-badge": 59145,
6036
- "star-circle": 59146,
6037
- "star-medal": 59147,
6049
+ "star-award": 59145,
6050
+ "star-badge": 59146,
6051
+ "star-circle": 59147,
6052
+ "star-medal": 59148,
6038
6053
  star: star,
6039
- "steps-circle": 59149,
6054
+ "steps-circle": 59150,
6040
6055
  stopwatch: stopwatch,
6041
6056
  suitcase: suitcase,
6042
6057
  survey: survey,
6043
6058
  swag: swag,
6044
- "switch": 59154,
6059
+ "switch": 59155,
6045
6060
  tag: tag,
6046
6061
  target: target,
6047
6062
  teams: teams,
6048
6063
  timesheet: timesheet,
6049
- "touch-id": 59159,
6050
- "trash-bin": 59160,
6064
+ "touch-id": 59160,
6065
+ "trash-bin": 59161,
6051
6066
  unlock: unlock,
6052
6067
  user: user,
6053
- "video-1": 59163,
6054
- "video-2": 59164,
6068
+ "video-1": 59164,
6069
+ "video-2": 59165,
6055
6070
  wallet: wallet,
6056
6071
  warning: warning,
6057
- "activate-outlined": 59167,
6058
- "add-credit-card-outlined": 59168,
6059
- "add-person-outlined": 59169,
6060
- "add-section-outlined": 59170,
6061
- "add-time-outlined": 59171,
6072
+ "activate-outlined": 59168,
6073
+ "add-credit-card-outlined": 59169,
6074
+ "add-person-outlined": 59170,
6075
+ "add-section-outlined": 59171,
6076
+ "add-time-outlined": 59172,
6062
6077
  add: add,
6063
- "adjustment-outlined": 59173,
6064
- "alignment-2-outlined": 59174,
6065
- "alignment-outlined": 59175,
6066
- "all-caps": 59176,
6067
- "arrow-down": 59177,
6068
- "arrow-downwards": 59178,
6069
- "arrow-left": 59179,
6070
- "arrow-leftwards": 59180,
6071
- "arrow-right": 59181,
6072
- "arrow-rightwards": 59182,
6073
- "arrow-up": 59183,
6074
- "arrow-upwards": 59184,
6075
- "article-outlined": 59185,
6076
- "at-sign": 59186,
6077
- "auto-graph-outlined": 59187,
6078
- "bell-active-outlined": 59188,
6079
- "bell-outlined": 59189,
6080
- "bell-slash-outlined": 59190,
6081
- "billing-outlined": 59191,
6082
- "body-outlined": 59192,
6078
+ "adjustment-outlined": 59174,
6079
+ "alignment-2-outlined": 59175,
6080
+ "alignment-outlined": 59176,
6081
+ "all-caps": 59177,
6082
+ "arrow-down": 59178,
6083
+ "arrow-downwards": 59179,
6084
+ "arrow-left": 59180,
6085
+ "arrow-leftwards": 59181,
6086
+ "arrow-right": 59182,
6087
+ "arrow-rightwards": 59183,
6088
+ "arrow-up": 59184,
6089
+ "arrow-upwards": 59185,
6090
+ "article-outlined": 59186,
6091
+ "at-sign": 59187,
6092
+ "auto-graph-outlined": 59188,
6093
+ "bell-active-outlined": 59189,
6094
+ "bell-outlined": 59190,
6095
+ "bell-slash-outlined": 59191,
6096
+ "billing-outlined": 59192,
6097
+ "body-outlined": 59193,
6083
6098
  bold: bold,
6084
- "bookmark-added-outlined": 59194,
6085
- "bookmark-outlined": 59195,
6086
- "box-check-outlined": 59196,
6087
- "box-outlined": 59197,
6088
- "bullet-points": 59198,
6089
- "cake-outlined": 59199,
6090
- "calendar-dates-outlined": 59200,
6091
- "calendar-star-outlined": 59201,
6092
- "camera-outlined": 59202,
6099
+ "bookmark-added-outlined": 59195,
6100
+ "bookmark-outlined": 59196,
6101
+ "box-check-outlined": 59197,
6102
+ "box-outlined": 59198,
6103
+ "bullet-points": 59199,
6104
+ "cake-outlined": 59200,
6105
+ "calendar-dates-outlined": 59201,
6106
+ "calendar-star-outlined": 59202,
6107
+ "call-split-outlined": 59203,
6108
+ "camera-outlined": 59204,
6093
6109
  cancel: cancel,
6094
- "chat-bubble-outlined": 59204,
6095
- "chat-unread-outlined": 59205,
6110
+ "charging-station-outlined": 59206,
6111
+ "chat-bubble-outlined": 59207,
6112
+ "chat-unread-outlined": 59208,
6096
6113
  checkmark: checkmark,
6097
- "circle-add-outlined": 59207,
6098
- "circle-cancel-outlined": 59208,
6099
- "circle-down-outlined": 59209,
6100
- "circle-info-outlined": 59210,
6101
- "circle-left-outlined": 59211,
6102
- "circle-ok-outlined": 59212,
6103
- "circle-question-outlined": 59213,
6104
- "circle-remove-outlined": 59214,
6105
- "circle-right-outlined": 59215,
6106
- "circle-up-outlined": 59216,
6107
- "circle-warning-outlined": 59217,
6108
- "clock-2-outlined": 59218,
6109
- "clock-outlined": 59219,
6110
- "cog-outlined": 59220,
6111
- "coin-outlined": 59221,
6112
- "comment-outlined": 59222,
6113
- "contacts-outlined": 59223,
6114
- "credit-card-outlined": 59224,
6115
- "cup-outlined": 59225,
6116
- "direction-arrows-outlined": 59226,
6117
- "directory-outlined": 59227,
6118
- "document-outlined": 59228,
6119
- "dollar-card-outlined": 59229,
6120
- "dollar-coin-shine-outlined": 59230,
6121
- "dollar-credit-card-outlined": 59231,
6122
- "dollar-sign": 59232,
6123
- "double-buildings-outlined": 59233,
6124
- "double-left-arrows": 59234,
6125
- "double-right-arrows": 59235,
6126
- "download-outlined": 59236,
6127
- "edit-template-outlined": 59237,
6128
- "email-outlined": 59238,
6129
- "enter-arrow": 59239,
6130
- "envelope-outlined": 59240,
6131
- "expense-outlined": 59241,
6132
- "explore-outlined": 59242,
6133
- "external-link": 59243,
6134
- "eye-invisible-outlined": 59244,
6135
- "eye-outlined": 59245,
6136
- "face-id": 59246,
6137
- "face-meh-outlined": 59247,
6138
- "face-open-smiley-outlined": 59248,
6139
- "face-sad-outlined": 59249,
6140
- "face-smiley-outlined": 59250,
6141
- "feed-outlined": 59251,
6142
- "file-certified-outlined": 59252,
6143
- "file-clone-outlined": 59253,
6144
- "file-copy-outlined": 59254,
6145
- "file-dispose-outlined": 59255,
6146
- "file-dollar-outlined": 59256,
6147
- "file-download-outlined": 59257,
6148
- "file-export-outlined": 59258,
6149
- "file-lock-outlined": 59259,
6150
- "file-outlined": 59260,
6151
- "file-search-outlined": 59261,
6152
- "file-secured-outlined": 59262,
6153
- "file-statutory-outlined": 59263,
6154
- "file-verified-outlined": 59264,
6155
- "filter-outlined": 59265,
6156
- "folder-outlined": 59266,
6157
- "folder-user-outlined": 59267,
6158
- "funnel-filter-outline": 59268,
6159
- "graph-outlined": 59269,
6160
- "hand-holding-user-outlined": 59270,
6161
- "happy-sun-outlined": 59271,
6162
- "health-bag-outlined": 59272,
6163
- "heart-outlined": 59273,
6164
- "home-active-outlined": 59274,
6165
- "home-outlined": 59275,
6166
- "id-card-outlined": 59276,
6167
- "image-outlined": 59277,
6168
- "import-outlined": 59278,
6169
- "instapay-outlined": 59279,
6114
+ "circle-add-outlined": 59210,
6115
+ "circle-cancel-outlined": 59211,
6116
+ "circle-down-outlined": 59212,
6117
+ "circle-info-outlined": 59213,
6118
+ "circle-left-outlined": 59214,
6119
+ "circle-ok-outlined": 59215,
6120
+ "circle-question-outlined": 59216,
6121
+ "circle-remove-outlined": 59217,
6122
+ "circle-right-outlined": 59218,
6123
+ "circle-up-outlined": 59219,
6124
+ "circle-warning-outlined": 59220,
6125
+ "clock-2-outlined": 59221,
6126
+ "clock-outlined": 59222,
6127
+ "cog-outlined": 59223,
6128
+ "coin-outlined": 59224,
6129
+ "comment-outlined": 59225,
6130
+ "contacts-outlined": 59226,
6131
+ "contacts-user-outlined": 59227,
6132
+ "credit-card-outlined": 59228,
6133
+ "cup-outlined": 59229,
6134
+ "direction-arrows-outlined": 59230,
6135
+ "directory-outlined": 59231,
6136
+ "document-outlined": 59232,
6137
+ "dollar-box-outlined": 59233,
6138
+ "dollar-card-outlined": 59234,
6139
+ "dollar-coin-shine-outlined": 59235,
6140
+ "dollar-credit-card-outlined": 59236,
6141
+ "dollar-sign": 59237,
6142
+ "double-buildings-outlined": 59238,
6143
+ "double-left-arrows": 59239,
6144
+ "double-right-arrows": 59240,
6145
+ "download-outlined": 59241,
6146
+ "edit-template-outlined": 59242,
6147
+ "email-outlined": 59243,
6148
+ "enter-arrow": 59244,
6149
+ "envelope-outlined": 59245,
6150
+ "expense-outlined": 59246,
6151
+ "explore-outlined": 59247,
6152
+ "external-link": 59248,
6153
+ "eye-invisible-outlined": 59249,
6154
+ "eye-outlined": 59250,
6155
+ "face-id": 59251,
6156
+ "face-meh-outlined": 59252,
6157
+ "face-open-smiley-outlined": 59253,
6158
+ "face-sad-outlined": 59254,
6159
+ "face-smiley-outlined": 59255,
6160
+ "feed-outlined": 59256,
6161
+ "file-certified-outlined": 59257,
6162
+ "file-clone-outlined": 59258,
6163
+ "file-copy-outlined": 59259,
6164
+ "file-dispose-outlined": 59260,
6165
+ "file-dollar-certified-outlined": 59261,
6166
+ "file-dollar-outlined": 59262,
6167
+ "file-download-outlined": 59263,
6168
+ "file-export-outlined": 59264,
6169
+ "file-lock-outlined": 59265,
6170
+ "file-outlined": 59266,
6171
+ "file-search-outlined": 59267,
6172
+ "file-secured-outlined": 59268,
6173
+ "file-statutory-outlined": 59269,
6174
+ "file-verified-outlined": 59270,
6175
+ "filter-outlined": 59271,
6176
+ "folder-outlined": 59272,
6177
+ "folder-user-outlined": 59273,
6178
+ "funnel-filter-outline": 59274,
6179
+ "graph-outlined": 59275,
6180
+ "hand-holding-user-outlined": 59276,
6181
+ "happy-sun-outlined": 59277,
6182
+ "health-bag-outlined": 59278,
6183
+ "heart-outlined": 59279,
6184
+ "home-active-outlined": 59280,
6185
+ "home-outlined": 59281,
6186
+ "id-card-outlined": 59282,
6187
+ "image-outlined": 59283,
6188
+ "import-outlined": 59284,
6189
+ "instapay-outlined": 59285,
6170
6190
  italic: italic,
6171
- "link-1": 59281,
6172
- "link-2": 59282,
6173
- "list-outlined": 59283,
6174
- "live-help-outlined": 59284,
6175
- "location-outlined": 59285,
6176
- "lock-outlined": 59286,
6177
- "locked-file-outlined": 59287,
6178
- "log-out": 59288,
6179
- "media-content-outlined": 59289,
6180
- "menu-close": 59290,
6181
- "menu-expand": 59291,
6182
- "menu-fold-outlined": 59292,
6183
- "menu-unfold-outlined": 59293,
6184
- "moneybag-outlined": 59294,
6185
- "moon-outlined": 59295,
6186
- "more-horizontal": 59296,
6187
- "more-vertical": 59297,
6188
- "multiple-folders-outlined": 59298,
6189
- "multiple-users-outlined": 59299,
6190
- "near-me-outlined": 59300,
6191
- "node-outlined": 59301,
6192
- "number-points": 59302,
6191
+ "link-1": 59287,
6192
+ "link-2": 59288,
6193
+ "list-outlined": 59289,
6194
+ "live-help-outlined": 59290,
6195
+ "location-on-outlined": 59291,
6196
+ "location-outlined": 59292,
6197
+ "lock-outlined": 59293,
6198
+ "locked-file-outlined": 59294,
6199
+ "log-out": 59295,
6200
+ "media-content-outlined": 59296,
6201
+ "menu-close": 59297,
6202
+ "menu-expand": 59298,
6203
+ "menu-fold-outlined": 59299,
6204
+ "menu-unfold-outlined": 59300,
6205
+ "moneybag-outlined": 59301,
6206
+ "moon-outlined": 59302,
6207
+ "more-horizontal": 59303,
6208
+ "more-vertical": 59304,
6209
+ "multiple-folders-outlined": 59305,
6210
+ "multiple-users-outlined": 59306,
6211
+ "near-me-outlined": 59307,
6212
+ "node-outlined": 59308,
6213
+ "number-points": 59309,
6193
6214
  number: number,
6194
- "overview-outlined": 59304,
6195
- "payment-summary-outlined": 59305,
6196
- "payslip-outlined": 59306,
6197
- "pencil-outlined": 59307,
6215
+ "overview-outlined": 59311,
6216
+ "payment-summary-outlined": 59312,
6217
+ "payslip-outlined": 59313,
6218
+ "pencil-outlined": 59314,
6198
6219
  percentage: percentage,
6199
- "phone-outlined": 59309,
6200
- "piggy-bank-outlined": 59310,
6201
- "plane-outlined": 59311,
6202
- "play-circle-outlined": 59312,
6203
- "print-outlined": 59313,
6204
- "qr-code-outlined": 59314,
6205
- "qualification-outlined": 59315,
6206
- "re-assign": 59316,
6220
+ "phone-outlined": 59316,
6221
+ "piggy-bank-outlined": 59317,
6222
+ "plane-outlined": 59318,
6223
+ "play-circle-outlined": 59319,
6224
+ "print-outlined": 59320,
6225
+ "qr-code-outlined": 59321,
6226
+ "qualification-outlined": 59322,
6227
+ "re-assign": 59323,
6207
6228
  redeem: redeem,
6208
6229
  refresh: refresh,
6209
6230
  remove: remove,
6210
- "reply-outlined": 59320,
6231
+ "reply-outlined": 59327,
6211
6232
  restart: restart,
6212
- "return-arrow": 59322,
6213
- "rostering-outlined": 59323,
6214
- "save-outlined": 59324,
6215
- "schedule-outlined": 59325,
6216
- "search-outlined": 59326,
6217
- "search-secured-outlined": 59327,
6218
- "send-outlined": 59328,
6219
- "share-1": 59329,
6220
- "share-2": 59330,
6221
- "share-outlined": 59331,
6222
- "show-chart-outlined": 59332,
6223
- "single-down-arrow": 59333,
6224
- "single-left-arrow": 59334,
6225
- "single-right-arrow": 59335,
6226
- "single-up-arrow": 59336,
6227
- "speaker-active-outlined": 59337,
6228
- "speaker-outlined": 59338,
6229
- "star-circle-outlined": 59339,
6230
- "star-outlined": 59340,
6231
- "stopwatch-outlined": 59341,
6233
+ "return-arrow": 59329,
6234
+ "rostering-outlined": 59330,
6235
+ "save-outlined": 59331,
6236
+ "schedule-outlined": 59332,
6237
+ "search-outlined": 59333,
6238
+ "search-secured-outlined": 59334,
6239
+ "send-outlined": 59335,
6240
+ "share-1": 59336,
6241
+ "share-2": 59337,
6242
+ "share-outlined": 59338,
6243
+ "show-chart-outlined": 59339,
6244
+ "single-down-arrow": 59340,
6245
+ "single-left-arrow": 59341,
6246
+ "single-right-arrow": 59342,
6247
+ "single-up-arrow": 59343,
6248
+ "speaker-active-outlined": 59344,
6249
+ "speaker-outlined": 59345,
6250
+ "star-circle-outlined": 59346,
6251
+ "star-outlined": 59347,
6252
+ "stopwatch-outlined": 59348,
6232
6253
  strikethrough: strikethrough,
6233
- "suitcase-clock-outlined": 59343,
6234
- "suitcase-outlined": 59344,
6235
- "survey-outlined": 59345,
6236
- "switch-outlined": 59346,
6254
+ "suitcase-clock-outlined": 59350,
6255
+ "suitcase-outlined": 59351,
6256
+ "survey-outlined": 59352,
6257
+ "switch-outlined": 59353,
6237
6258
  sync: sync,
6238
- "target-outlined": 59348,
6239
- "timesheet-outlined": 59349,
6240
- "today-outlined": 59350,
6259
+ "target-outlined": 59355,
6260
+ "timesheet-outlined": 59356,
6261
+ "today-outlined": 59357,
6241
6262
  transfer: transfer,
6242
- "trash-bin-outlined": 59352,
6243
- "umbrela-outlined": 59353,
6263
+ "trash-bin-outlined": 59359,
6264
+ "umbrela-outlined": 59360,
6244
6265
  unavailable: unavailable,
6245
6266
  underline: underline,
6246
- "unlock-outlined": 59356,
6247
- "upload-outlined": 59357,
6248
- "user-circle-outlined": 59358,
6249
- "user-gear-outlined": 59359,
6250
- "user-outlined": 59360,
6251
- "user-rectangle-outlined": 59361,
6252
- "video-1-outlined": 59362,
6253
- "video-2-outlined": 59363,
6254
- "wallet-outlined": 59364
6267
+ "unlock-outlined": 59363,
6268
+ "upload-outlined": 59364,
6269
+ "user-circle-outlined": 59365,
6270
+ "user-gear-outlined": 59366,
6271
+ "user-outlined": 59367,
6272
+ "user-rectangle-outlined": 59368,
6273
+ "video-1-outlined": 59369,
6274
+ "video-2-outlined": 59370,
6275
+ "wallet-outlined": 59371
6255
6276
  };
6256
6277
 
6257
6278
  var HeroIcon = reactNativeVectorIcons.createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
@@ -10533,73 +10554,81 @@ var Calendar = function Calendar(_ref) {
10533
10554
  })));
10534
10555
  };
10535
10556
 
10536
- var StyledCarouselPaginator = index$a(reactNative.View)(function () {
10557
+ var _excluded$f = ["rounded", "size", "testID", "style"];
10558
+ var Image = function Image(_ref) {
10559
+ var _ref$rounded = _ref.rounded,
10560
+ rounded = _ref$rounded === void 0 ? false : _ref$rounded,
10561
+ _ref$size = _ref.size,
10562
+ size = _ref$size === void 0 ? '6xlarge' : _ref$size,
10563
+ testID = _ref.testID,
10564
+ style = _ref.style,
10565
+ imageNativeProps = _objectWithoutProperties(_ref, _excluded$f);
10566
+ var theme = useTheme();
10567
+ var imageSize = theme.__hd__.image.sizes[size];
10568
+ return /*#__PURE__*/React__default["default"].createElement(reactNative.Image, _extends$1({
10569
+ testID: testID,
10570
+ style: [{
10571
+ width: imageSize,
10572
+ height: imageSize,
10573
+ borderRadius: rounded ? imageSize / 2 : 0
10574
+ }, style]
10575
+ }, imageNativeProps));
10576
+ };
10577
+
10578
+ var StyledPageControl$1 = index$a(reactNative.View)(function () {
10537
10579
  return {
10538
10580
  flexDirection: 'row',
10539
- alignItems: 'center',
10540
- marginStart: 'auto'
10581
+ alignItems: 'center'
10541
10582
  };
10542
10583
  });
10543
- var StyledCarouselPaginatorAnimatedView = index$a(reactNative.Animated.View)(function (_ref) {
10584
+ var StyledPageControlAnimatedView = index$a(reactNative.Animated.View)(function (_ref) {
10544
10585
  var theme = _ref.theme;
10545
10586
  return {
10546
- height: theme.__hd__.carousel.sizes.paginatorHeight,
10547
- width: theme.__hd__.carousel.sizes.paginatorWidth,
10548
- borderRadius: theme.__hd__.carousel.radii.paginatorBorderRadius,
10549
- backgroundColor: theme.__hd__.carousel.colors.paginatorBackgroundColor,
10550
- marginHorizontal: theme.__hd__.carousel.space.paginatorMarginHorizontal
10587
+ height: theme.__hd__.pageControl.sizes.paginatorHeight,
10588
+ width: theme.__hd__.pageControl.sizes.paginatorWidth,
10589
+ borderRadius: theme.__hd__.pageControl.radii.paginatorBorderRadius,
10590
+ backgroundColor: theme.__hd__.pageControl.colors.paginatorBackgroundColor,
10591
+ marginHorizontal: theme.__hd__.pageControl.space.paginatorMarginHorizontal
10551
10592
  };
10552
10593
  });
10553
10594
 
10554
- var CarouselPaginator = function CarouselPaginator(_ref) {
10555
- var numberOfSlides = _ref.numberOfSlides,
10556
- scrollX = _ref.scrollX;
10557
- var _useWindowDimensions = reactNative.useWindowDimensions(),
10558
- width = _useWindowDimensions.width;
10595
+ var PageControl = function PageControl(_ref) {
10596
+ var numberOfPages = _ref.numberOfPages,
10597
+ _ref$currentPage = _ref.currentPage,
10598
+ currentPage = _ref$currentPage === void 0 ? 0 : _ref$currentPage,
10599
+ testID = _ref.testID,
10600
+ style = _ref.style;
10559
10601
  var theme = useTheme();
10560
- return /*#__PURE__*/React__default["default"].createElement(StyledCarouselPaginator, null, new Array(numberOfSlides).fill('').map(function (_, index) {
10561
- var inputRange = [(index - 1) * width - 1, index * width - 1, (index + 1) * width];
10562
- var indicatorWidth = scrollX.interpolate({
10602
+ var animatedValue = React__default["default"].useRef(new reactNative.Animated.Value(currentPage)).current;
10603
+ React__default["default"].useEffect(function () {
10604
+ animatedValue.setValue(currentPage);
10605
+ }, [currentPage]);
10606
+ return /*#__PURE__*/React__default["default"].createElement(StyledPageControl$1, {
10607
+ testID: testID,
10608
+ style: style
10609
+ }, new Array(numberOfPages).fill('').map(function (_, index) {
10610
+ var inputRange = [index - 1, index, index + 1];
10611
+ var indicatorWidth = animatedValue.interpolate({
10563
10612
  inputRange: inputRange,
10564
10613
  outputRange: [theme.space.small, theme.space.large, theme.space.small],
10565
10614
  extrapolate: 'clamp'
10566
10615
  });
10567
- var opacity = scrollX.interpolate({
10616
+ var opacity = animatedValue.interpolate({
10568
10617
  inputRange: inputRange,
10569
10618
  outputRange: [0.5, 1, 0.5],
10570
10619
  extrapolate: 'clamp'
10571
10620
  });
10572
- return /*#__PURE__*/React__default["default"].createElement(StyledCarouselPaginatorAnimatedView, {
10621
+ return /*#__PURE__*/React__default["default"].createElement(StyledPageControlAnimatedView, {
10573
10622
  style: [{
10574
10623
  width: indicatorWidth,
10575
10624
  opacity: opacity
10576
10625
  }],
10577
- key: index.toString()
10626
+ key: index.toString(),
10627
+ testID: "page-control-indicator".concat(index)
10578
10628
  });
10579
10629
  }));
10580
10630
  };
10581
10631
 
10582
- var _excluded$f = ["rounded", "size", "testID", "style"];
10583
- var Image = function Image(_ref) {
10584
- var _ref$rounded = _ref.rounded,
10585
- rounded = _ref$rounded === void 0 ? false : _ref$rounded,
10586
- _ref$size = _ref.size,
10587
- size = _ref$size === void 0 ? '6xlarge' : _ref$size,
10588
- testID = _ref.testID,
10589
- style = _ref.style,
10590
- imageNativeProps = _objectWithoutProperties(_ref, _excluded$f);
10591
- var theme = useTheme();
10592
- var imageSize = theme.__hd__.image.sizes[size];
10593
- return /*#__PURE__*/React__default["default"].createElement(reactNative.Image, _extends$1({
10594
- testID: testID,
10595
- style: [{
10596
- width: imageSize,
10597
- height: imageSize,
10598
- borderRadius: rounded ? imageSize / 2 : 0
10599
- }, style]
10600
- }, imageNativeProps));
10601
- };
10602
-
10603
10632
  var StyledBackDrop = index$a(reactNative.View)(function (_ref) {
10604
10633
  var themeSlideBackground = _ref.themeSlideBackground;
10605
10634
  return {
@@ -10663,6 +10692,9 @@ var StyledCarouselFooterWrapper = index$a(reactNative.View)(function (_ref5) {
10663
10692
  marginBottom: theme.__hd__.carousel.space.footerMarginBottom
10664
10693
  };
10665
10694
  });
10695
+ var StyledPageControl = index$a(PageControl)({
10696
+ marginStart: 'auto'
10697
+ });
10666
10698
 
10667
10699
  function isCarouselImageProps(image) {
10668
10700
  return typeof image !== 'string';
@@ -10793,9 +10825,9 @@ var Carousel = function Carousel(_ref) {
10793
10825
  width: width
10794
10826
  });
10795
10827
  }
10796
- }), /*#__PURE__*/React__default["default"].createElement(StyledCarouselFooterWrapper, null, renderActions && renderActions(currentSlideIndex), shouldShowPagination(currentSlideIndex) && /*#__PURE__*/React__default["default"].createElement(CarouselPaginator, {
10797
- numberOfSlides: items.length,
10798
- scrollX: scrollX
10828
+ }), /*#__PURE__*/React__default["default"].createElement(StyledCarouselFooterWrapper, null, renderActions && renderActions(currentSlideIndex), shouldShowPagination(currentSlideIndex) && /*#__PURE__*/React__default["default"].createElement(StyledPageControl, {
10829
+ numberOfPages: items.length,
10830
+ currentPage: currentSlideIndex
10799
10831
  }))));
10800
10832
  };
10801
10833
 
@@ -31561,6 +31593,7 @@ exports.FAB = index$6;
31561
31593
  exports.Icon = Icon;
31562
31594
  exports.Image = Image;
31563
31595
  exports.List = List;
31596
+ exports.PageControl = PageControl;
31564
31597
  exports.PinInput = PinInput;
31565
31598
  exports.Progress = Progress;
31566
31599
  exports.Radio = CompoundRadio;