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