@hero-design/rn 8.133.0 → 8.135.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 +12 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +540 -367
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +537 -363
- package/package.json +1 -1
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +16 -0
- package/src/components/List/BasicListItem.tsx +2 -2
- package/src/components/List/index.tsx +3 -0
- package/src/components/SectionList/SectionList.tsx +181 -0
- package/src/components/SectionList/StyledSectionList.tsx +65 -0
- package/src/components/SectionList/index.tsx +4 -0
- package/src/index.ts +2 -0
- package/src/theme/components/sectionList.ts +31 -0
- package/src/theme/getTheme.ts +3 -0
- package/src/types.ts +1 -0
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/List/BasicListItem.d.ts +2 -2
- package/types/components/List/index.d.ts +2 -0
- package/types/components/Radio/StyledRadio.d.ts +1 -1
- package/types/components/SectionList/SectionList.d.ts +66 -0
- package/types/components/SectionList/StyledSectionList.d.ts +33 -0
- package/types/components/SectionList/index.d.ts +3 -0
- package/types/components/TextInput/index.d.ts +1 -1
- package/types/index.d.ts +2 -1
- package/types/theme/components/sectionList.d.ts +23 -0
- package/types/theme/getTheme.d.ts +2 -0
- package/types/types.d.ts +1 -0
package/es/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as reactNative from 'react-native';
|
|
2
|
-
import { StyleSheet as StyleSheet$1, Platform, Dimensions, Keyboard, Animated, View, UIManager, LayoutAnimation, TouchableOpacity, Text as Text$1, Easing, useWindowDimensions, TouchableWithoutFeedback, Modal as Modal$1, Image as Image$1, Pressable, KeyboardAvoidingView, TouchableHighlight, ScrollView, FlatList, TextInput as TextInput$1, PanResponder, BackHandler, InteractionManager, SectionList, PixelRatio, RefreshControl as RefreshControl$1 } from 'react-native';
|
|
2
|
+
import { StyleSheet as StyleSheet$1, Platform, Dimensions, Keyboard, Animated, View, UIManager, LayoutAnimation, TouchableOpacity, Text as Text$1, Easing, useWindowDimensions, TouchableWithoutFeedback, Modal as Modal$1, Image as Image$1, Pressable, KeyboardAvoidingView, TouchableHighlight, ScrollView, FlatList, TextInput as TextInput$1, PanResponder, BackHandler, InteractionManager, SectionList as SectionList$1, PixelRatio, RefreshControl as RefreshControl$1 } from 'react-native';
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import React__default, { useState, useEffect, useMemo, useCallback, useRef, useLayoutEffect, createContext, forwardRef, useContext, memo, useReducer, isValidElement, useImperativeHandle } from 'react';
|
|
5
5
|
import MaskedView from '@react-native-masked-view/masked-view';
|
|
@@ -6753,6 +6753,34 @@ var getSectionHeadingTheme = function getSectionHeadingTheme(theme) {
|
|
|
6753
6753
|
};
|
|
6754
6754
|
};
|
|
6755
6755
|
|
|
6756
|
+
var getSectionListTheme = function getSectionListTheme(theme) {
|
|
6757
|
+
var colors = {
|
|
6758
|
+
groupBackground: theme.colors.defaultGlobalSurface
|
|
6759
|
+
};
|
|
6760
|
+
var radii = {
|
|
6761
|
+
group: theme.radii.xlarge
|
|
6762
|
+
};
|
|
6763
|
+
var marginHorizontalValues = {
|
|
6764
|
+
none: 0,
|
|
6765
|
+
xsmall: theme.space.xsmall,
|
|
6766
|
+
small: theme.space.small,
|
|
6767
|
+
medium: theme.space.medium,
|
|
6768
|
+
large: theme.space.large,
|
|
6769
|
+
xlarge: theme.space.xlarge
|
|
6770
|
+
};
|
|
6771
|
+
var space = {
|
|
6772
|
+
marginHorizontal: marginHorizontalValues,
|
|
6773
|
+
sectionSpacing: theme.space.medium,
|
|
6774
|
+
sectionSpacingCompact: theme.space.small,
|
|
6775
|
+
headingPaddingLeft: theme.space.small
|
|
6776
|
+
};
|
|
6777
|
+
return {
|
|
6778
|
+
colors: colors,
|
|
6779
|
+
radii: radii,
|
|
6780
|
+
space: space
|
|
6781
|
+
};
|
|
6782
|
+
};
|
|
6783
|
+
|
|
6756
6784
|
var getSelectTheme = function getSelectTheme(theme) {
|
|
6757
6785
|
var space = {
|
|
6758
6786
|
minimumOptionListHeight: theme.space.xxxxlarge * 5,
|
|
@@ -7975,6 +8003,7 @@ var getTheme = function getTheme() {
|
|
|
7975
8003
|
richTextEditor: getRichTextEditorTheme(globalTheme),
|
|
7976
8004
|
search: getSearchTheme(globalTheme),
|
|
7977
8005
|
sectionHeading: getSectionHeadingTheme(globalTheme),
|
|
8006
|
+
sectionList: getSectionListTheme(globalTheme),
|
|
7978
8007
|
select: getSelectTheme(globalTheme),
|
|
7979
8008
|
skeleton: getSkeletonTheme(globalTheme),
|
|
7980
8009
|
slider: getSliderTheme(globalTheme),
|
|
@@ -8186,7 +8215,7 @@ var StyledText$4 = index$c(Text$1)(function (_ref) {
|
|
|
8186
8215
|
});
|
|
8187
8216
|
});
|
|
8188
8217
|
|
|
8189
|
-
var _excluded$
|
|
8218
|
+
var _excluded$Q = ["children", "fontSize", "fontWeight", "intent", "typeface", "allowFontScaling"];
|
|
8190
8219
|
/**
|
|
8191
8220
|
* @deprecated Typography.Text is deprecated and will be removed in the next major release, please refer to https://design.employmenthero.com/mobile/Components/typography for the appropriate alternatives.
|
|
8192
8221
|
*/
|
|
@@ -8202,7 +8231,7 @@ var Text = function Text(_ref) {
|
|
|
8202
8231
|
typeface = _ref$typeface === void 0 ? 'neutral' : _ref$typeface,
|
|
8203
8232
|
_ref$allowFontScaling = _ref.allowFontScaling,
|
|
8204
8233
|
allowFontScaling = _ref$allowFontScaling === void 0 ? false : _ref$allowFontScaling,
|
|
8205
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
8234
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$Q);
|
|
8206
8235
|
useDeprecation('Typography.Text is deprecated and will be removed in the next major release, please refer to https://design.employmenthero.com/mobile/Components/typography for the appropriate alternatives.');
|
|
8207
8236
|
return /*#__PURE__*/React__default.createElement(StyledText$4, _extends$1({}, nativeProps, {
|
|
8208
8237
|
themeFontSize: fontSize,
|
|
@@ -8255,10 +8284,10 @@ var pickAccessibilityProps = function pickAccessibilityProps(props) {
|
|
|
8255
8284
|
}, {});
|
|
8256
8285
|
};
|
|
8257
8286
|
|
|
8258
|
-
var _excluded$
|
|
8287
|
+
var _excluded$P = ["children"];
|
|
8259
8288
|
var GradientText = function GradientText(_ref) {
|
|
8260
8289
|
var children = _ref.children,
|
|
8261
|
-
accessibilityProps = _objectWithoutProperties(_ref, _excluded$
|
|
8290
|
+
accessibilityProps = _objectWithoutProperties(_ref, _excluded$P);
|
|
8262
8291
|
var theme = useTheme();
|
|
8263
8292
|
var gradient = theme.colors.gradients.aiDiagonal;
|
|
8264
8293
|
var _useState = useState(null),
|
|
@@ -8314,7 +8343,7 @@ var GradientText = function GradientText(_ref) {
|
|
|
8314
8343
|
}, children));
|
|
8315
8344
|
};
|
|
8316
8345
|
|
|
8317
|
-
var _excluded$
|
|
8346
|
+
var _excluded$O = ["children", "fontWeight", "intent", "allowFontScaling", "fontStyle", "style", "testID"];
|
|
8318
8347
|
var Caption = function Caption(_ref) {
|
|
8319
8348
|
var children = _ref.children,
|
|
8320
8349
|
_ref$fontWeight = _ref.fontWeight,
|
|
@@ -8327,7 +8356,7 @@ var Caption = function Caption(_ref) {
|
|
|
8327
8356
|
fontStyle = _ref$fontStyle === void 0 ? 'normal' : _ref$fontStyle,
|
|
8328
8357
|
style = _ref.style,
|
|
8329
8358
|
testID = _ref.testID,
|
|
8330
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
8359
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$O);
|
|
8331
8360
|
var isAi = intent === 'ai';
|
|
8332
8361
|
var styledText = /*#__PURE__*/React__default.createElement(StyledCaption, _extends$1({}, nativeProps, {
|
|
8333
8362
|
themeFontWeight: fontWeight,
|
|
@@ -8359,7 +8388,7 @@ var StyledLabel$1 = index$c(Text$1)(function (_ref) {
|
|
|
8359
8388
|
};
|
|
8360
8389
|
});
|
|
8361
8390
|
|
|
8362
|
-
var _excluded$
|
|
8391
|
+
var _excluded$N = ["children", "intent", "allowFontScaling", "fontStyle", "fontWeight", "style", "testID"];
|
|
8363
8392
|
var Label = function Label(_ref) {
|
|
8364
8393
|
var children = _ref.children,
|
|
8365
8394
|
_ref$intent = _ref.intent,
|
|
@@ -8372,7 +8401,7 @@ var Label = function Label(_ref) {
|
|
|
8372
8401
|
fontWeight = _ref$fontWeight === void 0 ? 'regular' : _ref$fontWeight,
|
|
8373
8402
|
style = _ref.style,
|
|
8374
8403
|
testID = _ref.testID,
|
|
8375
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
8404
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$N);
|
|
8376
8405
|
var isAi = intent === 'ai';
|
|
8377
8406
|
var styledText = /*#__PURE__*/React__default.createElement(StyledLabel$1, _extends$1({}, nativeProps, {
|
|
8378
8407
|
themeIntent: isAi ? 'body' : intent,
|
|
@@ -8403,7 +8432,7 @@ var StyledTitle$1 = index$c(Text$1)(function (_ref) {
|
|
|
8403
8432
|
};
|
|
8404
8433
|
});
|
|
8405
8434
|
|
|
8406
|
-
var _excluded$
|
|
8435
|
+
var _excluded$M = ["children", "intent", "allowFontScaling", "level", "typeface", "fontStyle", "style", "testID"];
|
|
8407
8436
|
var Title = function Title(_ref) {
|
|
8408
8437
|
var children = _ref.children,
|
|
8409
8438
|
_ref$intent = _ref.intent,
|
|
@@ -8418,7 +8447,7 @@ var Title = function Title(_ref) {
|
|
|
8418
8447
|
fontStyle = _ref$fontStyle === void 0 ? 'normal' : _ref$fontStyle,
|
|
8419
8448
|
style = _ref.style,
|
|
8420
8449
|
testID = _ref.testID,
|
|
8421
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
8450
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$M);
|
|
8422
8451
|
var isAi = intent === 'ai';
|
|
8423
8452
|
var styledText = /*#__PURE__*/React__default.createElement(StyledTitle$1, _extends$1({}, nativeProps, {
|
|
8424
8453
|
themeLevel: level,
|
|
@@ -8468,7 +8497,7 @@ var StyledBody$2 = index$c(Text$1)(function (_ref) {
|
|
|
8468
8497
|
};
|
|
8469
8498
|
});
|
|
8470
8499
|
|
|
8471
|
-
var _excluded$
|
|
8500
|
+
var _excluded$L = ["children", "intent", "allowFontScaling", "typeface", "variant", "fontStyle", "style", "testID"];
|
|
8472
8501
|
var Body = function Body(_ref) {
|
|
8473
8502
|
var children = _ref.children,
|
|
8474
8503
|
_ref$intent = _ref.intent,
|
|
@@ -8483,7 +8512,7 @@ var Body = function Body(_ref) {
|
|
|
8483
8512
|
fontStyle = _ref$fontStyle === void 0 ? 'normal' : _ref$fontStyle,
|
|
8484
8513
|
style = _ref.style,
|
|
8485
8514
|
testID = _ref.testID,
|
|
8486
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
8515
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$L);
|
|
8487
8516
|
var isAi = intent === 'ai';
|
|
8488
8517
|
var styledText = /*#__PURE__*/React__default.createElement(StyledBody$2, _extends$1({}, nativeProps, {
|
|
8489
8518
|
themeTypeface: typeface,
|
|
@@ -8509,7 +8538,7 @@ var Typography = {
|
|
|
8509
8538
|
};
|
|
8510
8539
|
|
|
8511
8540
|
// 🔴 DO NOT EDIT — This file is generated automatically.
|
|
8512
|
-
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', 'mic-outlined', 'mic-slash-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'];
|
|
8541
|
+
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-emoji-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', 'archive-outlined', 'arrow-down', 'arrow-downwards', 'arrow-left', 'arrow-leftwards', 'arrow-right', 'arrow-rightwards', 'arrow-up', 'arrow-upwards', 'article-outlined', 'assignment-warning-outlined', 'at-sign', 'auto-graph-outlined', 'automotive-outlined', 'bakery-outlined', 'bank-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-clock-outlined', 'calendar-dates-outlined', 'calendar-edit-outlined', 'calendar-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-check-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-3-outlined', 'clock-in-outlined', 'clock-out-outlined', 'clock-outlined', 'cloud-download-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', 'mic-outlined', 'mic-slash-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', 'raising-hands-outlined', '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', 'schedule-send-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-award-outlined', 'star-badge-outlined', 'star-circle-outlined', 'star-medal-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', 'teams-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', 'warning-outlined', 'wellness-outlined'];
|
|
8513
8542
|
|
|
8514
8543
|
var activate = 59000;
|
|
8515
8544
|
var adjustment = 59003;
|
|
@@ -8585,24 +8614,24 @@ var unlock = 59190;
|
|
|
8585
8614
|
var user = 59191;
|
|
8586
8615
|
var wallet = 59194;
|
|
8587
8616
|
var warning = 59195;
|
|
8588
|
-
var add =
|
|
8589
|
-
var bold =
|
|
8590
|
-
var cancel =
|
|
8591
|
-
var checkmark =
|
|
8592
|
-
var italic =
|
|
8593
|
-
var local_mall_outlined =
|
|
8594
|
-
var number$2 =
|
|
8595
|
-
var percentage =
|
|
8596
|
-
var redeem =
|
|
8597
|
-
var refresh =
|
|
8598
|
-
var remove$1 =
|
|
8599
|
-
var restart =
|
|
8600
|
-
var shopping_basket_outlined =
|
|
8601
|
-
var strikethrough =
|
|
8602
|
-
var sync =
|
|
8603
|
-
var transfer =
|
|
8604
|
-
var unavailable =
|
|
8605
|
-
var underline =
|
|
8617
|
+
var add = 59204;
|
|
8618
|
+
var bold = 59237;
|
|
8619
|
+
var cancel = 59257;
|
|
8620
|
+
var checkmark = 59263;
|
|
8621
|
+
var italic = 59367;
|
|
8622
|
+
var local_mall_outlined = 59375;
|
|
8623
|
+
var number$2 = 59400;
|
|
8624
|
+
var percentage = 59406;
|
|
8625
|
+
var redeem = 59423;
|
|
8626
|
+
var refresh = 59424;
|
|
8627
|
+
var remove$1 = 59425;
|
|
8628
|
+
var restart = 59427;
|
|
8629
|
+
var shopping_basket_outlined = 59446;
|
|
8630
|
+
var strikethrough = 59465;
|
|
8631
|
+
var sync = 59471;
|
|
8632
|
+
var transfer = 59482;
|
|
8633
|
+
var unavailable = 59487;
|
|
8634
|
+
var underline = 59488;
|
|
8606
8635
|
var glyphMap = {
|
|
8607
8636
|
activate: activate,
|
|
8608
8637
|
"add-emoji": 59001,
|
|
@@ -8804,294 +8833,310 @@ var glyphMap = {
|
|
|
8804
8833
|
"accommodation-outlined": 59197,
|
|
8805
8834
|
"activate-outlined": 59198,
|
|
8806
8835
|
"add-credit-card-outlined": 59199,
|
|
8807
|
-
"add-
|
|
8808
|
-
"add-
|
|
8809
|
-
"add-
|
|
8836
|
+
"add-emoji-outlined": 59200,
|
|
8837
|
+
"add-person-outlined": 59201,
|
|
8838
|
+
"add-section-outlined": 59202,
|
|
8839
|
+
"add-time-outlined": 59203,
|
|
8810
8840
|
add: add,
|
|
8811
|
-
"adjustment-outlined":
|
|
8812
|
-
"afternoon-outlined":
|
|
8813
|
-
"ai-outlined":
|
|
8814
|
-
"alignment-2-outlined":
|
|
8815
|
-
"alignment-outlined":
|
|
8816
|
-
"all-caps":
|
|
8817
|
-
"application-outlined":
|
|
8818
|
-
"
|
|
8819
|
-
"arrow-
|
|
8820
|
-
"arrow-
|
|
8821
|
-
"arrow-
|
|
8822
|
-
"arrow-
|
|
8823
|
-
"arrow-
|
|
8824
|
-
"arrow-
|
|
8825
|
-
"arrow-
|
|
8826
|
-
"
|
|
8827
|
-
"
|
|
8828
|
-
"
|
|
8829
|
-
"
|
|
8830
|
-
"
|
|
8831
|
-
"
|
|
8832
|
-
"
|
|
8833
|
-
"
|
|
8834
|
-
"
|
|
8835
|
-
"
|
|
8836
|
-
"
|
|
8837
|
-
"
|
|
8838
|
-
"
|
|
8839
|
-
"
|
|
8841
|
+
"adjustment-outlined": 59205,
|
|
8842
|
+
"afternoon-outlined": 59206,
|
|
8843
|
+
"ai-outlined": 59207,
|
|
8844
|
+
"alignment-2-outlined": 59208,
|
|
8845
|
+
"alignment-outlined": 59209,
|
|
8846
|
+
"all-caps": 59210,
|
|
8847
|
+
"application-outlined": 59211,
|
|
8848
|
+
"archive-outlined": 59212,
|
|
8849
|
+
"arrow-down": 59213,
|
|
8850
|
+
"arrow-downwards": 59214,
|
|
8851
|
+
"arrow-left": 59215,
|
|
8852
|
+
"arrow-leftwards": 59216,
|
|
8853
|
+
"arrow-right": 59217,
|
|
8854
|
+
"arrow-rightwards": 59218,
|
|
8855
|
+
"arrow-up": 59219,
|
|
8856
|
+
"arrow-upwards": 59220,
|
|
8857
|
+
"article-outlined": 59221,
|
|
8858
|
+
"assignment-warning-outlined": 59222,
|
|
8859
|
+
"at-sign": 59223,
|
|
8860
|
+
"auto-graph-outlined": 59224,
|
|
8861
|
+
"automotive-outlined": 59225,
|
|
8862
|
+
"bakery-outlined": 59226,
|
|
8863
|
+
"bank-outlined": 59227,
|
|
8864
|
+
"bar-outlined": 59228,
|
|
8865
|
+
"beauty-outlined": 59229,
|
|
8866
|
+
"beer-outlined": 59230,
|
|
8867
|
+
"bell-active-outlined": 59231,
|
|
8868
|
+
"bell-outlined": 59232,
|
|
8869
|
+
"bell-slash-outlined": 59233,
|
|
8870
|
+
"bill-management-outlined": 59234,
|
|
8871
|
+
"billing-outlined": 59235,
|
|
8872
|
+
"body-outlined": 59236,
|
|
8840
8873
|
bold: bold,
|
|
8841
|
-
"bolt-outlined":
|
|
8842
|
-
"book-outlined":
|
|
8843
|
-
"bookmark-added-outlined":
|
|
8844
|
-
"bookmark-checked-outlined":
|
|
8845
|
-
"bookmark-outlined":
|
|
8846
|
-
"box-1-outlined":
|
|
8847
|
-
"box-check-outlined":
|
|
8848
|
-
"box-outlined":
|
|
8849
|
-
"bullet-points":
|
|
8850
|
-
"cake-outlined":
|
|
8851
|
-
"calculator-outlined":
|
|
8852
|
-
"calendar-
|
|
8853
|
-
"calendar-
|
|
8854
|
-
"calendar-
|
|
8855
|
-
"
|
|
8856
|
-
"
|
|
8857
|
-
"
|
|
8874
|
+
"bolt-outlined": 59238,
|
|
8875
|
+
"book-outlined": 59239,
|
|
8876
|
+
"bookmark-added-outlined": 59240,
|
|
8877
|
+
"bookmark-checked-outlined": 59241,
|
|
8878
|
+
"bookmark-outlined": 59242,
|
|
8879
|
+
"box-1-outlined": 59243,
|
|
8880
|
+
"box-check-outlined": 59244,
|
|
8881
|
+
"box-outlined": 59245,
|
|
8882
|
+
"bullet-points": 59246,
|
|
8883
|
+
"cake-outlined": 59247,
|
|
8884
|
+
"calculator-outlined": 59248,
|
|
8885
|
+
"calendar-clock-outlined": 59249,
|
|
8886
|
+
"calendar-dates-outlined": 59250,
|
|
8887
|
+
"calendar-edit-outlined": 59251,
|
|
8888
|
+
"calendar-outlined": 59252,
|
|
8889
|
+
"calendar-star-outlined": 59253,
|
|
8890
|
+
"call-outlined": 59254,
|
|
8891
|
+
"call-split-outlined": 59255,
|
|
8892
|
+
"camera-outlined": 59256,
|
|
8858
8893
|
cancel: cancel,
|
|
8859
|
-
"car-forward-outlined":
|
|
8860
|
-
"cashback-outlined":
|
|
8861
|
-
"charging-station-outlined":
|
|
8862
|
-
"chat-bubble-outlined":
|
|
8863
|
-
"chat-unread-outlined":
|
|
8894
|
+
"car-forward-outlined": 59258,
|
|
8895
|
+
"cashback-outlined": 59259,
|
|
8896
|
+
"charging-station-outlined": 59260,
|
|
8897
|
+
"chat-bubble-outlined": 59261,
|
|
8898
|
+
"chat-unread-outlined": 59262,
|
|
8864
8899
|
checkmark: checkmark,
|
|
8865
|
-
"circle-add-outlined":
|
|
8866
|
-
"circle-cancel-outlined":
|
|
8867
|
-
"circle-
|
|
8868
|
-
"circle-
|
|
8869
|
-
"circle-
|
|
8870
|
-
"circle-
|
|
8871
|
-
"circle-
|
|
8872
|
-
"circle-
|
|
8873
|
-
"circle-
|
|
8874
|
-
"circle-
|
|
8875
|
-
"circle-
|
|
8876
|
-
"
|
|
8877
|
-
"clock-
|
|
8878
|
-
"clock-
|
|
8879
|
-
"clock-outlined":
|
|
8880
|
-
"
|
|
8881
|
-
"
|
|
8882
|
-
"
|
|
8883
|
-
"
|
|
8884
|
-
"
|
|
8885
|
-
"
|
|
8886
|
-
"
|
|
8887
|
-
"
|
|
8888
|
-
"
|
|
8889
|
-
"
|
|
8890
|
-
"
|
|
8891
|
-
"
|
|
8892
|
-
"
|
|
8893
|
-
"
|
|
8894
|
-
"
|
|
8895
|
-
"
|
|
8896
|
-
"
|
|
8897
|
-
"dollar-
|
|
8898
|
-
"dollar-
|
|
8899
|
-
"
|
|
8900
|
-
"
|
|
8901
|
-
"
|
|
8902
|
-
"
|
|
8903
|
-
"
|
|
8904
|
-
"
|
|
8905
|
-
"
|
|
8906
|
-
"
|
|
8907
|
-
"
|
|
8908
|
-
"
|
|
8909
|
-
"
|
|
8910
|
-
"
|
|
8911
|
-
"
|
|
8912
|
-
"
|
|
8913
|
-
"
|
|
8914
|
-
"
|
|
8915
|
-
"
|
|
8916
|
-
"
|
|
8917
|
-
"
|
|
8918
|
-
"
|
|
8919
|
-
"
|
|
8920
|
-
"
|
|
8921
|
-
"
|
|
8922
|
-
"
|
|
8923
|
-
"face-
|
|
8924
|
-
"face-
|
|
8925
|
-
"
|
|
8926
|
-
"
|
|
8927
|
-
"
|
|
8928
|
-
"
|
|
8929
|
-
"
|
|
8930
|
-
"
|
|
8931
|
-
"file-
|
|
8932
|
-
"file-
|
|
8933
|
-
"file-
|
|
8934
|
-
"file-
|
|
8935
|
-
"file-
|
|
8936
|
-
"file-
|
|
8937
|
-
"file-outlined":
|
|
8938
|
-
"file-
|
|
8939
|
-
"file-
|
|
8940
|
-
"file-
|
|
8941
|
-
"file-
|
|
8942
|
-
"file-
|
|
8943
|
-
"
|
|
8944
|
-
"
|
|
8945
|
-
"
|
|
8946
|
-
"
|
|
8947
|
-
"
|
|
8948
|
-
"
|
|
8949
|
-
"
|
|
8950
|
-
"
|
|
8951
|
-
"
|
|
8952
|
-
"
|
|
8953
|
-
"
|
|
8954
|
-
"
|
|
8955
|
-
"
|
|
8956
|
-
"
|
|
8957
|
-
"
|
|
8958
|
-
"
|
|
8959
|
-
"
|
|
8960
|
-
"
|
|
8961
|
-
"
|
|
8962
|
-
"
|
|
8963
|
-
"
|
|
8964
|
-
"
|
|
8900
|
+
"circle-add-outlined": 59264,
|
|
8901
|
+
"circle-cancel-outlined": 59265,
|
|
8902
|
+
"circle-check-outlined": 59266,
|
|
8903
|
+
"circle-down-outlined": 59267,
|
|
8904
|
+
"circle-info-outlined": 59268,
|
|
8905
|
+
"circle-left-outlined": 59269,
|
|
8906
|
+
"circle-ok-outlined": 59270,
|
|
8907
|
+
"circle-question-outlined": 59271,
|
|
8908
|
+
"circle-remove-outlined": 59272,
|
|
8909
|
+
"circle-right-outlined": 59273,
|
|
8910
|
+
"circle-up-outlined": 59274,
|
|
8911
|
+
"circle-warning-outlined": 59275,
|
|
8912
|
+
"clock-2-outlined": 59276,
|
|
8913
|
+
"clock-3-outlined": 59277,
|
|
8914
|
+
"clock-in-outlined": 59278,
|
|
8915
|
+
"clock-out-outlined": 59279,
|
|
8916
|
+
"clock-outlined": 59280,
|
|
8917
|
+
"cloud-download-outlined": 59281,
|
|
8918
|
+
"cog-outlined": 59282,
|
|
8919
|
+
"coin-outlined": 59283,
|
|
8920
|
+
"coin-super-outlined": 59284,
|
|
8921
|
+
"comment-outlined": 59285,
|
|
8922
|
+
"contacts-outlined": 59286,
|
|
8923
|
+
"contacts-user-outlined": 59287,
|
|
8924
|
+
"credit-card-outlined": 59288,
|
|
8925
|
+
"cultural-site-outlined": 59289,
|
|
8926
|
+
"cup-outlined": 59290,
|
|
8927
|
+
"dentistry-outlined": 59291,
|
|
8928
|
+
"diamond-outlined": 59292,
|
|
8929
|
+
"direction-arrows-outlined": 59293,
|
|
8930
|
+
"directory-outlined": 59294,
|
|
8931
|
+
"document-outlined": 59295,
|
|
8932
|
+
"dollar-box-outlined": 59296,
|
|
8933
|
+
"dollar-card-outlined": 59297,
|
|
8934
|
+
"dollar-coin-shine-outlined": 59298,
|
|
8935
|
+
"dollar-credit-card-outlined": 59299,
|
|
8936
|
+
"dollar-sign": 59300,
|
|
8937
|
+
"double-buildings-outlined": 59301,
|
|
8938
|
+
"double-left-arrows": 59302,
|
|
8939
|
+
"double-right-arrows": 59303,
|
|
8940
|
+
"download-box-outlined": 59304,
|
|
8941
|
+
"download-outlined": 59305,
|
|
8942
|
+
"edit-template-outlined": 59306,
|
|
8943
|
+
"edit-user-outlined": 59307,
|
|
8944
|
+
"electronics-outlined": 59308,
|
|
8945
|
+
"email-outlined": 59309,
|
|
8946
|
+
"end-break-outlined": 59310,
|
|
8947
|
+
"enter-arrow": 59311,
|
|
8948
|
+
"entertainment-outlined": 59312,
|
|
8949
|
+
"envelope-outlined": 59313,
|
|
8950
|
+
"evening-outlined": 59314,
|
|
8951
|
+
"expense-approval-outlined": 59315,
|
|
8952
|
+
"expense-outlined": 59316,
|
|
8953
|
+
"explore-outlined": 59317,
|
|
8954
|
+
"extension-outlined": 59318,
|
|
8955
|
+
"external-link": 59319,
|
|
8956
|
+
"eye-invisible-outlined": 59320,
|
|
8957
|
+
"eye-outlined": 59321,
|
|
8958
|
+
"face-id": 59322,
|
|
8959
|
+
"face-meh-outlined": 59323,
|
|
8960
|
+
"face-open-smiley-outlined": 59324,
|
|
8961
|
+
"face-sad-outlined": 59325,
|
|
8962
|
+
"face-smiley-outlined": 59326,
|
|
8963
|
+
"fastfood-outlined": 59327,
|
|
8964
|
+
"feed-outlined": 59328,
|
|
8965
|
+
"feedbacks-outlined": 59329,
|
|
8966
|
+
"file-certified-outlined": 59330,
|
|
8967
|
+
"file-clone-outlined": 59331,
|
|
8968
|
+
"file-copy-outlined": 59332,
|
|
8969
|
+
"file-dispose-outlined": 59333,
|
|
8970
|
+
"file-dollar-certified-outlined": 59334,
|
|
8971
|
+
"file-dollar-outlined": 59335,
|
|
8972
|
+
"file-download-outlined": 59336,
|
|
8973
|
+
"file-export-outlined": 59337,
|
|
8974
|
+
"file-lock-outlined": 59338,
|
|
8975
|
+
"file-outlined": 59339,
|
|
8976
|
+
"file-pound-outlined": 59340,
|
|
8977
|
+
"file-search-outlined": 59341,
|
|
8978
|
+
"file-secured-outlined": 59342,
|
|
8979
|
+
"file-statutory-outlined": 59343,
|
|
8980
|
+
"file-verified-outlined": 59344,
|
|
8981
|
+
"filter-outlined": 59345,
|
|
8982
|
+
"fitness-outlined": 59346,
|
|
8983
|
+
"folder-outlined": 59347,
|
|
8984
|
+
"folder-upload-outlined": 59348,
|
|
8985
|
+
"folder-user-outlined": 59349,
|
|
8986
|
+
"form-outlined": 59350,
|
|
8987
|
+
"funnel-filter-outline": 59351,
|
|
8988
|
+
"goal-outlined": 59352,
|
|
8989
|
+
"graph-outlined": 59353,
|
|
8990
|
+
"grocery-outlined": 59354,
|
|
8991
|
+
"hand-holding-user-outlined": 59355,
|
|
8992
|
+
"handshake-outlined": 59356,
|
|
8993
|
+
"happy-sun-outlined": 59357,
|
|
8994
|
+
"health-bag-outlined": 59358,
|
|
8995
|
+
"heart-outlined": 59359,
|
|
8996
|
+
"history-outlined": 59360,
|
|
8997
|
+
"home-active-outlined": 59361,
|
|
8998
|
+
"home-outlined": 59362,
|
|
8999
|
+
"id-card-outlined": 59363,
|
|
9000
|
+
"image-outlined": 59364,
|
|
9001
|
+
"import-outlined": 59365,
|
|
9002
|
+
"instapay-outlined": 59366,
|
|
8965
9003
|
italic: italic,
|
|
8966
|
-
"job-search-outlined":
|
|
8967
|
-
"leave-approval-outlined":
|
|
8968
|
-
"lighting-outlined":
|
|
8969
|
-
"link-1":
|
|
8970
|
-
"link-2":
|
|
8971
|
-
"list-outlined":
|
|
8972
|
-
"live-help-outlined":
|
|
9004
|
+
"job-search-outlined": 59368,
|
|
9005
|
+
"leave-approval-outlined": 59369,
|
|
9006
|
+
"lighting-outlined": 59370,
|
|
9007
|
+
"link-1": 59371,
|
|
9008
|
+
"link-2": 59372,
|
|
9009
|
+
"list-outlined": 59373,
|
|
9010
|
+
"live-help-outlined": 59374,
|
|
8973
9011
|
local_mall_outlined: local_mall_outlined,
|
|
8974
|
-
"location-on-outlined":
|
|
8975
|
-
"location-outlined":
|
|
8976
|
-
"lock-outlined":
|
|
8977
|
-
"locked-file-outlined":
|
|
8978
|
-
"log-out":
|
|
8979
|
-
"mail-outlined":
|
|
8980
|
-
"map-outlined":
|
|
8981
|
-
"media-content-outlined":
|
|
8982
|
-
"menu-close":
|
|
8983
|
-
"menu-expand":
|
|
8984
|
-
"menu-fold-outlined":
|
|
8985
|
-
"menu-unfold-outlined":
|
|
8986
|
-
"mic-outlined":
|
|
8987
|
-
"mic-slash-outlined":
|
|
8988
|
-
"moneybag-outlined":
|
|
8989
|
-
"moon-outlined":
|
|
8990
|
-
"more-horizontal":
|
|
8991
|
-
"more-vertical":
|
|
8992
|
-
"morning-outlined":
|
|
8993
|
-
"multiple-folders-outlined":
|
|
8994
|
-
"multiple-users-outlined":
|
|
8995
|
-
"near-me-outlined":
|
|
8996
|
-
"node-outlined":
|
|
8997
|
-
"number-points":
|
|
9012
|
+
"location-on-outlined": 59376,
|
|
9013
|
+
"location-outlined": 59377,
|
|
9014
|
+
"lock-outlined": 59378,
|
|
9015
|
+
"locked-file-outlined": 59379,
|
|
9016
|
+
"log-out": 59380,
|
|
9017
|
+
"mail-outlined": 59381,
|
|
9018
|
+
"map-outlined": 59382,
|
|
9019
|
+
"media-content-outlined": 59383,
|
|
9020
|
+
"menu-close": 59384,
|
|
9021
|
+
"menu-expand": 59385,
|
|
9022
|
+
"menu-fold-outlined": 59386,
|
|
9023
|
+
"menu-unfold-outlined": 59387,
|
|
9024
|
+
"mic-outlined": 59388,
|
|
9025
|
+
"mic-slash-outlined": 59389,
|
|
9026
|
+
"moneybag-outlined": 59390,
|
|
9027
|
+
"moon-outlined": 59391,
|
|
9028
|
+
"more-horizontal": 59392,
|
|
9029
|
+
"more-vertical": 59393,
|
|
9030
|
+
"morning-outlined": 59394,
|
|
9031
|
+
"multiple-folders-outlined": 59395,
|
|
9032
|
+
"multiple-users-outlined": 59396,
|
|
9033
|
+
"near-me-outlined": 59397,
|
|
9034
|
+
"node-outlined": 59398,
|
|
9035
|
+
"number-points": 59399,
|
|
8998
9036
|
number: number$2,
|
|
8999
|
-
"overview-outlined":
|
|
9000
|
-
"park-outlined":
|
|
9001
|
-
"payment-summary-outlined":
|
|
9002
|
-
"payslip-outlined":
|
|
9003
|
-
"pencil-outlined":
|
|
9037
|
+
"overview-outlined": 59401,
|
|
9038
|
+
"park-outlined": 59402,
|
|
9039
|
+
"payment-summary-outlined": 59403,
|
|
9040
|
+
"payslip-outlined": 59404,
|
|
9041
|
+
"pencil-outlined": 59405,
|
|
9004
9042
|
percentage: percentage,
|
|
9005
|
-
"phone-outlined":
|
|
9006
|
-
"piggy-bank-outlined":
|
|
9007
|
-
"plane-outlined":
|
|
9008
|
-
"play-circle-outlined":
|
|
9009
|
-
"pound-box-outlined":
|
|
9010
|
-
"pound-card-outlined":
|
|
9011
|
-
"pound-coin-shine-outlined":
|
|
9012
|
-
"pound-credit-card-outlined":
|
|
9013
|
-
"print-outlined":
|
|
9014
|
-
"profile-2user-outlined":
|
|
9015
|
-
"propane-tank-outlined":
|
|
9016
|
-
"qr-code-outlined":
|
|
9017
|
-
"qualification-outlined":
|
|
9018
|
-
"question-mark":
|
|
9019
|
-
"
|
|
9043
|
+
"phone-outlined": 59407,
|
|
9044
|
+
"piggy-bank-outlined": 59408,
|
|
9045
|
+
"plane-outlined": 59409,
|
|
9046
|
+
"play-circle-outlined": 59410,
|
|
9047
|
+
"pound-box-outlined": 59411,
|
|
9048
|
+
"pound-card-outlined": 59412,
|
|
9049
|
+
"pound-coin-shine-outlined": 59413,
|
|
9050
|
+
"pound-credit-card-outlined": 59414,
|
|
9051
|
+
"print-outlined": 59415,
|
|
9052
|
+
"profile-2user-outlined": 59416,
|
|
9053
|
+
"propane-tank-outlined": 59417,
|
|
9054
|
+
"qr-code-outlined": 59418,
|
|
9055
|
+
"qualification-outlined": 59419,
|
|
9056
|
+
"question-mark": 59420,
|
|
9057
|
+
"raising-hands-outlined": 59421,
|
|
9058
|
+
"re-assign": 59422,
|
|
9020
9059
|
redeem: redeem,
|
|
9021
9060
|
refresh: refresh,
|
|
9022
9061
|
remove: remove$1,
|
|
9023
|
-
"reply-outlined":
|
|
9062
|
+
"reply-outlined": 59426,
|
|
9024
9063
|
restart: restart,
|
|
9025
|
-
"restaurant-outlined":
|
|
9026
|
-
"resume-outlined":
|
|
9027
|
-
"return-arrow":
|
|
9028
|
-
"rocket-launch-outlined":
|
|
9029
|
-
"rostering-outlined":
|
|
9030
|
-
"safety-outlined":
|
|
9031
|
-
"save-outlined":
|
|
9032
|
-
"schedule-outlined":
|
|
9033
|
-
"
|
|
9034
|
-
"search-
|
|
9035
|
-
"
|
|
9036
|
-
"
|
|
9037
|
-
"share-
|
|
9038
|
-
"share-
|
|
9039
|
-
"share-outlined":
|
|
9040
|
-
"
|
|
9041
|
-
"
|
|
9064
|
+
"restaurant-outlined": 59428,
|
|
9065
|
+
"resume-outlined": 59429,
|
|
9066
|
+
"return-arrow": 59430,
|
|
9067
|
+
"rocket-launch-outlined": 59431,
|
|
9068
|
+
"rostering-outlined": 59432,
|
|
9069
|
+
"safety-outlined": 59433,
|
|
9070
|
+
"save-outlined": 59434,
|
|
9071
|
+
"schedule-outlined": 59435,
|
|
9072
|
+
"schedule-send-outlined": 59436,
|
|
9073
|
+
"search-outlined": 59437,
|
|
9074
|
+
"search-secured-outlined": 59438,
|
|
9075
|
+
"send-outlined": 59439,
|
|
9076
|
+
"share-1": 59440,
|
|
9077
|
+
"share-2": 59441,
|
|
9078
|
+
"share-outlined-2": 59442,
|
|
9079
|
+
"share-outlined": 59443,
|
|
9080
|
+
"shield-check-outlined": 59444,
|
|
9081
|
+
"shop-outlined": 59445,
|
|
9042
9082
|
shopping_basket_outlined: shopping_basket_outlined,
|
|
9043
|
-
"show-chart-outlined":
|
|
9044
|
-
"single-down-arrow":
|
|
9045
|
-
"single-left-arrow":
|
|
9046
|
-
"single-right-arrow":
|
|
9047
|
-
"single-up-arrow":
|
|
9048
|
-
"smart-match-outlined":
|
|
9049
|
-
"sparkle-2-outlined":
|
|
9050
|
-
"sparkle-outlined":
|
|
9051
|
-
"speaker-active-outlined":
|
|
9052
|
-
"speaker-outlined":
|
|
9053
|
-
"star-
|
|
9054
|
-
"star-outlined":
|
|
9055
|
-
"
|
|
9056
|
-
"
|
|
9057
|
-
"
|
|
9083
|
+
"show-chart-outlined": 59447,
|
|
9084
|
+
"single-down-arrow": 59448,
|
|
9085
|
+
"single-left-arrow": 59449,
|
|
9086
|
+
"single-right-arrow": 59450,
|
|
9087
|
+
"single-up-arrow": 59451,
|
|
9088
|
+
"smart-match-outlined": 59452,
|
|
9089
|
+
"sparkle-2-outlined": 59453,
|
|
9090
|
+
"sparkle-outlined": 59454,
|
|
9091
|
+
"speaker-active-outlined": 59455,
|
|
9092
|
+
"speaker-outlined": 59456,
|
|
9093
|
+
"star-award-outlined": 59457,
|
|
9094
|
+
"star-badge-outlined": 59458,
|
|
9095
|
+
"star-circle-outlined": 59459,
|
|
9096
|
+
"star-medal-outlined": 59460,
|
|
9097
|
+
"star-outlined": 59461,
|
|
9098
|
+
"start-break-outlined": 59462,
|
|
9099
|
+
"stash-outlined": 59463,
|
|
9100
|
+
"stopwatch-outlined": 59464,
|
|
9058
9101
|
strikethrough: strikethrough,
|
|
9059
|
-
"styler-outlined":
|
|
9060
|
-
"suitcase-clock-outlined":
|
|
9061
|
-
"suitcase-outlined":
|
|
9062
|
-
"survey-outlined":
|
|
9063
|
-
"switch-outlined":
|
|
9102
|
+
"styler-outlined": 59466,
|
|
9103
|
+
"suitcase-clock-outlined": 59467,
|
|
9104
|
+
"suitcase-outlined": 59468,
|
|
9105
|
+
"survey-outlined": 59469,
|
|
9106
|
+
"switch-outlined": 59470,
|
|
9064
9107
|
sync: sync,
|
|
9065
|
-
"tag-outlined":
|
|
9066
|
-
"target-outlined":
|
|
9067
|
-
"
|
|
9068
|
-
"
|
|
9069
|
-
"thumb-
|
|
9070
|
-
"
|
|
9071
|
-
"
|
|
9072
|
-
"
|
|
9073
|
-
"
|
|
9108
|
+
"tag-outlined": 59472,
|
|
9109
|
+
"target-outlined": 59473,
|
|
9110
|
+
"teams-outlined": 59474,
|
|
9111
|
+
"tennis-outlined": 59475,
|
|
9112
|
+
"thumb-down-outlined": 59476,
|
|
9113
|
+
"thumb-up-outlined": 59477,
|
|
9114
|
+
"ticket-outlined": 59478,
|
|
9115
|
+
"timesheet-outlined": 59479,
|
|
9116
|
+
"timesheets-outlined": 59480,
|
|
9117
|
+
"today-outlined": 59481,
|
|
9074
9118
|
transfer: transfer,
|
|
9075
|
-
"transportation-outlined":
|
|
9076
|
-
"trash-bin-outlined":
|
|
9077
|
-
"umbrela-outlined":
|
|
9078
|
-
"unavailability-outlined":
|
|
9119
|
+
"transportation-outlined": 59483,
|
|
9120
|
+
"trash-bin-outlined": 59484,
|
|
9121
|
+
"umbrela-outlined": 59485,
|
|
9122
|
+
"unavailability-outlined": 59486,
|
|
9079
9123
|
unavailable: unavailable,
|
|
9080
9124
|
underline: underline,
|
|
9081
|
-
"union-outlined":
|
|
9082
|
-
"unlock-outlined":
|
|
9083
|
-
"upload-outlined":
|
|
9084
|
-
"user-add-outlined":
|
|
9085
|
-
"user-circle-outlined":
|
|
9086
|
-
"user-gear-outlined":
|
|
9087
|
-
"user-out-outlined":
|
|
9088
|
-
"user-outlined":
|
|
9089
|
-
"user-rectangle-outlined":
|
|
9090
|
-
"video-1-outlined":
|
|
9091
|
-
"video-2-outlined":
|
|
9092
|
-
"volunteer-outlined":
|
|
9093
|
-
"wallet-outlined":
|
|
9094
|
-
"
|
|
9125
|
+
"union-outlined": 59489,
|
|
9126
|
+
"unlock-outlined": 59490,
|
|
9127
|
+
"upload-outlined": 59491,
|
|
9128
|
+
"user-add-outlined": 59492,
|
|
9129
|
+
"user-circle-outlined": 59493,
|
|
9130
|
+
"user-gear-outlined": 59494,
|
|
9131
|
+
"user-out-outlined": 59495,
|
|
9132
|
+
"user-outlined": 59496,
|
|
9133
|
+
"user-rectangle-outlined": 59497,
|
|
9134
|
+
"video-1-outlined": 59498,
|
|
9135
|
+
"video-2-outlined": 59499,
|
|
9136
|
+
"volunteer-outlined": 59500,
|
|
9137
|
+
"wallet-outlined": 59501,
|
|
9138
|
+
"warning-outlined": 59502,
|
|
9139
|
+
"wellness-outlined": 59503
|
|
9095
9140
|
};
|
|
9096
9141
|
|
|
9097
9142
|
var HeroIcon = createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
|
|
@@ -9149,22 +9194,22 @@ var SpinWrapper = function SpinWrapper(_ref) {
|
|
|
9149
9194
|
}, children);
|
|
9150
9195
|
};
|
|
9151
9196
|
|
|
9152
|
-
var _excluded$
|
|
9197
|
+
var _excluded$K = ["style"];
|
|
9153
9198
|
var AnimatedIcon = function AnimatedIcon(_ref) {
|
|
9154
9199
|
var style = _ref.style,
|
|
9155
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9200
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$K);
|
|
9156
9201
|
return /*#__PURE__*/React__default.createElement(SpinWrapper, {
|
|
9157
9202
|
style: style
|
|
9158
9203
|
}, /*#__PURE__*/React__default.createElement(StyledHeroIcon, otherProps));
|
|
9159
9204
|
};
|
|
9160
9205
|
|
|
9161
|
-
var _excluded$
|
|
9206
|
+
var _excluded$J = ["name", "themeSize", "testID", "style"];
|
|
9162
9207
|
var GradientIcon = function GradientIcon(_ref) {
|
|
9163
9208
|
var name = _ref.name,
|
|
9164
9209
|
themeSize = _ref.themeSize,
|
|
9165
9210
|
testID = _ref.testID,
|
|
9166
9211
|
style = _ref.style,
|
|
9167
|
-
accessibilityProps = _objectWithoutProperties(_ref, _excluded$
|
|
9212
|
+
accessibilityProps = _objectWithoutProperties(_ref, _excluded$J);
|
|
9168
9213
|
var theme = useTheme();
|
|
9169
9214
|
var gradient = theme.colors.gradients.aiDiagonal;
|
|
9170
9215
|
var size = theme.__hd__.icon.sizes[themeSize];
|
|
@@ -9292,7 +9337,7 @@ var AccordionItem = function AccordionItem(_ref) {
|
|
|
9292
9337
|
}, content));
|
|
9293
9338
|
};
|
|
9294
9339
|
|
|
9295
|
-
var _excluded$
|
|
9340
|
+
var _excluded$I = ["key"];
|
|
9296
9341
|
var Accordion = function Accordion(_ref) {
|
|
9297
9342
|
var items = _ref.items,
|
|
9298
9343
|
activeItemKey = _ref.activeItemKey,
|
|
@@ -9315,7 +9360,7 @@ var Accordion = function Accordion(_ref) {
|
|
|
9315
9360
|
accessible: accessible
|
|
9316
9361
|
}, items.map(function (_ref2, index) {
|
|
9317
9362
|
var key = _ref2.key,
|
|
9318
|
-
props = _objectWithoutProperties(_ref2, _excluded$
|
|
9363
|
+
props = _objectWithoutProperties(_ref2, _excluded$I);
|
|
9319
9364
|
var open = _activeItemKey === key;
|
|
9320
9365
|
return /*#__PURE__*/React__default.createElement(React__default.Fragment, {
|
|
9321
9366
|
key: key
|
|
@@ -10156,7 +10201,7 @@ var borderWidths = {
|
|
|
10156
10201
|
var config = _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({}, colors), space), radii), borderWidths);
|
|
10157
10202
|
var flexPropsKey = ['alignContent', 'alignItems', 'alignSelf', 'display', 'flex', 'flexBasis', 'flexDirection', 'flexGrow', 'flexShrink', 'flexWrap', 'justifyContent'];
|
|
10158
10203
|
|
|
10159
|
-
var _excluded$
|
|
10204
|
+
var _excluded$H = ["theme"];
|
|
10160
10205
|
var getThemeValue = function getThemeValue(theme, key, props) {
|
|
10161
10206
|
var propConfig = config[key];
|
|
10162
10207
|
var propValue = props[key];
|
|
@@ -10183,18 +10228,18 @@ var mapStylePropToThemeValue = function mapStylePropToThemeValue(theme, props) {
|
|
|
10183
10228
|
var configKeys = Object.keys(config);
|
|
10184
10229
|
var StyledBox = index$c(View)(function (_ref5) {
|
|
10185
10230
|
var theme = _ref5.theme,
|
|
10186
|
-
otherProps = _objectWithoutProperties(_ref5, _excluded$
|
|
10231
|
+
otherProps = _objectWithoutProperties(_ref5, _excluded$H);
|
|
10187
10232
|
var styleProps = pick(configKeys, otherProps);
|
|
10188
10233
|
var flexProps = pick(_toConsumableArray(flexPropsKey), otherProps);
|
|
10189
10234
|
return _objectSpread2(_objectSpread2({}, mapStylePropToThemeValue(theme, styleProps)), flexProps);
|
|
10190
10235
|
});
|
|
10191
10236
|
|
|
10192
|
-
var _excluded$
|
|
10237
|
+
var _excluded$G = ["children", "style", "testID"];
|
|
10193
10238
|
var Box = function Box(_ref) {
|
|
10194
10239
|
var children = _ref.children,
|
|
10195
10240
|
style = _ref.style,
|
|
10196
10241
|
testID = _ref.testID,
|
|
10197
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10242
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$G);
|
|
10198
10243
|
return /*#__PURE__*/React__default.createElement(StyledBox, _extends$1({}, otherProps, {
|
|
10199
10244
|
style: style,
|
|
10200
10245
|
testID: testID
|
|
@@ -10465,7 +10510,7 @@ var StyledIcon$4 = index$c(Icon)(function (_ref6) {
|
|
|
10465
10510
|
};
|
|
10466
10511
|
});
|
|
10467
10512
|
|
|
10468
|
-
var _excluded$
|
|
10513
|
+
var _excluded$F = ["children", "visible", "intent", "style", "testID"];
|
|
10469
10514
|
var Status$1 = function Status(_ref) {
|
|
10470
10515
|
var children = _ref.children,
|
|
10471
10516
|
_ref$visible = _ref.visible,
|
|
@@ -10474,7 +10519,7 @@ var Status$1 = function Status(_ref) {
|
|
|
10474
10519
|
intent = _ref$intent === void 0 ? 'danger' : _ref$intent,
|
|
10475
10520
|
style = _ref.style,
|
|
10476
10521
|
testID = _ref.testID,
|
|
10477
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
10522
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$F);
|
|
10478
10523
|
var _React$useRef = React__default.useRef(new Animated.Value(visible ? 1 : 0)),
|
|
10479
10524
|
opacity = _React$useRef.current;
|
|
10480
10525
|
var isFirstRendering = React__default.useRef(true);
|
|
@@ -10510,7 +10555,7 @@ var Status$1 = function Status(_ref) {
|
|
|
10510
10555
|
|
|
10511
10556
|
var DEFAULT_MAX_NUMBER = 99;
|
|
10512
10557
|
|
|
10513
|
-
var _excluded$
|
|
10558
|
+
var _excluded$E = ["children", "visible", "style", "max", "testID", "content"];
|
|
10514
10559
|
var Status = function Status(_ref) {
|
|
10515
10560
|
var children = _ref.children,
|
|
10516
10561
|
_ref$visible = _ref.visible,
|
|
@@ -10520,7 +10565,7 @@ var Status = function Status(_ref) {
|
|
|
10520
10565
|
max = _ref$max === void 0 ? DEFAULT_MAX_NUMBER : _ref$max,
|
|
10521
10566
|
testID = _ref.testID,
|
|
10522
10567
|
originalContent = _ref.content,
|
|
10523
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
10568
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$E);
|
|
10524
10569
|
var content = useMemo(function () {
|
|
10525
10570
|
return originalContent > max ? "".concat(max, "+") : String(originalContent);
|
|
10526
10571
|
}, [originalContent, max]);
|
|
@@ -10532,7 +10577,7 @@ var Status = function Status(_ref) {
|
|
|
10532
10577
|
}, /*#__PURE__*/React__default.createElement(StyledCountText, null, content)));
|
|
10533
10578
|
};
|
|
10534
10579
|
|
|
10535
|
-
var _excluded$
|
|
10580
|
+
var _excluded$D = ["content", "visible", "max", "intent", "style", "testID", "size", "variant", "icon"];
|
|
10536
10581
|
var getPaddingState = function getPaddingState(content) {
|
|
10537
10582
|
return content.length > 1 ? 'wideContent' : 'narrowContent';
|
|
10538
10583
|
};
|
|
@@ -10551,7 +10596,7 @@ var Badge$1 = function Badge(_ref) {
|
|
|
10551
10596
|
_ref$variant = _ref.variant,
|
|
10552
10597
|
variant = _ref$variant === void 0 ? 'filled' : _ref$variant,
|
|
10553
10598
|
icon = _ref.icon,
|
|
10554
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
10599
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$D);
|
|
10555
10600
|
var _React$useRef = React__default.useRef(new Animated.Value(visible ? 1 : 0)),
|
|
10556
10601
|
opacity = _React$useRef.current;
|
|
10557
10602
|
var isFirstRendering = React__default.useRef(true);
|
|
@@ -10669,7 +10714,7 @@ var StyledBottomBarText = index$c(Typography.Label)(function (_ref4) {
|
|
|
10669
10714
|
};
|
|
10670
10715
|
});
|
|
10671
10716
|
|
|
10672
|
-
var _excluded$
|
|
10717
|
+
var _excluded$C = ["onTabPress", "renderActiveTabOnly", "selectedTabKey", "tabs"];
|
|
10673
10718
|
var getInactiveIcon = function getInactiveIcon(icon) {
|
|
10674
10719
|
var inactiveIcon = "".concat(icon, "-outlined");
|
|
10675
10720
|
return isHeroIcon(inactiveIcon) ? inactiveIcon : icon;
|
|
@@ -10680,7 +10725,7 @@ var BottomNavigation = function BottomNavigation(_ref) {
|
|
|
10680
10725
|
renderActiveTabOnly = _ref$renderActiveTabO === void 0 ? false : _ref$renderActiveTabO,
|
|
10681
10726
|
selectedTabKey = _ref.selectedTabKey,
|
|
10682
10727
|
tabs = _ref.tabs,
|
|
10683
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
10728
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$C);
|
|
10684
10729
|
var insets = useSafeAreaInsets();
|
|
10685
10730
|
/**
|
|
10686
10731
|
* List of loaded tabs, tabs will be loaded when navigated to.
|
|
@@ -10772,13 +10817,13 @@ var StyledDivider = index$c(View)(function (_ref) {
|
|
|
10772
10817
|
}, horizontalMargin), verticalMargin);
|
|
10773
10818
|
});
|
|
10774
10819
|
|
|
10775
|
-
var _excluded$
|
|
10820
|
+
var _excluded$B = ["marginHorizontal", "marginVertical", "style", "testID"];
|
|
10776
10821
|
var Divider = function Divider(_ref) {
|
|
10777
10822
|
var marginHorizontal = _ref.marginHorizontal,
|
|
10778
10823
|
marginVertical = _ref.marginVertical,
|
|
10779
10824
|
style = _ref.style,
|
|
10780
10825
|
testID = _ref.testID,
|
|
10781
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
10826
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$B);
|
|
10782
10827
|
return /*#__PURE__*/React__default.createElement(StyledDivider, _extends$1({}, nativeProps, {
|
|
10783
10828
|
themeMarginHorizontal: marginHorizontal,
|
|
10784
10829
|
themeMarginVertical: marginVertical,
|
|
@@ -10909,7 +10954,7 @@ var StyledLoadingDot = index$c(View)(function (_ref) {
|
|
|
10909
10954
|
}, themeStyling());
|
|
10910
10955
|
});
|
|
10911
10956
|
|
|
10912
|
-
var _excluded$
|
|
10957
|
+
var _excluded$A = ["count", "size", "testID", "themeVariant"];
|
|
10913
10958
|
var AnimatedLoadingIndicatorWrapper = Animated.createAnimatedComponent(StyledLoadingIndicatorWrapper);
|
|
10914
10959
|
var AnimatedLoadingDot = Animated.createAnimatedComponent(StyledLoadingDot);
|
|
10915
10960
|
var renderDotComponent = function renderDotComponent(_ref) {
|
|
@@ -10941,7 +10986,7 @@ var LoadingIndicator = function LoadingIndicator(_ref2) {
|
|
|
10941
10986
|
size = _ref2$size === void 0 ? 12 : _ref2$size,
|
|
10942
10987
|
testID = _ref2.testID,
|
|
10943
10988
|
themeVariant = _ref2.themeVariant,
|
|
10944
|
-
nativeProps = _objectWithoutProperties(_ref2, _excluded$
|
|
10989
|
+
nativeProps = _objectWithoutProperties(_ref2, _excluded$A);
|
|
10945
10990
|
var progressAnimation = useRef(new Animated.Value(0));
|
|
10946
10991
|
useEffect(function () {
|
|
10947
10992
|
var animation = Animated.loop(Animated.timing(progressAnimation.current, {
|
|
@@ -11573,11 +11618,11 @@ var Header = function Header(_ref) {
|
|
|
11573
11618
|
}))) : null), showDivider ? /*#__PURE__*/React__default.createElement(Divider, null) : null);
|
|
11574
11619
|
};
|
|
11575
11620
|
|
|
11576
|
-
var _excluded$
|
|
11621
|
+
var _excluded$z = ["scrollEventThrottle"];
|
|
11577
11622
|
var BottomSheetScrollView = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
11578
11623
|
var _ref$scrollEventThrot = _ref.scrollEventThrottle,
|
|
11579
11624
|
scrollEventThrottle = _ref$scrollEventThrot === void 0 ? 100 : _ref$scrollEventThrot,
|
|
11580
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11625
|
+
props = _objectWithoutProperties(_ref, _excluded$z);
|
|
11581
11626
|
var _useContext = useContext(BottomSheetContext),
|
|
11582
11627
|
setInternalShowDivider = _useContext.setInternalShowDivider;
|
|
11583
11628
|
var onScrollBeginDrag = useCallback(function (e) {
|
|
@@ -14699,12 +14744,12 @@ var Indicator = index$c(View)(function (_ref3) {
|
|
|
14699
14744
|
};
|
|
14700
14745
|
});
|
|
14701
14746
|
|
|
14702
|
-
var _excluded$
|
|
14747
|
+
var _excluded$y = ["intent", "children"];
|
|
14703
14748
|
var DataCard = function DataCard(_ref) {
|
|
14704
14749
|
var _ref$intent = _ref.intent,
|
|
14705
14750
|
intent = _ref$intent === void 0 ? 'info' : _ref$intent,
|
|
14706
14751
|
children = _ref.children,
|
|
14707
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
14752
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$y);
|
|
14708
14753
|
return /*#__PURE__*/React__default.createElement(StyledDataCard, nativeProps, /*#__PURE__*/React__default.createElement(Indicator, {
|
|
14709
14754
|
themeIntent: intent,
|
|
14710
14755
|
testID: "data-card-indicator"
|
|
@@ -14723,13 +14768,13 @@ var StyledCard$1 = index$c(View)(function (_ref) {
|
|
|
14723
14768
|
});
|
|
14724
14769
|
});
|
|
14725
14770
|
|
|
14726
|
-
var _excluded$
|
|
14771
|
+
var _excluded$x = ["intent", "children", "variant"];
|
|
14727
14772
|
var Card$1 = function Card(_ref) {
|
|
14728
14773
|
var intent = _ref.intent,
|
|
14729
14774
|
children = _ref.children,
|
|
14730
14775
|
_ref$variant = _ref.variant,
|
|
14731
14776
|
variant = _ref$variant === void 0 ? 'basic' : _ref$variant,
|
|
14732
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
14777
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$x);
|
|
14733
14778
|
return /*#__PURE__*/React__default.createElement(StyledCard$1, _extends$1({}, nativeProps, {
|
|
14734
14779
|
themeIntent: intent,
|
|
14735
14780
|
themeVariant: variant
|
|
@@ -14996,7 +15041,7 @@ var CardCarousel = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
14996
15041
|
});
|
|
14997
15042
|
CardCarousel.displayName = 'CardCarousel';
|
|
14998
15043
|
|
|
14999
|
-
var _excluded$
|
|
15044
|
+
var _excluded$w = ["rounded", "size", "testID", "style"];
|
|
15000
15045
|
/**
|
|
15001
15046
|
* @deprecated Image component will soon be deprecated. Please use `Image` from `react-native` instead.
|
|
15002
15047
|
*/
|
|
@@ -15007,7 +15052,7 @@ var Image = function Image(_ref) {
|
|
|
15007
15052
|
size = _ref$size === void 0 ? '6xlarge' : _ref$size,
|
|
15008
15053
|
testID = _ref.testID,
|
|
15009
15054
|
style = _ref.style,
|
|
15010
|
-
imageNativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
15055
|
+
imageNativeProps = _objectWithoutProperties(_ref, _excluded$w);
|
|
15011
15056
|
useDeprecation('Image component will soon be deprecated. Please use `Image` from `react-native` instead.');
|
|
15012
15057
|
var theme = useTheme();
|
|
15013
15058
|
var imageSize = theme.__hd__.image.sizes[size];
|
|
@@ -15142,7 +15187,7 @@ var CarouselItem = function CarouselItem(_ref) {
|
|
|
15142
15187
|
}, heading), !!body && /*#__PURE__*/React__default.createElement(Typography.Body, null, body)));
|
|
15143
15188
|
};
|
|
15144
15189
|
|
|
15145
|
-
var _excluded$
|
|
15190
|
+
var _excluded$v = ["items", "onItemIndexChange", "renderActions", "selectedItemIndex", "style", "shouldShowPagination", "testID", "pageControlPosition"];
|
|
15146
15191
|
function useStateFromProp(initialValue) {
|
|
15147
15192
|
var _useState = useState(initialValue),
|
|
15148
15193
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -15169,7 +15214,7 @@ var Carousel = function Carousel(_ref) {
|
|
|
15169
15214
|
testID = _ref.testID,
|
|
15170
15215
|
_ref$pageControlPosit = _ref.pageControlPosition,
|
|
15171
15216
|
pageControlPosition = _ref$pageControlPosit === void 0 ? 'top' : _ref$pageControlPosit,
|
|
15172
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
15217
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$v);
|
|
15173
15218
|
useDeprecation("shouldShowPagination prop has been deprecated", shouldShowPagination !== noop$2);
|
|
15174
15219
|
useDeprecation("The use of 'pageControlPosition == bottom' has been deprecated", pageControlPosition === 'bottom');
|
|
15175
15220
|
var theme = useTheme();
|
|
@@ -20440,7 +20485,7 @@ var StyledChipIcon = index$c(Icon)(function (_ref2) {
|
|
|
20440
20485
|
};
|
|
20441
20486
|
});
|
|
20442
20487
|
|
|
20443
|
-
var _excluded$
|
|
20488
|
+
var _excluded$u = ["label", "variant", "selected", "icon", "onPress", "showSelectedIcon", "accessible", "onBlur", "onFocus"];
|
|
20444
20489
|
var getChipLabel = function getChipLabel(label) {
|
|
20445
20490
|
if (typeof label === 'string') {
|
|
20446
20491
|
return /*#__PURE__*/React__default.createElement(Typography.Body, {
|
|
@@ -20476,7 +20521,7 @@ var Chip = function Chip(_ref) {
|
|
|
20476
20521
|
accessible = _ref.accessible,
|
|
20477
20522
|
onBlur = _ref.onBlur,
|
|
20478
20523
|
onFocus = _ref.onFocus,
|
|
20479
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
20524
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$u);
|
|
20480
20525
|
useDeprecation('Chip variant `outlined` and `filled` are deprecated.', variant === 'outlined' || variant === 'filled');
|
|
20481
20526
|
var renamedVariant = getChipVariant(variant);
|
|
20482
20527
|
var shouldShowSelectedIcon = (renamedVariant === 'selection' || renamedVariant === 'compact-outlined') && selected && showSelectedIcon;
|
|
@@ -20867,7 +20912,7 @@ var StyledErrorAndMaxLengthContainer = index$c(View)(function (_ref14) {
|
|
|
20867
20912
|
};
|
|
20868
20913
|
});
|
|
20869
20914
|
|
|
20870
|
-
var _excluded$
|
|
20915
|
+
var _excluded$t = ["label", "prefix", "suffix", "style", "textStyle", "testID", "accessibilityLabelledBy", "error", "required", "editable", "disabled", "loading", "maxLength", "hideCharacterCount", "helpText", "value", "defaultValue", "renderInputValue", "allowFontScaling", "variant"];
|
|
20871
20916
|
var getState$3 = function getState(_ref) {
|
|
20872
20917
|
var disabled = _ref.disabled,
|
|
20873
20918
|
error = _ref.error,
|
|
@@ -20983,7 +21028,7 @@ var TextInput = /*#__PURE__*/forwardRef(function (_ref8, ref) {
|
|
|
20983
21028
|
allowFontScaling = _ref8$allowFontScalin === void 0 ? false : _ref8$allowFontScalin,
|
|
20984
21029
|
_ref8$variant = _ref8.variant,
|
|
20985
21030
|
variant = _ref8$variant === void 0 ? 'text' : _ref8$variant,
|
|
20986
|
-
nativeProps = _objectWithoutProperties(_ref8, _excluded$
|
|
21031
|
+
nativeProps = _objectWithoutProperties(_ref8, _excluded$t);
|
|
20987
21032
|
var displayText = getDisplayText(value, defaultValue);
|
|
20988
21033
|
var isEmptyValue = displayText.length === 0;
|
|
20989
21034
|
var _React$useState = React__default.useState(0),
|
|
@@ -21730,11 +21775,11 @@ var DatePickerIOS = function DatePickerIOS(_ref) {
|
|
|
21730
21775
|
}));
|
|
21731
21776
|
};
|
|
21732
21777
|
|
|
21733
|
-
var _excluded$
|
|
21778
|
+
var _excluded$s = ["variant"];
|
|
21734
21779
|
var DatePicker = function DatePicker(_ref) {
|
|
21735
21780
|
var _ref$variant = _ref.variant,
|
|
21736
21781
|
variant = _ref$variant === void 0 ? 'default' : _ref$variant,
|
|
21737
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
21782
|
+
props = _objectWithoutProperties(_ref, _excluded$s);
|
|
21738
21783
|
if (variant === 'calendar') {
|
|
21739
21784
|
return /*#__PURE__*/React__default.createElement(DatePickerCalendar, props);
|
|
21740
21785
|
}
|
|
@@ -22106,7 +22151,7 @@ var DragableDrawer = function DragableDrawer(_ref) {
|
|
|
22106
22151
|
}, /*#__PURE__*/React__default.createElement(StyledHandlerContainer$1, panHandlers, /*#__PURE__*/React__default.createElement(StyledHandler, null)), children)));
|
|
22107
22152
|
};
|
|
22108
22153
|
|
|
22109
|
-
var _excluded$
|
|
22154
|
+
var _excluded$r = ["onScroll", "onScrollEndDrag", "onMomentumScrollEnd", "scrollEventThrottle", "children"];
|
|
22110
22155
|
// scrollY tolerance: treat anything within this many pixels of the top as
|
|
22111
22156
|
// "at scroll top" to handle fractional pixels and throttled scroll events.
|
|
22112
22157
|
var SCROLL_TOP_THRESHOLD_PX = 5;
|
|
@@ -22133,7 +22178,7 @@ var DragableScrollView = function DragableScrollView(_ref) {
|
|
|
22133
22178
|
_ref$scrollEventThrot = _ref.scrollEventThrottle,
|
|
22134
22179
|
scrollEventThrottle = _ref$scrollEventThrot === void 0 ? DEFAULT_SCROLL_EVENT_THROTTLE : _ref$scrollEventThrot,
|
|
22135
22180
|
children = _ref.children,
|
|
22136
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
22181
|
+
props = _objectWithoutProperties(_ref, _excluded$r);
|
|
22137
22182
|
var _useDragableDrawerCon = useDragableDrawerContext(),
|
|
22138
22183
|
isAtMaxHeight = _useDragableDrawerCon.isAtMaxHeight,
|
|
22139
22184
|
scrollYRef = _useDragableDrawerCon.scrollYRef,
|
|
@@ -23997,7 +24042,7 @@ var StyledErrorDescription = index$c(Typography.Body)(function (_ref9) {
|
|
|
23997
24042
|
};
|
|
23998
24043
|
});
|
|
23999
24044
|
|
|
24000
|
-
var _excluded$
|
|
24045
|
+
var _excluded$q = ["variant", "title", "description", "image", "testID", "ctaText", "onCtaPress", "secondaryCtaText", "onSecondaryCtaPress", "icon"],
|
|
24001
24046
|
_excluded2 = ["visible", "variant", "title", "description", "image", "testID", "ctaText", "onCtaPress", "secondaryCtaText", "onSecondaryCtaPress"];
|
|
24002
24047
|
var renderImage$1 = function renderImage(image) {
|
|
24003
24048
|
if (/*#__PURE__*/isValidElement(image)) {
|
|
@@ -24038,7 +24083,7 @@ var ErrorPage = function ErrorPage(_ref2) {
|
|
|
24038
24083
|
secondaryCtaText = _ref2.secondaryCtaText,
|
|
24039
24084
|
onSecondaryCtaPress = _ref2.onSecondaryCtaPress,
|
|
24040
24085
|
icon = _ref2.icon,
|
|
24041
|
-
nativeProps = _objectWithoutProperties(_ref2, _excluded$
|
|
24086
|
+
nativeProps = _objectWithoutProperties(_ref2, _excluded$q);
|
|
24042
24087
|
var showCta = ctaText && onCtaPress !== undefined;
|
|
24043
24088
|
var showSecondaryCta = secondaryCtaText && onSecondaryCtaPress !== undefined;
|
|
24044
24089
|
var showButtonContainer = showCta || showSecondaryCta;
|
|
@@ -24267,13 +24312,13 @@ var ActionItem = function ActionItem(_ref) {
|
|
|
24267
24312
|
})), /*#__PURE__*/React__default.createElement(StyledActionItemText, null, title))));
|
|
24268
24313
|
};
|
|
24269
24314
|
|
|
24270
|
-
var _excluded$
|
|
24315
|
+
var _excluded$p = ["active"];
|
|
24271
24316
|
var AnimatedIcons = Animated.createAnimatedComponent(/*#__PURE__*/React__default.forwardRef(function (props, _) {
|
|
24272
24317
|
return /*#__PURE__*/React__default.createElement(StyledFABIcon, props);
|
|
24273
24318
|
}));
|
|
24274
24319
|
var AnimatedFABIcon = function AnimatedFABIcon(_ref) {
|
|
24275
24320
|
var active = _ref.active,
|
|
24276
|
-
iconProps = _objectWithoutProperties(_ref, _excluded$
|
|
24321
|
+
iconProps = _objectWithoutProperties(_ref, _excluded$p);
|
|
24277
24322
|
var rotateAnimation = useRef(new Animated.Value(active ? 1 : 0));
|
|
24278
24323
|
useEffect(function () {
|
|
24279
24324
|
var animation = Animated.spring(rotateAnimation.current, {
|
|
@@ -24679,11 +24724,11 @@ var StyledFAB = index$c(FABWithTitleStyle)(function (_ref) {
|
|
|
24679
24724
|
};
|
|
24680
24725
|
});
|
|
24681
24726
|
|
|
24682
|
-
var _excluded$
|
|
24727
|
+
var _excluded$o = ["fabConfig", "onCancel"];
|
|
24683
24728
|
var Pair = function Pair(_ref) {
|
|
24684
24729
|
var fabConfig = _ref.fabConfig,
|
|
24685
24730
|
onCancel = _ref.onCancel,
|
|
24686
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
24731
|
+
props = _objectWithoutProperties(_ref, _excluded$o);
|
|
24687
24732
|
var icon = fabConfig.icon,
|
|
24688
24733
|
title = fabConfig.title,
|
|
24689
24734
|
onPress = fabConfig.onPress,
|
|
@@ -25418,11 +25463,11 @@ var StyledFocusIcon = index$c(Icon)(function (_ref7) {
|
|
|
25418
25463
|
};
|
|
25419
25464
|
});
|
|
25420
25465
|
|
|
25421
|
-
var _excluded$
|
|
25466
|
+
var _excluded$n = ["style", "testID"];
|
|
25422
25467
|
var MapPinFocussed = function MapPinFocussed(_ref) {
|
|
25423
25468
|
var style = _ref.style,
|
|
25424
25469
|
testID = _ref.testID,
|
|
25425
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
25470
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$n);
|
|
25426
25471
|
return /*#__PURE__*/React__default.createElement(StyledContainer$4, _extends$1({}, nativeProps, {
|
|
25427
25472
|
style: style,
|
|
25428
25473
|
testID: testID
|
|
@@ -25432,7 +25477,7 @@ var MapPinFocussed = function MapPinFocussed(_ref) {
|
|
|
25432
25477
|
}));
|
|
25433
25478
|
};
|
|
25434
25479
|
|
|
25435
|
-
var _excluded$
|
|
25480
|
+
var _excluded$m = ["style", "testID", "state", "image", "icon"];
|
|
25436
25481
|
var getBadgeIconName = function getBadgeIconName(state) {
|
|
25437
25482
|
var iconMap = {
|
|
25438
25483
|
idle: undefined,
|
|
@@ -25448,7 +25493,7 @@ var MapPin = function MapPin(_ref) {
|
|
|
25448
25493
|
state = _ref$state === void 0 ? 'idle' : _ref$state,
|
|
25449
25494
|
image = _ref.image,
|
|
25450
25495
|
icon = _ref.icon,
|
|
25451
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
25496
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$m);
|
|
25452
25497
|
var badgeIcon = getBadgeIconName(state);
|
|
25453
25498
|
return /*#__PURE__*/React__default.createElement(StyledContainer$4, _extends$1({}, nativeProps, {
|
|
25454
25499
|
style: style,
|
|
@@ -25769,7 +25814,7 @@ var THEME_INTENT_MAP = {
|
|
|
25769
25814
|
'archived-inverted': 'archivedInverted'
|
|
25770
25815
|
};
|
|
25771
25816
|
|
|
25772
|
-
var _excluded$
|
|
25817
|
+
var _excluded$l = ["value", "renderValue", "intent", "style", "testID"];
|
|
25773
25818
|
var defaultRenderValue = function defaultRenderValue(value) {
|
|
25774
25819
|
return "".concat(value, "%");
|
|
25775
25820
|
};
|
|
@@ -25782,7 +25827,7 @@ var ProgressCircle = function ProgressCircle(_ref) {
|
|
|
25782
25827
|
intent = _ref$intent === void 0 ? 'primary' : _ref$intent,
|
|
25783
25828
|
style = _ref.style,
|
|
25784
25829
|
testID = _ref.testID,
|
|
25785
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
25830
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$l);
|
|
25786
25831
|
var theme = useTheme$1();
|
|
25787
25832
|
var size = theme.__hd__.progress.sizes.circleDiameter;
|
|
25788
25833
|
var strokeWidth = theme.__hd__.progress.sizes.circleCompletenessHeight;
|
|
@@ -25852,14 +25897,14 @@ var StyledInner = index$c(Animated.View)(function (_ref2) {
|
|
|
25852
25897
|
};
|
|
25853
25898
|
});
|
|
25854
25899
|
|
|
25855
|
-
var _excluded$
|
|
25900
|
+
var _excluded$k = ["value", "intent", "style", "testID"];
|
|
25856
25901
|
var ProgressBar = function ProgressBar(_ref) {
|
|
25857
25902
|
var value = _ref.value,
|
|
25858
25903
|
_ref$intent = _ref.intent,
|
|
25859
25904
|
intent = _ref$intent === void 0 ? 'primary' : _ref$intent,
|
|
25860
25905
|
style = _ref.style,
|
|
25861
25906
|
testID = _ref.testID,
|
|
25862
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
25907
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$k);
|
|
25863
25908
|
var _useState = useState(0),
|
|
25864
25909
|
_useState2 = _slicedToArray(_useState, 2),
|
|
25865
25910
|
width = _useState2[0],
|
|
@@ -25949,7 +25994,7 @@ var StyledSingleStep = index$c(Box)(function (_ref3) {
|
|
|
25949
25994
|
};
|
|
25950
25995
|
});
|
|
25951
25996
|
|
|
25952
|
-
var _excluded$
|
|
25997
|
+
var _excluded$j = ["steps", "current", "onLayout"];
|
|
25953
25998
|
var getStepState = function getStepState(current, index) {
|
|
25954
25999
|
if (index < current) {
|
|
25955
26000
|
return 'complete';
|
|
@@ -25963,7 +26008,7 @@ var ProgressStep = function ProgressStep(_ref) {
|
|
|
25963
26008
|
var steps = _ref.steps,
|
|
25964
26009
|
current = _ref.current,
|
|
25965
26010
|
onLayout = _ref.onLayout,
|
|
25966
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
26011
|
+
props = _objectWithoutProperties(_ref, _excluded$j);
|
|
25967
26012
|
var theme = useTheme$1();
|
|
25968
26013
|
var _React$useState = React__default.useState(0),
|
|
25969
26014
|
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
@@ -26260,7 +26305,7 @@ var StyledEmptyText = index$c(Typography.Caption)(function (_ref4) {
|
|
|
26260
26305
|
};
|
|
26261
26306
|
});
|
|
26262
26307
|
|
|
26263
|
-
var _excluded$
|
|
26308
|
+
var _excluded$i = ["data", "headerConfig", "emptyText", "legendConfig", "styleConfig", "style", "testID", "collapsable"];
|
|
26264
26309
|
var ProgressSegmentedBar = function ProgressSegmentedBar(_ref) {
|
|
26265
26310
|
var data = _ref.data,
|
|
26266
26311
|
headerConfig = _ref.headerConfig,
|
|
@@ -26270,7 +26315,7 @@ var ProgressSegmentedBar = function ProgressSegmentedBar(_ref) {
|
|
|
26270
26315
|
style = _ref.style,
|
|
26271
26316
|
testID = _ref.testID,
|
|
26272
26317
|
collapsable = _ref.collapsable,
|
|
26273
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
26318
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$i);
|
|
26274
26319
|
var values = React__default.useMemo(function () {
|
|
26275
26320
|
return data.map(function (s) {
|
|
26276
26321
|
return s.data;
|
|
@@ -26640,14 +26685,14 @@ var AnimatedSpinner = function AnimatedSpinner(_ref) {
|
|
|
26640
26685
|
}, dotProps))));
|
|
26641
26686
|
};
|
|
26642
26687
|
|
|
26643
|
-
var _excluded$
|
|
26688
|
+
var _excluded$h = ["testID", "size", "intent"];
|
|
26644
26689
|
var Spinner = function Spinner(_ref) {
|
|
26645
26690
|
var testID = _ref.testID,
|
|
26646
26691
|
_ref$size = _ref.size,
|
|
26647
26692
|
size = _ref$size === void 0 ? 'medium' : _ref$size,
|
|
26648
26693
|
_ref$intent = _ref.intent,
|
|
26649
26694
|
intent = _ref$intent === void 0 ? 'primary' : _ref$intent,
|
|
26650
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
26695
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$h);
|
|
26651
26696
|
return /*#__PURE__*/React__default.createElement(StyledView$1, nativeProps, /*#__PURE__*/React__default.createElement(StyledSpinnerContainer, {
|
|
26652
26697
|
testID: testID
|
|
26653
26698
|
}, /*#__PURE__*/React__default.createElement(AnimatedSpinner, {
|
|
@@ -26680,7 +26725,7 @@ var SwipeableAction = function SwipeableAction(_ref) {
|
|
|
26680
26725
|
}, children);
|
|
26681
26726
|
};
|
|
26682
26727
|
|
|
26683
|
-
var _excluded$
|
|
26728
|
+
var _excluded$g = ["children", "state", "onStateChange", "leftActions", "leftActionsWidth", "rightActions", "rightActionsWidth", "variant"];
|
|
26684
26729
|
var renderActions = function renderActions(actions, width, progress, direction) {
|
|
26685
26730
|
var trans = progress.interpolate({
|
|
26686
26731
|
inputRange: [0, 1],
|
|
@@ -26709,7 +26754,7 @@ var Swipeable = function Swipeable(_ref) {
|
|
|
26709
26754
|
rightActionsWidth = _ref.rightActionsWidth,
|
|
26710
26755
|
_ref$variant = _ref.variant,
|
|
26711
26756
|
variant = _ref$variant === void 0 ? 'card' : _ref$variant,
|
|
26712
|
-
swipeableProps = _objectWithoutProperties(_ref, _excluded$
|
|
26757
|
+
swipeableProps = _objectWithoutProperties(_ref, _excluded$g);
|
|
26713
26758
|
var theme = useTheme();
|
|
26714
26759
|
var _useWindowDimensions = useWindowDimensions(),
|
|
26715
26760
|
width = _useWindowDimensions.width;
|
|
@@ -26966,6 +27011,134 @@ var SectionHeading = function SectionHeading(_ref) {
|
|
|
26966
27011
|
}, text)), rightChildren);
|
|
26967
27012
|
};
|
|
26968
27013
|
|
|
27014
|
+
var isTop = function isTop(position) {
|
|
27015
|
+
return position === 'top' || position === 'single';
|
|
27016
|
+
};
|
|
27017
|
+
var isBottom = function isBottom(position) {
|
|
27018
|
+
return position === 'bottom' || position === 'single';
|
|
27019
|
+
};
|
|
27020
|
+
var StyledRow = index$c(View)(function (_ref) {
|
|
27021
|
+
var theme = _ref.theme,
|
|
27022
|
+
themePosition = _ref.themePosition,
|
|
27023
|
+
_ref$themeMarginHoriz = _ref.themeMarginHorizontal,
|
|
27024
|
+
themeMarginHorizontal = _ref$themeMarginHoriz === void 0 ? 'medium' : _ref$themeMarginHoriz;
|
|
27025
|
+
var radius = theme.__hd__.sectionList.radii.group;
|
|
27026
|
+
var marginHorizontal = theme.__hd__.sectionList.space.marginHorizontal[themeMarginHorizontal];
|
|
27027
|
+
return {
|
|
27028
|
+
marginHorizontal: marginHorizontal,
|
|
27029
|
+
backgroundColor: theme.__hd__.sectionList.colors.groupBackground,
|
|
27030
|
+
borderTopLeftRadius: isTop(themePosition) ? radius : 0,
|
|
27031
|
+
borderTopRightRadius: isTop(themePosition) ? radius : 0,
|
|
27032
|
+
borderBottomLeftRadius: isBottom(themePosition) ? radius : 0,
|
|
27033
|
+
borderBottomRightRadius: isBottom(themePosition) ? radius : 0,
|
|
27034
|
+
overflow: 'hidden'
|
|
27035
|
+
};
|
|
27036
|
+
});
|
|
27037
|
+
var StyledDividerWrapper = index$c(View)(function (_ref2) {
|
|
27038
|
+
var theme = _ref2.theme,
|
|
27039
|
+
_ref2$themeMarginHori = _ref2.themeMarginHorizontal,
|
|
27040
|
+
themeMarginHorizontal = _ref2$themeMarginHori === void 0 ? 'medium' : _ref2$themeMarginHori;
|
|
27041
|
+
return {
|
|
27042
|
+
marginHorizontal: theme.__hd__.sectionList.space.marginHorizontal[themeMarginHorizontal],
|
|
27043
|
+
backgroundColor: theme.__hd__.sectionList.colors.groupBackground
|
|
27044
|
+
};
|
|
27045
|
+
});
|
|
27046
|
+
var StyledSectionSpacer = index$c(View)(function (_ref3) {
|
|
27047
|
+
var theme = _ref3.theme,
|
|
27048
|
+
themeCompact = _ref3.themeCompact;
|
|
27049
|
+
return {
|
|
27050
|
+
height: themeCompact ? theme.__hd__.sectionList.space.sectionSpacingCompact : theme.__hd__.sectionList.space.sectionSpacing
|
|
27051
|
+
};
|
|
27052
|
+
});
|
|
27053
|
+
var StyledSectionHeading = index$c(SectionHeading)(function (_ref4) {
|
|
27054
|
+
var theme = _ref4.theme;
|
|
27055
|
+
return {
|
|
27056
|
+
paddingLeft: theme.__hd__.sectionList.space.headingPaddingLeft,
|
|
27057
|
+
marginBottom: 0
|
|
27058
|
+
};
|
|
27059
|
+
});
|
|
27060
|
+
|
|
27061
|
+
var _excluded$f = ["sections", "marginHorizontal", "style", "testID"];
|
|
27062
|
+
var positionOf = function positionOf(index, count) {
|
|
27063
|
+
if (count === 1) return 'single';
|
|
27064
|
+
if (index === 0) return 'top';
|
|
27065
|
+
if (index === count - 1) return 'bottom';
|
|
27066
|
+
return 'middle';
|
|
27067
|
+
};
|
|
27068
|
+
// StyledRow already clips corners via overflow:hidden + its own borderRadius, so the
|
|
27069
|
+
// inner list items must not add their own rounding on top of it.
|
|
27070
|
+
var NO_RADIUS = {
|
|
27071
|
+
borderRadius: 0
|
|
27072
|
+
};
|
|
27073
|
+
var renderRow = function renderRow(row) {
|
|
27074
|
+
return row.type === 'basic-item' ? /*#__PURE__*/React__default.createElement(List$1.BasicItem, _extends$1({}, row, {
|
|
27075
|
+
style: [NO_RADIUS, row.style]
|
|
27076
|
+
})) : /*#__PURE__*/React__default.createElement(List$1.Item, _extends$1({}, row, {
|
|
27077
|
+
style: [NO_RADIUS, row.style]
|
|
27078
|
+
}));
|
|
27079
|
+
};
|
|
27080
|
+
// Factory lives at module scope — satisfies react/no-unstable-nested-components.
|
|
27081
|
+
// RN only renders ItemSeparatorComponent between adjacent items (never after the
|
|
27082
|
+
// last), which is exactly the desired divider placement for a bounded group.
|
|
27083
|
+
var createRowDivider = function createRowDivider(margin) {
|
|
27084
|
+
return function () {
|
|
27085
|
+
return /*#__PURE__*/React__default.createElement(StyledDividerWrapper, {
|
|
27086
|
+
testID: "section-list-divider-wrapper",
|
|
27087
|
+
themeMarginHorizontal: margin
|
|
27088
|
+
}, /*#__PURE__*/React__default.createElement(Divider, {
|
|
27089
|
+
testID: "section-list-divider"
|
|
27090
|
+
}));
|
|
27091
|
+
};
|
|
27092
|
+
};
|
|
27093
|
+
var SectionSpacer$1 = function SectionSpacer(_ref) {
|
|
27094
|
+
var leadingItem = _ref.leadingItem,
|
|
27095
|
+
trailingSection = _ref.trailingSection;
|
|
27096
|
+
return leadingItem && trailingSection ? /*#__PURE__*/React__default.createElement(StyledSectionSpacer, {
|
|
27097
|
+
themeCompact: !!trailingSection.hideHeading,
|
|
27098
|
+
testID: "section-list-spacer"
|
|
27099
|
+
}) : null;
|
|
27100
|
+
};
|
|
27101
|
+
function SectionList(_ref2) {
|
|
27102
|
+
var sections = _ref2.sections,
|
|
27103
|
+
_ref2$marginHorizonta = _ref2.marginHorizontal,
|
|
27104
|
+
marginHorizontal = _ref2$marginHorizonta === void 0 ? 'medium' : _ref2$marginHorizonta,
|
|
27105
|
+
style = _ref2.style,
|
|
27106
|
+
testID = _ref2.testID,
|
|
27107
|
+
rest = _objectWithoutProperties(_ref2, _excluded$f);
|
|
27108
|
+
var RowDivider = useMemo(function () {
|
|
27109
|
+
return createRowDivider(marginHorizontal);
|
|
27110
|
+
}, [marginHorizontal]);
|
|
27111
|
+
return /*#__PURE__*/React__default.createElement(SectionList$1, _extends$1({}, rest, {
|
|
27112
|
+
style: style,
|
|
27113
|
+
testID: testID,
|
|
27114
|
+
sections: sections,
|
|
27115
|
+
stickySectionHeadersEnabled: false,
|
|
27116
|
+
ItemSeparatorComponent: RowDivider,
|
|
27117
|
+
renderSectionHeader: function renderSectionHeader(_ref3) {
|
|
27118
|
+
var _section$text;
|
|
27119
|
+
var section = _ref3.section;
|
|
27120
|
+
return section.hideHeading ? null : /*#__PURE__*/React__default.createElement(StyledSectionHeading, {
|
|
27121
|
+
text: (_section$text = section.text) !== null && _section$text !== void 0 ? _section$text : '',
|
|
27122
|
+
icon: section.icon,
|
|
27123
|
+
rightChildren: section.rightChildren,
|
|
27124
|
+
intent: section.intent,
|
|
27125
|
+
size: section.size
|
|
27126
|
+
});
|
|
27127
|
+
},
|
|
27128
|
+
renderItem: function renderItem(_ref4) {
|
|
27129
|
+
var item = _ref4.item,
|
|
27130
|
+
index = _ref4.index,
|
|
27131
|
+
section = _ref4.section;
|
|
27132
|
+
return /*#__PURE__*/React__default.createElement(StyledRow, {
|
|
27133
|
+
testID: "section-list-row",
|
|
27134
|
+
themePosition: positionOf(index, section.data.length),
|
|
27135
|
+
themeMarginHorizontal: marginHorizontal
|
|
27136
|
+
}, renderRow(item));
|
|
27137
|
+
},
|
|
27138
|
+
SectionSeparatorComponent: SectionSpacer$1
|
|
27139
|
+
}));
|
|
27140
|
+
}
|
|
27141
|
+
|
|
26969
27142
|
var Footer = function Footer(_ref) {
|
|
26970
27143
|
var label = _ref.label,
|
|
26971
27144
|
onPress = _ref.onPress;
|
|
@@ -27031,7 +27204,7 @@ var StyledSearchBar = index$c(View)(function (_ref3) {
|
|
|
27031
27204
|
paddingBottom: theme.__hd__.select.space.searchBarBottomSpacing
|
|
27032
27205
|
};
|
|
27033
27206
|
});
|
|
27034
|
-
var StyledSectionList = index$c(SectionList)(function (_ref4) {
|
|
27207
|
+
var StyledSectionList = index$c(SectionList$1)(function (_ref4) {
|
|
27035
27208
|
var theme = _ref4.theme;
|
|
27036
27209
|
return {
|
|
27037
27210
|
paddingHorizontal: theme.__hd__.select.space.optionListHorizontalPadding
|
|
@@ -41952,7 +42125,7 @@ function SectionListWithFAB(_ref) {
|
|
|
41952
42125
|
var fabProps = _ref.fabProps,
|
|
41953
42126
|
props = _objectWithoutProperties(_ref, _excluded$3);
|
|
41954
42127
|
return /*#__PURE__*/React__default.createElement(AnimatedScroller, {
|
|
41955
|
-
ScrollComponent: /*#__PURE__*/React__default.createElement(SectionList, props),
|
|
42128
|
+
ScrollComponent: /*#__PURE__*/React__default.createElement(SectionList$1, props),
|
|
41956
42129
|
fabProps: fabProps
|
|
41957
42130
|
});
|
|
41958
42131
|
}
|
|
@@ -42867,4 +43040,4 @@ var InlineLoader = function InlineLoader(_ref) {
|
|
|
42867
43040
|
}, text));
|
|
42868
43041
|
};
|
|
42869
43042
|
|
|
42870
|
-
export { Accordion, Alert, AppCue, Attachment, index$b as Avatar, Badge, BottomNavigation, BottomSheet, Box, CompoundButton as Button, Calendar, Card, index$a as Carousel, Chart, index$9 as Checkbox, Chip, Collapse, ContentNavigator, index$8 as DatePicker, Divider, index$7 as Drawer, Empty, ErrorComponent as Error, FAB, FilterTrigger, FlatListWithFAB, FloatingIsland, HeroDesignProvider, Icon, Illustration, IllustrationList, Image, InlineLoader, List$1 as List, LocaleProvider, index$6 as MapPin, PageControl, PinInput, Portal, Progress, CompoundRadio as Radio, Rate, RefreshControl, index as RichTextEditor, ScrollViewWithFAB, Search, SectionHeading, SectionListWithFAB, SegmentedControl, index$4 as Select, Skeleton, Slider, Spinner, Success, index$5 as Swipeable, index$3 as Switch, index$2 as Tabs, Tag, TextInput, ThemeProvider, ThemeSwitcher, PublicTimePicker as TimePicker, Toast, index$1 as Toolbar, Typography, eBensSystemPalette, ehJobsShadowPalette, ehJobsSystemPalette, ehWorkDarkShadowPalette, ehWorkDarkSystemPalette, ehWorkShadowPalette, ehWorkSystemPalette, getTheme, jobsSystemPalette, scale, index$c as styled, swagDarkSystemPalette, swagLightJobsSystemPalette, swagSystemPalette$1 as swagLightSystemPalette, swagSystemPalette$2 as swagSystemPalette, defaultTheme as theme, useAvatarColors, useTheme, walletSystemPalette, withTheme, workSystemPalette };
|
|
43043
|
+
export { Accordion, Alert, AppCue, Attachment, index$b as Avatar, Badge, BottomNavigation, BottomSheet, Box, CompoundButton as Button, Calendar, Card, index$a as Carousel, Chart, index$9 as Checkbox, Chip, Collapse, ContentNavigator, index$8 as DatePicker, Divider, index$7 as Drawer, Empty, ErrorComponent as Error, FAB, FilterTrigger, FlatListWithFAB, FloatingIsland, HeroDesignProvider, Icon, Illustration, IllustrationList, Image, InlineLoader, List$1 as List, LocaleProvider, index$6 as MapPin, PageControl, PinInput, Portal, Progress, CompoundRadio as Radio, Rate, RefreshControl, index as RichTextEditor, ScrollViewWithFAB, Search, SectionHeading, SectionList, SectionListWithFAB, SegmentedControl, index$4 as Select, Skeleton, Slider, Spinner, Success, index$5 as Swipeable, index$3 as Switch, index$2 as Tabs, Tag, TextInput, ThemeProvider, ThemeSwitcher, PublicTimePicker as TimePicker, Toast, index$1 as Toolbar, Typography, eBensSystemPalette, ehJobsShadowPalette, ehJobsSystemPalette, ehWorkDarkShadowPalette, ehWorkDarkSystemPalette, ehWorkShadowPalette, ehWorkSystemPalette, getTheme, jobsSystemPalette, scale, index$c as styled, swagDarkSystemPalette, swagLightJobsSystemPalette, swagSystemPalette$1 as swagLightSystemPalette, swagSystemPalette$2 as swagSystemPalette, defaultTheme as theme, useAvatarColors, useTheme, walletSystemPalette, withTheme, workSystemPalette };
|