@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/lib/index.js
CHANGED
|
@@ -6782,6 +6782,34 @@ var getSectionHeadingTheme = function getSectionHeadingTheme(theme) {
|
|
|
6782
6782
|
};
|
|
6783
6783
|
};
|
|
6784
6784
|
|
|
6785
|
+
var getSectionListTheme = function getSectionListTheme(theme) {
|
|
6786
|
+
var colors = {
|
|
6787
|
+
groupBackground: theme.colors.defaultGlobalSurface
|
|
6788
|
+
};
|
|
6789
|
+
var radii = {
|
|
6790
|
+
group: theme.radii.xlarge
|
|
6791
|
+
};
|
|
6792
|
+
var marginHorizontalValues = {
|
|
6793
|
+
none: 0,
|
|
6794
|
+
xsmall: theme.space.xsmall,
|
|
6795
|
+
small: theme.space.small,
|
|
6796
|
+
medium: theme.space.medium,
|
|
6797
|
+
large: theme.space.large,
|
|
6798
|
+
xlarge: theme.space.xlarge
|
|
6799
|
+
};
|
|
6800
|
+
var space = {
|
|
6801
|
+
marginHorizontal: marginHorizontalValues,
|
|
6802
|
+
sectionSpacing: theme.space.medium,
|
|
6803
|
+
sectionSpacingCompact: theme.space.small,
|
|
6804
|
+
headingPaddingLeft: theme.space.small
|
|
6805
|
+
};
|
|
6806
|
+
return {
|
|
6807
|
+
colors: colors,
|
|
6808
|
+
radii: radii,
|
|
6809
|
+
space: space
|
|
6810
|
+
};
|
|
6811
|
+
};
|
|
6812
|
+
|
|
6785
6813
|
var getSelectTheme = function getSelectTheme(theme) {
|
|
6786
6814
|
var space = {
|
|
6787
6815
|
minimumOptionListHeight: theme.space.xxxxlarge * 5,
|
|
@@ -8004,6 +8032,7 @@ var getTheme = function getTheme() {
|
|
|
8004
8032
|
richTextEditor: getRichTextEditorTheme(globalTheme),
|
|
8005
8033
|
search: getSearchTheme(globalTheme),
|
|
8006
8034
|
sectionHeading: getSectionHeadingTheme(globalTheme),
|
|
8035
|
+
sectionList: getSectionListTheme(globalTheme),
|
|
8007
8036
|
select: getSelectTheme(globalTheme),
|
|
8008
8037
|
skeleton: getSkeletonTheme(globalTheme),
|
|
8009
8038
|
slider: getSliderTheme(globalTheme),
|
|
@@ -8215,7 +8244,7 @@ var StyledText$4 = index$c(reactNative.Text)(function (_ref) {
|
|
|
8215
8244
|
});
|
|
8216
8245
|
});
|
|
8217
8246
|
|
|
8218
|
-
var _excluded$
|
|
8247
|
+
var _excluded$Q = ["children", "fontSize", "fontWeight", "intent", "typeface", "allowFontScaling"];
|
|
8219
8248
|
/**
|
|
8220
8249
|
* @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.
|
|
8221
8250
|
*/
|
|
@@ -8231,7 +8260,7 @@ var Text = function Text(_ref) {
|
|
|
8231
8260
|
typeface = _ref$typeface === void 0 ? 'neutral' : _ref$typeface,
|
|
8232
8261
|
_ref$allowFontScaling = _ref.allowFontScaling,
|
|
8233
8262
|
allowFontScaling = _ref$allowFontScaling === void 0 ? false : _ref$allowFontScaling,
|
|
8234
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
8263
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$Q);
|
|
8235
8264
|
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.');
|
|
8236
8265
|
return /*#__PURE__*/React__namespace.default.createElement(StyledText$4, _extends$1({}, nativeProps, {
|
|
8237
8266
|
themeFontSize: fontSize,
|
|
@@ -8284,10 +8313,10 @@ var pickAccessibilityProps = function pickAccessibilityProps(props) {
|
|
|
8284
8313
|
}, {});
|
|
8285
8314
|
};
|
|
8286
8315
|
|
|
8287
|
-
var _excluded$
|
|
8316
|
+
var _excluded$P = ["children"];
|
|
8288
8317
|
var GradientText = function GradientText(_ref) {
|
|
8289
8318
|
var children = _ref.children,
|
|
8290
|
-
accessibilityProps = _objectWithoutProperties(_ref, _excluded$
|
|
8319
|
+
accessibilityProps = _objectWithoutProperties(_ref, _excluded$P);
|
|
8291
8320
|
var theme = useTheme();
|
|
8292
8321
|
var gradient = theme.colors.gradients.aiDiagonal;
|
|
8293
8322
|
var _useState = React.useState(null),
|
|
@@ -8343,7 +8372,7 @@ var GradientText = function GradientText(_ref) {
|
|
|
8343
8372
|
}, children));
|
|
8344
8373
|
};
|
|
8345
8374
|
|
|
8346
|
-
var _excluded$
|
|
8375
|
+
var _excluded$O = ["children", "fontWeight", "intent", "allowFontScaling", "fontStyle", "style", "testID"];
|
|
8347
8376
|
var Caption = function Caption(_ref) {
|
|
8348
8377
|
var children = _ref.children,
|
|
8349
8378
|
_ref$fontWeight = _ref.fontWeight,
|
|
@@ -8356,7 +8385,7 @@ var Caption = function Caption(_ref) {
|
|
|
8356
8385
|
fontStyle = _ref$fontStyle === void 0 ? 'normal' : _ref$fontStyle,
|
|
8357
8386
|
style = _ref.style,
|
|
8358
8387
|
testID = _ref.testID,
|
|
8359
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
8388
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$O);
|
|
8360
8389
|
var isAi = intent === 'ai';
|
|
8361
8390
|
var styledText = /*#__PURE__*/React__namespace.default.createElement(StyledCaption, _extends$1({}, nativeProps, {
|
|
8362
8391
|
themeFontWeight: fontWeight,
|
|
@@ -8388,7 +8417,7 @@ var StyledLabel$1 = index$c(reactNative.Text)(function (_ref) {
|
|
|
8388
8417
|
};
|
|
8389
8418
|
});
|
|
8390
8419
|
|
|
8391
|
-
var _excluded$
|
|
8420
|
+
var _excluded$N = ["children", "intent", "allowFontScaling", "fontStyle", "fontWeight", "style", "testID"];
|
|
8392
8421
|
var Label = function Label(_ref) {
|
|
8393
8422
|
var children = _ref.children,
|
|
8394
8423
|
_ref$intent = _ref.intent,
|
|
@@ -8401,7 +8430,7 @@ var Label = function Label(_ref) {
|
|
|
8401
8430
|
fontWeight = _ref$fontWeight === void 0 ? 'regular' : _ref$fontWeight,
|
|
8402
8431
|
style = _ref.style,
|
|
8403
8432
|
testID = _ref.testID,
|
|
8404
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
8433
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$N);
|
|
8405
8434
|
var isAi = intent === 'ai';
|
|
8406
8435
|
var styledText = /*#__PURE__*/React__namespace.default.createElement(StyledLabel$1, _extends$1({}, nativeProps, {
|
|
8407
8436
|
themeIntent: isAi ? 'body' : intent,
|
|
@@ -8432,7 +8461,7 @@ var StyledTitle$1 = index$c(reactNative.Text)(function (_ref) {
|
|
|
8432
8461
|
};
|
|
8433
8462
|
});
|
|
8434
8463
|
|
|
8435
|
-
var _excluded$
|
|
8464
|
+
var _excluded$M = ["children", "intent", "allowFontScaling", "level", "typeface", "fontStyle", "style", "testID"];
|
|
8436
8465
|
var Title = function Title(_ref) {
|
|
8437
8466
|
var children = _ref.children,
|
|
8438
8467
|
_ref$intent = _ref.intent,
|
|
@@ -8447,7 +8476,7 @@ var Title = function Title(_ref) {
|
|
|
8447
8476
|
fontStyle = _ref$fontStyle === void 0 ? 'normal' : _ref$fontStyle,
|
|
8448
8477
|
style = _ref.style,
|
|
8449
8478
|
testID = _ref.testID,
|
|
8450
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
8479
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$M);
|
|
8451
8480
|
var isAi = intent === 'ai';
|
|
8452
8481
|
var styledText = /*#__PURE__*/React__namespace.default.createElement(StyledTitle$1, _extends$1({}, nativeProps, {
|
|
8453
8482
|
themeLevel: level,
|
|
@@ -8497,7 +8526,7 @@ var StyledBody$2 = index$c(reactNative.Text)(function (_ref) {
|
|
|
8497
8526
|
};
|
|
8498
8527
|
});
|
|
8499
8528
|
|
|
8500
|
-
var _excluded$
|
|
8529
|
+
var _excluded$L = ["children", "intent", "allowFontScaling", "typeface", "variant", "fontStyle", "style", "testID"];
|
|
8501
8530
|
var Body = function Body(_ref) {
|
|
8502
8531
|
var children = _ref.children,
|
|
8503
8532
|
_ref$intent = _ref.intent,
|
|
@@ -8512,7 +8541,7 @@ var Body = function Body(_ref) {
|
|
|
8512
8541
|
fontStyle = _ref$fontStyle === void 0 ? 'normal' : _ref$fontStyle,
|
|
8513
8542
|
style = _ref.style,
|
|
8514
8543
|
testID = _ref.testID,
|
|
8515
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
8544
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$L);
|
|
8516
8545
|
var isAi = intent === 'ai';
|
|
8517
8546
|
var styledText = /*#__PURE__*/React__namespace.default.createElement(StyledBody$2, _extends$1({}, nativeProps, {
|
|
8518
8547
|
themeTypeface: typeface,
|
|
@@ -8538,7 +8567,7 @@ var Typography = {
|
|
|
8538
8567
|
};
|
|
8539
8568
|
|
|
8540
8569
|
// 🔴 DO NOT EDIT — This file is generated automatically.
|
|
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-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'];
|
|
8570
|
+
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'];
|
|
8542
8571
|
|
|
8543
8572
|
var activate = 59000;
|
|
8544
8573
|
var adjustment = 59003;
|
|
@@ -8614,24 +8643,24 @@ var unlock = 59190;
|
|
|
8614
8643
|
var user = 59191;
|
|
8615
8644
|
var wallet = 59194;
|
|
8616
8645
|
var warning = 59195;
|
|
8617
|
-
var add =
|
|
8618
|
-
var bold =
|
|
8619
|
-
var cancel =
|
|
8620
|
-
var checkmark =
|
|
8621
|
-
var italic =
|
|
8622
|
-
var local_mall_outlined =
|
|
8623
|
-
var number$2 =
|
|
8624
|
-
var percentage =
|
|
8625
|
-
var redeem =
|
|
8626
|
-
var refresh =
|
|
8627
|
-
var remove$1 =
|
|
8628
|
-
var restart =
|
|
8629
|
-
var shopping_basket_outlined =
|
|
8630
|
-
var strikethrough =
|
|
8631
|
-
var sync =
|
|
8632
|
-
var transfer =
|
|
8633
|
-
var unavailable =
|
|
8634
|
-
var underline =
|
|
8646
|
+
var add = 59204;
|
|
8647
|
+
var bold = 59237;
|
|
8648
|
+
var cancel = 59257;
|
|
8649
|
+
var checkmark = 59263;
|
|
8650
|
+
var italic = 59367;
|
|
8651
|
+
var local_mall_outlined = 59375;
|
|
8652
|
+
var number$2 = 59400;
|
|
8653
|
+
var percentage = 59406;
|
|
8654
|
+
var redeem = 59423;
|
|
8655
|
+
var refresh = 59424;
|
|
8656
|
+
var remove$1 = 59425;
|
|
8657
|
+
var restart = 59427;
|
|
8658
|
+
var shopping_basket_outlined = 59446;
|
|
8659
|
+
var strikethrough = 59465;
|
|
8660
|
+
var sync = 59471;
|
|
8661
|
+
var transfer = 59482;
|
|
8662
|
+
var unavailable = 59487;
|
|
8663
|
+
var underline = 59488;
|
|
8635
8664
|
var glyphMap = {
|
|
8636
8665
|
activate: activate,
|
|
8637
8666
|
"add-emoji": 59001,
|
|
@@ -8833,294 +8862,310 @@ var glyphMap = {
|
|
|
8833
8862
|
"accommodation-outlined": 59197,
|
|
8834
8863
|
"activate-outlined": 59198,
|
|
8835
8864
|
"add-credit-card-outlined": 59199,
|
|
8836
|
-
"add-
|
|
8837
|
-
"add-
|
|
8838
|
-
"add-
|
|
8865
|
+
"add-emoji-outlined": 59200,
|
|
8866
|
+
"add-person-outlined": 59201,
|
|
8867
|
+
"add-section-outlined": 59202,
|
|
8868
|
+
"add-time-outlined": 59203,
|
|
8839
8869
|
add: add,
|
|
8840
|
-
"adjustment-outlined":
|
|
8841
|
-
"afternoon-outlined":
|
|
8842
|
-
"ai-outlined":
|
|
8843
|
-
"alignment-2-outlined":
|
|
8844
|
-
"alignment-outlined":
|
|
8845
|
-
"all-caps":
|
|
8846
|
-
"application-outlined":
|
|
8847
|
-
"
|
|
8848
|
-
"arrow-
|
|
8849
|
-
"arrow-
|
|
8850
|
-
"arrow-
|
|
8851
|
-
"arrow-
|
|
8852
|
-
"arrow-
|
|
8853
|
-
"arrow-
|
|
8854
|
-
"arrow-
|
|
8855
|
-
"
|
|
8856
|
-
"
|
|
8857
|
-
"
|
|
8858
|
-
"
|
|
8859
|
-
"
|
|
8860
|
-
"
|
|
8861
|
-
"
|
|
8862
|
-
"
|
|
8863
|
-
"
|
|
8864
|
-
"
|
|
8865
|
-
"
|
|
8866
|
-
"
|
|
8867
|
-
"
|
|
8868
|
-
"
|
|
8870
|
+
"adjustment-outlined": 59205,
|
|
8871
|
+
"afternoon-outlined": 59206,
|
|
8872
|
+
"ai-outlined": 59207,
|
|
8873
|
+
"alignment-2-outlined": 59208,
|
|
8874
|
+
"alignment-outlined": 59209,
|
|
8875
|
+
"all-caps": 59210,
|
|
8876
|
+
"application-outlined": 59211,
|
|
8877
|
+
"archive-outlined": 59212,
|
|
8878
|
+
"arrow-down": 59213,
|
|
8879
|
+
"arrow-downwards": 59214,
|
|
8880
|
+
"arrow-left": 59215,
|
|
8881
|
+
"arrow-leftwards": 59216,
|
|
8882
|
+
"arrow-right": 59217,
|
|
8883
|
+
"arrow-rightwards": 59218,
|
|
8884
|
+
"arrow-up": 59219,
|
|
8885
|
+
"arrow-upwards": 59220,
|
|
8886
|
+
"article-outlined": 59221,
|
|
8887
|
+
"assignment-warning-outlined": 59222,
|
|
8888
|
+
"at-sign": 59223,
|
|
8889
|
+
"auto-graph-outlined": 59224,
|
|
8890
|
+
"automotive-outlined": 59225,
|
|
8891
|
+
"bakery-outlined": 59226,
|
|
8892
|
+
"bank-outlined": 59227,
|
|
8893
|
+
"bar-outlined": 59228,
|
|
8894
|
+
"beauty-outlined": 59229,
|
|
8895
|
+
"beer-outlined": 59230,
|
|
8896
|
+
"bell-active-outlined": 59231,
|
|
8897
|
+
"bell-outlined": 59232,
|
|
8898
|
+
"bell-slash-outlined": 59233,
|
|
8899
|
+
"bill-management-outlined": 59234,
|
|
8900
|
+
"billing-outlined": 59235,
|
|
8901
|
+
"body-outlined": 59236,
|
|
8869
8902
|
bold: bold,
|
|
8870
|
-
"bolt-outlined":
|
|
8871
|
-
"book-outlined":
|
|
8872
|
-
"bookmark-added-outlined":
|
|
8873
|
-
"bookmark-checked-outlined":
|
|
8874
|
-
"bookmark-outlined":
|
|
8875
|
-
"box-1-outlined":
|
|
8876
|
-
"box-check-outlined":
|
|
8877
|
-
"box-outlined":
|
|
8878
|
-
"bullet-points":
|
|
8879
|
-
"cake-outlined":
|
|
8880
|
-
"calculator-outlined":
|
|
8881
|
-
"calendar-
|
|
8882
|
-
"calendar-
|
|
8883
|
-
"calendar-
|
|
8884
|
-
"
|
|
8885
|
-
"
|
|
8886
|
-
"
|
|
8903
|
+
"bolt-outlined": 59238,
|
|
8904
|
+
"book-outlined": 59239,
|
|
8905
|
+
"bookmark-added-outlined": 59240,
|
|
8906
|
+
"bookmark-checked-outlined": 59241,
|
|
8907
|
+
"bookmark-outlined": 59242,
|
|
8908
|
+
"box-1-outlined": 59243,
|
|
8909
|
+
"box-check-outlined": 59244,
|
|
8910
|
+
"box-outlined": 59245,
|
|
8911
|
+
"bullet-points": 59246,
|
|
8912
|
+
"cake-outlined": 59247,
|
|
8913
|
+
"calculator-outlined": 59248,
|
|
8914
|
+
"calendar-clock-outlined": 59249,
|
|
8915
|
+
"calendar-dates-outlined": 59250,
|
|
8916
|
+
"calendar-edit-outlined": 59251,
|
|
8917
|
+
"calendar-outlined": 59252,
|
|
8918
|
+
"calendar-star-outlined": 59253,
|
|
8919
|
+
"call-outlined": 59254,
|
|
8920
|
+
"call-split-outlined": 59255,
|
|
8921
|
+
"camera-outlined": 59256,
|
|
8887
8922
|
cancel: cancel,
|
|
8888
|
-
"car-forward-outlined":
|
|
8889
|
-
"cashback-outlined":
|
|
8890
|
-
"charging-station-outlined":
|
|
8891
|
-
"chat-bubble-outlined":
|
|
8892
|
-
"chat-unread-outlined":
|
|
8923
|
+
"car-forward-outlined": 59258,
|
|
8924
|
+
"cashback-outlined": 59259,
|
|
8925
|
+
"charging-station-outlined": 59260,
|
|
8926
|
+
"chat-bubble-outlined": 59261,
|
|
8927
|
+
"chat-unread-outlined": 59262,
|
|
8893
8928
|
checkmark: checkmark,
|
|
8894
|
-
"circle-add-outlined":
|
|
8895
|
-
"circle-cancel-outlined":
|
|
8896
|
-
"circle-
|
|
8897
|
-
"circle-
|
|
8898
|
-
"circle-
|
|
8899
|
-
"circle-
|
|
8900
|
-
"circle-
|
|
8901
|
-
"circle-
|
|
8902
|
-
"circle-
|
|
8903
|
-
"circle-
|
|
8904
|
-
"circle-
|
|
8905
|
-
"
|
|
8906
|
-
"clock-
|
|
8907
|
-
"clock-
|
|
8908
|
-
"clock-outlined":
|
|
8909
|
-
"
|
|
8910
|
-
"
|
|
8911
|
-
"
|
|
8912
|
-
"
|
|
8913
|
-
"
|
|
8914
|
-
"
|
|
8915
|
-
"
|
|
8916
|
-
"
|
|
8917
|
-
"
|
|
8918
|
-
"
|
|
8919
|
-
"
|
|
8920
|
-
"
|
|
8921
|
-
"
|
|
8922
|
-
"
|
|
8923
|
-
"
|
|
8924
|
-
"
|
|
8925
|
-
"
|
|
8926
|
-
"dollar-
|
|
8927
|
-
"dollar-
|
|
8928
|
-
"
|
|
8929
|
-
"
|
|
8930
|
-
"
|
|
8931
|
-
"
|
|
8932
|
-
"
|
|
8933
|
-
"
|
|
8934
|
-
"
|
|
8935
|
-
"
|
|
8936
|
-
"
|
|
8937
|
-
"
|
|
8938
|
-
"
|
|
8939
|
-
"
|
|
8940
|
-
"
|
|
8941
|
-
"
|
|
8942
|
-
"
|
|
8943
|
-
"
|
|
8944
|
-
"
|
|
8945
|
-
"
|
|
8946
|
-
"
|
|
8947
|
-
"
|
|
8948
|
-
"
|
|
8949
|
-
"
|
|
8950
|
-
"
|
|
8951
|
-
"
|
|
8952
|
-
"face-
|
|
8953
|
-
"face-
|
|
8954
|
-
"
|
|
8955
|
-
"
|
|
8956
|
-
"
|
|
8957
|
-
"
|
|
8958
|
-
"
|
|
8959
|
-
"
|
|
8960
|
-
"file-
|
|
8961
|
-
"file-
|
|
8962
|
-
"file-
|
|
8963
|
-
"file-
|
|
8964
|
-
"file-
|
|
8965
|
-
"file-
|
|
8966
|
-
"file-outlined":
|
|
8967
|
-
"file-
|
|
8968
|
-
"file-
|
|
8969
|
-
"file-
|
|
8970
|
-
"file-
|
|
8971
|
-
"file-
|
|
8972
|
-
"
|
|
8973
|
-
"
|
|
8974
|
-
"
|
|
8975
|
-
"
|
|
8976
|
-
"
|
|
8977
|
-
"
|
|
8978
|
-
"
|
|
8979
|
-
"
|
|
8980
|
-
"
|
|
8981
|
-
"
|
|
8982
|
-
"
|
|
8983
|
-
"
|
|
8984
|
-
"
|
|
8985
|
-
"
|
|
8986
|
-
"
|
|
8987
|
-
"
|
|
8988
|
-
"
|
|
8989
|
-
"
|
|
8990
|
-
"
|
|
8991
|
-
"
|
|
8992
|
-
"
|
|
8993
|
-
"
|
|
8929
|
+
"circle-add-outlined": 59264,
|
|
8930
|
+
"circle-cancel-outlined": 59265,
|
|
8931
|
+
"circle-check-outlined": 59266,
|
|
8932
|
+
"circle-down-outlined": 59267,
|
|
8933
|
+
"circle-info-outlined": 59268,
|
|
8934
|
+
"circle-left-outlined": 59269,
|
|
8935
|
+
"circle-ok-outlined": 59270,
|
|
8936
|
+
"circle-question-outlined": 59271,
|
|
8937
|
+
"circle-remove-outlined": 59272,
|
|
8938
|
+
"circle-right-outlined": 59273,
|
|
8939
|
+
"circle-up-outlined": 59274,
|
|
8940
|
+
"circle-warning-outlined": 59275,
|
|
8941
|
+
"clock-2-outlined": 59276,
|
|
8942
|
+
"clock-3-outlined": 59277,
|
|
8943
|
+
"clock-in-outlined": 59278,
|
|
8944
|
+
"clock-out-outlined": 59279,
|
|
8945
|
+
"clock-outlined": 59280,
|
|
8946
|
+
"cloud-download-outlined": 59281,
|
|
8947
|
+
"cog-outlined": 59282,
|
|
8948
|
+
"coin-outlined": 59283,
|
|
8949
|
+
"coin-super-outlined": 59284,
|
|
8950
|
+
"comment-outlined": 59285,
|
|
8951
|
+
"contacts-outlined": 59286,
|
|
8952
|
+
"contacts-user-outlined": 59287,
|
|
8953
|
+
"credit-card-outlined": 59288,
|
|
8954
|
+
"cultural-site-outlined": 59289,
|
|
8955
|
+
"cup-outlined": 59290,
|
|
8956
|
+
"dentistry-outlined": 59291,
|
|
8957
|
+
"diamond-outlined": 59292,
|
|
8958
|
+
"direction-arrows-outlined": 59293,
|
|
8959
|
+
"directory-outlined": 59294,
|
|
8960
|
+
"document-outlined": 59295,
|
|
8961
|
+
"dollar-box-outlined": 59296,
|
|
8962
|
+
"dollar-card-outlined": 59297,
|
|
8963
|
+
"dollar-coin-shine-outlined": 59298,
|
|
8964
|
+
"dollar-credit-card-outlined": 59299,
|
|
8965
|
+
"dollar-sign": 59300,
|
|
8966
|
+
"double-buildings-outlined": 59301,
|
|
8967
|
+
"double-left-arrows": 59302,
|
|
8968
|
+
"double-right-arrows": 59303,
|
|
8969
|
+
"download-box-outlined": 59304,
|
|
8970
|
+
"download-outlined": 59305,
|
|
8971
|
+
"edit-template-outlined": 59306,
|
|
8972
|
+
"edit-user-outlined": 59307,
|
|
8973
|
+
"electronics-outlined": 59308,
|
|
8974
|
+
"email-outlined": 59309,
|
|
8975
|
+
"end-break-outlined": 59310,
|
|
8976
|
+
"enter-arrow": 59311,
|
|
8977
|
+
"entertainment-outlined": 59312,
|
|
8978
|
+
"envelope-outlined": 59313,
|
|
8979
|
+
"evening-outlined": 59314,
|
|
8980
|
+
"expense-approval-outlined": 59315,
|
|
8981
|
+
"expense-outlined": 59316,
|
|
8982
|
+
"explore-outlined": 59317,
|
|
8983
|
+
"extension-outlined": 59318,
|
|
8984
|
+
"external-link": 59319,
|
|
8985
|
+
"eye-invisible-outlined": 59320,
|
|
8986
|
+
"eye-outlined": 59321,
|
|
8987
|
+
"face-id": 59322,
|
|
8988
|
+
"face-meh-outlined": 59323,
|
|
8989
|
+
"face-open-smiley-outlined": 59324,
|
|
8990
|
+
"face-sad-outlined": 59325,
|
|
8991
|
+
"face-smiley-outlined": 59326,
|
|
8992
|
+
"fastfood-outlined": 59327,
|
|
8993
|
+
"feed-outlined": 59328,
|
|
8994
|
+
"feedbacks-outlined": 59329,
|
|
8995
|
+
"file-certified-outlined": 59330,
|
|
8996
|
+
"file-clone-outlined": 59331,
|
|
8997
|
+
"file-copy-outlined": 59332,
|
|
8998
|
+
"file-dispose-outlined": 59333,
|
|
8999
|
+
"file-dollar-certified-outlined": 59334,
|
|
9000
|
+
"file-dollar-outlined": 59335,
|
|
9001
|
+
"file-download-outlined": 59336,
|
|
9002
|
+
"file-export-outlined": 59337,
|
|
9003
|
+
"file-lock-outlined": 59338,
|
|
9004
|
+
"file-outlined": 59339,
|
|
9005
|
+
"file-pound-outlined": 59340,
|
|
9006
|
+
"file-search-outlined": 59341,
|
|
9007
|
+
"file-secured-outlined": 59342,
|
|
9008
|
+
"file-statutory-outlined": 59343,
|
|
9009
|
+
"file-verified-outlined": 59344,
|
|
9010
|
+
"filter-outlined": 59345,
|
|
9011
|
+
"fitness-outlined": 59346,
|
|
9012
|
+
"folder-outlined": 59347,
|
|
9013
|
+
"folder-upload-outlined": 59348,
|
|
9014
|
+
"folder-user-outlined": 59349,
|
|
9015
|
+
"form-outlined": 59350,
|
|
9016
|
+
"funnel-filter-outline": 59351,
|
|
9017
|
+
"goal-outlined": 59352,
|
|
9018
|
+
"graph-outlined": 59353,
|
|
9019
|
+
"grocery-outlined": 59354,
|
|
9020
|
+
"hand-holding-user-outlined": 59355,
|
|
9021
|
+
"handshake-outlined": 59356,
|
|
9022
|
+
"happy-sun-outlined": 59357,
|
|
9023
|
+
"health-bag-outlined": 59358,
|
|
9024
|
+
"heart-outlined": 59359,
|
|
9025
|
+
"history-outlined": 59360,
|
|
9026
|
+
"home-active-outlined": 59361,
|
|
9027
|
+
"home-outlined": 59362,
|
|
9028
|
+
"id-card-outlined": 59363,
|
|
9029
|
+
"image-outlined": 59364,
|
|
9030
|
+
"import-outlined": 59365,
|
|
9031
|
+
"instapay-outlined": 59366,
|
|
8994
9032
|
italic: italic,
|
|
8995
|
-
"job-search-outlined":
|
|
8996
|
-
"leave-approval-outlined":
|
|
8997
|
-
"lighting-outlined":
|
|
8998
|
-
"link-1":
|
|
8999
|
-
"link-2":
|
|
9000
|
-
"list-outlined":
|
|
9001
|
-
"live-help-outlined":
|
|
9033
|
+
"job-search-outlined": 59368,
|
|
9034
|
+
"leave-approval-outlined": 59369,
|
|
9035
|
+
"lighting-outlined": 59370,
|
|
9036
|
+
"link-1": 59371,
|
|
9037
|
+
"link-2": 59372,
|
|
9038
|
+
"list-outlined": 59373,
|
|
9039
|
+
"live-help-outlined": 59374,
|
|
9002
9040
|
local_mall_outlined: local_mall_outlined,
|
|
9003
|
-
"location-on-outlined":
|
|
9004
|
-
"location-outlined":
|
|
9005
|
-
"lock-outlined":
|
|
9006
|
-
"locked-file-outlined":
|
|
9007
|
-
"log-out":
|
|
9008
|
-
"mail-outlined":
|
|
9009
|
-
"map-outlined":
|
|
9010
|
-
"media-content-outlined":
|
|
9011
|
-
"menu-close":
|
|
9012
|
-
"menu-expand":
|
|
9013
|
-
"menu-fold-outlined":
|
|
9014
|
-
"menu-unfold-outlined":
|
|
9015
|
-
"mic-outlined":
|
|
9016
|
-
"mic-slash-outlined":
|
|
9017
|
-
"moneybag-outlined":
|
|
9018
|
-
"moon-outlined":
|
|
9019
|
-
"more-horizontal":
|
|
9020
|
-
"more-vertical":
|
|
9021
|
-
"morning-outlined":
|
|
9022
|
-
"multiple-folders-outlined":
|
|
9023
|
-
"multiple-users-outlined":
|
|
9024
|
-
"near-me-outlined":
|
|
9025
|
-
"node-outlined":
|
|
9026
|
-
"number-points":
|
|
9041
|
+
"location-on-outlined": 59376,
|
|
9042
|
+
"location-outlined": 59377,
|
|
9043
|
+
"lock-outlined": 59378,
|
|
9044
|
+
"locked-file-outlined": 59379,
|
|
9045
|
+
"log-out": 59380,
|
|
9046
|
+
"mail-outlined": 59381,
|
|
9047
|
+
"map-outlined": 59382,
|
|
9048
|
+
"media-content-outlined": 59383,
|
|
9049
|
+
"menu-close": 59384,
|
|
9050
|
+
"menu-expand": 59385,
|
|
9051
|
+
"menu-fold-outlined": 59386,
|
|
9052
|
+
"menu-unfold-outlined": 59387,
|
|
9053
|
+
"mic-outlined": 59388,
|
|
9054
|
+
"mic-slash-outlined": 59389,
|
|
9055
|
+
"moneybag-outlined": 59390,
|
|
9056
|
+
"moon-outlined": 59391,
|
|
9057
|
+
"more-horizontal": 59392,
|
|
9058
|
+
"more-vertical": 59393,
|
|
9059
|
+
"morning-outlined": 59394,
|
|
9060
|
+
"multiple-folders-outlined": 59395,
|
|
9061
|
+
"multiple-users-outlined": 59396,
|
|
9062
|
+
"near-me-outlined": 59397,
|
|
9063
|
+
"node-outlined": 59398,
|
|
9064
|
+
"number-points": 59399,
|
|
9027
9065
|
number: number$2,
|
|
9028
|
-
"overview-outlined":
|
|
9029
|
-
"park-outlined":
|
|
9030
|
-
"payment-summary-outlined":
|
|
9031
|
-
"payslip-outlined":
|
|
9032
|
-
"pencil-outlined":
|
|
9066
|
+
"overview-outlined": 59401,
|
|
9067
|
+
"park-outlined": 59402,
|
|
9068
|
+
"payment-summary-outlined": 59403,
|
|
9069
|
+
"payslip-outlined": 59404,
|
|
9070
|
+
"pencil-outlined": 59405,
|
|
9033
9071
|
percentage: percentage,
|
|
9034
|
-
"phone-outlined":
|
|
9035
|
-
"piggy-bank-outlined":
|
|
9036
|
-
"plane-outlined":
|
|
9037
|
-
"play-circle-outlined":
|
|
9038
|
-
"pound-box-outlined":
|
|
9039
|
-
"pound-card-outlined":
|
|
9040
|
-
"pound-coin-shine-outlined":
|
|
9041
|
-
"pound-credit-card-outlined":
|
|
9042
|
-
"print-outlined":
|
|
9043
|
-
"profile-2user-outlined":
|
|
9044
|
-
"propane-tank-outlined":
|
|
9045
|
-
"qr-code-outlined":
|
|
9046
|
-
"qualification-outlined":
|
|
9047
|
-
"question-mark":
|
|
9048
|
-
"
|
|
9072
|
+
"phone-outlined": 59407,
|
|
9073
|
+
"piggy-bank-outlined": 59408,
|
|
9074
|
+
"plane-outlined": 59409,
|
|
9075
|
+
"play-circle-outlined": 59410,
|
|
9076
|
+
"pound-box-outlined": 59411,
|
|
9077
|
+
"pound-card-outlined": 59412,
|
|
9078
|
+
"pound-coin-shine-outlined": 59413,
|
|
9079
|
+
"pound-credit-card-outlined": 59414,
|
|
9080
|
+
"print-outlined": 59415,
|
|
9081
|
+
"profile-2user-outlined": 59416,
|
|
9082
|
+
"propane-tank-outlined": 59417,
|
|
9083
|
+
"qr-code-outlined": 59418,
|
|
9084
|
+
"qualification-outlined": 59419,
|
|
9085
|
+
"question-mark": 59420,
|
|
9086
|
+
"raising-hands-outlined": 59421,
|
|
9087
|
+
"re-assign": 59422,
|
|
9049
9088
|
redeem: redeem,
|
|
9050
9089
|
refresh: refresh,
|
|
9051
9090
|
remove: remove$1,
|
|
9052
|
-
"reply-outlined":
|
|
9091
|
+
"reply-outlined": 59426,
|
|
9053
9092
|
restart: restart,
|
|
9054
|
-
"restaurant-outlined":
|
|
9055
|
-
"resume-outlined":
|
|
9056
|
-
"return-arrow":
|
|
9057
|
-
"rocket-launch-outlined":
|
|
9058
|
-
"rostering-outlined":
|
|
9059
|
-
"safety-outlined":
|
|
9060
|
-
"save-outlined":
|
|
9061
|
-
"schedule-outlined":
|
|
9062
|
-
"
|
|
9063
|
-
"search-
|
|
9064
|
-
"
|
|
9065
|
-
"
|
|
9066
|
-
"share-
|
|
9067
|
-
"share-
|
|
9068
|
-
"share-outlined":
|
|
9069
|
-
"
|
|
9070
|
-
"
|
|
9093
|
+
"restaurant-outlined": 59428,
|
|
9094
|
+
"resume-outlined": 59429,
|
|
9095
|
+
"return-arrow": 59430,
|
|
9096
|
+
"rocket-launch-outlined": 59431,
|
|
9097
|
+
"rostering-outlined": 59432,
|
|
9098
|
+
"safety-outlined": 59433,
|
|
9099
|
+
"save-outlined": 59434,
|
|
9100
|
+
"schedule-outlined": 59435,
|
|
9101
|
+
"schedule-send-outlined": 59436,
|
|
9102
|
+
"search-outlined": 59437,
|
|
9103
|
+
"search-secured-outlined": 59438,
|
|
9104
|
+
"send-outlined": 59439,
|
|
9105
|
+
"share-1": 59440,
|
|
9106
|
+
"share-2": 59441,
|
|
9107
|
+
"share-outlined-2": 59442,
|
|
9108
|
+
"share-outlined": 59443,
|
|
9109
|
+
"shield-check-outlined": 59444,
|
|
9110
|
+
"shop-outlined": 59445,
|
|
9071
9111
|
shopping_basket_outlined: shopping_basket_outlined,
|
|
9072
|
-
"show-chart-outlined":
|
|
9073
|
-
"single-down-arrow":
|
|
9074
|
-
"single-left-arrow":
|
|
9075
|
-
"single-right-arrow":
|
|
9076
|
-
"single-up-arrow":
|
|
9077
|
-
"smart-match-outlined":
|
|
9078
|
-
"sparkle-2-outlined":
|
|
9079
|
-
"sparkle-outlined":
|
|
9080
|
-
"speaker-active-outlined":
|
|
9081
|
-
"speaker-outlined":
|
|
9082
|
-
"star-
|
|
9083
|
-
"star-outlined":
|
|
9084
|
-
"
|
|
9085
|
-
"
|
|
9086
|
-
"
|
|
9112
|
+
"show-chart-outlined": 59447,
|
|
9113
|
+
"single-down-arrow": 59448,
|
|
9114
|
+
"single-left-arrow": 59449,
|
|
9115
|
+
"single-right-arrow": 59450,
|
|
9116
|
+
"single-up-arrow": 59451,
|
|
9117
|
+
"smart-match-outlined": 59452,
|
|
9118
|
+
"sparkle-2-outlined": 59453,
|
|
9119
|
+
"sparkle-outlined": 59454,
|
|
9120
|
+
"speaker-active-outlined": 59455,
|
|
9121
|
+
"speaker-outlined": 59456,
|
|
9122
|
+
"star-award-outlined": 59457,
|
|
9123
|
+
"star-badge-outlined": 59458,
|
|
9124
|
+
"star-circle-outlined": 59459,
|
|
9125
|
+
"star-medal-outlined": 59460,
|
|
9126
|
+
"star-outlined": 59461,
|
|
9127
|
+
"start-break-outlined": 59462,
|
|
9128
|
+
"stash-outlined": 59463,
|
|
9129
|
+
"stopwatch-outlined": 59464,
|
|
9087
9130
|
strikethrough: strikethrough,
|
|
9088
|
-
"styler-outlined":
|
|
9089
|
-
"suitcase-clock-outlined":
|
|
9090
|
-
"suitcase-outlined":
|
|
9091
|
-
"survey-outlined":
|
|
9092
|
-
"switch-outlined":
|
|
9131
|
+
"styler-outlined": 59466,
|
|
9132
|
+
"suitcase-clock-outlined": 59467,
|
|
9133
|
+
"suitcase-outlined": 59468,
|
|
9134
|
+
"survey-outlined": 59469,
|
|
9135
|
+
"switch-outlined": 59470,
|
|
9093
9136
|
sync: sync,
|
|
9094
|
-
"tag-outlined":
|
|
9095
|
-
"target-outlined":
|
|
9096
|
-
"
|
|
9097
|
-
"
|
|
9098
|
-
"thumb-
|
|
9099
|
-
"
|
|
9100
|
-
"
|
|
9101
|
-
"
|
|
9102
|
-
"
|
|
9137
|
+
"tag-outlined": 59472,
|
|
9138
|
+
"target-outlined": 59473,
|
|
9139
|
+
"teams-outlined": 59474,
|
|
9140
|
+
"tennis-outlined": 59475,
|
|
9141
|
+
"thumb-down-outlined": 59476,
|
|
9142
|
+
"thumb-up-outlined": 59477,
|
|
9143
|
+
"ticket-outlined": 59478,
|
|
9144
|
+
"timesheet-outlined": 59479,
|
|
9145
|
+
"timesheets-outlined": 59480,
|
|
9146
|
+
"today-outlined": 59481,
|
|
9103
9147
|
transfer: transfer,
|
|
9104
|
-
"transportation-outlined":
|
|
9105
|
-
"trash-bin-outlined":
|
|
9106
|
-
"umbrela-outlined":
|
|
9107
|
-
"unavailability-outlined":
|
|
9148
|
+
"transportation-outlined": 59483,
|
|
9149
|
+
"trash-bin-outlined": 59484,
|
|
9150
|
+
"umbrela-outlined": 59485,
|
|
9151
|
+
"unavailability-outlined": 59486,
|
|
9108
9152
|
unavailable: unavailable,
|
|
9109
9153
|
underline: underline,
|
|
9110
|
-
"union-outlined":
|
|
9111
|
-
"unlock-outlined":
|
|
9112
|
-
"upload-outlined":
|
|
9113
|
-
"user-add-outlined":
|
|
9114
|
-
"user-circle-outlined":
|
|
9115
|
-
"user-gear-outlined":
|
|
9116
|
-
"user-out-outlined":
|
|
9117
|
-
"user-outlined":
|
|
9118
|
-
"user-rectangle-outlined":
|
|
9119
|
-
"video-1-outlined":
|
|
9120
|
-
"video-2-outlined":
|
|
9121
|
-
"volunteer-outlined":
|
|
9122
|
-
"wallet-outlined":
|
|
9123
|
-
"
|
|
9154
|
+
"union-outlined": 59489,
|
|
9155
|
+
"unlock-outlined": 59490,
|
|
9156
|
+
"upload-outlined": 59491,
|
|
9157
|
+
"user-add-outlined": 59492,
|
|
9158
|
+
"user-circle-outlined": 59493,
|
|
9159
|
+
"user-gear-outlined": 59494,
|
|
9160
|
+
"user-out-outlined": 59495,
|
|
9161
|
+
"user-outlined": 59496,
|
|
9162
|
+
"user-rectangle-outlined": 59497,
|
|
9163
|
+
"video-1-outlined": 59498,
|
|
9164
|
+
"video-2-outlined": 59499,
|
|
9165
|
+
"volunteer-outlined": 59500,
|
|
9166
|
+
"wallet-outlined": 59501,
|
|
9167
|
+
"warning-outlined": 59502,
|
|
9168
|
+
"wellness-outlined": 59503
|
|
9124
9169
|
};
|
|
9125
9170
|
|
|
9126
9171
|
var HeroIcon = reactNativeVectorIcons.createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
|
|
@@ -9178,22 +9223,22 @@ var SpinWrapper = function SpinWrapper(_ref) {
|
|
|
9178
9223
|
}, children);
|
|
9179
9224
|
};
|
|
9180
9225
|
|
|
9181
|
-
var _excluded$
|
|
9226
|
+
var _excluded$K = ["style"];
|
|
9182
9227
|
var AnimatedIcon = function AnimatedIcon(_ref) {
|
|
9183
9228
|
var style = _ref.style,
|
|
9184
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9229
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$K);
|
|
9185
9230
|
return /*#__PURE__*/React__namespace.default.createElement(SpinWrapper, {
|
|
9186
9231
|
style: style
|
|
9187
9232
|
}, /*#__PURE__*/React__namespace.default.createElement(StyledHeroIcon, otherProps));
|
|
9188
9233
|
};
|
|
9189
9234
|
|
|
9190
|
-
var _excluded$
|
|
9235
|
+
var _excluded$J = ["name", "themeSize", "testID", "style"];
|
|
9191
9236
|
var GradientIcon = function GradientIcon(_ref) {
|
|
9192
9237
|
var name = _ref.name,
|
|
9193
9238
|
themeSize = _ref.themeSize,
|
|
9194
9239
|
testID = _ref.testID,
|
|
9195
9240
|
style = _ref.style,
|
|
9196
|
-
accessibilityProps = _objectWithoutProperties(_ref, _excluded$
|
|
9241
|
+
accessibilityProps = _objectWithoutProperties(_ref, _excluded$J);
|
|
9197
9242
|
var theme = useTheme();
|
|
9198
9243
|
var gradient = theme.colors.gradients.aiDiagonal;
|
|
9199
9244
|
var size = theme.__hd__.icon.sizes[themeSize];
|
|
@@ -9321,7 +9366,7 @@ var AccordionItem = function AccordionItem(_ref) {
|
|
|
9321
9366
|
}, content));
|
|
9322
9367
|
};
|
|
9323
9368
|
|
|
9324
|
-
var _excluded$
|
|
9369
|
+
var _excluded$I = ["key"];
|
|
9325
9370
|
var Accordion = function Accordion(_ref) {
|
|
9326
9371
|
var items = _ref.items,
|
|
9327
9372
|
activeItemKey = _ref.activeItemKey,
|
|
@@ -9344,7 +9389,7 @@ var Accordion = function Accordion(_ref) {
|
|
|
9344
9389
|
accessible: accessible
|
|
9345
9390
|
}, items.map(function (_ref2, index) {
|
|
9346
9391
|
var key = _ref2.key,
|
|
9347
|
-
props = _objectWithoutProperties(_ref2, _excluded$
|
|
9392
|
+
props = _objectWithoutProperties(_ref2, _excluded$I);
|
|
9348
9393
|
var open = _activeItemKey === key;
|
|
9349
9394
|
return /*#__PURE__*/React__namespace.default.createElement(React__namespace.default.Fragment, {
|
|
9350
9395
|
key: key
|
|
@@ -10185,7 +10230,7 @@ var borderWidths = {
|
|
|
10185
10230
|
var config = _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({}, colors), space), radii), borderWidths);
|
|
10186
10231
|
var flexPropsKey = ['alignContent', 'alignItems', 'alignSelf', 'display', 'flex', 'flexBasis', 'flexDirection', 'flexGrow', 'flexShrink', 'flexWrap', 'justifyContent'];
|
|
10187
10232
|
|
|
10188
|
-
var _excluded$
|
|
10233
|
+
var _excluded$H = ["theme"];
|
|
10189
10234
|
var getThemeValue = function getThemeValue(theme, key, props) {
|
|
10190
10235
|
var propConfig = config[key];
|
|
10191
10236
|
var propValue = props[key];
|
|
@@ -10212,18 +10257,18 @@ var mapStylePropToThemeValue = function mapStylePropToThemeValue(theme, props) {
|
|
|
10212
10257
|
var configKeys = Object.keys(config);
|
|
10213
10258
|
var StyledBox = index$c(reactNative.View)(function (_ref5) {
|
|
10214
10259
|
var theme = _ref5.theme,
|
|
10215
|
-
otherProps = _objectWithoutProperties(_ref5, _excluded$
|
|
10260
|
+
otherProps = _objectWithoutProperties(_ref5, _excluded$H);
|
|
10216
10261
|
var styleProps = pick(configKeys, otherProps);
|
|
10217
10262
|
var flexProps = pick(_toConsumableArray(flexPropsKey), otherProps);
|
|
10218
10263
|
return _objectSpread2(_objectSpread2({}, mapStylePropToThemeValue(theme, styleProps)), flexProps);
|
|
10219
10264
|
});
|
|
10220
10265
|
|
|
10221
|
-
var _excluded$
|
|
10266
|
+
var _excluded$G = ["children", "style", "testID"];
|
|
10222
10267
|
var Box = function Box(_ref) {
|
|
10223
10268
|
var children = _ref.children,
|
|
10224
10269
|
style = _ref.style,
|
|
10225
10270
|
testID = _ref.testID,
|
|
10226
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10271
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$G);
|
|
10227
10272
|
return /*#__PURE__*/React__namespace.default.createElement(StyledBox, _extends$1({}, otherProps, {
|
|
10228
10273
|
style: style,
|
|
10229
10274
|
testID: testID
|
|
@@ -10494,7 +10539,7 @@ var StyledIcon$4 = index$c(Icon)(function (_ref6) {
|
|
|
10494
10539
|
};
|
|
10495
10540
|
});
|
|
10496
10541
|
|
|
10497
|
-
var _excluded$
|
|
10542
|
+
var _excluded$F = ["children", "visible", "intent", "style", "testID"];
|
|
10498
10543
|
var Status$1 = function Status(_ref) {
|
|
10499
10544
|
var children = _ref.children,
|
|
10500
10545
|
_ref$visible = _ref.visible,
|
|
@@ -10503,7 +10548,7 @@ var Status$1 = function Status(_ref) {
|
|
|
10503
10548
|
intent = _ref$intent === void 0 ? 'danger' : _ref$intent,
|
|
10504
10549
|
style = _ref.style,
|
|
10505
10550
|
testID = _ref.testID,
|
|
10506
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
10551
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$F);
|
|
10507
10552
|
var _React$useRef = React__namespace.default.useRef(new reactNative.Animated.Value(visible ? 1 : 0)),
|
|
10508
10553
|
opacity = _React$useRef.current;
|
|
10509
10554
|
var isFirstRendering = React__namespace.default.useRef(true);
|
|
@@ -10539,7 +10584,7 @@ var Status$1 = function Status(_ref) {
|
|
|
10539
10584
|
|
|
10540
10585
|
var DEFAULT_MAX_NUMBER = 99;
|
|
10541
10586
|
|
|
10542
|
-
var _excluded$
|
|
10587
|
+
var _excluded$E = ["children", "visible", "style", "max", "testID", "content"];
|
|
10543
10588
|
var Status = function Status(_ref) {
|
|
10544
10589
|
var children = _ref.children,
|
|
10545
10590
|
_ref$visible = _ref.visible,
|
|
@@ -10549,7 +10594,7 @@ var Status = function Status(_ref) {
|
|
|
10549
10594
|
max = _ref$max === void 0 ? DEFAULT_MAX_NUMBER : _ref$max,
|
|
10550
10595
|
testID = _ref.testID,
|
|
10551
10596
|
originalContent = _ref.content,
|
|
10552
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
10597
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$E);
|
|
10553
10598
|
var content = React.useMemo(function () {
|
|
10554
10599
|
return originalContent > max ? "".concat(max, "+") : String(originalContent);
|
|
10555
10600
|
}, [originalContent, max]);
|
|
@@ -10561,7 +10606,7 @@ var Status = function Status(_ref) {
|
|
|
10561
10606
|
}, /*#__PURE__*/React__namespace.default.createElement(StyledCountText, null, content)));
|
|
10562
10607
|
};
|
|
10563
10608
|
|
|
10564
|
-
var _excluded$
|
|
10609
|
+
var _excluded$D = ["content", "visible", "max", "intent", "style", "testID", "size", "variant", "icon"];
|
|
10565
10610
|
var getPaddingState = function getPaddingState(content) {
|
|
10566
10611
|
return content.length > 1 ? 'wideContent' : 'narrowContent';
|
|
10567
10612
|
};
|
|
@@ -10580,7 +10625,7 @@ var Badge = function Badge(_ref) {
|
|
|
10580
10625
|
_ref$variant = _ref.variant,
|
|
10581
10626
|
variant = _ref$variant === void 0 ? 'filled' : _ref$variant,
|
|
10582
10627
|
icon = _ref.icon,
|
|
10583
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
10628
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$D);
|
|
10584
10629
|
var _React$useRef = React__namespace.default.useRef(new reactNative.Animated.Value(visible ? 1 : 0)),
|
|
10585
10630
|
opacity = _React$useRef.current;
|
|
10586
10631
|
var isFirstRendering = React__namespace.default.useRef(true);
|
|
@@ -10698,7 +10743,7 @@ var StyledBottomBarText = index$c(Typography.Label)(function (_ref4) {
|
|
|
10698
10743
|
};
|
|
10699
10744
|
});
|
|
10700
10745
|
|
|
10701
|
-
var _excluded$
|
|
10746
|
+
var _excluded$C = ["onTabPress", "renderActiveTabOnly", "selectedTabKey", "tabs"];
|
|
10702
10747
|
var getInactiveIcon = function getInactiveIcon(icon) {
|
|
10703
10748
|
var inactiveIcon = "".concat(icon, "-outlined");
|
|
10704
10749
|
return isHeroIcon(inactiveIcon) ? inactiveIcon : icon;
|
|
@@ -10709,7 +10754,7 @@ var BottomNavigation = function BottomNavigation(_ref) {
|
|
|
10709
10754
|
renderActiveTabOnly = _ref$renderActiveTabO === void 0 ? false : _ref$renderActiveTabO,
|
|
10710
10755
|
selectedTabKey = _ref.selectedTabKey,
|
|
10711
10756
|
tabs = _ref.tabs,
|
|
10712
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
10757
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$C);
|
|
10713
10758
|
var insets = reactNativeSafeAreaContext.useSafeAreaInsets();
|
|
10714
10759
|
/**
|
|
10715
10760
|
* List of loaded tabs, tabs will be loaded when navigated to.
|
|
@@ -10801,13 +10846,13 @@ var StyledDivider = index$c(reactNative.View)(function (_ref) {
|
|
|
10801
10846
|
}, horizontalMargin), verticalMargin);
|
|
10802
10847
|
});
|
|
10803
10848
|
|
|
10804
|
-
var _excluded$
|
|
10849
|
+
var _excluded$B = ["marginHorizontal", "marginVertical", "style", "testID"];
|
|
10805
10850
|
var Divider = function Divider(_ref) {
|
|
10806
10851
|
var marginHorizontal = _ref.marginHorizontal,
|
|
10807
10852
|
marginVertical = _ref.marginVertical,
|
|
10808
10853
|
style = _ref.style,
|
|
10809
10854
|
testID = _ref.testID,
|
|
10810
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
10855
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$B);
|
|
10811
10856
|
return /*#__PURE__*/React__namespace.default.createElement(StyledDivider, _extends$1({}, nativeProps, {
|
|
10812
10857
|
themeMarginHorizontal: marginHorizontal,
|
|
10813
10858
|
themeMarginVertical: marginVertical,
|
|
@@ -10938,7 +10983,7 @@ var StyledLoadingDot = index$c(reactNative.View)(function (_ref) {
|
|
|
10938
10983
|
}, themeStyling());
|
|
10939
10984
|
});
|
|
10940
10985
|
|
|
10941
|
-
var _excluded$
|
|
10986
|
+
var _excluded$A = ["count", "size", "testID", "themeVariant"];
|
|
10942
10987
|
var AnimatedLoadingIndicatorWrapper = reactNative.Animated.createAnimatedComponent(StyledLoadingIndicatorWrapper);
|
|
10943
10988
|
var AnimatedLoadingDot = reactNative.Animated.createAnimatedComponent(StyledLoadingDot);
|
|
10944
10989
|
var renderDotComponent = function renderDotComponent(_ref) {
|
|
@@ -10970,7 +11015,7 @@ var LoadingIndicator = function LoadingIndicator(_ref2) {
|
|
|
10970
11015
|
size = _ref2$size === void 0 ? 12 : _ref2$size,
|
|
10971
11016
|
testID = _ref2.testID,
|
|
10972
11017
|
themeVariant = _ref2.themeVariant,
|
|
10973
|
-
nativeProps = _objectWithoutProperties(_ref2, _excluded$
|
|
11018
|
+
nativeProps = _objectWithoutProperties(_ref2, _excluded$A);
|
|
10974
11019
|
var progressAnimation = React.useRef(new reactNative.Animated.Value(0));
|
|
10975
11020
|
React.useEffect(function () {
|
|
10976
11021
|
var animation = reactNative.Animated.loop(reactNative.Animated.timing(progressAnimation.current, {
|
|
@@ -11602,11 +11647,11 @@ var Header = function Header(_ref) {
|
|
|
11602
11647
|
}))) : null), showDivider ? /*#__PURE__*/React__namespace.default.createElement(Divider, null) : null);
|
|
11603
11648
|
};
|
|
11604
11649
|
|
|
11605
|
-
var _excluded$
|
|
11650
|
+
var _excluded$z = ["scrollEventThrottle"];
|
|
11606
11651
|
var BottomSheetScrollView = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
11607
11652
|
var _ref$scrollEventThrot = _ref.scrollEventThrottle,
|
|
11608
11653
|
scrollEventThrottle = _ref$scrollEventThrot === void 0 ? 100 : _ref$scrollEventThrot,
|
|
11609
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11654
|
+
props = _objectWithoutProperties(_ref, _excluded$z);
|
|
11610
11655
|
var _useContext = React.useContext(BottomSheetContext),
|
|
11611
11656
|
setInternalShowDivider = _useContext.setInternalShowDivider;
|
|
11612
11657
|
var onScrollBeginDrag = React.useCallback(function (e) {
|
|
@@ -14728,12 +14773,12 @@ var Indicator = index$c(reactNative.View)(function (_ref3) {
|
|
|
14728
14773
|
};
|
|
14729
14774
|
});
|
|
14730
14775
|
|
|
14731
|
-
var _excluded$
|
|
14776
|
+
var _excluded$y = ["intent", "children"];
|
|
14732
14777
|
var DataCard = function DataCard(_ref) {
|
|
14733
14778
|
var _ref$intent = _ref.intent,
|
|
14734
14779
|
intent = _ref$intent === void 0 ? 'info' : _ref$intent,
|
|
14735
14780
|
children = _ref.children,
|
|
14736
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
14781
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$y);
|
|
14737
14782
|
return /*#__PURE__*/React__namespace.default.createElement(StyledDataCard, nativeProps, /*#__PURE__*/React__namespace.default.createElement(Indicator, {
|
|
14738
14783
|
themeIntent: intent,
|
|
14739
14784
|
testID: "data-card-indicator"
|
|
@@ -14752,13 +14797,13 @@ var StyledCard$1 = index$c(reactNative.View)(function (_ref) {
|
|
|
14752
14797
|
});
|
|
14753
14798
|
});
|
|
14754
14799
|
|
|
14755
|
-
var _excluded$
|
|
14800
|
+
var _excluded$x = ["intent", "children", "variant"];
|
|
14756
14801
|
var Card = function Card(_ref) {
|
|
14757
14802
|
var intent = _ref.intent,
|
|
14758
14803
|
children = _ref.children,
|
|
14759
14804
|
_ref$variant = _ref.variant,
|
|
14760
14805
|
variant = _ref$variant === void 0 ? 'basic' : _ref$variant,
|
|
14761
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
14806
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$x);
|
|
14762
14807
|
return /*#__PURE__*/React__namespace.default.createElement(StyledCard$1, _extends$1({}, nativeProps, {
|
|
14763
14808
|
themeIntent: intent,
|
|
14764
14809
|
themeVariant: variant
|
|
@@ -15025,7 +15070,7 @@ var CardCarousel = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
15025
15070
|
});
|
|
15026
15071
|
CardCarousel.displayName = 'CardCarousel';
|
|
15027
15072
|
|
|
15028
|
-
var _excluded$
|
|
15073
|
+
var _excluded$w = ["rounded", "size", "testID", "style"];
|
|
15029
15074
|
/**
|
|
15030
15075
|
* @deprecated Image component will soon be deprecated. Please use `Image` from `react-native` instead.
|
|
15031
15076
|
*/
|
|
@@ -15036,7 +15081,7 @@ var Image = function Image(_ref) {
|
|
|
15036
15081
|
size = _ref$size === void 0 ? '6xlarge' : _ref$size,
|
|
15037
15082
|
testID = _ref.testID,
|
|
15038
15083
|
style = _ref.style,
|
|
15039
|
-
imageNativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
15084
|
+
imageNativeProps = _objectWithoutProperties(_ref, _excluded$w);
|
|
15040
15085
|
useDeprecation('Image component will soon be deprecated. Please use `Image` from `react-native` instead.');
|
|
15041
15086
|
var theme = useTheme();
|
|
15042
15087
|
var imageSize = theme.__hd__.image.sizes[size];
|
|
@@ -15171,7 +15216,7 @@ var CarouselItem = function CarouselItem(_ref) {
|
|
|
15171
15216
|
}, heading), !!body && /*#__PURE__*/React__namespace.default.createElement(Typography.Body, null, body)));
|
|
15172
15217
|
};
|
|
15173
15218
|
|
|
15174
|
-
var _excluded$
|
|
15219
|
+
var _excluded$v = ["items", "onItemIndexChange", "renderActions", "selectedItemIndex", "style", "shouldShowPagination", "testID", "pageControlPosition"];
|
|
15175
15220
|
function useStateFromProp(initialValue) {
|
|
15176
15221
|
var _useState = React.useState(initialValue),
|
|
15177
15222
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -15198,7 +15243,7 @@ var Carousel = function Carousel(_ref) {
|
|
|
15198
15243
|
testID = _ref.testID,
|
|
15199
15244
|
_ref$pageControlPosit = _ref.pageControlPosition,
|
|
15200
15245
|
pageControlPosition = _ref$pageControlPosit === void 0 ? 'top' : _ref$pageControlPosit,
|
|
15201
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
15246
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$v);
|
|
15202
15247
|
useDeprecation("shouldShowPagination prop has been deprecated", shouldShowPagination !== noop$2);
|
|
15203
15248
|
useDeprecation("The use of 'pageControlPosition == bottom' has been deprecated", pageControlPosition === 'bottom');
|
|
15204
15249
|
var theme = useTheme();
|
|
@@ -20469,7 +20514,7 @@ var StyledChipIcon = index$c(Icon)(function (_ref2) {
|
|
|
20469
20514
|
};
|
|
20470
20515
|
});
|
|
20471
20516
|
|
|
20472
|
-
var _excluded$
|
|
20517
|
+
var _excluded$u = ["label", "variant", "selected", "icon", "onPress", "showSelectedIcon", "accessible", "onBlur", "onFocus"];
|
|
20473
20518
|
var getChipLabel = function getChipLabel(label) {
|
|
20474
20519
|
if (typeof label === 'string') {
|
|
20475
20520
|
return /*#__PURE__*/React__namespace.default.createElement(Typography.Body, {
|
|
@@ -20505,7 +20550,7 @@ var Chip = function Chip(_ref) {
|
|
|
20505
20550
|
accessible = _ref.accessible,
|
|
20506
20551
|
onBlur = _ref.onBlur,
|
|
20507
20552
|
onFocus = _ref.onFocus,
|
|
20508
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
20553
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$u);
|
|
20509
20554
|
useDeprecation('Chip variant `outlined` and `filled` are deprecated.', variant === 'outlined' || variant === 'filled');
|
|
20510
20555
|
var renamedVariant = getChipVariant(variant);
|
|
20511
20556
|
var shouldShowSelectedIcon = (renamedVariant === 'selection' || renamedVariant === 'compact-outlined') && selected && showSelectedIcon;
|
|
@@ -20896,7 +20941,7 @@ var StyledErrorAndMaxLengthContainer = index$c(reactNative.View)(function (_ref1
|
|
|
20896
20941
|
};
|
|
20897
20942
|
});
|
|
20898
20943
|
|
|
20899
|
-
var _excluded$
|
|
20944
|
+
var _excluded$t = ["label", "prefix", "suffix", "style", "textStyle", "testID", "accessibilityLabelledBy", "error", "required", "editable", "disabled", "loading", "maxLength", "hideCharacterCount", "helpText", "value", "defaultValue", "renderInputValue", "allowFontScaling", "variant"];
|
|
20900
20945
|
var getState$3 = function getState(_ref) {
|
|
20901
20946
|
var disabled = _ref.disabled,
|
|
20902
20947
|
error = _ref.error,
|
|
@@ -21012,7 +21057,7 @@ var TextInput = /*#__PURE__*/React.forwardRef(function (_ref8, ref) {
|
|
|
21012
21057
|
allowFontScaling = _ref8$allowFontScalin === void 0 ? false : _ref8$allowFontScalin,
|
|
21013
21058
|
_ref8$variant = _ref8.variant,
|
|
21014
21059
|
variant = _ref8$variant === void 0 ? 'text' : _ref8$variant,
|
|
21015
|
-
nativeProps = _objectWithoutProperties(_ref8, _excluded$
|
|
21060
|
+
nativeProps = _objectWithoutProperties(_ref8, _excluded$t);
|
|
21016
21061
|
var displayText = getDisplayText(value, defaultValue);
|
|
21017
21062
|
var isEmptyValue = displayText.length === 0;
|
|
21018
21063
|
var _React$useState = React__namespace.default.useState(0),
|
|
@@ -21759,11 +21804,11 @@ var DatePickerIOS = function DatePickerIOS(_ref) {
|
|
|
21759
21804
|
}));
|
|
21760
21805
|
};
|
|
21761
21806
|
|
|
21762
|
-
var _excluded$
|
|
21807
|
+
var _excluded$s = ["variant"];
|
|
21763
21808
|
var DatePicker = function DatePicker(_ref) {
|
|
21764
21809
|
var _ref$variant = _ref.variant,
|
|
21765
21810
|
variant = _ref$variant === void 0 ? 'default' : _ref$variant,
|
|
21766
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
21811
|
+
props = _objectWithoutProperties(_ref, _excluded$s);
|
|
21767
21812
|
if (variant === 'calendar') {
|
|
21768
21813
|
return /*#__PURE__*/React__namespace.default.createElement(DatePickerCalendar, props);
|
|
21769
21814
|
}
|
|
@@ -22135,7 +22180,7 @@ var DragableDrawer = function DragableDrawer(_ref) {
|
|
|
22135
22180
|
}, /*#__PURE__*/React__namespace.default.createElement(StyledHandlerContainer$1, panHandlers, /*#__PURE__*/React__namespace.default.createElement(StyledHandler, null)), children)));
|
|
22136
22181
|
};
|
|
22137
22182
|
|
|
22138
|
-
var _excluded$
|
|
22183
|
+
var _excluded$r = ["onScroll", "onScrollEndDrag", "onMomentumScrollEnd", "scrollEventThrottle", "children"];
|
|
22139
22184
|
// scrollY tolerance: treat anything within this many pixels of the top as
|
|
22140
22185
|
// "at scroll top" to handle fractional pixels and throttled scroll events.
|
|
22141
22186
|
var SCROLL_TOP_THRESHOLD_PX = 5;
|
|
@@ -22162,7 +22207,7 @@ var DragableScrollView = function DragableScrollView(_ref) {
|
|
|
22162
22207
|
_ref$scrollEventThrot = _ref.scrollEventThrottle,
|
|
22163
22208
|
scrollEventThrottle = _ref$scrollEventThrot === void 0 ? DEFAULT_SCROLL_EVENT_THROTTLE : _ref$scrollEventThrot,
|
|
22164
22209
|
children = _ref.children,
|
|
22165
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
22210
|
+
props = _objectWithoutProperties(_ref, _excluded$r);
|
|
22166
22211
|
var _useDragableDrawerCon = useDragableDrawerContext(),
|
|
22167
22212
|
isAtMaxHeight = _useDragableDrawerCon.isAtMaxHeight,
|
|
22168
22213
|
scrollYRef = _useDragableDrawerCon.scrollYRef,
|
|
@@ -24026,7 +24071,7 @@ var StyledErrorDescription = index$c(Typography.Body)(function (_ref9) {
|
|
|
24026
24071
|
};
|
|
24027
24072
|
});
|
|
24028
24073
|
|
|
24029
|
-
var _excluded$
|
|
24074
|
+
var _excluded$q = ["variant", "title", "description", "image", "testID", "ctaText", "onCtaPress", "secondaryCtaText", "onSecondaryCtaPress", "icon"],
|
|
24030
24075
|
_excluded2 = ["visible", "variant", "title", "description", "image", "testID", "ctaText", "onCtaPress", "secondaryCtaText", "onSecondaryCtaPress"];
|
|
24031
24076
|
var renderImage$1 = function renderImage(image) {
|
|
24032
24077
|
if (/*#__PURE__*/React.isValidElement(image)) {
|
|
@@ -24067,7 +24112,7 @@ var ErrorPage = function ErrorPage(_ref2) {
|
|
|
24067
24112
|
secondaryCtaText = _ref2.secondaryCtaText,
|
|
24068
24113
|
onSecondaryCtaPress = _ref2.onSecondaryCtaPress,
|
|
24069
24114
|
icon = _ref2.icon,
|
|
24070
|
-
nativeProps = _objectWithoutProperties(_ref2, _excluded$
|
|
24115
|
+
nativeProps = _objectWithoutProperties(_ref2, _excluded$q);
|
|
24071
24116
|
var showCta = ctaText && onCtaPress !== undefined;
|
|
24072
24117
|
var showSecondaryCta = secondaryCtaText && onSecondaryCtaPress !== undefined;
|
|
24073
24118
|
var showButtonContainer = showCta || showSecondaryCta;
|
|
@@ -24296,13 +24341,13 @@ var ActionItem = function ActionItem(_ref) {
|
|
|
24296
24341
|
})), /*#__PURE__*/React__namespace.default.createElement(StyledActionItemText, null, title))));
|
|
24297
24342
|
};
|
|
24298
24343
|
|
|
24299
|
-
var _excluded$
|
|
24344
|
+
var _excluded$p = ["active"];
|
|
24300
24345
|
var AnimatedIcons = reactNative.Animated.createAnimatedComponent(/*#__PURE__*/React__namespace.default.forwardRef(function (props, _) {
|
|
24301
24346
|
return /*#__PURE__*/React__namespace.default.createElement(StyledFABIcon, props);
|
|
24302
24347
|
}));
|
|
24303
24348
|
var AnimatedFABIcon = function AnimatedFABIcon(_ref) {
|
|
24304
24349
|
var active = _ref.active,
|
|
24305
|
-
iconProps = _objectWithoutProperties(_ref, _excluded$
|
|
24350
|
+
iconProps = _objectWithoutProperties(_ref, _excluded$p);
|
|
24306
24351
|
var rotateAnimation = React.useRef(new reactNative.Animated.Value(active ? 1 : 0));
|
|
24307
24352
|
React.useEffect(function () {
|
|
24308
24353
|
var animation = reactNative.Animated.spring(rotateAnimation.current, {
|
|
@@ -24708,11 +24753,11 @@ var StyledFAB = index$c(FABWithTitleStyle)(function (_ref) {
|
|
|
24708
24753
|
};
|
|
24709
24754
|
});
|
|
24710
24755
|
|
|
24711
|
-
var _excluded$
|
|
24756
|
+
var _excluded$o = ["fabConfig", "onCancel"];
|
|
24712
24757
|
var Pair = function Pair(_ref) {
|
|
24713
24758
|
var fabConfig = _ref.fabConfig,
|
|
24714
24759
|
onCancel = _ref.onCancel,
|
|
24715
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
24760
|
+
props = _objectWithoutProperties(_ref, _excluded$o);
|
|
24716
24761
|
var icon = fabConfig.icon,
|
|
24717
24762
|
title = fabConfig.title,
|
|
24718
24763
|
onPress = fabConfig.onPress,
|
|
@@ -25447,11 +25492,11 @@ var StyledFocusIcon = index$c(Icon)(function (_ref7) {
|
|
|
25447
25492
|
};
|
|
25448
25493
|
});
|
|
25449
25494
|
|
|
25450
|
-
var _excluded$
|
|
25495
|
+
var _excluded$n = ["style", "testID"];
|
|
25451
25496
|
var MapPinFocussed = function MapPinFocussed(_ref) {
|
|
25452
25497
|
var style = _ref.style,
|
|
25453
25498
|
testID = _ref.testID,
|
|
25454
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
25499
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$n);
|
|
25455
25500
|
return /*#__PURE__*/React__namespace.default.createElement(StyledContainer$4, _extends$1({}, nativeProps, {
|
|
25456
25501
|
style: style,
|
|
25457
25502
|
testID: testID
|
|
@@ -25461,7 +25506,7 @@ var MapPinFocussed = function MapPinFocussed(_ref) {
|
|
|
25461
25506
|
}));
|
|
25462
25507
|
};
|
|
25463
25508
|
|
|
25464
|
-
var _excluded$
|
|
25509
|
+
var _excluded$m = ["style", "testID", "state", "image", "icon"];
|
|
25465
25510
|
var getBadgeIconName = function getBadgeIconName(state) {
|
|
25466
25511
|
var iconMap = {
|
|
25467
25512
|
idle: undefined,
|
|
@@ -25477,7 +25522,7 @@ var MapPin = function MapPin(_ref) {
|
|
|
25477
25522
|
state = _ref$state === void 0 ? 'idle' : _ref$state,
|
|
25478
25523
|
image = _ref.image,
|
|
25479
25524
|
icon = _ref.icon,
|
|
25480
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
25525
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$m);
|
|
25481
25526
|
var badgeIcon = getBadgeIconName(state);
|
|
25482
25527
|
return /*#__PURE__*/React__namespace.default.createElement(StyledContainer$4, _extends$1({}, nativeProps, {
|
|
25483
25528
|
style: style,
|
|
@@ -25798,7 +25843,7 @@ var THEME_INTENT_MAP = {
|
|
|
25798
25843
|
'archived-inverted': 'archivedInverted'
|
|
25799
25844
|
};
|
|
25800
25845
|
|
|
25801
|
-
var _excluded$
|
|
25846
|
+
var _excluded$l = ["value", "renderValue", "intent", "style", "testID"];
|
|
25802
25847
|
var defaultRenderValue = function defaultRenderValue(value) {
|
|
25803
25848
|
return "".concat(value, "%");
|
|
25804
25849
|
};
|
|
@@ -25811,7 +25856,7 @@ var ProgressCircle = function ProgressCircle(_ref) {
|
|
|
25811
25856
|
intent = _ref$intent === void 0 ? 'primary' : _ref$intent,
|
|
25812
25857
|
style = _ref.style,
|
|
25813
25858
|
testID = _ref.testID,
|
|
25814
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
25859
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$l);
|
|
25815
25860
|
var theme = useTheme$1();
|
|
25816
25861
|
var size = theme.__hd__.progress.sizes.circleDiameter;
|
|
25817
25862
|
var strokeWidth = theme.__hd__.progress.sizes.circleCompletenessHeight;
|
|
@@ -25881,14 +25926,14 @@ var StyledInner = index$c(reactNative.Animated.View)(function (_ref2) {
|
|
|
25881
25926
|
};
|
|
25882
25927
|
});
|
|
25883
25928
|
|
|
25884
|
-
var _excluded$
|
|
25929
|
+
var _excluded$k = ["value", "intent", "style", "testID"];
|
|
25885
25930
|
var ProgressBar = function ProgressBar(_ref) {
|
|
25886
25931
|
var value = _ref.value,
|
|
25887
25932
|
_ref$intent = _ref.intent,
|
|
25888
25933
|
intent = _ref$intent === void 0 ? 'primary' : _ref$intent,
|
|
25889
25934
|
style = _ref.style,
|
|
25890
25935
|
testID = _ref.testID,
|
|
25891
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
25936
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$k);
|
|
25892
25937
|
var _useState = React.useState(0),
|
|
25893
25938
|
_useState2 = _slicedToArray(_useState, 2),
|
|
25894
25939
|
width = _useState2[0],
|
|
@@ -25978,7 +26023,7 @@ var StyledSingleStep = index$c(Box)(function (_ref3) {
|
|
|
25978
26023
|
};
|
|
25979
26024
|
});
|
|
25980
26025
|
|
|
25981
|
-
var _excluded$
|
|
26026
|
+
var _excluded$j = ["steps", "current", "onLayout"];
|
|
25982
26027
|
var getStepState = function getStepState(current, index) {
|
|
25983
26028
|
if (index < current) {
|
|
25984
26029
|
return 'complete';
|
|
@@ -25992,7 +26037,7 @@ var ProgressStep = function ProgressStep(_ref) {
|
|
|
25992
26037
|
var steps = _ref.steps,
|
|
25993
26038
|
current = _ref.current,
|
|
25994
26039
|
onLayout = _ref.onLayout,
|
|
25995
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
26040
|
+
props = _objectWithoutProperties(_ref, _excluded$j);
|
|
25996
26041
|
var theme = useTheme$1();
|
|
25997
26042
|
var _React$useState = React__namespace.default.useState(0),
|
|
25998
26043
|
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
@@ -26289,7 +26334,7 @@ var StyledEmptyText = index$c(Typography.Caption)(function (_ref4) {
|
|
|
26289
26334
|
};
|
|
26290
26335
|
});
|
|
26291
26336
|
|
|
26292
|
-
var _excluded$
|
|
26337
|
+
var _excluded$i = ["data", "headerConfig", "emptyText", "legendConfig", "styleConfig", "style", "testID", "collapsable"];
|
|
26293
26338
|
var ProgressSegmentedBar = function ProgressSegmentedBar(_ref) {
|
|
26294
26339
|
var data = _ref.data,
|
|
26295
26340
|
headerConfig = _ref.headerConfig,
|
|
@@ -26299,7 +26344,7 @@ var ProgressSegmentedBar = function ProgressSegmentedBar(_ref) {
|
|
|
26299
26344
|
style = _ref.style,
|
|
26300
26345
|
testID = _ref.testID,
|
|
26301
26346
|
collapsable = _ref.collapsable,
|
|
26302
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
26347
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$i);
|
|
26303
26348
|
var values = React__namespace.default.useMemo(function () {
|
|
26304
26349
|
return data.map(function (s) {
|
|
26305
26350
|
return s.data;
|
|
@@ -26669,14 +26714,14 @@ var AnimatedSpinner = function AnimatedSpinner(_ref) {
|
|
|
26669
26714
|
}, dotProps))));
|
|
26670
26715
|
};
|
|
26671
26716
|
|
|
26672
|
-
var _excluded$
|
|
26717
|
+
var _excluded$h = ["testID", "size", "intent"];
|
|
26673
26718
|
var Spinner = function Spinner(_ref) {
|
|
26674
26719
|
var testID = _ref.testID,
|
|
26675
26720
|
_ref$size = _ref.size,
|
|
26676
26721
|
size = _ref$size === void 0 ? 'medium' : _ref$size,
|
|
26677
26722
|
_ref$intent = _ref.intent,
|
|
26678
26723
|
intent = _ref$intent === void 0 ? 'primary' : _ref$intent,
|
|
26679
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
26724
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$h);
|
|
26680
26725
|
return /*#__PURE__*/React__namespace.default.createElement(StyledView$1, nativeProps, /*#__PURE__*/React__namespace.default.createElement(StyledSpinnerContainer, {
|
|
26681
26726
|
testID: testID
|
|
26682
26727
|
}, /*#__PURE__*/React__namespace.default.createElement(AnimatedSpinner, {
|
|
@@ -26709,7 +26754,7 @@ var SwipeableAction = function SwipeableAction(_ref) {
|
|
|
26709
26754
|
}, children);
|
|
26710
26755
|
};
|
|
26711
26756
|
|
|
26712
|
-
var _excluded$
|
|
26757
|
+
var _excluded$g = ["children", "state", "onStateChange", "leftActions", "leftActionsWidth", "rightActions", "rightActionsWidth", "variant"];
|
|
26713
26758
|
var renderActions = function renderActions(actions, width, progress, direction) {
|
|
26714
26759
|
var trans = progress.interpolate({
|
|
26715
26760
|
inputRange: [0, 1],
|
|
@@ -26738,7 +26783,7 @@ var Swipeable = function Swipeable(_ref) {
|
|
|
26738
26783
|
rightActionsWidth = _ref.rightActionsWidth,
|
|
26739
26784
|
_ref$variant = _ref.variant,
|
|
26740
26785
|
variant = _ref$variant === void 0 ? 'card' : _ref$variant,
|
|
26741
|
-
swipeableProps = _objectWithoutProperties(_ref, _excluded$
|
|
26786
|
+
swipeableProps = _objectWithoutProperties(_ref, _excluded$g);
|
|
26742
26787
|
var theme = useTheme();
|
|
26743
26788
|
var _useWindowDimensions = reactNative.useWindowDimensions(),
|
|
26744
26789
|
width = _useWindowDimensions.width;
|
|
@@ -26995,6 +27040,134 @@ var SectionHeading = function SectionHeading(_ref) {
|
|
|
26995
27040
|
}, text)), rightChildren);
|
|
26996
27041
|
};
|
|
26997
27042
|
|
|
27043
|
+
var isTop = function isTop(position) {
|
|
27044
|
+
return position === 'top' || position === 'single';
|
|
27045
|
+
};
|
|
27046
|
+
var isBottom = function isBottom(position) {
|
|
27047
|
+
return position === 'bottom' || position === 'single';
|
|
27048
|
+
};
|
|
27049
|
+
var StyledRow = index$c(reactNative.View)(function (_ref) {
|
|
27050
|
+
var theme = _ref.theme,
|
|
27051
|
+
themePosition = _ref.themePosition,
|
|
27052
|
+
_ref$themeMarginHoriz = _ref.themeMarginHorizontal,
|
|
27053
|
+
themeMarginHorizontal = _ref$themeMarginHoriz === void 0 ? 'medium' : _ref$themeMarginHoriz;
|
|
27054
|
+
var radius = theme.__hd__.sectionList.radii.group;
|
|
27055
|
+
var marginHorizontal = theme.__hd__.sectionList.space.marginHorizontal[themeMarginHorizontal];
|
|
27056
|
+
return {
|
|
27057
|
+
marginHorizontal: marginHorizontal,
|
|
27058
|
+
backgroundColor: theme.__hd__.sectionList.colors.groupBackground,
|
|
27059
|
+
borderTopLeftRadius: isTop(themePosition) ? radius : 0,
|
|
27060
|
+
borderTopRightRadius: isTop(themePosition) ? radius : 0,
|
|
27061
|
+
borderBottomLeftRadius: isBottom(themePosition) ? radius : 0,
|
|
27062
|
+
borderBottomRightRadius: isBottom(themePosition) ? radius : 0,
|
|
27063
|
+
overflow: 'hidden'
|
|
27064
|
+
};
|
|
27065
|
+
});
|
|
27066
|
+
var StyledDividerWrapper = index$c(reactNative.View)(function (_ref2) {
|
|
27067
|
+
var theme = _ref2.theme,
|
|
27068
|
+
_ref2$themeMarginHori = _ref2.themeMarginHorizontal,
|
|
27069
|
+
themeMarginHorizontal = _ref2$themeMarginHori === void 0 ? 'medium' : _ref2$themeMarginHori;
|
|
27070
|
+
return {
|
|
27071
|
+
marginHorizontal: theme.__hd__.sectionList.space.marginHorizontal[themeMarginHorizontal],
|
|
27072
|
+
backgroundColor: theme.__hd__.sectionList.colors.groupBackground
|
|
27073
|
+
};
|
|
27074
|
+
});
|
|
27075
|
+
var StyledSectionSpacer = index$c(reactNative.View)(function (_ref3) {
|
|
27076
|
+
var theme = _ref3.theme,
|
|
27077
|
+
themeCompact = _ref3.themeCompact;
|
|
27078
|
+
return {
|
|
27079
|
+
height: themeCompact ? theme.__hd__.sectionList.space.sectionSpacingCompact : theme.__hd__.sectionList.space.sectionSpacing
|
|
27080
|
+
};
|
|
27081
|
+
});
|
|
27082
|
+
var StyledSectionHeading = index$c(SectionHeading)(function (_ref4) {
|
|
27083
|
+
var theme = _ref4.theme;
|
|
27084
|
+
return {
|
|
27085
|
+
paddingLeft: theme.__hd__.sectionList.space.headingPaddingLeft,
|
|
27086
|
+
marginBottom: 0
|
|
27087
|
+
};
|
|
27088
|
+
});
|
|
27089
|
+
|
|
27090
|
+
var _excluded$f = ["sections", "marginHorizontal", "style", "testID"];
|
|
27091
|
+
var positionOf = function positionOf(index, count) {
|
|
27092
|
+
if (count === 1) return 'single';
|
|
27093
|
+
if (index === 0) return 'top';
|
|
27094
|
+
if (index === count - 1) return 'bottom';
|
|
27095
|
+
return 'middle';
|
|
27096
|
+
};
|
|
27097
|
+
// StyledRow already clips corners via overflow:hidden + its own borderRadius, so the
|
|
27098
|
+
// inner list items must not add their own rounding on top of it.
|
|
27099
|
+
var NO_RADIUS = {
|
|
27100
|
+
borderRadius: 0
|
|
27101
|
+
};
|
|
27102
|
+
var renderRow = function renderRow(row) {
|
|
27103
|
+
return row.type === 'basic-item' ? /*#__PURE__*/React__namespace.default.createElement(List$1.BasicItem, _extends$1({}, row, {
|
|
27104
|
+
style: [NO_RADIUS, row.style]
|
|
27105
|
+
})) : /*#__PURE__*/React__namespace.default.createElement(List$1.Item, _extends$1({}, row, {
|
|
27106
|
+
style: [NO_RADIUS, row.style]
|
|
27107
|
+
}));
|
|
27108
|
+
};
|
|
27109
|
+
// Factory lives at module scope — satisfies react/no-unstable-nested-components.
|
|
27110
|
+
// RN only renders ItemSeparatorComponent between adjacent items (never after the
|
|
27111
|
+
// last), which is exactly the desired divider placement for a bounded group.
|
|
27112
|
+
var createRowDivider = function createRowDivider(margin) {
|
|
27113
|
+
return function () {
|
|
27114
|
+
return /*#__PURE__*/React__namespace.default.createElement(StyledDividerWrapper, {
|
|
27115
|
+
testID: "section-list-divider-wrapper",
|
|
27116
|
+
themeMarginHorizontal: margin
|
|
27117
|
+
}, /*#__PURE__*/React__namespace.default.createElement(Divider, {
|
|
27118
|
+
testID: "section-list-divider"
|
|
27119
|
+
}));
|
|
27120
|
+
};
|
|
27121
|
+
};
|
|
27122
|
+
var SectionSpacer$1 = function SectionSpacer(_ref) {
|
|
27123
|
+
var leadingItem = _ref.leadingItem,
|
|
27124
|
+
trailingSection = _ref.trailingSection;
|
|
27125
|
+
return leadingItem && trailingSection ? /*#__PURE__*/React__namespace.default.createElement(StyledSectionSpacer, {
|
|
27126
|
+
themeCompact: !!trailingSection.hideHeading,
|
|
27127
|
+
testID: "section-list-spacer"
|
|
27128
|
+
}) : null;
|
|
27129
|
+
};
|
|
27130
|
+
function SectionList(_ref2) {
|
|
27131
|
+
var sections = _ref2.sections,
|
|
27132
|
+
_ref2$marginHorizonta = _ref2.marginHorizontal,
|
|
27133
|
+
marginHorizontal = _ref2$marginHorizonta === void 0 ? 'medium' : _ref2$marginHorizonta,
|
|
27134
|
+
style = _ref2.style,
|
|
27135
|
+
testID = _ref2.testID,
|
|
27136
|
+
rest = _objectWithoutProperties(_ref2, _excluded$f);
|
|
27137
|
+
var RowDivider = React.useMemo(function () {
|
|
27138
|
+
return createRowDivider(marginHorizontal);
|
|
27139
|
+
}, [marginHorizontal]);
|
|
27140
|
+
return /*#__PURE__*/React__namespace.default.createElement(reactNative.SectionList, _extends$1({}, rest, {
|
|
27141
|
+
style: style,
|
|
27142
|
+
testID: testID,
|
|
27143
|
+
sections: sections,
|
|
27144
|
+
stickySectionHeadersEnabled: false,
|
|
27145
|
+
ItemSeparatorComponent: RowDivider,
|
|
27146
|
+
renderSectionHeader: function renderSectionHeader(_ref3) {
|
|
27147
|
+
var _section$text;
|
|
27148
|
+
var section = _ref3.section;
|
|
27149
|
+
return section.hideHeading ? null : /*#__PURE__*/React__namespace.default.createElement(StyledSectionHeading, {
|
|
27150
|
+
text: (_section$text = section.text) !== null && _section$text !== void 0 ? _section$text : '',
|
|
27151
|
+
icon: section.icon,
|
|
27152
|
+
rightChildren: section.rightChildren,
|
|
27153
|
+
intent: section.intent,
|
|
27154
|
+
size: section.size
|
|
27155
|
+
});
|
|
27156
|
+
},
|
|
27157
|
+
renderItem: function renderItem(_ref4) {
|
|
27158
|
+
var item = _ref4.item,
|
|
27159
|
+
index = _ref4.index,
|
|
27160
|
+
section = _ref4.section;
|
|
27161
|
+
return /*#__PURE__*/React__namespace.default.createElement(StyledRow, {
|
|
27162
|
+
testID: "section-list-row",
|
|
27163
|
+
themePosition: positionOf(index, section.data.length),
|
|
27164
|
+
themeMarginHorizontal: marginHorizontal
|
|
27165
|
+
}, renderRow(item));
|
|
27166
|
+
},
|
|
27167
|
+
SectionSeparatorComponent: SectionSpacer$1
|
|
27168
|
+
}));
|
|
27169
|
+
}
|
|
27170
|
+
|
|
26998
27171
|
var Footer = function Footer(_ref) {
|
|
26999
27172
|
var label = _ref.label,
|
|
27000
27173
|
onPress = _ref.onPress;
|
|
@@ -42943,6 +43116,7 @@ exports.RichTextEditor = index;
|
|
|
42943
43116
|
exports.ScrollViewWithFAB = ScrollViewWithFAB;
|
|
42944
43117
|
exports.Search = Search;
|
|
42945
43118
|
exports.SectionHeading = SectionHeading;
|
|
43119
|
+
exports.SectionList = SectionList;
|
|
42946
43120
|
exports.SectionListWithFAB = SectionListWithFAB;
|
|
42947
43121
|
exports.SegmentedControl = SegmentedControl;
|
|
42948
43122
|
exports.Select = index$4;
|