@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/lib/index.js
CHANGED
|
@@ -3980,6 +3980,35 @@ var getMapPinTheme = function getMapPinTheme(theme) {
|
|
|
3980
3980
|
};
|
|
3981
3981
|
};
|
|
3982
3982
|
|
|
3983
|
+
var getFloatingIslandTheme = function getFloatingIslandTheme(theme) {
|
|
3984
|
+
var colors = {
|
|
3985
|
+
wrapperBackground: theme.colors.defaultGlobalSurface
|
|
3986
|
+
};
|
|
3987
|
+
var radii = {
|
|
3988
|
+
wrapper: theme.radii.rounded
|
|
3989
|
+
};
|
|
3990
|
+
var shadows = {
|
|
3991
|
+
wrapper: theme.shadows["default"]
|
|
3992
|
+
};
|
|
3993
|
+
var space = {
|
|
3994
|
+
wrapperPadding: theme.space.small,
|
|
3995
|
+
wrapperTop: theme.space.smallMedium,
|
|
3996
|
+
prefixMarginRight: theme.space.small,
|
|
3997
|
+
suffixMarginLeft: theme.space.medium,
|
|
3998
|
+
iconPadding: theme.space.smallMedium
|
|
3999
|
+
};
|
|
4000
|
+
var fontSizes = {
|
|
4001
|
+
iconSize: theme.fontSizes.medium
|
|
4002
|
+
};
|
|
4003
|
+
return {
|
|
4004
|
+
colors: colors,
|
|
4005
|
+
radii: radii,
|
|
4006
|
+
shadows: shadows,
|
|
4007
|
+
space: space,
|
|
4008
|
+
fontSizes: fontSizes
|
|
4009
|
+
};
|
|
4010
|
+
};
|
|
4011
|
+
|
|
3983
4012
|
var getTheme$1 = function getTheme() {
|
|
3984
4013
|
var scale = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : scale$1;
|
|
3985
4014
|
var systemPallete = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : swagSystemPalette$1;
|
|
@@ -4033,7 +4062,8 @@ var getTheme$1 = function getTheme() {
|
|
|
4033
4062
|
timePicker: getTimePickerTheme(globalTheme),
|
|
4034
4063
|
toast: getToastTheme(globalTheme),
|
|
4035
4064
|
toolbar: getToolbarTheme(globalTheme),
|
|
4036
|
-
typography: getTypographyTheme(globalTheme)
|
|
4065
|
+
typography: getTypographyTheme(globalTheme),
|
|
4066
|
+
floatingIsland: getFloatingIslandTheme(globalTheme)
|
|
4037
4067
|
}
|
|
4038
4068
|
});
|
|
4039
4069
|
};
|
|
@@ -6989,7 +7019,7 @@ var useDeprecation = function useDeprecation(message) {
|
|
|
6989
7019
|
}, [message, cond]);
|
|
6990
7020
|
};
|
|
6991
7021
|
|
|
6992
|
-
var StyledWrapper$
|
|
7022
|
+
var StyledWrapper$e = index$a(reactNative.Animated.View)({
|
|
6993
7023
|
margin: 0,
|
|
6994
7024
|
padding: 0,
|
|
6995
7025
|
overflow: 'hidden'
|
|
@@ -7043,7 +7073,7 @@ var Collapse = function Collapse(_ref) {
|
|
|
7043
7073
|
setComponentMounted(true);
|
|
7044
7074
|
onLayout === null || onLayout === void 0 || onLayout(e);
|
|
7045
7075
|
}, []);
|
|
7046
|
-
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$
|
|
7076
|
+
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$e, {
|
|
7047
7077
|
style: {
|
|
7048
7078
|
height: open ? contentHeight : 0
|
|
7049
7079
|
},
|
|
@@ -7057,7 +7087,7 @@ var Collapse = function Collapse(_ref) {
|
|
|
7057
7087
|
}, children)));
|
|
7058
7088
|
};
|
|
7059
7089
|
|
|
7060
|
-
var StyledWrapper$
|
|
7090
|
+
var StyledWrapper$d = index$a(reactNative.View)(function () {
|
|
7061
7091
|
return {};
|
|
7062
7092
|
});
|
|
7063
7093
|
var StyledItemWrapper$1 = index$a(reactNative.View)(function (_ref) {
|
|
@@ -7110,7 +7140,7 @@ var StyledText$3 = index$a(reactNative.Text)(function (_ref) {
|
|
|
7110
7140
|
});
|
|
7111
7141
|
});
|
|
7112
7142
|
|
|
7113
|
-
var _excluded$
|
|
7143
|
+
var _excluded$K = ["children", "fontSize", "fontWeight", "intent", "typeface", "allowFontScaling"];
|
|
7114
7144
|
var Text = function Text(_ref) {
|
|
7115
7145
|
var children = _ref.children,
|
|
7116
7146
|
_ref$fontSize = _ref.fontSize,
|
|
@@ -7123,7 +7153,7 @@ var Text = function Text(_ref) {
|
|
|
7123
7153
|
typeface = _ref$typeface === void 0 ? 'neutral' : _ref$typeface,
|
|
7124
7154
|
_ref$allowFontScaling = _ref.allowFontScaling,
|
|
7125
7155
|
allowFontScaling = _ref$allowFontScaling === void 0 ? false : _ref$allowFontScaling,
|
|
7126
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
7156
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$K);
|
|
7127
7157
|
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.');
|
|
7128
7158
|
return /*#__PURE__*/React__namespace.default.createElement(StyledText$3, _extends$1({}, nativeProps, {
|
|
7129
7159
|
themeFontSize: fontSize,
|
|
@@ -7153,7 +7183,7 @@ var StyledCaption = index$a(reactNative.Text)(function (_ref) {
|
|
|
7153
7183
|
};
|
|
7154
7184
|
});
|
|
7155
7185
|
|
|
7156
|
-
var _excluded$
|
|
7186
|
+
var _excluded$J = ["children", "fontWeight", "intent", "allowFontScaling"];
|
|
7157
7187
|
var Caption = function Caption(_ref) {
|
|
7158
7188
|
var children = _ref.children,
|
|
7159
7189
|
_ref$fontWeight = _ref.fontWeight,
|
|
@@ -7162,7 +7192,7 @@ var Caption = function Caption(_ref) {
|
|
|
7162
7192
|
intent = _ref$intent === void 0 ? 'body' : _ref$intent,
|
|
7163
7193
|
_ref$allowFontScaling = _ref.allowFontScaling,
|
|
7164
7194
|
allowFontScaling = _ref$allowFontScaling === void 0 ? false : _ref$allowFontScaling,
|
|
7165
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
7195
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$J);
|
|
7166
7196
|
return /*#__PURE__*/React__namespace.default.createElement(StyledCaption, _extends$1({}, nativeProps, {
|
|
7167
7197
|
themeFontWeight: fontWeight,
|
|
7168
7198
|
themeIntent: intent,
|
|
@@ -7181,14 +7211,14 @@ var StyledLabel$1 = index$a(reactNative.Text)(function (_ref) {
|
|
|
7181
7211
|
};
|
|
7182
7212
|
});
|
|
7183
7213
|
|
|
7184
|
-
var _excluded$
|
|
7214
|
+
var _excluded$I = ["children", "intent", "allowFontScaling"];
|
|
7185
7215
|
var Label = function Label(_ref) {
|
|
7186
7216
|
var children = _ref.children,
|
|
7187
7217
|
_ref$intent = _ref.intent,
|
|
7188
7218
|
intent = _ref$intent === void 0 ? 'body' : _ref$intent,
|
|
7189
7219
|
_ref$allowFontScaling = _ref.allowFontScaling,
|
|
7190
7220
|
allowFontScaling = _ref$allowFontScaling === void 0 ? false : _ref$allowFontScaling,
|
|
7191
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
7221
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$I);
|
|
7192
7222
|
return /*#__PURE__*/React__namespace.default.createElement(StyledLabel$1, _extends$1({}, nativeProps, {
|
|
7193
7223
|
themeIntent: intent,
|
|
7194
7224
|
allowFontScaling: allowFontScaling
|
|
@@ -7209,7 +7239,7 @@ var StyledTitle$1 = index$a(reactNative.Text)(function (_ref) {
|
|
|
7209
7239
|
};
|
|
7210
7240
|
});
|
|
7211
7241
|
|
|
7212
|
-
var _excluded$
|
|
7242
|
+
var _excluded$H = ["children", "intent", "allowFontScaling", "level", "typeface"];
|
|
7213
7243
|
var Title = function Title(_ref) {
|
|
7214
7244
|
var children = _ref.children,
|
|
7215
7245
|
_ref$intent = _ref.intent,
|
|
@@ -7220,7 +7250,7 @@ var Title = function Title(_ref) {
|
|
|
7220
7250
|
level = _ref$level === void 0 ? 'h1' : _ref$level,
|
|
7221
7251
|
_ref$typeface = _ref.typeface,
|
|
7222
7252
|
typeface = _ref$typeface === void 0 ? 'neutral' : _ref$typeface,
|
|
7223
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
7253
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$H);
|
|
7224
7254
|
return /*#__PURE__*/React__namespace.default.createElement(StyledTitle$1, _extends$1({}, nativeProps, {
|
|
7225
7255
|
themeLevel: level,
|
|
7226
7256
|
themeTypeface: typeface,
|
|
@@ -7255,7 +7285,7 @@ var StyledBody$1 = index$a(reactNative.Text)(function (_ref) {
|
|
|
7255
7285
|
};
|
|
7256
7286
|
});
|
|
7257
7287
|
|
|
7258
|
-
var _excluded$
|
|
7288
|
+
var _excluded$G = ["children", "intent", "allowFontScaling", "typeface", "variant"];
|
|
7259
7289
|
var Body = function Body(_ref) {
|
|
7260
7290
|
var children = _ref.children,
|
|
7261
7291
|
_ref$intent = _ref.intent,
|
|
@@ -7266,7 +7296,7 @@ var Body = function Body(_ref) {
|
|
|
7266
7296
|
typeface = _ref$typeface === void 0 ? 'neutral' : _ref$typeface,
|
|
7267
7297
|
_ref$variant = _ref.variant,
|
|
7268
7298
|
variant = _ref$variant === void 0 ? 'regular' : _ref$variant,
|
|
7269
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
7299
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$G);
|
|
7270
7300
|
return /*#__PURE__*/React__namespace.default.createElement(StyledBody$1, _extends$1({}, nativeProps, {
|
|
7271
7301
|
themeTypeface: typeface,
|
|
7272
7302
|
themeIntent: intent,
|
|
@@ -7284,7 +7314,7 @@ var Typography = {
|
|
|
7284
7314
|
};
|
|
7285
7315
|
|
|
7286
7316
|
// 🔴 DO NOT EDIT — This file is generated automatically.
|
|
7287
|
-
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'];
|
|
7317
|
+
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'];
|
|
7288
7318
|
|
|
7289
7319
|
var activate = 59000;
|
|
7290
7320
|
var adjustment = 59003;
|
|
@@ -7308,74 +7338,74 @@ var contacts = 59050;
|
|
|
7308
7338
|
var diamond = 59052;
|
|
7309
7339
|
var directory = 59054;
|
|
7310
7340
|
var document$1 = 59055;
|
|
7311
|
-
var envelope =
|
|
7312
|
-
var exclude =
|
|
7313
|
-
var expense =
|
|
7314
|
-
var explore_nearby =
|
|
7315
|
-
var eye =
|
|
7316
|
-
var feed =
|
|
7317
|
-
var feedbacks =
|
|
7318
|
-
var file =
|
|
7319
|
-
var filter =
|
|
7320
|
-
var folder =
|
|
7321
|
-
var globe =
|
|
7322
|
-
var graph =
|
|
7323
|
-
var heart =
|
|
7324
|
-
var home =
|
|
7325
|
-
var image =
|
|
7326
|
-
var instapay =
|
|
7327
|
-
var list =
|
|
7328
|
-
var loading =
|
|
7329
|
-
var location =
|
|
7330
|
-
var lock =
|
|
7331
|
-
var menu =
|
|
7332
|
-
var moneybag =
|
|
7333
|
-
var moon =
|
|
7334
|
-
var node =
|
|
7335
|
-
var paperclip =
|
|
7336
|
-
var pencil =
|
|
7337
|
-
var phone =
|
|
7338
|
-
var plane =
|
|
7339
|
-
var print =
|
|
7340
|
-
var reply =
|
|
7341
|
-
var reschedule =
|
|
7342
|
-
var rostering =
|
|
7343
|
-
var save =
|
|
7344
|
-
var schedule =
|
|
7345
|
-
var send =
|
|
7346
|
-
var speaker =
|
|
7347
|
-
var star =
|
|
7348
|
-
var stopwatch =
|
|
7349
|
-
var suitcase =
|
|
7350
|
-
var surfing =
|
|
7351
|
-
var survey =
|
|
7352
|
-
var swag =
|
|
7353
|
-
var tag =
|
|
7354
|
-
var target =
|
|
7355
|
-
var teams =
|
|
7356
|
-
var timesheet =
|
|
7357
|
-
var unlock =
|
|
7358
|
-
var user =
|
|
7359
|
-
var wallet =
|
|
7360
|
-
var warning =
|
|
7361
|
-
var add =
|
|
7362
|
-
var bold =
|
|
7363
|
-
var cancel =
|
|
7364
|
-
var checkmark =
|
|
7365
|
-
var italic =
|
|
7366
|
-
var local_mall_outlined =
|
|
7367
|
-
var number =
|
|
7368
|
-
var percentage =
|
|
7369
|
-
var redeem =
|
|
7370
|
-
var refresh =
|
|
7371
|
-
var remove =
|
|
7372
|
-
var restart =
|
|
7373
|
-
var shopping_basket_outlined =
|
|
7374
|
-
var strikethrough =
|
|
7375
|
-
var sync =
|
|
7376
|
-
var transfer =
|
|
7377
|
-
var unavailable =
|
|
7378
|
-
var underline =
|
|
7341
|
+
var envelope = 59060;
|
|
7342
|
+
var exclude = 59061;
|
|
7343
|
+
var expense = 59063;
|
|
7344
|
+
var explore_nearby = 59064;
|
|
7345
|
+
var eye = 59067;
|
|
7346
|
+
var feed = 59071;
|
|
7347
|
+
var feedbacks = 59072;
|
|
7348
|
+
var file = 59090;
|
|
7349
|
+
var filter = 59091;
|
|
7350
|
+
var folder = 59093;
|
|
7351
|
+
var globe = 59103;
|
|
7352
|
+
var graph = 59105;
|
|
7353
|
+
var heart = 59108;
|
|
7354
|
+
var home = 59110;
|
|
7355
|
+
var image = 59111;
|
|
7356
|
+
var instapay = 59116;
|
|
7357
|
+
var list = 59117;
|
|
7358
|
+
var loading = 59119;
|
|
7359
|
+
var location = 59121;
|
|
7360
|
+
var lock = 59122;
|
|
7361
|
+
var menu = 59126;
|
|
7362
|
+
var moneybag = 59128;
|
|
7363
|
+
var moon = 59129;
|
|
7364
|
+
var node = 59133;
|
|
7365
|
+
var paperclip = 59135;
|
|
7366
|
+
var pencil = 59137;
|
|
7367
|
+
var phone = 59138;
|
|
7368
|
+
var plane = 59141;
|
|
7369
|
+
var print = 59143;
|
|
7370
|
+
var reply = 59146;
|
|
7371
|
+
var reschedule = 59147;
|
|
7372
|
+
var rostering = 59148;
|
|
7373
|
+
var save = 59150;
|
|
7374
|
+
var schedule = 59152;
|
|
7375
|
+
var send = 59154;
|
|
7376
|
+
var speaker = 59156;
|
|
7377
|
+
var star = 59161;
|
|
7378
|
+
var stopwatch = 59163;
|
|
7379
|
+
var suitcase = 59164;
|
|
7380
|
+
var surfing = 59165;
|
|
7381
|
+
var survey = 59166;
|
|
7382
|
+
var swag = 59171;
|
|
7383
|
+
var tag = 59174;
|
|
7384
|
+
var target = 59175;
|
|
7385
|
+
var teams = 59176;
|
|
7386
|
+
var timesheet = 59177;
|
|
7387
|
+
var unlock = 59180;
|
|
7388
|
+
var user = 59181;
|
|
7389
|
+
var wallet = 59184;
|
|
7390
|
+
var warning = 59185;
|
|
7391
|
+
var add = 59191;
|
|
7392
|
+
var bold = 59217;
|
|
7393
|
+
var cancel = 59231;
|
|
7394
|
+
var checkmark = 59237;
|
|
7395
|
+
var italic = 59326;
|
|
7396
|
+
var local_mall_outlined = 59333;
|
|
7397
|
+
var number = 59356;
|
|
7398
|
+
var percentage = 59361;
|
|
7399
|
+
var redeem = 59371;
|
|
7400
|
+
var refresh = 59372;
|
|
7401
|
+
var remove = 59373;
|
|
7402
|
+
var restart = 59375;
|
|
7403
|
+
var shopping_basket_outlined = 59389;
|
|
7404
|
+
var strikethrough = 59404;
|
|
7405
|
+
var sync = 59410;
|
|
7406
|
+
var transfer = 59418;
|
|
7407
|
+
var unavailable = 59422;
|
|
7408
|
+
var underline = 59423;
|
|
7379
7409
|
var glyphMap = {
|
|
7380
7410
|
activate: activate,
|
|
7381
7411
|
"add-emoji": 59001,
|
|
@@ -7434,381 +7464,385 @@ var glyphMap = {
|
|
|
7434
7464
|
directory: directory,
|
|
7435
7465
|
document: document$1,
|
|
7436
7466
|
"dollar-coin-shine": 59056,
|
|
7437
|
-
"
|
|
7438
|
-
"
|
|
7467
|
+
"dot-filled": 59057,
|
|
7468
|
+
"double-buildings": 59058,
|
|
7469
|
+
"edit-template": 59059,
|
|
7439
7470
|
envelope: envelope,
|
|
7440
7471
|
exclude: exclude,
|
|
7441
|
-
"expand-content":
|
|
7472
|
+
"expand-content": 59062,
|
|
7442
7473
|
expense: expense,
|
|
7443
7474
|
explore_nearby: explore_nearby,
|
|
7444
|
-
"eye-circle":
|
|
7445
|
-
"eye-invisible":
|
|
7475
|
+
"eye-circle": 59065,
|
|
7476
|
+
"eye-invisible": 59066,
|
|
7446
7477
|
eye: eye,
|
|
7447
|
-
"face-meh":
|
|
7448
|
-
"face-sad":
|
|
7449
|
-
"face-smiley":
|
|
7478
|
+
"face-meh": 59068,
|
|
7479
|
+
"face-sad": 59069,
|
|
7480
|
+
"face-smiley": 59070,
|
|
7450
7481
|
feed: feed,
|
|
7451
7482
|
feedbacks: feedbacks,
|
|
7452
|
-
"file-certified":
|
|
7453
|
-
"file-clone":
|
|
7454
|
-
"file-copy":
|
|
7455
|
-
"file-csv":
|
|
7456
|
-
"file-dispose":
|
|
7457
|
-
"file-doc":
|
|
7458
|
-
"file-excel":
|
|
7459
|
-
"file-export":
|
|
7460
|
-
"file-lock":
|
|
7461
|
-
"file-pdf":
|
|
7462
|
-
"file-powerpoint":
|
|
7463
|
-
"file-search":
|
|
7464
|
-
"file-secured":
|
|
7465
|
-
"file-sheets":
|
|
7466
|
-
"file-slide":
|
|
7467
|
-
"file-verified":
|
|
7468
|
-
"file-word":
|
|
7483
|
+
"file-certified": 59073,
|
|
7484
|
+
"file-clone": 59074,
|
|
7485
|
+
"file-copy": 59075,
|
|
7486
|
+
"file-csv": 59076,
|
|
7487
|
+
"file-dispose": 59077,
|
|
7488
|
+
"file-doc": 59078,
|
|
7489
|
+
"file-excel": 59079,
|
|
7490
|
+
"file-export": 59080,
|
|
7491
|
+
"file-lock": 59081,
|
|
7492
|
+
"file-pdf": 59082,
|
|
7493
|
+
"file-powerpoint": 59083,
|
|
7494
|
+
"file-search": 59084,
|
|
7495
|
+
"file-secured": 59085,
|
|
7496
|
+
"file-sheets": 59086,
|
|
7497
|
+
"file-slide": 59087,
|
|
7498
|
+
"file-verified": 59088,
|
|
7499
|
+
"file-word": 59089,
|
|
7469
7500
|
file: file,
|
|
7470
7501
|
filter: filter,
|
|
7471
|
-
"folder-user":
|
|
7502
|
+
"folder-user": 59092,
|
|
7472
7503
|
folder: folder,
|
|
7473
|
-
"format-bold":
|
|
7474
|
-
"format-heading1":
|
|
7475
|
-
"format-heading2":
|
|
7476
|
-
"format-italic":
|
|
7477
|
-
"format-list-bulleted":
|
|
7478
|
-
"format-list-numbered":
|
|
7479
|
-
"format-underlined":
|
|
7480
|
-
"funnel-filter":
|
|
7481
|
-
"global-dollar":
|
|
7504
|
+
"format-bold": 59094,
|
|
7505
|
+
"format-heading1": 59095,
|
|
7506
|
+
"format-heading2": 59096,
|
|
7507
|
+
"format-italic": 59097,
|
|
7508
|
+
"format-list-bulleted": 59098,
|
|
7509
|
+
"format-list-numbered": 59099,
|
|
7510
|
+
"format-underlined": 59100,
|
|
7511
|
+
"funnel-filter": 59101,
|
|
7512
|
+
"global-dollar": 59102,
|
|
7482
7513
|
globe: globe,
|
|
7483
|
-
"graduation-cap":
|
|
7514
|
+
"graduation-cap": 59104,
|
|
7484
7515
|
graph: graph,
|
|
7485
|
-
"happy-sun":
|
|
7486
|
-
"health-bag":
|
|
7516
|
+
"happy-sun": 59106,
|
|
7517
|
+
"health-bag": 59107,
|
|
7487
7518
|
heart: heart,
|
|
7488
|
-
"hero-points":
|
|
7519
|
+
"hero-points": 59109,
|
|
7489
7520
|
home: home,
|
|
7490
7521
|
image: image,
|
|
7491
|
-
"import":
|
|
7492
|
-
"incident-siren":
|
|
7493
|
-
"instapay-daily":
|
|
7494
|
-
"instapay-now":
|
|
7522
|
+
"import": 59112,
|
|
7523
|
+
"incident-siren": 59113,
|
|
7524
|
+
"instapay-daily": 59114,
|
|
7525
|
+
"instapay-now": 59115,
|
|
7495
7526
|
instapay: instapay,
|
|
7496
7527
|
list: list,
|
|
7497
|
-
"loading-2":
|
|
7528
|
+
"loading-2": 59118,
|
|
7498
7529
|
loading: loading,
|
|
7499
|
-
"location-on":
|
|
7530
|
+
"location-on": 59120,
|
|
7500
7531
|
location: location,
|
|
7501
7532
|
lock: lock,
|
|
7502
|
-
"looks-one":
|
|
7503
|
-
"looks-two":
|
|
7504
|
-
"media-content":
|
|
7533
|
+
"looks-one": 59123,
|
|
7534
|
+
"looks-two": 59124,
|
|
7535
|
+
"media-content": 59125,
|
|
7505
7536
|
menu: menu,
|
|
7506
|
-
"money-notes":
|
|
7537
|
+
"money-notes": 59127,
|
|
7507
7538
|
moneybag: moneybag,
|
|
7508
7539
|
moon: moon,
|
|
7509
|
-
"multiple-stars":
|
|
7510
|
-
"multiple-users":
|
|
7511
|
-
"near-me":
|
|
7540
|
+
"multiple-stars": 59130,
|
|
7541
|
+
"multiple-users": 59131,
|
|
7542
|
+
"near-me": 59132,
|
|
7512
7543
|
node: node,
|
|
7513
|
-
"open-folder":
|
|
7544
|
+
"open-folder": 59134,
|
|
7514
7545
|
paperclip: paperclip,
|
|
7515
|
-
"payment-summary":
|
|
7546
|
+
"payment-summary": 59136,
|
|
7516
7547
|
pencil: pencil,
|
|
7517
7548
|
phone: phone,
|
|
7518
|
-
"piggy-bank":
|
|
7519
|
-
"plane-up":
|
|
7549
|
+
"piggy-bank": 59139,
|
|
7550
|
+
"plane-up": 59140,
|
|
7520
7551
|
plane: plane,
|
|
7521
|
-
"play-circle":
|
|
7552
|
+
"play-circle": 59142,
|
|
7522
7553
|
print: print,
|
|
7523
|
-
"raising-hands":
|
|
7524
|
-
"reply-arrow":
|
|
7554
|
+
"raising-hands": 59144,
|
|
7555
|
+
"reply-arrow": 59145,
|
|
7525
7556
|
reply: reply,
|
|
7526
7557
|
reschedule: reschedule,
|
|
7527
7558
|
rostering: rostering,
|
|
7528
|
-
"salary-sacrifice":
|
|
7559
|
+
"salary-sacrifice": 59149,
|
|
7529
7560
|
save: save,
|
|
7530
|
-
"schedule-send":
|
|
7561
|
+
"schedule-send": 59151,
|
|
7531
7562
|
schedule: schedule,
|
|
7532
|
-
"search-person":
|
|
7563
|
+
"search-person": 59153,
|
|
7533
7564
|
send: send,
|
|
7534
|
-
"speaker-active":
|
|
7565
|
+
"speaker-active": 59155,
|
|
7535
7566
|
speaker: speaker,
|
|
7536
|
-
"star-award":
|
|
7537
|
-
"star-badge":
|
|
7538
|
-
"star-circle":
|
|
7539
|
-
"star-medal":
|
|
7567
|
+
"star-award": 59157,
|
|
7568
|
+
"star-badge": 59158,
|
|
7569
|
+
"star-circle": 59159,
|
|
7570
|
+
"star-medal": 59160,
|
|
7540
7571
|
star: star,
|
|
7541
|
-
"steps-circle":
|
|
7572
|
+
"steps-circle": 59162,
|
|
7542
7573
|
stopwatch: stopwatch,
|
|
7543
7574
|
suitcase: suitcase,
|
|
7544
7575
|
surfing: surfing,
|
|
7545
7576
|
survey: survey,
|
|
7546
|
-
"swag-pillar-benefit":
|
|
7547
|
-
"swag-pillar-career":
|
|
7548
|
-
"swag-pillar-money":
|
|
7549
|
-
"swag-pillar-work":
|
|
7577
|
+
"swag-pillar-benefit": 59167,
|
|
7578
|
+
"swag-pillar-career": 59168,
|
|
7579
|
+
"swag-pillar-money": 59169,
|
|
7580
|
+
"swag-pillar-work": 59170,
|
|
7550
7581
|
swag: swag,
|
|
7551
|
-
"swipe-right":
|
|
7552
|
-
"switch":
|
|
7582
|
+
"swipe-right": 59172,
|
|
7583
|
+
"switch": 59173,
|
|
7553
7584
|
tag: tag,
|
|
7554
7585
|
target: target,
|
|
7555
7586
|
teams: teams,
|
|
7556
7587
|
timesheet: timesheet,
|
|
7557
|
-
"touch-id":
|
|
7558
|
-
"trash-bin":
|
|
7588
|
+
"touch-id": 59178,
|
|
7589
|
+
"trash-bin": 59179,
|
|
7559
7590
|
unlock: unlock,
|
|
7560
7591
|
user: user,
|
|
7561
|
-
"video-1":
|
|
7562
|
-
"video-2":
|
|
7592
|
+
"video-1": 59182,
|
|
7593
|
+
"video-2": 59183,
|
|
7563
7594
|
wallet: wallet,
|
|
7564
7595
|
warning: warning,
|
|
7565
|
-
"activate-outlined":
|
|
7566
|
-
"add-credit-card-outlined":
|
|
7567
|
-
"add-person-outlined":
|
|
7568
|
-
"add-section-outlined":
|
|
7569
|
-
"add-time-outlined":
|
|
7596
|
+
"activate-outlined": 59186,
|
|
7597
|
+
"add-credit-card-outlined": 59187,
|
|
7598
|
+
"add-person-outlined": 59188,
|
|
7599
|
+
"add-section-outlined": 59189,
|
|
7600
|
+
"add-time-outlined": 59190,
|
|
7570
7601
|
add: add,
|
|
7571
|
-
"adjustment-outlined":
|
|
7572
|
-
"
|
|
7573
|
-
"
|
|
7574
|
-
"alignment-outlined":
|
|
7575
|
-
"
|
|
7576
|
-
"
|
|
7577
|
-
"
|
|
7578
|
-
"arrow-
|
|
7579
|
-
"arrow-
|
|
7580
|
-
"arrow-
|
|
7581
|
-
"arrow-
|
|
7582
|
-
"arrow-
|
|
7583
|
-
"arrow-
|
|
7584
|
-
"arrow-
|
|
7585
|
-
"
|
|
7586
|
-
"
|
|
7587
|
-
"
|
|
7588
|
-
"
|
|
7589
|
-
"
|
|
7590
|
-
"bell-outlined":
|
|
7591
|
-
"bell-
|
|
7592
|
-
"
|
|
7593
|
-
"
|
|
7594
|
-
"
|
|
7602
|
+
"adjustment-outlined": 59192,
|
|
7603
|
+
"afternoon-outlined": 59193,
|
|
7604
|
+
"ai-outlined": 59194,
|
|
7605
|
+
"alignment-2-outlined": 59195,
|
|
7606
|
+
"alignment-outlined": 59196,
|
|
7607
|
+
"all-caps": 59197,
|
|
7608
|
+
"application-outlined": 59198,
|
|
7609
|
+
"arrow-down": 59199,
|
|
7610
|
+
"arrow-downwards": 59200,
|
|
7611
|
+
"arrow-left": 59201,
|
|
7612
|
+
"arrow-leftwards": 59202,
|
|
7613
|
+
"arrow-right": 59203,
|
|
7614
|
+
"arrow-rightwards": 59204,
|
|
7615
|
+
"arrow-up": 59205,
|
|
7616
|
+
"arrow-upwards": 59206,
|
|
7617
|
+
"article-outlined": 59207,
|
|
7618
|
+
"at-sign": 59208,
|
|
7619
|
+
"auto-graph-outlined": 59209,
|
|
7620
|
+
"beer-outlined": 59210,
|
|
7621
|
+
"bell-active-outlined": 59211,
|
|
7622
|
+
"bell-outlined": 59212,
|
|
7623
|
+
"bell-slash-outlined": 59213,
|
|
7624
|
+
"bill-management-outlined": 59214,
|
|
7625
|
+
"billing-outlined": 59215,
|
|
7626
|
+
"body-outlined": 59216,
|
|
7595
7627
|
bold: bold,
|
|
7596
|
-
"bolt-outlined":
|
|
7597
|
-
"book-outlined":
|
|
7598
|
-
"bookmark-added-outlined":
|
|
7599
|
-
"bookmark-outlined":
|
|
7600
|
-
"box-check-outlined":
|
|
7601
|
-
"box-outlined":
|
|
7602
|
-
"bullet-points":
|
|
7603
|
-
"cake-outlined":
|
|
7604
|
-
"calendar-dates-outlined":
|
|
7605
|
-
"calendar-star-outlined":
|
|
7606
|
-
"call-outlined":
|
|
7607
|
-
"call-split-outlined":
|
|
7608
|
-
"camera-outlined":
|
|
7628
|
+
"bolt-outlined": 59218,
|
|
7629
|
+
"book-outlined": 59219,
|
|
7630
|
+
"bookmark-added-outlined": 59220,
|
|
7631
|
+
"bookmark-outlined": 59221,
|
|
7632
|
+
"box-check-outlined": 59222,
|
|
7633
|
+
"box-outlined": 59223,
|
|
7634
|
+
"bullet-points": 59224,
|
|
7635
|
+
"cake-outlined": 59225,
|
|
7636
|
+
"calendar-dates-outlined": 59226,
|
|
7637
|
+
"calendar-star-outlined": 59227,
|
|
7638
|
+
"call-outlined": 59228,
|
|
7639
|
+
"call-split-outlined": 59229,
|
|
7640
|
+
"camera-outlined": 59230,
|
|
7609
7641
|
cancel: cancel,
|
|
7610
|
-
"car-forward-outlined":
|
|
7611
|
-
"cashback-outlined":
|
|
7612
|
-
"charging-station-outlined":
|
|
7613
|
-
"chat-bubble-outlined":
|
|
7614
|
-
"chat-unread-outlined":
|
|
7642
|
+
"car-forward-outlined": 59232,
|
|
7643
|
+
"cashback-outlined": 59233,
|
|
7644
|
+
"charging-station-outlined": 59234,
|
|
7645
|
+
"chat-bubble-outlined": 59235,
|
|
7646
|
+
"chat-unread-outlined": 59236,
|
|
7615
7647
|
checkmark: checkmark,
|
|
7616
|
-
"circle-add-outlined":
|
|
7617
|
-
"circle-cancel-outlined":
|
|
7618
|
-
"circle-down-outlined":
|
|
7619
|
-
"circle-info-outlined":
|
|
7620
|
-
"circle-left-outlined":
|
|
7621
|
-
"circle-ok-outlined":
|
|
7622
|
-
"circle-question-outlined":
|
|
7623
|
-
"circle-remove-outlined":
|
|
7624
|
-
"circle-right-outlined":
|
|
7625
|
-
"circle-up-outlined":
|
|
7626
|
-
"circle-warning-outlined":
|
|
7627
|
-
"clock-2-outlined":
|
|
7628
|
-
"clock-in-outlined":
|
|
7629
|
-
"clock-out-outlined":
|
|
7630
|
-
"clock-outlined":
|
|
7631
|
-
"cog-outlined":
|
|
7632
|
-
"coin-outlined":
|
|
7633
|
-
"coin-super-outlined":
|
|
7634
|
-
"comment-outlined":
|
|
7635
|
-
"contacts-outlined":
|
|
7636
|
-
"contacts-user-outlined":
|
|
7637
|
-
"credit-card-outlined":
|
|
7638
|
-
"cup-outlined":
|
|
7639
|
-
"dentistry-outlined":
|
|
7640
|
-
"direction-arrows-outlined":
|
|
7641
|
-
"directory-outlined":
|
|
7642
|
-
"document-outlined":
|
|
7643
|
-
"dollar-box-outlined":
|
|
7644
|
-
"dollar-card-outlined":
|
|
7645
|
-
"dollar-coin-shine-outlined":
|
|
7646
|
-
"dollar-credit-card-outlined":
|
|
7647
|
-
"dollar-sign":
|
|
7648
|
-
"double-buildings-outlined":
|
|
7649
|
-
"double-left-arrows":
|
|
7650
|
-
"double-right-arrows":
|
|
7651
|
-
"download-box-outlined":
|
|
7652
|
-
"download-outlined":
|
|
7653
|
-
"edit-template-outlined":
|
|
7654
|
-
"email-outlined":
|
|
7655
|
-
"end-break-outlined":
|
|
7656
|
-
"enter-arrow":
|
|
7657
|
-
"envelope-outlined":
|
|
7658
|
-
"
|
|
7659
|
-
"expense-outlined":
|
|
7660
|
-
"
|
|
7661
|
-
"
|
|
7662
|
-
"
|
|
7663
|
-
"
|
|
7664
|
-
"eye-outlined":
|
|
7665
|
-
"
|
|
7666
|
-
"face-
|
|
7667
|
-
"face-
|
|
7668
|
-
"face-
|
|
7669
|
-
"face-
|
|
7670
|
-
"
|
|
7671
|
-
"
|
|
7672
|
-
"
|
|
7673
|
-
"file-
|
|
7674
|
-
"file-
|
|
7675
|
-
"file-
|
|
7676
|
-
"file-
|
|
7677
|
-
"file-dollar-outlined":
|
|
7678
|
-
"file-
|
|
7679
|
-
"file-
|
|
7680
|
-
"file-
|
|
7681
|
-
"file-outlined":
|
|
7682
|
-
"file-
|
|
7683
|
-
"file-
|
|
7684
|
-
"file-
|
|
7685
|
-
"file-
|
|
7686
|
-
"
|
|
7687
|
-
"
|
|
7688
|
-
"folder-
|
|
7689
|
-
"
|
|
7690
|
-
"
|
|
7691
|
-
"
|
|
7692
|
-
"
|
|
7693
|
-
"
|
|
7694
|
-
"
|
|
7695
|
-
"
|
|
7696
|
-
"
|
|
7697
|
-
"
|
|
7698
|
-
"home-outlined":
|
|
7699
|
-
"
|
|
7700
|
-
"
|
|
7701
|
-
"
|
|
7702
|
-
"
|
|
7648
|
+
"circle-add-outlined": 59238,
|
|
7649
|
+
"circle-cancel-outlined": 59239,
|
|
7650
|
+
"circle-down-outlined": 59240,
|
|
7651
|
+
"circle-info-outlined": 59241,
|
|
7652
|
+
"circle-left-outlined": 59242,
|
|
7653
|
+
"circle-ok-outlined": 59243,
|
|
7654
|
+
"circle-question-outlined": 59244,
|
|
7655
|
+
"circle-remove-outlined": 59245,
|
|
7656
|
+
"circle-right-outlined": 59246,
|
|
7657
|
+
"circle-up-outlined": 59247,
|
|
7658
|
+
"circle-warning-outlined": 59248,
|
|
7659
|
+
"clock-2-outlined": 59249,
|
|
7660
|
+
"clock-in-outlined": 59250,
|
|
7661
|
+
"clock-out-outlined": 59251,
|
|
7662
|
+
"clock-outlined": 59252,
|
|
7663
|
+
"cog-outlined": 59253,
|
|
7664
|
+
"coin-outlined": 59254,
|
|
7665
|
+
"coin-super-outlined": 59255,
|
|
7666
|
+
"comment-outlined": 59256,
|
|
7667
|
+
"contacts-outlined": 59257,
|
|
7668
|
+
"contacts-user-outlined": 59258,
|
|
7669
|
+
"credit-card-outlined": 59259,
|
|
7670
|
+
"cup-outlined": 59260,
|
|
7671
|
+
"dentistry-outlined": 59261,
|
|
7672
|
+
"direction-arrows-outlined": 59262,
|
|
7673
|
+
"directory-outlined": 59263,
|
|
7674
|
+
"document-outlined": 59264,
|
|
7675
|
+
"dollar-box-outlined": 59265,
|
|
7676
|
+
"dollar-card-outlined": 59266,
|
|
7677
|
+
"dollar-coin-shine-outlined": 59267,
|
|
7678
|
+
"dollar-credit-card-outlined": 59268,
|
|
7679
|
+
"dollar-sign": 59269,
|
|
7680
|
+
"double-buildings-outlined": 59270,
|
|
7681
|
+
"double-left-arrows": 59271,
|
|
7682
|
+
"double-right-arrows": 59272,
|
|
7683
|
+
"download-box-outlined": 59273,
|
|
7684
|
+
"download-outlined": 59274,
|
|
7685
|
+
"edit-template-outlined": 59275,
|
|
7686
|
+
"email-outlined": 59276,
|
|
7687
|
+
"end-break-outlined": 59277,
|
|
7688
|
+
"enter-arrow": 59278,
|
|
7689
|
+
"envelope-outlined": 59279,
|
|
7690
|
+
"evening-outlined": 59280,
|
|
7691
|
+
"expense-approval-outlined": 59281,
|
|
7692
|
+
"expense-outlined": 59282,
|
|
7693
|
+
"explore-outlined": 59283,
|
|
7694
|
+
"extension-outlined": 59284,
|
|
7695
|
+
"external-link": 59285,
|
|
7696
|
+
"eye-invisible-outlined": 59286,
|
|
7697
|
+
"eye-outlined": 59287,
|
|
7698
|
+
"face-id": 59288,
|
|
7699
|
+
"face-meh-outlined": 59289,
|
|
7700
|
+
"face-open-smiley-outlined": 59290,
|
|
7701
|
+
"face-sad-outlined": 59291,
|
|
7702
|
+
"face-smiley-outlined": 59292,
|
|
7703
|
+
"fastfood-outlined": 59293,
|
|
7704
|
+
"feed-outlined": 59294,
|
|
7705
|
+
"file-certified-outlined": 59295,
|
|
7706
|
+
"file-clone-outlined": 59296,
|
|
7707
|
+
"file-copy-outlined": 59297,
|
|
7708
|
+
"file-dispose-outlined": 59298,
|
|
7709
|
+
"file-dollar-certified-outlined": 59299,
|
|
7710
|
+
"file-dollar-outlined": 59300,
|
|
7711
|
+
"file-download-outlined": 59301,
|
|
7712
|
+
"file-export-outlined": 59302,
|
|
7713
|
+
"file-lock-outlined": 59303,
|
|
7714
|
+
"file-outlined": 59304,
|
|
7715
|
+
"file-search-outlined": 59305,
|
|
7716
|
+
"file-secured-outlined": 59306,
|
|
7717
|
+
"file-statutory-outlined": 59307,
|
|
7718
|
+
"file-verified-outlined": 59308,
|
|
7719
|
+
"filter-outlined": 59309,
|
|
7720
|
+
"folder-outlined": 59310,
|
|
7721
|
+
"folder-user-outlined": 59311,
|
|
7722
|
+
"form-outlined": 59312,
|
|
7723
|
+
"funnel-filter-outline": 59313,
|
|
7724
|
+
"goal-outlined": 59314,
|
|
7725
|
+
"graph-outlined": 59315,
|
|
7726
|
+
"hand-holding-user-outlined": 59316,
|
|
7727
|
+
"happy-sun-outlined": 59317,
|
|
7728
|
+
"health-bag-outlined": 59318,
|
|
7729
|
+
"heart-outlined": 59319,
|
|
7730
|
+
"home-active-outlined": 59320,
|
|
7731
|
+
"home-outlined": 59321,
|
|
7732
|
+
"id-card-outlined": 59322,
|
|
7733
|
+
"image-outlined": 59323,
|
|
7734
|
+
"import-outlined": 59324,
|
|
7735
|
+
"instapay-outlined": 59325,
|
|
7703
7736
|
italic: italic,
|
|
7704
|
-
"job-search-outlined":
|
|
7705
|
-
"leave-approval-outlined":
|
|
7706
|
-
"link-1":
|
|
7707
|
-
"link-2":
|
|
7708
|
-
"list-outlined":
|
|
7709
|
-
"live-help-outlined":
|
|
7737
|
+
"job-search-outlined": 59327,
|
|
7738
|
+
"leave-approval-outlined": 59328,
|
|
7739
|
+
"link-1": 59329,
|
|
7740
|
+
"link-2": 59330,
|
|
7741
|
+
"list-outlined": 59331,
|
|
7742
|
+
"live-help-outlined": 59332,
|
|
7710
7743
|
local_mall_outlined: local_mall_outlined,
|
|
7711
|
-
"location-on-outlined":
|
|
7712
|
-
"location-outlined":
|
|
7713
|
-
"lock-outlined":
|
|
7714
|
-
"locked-file-outlined":
|
|
7715
|
-
"log-out":
|
|
7716
|
-
"mail-outlined":
|
|
7717
|
-
"map-outlined":
|
|
7718
|
-
"media-content-outlined":
|
|
7719
|
-
"menu-close":
|
|
7720
|
-
"menu-expand":
|
|
7721
|
-
"menu-fold-outlined":
|
|
7722
|
-
"menu-unfold-outlined":
|
|
7723
|
-
"moneybag-outlined":
|
|
7724
|
-
"moon-outlined":
|
|
7725
|
-
"more-horizontal":
|
|
7726
|
-
"more-vertical":
|
|
7727
|
-
"
|
|
7728
|
-
"multiple-
|
|
7729
|
-
"
|
|
7730
|
-
"
|
|
7731
|
-
"
|
|
7744
|
+
"location-on-outlined": 59334,
|
|
7745
|
+
"location-outlined": 59335,
|
|
7746
|
+
"lock-outlined": 59336,
|
|
7747
|
+
"locked-file-outlined": 59337,
|
|
7748
|
+
"log-out": 59338,
|
|
7749
|
+
"mail-outlined": 59339,
|
|
7750
|
+
"map-outlined": 59340,
|
|
7751
|
+
"media-content-outlined": 59341,
|
|
7752
|
+
"menu-close": 59342,
|
|
7753
|
+
"menu-expand": 59343,
|
|
7754
|
+
"menu-fold-outlined": 59344,
|
|
7755
|
+
"menu-unfold-outlined": 59345,
|
|
7756
|
+
"moneybag-outlined": 59346,
|
|
7757
|
+
"moon-outlined": 59347,
|
|
7758
|
+
"more-horizontal": 59348,
|
|
7759
|
+
"more-vertical": 59349,
|
|
7760
|
+
"morning-outlined": 59350,
|
|
7761
|
+
"multiple-folders-outlined": 59351,
|
|
7762
|
+
"multiple-users-outlined": 59352,
|
|
7763
|
+
"near-me-outlined": 59353,
|
|
7764
|
+
"node-outlined": 59354,
|
|
7765
|
+
"number-points": 59355,
|
|
7732
7766
|
number: number,
|
|
7733
|
-
"overview-outlined":
|
|
7734
|
-
"payment-summary-outlined":
|
|
7735
|
-
"payslip-outlined":
|
|
7736
|
-
"pencil-outlined":
|
|
7767
|
+
"overview-outlined": 59357,
|
|
7768
|
+
"payment-summary-outlined": 59358,
|
|
7769
|
+
"payslip-outlined": 59359,
|
|
7770
|
+
"pencil-outlined": 59360,
|
|
7737
7771
|
percentage: percentage,
|
|
7738
|
-
"phone-outlined":
|
|
7739
|
-
"piggy-bank-outlined":
|
|
7740
|
-
"plane-outlined":
|
|
7741
|
-
"play-circle-outlined":
|
|
7742
|
-
"print-outlined":
|
|
7743
|
-
"propane-tank-outlined":
|
|
7744
|
-
"qr-code-outlined":
|
|
7745
|
-
"qualification-outlined":
|
|
7746
|
-
"re-assign":
|
|
7772
|
+
"phone-outlined": 59362,
|
|
7773
|
+
"piggy-bank-outlined": 59363,
|
|
7774
|
+
"plane-outlined": 59364,
|
|
7775
|
+
"play-circle-outlined": 59365,
|
|
7776
|
+
"print-outlined": 59366,
|
|
7777
|
+
"propane-tank-outlined": 59367,
|
|
7778
|
+
"qr-code-outlined": 59368,
|
|
7779
|
+
"qualification-outlined": 59369,
|
|
7780
|
+
"re-assign": 59370,
|
|
7747
7781
|
redeem: redeem,
|
|
7748
7782
|
refresh: refresh,
|
|
7749
7783
|
remove: remove,
|
|
7750
|
-
"reply-outlined":
|
|
7784
|
+
"reply-outlined": 59374,
|
|
7751
7785
|
restart: restart,
|
|
7752
|
-
"resume-outlined":
|
|
7753
|
-
"return-arrow":
|
|
7754
|
-
"rostering-outlined":
|
|
7755
|
-
"safety-outlined":
|
|
7756
|
-
"save-outlined":
|
|
7757
|
-
"schedule-outlined":
|
|
7758
|
-
"search-outlined":
|
|
7759
|
-
"search-secured-outlined":
|
|
7760
|
-
"send-outlined":
|
|
7761
|
-
"share-1":
|
|
7762
|
-
"share-2":
|
|
7763
|
-
"share-outlined-2":
|
|
7764
|
-
"share-outlined":
|
|
7786
|
+
"resume-outlined": 59376,
|
|
7787
|
+
"return-arrow": 59377,
|
|
7788
|
+
"rostering-outlined": 59378,
|
|
7789
|
+
"safety-outlined": 59379,
|
|
7790
|
+
"save-outlined": 59380,
|
|
7791
|
+
"schedule-outlined": 59381,
|
|
7792
|
+
"search-outlined": 59382,
|
|
7793
|
+
"search-secured-outlined": 59383,
|
|
7794
|
+
"send-outlined": 59384,
|
|
7795
|
+
"share-1": 59385,
|
|
7796
|
+
"share-2": 59386,
|
|
7797
|
+
"share-outlined-2": 59387,
|
|
7798
|
+
"share-outlined": 59388,
|
|
7765
7799
|
shopping_basket_outlined: shopping_basket_outlined,
|
|
7766
|
-
"show-chart-outlined":
|
|
7767
|
-
"single-down-arrow":
|
|
7768
|
-
"single-left-arrow":
|
|
7769
|
-
"single-right-arrow":
|
|
7770
|
-
"single-up-arrow":
|
|
7771
|
-
"smart-match-outlined":
|
|
7772
|
-
"sparkle-outlined":
|
|
7773
|
-
"speaker-active-outlined":
|
|
7774
|
-
"speaker-outlined":
|
|
7775
|
-
"star-circle-outlined":
|
|
7776
|
-
"star-outlined":
|
|
7777
|
-
"start-break-outlined":
|
|
7778
|
-
"stash-outlined":
|
|
7779
|
-
"stopwatch-outlined":
|
|
7800
|
+
"show-chart-outlined": 59390,
|
|
7801
|
+
"single-down-arrow": 59391,
|
|
7802
|
+
"single-left-arrow": 59392,
|
|
7803
|
+
"single-right-arrow": 59393,
|
|
7804
|
+
"single-up-arrow": 59394,
|
|
7805
|
+
"smart-match-outlined": 59395,
|
|
7806
|
+
"sparkle-outlined": 59396,
|
|
7807
|
+
"speaker-active-outlined": 59397,
|
|
7808
|
+
"speaker-outlined": 59398,
|
|
7809
|
+
"star-circle-outlined": 59399,
|
|
7810
|
+
"star-outlined": 59400,
|
|
7811
|
+
"start-break-outlined": 59401,
|
|
7812
|
+
"stash-outlined": 59402,
|
|
7813
|
+
"stopwatch-outlined": 59403,
|
|
7780
7814
|
strikethrough: strikethrough,
|
|
7781
|
-
"styler-outlined":
|
|
7782
|
-
"suitcase-clock-outlined":
|
|
7783
|
-
"suitcase-outlined":
|
|
7784
|
-
"survey-outlined":
|
|
7785
|
-
"switch-outlined":
|
|
7815
|
+
"styler-outlined": 59405,
|
|
7816
|
+
"suitcase-clock-outlined": 59406,
|
|
7817
|
+
"suitcase-outlined": 59407,
|
|
7818
|
+
"survey-outlined": 59408,
|
|
7819
|
+
"switch-outlined": 59409,
|
|
7786
7820
|
sync: sync,
|
|
7787
|
-
"tag-outlined":
|
|
7788
|
-
"target-outlined":
|
|
7789
|
-
"tennis-outlined":
|
|
7790
|
-
"ticket-outlined":
|
|
7791
|
-
"timesheet-outlined":
|
|
7792
|
-
"timesheets-outlined":
|
|
7793
|
-
"today-outlined":
|
|
7821
|
+
"tag-outlined": 59411,
|
|
7822
|
+
"target-outlined": 59412,
|
|
7823
|
+
"tennis-outlined": 59413,
|
|
7824
|
+
"ticket-outlined": 59414,
|
|
7825
|
+
"timesheet-outlined": 59415,
|
|
7826
|
+
"timesheets-outlined": 59416,
|
|
7827
|
+
"today-outlined": 59417,
|
|
7794
7828
|
transfer: transfer,
|
|
7795
|
-
"trash-bin-outlined":
|
|
7796
|
-
"umbrela-outlined":
|
|
7797
|
-
"unavailability-outlined":
|
|
7829
|
+
"trash-bin-outlined": 59419,
|
|
7830
|
+
"umbrela-outlined": 59420,
|
|
7831
|
+
"unavailability-outlined": 59421,
|
|
7798
7832
|
unavailable: unavailable,
|
|
7799
7833
|
underline: underline,
|
|
7800
|
-
"union-outlined":
|
|
7801
|
-
"unlock-outlined":
|
|
7802
|
-
"upload-outlined":
|
|
7803
|
-
"user-circle-outlined":
|
|
7804
|
-
"user-gear-outlined":
|
|
7805
|
-
"user-outlined":
|
|
7806
|
-
"user-rectangle-outlined":
|
|
7807
|
-
"video-1-outlined":
|
|
7808
|
-
"video-2-outlined":
|
|
7809
|
-
"volunteer-outlined":
|
|
7810
|
-
"wallet-outlined":
|
|
7811
|
-
"wellness-outlined":
|
|
7834
|
+
"union-outlined": 59424,
|
|
7835
|
+
"unlock-outlined": 59425,
|
|
7836
|
+
"upload-outlined": 59426,
|
|
7837
|
+
"user-circle-outlined": 59427,
|
|
7838
|
+
"user-gear-outlined": 59428,
|
|
7839
|
+
"user-outlined": 59429,
|
|
7840
|
+
"user-rectangle-outlined": 59430,
|
|
7841
|
+
"video-1-outlined": 59431,
|
|
7842
|
+
"video-2-outlined": 59432,
|
|
7843
|
+
"volunteer-outlined": 59433,
|
|
7844
|
+
"wallet-outlined": 59434,
|
|
7845
|
+
"wellness-outlined": 59435
|
|
7812
7846
|
};
|
|
7813
7847
|
|
|
7814
7848
|
var HeroIcon = reactNativeVectorIcons.createIconSet(glyphMap, 'hero-icons-mobile', 'hero-icons-mobile.ttf');
|
|
@@ -7834,10 +7868,10 @@ var StyledHeroIcon = index$a(HeroIcon)(function (_ref) {
|
|
|
7834
7868
|
};
|
|
7835
7869
|
});
|
|
7836
7870
|
|
|
7837
|
-
var _excluded$
|
|
7871
|
+
var _excluded$F = ["style"];
|
|
7838
7872
|
var AnimatedIcon = function AnimatedIcon(_ref) {
|
|
7839
7873
|
var style = _ref.style,
|
|
7840
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
7874
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$F);
|
|
7841
7875
|
var rotateAnimation = React.useRef(new reactNative.Animated.Value(0));
|
|
7842
7876
|
React.useEffect(function () {
|
|
7843
7877
|
var animation = reactNative.Animated.loop(reactNative.Animated.timing(rotateAnimation.current, {
|
|
@@ -7942,7 +7976,7 @@ var AccordionItem = function AccordionItem(_ref) {
|
|
|
7942
7976
|
}, content));
|
|
7943
7977
|
};
|
|
7944
7978
|
|
|
7945
|
-
var _excluded$
|
|
7979
|
+
var _excluded$E = ["key"];
|
|
7946
7980
|
var Accordion = function Accordion(_ref) {
|
|
7947
7981
|
var items = _ref.items,
|
|
7948
7982
|
activeItemKey = _ref.activeItemKey,
|
|
@@ -7958,12 +7992,12 @@ var Accordion = function Accordion(_ref) {
|
|
|
7958
7992
|
_usePropsOrInternalSt2 = _slicedToArray(_usePropsOrInternalSt, 2),
|
|
7959
7993
|
_activeItemKey = _usePropsOrInternalSt2[0],
|
|
7960
7994
|
_onItemPress = _usePropsOrInternalSt2[1];
|
|
7961
|
-
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$
|
|
7995
|
+
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$d, {
|
|
7962
7996
|
style: style,
|
|
7963
7997
|
testID: testID
|
|
7964
7998
|
}, items.map(function (_ref2, index) {
|
|
7965
7999
|
var key = _ref2.key,
|
|
7966
|
-
props = _objectWithoutProperties(_ref2, _excluded$
|
|
8000
|
+
props = _objectWithoutProperties(_ref2, _excluded$E);
|
|
7967
8001
|
var open = _activeItemKey === key;
|
|
7968
8002
|
return /*#__PURE__*/React__namespace.default.createElement(React__namespace.default.Fragment, {
|
|
7969
8003
|
key: key
|
|
@@ -7998,7 +8032,7 @@ var IconContainer$1 = index$a(reactNative.View)(function (_ref2) {
|
|
|
7998
8032
|
paddingLeft: theme.__hd__.alert.space.iconLeftPadding
|
|
7999
8033
|
};
|
|
8000
8034
|
});
|
|
8001
|
-
var StyledIcon$
|
|
8035
|
+
var StyledIcon$3 = index$a(Icon)(function (_ref3) {
|
|
8002
8036
|
var theme = _ref3.theme,
|
|
8003
8037
|
themeIntent = _ref3.themeIntent;
|
|
8004
8038
|
return {
|
|
@@ -8057,7 +8091,7 @@ var AlertIcon = function AlertIcon(_ref) {
|
|
|
8057
8091
|
intent = _ref.intent;
|
|
8058
8092
|
return icon ? /*#__PURE__*/React__namespace.default.createElement(IconContainer$1, {
|
|
8059
8093
|
testID: "alert-left-icon"
|
|
8060
|
-
}, /*#__PURE__*/React__namespace.default.createElement(StyledIcon$
|
|
8094
|
+
}, /*#__PURE__*/React__namespace.default.createElement(StyledIcon$3, {
|
|
8061
8095
|
icon: icon,
|
|
8062
8096
|
size: "small",
|
|
8063
8097
|
themeIntent: intent
|
|
@@ -8098,7 +8132,7 @@ var Alert = function Alert(_ref2) {
|
|
|
8098
8132
|
}, typeof actionLabel === 'string' ? /*#__PURE__*/React__namespace.default.createElement(StyledBody, {
|
|
8099
8133
|
variant: "small-bold",
|
|
8100
8134
|
themeIntent: intent
|
|
8101
|
-
}, actionLabel) : /*#__PURE__*/React__namespace.default.createElement(StyledIcon$
|
|
8135
|
+
}, actionLabel) : /*#__PURE__*/React__namespace.default.createElement(StyledIcon$3, {
|
|
8102
8136
|
icon: "cancel",
|
|
8103
8137
|
size: "small",
|
|
8104
8138
|
themeIntent: intent
|
|
@@ -8173,7 +8207,7 @@ var Attachment = function Attachment(_ref) {
|
|
|
8173
8207
|
})) : null);
|
|
8174
8208
|
};
|
|
8175
8209
|
|
|
8176
|
-
var StyledWrapper$
|
|
8210
|
+
var StyledWrapper$c = index$a(reactNative.TouchableOpacity)(function (_ref) {
|
|
8177
8211
|
var themeSize = _ref.themeSize,
|
|
8178
8212
|
themeIntent = _ref.themeIntent,
|
|
8179
8213
|
theme = _ref.theme;
|
|
@@ -8242,7 +8276,7 @@ var Avatar = function Avatar(_ref) {
|
|
|
8242
8276
|
hasImageError = _useState2[0],
|
|
8243
8277
|
setHasImageError = _useState2[1];
|
|
8244
8278
|
if (title === undefined && source === undefined) return null;
|
|
8245
|
-
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$
|
|
8279
|
+
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$c, {
|
|
8246
8280
|
testID: testID,
|
|
8247
8281
|
onPress: onPress,
|
|
8248
8282
|
disabled: onPress === undefined,
|
|
@@ -8457,7 +8491,7 @@ var borderWidths = {
|
|
|
8457
8491
|
var config = _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({}, colors), space), radii), borderWidths);
|
|
8458
8492
|
var flexPropsKey = ['alignContent', 'alignItems', 'alignSelf', 'display', 'flex', 'flexBasis', 'flexDirection', 'flexGrow', 'flexShrink', 'flexWrap', 'justifyContent'];
|
|
8459
8493
|
|
|
8460
|
-
var _excluded$
|
|
8494
|
+
var _excluded$D = ["theme"];
|
|
8461
8495
|
var getThemeValue = function getThemeValue(theme, key, props) {
|
|
8462
8496
|
var propConfig = config[key];
|
|
8463
8497
|
var propValue = props[key];
|
|
@@ -8484,18 +8518,18 @@ var mapStylePropToThemeValue = function mapStylePropToThemeValue(theme, props) {
|
|
|
8484
8518
|
var configKeys = Object.keys(config);
|
|
8485
8519
|
var StyledBox = index$a(reactNative.View)(function (_ref5) {
|
|
8486
8520
|
var theme = _ref5.theme,
|
|
8487
|
-
otherProps = _objectWithoutProperties(_ref5, _excluded$
|
|
8521
|
+
otherProps = _objectWithoutProperties(_ref5, _excluded$D);
|
|
8488
8522
|
var styleProps = pick(configKeys, otherProps);
|
|
8489
8523
|
var flexProps = pick(_toConsumableArray(flexPropsKey), otherProps);
|
|
8490
8524
|
return _objectSpread2(_objectSpread2({}, mapStylePropToThemeValue(theme, styleProps)), flexProps);
|
|
8491
8525
|
});
|
|
8492
8526
|
|
|
8493
|
-
var _excluded$
|
|
8527
|
+
var _excluded$C = ["children", "style", "testID"];
|
|
8494
8528
|
var Box = function Box(_ref) {
|
|
8495
8529
|
var children = _ref.children,
|
|
8496
8530
|
style = _ref.style,
|
|
8497
8531
|
testID = _ref.testID,
|
|
8498
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
8532
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$C);
|
|
8499
8533
|
return /*#__PURE__*/React__namespace.default.createElement(StyledBox, _extends$1({}, otherProps, {
|
|
8500
8534
|
style: style,
|
|
8501
8535
|
testID: testID
|
|
@@ -8503,7 +8537,7 @@ var Box = function Box(_ref) {
|
|
|
8503
8537
|
};
|
|
8504
8538
|
|
|
8505
8539
|
var VISIBLE_RATIO = 0.7;
|
|
8506
|
-
var StyledWrapper$
|
|
8540
|
+
var StyledWrapper$b = index$a(reactNative.View)(function (_ref) {
|
|
8507
8541
|
var theme = _ref.theme,
|
|
8508
8542
|
themeSize = _ref.themeSize,
|
|
8509
8543
|
themeAvatarCount = _ref.themeAvatarCount,
|
|
@@ -8641,7 +8675,7 @@ var AvatarStack = function AvatarStack(_ref2) {
|
|
|
8641
8675
|
}
|
|
8642
8676
|
return remain;
|
|
8643
8677
|
}();
|
|
8644
|
-
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$
|
|
8678
|
+
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$b, {
|
|
8645
8679
|
themeSize: size,
|
|
8646
8680
|
themeAvatarCount: avatars.length,
|
|
8647
8681
|
themeHasSurplus: remainingAvatar > 0,
|
|
@@ -8716,7 +8750,7 @@ var StyledStatus = index$a(reactNative.Animated.View)(function (_ref3) {
|
|
|
8716
8750
|
borderRadius: theme.radii.rounded
|
|
8717
8751
|
};
|
|
8718
8752
|
});
|
|
8719
|
-
var StyledIcon$
|
|
8753
|
+
var StyledIcon$2 = index$a(Icon)(function (_ref4) {
|
|
8720
8754
|
var themeSize = _ref4.themeSize,
|
|
8721
8755
|
theme = _ref4.theme;
|
|
8722
8756
|
return {
|
|
@@ -8724,7 +8758,7 @@ var StyledIcon$1 = index$a(Icon)(function (_ref4) {
|
|
|
8724
8758
|
};
|
|
8725
8759
|
});
|
|
8726
8760
|
|
|
8727
|
-
var _excluded$
|
|
8761
|
+
var _excluded$B = ["children", "visible", "intent", "style", "testID"];
|
|
8728
8762
|
var Status = function Status(_ref) {
|
|
8729
8763
|
var children = _ref.children,
|
|
8730
8764
|
_ref$visible = _ref.visible,
|
|
@@ -8733,7 +8767,7 @@ var Status = function Status(_ref) {
|
|
|
8733
8767
|
intent = _ref$intent === void 0 ? 'danger' : _ref$intent,
|
|
8734
8768
|
style = _ref.style,
|
|
8735
8769
|
testID = _ref.testID,
|
|
8736
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
8770
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$B);
|
|
8737
8771
|
var _React$useRef = React__namespace.default.useRef(new reactNative.Animated.Value(visible ? 1 : 0)),
|
|
8738
8772
|
opacity = _React$useRef.current;
|
|
8739
8773
|
var isFirstRendering = React__namespace.default.useRef(true);
|
|
@@ -8766,7 +8800,7 @@ var Status = function Status(_ref) {
|
|
|
8766
8800
|
}));
|
|
8767
8801
|
};
|
|
8768
8802
|
|
|
8769
|
-
var _excluded$
|
|
8803
|
+
var _excluded$A = ["content", "visible", "max", "intent", "style", "testID", "size", "variant", "icon"];
|
|
8770
8804
|
var DEFAULT_MAX_NUMBER = 99;
|
|
8771
8805
|
var getPaddingState = function getPaddingState(content) {
|
|
8772
8806
|
return content.length > 1 ? 'wideContent' : 'narrowContent';
|
|
@@ -8786,7 +8820,7 @@ var Badge = function Badge(_ref) {
|
|
|
8786
8820
|
_ref$variant = _ref.variant,
|
|
8787
8821
|
variant = _ref$variant === void 0 ? 'filled' : _ref$variant,
|
|
8788
8822
|
icon = _ref.icon,
|
|
8789
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
8823
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$A);
|
|
8790
8824
|
var _React$useRef = React__namespace.default.useRef(new reactNative.Animated.Value(visible ? 1 : 0)),
|
|
8791
8825
|
opacity = _React$useRef.current;
|
|
8792
8826
|
var isFirstRendering = React__namespace.default.useRef(true);
|
|
@@ -8824,7 +8858,7 @@ var Badge = function Badge(_ref) {
|
|
|
8824
8858
|
}]
|
|
8825
8859
|
}, style],
|
|
8826
8860
|
testID: testID
|
|
8827
|
-
}), isIconBadge ? /*#__PURE__*/React__namespace.default.createElement(StyledIcon$
|
|
8861
|
+
}), isIconBadge ? /*#__PURE__*/React__namespace.default.createElement(StyledIcon$2, {
|
|
8828
8862
|
icon: icon,
|
|
8829
8863
|
themeSize: size,
|
|
8830
8864
|
intent: "text-inverted"
|
|
@@ -8887,7 +8921,7 @@ var StyledBottomBarText = index$a(Typography.Caption)(function (_ref3) {
|
|
|
8887
8921
|
};
|
|
8888
8922
|
});
|
|
8889
8923
|
|
|
8890
|
-
var _excluded$
|
|
8924
|
+
var _excluded$z = ["onTabPress", "renderActiveTabOnly", "selectedTabKey", "tabs"];
|
|
8891
8925
|
var getInactiveIcon = function getInactiveIcon(icon) {
|
|
8892
8926
|
var inactiveIcon = "".concat(icon, "-outlined");
|
|
8893
8927
|
return isHeroIcon(inactiveIcon) ? inactiveIcon : icon;
|
|
@@ -8898,7 +8932,7 @@ var BottomNavigation = function BottomNavigation(_ref) {
|
|
|
8898
8932
|
renderActiveTabOnly = _ref$renderActiveTabO === void 0 ? false : _ref$renderActiveTabO,
|
|
8899
8933
|
selectedTabKey = _ref.selectedTabKey,
|
|
8900
8934
|
tabs = _ref.tabs,
|
|
8901
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
8935
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$z);
|
|
8902
8936
|
var insets = reactNativeSafeAreaContext.useSafeAreaInsets();
|
|
8903
8937
|
/**
|
|
8904
8938
|
* List of loaded tabs, tabs will be loaded when navigated to.
|
|
@@ -8984,13 +9018,13 @@ var StyledDivider = index$a(reactNative.View)(function (_ref) {
|
|
|
8984
9018
|
}, horizontalMargin), verticalMargin);
|
|
8985
9019
|
});
|
|
8986
9020
|
|
|
8987
|
-
var _excluded$
|
|
9021
|
+
var _excluded$y = ["marginHorizontal", "marginVertical", "style", "testID"];
|
|
8988
9022
|
var Divider = function Divider(_ref) {
|
|
8989
9023
|
var marginHorizontal = _ref.marginHorizontal,
|
|
8990
9024
|
marginVertical = _ref.marginVertical,
|
|
8991
9025
|
style = _ref.style,
|
|
8992
9026
|
testID = _ref.testID,
|
|
8993
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
9027
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$y);
|
|
8994
9028
|
return /*#__PURE__*/React__namespace.default.createElement(StyledDivider, _extends$1({}, nativeProps, {
|
|
8995
9029
|
themeMarginHorizontal: marginHorizontal,
|
|
8996
9030
|
themeMarginVertical: marginVertical,
|
|
@@ -9001,7 +9035,7 @@ var Divider = function Divider(_ref) {
|
|
|
9001
9035
|
|
|
9002
9036
|
var AnimatedPressable$2 = reactNative.Animated.createAnimatedComponent(reactNative.Pressable);
|
|
9003
9037
|
var AnimatedSafeAreaView = reactNative.Animated.createAnimatedComponent(reactNative.SafeAreaView);
|
|
9004
|
-
var StyledWrapper$
|
|
9038
|
+
var StyledWrapper$a = index$a(reactNative.View)(_objectSpread2(_objectSpread2({}, reactNative.StyleSheet.absoluteFillObject), {}, {
|
|
9005
9039
|
flexDirection: 'column-reverse'
|
|
9006
9040
|
}));
|
|
9007
9041
|
var StyledKeyboardAvoidingView = index$a(reactNative.KeyboardAvoidingView)(function () {
|
|
@@ -9146,7 +9180,7 @@ var StyledLoadingDot = index$a(reactNative.View)(function (_ref) {
|
|
|
9146
9180
|
}, themeStyling());
|
|
9147
9181
|
});
|
|
9148
9182
|
|
|
9149
|
-
var _excluded$
|
|
9183
|
+
var _excluded$x = ["count", "size", "testID", "themeVariant"];
|
|
9150
9184
|
var AnimatedLoadingIndicatorWrapper = reactNative.Animated.createAnimatedComponent(StyledLoadingIndicatorWrapper);
|
|
9151
9185
|
var AnimatedLoadingDot = reactNative.Animated.createAnimatedComponent(StyledLoadingDot);
|
|
9152
9186
|
var renderDotComponent = function renderDotComponent(_ref) {
|
|
@@ -9178,7 +9212,7 @@ var LoadingIndicator = function LoadingIndicator(_ref2) {
|
|
|
9178
9212
|
size = _ref2$size === void 0 ? 12 : _ref2$size,
|
|
9179
9213
|
testID = _ref2.testID,
|
|
9180
9214
|
themeVariant = _ref2.themeVariant,
|
|
9181
|
-
nativeProps = _objectWithoutProperties(_ref2, _excluded$
|
|
9215
|
+
nativeProps = _objectWithoutProperties(_ref2, _excluded$x);
|
|
9182
9216
|
var progressAnimation = React.useRef(new reactNative.Animated.Value(0));
|
|
9183
9217
|
React.useEffect(function () {
|
|
9184
9218
|
var animation = reactNative.Animated.loop(reactNative.Animated.timing(progressAnimation.current, {
|
|
@@ -9621,11 +9655,11 @@ var Header = function Header(_ref) {
|
|
|
9621
9655
|
}))) : null), showDivider ? /*#__PURE__*/React__namespace.default.createElement(Divider, null) : null);
|
|
9622
9656
|
};
|
|
9623
9657
|
|
|
9624
|
-
var _excluded$
|
|
9658
|
+
var _excluded$w = ["scrollEventThrottle"];
|
|
9625
9659
|
var BottomSheetScrollView = function BottomSheetScrollView(_ref) {
|
|
9626
9660
|
var _ref$scrollEventThrot = _ref.scrollEventThrottle,
|
|
9627
9661
|
scrollEventThrottle = _ref$scrollEventThrot === void 0 ? 100 : _ref$scrollEventThrot,
|
|
9628
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
9662
|
+
props = _objectWithoutProperties(_ref, _excluded$w);
|
|
9629
9663
|
var _useContext = React.useContext(BottomSheetContext),
|
|
9630
9664
|
setInternalShowDivider = _useContext.setInternalShowDivider;
|
|
9631
9665
|
var onScrollBeginDrag = React.useCallback(function (e) {
|
|
@@ -9686,24 +9720,16 @@ var BottomSheet = function BottomSheet(_ref) {
|
|
|
9686
9720
|
_useState4 = _slicedToArray(_useState3, 2),
|
|
9687
9721
|
internalShowDivider = _useState4[0],
|
|
9688
9722
|
setInternalShowDivider = _useState4[1];
|
|
9723
|
+
var canCallOnDismiss = React.useRef(false);
|
|
9689
9724
|
React.useEffect(function () {
|
|
9725
|
+
// Prevent calling onDismiss when the component has not yet opened
|
|
9726
|
+
if (open && !canCallOnDismiss.current) {
|
|
9727
|
+
canCallOnDismiss.current = true;
|
|
9728
|
+
}
|
|
9690
9729
|
// Show the modal before the open animation start
|
|
9691
9730
|
if (open && !visible) {
|
|
9692
9731
|
setVisibility(open);
|
|
9693
9732
|
}
|
|
9694
|
-
// Delay closing the modal until after the closing animation end
|
|
9695
|
-
animatedValue.current.removeAllListeners();
|
|
9696
|
-
animatedValue.current.addListener(function (_ref2) {
|
|
9697
|
-
var value = _ref2.value;
|
|
9698
|
-
var endValueOfTransition = open ? 1 : 0;
|
|
9699
|
-
if (endValueOfTransition === 0 && value === endValueOfTransition) {
|
|
9700
|
-
setVisibility(false);
|
|
9701
|
-
onDismiss === null || onDismiss === void 0 || onDismiss();
|
|
9702
|
-
}
|
|
9703
|
-
});
|
|
9704
|
-
return function () {
|
|
9705
|
-
return animatedValue.current.removeAllListeners();
|
|
9706
|
-
};
|
|
9707
9733
|
}, [open]);
|
|
9708
9734
|
// Animation
|
|
9709
9735
|
React.useEffect(function () {
|
|
@@ -9712,10 +9738,13 @@ var BottomSheet = function BottomSheet(_ref) {
|
|
|
9712
9738
|
easing: reactNative.Easing.inOut(reactNative.Easing.cubic),
|
|
9713
9739
|
useNativeDriver: true
|
|
9714
9740
|
});
|
|
9715
|
-
animation.start(
|
|
9716
|
-
|
|
9717
|
-
|
|
9718
|
-
|
|
9741
|
+
animation.start(function () {
|
|
9742
|
+
if (!open && canCallOnDismiss.current) {
|
|
9743
|
+
setVisibility(false);
|
|
9744
|
+
onDismiss === null || onDismiss === void 0 || onDismiss();
|
|
9745
|
+
}
|
|
9746
|
+
onAnimationEnd === null || onAnimationEnd === void 0 || onAnimationEnd();
|
|
9747
|
+
});
|
|
9719
9748
|
}, [open]);
|
|
9720
9749
|
var interpolateY = animatedValue.current.interpolate({
|
|
9721
9750
|
inputRange: [0, 1],
|
|
@@ -9740,7 +9769,7 @@ var BottomSheet = function BottomSheet(_ref) {
|
|
|
9740
9769
|
testID: testID,
|
|
9741
9770
|
onShow: onOpen,
|
|
9742
9771
|
supportedOrientations: supportedOrientations
|
|
9743
|
-
}, /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$
|
|
9772
|
+
}, /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$a, {
|
|
9744
9773
|
pointerEvents: "box-none"
|
|
9745
9774
|
}, /*#__PURE__*/React__namespace.default.createElement(StyledKeyboardAvoidingView, _extends$1({
|
|
9746
9775
|
behavior: reactNative.Platform.OS === 'ios' ? 'padding' : 'height'
|
|
@@ -12442,12 +12471,12 @@ var Indicator = index$a(reactNative.View)(function (_ref2) {
|
|
|
12442
12471
|
};
|
|
12443
12472
|
});
|
|
12444
12473
|
|
|
12445
|
-
var _excluded$
|
|
12474
|
+
var _excluded$v = ["intent", "children"];
|
|
12446
12475
|
var DataCard = function DataCard(_ref) {
|
|
12447
12476
|
var _ref$intent = _ref.intent,
|
|
12448
12477
|
intent = _ref$intent === void 0 ? 'info' : _ref$intent,
|
|
12449
12478
|
children = _ref.children,
|
|
12450
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
12479
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$v);
|
|
12451
12480
|
return /*#__PURE__*/React__namespace.default.createElement(StyledDataCard, nativeProps, /*#__PURE__*/React__namespace.default.createElement(Indicator, {
|
|
12452
12481
|
themeIntent: intent,
|
|
12453
12482
|
testID: "data-card-indicator"
|
|
@@ -12466,13 +12495,13 @@ var StyledCard$1 = index$a(reactNative.View)(function (_ref) {
|
|
|
12466
12495
|
});
|
|
12467
12496
|
});
|
|
12468
12497
|
|
|
12469
|
-
var _excluded$
|
|
12498
|
+
var _excluded$u = ["intent", "children", "variant"];
|
|
12470
12499
|
var Card = function Card(_ref) {
|
|
12471
12500
|
var intent = _ref.intent,
|
|
12472
12501
|
children = _ref.children,
|
|
12473
12502
|
_ref$variant = _ref.variant,
|
|
12474
12503
|
variant = _ref$variant === void 0 ? 'basic' : _ref$variant,
|
|
12475
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
12504
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$u);
|
|
12476
12505
|
return /*#__PURE__*/React__namespace.default.createElement(StyledCard$1, _extends$1({}, nativeProps, {
|
|
12477
12506
|
themeIntent: intent,
|
|
12478
12507
|
themeVariant: variant
|
|
@@ -12549,7 +12578,7 @@ var StyledPageControl$1 = index$a(PageControl)(function (_ref) {
|
|
|
12549
12578
|
marginTop: theme.__hd__.cardCarousel.space.pageControlMarginTop
|
|
12550
12579
|
};
|
|
12551
12580
|
});
|
|
12552
|
-
var StyledWrapper$
|
|
12581
|
+
var StyledWrapper$9 = index$a(reactNative.View)({});
|
|
12553
12582
|
var StyledCard = index$a(Card$1)(function (_ref2) {
|
|
12554
12583
|
var theme = _ref2.theme;
|
|
12555
12584
|
return {
|
|
@@ -12679,7 +12708,7 @@ var CardCarousel = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
12679
12708
|
}, /*#__PURE__*/React__namespace.default.createElement(StyledCard, null, item));
|
|
12680
12709
|
}, [itemWidth]);
|
|
12681
12710
|
var contentContainerPaddingHorizontal = theme.__hd__.cardCarousel.space.contentContainerPaddingHorizontal;
|
|
12682
|
-
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$
|
|
12711
|
+
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$9, {
|
|
12683
12712
|
style: style,
|
|
12684
12713
|
testID: testID
|
|
12685
12714
|
}, /*#__PURE__*/React__namespace.default.createElement(reactNative.FlatList, {
|
|
@@ -12734,7 +12763,7 @@ var CardCarousel = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
12734
12763
|
});
|
|
12735
12764
|
CardCarousel.displayName = 'CardCarousel';
|
|
12736
12765
|
|
|
12737
|
-
var _excluded$
|
|
12766
|
+
var _excluded$t = ["rounded", "size", "testID", "style"];
|
|
12738
12767
|
var Image = function Image(_ref) {
|
|
12739
12768
|
var _ref$rounded = _ref.rounded,
|
|
12740
12769
|
rounded = _ref$rounded === void 0 ? false : _ref$rounded,
|
|
@@ -12742,7 +12771,7 @@ var Image = function Image(_ref) {
|
|
|
12742
12771
|
size = _ref$size === void 0 ? '6xlarge' : _ref$size,
|
|
12743
12772
|
testID = _ref.testID,
|
|
12744
12773
|
style = _ref.style,
|
|
12745
|
-
imageNativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
12774
|
+
imageNativeProps = _objectWithoutProperties(_ref, _excluded$t);
|
|
12746
12775
|
var theme = useTheme();
|
|
12747
12776
|
var imageSize = theme.__hd__.image.sizes[size];
|
|
12748
12777
|
return /*#__PURE__*/React__namespace.default.createElement(reactNative.Image, _extends$1({
|
|
@@ -12876,7 +12905,7 @@ var CarouselItem = function CarouselItem(_ref) {
|
|
|
12876
12905
|
}, heading), !!body && /*#__PURE__*/React__namespace.default.createElement(Typography.Body, null, body)));
|
|
12877
12906
|
};
|
|
12878
12907
|
|
|
12879
|
-
var _excluded$
|
|
12908
|
+
var _excluded$s = ["items", "onItemIndexChange", "renderActions", "selectedItemIndex", "style", "shouldShowPagination", "testID", "pageControlPosition"];
|
|
12880
12909
|
function useStateFromProp(initialValue) {
|
|
12881
12910
|
var _useState = React.useState(initialValue),
|
|
12882
12911
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -12903,7 +12932,7 @@ var Carousel = function Carousel(_ref) {
|
|
|
12903
12932
|
testID = _ref.testID,
|
|
12904
12933
|
_ref$pageControlPosit = _ref.pageControlPosition,
|
|
12905
12934
|
pageControlPosition = _ref$pageControlPosit === void 0 ? 'top' : _ref$pageControlPosit,
|
|
12906
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
12935
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$s);
|
|
12907
12936
|
useDeprecation("shouldShowPagination prop has been deprecated", shouldShowPagination !== noop);
|
|
12908
12937
|
useDeprecation("The use of 'pageControlPosition == bottom' has been deprecated", pageControlPosition === 'bottom');
|
|
12909
12938
|
var theme = useTheme();
|
|
@@ -13117,7 +13146,7 @@ var StyledChipWrapper = index$a(reactNative.TouchableOpacity)(function (_ref) {
|
|
|
13117
13146
|
}, getShadowStyles()), getBorderStyles()), getPaddingStyles()), getBackgroundStyles());
|
|
13118
13147
|
});
|
|
13119
13148
|
|
|
13120
|
-
var _excluded$
|
|
13149
|
+
var _excluded$r = ["label", "variant", "selected", "icon", "onPress", "showSelectedIcon"];
|
|
13121
13150
|
var Chip = function Chip(_ref) {
|
|
13122
13151
|
var label = _ref.label,
|
|
13123
13152
|
_ref$variant = _ref.variant,
|
|
@@ -13128,7 +13157,7 @@ var Chip = function Chip(_ref) {
|
|
|
13128
13157
|
onPress = _ref.onPress,
|
|
13129
13158
|
_ref$showSelectedIcon = _ref.showSelectedIcon,
|
|
13130
13159
|
showSelectedIcon = _ref$showSelectedIcon === void 0 ? true : _ref$showSelectedIcon,
|
|
13131
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
13160
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$r);
|
|
13132
13161
|
var shouldShowSelectedIcon = variant === 'outlined' && selected && showSelectedIcon;
|
|
13133
13162
|
return /*#__PURE__*/React__namespace.default.createElement(StyledChipWrapper, _extends$1({
|
|
13134
13163
|
onPress: onPress,
|
|
@@ -13149,7 +13178,7 @@ var Chip = function Chip(_ref) {
|
|
|
13149
13178
|
})));
|
|
13150
13179
|
};
|
|
13151
13180
|
|
|
13152
|
-
var StyledWrapper$
|
|
13181
|
+
var StyledWrapper$8 = index$a(reactNative.TouchableOpacity)(function (_ref) {
|
|
13153
13182
|
var theme = _ref.theme,
|
|
13154
13183
|
themeState = _ref.themeState;
|
|
13155
13184
|
return {
|
|
@@ -13223,7 +13252,7 @@ var Checkbox = function Checkbox(_ref2) {
|
|
|
13223
13252
|
disabled: disabled,
|
|
13224
13253
|
readonly: readonly
|
|
13225
13254
|
});
|
|
13226
|
-
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$
|
|
13255
|
+
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$8, {
|
|
13227
13256
|
onPress: onPress,
|
|
13228
13257
|
disabled: disabled || readonly,
|
|
13229
13258
|
themeState: themeState,
|
|
@@ -13369,7 +13398,7 @@ var StyledErrorAndMaxLengthContainer = index$a(reactNative.View)(function () {
|
|
|
13369
13398
|
};
|
|
13370
13399
|
});
|
|
13371
13400
|
|
|
13372
|
-
var _excluded$
|
|
13401
|
+
var _excluded$q = ["label", "prefix", "suffix", "style", "textStyle", "testID", "accessibilityLabelledBy", "error", "required", "editable", "disabled", "loading", "maxLength", "hideCharacterCount", "helpText", "value", "defaultValue", "renderInputValue", "allowFontScaling", "variant"];
|
|
13373
13402
|
var getState$2 = function getState(_ref) {
|
|
13374
13403
|
var disabled = _ref.disabled,
|
|
13375
13404
|
error = _ref.error,
|
|
@@ -13481,7 +13510,7 @@ var TextInput = /*#__PURE__*/React.forwardRef(function (_ref8, ref) {
|
|
|
13481
13510
|
allowFontScaling = _ref8$allowFontScalin === void 0 ? false : _ref8$allowFontScalin,
|
|
13482
13511
|
_ref8$variant = _ref8.variant,
|
|
13483
13512
|
variant = _ref8$variant === void 0 ? 'text' : _ref8$variant,
|
|
13484
|
-
nativeProps = _objectWithoutProperties(_ref8, _excluded$
|
|
13513
|
+
nativeProps = _objectWithoutProperties(_ref8, _excluded$q);
|
|
13485
13514
|
var displayText = getDisplayText(value, defaultValue);
|
|
13486
13515
|
var isEmptyValue = displayText.length === 0;
|
|
13487
13516
|
var _React$useState = React__namespace.default.useState({
|
|
@@ -14026,11 +14055,11 @@ var DatePickerIOS = function DatePickerIOS(_ref) {
|
|
|
14026
14055
|
}))));
|
|
14027
14056
|
};
|
|
14028
14057
|
|
|
14029
|
-
var _excluded$
|
|
14058
|
+
var _excluded$p = ["variant"];
|
|
14030
14059
|
var DatePicker = function DatePicker(_ref) {
|
|
14031
14060
|
var _ref$variant = _ref.variant,
|
|
14032
14061
|
variant = _ref$variant === void 0 ? 'default' : _ref$variant,
|
|
14033
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
14062
|
+
props = _objectWithoutProperties(_ref, _excluded$p);
|
|
14034
14063
|
if (variant === 'calendar') {
|
|
14035
14064
|
return /*#__PURE__*/React__namespace.default.createElement(DatePickerCalendar, props);
|
|
14036
14065
|
}
|
|
@@ -14327,7 +14356,7 @@ var index$7 = Object.assign(Drawer, {
|
|
|
14327
14356
|
Dragable: DragableDrawer
|
|
14328
14357
|
});
|
|
14329
14358
|
|
|
14330
|
-
var StyledWrapper$
|
|
14359
|
+
var StyledWrapper$7 = index$a(reactNative.View)(function (_ref) {
|
|
14331
14360
|
var theme = _ref.theme;
|
|
14332
14361
|
return {
|
|
14333
14362
|
display: 'flex',
|
|
@@ -14365,7 +14394,7 @@ var Empty = function Empty(_ref) {
|
|
|
14365
14394
|
_ref$variant = _ref.variant,
|
|
14366
14395
|
variant = _ref$variant === void 0 ? 'light' : _ref$variant;
|
|
14367
14396
|
var theme = useTheme();
|
|
14368
|
-
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$
|
|
14397
|
+
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$7, {
|
|
14369
14398
|
style: style,
|
|
14370
14399
|
testID: testID
|
|
14371
14400
|
}, image !== undefined && /*#__PURE__*/React__namespace.default.cloneElement(image, _objectSpread2(_objectSpread2({}, image.props), {}, {
|
|
@@ -14584,7 +14613,7 @@ var Portal$1 = Object.assign(Portal, {
|
|
|
14584
14613
|
Host: PortalHost
|
|
14585
14614
|
});
|
|
14586
14615
|
|
|
14587
|
-
var _excluded$
|
|
14616
|
+
var _excluded$o = ["visible"];
|
|
14588
14617
|
var DEFAULT_BACKDROP_OPACITY = 0.4;
|
|
14589
14618
|
var DEFAULT_ANIMATION_CONFIG = {
|
|
14590
14619
|
easing: reactNative.Easing.inOut(reactNative.Easing.cubic),
|
|
@@ -14680,7 +14709,7 @@ var Modal = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
14680
14709
|
var ModalWrapper = function ModalWrapper(_ref3) {
|
|
14681
14710
|
var _ref3$visible = _ref3.visible,
|
|
14682
14711
|
visible = _ref3$visible === void 0 ? true : _ref3$visible,
|
|
14683
|
-
props = _objectWithoutProperties(_ref3, _excluded$
|
|
14712
|
+
props = _objectWithoutProperties(_ref3, _excluded$o);
|
|
14684
14713
|
var modalRef = React.useRef(null);
|
|
14685
14714
|
var _useState = React.useState(visible),
|
|
14686
14715
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -14790,7 +14819,7 @@ var StyledErrorDescription = index$a(Typography.Body)(function (_ref9) {
|
|
|
14790
14819
|
};
|
|
14791
14820
|
});
|
|
14792
14821
|
|
|
14793
|
-
var _excluded$
|
|
14822
|
+
var _excluded$n = ["variant", "title", "description", "image", "testID", "ctaText", "onCtaPress", "secondaryCtaText", "onSecondaryCtaPress"],
|
|
14794
14823
|
_excluded2 = ["visible", "variant", "title", "description", "image", "testID", "ctaText", "onCtaPress", "secondaryCtaText", "onSecondaryCtaPress"];
|
|
14795
14824
|
var renderImage$1 = function renderImage(image) {
|
|
14796
14825
|
if ( /*#__PURE__*/React.isValidElement(image)) {
|
|
@@ -14816,7 +14845,7 @@ var ErrorPage = function ErrorPage(_ref) {
|
|
|
14816
14845
|
onCtaPress = _ref.onCtaPress,
|
|
14817
14846
|
secondaryCtaText = _ref.secondaryCtaText,
|
|
14818
14847
|
onSecondaryCtaPress = _ref.onSecondaryCtaPress,
|
|
14819
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
14848
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$n);
|
|
14820
14849
|
var showCta = ctaText && onCtaPress !== undefined;
|
|
14821
14850
|
var showSecondaryCta = secondaryCtaText && onSecondaryCtaPress !== undefined;
|
|
14822
14851
|
var showButtonContainer = showCta || showSecondaryCta;
|
|
@@ -14949,7 +14978,7 @@ var StyledActionItemText = index$a(Typography.Body)(function (_ref2) {
|
|
|
14949
14978
|
color: theme.__hd__.fab.colors.actionItemText
|
|
14950
14979
|
};
|
|
14951
14980
|
});
|
|
14952
|
-
var StyledIcon = index$a(Icon)(function (_ref3) {
|
|
14981
|
+
var StyledIcon$1 = index$a(Icon)(function (_ref3) {
|
|
14953
14982
|
var theme = _ref3.theme;
|
|
14954
14983
|
return {
|
|
14955
14984
|
color: theme.__hd__.fab.colors.actionItemText
|
|
@@ -15039,17 +15068,17 @@ var ActionItem = function ActionItem(_ref) {
|
|
|
15039
15068
|
style: style,
|
|
15040
15069
|
onPress: onPress,
|
|
15041
15070
|
testID: testID
|
|
15042
|
-
}, /*#__PURE__*/React__namespace.default.createElement(React__namespace.default.Fragment, null, /*#__PURE__*/React__namespace.default.createElement(StyledIconContainer, null, /*#__PURE__*/React__namespace.default.createElement(StyledIcon, {
|
|
15071
|
+
}, /*#__PURE__*/React__namespace.default.createElement(React__namespace.default.Fragment, null, /*#__PURE__*/React__namespace.default.createElement(StyledIconContainer, null, /*#__PURE__*/React__namespace.default.createElement(StyledIcon$1, {
|
|
15043
15072
|
size: "xsmall",
|
|
15044
15073
|
icon: icon
|
|
15045
15074
|
})), /*#__PURE__*/React__namespace.default.createElement(StyledActionItemText, null, title))));
|
|
15046
15075
|
};
|
|
15047
15076
|
|
|
15048
|
-
var _excluded$
|
|
15077
|
+
var _excluded$m = ["active"];
|
|
15049
15078
|
var AnimatedIcons = reactNative.Animated.createAnimatedComponent(StyledFABIcon);
|
|
15050
15079
|
var AnimatedFABIcon = function AnimatedFABIcon(_ref) {
|
|
15051
15080
|
var active = _ref.active,
|
|
15052
|
-
iconProps = _objectWithoutProperties(_ref, _excluded$
|
|
15081
|
+
iconProps = _objectWithoutProperties(_ref, _excluded$m);
|
|
15053
15082
|
var rotateAnimation = React.useRef(new reactNative.Animated.Value(active ? 1 : 0));
|
|
15054
15083
|
React.useEffect(function () {
|
|
15055
15084
|
var animation = reactNative.Animated.spring(rotateAnimation.current, {
|
|
@@ -15405,11 +15434,11 @@ var StyledFAB = index$a(FAB$1)(function (_ref) {
|
|
|
15405
15434
|
};
|
|
15406
15435
|
});
|
|
15407
15436
|
|
|
15408
|
-
var _excluded$
|
|
15437
|
+
var _excluded$l = ["fabConfig", "onCancel"];
|
|
15409
15438
|
var Pair = function Pair(_ref) {
|
|
15410
15439
|
var fabConfig = _ref.fabConfig,
|
|
15411
15440
|
onCancel = _ref.onCancel,
|
|
15412
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
15441
|
+
props = _objectWithoutProperties(_ref, _excluded$l);
|
|
15413
15442
|
var icon = fabConfig.icon,
|
|
15414
15443
|
title = fabConfig.title,
|
|
15415
15444
|
onPress = fabConfig.onPress,
|
|
@@ -15830,11 +15859,11 @@ var StyledFocusIcon = index$a(Icon)(function (_ref5) {
|
|
|
15830
15859
|
};
|
|
15831
15860
|
});
|
|
15832
15861
|
|
|
15833
|
-
var _excluded$
|
|
15862
|
+
var _excluded$k = ["style", "testID"];
|
|
15834
15863
|
var MapPinFocussed = function MapPinFocussed(_ref) {
|
|
15835
15864
|
var style = _ref.style,
|
|
15836
15865
|
testID = _ref.testID,
|
|
15837
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
15866
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$k);
|
|
15838
15867
|
return /*#__PURE__*/React__namespace.default.createElement(StyledContainer$3, _extends$1({}, nativeProps, {
|
|
15839
15868
|
style: style,
|
|
15840
15869
|
testID: testID
|
|
@@ -15844,7 +15873,7 @@ var MapPinFocussed = function MapPinFocussed(_ref) {
|
|
|
15844
15873
|
}));
|
|
15845
15874
|
};
|
|
15846
15875
|
|
|
15847
|
-
var _excluded$
|
|
15876
|
+
var _excluded$j = ["style", "testID", "state", "image", "icon"];
|
|
15848
15877
|
var getBadgeIconName = function getBadgeIconName(state) {
|
|
15849
15878
|
var iconMap = {
|
|
15850
15879
|
idle: undefined,
|
|
@@ -15860,7 +15889,7 @@ var MapPin = function MapPin(_ref) {
|
|
|
15860
15889
|
state = _ref$state === void 0 ? 'idle' : _ref$state,
|
|
15861
15890
|
image = _ref.image,
|
|
15862
15891
|
icon = _ref.icon,
|
|
15863
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
15892
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$j);
|
|
15864
15893
|
var badgeIcon = getBadgeIconName(state);
|
|
15865
15894
|
return /*#__PURE__*/React__namespace.default.createElement(StyledContainer$3, _extends$1({}, nativeProps, {
|
|
15866
15895
|
style: style,
|
|
@@ -16074,7 +16103,7 @@ var List = {
|
|
|
16074
16103
|
BasicItem: BasicListItem
|
|
16075
16104
|
};
|
|
16076
16105
|
|
|
16077
|
-
var StyledWrapper$
|
|
16106
|
+
var StyledWrapper$6 = index$a(reactNative.View)(function () {
|
|
16078
16107
|
return {
|
|
16079
16108
|
alignContent: 'flex-start'
|
|
16080
16109
|
};
|
|
@@ -16283,7 +16312,7 @@ var PinInput = /*#__PURE__*/React.forwardRef(function (_ref2, ref) {
|
|
|
16283
16312
|
start: trimmedValue.length
|
|
16284
16313
|
};
|
|
16285
16314
|
}, [trimmedValue]);
|
|
16286
|
-
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$
|
|
16315
|
+
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$6, {
|
|
16287
16316
|
style: style,
|
|
16288
16317
|
testID: testID
|
|
16289
16318
|
}, /*#__PURE__*/React__namespace.default.createElement(StyledPinWrapper, null, _toConsumableArray(Array(length).keys()).map(function (index) {
|
|
@@ -16402,7 +16431,7 @@ var StyledStrokeEnd = index$a(reactNative.View)(function (_ref6) {
|
|
|
16402
16431
|
};
|
|
16403
16432
|
});
|
|
16404
16433
|
|
|
16405
|
-
var _excluded$
|
|
16434
|
+
var _excluded$i = ["value", "renderValue", "intent", "style", "testID"];
|
|
16406
16435
|
var HalfCircle = function HalfCircle(_ref) {
|
|
16407
16436
|
var type = _ref.type,
|
|
16408
16437
|
themeIntent = _ref.themeIntent;
|
|
@@ -16423,7 +16452,7 @@ var ProgressCircle = function ProgressCircle(_ref2) {
|
|
|
16423
16452
|
intent = _ref2$intent === void 0 ? 'primary' : _ref2$intent,
|
|
16424
16453
|
style = _ref2.style,
|
|
16425
16454
|
testID = _ref2.testID,
|
|
16426
|
-
nativeProps = _objectWithoutProperties(_ref2, _excluded$
|
|
16455
|
+
nativeProps = _objectWithoutProperties(_ref2, _excluded$i);
|
|
16427
16456
|
var theme = useTheme$1();
|
|
16428
16457
|
var radius = theme.__hd__.progress.sizes.circleDiameter / 2;
|
|
16429
16458
|
var progressAnimatedValue = React.useRef(new reactNative.Animated.Value(0));
|
|
@@ -16518,7 +16547,7 @@ var ProgressCircle = function ProgressCircle(_ref2) {
|
|
|
16518
16547
|
})), /*#__PURE__*/React__namespace.default.createElement(StyledDonutCircle, null, /*#__PURE__*/React__namespace.default.createElement(Typography.Body, null, renderValue(value)))));
|
|
16519
16548
|
};
|
|
16520
16549
|
|
|
16521
|
-
var StyledWrapper$
|
|
16550
|
+
var StyledWrapper$5 = index$a(reactNative.View)(function (_ref) {
|
|
16522
16551
|
var theme = _ref.theme,
|
|
16523
16552
|
themeIntent = _ref.themeIntent;
|
|
16524
16553
|
return {
|
|
@@ -16539,14 +16568,14 @@ var StyledInner = index$a(reactNative.Animated.View)(function (_ref2) {
|
|
|
16539
16568
|
};
|
|
16540
16569
|
});
|
|
16541
16570
|
|
|
16542
|
-
var _excluded$
|
|
16571
|
+
var _excluded$h = ["value", "intent", "style", "testID"];
|
|
16543
16572
|
var ProgressBar = function ProgressBar(_ref) {
|
|
16544
16573
|
var value = _ref.value,
|
|
16545
16574
|
_ref$intent = _ref.intent,
|
|
16546
16575
|
intent = _ref$intent === void 0 ? 'primary' : _ref$intent,
|
|
16547
16576
|
style = _ref.style,
|
|
16548
16577
|
testID = _ref.testID,
|
|
16549
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
16578
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$h);
|
|
16550
16579
|
var _useState = React.useState(0),
|
|
16551
16580
|
_useState2 = _slicedToArray(_useState, 2),
|
|
16552
16581
|
width = _useState2[0],
|
|
@@ -16572,7 +16601,7 @@ var ProgressBar = function ProgressBar(_ref) {
|
|
|
16572
16601
|
outputRange: [999, 0],
|
|
16573
16602
|
extrapolate: 'clamp'
|
|
16574
16603
|
});
|
|
16575
|
-
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$
|
|
16604
|
+
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$5, _extends$1({}, nativeProps, {
|
|
16576
16605
|
testID: testID,
|
|
16577
16606
|
style: style,
|
|
16578
16607
|
themeIntent: intent
|
|
@@ -16635,7 +16664,7 @@ var StyledSingleStep = index$a(Box)(function (_ref3) {
|
|
|
16635
16664
|
};
|
|
16636
16665
|
});
|
|
16637
16666
|
|
|
16638
|
-
var _excluded$
|
|
16667
|
+
var _excluded$g = ["steps", "current", "onLayout"];
|
|
16639
16668
|
var getStepState = function getStepState(current, index) {
|
|
16640
16669
|
if (index < current) {
|
|
16641
16670
|
return 'complete';
|
|
@@ -16649,7 +16678,7 @@ var ProgressStep = function ProgressStep(_ref) {
|
|
|
16649
16678
|
var steps = _ref.steps,
|
|
16650
16679
|
current = _ref.current,
|
|
16651
16680
|
onLayout = _ref.onLayout,
|
|
16652
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
16681
|
+
props = _objectWithoutProperties(_ref, _excluded$g);
|
|
16653
16682
|
var theme = useTheme$1();
|
|
16654
16683
|
var _React$useState = React__namespace.default.useState(0),
|
|
16655
16684
|
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
@@ -16830,14 +16859,14 @@ var AnimatedSpinner = function AnimatedSpinner(_ref) {
|
|
|
16830
16859
|
}, dotProps))));
|
|
16831
16860
|
};
|
|
16832
16861
|
|
|
16833
|
-
var _excluded$
|
|
16862
|
+
var _excluded$f = ["testID", "size", "intent"];
|
|
16834
16863
|
var Spinner = function Spinner(_ref) {
|
|
16835
16864
|
var testID = _ref.testID,
|
|
16836
16865
|
_ref$size = _ref.size,
|
|
16837
16866
|
size = _ref$size === void 0 ? 'medium' : _ref$size,
|
|
16838
16867
|
_ref$intent = _ref.intent,
|
|
16839
16868
|
intent = _ref$intent === void 0 ? 'primary' : _ref$intent,
|
|
16840
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
16869
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$f);
|
|
16841
16870
|
return /*#__PURE__*/React__namespace.default.createElement(StyledView$1, nativeProps, /*#__PURE__*/React__namespace.default.createElement(StyledSpinnerContainer, {
|
|
16842
16871
|
testID: testID
|
|
16843
16872
|
}, /*#__PURE__*/React__namespace.default.createElement(AnimatedSpinner, {
|
|
@@ -16870,7 +16899,7 @@ var SwipeableAction = function SwipeableAction(_ref) {
|
|
|
16870
16899
|
}, children);
|
|
16871
16900
|
};
|
|
16872
16901
|
|
|
16873
|
-
var _excluded$
|
|
16902
|
+
var _excluded$e = ["children", "state", "onStateChange", "leftActions", "leftActionsWidth", "rightActions", "rightActionsWidth", "variant"];
|
|
16874
16903
|
var renderActions = function renderActions(actions, width, progress, direction) {
|
|
16875
16904
|
var trans = progress.interpolate({
|
|
16876
16905
|
inputRange: [0, 1],
|
|
@@ -16899,7 +16928,7 @@ var Swipeable = function Swipeable(_ref) {
|
|
|
16899
16928
|
rightActionsWidth = _ref.rightActionsWidth,
|
|
16900
16929
|
_ref$variant = _ref.variant,
|
|
16901
16930
|
variant = _ref$variant === void 0 ? 'card' : _ref$variant,
|
|
16902
|
-
swipeableProps = _objectWithoutProperties(_ref, _excluded$
|
|
16931
|
+
swipeableProps = _objectWithoutProperties(_ref, _excluded$e);
|
|
16903
16932
|
var theme = useTheme();
|
|
16904
16933
|
var _useWindowDimensions = reactNative.useWindowDimensions(),
|
|
16905
16934
|
width = _useWindowDimensions.width;
|
|
@@ -17099,7 +17128,7 @@ var StyledIconWrapper$2 = index$a(reactNative.View)(function (_ref2) {
|
|
|
17099
17128
|
marginRight: theme.__hd__.sectionHeading.space.iconMarginRight
|
|
17100
17129
|
};
|
|
17101
17130
|
});
|
|
17102
|
-
var StyledWrapper$
|
|
17131
|
+
var StyledWrapper$4 = index$a(reactNative.View)(function () {
|
|
17103
17132
|
return {
|
|
17104
17133
|
display: 'flex',
|
|
17105
17134
|
flexDirection: 'row',
|
|
@@ -17136,7 +17165,7 @@ var SectionHeading = function SectionHeading(_ref) {
|
|
|
17136
17165
|
themeSize: size,
|
|
17137
17166
|
style: style,
|
|
17138
17167
|
testID: testID
|
|
17139
|
-
}, /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$
|
|
17168
|
+
}, /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$4, null, /*#__PURE__*/React__namespace.default.createElement(StyledIconWrapper$2, null, icon !== undefined && (typeof icon === 'string' ? /*#__PURE__*/React__namespace.default.createElement(Icon, {
|
|
17140
17169
|
icon: icon,
|
|
17141
17170
|
size: ICON_SIZE_MAP[size],
|
|
17142
17171
|
intent: ICON_INTENT_MAP[intent]
|
|
@@ -17250,7 +17279,7 @@ var StyledSectionList = index$a(reactNative.SectionList)(function (_ref4) {
|
|
|
17250
17279
|
};
|
|
17251
17280
|
});
|
|
17252
17281
|
|
|
17253
|
-
var _excluded$
|
|
17282
|
+
var _excluded$d = ["keyExtractor", "loading", "onEndReached", "onQueryChange", "sections", "renderItem", "sectionListRef"];
|
|
17254
17283
|
var BaseOptionList = function BaseOptionList(_ref) {
|
|
17255
17284
|
var keyExtractor = _ref.keyExtractor,
|
|
17256
17285
|
loading = _ref.loading,
|
|
@@ -17259,7 +17288,7 @@ var BaseOptionList = function BaseOptionList(_ref) {
|
|
|
17259
17288
|
sections = _ref.sections,
|
|
17260
17289
|
renderItem = _ref.renderItem,
|
|
17261
17290
|
sectionListRef = _ref.sectionListRef,
|
|
17262
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
17291
|
+
rest = _objectWithoutProperties(_ref, _excluded$d);
|
|
17263
17292
|
var theme = useTheme$1();
|
|
17264
17293
|
var _useState = React.useState(false),
|
|
17265
17294
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -17329,7 +17358,7 @@ var Option$2 = function Option(_ref) {
|
|
|
17329
17358
|
return highlighted === true ? /*#__PURE__*/React__namespace.default.createElement(List.Item, props) : /*#__PURE__*/React__namespace.default.createElement(List.BasicItem, props);
|
|
17330
17359
|
};
|
|
17331
17360
|
|
|
17332
|
-
var _excluded$
|
|
17361
|
+
var _excluded$c = ["keyExtractor", "loading", "onEndReached", "onPress", "onQueryChange", "sections", "renderOption", "value", "sectionListRef"];
|
|
17333
17362
|
var OptionList$1 = function OptionList(_ref) {
|
|
17334
17363
|
var keyExtractor = _ref.keyExtractor,
|
|
17335
17364
|
loading = _ref.loading,
|
|
@@ -17340,7 +17369,7 @@ var OptionList$1 = function OptionList(_ref) {
|
|
|
17340
17369
|
renderOption = _ref.renderOption,
|
|
17341
17370
|
value = _ref.value,
|
|
17342
17371
|
sectionListRef = _ref.sectionListRef,
|
|
17343
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
17372
|
+
rest = _objectWithoutProperties(_ref, _excluded$c);
|
|
17344
17373
|
var renderItem = function renderItem(info) {
|
|
17345
17374
|
var item = info.item;
|
|
17346
17375
|
var selected = value.includes(info.item.value);
|
|
@@ -17531,7 +17560,7 @@ var StyledOptionList = index$a(BaseOptionList)(function (_ref) {
|
|
|
17531
17560
|
};
|
|
17532
17561
|
});
|
|
17533
17562
|
|
|
17534
|
-
var _excluded$
|
|
17563
|
+
var _excluded$b = ["keyExtractor", "loading", "onEndReached", "onPress", "onQueryChange", "sections", "renderOption", "value", "sectionListRef"];
|
|
17535
17564
|
var OptionList = function OptionList(_ref) {
|
|
17536
17565
|
var keyExtractor = _ref.keyExtractor,
|
|
17537
17566
|
loading = _ref.loading,
|
|
@@ -17542,7 +17571,7 @@ var OptionList = function OptionList(_ref) {
|
|
|
17542
17571
|
renderOption = _ref.renderOption,
|
|
17543
17572
|
value = _ref.value,
|
|
17544
17573
|
sectionListRef = _ref.sectionListRef,
|
|
17545
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
17574
|
+
rest = _objectWithoutProperties(_ref, _excluded$b);
|
|
17546
17575
|
var renderItem = function renderItem(info) {
|
|
17547
17576
|
var item = info.item;
|
|
17548
17577
|
var selected = item.value === value;
|
|
@@ -17710,7 +17739,7 @@ var StyledGradientContainer = index$a(Box)(function (_ref2) {
|
|
|
17710
17739
|
};
|
|
17711
17740
|
});
|
|
17712
17741
|
|
|
17713
|
-
var _excluded$
|
|
17742
|
+
var _excluded$a = ["intent", "variant", "style", "onLayout"];
|
|
17714
17743
|
var AnimatedLinearGradient = reactNative.Animated.createAnimatedComponent(LinearGradient__default.default);
|
|
17715
17744
|
var gradientPositions = {
|
|
17716
17745
|
start: {
|
|
@@ -17742,7 +17771,7 @@ var Skeleton = function Skeleton(_ref) {
|
|
|
17742
17771
|
variant = _ref$variant === void 0 ? 'rounded' : _ref$variant,
|
|
17743
17772
|
style = _ref.style,
|
|
17744
17773
|
onLayout = _ref.onLayout,
|
|
17745
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
17774
|
+
props = _objectWithoutProperties(_ref, _excluded$a);
|
|
17746
17775
|
var theme = useTheme();
|
|
17747
17776
|
var colors = React.useMemo(function () {
|
|
17748
17777
|
return getGradientColors(theme, intent);
|
|
@@ -17874,7 +17903,7 @@ var StyledSuccessModal = index$a(ModalWrapper)({
|
|
|
17874
17903
|
width: '100%'
|
|
17875
17904
|
});
|
|
17876
17905
|
|
|
17877
|
-
var _excluded$
|
|
17906
|
+
var _excluded$9 = ["variant", "title", "description", "image", "testID", "ctaText", "onCtaPress", "secondaryCtaText", "onSecondaryCtaPress"];
|
|
17878
17907
|
var renderImage = function renderImage(image) {
|
|
17879
17908
|
if ( /*#__PURE__*/React.isValidElement(image)) {
|
|
17880
17909
|
return /*#__PURE__*/React__namespace.default.cloneElement(image, {
|
|
@@ -17900,7 +17929,7 @@ var SuccessPage = function SuccessPage(_ref) {
|
|
|
17900
17929
|
onCtaPress = _ref$onCtaPress === void 0 ? noop$1 : _ref$onCtaPress,
|
|
17901
17930
|
secondaryCtaText = _ref.secondaryCtaText,
|
|
17902
17931
|
onSecondaryCtaPress = _ref.onSecondaryCtaPress,
|
|
17903
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
17932
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$9);
|
|
17904
17933
|
var showSecondaryButton = secondaryCtaText && onSecondaryCtaPress;
|
|
17905
17934
|
return /*#__PURE__*/React__namespace.default.createElement(StyledSuccessContainer, _extends$1({
|
|
17906
17935
|
testID: testID,
|
|
@@ -17934,7 +17963,7 @@ var Success = function Success(props) {
|
|
|
17934
17963
|
};
|
|
17935
17964
|
|
|
17936
17965
|
var AnimatedView = reactNative.Animated.createAnimatedComponent(reactNative.View);
|
|
17937
|
-
var StyledWrapper$
|
|
17966
|
+
var StyledWrapper$3 = index$a(reactNative.View)(function (_ref) {
|
|
17938
17967
|
var theme = _ref.theme;
|
|
17939
17968
|
return {
|
|
17940
17969
|
flexDirection: 'row',
|
|
@@ -18080,7 +18109,7 @@ var SelectorSwitch = function SelectorSwitch(_ref) {
|
|
|
18080
18109
|
return _onPress === null || _onPress === void 0 ? void 0 : _onPress(value);
|
|
18081
18110
|
},
|
|
18082
18111
|
testID: testID
|
|
18083
|
-
}, /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$
|
|
18112
|
+
}, /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$3, {
|
|
18084
18113
|
onLayout: onContainerLayout,
|
|
18085
18114
|
style: style
|
|
18086
18115
|
}, options.map(function (opt, index) {
|
|
@@ -18104,7 +18133,7 @@ var SelectorSwitch = function SelectorSwitch(_ref) {
|
|
|
18104
18133
|
})));
|
|
18105
18134
|
};
|
|
18106
18135
|
|
|
18107
|
-
var StyledWrapper$
|
|
18136
|
+
var StyledWrapper$2 = index$a(reactNative.View)(function (_ref) {
|
|
18108
18137
|
var theme = _ref.theme,
|
|
18109
18138
|
themeVariant = _ref.themeVariant;
|
|
18110
18139
|
return {
|
|
@@ -18166,7 +18195,7 @@ var Switch = function Switch(_ref2) {
|
|
|
18166
18195
|
testID: testID,
|
|
18167
18196
|
onPress: onPress,
|
|
18168
18197
|
disabled: disabled
|
|
18169
|
-
}, /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$
|
|
18198
|
+
}, /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$2, {
|
|
18170
18199
|
themeVariant: variant,
|
|
18171
18200
|
style: style
|
|
18172
18201
|
}, /*#__PURE__*/React__namespace.default.createElement(StyledKnot, {
|
|
@@ -18918,7 +18947,7 @@ var StyledText = index$a(Typography.Caption)(function (_ref2) {
|
|
|
18918
18947
|
};
|
|
18919
18948
|
});
|
|
18920
18949
|
|
|
18921
|
-
var _excluded$
|
|
18950
|
+
var _excluded$8 = ["content", "variant", "intent", "style", "testID"];
|
|
18922
18951
|
var Tag = function Tag(_ref) {
|
|
18923
18952
|
var content = _ref.content,
|
|
18924
18953
|
_ref$variant = _ref.variant,
|
|
@@ -18927,7 +18956,7 @@ var Tag = function Tag(_ref) {
|
|
|
18927
18956
|
intent = _ref$intent === void 0 ? 'primary' : _ref$intent,
|
|
18928
18957
|
style = _ref.style,
|
|
18929
18958
|
testID = _ref.testID,
|
|
18930
|
-
nativeProps = _objectWithoutProperties(_ref, _excluded$
|
|
18959
|
+
nativeProps = _objectWithoutProperties(_ref, _excluded$8);
|
|
18931
18960
|
useDeprecation("Tag's variant prop is deprecated and will be removed in the next major release. Please remove it.", variant !== undefined);
|
|
18932
18961
|
return /*#__PURE__*/React__namespace.default.createElement(StyledView, _extends$1({}, nativeProps, {
|
|
18933
18962
|
themeIntent: intent,
|
|
@@ -19252,10 +19281,10 @@ var ToolbarGroup = function ToolbarGroup(_ref) {
|
|
|
19252
19281
|
}));
|
|
19253
19282
|
};
|
|
19254
19283
|
|
|
19255
|
-
var _excluded$
|
|
19284
|
+
var _excluded$7 = ["children"];
|
|
19256
19285
|
var Toolbar = function Toolbar(_ref) {
|
|
19257
19286
|
var children = _ref.children,
|
|
19258
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
19287
|
+
rest = _objectWithoutProperties(_ref, _excluded$7);
|
|
19259
19288
|
return /*#__PURE__*/React__namespace.default.createElement(ToolbarWrapper, rest, children);
|
|
19260
19289
|
};
|
|
19261
19290
|
var index$1 = Object.assign(Toolbar, {
|
|
@@ -19263,7 +19292,7 @@ var index$1 = Object.assign(Toolbar, {
|
|
|
19263
19292
|
});
|
|
19264
19293
|
|
|
19265
19294
|
var AnimatedBox = reactNative.Animated.createAnimatedComponent(reactNative.View);
|
|
19266
|
-
var StyledWrapper = index$a(Box)({
|
|
19295
|
+
var StyledWrapper$1 = index$a(Box)({
|
|
19267
19296
|
flexDirection: 'row'
|
|
19268
19297
|
});
|
|
19269
19298
|
var StyledIconWrapper = index$a(AnimatedBox)(function (_ref) {
|
|
@@ -19274,7 +19303,7 @@ var StyledIconWrapper = index$a(AnimatedBox)(function (_ref) {
|
|
|
19274
19303
|
};
|
|
19275
19304
|
});
|
|
19276
19305
|
|
|
19277
|
-
var _excluded$
|
|
19306
|
+
var _excluded$6 = ["options", "value", "onChange", "readonly", "disabled"];
|
|
19278
19307
|
var Rate = function Rate(_ref) {
|
|
19279
19308
|
var options = _ref.options,
|
|
19280
19309
|
value = _ref.value,
|
|
@@ -19283,7 +19312,7 @@ var Rate = function Rate(_ref) {
|
|
|
19283
19312
|
readonly = _ref$readonly === void 0 ? false : _ref$readonly,
|
|
19284
19313
|
_ref$disabled = _ref.disabled,
|
|
19285
19314
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
19286
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
19315
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$6);
|
|
19287
19316
|
var valueIndex = React.useMemo(function () {
|
|
19288
19317
|
return options.findIndex(function (item) {
|
|
19289
19318
|
return item.value === value;
|
|
@@ -19301,7 +19330,7 @@ var Rate = function Rate(_ref) {
|
|
|
19301
19330
|
useNativeDriver: reactNative.Platform.OS !== 'web'
|
|
19302
19331
|
}).start();
|
|
19303
19332
|
}, [value, animatedValue]);
|
|
19304
|
-
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper, otherProps, options.length > 0 && options.map(function (item, index) {
|
|
19333
|
+
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper$1, otherProps, options.length > 0 && options.map(function (item, index) {
|
|
19305
19334
|
return /*#__PURE__*/React__namespace.default.createElement(reactNative.Pressable, {
|
|
19306
19335
|
key: item.value,
|
|
19307
19336
|
disabled: disabled || readonly,
|
|
@@ -36674,30 +36703,30 @@ function AnimatedScroller(_ref) {
|
|
|
36674
36703
|
}));
|
|
36675
36704
|
}
|
|
36676
36705
|
|
|
36677
|
-
var _excluded$
|
|
36706
|
+
var _excluded$5 = ["fabProps"];
|
|
36678
36707
|
var ScrollViewWithFAB = function ScrollViewWithFAB(_ref) {
|
|
36679
36708
|
var fabProps = _ref.fabProps,
|
|
36680
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
36709
|
+
props = _objectWithoutProperties(_ref, _excluded$5);
|
|
36681
36710
|
return /*#__PURE__*/React__namespace.default.createElement(AnimatedScroller, {
|
|
36682
36711
|
ScrollComponent: /*#__PURE__*/React__namespace.default.createElement(reactNative.ScrollView, props),
|
|
36683
36712
|
fabProps: fabProps
|
|
36684
36713
|
});
|
|
36685
36714
|
};
|
|
36686
36715
|
|
|
36687
|
-
var _excluded$
|
|
36716
|
+
var _excluded$4 = ["fabProps"];
|
|
36688
36717
|
function FlatListWithFAB(_ref) {
|
|
36689
36718
|
var fabProps = _ref.fabProps,
|
|
36690
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
36719
|
+
props = _objectWithoutProperties(_ref, _excluded$4);
|
|
36691
36720
|
return /*#__PURE__*/React__namespace.default.createElement(AnimatedScroller, {
|
|
36692
36721
|
ScrollComponent: /*#__PURE__*/React__namespace.default.createElement(reactNative.FlatList, props),
|
|
36693
36722
|
fabProps: fabProps
|
|
36694
36723
|
});
|
|
36695
36724
|
}
|
|
36696
36725
|
|
|
36697
|
-
var _excluded$
|
|
36726
|
+
var _excluded$3 = ["fabProps"];
|
|
36698
36727
|
function SectionListWithFAB(_ref) {
|
|
36699
36728
|
var fabProps = _ref.fabProps,
|
|
36700
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
36729
|
+
props = _objectWithoutProperties(_ref, _excluded$3);
|
|
36701
36730
|
return /*#__PURE__*/React__namespace.default.createElement(AnimatedScroller, {
|
|
36702
36731
|
ScrollComponent: /*#__PURE__*/React__namespace.default.createElement(reactNative.SectionList, props),
|
|
36703
36732
|
fabProps: fabProps
|
|
@@ -36832,7 +36861,7 @@ var SearchTwoLine = function SearchTwoLine(props) {
|
|
|
36832
36861
|
})));
|
|
36833
36862
|
};
|
|
36834
36863
|
|
|
36835
|
-
var _excluded$
|
|
36864
|
+
var _excluded$2 = ["prefix", "suffix", "style", "allowFontScaling", "accessibilityLabelledBy", "editable", "maxLength", "value", "defaultValue", "placeholder", "disabled", "testID", "variant"];
|
|
36836
36865
|
var getState = function getState(_ref) {
|
|
36837
36866
|
var disabled = _ref.disabled,
|
|
36838
36867
|
editable = _ref.editable,
|
|
@@ -36874,7 +36903,7 @@ var SearchOneLine = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
36874
36903
|
testID = props.testID,
|
|
36875
36904
|
_props$variant = props.variant,
|
|
36876
36905
|
variant = _props$variant === void 0 ? 'basic' : _props$variant,
|
|
36877
|
-
nativeProps = _objectWithoutProperties(props, _excluded$
|
|
36906
|
+
nativeProps = _objectWithoutProperties(props, _excluded$2);
|
|
36878
36907
|
var _React$useState = React__namespace.default.useState(false),
|
|
36879
36908
|
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
36880
36909
|
isFocused = _React$useState2[0],
|
|
@@ -36958,11 +36987,11 @@ var SearchOneLine = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
36958
36987
|
})));
|
|
36959
36988
|
});
|
|
36960
36989
|
|
|
36961
|
-
var _excluded = ["content", "icon"];
|
|
36990
|
+
var _excluded$1 = ["content", "icon"];
|
|
36962
36991
|
var renderBadge = function renderBadge(props) {
|
|
36963
36992
|
var content = props.content,
|
|
36964
36993
|
icon = props.icon,
|
|
36965
|
-
rest = _objectWithoutProperties(props, _excluded);
|
|
36994
|
+
rest = _objectWithoutProperties(props, _excluded$1);
|
|
36966
36995
|
if (content) return /*#__PURE__*/React__namespace.default.createElement(StyledBadge, _extends$1({
|
|
36967
36996
|
intent: "primary",
|
|
36968
36997
|
content: content,
|
|
@@ -36994,6 +37023,90 @@ var Search = {
|
|
|
36994
37023
|
SuffixIcon: SearchSuffixIcon
|
|
36995
37024
|
};
|
|
36996
37025
|
|
|
37026
|
+
var StyledWrapper = index$a.TouchableOpacity(function (_ref) {
|
|
37027
|
+
var theme = _ref.theme;
|
|
37028
|
+
return _objectSpread2({
|
|
37029
|
+
alignSelf: 'flex-start',
|
|
37030
|
+
position: 'absolute',
|
|
37031
|
+
left: '50%',
|
|
37032
|
+
zIndex: 9999,
|
|
37033
|
+
flexDirection: 'row',
|
|
37034
|
+
justifyContent: 'center',
|
|
37035
|
+
alignItems: 'center',
|
|
37036
|
+
padding: theme.__hd__.floatingIsland.space.wrapperPadding,
|
|
37037
|
+
borderRadius: theme.__hd__.floatingIsland.radii.wrapper,
|
|
37038
|
+
backgroundColor: theme.__hd__.floatingIsland.colors.wrapperBackground,
|
|
37039
|
+
top: theme.__hd__.floatingIsland.space.wrapperTop
|
|
37040
|
+
}, theme.__hd__.floatingIsland.shadows.wrapper);
|
|
37041
|
+
});
|
|
37042
|
+
var StyledPrefixWrapper = index$a(Box)(function (_ref2) {
|
|
37043
|
+
var theme = _ref2.theme;
|
|
37044
|
+
return {
|
|
37045
|
+
marginRight: theme.__hd__.floatingIsland.space.prefixMarginRight
|
|
37046
|
+
};
|
|
37047
|
+
});
|
|
37048
|
+
var StyledSuffixWrapper = index$a(Box)(function (_ref3) {
|
|
37049
|
+
var theme = _ref3.theme;
|
|
37050
|
+
return {
|
|
37051
|
+
marginLeft: theme.__hd__.floatingIsland.space.suffixMarginLeft
|
|
37052
|
+
};
|
|
37053
|
+
});
|
|
37054
|
+
var StyledIcon = index$a(Icon)(function (_ref4) {
|
|
37055
|
+
var theme = _ref4.theme;
|
|
37056
|
+
return {
|
|
37057
|
+
padding: theme.__hd__.floatingIsland.space.iconPadding
|
|
37058
|
+
};
|
|
37059
|
+
});
|
|
37060
|
+
|
|
37061
|
+
var _excluded = ["onPress", "onLayout", "style", "children", "prefix", "suffix"];
|
|
37062
|
+
var getPrefixOrSuffix = function getPrefixOrSuffix(_ref) {
|
|
37063
|
+
var element = _ref.element,
|
|
37064
|
+
_ref$isPrefix = _ref.isPrefix,
|
|
37065
|
+
isPrefix = _ref$isPrefix === void 0 ? true : _ref$isPrefix;
|
|
37066
|
+
var Wrapper = isPrefix ? StyledPrefixWrapper : StyledSuffixWrapper;
|
|
37067
|
+
if (typeof element === 'string') {
|
|
37068
|
+
return /*#__PURE__*/React__namespace.default.createElement(Wrapper, null, /*#__PURE__*/React__namespace.default.createElement(StyledIcon, {
|
|
37069
|
+
testID: "floating-island-".concat(isPrefix ? 'prefix' : 'suffix', "-icon"),
|
|
37070
|
+
size: "small",
|
|
37071
|
+
icon: element
|
|
37072
|
+
}));
|
|
37073
|
+
}
|
|
37074
|
+
return /*#__PURE__*/React__namespace.default.createElement(Wrapper, null, element);
|
|
37075
|
+
};
|
|
37076
|
+
var FloatingIsland = function FloatingIsland(_ref2) {
|
|
37077
|
+
var onPress = _ref2.onPress,
|
|
37078
|
+
onLayout = _ref2.onLayout,
|
|
37079
|
+
style = _ref2.style,
|
|
37080
|
+
children = _ref2.children,
|
|
37081
|
+
prefix = _ref2.prefix,
|
|
37082
|
+
suffix = _ref2.suffix,
|
|
37083
|
+
props = _objectWithoutProperties(_ref2, _excluded);
|
|
37084
|
+
var _React$useState = React__namespace.default.useState(0),
|
|
37085
|
+
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
37086
|
+
width = _React$useState2[0],
|
|
37087
|
+
setWidth = _React$useState2[1];
|
|
37088
|
+
var onWrapperLayout = function onWrapperLayout(event) {
|
|
37089
|
+
setWidth(event.nativeEvent.layout.width);
|
|
37090
|
+
onLayout === null || onLayout === void 0 || onLayout(event);
|
|
37091
|
+
};
|
|
37092
|
+
return /*#__PURE__*/React__namespace.default.createElement(StyledWrapper, _extends$1({}, props, {
|
|
37093
|
+
onLayout: onWrapperLayout,
|
|
37094
|
+
disabled: !onPress,
|
|
37095
|
+
onPress: onPress,
|
|
37096
|
+
style: [style, width > 0 ? {
|
|
37097
|
+
transform: [{
|
|
37098
|
+
translateX: -width / 2
|
|
37099
|
+
}]
|
|
37100
|
+
} : undefined]
|
|
37101
|
+
}), prefix && getPrefixOrSuffix({
|
|
37102
|
+
element: prefix,
|
|
37103
|
+
isPrefix: true
|
|
37104
|
+
}), children, suffix && getPrefixOrSuffix({
|
|
37105
|
+
element: suffix,
|
|
37106
|
+
isPrefix: false
|
|
37107
|
+
}));
|
|
37108
|
+
};
|
|
37109
|
+
|
|
36997
37110
|
exports.Accordion = Accordion;
|
|
36998
37111
|
exports.Alert = Alert;
|
|
36999
37112
|
exports.Attachment = Attachment;
|
|
@@ -37017,6 +37130,7 @@ exports.Empty = Empty;
|
|
|
37017
37130
|
exports.Error = ErrorComponent;
|
|
37018
37131
|
exports.FAB = FAB;
|
|
37019
37132
|
exports.FlatListWithFAB = FlatListWithFAB;
|
|
37133
|
+
exports.FloatingIsland = FloatingIsland;
|
|
37020
37134
|
exports.HeroDesignProvider = HeroDesignProvider;
|
|
37021
37135
|
exports.Icon = Icon;
|
|
37022
37136
|
exports.Image = Image;
|