@hero-design/rn-work-uikit 1.13.8 → 1.13.9
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/CHANGELOG.md +23 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +158 -159
- package/lib/index.js +158 -159
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @hero-design/rn-work-uikit
|
|
2
2
|
|
|
3
|
+
## 1.13.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#5071](https://github.com/Thinkei/hero-design/pull/5071) [`d1c5aeb6b12e27c3e719158e53a77d56db6dbc0a`](https://github.com/Thinkei/hero-design/commit/d1c5aeb6b12e27c3e719158e53a77d56db6dbc0a) Thanks [@kristellegangano-debug](https://github.com/kristellegangano-debug)! - [UXT-8912] **Button:** reduce default button height and fix horizontal padding
|
|
8
|
+
|
|
9
|
+
- Default button height reduced from `scale(60)` to `scale(48)` to align with the compact/medium sizes.
|
|
10
|
+
- Changed `padding` to `paddingHorizontal` on filled, outline, and text button containers so vertical padding no longer inflates the button height.
|
|
11
|
+
|
|
12
|
+
- [#5074](https://github.com/Thinkei/hero-design/pull/5074) [`a9f1d5613fa357b2c4e3cfddd820a2a122a7e773`](https://github.com/Thinkei/hero-design/commit/a9f1d5613fa357b2c4e3cfddd820a2a122a7e773) Thanks [@kristellegangano-debug](https://github.com/kristellegangano-debug)! - [UXT-9001] [FilterTrigger] Align visual style to web
|
|
13
|
+
|
|
14
|
+
- Icon position moved before label text (was after)
|
|
15
|
+
- Active state backgrounds unified to `highlightedSurface` for all variants
|
|
16
|
+
- Outlined variant border changed from `medium` to `base`, color from `primaryOutline`/`secondaryOutline` to `primary`
|
|
17
|
+
- Label weight fixed to `small` (was `small-bold` when active)
|
|
18
|
+
- Icon intent fixed to `text` (was `inactive` when inactive)
|
|
19
|
+
- Badge intent set to `primary` (was unset)
|
|
20
|
+
- Filter icon SVG updated to match web version
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [[`d1c5aeb6b12e27c3e719158e53a77d56db6dbc0a`](https://github.com/Thinkei/hero-design/commit/d1c5aeb6b12e27c3e719158e53a77d56db6dbc0a), [`a9f1d5613fa357b2c4e3cfddd820a2a122a7e773`](https://github.com/Thinkei/hero-design/commit/a9f1d5613fa357b2c4e3cfddd820a2a122a7e773), [`69f51118368fcc4b49d1cc6f2fe1ed8deb882ea0`](https://github.com/Thinkei/hero-design/commit/69f51118368fcc4b49d1cc6f2fe1ed8deb882ea0)]:
|
|
23
|
+
- @hero-design/rn@8.128.0
|
|
24
|
+
- @hero-design/react-native-month-year-picker@8.45.2
|
|
25
|
+
|
|
3
26
|
## 1.13.8
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
Binary file
|
package/es/index.js
CHANGED
|
@@ -7933,21 +7933,19 @@ var getAppCueTheme = function getAppCueTheme(theme) {
|
|
|
7933
7933
|
var getFilterTriggerTheme = function getFilterTriggerTheme(theme) {
|
|
7934
7934
|
var borderWidths = {
|
|
7935
7935
|
wrapper: {
|
|
7936
|
-
filled: theme.borderWidths.
|
|
7937
|
-
outlined: theme.borderWidths.
|
|
7936
|
+
filled: theme.borderWidths.base,
|
|
7937
|
+
outlined: theme.borderWidths.base,
|
|
7938
7938
|
ghost: 0
|
|
7939
7939
|
}
|
|
7940
7940
|
};
|
|
7941
7941
|
var colors = {
|
|
7942
7942
|
wrapper: {
|
|
7943
|
-
activeBackground: theme.colors.highlightedSurface,
|
|
7944
|
-
inactiveBackground: theme.colors.neutralGlobalSurface,
|
|
7945
7943
|
background: {
|
|
7946
7944
|
active: {
|
|
7947
7945
|
filled: theme.colors.highlightedSurface,
|
|
7948
|
-
outlined:
|
|
7949
|
-
ghost:
|
|
7950
|
-
filledLabeless: theme.colors.
|
|
7946
|
+
outlined: theme.colors.highlightedSurface,
|
|
7947
|
+
ghost: theme.colors.highlightedSurface,
|
|
7948
|
+
filledLabeless: theme.colors.highlightedSurface
|
|
7951
7949
|
},
|
|
7952
7950
|
inactive: {
|
|
7953
7951
|
filled: theme.colors.neutralGlobalSurface,
|
|
@@ -7958,13 +7956,13 @@ var getFilterTriggerTheme = function getFilterTriggerTheme(theme) {
|
|
|
7958
7956
|
border: {
|
|
7959
7957
|
active: {
|
|
7960
7958
|
filled: theme.colors.highlightedSurface,
|
|
7961
|
-
outlined: theme.colors.
|
|
7959
|
+
outlined: theme.colors.primary,
|
|
7962
7960
|
ghost: 'transparent',
|
|
7963
|
-
filledLabeless: theme.colors.
|
|
7961
|
+
filledLabeless: theme.colors.highlightedSurface
|
|
7964
7962
|
},
|
|
7965
7963
|
inactive: {
|
|
7966
7964
|
filled: theme.colors.neutralGlobalSurface,
|
|
7967
|
-
outlined: theme.colors.
|
|
7965
|
+
outlined: theme.colors.primary,
|
|
7968
7966
|
ghost: 'transparent'
|
|
7969
7967
|
}
|
|
7970
7968
|
}
|
|
@@ -8270,7 +8268,7 @@ var LoadingIndicator = function LoadingIndicator(_ref2) {
|
|
|
8270
8268
|
};
|
|
8271
8269
|
|
|
8272
8270
|
// 🔴 DO NOT EDIT — This file is generated automatically.
|
|
8273
|
-
var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bolt', 'bookmark-added', 'bookmark-checked', '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', 'dot', 'double-buildings', 'edit-template', 'envelope', 'exclude', 'expand-content', 'expense', 'explore_nearby', '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', 'global-pound', 'globe', 'graduation-cap', 'graph', 'happy-sun', 'health-bag', 'heart', 'hero-points', 'home', 'image', 'import', 'incident-siren', 'instapay-daily', 'instapay-now', 'instapay', 'list', 'loading-2', 'loading', 'location-on', 'location', 'lock', 'looks-one', 'looks-two', 'media-content', 'menu', 'money-notes', 'moneybag', 'moon', 'multiple-stars', 'multiple-users', 'near-me', 'node', 'open-folder', 'paperclip-vertical', 'paperclip', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane-up', 'plane', 'play-arrow', 'play-circle', 'pound-coin-shine', 'pound-sign', 'print', 'raising-hands', 'reply-arrow', 'reply', 'reschedule', 'rocket-launch', 'rostering', 'salary-sacrifice', 'save', 'schedule-send', 'schedule', 'search-person', 'search', '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', 'swipe-right', 'switch', 'tag', 'target', 'teams', 'thumb-down', 'thumb-up', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'academic-hat-outlined', 'accommodation-outlined', 'activate-outlined', 'add-credit-card-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'afternoon-outlined', 'ai-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'application-outlined', 'arrow-down', 'arrow-downwards', 'arrow-left', 'arrow-leftwards', 'arrow-right', 'arrow-rightwards', 'arrow-up', 'arrow-upwards', 'article-outlined', 'at-sign', 'auto-graph-outlined', 'automotive-outlined', 'bakery-outlined', 'bar-outlined', 'beauty-outlined', 'beer-outlined', 'bell-active-outlined', 'bell-outlined', 'bell-slash-outlined', 'bill-management-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bolt-outlined', 'book-outlined', 'bookmark-added-outlined', 'bookmark-checked-outlined', 'bookmark-outlined', 'box-1-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calculator-outlined', 'calendar-dates-outlined', 'calendar-edit-outlined', 'calendar-star-outlined', 'call-outlined', 'call-split-outlined', 'camera-outlined', 'cancel', 'car-forward-outlined', 'cashback-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-in-outlined', 'clock-out-outlined', 'clock-outlined', 'cog-outlined', 'coin-outlined', 'coin-super-outlined', 'comment-outlined', 'contacts-outlined', 'contacts-user-outlined', 'credit-card-outlined', 'cultural-site-outlined', 'cup-outlined', 'dentistry-outlined', 'diamond-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-box-outlined', 'download-outlined', 'edit-template-outlined', 'edit-user-outlined', 'electronics-outlined', 'email-outlined', 'end-break-outlined', 'enter-arrow', 'entertainment-outlined', 'envelope-outlined', 'evening-outlined', 'expense-approval-outlined', 'expense-outlined', 'explore-outlined', 'extension-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', 'feedbacks-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-pound-outlined', 'file-search-outlined', 'file-secured-outlined', 'file-statutory-outlined', 'file-verified-outlined', 'filter-outlined', 'fitness-outlined', 'folder-outlined', 'folder-upload-outlined', 'folder-user-outlined', 'form-outlined', 'funnel-filter-outline', 'goal-outlined', 'graph-outlined', 'grocery-outlined', 'hand-holding-user-outlined', 'handshake-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-active-outlined', 'home-outlined', 'id-card-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'job-search-outlined', 'leave-approval-outlined', 'lighting-outlined', 'link-1', 'link-2', 'list-outlined', 'live-help-outlined', 'local_mall_outlined', 'location-on-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'mail-outlined', 'map-outlined', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'morning-outlined', 'multiple-folders-outlined', 'multiple-users-outlined', 'near-me-outlined', 'node-outlined', 'number-points', 'number', 'overview-outlined', 'park-outlined', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'pound-box-outlined', 'pound-card-outlined', 'pound-coin-shine-outlined', 'pound-credit-card-outlined', 'print-outlined', 'profile-2user-outlined', 'propane-tank-outlined', 'qr-code-outlined', 'qualification-outlined', 'question-mark', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'restaurant-outlined', 'resume-outlined', 'return-arrow', 'rocket-launch-outlined', 'rostering-outlined', 'safety-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'search-secured-outlined', 'send-outlined', 'share-1', 'share-2', 'share-outlined-2', 'share-outlined', 'shield-check-outlined', 'shop-outlined', 'shopping_basket_outlined', 'show-chart-outlined', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'smart-match-outlined', 'sparkle-2-outlined', 'sparkle-outlined', 'speaker-active-outlined', 'speaker-outlined', 'star-circle-outlined', 'star-outlined', 'start-break-outlined', 'stash-outlined', 'stopwatch-outlined', 'strikethrough', 'styler-outlined', 'suitcase-clock-outlined', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'tag-outlined', 'target-outlined', 'tennis-outlined', 'thumb-down-outlined', 'thumb-up-outlined', 'ticket-outlined', 'timesheet-outlined', 'timesheets-outlined', 'today-outlined', 'transfer', 'transportation-outlined', 'trash-bin-outlined', 'umbrela-outlined', 'unavailability-outlined', 'unavailable', 'underline', 'union-outlined', 'unlock-outlined', 'upload-outlined', 'user-add-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-out-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'volunteer-outlined', 'wallet-outlined', 'wellness-outlined'];
|
|
8271
|
+
var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bolt', 'bookmark-added', 'bookmark-checked', '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', 'dot', 'double-buildings', 'edit-template', 'envelope', 'exclude', 'expand-content', 'expense', 'explore_nearby', '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', 'global-pound', 'globe', 'graduation-cap', 'graph', 'happy-sun', 'health-bag', 'heart', 'hero-points', 'home', 'image', 'import', 'incident-siren', 'instapay-daily', 'instapay-now', 'instapay', 'list', 'loading-2', 'loading', 'location-on', 'location', 'lock', 'looks-one', 'looks-two', 'media-content', 'menu', 'money-notes', 'moneybag', 'moon', 'multiple-stars', 'multiple-users', 'near-me', 'node', 'open-folder', 'paperclip-vertical', 'paperclip', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane-up', 'plane', 'play-arrow', 'play-circle', 'pound-coin-shine', 'pound-sign', 'print', 'raising-hands', 'reply-arrow', 'reply', 'reschedule', 'rocket-launch', 'rostering', 'salary-sacrifice', 'save', 'schedule-send', 'schedule', 'search-person', 'search', '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', 'swipe-right', 'switch', 'tag', 'target', 'teams', 'thumb-down', 'thumb-up', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'academic-hat-outlined', 'accommodation-outlined', 'activate-outlined', 'add-credit-card-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'afternoon-outlined', 'ai-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'application-outlined', 'arrow-down', 'arrow-downwards', 'arrow-left', 'arrow-leftwards', 'arrow-right', 'arrow-rightwards', 'arrow-up', 'arrow-upwards', 'article-outlined', 'at-sign', 'auto-graph-outlined', 'automotive-outlined', 'bakery-outlined', 'bar-outlined', 'beauty-outlined', 'beer-outlined', 'bell-active-outlined', 'bell-outlined', 'bell-slash-outlined', 'bill-management-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bolt-outlined', 'book-outlined', 'bookmark-added-outlined', 'bookmark-checked-outlined', 'bookmark-outlined', 'box-1-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calculator-outlined', 'calendar-dates-outlined', 'calendar-edit-outlined', 'calendar-star-outlined', 'call-outlined', 'call-split-outlined', 'camera-outlined', 'cancel', 'car-forward-outlined', 'cashback-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-in-outlined', 'clock-out-outlined', 'clock-outlined', 'cog-outlined', 'coin-outlined', 'coin-super-outlined', 'comment-outlined', 'contacts-outlined', 'contacts-user-outlined', 'credit-card-outlined', 'cultural-site-outlined', 'cup-outlined', 'dentistry-outlined', 'diamond-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-box-outlined', 'download-outlined', 'edit-template-outlined', 'edit-user-outlined', 'electronics-outlined', 'email-outlined', 'end-break-outlined', 'enter-arrow', 'entertainment-outlined', 'envelope-outlined', 'evening-outlined', 'expense-approval-outlined', 'expense-outlined', 'explore-outlined', 'extension-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', 'feedbacks-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-pound-outlined', 'file-search-outlined', 'file-secured-outlined', 'file-statutory-outlined', 'file-verified-outlined', 'filter-outlined', 'fitness-outlined', 'folder-outlined', 'folder-upload-outlined', 'folder-user-outlined', 'form-outlined', 'funnel-filter-outline', 'goal-outlined', 'graph-outlined', 'grocery-outlined', 'hand-holding-user-outlined', 'handshake-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'history-outlined', 'home-active-outlined', 'home-outlined', 'id-card-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'job-search-outlined', 'leave-approval-outlined', 'lighting-outlined', 'link-1', 'link-2', 'list-outlined', 'live-help-outlined', 'local_mall_outlined', 'location-on-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'mail-outlined', 'map-outlined', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'morning-outlined', 'multiple-folders-outlined', 'multiple-users-outlined', 'near-me-outlined', 'node-outlined', 'number-points', 'number', 'overview-outlined', 'park-outlined', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'pound-box-outlined', 'pound-card-outlined', 'pound-coin-shine-outlined', 'pound-credit-card-outlined', 'print-outlined', 'profile-2user-outlined', 'propane-tank-outlined', 'qr-code-outlined', 'qualification-outlined', 'question-mark', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'restaurant-outlined', 'resume-outlined', 'return-arrow', 'rocket-launch-outlined', 'rostering-outlined', 'safety-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'search-secured-outlined', 'send-outlined', 'share-1', 'share-2', 'share-outlined-2', 'share-outlined', 'shield-check-outlined', 'shop-outlined', 'shopping_basket_outlined', 'show-chart-outlined', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'smart-match-outlined', 'sparkle-2-outlined', 'sparkle-outlined', 'speaker-active-outlined', 'speaker-outlined', 'star-circle-outlined', 'star-outlined', 'start-break-outlined', 'stash-outlined', 'stopwatch-outlined', 'strikethrough', 'styler-outlined', 'suitcase-clock-outlined', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'tag-outlined', 'target-outlined', 'tennis-outlined', 'thumb-down-outlined', 'thumb-up-outlined', 'ticket-outlined', 'timesheet-outlined', 'timesheets-outlined', 'today-outlined', 'transfer', 'transportation-outlined', 'trash-bin-outlined', 'umbrela-outlined', 'unavailability-outlined', 'unavailable', 'underline', 'union-outlined', 'unlock-outlined', 'upload-outlined', 'user-add-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-out-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'volunteer-outlined', 'wallet-outlined', 'wellness-outlined'];
|
|
8274
8272
|
|
|
8275
8273
|
var activate = 59000;
|
|
8276
8274
|
var adjustment = 59003;
|
|
@@ -8350,20 +8348,20 @@ var add = 59203;
|
|
|
8350
8348
|
var bold = 59233;
|
|
8351
8349
|
var cancel = 59251;
|
|
8352
8350
|
var checkmark = 59257;
|
|
8353
|
-
var italic =
|
|
8354
|
-
var local_mall_outlined =
|
|
8355
|
-
var number$2 =
|
|
8356
|
-
var percentage =
|
|
8357
|
-
var redeem =
|
|
8358
|
-
var refresh =
|
|
8359
|
-
var remove$1 =
|
|
8360
|
-
var restart =
|
|
8361
|
-
var shopping_basket_outlined =
|
|
8362
|
-
var strikethrough =
|
|
8363
|
-
var sync =
|
|
8364
|
-
var transfer =
|
|
8365
|
-
var unavailable =
|
|
8366
|
-
var underline =
|
|
8351
|
+
var italic = 59358;
|
|
8352
|
+
var local_mall_outlined = 59366;
|
|
8353
|
+
var number$2 = 59389;
|
|
8354
|
+
var percentage = 59395;
|
|
8355
|
+
var redeem = 59411;
|
|
8356
|
+
var refresh = 59412;
|
|
8357
|
+
var remove$1 = 59413;
|
|
8358
|
+
var restart = 59415;
|
|
8359
|
+
var shopping_basket_outlined = 59433;
|
|
8360
|
+
var strikethrough = 59449;
|
|
8361
|
+
var sync = 59455;
|
|
8362
|
+
var transfer = 59465;
|
|
8363
|
+
var unavailable = 59470;
|
|
8364
|
+
var underline = 59471;
|
|
8367
8365
|
var glyphMap = {
|
|
8368
8366
|
activate: activate,
|
|
8369
8367
|
"add-emoji": 59001,
|
|
@@ -8716,140 +8714,141 @@ var glyphMap = {
|
|
|
8716
8714
|
"happy-sun-outlined": 59348,
|
|
8717
8715
|
"health-bag-outlined": 59349,
|
|
8718
8716
|
"heart-outlined": 59350,
|
|
8719
|
-
"
|
|
8720
|
-
"home-outlined": 59352,
|
|
8721
|
-
"
|
|
8722
|
-
"
|
|
8723
|
-
"
|
|
8724
|
-
"
|
|
8717
|
+
"history-outlined": 59351,
|
|
8718
|
+
"home-active-outlined": 59352,
|
|
8719
|
+
"home-outlined": 59353,
|
|
8720
|
+
"id-card-outlined": 59354,
|
|
8721
|
+
"image-outlined": 59355,
|
|
8722
|
+
"import-outlined": 59356,
|
|
8723
|
+
"instapay-outlined": 59357,
|
|
8725
8724
|
italic: italic,
|
|
8726
|
-
"job-search-outlined":
|
|
8727
|
-
"leave-approval-outlined":
|
|
8728
|
-
"lighting-outlined":
|
|
8729
|
-
"link-1":
|
|
8730
|
-
"link-2":
|
|
8731
|
-
"list-outlined":
|
|
8732
|
-
"live-help-outlined":
|
|
8725
|
+
"job-search-outlined": 59359,
|
|
8726
|
+
"leave-approval-outlined": 59360,
|
|
8727
|
+
"lighting-outlined": 59361,
|
|
8728
|
+
"link-1": 59362,
|
|
8729
|
+
"link-2": 59363,
|
|
8730
|
+
"list-outlined": 59364,
|
|
8731
|
+
"live-help-outlined": 59365,
|
|
8733
8732
|
local_mall_outlined: local_mall_outlined,
|
|
8734
|
-
"location-on-outlined":
|
|
8735
|
-
"location-outlined":
|
|
8736
|
-
"lock-outlined":
|
|
8737
|
-
"locked-file-outlined":
|
|
8738
|
-
"log-out":
|
|
8739
|
-
"mail-outlined":
|
|
8740
|
-
"map-outlined":
|
|
8741
|
-
"media-content-outlined":
|
|
8742
|
-
"menu-close":
|
|
8743
|
-
"menu-expand":
|
|
8744
|
-
"menu-fold-outlined":
|
|
8745
|
-
"menu-unfold-outlined":
|
|
8746
|
-
"moneybag-outlined":
|
|
8747
|
-
"moon-outlined":
|
|
8748
|
-
"more-horizontal":
|
|
8749
|
-
"more-vertical":
|
|
8750
|
-
"morning-outlined":
|
|
8751
|
-
"multiple-folders-outlined":
|
|
8752
|
-
"multiple-users-outlined":
|
|
8753
|
-
"near-me-outlined":
|
|
8754
|
-
"node-outlined":
|
|
8755
|
-
"number-points":
|
|
8733
|
+
"location-on-outlined": 59367,
|
|
8734
|
+
"location-outlined": 59368,
|
|
8735
|
+
"lock-outlined": 59369,
|
|
8736
|
+
"locked-file-outlined": 59370,
|
|
8737
|
+
"log-out": 59371,
|
|
8738
|
+
"mail-outlined": 59372,
|
|
8739
|
+
"map-outlined": 59373,
|
|
8740
|
+
"media-content-outlined": 59374,
|
|
8741
|
+
"menu-close": 59375,
|
|
8742
|
+
"menu-expand": 59376,
|
|
8743
|
+
"menu-fold-outlined": 59377,
|
|
8744
|
+
"menu-unfold-outlined": 59378,
|
|
8745
|
+
"moneybag-outlined": 59379,
|
|
8746
|
+
"moon-outlined": 59380,
|
|
8747
|
+
"more-horizontal": 59381,
|
|
8748
|
+
"more-vertical": 59382,
|
|
8749
|
+
"morning-outlined": 59383,
|
|
8750
|
+
"multiple-folders-outlined": 59384,
|
|
8751
|
+
"multiple-users-outlined": 59385,
|
|
8752
|
+
"near-me-outlined": 59386,
|
|
8753
|
+
"node-outlined": 59387,
|
|
8754
|
+
"number-points": 59388,
|
|
8756
8755
|
number: number$2,
|
|
8757
|
-
"overview-outlined":
|
|
8758
|
-
"park-outlined":
|
|
8759
|
-
"payment-summary-outlined":
|
|
8760
|
-
"payslip-outlined":
|
|
8761
|
-
"pencil-outlined":
|
|
8756
|
+
"overview-outlined": 59390,
|
|
8757
|
+
"park-outlined": 59391,
|
|
8758
|
+
"payment-summary-outlined": 59392,
|
|
8759
|
+
"payslip-outlined": 59393,
|
|
8760
|
+
"pencil-outlined": 59394,
|
|
8762
8761
|
percentage: percentage,
|
|
8763
|
-
"phone-outlined":
|
|
8764
|
-
"piggy-bank-outlined":
|
|
8765
|
-
"plane-outlined":
|
|
8766
|
-
"play-circle-outlined":
|
|
8767
|
-
"pound-box-outlined":
|
|
8768
|
-
"pound-card-outlined":
|
|
8769
|
-
"pound-coin-shine-outlined":
|
|
8770
|
-
"pound-credit-card-outlined":
|
|
8771
|
-
"print-outlined":
|
|
8772
|
-
"profile-2user-outlined":
|
|
8773
|
-
"propane-tank-outlined":
|
|
8774
|
-
"qr-code-outlined":
|
|
8775
|
-
"qualification-outlined":
|
|
8776
|
-
"question-mark":
|
|
8777
|
-
"re-assign":
|
|
8762
|
+
"phone-outlined": 59396,
|
|
8763
|
+
"piggy-bank-outlined": 59397,
|
|
8764
|
+
"plane-outlined": 59398,
|
|
8765
|
+
"play-circle-outlined": 59399,
|
|
8766
|
+
"pound-box-outlined": 59400,
|
|
8767
|
+
"pound-card-outlined": 59401,
|
|
8768
|
+
"pound-coin-shine-outlined": 59402,
|
|
8769
|
+
"pound-credit-card-outlined": 59403,
|
|
8770
|
+
"print-outlined": 59404,
|
|
8771
|
+
"profile-2user-outlined": 59405,
|
|
8772
|
+
"propane-tank-outlined": 59406,
|
|
8773
|
+
"qr-code-outlined": 59407,
|
|
8774
|
+
"qualification-outlined": 59408,
|
|
8775
|
+
"question-mark": 59409,
|
|
8776
|
+
"re-assign": 59410,
|
|
8778
8777
|
redeem: redeem,
|
|
8779
8778
|
refresh: refresh,
|
|
8780
8779
|
remove: remove$1,
|
|
8781
|
-
"reply-outlined":
|
|
8780
|
+
"reply-outlined": 59414,
|
|
8782
8781
|
restart: restart,
|
|
8783
|
-
"restaurant-outlined":
|
|
8784
|
-
"resume-outlined":
|
|
8785
|
-
"return-arrow":
|
|
8786
|
-
"rocket-launch-outlined":
|
|
8787
|
-
"rostering-outlined":
|
|
8788
|
-
"safety-outlined":
|
|
8789
|
-
"save-outlined":
|
|
8790
|
-
"schedule-outlined":
|
|
8791
|
-
"search-outlined":
|
|
8792
|
-
"search-secured-outlined":
|
|
8793
|
-
"send-outlined":
|
|
8794
|
-
"share-1":
|
|
8795
|
-
"share-2":
|
|
8796
|
-
"share-outlined-2":
|
|
8797
|
-
"share-outlined":
|
|
8798
|
-
"shield-check-outlined":
|
|
8799
|
-
"shop-outlined":
|
|
8782
|
+
"restaurant-outlined": 59416,
|
|
8783
|
+
"resume-outlined": 59417,
|
|
8784
|
+
"return-arrow": 59418,
|
|
8785
|
+
"rocket-launch-outlined": 59419,
|
|
8786
|
+
"rostering-outlined": 59420,
|
|
8787
|
+
"safety-outlined": 59421,
|
|
8788
|
+
"save-outlined": 59422,
|
|
8789
|
+
"schedule-outlined": 59423,
|
|
8790
|
+
"search-outlined": 59424,
|
|
8791
|
+
"search-secured-outlined": 59425,
|
|
8792
|
+
"send-outlined": 59426,
|
|
8793
|
+
"share-1": 59427,
|
|
8794
|
+
"share-2": 59428,
|
|
8795
|
+
"share-outlined-2": 59429,
|
|
8796
|
+
"share-outlined": 59430,
|
|
8797
|
+
"shield-check-outlined": 59431,
|
|
8798
|
+
"shop-outlined": 59432,
|
|
8800
8799
|
shopping_basket_outlined: shopping_basket_outlined,
|
|
8801
|
-
"show-chart-outlined":
|
|
8802
|
-
"single-down-arrow":
|
|
8803
|
-
"single-left-arrow":
|
|
8804
|
-
"single-right-arrow":
|
|
8805
|
-
"single-up-arrow":
|
|
8806
|
-
"smart-match-outlined":
|
|
8807
|
-
"sparkle-2-outlined":
|
|
8808
|
-
"sparkle-outlined":
|
|
8809
|
-
"speaker-active-outlined":
|
|
8810
|
-
"speaker-outlined":
|
|
8811
|
-
"star-circle-outlined":
|
|
8812
|
-
"star-outlined":
|
|
8813
|
-
"start-break-outlined":
|
|
8814
|
-
"stash-outlined":
|
|
8815
|
-
"stopwatch-outlined":
|
|
8800
|
+
"show-chart-outlined": 59434,
|
|
8801
|
+
"single-down-arrow": 59435,
|
|
8802
|
+
"single-left-arrow": 59436,
|
|
8803
|
+
"single-right-arrow": 59437,
|
|
8804
|
+
"single-up-arrow": 59438,
|
|
8805
|
+
"smart-match-outlined": 59439,
|
|
8806
|
+
"sparkle-2-outlined": 59440,
|
|
8807
|
+
"sparkle-outlined": 59441,
|
|
8808
|
+
"speaker-active-outlined": 59442,
|
|
8809
|
+
"speaker-outlined": 59443,
|
|
8810
|
+
"star-circle-outlined": 59444,
|
|
8811
|
+
"star-outlined": 59445,
|
|
8812
|
+
"start-break-outlined": 59446,
|
|
8813
|
+
"stash-outlined": 59447,
|
|
8814
|
+
"stopwatch-outlined": 59448,
|
|
8816
8815
|
strikethrough: strikethrough,
|
|
8817
|
-
"styler-outlined":
|
|
8818
|
-
"suitcase-clock-outlined":
|
|
8819
|
-
"suitcase-outlined":
|
|
8820
|
-
"survey-outlined":
|
|
8821
|
-
"switch-outlined":
|
|
8816
|
+
"styler-outlined": 59450,
|
|
8817
|
+
"suitcase-clock-outlined": 59451,
|
|
8818
|
+
"suitcase-outlined": 59452,
|
|
8819
|
+
"survey-outlined": 59453,
|
|
8820
|
+
"switch-outlined": 59454,
|
|
8822
8821
|
sync: sync,
|
|
8823
|
-
"tag-outlined":
|
|
8824
|
-
"target-outlined":
|
|
8825
|
-
"tennis-outlined":
|
|
8826
|
-
"thumb-down-outlined":
|
|
8827
|
-
"thumb-up-outlined":
|
|
8828
|
-
"ticket-outlined":
|
|
8829
|
-
"timesheet-outlined":
|
|
8830
|
-
"timesheets-outlined":
|
|
8831
|
-
"today-outlined":
|
|
8822
|
+
"tag-outlined": 59456,
|
|
8823
|
+
"target-outlined": 59457,
|
|
8824
|
+
"tennis-outlined": 59458,
|
|
8825
|
+
"thumb-down-outlined": 59459,
|
|
8826
|
+
"thumb-up-outlined": 59460,
|
|
8827
|
+
"ticket-outlined": 59461,
|
|
8828
|
+
"timesheet-outlined": 59462,
|
|
8829
|
+
"timesheets-outlined": 59463,
|
|
8830
|
+
"today-outlined": 59464,
|
|
8832
8831
|
transfer: transfer,
|
|
8833
|
-
"transportation-outlined":
|
|
8834
|
-
"trash-bin-outlined":
|
|
8835
|
-
"umbrela-outlined":
|
|
8836
|
-
"unavailability-outlined":
|
|
8832
|
+
"transportation-outlined": 59466,
|
|
8833
|
+
"trash-bin-outlined": 59467,
|
|
8834
|
+
"umbrela-outlined": 59468,
|
|
8835
|
+
"unavailability-outlined": 59469,
|
|
8837
8836
|
unavailable: unavailable,
|
|
8838
8837
|
underline: underline,
|
|
8839
|
-
"union-outlined":
|
|
8840
|
-
"unlock-outlined":
|
|
8841
|
-
"upload-outlined":
|
|
8842
|
-
"user-add-outlined":
|
|
8843
|
-
"user-circle-outlined":
|
|
8844
|
-
"user-gear-outlined":
|
|
8845
|
-
"user-out-outlined":
|
|
8846
|
-
"user-outlined":
|
|
8847
|
-
"user-rectangle-outlined":
|
|
8848
|
-
"video-1-outlined":
|
|
8849
|
-
"video-2-outlined":
|
|
8850
|
-
"volunteer-outlined":
|
|
8851
|
-
"wallet-outlined":
|
|
8852
|
-
"wellness-outlined":
|
|
8838
|
+
"union-outlined": 59472,
|
|
8839
|
+
"unlock-outlined": 59473,
|
|
8840
|
+
"upload-outlined": 59474,
|
|
8841
|
+
"user-add-outlined": 59475,
|
|
8842
|
+
"user-circle-outlined": 59476,
|
|
8843
|
+
"user-gear-outlined": 59477,
|
|
8844
|
+
"user-out-outlined": 59478,
|
|
8845
|
+
"user-outlined": 59479,
|
|
8846
|
+
"user-rectangle-outlined": 59480,
|
|
8847
|
+
"video-1-outlined": 59481,
|
|
8848
|
+
"video-2-outlined": 59482,
|
|
8849
|
+
"volunteer-outlined": 59483,
|
|
8850
|
+
"wallet-outlined": 59484,
|
|
8851
|
+
"wellness-outlined": 59485
|
|
8853
8852
|
};
|
|
8854
8853
|
|
|
8855
8854
|
var HeroIcon = createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
|
|
@@ -9370,7 +9369,7 @@ var Typography = {
|
|
|
9370
9369
|
var getButtonSize = function getButtonSize(themeIsCompact, themeIsMedium) {
|
|
9371
9370
|
if (themeIsCompact) return scale(36);
|
|
9372
9371
|
if (themeIsMedium) return scale(48);
|
|
9373
|
-
return scale(
|
|
9372
|
+
return scale(48);
|
|
9374
9373
|
};
|
|
9375
9374
|
var getTextButtonPaddingVertical = function getTextButtonPaddingVertical(theme, themeInlineText, themeIsCompact) {
|
|
9376
9375
|
if (themeInlineText) {
|
|
@@ -9429,7 +9428,7 @@ var genFilledContainerStyles = function genFilledContainerStyles(theme, intent,
|
|
|
9429
9428
|
}
|
|
9430
9429
|
return {
|
|
9431
9430
|
alignSelf: 'stretch',
|
|
9432
|
-
|
|
9431
|
+
paddingHorizontal: theme.__hd__.button.space["default"].buttonPadding,
|
|
9433
9432
|
borderRadius: theme.__hd__.button.radii["default"]
|
|
9434
9433
|
};
|
|
9435
9434
|
};
|
|
@@ -9474,7 +9473,7 @@ var genOutlineContainerStyles = function genOutlineContainerStyles(theme, intent
|
|
|
9474
9473
|
}
|
|
9475
9474
|
return {
|
|
9476
9475
|
alignSelf: 'stretch',
|
|
9477
|
-
|
|
9476
|
+
paddingHorizontal: theme.__hd__.button.space["default"].buttonPadding - theme.__hd__.button.borderWidth["default"],
|
|
9478
9477
|
borderRadius: theme.__hd__.button.radii["default"]
|
|
9479
9478
|
};
|
|
9480
9479
|
};
|
|
@@ -9512,7 +9511,7 @@ var getTextContainerStyles = function getTextContainerStyles(theme, intent, load
|
|
|
9512
9511
|
};
|
|
9513
9512
|
}
|
|
9514
9513
|
return {
|
|
9515
|
-
|
|
9514
|
+
paddingHorizontal: inlineText ? 0 : theme.__hd__.button.space["default"].textButtonPadding
|
|
9516
9515
|
};
|
|
9517
9516
|
};
|
|
9518
9517
|
return _objectSpread2({
|
|
@@ -42486,8 +42485,6 @@ var FilterTrigger = function FilterTrigger(_ref) {
|
|
|
42486
42485
|
testID = _ref.testID,
|
|
42487
42486
|
style = _ref.style;
|
|
42488
42487
|
var shouldShowBadge = filterCount > 0 && active;
|
|
42489
|
-
var iconIntent = active ? 'text' : 'inactive';
|
|
42490
|
-
var typographyVariant = active ? 'small-bold' : 'small';
|
|
42491
42488
|
return /*#__PURE__*/React__default.createElement(StyledFilterWrapper, {
|
|
42492
42489
|
testID: testID,
|
|
42493
42490
|
style: style,
|
|
@@ -42495,24 +42492,26 @@ var FilterTrigger = function FilterTrigger(_ref) {
|
|
|
42495
42492
|
themeVariant: variant,
|
|
42496
42493
|
onPress: onPress,
|
|
42497
42494
|
themeHasLabel: !!label
|
|
42498
|
-
}, label ? /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(
|
|
42499
|
-
variant: typographyVariant
|
|
42500
|
-
}, label), shouldShowBadge && /*#__PURE__*/React__default.createElement(Badge, {
|
|
42501
|
-
content: filterCount,
|
|
42502
|
-
size: "small"
|
|
42503
|
-
}), suffix && /*#__PURE__*/React__default.createElement(Icon, {
|
|
42495
|
+
}, label ? /*#__PURE__*/React__default.createElement(React__default.Fragment, null, suffix && /*#__PURE__*/React__default.createElement(Icon, {
|
|
42504
42496
|
icon: suffix,
|
|
42505
42497
|
size: "xxxsmall",
|
|
42506
|
-
intent:
|
|
42498
|
+
intent: "text",
|
|
42507
42499
|
testID: "".concat(testID, "-suffix")
|
|
42500
|
+
}), /*#__PURE__*/React__default.createElement(StyledText, {
|
|
42501
|
+
variant: "small"
|
|
42502
|
+
}, label), shouldShowBadge && /*#__PURE__*/React__default.createElement(Badge, {
|
|
42503
|
+
content: filterCount,
|
|
42504
|
+
size: "small",
|
|
42505
|
+
intent: "primary"
|
|
42508
42506
|
})) : /*#__PURE__*/React__default.createElement(React__default.Fragment, null, suffix && /*#__PURE__*/React__default.createElement(Icon, {
|
|
42509
42507
|
icon: suffix,
|
|
42510
42508
|
size: "xsmall",
|
|
42511
|
-
intent:
|
|
42509
|
+
intent: "text",
|
|
42512
42510
|
testID: "".concat(testID, "-suffix")
|
|
42513
42511
|
}), shouldShowBadge && /*#__PURE__*/React__default.createElement(StyledBadge, {
|
|
42514
42512
|
content: filterCount,
|
|
42515
42513
|
size: "small",
|
|
42514
|
+
intent: "primary",
|
|
42516
42515
|
themeHasLabel: !!label
|
|
42517
42516
|
})));
|
|
42518
42517
|
};
|
package/lib/index.js
CHANGED
|
@@ -7963,21 +7963,19 @@ var getAppCueTheme = function getAppCueTheme(theme) {
|
|
|
7963
7963
|
var getFilterTriggerTheme = function getFilterTriggerTheme(theme) {
|
|
7964
7964
|
var borderWidths = {
|
|
7965
7965
|
wrapper: {
|
|
7966
|
-
filled: theme.borderWidths.
|
|
7967
|
-
outlined: theme.borderWidths.
|
|
7966
|
+
filled: theme.borderWidths.base,
|
|
7967
|
+
outlined: theme.borderWidths.base,
|
|
7968
7968
|
ghost: 0
|
|
7969
7969
|
}
|
|
7970
7970
|
};
|
|
7971
7971
|
var colors = {
|
|
7972
7972
|
wrapper: {
|
|
7973
|
-
activeBackground: theme.colors.highlightedSurface,
|
|
7974
|
-
inactiveBackground: theme.colors.neutralGlobalSurface,
|
|
7975
7973
|
background: {
|
|
7976
7974
|
active: {
|
|
7977
7975
|
filled: theme.colors.highlightedSurface,
|
|
7978
|
-
outlined:
|
|
7979
|
-
ghost:
|
|
7980
|
-
filledLabeless: theme.colors.
|
|
7976
|
+
outlined: theme.colors.highlightedSurface,
|
|
7977
|
+
ghost: theme.colors.highlightedSurface,
|
|
7978
|
+
filledLabeless: theme.colors.highlightedSurface
|
|
7981
7979
|
},
|
|
7982
7980
|
inactive: {
|
|
7983
7981
|
filled: theme.colors.neutralGlobalSurface,
|
|
@@ -7988,13 +7986,13 @@ var getFilterTriggerTheme = function getFilterTriggerTheme(theme) {
|
|
|
7988
7986
|
border: {
|
|
7989
7987
|
active: {
|
|
7990
7988
|
filled: theme.colors.highlightedSurface,
|
|
7991
|
-
outlined: theme.colors.
|
|
7989
|
+
outlined: theme.colors.primary,
|
|
7992
7990
|
ghost: 'transparent',
|
|
7993
|
-
filledLabeless: theme.colors.
|
|
7991
|
+
filledLabeless: theme.colors.highlightedSurface
|
|
7994
7992
|
},
|
|
7995
7993
|
inactive: {
|
|
7996
7994
|
filled: theme.colors.neutralGlobalSurface,
|
|
7997
|
-
outlined: theme.colors.
|
|
7995
|
+
outlined: theme.colors.primary,
|
|
7998
7996
|
ghost: 'transparent'
|
|
7999
7997
|
}
|
|
8000
7998
|
}
|
|
@@ -8300,7 +8298,7 @@ var LoadingIndicator = function LoadingIndicator(_ref2) {
|
|
|
8300
8298
|
};
|
|
8301
8299
|
|
|
8302
8300
|
// 🔴 DO NOT EDIT — This file is generated automatically.
|
|
8303
|
-
var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bolt', 'bookmark-added', 'bookmark-checked', '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', 'dot', 'double-buildings', 'edit-template', 'envelope', 'exclude', 'expand-content', 'expense', 'explore_nearby', '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', 'global-pound', 'globe', 'graduation-cap', 'graph', 'happy-sun', 'health-bag', 'heart', 'hero-points', 'home', 'image', 'import', 'incident-siren', 'instapay-daily', 'instapay-now', 'instapay', 'list', 'loading-2', 'loading', 'location-on', 'location', 'lock', 'looks-one', 'looks-two', 'media-content', 'menu', 'money-notes', 'moneybag', 'moon', 'multiple-stars', 'multiple-users', 'near-me', 'node', 'open-folder', 'paperclip-vertical', 'paperclip', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane-up', 'plane', 'play-arrow', 'play-circle', 'pound-coin-shine', 'pound-sign', 'print', 'raising-hands', 'reply-arrow', 'reply', 'reschedule', 'rocket-launch', 'rostering', 'salary-sacrifice', 'save', 'schedule-send', 'schedule', 'search-person', 'search', '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', 'swipe-right', 'switch', 'tag', 'target', 'teams', 'thumb-down', 'thumb-up', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'academic-hat-outlined', 'accommodation-outlined', 'activate-outlined', 'add-credit-card-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'afternoon-outlined', 'ai-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'application-outlined', 'arrow-down', 'arrow-downwards', 'arrow-left', 'arrow-leftwards', 'arrow-right', 'arrow-rightwards', 'arrow-up', 'arrow-upwards', 'article-outlined', 'at-sign', 'auto-graph-outlined', 'automotive-outlined', 'bakery-outlined', 'bar-outlined', 'beauty-outlined', 'beer-outlined', 'bell-active-outlined', 'bell-outlined', 'bell-slash-outlined', 'bill-management-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bolt-outlined', 'book-outlined', 'bookmark-added-outlined', 'bookmark-checked-outlined', 'bookmark-outlined', 'box-1-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calculator-outlined', 'calendar-dates-outlined', 'calendar-edit-outlined', 'calendar-star-outlined', 'call-outlined', 'call-split-outlined', 'camera-outlined', 'cancel', 'car-forward-outlined', 'cashback-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-in-outlined', 'clock-out-outlined', 'clock-outlined', 'cog-outlined', 'coin-outlined', 'coin-super-outlined', 'comment-outlined', 'contacts-outlined', 'contacts-user-outlined', 'credit-card-outlined', 'cultural-site-outlined', 'cup-outlined', 'dentistry-outlined', 'diamond-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-box-outlined', 'download-outlined', 'edit-template-outlined', 'edit-user-outlined', 'electronics-outlined', 'email-outlined', 'end-break-outlined', 'enter-arrow', 'entertainment-outlined', 'envelope-outlined', 'evening-outlined', 'expense-approval-outlined', 'expense-outlined', 'explore-outlined', 'extension-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', 'feedbacks-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-pound-outlined', 'file-search-outlined', 'file-secured-outlined', 'file-statutory-outlined', 'file-verified-outlined', 'filter-outlined', 'fitness-outlined', 'folder-outlined', 'folder-upload-outlined', 'folder-user-outlined', 'form-outlined', 'funnel-filter-outline', 'goal-outlined', 'graph-outlined', 'grocery-outlined', 'hand-holding-user-outlined', 'handshake-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-active-outlined', 'home-outlined', 'id-card-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'job-search-outlined', 'leave-approval-outlined', 'lighting-outlined', 'link-1', 'link-2', 'list-outlined', 'live-help-outlined', 'local_mall_outlined', 'location-on-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'mail-outlined', 'map-outlined', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'morning-outlined', 'multiple-folders-outlined', 'multiple-users-outlined', 'near-me-outlined', 'node-outlined', 'number-points', 'number', 'overview-outlined', 'park-outlined', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'pound-box-outlined', 'pound-card-outlined', 'pound-coin-shine-outlined', 'pound-credit-card-outlined', 'print-outlined', 'profile-2user-outlined', 'propane-tank-outlined', 'qr-code-outlined', 'qualification-outlined', 'question-mark', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'restaurant-outlined', 'resume-outlined', 'return-arrow', 'rocket-launch-outlined', 'rostering-outlined', 'safety-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'search-secured-outlined', 'send-outlined', 'share-1', 'share-2', 'share-outlined-2', 'share-outlined', 'shield-check-outlined', 'shop-outlined', 'shopping_basket_outlined', 'show-chart-outlined', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'smart-match-outlined', 'sparkle-2-outlined', 'sparkle-outlined', 'speaker-active-outlined', 'speaker-outlined', 'star-circle-outlined', 'star-outlined', 'start-break-outlined', 'stash-outlined', 'stopwatch-outlined', 'strikethrough', 'styler-outlined', 'suitcase-clock-outlined', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'tag-outlined', 'target-outlined', 'tennis-outlined', 'thumb-down-outlined', 'thumb-up-outlined', 'ticket-outlined', 'timesheet-outlined', 'timesheets-outlined', 'today-outlined', 'transfer', 'transportation-outlined', 'trash-bin-outlined', 'umbrela-outlined', 'unavailability-outlined', 'unavailable', 'underline', 'union-outlined', 'unlock-outlined', 'upload-outlined', 'user-add-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-out-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'volunteer-outlined', 'wallet-outlined', 'wellness-outlined'];
|
|
8301
|
+
var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bolt', 'bookmark-added', 'bookmark-checked', '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', 'dot', 'double-buildings', 'edit-template', 'envelope', 'exclude', 'expand-content', 'expense', 'explore_nearby', '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', 'global-pound', 'globe', 'graduation-cap', 'graph', 'happy-sun', 'health-bag', 'heart', 'hero-points', 'home', 'image', 'import', 'incident-siren', 'instapay-daily', 'instapay-now', 'instapay', 'list', 'loading-2', 'loading', 'location-on', 'location', 'lock', 'looks-one', 'looks-two', 'media-content', 'menu', 'money-notes', 'moneybag', 'moon', 'multiple-stars', 'multiple-users', 'near-me', 'node', 'open-folder', 'paperclip-vertical', 'paperclip', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane-up', 'plane', 'play-arrow', 'play-circle', 'pound-coin-shine', 'pound-sign', 'print', 'raising-hands', 'reply-arrow', 'reply', 'reschedule', 'rocket-launch', 'rostering', 'salary-sacrifice', 'save', 'schedule-send', 'schedule', 'search-person', 'search', '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', 'swipe-right', 'switch', 'tag', 'target', 'teams', 'thumb-down', 'thumb-up', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'academic-hat-outlined', 'accommodation-outlined', 'activate-outlined', 'add-credit-card-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-outlined', 'afternoon-outlined', 'ai-outlined', 'alignment-2-outlined', 'alignment-outlined', 'all-caps', 'application-outlined', 'arrow-down', 'arrow-downwards', 'arrow-left', 'arrow-leftwards', 'arrow-right', 'arrow-rightwards', 'arrow-up', 'arrow-upwards', 'article-outlined', 'at-sign', 'auto-graph-outlined', 'automotive-outlined', 'bakery-outlined', 'bar-outlined', 'beauty-outlined', 'beer-outlined', 'bell-active-outlined', 'bell-outlined', 'bell-slash-outlined', 'bill-management-outlined', 'billing-outlined', 'body-outlined', 'bold', 'bolt-outlined', 'book-outlined', 'bookmark-added-outlined', 'bookmark-checked-outlined', 'bookmark-outlined', 'box-1-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calculator-outlined', 'calendar-dates-outlined', 'calendar-edit-outlined', 'calendar-star-outlined', 'call-outlined', 'call-split-outlined', 'camera-outlined', 'cancel', 'car-forward-outlined', 'cashback-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-in-outlined', 'clock-out-outlined', 'clock-outlined', 'cog-outlined', 'coin-outlined', 'coin-super-outlined', 'comment-outlined', 'contacts-outlined', 'contacts-user-outlined', 'credit-card-outlined', 'cultural-site-outlined', 'cup-outlined', 'dentistry-outlined', 'diamond-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-box-outlined', 'download-outlined', 'edit-template-outlined', 'edit-user-outlined', 'electronics-outlined', 'email-outlined', 'end-break-outlined', 'enter-arrow', 'entertainment-outlined', 'envelope-outlined', 'evening-outlined', 'expense-approval-outlined', 'expense-outlined', 'explore-outlined', 'extension-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', 'feedbacks-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-pound-outlined', 'file-search-outlined', 'file-secured-outlined', 'file-statutory-outlined', 'file-verified-outlined', 'filter-outlined', 'fitness-outlined', 'folder-outlined', 'folder-upload-outlined', 'folder-user-outlined', 'form-outlined', 'funnel-filter-outline', 'goal-outlined', 'graph-outlined', 'grocery-outlined', 'hand-holding-user-outlined', 'handshake-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'history-outlined', 'home-active-outlined', 'home-outlined', 'id-card-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'job-search-outlined', 'leave-approval-outlined', 'lighting-outlined', 'link-1', 'link-2', 'list-outlined', 'live-help-outlined', 'local_mall_outlined', 'location-on-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'mail-outlined', 'map-outlined', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'morning-outlined', 'multiple-folders-outlined', 'multiple-users-outlined', 'near-me-outlined', 'node-outlined', 'number-points', 'number', 'overview-outlined', 'park-outlined', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'pound-box-outlined', 'pound-card-outlined', 'pound-coin-shine-outlined', 'pound-credit-card-outlined', 'print-outlined', 'profile-2user-outlined', 'propane-tank-outlined', 'qr-code-outlined', 'qualification-outlined', 'question-mark', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'restaurant-outlined', 'resume-outlined', 'return-arrow', 'rocket-launch-outlined', 'rostering-outlined', 'safety-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'search-secured-outlined', 'send-outlined', 'share-1', 'share-2', 'share-outlined-2', 'share-outlined', 'shield-check-outlined', 'shop-outlined', 'shopping_basket_outlined', 'show-chart-outlined', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'smart-match-outlined', 'sparkle-2-outlined', 'sparkle-outlined', 'speaker-active-outlined', 'speaker-outlined', 'star-circle-outlined', 'star-outlined', 'start-break-outlined', 'stash-outlined', 'stopwatch-outlined', 'strikethrough', 'styler-outlined', 'suitcase-clock-outlined', 'suitcase-outlined', 'survey-outlined', 'switch-outlined', 'sync', 'tag-outlined', 'target-outlined', 'tennis-outlined', 'thumb-down-outlined', 'thumb-up-outlined', 'ticket-outlined', 'timesheet-outlined', 'timesheets-outlined', 'today-outlined', 'transfer', 'transportation-outlined', 'trash-bin-outlined', 'umbrela-outlined', 'unavailability-outlined', 'unavailable', 'underline', 'union-outlined', 'unlock-outlined', 'upload-outlined', 'user-add-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-out-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'volunteer-outlined', 'wallet-outlined', 'wellness-outlined'];
|
|
8304
8302
|
|
|
8305
8303
|
var activate = 59000;
|
|
8306
8304
|
var adjustment = 59003;
|
|
@@ -8380,20 +8378,20 @@ var add = 59203;
|
|
|
8380
8378
|
var bold = 59233;
|
|
8381
8379
|
var cancel = 59251;
|
|
8382
8380
|
var checkmark = 59257;
|
|
8383
|
-
var italic =
|
|
8384
|
-
var local_mall_outlined =
|
|
8385
|
-
var number$2 =
|
|
8386
|
-
var percentage =
|
|
8387
|
-
var redeem =
|
|
8388
|
-
var refresh =
|
|
8389
|
-
var remove$1 =
|
|
8390
|
-
var restart =
|
|
8391
|
-
var shopping_basket_outlined =
|
|
8392
|
-
var strikethrough =
|
|
8393
|
-
var sync =
|
|
8394
|
-
var transfer =
|
|
8395
|
-
var unavailable =
|
|
8396
|
-
var underline =
|
|
8381
|
+
var italic = 59358;
|
|
8382
|
+
var local_mall_outlined = 59366;
|
|
8383
|
+
var number$2 = 59389;
|
|
8384
|
+
var percentage = 59395;
|
|
8385
|
+
var redeem = 59411;
|
|
8386
|
+
var refresh = 59412;
|
|
8387
|
+
var remove$1 = 59413;
|
|
8388
|
+
var restart = 59415;
|
|
8389
|
+
var shopping_basket_outlined = 59433;
|
|
8390
|
+
var strikethrough = 59449;
|
|
8391
|
+
var sync = 59455;
|
|
8392
|
+
var transfer = 59465;
|
|
8393
|
+
var unavailable = 59470;
|
|
8394
|
+
var underline = 59471;
|
|
8397
8395
|
var glyphMap = {
|
|
8398
8396
|
activate: activate,
|
|
8399
8397
|
"add-emoji": 59001,
|
|
@@ -8746,140 +8744,141 @@ var glyphMap = {
|
|
|
8746
8744
|
"happy-sun-outlined": 59348,
|
|
8747
8745
|
"health-bag-outlined": 59349,
|
|
8748
8746
|
"heart-outlined": 59350,
|
|
8749
|
-
"
|
|
8750
|
-
"home-outlined": 59352,
|
|
8751
|
-
"
|
|
8752
|
-
"
|
|
8753
|
-
"
|
|
8754
|
-
"
|
|
8747
|
+
"history-outlined": 59351,
|
|
8748
|
+
"home-active-outlined": 59352,
|
|
8749
|
+
"home-outlined": 59353,
|
|
8750
|
+
"id-card-outlined": 59354,
|
|
8751
|
+
"image-outlined": 59355,
|
|
8752
|
+
"import-outlined": 59356,
|
|
8753
|
+
"instapay-outlined": 59357,
|
|
8755
8754
|
italic: italic,
|
|
8756
|
-
"job-search-outlined":
|
|
8757
|
-
"leave-approval-outlined":
|
|
8758
|
-
"lighting-outlined":
|
|
8759
|
-
"link-1":
|
|
8760
|
-
"link-2":
|
|
8761
|
-
"list-outlined":
|
|
8762
|
-
"live-help-outlined":
|
|
8755
|
+
"job-search-outlined": 59359,
|
|
8756
|
+
"leave-approval-outlined": 59360,
|
|
8757
|
+
"lighting-outlined": 59361,
|
|
8758
|
+
"link-1": 59362,
|
|
8759
|
+
"link-2": 59363,
|
|
8760
|
+
"list-outlined": 59364,
|
|
8761
|
+
"live-help-outlined": 59365,
|
|
8763
8762
|
local_mall_outlined: local_mall_outlined,
|
|
8764
|
-
"location-on-outlined":
|
|
8765
|
-
"location-outlined":
|
|
8766
|
-
"lock-outlined":
|
|
8767
|
-
"locked-file-outlined":
|
|
8768
|
-
"log-out":
|
|
8769
|
-
"mail-outlined":
|
|
8770
|
-
"map-outlined":
|
|
8771
|
-
"media-content-outlined":
|
|
8772
|
-
"menu-close":
|
|
8773
|
-
"menu-expand":
|
|
8774
|
-
"menu-fold-outlined":
|
|
8775
|
-
"menu-unfold-outlined":
|
|
8776
|
-
"moneybag-outlined":
|
|
8777
|
-
"moon-outlined":
|
|
8778
|
-
"more-horizontal":
|
|
8779
|
-
"more-vertical":
|
|
8780
|
-
"morning-outlined":
|
|
8781
|
-
"multiple-folders-outlined":
|
|
8782
|
-
"multiple-users-outlined":
|
|
8783
|
-
"near-me-outlined":
|
|
8784
|
-
"node-outlined":
|
|
8785
|
-
"number-points":
|
|
8763
|
+
"location-on-outlined": 59367,
|
|
8764
|
+
"location-outlined": 59368,
|
|
8765
|
+
"lock-outlined": 59369,
|
|
8766
|
+
"locked-file-outlined": 59370,
|
|
8767
|
+
"log-out": 59371,
|
|
8768
|
+
"mail-outlined": 59372,
|
|
8769
|
+
"map-outlined": 59373,
|
|
8770
|
+
"media-content-outlined": 59374,
|
|
8771
|
+
"menu-close": 59375,
|
|
8772
|
+
"menu-expand": 59376,
|
|
8773
|
+
"menu-fold-outlined": 59377,
|
|
8774
|
+
"menu-unfold-outlined": 59378,
|
|
8775
|
+
"moneybag-outlined": 59379,
|
|
8776
|
+
"moon-outlined": 59380,
|
|
8777
|
+
"more-horizontal": 59381,
|
|
8778
|
+
"more-vertical": 59382,
|
|
8779
|
+
"morning-outlined": 59383,
|
|
8780
|
+
"multiple-folders-outlined": 59384,
|
|
8781
|
+
"multiple-users-outlined": 59385,
|
|
8782
|
+
"near-me-outlined": 59386,
|
|
8783
|
+
"node-outlined": 59387,
|
|
8784
|
+
"number-points": 59388,
|
|
8786
8785
|
number: number$2,
|
|
8787
|
-
"overview-outlined":
|
|
8788
|
-
"park-outlined":
|
|
8789
|
-
"payment-summary-outlined":
|
|
8790
|
-
"payslip-outlined":
|
|
8791
|
-
"pencil-outlined":
|
|
8786
|
+
"overview-outlined": 59390,
|
|
8787
|
+
"park-outlined": 59391,
|
|
8788
|
+
"payment-summary-outlined": 59392,
|
|
8789
|
+
"payslip-outlined": 59393,
|
|
8790
|
+
"pencil-outlined": 59394,
|
|
8792
8791
|
percentage: percentage,
|
|
8793
|
-
"phone-outlined":
|
|
8794
|
-
"piggy-bank-outlined":
|
|
8795
|
-
"plane-outlined":
|
|
8796
|
-
"play-circle-outlined":
|
|
8797
|
-
"pound-box-outlined":
|
|
8798
|
-
"pound-card-outlined":
|
|
8799
|
-
"pound-coin-shine-outlined":
|
|
8800
|
-
"pound-credit-card-outlined":
|
|
8801
|
-
"print-outlined":
|
|
8802
|
-
"profile-2user-outlined":
|
|
8803
|
-
"propane-tank-outlined":
|
|
8804
|
-
"qr-code-outlined":
|
|
8805
|
-
"qualification-outlined":
|
|
8806
|
-
"question-mark":
|
|
8807
|
-
"re-assign":
|
|
8792
|
+
"phone-outlined": 59396,
|
|
8793
|
+
"piggy-bank-outlined": 59397,
|
|
8794
|
+
"plane-outlined": 59398,
|
|
8795
|
+
"play-circle-outlined": 59399,
|
|
8796
|
+
"pound-box-outlined": 59400,
|
|
8797
|
+
"pound-card-outlined": 59401,
|
|
8798
|
+
"pound-coin-shine-outlined": 59402,
|
|
8799
|
+
"pound-credit-card-outlined": 59403,
|
|
8800
|
+
"print-outlined": 59404,
|
|
8801
|
+
"profile-2user-outlined": 59405,
|
|
8802
|
+
"propane-tank-outlined": 59406,
|
|
8803
|
+
"qr-code-outlined": 59407,
|
|
8804
|
+
"qualification-outlined": 59408,
|
|
8805
|
+
"question-mark": 59409,
|
|
8806
|
+
"re-assign": 59410,
|
|
8808
8807
|
redeem: redeem,
|
|
8809
8808
|
refresh: refresh,
|
|
8810
8809
|
remove: remove$1,
|
|
8811
|
-
"reply-outlined":
|
|
8810
|
+
"reply-outlined": 59414,
|
|
8812
8811
|
restart: restart,
|
|
8813
|
-
"restaurant-outlined":
|
|
8814
|
-
"resume-outlined":
|
|
8815
|
-
"return-arrow":
|
|
8816
|
-
"rocket-launch-outlined":
|
|
8817
|
-
"rostering-outlined":
|
|
8818
|
-
"safety-outlined":
|
|
8819
|
-
"save-outlined":
|
|
8820
|
-
"schedule-outlined":
|
|
8821
|
-
"search-outlined":
|
|
8822
|
-
"search-secured-outlined":
|
|
8823
|
-
"send-outlined":
|
|
8824
|
-
"share-1":
|
|
8825
|
-
"share-2":
|
|
8826
|
-
"share-outlined-2":
|
|
8827
|
-
"share-outlined":
|
|
8828
|
-
"shield-check-outlined":
|
|
8829
|
-
"shop-outlined":
|
|
8812
|
+
"restaurant-outlined": 59416,
|
|
8813
|
+
"resume-outlined": 59417,
|
|
8814
|
+
"return-arrow": 59418,
|
|
8815
|
+
"rocket-launch-outlined": 59419,
|
|
8816
|
+
"rostering-outlined": 59420,
|
|
8817
|
+
"safety-outlined": 59421,
|
|
8818
|
+
"save-outlined": 59422,
|
|
8819
|
+
"schedule-outlined": 59423,
|
|
8820
|
+
"search-outlined": 59424,
|
|
8821
|
+
"search-secured-outlined": 59425,
|
|
8822
|
+
"send-outlined": 59426,
|
|
8823
|
+
"share-1": 59427,
|
|
8824
|
+
"share-2": 59428,
|
|
8825
|
+
"share-outlined-2": 59429,
|
|
8826
|
+
"share-outlined": 59430,
|
|
8827
|
+
"shield-check-outlined": 59431,
|
|
8828
|
+
"shop-outlined": 59432,
|
|
8830
8829
|
shopping_basket_outlined: shopping_basket_outlined,
|
|
8831
|
-
"show-chart-outlined":
|
|
8832
|
-
"single-down-arrow":
|
|
8833
|
-
"single-left-arrow":
|
|
8834
|
-
"single-right-arrow":
|
|
8835
|
-
"single-up-arrow":
|
|
8836
|
-
"smart-match-outlined":
|
|
8837
|
-
"sparkle-2-outlined":
|
|
8838
|
-
"sparkle-outlined":
|
|
8839
|
-
"speaker-active-outlined":
|
|
8840
|
-
"speaker-outlined":
|
|
8841
|
-
"star-circle-outlined":
|
|
8842
|
-
"star-outlined":
|
|
8843
|
-
"start-break-outlined":
|
|
8844
|
-
"stash-outlined":
|
|
8845
|
-
"stopwatch-outlined":
|
|
8830
|
+
"show-chart-outlined": 59434,
|
|
8831
|
+
"single-down-arrow": 59435,
|
|
8832
|
+
"single-left-arrow": 59436,
|
|
8833
|
+
"single-right-arrow": 59437,
|
|
8834
|
+
"single-up-arrow": 59438,
|
|
8835
|
+
"smart-match-outlined": 59439,
|
|
8836
|
+
"sparkle-2-outlined": 59440,
|
|
8837
|
+
"sparkle-outlined": 59441,
|
|
8838
|
+
"speaker-active-outlined": 59442,
|
|
8839
|
+
"speaker-outlined": 59443,
|
|
8840
|
+
"star-circle-outlined": 59444,
|
|
8841
|
+
"star-outlined": 59445,
|
|
8842
|
+
"start-break-outlined": 59446,
|
|
8843
|
+
"stash-outlined": 59447,
|
|
8844
|
+
"stopwatch-outlined": 59448,
|
|
8846
8845
|
strikethrough: strikethrough,
|
|
8847
|
-
"styler-outlined":
|
|
8848
|
-
"suitcase-clock-outlined":
|
|
8849
|
-
"suitcase-outlined":
|
|
8850
|
-
"survey-outlined":
|
|
8851
|
-
"switch-outlined":
|
|
8846
|
+
"styler-outlined": 59450,
|
|
8847
|
+
"suitcase-clock-outlined": 59451,
|
|
8848
|
+
"suitcase-outlined": 59452,
|
|
8849
|
+
"survey-outlined": 59453,
|
|
8850
|
+
"switch-outlined": 59454,
|
|
8852
8851
|
sync: sync,
|
|
8853
|
-
"tag-outlined":
|
|
8854
|
-
"target-outlined":
|
|
8855
|
-
"tennis-outlined":
|
|
8856
|
-
"thumb-down-outlined":
|
|
8857
|
-
"thumb-up-outlined":
|
|
8858
|
-
"ticket-outlined":
|
|
8859
|
-
"timesheet-outlined":
|
|
8860
|
-
"timesheets-outlined":
|
|
8861
|
-
"today-outlined":
|
|
8852
|
+
"tag-outlined": 59456,
|
|
8853
|
+
"target-outlined": 59457,
|
|
8854
|
+
"tennis-outlined": 59458,
|
|
8855
|
+
"thumb-down-outlined": 59459,
|
|
8856
|
+
"thumb-up-outlined": 59460,
|
|
8857
|
+
"ticket-outlined": 59461,
|
|
8858
|
+
"timesheet-outlined": 59462,
|
|
8859
|
+
"timesheets-outlined": 59463,
|
|
8860
|
+
"today-outlined": 59464,
|
|
8862
8861
|
transfer: transfer,
|
|
8863
|
-
"transportation-outlined":
|
|
8864
|
-
"trash-bin-outlined":
|
|
8865
|
-
"umbrela-outlined":
|
|
8866
|
-
"unavailability-outlined":
|
|
8862
|
+
"transportation-outlined": 59466,
|
|
8863
|
+
"trash-bin-outlined": 59467,
|
|
8864
|
+
"umbrela-outlined": 59468,
|
|
8865
|
+
"unavailability-outlined": 59469,
|
|
8867
8866
|
unavailable: unavailable,
|
|
8868
8867
|
underline: underline,
|
|
8869
|
-
"union-outlined":
|
|
8870
|
-
"unlock-outlined":
|
|
8871
|
-
"upload-outlined":
|
|
8872
|
-
"user-add-outlined":
|
|
8873
|
-
"user-circle-outlined":
|
|
8874
|
-
"user-gear-outlined":
|
|
8875
|
-
"user-out-outlined":
|
|
8876
|
-
"user-outlined":
|
|
8877
|
-
"user-rectangle-outlined":
|
|
8878
|
-
"video-1-outlined":
|
|
8879
|
-
"video-2-outlined":
|
|
8880
|
-
"volunteer-outlined":
|
|
8881
|
-
"wallet-outlined":
|
|
8882
|
-
"wellness-outlined":
|
|
8868
|
+
"union-outlined": 59472,
|
|
8869
|
+
"unlock-outlined": 59473,
|
|
8870
|
+
"upload-outlined": 59474,
|
|
8871
|
+
"user-add-outlined": 59475,
|
|
8872
|
+
"user-circle-outlined": 59476,
|
|
8873
|
+
"user-gear-outlined": 59477,
|
|
8874
|
+
"user-out-outlined": 59478,
|
|
8875
|
+
"user-outlined": 59479,
|
|
8876
|
+
"user-rectangle-outlined": 59480,
|
|
8877
|
+
"video-1-outlined": 59481,
|
|
8878
|
+
"video-2-outlined": 59482,
|
|
8879
|
+
"volunteer-outlined": 59483,
|
|
8880
|
+
"wallet-outlined": 59484,
|
|
8881
|
+
"wellness-outlined": 59485
|
|
8883
8882
|
};
|
|
8884
8883
|
|
|
8885
8884
|
var HeroIcon = reactNativeVectorIcons.createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
|
|
@@ -9400,7 +9399,7 @@ var Typography = {
|
|
|
9400
9399
|
var getButtonSize = function getButtonSize(themeIsCompact, themeIsMedium) {
|
|
9401
9400
|
if (themeIsCompact) return scale(36);
|
|
9402
9401
|
if (themeIsMedium) return scale(48);
|
|
9403
|
-
return scale(
|
|
9402
|
+
return scale(48);
|
|
9404
9403
|
};
|
|
9405
9404
|
var getTextButtonPaddingVertical = function getTextButtonPaddingVertical(theme, themeInlineText, themeIsCompact) {
|
|
9406
9405
|
if (themeInlineText) {
|
|
@@ -9459,7 +9458,7 @@ var genFilledContainerStyles = function genFilledContainerStyles(theme, intent,
|
|
|
9459
9458
|
}
|
|
9460
9459
|
return {
|
|
9461
9460
|
alignSelf: 'stretch',
|
|
9462
|
-
|
|
9461
|
+
paddingHorizontal: theme.__hd__.button.space["default"].buttonPadding,
|
|
9463
9462
|
borderRadius: theme.__hd__.button.radii["default"]
|
|
9464
9463
|
};
|
|
9465
9464
|
};
|
|
@@ -9504,7 +9503,7 @@ var genOutlineContainerStyles = function genOutlineContainerStyles(theme, intent
|
|
|
9504
9503
|
}
|
|
9505
9504
|
return {
|
|
9506
9505
|
alignSelf: 'stretch',
|
|
9507
|
-
|
|
9506
|
+
paddingHorizontal: theme.__hd__.button.space["default"].buttonPadding - theme.__hd__.button.borderWidth["default"],
|
|
9508
9507
|
borderRadius: theme.__hd__.button.radii["default"]
|
|
9509
9508
|
};
|
|
9510
9509
|
};
|
|
@@ -9542,7 +9541,7 @@ var getTextContainerStyles = function getTextContainerStyles(theme, intent, load
|
|
|
9542
9541
|
};
|
|
9543
9542
|
}
|
|
9544
9543
|
return {
|
|
9545
|
-
|
|
9544
|
+
paddingHorizontal: inlineText ? 0 : theme.__hd__.button.space["default"].textButtonPadding
|
|
9546
9545
|
};
|
|
9547
9546
|
};
|
|
9548
9547
|
return _objectSpread2({
|
|
@@ -42516,8 +42515,6 @@ var FilterTrigger = function FilterTrigger(_ref) {
|
|
|
42516
42515
|
testID = _ref.testID,
|
|
42517
42516
|
style = _ref.style;
|
|
42518
42517
|
var shouldShowBadge = filterCount > 0 && active;
|
|
42519
|
-
var iconIntent = active ? 'text' : 'inactive';
|
|
42520
|
-
var typographyVariant = active ? 'small-bold' : 'small';
|
|
42521
42518
|
return /*#__PURE__*/React__namespace.default.createElement(StyledFilterWrapper, {
|
|
42522
42519
|
testID: testID,
|
|
42523
42520
|
style: style,
|
|
@@ -42525,24 +42522,26 @@ var FilterTrigger = function FilterTrigger(_ref) {
|
|
|
42525
42522
|
themeVariant: variant,
|
|
42526
42523
|
onPress: onPress,
|
|
42527
42524
|
themeHasLabel: !!label
|
|
42528
|
-
}, label ? /*#__PURE__*/React__namespace.default.createElement(React__namespace.default.Fragment, null, /*#__PURE__*/React__namespace.default.createElement(
|
|
42529
|
-
variant: typographyVariant
|
|
42530
|
-
}, label), shouldShowBadge && /*#__PURE__*/React__namespace.default.createElement(Badge$1, {
|
|
42531
|
-
content: filterCount,
|
|
42532
|
-
size: "small"
|
|
42533
|
-
}), suffix && /*#__PURE__*/React__namespace.default.createElement(Icon, {
|
|
42525
|
+
}, label ? /*#__PURE__*/React__namespace.default.createElement(React__namespace.default.Fragment, null, suffix && /*#__PURE__*/React__namespace.default.createElement(Icon, {
|
|
42534
42526
|
icon: suffix,
|
|
42535
42527
|
size: "xxxsmall",
|
|
42536
|
-
intent:
|
|
42528
|
+
intent: "text",
|
|
42537
42529
|
testID: "".concat(testID, "-suffix")
|
|
42530
|
+
}), /*#__PURE__*/React__namespace.default.createElement(StyledText, {
|
|
42531
|
+
variant: "small"
|
|
42532
|
+
}, label), shouldShowBadge && /*#__PURE__*/React__namespace.default.createElement(Badge$1, {
|
|
42533
|
+
content: filterCount,
|
|
42534
|
+
size: "small",
|
|
42535
|
+
intent: "primary"
|
|
42538
42536
|
})) : /*#__PURE__*/React__namespace.default.createElement(React__namespace.default.Fragment, null, suffix && /*#__PURE__*/React__namespace.default.createElement(Icon, {
|
|
42539
42537
|
icon: suffix,
|
|
42540
42538
|
size: "xsmall",
|
|
42541
|
-
intent:
|
|
42539
|
+
intent: "text",
|
|
42542
42540
|
testID: "".concat(testID, "-suffix")
|
|
42543
42541
|
}), shouldShowBadge && /*#__PURE__*/React__namespace.default.createElement(StyledBadge, {
|
|
42544
42542
|
content: filterCount,
|
|
42545
42543
|
size: "small",
|
|
42544
|
+
intent: "primary",
|
|
42546
42545
|
themeHasLabel: !!label
|
|
42547
42546
|
})));
|
|
42548
42547
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hero-design/rn-work-uikit",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.9",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@emotion/native": "^11.9.3",
|
|
25
25
|
"@emotion/react": "^11.9.3",
|
|
26
|
-
"@hero-design/rn": "8.
|
|
26
|
+
"@hero-design/rn": "8.128.0",
|
|
27
27
|
"hero-editor": "^1.17.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
@@ -75,12 +75,12 @@
|
|
|
75
75
|
"@types/react": "^19.0.0",
|
|
76
76
|
"@types/react-native-vector-icons": "^6.4.10",
|
|
77
77
|
"@types/react-test-renderer": "^19.1.0",
|
|
78
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
78
|
+
"@typescript-eslint/eslint-plugin": "^8.57.0",
|
|
79
79
|
"babel-plugin-inline-import": "^3.0.0",
|
|
80
80
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
81
81
|
"core-js": "^3.33.0",
|
|
82
|
-
"eslint": "^8.
|
|
83
|
-
"eslint-config-hd": "8.42.
|
|
82
|
+
"eslint": "^8.57.0",
|
|
83
|
+
"eslint-config-hd": "8.42.6",
|
|
84
84
|
"expo-linear-gradient": "55.0.9",
|
|
85
85
|
"jest": "^29.2.1",
|
|
86
86
|
"jest-environment-jsdom": "^29.2.1",
|