@hero-design/rn 8.127.1-test-auto-workflow.0 → 8.128.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,14 +1,43 @@
1
1
  # @hero-design/rn
2
2
 
3
- ## 8.127.1-test-auto-workflow.0
3
+ ## 8.128.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#5078](https://github.com/Thinkei/hero-design/pull/5078) [`69f51118368fcc4b49d1cc6f2fe1ed8deb882ea0`](https://github.com/Thinkei/hero-design/commit/69f51118368fcc4b49d1cc6f2fe1ed8deb882ea0) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Icon] Add `history-outlined` icon to web and mobile
4
8
 
5
9
  ### Patch Changes
6
10
 
7
- - bump version
11
+ - [#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
12
+
13
+ - Default button height reduced from `scale(60)` to `scale(48)` to align with the compact/medium sizes.
14
+ - Changed `padding` to `paddingHorizontal` on filled, outline, and text button containers so vertical padding no longer inflates the button height.
15
+
16
+ - [#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
17
+
18
+ - Icon position moved before label text (was after)
19
+ - Active state backgrounds unified to `highlightedSurface` for all variants
20
+ - Outlined variant border changed from `medium` to `base`, color from `primaryOutline`/`secondaryOutline` to `primary`
21
+ - Label weight fixed to `small` (was `small-bold` when active)
22
+ - Icon intent fixed to `text` (was `inactive` when inactive)
23
+ - Badge intent set to `primary` (was unset)
24
+ - Filter icon SVG updated to match web version
8
25
 
9
26
  - Updated dependencies []:
10
- - @hero-design/colors@8.47.4-test-auto-workflow.0
11
- - @hero-design/react-native-month-year-picker@8.45.3-test-auto-workflow.0
27
+ - @hero-design/react-native-month-year-picker@8.45.2
28
+
29
+ ## 8.127.1
30
+
31
+ ### Patch Changes
32
+
33
+ - [#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
34
+
35
+ - Added explicit `minHeight` (64px) to the header wrapper, codifying the layout that previously existed implicitly
36
+ - Reduced close button icon size from 16px to 12px by changing `Button.Icon` size from `xsmall` to `xxxsmall`
37
+ - Centred the close icon within its 48x48px touch target (was right-aligned)
38
+ - Renamed `floatingCloseIcon` theme token to `closeIconSize` since both variants now share the same value
39
+
40
+ **Note:** If you reference `theme.__hd__.bottomSheet.sizes.floatingCloseIcon` directly, update it to `theme.__hd__.bottomSheet.sizes.closeIconSize`.
12
41
 
13
42
  ## 8.127.0
14
43
 
Binary file
package/es/index.js CHANGED
@@ -5815,7 +5815,9 @@ var getBottomSheetTheme = function getBottomSheetTheme(theme) {
5815
5815
  };
5816
5816
  var sizes = {
5817
5817
  closeIcon: theme.sizes.xxxlarge,
5818
- floatingCloseIcon: theme.sizes.smallMedium
5818
+ // Renamed from floatingCloseIcon — shared by both fixed and floating variants
5819
+ closeIconSize: theme.sizes.smallMedium,
5820
+ headerMinHeight: theme.sizes.xxxxxlarge
5819
5821
  };
5820
5822
  var space = {
5821
5823
  headerWrapperVerticalPadding: theme.space.small,
@@ -7778,21 +7780,19 @@ var getAppCueTheme = function getAppCueTheme(theme) {
7778
7780
  var getFilterTriggerTheme = function getFilterTriggerTheme(theme) {
7779
7781
  var borderWidths = {
7780
7782
  wrapper: {
7781
- filled: theme.borderWidths.medium,
7782
- outlined: theme.borderWidths.medium,
7783
+ filled: theme.borderWidths.base,
7784
+ outlined: theme.borderWidths.base,
7783
7785
  ghost: 0
7784
7786
  }
7785
7787
  };
7786
7788
  var colors = {
7787
7789
  wrapper: {
7788
- activeBackground: theme.colors.highlightedSurface,
7789
- inactiveBackground: theme.colors.neutralGlobalSurface,
7790
7790
  background: {
7791
7791
  active: {
7792
7792
  filled: theme.colors.highlightedSurface,
7793
- outlined: 'transparent',
7794
- ghost: 'transparent',
7795
- filledLabeless: theme.colors.neutralGlobalSurface
7793
+ outlined: theme.colors.highlightedSurface,
7794
+ ghost: theme.colors.highlightedSurface,
7795
+ filledLabeless: theme.colors.highlightedSurface
7796
7796
  },
7797
7797
  inactive: {
7798
7798
  filled: theme.colors.neutralGlobalSurface,
@@ -7803,13 +7803,13 @@ var getFilterTriggerTheme = function getFilterTriggerTheme(theme) {
7803
7803
  border: {
7804
7804
  active: {
7805
7805
  filled: theme.colors.highlightedSurface,
7806
- outlined: theme.colors.primaryOutline,
7806
+ outlined: theme.colors.primary,
7807
7807
  ghost: 'transparent',
7808
- filledLabeless: theme.colors.neutralGlobalSurface
7808
+ filledLabeless: theme.colors.highlightedSurface
7809
7809
  },
7810
7810
  inactive: {
7811
7811
  filled: theme.colors.neutralGlobalSurface,
7812
- outlined: theme.colors.secondaryOutline,
7812
+ outlined: theme.colors.primary,
7813
7813
  ghost: 'transparent'
7814
7814
  }
7815
7815
  }
@@ -8507,7 +8507,7 @@ var Typography = {
8507
8507
  };
8508
8508
 
8509
8509
  // 🔴 DO NOT EDIT — This file is generated automatically.
8510
- 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'];
8510
+ 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'];
8511
8511
 
8512
8512
  var activate = 59000;
8513
8513
  var adjustment = 59003;
@@ -8587,20 +8587,20 @@ var add = 59203;
8587
8587
  var bold = 59233;
8588
8588
  var cancel = 59251;
8589
8589
  var checkmark = 59257;
8590
- var italic = 59357;
8591
- var local_mall_outlined = 59365;
8592
- var number$2 = 59388;
8593
- var percentage = 59394;
8594
- var redeem = 59410;
8595
- var refresh = 59411;
8596
- var remove$1 = 59412;
8597
- var restart = 59414;
8598
- var shopping_basket_outlined = 59432;
8599
- var strikethrough = 59448;
8600
- var sync = 59454;
8601
- var transfer = 59464;
8602
- var unavailable = 59469;
8603
- var underline = 59470;
8590
+ var italic = 59358;
8591
+ var local_mall_outlined = 59366;
8592
+ var number$2 = 59389;
8593
+ var percentage = 59395;
8594
+ var redeem = 59411;
8595
+ var refresh = 59412;
8596
+ var remove$1 = 59413;
8597
+ var restart = 59415;
8598
+ var shopping_basket_outlined = 59433;
8599
+ var strikethrough = 59449;
8600
+ var sync = 59455;
8601
+ var transfer = 59465;
8602
+ var unavailable = 59470;
8603
+ var underline = 59471;
8604
8604
  var glyphMap = {
8605
8605
  activate: activate,
8606
8606
  "add-emoji": 59001,
@@ -8953,140 +8953,141 @@ var glyphMap = {
8953
8953
  "happy-sun-outlined": 59348,
8954
8954
  "health-bag-outlined": 59349,
8955
8955
  "heart-outlined": 59350,
8956
- "home-active-outlined": 59351,
8957
- "home-outlined": 59352,
8958
- "id-card-outlined": 59353,
8959
- "image-outlined": 59354,
8960
- "import-outlined": 59355,
8961
- "instapay-outlined": 59356,
8956
+ "history-outlined": 59351,
8957
+ "home-active-outlined": 59352,
8958
+ "home-outlined": 59353,
8959
+ "id-card-outlined": 59354,
8960
+ "image-outlined": 59355,
8961
+ "import-outlined": 59356,
8962
+ "instapay-outlined": 59357,
8962
8963
  italic: italic,
8963
- "job-search-outlined": 59358,
8964
- "leave-approval-outlined": 59359,
8965
- "lighting-outlined": 59360,
8966
- "link-1": 59361,
8967
- "link-2": 59362,
8968
- "list-outlined": 59363,
8969
- "live-help-outlined": 59364,
8964
+ "job-search-outlined": 59359,
8965
+ "leave-approval-outlined": 59360,
8966
+ "lighting-outlined": 59361,
8967
+ "link-1": 59362,
8968
+ "link-2": 59363,
8969
+ "list-outlined": 59364,
8970
+ "live-help-outlined": 59365,
8970
8971
  local_mall_outlined: local_mall_outlined,
8971
- "location-on-outlined": 59366,
8972
- "location-outlined": 59367,
8973
- "lock-outlined": 59368,
8974
- "locked-file-outlined": 59369,
8975
- "log-out": 59370,
8976
- "mail-outlined": 59371,
8977
- "map-outlined": 59372,
8978
- "media-content-outlined": 59373,
8979
- "menu-close": 59374,
8980
- "menu-expand": 59375,
8981
- "menu-fold-outlined": 59376,
8982
- "menu-unfold-outlined": 59377,
8983
- "moneybag-outlined": 59378,
8984
- "moon-outlined": 59379,
8985
- "more-horizontal": 59380,
8986
- "more-vertical": 59381,
8987
- "morning-outlined": 59382,
8988
- "multiple-folders-outlined": 59383,
8989
- "multiple-users-outlined": 59384,
8990
- "near-me-outlined": 59385,
8991
- "node-outlined": 59386,
8992
- "number-points": 59387,
8972
+ "location-on-outlined": 59367,
8973
+ "location-outlined": 59368,
8974
+ "lock-outlined": 59369,
8975
+ "locked-file-outlined": 59370,
8976
+ "log-out": 59371,
8977
+ "mail-outlined": 59372,
8978
+ "map-outlined": 59373,
8979
+ "media-content-outlined": 59374,
8980
+ "menu-close": 59375,
8981
+ "menu-expand": 59376,
8982
+ "menu-fold-outlined": 59377,
8983
+ "menu-unfold-outlined": 59378,
8984
+ "moneybag-outlined": 59379,
8985
+ "moon-outlined": 59380,
8986
+ "more-horizontal": 59381,
8987
+ "more-vertical": 59382,
8988
+ "morning-outlined": 59383,
8989
+ "multiple-folders-outlined": 59384,
8990
+ "multiple-users-outlined": 59385,
8991
+ "near-me-outlined": 59386,
8992
+ "node-outlined": 59387,
8993
+ "number-points": 59388,
8993
8994
  number: number$2,
8994
- "overview-outlined": 59389,
8995
- "park-outlined": 59390,
8996
- "payment-summary-outlined": 59391,
8997
- "payslip-outlined": 59392,
8998
- "pencil-outlined": 59393,
8995
+ "overview-outlined": 59390,
8996
+ "park-outlined": 59391,
8997
+ "payment-summary-outlined": 59392,
8998
+ "payslip-outlined": 59393,
8999
+ "pencil-outlined": 59394,
8999
9000
  percentage: percentage,
9000
- "phone-outlined": 59395,
9001
- "piggy-bank-outlined": 59396,
9002
- "plane-outlined": 59397,
9003
- "play-circle-outlined": 59398,
9004
- "pound-box-outlined": 59399,
9005
- "pound-card-outlined": 59400,
9006
- "pound-coin-shine-outlined": 59401,
9007
- "pound-credit-card-outlined": 59402,
9008
- "print-outlined": 59403,
9009
- "profile-2user-outlined": 59404,
9010
- "propane-tank-outlined": 59405,
9011
- "qr-code-outlined": 59406,
9012
- "qualification-outlined": 59407,
9013
- "question-mark": 59408,
9014
- "re-assign": 59409,
9001
+ "phone-outlined": 59396,
9002
+ "piggy-bank-outlined": 59397,
9003
+ "plane-outlined": 59398,
9004
+ "play-circle-outlined": 59399,
9005
+ "pound-box-outlined": 59400,
9006
+ "pound-card-outlined": 59401,
9007
+ "pound-coin-shine-outlined": 59402,
9008
+ "pound-credit-card-outlined": 59403,
9009
+ "print-outlined": 59404,
9010
+ "profile-2user-outlined": 59405,
9011
+ "propane-tank-outlined": 59406,
9012
+ "qr-code-outlined": 59407,
9013
+ "qualification-outlined": 59408,
9014
+ "question-mark": 59409,
9015
+ "re-assign": 59410,
9015
9016
  redeem: redeem,
9016
9017
  refresh: refresh,
9017
9018
  remove: remove$1,
9018
- "reply-outlined": 59413,
9019
+ "reply-outlined": 59414,
9019
9020
  restart: restart,
9020
- "restaurant-outlined": 59415,
9021
- "resume-outlined": 59416,
9022
- "return-arrow": 59417,
9023
- "rocket-launch-outlined": 59418,
9024
- "rostering-outlined": 59419,
9025
- "safety-outlined": 59420,
9026
- "save-outlined": 59421,
9027
- "schedule-outlined": 59422,
9028
- "search-outlined": 59423,
9029
- "search-secured-outlined": 59424,
9030
- "send-outlined": 59425,
9031
- "share-1": 59426,
9032
- "share-2": 59427,
9033
- "share-outlined-2": 59428,
9034
- "share-outlined": 59429,
9035
- "shield-check-outlined": 59430,
9036
- "shop-outlined": 59431,
9021
+ "restaurant-outlined": 59416,
9022
+ "resume-outlined": 59417,
9023
+ "return-arrow": 59418,
9024
+ "rocket-launch-outlined": 59419,
9025
+ "rostering-outlined": 59420,
9026
+ "safety-outlined": 59421,
9027
+ "save-outlined": 59422,
9028
+ "schedule-outlined": 59423,
9029
+ "search-outlined": 59424,
9030
+ "search-secured-outlined": 59425,
9031
+ "send-outlined": 59426,
9032
+ "share-1": 59427,
9033
+ "share-2": 59428,
9034
+ "share-outlined-2": 59429,
9035
+ "share-outlined": 59430,
9036
+ "shield-check-outlined": 59431,
9037
+ "shop-outlined": 59432,
9037
9038
  shopping_basket_outlined: shopping_basket_outlined,
9038
- "show-chart-outlined": 59433,
9039
- "single-down-arrow": 59434,
9040
- "single-left-arrow": 59435,
9041
- "single-right-arrow": 59436,
9042
- "single-up-arrow": 59437,
9043
- "smart-match-outlined": 59438,
9044
- "sparkle-2-outlined": 59439,
9045
- "sparkle-outlined": 59440,
9046
- "speaker-active-outlined": 59441,
9047
- "speaker-outlined": 59442,
9048
- "star-circle-outlined": 59443,
9049
- "star-outlined": 59444,
9050
- "start-break-outlined": 59445,
9051
- "stash-outlined": 59446,
9052
- "stopwatch-outlined": 59447,
9039
+ "show-chart-outlined": 59434,
9040
+ "single-down-arrow": 59435,
9041
+ "single-left-arrow": 59436,
9042
+ "single-right-arrow": 59437,
9043
+ "single-up-arrow": 59438,
9044
+ "smart-match-outlined": 59439,
9045
+ "sparkle-2-outlined": 59440,
9046
+ "sparkle-outlined": 59441,
9047
+ "speaker-active-outlined": 59442,
9048
+ "speaker-outlined": 59443,
9049
+ "star-circle-outlined": 59444,
9050
+ "star-outlined": 59445,
9051
+ "start-break-outlined": 59446,
9052
+ "stash-outlined": 59447,
9053
+ "stopwatch-outlined": 59448,
9053
9054
  strikethrough: strikethrough,
9054
- "styler-outlined": 59449,
9055
- "suitcase-clock-outlined": 59450,
9056
- "suitcase-outlined": 59451,
9057
- "survey-outlined": 59452,
9058
- "switch-outlined": 59453,
9055
+ "styler-outlined": 59450,
9056
+ "suitcase-clock-outlined": 59451,
9057
+ "suitcase-outlined": 59452,
9058
+ "survey-outlined": 59453,
9059
+ "switch-outlined": 59454,
9059
9060
  sync: sync,
9060
- "tag-outlined": 59455,
9061
- "target-outlined": 59456,
9062
- "tennis-outlined": 59457,
9063
- "thumb-down-outlined": 59458,
9064
- "thumb-up-outlined": 59459,
9065
- "ticket-outlined": 59460,
9066
- "timesheet-outlined": 59461,
9067
- "timesheets-outlined": 59462,
9068
- "today-outlined": 59463,
9061
+ "tag-outlined": 59456,
9062
+ "target-outlined": 59457,
9063
+ "tennis-outlined": 59458,
9064
+ "thumb-down-outlined": 59459,
9065
+ "thumb-up-outlined": 59460,
9066
+ "ticket-outlined": 59461,
9067
+ "timesheet-outlined": 59462,
9068
+ "timesheets-outlined": 59463,
9069
+ "today-outlined": 59464,
9069
9070
  transfer: transfer,
9070
- "transportation-outlined": 59465,
9071
- "trash-bin-outlined": 59466,
9072
- "umbrela-outlined": 59467,
9073
- "unavailability-outlined": 59468,
9071
+ "transportation-outlined": 59466,
9072
+ "trash-bin-outlined": 59467,
9073
+ "umbrela-outlined": 59468,
9074
+ "unavailability-outlined": 59469,
9074
9075
  unavailable: unavailable,
9075
9076
  underline: underline,
9076
- "union-outlined": 59471,
9077
- "unlock-outlined": 59472,
9078
- "upload-outlined": 59473,
9079
- "user-add-outlined": 59474,
9080
- "user-circle-outlined": 59475,
9081
- "user-gear-outlined": 59476,
9082
- "user-out-outlined": 59477,
9083
- "user-outlined": 59478,
9084
- "user-rectangle-outlined": 59479,
9085
- "video-1-outlined": 59480,
9086
- "video-2-outlined": 59481,
9087
- "volunteer-outlined": 59482,
9088
- "wallet-outlined": 59483,
9089
- "wellness-outlined": 59484
9077
+ "union-outlined": 59472,
9078
+ "unlock-outlined": 59473,
9079
+ "upload-outlined": 59474,
9080
+ "user-add-outlined": 59475,
9081
+ "user-circle-outlined": 59476,
9082
+ "user-gear-outlined": 59477,
9083
+ "user-out-outlined": 59478,
9084
+ "user-outlined": 59479,
9085
+ "user-rectangle-outlined": 59480,
9086
+ "video-1-outlined": 59481,
9087
+ "video-2-outlined": 59482,
9088
+ "volunteer-outlined": 59483,
9089
+ "wallet-outlined": 59484,
9090
+ "wellness-outlined": 59485
9090
9091
  };
9091
9092
 
9092
9093
  var HeroIcon = createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
@@ -10825,6 +10826,7 @@ var StyledHeaderWrapper = index$c(View)(function (_ref5) {
10825
10826
  var theme = _ref5.theme;
10826
10827
  return {
10827
10828
  flexDirection: 'row',
10829
+ minHeight: theme.__hd__.bottomSheet.sizes.headerMinHeight,
10828
10830
  paddingVertical: theme.__hd__.bottomSheet.space.headerWrapperVerticalPadding,
10829
10831
  paddingHorizontal: theme.__hd__.bottomSheet.space.headerWrapperHorizontalPadding
10830
10832
  };
@@ -10846,7 +10848,7 @@ var StyledFooter = index$c(View)(function (_ref6) {
10846
10848
  var StyledIconWrapper$3 = index$c(View)(function (_ref7) {
10847
10849
  var theme = _ref7.theme;
10848
10850
  return {
10849
- alignItems: 'flex-end',
10851
+ alignItems: 'center',
10850
10852
  justifyContent: 'center',
10851
10853
  width: theme.__hd__.bottomSheet.sizes.closeIcon,
10852
10854
  height: theme.__hd__.bottomSheet.sizes.closeIcon,
@@ -10964,7 +10966,7 @@ var LoadingIndicator = function LoadingIndicator(_ref2) {
10964
10966
  var getButtonSize = function getButtonSize(themeIsCompact, themeIsMedium) {
10965
10967
  if (themeIsCompact) return scale(36);
10966
10968
  if (themeIsMedium) return scale(48);
10967
- return scale(60);
10969
+ return scale(48);
10968
10970
  };
10969
10971
  var getTextButtonPaddingVertical = function getTextButtonPaddingVertical(theme, themeInlineText, themeIsCompact) {
10970
10972
  if (themeInlineText) {
@@ -11023,7 +11025,7 @@ var genFilledContainerStyles = function genFilledContainerStyles(theme, intent,
11023
11025
  }
11024
11026
  return {
11025
11027
  alignSelf: 'stretch',
11026
- padding: theme.__hd__.button.space["default"].buttonPadding,
11028
+ paddingHorizontal: theme.__hd__.button.space["default"].buttonPadding,
11027
11029
  borderRadius: theme.__hd__.button.radii["default"]
11028
11030
  };
11029
11031
  };
@@ -11068,7 +11070,7 @@ var genOutlineContainerStyles = function genOutlineContainerStyles(theme, intent
11068
11070
  }
11069
11071
  return {
11070
11072
  alignSelf: 'stretch',
11071
- padding: theme.__hd__.button.space["default"].buttonPadding - theme.__hd__.button.borderWidth["default"],
11073
+ paddingHorizontal: theme.__hd__.button.space["default"].buttonPadding - theme.__hd__.button.borderWidth["default"],
11072
11074
  borderRadius: theme.__hd__.button.radii["default"]
11073
11075
  };
11074
11076
  };
@@ -11106,7 +11108,7 @@ var getTextContainerStyles = function getTextContainerStyles(theme, intent, load
11106
11108
  };
11107
11109
  }
11108
11110
  return {
11109
- padding: inlineText ? 0 : theme.__hd__.button.space["default"].textButtonPadding
11111
+ paddingHorizontal: inlineText ? 0 : theme.__hd__.button.space["default"].textButtonPadding
11110
11112
  };
11111
11113
  };
11112
11114
  return _objectSpread2({
@@ -11550,14 +11552,14 @@ var Header = function Header(_ref) {
11550
11552
  onPress: onRequestClose,
11551
11553
  intent: "text",
11552
11554
  testID: "bottom-sheet-close-icon",
11553
- size: "xsmall"
11555
+ size: "xxxsmall"
11554
11556
  }) : /*#__PURE__*/React__default.createElement(StyledFloatingHeaderWrapper, {
11555
11557
  onPress: onRequestClose,
11556
11558
  testID: "bottom-sheet-close-icon"
11557
11559
  }, /*#__PURE__*/React__default.createElement(Icon, {
11558
11560
  icon: "cancel",
11559
11561
  style: {
11560
- fontSize: theme.__hd__.bottomSheet.sizes.floatingCloseIcon
11562
+ fontSize: theme.__hd__.bottomSheet.sizes.closeIconSize
11561
11563
  }
11562
11564
  }))) : null), showDivider ? /*#__PURE__*/React__default.createElement(Divider, null) : null);
11563
11565
  };
@@ -42340,8 +42342,6 @@ var FilterTrigger = function FilterTrigger(_ref) {
42340
42342
  testID = _ref.testID,
42341
42343
  style = _ref.style;
42342
42344
  var shouldShowBadge = filterCount > 0 && active;
42343
- var iconIntent = active ? 'text' : 'inactive';
42344
- var typographyVariant = active ? 'small-bold' : 'small';
42345
42345
  return /*#__PURE__*/React__default.createElement(StyledFilterWrapper, {
42346
42346
  testID: testID,
42347
42347
  style: style,
@@ -42349,24 +42349,26 @@ var FilterTrigger = function FilterTrigger(_ref) {
42349
42349
  themeVariant: variant,
42350
42350
  onPress: onPress,
42351
42351
  themeHasLabel: !!label
42352
- }, label ? /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(StyledText, {
42353
- variant: typographyVariant
42354
- }, label), shouldShowBadge && /*#__PURE__*/React__default.createElement(Badge, {
42355
- content: filterCount,
42356
- size: "small"
42357
- }), suffix && /*#__PURE__*/React__default.createElement(Icon, {
42352
+ }, label ? /*#__PURE__*/React__default.createElement(React__default.Fragment, null, suffix && /*#__PURE__*/React__default.createElement(Icon, {
42358
42353
  icon: suffix,
42359
42354
  size: "xxxsmall",
42360
- intent: iconIntent,
42355
+ intent: "text",
42361
42356
  testID: "".concat(testID, "-suffix")
42357
+ }), /*#__PURE__*/React__default.createElement(StyledText, {
42358
+ variant: "small"
42359
+ }, label), shouldShowBadge && /*#__PURE__*/React__default.createElement(Badge, {
42360
+ content: filterCount,
42361
+ size: "small",
42362
+ intent: "primary"
42362
42363
  })) : /*#__PURE__*/React__default.createElement(React__default.Fragment, null, suffix && /*#__PURE__*/React__default.createElement(Icon, {
42363
42364
  icon: suffix,
42364
42365
  size: "xsmall",
42365
- intent: iconIntent,
42366
+ intent: "text",
42366
42367
  testID: "".concat(testID, "-suffix")
42367
42368
  }), shouldShowBadge && /*#__PURE__*/React__default.createElement(StyledBadge, {
42368
42369
  content: filterCount,
42369
42370
  size: "small",
42371
+ intent: "primary",
42370
42372
  themeHasLabel: !!label
42371
42373
  })));
42372
42374
  };