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