@hero-design/rn-work-uikit 1.13.8-test-auto-workflow.0 → 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 +34 -5
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +165 -163
- package/lib/index.js +165 -163
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,43 @@
|
|
|
1
1
|
# @hero-design/rn-work-uikit
|
|
2
2
|
|
|
3
|
-
## 1.13.
|
|
3
|
+
## 1.13.9
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
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
8
|
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
|
|
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
|
+
|
|
26
|
+
## 1.13.8
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- [#5068](https://github.com/Thinkei/hero-design/pull/5068) [`b613e31036219c871e4f238501f3ed0170843ae6`](https://github.com/Thinkei/hero-design/commit/b613e31036219c871e4f238501f3ed0170843ae6) Thanks [@kristellegangano-debug](https://github.com/kristellegangano-debug)! - [UXT-8928] fix(BottomSheet): reduce close button icon size and enforce header minimum height
|
|
31
|
+
|
|
32
|
+
- Added explicit `minHeight` (64px) to the header wrapper, codifying the layout that previously existed implicitly
|
|
33
|
+
- Reduced close button icon size from 16px to 12px by changing `Button.Icon` size from `xsmall` to `xxxsmall`
|
|
34
|
+
- Centred the close icon within its 48x48px touch target (was right-aligned)
|
|
35
|
+
- Renamed `floatingCloseIcon` theme token to `closeIconSize` since both variants now share the same value
|
|
36
|
+
|
|
37
|
+
**Note:** If you reference `theme.__hd__.bottomSheet.sizes.floatingCloseIcon` directly, update it to `theme.__hd__.bottomSheet.sizes.closeIconSize`.
|
|
38
|
+
|
|
39
|
+
- Updated dependencies [[`b613e31036219c871e4f238501f3ed0170843ae6`](https://github.com/Thinkei/hero-design/commit/b613e31036219c871e4f238501f3ed0170843ae6)]:
|
|
40
|
+
- @hero-design/rn@8.127.1
|
|
12
41
|
|
|
13
42
|
## 1.13.7
|
|
14
43
|
|
|
Binary file
|
package/es/index.js
CHANGED
|
@@ -3776,6 +3776,7 @@ var StyledHeaderWrapper$1 = index$c(View)(function (_ref5) {
|
|
|
3776
3776
|
var theme = _ref5.theme;
|
|
3777
3777
|
return {
|
|
3778
3778
|
flexDirection: 'row',
|
|
3779
|
+
minHeight: theme.__hd__.bottomSheet.sizes.headerMinHeight,
|
|
3779
3780
|
paddingVertical: theme.__hd__.bottomSheet.space.headerWrapperVerticalPadding,
|
|
3780
3781
|
paddingHorizontal: theme.__hd__.bottomSheet.space.headerWrapperHorizontalPadding
|
|
3781
3782
|
};
|
|
@@ -3797,7 +3798,7 @@ var StyledFooter = index$c(View)(function (_ref6) {
|
|
|
3797
3798
|
var StyledIconWrapper$3 = index$c(View)(function (_ref7) {
|
|
3798
3799
|
var theme = _ref7.theme;
|
|
3799
3800
|
return {
|
|
3800
|
-
alignItems: '
|
|
3801
|
+
alignItems: 'center',
|
|
3801
3802
|
justifyContent: 'center',
|
|
3802
3803
|
width: theme.__hd__.bottomSheet.sizes.closeIcon,
|
|
3803
3804
|
height: theme.__hd__.bottomSheet.sizes.closeIcon,
|
|
@@ -6125,7 +6126,9 @@ var getBottomSheetTheme = function getBottomSheetTheme(theme) {
|
|
|
6125
6126
|
};
|
|
6126
6127
|
var sizes = {
|
|
6127
6128
|
closeIcon: theme.sizes.xxxlarge,
|
|
6128
|
-
floatingCloseIcon
|
|
6129
|
+
// Renamed from floatingCloseIcon — shared by both fixed and floating variants
|
|
6130
|
+
closeIconSize: theme.sizes.smallMedium,
|
|
6131
|
+
headerMinHeight: theme.sizes.xxxxxlarge
|
|
6129
6132
|
};
|
|
6130
6133
|
var space = {
|
|
6131
6134
|
headerWrapperVerticalPadding: theme.space.small,
|
|
@@ -7930,21 +7933,19 @@ var getAppCueTheme = function getAppCueTheme(theme) {
|
|
|
7930
7933
|
var getFilterTriggerTheme = function getFilterTriggerTheme(theme) {
|
|
7931
7934
|
var borderWidths = {
|
|
7932
7935
|
wrapper: {
|
|
7933
|
-
filled: theme.borderWidths.
|
|
7934
|
-
outlined: theme.borderWidths.
|
|
7936
|
+
filled: theme.borderWidths.base,
|
|
7937
|
+
outlined: theme.borderWidths.base,
|
|
7935
7938
|
ghost: 0
|
|
7936
7939
|
}
|
|
7937
7940
|
};
|
|
7938
7941
|
var colors = {
|
|
7939
7942
|
wrapper: {
|
|
7940
|
-
activeBackground: theme.colors.highlightedSurface,
|
|
7941
|
-
inactiveBackground: theme.colors.neutralGlobalSurface,
|
|
7942
7943
|
background: {
|
|
7943
7944
|
active: {
|
|
7944
7945
|
filled: theme.colors.highlightedSurface,
|
|
7945
|
-
outlined:
|
|
7946
|
-
ghost:
|
|
7947
|
-
filledLabeless: theme.colors.
|
|
7946
|
+
outlined: theme.colors.highlightedSurface,
|
|
7947
|
+
ghost: theme.colors.highlightedSurface,
|
|
7948
|
+
filledLabeless: theme.colors.highlightedSurface
|
|
7948
7949
|
},
|
|
7949
7950
|
inactive: {
|
|
7950
7951
|
filled: theme.colors.neutralGlobalSurface,
|
|
@@ -7955,13 +7956,13 @@ var getFilterTriggerTheme = function getFilterTriggerTheme(theme) {
|
|
|
7955
7956
|
border: {
|
|
7956
7957
|
active: {
|
|
7957
7958
|
filled: theme.colors.highlightedSurface,
|
|
7958
|
-
outlined: theme.colors.
|
|
7959
|
+
outlined: theme.colors.primary,
|
|
7959
7960
|
ghost: 'transparent',
|
|
7960
|
-
filledLabeless: theme.colors.
|
|
7961
|
+
filledLabeless: theme.colors.highlightedSurface
|
|
7961
7962
|
},
|
|
7962
7963
|
inactive: {
|
|
7963
7964
|
filled: theme.colors.neutralGlobalSurface,
|
|
7964
|
-
outlined: theme.colors.
|
|
7965
|
+
outlined: theme.colors.primary,
|
|
7965
7966
|
ghost: 'transparent'
|
|
7966
7967
|
}
|
|
7967
7968
|
}
|
|
@@ -8267,7 +8268,7 @@ var LoadingIndicator = function LoadingIndicator(_ref2) {
|
|
|
8267
8268
|
};
|
|
8268
8269
|
|
|
8269
8270
|
// 🔴 DO NOT EDIT — This file is generated automatically.
|
|
8270
|
-
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'];
|
|
8271
8272
|
|
|
8272
8273
|
var activate = 59000;
|
|
8273
8274
|
var adjustment = 59003;
|
|
@@ -8347,20 +8348,20 @@ var add = 59203;
|
|
|
8347
8348
|
var bold = 59233;
|
|
8348
8349
|
var cancel = 59251;
|
|
8349
8350
|
var checkmark = 59257;
|
|
8350
|
-
var italic =
|
|
8351
|
-
var local_mall_outlined =
|
|
8352
|
-
var number$2 =
|
|
8353
|
-
var percentage =
|
|
8354
|
-
var redeem =
|
|
8355
|
-
var refresh =
|
|
8356
|
-
var remove$1 =
|
|
8357
|
-
var restart =
|
|
8358
|
-
var shopping_basket_outlined =
|
|
8359
|
-
var strikethrough =
|
|
8360
|
-
var sync =
|
|
8361
|
-
var transfer =
|
|
8362
|
-
var unavailable =
|
|
8363
|
-
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;
|
|
8364
8365
|
var glyphMap = {
|
|
8365
8366
|
activate: activate,
|
|
8366
8367
|
"add-emoji": 59001,
|
|
@@ -8713,140 +8714,141 @@ var glyphMap = {
|
|
|
8713
8714
|
"happy-sun-outlined": 59348,
|
|
8714
8715
|
"health-bag-outlined": 59349,
|
|
8715
8716
|
"heart-outlined": 59350,
|
|
8716
|
-
"
|
|
8717
|
-
"home-outlined": 59352,
|
|
8718
|
-
"
|
|
8719
|
-
"
|
|
8720
|
-
"
|
|
8721
|
-
"
|
|
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,
|
|
8722
8724
|
italic: italic,
|
|
8723
|
-
"job-search-outlined":
|
|
8724
|
-
"leave-approval-outlined":
|
|
8725
|
-
"lighting-outlined":
|
|
8726
|
-
"link-1":
|
|
8727
|
-
"link-2":
|
|
8728
|
-
"list-outlined":
|
|
8729
|
-
"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,
|
|
8730
8732
|
local_mall_outlined: local_mall_outlined,
|
|
8731
|
-
"location-on-outlined":
|
|
8732
|
-
"location-outlined":
|
|
8733
|
-
"lock-outlined":
|
|
8734
|
-
"locked-file-outlined":
|
|
8735
|
-
"log-out":
|
|
8736
|
-
"mail-outlined":
|
|
8737
|
-
"map-outlined":
|
|
8738
|
-
"media-content-outlined":
|
|
8739
|
-
"menu-close":
|
|
8740
|
-
"menu-expand":
|
|
8741
|
-
"menu-fold-outlined":
|
|
8742
|
-
"menu-unfold-outlined":
|
|
8743
|
-
"moneybag-outlined":
|
|
8744
|
-
"moon-outlined":
|
|
8745
|
-
"more-horizontal":
|
|
8746
|
-
"more-vertical":
|
|
8747
|
-
"morning-outlined":
|
|
8748
|
-
"multiple-folders-outlined":
|
|
8749
|
-
"multiple-users-outlined":
|
|
8750
|
-
"near-me-outlined":
|
|
8751
|
-
"node-outlined":
|
|
8752
|
-
"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,
|
|
8753
8755
|
number: number$2,
|
|
8754
|
-
"overview-outlined":
|
|
8755
|
-
"park-outlined":
|
|
8756
|
-
"payment-summary-outlined":
|
|
8757
|
-
"payslip-outlined":
|
|
8758
|
-
"pencil-outlined":
|
|
8756
|
+
"overview-outlined": 59390,
|
|
8757
|
+
"park-outlined": 59391,
|
|
8758
|
+
"payment-summary-outlined": 59392,
|
|
8759
|
+
"payslip-outlined": 59393,
|
|
8760
|
+
"pencil-outlined": 59394,
|
|
8759
8761
|
percentage: percentage,
|
|
8760
|
-
"phone-outlined":
|
|
8761
|
-
"piggy-bank-outlined":
|
|
8762
|
-
"plane-outlined":
|
|
8763
|
-
"play-circle-outlined":
|
|
8764
|
-
"pound-box-outlined":
|
|
8765
|
-
"pound-card-outlined":
|
|
8766
|
-
"pound-coin-shine-outlined":
|
|
8767
|
-
"pound-credit-card-outlined":
|
|
8768
|
-
"print-outlined":
|
|
8769
|
-
"profile-2user-outlined":
|
|
8770
|
-
"propane-tank-outlined":
|
|
8771
|
-
"qr-code-outlined":
|
|
8772
|
-
"qualification-outlined":
|
|
8773
|
-
"question-mark":
|
|
8774
|
-
"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,
|
|
8775
8777
|
redeem: redeem,
|
|
8776
8778
|
refresh: refresh,
|
|
8777
8779
|
remove: remove$1,
|
|
8778
|
-
"reply-outlined":
|
|
8780
|
+
"reply-outlined": 59414,
|
|
8779
8781
|
restart: restart,
|
|
8780
|
-
"restaurant-outlined":
|
|
8781
|
-
"resume-outlined":
|
|
8782
|
-
"return-arrow":
|
|
8783
|
-
"rocket-launch-outlined":
|
|
8784
|
-
"rostering-outlined":
|
|
8785
|
-
"safety-outlined":
|
|
8786
|
-
"save-outlined":
|
|
8787
|
-
"schedule-outlined":
|
|
8788
|
-
"search-outlined":
|
|
8789
|
-
"search-secured-outlined":
|
|
8790
|
-
"send-outlined":
|
|
8791
|
-
"share-1":
|
|
8792
|
-
"share-2":
|
|
8793
|
-
"share-outlined-2":
|
|
8794
|
-
"share-outlined":
|
|
8795
|
-
"shield-check-outlined":
|
|
8796
|
-
"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,
|
|
8797
8799
|
shopping_basket_outlined: shopping_basket_outlined,
|
|
8798
|
-
"show-chart-outlined":
|
|
8799
|
-
"single-down-arrow":
|
|
8800
|
-
"single-left-arrow":
|
|
8801
|
-
"single-right-arrow":
|
|
8802
|
-
"single-up-arrow":
|
|
8803
|
-
"smart-match-outlined":
|
|
8804
|
-
"sparkle-2-outlined":
|
|
8805
|
-
"sparkle-outlined":
|
|
8806
|
-
"speaker-active-outlined":
|
|
8807
|
-
"speaker-outlined":
|
|
8808
|
-
"star-circle-outlined":
|
|
8809
|
-
"star-outlined":
|
|
8810
|
-
"start-break-outlined":
|
|
8811
|
-
"stash-outlined":
|
|
8812
|
-
"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,
|
|
8813
8815
|
strikethrough: strikethrough,
|
|
8814
|
-
"styler-outlined":
|
|
8815
|
-
"suitcase-clock-outlined":
|
|
8816
|
-
"suitcase-outlined":
|
|
8817
|
-
"survey-outlined":
|
|
8818
|
-
"switch-outlined":
|
|
8816
|
+
"styler-outlined": 59450,
|
|
8817
|
+
"suitcase-clock-outlined": 59451,
|
|
8818
|
+
"suitcase-outlined": 59452,
|
|
8819
|
+
"survey-outlined": 59453,
|
|
8820
|
+
"switch-outlined": 59454,
|
|
8819
8821
|
sync: sync,
|
|
8820
|
-
"tag-outlined":
|
|
8821
|
-
"target-outlined":
|
|
8822
|
-
"tennis-outlined":
|
|
8823
|
-
"thumb-down-outlined":
|
|
8824
|
-
"thumb-up-outlined":
|
|
8825
|
-
"ticket-outlined":
|
|
8826
|
-
"timesheet-outlined":
|
|
8827
|
-
"timesheets-outlined":
|
|
8828
|
-
"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,
|
|
8829
8831
|
transfer: transfer,
|
|
8830
|
-
"transportation-outlined":
|
|
8831
|
-
"trash-bin-outlined":
|
|
8832
|
-
"umbrela-outlined":
|
|
8833
|
-
"unavailability-outlined":
|
|
8832
|
+
"transportation-outlined": 59466,
|
|
8833
|
+
"trash-bin-outlined": 59467,
|
|
8834
|
+
"umbrela-outlined": 59468,
|
|
8835
|
+
"unavailability-outlined": 59469,
|
|
8834
8836
|
unavailable: unavailable,
|
|
8835
8837
|
underline: underline,
|
|
8836
|
-
"union-outlined":
|
|
8837
|
-
"unlock-outlined":
|
|
8838
|
-
"upload-outlined":
|
|
8839
|
-
"user-add-outlined":
|
|
8840
|
-
"user-circle-outlined":
|
|
8841
|
-
"user-gear-outlined":
|
|
8842
|
-
"user-out-outlined":
|
|
8843
|
-
"user-outlined":
|
|
8844
|
-
"user-rectangle-outlined":
|
|
8845
|
-
"video-1-outlined":
|
|
8846
|
-
"video-2-outlined":
|
|
8847
|
-
"volunteer-outlined":
|
|
8848
|
-
"wallet-outlined":
|
|
8849
|
-
"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
|
|
8850
8852
|
};
|
|
8851
8853
|
|
|
8852
8854
|
var HeroIcon = createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
|
|
@@ -9367,7 +9369,7 @@ var Typography = {
|
|
|
9367
9369
|
var getButtonSize = function getButtonSize(themeIsCompact, themeIsMedium) {
|
|
9368
9370
|
if (themeIsCompact) return scale(36);
|
|
9369
9371
|
if (themeIsMedium) return scale(48);
|
|
9370
|
-
return scale(
|
|
9372
|
+
return scale(48);
|
|
9371
9373
|
};
|
|
9372
9374
|
var getTextButtonPaddingVertical = function getTextButtonPaddingVertical(theme, themeInlineText, themeIsCompact) {
|
|
9373
9375
|
if (themeInlineText) {
|
|
@@ -9426,7 +9428,7 @@ var genFilledContainerStyles = function genFilledContainerStyles(theme, intent,
|
|
|
9426
9428
|
}
|
|
9427
9429
|
return {
|
|
9428
9430
|
alignSelf: 'stretch',
|
|
9429
|
-
|
|
9431
|
+
paddingHorizontal: theme.__hd__.button.space["default"].buttonPadding,
|
|
9430
9432
|
borderRadius: theme.__hd__.button.radii["default"]
|
|
9431
9433
|
};
|
|
9432
9434
|
};
|
|
@@ -9471,7 +9473,7 @@ var genOutlineContainerStyles = function genOutlineContainerStyles(theme, intent
|
|
|
9471
9473
|
}
|
|
9472
9474
|
return {
|
|
9473
9475
|
alignSelf: 'stretch',
|
|
9474
|
-
|
|
9476
|
+
paddingHorizontal: theme.__hd__.button.space["default"].buttonPadding - theme.__hd__.button.borderWidth["default"],
|
|
9475
9477
|
borderRadius: theme.__hd__.button.radii["default"]
|
|
9476
9478
|
};
|
|
9477
9479
|
};
|
|
@@ -9509,7 +9511,7 @@ var getTextContainerStyles = function getTextContainerStyles(theme, intent, load
|
|
|
9509
9511
|
};
|
|
9510
9512
|
}
|
|
9511
9513
|
return {
|
|
9512
|
-
|
|
9514
|
+
paddingHorizontal: inlineText ? 0 : theme.__hd__.button.space["default"].textButtonPadding
|
|
9513
9515
|
};
|
|
9514
9516
|
};
|
|
9515
9517
|
return _objectSpread2({
|
|
@@ -9957,14 +9959,14 @@ var Header = function Header(_ref) {
|
|
|
9957
9959
|
onPress: onRequestClose,
|
|
9958
9960
|
intent: "text",
|
|
9959
9961
|
testID: "bottom-sheet-close-icon",
|
|
9960
|
-
size: "
|
|
9962
|
+
size: "xxxsmall"
|
|
9961
9963
|
}) : /*#__PURE__*/React__default.createElement(StyledFloatingHeaderWrapper, {
|
|
9962
9964
|
onPress: onRequestClose,
|
|
9963
9965
|
testID: "bottom-sheet-close-icon"
|
|
9964
9966
|
}, /*#__PURE__*/React__default.createElement(Icon, {
|
|
9965
9967
|
icon: "cancel",
|
|
9966
9968
|
style: {
|
|
9967
|
-
fontSize: theme.__hd__.bottomSheet.sizes.
|
|
9969
|
+
fontSize: theme.__hd__.bottomSheet.sizes.closeIconSize
|
|
9968
9970
|
}
|
|
9969
9971
|
}))) : null), showDivider ? /*#__PURE__*/React__default.createElement(Divider, null) : null);
|
|
9970
9972
|
};
|
|
@@ -42483,8 +42485,6 @@ var FilterTrigger = function FilterTrigger(_ref) {
|
|
|
42483
42485
|
testID = _ref.testID,
|
|
42484
42486
|
style = _ref.style;
|
|
42485
42487
|
var shouldShowBadge = filterCount > 0 && active;
|
|
42486
|
-
var iconIntent = active ? 'text' : 'inactive';
|
|
42487
|
-
var typographyVariant = active ? 'small-bold' : 'small';
|
|
42488
42488
|
return /*#__PURE__*/React__default.createElement(StyledFilterWrapper, {
|
|
42489
42489
|
testID: testID,
|
|
42490
42490
|
style: style,
|
|
@@ -42492,24 +42492,26 @@ var FilterTrigger = function FilterTrigger(_ref) {
|
|
|
42492
42492
|
themeVariant: variant,
|
|
42493
42493
|
onPress: onPress,
|
|
42494
42494
|
themeHasLabel: !!label
|
|
42495
|
-
}, label ? /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(
|
|
42496
|
-
variant: typographyVariant
|
|
42497
|
-
}, label), shouldShowBadge && /*#__PURE__*/React__default.createElement(Badge, {
|
|
42498
|
-
content: filterCount,
|
|
42499
|
-
size: "small"
|
|
42500
|
-
}), suffix && /*#__PURE__*/React__default.createElement(Icon, {
|
|
42495
|
+
}, label ? /*#__PURE__*/React__default.createElement(React__default.Fragment, null, suffix && /*#__PURE__*/React__default.createElement(Icon, {
|
|
42501
42496
|
icon: suffix,
|
|
42502
42497
|
size: "xxxsmall",
|
|
42503
|
-
intent:
|
|
42498
|
+
intent: "text",
|
|
42504
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"
|
|
42505
42506
|
})) : /*#__PURE__*/React__default.createElement(React__default.Fragment, null, suffix && /*#__PURE__*/React__default.createElement(Icon, {
|
|
42506
42507
|
icon: suffix,
|
|
42507
42508
|
size: "xsmall",
|
|
42508
|
-
intent:
|
|
42509
|
+
intent: "text",
|
|
42509
42510
|
testID: "".concat(testID, "-suffix")
|
|
42510
42511
|
}), shouldShowBadge && /*#__PURE__*/React__default.createElement(StyledBadge, {
|
|
42511
42512
|
content: filterCount,
|
|
42512
42513
|
size: "small",
|
|
42514
|
+
intent: "primary",
|
|
42513
42515
|
themeHasLabel: !!label
|
|
42514
42516
|
})));
|
|
42515
42517
|
};
|
package/lib/index.js
CHANGED
|
@@ -3806,6 +3806,7 @@ var StyledHeaderWrapper$1 = index$c(reactNative.View)(function (_ref5) {
|
|
|
3806
3806
|
var theme = _ref5.theme;
|
|
3807
3807
|
return {
|
|
3808
3808
|
flexDirection: 'row',
|
|
3809
|
+
minHeight: theme.__hd__.bottomSheet.sizes.headerMinHeight,
|
|
3809
3810
|
paddingVertical: theme.__hd__.bottomSheet.space.headerWrapperVerticalPadding,
|
|
3810
3811
|
paddingHorizontal: theme.__hd__.bottomSheet.space.headerWrapperHorizontalPadding
|
|
3811
3812
|
};
|
|
@@ -3827,7 +3828,7 @@ var StyledFooter = index$c(reactNative.View)(function (_ref6) {
|
|
|
3827
3828
|
var StyledIconWrapper$3 = index$c(reactNative.View)(function (_ref7) {
|
|
3828
3829
|
var theme = _ref7.theme;
|
|
3829
3830
|
return {
|
|
3830
|
-
alignItems: '
|
|
3831
|
+
alignItems: 'center',
|
|
3831
3832
|
justifyContent: 'center',
|
|
3832
3833
|
width: theme.__hd__.bottomSheet.sizes.closeIcon,
|
|
3833
3834
|
height: theme.__hd__.bottomSheet.sizes.closeIcon,
|
|
@@ -6155,7 +6156,9 @@ var getBottomSheetTheme = function getBottomSheetTheme(theme) {
|
|
|
6155
6156
|
};
|
|
6156
6157
|
var sizes = {
|
|
6157
6158
|
closeIcon: theme.sizes.xxxlarge,
|
|
6158
|
-
floatingCloseIcon
|
|
6159
|
+
// Renamed from floatingCloseIcon — shared by both fixed and floating variants
|
|
6160
|
+
closeIconSize: theme.sizes.smallMedium,
|
|
6161
|
+
headerMinHeight: theme.sizes.xxxxxlarge
|
|
6159
6162
|
};
|
|
6160
6163
|
var space = {
|
|
6161
6164
|
headerWrapperVerticalPadding: theme.space.small,
|
|
@@ -7960,21 +7963,19 @@ var getAppCueTheme = function getAppCueTheme(theme) {
|
|
|
7960
7963
|
var getFilterTriggerTheme = function getFilterTriggerTheme(theme) {
|
|
7961
7964
|
var borderWidths = {
|
|
7962
7965
|
wrapper: {
|
|
7963
|
-
filled: theme.borderWidths.
|
|
7964
|
-
outlined: theme.borderWidths.
|
|
7966
|
+
filled: theme.borderWidths.base,
|
|
7967
|
+
outlined: theme.borderWidths.base,
|
|
7965
7968
|
ghost: 0
|
|
7966
7969
|
}
|
|
7967
7970
|
};
|
|
7968
7971
|
var colors = {
|
|
7969
7972
|
wrapper: {
|
|
7970
|
-
activeBackground: theme.colors.highlightedSurface,
|
|
7971
|
-
inactiveBackground: theme.colors.neutralGlobalSurface,
|
|
7972
7973
|
background: {
|
|
7973
7974
|
active: {
|
|
7974
7975
|
filled: theme.colors.highlightedSurface,
|
|
7975
|
-
outlined:
|
|
7976
|
-
ghost:
|
|
7977
|
-
filledLabeless: theme.colors.
|
|
7976
|
+
outlined: theme.colors.highlightedSurface,
|
|
7977
|
+
ghost: theme.colors.highlightedSurface,
|
|
7978
|
+
filledLabeless: theme.colors.highlightedSurface
|
|
7978
7979
|
},
|
|
7979
7980
|
inactive: {
|
|
7980
7981
|
filled: theme.colors.neutralGlobalSurface,
|
|
@@ -7985,13 +7986,13 @@ var getFilterTriggerTheme = function getFilterTriggerTheme(theme) {
|
|
|
7985
7986
|
border: {
|
|
7986
7987
|
active: {
|
|
7987
7988
|
filled: theme.colors.highlightedSurface,
|
|
7988
|
-
outlined: theme.colors.
|
|
7989
|
+
outlined: theme.colors.primary,
|
|
7989
7990
|
ghost: 'transparent',
|
|
7990
|
-
filledLabeless: theme.colors.
|
|
7991
|
+
filledLabeless: theme.colors.highlightedSurface
|
|
7991
7992
|
},
|
|
7992
7993
|
inactive: {
|
|
7993
7994
|
filled: theme.colors.neutralGlobalSurface,
|
|
7994
|
-
outlined: theme.colors.
|
|
7995
|
+
outlined: theme.colors.primary,
|
|
7995
7996
|
ghost: 'transparent'
|
|
7996
7997
|
}
|
|
7997
7998
|
}
|
|
@@ -8297,7 +8298,7 @@ var LoadingIndicator = function LoadingIndicator(_ref2) {
|
|
|
8297
8298
|
};
|
|
8298
8299
|
|
|
8299
8300
|
// 🔴 DO NOT EDIT — This file is generated automatically.
|
|
8300
|
-
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'];
|
|
8301
8302
|
|
|
8302
8303
|
var activate = 59000;
|
|
8303
8304
|
var adjustment = 59003;
|
|
@@ -8377,20 +8378,20 @@ var add = 59203;
|
|
|
8377
8378
|
var bold = 59233;
|
|
8378
8379
|
var cancel = 59251;
|
|
8379
8380
|
var checkmark = 59257;
|
|
8380
|
-
var italic =
|
|
8381
|
-
var local_mall_outlined =
|
|
8382
|
-
var number$2 =
|
|
8383
|
-
var percentage =
|
|
8384
|
-
var redeem =
|
|
8385
|
-
var refresh =
|
|
8386
|
-
var remove$1 =
|
|
8387
|
-
var restart =
|
|
8388
|
-
var shopping_basket_outlined =
|
|
8389
|
-
var strikethrough =
|
|
8390
|
-
var sync =
|
|
8391
|
-
var transfer =
|
|
8392
|
-
var unavailable =
|
|
8393
|
-
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;
|
|
8394
8395
|
var glyphMap = {
|
|
8395
8396
|
activate: activate,
|
|
8396
8397
|
"add-emoji": 59001,
|
|
@@ -8743,140 +8744,141 @@ var glyphMap = {
|
|
|
8743
8744
|
"happy-sun-outlined": 59348,
|
|
8744
8745
|
"health-bag-outlined": 59349,
|
|
8745
8746
|
"heart-outlined": 59350,
|
|
8746
|
-
"
|
|
8747
|
-
"home-outlined": 59352,
|
|
8748
|
-
"
|
|
8749
|
-
"
|
|
8750
|
-
"
|
|
8751
|
-
"
|
|
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,
|
|
8752
8754
|
italic: italic,
|
|
8753
|
-
"job-search-outlined":
|
|
8754
|
-
"leave-approval-outlined":
|
|
8755
|
-
"lighting-outlined":
|
|
8756
|
-
"link-1":
|
|
8757
|
-
"link-2":
|
|
8758
|
-
"list-outlined":
|
|
8759
|
-
"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,
|
|
8760
8762
|
local_mall_outlined: local_mall_outlined,
|
|
8761
|
-
"location-on-outlined":
|
|
8762
|
-
"location-outlined":
|
|
8763
|
-
"lock-outlined":
|
|
8764
|
-
"locked-file-outlined":
|
|
8765
|
-
"log-out":
|
|
8766
|
-
"mail-outlined":
|
|
8767
|
-
"map-outlined":
|
|
8768
|
-
"media-content-outlined":
|
|
8769
|
-
"menu-close":
|
|
8770
|
-
"menu-expand":
|
|
8771
|
-
"menu-fold-outlined":
|
|
8772
|
-
"menu-unfold-outlined":
|
|
8773
|
-
"moneybag-outlined":
|
|
8774
|
-
"moon-outlined":
|
|
8775
|
-
"more-horizontal":
|
|
8776
|
-
"more-vertical":
|
|
8777
|
-
"morning-outlined":
|
|
8778
|
-
"multiple-folders-outlined":
|
|
8779
|
-
"multiple-users-outlined":
|
|
8780
|
-
"near-me-outlined":
|
|
8781
|
-
"node-outlined":
|
|
8782
|
-
"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,
|
|
8783
8785
|
number: number$2,
|
|
8784
|
-
"overview-outlined":
|
|
8785
|
-
"park-outlined":
|
|
8786
|
-
"payment-summary-outlined":
|
|
8787
|
-
"payslip-outlined":
|
|
8788
|
-
"pencil-outlined":
|
|
8786
|
+
"overview-outlined": 59390,
|
|
8787
|
+
"park-outlined": 59391,
|
|
8788
|
+
"payment-summary-outlined": 59392,
|
|
8789
|
+
"payslip-outlined": 59393,
|
|
8790
|
+
"pencil-outlined": 59394,
|
|
8789
8791
|
percentage: percentage,
|
|
8790
|
-
"phone-outlined":
|
|
8791
|
-
"piggy-bank-outlined":
|
|
8792
|
-
"plane-outlined":
|
|
8793
|
-
"play-circle-outlined":
|
|
8794
|
-
"pound-box-outlined":
|
|
8795
|
-
"pound-card-outlined":
|
|
8796
|
-
"pound-coin-shine-outlined":
|
|
8797
|
-
"pound-credit-card-outlined":
|
|
8798
|
-
"print-outlined":
|
|
8799
|
-
"profile-2user-outlined":
|
|
8800
|
-
"propane-tank-outlined":
|
|
8801
|
-
"qr-code-outlined":
|
|
8802
|
-
"qualification-outlined":
|
|
8803
|
-
"question-mark":
|
|
8804
|
-
"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,
|
|
8805
8807
|
redeem: redeem,
|
|
8806
8808
|
refresh: refresh,
|
|
8807
8809
|
remove: remove$1,
|
|
8808
|
-
"reply-outlined":
|
|
8810
|
+
"reply-outlined": 59414,
|
|
8809
8811
|
restart: restart,
|
|
8810
|
-
"restaurant-outlined":
|
|
8811
|
-
"resume-outlined":
|
|
8812
|
-
"return-arrow":
|
|
8813
|
-
"rocket-launch-outlined":
|
|
8814
|
-
"rostering-outlined":
|
|
8815
|
-
"safety-outlined":
|
|
8816
|
-
"save-outlined":
|
|
8817
|
-
"schedule-outlined":
|
|
8818
|
-
"search-outlined":
|
|
8819
|
-
"search-secured-outlined":
|
|
8820
|
-
"send-outlined":
|
|
8821
|
-
"share-1":
|
|
8822
|
-
"share-2":
|
|
8823
|
-
"share-outlined-2":
|
|
8824
|
-
"share-outlined":
|
|
8825
|
-
"shield-check-outlined":
|
|
8826
|
-
"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,
|
|
8827
8829
|
shopping_basket_outlined: shopping_basket_outlined,
|
|
8828
|
-
"show-chart-outlined":
|
|
8829
|
-
"single-down-arrow":
|
|
8830
|
-
"single-left-arrow":
|
|
8831
|
-
"single-right-arrow":
|
|
8832
|
-
"single-up-arrow":
|
|
8833
|
-
"smart-match-outlined":
|
|
8834
|
-
"sparkle-2-outlined":
|
|
8835
|
-
"sparkle-outlined":
|
|
8836
|
-
"speaker-active-outlined":
|
|
8837
|
-
"speaker-outlined":
|
|
8838
|
-
"star-circle-outlined":
|
|
8839
|
-
"star-outlined":
|
|
8840
|
-
"start-break-outlined":
|
|
8841
|
-
"stash-outlined":
|
|
8842
|
-
"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,
|
|
8843
8845
|
strikethrough: strikethrough,
|
|
8844
|
-
"styler-outlined":
|
|
8845
|
-
"suitcase-clock-outlined":
|
|
8846
|
-
"suitcase-outlined":
|
|
8847
|
-
"survey-outlined":
|
|
8848
|
-
"switch-outlined":
|
|
8846
|
+
"styler-outlined": 59450,
|
|
8847
|
+
"suitcase-clock-outlined": 59451,
|
|
8848
|
+
"suitcase-outlined": 59452,
|
|
8849
|
+
"survey-outlined": 59453,
|
|
8850
|
+
"switch-outlined": 59454,
|
|
8849
8851
|
sync: sync,
|
|
8850
|
-
"tag-outlined":
|
|
8851
|
-
"target-outlined":
|
|
8852
|
-
"tennis-outlined":
|
|
8853
|
-
"thumb-down-outlined":
|
|
8854
|
-
"thumb-up-outlined":
|
|
8855
|
-
"ticket-outlined":
|
|
8856
|
-
"timesheet-outlined":
|
|
8857
|
-
"timesheets-outlined":
|
|
8858
|
-
"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,
|
|
8859
8861
|
transfer: transfer,
|
|
8860
|
-
"transportation-outlined":
|
|
8861
|
-
"trash-bin-outlined":
|
|
8862
|
-
"umbrela-outlined":
|
|
8863
|
-
"unavailability-outlined":
|
|
8862
|
+
"transportation-outlined": 59466,
|
|
8863
|
+
"trash-bin-outlined": 59467,
|
|
8864
|
+
"umbrela-outlined": 59468,
|
|
8865
|
+
"unavailability-outlined": 59469,
|
|
8864
8866
|
unavailable: unavailable,
|
|
8865
8867
|
underline: underline,
|
|
8866
|
-
"union-outlined":
|
|
8867
|
-
"unlock-outlined":
|
|
8868
|
-
"upload-outlined":
|
|
8869
|
-
"user-add-outlined":
|
|
8870
|
-
"user-circle-outlined":
|
|
8871
|
-
"user-gear-outlined":
|
|
8872
|
-
"user-out-outlined":
|
|
8873
|
-
"user-outlined":
|
|
8874
|
-
"user-rectangle-outlined":
|
|
8875
|
-
"video-1-outlined":
|
|
8876
|
-
"video-2-outlined":
|
|
8877
|
-
"volunteer-outlined":
|
|
8878
|
-
"wallet-outlined":
|
|
8879
|
-
"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
|
|
8880
8882
|
};
|
|
8881
8883
|
|
|
8882
8884
|
var HeroIcon = reactNativeVectorIcons.createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
|
|
@@ -9397,7 +9399,7 @@ var Typography = {
|
|
|
9397
9399
|
var getButtonSize = function getButtonSize(themeIsCompact, themeIsMedium) {
|
|
9398
9400
|
if (themeIsCompact) return scale(36);
|
|
9399
9401
|
if (themeIsMedium) return scale(48);
|
|
9400
|
-
return scale(
|
|
9402
|
+
return scale(48);
|
|
9401
9403
|
};
|
|
9402
9404
|
var getTextButtonPaddingVertical = function getTextButtonPaddingVertical(theme, themeInlineText, themeIsCompact) {
|
|
9403
9405
|
if (themeInlineText) {
|
|
@@ -9456,7 +9458,7 @@ var genFilledContainerStyles = function genFilledContainerStyles(theme, intent,
|
|
|
9456
9458
|
}
|
|
9457
9459
|
return {
|
|
9458
9460
|
alignSelf: 'stretch',
|
|
9459
|
-
|
|
9461
|
+
paddingHorizontal: theme.__hd__.button.space["default"].buttonPadding,
|
|
9460
9462
|
borderRadius: theme.__hd__.button.radii["default"]
|
|
9461
9463
|
};
|
|
9462
9464
|
};
|
|
@@ -9501,7 +9503,7 @@ var genOutlineContainerStyles = function genOutlineContainerStyles(theme, intent
|
|
|
9501
9503
|
}
|
|
9502
9504
|
return {
|
|
9503
9505
|
alignSelf: 'stretch',
|
|
9504
|
-
|
|
9506
|
+
paddingHorizontal: theme.__hd__.button.space["default"].buttonPadding - theme.__hd__.button.borderWidth["default"],
|
|
9505
9507
|
borderRadius: theme.__hd__.button.radii["default"]
|
|
9506
9508
|
};
|
|
9507
9509
|
};
|
|
@@ -9539,7 +9541,7 @@ var getTextContainerStyles = function getTextContainerStyles(theme, intent, load
|
|
|
9539
9541
|
};
|
|
9540
9542
|
}
|
|
9541
9543
|
return {
|
|
9542
|
-
|
|
9544
|
+
paddingHorizontal: inlineText ? 0 : theme.__hd__.button.space["default"].textButtonPadding
|
|
9543
9545
|
};
|
|
9544
9546
|
};
|
|
9545
9547
|
return _objectSpread2({
|
|
@@ -9987,14 +9989,14 @@ var Header = function Header(_ref) {
|
|
|
9987
9989
|
onPress: onRequestClose,
|
|
9988
9990
|
intent: "text",
|
|
9989
9991
|
testID: "bottom-sheet-close-icon",
|
|
9990
|
-
size: "
|
|
9992
|
+
size: "xxxsmall"
|
|
9991
9993
|
}) : /*#__PURE__*/React__namespace.default.createElement(StyledFloatingHeaderWrapper, {
|
|
9992
9994
|
onPress: onRequestClose,
|
|
9993
9995
|
testID: "bottom-sheet-close-icon"
|
|
9994
9996
|
}, /*#__PURE__*/React__namespace.default.createElement(Icon, {
|
|
9995
9997
|
icon: "cancel",
|
|
9996
9998
|
style: {
|
|
9997
|
-
fontSize: theme.__hd__.bottomSheet.sizes.
|
|
9999
|
+
fontSize: theme.__hd__.bottomSheet.sizes.closeIconSize
|
|
9998
10000
|
}
|
|
9999
10001
|
}))) : null), showDivider ? /*#__PURE__*/React__namespace.default.createElement(Divider, null) : null);
|
|
10000
10002
|
};
|
|
@@ -42513,8 +42515,6 @@ var FilterTrigger = function FilterTrigger(_ref) {
|
|
|
42513
42515
|
testID = _ref.testID,
|
|
42514
42516
|
style = _ref.style;
|
|
42515
42517
|
var shouldShowBadge = filterCount > 0 && active;
|
|
42516
|
-
var iconIntent = active ? 'text' : 'inactive';
|
|
42517
|
-
var typographyVariant = active ? 'small-bold' : 'small';
|
|
42518
42518
|
return /*#__PURE__*/React__namespace.default.createElement(StyledFilterWrapper, {
|
|
42519
42519
|
testID: testID,
|
|
42520
42520
|
style: style,
|
|
@@ -42522,24 +42522,26 @@ var FilterTrigger = function FilterTrigger(_ref) {
|
|
|
42522
42522
|
themeVariant: variant,
|
|
42523
42523
|
onPress: onPress,
|
|
42524
42524
|
themeHasLabel: !!label
|
|
42525
|
-
}, label ? /*#__PURE__*/React__namespace.default.createElement(React__namespace.default.Fragment, null, /*#__PURE__*/React__namespace.default.createElement(
|
|
42526
|
-
variant: typographyVariant
|
|
42527
|
-
}, label), shouldShowBadge && /*#__PURE__*/React__namespace.default.createElement(Badge$1, {
|
|
42528
|
-
content: filterCount,
|
|
42529
|
-
size: "small"
|
|
42530
|
-
}), 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, {
|
|
42531
42526
|
icon: suffix,
|
|
42532
42527
|
size: "xxxsmall",
|
|
42533
|
-
intent:
|
|
42528
|
+
intent: "text",
|
|
42534
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"
|
|
42535
42536
|
})) : /*#__PURE__*/React__namespace.default.createElement(React__namespace.default.Fragment, null, suffix && /*#__PURE__*/React__namespace.default.createElement(Icon, {
|
|
42536
42537
|
icon: suffix,
|
|
42537
42538
|
size: "xsmall",
|
|
42538
|
-
intent:
|
|
42539
|
+
intent: "text",
|
|
42539
42540
|
testID: "".concat(testID, "-suffix")
|
|
42540
42541
|
}), shouldShowBadge && /*#__PURE__*/React__namespace.default.createElement(StyledBadge, {
|
|
42541
42542
|
content: filterCount,
|
|
42542
42543
|
size: "small",
|
|
42544
|
+
intent: "primary",
|
|
42543
42545
|
themeHasLabel: !!label
|
|
42544
42546
|
})));
|
|
42545
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,11 +23,11 @@
|
|
|
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": {
|
|
30
|
-
"@hero-design/react-native-month-year-picker": "^8.45.
|
|
30
|
+
"@hero-design/react-native-month-year-picker": "^8.45.2",
|
|
31
31
|
"@ptomasroos/react-native-multi-slider": "^2.2.2",
|
|
32
32
|
"@react-native-community/datetimepicker": "^8.4.4",
|
|
33
33
|
"@react-native-community/slider": " ^5.0.1",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"@eslint/compat": "^1.1.1",
|
|
56
56
|
"@eslint/eslintrc": "^3.1.0",
|
|
57
57
|
"@eslint/js": "^9.8.0",
|
|
58
|
-
"@hero-design/eslint-plugin": "9.2.
|
|
59
|
-
"@hero-design/react-native-month-year-picker": "^8.45.
|
|
58
|
+
"@hero-design/eslint-plugin": "9.2.3",
|
|
59
|
+
"@hero-design/react-native-month-year-picker": "^8.45.2",
|
|
60
60
|
"@ptomasroos/react-native-multi-slider": "^2.2.2",
|
|
61
61
|
"@react-native-community/datetimepicker": "8.4.4",
|
|
62
62
|
"@react-native-community/slider": "^5.0.1",
|
|
@@ -75,17 +75,17 @@
|
|
|
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.6
|
|
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",
|
|
87
87
|
"jest-junit": "^16.0.0",
|
|
88
|
-
"prettier-config-hd": "8.42.
|
|
88
|
+
"prettier-config-hd": "8.42.4",
|
|
89
89
|
"react": "19.1.0",
|
|
90
90
|
"react-dom": "19.1.0",
|
|
91
91
|
"react-native": "0.81.5",
|