@hero-design/rn 8.6.1 → 8.7.0

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