@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.
- package/.turbo/turbo-build.log +9 -9
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +440 -411
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +440 -410
- package/package.json +5 -5
- package/src/components/Carousel/StyledCarousel.tsx +5 -0
- 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 +4 -4
- 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 +5 -1
- 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/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
|
|
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
|
|
5860
|
-
var
|
|
5861
|
-
var
|
|
5862
|
-
var
|
|
5863
|
-
var
|
|
5864
|
-
var
|
|
5865
|
-
var
|
|
5866
|
-
var
|
|
5867
|
-
var
|
|
5868
|
-
var
|
|
5869
|
-
var
|
|
5870
|
-
var
|
|
5871
|
-
var
|
|
5872
|
-
var
|
|
5873
|
-
var
|
|
5874
|
-
var
|
|
5875
|
-
var
|
|
5876
|
-
var
|
|
5877
|
-
var
|
|
5878
|
-
var
|
|
5879
|
-
var
|
|
5880
|
-
var
|
|
5881
|
-
var
|
|
5882
|
-
var
|
|
5883
|
-
var
|
|
5884
|
-
var
|
|
5885
|
-
var
|
|
5886
|
-
var
|
|
5887
|
-
var
|
|
5888
|
-
var
|
|
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":
|
|
5920
|
+
"calendar-clock": 59018,
|
|
5908
5921
|
calendar: calendar,
|
|
5909
|
-
"candy-box-menu":
|
|
5910
|
-
"caret-down-small":
|
|
5911
|
-
"caret-down":
|
|
5912
|
-
"caret-left-small":
|
|
5913
|
-
"caret-left":
|
|
5914
|
-
"caret-right-small":
|
|
5915
|
-
"caret-right":
|
|
5916
|
-
"caret-up-small":
|
|
5917
|
-
"caret-up":
|
|
5918
|
-
"check-radio":
|
|
5919
|
-
"circle-add":
|
|
5920
|
-
"circle-cancel":
|
|
5921
|
-
"circle-check":
|
|
5922
|
-
"circle-down":
|
|
5923
|
-
"circle-info":
|
|
5924
|
-
"circle-left":
|
|
5925
|
-
"circle-ok":
|
|
5926
|
-
"circle-pencil":
|
|
5927
|
-
"circle-question":
|
|
5928
|
-
"circle-remove":
|
|
5929
|
-
"circle-right":
|
|
5930
|
-
"circle-up":
|
|
5931
|
-
"circle-warning":
|
|
5932
|
-
"clock-3":
|
|
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":
|
|
5935
|
-
"cloud-upload":
|
|
5947
|
+
"cloud-download": 59045,
|
|
5948
|
+
"cloud-upload": 59046,
|
|
5936
5949
|
cog: cog,
|
|
5937
5950
|
coin: coin,
|
|
5938
5951
|
contacts: contacts,
|
|
5939
|
-
"credit-card":
|
|
5952
|
+
"credit-card": 59050,
|
|
5940
5953
|
diamond: diamond,
|
|
5941
|
-
"direction-arrows":
|
|
5954
|
+
"direction-arrows": 59052,
|
|
5942
5955
|
directory: directory,
|
|
5943
5956
|
document: document$1,
|
|
5944
|
-
"dollar-coin-shine":
|
|
5945
|
-
"double-buildings":
|
|
5946
|
-
"edit-template":
|
|
5957
|
+
"dollar-coin-shine": 59055,
|
|
5958
|
+
"double-buildings": 59056,
|
|
5959
|
+
"edit-template": 59057,
|
|
5947
5960
|
envelope: envelope,
|
|
5948
5961
|
expense: expense,
|
|
5949
|
-
"eye-circle":
|
|
5950
|
-
"eye-invisible":
|
|
5962
|
+
"eye-circle": 59060,
|
|
5963
|
+
"eye-invisible": 59061,
|
|
5951
5964
|
eye: eye,
|
|
5952
|
-
"face-meh":
|
|
5953
|
-
"face-sad":
|
|
5954
|
-
"face-smiley":
|
|
5965
|
+
"face-meh": 59063,
|
|
5966
|
+
"face-sad": 59064,
|
|
5967
|
+
"face-smiley": 59065,
|
|
5955
5968
|
feed: feed,
|
|
5956
5969
|
feedbacks: feedbacks,
|
|
5957
|
-
"file-certified":
|
|
5958
|
-
"file-clone":
|
|
5959
|
-
"file-copy":
|
|
5960
|
-
"file-csv":
|
|
5961
|
-
"file-dispose":
|
|
5962
|
-
"file-doc":
|
|
5963
|
-
"file-excel":
|
|
5964
|
-
"file-export":
|
|
5965
|
-
"file-lock":
|
|
5966
|
-
"file-pdf":
|
|
5967
|
-
"file-powerpoint":
|
|
5968
|
-
"file-search":
|
|
5969
|
-
"file-secured":
|
|
5970
|
-
"file-sheets":
|
|
5971
|
-
"file-slide":
|
|
5972
|
-
"file-verified":
|
|
5973
|
-
"file-word":
|
|
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":
|
|
5989
|
+
"folder-user": 59087,
|
|
5977
5990
|
folder: folder,
|
|
5978
|
-
"format-bold":
|
|
5979
|
-
"format-heading1":
|
|
5980
|
-
"format-heading2":
|
|
5981
|
-
"format-italic":
|
|
5982
|
-
"format-list-bulleted":
|
|
5983
|
-
"format-list-numbered":
|
|
5984
|
-
"format-underlined":
|
|
5985
|
-
"funnel-filter":
|
|
5986
|
-
"global-dollar":
|
|
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":
|
|
6001
|
+
"graduation-cap": 59099,
|
|
5989
6002
|
graph: graph,
|
|
5990
|
-
"happy-sun":
|
|
5991
|
-
"health-bag":
|
|
6003
|
+
"happy-sun": 59101,
|
|
6004
|
+
"health-bag": 59102,
|
|
5992
6005
|
heart: heart,
|
|
5993
6006
|
home: home,
|
|
5994
6007
|
image: image,
|
|
5995
|
-
"import":
|
|
5996
|
-
"incident-siren":
|
|
6008
|
+
"import": 59106,
|
|
6009
|
+
"incident-siren": 59107,
|
|
5997
6010
|
instapay: instapay,
|
|
5998
6011
|
list: list,
|
|
5999
|
-
"loading-2":
|
|
6012
|
+
"loading-2": 59110,
|
|
6000
6013
|
loading: loading,
|
|
6001
6014
|
location: location,
|
|
6002
6015
|
lock: lock,
|
|
6003
|
-
"looks-one":
|
|
6004
|
-
"looks-two":
|
|
6005
|
-
"media-content":
|
|
6016
|
+
"looks-one": 59114,
|
|
6017
|
+
"looks-two": 59115,
|
|
6018
|
+
"media-content": 59116,
|
|
6006
6019
|
menu: menu,
|
|
6007
|
-
"money-notes":
|
|
6020
|
+
"money-notes": 59118,
|
|
6008
6021
|
moneybag: moneybag,
|
|
6009
6022
|
moon: moon,
|
|
6010
|
-
"multiple-stars":
|
|
6011
|
-
"multiple-users":
|
|
6023
|
+
"multiple-stars": 59121,
|
|
6024
|
+
"multiple-users": 59122,
|
|
6012
6025
|
node: node,
|
|
6013
|
-
"open-folder":
|
|
6026
|
+
"open-folder": 59124,
|
|
6014
6027
|
paperclip: paperclip,
|
|
6015
|
-
"payment-summary":
|
|
6028
|
+
"payment-summary": 59126,
|
|
6016
6029
|
pencil: pencil,
|
|
6017
6030
|
phone: phone,
|
|
6018
|
-
"piggy-bank":
|
|
6031
|
+
"piggy-bank": 59129,
|
|
6019
6032
|
plane: plane,
|
|
6020
|
-
"play-circle":
|
|
6033
|
+
"play-circle": 59131,
|
|
6021
6034
|
print: print,
|
|
6022
|
-
"raising-hands":
|
|
6023
|
-
"reply-arrow":
|
|
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":
|
|
6041
|
+
"schedule-send": 59139,
|
|
6029
6042
|
schedule: schedule,
|
|
6030
|
-
"search-person":
|
|
6043
|
+
"search-person": 59141,
|
|
6031
6044
|
send: send,
|
|
6032
|
-
"speaker-active":
|
|
6045
|
+
"speaker-active": 59143,
|
|
6033
6046
|
speaker: speaker,
|
|
6034
|
-
"star-award":
|
|
6035
|
-
"star-badge":
|
|
6036
|
-
"star-circle":
|
|
6037
|
-
"star-medal":
|
|
6047
|
+
"star-award": 59145,
|
|
6048
|
+
"star-badge": 59146,
|
|
6049
|
+
"star-circle": 59147,
|
|
6050
|
+
"star-medal": 59148,
|
|
6038
6051
|
star: star,
|
|
6039
|
-
"steps-circle":
|
|
6052
|
+
"steps-circle": 59150,
|
|
6040
6053
|
stopwatch: stopwatch,
|
|
6041
6054
|
suitcase: suitcase,
|
|
6042
6055
|
survey: survey,
|
|
6043
6056
|
swag: swag,
|
|
6044
|
-
"switch":
|
|
6057
|
+
"switch": 59155,
|
|
6045
6058
|
tag: tag,
|
|
6046
6059
|
target: target,
|
|
6047
6060
|
teams: teams,
|
|
6048
6061
|
timesheet: timesheet,
|
|
6049
|
-
"touch-id":
|
|
6050
|
-
"trash-bin":
|
|
6062
|
+
"touch-id": 59160,
|
|
6063
|
+
"trash-bin": 59161,
|
|
6051
6064
|
unlock: unlock,
|
|
6052
6065
|
user: user,
|
|
6053
|
-
"video-1":
|
|
6054
|
-
"video-2":
|
|
6066
|
+
"video-1": 59164,
|
|
6067
|
+
"video-2": 59165,
|
|
6055
6068
|
wallet: wallet,
|
|
6056
6069
|
warning: warning,
|
|
6057
|
-
"activate-outlined":
|
|
6058
|
-
"add-credit-card-outlined":
|
|
6059
|
-
"add-person-outlined":
|
|
6060
|
-
"add-section-outlined":
|
|
6061
|
-
"add-time-outlined":
|
|
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":
|
|
6064
|
-
"alignment-2-outlined":
|
|
6065
|
-
"alignment-outlined":
|
|
6066
|
-
"all-caps":
|
|
6067
|
-
"arrow-down":
|
|
6068
|
-
"arrow-downwards":
|
|
6069
|
-
"arrow-left":
|
|
6070
|
-
"arrow-leftwards":
|
|
6071
|
-
"arrow-right":
|
|
6072
|
-
"arrow-rightwards":
|
|
6073
|
-
"arrow-up":
|
|
6074
|
-
"arrow-upwards":
|
|
6075
|
-
"article-outlined":
|
|
6076
|
-
"at-sign":
|
|
6077
|
-
"auto-graph-outlined":
|
|
6078
|
-
"bell-active-outlined":
|
|
6079
|
-
"bell-outlined":
|
|
6080
|
-
"bell-slash-outlined":
|
|
6081
|
-
"billing-outlined":
|
|
6082
|
-
"body-outlined":
|
|
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":
|
|
6085
|
-
"bookmark-outlined":
|
|
6086
|
-
"box-check-outlined":
|
|
6087
|
-
"box-outlined":
|
|
6088
|
-
"bullet-points":
|
|
6089
|
-
"cake-outlined":
|
|
6090
|
-
"calendar-dates-outlined":
|
|
6091
|
-
"calendar-star-outlined":
|
|
6092
|
-
"camera-outlined":
|
|
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
|
-
"
|
|
6095
|
-
"chat-
|
|
6107
|
+
"charging-station-outlined": 59205,
|
|
6108
|
+
"chat-bubble-outlined": 59206,
|
|
6109
|
+
"chat-unread-outlined": 59207,
|
|
6096
6110
|
checkmark: checkmark,
|
|
6097
|
-
"circle-add-outlined":
|
|
6098
|
-
"circle-cancel-outlined":
|
|
6099
|
-
"circle-down-outlined":
|
|
6100
|
-
"circle-info-outlined":
|
|
6101
|
-
"circle-left-outlined":
|
|
6102
|
-
"circle-ok-outlined":
|
|
6103
|
-
"circle-question-outlined":
|
|
6104
|
-
"circle-remove-outlined":
|
|
6105
|
-
"circle-right-outlined":
|
|
6106
|
-
"circle-up-outlined":
|
|
6107
|
-
"circle-warning-outlined":
|
|
6108
|
-
"clock-2-outlined":
|
|
6109
|
-
"clock-outlined":
|
|
6110
|
-
"cog-outlined":
|
|
6111
|
-
"coin-outlined":
|
|
6112
|
-
"comment-outlined":
|
|
6113
|
-
"contacts-outlined":
|
|
6114
|
-
"
|
|
6115
|
-
"
|
|
6116
|
-
"
|
|
6117
|
-
"
|
|
6118
|
-
"
|
|
6119
|
-
"
|
|
6120
|
-
"dollar-
|
|
6121
|
-
"dollar-
|
|
6122
|
-
"dollar-
|
|
6123
|
-
"
|
|
6124
|
-
"
|
|
6125
|
-
"double-
|
|
6126
|
-
"
|
|
6127
|
-
"
|
|
6128
|
-
"
|
|
6129
|
-
"
|
|
6130
|
-
"
|
|
6131
|
-
"
|
|
6132
|
-
"
|
|
6133
|
-
"
|
|
6134
|
-
"
|
|
6135
|
-
"
|
|
6136
|
-
"
|
|
6137
|
-
"
|
|
6138
|
-
"face-
|
|
6139
|
-
"face-
|
|
6140
|
-
"face-smiley-outlined":
|
|
6141
|
-
"
|
|
6142
|
-
"
|
|
6143
|
-
"
|
|
6144
|
-
"file-
|
|
6145
|
-
"file-
|
|
6146
|
-
"file-
|
|
6147
|
-
"file-
|
|
6148
|
-
"file-
|
|
6149
|
-
"file-
|
|
6150
|
-
"file-outlined":
|
|
6151
|
-
"file-
|
|
6152
|
-
"file-
|
|
6153
|
-
"file-
|
|
6154
|
-
"file-
|
|
6155
|
-
"
|
|
6156
|
-
"
|
|
6157
|
-
"
|
|
6158
|
-
"
|
|
6159
|
-
"
|
|
6160
|
-
"
|
|
6161
|
-
"
|
|
6162
|
-
"
|
|
6163
|
-
"
|
|
6164
|
-
"
|
|
6165
|
-
"
|
|
6166
|
-
"
|
|
6167
|
-
"
|
|
6168
|
-
"
|
|
6169
|
-
"
|
|
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":
|
|
6172
|
-
"link-2":
|
|
6173
|
-
"list-outlined":
|
|
6174
|
-
"live-help-outlined":
|
|
6175
|
-
"location-outlined":
|
|
6176
|
-
"
|
|
6177
|
-
"
|
|
6178
|
-
"
|
|
6179
|
-
"
|
|
6180
|
-
"
|
|
6181
|
-
"menu-
|
|
6182
|
-
"menu-
|
|
6183
|
-
"menu-
|
|
6184
|
-
"
|
|
6185
|
-
"
|
|
6186
|
-
"
|
|
6187
|
-
"more-
|
|
6188
|
-
"
|
|
6189
|
-
"multiple-
|
|
6190
|
-
"
|
|
6191
|
-
"
|
|
6192
|
-
"
|
|
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":
|
|
6195
|
-
"payment-summary-outlined":
|
|
6196
|
-
"payslip-outlined":
|
|
6197
|
-
"pencil-outlined":
|
|
6212
|
+
"overview-outlined": 59310,
|
|
6213
|
+
"payment-summary-outlined": 59311,
|
|
6214
|
+
"payslip-outlined": 59312,
|
|
6215
|
+
"pencil-outlined": 59313,
|
|
6198
6216
|
percentage: percentage,
|
|
6199
|
-
"phone-outlined":
|
|
6200
|
-
"piggy-bank-outlined":
|
|
6201
|
-
"plane-outlined":
|
|
6202
|
-
"play-circle-outlined":
|
|
6203
|
-
"print-outlined":
|
|
6204
|
-
"qr-code-outlined":
|
|
6205
|
-
"qualification-outlined":
|
|
6206
|
-
"re-assign":
|
|
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":
|
|
6228
|
+
"reply-outlined": 59326,
|
|
6211
6229
|
restart: restart,
|
|
6212
|
-
"return-arrow":
|
|
6213
|
-
"rostering-outlined":
|
|
6214
|
-
"save-outlined":
|
|
6215
|
-
"schedule-outlined":
|
|
6216
|
-
"search-outlined":
|
|
6217
|
-
"search-secured-outlined":
|
|
6218
|
-
"send-outlined":
|
|
6219
|
-
"share-1":
|
|
6220
|
-
"share-2":
|
|
6221
|
-
"share-outlined":
|
|
6222
|
-
"show-chart-outlined":
|
|
6223
|
-
"single-down-arrow":
|
|
6224
|
-
"single-left-arrow":
|
|
6225
|
-
"single-right-arrow":
|
|
6226
|
-
"single-up-arrow":
|
|
6227
|
-
"speaker-active-outlined":
|
|
6228
|
-
"speaker-outlined":
|
|
6229
|
-
"star-circle-outlined":
|
|
6230
|
-
"star-outlined":
|
|
6231
|
-
"stopwatch-outlined":
|
|
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":
|
|
6234
|
-
"suitcase-outlined":
|
|
6235
|
-
"survey-outlined":
|
|
6236
|
-
"switch-outlined":
|
|
6251
|
+
"suitcase-clock-outlined": 59349,
|
|
6252
|
+
"suitcase-outlined": 59350,
|
|
6253
|
+
"survey-outlined": 59351,
|
|
6254
|
+
"switch-outlined": 59352,
|
|
6237
6255
|
sync: sync,
|
|
6238
|
-
"target-outlined":
|
|
6239
|
-
"timesheet-outlined":
|
|
6240
|
-
"today-outlined":
|
|
6256
|
+
"target-outlined": 59354,
|
|
6257
|
+
"timesheet-outlined": 59355,
|
|
6258
|
+
"today-outlined": 59356,
|
|
6241
6259
|
transfer: transfer,
|
|
6242
|
-
"trash-bin-outlined":
|
|
6243
|
-
"umbrela-outlined":
|
|
6260
|
+
"trash-bin-outlined": 59358,
|
|
6261
|
+
"umbrela-outlined": 59359,
|
|
6244
6262
|
unavailable: unavailable,
|
|
6245
6263
|
underline: underline,
|
|
6246
|
-
"unlock-outlined":
|
|
6247
|
-
"upload-outlined":
|
|
6248
|
-
"user-circle-outlined":
|
|
6249
|
-
"user-gear-outlined":
|
|
6250
|
-
"user-outlined":
|
|
6251
|
-
"user-rectangle-outlined":
|
|
6252
|
-
"video-1-outlined":
|
|
6253
|
-
"video-2-outlined":
|
|
6254
|
-
"wallet-outlined":
|
|
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
|
|
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
|
|
10581
|
+
var StyledPageControlAnimatedView = index$a(reactNative.Animated.View)(function (_ref) {
|
|
10544
10582
|
var theme = _ref.theme;
|
|
10545
10583
|
return {
|
|
10546
|
-
height: theme.__hd__.
|
|
10547
|
-
width: theme.__hd__.
|
|
10548
|
-
borderRadius: theme.__hd__.
|
|
10549
|
-
backgroundColor: theme.__hd__.
|
|
10550
|
-
marginHorizontal: theme.__hd__.
|
|
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
|
|
10555
|
-
var
|
|
10556
|
-
|
|
10557
|
-
|
|
10558
|
-
|
|
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
|
-
|
|
10561
|
-
|
|
10562
|
-
|
|
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 =
|
|
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(
|
|
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(
|
|
10797
|
-
|
|
10798
|
-
|
|
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;
|