@hero-design/rn 8.74.0 → 8.75.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/.turbo/turbo-build.log +2 -3
- package/CHANGELOG.md +14 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +635 -522
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +635 -521
- package/package.json +4 -4
- package/src/components/BottomSheet/index.tsx +13 -14
- package/src/components/FloatingIsland/StyledFloatingIsland.tsx +32 -0
- package/src/components/FloatingIsland/__tests__/__snapshots__/index.spec.tsx.snap +561 -0
- package/src/components/FloatingIsland/__tests__/index.spec.tsx +67 -0
- package/src/components/FloatingIsland/index.tsx +94 -0
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +4 -0
- package/src/index.ts +2 -0
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +30 -0
- package/src/theme/components/floatingIsland.ts +31 -0
- package/src/theme/getTheme.ts +3 -0
- package/stats/8.74.1/rn-stats.html +4842 -0
- package/stats/8.75.0/rn-stats.html +4844 -0
- package/types/components/FloatingIsland/StyledFloatingIsland.d.ts +19 -0
- package/types/components/FloatingIsland/index.d.ts +23 -0
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/Icon/utils.d.ts +1 -1
- package/types/components/Search/utils.d.ts +2 -2
- package/types/components/TextInput/index.d.ts +3 -3
- package/types/index.d.ts +2 -1
- package/types/theme/components/floatingIsland.d.ts +32 -0
- package/types/theme/getTheme.d.ts +2 -0
package/es/index.js
CHANGED
|
@@ -3953,6 +3953,35 @@ var getMapPinTheme = function getMapPinTheme(theme) {
|
|
|
3953
3953
|
};
|
|
3954
3954
|
};
|
|
3955
3955
|
|
|
3956
|
+
var getFloatingIslandTheme = function getFloatingIslandTheme(theme) {
|
|
3957
|
+
var colors = {
|
|
3958
|
+
wrapperBackground: theme.colors.defaultGlobalSurface
|
|
3959
|
+
};
|
|
3960
|
+
var radii = {
|
|
3961
|
+
wrapper: theme.radii.rounded
|
|
3962
|
+
};
|
|
3963
|
+
var shadows = {
|
|
3964
|
+
wrapper: theme.shadows["default"]
|
|
3965
|
+
};
|
|
3966
|
+
var space = {
|
|
3967
|
+
wrapperPadding: theme.space.small,
|
|
3968
|
+
wrapperTop: theme.space.smallMedium,
|
|
3969
|
+
prefixMarginRight: theme.space.small,
|
|
3970
|
+
suffixMarginLeft: theme.space.medium,
|
|
3971
|
+
iconPadding: theme.space.smallMedium
|
|
3972
|
+
};
|
|
3973
|
+
var fontSizes = {
|
|
3974
|
+
iconSize: theme.fontSizes.medium
|
|
3975
|
+
};
|
|
3976
|
+
return {
|
|
3977
|
+
colors: colors,
|
|
3978
|
+
radii: radii,
|
|
3979
|
+
shadows: shadows,
|
|
3980
|
+
space: space,
|
|
3981
|
+
fontSizes: fontSizes
|
|
3982
|
+
};
|
|
3983
|
+
};
|
|
3984
|
+
|
|
3956
3985
|
var getTheme$1 = function getTheme() {
|
|
3957
3986
|
var scale = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : scale$1;
|
|
3958
3987
|
var systemPallete = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : swagSystemPalette$1;
|
|
@@ -4006,7 +4035,8 @@ var getTheme$1 = function getTheme() {
|
|
|
4006
4035
|
timePicker: getTimePickerTheme(globalTheme),
|
|
4007
4036
|
toast: getToastTheme(globalTheme),
|
|
4008
4037
|
toolbar: getToolbarTheme(globalTheme),
|
|
4009
|
-
typography: getTypographyTheme(globalTheme)
|
|
4038
|
+
typography: getTypographyTheme(globalTheme),
|
|
4039
|
+
floatingIsland: getFloatingIslandTheme(globalTheme)
|
|
4010
4040
|
}
|
|
4011
4041
|
});
|
|
4012
4042
|
};
|
|
@@ -6962,7 +6992,7 @@ var useDeprecation = function useDeprecation(message) {
|
|
|
6962
6992
|
}, [message, cond]);
|
|
6963
6993
|
};
|
|
6964
6994
|
|
|
6965
|
-
var StyledWrapper$
|
|
6995
|
+
var StyledWrapper$e = index$a(Animated.View)({
|
|
6966
6996
|
margin: 0,
|
|
6967
6997
|
padding: 0,
|
|
6968
6998
|
overflow: 'hidden'
|
|
@@ -7016,7 +7046,7 @@ var Collapse = function Collapse(_ref) {
|
|
|
7016
7046
|
setComponentMounted(true);
|
|
7017
7047
|
onLayout === null || onLayout === void 0 || onLayout(e);
|
|
7018
7048
|
}, []);
|
|
7019
|
-
return /*#__PURE__*/React__default.createElement(StyledWrapper$
|
|
7049
|
+
return /*#__PURE__*/React__default.createElement(StyledWrapper$e, {
|
|
7020
7050
|
style: {
|
|
7021
7051
|
height: open ? contentHeight : 0
|
|
7022
7052
|
},
|
|
@@ -7030,7 +7060,7 @@ var Collapse = function Collapse(_ref) {
|
|
|
7030
7060
|
}, children)));
|
|
7031
7061
|
};
|
|
7032
7062
|
|
|
7033
|
-
var StyledWrapper$
|
|
7063
|
+
var StyledWrapper$d = index$a(View)(function () {
|
|
7034
7064
|
return {};
|
|
7035
7065
|
});
|
|
7036
7066
|
var StyledItemWrapper$1 = index$a(View)(function (_ref) {
|
|
@@ -7083,7 +7113,7 @@ var StyledText$3 = index$a(Text$1)(function (_ref) {
|
|
|
7083
7113
|
});
|
|
7084
7114
|
});
|
|
7085
7115
|
|
|
7086
|
-
var _excluded$
|
|
7116
|
+
var _excluded$K = ["children", "fontSize", "fontWeight", "intent", "typeface", "allowFontScaling"];
|
|
7087
7117
|
var Text = function Text(_ref) {
|
|
7088
7118
|
var children = _ref.children,
|
|
7089
7119
|
_ref$fontSize = _ref.fontSize,
|
|
@@ -7096,7 +7126,7 @@ var Text = function Text(_ref) {
|
|
|
7096
7126
|
typeface = _ref$typeface === void 0 ? 'neutral' : _ref$typeface,
|
|
7097
7127
|
_ref$allowFontScaling = _ref.allowFontScaling,
|
|
7098
7128
|
allowFontScaling = _ref$allowFontScaling === void 0 ? false : _ref$allowFontScaling,
|
|
7099
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
7129
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$K);
|
|
7100
7130
|
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.');
|
|
7101
7131
|
return /*#__PURE__*/React__default.createElement(StyledText$3, _extends$1({}, nativeProps, {
|
|
7102
7132
|
themeFontSize: fontSize,
|
|
@@ -7126,7 +7156,7 @@ var StyledCaption = index$a(Text$1)(function (_ref) {
|
|
|
7126
7156
|
};
|
|
7127
7157
|
});
|
|
7128
7158
|
|
|
7129
|
-
var _excluded$
|
|
7159
|
+
var _excluded$J = ["children", "fontWeight", "intent", "allowFontScaling"];
|
|
7130
7160
|
var Caption = function Caption(_ref) {
|
|
7131
7161
|
var children = _ref.children,
|
|
7132
7162
|
_ref$fontWeight = _ref.fontWeight,
|
|
@@ -7135,7 +7165,7 @@ var Caption = function Caption(_ref) {
|
|
|
7135
7165
|
intent = _ref$intent === void 0 ? 'body' : _ref$intent,
|
|
7136
7166
|
_ref$allowFontScaling = _ref.allowFontScaling,
|
|
7137
7167
|
allowFontScaling = _ref$allowFontScaling === void 0 ? false : _ref$allowFontScaling,
|
|
7138
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
7168
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$J);
|
|
7139
7169
|
return /*#__PURE__*/React__default.createElement(StyledCaption, _extends$1({}, nativeProps, {
|
|
7140
7170
|
themeFontWeight: fontWeight,
|
|
7141
7171
|
themeIntent: intent,
|
|
@@ -7154,14 +7184,14 @@ var StyledLabel$1 = index$a(Text$1)(function (_ref) {
|
|
|
7154
7184
|
};
|
|
7155
7185
|
});
|
|
7156
7186
|
|
|
7157
|
-
var _excluded$
|
|
7187
|
+
var _excluded$I = ["children", "intent", "allowFontScaling"];
|
|
7158
7188
|
var Label = function Label(_ref) {
|
|
7159
7189
|
var children = _ref.children,
|
|
7160
7190
|
_ref$intent = _ref.intent,
|
|
7161
7191
|
intent = _ref$intent === void 0 ? 'body' : _ref$intent,
|
|
7162
7192
|
_ref$allowFontScaling = _ref.allowFontScaling,
|
|
7163
7193
|
allowFontScaling = _ref$allowFontScaling === void 0 ? false : _ref$allowFontScaling,
|
|
7164
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
7194
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$I);
|
|
7165
7195
|
return /*#__PURE__*/React__default.createElement(StyledLabel$1, _extends$1({}, nativeProps, {
|
|
7166
7196
|
themeIntent: intent,
|
|
7167
7197
|
allowFontScaling: allowFontScaling
|
|
@@ -7182,7 +7212,7 @@ var StyledTitle$1 = index$a(Text$1)(function (_ref) {
|
|
|
7182
7212
|
};
|
|
7183
7213
|
});
|
|
7184
7214
|
|
|
7185
|
-
var _excluded$
|
|
7215
|
+
var _excluded$H = ["children", "intent", "allowFontScaling", "level", "typeface"];
|
|
7186
7216
|
var Title = function Title(_ref) {
|
|
7187
7217
|
var children = _ref.children,
|
|
7188
7218
|
_ref$intent = _ref.intent,
|
|
@@ -7193,7 +7223,7 @@ var Title = function Title(_ref) {
|
|
|
7193
7223
|
level = _ref$level === void 0 ? 'h1' : _ref$level,
|
|
7194
7224
|
_ref$typeface = _ref.typeface,
|
|
7195
7225
|
typeface = _ref$typeface === void 0 ? 'neutral' : _ref$typeface,
|
|
7196
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
7226
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$H);
|
|
7197
7227
|
return /*#__PURE__*/React__default.createElement(StyledTitle$1, _extends$1({}, nativeProps, {
|
|
7198
7228
|
themeLevel: level,
|
|
7199
7229
|
themeTypeface: typeface,
|
|
@@ -7228,7 +7258,7 @@ var StyledBody$1 = index$a(Text$1)(function (_ref) {
|
|
|
7228
7258
|
};
|
|
7229
7259
|
});
|
|
7230
7260
|
|
|
7231
|
-
var _excluded$
|
|
7261
|
+
var _excluded$G = ["children", "intent", "allowFontScaling", "typeface", "variant"];
|
|
7232
7262
|
var Body = function Body(_ref) {
|
|
7233
7263
|
var children = _ref.children,
|
|
7234
7264
|
_ref$intent = _ref.intent,
|
|
@@ -7239,7 +7269,7 @@ var Body = function Body(_ref) {
|
|
|
7239
7269
|
typeface = _ref$typeface === void 0 ? 'neutral' : _ref$typeface,
|
|
7240
7270
|
_ref$variant = _ref.variant,
|
|
7241
7271
|
variant = _ref$variant === void 0 ? 'regular' : _ref$variant,
|
|
7242
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
7272
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$G);
|
|
7243
7273
|
return /*#__PURE__*/React__default.createElement(StyledBody$1, _extends$1({}, nativeProps, {
|
|
7244
7274
|
themeTypeface: typeface,
|
|
7245
7275
|
themeIntent: intent,
|
|
@@ -7257,7 +7287,7 @@ var Typography = {
|
|
|
7257
7287
|
};
|
|
7258
7288
|
|
|
7259
7289
|
// 🔴 DO NOT EDIT — This file is generated automatically.
|
|
7260
|
-
var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bolt', 'bookmark-added', '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', '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', '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', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane-up', 'plane', 'play-circle', 'print', 'raising-hands', 'reply-arrow', 'reply', 'reschedule', 'rostering', 'salary-sacrifice', 'save', 'schedule-send', 'schedule', 'search-person', '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', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', 'activate-outlined', 'add-credit-card-outlined', 'add-person-outlined', 'add-section-outlined', 'add-time-outlined', 'add', 'adjustment-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', '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-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calendar-dates-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', 'cup-outlined', 'dentistry-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', 'email-outlined', 'end-break-outlined', 'enter-arrow', 'envelope-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', '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-search-outlined', 'file-secured-outlined', 'file-statutory-outlined', 'file-verified-outlined', 'filter-outlined', 'folder-outlined', 'folder-user-outlined', 'form-outlined', 'funnel-filter-outline', 'goal-outlined', 'graph-outlined', 'hand-holding-user-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-active-outlined', 'home-outlined', 'id-card-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'job-search-outlined', 'leave-approval-outlined', 'link-1', 'link-2', 'list-outlined', 'live-help-outlined', 'local_mall_outlined', 'location-on-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'mail-outlined', 'map-outlined', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'multiple-folders-outlined', 'multiple-users-outlined', 'near-me-outlined', 'node-outlined', 'number-points', 'number', 'overview-outlined', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'print-outlined', 'propane-tank-outlined', 'qr-code-outlined', 'qualification-outlined', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'resume-outlined', 'return-arrow', 'rostering-outlined', 'safety-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'search-secured-outlined', 'send-outlined', 'share-1', 'share-2', 'share-outlined-2', 'share-outlined', 'shopping_basket_outlined', 'show-chart-outlined', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'smart-match-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', 'ticket-outlined', 'timesheet-outlined', 'timesheets-outlined', 'today-outlined', 'transfer', 'trash-bin-outlined', 'umbrela-outlined', 'unavailability-outlined', 'unavailable', 'underline', 'union-outlined', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'volunteer-outlined', 'wallet-outlined', 'wellness-outlined'];
|
|
7290
|
+
var IconList = ['activate', 'add-emoji', 'add-person', 'adjustment', 'alignment', 'antenna', 'archive', 'assignment-warning', 'bank', 'bell', 'billing', 'bolt', 'bookmark-added', '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-filled', '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', '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', 'payment-summary', 'pencil', 'phone', 'piggy-bank', 'plane-up', 'plane', 'play-circle', 'print', 'raising-hands', 'reply-arrow', 'reply', 'reschedule', 'rostering', 'salary-sacrifice', 'save', 'schedule-send', 'schedule', 'search-person', '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', 'timesheet', 'touch-id', 'trash-bin', 'unlock', 'user', 'video-1', 'video-2', 'wallet', 'warning', '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', '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-outlined', 'box-check-outlined', 'box-outlined', 'bullet-points', 'cake-outlined', 'calendar-dates-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', 'cup-outlined', 'dentistry-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', 'email-outlined', 'end-break-outlined', 'enter-arrow', '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', '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-search-outlined', 'file-secured-outlined', 'file-statutory-outlined', 'file-verified-outlined', 'filter-outlined', 'folder-outlined', 'folder-user-outlined', 'form-outlined', 'funnel-filter-outline', 'goal-outlined', 'graph-outlined', 'hand-holding-user-outlined', 'happy-sun-outlined', 'health-bag-outlined', 'heart-outlined', 'home-active-outlined', 'home-outlined', 'id-card-outlined', 'image-outlined', 'import-outlined', 'instapay-outlined', 'italic', 'job-search-outlined', 'leave-approval-outlined', 'link-1', 'link-2', 'list-outlined', 'live-help-outlined', 'local_mall_outlined', 'location-on-outlined', 'location-outlined', 'lock-outlined', 'locked-file-outlined', 'log-out', 'mail-outlined', 'map-outlined', 'media-content-outlined', 'menu-close', 'menu-expand', 'menu-fold-outlined', 'menu-unfold-outlined', 'moneybag-outlined', 'moon-outlined', 'more-horizontal', 'more-vertical', 'morning-outlined', 'multiple-folders-outlined', 'multiple-users-outlined', 'near-me-outlined', 'node-outlined', 'number-points', 'number', 'overview-outlined', 'payment-summary-outlined', 'payslip-outlined', 'pencil-outlined', 'percentage', 'phone-outlined', 'piggy-bank-outlined', 'plane-outlined', 'play-circle-outlined', 'print-outlined', 'propane-tank-outlined', 'qr-code-outlined', 'qualification-outlined', 're-assign', 'redeem', 'refresh', 'remove', 'reply-outlined', 'restart', 'resume-outlined', 'return-arrow', 'rostering-outlined', 'safety-outlined', 'save-outlined', 'schedule-outlined', 'search-outlined', 'search-secured-outlined', 'send-outlined', 'share-1', 'share-2', 'share-outlined-2', 'share-outlined', 'shopping_basket_outlined', 'show-chart-outlined', 'single-down-arrow', 'single-left-arrow', 'single-right-arrow', 'single-up-arrow', 'smart-match-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', 'ticket-outlined', 'timesheet-outlined', 'timesheets-outlined', 'today-outlined', 'transfer', 'trash-bin-outlined', 'umbrela-outlined', 'unavailability-outlined', 'unavailable', 'underline', 'union-outlined', 'unlock-outlined', 'upload-outlined', 'user-circle-outlined', 'user-gear-outlined', 'user-outlined', 'user-rectangle-outlined', 'video-1-outlined', 'video-2-outlined', 'volunteer-outlined', 'wallet-outlined', 'wellness-outlined'];
|
|
7261
7291
|
|
|
7262
7292
|
var activate = 59000;
|
|
7263
7293
|
var adjustment = 59003;
|
|
@@ -7281,74 +7311,74 @@ var contacts = 59050;
|
|
|
7281
7311
|
var diamond = 59052;
|
|
7282
7312
|
var directory = 59054;
|
|
7283
7313
|
var document$1 = 59055;
|
|
7284
|
-
var envelope =
|
|
7285
|
-
var exclude =
|
|
7286
|
-
var expense =
|
|
7287
|
-
var explore_nearby =
|
|
7288
|
-
var eye =
|
|
7289
|
-
var feed =
|
|
7290
|
-
var feedbacks =
|
|
7291
|
-
var file =
|
|
7292
|
-
var filter =
|
|
7293
|
-
var folder =
|
|
7294
|
-
var globe =
|
|
7295
|
-
var graph =
|
|
7296
|
-
var heart =
|
|
7297
|
-
var home =
|
|
7298
|
-
var image =
|
|
7299
|
-
var instapay =
|
|
7300
|
-
var list =
|
|
7301
|
-
var loading =
|
|
7302
|
-
var location =
|
|
7303
|
-
var lock =
|
|
7304
|
-
var menu =
|
|
7305
|
-
var moneybag =
|
|
7306
|
-
var moon =
|
|
7307
|
-
var node =
|
|
7308
|
-
var paperclip =
|
|
7309
|
-
var pencil =
|
|
7310
|
-
var phone =
|
|
7311
|
-
var plane =
|
|
7312
|
-
var print =
|
|
7313
|
-
var reply =
|
|
7314
|
-
var reschedule =
|
|
7315
|
-
var rostering =
|
|
7316
|
-
var save =
|
|
7317
|
-
var schedule =
|
|
7318
|
-
var send =
|
|
7319
|
-
var speaker =
|
|
7320
|
-
var star =
|
|
7321
|
-
var stopwatch =
|
|
7322
|
-
var suitcase =
|
|
7323
|
-
var surfing =
|
|
7324
|
-
var survey =
|
|
7325
|
-
var swag =
|
|
7326
|
-
var tag =
|
|
7327
|
-
var target =
|
|
7328
|
-
var teams =
|
|
7329
|
-
var timesheet =
|
|
7330
|
-
var unlock =
|
|
7331
|
-
var user =
|
|
7332
|
-
var wallet =
|
|
7333
|
-
var warning =
|
|
7334
|
-
var add =
|
|
7335
|
-
var bold =
|
|
7336
|
-
var cancel =
|
|
7337
|
-
var checkmark =
|
|
7338
|
-
var italic =
|
|
7339
|
-
var local_mall_outlined =
|
|
7340
|
-
var number =
|
|
7341
|
-
var percentage =
|
|
7342
|
-
var redeem =
|
|
7343
|
-
var refresh =
|
|
7344
|
-
var remove =
|
|
7345
|
-
var restart =
|
|
7346
|
-
var shopping_basket_outlined =
|
|
7347
|
-
var strikethrough =
|
|
7348
|
-
var sync =
|
|
7349
|
-
var transfer =
|
|
7350
|
-
var unavailable =
|
|
7351
|
-
var underline =
|
|
7314
|
+
var envelope = 59060;
|
|
7315
|
+
var exclude = 59061;
|
|
7316
|
+
var expense = 59063;
|
|
7317
|
+
var explore_nearby = 59064;
|
|
7318
|
+
var eye = 59067;
|
|
7319
|
+
var feed = 59071;
|
|
7320
|
+
var feedbacks = 59072;
|
|
7321
|
+
var file = 59090;
|
|
7322
|
+
var filter = 59091;
|
|
7323
|
+
var folder = 59093;
|
|
7324
|
+
var globe = 59103;
|
|
7325
|
+
var graph = 59105;
|
|
7326
|
+
var heart = 59108;
|
|
7327
|
+
var home = 59110;
|
|
7328
|
+
var image = 59111;
|
|
7329
|
+
var instapay = 59116;
|
|
7330
|
+
var list = 59117;
|
|
7331
|
+
var loading = 59119;
|
|
7332
|
+
var location = 59121;
|
|
7333
|
+
var lock = 59122;
|
|
7334
|
+
var menu = 59126;
|
|
7335
|
+
var moneybag = 59128;
|
|
7336
|
+
var moon = 59129;
|
|
7337
|
+
var node = 59133;
|
|
7338
|
+
var paperclip = 59135;
|
|
7339
|
+
var pencil = 59137;
|
|
7340
|
+
var phone = 59138;
|
|
7341
|
+
var plane = 59141;
|
|
7342
|
+
var print = 59143;
|
|
7343
|
+
var reply = 59146;
|
|
7344
|
+
var reschedule = 59147;
|
|
7345
|
+
var rostering = 59148;
|
|
7346
|
+
var save = 59150;
|
|
7347
|
+
var schedule = 59152;
|
|
7348
|
+
var send = 59154;
|
|
7349
|
+
var speaker = 59156;
|
|
7350
|
+
var star = 59161;
|
|
7351
|
+
var stopwatch = 59163;
|
|
7352
|
+
var suitcase = 59164;
|
|
7353
|
+
var surfing = 59165;
|
|
7354
|
+
var survey = 59166;
|
|
7355
|
+
var swag = 59171;
|
|
7356
|
+
var tag = 59174;
|
|
7357
|
+
var target = 59175;
|
|
7358
|
+
var teams = 59176;
|
|
7359
|
+
var timesheet = 59177;
|
|
7360
|
+
var unlock = 59180;
|
|
7361
|
+
var user = 59181;
|
|
7362
|
+
var wallet = 59184;
|
|
7363
|
+
var warning = 59185;
|
|
7364
|
+
var add = 59191;
|
|
7365
|
+
var bold = 59217;
|
|
7366
|
+
var cancel = 59231;
|
|
7367
|
+
var checkmark = 59237;
|
|
7368
|
+
var italic = 59326;
|
|
7369
|
+
var local_mall_outlined = 59333;
|
|
7370
|
+
var number = 59356;
|
|
7371
|
+
var percentage = 59361;
|
|
7372
|
+
var redeem = 59371;
|
|
7373
|
+
var refresh = 59372;
|
|
7374
|
+
var remove = 59373;
|
|
7375
|
+
var restart = 59375;
|
|
7376
|
+
var shopping_basket_outlined = 59389;
|
|
7377
|
+
var strikethrough = 59404;
|
|
7378
|
+
var sync = 59410;
|
|
7379
|
+
var transfer = 59418;
|
|
7380
|
+
var unavailable = 59422;
|
|
7381
|
+
var underline = 59423;
|
|
7352
7382
|
var glyphMap = {
|
|
7353
7383
|
activate: activate,
|
|
7354
7384
|
"add-emoji": 59001,
|
|
@@ -7407,381 +7437,385 @@ var glyphMap = {
|
|
|
7407
7437
|
directory: directory,
|
|
7408
7438
|
document: document$1,
|
|
7409
7439
|
"dollar-coin-shine": 59056,
|
|
7410
|
-
"
|
|
7411
|
-
"
|
|
7440
|
+
"dot-filled": 59057,
|
|
7441
|
+
"double-buildings": 59058,
|
|
7442
|
+
"edit-template": 59059,
|
|
7412
7443
|
envelope: envelope,
|
|
7413
7444
|
exclude: exclude,
|
|
7414
|
-
"expand-content":
|
|
7445
|
+
"expand-content": 59062,
|
|
7415
7446
|
expense: expense,
|
|
7416
7447
|
explore_nearby: explore_nearby,
|
|
7417
|
-
"eye-circle":
|
|
7418
|
-
"eye-invisible":
|
|
7448
|
+
"eye-circle": 59065,
|
|
7449
|
+
"eye-invisible": 59066,
|
|
7419
7450
|
eye: eye,
|
|
7420
|
-
"face-meh":
|
|
7421
|
-
"face-sad":
|
|
7422
|
-
"face-smiley":
|
|
7451
|
+
"face-meh": 59068,
|
|
7452
|
+
"face-sad": 59069,
|
|
7453
|
+
"face-smiley": 59070,
|
|
7423
7454
|
feed: feed,
|
|
7424
7455
|
feedbacks: feedbacks,
|
|
7425
|
-
"file-certified":
|
|
7426
|
-
"file-clone":
|
|
7427
|
-
"file-copy":
|
|
7428
|
-
"file-csv":
|
|
7429
|
-
"file-dispose":
|
|
7430
|
-
"file-doc":
|
|
7431
|
-
"file-excel":
|
|
7432
|
-
"file-export":
|
|
7433
|
-
"file-lock":
|
|
7434
|
-
"file-pdf":
|
|
7435
|
-
"file-powerpoint":
|
|
7436
|
-
"file-search":
|
|
7437
|
-
"file-secured":
|
|
7438
|
-
"file-sheets":
|
|
7439
|
-
"file-slide":
|
|
7440
|
-
"file-verified":
|
|
7441
|
-
"file-word":
|
|
7456
|
+
"file-certified": 59073,
|
|
7457
|
+
"file-clone": 59074,
|
|
7458
|
+
"file-copy": 59075,
|
|
7459
|
+
"file-csv": 59076,
|
|
7460
|
+
"file-dispose": 59077,
|
|
7461
|
+
"file-doc": 59078,
|
|
7462
|
+
"file-excel": 59079,
|
|
7463
|
+
"file-export": 59080,
|
|
7464
|
+
"file-lock": 59081,
|
|
7465
|
+
"file-pdf": 59082,
|
|
7466
|
+
"file-powerpoint": 59083,
|
|
7467
|
+
"file-search": 59084,
|
|
7468
|
+
"file-secured": 59085,
|
|
7469
|
+
"file-sheets": 59086,
|
|
7470
|
+
"file-slide": 59087,
|
|
7471
|
+
"file-verified": 59088,
|
|
7472
|
+
"file-word": 59089,
|
|
7442
7473
|
file: file,
|
|
7443
7474
|
filter: filter,
|
|
7444
|
-
"folder-user":
|
|
7475
|
+
"folder-user": 59092,
|
|
7445
7476
|
folder: folder,
|
|
7446
|
-
"format-bold":
|
|
7447
|
-
"format-heading1":
|
|
7448
|
-
"format-heading2":
|
|
7449
|
-
"format-italic":
|
|
7450
|
-
"format-list-bulleted":
|
|
7451
|
-
"format-list-numbered":
|
|
7452
|
-
"format-underlined":
|
|
7453
|
-
"funnel-filter":
|
|
7454
|
-
"global-dollar":
|
|
7477
|
+
"format-bold": 59094,
|
|
7478
|
+
"format-heading1": 59095,
|
|
7479
|
+
"format-heading2": 59096,
|
|
7480
|
+
"format-italic": 59097,
|
|
7481
|
+
"format-list-bulleted": 59098,
|
|
7482
|
+
"format-list-numbered": 59099,
|
|
7483
|
+
"format-underlined": 59100,
|
|
7484
|
+
"funnel-filter": 59101,
|
|
7485
|
+
"global-dollar": 59102,
|
|
7455
7486
|
globe: globe,
|
|
7456
|
-
"graduation-cap":
|
|
7487
|
+
"graduation-cap": 59104,
|
|
7457
7488
|
graph: graph,
|
|
7458
|
-
"happy-sun":
|
|
7459
|
-
"health-bag":
|
|
7489
|
+
"happy-sun": 59106,
|
|
7490
|
+
"health-bag": 59107,
|
|
7460
7491
|
heart: heart,
|
|
7461
|
-
"hero-points":
|
|
7492
|
+
"hero-points": 59109,
|
|
7462
7493
|
home: home,
|
|
7463
7494
|
image: image,
|
|
7464
|
-
"import":
|
|
7465
|
-
"incident-siren":
|
|
7466
|
-
"instapay-daily":
|
|
7467
|
-
"instapay-now":
|
|
7495
|
+
"import": 59112,
|
|
7496
|
+
"incident-siren": 59113,
|
|
7497
|
+
"instapay-daily": 59114,
|
|
7498
|
+
"instapay-now": 59115,
|
|
7468
7499
|
instapay: instapay,
|
|
7469
7500
|
list: list,
|
|
7470
|
-
"loading-2":
|
|
7501
|
+
"loading-2": 59118,
|
|
7471
7502
|
loading: loading,
|
|
7472
|
-
"location-on":
|
|
7503
|
+
"location-on": 59120,
|
|
7473
7504
|
location: location,
|
|
7474
7505
|
lock: lock,
|
|
7475
|
-
"looks-one":
|
|
7476
|
-
"looks-two":
|
|
7477
|
-
"media-content":
|
|
7506
|
+
"looks-one": 59123,
|
|
7507
|
+
"looks-two": 59124,
|
|
7508
|
+
"media-content": 59125,
|
|
7478
7509
|
menu: menu,
|
|
7479
|
-
"money-notes":
|
|
7510
|
+
"money-notes": 59127,
|
|
7480
7511
|
moneybag: moneybag,
|
|
7481
7512
|
moon: moon,
|
|
7482
|
-
"multiple-stars":
|
|
7483
|
-
"multiple-users":
|
|
7484
|
-
"near-me":
|
|
7513
|
+
"multiple-stars": 59130,
|
|
7514
|
+
"multiple-users": 59131,
|
|
7515
|
+
"near-me": 59132,
|
|
7485
7516
|
node: node,
|
|
7486
|
-
"open-folder":
|
|
7517
|
+
"open-folder": 59134,
|
|
7487
7518
|
paperclip: paperclip,
|
|
7488
|
-
"payment-summary":
|
|
7519
|
+
"payment-summary": 59136,
|
|
7489
7520
|
pencil: pencil,
|
|
7490
7521
|
phone: phone,
|
|
7491
|
-
"piggy-bank":
|
|
7492
|
-
"plane-up":
|
|
7522
|
+
"piggy-bank": 59139,
|
|
7523
|
+
"plane-up": 59140,
|
|
7493
7524
|
plane: plane,
|
|
7494
|
-
"play-circle":
|
|
7525
|
+
"play-circle": 59142,
|
|
7495
7526
|
print: print,
|
|
7496
|
-
"raising-hands":
|
|
7497
|
-
"reply-arrow":
|
|
7527
|
+
"raising-hands": 59144,
|
|
7528
|
+
"reply-arrow": 59145,
|
|
7498
7529
|
reply: reply,
|
|
7499
7530
|
reschedule: reschedule,
|
|
7500
7531
|
rostering: rostering,
|
|
7501
|
-
"salary-sacrifice":
|
|
7532
|
+
"salary-sacrifice": 59149,
|
|
7502
7533
|
save: save,
|
|
7503
|
-
"schedule-send":
|
|
7534
|
+
"schedule-send": 59151,
|
|
7504
7535
|
schedule: schedule,
|
|
7505
|
-
"search-person":
|
|
7536
|
+
"search-person": 59153,
|
|
7506
7537
|
send: send,
|
|
7507
|
-
"speaker-active":
|
|
7538
|
+
"speaker-active": 59155,
|
|
7508
7539
|
speaker: speaker,
|
|
7509
|
-
"star-award":
|
|
7510
|
-
"star-badge":
|
|
7511
|
-
"star-circle":
|
|
7512
|
-
"star-medal":
|
|
7540
|
+
"star-award": 59157,
|
|
7541
|
+
"star-badge": 59158,
|
|
7542
|
+
"star-circle": 59159,
|
|
7543
|
+
"star-medal": 59160,
|
|
7513
7544
|
star: star,
|
|
7514
|
-
"steps-circle":
|
|
7545
|
+
"steps-circle": 59162,
|
|
7515
7546
|
stopwatch: stopwatch,
|
|
7516
7547
|
suitcase: suitcase,
|
|
7517
7548
|
surfing: surfing,
|
|
7518
7549
|
survey: survey,
|
|
7519
|
-
"swag-pillar-benefit":
|
|
7520
|
-
"swag-pillar-career":
|
|
7521
|
-
"swag-pillar-money":
|
|
7522
|
-
"swag-pillar-work":
|
|
7550
|
+
"swag-pillar-benefit": 59167,
|
|
7551
|
+
"swag-pillar-career": 59168,
|
|
7552
|
+
"swag-pillar-money": 59169,
|
|
7553
|
+
"swag-pillar-work": 59170,
|
|
7523
7554
|
swag: swag,
|
|
7524
|
-
"swipe-right":
|
|
7525
|
-
"switch":
|
|
7555
|
+
"swipe-right": 59172,
|
|
7556
|
+
"switch": 59173,
|
|
7526
7557
|
tag: tag,
|
|
7527
7558
|
target: target,
|
|
7528
7559
|
teams: teams,
|
|
7529
7560
|
timesheet: timesheet,
|
|
7530
|
-
"touch-id":
|
|
7531
|
-
"trash-bin":
|
|
7561
|
+
"touch-id": 59178,
|
|
7562
|
+
"trash-bin": 59179,
|
|
7532
7563
|
unlock: unlock,
|
|
7533
7564
|
user: user,
|
|
7534
|
-
"video-1":
|
|
7535
|
-
"video-2":
|
|
7565
|
+
"video-1": 59182,
|
|
7566
|
+
"video-2": 59183,
|
|
7536
7567
|
wallet: wallet,
|
|
7537
7568
|
warning: warning,
|
|
7538
|
-
"activate-outlined":
|
|
7539
|
-
"add-credit-card-outlined":
|
|
7540
|
-
"add-person-outlined":
|
|
7541
|
-
"add-section-outlined":
|
|
7542
|
-
"add-time-outlined":
|
|
7569
|
+
"activate-outlined": 59186,
|
|
7570
|
+
"add-credit-card-outlined": 59187,
|
|
7571
|
+
"add-person-outlined": 59188,
|
|
7572
|
+
"add-section-outlined": 59189,
|
|
7573
|
+
"add-time-outlined": 59190,
|
|
7543
7574
|
add: add,
|
|
7544
|
-
"adjustment-outlined":
|
|
7545
|
-
"
|
|
7546
|
-
"
|
|
7547
|
-
"alignment-outlined":
|
|
7548
|
-
"
|
|
7549
|
-
"
|
|
7550
|
-
"
|
|
7551
|
-
"arrow-
|
|
7552
|
-
"arrow-
|
|
7553
|
-
"arrow-
|
|
7554
|
-
"arrow-
|
|
7555
|
-
"arrow-
|
|
7556
|
-
"arrow-
|
|
7557
|
-
"arrow-
|
|
7558
|
-
"
|
|
7559
|
-
"
|
|
7560
|
-
"
|
|
7561
|
-
"
|
|
7562
|
-
"
|
|
7563
|
-
"bell-outlined":
|
|
7564
|
-
"bell-
|
|
7565
|
-
"
|
|
7566
|
-
"
|
|
7567
|
-
"
|
|
7575
|
+
"adjustment-outlined": 59192,
|
|
7576
|
+
"afternoon-outlined": 59193,
|
|
7577
|
+
"ai-outlined": 59194,
|
|
7578
|
+
"alignment-2-outlined": 59195,
|
|
7579
|
+
"alignment-outlined": 59196,
|
|
7580
|
+
"all-caps": 59197,
|
|
7581
|
+
"application-outlined": 59198,
|
|
7582
|
+
"arrow-down": 59199,
|
|
7583
|
+
"arrow-downwards": 59200,
|
|
7584
|
+
"arrow-left": 59201,
|
|
7585
|
+
"arrow-leftwards": 59202,
|
|
7586
|
+
"arrow-right": 59203,
|
|
7587
|
+
"arrow-rightwards": 59204,
|
|
7588
|
+
"arrow-up": 59205,
|
|
7589
|
+
"arrow-upwards": 59206,
|
|
7590
|
+
"article-outlined": 59207,
|
|
7591
|
+
"at-sign": 59208,
|
|
7592
|
+
"auto-graph-outlined": 59209,
|
|
7593
|
+
"beer-outlined": 59210,
|
|
7594
|
+
"bell-active-outlined": 59211,
|
|
7595
|
+
"bell-outlined": 59212,
|
|
7596
|
+
"bell-slash-outlined": 59213,
|
|
7597
|
+
"bill-management-outlined": 59214,
|
|
7598
|
+
"billing-outlined": 59215,
|
|
7599
|
+
"body-outlined": 59216,
|
|
7568
7600
|
bold: bold,
|
|
7569
|
-
"bolt-outlined":
|
|
7570
|
-
"book-outlined":
|
|
7571
|
-
"bookmark-added-outlined":
|
|
7572
|
-
"bookmark-outlined":
|
|
7573
|
-
"box-check-outlined":
|
|
7574
|
-
"box-outlined":
|
|
7575
|
-
"bullet-points":
|
|
7576
|
-
"cake-outlined":
|
|
7577
|
-
"calendar-dates-outlined":
|
|
7578
|
-
"calendar-star-outlined":
|
|
7579
|
-
"call-outlined":
|
|
7580
|
-
"call-split-outlined":
|
|
7581
|
-
"camera-outlined":
|
|
7601
|
+
"bolt-outlined": 59218,
|
|
7602
|
+
"book-outlined": 59219,
|
|
7603
|
+
"bookmark-added-outlined": 59220,
|
|
7604
|
+
"bookmark-outlined": 59221,
|
|
7605
|
+
"box-check-outlined": 59222,
|
|
7606
|
+
"box-outlined": 59223,
|
|
7607
|
+
"bullet-points": 59224,
|
|
7608
|
+
"cake-outlined": 59225,
|
|
7609
|
+
"calendar-dates-outlined": 59226,
|
|
7610
|
+
"calendar-star-outlined": 59227,
|
|
7611
|
+
"call-outlined": 59228,
|
|
7612
|
+
"call-split-outlined": 59229,
|
|
7613
|
+
"camera-outlined": 59230,
|
|
7582
7614
|
cancel: cancel,
|
|
7583
|
-
"car-forward-outlined":
|
|
7584
|
-
"cashback-outlined":
|
|
7585
|
-
"charging-station-outlined":
|
|
7586
|
-
"chat-bubble-outlined":
|
|
7587
|
-
"chat-unread-outlined":
|
|
7615
|
+
"car-forward-outlined": 59232,
|
|
7616
|
+
"cashback-outlined": 59233,
|
|
7617
|
+
"charging-station-outlined": 59234,
|
|
7618
|
+
"chat-bubble-outlined": 59235,
|
|
7619
|
+
"chat-unread-outlined": 59236,
|
|
7588
7620
|
checkmark: checkmark,
|
|
7589
|
-
"circle-add-outlined":
|
|
7590
|
-
"circle-cancel-outlined":
|
|
7591
|
-
"circle-down-outlined":
|
|
7592
|
-
"circle-info-outlined":
|
|
7593
|
-
"circle-left-outlined":
|
|
7594
|
-
"circle-ok-outlined":
|
|
7595
|
-
"circle-question-outlined":
|
|
7596
|
-
"circle-remove-outlined":
|
|
7597
|
-
"circle-right-outlined":
|
|
7598
|
-
"circle-up-outlined":
|
|
7599
|
-
"circle-warning-outlined":
|
|
7600
|
-
"clock-2-outlined":
|
|
7601
|
-
"clock-in-outlined":
|
|
7602
|
-
"clock-out-outlined":
|
|
7603
|
-
"clock-outlined":
|
|
7604
|
-
"cog-outlined":
|
|
7605
|
-
"coin-outlined":
|
|
7606
|
-
"coin-super-outlined":
|
|
7607
|
-
"comment-outlined":
|
|
7608
|
-
"contacts-outlined":
|
|
7609
|
-
"contacts-user-outlined":
|
|
7610
|
-
"credit-card-outlined":
|
|
7611
|
-
"cup-outlined":
|
|
7612
|
-
"dentistry-outlined":
|
|
7613
|
-
"direction-arrows-outlined":
|
|
7614
|
-
"directory-outlined":
|
|
7615
|
-
"document-outlined":
|
|
7616
|
-
"dollar-box-outlined":
|
|
7617
|
-
"dollar-card-outlined":
|
|
7618
|
-
"dollar-coin-shine-outlined":
|
|
7619
|
-
"dollar-credit-card-outlined":
|
|
7620
|
-
"dollar-sign":
|
|
7621
|
-
"double-buildings-outlined":
|
|
7622
|
-
"double-left-arrows":
|
|
7623
|
-
"double-right-arrows":
|
|
7624
|
-
"download-box-outlined":
|
|
7625
|
-
"download-outlined":
|
|
7626
|
-
"edit-template-outlined":
|
|
7627
|
-
"email-outlined":
|
|
7628
|
-
"end-break-outlined":
|
|
7629
|
-
"enter-arrow":
|
|
7630
|
-
"envelope-outlined":
|
|
7631
|
-
"
|
|
7632
|
-
"expense-outlined":
|
|
7633
|
-
"
|
|
7634
|
-
"
|
|
7635
|
-
"
|
|
7636
|
-
"
|
|
7637
|
-
"eye-outlined":
|
|
7638
|
-
"
|
|
7639
|
-
"face-
|
|
7640
|
-
"face-
|
|
7641
|
-
"face-
|
|
7642
|
-
"face-
|
|
7643
|
-
"
|
|
7644
|
-
"
|
|
7645
|
-
"
|
|
7646
|
-
"file-
|
|
7647
|
-
"file-
|
|
7648
|
-
"file-
|
|
7649
|
-
"file-
|
|
7650
|
-
"file-dollar-outlined":
|
|
7651
|
-
"file-
|
|
7652
|
-
"file-
|
|
7653
|
-
"file-
|
|
7654
|
-
"file-outlined":
|
|
7655
|
-
"file-
|
|
7656
|
-
"file-
|
|
7657
|
-
"file-
|
|
7658
|
-
"file-
|
|
7659
|
-
"
|
|
7660
|
-
"
|
|
7661
|
-
"folder-
|
|
7662
|
-
"
|
|
7663
|
-
"
|
|
7664
|
-
"
|
|
7665
|
-
"
|
|
7666
|
-
"
|
|
7667
|
-
"
|
|
7668
|
-
"
|
|
7669
|
-
"
|
|
7670
|
-
"
|
|
7671
|
-
"home-outlined":
|
|
7672
|
-
"
|
|
7673
|
-
"
|
|
7674
|
-
"
|
|
7675
|
-
"
|
|
7621
|
+
"circle-add-outlined": 59238,
|
|
7622
|
+
"circle-cancel-outlined": 59239,
|
|
7623
|
+
"circle-down-outlined": 59240,
|
|
7624
|
+
"circle-info-outlined": 59241,
|
|
7625
|
+
"circle-left-outlined": 59242,
|
|
7626
|
+
"circle-ok-outlined": 59243,
|
|
7627
|
+
"circle-question-outlined": 59244,
|
|
7628
|
+
"circle-remove-outlined": 59245,
|
|
7629
|
+
"circle-right-outlined": 59246,
|
|
7630
|
+
"circle-up-outlined": 59247,
|
|
7631
|
+
"circle-warning-outlined": 59248,
|
|
7632
|
+
"clock-2-outlined": 59249,
|
|
7633
|
+
"clock-in-outlined": 59250,
|
|
7634
|
+
"clock-out-outlined": 59251,
|
|
7635
|
+
"clock-outlined": 59252,
|
|
7636
|
+
"cog-outlined": 59253,
|
|
7637
|
+
"coin-outlined": 59254,
|
|
7638
|
+
"coin-super-outlined": 59255,
|
|
7639
|
+
"comment-outlined": 59256,
|
|
7640
|
+
"contacts-outlined": 59257,
|
|
7641
|
+
"contacts-user-outlined": 59258,
|
|
7642
|
+
"credit-card-outlined": 59259,
|
|
7643
|
+
"cup-outlined": 59260,
|
|
7644
|
+
"dentistry-outlined": 59261,
|
|
7645
|
+
"direction-arrows-outlined": 59262,
|
|
7646
|
+
"directory-outlined": 59263,
|
|
7647
|
+
"document-outlined": 59264,
|
|
7648
|
+
"dollar-box-outlined": 59265,
|
|
7649
|
+
"dollar-card-outlined": 59266,
|
|
7650
|
+
"dollar-coin-shine-outlined": 59267,
|
|
7651
|
+
"dollar-credit-card-outlined": 59268,
|
|
7652
|
+
"dollar-sign": 59269,
|
|
7653
|
+
"double-buildings-outlined": 59270,
|
|
7654
|
+
"double-left-arrows": 59271,
|
|
7655
|
+
"double-right-arrows": 59272,
|
|
7656
|
+
"download-box-outlined": 59273,
|
|
7657
|
+
"download-outlined": 59274,
|
|
7658
|
+
"edit-template-outlined": 59275,
|
|
7659
|
+
"email-outlined": 59276,
|
|
7660
|
+
"end-break-outlined": 59277,
|
|
7661
|
+
"enter-arrow": 59278,
|
|
7662
|
+
"envelope-outlined": 59279,
|
|
7663
|
+
"evening-outlined": 59280,
|
|
7664
|
+
"expense-approval-outlined": 59281,
|
|
7665
|
+
"expense-outlined": 59282,
|
|
7666
|
+
"explore-outlined": 59283,
|
|
7667
|
+
"extension-outlined": 59284,
|
|
7668
|
+
"external-link": 59285,
|
|
7669
|
+
"eye-invisible-outlined": 59286,
|
|
7670
|
+
"eye-outlined": 59287,
|
|
7671
|
+
"face-id": 59288,
|
|
7672
|
+
"face-meh-outlined": 59289,
|
|
7673
|
+
"face-open-smiley-outlined": 59290,
|
|
7674
|
+
"face-sad-outlined": 59291,
|
|
7675
|
+
"face-smiley-outlined": 59292,
|
|
7676
|
+
"fastfood-outlined": 59293,
|
|
7677
|
+
"feed-outlined": 59294,
|
|
7678
|
+
"file-certified-outlined": 59295,
|
|
7679
|
+
"file-clone-outlined": 59296,
|
|
7680
|
+
"file-copy-outlined": 59297,
|
|
7681
|
+
"file-dispose-outlined": 59298,
|
|
7682
|
+
"file-dollar-certified-outlined": 59299,
|
|
7683
|
+
"file-dollar-outlined": 59300,
|
|
7684
|
+
"file-download-outlined": 59301,
|
|
7685
|
+
"file-export-outlined": 59302,
|
|
7686
|
+
"file-lock-outlined": 59303,
|
|
7687
|
+
"file-outlined": 59304,
|
|
7688
|
+
"file-search-outlined": 59305,
|
|
7689
|
+
"file-secured-outlined": 59306,
|
|
7690
|
+
"file-statutory-outlined": 59307,
|
|
7691
|
+
"file-verified-outlined": 59308,
|
|
7692
|
+
"filter-outlined": 59309,
|
|
7693
|
+
"folder-outlined": 59310,
|
|
7694
|
+
"folder-user-outlined": 59311,
|
|
7695
|
+
"form-outlined": 59312,
|
|
7696
|
+
"funnel-filter-outline": 59313,
|
|
7697
|
+
"goal-outlined": 59314,
|
|
7698
|
+
"graph-outlined": 59315,
|
|
7699
|
+
"hand-holding-user-outlined": 59316,
|
|
7700
|
+
"happy-sun-outlined": 59317,
|
|
7701
|
+
"health-bag-outlined": 59318,
|
|
7702
|
+
"heart-outlined": 59319,
|
|
7703
|
+
"home-active-outlined": 59320,
|
|
7704
|
+
"home-outlined": 59321,
|
|
7705
|
+
"id-card-outlined": 59322,
|
|
7706
|
+
"image-outlined": 59323,
|
|
7707
|
+
"import-outlined": 59324,
|
|
7708
|
+
"instapay-outlined": 59325,
|
|
7676
7709
|
italic: italic,
|
|
7677
|
-
"job-search-outlined":
|
|
7678
|
-
"leave-approval-outlined":
|
|
7679
|
-
"link-1":
|
|
7680
|
-
"link-2":
|
|
7681
|
-
"list-outlined":
|
|
7682
|
-
"live-help-outlined":
|
|
7710
|
+
"job-search-outlined": 59327,
|
|
7711
|
+
"leave-approval-outlined": 59328,
|
|
7712
|
+
"link-1": 59329,
|
|
7713
|
+
"link-2": 59330,
|
|
7714
|
+
"list-outlined": 59331,
|
|
7715
|
+
"live-help-outlined": 59332,
|
|
7683
7716
|
local_mall_outlined: local_mall_outlined,
|
|
7684
|
-
"location-on-outlined":
|
|
7685
|
-
"location-outlined":
|
|
7686
|
-
"lock-outlined":
|
|
7687
|
-
"locked-file-outlined":
|
|
7688
|
-
"log-out":
|
|
7689
|
-
"mail-outlined":
|
|
7690
|
-
"map-outlined":
|
|
7691
|
-
"media-content-outlined":
|
|
7692
|
-
"menu-close":
|
|
7693
|
-
"menu-expand":
|
|
7694
|
-
"menu-fold-outlined":
|
|
7695
|
-
"menu-unfold-outlined":
|
|
7696
|
-
"moneybag-outlined":
|
|
7697
|
-
"moon-outlined":
|
|
7698
|
-
"more-horizontal":
|
|
7699
|
-
"more-vertical":
|
|
7700
|
-
"
|
|
7701
|
-
"multiple-
|
|
7702
|
-
"
|
|
7703
|
-
"
|
|
7704
|
-
"
|
|
7717
|
+
"location-on-outlined": 59334,
|
|
7718
|
+
"location-outlined": 59335,
|
|
7719
|
+
"lock-outlined": 59336,
|
|
7720
|
+
"locked-file-outlined": 59337,
|
|
7721
|
+
"log-out": 59338,
|
|
7722
|
+
"mail-outlined": 59339,
|
|
7723
|
+
"map-outlined": 59340,
|
|
7724
|
+
"media-content-outlined": 59341,
|
|
7725
|
+
"menu-close": 59342,
|
|
7726
|
+
"menu-expand": 59343,
|
|
7727
|
+
"menu-fold-outlined": 59344,
|
|
7728
|
+
"menu-unfold-outlined": 59345,
|
|
7729
|
+
"moneybag-outlined": 59346,
|
|
7730
|
+
"moon-outlined": 59347,
|
|
7731
|
+
"more-horizontal": 59348,
|
|
7732
|
+
"more-vertical": 59349,
|
|
7733
|
+
"morning-outlined": 59350,
|
|
7734
|
+
"multiple-folders-outlined": 59351,
|
|
7735
|
+
"multiple-users-outlined": 59352,
|
|
7736
|
+
"near-me-outlined": 59353,
|
|
7737
|
+
"node-outlined": 59354,
|
|
7738
|
+
"number-points": 59355,
|
|
7705
7739
|
number: number,
|
|
7706
|
-
"overview-outlined":
|
|
7707
|
-
"payment-summary-outlined":
|
|
7708
|
-
"payslip-outlined":
|
|
7709
|
-
"pencil-outlined":
|
|
7740
|
+
"overview-outlined": 59357,
|
|
7741
|
+
"payment-summary-outlined": 59358,
|
|
7742
|
+
"payslip-outlined": 59359,
|
|
7743
|
+
"pencil-outlined": 59360,
|
|
7710
7744
|
percentage: percentage,
|
|
7711
|
-
"phone-outlined":
|
|
7712
|
-
"piggy-bank-outlined":
|
|
7713
|
-
"plane-outlined":
|
|
7714
|
-
"play-circle-outlined":
|
|
7715
|
-
"print-outlined":
|
|
7716
|
-
"propane-tank-outlined":
|
|
7717
|
-
"qr-code-outlined":
|
|
7718
|
-
"qualification-outlined":
|
|
7719
|
-
"re-assign":
|
|
7745
|
+
"phone-outlined": 59362,
|
|
7746
|
+
"piggy-bank-outlined": 59363,
|
|
7747
|
+
"plane-outlined": 59364,
|
|
7748
|
+
"play-circle-outlined": 59365,
|
|
7749
|
+
"print-outlined": 59366,
|
|
7750
|
+
"propane-tank-outlined": 59367,
|
|
7751
|
+
"qr-code-outlined": 59368,
|
|
7752
|
+
"qualification-outlined": 59369,
|
|
7753
|
+
"re-assign": 59370,
|
|
7720
7754
|
redeem: redeem,
|
|
7721
7755
|
refresh: refresh,
|
|
7722
7756
|
remove: remove,
|
|
7723
|
-
"reply-outlined":
|
|
7757
|
+
"reply-outlined": 59374,
|
|
7724
7758
|
restart: restart,
|
|
7725
|
-
"resume-outlined":
|
|
7726
|
-
"return-arrow":
|
|
7727
|
-
"rostering-outlined":
|
|
7728
|
-
"safety-outlined":
|
|
7729
|
-
"save-outlined":
|
|
7730
|
-
"schedule-outlined":
|
|
7731
|
-
"search-outlined":
|
|
7732
|
-
"search-secured-outlined":
|
|
7733
|
-
"send-outlined":
|
|
7734
|
-
"share-1":
|
|
7735
|
-
"share-2":
|
|
7736
|
-
"share-outlined-2":
|
|
7737
|
-
"share-outlined":
|
|
7759
|
+
"resume-outlined": 59376,
|
|
7760
|
+
"return-arrow": 59377,
|
|
7761
|
+
"rostering-outlined": 59378,
|
|
7762
|
+
"safety-outlined": 59379,
|
|
7763
|
+
"save-outlined": 59380,
|
|
7764
|
+
"schedule-outlined": 59381,
|
|
7765
|
+
"search-outlined": 59382,
|
|
7766
|
+
"search-secured-outlined": 59383,
|
|
7767
|
+
"send-outlined": 59384,
|
|
7768
|
+
"share-1": 59385,
|
|
7769
|
+
"share-2": 59386,
|
|
7770
|
+
"share-outlined-2": 59387,
|
|
7771
|
+
"share-outlined": 59388,
|
|
7738
7772
|
shopping_basket_outlined: shopping_basket_outlined,
|
|
7739
|
-
"show-chart-outlined":
|
|
7740
|
-
"single-down-arrow":
|
|
7741
|
-
"single-left-arrow":
|
|
7742
|
-
"single-right-arrow":
|
|
7743
|
-
"single-up-arrow":
|
|
7744
|
-
"smart-match-outlined":
|
|
7745
|
-
"sparkle-outlined":
|
|
7746
|
-
"speaker-active-outlined":
|
|
7747
|
-
"speaker-outlined":
|
|
7748
|
-
"star-circle-outlined":
|
|
7749
|
-
"star-outlined":
|
|
7750
|
-
"start-break-outlined":
|
|
7751
|
-
"stash-outlined":
|
|
7752
|
-
"stopwatch-outlined":
|
|
7773
|
+
"show-chart-outlined": 59390,
|
|
7774
|
+
"single-down-arrow": 59391,
|
|
7775
|
+
"single-left-arrow": 59392,
|
|
7776
|
+
"single-right-arrow": 59393,
|
|
7777
|
+
"single-up-arrow": 59394,
|
|
7778
|
+
"smart-match-outlined": 59395,
|
|
7779
|
+
"sparkle-outlined": 59396,
|
|
7780
|
+
"speaker-active-outlined": 59397,
|
|
7781
|
+
"speaker-outlined": 59398,
|
|
7782
|
+
"star-circle-outlined": 59399,
|
|
7783
|
+
"star-outlined": 59400,
|
|
7784
|
+
"start-break-outlined": 59401,
|
|
7785
|
+
"stash-outlined": 59402,
|
|
7786
|
+
"stopwatch-outlined": 59403,
|
|
7753
7787
|
strikethrough: strikethrough,
|
|
7754
|
-
"styler-outlined":
|
|
7755
|
-
"suitcase-clock-outlined":
|
|
7756
|
-
"suitcase-outlined":
|
|
7757
|
-
"survey-outlined":
|
|
7758
|
-
"switch-outlined":
|
|
7788
|
+
"styler-outlined": 59405,
|
|
7789
|
+
"suitcase-clock-outlined": 59406,
|
|
7790
|
+
"suitcase-outlined": 59407,
|
|
7791
|
+
"survey-outlined": 59408,
|
|
7792
|
+
"switch-outlined": 59409,
|
|
7759
7793
|
sync: sync,
|
|
7760
|
-
"tag-outlined":
|
|
7761
|
-
"target-outlined":
|
|
7762
|
-
"tennis-outlined":
|
|
7763
|
-
"ticket-outlined":
|
|
7764
|
-
"timesheet-outlined":
|
|
7765
|
-
"timesheets-outlined":
|
|
7766
|
-
"today-outlined":
|
|
7794
|
+
"tag-outlined": 59411,
|
|
7795
|
+
"target-outlined": 59412,
|
|
7796
|
+
"tennis-outlined": 59413,
|
|
7797
|
+
"ticket-outlined": 59414,
|
|
7798
|
+
"timesheet-outlined": 59415,
|
|
7799
|
+
"timesheets-outlined": 59416,
|
|
7800
|
+
"today-outlined": 59417,
|
|
7767
7801
|
transfer: transfer,
|
|
7768
|
-
"trash-bin-outlined":
|
|
7769
|
-
"umbrela-outlined":
|
|
7770
|
-
"unavailability-outlined":
|
|
7802
|
+
"trash-bin-outlined": 59419,
|
|
7803
|
+
"umbrela-outlined": 59420,
|
|
7804
|
+
"unavailability-outlined": 59421,
|
|
7771
7805
|
unavailable: unavailable,
|
|
7772
7806
|
underline: underline,
|
|
7773
|
-
"union-outlined":
|
|
7774
|
-
"unlock-outlined":
|
|
7775
|
-
"upload-outlined":
|
|
7776
|
-
"user-circle-outlined":
|
|
7777
|
-
"user-gear-outlined":
|
|
7778
|
-
"user-outlined":
|
|
7779
|
-
"user-rectangle-outlined":
|
|
7780
|
-
"video-1-outlined":
|
|
7781
|
-
"video-2-outlined":
|
|
7782
|
-
"volunteer-outlined":
|
|
7783
|
-
"wallet-outlined":
|
|
7784
|
-
"wellness-outlined":
|
|
7807
|
+
"union-outlined": 59424,
|
|
7808
|
+
"unlock-outlined": 59425,
|
|
7809
|
+
"upload-outlined": 59426,
|
|
7810
|
+
"user-circle-outlined": 59427,
|
|
7811
|
+
"user-gear-outlined": 59428,
|
|
7812
|
+
"user-outlined": 59429,
|
|
7813
|
+
"user-rectangle-outlined": 59430,
|
|
7814
|
+
"video-1-outlined": 59431,
|
|
7815
|
+
"video-2-outlined": 59432,
|
|
7816
|
+
"volunteer-outlined": 59433,
|
|
7817
|
+
"wallet-outlined": 59434,
|
|
7818
|
+
"wellness-outlined": 59435
|
|
7785
7819
|
};
|
|
7786
7820
|
|
|
7787
7821
|
var HeroIcon = createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
|
|
@@ -7807,10 +7841,10 @@ var StyledHeroIcon = index$a(HeroIcon)(function (_ref) {
|
|
|
7807
7841
|
};
|
|
7808
7842
|
});
|
|
7809
7843
|
|
|
7810
|
-
var _excluded$
|
|
7844
|
+
var _excluded$F = ["style"];
|
|
7811
7845
|
var AnimatedIcon = function AnimatedIcon(_ref) {
|
|
7812
7846
|
var style = _ref.style,
|
|
7813
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
7847
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$F);
|
|
7814
7848
|
var rotateAnimation = useRef(new Animated.Value(0));
|
|
7815
7849
|
useEffect(function () {
|
|
7816
7850
|
var animation = Animated.loop(Animated.timing(rotateAnimation.current, {
|
|
@@ -7915,7 +7949,7 @@ var AccordionItem = function AccordionItem(_ref) {
|
|
|
7915
7949
|
}, content));
|
|
7916
7950
|
};
|
|
7917
7951
|
|
|
7918
|
-
var _excluded$
|
|
7952
|
+
var _excluded$E = ["key"];
|
|
7919
7953
|
var Accordion = function Accordion(_ref) {
|
|
7920
7954
|
var items = _ref.items,
|
|
7921
7955
|
activeItemKey = _ref.activeItemKey,
|
|
@@ -7931,12 +7965,12 @@ var Accordion = function Accordion(_ref) {
|
|
|
7931
7965
|
_usePropsOrInternalSt2 = _slicedToArray(_usePropsOrInternalSt, 2),
|
|
7932
7966
|
_activeItemKey = _usePropsOrInternalSt2[0],
|
|
7933
7967
|
_onItemPress = _usePropsOrInternalSt2[1];
|
|
7934
|
-
return /*#__PURE__*/React__default.createElement(StyledWrapper$
|
|
7968
|
+
return /*#__PURE__*/React__default.createElement(StyledWrapper$d, {
|
|
7935
7969
|
style: style,
|
|
7936
7970
|
testID: testID
|
|
7937
7971
|
}, items.map(function (_ref2, index) {
|
|
7938
7972
|
var key = _ref2.key,
|
|
7939
|
-
props = _objectWithoutProperties(_ref2, _excluded$
|
|
7973
|
+
props = _objectWithoutProperties(_ref2, _excluded$E);
|
|
7940
7974
|
var open = _activeItemKey === key;
|
|
7941
7975
|
return /*#__PURE__*/React__default.createElement(React__default.Fragment, {
|
|
7942
7976
|
key: key
|
|
@@ -7971,7 +8005,7 @@ var IconContainer$1 = index$a(View)(function (_ref2) {
|
|
|
7971
8005
|
paddingLeft: theme.__hd__.alert.space.iconLeftPadding
|
|
7972
8006
|
};
|
|
7973
8007
|
});
|
|
7974
|
-
var StyledIcon$
|
|
8008
|
+
var StyledIcon$3 = index$a(Icon)(function (_ref3) {
|
|
7975
8009
|
var theme = _ref3.theme,
|
|
7976
8010
|
themeIntent = _ref3.themeIntent;
|
|
7977
8011
|
return {
|
|
@@ -8030,7 +8064,7 @@ var AlertIcon = function AlertIcon(_ref) {
|
|
|
8030
8064
|
intent = _ref.intent;
|
|
8031
8065
|
return icon ? /*#__PURE__*/React__default.createElement(IconContainer$1, {
|
|
8032
8066
|
testID: "alert-left-icon"
|
|
8033
|
-
}, /*#__PURE__*/React__default.createElement(StyledIcon$
|
|
8067
|
+
}, /*#__PURE__*/React__default.createElement(StyledIcon$3, {
|
|
8034
8068
|
icon: icon,
|
|
8035
8069
|
size: "small",
|
|
8036
8070
|
themeIntent: intent
|
|
@@ -8071,7 +8105,7 @@ var Alert = function Alert(_ref2) {
|
|
|
8071
8105
|
}, typeof actionLabel === 'string' ? /*#__PURE__*/React__default.createElement(StyledBody, {
|
|
8072
8106
|
variant: "small-bold",
|
|
8073
8107
|
themeIntent: intent
|
|
8074
|
-
}, actionLabel) : /*#__PURE__*/React__default.createElement(StyledIcon$
|
|
8108
|
+
}, actionLabel) : /*#__PURE__*/React__default.createElement(StyledIcon$3, {
|
|
8075
8109
|
icon: "cancel",
|
|
8076
8110
|
size: "small",
|
|
8077
8111
|
themeIntent: intent
|
|
@@ -8146,7 +8180,7 @@ var Attachment = function Attachment(_ref) {
|
|
|
8146
8180
|
})) : null);
|
|
8147
8181
|
};
|
|
8148
8182
|
|
|
8149
|
-
var StyledWrapper$
|
|
8183
|
+
var StyledWrapper$c = index$a(TouchableOpacity)(function (_ref) {
|
|
8150
8184
|
var themeSize = _ref.themeSize,
|
|
8151
8185
|
themeIntent = _ref.themeIntent,
|
|
8152
8186
|
theme = _ref.theme;
|
|
@@ -8215,7 +8249,7 @@ var Avatar = function Avatar(_ref) {
|
|
|
8215
8249
|
hasImageError = _useState2[0],
|
|
8216
8250
|
setHasImageError = _useState2[1];
|
|
8217
8251
|
if (title === undefined && source === undefined) return null;
|
|
8218
|
-
return /*#__PURE__*/React__default.createElement(StyledWrapper$
|
|
8252
|
+
return /*#__PURE__*/React__default.createElement(StyledWrapper$c, {
|
|
8219
8253
|
testID: testID,
|
|
8220
8254
|
onPress: onPress,
|
|
8221
8255
|
disabled: onPress === undefined,
|
|
@@ -8430,7 +8464,7 @@ var borderWidths = {
|
|
|
8430
8464
|
var config = _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({}, colors), space), radii), borderWidths);
|
|
8431
8465
|
var flexPropsKey = ['alignContent', 'alignItems', 'alignSelf', 'display', 'flex', 'flexBasis', 'flexDirection', 'flexGrow', 'flexShrink', 'flexWrap', 'justifyContent'];
|
|
8432
8466
|
|
|
8433
|
-
var _excluded$
|
|
8467
|
+
var _excluded$D = ["theme"];
|
|
8434
8468
|
var getThemeValue = function getThemeValue(theme, key, props) {
|
|
8435
8469
|
var propConfig = config[key];
|
|
8436
8470
|
var propValue = props[key];
|
|
@@ -8457,18 +8491,18 @@ var mapStylePropToThemeValue = function mapStylePropToThemeValue(theme, props) {
|
|
|
8457
8491
|
var configKeys = Object.keys(config);
|
|
8458
8492
|
var StyledBox = index$a(View)(function (_ref5) {
|
|
8459
8493
|
var theme = _ref5.theme,
|
|
8460
|
-
otherProps = _objectWithoutProperties(_ref5, _excluded$
|
|
8494
|
+
otherProps = _objectWithoutProperties(_ref5, _excluded$D);
|
|
8461
8495
|
var styleProps = pick(configKeys, otherProps);
|
|
8462
8496
|
var flexProps = pick(_toConsumableArray(flexPropsKey), otherProps);
|
|
8463
8497
|
return _objectSpread2(_objectSpread2({}, mapStylePropToThemeValue(theme, styleProps)), flexProps);
|
|
8464
8498
|
});
|
|
8465
8499
|
|
|
8466
|
-
var _excluded$
|
|
8500
|
+
var _excluded$C = ["children", "style", "testID"];
|
|
8467
8501
|
var Box = function Box(_ref) {
|
|
8468
8502
|
var children = _ref.children,
|
|
8469
8503
|
style = _ref.style,
|
|
8470
8504
|
testID = _ref.testID,
|
|
8471
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
8505
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$C);
|
|
8472
8506
|
return /*#__PURE__*/React__default.createElement(StyledBox, _extends$1({}, otherProps, {
|
|
8473
8507
|
style: style,
|
|
8474
8508
|
testID: testID
|
|
@@ -8476,7 +8510,7 @@ var Box = function Box(_ref) {
|
|
|
8476
8510
|
};
|
|
8477
8511
|
|
|
8478
8512
|
var VISIBLE_RATIO = 0.7;
|
|
8479
|
-
var StyledWrapper$
|
|
8513
|
+
var StyledWrapper$b = index$a(View)(function (_ref) {
|
|
8480
8514
|
var theme = _ref.theme,
|
|
8481
8515
|
themeSize = _ref.themeSize,
|
|
8482
8516
|
themeAvatarCount = _ref.themeAvatarCount,
|
|
@@ -8614,7 +8648,7 @@ var AvatarStack = function AvatarStack(_ref2) {
|
|
|
8614
8648
|
}
|
|
8615
8649
|
return remain;
|
|
8616
8650
|
}();
|
|
8617
|
-
return /*#__PURE__*/React__default.createElement(StyledWrapper$
|
|
8651
|
+
return /*#__PURE__*/React__default.createElement(StyledWrapper$b, {
|
|
8618
8652
|
themeSize: size,
|
|
8619
8653
|
themeAvatarCount: avatars.length,
|
|
8620
8654
|
themeHasSurplus: remainingAvatar > 0,
|
|
@@ -8689,7 +8723,7 @@ var StyledStatus = index$a(Animated.View)(function (_ref3) {
|
|
|
8689
8723
|
borderRadius: theme.radii.rounded
|
|
8690
8724
|
};
|
|
8691
8725
|
});
|
|
8692
|
-
var StyledIcon$
|
|
8726
|
+
var StyledIcon$2 = index$a(Icon)(function (_ref4) {
|
|
8693
8727
|
var themeSize = _ref4.themeSize,
|
|
8694
8728
|
theme = _ref4.theme;
|
|
8695
8729
|
return {
|
|
@@ -8697,7 +8731,7 @@ var StyledIcon$1 = index$a(Icon)(function (_ref4) {
|
|
|
8697
8731
|
};
|
|
8698
8732
|
});
|
|
8699
8733
|
|
|
8700
|
-
var _excluded$
|
|
8734
|
+
var _excluded$B = ["children", "visible", "intent", "style", "testID"];
|
|
8701
8735
|
var Status = function Status(_ref) {
|
|
8702
8736
|
var children = _ref.children,
|
|
8703
8737
|
_ref$visible = _ref.visible,
|
|
@@ -8706,7 +8740,7 @@ var Status = function Status(_ref) {
|
|
|
8706
8740
|
intent = _ref$intent === void 0 ? 'danger' : _ref$intent,
|
|
8707
8741
|
style = _ref.style,
|
|
8708
8742
|
testID = _ref.testID,
|
|
8709
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
8743
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$B);
|
|
8710
8744
|
var _React$useRef = React__default.useRef(new Animated.Value(visible ? 1 : 0)),
|
|
8711
8745
|
opacity = _React$useRef.current;
|
|
8712
8746
|
var isFirstRendering = React__default.useRef(true);
|
|
@@ -8739,7 +8773,7 @@ var Status = function Status(_ref) {
|
|
|
8739
8773
|
}));
|
|
8740
8774
|
};
|
|
8741
8775
|
|
|
8742
|
-
var _excluded$
|
|
8776
|
+
var _excluded$A = ["content", "visible", "max", "intent", "style", "testID", "size", "variant", "icon"];
|
|
8743
8777
|
var DEFAULT_MAX_NUMBER = 99;
|
|
8744
8778
|
var getPaddingState = function getPaddingState(content) {
|
|
8745
8779
|
return content.length > 1 ? 'wideContent' : 'narrowContent';
|
|
@@ -8759,7 +8793,7 @@ var Badge = function Badge(_ref) {
|
|
|
8759
8793
|
_ref$variant = _ref.variant,
|
|
8760
8794
|
variant = _ref$variant === void 0 ? 'filled' : _ref$variant,
|
|
8761
8795
|
icon = _ref.icon,
|
|
8762
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
8796
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$A);
|
|
8763
8797
|
var _React$useRef = React__default.useRef(new Animated.Value(visible ? 1 : 0)),
|
|
8764
8798
|
opacity = _React$useRef.current;
|
|
8765
8799
|
var isFirstRendering = React__default.useRef(true);
|
|
@@ -8797,7 +8831,7 @@ var Badge = function Badge(_ref) {
|
|
|
8797
8831
|
}]
|
|
8798
8832
|
}, style],
|
|
8799
8833
|
testID: testID
|
|
8800
|
-
}), isIconBadge ? /*#__PURE__*/React__default.createElement(StyledIcon$
|
|
8834
|
+
}), isIconBadge ? /*#__PURE__*/React__default.createElement(StyledIcon$2, {
|
|
8801
8835
|
icon: icon,
|
|
8802
8836
|
themeSize: size,
|
|
8803
8837
|
intent: "text-inverted"
|
|
@@ -8860,7 +8894,7 @@ var StyledBottomBarText = index$a(Typography.Caption)(function (_ref3) {
|
|
|
8860
8894
|
};
|
|
8861
8895
|
});
|
|
8862
8896
|
|
|
8863
|
-
var _excluded$
|
|
8897
|
+
var _excluded$z = ["onTabPress", "renderActiveTabOnly", "selectedTabKey", "tabs"];
|
|
8864
8898
|
var getInactiveIcon = function getInactiveIcon(icon) {
|
|
8865
8899
|
var inactiveIcon = "".concat(icon, "-outlined");
|
|
8866
8900
|
return isHeroIcon(inactiveIcon) ? inactiveIcon : icon;
|
|
@@ -8871,7 +8905,7 @@ var BottomNavigation = function BottomNavigation(_ref) {
|
|
|
8871
8905
|
renderActiveTabOnly = _ref$renderActiveTabO === void 0 ? false : _ref$renderActiveTabO,
|
|
8872
8906
|
selectedTabKey = _ref.selectedTabKey,
|
|
8873
8907
|
tabs = _ref.tabs,
|
|
8874
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
8908
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$z);
|
|
8875
8909
|
var insets = useSafeAreaInsets();
|
|
8876
8910
|
/**
|
|
8877
8911
|
* List of loaded tabs, tabs will be loaded when navigated to.
|
|
@@ -8957,13 +8991,13 @@ var StyledDivider = index$a(View)(function (_ref) {
|
|
|
8957
8991
|
}, horizontalMargin), verticalMargin);
|
|
8958
8992
|
});
|
|
8959
8993
|
|
|
8960
|
-
var _excluded$
|
|
8994
|
+
var _excluded$y = ["marginHorizontal", "marginVertical", "style", "testID"];
|
|
8961
8995
|
var Divider = function Divider(_ref) {
|
|
8962
8996
|
var marginHorizontal = _ref.marginHorizontal,
|
|
8963
8997
|
marginVertical = _ref.marginVertical,
|
|
8964
8998
|
style = _ref.style,
|
|
8965
8999
|
testID = _ref.testID,
|
|
8966
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
9000
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$y);
|
|
8967
9001
|
return /*#__PURE__*/React__default.createElement(StyledDivider, _extends$1({}, nativeProps, {
|
|
8968
9002
|
themeMarginHorizontal: marginHorizontal,
|
|
8969
9003
|
themeMarginVertical: marginVertical,
|
|
@@ -8974,7 +9008,7 @@ var Divider = function Divider(_ref) {
|
|
|
8974
9008
|
|
|
8975
9009
|
var AnimatedPressable$2 = Animated.createAnimatedComponent(Pressable);
|
|
8976
9010
|
var AnimatedSafeAreaView = Animated.createAnimatedComponent(SafeAreaView);
|
|
8977
|
-
var StyledWrapper$
|
|
9011
|
+
var StyledWrapper$a = index$a(View)(_objectSpread2(_objectSpread2({}, StyleSheet$1.absoluteFillObject), {}, {
|
|
8978
9012
|
flexDirection: 'column-reverse'
|
|
8979
9013
|
}));
|
|
8980
9014
|
var StyledKeyboardAvoidingView = index$a(KeyboardAvoidingView)(function () {
|
|
@@ -9119,7 +9153,7 @@ var StyledLoadingDot = index$a(View)(function (_ref) {
|
|
|
9119
9153
|
}, themeStyling());
|
|
9120
9154
|
});
|
|
9121
9155
|
|
|
9122
|
-
var _excluded$
|
|
9156
|
+
var _excluded$x = ["count", "size", "testID", "themeVariant"];
|
|
9123
9157
|
var AnimatedLoadingIndicatorWrapper = Animated.createAnimatedComponent(StyledLoadingIndicatorWrapper);
|
|
9124
9158
|
var AnimatedLoadingDot = Animated.createAnimatedComponent(StyledLoadingDot);
|
|
9125
9159
|
var renderDotComponent = function renderDotComponent(_ref) {
|
|
@@ -9151,7 +9185,7 @@ var LoadingIndicator = function LoadingIndicator(_ref2) {
|
|
|
9151
9185
|
size = _ref2$size === void 0 ? 12 : _ref2$size,
|
|
9152
9186
|
testID = _ref2.testID,
|
|
9153
9187
|
themeVariant = _ref2.themeVariant,
|
|
9154
|
-
nativeProps = _objectWithoutProperties(_ref2, _excluded$
|
|
9188
|
+
nativeProps = _objectWithoutProperties(_ref2, _excluded$x);
|
|
9155
9189
|
var progressAnimation = useRef(new Animated.Value(0));
|
|
9156
9190
|
useEffect(function () {
|
|
9157
9191
|
var animation = Animated.loop(Animated.timing(progressAnimation.current, {
|
|
@@ -9594,11 +9628,11 @@ var Header = function Header(_ref) {
|
|
|
9594
9628
|
}))) : null), showDivider ? /*#__PURE__*/React__default.createElement(Divider, null) : null);
|
|
9595
9629
|
};
|
|
9596
9630
|
|
|
9597
|
-
var _excluded$
|
|
9631
|
+
var _excluded$w = ["scrollEventThrottle"];
|
|
9598
9632
|
var BottomSheetScrollView = function BottomSheetScrollView(_ref) {
|
|
9599
9633
|
var _ref$scrollEventThrot = _ref.scrollEventThrottle,
|
|
9600
9634
|
scrollEventThrottle = _ref$scrollEventThrot === void 0 ? 100 : _ref$scrollEventThrot,
|
|
9601
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9635
|
+
props = _objectWithoutProperties(_ref, _excluded$w);
|
|
9602
9636
|
var _useContext = useContext(BottomSheetContext),
|
|
9603
9637
|
setInternalShowDivider = _useContext.setInternalShowDivider;
|
|
9604
9638
|
var onScrollBeginDrag = useCallback(function (e) {
|
|
@@ -9659,24 +9693,16 @@ var BottomSheet = function BottomSheet(_ref) {
|
|
|
9659
9693
|
_useState4 = _slicedToArray(_useState3, 2),
|
|
9660
9694
|
internalShowDivider = _useState4[0],
|
|
9661
9695
|
setInternalShowDivider = _useState4[1];
|
|
9696
|
+
var canCallOnDismiss = useRef(false);
|
|
9662
9697
|
useEffect(function () {
|
|
9698
|
+
// Prevent calling onDismiss when the component has not yet opened
|
|
9699
|
+
if (open && !canCallOnDismiss.current) {
|
|
9700
|
+
canCallOnDismiss.current = true;
|
|
9701
|
+
}
|
|
9663
9702
|
// Show the modal before the open animation start
|
|
9664
9703
|
if (open && !visible) {
|
|
9665
9704
|
setVisibility(open);
|
|
9666
9705
|
}
|
|
9667
|
-
// Delay closing the modal until after the closing animation end
|
|
9668
|
-
animatedValue.current.removeAllListeners();
|
|
9669
|
-
animatedValue.current.addListener(function (_ref2) {
|
|
9670
|
-
var value = _ref2.value;
|
|
9671
|
-
var endValueOfTransition = open ? 1 : 0;
|
|
9672
|
-
if (endValueOfTransition === 0 && value === endValueOfTransition) {
|
|
9673
|
-
setVisibility(false);
|
|
9674
|
-
onDismiss === null || onDismiss === void 0 || onDismiss();
|
|
9675
|
-
}
|
|
9676
|
-
});
|
|
9677
|
-
return function () {
|
|
9678
|
-
return animatedValue.current.removeAllListeners();
|
|
9679
|
-
};
|
|
9680
9706
|
}, [open]);
|
|
9681
9707
|
// Animation
|
|
9682
9708
|
useEffect(function () {
|
|
@@ -9685,10 +9711,13 @@ var BottomSheet = function BottomSheet(_ref) {
|
|
|
9685
9711
|
easing: Easing.inOut(Easing.cubic),
|
|
9686
9712
|
useNativeDriver: true
|
|
9687
9713
|
});
|
|
9688
|
-
animation.start(
|
|
9689
|
-
|
|
9690
|
-
|
|
9691
|
-
|
|
9714
|
+
animation.start(function () {
|
|
9715
|
+
if (!open && canCallOnDismiss.current) {
|
|
9716
|
+
setVisibility(false);
|
|
9717
|
+
onDismiss === null || onDismiss === void 0 || onDismiss();
|
|
9718
|
+
}
|
|
9719
|
+
onAnimationEnd === null || onAnimationEnd === void 0 || onAnimationEnd();
|
|
9720
|
+
});
|
|
9692
9721
|
}, [open]);
|
|
9693
9722
|
var interpolateY = animatedValue.current.interpolate({
|
|
9694
9723
|
inputRange: [0, 1],
|
|
@@ -9713,7 +9742,7 @@ var BottomSheet = function BottomSheet(_ref) {
|
|
|
9713
9742
|
testID: testID,
|
|
9714
9743
|
onShow: onOpen,
|
|
9715
9744
|
supportedOrientations: supportedOrientations
|
|
9716
|
-
}, /*#__PURE__*/React__default.createElement(StyledWrapper$
|
|
9745
|
+
}, /*#__PURE__*/React__default.createElement(StyledWrapper$a, {
|
|
9717
9746
|
pointerEvents: "box-none"
|
|
9718
9747
|
}, /*#__PURE__*/React__default.createElement(StyledKeyboardAvoidingView, _extends$1({
|
|
9719
9748
|
behavior: Platform.OS === 'ios' ? 'padding' : 'height'
|
|
@@ -12415,12 +12444,12 @@ var Indicator = index$a(View)(function (_ref2) {
|
|
|
12415
12444
|
};
|
|
12416
12445
|
});
|
|
12417
12446
|
|
|
12418
|
-
var _excluded$
|
|
12447
|
+
var _excluded$v = ["intent", "children"];
|
|
12419
12448
|
var DataCard = function DataCard(_ref) {
|
|
12420
12449
|
var _ref$intent = _ref.intent,
|
|
12421
12450
|
intent = _ref$intent === void 0 ? 'info' : _ref$intent,
|
|
12422
12451
|
children = _ref.children,
|
|
12423
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
12452
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$v);
|
|
12424
12453
|
return /*#__PURE__*/React__default.createElement(StyledDataCard, nativeProps, /*#__PURE__*/React__default.createElement(Indicator, {
|
|
12425
12454
|
themeIntent: intent,
|
|
12426
12455
|
testID: "data-card-indicator"
|
|
@@ -12439,13 +12468,13 @@ var StyledCard$1 = index$a(View)(function (_ref) {
|
|
|
12439
12468
|
});
|
|
12440
12469
|
});
|
|
12441
12470
|
|
|
12442
|
-
var _excluded$
|
|
12471
|
+
var _excluded$u = ["intent", "children", "variant"];
|
|
12443
12472
|
var Card = function Card(_ref) {
|
|
12444
12473
|
var intent = _ref.intent,
|
|
12445
12474
|
children = _ref.children,
|
|
12446
12475
|
_ref$variant = _ref.variant,
|
|
12447
12476
|
variant = _ref$variant === void 0 ? 'basic' : _ref$variant,
|
|
12448
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
12477
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$u);
|
|
12449
12478
|
return /*#__PURE__*/React__default.createElement(StyledCard$1, _extends$1({}, nativeProps, {
|
|
12450
12479
|
themeIntent: intent,
|
|
12451
12480
|
themeVariant: variant
|
|
@@ -12522,7 +12551,7 @@ var StyledPageControl$1 = index$a(PageControl)(function (_ref) {
|
|
|
12522
12551
|
marginTop: theme.__hd__.cardCarousel.space.pageControlMarginTop
|
|
12523
12552
|
};
|
|
12524
12553
|
});
|
|
12525
|
-
var StyledWrapper$
|
|
12554
|
+
var StyledWrapper$9 = index$a(View)({});
|
|
12526
12555
|
var StyledCard = index$a(Card$1)(function (_ref2) {
|
|
12527
12556
|
var theme = _ref2.theme;
|
|
12528
12557
|
return {
|
|
@@ -12652,7 +12681,7 @@ var CardCarousel = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
12652
12681
|
}, /*#__PURE__*/React__default.createElement(StyledCard, null, item));
|
|
12653
12682
|
}, [itemWidth]);
|
|
12654
12683
|
var contentContainerPaddingHorizontal = theme.__hd__.cardCarousel.space.contentContainerPaddingHorizontal;
|
|
12655
|
-
return /*#__PURE__*/React__default.createElement(StyledWrapper$
|
|
12684
|
+
return /*#__PURE__*/React__default.createElement(StyledWrapper$9, {
|
|
12656
12685
|
style: style,
|
|
12657
12686
|
testID: testID
|
|
12658
12687
|
}, /*#__PURE__*/React__default.createElement(FlatList, {
|
|
@@ -12707,7 +12736,7 @@ var CardCarousel = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
12707
12736
|
});
|
|
12708
12737
|
CardCarousel.displayName = 'CardCarousel';
|
|
12709
12738
|
|
|
12710
|
-
var _excluded$
|
|
12739
|
+
var _excluded$t = ["rounded", "size", "testID", "style"];
|
|
12711
12740
|
var Image = function Image(_ref) {
|
|
12712
12741
|
var _ref$rounded = _ref.rounded,
|
|
12713
12742
|
rounded = _ref$rounded === void 0 ? false : _ref$rounded,
|
|
@@ -12715,7 +12744,7 @@ var Image = function Image(_ref) {
|
|
|
12715
12744
|
size = _ref$size === void 0 ? '6xlarge' : _ref$size,
|
|
12716
12745
|
testID = _ref.testID,
|
|
12717
12746
|
style = _ref.style,
|
|
12718
|
-
imageNativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
12747
|
+
imageNativeProps = _objectWithoutProperties(_ref, _excluded$t);
|
|
12719
12748
|
var theme = useTheme();
|
|
12720
12749
|
var imageSize = theme.__hd__.image.sizes[size];
|
|
12721
12750
|
return /*#__PURE__*/React__default.createElement(Image$1, _extends$1({
|
|
@@ -12849,7 +12878,7 @@ var CarouselItem = function CarouselItem(_ref) {
|
|
|
12849
12878
|
}, heading), !!body && /*#__PURE__*/React__default.createElement(Typography.Body, null, body)));
|
|
12850
12879
|
};
|
|
12851
12880
|
|
|
12852
|
-
var _excluded$
|
|
12881
|
+
var _excluded$s = ["items", "onItemIndexChange", "renderActions", "selectedItemIndex", "style", "shouldShowPagination", "testID", "pageControlPosition"];
|
|
12853
12882
|
function useStateFromProp(initialValue) {
|
|
12854
12883
|
var _useState = useState(initialValue),
|
|
12855
12884
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -12876,7 +12905,7 @@ var Carousel = function Carousel(_ref) {
|
|
|
12876
12905
|
testID = _ref.testID,
|
|
12877
12906
|
_ref$pageControlPosit = _ref.pageControlPosition,
|
|
12878
12907
|
pageControlPosition = _ref$pageControlPosit === void 0 ? 'top' : _ref$pageControlPosit,
|
|
12879
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
12908
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$s);
|
|
12880
12909
|
useDeprecation("shouldShowPagination prop has been deprecated", shouldShowPagination !== noop);
|
|
12881
12910
|
useDeprecation("The use of 'pageControlPosition == bottom' has been deprecated", pageControlPosition === 'bottom');
|
|
12882
12911
|
var theme = useTheme();
|
|
@@ -13090,7 +13119,7 @@ var StyledChipWrapper = index$a(TouchableOpacity)(function (_ref) {
|
|
|
13090
13119
|
}, getShadowStyles()), getBorderStyles()), getPaddingStyles()), getBackgroundStyles());
|
|
13091
13120
|
});
|
|
13092
13121
|
|
|
13093
|
-
var _excluded$
|
|
13122
|
+
var _excluded$r = ["label", "variant", "selected", "icon", "onPress", "showSelectedIcon"];
|
|
13094
13123
|
var Chip = function Chip(_ref) {
|
|
13095
13124
|
var label = _ref.label,
|
|
13096
13125
|
_ref$variant = _ref.variant,
|
|
@@ -13101,7 +13130,7 @@ var Chip = function Chip(_ref) {
|
|
|
13101
13130
|
onPress = _ref.onPress,
|
|
13102
13131
|
_ref$showSelectedIcon = _ref.showSelectedIcon,
|
|
13103
13132
|
showSelectedIcon = _ref$showSelectedIcon === void 0 ? true : _ref$showSelectedIcon,
|
|
13104
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
13133
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$r);
|
|
13105
13134
|
var shouldShowSelectedIcon = variant === 'outlined' && selected && showSelectedIcon;
|
|
13106
13135
|
return /*#__PURE__*/React__default.createElement(StyledChipWrapper, _extends$1({
|
|
13107
13136
|
onPress: onPress,
|
|
@@ -13122,7 +13151,7 @@ var Chip = function Chip(_ref) {
|
|
|
13122
13151
|
})));
|
|
13123
13152
|
};
|
|
13124
13153
|
|
|
13125
|
-
var StyledWrapper$
|
|
13154
|
+
var StyledWrapper$8 = index$a(TouchableOpacity)(function (_ref) {
|
|
13126
13155
|
var theme = _ref.theme,
|
|
13127
13156
|
themeState = _ref.themeState;
|
|
13128
13157
|
return {
|
|
@@ -13196,7 +13225,7 @@ var Checkbox = function Checkbox(_ref2) {
|
|
|
13196
13225
|
disabled: disabled,
|
|
13197
13226
|
readonly: readonly
|
|
13198
13227
|
});
|
|
13199
|
-
return /*#__PURE__*/React__default.createElement(StyledWrapper$
|
|
13228
|
+
return /*#__PURE__*/React__default.createElement(StyledWrapper$8, {
|
|
13200
13229
|
onPress: onPress,
|
|
13201
13230
|
disabled: disabled || readonly,
|
|
13202
13231
|
themeState: themeState,
|
|
@@ -13342,7 +13371,7 @@ var StyledErrorAndMaxLengthContainer = index$a(View)(function () {
|
|
|
13342
13371
|
};
|
|
13343
13372
|
});
|
|
13344
13373
|
|
|
13345
|
-
var _excluded$
|
|
13374
|
+
var _excluded$q = ["label", "prefix", "suffix", "style", "textStyle", "testID", "accessibilityLabelledBy", "error", "required", "editable", "disabled", "loading", "maxLength", "hideCharacterCount", "helpText", "value", "defaultValue", "renderInputValue", "allowFontScaling", "variant"];
|
|
13346
13375
|
var getState$2 = function getState(_ref) {
|
|
13347
13376
|
var disabled = _ref.disabled,
|
|
13348
13377
|
error = _ref.error,
|
|
@@ -13454,7 +13483,7 @@ var TextInput = /*#__PURE__*/forwardRef(function (_ref8, ref) {
|
|
|
13454
13483
|
allowFontScaling = _ref8$allowFontScalin === void 0 ? false : _ref8$allowFontScalin,
|
|
13455
13484
|
_ref8$variant = _ref8.variant,
|
|
13456
13485
|
variant = _ref8$variant === void 0 ? 'text' : _ref8$variant,
|
|
13457
|
-
nativeProps = _objectWithoutProperties(_ref8, _excluded$
|
|
13486
|
+
nativeProps = _objectWithoutProperties(_ref8, _excluded$q);
|
|
13458
13487
|
var displayText = getDisplayText(value, defaultValue);
|
|
13459
13488
|
var isEmptyValue = displayText.length === 0;
|
|
13460
13489
|
var _React$useState = React__default.useState({
|
|
@@ -13999,11 +14028,11 @@ var DatePickerIOS = function DatePickerIOS(_ref) {
|
|
|
13999
14028
|
}))));
|
|
14000
14029
|
};
|
|
14001
14030
|
|
|
14002
|
-
var _excluded$
|
|
14031
|
+
var _excluded$p = ["variant"];
|
|
14003
14032
|
var DatePicker = function DatePicker(_ref) {
|
|
14004
14033
|
var _ref$variant = _ref.variant,
|
|
14005
14034
|
variant = _ref$variant === void 0 ? 'default' : _ref$variant,
|
|
14006
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
14035
|
+
props = _objectWithoutProperties(_ref, _excluded$p);
|
|
14007
14036
|
if (variant === 'calendar') {
|
|
14008
14037
|
return /*#__PURE__*/React__default.createElement(DatePickerCalendar, props);
|
|
14009
14038
|
}
|
|
@@ -14300,7 +14329,7 @@ var index$7 = Object.assign(Drawer, {
|
|
|
14300
14329
|
Dragable: DragableDrawer
|
|
14301
14330
|
});
|
|
14302
14331
|
|
|
14303
|
-
var StyledWrapper$
|
|
14332
|
+
var StyledWrapper$7 = index$a(View)(function (_ref) {
|
|
14304
14333
|
var theme = _ref.theme;
|
|
14305
14334
|
return {
|
|
14306
14335
|
display: 'flex',
|
|
@@ -14338,7 +14367,7 @@ var Empty = function Empty(_ref) {
|
|
|
14338
14367
|
_ref$variant = _ref.variant,
|
|
14339
14368
|
variant = _ref$variant === void 0 ? 'light' : _ref$variant;
|
|
14340
14369
|
var theme = useTheme();
|
|
14341
|
-
return /*#__PURE__*/React__default.createElement(StyledWrapper$
|
|
14370
|
+
return /*#__PURE__*/React__default.createElement(StyledWrapper$7, {
|
|
14342
14371
|
style: style,
|
|
14343
14372
|
testID: testID
|
|
14344
14373
|
}, image !== undefined && /*#__PURE__*/React__default.cloneElement(image, _objectSpread2(_objectSpread2({}, image.props), {}, {
|
|
@@ -14557,7 +14586,7 @@ var Portal$1 = Object.assign(Portal, {
|
|
|
14557
14586
|
Host: PortalHost
|
|
14558
14587
|
});
|
|
14559
14588
|
|
|
14560
|
-
var _excluded$
|
|
14589
|
+
var _excluded$o = ["visible"];
|
|
14561
14590
|
var DEFAULT_BACKDROP_OPACITY = 0.4;
|
|
14562
14591
|
var DEFAULT_ANIMATION_CONFIG = {
|
|
14563
14592
|
easing: Easing.inOut(Easing.cubic),
|
|
@@ -14653,7 +14682,7 @@ var Modal = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
14653
14682
|
var ModalWrapper = function ModalWrapper(_ref3) {
|
|
14654
14683
|
var _ref3$visible = _ref3.visible,
|
|
14655
14684
|
visible = _ref3$visible === void 0 ? true : _ref3$visible,
|
|
14656
|
-
props = _objectWithoutProperties(_ref3, _excluded$
|
|
14685
|
+
props = _objectWithoutProperties(_ref3, _excluded$o);
|
|
14657
14686
|
var modalRef = useRef(null);
|
|
14658
14687
|
var _useState = useState(visible),
|
|
14659
14688
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -14763,7 +14792,7 @@ var StyledErrorDescription = index$a(Typography.Body)(function (_ref9) {
|
|
|
14763
14792
|
};
|
|
14764
14793
|
});
|
|
14765
14794
|
|
|
14766
|
-
var _excluded$
|
|
14795
|
+
var _excluded$n = ["variant", "title", "description", "image", "testID", "ctaText", "onCtaPress", "secondaryCtaText", "onSecondaryCtaPress"],
|
|
14767
14796
|
_excluded2 = ["visible", "variant", "title", "description", "image", "testID", "ctaText", "onCtaPress", "secondaryCtaText", "onSecondaryCtaPress"];
|
|
14768
14797
|
var renderImage$1 = function renderImage(image) {
|
|
14769
14798
|
if ( /*#__PURE__*/isValidElement(image)) {
|
|
@@ -14789,7 +14818,7 @@ var ErrorPage = function ErrorPage(_ref) {
|
|
|
14789
14818
|
onCtaPress = _ref.onCtaPress,
|
|
14790
14819
|
secondaryCtaText = _ref.secondaryCtaText,
|
|
14791
14820
|
onSecondaryCtaPress = _ref.onSecondaryCtaPress,
|
|
14792
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
14821
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$n);
|
|
14793
14822
|
var showCta = ctaText && onCtaPress !== undefined;
|
|
14794
14823
|
var showSecondaryCta = secondaryCtaText && onSecondaryCtaPress !== undefined;
|
|
14795
14824
|
var showButtonContainer = showCta || showSecondaryCta;
|
|
@@ -14922,7 +14951,7 @@ var StyledActionItemText = index$a(Typography.Body)(function (_ref2) {
|
|
|
14922
14951
|
color: theme.__hd__.fab.colors.actionItemText
|
|
14923
14952
|
};
|
|
14924
14953
|
});
|
|
14925
|
-
var StyledIcon = index$a(Icon)(function (_ref3) {
|
|
14954
|
+
var StyledIcon$1 = index$a(Icon)(function (_ref3) {
|
|
14926
14955
|
var theme = _ref3.theme;
|
|
14927
14956
|
return {
|
|
14928
14957
|
color: theme.__hd__.fab.colors.actionItemText
|
|
@@ -15012,17 +15041,17 @@ var ActionItem = function ActionItem(_ref) {
|
|
|
15012
15041
|
style: style,
|
|
15013
15042
|
onPress: onPress,
|
|
15014
15043
|
testID: testID
|
|
15015
|
-
}, /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(StyledIconContainer, null, /*#__PURE__*/React__default.createElement(StyledIcon, {
|
|
15044
|
+
}, /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(StyledIconContainer, null, /*#__PURE__*/React__default.createElement(StyledIcon$1, {
|
|
15016
15045
|
size: "xsmall",
|
|
15017
15046
|
icon: icon
|
|
15018
15047
|
})), /*#__PURE__*/React__default.createElement(StyledActionItemText, null, title))));
|
|
15019
15048
|
};
|
|
15020
15049
|
|
|
15021
|
-
var _excluded$
|
|
15050
|
+
var _excluded$m = ["active"];
|
|
15022
15051
|
var AnimatedIcons = Animated.createAnimatedComponent(StyledFABIcon);
|
|
15023
15052
|
var AnimatedFABIcon = function AnimatedFABIcon(_ref) {
|
|
15024
15053
|
var active = _ref.active,
|
|
15025
|
-
iconProps = _objectWithoutProperties(_ref, _excluded$
|
|
15054
|
+
iconProps = _objectWithoutProperties(_ref, _excluded$m);
|
|
15026
15055
|
var rotateAnimation = useRef(new Animated.Value(active ? 1 : 0));
|
|
15027
15056
|
useEffect(function () {
|
|
15028
15057
|
var animation = Animated.spring(rotateAnimation.current, {
|
|
@@ -15378,11 +15407,11 @@ var StyledFAB = index$a(FAB$1)(function (_ref) {
|
|
|
15378
15407
|
};
|
|
15379
15408
|
});
|
|
15380
15409
|
|
|
15381
|
-
var _excluded$
|
|
15410
|
+
var _excluded$l = ["fabConfig", "onCancel"];
|
|
15382
15411
|
var Pair = function Pair(_ref) {
|
|
15383
15412
|
var fabConfig = _ref.fabConfig,
|
|
15384
15413
|
onCancel = _ref.onCancel,
|
|
15385
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
15414
|
+
props = _objectWithoutProperties(_ref, _excluded$l);
|
|
15386
15415
|
var icon = fabConfig.icon,
|
|
15387
15416
|
title = fabConfig.title,
|
|
15388
15417
|
onPress = fabConfig.onPress,
|
|
@@ -15803,11 +15832,11 @@ var StyledFocusIcon = index$a(Icon)(function (_ref5) {
|
|
|
15803
15832
|
};
|
|
15804
15833
|
});
|
|
15805
15834
|
|
|
15806
|
-
var _excluded$
|
|
15835
|
+
var _excluded$k = ["style", "testID"];
|
|
15807
15836
|
var MapPinFocussed = function MapPinFocussed(_ref) {
|
|
15808
15837
|
var style = _ref.style,
|
|
15809
15838
|
testID = _ref.testID,
|
|
15810
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
15839
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$k);
|
|
15811
15840
|
return /*#__PURE__*/React__default.createElement(StyledContainer$3, _extends$1({}, nativeProps, {
|
|
15812
15841
|
style: style,
|
|
15813
15842
|
testID: testID
|
|
@@ -15817,7 +15846,7 @@ var MapPinFocussed = function MapPinFocussed(_ref) {
|
|
|
15817
15846
|
}));
|
|
15818
15847
|
};
|
|
15819
15848
|
|
|
15820
|
-
var _excluded$
|
|
15849
|
+
var _excluded$j = ["style", "testID", "state", "image", "icon"];
|
|
15821
15850
|
var getBadgeIconName = function getBadgeIconName(state) {
|
|
15822
15851
|
var iconMap = {
|
|
15823
15852
|
idle: undefined,
|
|
@@ -15833,7 +15862,7 @@ var MapPin = function MapPin(_ref) {
|
|
|
15833
15862
|
state = _ref$state === void 0 ? 'idle' : _ref$state,
|
|
15834
15863
|
image = _ref.image,
|
|
15835
15864
|
icon = _ref.icon,
|
|
15836
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
15865
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$j);
|
|
15837
15866
|
var badgeIcon = getBadgeIconName(state);
|
|
15838
15867
|
return /*#__PURE__*/React__default.createElement(StyledContainer$3, _extends$1({}, nativeProps, {
|
|
15839
15868
|
style: style,
|
|
@@ -16047,7 +16076,7 @@ var List = {
|
|
|
16047
16076
|
BasicItem: BasicListItem
|
|
16048
16077
|
};
|
|
16049
16078
|
|
|
16050
|
-
var StyledWrapper$
|
|
16079
|
+
var StyledWrapper$6 = index$a(View)(function () {
|
|
16051
16080
|
return {
|
|
16052
16081
|
alignContent: 'flex-start'
|
|
16053
16082
|
};
|
|
@@ -16256,7 +16285,7 @@ var PinInput = /*#__PURE__*/forwardRef(function (_ref2, ref) {
|
|
|
16256
16285
|
start: trimmedValue.length
|
|
16257
16286
|
};
|
|
16258
16287
|
}, [trimmedValue]);
|
|
16259
|
-
return /*#__PURE__*/React__default.createElement(StyledWrapper$
|
|
16288
|
+
return /*#__PURE__*/React__default.createElement(StyledWrapper$6, {
|
|
16260
16289
|
style: style,
|
|
16261
16290
|
testID: testID
|
|
16262
16291
|
}, /*#__PURE__*/React__default.createElement(StyledPinWrapper, null, _toConsumableArray(Array(length).keys()).map(function (index) {
|
|
@@ -16375,7 +16404,7 @@ var StyledStrokeEnd = index$a(View)(function (_ref6) {
|
|
|
16375
16404
|
};
|
|
16376
16405
|
});
|
|
16377
16406
|
|
|
16378
|
-
var _excluded$
|
|
16407
|
+
var _excluded$i = ["value", "renderValue", "intent", "style", "testID"];
|
|
16379
16408
|
var HalfCircle = function HalfCircle(_ref) {
|
|
16380
16409
|
var type = _ref.type,
|
|
16381
16410
|
themeIntent = _ref.themeIntent;
|
|
@@ -16396,7 +16425,7 @@ var ProgressCircle = function ProgressCircle(_ref2) {
|
|
|
16396
16425
|
intent = _ref2$intent === void 0 ? 'primary' : _ref2$intent,
|
|
16397
16426
|
style = _ref2.style,
|
|
16398
16427
|
testID = _ref2.testID,
|
|
16399
|
-
nativeProps = _objectWithoutProperties(_ref2, _excluded$
|
|
16428
|
+
nativeProps = _objectWithoutProperties(_ref2, _excluded$i);
|
|
16400
16429
|
var theme = useTheme$1();
|
|
16401
16430
|
var radius = theme.__hd__.progress.sizes.circleDiameter / 2;
|
|
16402
16431
|
var progressAnimatedValue = useRef(new Animated.Value(0));
|
|
@@ -16491,7 +16520,7 @@ var ProgressCircle = function ProgressCircle(_ref2) {
|
|
|
16491
16520
|
})), /*#__PURE__*/React__default.createElement(StyledDonutCircle, null, /*#__PURE__*/React__default.createElement(Typography.Body, null, renderValue(value)))));
|
|
16492
16521
|
};
|
|
16493
16522
|
|
|
16494
|
-
var StyledWrapper$
|
|
16523
|
+
var StyledWrapper$5 = index$a(View)(function (_ref) {
|
|
16495
16524
|
var theme = _ref.theme,
|
|
16496
16525
|
themeIntent = _ref.themeIntent;
|
|
16497
16526
|
return {
|
|
@@ -16512,14 +16541,14 @@ var StyledInner = index$a(Animated.View)(function (_ref2) {
|
|
|
16512
16541
|
};
|
|
16513
16542
|
});
|
|
16514
16543
|
|
|
16515
|
-
var _excluded$
|
|
16544
|
+
var _excluded$h = ["value", "intent", "style", "testID"];
|
|
16516
16545
|
var ProgressBar = function ProgressBar(_ref) {
|
|
16517
16546
|
var value = _ref.value,
|
|
16518
16547
|
_ref$intent = _ref.intent,
|
|
16519
16548
|
intent = _ref$intent === void 0 ? 'primary' : _ref$intent,
|
|
16520
16549
|
style = _ref.style,
|
|
16521
16550
|
testID = _ref.testID,
|
|
16522
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
16551
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$h);
|
|
16523
16552
|
var _useState = useState(0),
|
|
16524
16553
|
_useState2 = _slicedToArray(_useState, 2),
|
|
16525
16554
|
width = _useState2[0],
|
|
@@ -16545,7 +16574,7 @@ var ProgressBar = function ProgressBar(_ref) {
|
|
|
16545
16574
|
outputRange: [999, 0],
|
|
16546
16575
|
extrapolate: 'clamp'
|
|
16547
16576
|
});
|
|
16548
|
-
return /*#__PURE__*/React__default.createElement(StyledWrapper$
|
|
16577
|
+
return /*#__PURE__*/React__default.createElement(StyledWrapper$5, _extends$1({}, nativeProps, {
|
|
16549
16578
|
testID: testID,
|
|
16550
16579
|
style: style,
|
|
16551
16580
|
themeIntent: intent
|
|
@@ -16608,7 +16637,7 @@ var StyledSingleStep = index$a(Box)(function (_ref3) {
|
|
|
16608
16637
|
};
|
|
16609
16638
|
});
|
|
16610
16639
|
|
|
16611
|
-
var _excluded$
|
|
16640
|
+
var _excluded$g = ["steps", "current", "onLayout"];
|
|
16612
16641
|
var getStepState = function getStepState(current, index) {
|
|
16613
16642
|
if (index < current) {
|
|
16614
16643
|
return 'complete';
|
|
@@ -16622,7 +16651,7 @@ var ProgressStep = function ProgressStep(_ref) {
|
|
|
16622
16651
|
var steps = _ref.steps,
|
|
16623
16652
|
current = _ref.current,
|
|
16624
16653
|
onLayout = _ref.onLayout,
|
|
16625
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
16654
|
+
props = _objectWithoutProperties(_ref, _excluded$g);
|
|
16626
16655
|
var theme = useTheme$1();
|
|
16627
16656
|
var _React$useState = React__default.useState(0),
|
|
16628
16657
|
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
@@ -16803,14 +16832,14 @@ var AnimatedSpinner = function AnimatedSpinner(_ref) {
|
|
|
16803
16832
|
}, dotProps))));
|
|
16804
16833
|
};
|
|
16805
16834
|
|
|
16806
|
-
var _excluded$
|
|
16835
|
+
var _excluded$f = ["testID", "size", "intent"];
|
|
16807
16836
|
var Spinner = function Spinner(_ref) {
|
|
16808
16837
|
var testID = _ref.testID,
|
|
16809
16838
|
_ref$size = _ref.size,
|
|
16810
16839
|
size = _ref$size === void 0 ? 'medium' : _ref$size,
|
|
16811
16840
|
_ref$intent = _ref.intent,
|
|
16812
16841
|
intent = _ref$intent === void 0 ? 'primary' : _ref$intent,
|
|
16813
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
16842
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$f);
|
|
16814
16843
|
return /*#__PURE__*/React__default.createElement(StyledView$1, nativeProps, /*#__PURE__*/React__default.createElement(StyledSpinnerContainer, {
|
|
16815
16844
|
testID: testID
|
|
16816
16845
|
}, /*#__PURE__*/React__default.createElement(AnimatedSpinner, {
|
|
@@ -16843,7 +16872,7 @@ var SwipeableAction = function SwipeableAction(_ref) {
|
|
|
16843
16872
|
}, children);
|
|
16844
16873
|
};
|
|
16845
16874
|
|
|
16846
|
-
var _excluded$
|
|
16875
|
+
var _excluded$e = ["children", "state", "onStateChange", "leftActions", "leftActionsWidth", "rightActions", "rightActionsWidth", "variant"];
|
|
16847
16876
|
var renderActions = function renderActions(actions, width, progress, direction) {
|
|
16848
16877
|
var trans = progress.interpolate({
|
|
16849
16878
|
inputRange: [0, 1],
|
|
@@ -16872,7 +16901,7 @@ var Swipeable = function Swipeable(_ref) {
|
|
|
16872
16901
|
rightActionsWidth = _ref.rightActionsWidth,
|
|
16873
16902
|
_ref$variant = _ref.variant,
|
|
16874
16903
|
variant = _ref$variant === void 0 ? 'card' : _ref$variant,
|
|
16875
|
-
swipeableProps = _objectWithoutProperties(_ref, _excluded$
|
|
16904
|
+
swipeableProps = _objectWithoutProperties(_ref, _excluded$e);
|
|
16876
16905
|
var theme = useTheme();
|
|
16877
16906
|
var _useWindowDimensions = useWindowDimensions(),
|
|
16878
16907
|
width = _useWindowDimensions.width;
|
|
@@ -17072,7 +17101,7 @@ var StyledIconWrapper$2 = index$a(View)(function (_ref2) {
|
|
|
17072
17101
|
marginRight: theme.__hd__.sectionHeading.space.iconMarginRight
|
|
17073
17102
|
};
|
|
17074
17103
|
});
|
|
17075
|
-
var StyledWrapper$
|
|
17104
|
+
var StyledWrapper$4 = index$a(View)(function () {
|
|
17076
17105
|
return {
|
|
17077
17106
|
display: 'flex',
|
|
17078
17107
|
flexDirection: 'row',
|
|
@@ -17109,7 +17138,7 @@ var SectionHeading = function SectionHeading(_ref) {
|
|
|
17109
17138
|
themeSize: size,
|
|
17110
17139
|
style: style,
|
|
17111
17140
|
testID: testID
|
|
17112
|
-
}, /*#__PURE__*/React__default.createElement(StyledWrapper$
|
|
17141
|
+
}, /*#__PURE__*/React__default.createElement(StyledWrapper$4, null, /*#__PURE__*/React__default.createElement(StyledIconWrapper$2, null, icon !== undefined && (typeof icon === 'string' ? /*#__PURE__*/React__default.createElement(Icon, {
|
|
17113
17142
|
icon: icon,
|
|
17114
17143
|
size: ICON_SIZE_MAP[size],
|
|
17115
17144
|
intent: ICON_INTENT_MAP[intent]
|
|
@@ -17223,7 +17252,7 @@ var StyledSectionList = index$a(SectionList)(function (_ref4) {
|
|
|
17223
17252
|
};
|
|
17224
17253
|
});
|
|
17225
17254
|
|
|
17226
|
-
var _excluded$
|
|
17255
|
+
var _excluded$d = ["keyExtractor", "loading", "onEndReached", "onQueryChange", "sections", "renderItem", "sectionListRef"];
|
|
17227
17256
|
var BaseOptionList = function BaseOptionList(_ref) {
|
|
17228
17257
|
var keyExtractor = _ref.keyExtractor,
|
|
17229
17258
|
loading = _ref.loading,
|
|
@@ -17232,7 +17261,7 @@ var BaseOptionList = function BaseOptionList(_ref) {
|
|
|
17232
17261
|
sections = _ref.sections,
|
|
17233
17262
|
renderItem = _ref.renderItem,
|
|
17234
17263
|
sectionListRef = _ref.sectionListRef,
|
|
17235
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
17264
|
+
rest = _objectWithoutProperties(_ref, _excluded$d);
|
|
17236
17265
|
var theme = useTheme$1();
|
|
17237
17266
|
var _useState = useState(false),
|
|
17238
17267
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -17302,7 +17331,7 @@ var Option$2 = function Option(_ref) {
|
|
|
17302
17331
|
return highlighted === true ? /*#__PURE__*/React__default.createElement(List.Item, props) : /*#__PURE__*/React__default.createElement(List.BasicItem, props);
|
|
17303
17332
|
};
|
|
17304
17333
|
|
|
17305
|
-
var _excluded$
|
|
17334
|
+
var _excluded$c = ["keyExtractor", "loading", "onEndReached", "onPress", "onQueryChange", "sections", "renderOption", "value", "sectionListRef"];
|
|
17306
17335
|
var OptionList$1 = function OptionList(_ref) {
|
|
17307
17336
|
var keyExtractor = _ref.keyExtractor,
|
|
17308
17337
|
loading = _ref.loading,
|
|
@@ -17313,7 +17342,7 @@ var OptionList$1 = function OptionList(_ref) {
|
|
|
17313
17342
|
renderOption = _ref.renderOption,
|
|
17314
17343
|
value = _ref.value,
|
|
17315
17344
|
sectionListRef = _ref.sectionListRef,
|
|
17316
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
17345
|
+
rest = _objectWithoutProperties(_ref, _excluded$c);
|
|
17317
17346
|
var renderItem = function renderItem(info) {
|
|
17318
17347
|
var item = info.item;
|
|
17319
17348
|
var selected = value.includes(info.item.value);
|
|
@@ -17504,7 +17533,7 @@ var StyledOptionList = index$a(BaseOptionList)(function (_ref) {
|
|
|
17504
17533
|
};
|
|
17505
17534
|
});
|
|
17506
17535
|
|
|
17507
|
-
var _excluded$
|
|
17536
|
+
var _excluded$b = ["keyExtractor", "loading", "onEndReached", "onPress", "onQueryChange", "sections", "renderOption", "value", "sectionListRef"];
|
|
17508
17537
|
var OptionList = function OptionList(_ref) {
|
|
17509
17538
|
var keyExtractor = _ref.keyExtractor,
|
|
17510
17539
|
loading = _ref.loading,
|
|
@@ -17515,7 +17544,7 @@ var OptionList = function OptionList(_ref) {
|
|
|
17515
17544
|
renderOption = _ref.renderOption,
|
|
17516
17545
|
value = _ref.value,
|
|
17517
17546
|
sectionListRef = _ref.sectionListRef,
|
|
17518
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
17547
|
+
rest = _objectWithoutProperties(_ref, _excluded$b);
|
|
17519
17548
|
var renderItem = function renderItem(info) {
|
|
17520
17549
|
var item = info.item;
|
|
17521
17550
|
var selected = item.value === value;
|
|
@@ -17683,7 +17712,7 @@ var StyledGradientContainer = index$a(Box)(function (_ref2) {
|
|
|
17683
17712
|
};
|
|
17684
17713
|
});
|
|
17685
17714
|
|
|
17686
|
-
var _excluded$
|
|
17715
|
+
var _excluded$a = ["intent", "variant", "style", "onLayout"];
|
|
17687
17716
|
var AnimatedLinearGradient = Animated.createAnimatedComponent(LinearGradient);
|
|
17688
17717
|
var gradientPositions = {
|
|
17689
17718
|
start: {
|
|
@@ -17715,7 +17744,7 @@ var Skeleton = function Skeleton(_ref) {
|
|
|
17715
17744
|
variant = _ref$variant === void 0 ? 'rounded' : _ref$variant,
|
|
17716
17745
|
style = _ref.style,
|
|
17717
17746
|
onLayout = _ref.onLayout,
|
|
17718
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
17747
|
+
props = _objectWithoutProperties(_ref, _excluded$a);
|
|
17719
17748
|
var theme = useTheme();
|
|
17720
17749
|
var colors = useMemo(function () {
|
|
17721
17750
|
return getGradientColors(theme, intent);
|
|
@@ -17847,7 +17876,7 @@ var StyledSuccessModal = index$a(ModalWrapper)({
|
|
|
17847
17876
|
width: '100%'
|
|
17848
17877
|
});
|
|
17849
17878
|
|
|
17850
|
-
var _excluded$
|
|
17879
|
+
var _excluded$9 = ["variant", "title", "description", "image", "testID", "ctaText", "onCtaPress", "secondaryCtaText", "onSecondaryCtaPress"];
|
|
17851
17880
|
var renderImage = function renderImage(image) {
|
|
17852
17881
|
if ( /*#__PURE__*/isValidElement(image)) {
|
|
17853
17882
|
return /*#__PURE__*/React__default.cloneElement(image, {
|
|
@@ -17873,7 +17902,7 @@ var SuccessPage = function SuccessPage(_ref) {
|
|
|
17873
17902
|
onCtaPress = _ref$onCtaPress === void 0 ? noop$1 : _ref$onCtaPress,
|
|
17874
17903
|
secondaryCtaText = _ref.secondaryCtaText,
|
|
17875
17904
|
onSecondaryCtaPress = _ref.onSecondaryCtaPress,
|
|
17876
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
17905
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$9);
|
|
17877
17906
|
var showSecondaryButton = secondaryCtaText && onSecondaryCtaPress;
|
|
17878
17907
|
return /*#__PURE__*/React__default.createElement(StyledSuccessContainer, _extends$1({
|
|
17879
17908
|
testID: testID,
|
|
@@ -17907,7 +17936,7 @@ var Success = function Success(props) {
|
|
|
17907
17936
|
};
|
|
17908
17937
|
|
|
17909
17938
|
var AnimatedView = Animated.createAnimatedComponent(View);
|
|
17910
|
-
var StyledWrapper$
|
|
17939
|
+
var StyledWrapper$3 = index$a(View)(function (_ref) {
|
|
17911
17940
|
var theme = _ref.theme;
|
|
17912
17941
|
return {
|
|
17913
17942
|
flexDirection: 'row',
|
|
@@ -18053,7 +18082,7 @@ var SelectorSwitch = function SelectorSwitch(_ref) {
|
|
|
18053
18082
|
return _onPress === null || _onPress === void 0 ? void 0 : _onPress(value);
|
|
18054
18083
|
},
|
|
18055
18084
|
testID: testID
|
|
18056
|
-
}, /*#__PURE__*/React__default.createElement(StyledWrapper$
|
|
18085
|
+
}, /*#__PURE__*/React__default.createElement(StyledWrapper$3, {
|
|
18057
18086
|
onLayout: onContainerLayout,
|
|
18058
18087
|
style: style
|
|
18059
18088
|
}, options.map(function (opt, index) {
|
|
@@ -18077,7 +18106,7 @@ var SelectorSwitch = function SelectorSwitch(_ref) {
|
|
|
18077
18106
|
})));
|
|
18078
18107
|
};
|
|
18079
18108
|
|
|
18080
|
-
var StyledWrapper$
|
|
18109
|
+
var StyledWrapper$2 = index$a(View)(function (_ref) {
|
|
18081
18110
|
var theme = _ref.theme,
|
|
18082
18111
|
themeVariant = _ref.themeVariant;
|
|
18083
18112
|
return {
|
|
@@ -18139,7 +18168,7 @@ var Switch = function Switch(_ref2) {
|
|
|
18139
18168
|
testID: testID,
|
|
18140
18169
|
onPress: onPress,
|
|
18141
18170
|
disabled: disabled
|
|
18142
|
-
}, /*#__PURE__*/React__default.createElement(StyledWrapper$
|
|
18171
|
+
}, /*#__PURE__*/React__default.createElement(StyledWrapper$2, {
|
|
18143
18172
|
themeVariant: variant,
|
|
18144
18173
|
style: style
|
|
18145
18174
|
}, /*#__PURE__*/React__default.createElement(StyledKnot, {
|
|
@@ -18891,7 +18920,7 @@ var StyledText = index$a(Typography.Caption)(function (_ref2) {
|
|
|
18891
18920
|
};
|
|
18892
18921
|
});
|
|
18893
18922
|
|
|
18894
|
-
var _excluded$
|
|
18923
|
+
var _excluded$8 = ["content", "variant", "intent", "style", "testID"];
|
|
18895
18924
|
var Tag = function Tag(_ref) {
|
|
18896
18925
|
var content = _ref.content,
|
|
18897
18926
|
_ref$variant = _ref.variant,
|
|
@@ -18900,7 +18929,7 @@ var Tag = function Tag(_ref) {
|
|
|
18900
18929
|
intent = _ref$intent === void 0 ? 'primary' : _ref$intent,
|
|
18901
18930
|
style = _ref.style,
|
|
18902
18931
|
testID = _ref.testID,
|
|
18903
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
18932
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$8);
|
|
18904
18933
|
useDeprecation("Tag's variant prop is deprecated and will be removed in the next major release. Please remove it.", variant !== undefined);
|
|
18905
18934
|
return /*#__PURE__*/React__default.createElement(StyledView, _extends$1({}, nativeProps, {
|
|
18906
18935
|
themeIntent: intent,
|
|
@@ -19225,10 +19254,10 @@ var ToolbarGroup = function ToolbarGroup(_ref) {
|
|
|
19225
19254
|
}));
|
|
19226
19255
|
};
|
|
19227
19256
|
|
|
19228
|
-
var _excluded$
|
|
19257
|
+
var _excluded$7 = ["children"];
|
|
19229
19258
|
var Toolbar = function Toolbar(_ref) {
|
|
19230
19259
|
var children = _ref.children,
|
|
19231
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
19260
|
+
rest = _objectWithoutProperties(_ref, _excluded$7);
|
|
19232
19261
|
return /*#__PURE__*/React__default.createElement(ToolbarWrapper, rest, children);
|
|
19233
19262
|
};
|
|
19234
19263
|
var index$1 = Object.assign(Toolbar, {
|
|
@@ -19236,7 +19265,7 @@ var index$1 = Object.assign(Toolbar, {
|
|
|
19236
19265
|
});
|
|
19237
19266
|
|
|
19238
19267
|
var AnimatedBox = Animated.createAnimatedComponent(View);
|
|
19239
|
-
var StyledWrapper = index$a(Box)({
|
|
19268
|
+
var StyledWrapper$1 = index$a(Box)({
|
|
19240
19269
|
flexDirection: 'row'
|
|
19241
19270
|
});
|
|
19242
19271
|
var StyledIconWrapper = index$a(AnimatedBox)(function (_ref) {
|
|
@@ -19247,7 +19276,7 @@ var StyledIconWrapper = index$a(AnimatedBox)(function (_ref) {
|
|
|
19247
19276
|
};
|
|
19248
19277
|
});
|
|
19249
19278
|
|
|
19250
|
-
var _excluded$
|
|
19279
|
+
var _excluded$6 = ["options", "value", "onChange", "readonly", "disabled"];
|
|
19251
19280
|
var Rate = function Rate(_ref) {
|
|
19252
19281
|
var options = _ref.options,
|
|
19253
19282
|
value = _ref.value,
|
|
@@ -19256,7 +19285,7 @@ var Rate = function Rate(_ref) {
|
|
|
19256
19285
|
readonly = _ref$readonly === void 0 ? false : _ref$readonly,
|
|
19257
19286
|
_ref$disabled = _ref.disabled,
|
|
19258
19287
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
19259
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
19288
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$6);
|
|
19260
19289
|
var valueIndex = useMemo(function () {
|
|
19261
19290
|
return options.findIndex(function (item) {
|
|
19262
19291
|
return item.value === value;
|
|
@@ -19274,7 +19303,7 @@ var Rate = function Rate(_ref) {
|
|
|
19274
19303
|
useNativeDriver: Platform.OS !== 'web'
|
|
19275
19304
|
}).start();
|
|
19276
19305
|
}, [value, animatedValue]);
|
|
19277
|
-
return /*#__PURE__*/React__default.createElement(StyledWrapper, otherProps, options.length > 0 && options.map(function (item, index) {
|
|
19306
|
+
return /*#__PURE__*/React__default.createElement(StyledWrapper$1, otherProps, options.length > 0 && options.map(function (item, index) {
|
|
19278
19307
|
return /*#__PURE__*/React__default.createElement(Pressable, {
|
|
19279
19308
|
key: item.value,
|
|
19280
19309
|
disabled: disabled || readonly,
|
|
@@ -36647,30 +36676,30 @@ function AnimatedScroller(_ref) {
|
|
|
36647
36676
|
}));
|
|
36648
36677
|
}
|
|
36649
36678
|
|
|
36650
|
-
var _excluded$
|
|
36679
|
+
var _excluded$5 = ["fabProps"];
|
|
36651
36680
|
var ScrollViewWithFAB = function ScrollViewWithFAB(_ref) {
|
|
36652
36681
|
var fabProps = _ref.fabProps,
|
|
36653
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
36682
|
+
props = _objectWithoutProperties(_ref, _excluded$5);
|
|
36654
36683
|
return /*#__PURE__*/React__default.createElement(AnimatedScroller, {
|
|
36655
36684
|
ScrollComponent: /*#__PURE__*/React__default.createElement(ScrollView, props),
|
|
36656
36685
|
fabProps: fabProps
|
|
36657
36686
|
});
|
|
36658
36687
|
};
|
|
36659
36688
|
|
|
36660
|
-
var _excluded$
|
|
36689
|
+
var _excluded$4 = ["fabProps"];
|
|
36661
36690
|
function FlatListWithFAB(_ref) {
|
|
36662
36691
|
var fabProps = _ref.fabProps,
|
|
36663
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
36692
|
+
props = _objectWithoutProperties(_ref, _excluded$4);
|
|
36664
36693
|
return /*#__PURE__*/React__default.createElement(AnimatedScroller, {
|
|
36665
36694
|
ScrollComponent: /*#__PURE__*/React__default.createElement(FlatList, props),
|
|
36666
36695
|
fabProps: fabProps
|
|
36667
36696
|
});
|
|
36668
36697
|
}
|
|
36669
36698
|
|
|
36670
|
-
var _excluded$
|
|
36699
|
+
var _excluded$3 = ["fabProps"];
|
|
36671
36700
|
function SectionListWithFAB(_ref) {
|
|
36672
36701
|
var fabProps = _ref.fabProps,
|
|
36673
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
36702
|
+
props = _objectWithoutProperties(_ref, _excluded$3);
|
|
36674
36703
|
return /*#__PURE__*/React__default.createElement(AnimatedScroller, {
|
|
36675
36704
|
ScrollComponent: /*#__PURE__*/React__default.createElement(SectionList, props),
|
|
36676
36705
|
fabProps: fabProps
|
|
@@ -36805,7 +36834,7 @@ var SearchTwoLine = function SearchTwoLine(props) {
|
|
|
36805
36834
|
})));
|
|
36806
36835
|
};
|
|
36807
36836
|
|
|
36808
|
-
var _excluded$
|
|
36837
|
+
var _excluded$2 = ["prefix", "suffix", "style", "allowFontScaling", "accessibilityLabelledBy", "editable", "maxLength", "value", "defaultValue", "placeholder", "disabled", "testID", "variant"];
|
|
36809
36838
|
var getState = function getState(_ref) {
|
|
36810
36839
|
var disabled = _ref.disabled,
|
|
36811
36840
|
editable = _ref.editable,
|
|
@@ -36847,7 +36876,7 @@ var SearchOneLine = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
36847
36876
|
testID = props.testID,
|
|
36848
36877
|
_props$variant = props.variant,
|
|
36849
36878
|
variant = _props$variant === void 0 ? 'basic' : _props$variant,
|
|
36850
|
-
nativeProps = _objectWithoutProperties(props, _excluded$
|
|
36879
|
+
nativeProps = _objectWithoutProperties(props, _excluded$2);
|
|
36851
36880
|
var _React$useState = React__default.useState(false),
|
|
36852
36881
|
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
36853
36882
|
isFocused = _React$useState2[0],
|
|
@@ -36931,11 +36960,11 @@ var SearchOneLine = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
36931
36960
|
})));
|
|
36932
36961
|
});
|
|
36933
36962
|
|
|
36934
|
-
var _excluded = ["content", "icon"];
|
|
36963
|
+
var _excluded$1 = ["content", "icon"];
|
|
36935
36964
|
var renderBadge = function renderBadge(props) {
|
|
36936
36965
|
var content = props.content,
|
|
36937
36966
|
icon = props.icon,
|
|
36938
|
-
rest = _objectWithoutProperties(props, _excluded);
|
|
36967
|
+
rest = _objectWithoutProperties(props, _excluded$1);
|
|
36939
36968
|
if (content) return /*#__PURE__*/React__default.createElement(StyledBadge, _extends$1({
|
|
36940
36969
|
intent: "primary",
|
|
36941
36970
|
content: content,
|
|
@@ -36967,4 +36996,88 @@ var Search = {
|
|
|
36967
36996
|
SuffixIcon: SearchSuffixIcon
|
|
36968
36997
|
};
|
|
36969
36998
|
|
|
36970
|
-
|
|
36999
|
+
var StyledWrapper = index$a.TouchableOpacity(function (_ref) {
|
|
37000
|
+
var theme = _ref.theme;
|
|
37001
|
+
return _objectSpread2({
|
|
37002
|
+
alignSelf: 'flex-start',
|
|
37003
|
+
position: 'absolute',
|
|
37004
|
+
left: '50%',
|
|
37005
|
+
zIndex: 9999,
|
|
37006
|
+
flexDirection: 'row',
|
|
37007
|
+
justifyContent: 'center',
|
|
37008
|
+
alignItems: 'center',
|
|
37009
|
+
padding: theme.__hd__.floatingIsland.space.wrapperPadding,
|
|
37010
|
+
borderRadius: theme.__hd__.floatingIsland.radii.wrapper,
|
|
37011
|
+
backgroundColor: theme.__hd__.floatingIsland.colors.wrapperBackground,
|
|
37012
|
+
top: theme.__hd__.floatingIsland.space.wrapperTop
|
|
37013
|
+
}, theme.__hd__.floatingIsland.shadows.wrapper);
|
|
37014
|
+
});
|
|
37015
|
+
var StyledPrefixWrapper = index$a(Box)(function (_ref2) {
|
|
37016
|
+
var theme = _ref2.theme;
|
|
37017
|
+
return {
|
|
37018
|
+
marginRight: theme.__hd__.floatingIsland.space.prefixMarginRight
|
|
37019
|
+
};
|
|
37020
|
+
});
|
|
37021
|
+
var StyledSuffixWrapper = index$a(Box)(function (_ref3) {
|
|
37022
|
+
var theme = _ref3.theme;
|
|
37023
|
+
return {
|
|
37024
|
+
marginLeft: theme.__hd__.floatingIsland.space.suffixMarginLeft
|
|
37025
|
+
};
|
|
37026
|
+
});
|
|
37027
|
+
var StyledIcon = index$a(Icon)(function (_ref4) {
|
|
37028
|
+
var theme = _ref4.theme;
|
|
37029
|
+
return {
|
|
37030
|
+
padding: theme.__hd__.floatingIsland.space.iconPadding
|
|
37031
|
+
};
|
|
37032
|
+
});
|
|
37033
|
+
|
|
37034
|
+
var _excluded = ["onPress", "onLayout", "style", "children", "prefix", "suffix"];
|
|
37035
|
+
var getPrefixOrSuffix = function getPrefixOrSuffix(_ref) {
|
|
37036
|
+
var element = _ref.element,
|
|
37037
|
+
_ref$isPrefix = _ref.isPrefix,
|
|
37038
|
+
isPrefix = _ref$isPrefix === void 0 ? true : _ref$isPrefix;
|
|
37039
|
+
var Wrapper = isPrefix ? StyledPrefixWrapper : StyledSuffixWrapper;
|
|
37040
|
+
if (typeof element === 'string') {
|
|
37041
|
+
return /*#__PURE__*/React__default.createElement(Wrapper, null, /*#__PURE__*/React__default.createElement(StyledIcon, {
|
|
37042
|
+
testID: "floating-island-".concat(isPrefix ? 'prefix' : 'suffix', "-icon"),
|
|
37043
|
+
size: "small",
|
|
37044
|
+
icon: element
|
|
37045
|
+
}));
|
|
37046
|
+
}
|
|
37047
|
+
return /*#__PURE__*/React__default.createElement(Wrapper, null, element);
|
|
37048
|
+
};
|
|
37049
|
+
var FloatingIsland = function FloatingIsland(_ref2) {
|
|
37050
|
+
var onPress = _ref2.onPress,
|
|
37051
|
+
onLayout = _ref2.onLayout,
|
|
37052
|
+
style = _ref2.style,
|
|
37053
|
+
children = _ref2.children,
|
|
37054
|
+
prefix = _ref2.prefix,
|
|
37055
|
+
suffix = _ref2.suffix,
|
|
37056
|
+
props = _objectWithoutProperties(_ref2, _excluded);
|
|
37057
|
+
var _React$useState = React__default.useState(0),
|
|
37058
|
+
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
37059
|
+
width = _React$useState2[0],
|
|
37060
|
+
setWidth = _React$useState2[1];
|
|
37061
|
+
var onWrapperLayout = function onWrapperLayout(event) {
|
|
37062
|
+
setWidth(event.nativeEvent.layout.width);
|
|
37063
|
+
onLayout === null || onLayout === void 0 || onLayout(event);
|
|
37064
|
+
};
|
|
37065
|
+
return /*#__PURE__*/React__default.createElement(StyledWrapper, _extends$1({}, props, {
|
|
37066
|
+
onLayout: onWrapperLayout,
|
|
37067
|
+
disabled: !onPress,
|
|
37068
|
+
onPress: onPress,
|
|
37069
|
+
style: [style, width > 0 ? {
|
|
37070
|
+
transform: [{
|
|
37071
|
+
translateX: -width / 2
|
|
37072
|
+
}]
|
|
37073
|
+
} : undefined]
|
|
37074
|
+
}), prefix && getPrefixOrSuffix({
|
|
37075
|
+
element: prefix,
|
|
37076
|
+
isPrefix: true
|
|
37077
|
+
}), children, suffix && getPrefixOrSuffix({
|
|
37078
|
+
element: suffix,
|
|
37079
|
+
isPrefix: false
|
|
37080
|
+
}));
|
|
37081
|
+
};
|
|
37082
|
+
|
|
37083
|
+
export { Accordion, Alert, Attachment, index$9 as Avatar, Badge$1 as Badge, BottomNavigation, BottomSheet$1 as BottomSheet, Box, CompoundButton as Button, Calendar, Card$1 as Card, index$8 as Carousel, Checkbox, Chip, Collapse, ContentNavigator, DatePicker, Divider, index$7 as Drawer, Empty, ErrorComponent as Error, FAB, FlatListWithFAB, FloatingIsland, HeroDesignProvider, Icon, Image, List, index$6 as MapPin, PageControl, PinInput, Portal$1 as Portal, Progress, CompoundRadio as Radio, Rate, RefreshControl, index as RichTextEditor, ScrollViewWithFAB, Search, SectionHeading, SectionListWithFAB, index$4 as Select, Skeleton, Slider, Spinner, Success, index$5 as Swipeable, index$3 as Switch, index$2 as Tabs, Tag, TextInput, ThemeProvider, ThemeSwitcher, TimePicker, Toast, index$1 as Toolbar, Typography, eBensSystemPalette, getTheme$1 as getTheme, jobsSystemPalette, scale, swagDarkSystemPalette, swagLightJobsSystemPalette, swagSystemPalette as swagLightSystemPalette, swagSystemPalette$1 as swagSystemPalette, defaultTheme as theme, useAvatarColors, useTheme, walletSystemPalette, withTheme, workSystemPalette };
|