@hero-design/rn 8.14.0 → 8.16.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 +2 -2
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +425 -394
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +425 -394
- package/package.json +5 -5
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/StyledAvatarStack.spec.tsx.snap +0 -1
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/index.spec.tsx.snap +0 -9
- package/src/components/Avatar/StyledAvatar.tsx +13 -3
- package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +0 -2
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +12 -0
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +0 -2
- package/src/components/Select/MultiSelect/__tests__/index.spec.tsx +19 -0
- package/src/components/Select/MultiSelect/index.tsx +7 -4
- package/src/components/Select/SingleSelect/__tests__/index.spec.tsx +16 -0
- package/src/components/Select/SingleSelect/index.tsx +7 -4
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +12 -10
- package/src/theme/components/avatar.ts +14 -12
- 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/theme/components/avatar.d.ts +12 -10
package/lib/index.js
CHANGED
|
@@ -1010,6 +1010,7 @@ var blue$1 = colorScales.blue,
|
|
|
1010
1010
|
blueLight75: blue$1.lighten75,
|
|
1011
1011
|
blueLight90: blue$1.lighten90,
|
|
1012
1012
|
dodgerBlue: ultramarineBlue$3.base,
|
|
1013
|
+
dodgerBlueDark15: ultramarineBlue$3.darken15,
|
|
1013
1014
|
dodgerBlueDark30: ultramarineBlue$3.darken30,
|
|
1014
1015
|
dodgerBlueLight30: ultramarineBlue$3.lighten30,
|
|
1015
1016
|
dodgerBlueLight75: ultramarineBlue$3.lighten75,
|
|
@@ -1034,6 +1035,7 @@ var blue$1 = colorScales.blue,
|
|
|
1034
1035
|
greyLight90: grey$2.lighten90,
|
|
1035
1036
|
greyLight95: grey$2.lighten95,
|
|
1036
1037
|
grotesqueGreen: grotesqueGreen.base,
|
|
1038
|
+
grotesqueGreenDark30: grotesqueGreen.darken30,
|
|
1037
1039
|
grotesqueGreenDark45: grotesqueGreen.darken45,
|
|
1038
1040
|
grotesqueGreenLight60: grotesqueGreen.lighten60,
|
|
1039
1041
|
grotesqueGreenLight75: grotesqueGreen.lighten75,
|
|
@@ -1752,26 +1754,28 @@ var getAvatarTheme = function getAvatarTheme(theme) {
|
|
|
1752
1754
|
xxxxlarge: theme.space.xlarge * 1.5,
|
|
1753
1755
|
xxxxxlarge: theme.space.xxlarge * 1.5
|
|
1754
1756
|
};
|
|
1755
|
-
var lineHeights = {
|
|
1756
|
-
small: theme.lineHeights.large,
|
|
1757
|
-
medium: theme.lineHeights.xlarge,
|
|
1758
|
-
large: theme.lineHeights.xxlarge,
|
|
1759
|
-
xlarge: theme.lineHeights.xxxlarge,
|
|
1760
|
-
xxlarge: theme.lineHeights.medium * 2,
|
|
1761
|
-
xxxlarge: theme.lineHeights.large * 1.5,
|
|
1762
|
-
xxxxlarge: theme.lineHeights.xlarge * 1.5,
|
|
1763
|
-
xxxxxlarge: theme.lineHeights.xxlarge * 1.5
|
|
1764
|
-
};
|
|
1765
1757
|
var radii = {
|
|
1766
1758
|
rounded: theme.radii.rounded
|
|
1767
1759
|
};
|
|
1760
|
+
var spaces = {
|
|
1761
|
+
titleMarginTopForAndroid: {
|
|
1762
|
+
small: -theme.space.xxsmall,
|
|
1763
|
+
medium: -theme.space.xsmall,
|
|
1764
|
+
large: -theme.space.xsmall,
|
|
1765
|
+
xlarge: -theme.space.xsmall,
|
|
1766
|
+
xxlarge: -theme.space.xsmall - theme.space.xxsmall,
|
|
1767
|
+
xxxlarge: -theme.space.xsmall - theme.space.xxsmall,
|
|
1768
|
+
xxxxlarge: -theme.space.small,
|
|
1769
|
+
xxxxxlarge: -theme.space.small
|
|
1770
|
+
}
|
|
1771
|
+
};
|
|
1768
1772
|
return {
|
|
1769
1773
|
colors: colors,
|
|
1774
|
+
spaces: spaces,
|
|
1770
1775
|
sizes: sizes,
|
|
1771
1776
|
radii: radii,
|
|
1772
1777
|
fonts: fonts,
|
|
1773
|
-
fontSizes: fontSizes
|
|
1774
|
-
lineHeights: lineHeights
|
|
1778
|
+
fontSizes: fontSizes
|
|
1775
1779
|
};
|
|
1776
1780
|
};
|
|
1777
1781
|
|
|
@@ -6074,7 +6078,7 @@ var Typography = {
|
|
|
6074
6078
|
};
|
|
6075
6079
|
|
|
6076
6080
|
// 🔴 DO NOT EDIT — This file is generated automatically.
|
|
6077
|
-
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', 'exclude', '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-up', '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-pillar-benefit', 'swag-pillar-career', 'swag-pillar-money', 'swag-pillar-work', 'swag', 'switch', 'tag', 'target', 'teams', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'activate-outlined', 'add-credit-card-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'arrow-down', 'arrow-downwards', 'arrow-left', 'arrow-leftwards', 'arrow-right', 'arrow-rightwards', 'arrow-up', 'arrow-upwards', 'article-outlined', 'at-sign', 'auto-graph-outlined', 'bell-active-outlined', 'bell-outlined', 'bell-slash-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bookmark-added-outlined', 'bookmark-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calendar-dates-outlined', 'calendar-star-outlined', 'call-split-outlined', 'camera-outlined', 'cancel', 'car-forward-outlined', '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', 'union-outlined', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'wallet-outlined'];
|
|
6081
|
+
var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bolt', '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', 'exclude', '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-up', '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', 'surfing', 'survey', 'swag-pillar-benefit', 'swag-pillar-career', 'swag-pillar-money', 'swag-pillar-work', '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', 'beer-outlined', 'bell-active-outlined', 'bell-outlined', 'bell-slash-outlined', 'billing-outlined', 'body-outlined', 'bold', 'book-outlined', 'bookmark-added-outlined', 'bookmark-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calendar-dates-outlined', 'calendar-star-outlined', 'call-split-outlined', 'camera-outlined', 'cancel', 'car-forward-outlined', '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', 'dentistry-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', 'fastfood-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', 'form-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', 'styler-outlined', 'suitcase-clock-outlined', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'tag-outlined', 'target-outlined', 'tennis-outlined', 'ticket-outlined', 'timesheet-outlined', 'today-outlined', 'transfer', 'trash-bin-outlined', 'umbrela-outlined', 'unavailable', 'underline', 'union-outlined', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'volunteer-outlined', 'wallet-outlined'];
|
|
6078
6082
|
|
|
6079
6083
|
var activate = 59000;
|
|
6080
6084
|
var adjustment = 59003;
|
|
@@ -6084,83 +6088,85 @@ var archive = 59006;
|
|
|
6084
6088
|
var bank = 59008;
|
|
6085
6089
|
var bell = 59009;
|
|
6086
6090
|
var billing = 59010;
|
|
6087
|
-
var
|
|
6088
|
-
var
|
|
6089
|
-
var
|
|
6090
|
-
var
|
|
6091
|
-
var
|
|
6092
|
-
var
|
|
6093
|
-
var
|
|
6094
|
-
var
|
|
6095
|
-
var
|
|
6096
|
-
var
|
|
6097
|
-
var
|
|
6098
|
-
var
|
|
6099
|
-
var
|
|
6100
|
-
var
|
|
6101
|
-
var
|
|
6102
|
-
var
|
|
6103
|
-
var
|
|
6104
|
-
var
|
|
6105
|
-
var
|
|
6106
|
-
var
|
|
6107
|
-
var
|
|
6108
|
-
var
|
|
6109
|
-
var
|
|
6110
|
-
var
|
|
6111
|
-
var
|
|
6112
|
-
var
|
|
6113
|
-
var
|
|
6114
|
-
var
|
|
6115
|
-
var
|
|
6116
|
-
var
|
|
6117
|
-
var
|
|
6118
|
-
var
|
|
6119
|
-
var
|
|
6120
|
-
var
|
|
6121
|
-
var
|
|
6122
|
-
var
|
|
6123
|
-
var
|
|
6124
|
-
var
|
|
6125
|
-
var
|
|
6126
|
-
var
|
|
6127
|
-
var
|
|
6128
|
-
var
|
|
6129
|
-
var
|
|
6130
|
-
var
|
|
6131
|
-
var
|
|
6132
|
-
var
|
|
6133
|
-
var
|
|
6134
|
-
var
|
|
6135
|
-
var
|
|
6136
|
-
var
|
|
6137
|
-
var
|
|
6138
|
-
var
|
|
6139
|
-
var
|
|
6140
|
-
var
|
|
6141
|
-
var
|
|
6142
|
-
var
|
|
6143
|
-
var
|
|
6144
|
-
var
|
|
6145
|
-
var
|
|
6146
|
-
var
|
|
6147
|
-
var
|
|
6148
|
-
var
|
|
6149
|
-
var
|
|
6150
|
-
var
|
|
6151
|
-
var
|
|
6152
|
-
var
|
|
6153
|
-
var
|
|
6154
|
-
var
|
|
6155
|
-
var
|
|
6156
|
-
var
|
|
6157
|
-
var
|
|
6158
|
-
var
|
|
6159
|
-
var
|
|
6160
|
-
var
|
|
6161
|
-
var
|
|
6162
|
-
var
|
|
6163
|
-
var
|
|
6091
|
+
var bolt = 59011;
|
|
6092
|
+
var bookmark = 59013;
|
|
6093
|
+
var box = 59015;
|
|
6094
|
+
var bpay = 59016;
|
|
6095
|
+
var buildings = 59017;
|
|
6096
|
+
var cake = 59018;
|
|
6097
|
+
var calendar = 59020;
|
|
6098
|
+
var clock = 59045;
|
|
6099
|
+
var cog = 59048;
|
|
6100
|
+
var coin = 59049;
|
|
6101
|
+
var contacts = 59050;
|
|
6102
|
+
var diamond = 59052;
|
|
6103
|
+
var directory = 59054;
|
|
6104
|
+
var document$1 = 59055;
|
|
6105
|
+
var envelope = 59059;
|
|
6106
|
+
var exclude = 59060;
|
|
6107
|
+
var expense = 59061;
|
|
6108
|
+
var eye = 59064;
|
|
6109
|
+
var feed = 59068;
|
|
6110
|
+
var feedbacks = 59069;
|
|
6111
|
+
var file = 59087;
|
|
6112
|
+
var filter = 59088;
|
|
6113
|
+
var folder = 59090;
|
|
6114
|
+
var globe = 59100;
|
|
6115
|
+
var graph = 59102;
|
|
6116
|
+
var heart = 59105;
|
|
6117
|
+
var home = 59106;
|
|
6118
|
+
var image = 59107;
|
|
6119
|
+
var instapay = 59110;
|
|
6120
|
+
var list = 59111;
|
|
6121
|
+
var loading = 59113;
|
|
6122
|
+
var location = 59114;
|
|
6123
|
+
var lock = 59115;
|
|
6124
|
+
var menu = 59119;
|
|
6125
|
+
var moneybag = 59121;
|
|
6126
|
+
var moon = 59122;
|
|
6127
|
+
var node = 59125;
|
|
6128
|
+
var paperclip = 59127;
|
|
6129
|
+
var pencil = 59129;
|
|
6130
|
+
var phone = 59130;
|
|
6131
|
+
var plane = 59133;
|
|
6132
|
+
var print = 59135;
|
|
6133
|
+
var reply = 59138;
|
|
6134
|
+
var reschedule = 59139;
|
|
6135
|
+
var rostering = 59140;
|
|
6136
|
+
var save = 59141;
|
|
6137
|
+
var schedule = 59143;
|
|
6138
|
+
var send = 59145;
|
|
6139
|
+
var speaker = 59147;
|
|
6140
|
+
var star = 59152;
|
|
6141
|
+
var stopwatch = 59154;
|
|
6142
|
+
var suitcase = 59155;
|
|
6143
|
+
var surfing = 59156;
|
|
6144
|
+
var survey = 59157;
|
|
6145
|
+
var swag = 59162;
|
|
6146
|
+
var tag = 59164;
|
|
6147
|
+
var target = 59165;
|
|
6148
|
+
var teams = 59166;
|
|
6149
|
+
var timesheet = 59167;
|
|
6150
|
+
var unlock = 59170;
|
|
6151
|
+
var user = 59171;
|
|
6152
|
+
var wallet = 59174;
|
|
6153
|
+
var warning = 59175;
|
|
6154
|
+
var add = 59181;
|
|
6155
|
+
var bold = 59203;
|
|
6156
|
+
var cancel = 59215;
|
|
6157
|
+
var checkmark = 59220;
|
|
6158
|
+
var italic = 59300;
|
|
6159
|
+
var number = 59324;
|
|
6160
|
+
var percentage = 59329;
|
|
6161
|
+
var redeem = 59338;
|
|
6162
|
+
var refresh = 59339;
|
|
6163
|
+
var remove = 59340;
|
|
6164
|
+
var restart = 59342;
|
|
6165
|
+
var strikethrough = 59363;
|
|
6166
|
+
var sync = 59369;
|
|
6167
|
+
var transfer = 59376;
|
|
6168
|
+
var unavailable = 59379;
|
|
6169
|
+
var underline = 59380;
|
|
6164
6170
|
var glyphMap = {
|
|
6165
6171
|
activate: activate,
|
|
6166
6172
|
"add-emoji": 59001,
|
|
@@ -6173,375 +6179,387 @@ var glyphMap = {
|
|
|
6173
6179
|
bank: bank,
|
|
6174
6180
|
bell: bell,
|
|
6175
6181
|
billing: billing,
|
|
6176
|
-
|
|
6182
|
+
bolt: bolt,
|
|
6183
|
+
"bookmark-added": 59012,
|
|
6177
6184
|
bookmark: bookmark,
|
|
6178
|
-
"box-check":
|
|
6185
|
+
"box-check": 59014,
|
|
6179
6186
|
box: box,
|
|
6180
6187
|
bpay: bpay,
|
|
6181
6188
|
buildings: buildings,
|
|
6182
6189
|
cake: cake,
|
|
6183
|
-
"calendar-clock":
|
|
6190
|
+
"calendar-clock": 59019,
|
|
6184
6191
|
calendar: calendar,
|
|
6185
|
-
"candy-box-menu":
|
|
6186
|
-
"caret-down-small":
|
|
6187
|
-
"caret-down":
|
|
6188
|
-
"caret-left-small":
|
|
6189
|
-
"caret-left":
|
|
6190
|
-
"caret-right-small":
|
|
6191
|
-
"caret-right":
|
|
6192
|
-
"caret-up-small":
|
|
6193
|
-
"caret-up":
|
|
6194
|
-
"check-radio":
|
|
6195
|
-
"circle-add":
|
|
6196
|
-
"circle-cancel":
|
|
6197
|
-
"circle-check":
|
|
6198
|
-
"circle-down":
|
|
6199
|
-
"circle-info":
|
|
6200
|
-
"circle-left":
|
|
6201
|
-
"circle-ok":
|
|
6202
|
-
"circle-pencil":
|
|
6203
|
-
"circle-question":
|
|
6204
|
-
"circle-remove":
|
|
6205
|
-
"circle-right":
|
|
6206
|
-
"circle-up":
|
|
6207
|
-
"circle-warning":
|
|
6208
|
-
"clock-3":
|
|
6192
|
+
"candy-box-menu": 59021,
|
|
6193
|
+
"caret-down-small": 59022,
|
|
6194
|
+
"caret-down": 59023,
|
|
6195
|
+
"caret-left-small": 59024,
|
|
6196
|
+
"caret-left": 59025,
|
|
6197
|
+
"caret-right-small": 59026,
|
|
6198
|
+
"caret-right": 59027,
|
|
6199
|
+
"caret-up-small": 59028,
|
|
6200
|
+
"caret-up": 59029,
|
|
6201
|
+
"check-radio": 59030,
|
|
6202
|
+
"circle-add": 59031,
|
|
6203
|
+
"circle-cancel": 59032,
|
|
6204
|
+
"circle-check": 59033,
|
|
6205
|
+
"circle-down": 59034,
|
|
6206
|
+
"circle-info": 59035,
|
|
6207
|
+
"circle-left": 59036,
|
|
6208
|
+
"circle-ok": 59037,
|
|
6209
|
+
"circle-pencil": 59038,
|
|
6210
|
+
"circle-question": 59039,
|
|
6211
|
+
"circle-remove": 59040,
|
|
6212
|
+
"circle-right": 59041,
|
|
6213
|
+
"circle-up": 59042,
|
|
6214
|
+
"circle-warning": 59043,
|
|
6215
|
+
"clock-3": 59044,
|
|
6209
6216
|
clock: clock,
|
|
6210
|
-
"cloud-download":
|
|
6211
|
-
"cloud-upload":
|
|
6217
|
+
"cloud-download": 59046,
|
|
6218
|
+
"cloud-upload": 59047,
|
|
6212
6219
|
cog: cog,
|
|
6213
6220
|
coin: coin,
|
|
6214
6221
|
contacts: contacts,
|
|
6215
|
-
"credit-card":
|
|
6222
|
+
"credit-card": 59051,
|
|
6216
6223
|
diamond: diamond,
|
|
6217
|
-
"direction-arrows":
|
|
6224
|
+
"direction-arrows": 59053,
|
|
6218
6225
|
directory: directory,
|
|
6219
6226
|
document: document$1,
|
|
6220
|
-
"dollar-coin-shine":
|
|
6221
|
-
"double-buildings":
|
|
6222
|
-
"edit-template":
|
|
6227
|
+
"dollar-coin-shine": 59056,
|
|
6228
|
+
"double-buildings": 59057,
|
|
6229
|
+
"edit-template": 59058,
|
|
6223
6230
|
envelope: envelope,
|
|
6224
6231
|
exclude: exclude,
|
|
6225
6232
|
expense: expense,
|
|
6226
|
-
"eye-circle":
|
|
6227
|
-
"eye-invisible":
|
|
6233
|
+
"eye-circle": 59062,
|
|
6234
|
+
"eye-invisible": 59063,
|
|
6228
6235
|
eye: eye,
|
|
6229
|
-
"face-meh":
|
|
6230
|
-
"face-sad":
|
|
6231
|
-
"face-smiley":
|
|
6236
|
+
"face-meh": 59065,
|
|
6237
|
+
"face-sad": 59066,
|
|
6238
|
+
"face-smiley": 59067,
|
|
6232
6239
|
feed: feed,
|
|
6233
6240
|
feedbacks: feedbacks,
|
|
6234
|
-
"file-certified":
|
|
6235
|
-
"file-clone":
|
|
6236
|
-
"file-copy":
|
|
6237
|
-
"file-csv":
|
|
6238
|
-
"file-dispose":
|
|
6239
|
-
"file-doc":
|
|
6240
|
-
"file-excel":
|
|
6241
|
-
"file-export":
|
|
6242
|
-
"file-lock":
|
|
6243
|
-
"file-pdf":
|
|
6244
|
-
"file-powerpoint":
|
|
6245
|
-
"file-search":
|
|
6246
|
-
"file-secured":
|
|
6247
|
-
"file-sheets":
|
|
6248
|
-
"file-slide":
|
|
6249
|
-
"file-verified":
|
|
6250
|
-
"file-word":
|
|
6241
|
+
"file-certified": 59070,
|
|
6242
|
+
"file-clone": 59071,
|
|
6243
|
+
"file-copy": 59072,
|
|
6244
|
+
"file-csv": 59073,
|
|
6245
|
+
"file-dispose": 59074,
|
|
6246
|
+
"file-doc": 59075,
|
|
6247
|
+
"file-excel": 59076,
|
|
6248
|
+
"file-export": 59077,
|
|
6249
|
+
"file-lock": 59078,
|
|
6250
|
+
"file-pdf": 59079,
|
|
6251
|
+
"file-powerpoint": 59080,
|
|
6252
|
+
"file-search": 59081,
|
|
6253
|
+
"file-secured": 59082,
|
|
6254
|
+
"file-sheets": 59083,
|
|
6255
|
+
"file-slide": 59084,
|
|
6256
|
+
"file-verified": 59085,
|
|
6257
|
+
"file-word": 59086,
|
|
6251
6258
|
file: file,
|
|
6252
6259
|
filter: filter,
|
|
6253
|
-
"folder-user":
|
|
6260
|
+
"folder-user": 59089,
|
|
6254
6261
|
folder: folder,
|
|
6255
|
-
"format-bold":
|
|
6256
|
-
"format-heading1":
|
|
6257
|
-
"format-heading2":
|
|
6258
|
-
"format-italic":
|
|
6259
|
-
"format-list-bulleted":
|
|
6260
|
-
"format-list-numbered":
|
|
6261
|
-
"format-underlined":
|
|
6262
|
-
"funnel-filter":
|
|
6263
|
-
"global-dollar":
|
|
6262
|
+
"format-bold": 59091,
|
|
6263
|
+
"format-heading1": 59092,
|
|
6264
|
+
"format-heading2": 59093,
|
|
6265
|
+
"format-italic": 59094,
|
|
6266
|
+
"format-list-bulleted": 59095,
|
|
6267
|
+
"format-list-numbered": 59096,
|
|
6268
|
+
"format-underlined": 59097,
|
|
6269
|
+
"funnel-filter": 59098,
|
|
6270
|
+
"global-dollar": 59099,
|
|
6264
6271
|
globe: globe,
|
|
6265
|
-
"graduation-cap":
|
|
6272
|
+
"graduation-cap": 59101,
|
|
6266
6273
|
graph: graph,
|
|
6267
|
-
"happy-sun":
|
|
6268
|
-
"health-bag":
|
|
6274
|
+
"happy-sun": 59103,
|
|
6275
|
+
"health-bag": 59104,
|
|
6269
6276
|
heart: heart,
|
|
6270
6277
|
home: home,
|
|
6271
6278
|
image: image,
|
|
6272
|
-
"import":
|
|
6273
|
-
"incident-siren":
|
|
6279
|
+
"import": 59108,
|
|
6280
|
+
"incident-siren": 59109,
|
|
6274
6281
|
instapay: instapay,
|
|
6275
6282
|
list: list,
|
|
6276
|
-
"loading-2":
|
|
6283
|
+
"loading-2": 59112,
|
|
6277
6284
|
loading: loading,
|
|
6278
6285
|
location: location,
|
|
6279
6286
|
lock: lock,
|
|
6280
|
-
"looks-one":
|
|
6281
|
-
"looks-two":
|
|
6282
|
-
"media-content":
|
|
6287
|
+
"looks-one": 59116,
|
|
6288
|
+
"looks-two": 59117,
|
|
6289
|
+
"media-content": 59118,
|
|
6283
6290
|
menu: menu,
|
|
6284
|
-
"money-notes":
|
|
6291
|
+
"money-notes": 59120,
|
|
6285
6292
|
moneybag: moneybag,
|
|
6286
6293
|
moon: moon,
|
|
6287
|
-
"multiple-stars":
|
|
6288
|
-
"multiple-users":
|
|
6294
|
+
"multiple-stars": 59123,
|
|
6295
|
+
"multiple-users": 59124,
|
|
6289
6296
|
node: node,
|
|
6290
|
-
"open-folder":
|
|
6297
|
+
"open-folder": 59126,
|
|
6291
6298
|
paperclip: paperclip,
|
|
6292
|
-
"payment-summary":
|
|
6299
|
+
"payment-summary": 59128,
|
|
6293
6300
|
pencil: pencil,
|
|
6294
6301
|
phone: phone,
|
|
6295
|
-
"piggy-bank":
|
|
6296
|
-
"plane-up":
|
|
6302
|
+
"piggy-bank": 59131,
|
|
6303
|
+
"plane-up": 59132,
|
|
6297
6304
|
plane: plane,
|
|
6298
|
-
"play-circle":
|
|
6305
|
+
"play-circle": 59134,
|
|
6299
6306
|
print: print,
|
|
6300
|
-
"raising-hands":
|
|
6301
|
-
"reply-arrow":
|
|
6307
|
+
"raising-hands": 59136,
|
|
6308
|
+
"reply-arrow": 59137,
|
|
6302
6309
|
reply: reply,
|
|
6303
6310
|
reschedule: reschedule,
|
|
6304
6311
|
rostering: rostering,
|
|
6305
6312
|
save: save,
|
|
6306
|
-
"schedule-send":
|
|
6313
|
+
"schedule-send": 59142,
|
|
6307
6314
|
schedule: schedule,
|
|
6308
|
-
"search-person":
|
|
6315
|
+
"search-person": 59144,
|
|
6309
6316
|
send: send,
|
|
6310
|
-
"speaker-active":
|
|
6317
|
+
"speaker-active": 59146,
|
|
6311
6318
|
speaker: speaker,
|
|
6312
|
-
"star-award":
|
|
6313
|
-
"star-badge":
|
|
6314
|
-
"star-circle":
|
|
6315
|
-
"star-medal":
|
|
6319
|
+
"star-award": 59148,
|
|
6320
|
+
"star-badge": 59149,
|
|
6321
|
+
"star-circle": 59150,
|
|
6322
|
+
"star-medal": 59151,
|
|
6316
6323
|
star: star,
|
|
6317
|
-
"steps-circle":
|
|
6324
|
+
"steps-circle": 59153,
|
|
6318
6325
|
stopwatch: stopwatch,
|
|
6319
6326
|
suitcase: suitcase,
|
|
6327
|
+
surfing: surfing,
|
|
6320
6328
|
survey: survey,
|
|
6321
|
-
"swag-pillar-benefit":
|
|
6322
|
-
"swag-pillar-career":
|
|
6323
|
-
"swag-pillar-money":
|
|
6324
|
-
"swag-pillar-work":
|
|
6329
|
+
"swag-pillar-benefit": 59158,
|
|
6330
|
+
"swag-pillar-career": 59159,
|
|
6331
|
+
"swag-pillar-money": 59160,
|
|
6332
|
+
"swag-pillar-work": 59161,
|
|
6325
6333
|
swag: swag,
|
|
6326
|
-
"switch":
|
|
6334
|
+
"switch": 59163,
|
|
6327
6335
|
tag: tag,
|
|
6328
6336
|
target: target,
|
|
6329
6337
|
teams: teams,
|
|
6330
6338
|
timesheet: timesheet,
|
|
6331
|
-
"touch-id":
|
|
6332
|
-
"trash-bin":
|
|
6339
|
+
"touch-id": 59168,
|
|
6340
|
+
"trash-bin": 59169,
|
|
6333
6341
|
unlock: unlock,
|
|
6334
6342
|
user: user,
|
|
6335
|
-
"video-1":
|
|
6336
|
-
"video-2":
|
|
6343
|
+
"video-1": 59172,
|
|
6344
|
+
"video-2": 59173,
|
|
6337
6345
|
wallet: wallet,
|
|
6338
6346
|
warning: warning,
|
|
6339
|
-
"activate-outlined":
|
|
6340
|
-
"add-credit-card-outlined":
|
|
6341
|
-
"add-person-outlined":
|
|
6342
|
-
"add-section-outlined":
|
|
6343
|
-
"add-time-outlined":
|
|
6347
|
+
"activate-outlined": 59176,
|
|
6348
|
+
"add-credit-card-outlined": 59177,
|
|
6349
|
+
"add-person-outlined": 59178,
|
|
6350
|
+
"add-section-outlined": 59179,
|
|
6351
|
+
"add-time-outlined": 59180,
|
|
6344
6352
|
add: add,
|
|
6345
|
-
"adjustment-outlined":
|
|
6346
|
-
"alignment-2-outlined":
|
|
6347
|
-
"alignment-outlined":
|
|
6348
|
-
"all-caps":
|
|
6349
|
-
"arrow-down":
|
|
6350
|
-
"arrow-downwards":
|
|
6351
|
-
"arrow-left":
|
|
6352
|
-
"arrow-leftwards":
|
|
6353
|
-
"arrow-right":
|
|
6354
|
-
"arrow-rightwards":
|
|
6355
|
-
"arrow-up":
|
|
6356
|
-
"arrow-upwards":
|
|
6357
|
-
"article-outlined":
|
|
6358
|
-
"at-sign":
|
|
6359
|
-
"auto-graph-outlined":
|
|
6360
|
-
"
|
|
6361
|
-
"bell-outlined":
|
|
6362
|
-
"bell-
|
|
6363
|
-
"
|
|
6364
|
-
"
|
|
6353
|
+
"adjustment-outlined": 59182,
|
|
6354
|
+
"alignment-2-outlined": 59183,
|
|
6355
|
+
"alignment-outlined": 59184,
|
|
6356
|
+
"all-caps": 59185,
|
|
6357
|
+
"arrow-down": 59186,
|
|
6358
|
+
"arrow-downwards": 59187,
|
|
6359
|
+
"arrow-left": 59188,
|
|
6360
|
+
"arrow-leftwards": 59189,
|
|
6361
|
+
"arrow-right": 59190,
|
|
6362
|
+
"arrow-rightwards": 59191,
|
|
6363
|
+
"arrow-up": 59192,
|
|
6364
|
+
"arrow-upwards": 59193,
|
|
6365
|
+
"article-outlined": 59194,
|
|
6366
|
+
"at-sign": 59195,
|
|
6367
|
+
"auto-graph-outlined": 59196,
|
|
6368
|
+
"beer-outlined": 59197,
|
|
6369
|
+
"bell-active-outlined": 59198,
|
|
6370
|
+
"bell-outlined": 59199,
|
|
6371
|
+
"bell-slash-outlined": 59200,
|
|
6372
|
+
"billing-outlined": 59201,
|
|
6373
|
+
"body-outlined": 59202,
|
|
6365
6374
|
bold: bold,
|
|
6366
|
-
"
|
|
6367
|
-
"bookmark-outlined":
|
|
6368
|
-
"
|
|
6369
|
-
"box-outlined":
|
|
6370
|
-
"
|
|
6371
|
-
"
|
|
6372
|
-
"
|
|
6373
|
-
"calendar-
|
|
6374
|
-
"
|
|
6375
|
-
"
|
|
6375
|
+
"book-outlined": 59204,
|
|
6376
|
+
"bookmark-added-outlined": 59205,
|
|
6377
|
+
"bookmark-outlined": 59206,
|
|
6378
|
+
"box-check-outlined": 59207,
|
|
6379
|
+
"box-outlined": 59208,
|
|
6380
|
+
"bullet-points": 59209,
|
|
6381
|
+
"cake-outlined": 59210,
|
|
6382
|
+
"calendar-dates-outlined": 59211,
|
|
6383
|
+
"calendar-star-outlined": 59212,
|
|
6384
|
+
"call-split-outlined": 59213,
|
|
6385
|
+
"camera-outlined": 59214,
|
|
6376
6386
|
cancel: cancel,
|
|
6377
|
-
"car-forward-outlined":
|
|
6378
|
-
"charging-station-outlined":
|
|
6379
|
-
"chat-bubble-outlined":
|
|
6380
|
-
"chat-unread-outlined":
|
|
6387
|
+
"car-forward-outlined": 59216,
|
|
6388
|
+
"charging-station-outlined": 59217,
|
|
6389
|
+
"chat-bubble-outlined": 59218,
|
|
6390
|
+
"chat-unread-outlined": 59219,
|
|
6381
6391
|
checkmark: checkmark,
|
|
6382
|
-
"circle-add-outlined":
|
|
6383
|
-
"circle-cancel-outlined":
|
|
6384
|
-
"circle-down-outlined":
|
|
6385
|
-
"circle-info-outlined":
|
|
6386
|
-
"circle-left-outlined":
|
|
6387
|
-
"circle-ok-outlined":
|
|
6388
|
-
"circle-question-outlined":
|
|
6389
|
-
"circle-remove-outlined":
|
|
6390
|
-
"circle-right-outlined":
|
|
6391
|
-
"circle-up-outlined":
|
|
6392
|
-
"circle-warning-outlined":
|
|
6393
|
-
"clock-2-outlined":
|
|
6394
|
-
"clock-outlined":
|
|
6395
|
-
"cog-outlined":
|
|
6396
|
-
"coin-outlined":
|
|
6397
|
-
"comment-outlined":
|
|
6398
|
-
"contacts-outlined":
|
|
6399
|
-
"contacts-user-outlined":
|
|
6400
|
-
"credit-card-outlined":
|
|
6401
|
-
"cup-outlined":
|
|
6402
|
-
"
|
|
6403
|
-
"
|
|
6404
|
-
"
|
|
6405
|
-
"
|
|
6406
|
-
"dollar-
|
|
6407
|
-
"dollar-
|
|
6408
|
-
"dollar-
|
|
6409
|
-
"dollar-
|
|
6410
|
-
"
|
|
6411
|
-
"double-
|
|
6412
|
-
"double-
|
|
6413
|
-
"
|
|
6414
|
-
"
|
|
6415
|
-
"
|
|
6416
|
-
"
|
|
6417
|
-
"
|
|
6418
|
-
"
|
|
6419
|
-
"
|
|
6420
|
-
"
|
|
6421
|
-
"
|
|
6422
|
-
"eye-outlined":
|
|
6423
|
-
"
|
|
6424
|
-
"face-
|
|
6425
|
-
"face-
|
|
6426
|
-
"face-
|
|
6427
|
-
"face-
|
|
6428
|
-
"
|
|
6429
|
-
"
|
|
6430
|
-
"
|
|
6431
|
-
"file-
|
|
6432
|
-
"file-
|
|
6433
|
-
"file-
|
|
6434
|
-
"file-
|
|
6435
|
-
"file-
|
|
6436
|
-
"file-
|
|
6437
|
-
"file-
|
|
6438
|
-
"file-outlined":
|
|
6439
|
-
"file-
|
|
6440
|
-
"file-
|
|
6441
|
-
"file-
|
|
6442
|
-
"file-
|
|
6443
|
-
"
|
|
6444
|
-
"
|
|
6445
|
-
"
|
|
6446
|
-
"
|
|
6447
|
-
"
|
|
6448
|
-
"
|
|
6449
|
-
"
|
|
6450
|
-
"
|
|
6451
|
-
"
|
|
6452
|
-
"
|
|
6453
|
-
"
|
|
6454
|
-
"
|
|
6455
|
-
"
|
|
6456
|
-
"
|
|
6457
|
-
"
|
|
6392
|
+
"circle-add-outlined": 59221,
|
|
6393
|
+
"circle-cancel-outlined": 59222,
|
|
6394
|
+
"circle-down-outlined": 59223,
|
|
6395
|
+
"circle-info-outlined": 59224,
|
|
6396
|
+
"circle-left-outlined": 59225,
|
|
6397
|
+
"circle-ok-outlined": 59226,
|
|
6398
|
+
"circle-question-outlined": 59227,
|
|
6399
|
+
"circle-remove-outlined": 59228,
|
|
6400
|
+
"circle-right-outlined": 59229,
|
|
6401
|
+
"circle-up-outlined": 59230,
|
|
6402
|
+
"circle-warning-outlined": 59231,
|
|
6403
|
+
"clock-2-outlined": 59232,
|
|
6404
|
+
"clock-outlined": 59233,
|
|
6405
|
+
"cog-outlined": 59234,
|
|
6406
|
+
"coin-outlined": 59235,
|
|
6407
|
+
"comment-outlined": 59236,
|
|
6408
|
+
"contacts-outlined": 59237,
|
|
6409
|
+
"contacts-user-outlined": 59238,
|
|
6410
|
+
"credit-card-outlined": 59239,
|
|
6411
|
+
"cup-outlined": 59240,
|
|
6412
|
+
"dentistry-outlined": 59241,
|
|
6413
|
+
"direction-arrows-outlined": 59242,
|
|
6414
|
+
"directory-outlined": 59243,
|
|
6415
|
+
"document-outlined": 59244,
|
|
6416
|
+
"dollar-box-outlined": 59245,
|
|
6417
|
+
"dollar-card-outlined": 59246,
|
|
6418
|
+
"dollar-coin-shine-outlined": 59247,
|
|
6419
|
+
"dollar-credit-card-outlined": 59248,
|
|
6420
|
+
"dollar-sign": 59249,
|
|
6421
|
+
"double-buildings-outlined": 59250,
|
|
6422
|
+
"double-left-arrows": 59251,
|
|
6423
|
+
"double-right-arrows": 59252,
|
|
6424
|
+
"download-outlined": 59253,
|
|
6425
|
+
"edit-template-outlined": 59254,
|
|
6426
|
+
"email-outlined": 59255,
|
|
6427
|
+
"enter-arrow": 59256,
|
|
6428
|
+
"envelope-outlined": 59257,
|
|
6429
|
+
"expense-outlined": 59258,
|
|
6430
|
+
"explore-outlined": 59259,
|
|
6431
|
+
"external-link": 59260,
|
|
6432
|
+
"eye-invisible-outlined": 59261,
|
|
6433
|
+
"eye-outlined": 59262,
|
|
6434
|
+
"face-id": 59263,
|
|
6435
|
+
"face-meh-outlined": 59264,
|
|
6436
|
+
"face-open-smiley-outlined": 59265,
|
|
6437
|
+
"face-sad-outlined": 59266,
|
|
6438
|
+
"face-smiley-outlined": 59267,
|
|
6439
|
+
"fastfood-outlined": 59268,
|
|
6440
|
+
"feed-outlined": 59269,
|
|
6441
|
+
"file-certified-outlined": 59270,
|
|
6442
|
+
"file-clone-outlined": 59271,
|
|
6443
|
+
"file-copy-outlined": 59272,
|
|
6444
|
+
"file-dispose-outlined": 59273,
|
|
6445
|
+
"file-dollar-certified-outlined": 59274,
|
|
6446
|
+
"file-dollar-outlined": 59275,
|
|
6447
|
+
"file-download-outlined": 59276,
|
|
6448
|
+
"file-export-outlined": 59277,
|
|
6449
|
+
"file-lock-outlined": 59278,
|
|
6450
|
+
"file-outlined": 59279,
|
|
6451
|
+
"file-search-outlined": 59280,
|
|
6452
|
+
"file-secured-outlined": 59281,
|
|
6453
|
+
"file-statutory-outlined": 59282,
|
|
6454
|
+
"file-verified-outlined": 59283,
|
|
6455
|
+
"filter-outlined": 59284,
|
|
6456
|
+
"folder-outlined": 59285,
|
|
6457
|
+
"folder-user-outlined": 59286,
|
|
6458
|
+
"form-outlined": 59287,
|
|
6459
|
+
"funnel-filter-outline": 59288,
|
|
6460
|
+
"graph-outlined": 59289,
|
|
6461
|
+
"hand-holding-user-outlined": 59290,
|
|
6462
|
+
"happy-sun-outlined": 59291,
|
|
6463
|
+
"health-bag-outlined": 59292,
|
|
6464
|
+
"heart-outlined": 59293,
|
|
6465
|
+
"home-active-outlined": 59294,
|
|
6466
|
+
"home-outlined": 59295,
|
|
6467
|
+
"id-card-outlined": 59296,
|
|
6468
|
+
"image-outlined": 59297,
|
|
6469
|
+
"import-outlined": 59298,
|
|
6470
|
+
"instapay-outlined": 59299,
|
|
6458
6471
|
italic: italic,
|
|
6459
|
-
"link-1":
|
|
6460
|
-
"link-2":
|
|
6461
|
-
"list-outlined":
|
|
6462
|
-
"live-help-outlined":
|
|
6463
|
-
"location-on-outlined":
|
|
6464
|
-
"location-outlined":
|
|
6465
|
-
"lock-outlined":
|
|
6466
|
-
"locked-file-outlined":
|
|
6467
|
-
"log-out":
|
|
6468
|
-
"media-content-outlined":
|
|
6469
|
-
"menu-close":
|
|
6470
|
-
"menu-expand":
|
|
6471
|
-
"menu-fold-outlined":
|
|
6472
|
-
"menu-unfold-outlined":
|
|
6473
|
-
"moneybag-outlined":
|
|
6474
|
-
"moon-outlined":
|
|
6475
|
-
"more-horizontal":
|
|
6476
|
-
"more-vertical":
|
|
6477
|
-
"multiple-folders-outlined":
|
|
6478
|
-
"multiple-users-outlined":
|
|
6479
|
-
"near-me-outlined":
|
|
6480
|
-
"node-outlined":
|
|
6481
|
-
"number-points":
|
|
6472
|
+
"link-1": 59301,
|
|
6473
|
+
"link-2": 59302,
|
|
6474
|
+
"list-outlined": 59303,
|
|
6475
|
+
"live-help-outlined": 59304,
|
|
6476
|
+
"location-on-outlined": 59305,
|
|
6477
|
+
"location-outlined": 59306,
|
|
6478
|
+
"lock-outlined": 59307,
|
|
6479
|
+
"locked-file-outlined": 59308,
|
|
6480
|
+
"log-out": 59309,
|
|
6481
|
+
"media-content-outlined": 59310,
|
|
6482
|
+
"menu-close": 59311,
|
|
6483
|
+
"menu-expand": 59312,
|
|
6484
|
+
"menu-fold-outlined": 59313,
|
|
6485
|
+
"menu-unfold-outlined": 59314,
|
|
6486
|
+
"moneybag-outlined": 59315,
|
|
6487
|
+
"moon-outlined": 59316,
|
|
6488
|
+
"more-horizontal": 59317,
|
|
6489
|
+
"more-vertical": 59318,
|
|
6490
|
+
"multiple-folders-outlined": 59319,
|
|
6491
|
+
"multiple-users-outlined": 59320,
|
|
6492
|
+
"near-me-outlined": 59321,
|
|
6493
|
+
"node-outlined": 59322,
|
|
6494
|
+
"number-points": 59323,
|
|
6482
6495
|
number: number,
|
|
6483
|
-
"overview-outlined":
|
|
6484
|
-
"payment-summary-outlined":
|
|
6485
|
-
"payslip-outlined":
|
|
6486
|
-
"pencil-outlined":
|
|
6496
|
+
"overview-outlined": 59325,
|
|
6497
|
+
"payment-summary-outlined": 59326,
|
|
6498
|
+
"payslip-outlined": 59327,
|
|
6499
|
+
"pencil-outlined": 59328,
|
|
6487
6500
|
percentage: percentage,
|
|
6488
|
-
"phone-outlined":
|
|
6489
|
-
"piggy-bank-outlined":
|
|
6490
|
-
"plane-outlined":
|
|
6491
|
-
"play-circle-outlined":
|
|
6492
|
-
"print-outlined":
|
|
6493
|
-
"qr-code-outlined":
|
|
6494
|
-
"qualification-outlined":
|
|
6495
|
-
"re-assign":
|
|
6501
|
+
"phone-outlined": 59330,
|
|
6502
|
+
"piggy-bank-outlined": 59331,
|
|
6503
|
+
"plane-outlined": 59332,
|
|
6504
|
+
"play-circle-outlined": 59333,
|
|
6505
|
+
"print-outlined": 59334,
|
|
6506
|
+
"qr-code-outlined": 59335,
|
|
6507
|
+
"qualification-outlined": 59336,
|
|
6508
|
+
"re-assign": 59337,
|
|
6496
6509
|
redeem: redeem,
|
|
6497
6510
|
refresh: refresh,
|
|
6498
6511
|
remove: remove,
|
|
6499
|
-
"reply-outlined":
|
|
6512
|
+
"reply-outlined": 59341,
|
|
6500
6513
|
restart: restart,
|
|
6501
|
-
"return-arrow":
|
|
6502
|
-
"rostering-outlined":
|
|
6503
|
-
"save-outlined":
|
|
6504
|
-
"schedule-outlined":
|
|
6505
|
-
"search-outlined":
|
|
6506
|
-
"search-secured-outlined":
|
|
6507
|
-
"send-outlined":
|
|
6508
|
-
"share-1":
|
|
6509
|
-
"share-2":
|
|
6510
|
-
"share-outlined":
|
|
6511
|
-
"show-chart-outlined":
|
|
6512
|
-
"single-down-arrow":
|
|
6513
|
-
"single-left-arrow":
|
|
6514
|
-
"single-right-arrow":
|
|
6515
|
-
"single-up-arrow":
|
|
6516
|
-
"speaker-active-outlined":
|
|
6517
|
-
"speaker-outlined":
|
|
6518
|
-
"star-circle-outlined":
|
|
6519
|
-
"star-outlined":
|
|
6520
|
-
"stopwatch-outlined":
|
|
6514
|
+
"return-arrow": 59343,
|
|
6515
|
+
"rostering-outlined": 59344,
|
|
6516
|
+
"save-outlined": 59345,
|
|
6517
|
+
"schedule-outlined": 59346,
|
|
6518
|
+
"search-outlined": 59347,
|
|
6519
|
+
"search-secured-outlined": 59348,
|
|
6520
|
+
"send-outlined": 59349,
|
|
6521
|
+
"share-1": 59350,
|
|
6522
|
+
"share-2": 59351,
|
|
6523
|
+
"share-outlined": 59352,
|
|
6524
|
+
"show-chart-outlined": 59353,
|
|
6525
|
+
"single-down-arrow": 59354,
|
|
6526
|
+
"single-left-arrow": 59355,
|
|
6527
|
+
"single-right-arrow": 59356,
|
|
6528
|
+
"single-up-arrow": 59357,
|
|
6529
|
+
"speaker-active-outlined": 59358,
|
|
6530
|
+
"speaker-outlined": 59359,
|
|
6531
|
+
"star-circle-outlined": 59360,
|
|
6532
|
+
"star-outlined": 59361,
|
|
6533
|
+
"stopwatch-outlined": 59362,
|
|
6521
6534
|
strikethrough: strikethrough,
|
|
6522
|
-
"
|
|
6523
|
-
"suitcase-outlined":
|
|
6524
|
-
"
|
|
6525
|
-
"
|
|
6535
|
+
"styler-outlined": 59364,
|
|
6536
|
+
"suitcase-clock-outlined": 59365,
|
|
6537
|
+
"suitcase-outlined": 59366,
|
|
6538
|
+
"survey-outlined": 59367,
|
|
6539
|
+
"switch-outlined": 59368,
|
|
6526
6540
|
sync: sync,
|
|
6527
|
-
"
|
|
6528
|
-
"
|
|
6529
|
-
"
|
|
6541
|
+
"tag-outlined": 59370,
|
|
6542
|
+
"target-outlined": 59371,
|
|
6543
|
+
"tennis-outlined": 59372,
|
|
6544
|
+
"ticket-outlined": 59373,
|
|
6545
|
+
"timesheet-outlined": 59374,
|
|
6546
|
+
"today-outlined": 59375,
|
|
6530
6547
|
transfer: transfer,
|
|
6531
|
-
"trash-bin-outlined":
|
|
6532
|
-
"umbrela-outlined":
|
|
6548
|
+
"trash-bin-outlined": 59377,
|
|
6549
|
+
"umbrela-outlined": 59378,
|
|
6533
6550
|
unavailable: unavailable,
|
|
6534
6551
|
underline: underline,
|
|
6535
|
-
"union-outlined":
|
|
6536
|
-
"unlock-outlined":
|
|
6537
|
-
"upload-outlined":
|
|
6538
|
-
"user-circle-outlined":
|
|
6539
|
-
"user-gear-outlined":
|
|
6540
|
-
"user-outlined":
|
|
6541
|
-
"user-rectangle-outlined":
|
|
6542
|
-
"video-1-outlined":
|
|
6543
|
-
"video-2-outlined":
|
|
6544
|
-
"
|
|
6552
|
+
"union-outlined": 59381,
|
|
6553
|
+
"unlock-outlined": 59382,
|
|
6554
|
+
"upload-outlined": 59383,
|
|
6555
|
+
"user-circle-outlined": 59384,
|
|
6556
|
+
"user-gear-outlined": 59385,
|
|
6557
|
+
"user-outlined": 59386,
|
|
6558
|
+
"user-rectangle-outlined": 59387,
|
|
6559
|
+
"video-1-outlined": 59388,
|
|
6560
|
+
"video-2-outlined": 59389,
|
|
6561
|
+
"volunteer-outlined": 59390,
|
|
6562
|
+
"wallet-outlined": 59391
|
|
6545
6563
|
};
|
|
6546
6564
|
|
|
6547
6565
|
var HeroIcon = reactNativeVectorIcons.createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
|
|
@@ -6894,7 +6912,6 @@ var StyledTextWrapper$1 = index$a(reactNative.View)(function () {
|
|
|
6894
6912
|
return {
|
|
6895
6913
|
alignItems: 'center',
|
|
6896
6914
|
justifyContent: 'center',
|
|
6897
|
-
display: 'flex',
|
|
6898
6915
|
width: '100%',
|
|
6899
6916
|
height: '100%'
|
|
6900
6917
|
};
|
|
@@ -6902,16 +6919,28 @@ var StyledTextWrapper$1 = index$a(reactNative.View)(function () {
|
|
|
6902
6919
|
var StyledText$2 = index$a(Typography.Text)(function (_ref2) {
|
|
6903
6920
|
var themeSize = _ref2.themeSize,
|
|
6904
6921
|
theme = _ref2.theme;
|
|
6905
|
-
return {
|
|
6922
|
+
return _objectSpread2({
|
|
6906
6923
|
fontFamily: theme.__hd__.avatar.fonts["default"],
|
|
6907
6924
|
fontSize: theme.__hd__.avatar.fontSizes[themeSize],
|
|
6908
|
-
lineHeight: 0,
|
|
6909
6925
|
textAlignVertical: 'center',
|
|
6910
6926
|
textAlign: 'center',
|
|
6911
6927
|
color: theme.__hd__.avatar.colors.text,
|
|
6912
6928
|
overflow: 'hidden'
|
|
6913
|
-
}
|
|
6929
|
+
}, reactNative.Platform.select({
|
|
6930
|
+
ios: {
|
|
6931
|
+
lineHeight: 0 // center on ios
|
|
6932
|
+
},
|
|
6933
|
+
|
|
6934
|
+
android: {
|
|
6935
|
+
lineHeight: null,
|
|
6936
|
+
marginTop: theme.__hd__.avatar.spaces.titleMarginTopForAndroid[themeSize]
|
|
6937
|
+
},
|
|
6938
|
+
web: {
|
|
6939
|
+
lineHeight: null // center on android
|
|
6940
|
+
}
|
|
6941
|
+
}));
|
|
6914
6942
|
});
|
|
6943
|
+
|
|
6915
6944
|
var StyledImage = index$a(reactNative.Image)(function (_ref3) {
|
|
6916
6945
|
var themeSize = _ref3.themeSize,
|
|
6917
6946
|
theme = _ref3.theme;
|
|
@@ -14185,6 +14214,7 @@ function MultiSelect(_ref) {
|
|
|
14185
14214
|
}).map(function (opt) {
|
|
14186
14215
|
return opt.text;
|
|
14187
14216
|
}).join(', ');
|
|
14217
|
+
var rawValue = value.length > 0 ? value.join(', ') : '';
|
|
14188
14218
|
React.useEffect(function () {
|
|
14189
14219
|
setSelectingValue(value);
|
|
14190
14220
|
}, [open]);
|
|
@@ -14198,7 +14228,7 @@ function MultiSelect(_ref) {
|
|
|
14198
14228
|
pointerEvents: "none"
|
|
14199
14229
|
}, /*#__PURE__*/React__default["default"].createElement(TextInput, _extends$1({}, inputProps, {
|
|
14200
14230
|
label: label,
|
|
14201
|
-
value: displayedValue,
|
|
14231
|
+
value: renderSelectedValue ? rawValue : displayedValue,
|
|
14202
14232
|
suffix: "arrow-down",
|
|
14203
14233
|
multiline: true,
|
|
14204
14234
|
error: error,
|
|
@@ -14208,15 +14238,15 @@ function MultiSelect(_ref) {
|
|
|
14208
14238
|
pointerEvents: "none",
|
|
14209
14239
|
style: style,
|
|
14210
14240
|
testID: testID,
|
|
14211
|
-
renderInputValue: renderSelectedValue !== undefined && (
|
|
14241
|
+
renderInputValue: renderSelectedValue !== undefined && (rawValue === null || rawValue === void 0 ? void 0 : rawValue.length) > 0 ? function (props) {
|
|
14212
14242
|
return renderSelectedValue(value, props);
|
|
14213
14243
|
} : undefined
|
|
14214
14244
|
}))))), /*#__PURE__*/React__default["default"].createElement(BottomSheet$1, {
|
|
14215
14245
|
open: open,
|
|
14216
14246
|
onRequestClose: function onRequestClose() {
|
|
14217
|
-
|
|
14247
|
+
onDismiss === null || onDismiss === void 0 ? void 0 : onDismiss();
|
|
14248
|
+
setOpen(false);
|
|
14218
14249
|
},
|
|
14219
|
-
onDismiss: onDismiss,
|
|
14220
14250
|
header: label,
|
|
14221
14251
|
style: {
|
|
14222
14252
|
paddingBottom: isKeyboardVisible ? keyboardHeight : 0
|
|
@@ -14378,6 +14408,7 @@ var SingleSelect = function SingleSelect(_ref) {
|
|
|
14378
14408
|
var displayedValue = (_flatOptions$find = flatOptions.find(function (opt) {
|
|
14379
14409
|
return value === opt.value;
|
|
14380
14410
|
})) === null || _flatOptions$find === void 0 ? void 0 : _flatOptions$find.text;
|
|
14411
|
+
var rawValue = value ? String(value) : undefined;
|
|
14381
14412
|
return /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement(reactNative.View, {
|
|
14382
14413
|
pointerEvents: !editable || disabled || inputProps !== null && inputProps !== void 0 && inputProps.loading ? 'none' : 'auto'
|
|
14383
14414
|
}, /*#__PURE__*/React__default["default"].createElement(reactNative.TouchableOpacity, {
|
|
@@ -14388,7 +14419,7 @@ var SingleSelect = function SingleSelect(_ref) {
|
|
|
14388
14419
|
pointerEvents: "none"
|
|
14389
14420
|
}, /*#__PURE__*/React__default["default"].createElement(TextInput, _extends$1({}, inputProps, {
|
|
14390
14421
|
label: label,
|
|
14391
|
-
value: displayedValue,
|
|
14422
|
+
value: renderSelectedValue ? rawValue : displayedValue,
|
|
14392
14423
|
suffix: "arrow-down",
|
|
14393
14424
|
multiline: true,
|
|
14394
14425
|
error: error,
|
|
@@ -14398,15 +14429,15 @@ var SingleSelect = function SingleSelect(_ref) {
|
|
|
14398
14429
|
pointerEvents: "none",
|
|
14399
14430
|
style: style,
|
|
14400
14431
|
testID: testID,
|
|
14401
|
-
renderInputValue: renderSelectedValue !== undefined && !!
|
|
14432
|
+
renderInputValue: renderSelectedValue !== undefined && !!rawValue ? function (props) {
|
|
14402
14433
|
return renderSelectedValue(value, props);
|
|
14403
14434
|
} : undefined
|
|
14404
14435
|
}))))), /*#__PURE__*/React__default["default"].createElement(BottomSheet$1, {
|
|
14405
14436
|
open: open,
|
|
14406
14437
|
onRequestClose: function onRequestClose() {
|
|
14407
|
-
|
|
14438
|
+
onDismiss === null || onDismiss === void 0 ? void 0 : onDismiss();
|
|
14439
|
+
setOpen(false);
|
|
14408
14440
|
},
|
|
14409
|
-
onDismiss: onDismiss,
|
|
14410
14441
|
header: label,
|
|
14411
14442
|
style: {
|
|
14412
14443
|
paddingBottom: isKeyboardVisible ? keyboardHeight : 0
|