@next-core/brick-kit 2.103.4 → 2.103.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +39 -125
- package/dist/index.bundle.js +320 -302
- package/dist/index.bundle.js.map +1 -1
- package/dist/index.esm.js +359 -323
- package/dist/index.esm.js.map +1 -1
- package/dist/types/EasyopsEmpty/EasyopsEmpty.d.ts.map +1 -1
- package/dist/types/EasyopsEmpty/EmptySvg.d.ts +6 -0
- package/dist/types/EasyopsEmpty/EmptySvg.d.ts.map +1 -0
- package/package.json +14 -14
package/dist/index.esm.js
CHANGED
|
@@ -3,8 +3,7 @@ import _objectSpread from '@babel/runtime/helpers/objectSpread2';
|
|
|
3
3
|
import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
|
|
4
4
|
import _asyncToGenerator$4 from '@babel/runtime/helpers/asyncToGenerator';
|
|
5
5
|
import _defineProperty$1 from '@babel/runtime/helpers/defineProperty';
|
|
6
|
-
import
|
|
7
|
-
import React__default, { useState, useEffect, forwardRef, useRef, useImperativeHandle, useMemo, useContext, createContext } from 'react';
|
|
6
|
+
import React, { useState, useEffect, forwardRef, useRef, useImperativeHandle, useMemo, useContext, createContext } from 'react';
|
|
8
7
|
import lodash, { set, get, difference, identity, cloneDeep, isNil, sortBy, merge, clamp, uniqueId, orderBy, omit, isEmpty } from 'lodash';
|
|
9
8
|
import { toPath, computeRealRoutePath, hasOwnProperty, isObject, isEvaluable, transformAndInject, transform, trackContext, scanPermissionActionsInStoryboard, precookFunction, cook, shouldAllowRecursiveEvaluations, preevaluate, inject, deepFreeze, createProviderClass, scanRouteAliasInStoryboard, loadScript, getTemplateDepsOfStoryboard, getDllAndDepsOfStoryboard, asyncProcessStoryboard, prefetchScript, scanBricksInBrickConf, scanProcessorsInAny, getDllAndDepsByResource, resolveContextConcurrently, matchPath, asyncProcessBrick, restoreDynamicTemplates, mapCustomApisToNameAndNamespace, scanCustomApisInStoryboard } from '@next-core/brick-utils';
|
|
10
9
|
import { http, HttpResponseError, HttpFetchError } from '@next-core/brick-http';
|
|
@@ -16,7 +15,7 @@ import yaml from 'js-yaml';
|
|
|
16
15
|
import { Modal, message, Empty, ConfigProvider } from 'antd';
|
|
17
16
|
import { ExclamationCircleOutlined } from '@ant-design/icons';
|
|
18
17
|
import { withTranslation } from 'react-i18next';
|
|
19
|
-
import _extends
|
|
18
|
+
import _extends from '@babel/runtime/helpers/esm/extends';
|
|
20
19
|
import { getIllustration } from '@next-core/illustrations';
|
|
21
20
|
import _decorate from '@babel/runtime/helpers/decorate';
|
|
22
21
|
|
|
@@ -230,6 +229,37 @@ function compareVersions(v1, v2) {
|
|
|
230
229
|
|
|
231
230
|
return 0;
|
|
232
231
|
}
|
|
232
|
+
var validate = v => typeof v === 'string' && /^[v\d]/.test(v) && semver.test(v);
|
|
233
|
+
var compare = (v1, v2, operator) => {
|
|
234
|
+
// validate input operator
|
|
235
|
+
assertValidOperator(operator); // since result of compareVersions can only be -1 or 0 or 1
|
|
236
|
+
// a simple map can be used to replace switch
|
|
237
|
+
|
|
238
|
+
var res = compareVersions(v1, v2);
|
|
239
|
+
return operatorResMap[operator].includes(res);
|
|
240
|
+
};
|
|
241
|
+
var satisfies = (v, r) => {
|
|
242
|
+
// if no range operator then "="
|
|
243
|
+
var m = r.match(/^([<>=~^]+)/);
|
|
244
|
+
var op = m ? m[1] : '='; // if gt/lt/eq then operator compare
|
|
245
|
+
|
|
246
|
+
if (op !== '^' && op !== '~') return compare(v, r, op); // else range of either "~" or "^" is assumed
|
|
247
|
+
|
|
248
|
+
var [v1, v2, v3] = validateAndParse(v);
|
|
249
|
+
var [r1, r2, r3] = validateAndParse(r);
|
|
250
|
+
if (compareStrings(v1, r1) !== 0) return false;
|
|
251
|
+
|
|
252
|
+
if (op === '^') {
|
|
253
|
+
return compareSegments([v2, v3], [r2, r3]) >= 0;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
if (compareStrings(v2, r2) !== 0) return false;
|
|
257
|
+
return compareStrings(v3, r3) >= 0;
|
|
258
|
+
}; // export CJS style for parity
|
|
259
|
+
|
|
260
|
+
compareVersions.validate = validate;
|
|
261
|
+
compareVersions.compare = compare;
|
|
262
|
+
compareVersions.sastisfies = satisfies;
|
|
233
263
|
var semver = /^[v^~<>=]*?(\d+)(?:\.([x*]|\d+)(?:\.([x*]|\d+)(?:\.([x*]|\d+))?(?:-([\da-z\-]+(?:\.[\da-z\-]+)*))?(?:\+[\da-z\-]+(?:\.[\da-z\-]+)*)?)?)?$/i;
|
|
234
264
|
|
|
235
265
|
var validateAndParse = v => {
|
|
@@ -273,6 +303,25 @@ var compareSegments = (a, b) => {
|
|
|
273
303
|
return 0;
|
|
274
304
|
};
|
|
275
305
|
|
|
306
|
+
var operatorResMap = {
|
|
307
|
+
'>': [1],
|
|
308
|
+
'>=': [0, 1],
|
|
309
|
+
'=': [0],
|
|
310
|
+
'<=': [-1, 0],
|
|
311
|
+
'<': [-1]
|
|
312
|
+
};
|
|
313
|
+
var allowedOperators = Object.keys(operatorResMap);
|
|
314
|
+
|
|
315
|
+
var assertValidOperator = op => {
|
|
316
|
+
if (typeof op !== 'string') {
|
|
317
|
+
throw new TypeError("Invalid operator type, expected string but got ".concat(typeof op));
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
if (allowedOperators.indexOf(op) === -1) {
|
|
321
|
+
throw new Error("Invalid operator, expected one of ".concat(allowedOperators.join('|')));
|
|
322
|
+
}
|
|
323
|
+
};
|
|
324
|
+
|
|
276
325
|
var brickTemplateRegistry = new Map();
|
|
277
326
|
function registerBrickTemplate(name, factory) {
|
|
278
327
|
if (brickTemplateRegistry.has(name)) {
|
|
@@ -3204,8 +3253,8 @@ function handleHttpError(error) {
|
|
|
3204
3253
|
}
|
|
3205
3254
|
|
|
3206
3255
|
unauthenticatedConfirmModal = Modal.confirm({
|
|
3207
|
-
icon: /*#__PURE__*/
|
|
3208
|
-
content: /*#__PURE__*/
|
|
3256
|
+
icon: /*#__PURE__*/React.createElement(ExclamationCircleOutlined, null),
|
|
3257
|
+
content: /*#__PURE__*/React.createElement(LoginTimeoutMessage, null),
|
|
3209
3258
|
okText: i18next.t("".concat(NS_BRICK_KIT, ":").concat(K.MODAL_OK)),
|
|
3210
3259
|
cancelText: i18next.t("".concat(NS_BRICK_KIT, ":").concat(K.MODAL_CANCEL)),
|
|
3211
3260
|
onOk: () => {
|
|
@@ -3223,7 +3272,7 @@ function handleHttpError(error) {
|
|
|
3223
3272
|
|
|
3224
3273
|
return Modal.error({
|
|
3225
3274
|
title: i18next.t("".concat(NS_BRICK_KIT, ":").concat(K.REQUEST_FAILED)),
|
|
3226
|
-
content: /*#__PURE__*/
|
|
3275
|
+
content: /*#__PURE__*/React.createElement("div", {
|
|
3227
3276
|
style: {
|
|
3228
3277
|
whiteSpace: "pre-wrap"
|
|
3229
3278
|
}
|
|
@@ -3232,13 +3281,13 @@ function handleHttpError(error) {
|
|
|
3232
3281
|
});
|
|
3233
3282
|
}
|
|
3234
3283
|
function LoginTimeoutMessage() {
|
|
3235
|
-
|
|
3284
|
+
React.useEffect(() => {
|
|
3236
3285
|
// Unset confirm modal when it's destroyed.
|
|
3237
3286
|
return () => {
|
|
3238
3287
|
unauthenticatedConfirmModal = undefined;
|
|
3239
3288
|
};
|
|
3240
3289
|
}, []);
|
|
3241
|
-
return /*#__PURE__*/
|
|
3290
|
+
return /*#__PURE__*/React.createElement("div", null, i18next.t("".concat(NS_BRICK_KIT, ":").concat(K.LOGIN_TIMEOUT_MESSAGE)));
|
|
3242
3291
|
}
|
|
3243
3292
|
|
|
3244
3293
|
class WebsocketMessageRequest {
|
|
@@ -10708,7 +10757,7 @@ function getRuntime() {
|
|
|
10708
10757
|
}
|
|
10709
10758
|
|
|
10710
10759
|
// Ref https://reactjs.org/docs/error-boundaries.html
|
|
10711
|
-
class LegacyErrorBoundary extends
|
|
10760
|
+
class LegacyErrorBoundary extends React.Component {
|
|
10712
10761
|
constructor(props) {
|
|
10713
10762
|
super(props);
|
|
10714
10763
|
this.state = {
|
|
@@ -10731,9 +10780,9 @@ class LegacyErrorBoundary extends React__default.Component {
|
|
|
10731
10780
|
render() {
|
|
10732
10781
|
if (this.state.error) {
|
|
10733
10782
|
// You can render any custom fallback UI
|
|
10734
|
-
return /*#__PURE__*/
|
|
10783
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
10735
10784
|
"data-testid": "error-boundary"
|
|
10736
|
-
}, /*#__PURE__*/
|
|
10785
|
+
}, /*#__PURE__*/React.createElement("h3", null, this.props.t(K.SOMETHING_WENT_WRONG)), /*#__PURE__*/React.createElement("p", null, httpErrorToString(this.state.error)));
|
|
10737
10786
|
}
|
|
10738
10787
|
|
|
10739
10788
|
return this.props.children;
|
|
@@ -10928,8 +10977,8 @@ function useApplyPageTitle(pageTitle) {
|
|
|
10928
10977
|
/** @internal */
|
|
10929
10978
|
|
|
10930
10979
|
function useRecentApps() {
|
|
10931
|
-
var [recentApps, setRecentApps] =
|
|
10932
|
-
|
|
10980
|
+
var [recentApps, setRecentApps] = React.useState(getRuntime().getRecentApps());
|
|
10981
|
+
React.useEffect(() => {
|
|
10933
10982
|
var listener = event => {
|
|
10934
10983
|
setRecentApps(event.detail);
|
|
10935
10984
|
};
|
|
@@ -10963,8 +11012,8 @@ function useCurrentApp() {
|
|
|
10963
11012
|
|
|
10964
11013
|
function useLocation() {
|
|
10965
11014
|
var history = getHistory();
|
|
10966
|
-
var [location, setLocation] =
|
|
10967
|
-
|
|
11015
|
+
var [location, setLocation] = React.useState(history.location);
|
|
11016
|
+
React.useEffect(() => {
|
|
10968
11017
|
var unlisten = history.listen(location => setLocation(location));
|
|
10969
11018
|
return unlisten;
|
|
10970
11019
|
}, [history]);
|
|
@@ -11115,7 +11164,7 @@ var handleProxyOfParentTemplate = (brick, tplContextId, tplContext) => {
|
|
|
11115
11164
|
* @param props - 属性。
|
|
11116
11165
|
*/
|
|
11117
11166
|
|
|
11118
|
-
var SingleBrickAsComponent = /*#__PURE__*/
|
|
11167
|
+
var SingleBrickAsComponent = /*#__PURE__*/React.memo(function SingleBrickAsComponent(_ref2) {
|
|
11119
11168
|
var {
|
|
11120
11169
|
useBrick,
|
|
11121
11170
|
data,
|
|
@@ -11128,7 +11177,7 @@ var SingleBrickAsComponent = /*#__PURE__*/React__default.memo(function SingleBri
|
|
|
11128
11177
|
|
|
11129
11178
|
var template;
|
|
11130
11179
|
var brick;
|
|
11131
|
-
var isBrickAvailable =
|
|
11180
|
+
var isBrickAvailable = React.useMemo(() => {
|
|
11132
11181
|
if (isObject(useBrick.if) && !isPreEvaluated(useBrick.if)) {
|
|
11133
11182
|
// eslint-disable-next-line
|
|
11134
11183
|
console.warn("Currently resolvable-if in `useBrick` is not supported.");
|
|
@@ -11142,7 +11191,7 @@ var SingleBrickAsComponent = /*#__PURE__*/React__default.memo(function SingleBri
|
|
|
11142
11191
|
|
|
11143
11192
|
return true;
|
|
11144
11193
|
}, [useBrick, data]);
|
|
11145
|
-
var runtimeBrick =
|
|
11194
|
+
var runtimeBrick = React.useMemo( /*#__PURE__*/_asyncToGenerator$4(function* () {
|
|
11146
11195
|
if (!isBrickAvailable) {
|
|
11147
11196
|
return null;
|
|
11148
11197
|
} // If the router state is initial, ignore rendering the sub-brick.
|
|
@@ -11181,7 +11230,7 @@ var SingleBrickAsComponent = /*#__PURE__*/React__default.memo(function SingleBri
|
|
|
11181
11230
|
|
|
11182
11231
|
return brick;
|
|
11183
11232
|
}), [useBrick, data, isBrickAvailable]);
|
|
11184
|
-
var innerRefCallback =
|
|
11233
|
+
var innerRefCallback = React.useCallback( /*#__PURE__*/function () {
|
|
11185
11234
|
var _ref5 = _asyncToGenerator$4(function* (element) {
|
|
11186
11235
|
immediatelyRefCallback === null || immediatelyRefCallback === void 0 ? void 0 : immediatelyRefCallback(element);
|
|
11187
11236
|
|
|
@@ -11236,24 +11285,24 @@ var SingleBrickAsComponent = /*#__PURE__*/React__default.memo(function SingleBri
|
|
|
11236
11285
|
}
|
|
11237
11286
|
|
|
11238
11287
|
if (template) {
|
|
11239
|
-
return /*#__PURE__*/
|
|
11288
|
+
return /*#__PURE__*/React.createElement(template.brick, {
|
|
11240
11289
|
ref: innerRefCallback
|
|
11241
11290
|
}, ...slotsToChildren(template.slots).map((item, index) => {
|
|
11242
|
-
return /*#__PURE__*/
|
|
11291
|
+
return /*#__PURE__*/React.createElement(SingleBrickAsComponent, {
|
|
11243
11292
|
key: index,
|
|
11244
11293
|
useBrick: item,
|
|
11245
11294
|
data: data
|
|
11246
11295
|
});
|
|
11247
11296
|
}));
|
|
11248
11297
|
} else {
|
|
11249
|
-
return /*#__PURE__*/
|
|
11298
|
+
return /*#__PURE__*/React.createElement(useBrick.brick, {
|
|
11250
11299
|
ref: innerRefCallback
|
|
11251
11300
|
}, ...slotsToChildren(useBrick.slots).map((item, index) => {
|
|
11252
11301
|
if (useBrick[symbolForTplContextId] && !item[symbolForTplContextId]) {
|
|
11253
11302
|
item[symbolForTplContextId] = useBrick[symbolForTplContextId];
|
|
11254
11303
|
}
|
|
11255
11304
|
|
|
11256
|
-
return /*#__PURE__*/
|
|
11305
|
+
return /*#__PURE__*/React.createElement(SingleBrickAsComponent, {
|
|
11257
11306
|
key: index,
|
|
11258
11307
|
useBrick: item,
|
|
11259
11308
|
data: data
|
|
@@ -11289,7 +11338,7 @@ function BrickAsComponent(_ref6) {
|
|
|
11289
11338
|
} = _ref6;
|
|
11290
11339
|
|
|
11291
11340
|
if (Array.isArray(useBrick)) {
|
|
11292
|
-
return /*#__PURE__*/
|
|
11341
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, useBrick.map((item, index) => /*#__PURE__*/React.createElement(SingleBrickAsComponent, {
|
|
11293
11342
|
key: index,
|
|
11294
11343
|
useBrick: item,
|
|
11295
11344
|
data: data,
|
|
@@ -11297,7 +11346,7 @@ function BrickAsComponent(_ref6) {
|
|
|
11297
11346
|
})));
|
|
11298
11347
|
}
|
|
11299
11348
|
|
|
11300
|
-
return /*#__PURE__*/
|
|
11349
|
+
return /*#__PURE__*/React.createElement(SingleBrickAsComponent, {
|
|
11301
11350
|
useBrick: useBrick,
|
|
11302
11351
|
data: data,
|
|
11303
11352
|
parentRefForUseBrickInPortal: parentRefForUseBrickInPortal
|
|
@@ -11330,7 +11379,7 @@ function transformEvents(data, events) {
|
|
|
11330
11379
|
// eslint-disable-next-line react/display-name
|
|
11331
11380
|
|
|
11332
11381
|
|
|
11333
|
-
var ForwardRefSingleBrickAsComponent = /*#__PURE__*/
|
|
11382
|
+
var ForwardRefSingleBrickAsComponent = /*#__PURE__*/React.memo( /*#__PURE__*/forwardRef(function LegacySingleBrickAsComponent(_ref8, ref) {
|
|
11334
11383
|
var {
|
|
11335
11384
|
useBrick,
|
|
11336
11385
|
data,
|
|
@@ -11343,7 +11392,7 @@ var ForwardRefSingleBrickAsComponent = /*#__PURE__*/React__default.memo( /*#__PU
|
|
|
11343
11392
|
|
|
11344
11393
|
var template;
|
|
11345
11394
|
var brick;
|
|
11346
|
-
var isBrickAvailable =
|
|
11395
|
+
var isBrickAvailable = React.useMemo(() => {
|
|
11347
11396
|
if (isObject(useBrick.if) && !isPreEvaluated(useBrick.if)) {
|
|
11348
11397
|
// eslint-disable-next-line
|
|
11349
11398
|
console.warn("Currently resolvable-if in `useBrick` is not supported.");
|
|
@@ -11360,7 +11409,7 @@ var ForwardRefSingleBrickAsComponent = /*#__PURE__*/React__default.memo( /*#__PU
|
|
|
11360
11409
|
useImperativeHandle(ref, () => {
|
|
11361
11410
|
return brickRef.current;
|
|
11362
11411
|
});
|
|
11363
|
-
var runtimeBrick =
|
|
11412
|
+
var runtimeBrick = React.useMemo( /*#__PURE__*/_asyncToGenerator$4(function* () {
|
|
11364
11413
|
if (!isBrickAvailable) {
|
|
11365
11414
|
return null;
|
|
11366
11415
|
} // If the router state is initial, ignore rendering the sub-brick.
|
|
@@ -11401,7 +11450,7 @@ var ForwardRefSingleBrickAsComponent = /*#__PURE__*/React__default.memo( /*#__PU
|
|
|
11401
11450
|
listenOnTrackingContext(brick, trackingContextList, runtimeContext);
|
|
11402
11451
|
return brick;
|
|
11403
11452
|
}), [useBrick, data, isBrickAvailable]);
|
|
11404
|
-
var innerRefCallback =
|
|
11453
|
+
var innerRefCallback = React.useCallback( /*#__PURE__*/function () {
|
|
11405
11454
|
var _ref11 = _asyncToGenerator$4(function* (element) {
|
|
11406
11455
|
brickRef.current = element;
|
|
11407
11456
|
|
|
@@ -11456,24 +11505,24 @@ var ForwardRefSingleBrickAsComponent = /*#__PURE__*/React__default.memo( /*#__PU
|
|
|
11456
11505
|
}
|
|
11457
11506
|
|
|
11458
11507
|
if (template) {
|
|
11459
|
-
return /*#__PURE__*/
|
|
11508
|
+
return /*#__PURE__*/React.createElement(template.brick, {
|
|
11460
11509
|
ref: innerRefCallback
|
|
11461
11510
|
}, ...slotsToChildren(template.slots).map((item, index) => {
|
|
11462
|
-
return /*#__PURE__*/
|
|
11511
|
+
return /*#__PURE__*/React.createElement(SingleBrickAsComponent, {
|
|
11463
11512
|
key: index,
|
|
11464
11513
|
useBrick: item,
|
|
11465
11514
|
data: data
|
|
11466
11515
|
});
|
|
11467
11516
|
}));
|
|
11468
11517
|
} else {
|
|
11469
|
-
return /*#__PURE__*/
|
|
11518
|
+
return /*#__PURE__*/React.createElement(useBrick.brick, {
|
|
11470
11519
|
ref: innerRefCallback
|
|
11471
11520
|
}, ...slotsToChildren(useBrick.slots).map((item, index) => {
|
|
11472
11521
|
if (useBrick[symbolForTplContextId] && !item[symbolForTplContextId]) {
|
|
11473
11522
|
item[symbolForTplContextId] = useBrick[symbolForTplContextId];
|
|
11474
11523
|
}
|
|
11475
11524
|
|
|
11476
|
-
return /*#__PURE__*/
|
|
11525
|
+
return /*#__PURE__*/React.createElement(SingleBrickAsComponent, {
|
|
11477
11526
|
key: index,
|
|
11478
11527
|
useBrick: item,
|
|
11479
11528
|
data: data
|
|
@@ -11533,7 +11582,7 @@ var locale$4 = {
|
|
|
11533
11582
|
var TimePicker$1 = locale$4;
|
|
11534
11583
|
|
|
11535
11584
|
var locale$3 = {
|
|
11536
|
-
lang: _extends
|
|
11585
|
+
lang: _extends({
|
|
11537
11586
|
placeholder: '请选择日期',
|
|
11538
11587
|
yearPlaceholder: '请选择年份',
|
|
11539
11588
|
quarterPlaceholder: '请选择季度',
|
|
@@ -11544,7 +11593,7 @@ var locale$3 = {
|
|
|
11544
11593
|
rangeMonthPlaceholder: ['开始月份', '结束月份'],
|
|
11545
11594
|
rangeWeekPlaceholder: ['开始周', '结束周']
|
|
11546
11595
|
}, locale$5),
|
|
11547
|
-
timePickerLocale: _extends
|
|
11596
|
+
timePickerLocale: _extends({}, TimePicker$1)
|
|
11548
11597
|
}; // should add whitespace between char in Button
|
|
11549
11598
|
|
|
11550
11599
|
locale$3.lang.ok = '确 定'; // All settings at:
|
|
@@ -11730,7 +11779,7 @@ var locale$1 = {
|
|
|
11730
11779
|
var TimePicker = locale$1;
|
|
11731
11780
|
|
|
11732
11781
|
var locale = {
|
|
11733
|
-
lang: _extends
|
|
11782
|
+
lang: _extends({
|
|
11734
11783
|
placeholder: 'Select date',
|
|
11735
11784
|
yearPlaceholder: 'Select year',
|
|
11736
11785
|
quarterPlaceholder: 'Select quarter',
|
|
@@ -11741,7 +11790,7 @@ var locale = {
|
|
|
11741
11790
|
rangeMonthPlaceholder: ['Start month', 'End month'],
|
|
11742
11791
|
rangeWeekPlaceholder: ['Start week', 'End week']
|
|
11743
11792
|
}, locale$2),
|
|
11744
|
-
timePickerLocale: _extends
|
|
11793
|
+
timePickerLocale: _extends({}, TimePicker)
|
|
11745
11794
|
}; // All settings at:
|
|
11746
11795
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
|
11747
11796
|
|
|
@@ -11874,288 +11923,276 @@ var localeValues = {
|
|
|
11874
11923
|
};
|
|
11875
11924
|
var defaultLocale = localeValues;
|
|
11876
11925
|
|
|
11877
|
-
function
|
|
11878
|
-
|
|
11879
|
-
var _ref$1 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
11880
|
-
x1: "5.718%",
|
|
11881
|
-
y1: "4.311%",
|
|
11882
|
-
x2: "83.05%",
|
|
11883
|
-
y2: "88.915%",
|
|
11884
|
-
id: "empty-image_svg__a"
|
|
11885
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
11886
|
-
stopColor: "#D4D8E4",
|
|
11887
|
-
offset: "0%"
|
|
11888
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
11889
|
-
stopColor: "#A9B0C4",
|
|
11890
|
-
offset: "100%"
|
|
11891
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
11892
|
-
x1: "0%",
|
|
11893
|
-
y1: "11.08%",
|
|
11894
|
-
x2: "80.548%",
|
|
11895
|
-
y2: "107.704%",
|
|
11896
|
-
id: "empty-image_svg__d"
|
|
11897
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
11898
|
-
stopColor: "#C2C7DA",
|
|
11899
|
-
offset: "0%"
|
|
11900
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
11901
|
-
stopColor: "#8F96B3",
|
|
11902
|
-
offset: "100%"
|
|
11903
|
-
})), /*#__PURE__*/React.createElement("path", {
|
|
11904
|
-
d: "M23.672 23.607h2.492a4 4 0 0 1 4 4v2.491a4 4 0 0 1-4 4h-2.492a4 4 0 0 1-4-4v-2.491a4 4 0 0 1 4-4z",
|
|
11905
|
-
id: "empty-image_svg__c"
|
|
11906
|
-
}), /*#__PURE__*/React.createElement("filter", {
|
|
11907
|
-
x: "-57.2%",
|
|
11908
|
-
y: "-47.7%",
|
|
11909
|
-
width: "233.4%",
|
|
11910
|
-
height: "233.4%",
|
|
11911
|
-
filterUnits: "objectBoundingBox",
|
|
11912
|
-
id: "empty-image_svg__b"
|
|
11913
|
-
}, /*#__PURE__*/React.createElement("feOffset", {
|
|
11914
|
-
dx: 1,
|
|
11915
|
-
dy: 2,
|
|
11916
|
-
in: "SourceAlpha",
|
|
11917
|
-
result: "shadowOffsetOuter1"
|
|
11918
|
-
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
11919
|
-
stdDeviation: 2,
|
|
11920
|
-
in: "shadowOffsetOuter1",
|
|
11921
|
-
result: "shadowBlurOuter1"
|
|
11922
|
-
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
11923
|
-
in: "shadowBlurOuter1",
|
|
11924
|
-
in2: "SourceAlpha",
|
|
11925
|
-
operator: "out",
|
|
11926
|
-
result: "shadowBlurOuter1"
|
|
11927
|
-
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
11928
|
-
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.22 0",
|
|
11929
|
-
in: "shadowBlurOuter1"
|
|
11930
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
11931
|
-
x1: "41.823%",
|
|
11932
|
-
y1: "24.795%",
|
|
11933
|
-
x2: "8.813%",
|
|
11934
|
-
y2: "86.427%",
|
|
11935
|
-
id: "empty-image_svg__g"
|
|
11936
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
11937
|
-
stopColor: "#CCD0DD",
|
|
11938
|
-
offset: "0%"
|
|
11939
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
11940
|
-
stopColor: "#9DA3B9",
|
|
11941
|
-
offset: "100%"
|
|
11942
|
-
})), /*#__PURE__*/React.createElement("path", {
|
|
11943
|
-
d: "M37.311 12.459a4 4 0 0 1 4 4v3.419l-7.418-7.419h3.418z",
|
|
11944
|
-
id: "empty-image_svg__f"
|
|
11945
|
-
}), /*#__PURE__*/React.createElement("filter", {
|
|
11946
|
-
x: "-94.4%",
|
|
11947
|
-
y: "-121.3%",
|
|
11948
|
-
width: "288.7%",
|
|
11949
|
-
height: "288.7%",
|
|
11950
|
-
filterUnits: "objectBoundingBox",
|
|
11951
|
-
id: "empty-image_svg__e"
|
|
11952
|
-
}, /*#__PURE__*/React.createElement("feOffset", {
|
|
11953
|
-
dy: -2,
|
|
11954
|
-
in: "SourceAlpha",
|
|
11955
|
-
result: "shadowOffsetOuter1"
|
|
11956
|
-
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
11957
|
-
stdDeviation: 2,
|
|
11958
|
-
in: "shadowOffsetOuter1",
|
|
11959
|
-
result: "shadowBlurOuter1"
|
|
11960
|
-
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
11961
|
-
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0",
|
|
11962
|
-
in: "shadowBlurOuter1"
|
|
11963
|
-
})));
|
|
11964
|
-
|
|
11965
|
-
var _ref2$1 = /*#__PURE__*/React.createElement("g", {
|
|
11966
|
-
fill: "none",
|
|
11967
|
-
fillRule: "evenodd"
|
|
11968
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
11969
|
-
d: "M39.682 33.967H10.81a2.8 2.8 0 0 0-1.94.782l-5.197 4.999v6.98a5.6 5.6 0 0 0 5.6 5.6H41.22a5.6 5.6 0 0 0 5.6-5.6v-6.98l-5.196-4.999a2.8 2.8 0 0 0-1.942-.782z",
|
|
11970
|
-
fill: "#A6AAC3"
|
|
11971
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
11972
|
-
d: "M33.893 12.459l7.418 7.419v22.568a2.8 2.8 0 0 1-2.8 2.8h-26.53a2.8 2.8 0 0 1-2.8-2.8V18.459a6 6 0 0 1 6-6h18.712z",
|
|
11973
|
-
fill: "url(#empty-image_svg__a)"
|
|
11974
|
-
}), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("use", {
|
|
11975
|
-
fill: "#000",
|
|
11976
|
-
filter: "url(#empty-image_svg__b)",
|
|
11977
|
-
xlinkHref: "#empty-image_svg__c"
|
|
11978
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
11979
|
-
stroke: "#FFF",
|
|
11980
|
-
d: "M26.164 24.107c.966 0 1.841.391 2.475 1.025a3.489 3.489 0 0 1 1.025 2.475h0v2.491c0 .967-.392 1.842-1.025 2.475a3.489 3.489 0 0 1-2.475 1.025h0-2.492a3.489 3.489 0 0 1-2.475-1.025 3.489 3.489 0 0 1-1.025-2.475h0v-2.491c0-.967.392-1.842 1.025-2.475a3.489 3.489 0 0 1 2.475-1.025h0z",
|
|
11981
|
-
strokeLinejoin: "square",
|
|
11982
|
-
fill: "url(#empty-image_svg__d)"
|
|
11983
|
-
})), /*#__PURE__*/React.createElement("g", {
|
|
11984
|
-
transform: "rotate(180 37.602 16.168)"
|
|
11985
|
-
}, /*#__PURE__*/React.createElement("use", {
|
|
11986
|
-
fill: "#000",
|
|
11987
|
-
filter: "url(#empty-image_svg__e)",
|
|
11988
|
-
xlinkHref: "#empty-image_svg__f"
|
|
11989
|
-
}), /*#__PURE__*/React.createElement("use", {
|
|
11990
|
-
fill: "url(#empty-image_svg__g)",
|
|
11991
|
-
xlinkHref: "#empty-image_svg__f"
|
|
11992
|
-
})), /*#__PURE__*/React.createElement("path", {
|
|
11993
|
-
d: "M54.164 27.541c.253 0 .459.205.459.459v.918h.918a.459.459 0 1 1 0 .918h-.918v.918a.459.459 0 0 1-.918 0v-.918h-.918a.459.459 0 0 1 0-.918h.918V28c0-.254.205-.459.459-.459zM1.377 20.197c.19 0 .344.154.344.344v.574h.574a.459.459 0 1 1 0 .918h-.574v.574a.344.344 0 0 1-.688 0l-.001-.574H.459a.459.459 0 0 1 0-.918h.573v-.574c0-.19.155-.344.345-.344z",
|
|
11994
|
-
fill: "#D6D8E4",
|
|
11995
|
-
opacity: 0.3
|
|
11996
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
11997
|
-
d: "M24.787 43.53h.014c7.087.143 9.817-3.834 12.785-4.046l.19-.008h9.044v10.052a2.8 2.8 0 0 1-2.63 2.795l-.17.005H6.472l-.17-.005a2.8 2.8 0 0 1-2.63-2.795V39.475h8.126l.144-.004c2.485.004 5.214 3.898 12.83 4.06l.015-.002z",
|
|
11998
|
-
fill: "#D6D8E4"
|
|
11999
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
12000
|
-
d: "M13.77 2.2s2.308-.555 2.962-2.2c.943 1.35 1.429 1.933 2.547 2.189-1.522.453-2.183.963-2.704 2.401-.598-1.695-1.142-1.914-2.805-2.39",
|
|
12001
|
-
fill: "#D6D8E4",
|
|
12002
|
-
opacity: 0.5
|
|
12003
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
12004
|
-
d: "M41.311 6.64S47.464 5.194 49.21.917c2.514 3.508 3.81 5.025 6.791 5.691-4.059 1.18-5.822 2.503-7.21 6.243-1.594-4.406-3.045-4.976-7.479-6.213",
|
|
12005
|
-
fill: "#D6D8E4",
|
|
12006
|
-
opacity: 0.8
|
|
12007
|
-
}));
|
|
11926
|
+
function EmptySvg(props) {
|
|
11927
|
+
var prefix = uniqueId();
|
|
12008
11928
|
|
|
12009
|
-
|
|
12010
|
-
|
|
12011
|
-
|
|
12012
|
-
height: 53,
|
|
12013
|
-
viewBox: "0 0 56 53",
|
|
12014
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
12015
|
-
xmlnsXlink: "http://www.w3.org/1999/xlink"
|
|
12016
|
-
}, props), _ref$1, _ref2$1);
|
|
12017
|
-
}
|
|
12018
|
-
|
|
12019
|
-
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
12020
|
-
|
|
12021
|
-
var _ref = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
12022
|
-
x1: "5.718%",
|
|
12023
|
-
y1: "4.311%",
|
|
12024
|
-
x2: "83.05%",
|
|
12025
|
-
y2: "88.915%",
|
|
12026
|
-
id: "big-empty-image_svg__a"
|
|
12027
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
12028
|
-
stopColor: "#D4D8E4",
|
|
12029
|
-
offset: "0%"
|
|
12030
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
12031
|
-
stopColor: "#A9B0C4",
|
|
12032
|
-
offset: "100%"
|
|
12033
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
12034
|
-
x1: "0%",
|
|
12035
|
-
y1: "11.08%",
|
|
12036
|
-
x2: "80.548%",
|
|
12037
|
-
y2: "107.704%",
|
|
12038
|
-
id: "big-empty-image_svg__d"
|
|
12039
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
12040
|
-
stopColor: "#C2C7DA",
|
|
12041
|
-
offset: "0%"
|
|
12042
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
12043
|
-
stopColor: "#8F96B3",
|
|
12044
|
-
offset: "100%"
|
|
12045
|
-
})), /*#__PURE__*/React.createElement("path", {
|
|
12046
|
-
d: "M34 36h8a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4h-8a4 4 0 0 1-4-4v-8a4 4 0 0 1 4-4z",
|
|
12047
|
-
id: "big-empty-image_svg__c"
|
|
12048
|
-
}), /*#__PURE__*/React.createElement("filter", {
|
|
12049
|
-
x: "-37.5%",
|
|
12050
|
-
y: "-31.3%",
|
|
12051
|
-
width: "187.5%",
|
|
12052
|
-
height: "187.5%",
|
|
12053
|
-
filterUnits: "objectBoundingBox",
|
|
12054
|
-
id: "big-empty-image_svg__b"
|
|
12055
|
-
}, /*#__PURE__*/React.createElement("feOffset", {
|
|
12056
|
-
dx: 1,
|
|
12057
|
-
dy: 2,
|
|
12058
|
-
in: "SourceAlpha",
|
|
12059
|
-
result: "shadowOffsetOuter1"
|
|
12060
|
-
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
12061
|
-
stdDeviation: 2,
|
|
12062
|
-
in: "shadowOffsetOuter1",
|
|
12063
|
-
result: "shadowBlurOuter1"
|
|
12064
|
-
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
12065
|
-
in: "shadowBlurOuter1",
|
|
12066
|
-
in2: "SourceAlpha",
|
|
12067
|
-
operator: "out",
|
|
12068
|
-
result: "shadowBlurOuter1"
|
|
12069
|
-
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
12070
|
-
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.22 0",
|
|
12071
|
-
in: "shadowBlurOuter1"
|
|
12072
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
12073
|
-
x1: "41.823%",
|
|
12074
|
-
y1: "24.795%",
|
|
12075
|
-
x2: "8.813%",
|
|
12076
|
-
y2: "86.427%",
|
|
12077
|
-
id: "big-empty-image_svg__g"
|
|
12078
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
12079
|
-
stopColor: "#CCD0DD",
|
|
12080
|
-
offset: "0%"
|
|
12081
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
12082
|
-
stopColor: "#9DA3B9",
|
|
12083
|
-
offset: "100%"
|
|
12084
|
-
})), /*#__PURE__*/React.createElement("path", {
|
|
12085
|
-
d: "M59 19a4 4 0 0 1 4 4v7.314L51.686 19H59z",
|
|
12086
|
-
id: "big-empty-image_svg__f"
|
|
12087
|
-
}), /*#__PURE__*/React.createElement("filter", {
|
|
12088
|
-
x: "-61.9%",
|
|
12089
|
-
y: "-79.5%",
|
|
12090
|
-
width: "223.7%",
|
|
12091
|
-
height: "223.7%",
|
|
12092
|
-
filterUnits: "objectBoundingBox",
|
|
12093
|
-
id: "big-empty-image_svg__e"
|
|
12094
|
-
}, /*#__PURE__*/React.createElement("feOffset", {
|
|
12095
|
-
dy: -2,
|
|
12096
|
-
in: "SourceAlpha",
|
|
12097
|
-
result: "shadowOffsetOuter1"
|
|
12098
|
-
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
12099
|
-
stdDeviation: 2,
|
|
12100
|
-
in: "shadowOffsetOuter1",
|
|
12101
|
-
result: "shadowBlurOuter1"
|
|
12102
|
-
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
12103
|
-
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0",
|
|
12104
|
-
in: "shadowBlurOuter1"
|
|
12105
|
-
})));
|
|
12106
|
-
|
|
12107
|
-
var _ref2 = /*#__PURE__*/React.createElement("g", {
|
|
12108
|
-
fill: "none",
|
|
12109
|
-
fillRule: "evenodd"
|
|
12110
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
12111
|
-
d: "M61.108 51.8H15.892a2.8 2.8 0 0 0-1.941.782L5.6 60.615V74.2a5.6 5.6 0 0 0 5.6 5.6h54.6a5.6 5.6 0 0 0 5.6-5.6V60.615l-8.35-8.033a2.8 2.8 0 0 0-1.942-.782z",
|
|
12112
|
-
fill: "#A6AAC3"
|
|
12113
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
12114
|
-
d: "M51.686 19L63 30.314V66.2a2.8 2.8 0 0 1-2.8 2.8H16.8a2.8 2.8 0 0 1-2.8-2.8V25a6 6 0 0 1 6-6h31.686z",
|
|
12115
|
-
fill: "url(#big-empty-image_svg__a)"
|
|
12116
|
-
}), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("use", {
|
|
12117
|
-
fill: "#000",
|
|
12118
|
-
filter: "url(#big-empty-image_svg__b)",
|
|
12119
|
-
xlinkHref: "#big-empty-image_svg__c"
|
|
12120
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
12121
|
-
stroke: "#FFF",
|
|
12122
|
-
d: "M42 36.5c.966 0 1.841.392 2.475 1.025A3.489 3.489 0 0 1 45.5 40h0v8c0 .966-.392 1.841-1.025 2.475A3.489 3.489 0 0 1 42 51.5h0-8a3.489 3.489 0 0 1-2.475-1.025A3.489 3.489 0 0 1 30.5 48h0v-8c0-.966.392-1.841 1.025-2.475A3.489 3.489 0 0 1 34 36.5h0z",
|
|
12123
|
-
strokeLinejoin: "square",
|
|
12124
|
-
fill: "url(#big-empty-image_svg__d)"
|
|
12125
|
-
})), /*#__PURE__*/React.createElement("g", {
|
|
12126
|
-
transform: "rotate(180 57.343 24.657)"
|
|
12127
|
-
}, /*#__PURE__*/React.createElement("use", {
|
|
12128
|
-
fill: "#000",
|
|
12129
|
-
filter: "url(#big-empty-image_svg__e)",
|
|
12130
|
-
xlinkHref: "#big-empty-image_svg__f"
|
|
12131
|
-
}), /*#__PURE__*/React.createElement("use", {
|
|
12132
|
-
fill: "url(#big-empty-image_svg__g)",
|
|
12133
|
-
xlinkHref: "#big-empty-image_svg__f"
|
|
12134
|
-
})), /*#__PURE__*/React.createElement("path", {
|
|
12135
|
-
d: "M82.6 42a.7.7 0 0 1 .7.7v1.399l1.4.001a.7.7 0 0 1 0 1.4l-1.4-.001V46.9a.7.7 0 0 1-1.4 0v-1.401l-1.4.001a.7.7 0 0 1 0-1.4l1.4-.001V42.7a.7.7 0 0 1 .7-.7zM2.1 30.8c.29 0 .525.235.525.525l-.001.874.876.001a.7.7 0 0 1 0 1.4h-.876l.001.875a.525.525 0 1 1-1.05 0l-.001-.875H.7a.7.7 0 0 1 0-1.4l.874-.001.001-.874c0-.29.235-.525.525-.525z",
|
|
12136
|
-
fill: "#D6D8E4",
|
|
12137
|
-
opacity: 0.3
|
|
12138
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
12139
|
-
d: "M8.4 79.8l-.17-.005A2.8 2.8 0 0 1 5.6 77V60.2h12.393l.175-.006c3.802-.04 7.95 5.943 19.61 6.19l.022-.002.022.002c10.856.218 15.009-5.902 19.558-6.175l.227-.009H71.4V77a2.8 2.8 0 0 1-2.63 2.795l-.17.005H8.4z",
|
|
12140
|
-
fill: "#D6D8E4"
|
|
12141
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
12142
|
-
d: "M21 3.356S24.518 2.509 25.516 0c1.438 2.057 2.18 2.947 3.884 3.338-2.321.692-3.33 1.468-4.123 3.662-.912-2.584-1.741-2.919-4.277-3.644",
|
|
12143
|
-
fill: "#D6D8E4",
|
|
12144
|
-
opacity: 0.5
|
|
12145
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
12146
|
-
d: "M63 10.125S72.382 7.923 75.044 1.4c3.834 5.35 5.81 7.663 10.356 8.68-6.19 1.797-8.878 3.816-10.995 9.52-2.43-6.72-4.643-7.59-11.405-9.475",
|
|
12147
|
-
fill: "#D6D8E4",
|
|
12148
|
-
opacity: 0.8
|
|
12149
|
-
}));
|
|
11929
|
+
var createNewId = id => {
|
|
11930
|
+
return prefix + id;
|
|
11931
|
+
};
|
|
12150
11932
|
|
|
12151
|
-
|
|
12152
|
-
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11933
|
+
return props.isBig ? /*#__PURE__*/React.createElement("svg", {
|
|
12153
11934
|
width: 86,
|
|
12154
11935
|
height: 80,
|
|
12155
|
-
viewBox: "0 0 86 80",
|
|
12156
11936
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12157
11937
|
xmlnsXlink: "http://www.w3.org/1999/xlink"
|
|
12158
|
-
},
|
|
11938
|
+
}, /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
11939
|
+
x1: "5.718%",
|
|
11940
|
+
y1: "4.311%",
|
|
11941
|
+
x2: "83.05%",
|
|
11942
|
+
y2: "88.915%",
|
|
11943
|
+
id: createNewId("a")
|
|
11944
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
11945
|
+
stopColor: "#D4D8E4",
|
|
11946
|
+
offset: "0%"
|
|
11947
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
11948
|
+
stopColor: "#A9B0C4",
|
|
11949
|
+
offset: "100%"
|
|
11950
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
11951
|
+
x1: "0%",
|
|
11952
|
+
y1: "11.08%",
|
|
11953
|
+
x2: "80.548%",
|
|
11954
|
+
y2: "107.704%",
|
|
11955
|
+
id: createNewId("d")
|
|
11956
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
11957
|
+
stopColor: "#C2C7DA",
|
|
11958
|
+
offset: "0%"
|
|
11959
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
11960
|
+
stopColor: "#8F96B3",
|
|
11961
|
+
offset: "100%"
|
|
11962
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
11963
|
+
x1: "41.823%",
|
|
11964
|
+
y1: "24.795%",
|
|
11965
|
+
x2: "8.813%",
|
|
11966
|
+
y2: "86.427%",
|
|
11967
|
+
id: createNewId("g")
|
|
11968
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
11969
|
+
stopColor: "#CCD0DD",
|
|
11970
|
+
offset: "0%"
|
|
11971
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
11972
|
+
stopColor: "#9DA3B9",
|
|
11973
|
+
offset: "100%"
|
|
11974
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
11975
|
+
x: "-37.5%",
|
|
11976
|
+
y: "-31.3%",
|
|
11977
|
+
width: "187.5%",
|
|
11978
|
+
height: "187.5%",
|
|
11979
|
+
filterUnits: "objectBoundingBox",
|
|
11980
|
+
id: createNewId("b")
|
|
11981
|
+
}, /*#__PURE__*/React.createElement("feOffset", {
|
|
11982
|
+
dx: 1,
|
|
11983
|
+
dy: 2,
|
|
11984
|
+
in: "SourceAlpha",
|
|
11985
|
+
result: "shadowOffsetOuter1"
|
|
11986
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
11987
|
+
stdDeviation: 2,
|
|
11988
|
+
in: "shadowOffsetOuter1",
|
|
11989
|
+
result: "shadowBlurOuter1"
|
|
11990
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
11991
|
+
in: "shadowBlurOuter1",
|
|
11992
|
+
in2: "SourceAlpha",
|
|
11993
|
+
operator: "out",
|
|
11994
|
+
result: "shadowBlurOuter1"
|
|
11995
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
11996
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.22 0",
|
|
11997
|
+
in: "shadowBlurOuter1"
|
|
11998
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
11999
|
+
x: "-61.9%",
|
|
12000
|
+
y: "-79.5%",
|
|
12001
|
+
width: "223.7%",
|
|
12002
|
+
height: "223.7%",
|
|
12003
|
+
filterUnits: "objectBoundingBox",
|
|
12004
|
+
id: createNewId("e")
|
|
12005
|
+
}, /*#__PURE__*/React.createElement("feOffset", {
|
|
12006
|
+
dy: -2,
|
|
12007
|
+
in: "SourceAlpha",
|
|
12008
|
+
result: "shadowOffsetOuter1"
|
|
12009
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
12010
|
+
stdDeviation: 2,
|
|
12011
|
+
in: "shadowOffsetOuter1",
|
|
12012
|
+
result: "shadowBlurOuter1"
|
|
12013
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
12014
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0",
|
|
12015
|
+
in: "shadowBlurOuter1"
|
|
12016
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
12017
|
+
d: "M34 36h8a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4h-8a4 4 0 0 1-4-4v-8a4 4 0 0 1 4-4Z",
|
|
12018
|
+
id: createNewId("c")
|
|
12019
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12020
|
+
d: "M59 19a4 4 0 0 1 4 4v7.314L51.686 19H59Z",
|
|
12021
|
+
id: createNewId("f")
|
|
12022
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
12023
|
+
fill: "none",
|
|
12024
|
+
fillRule: "evenodd"
|
|
12025
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
12026
|
+
d: "M61.108 51.8H15.892a2.8 2.8 0 0 0-1.941.782L5.6 60.615V74.2a5.6 5.6 0 0 0 5.6 5.6h54.6a5.6 5.6 0 0 0 5.6-5.6V60.615l-8.35-8.033a2.8 2.8 0 0 0-1.942-.782Z",
|
|
12027
|
+
fill: "#A6AAC3"
|
|
12028
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12029
|
+
d: "M51.686 19 63 30.314V66.2a2.8 2.8 0 0 1-2.8 2.8H16.8a2.8 2.8 0 0 1-2.8-2.8V25a6 6 0 0 1 6-6h31.686Z",
|
|
12030
|
+
fill: "url(#".concat(createNewId("a"), ")")
|
|
12031
|
+
}), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("use", {
|
|
12032
|
+
fill: "#000",
|
|
12033
|
+
filter: "url(#".concat(createNewId("b"), ")"),
|
|
12034
|
+
xlinkHref: "#".concat(createNewId("c"))
|
|
12035
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12036
|
+
stroke: "#FFF",
|
|
12037
|
+
d: "M42 36.5c.966 0 1.841.392 2.475 1.025A3.489 3.489 0 0 1 45.5 40v8c0 .966-.392 1.841-1.025 2.475A3.489 3.489 0 0 1 42 51.5h-8a3.489 3.489 0 0 1-2.475-1.025A3.489 3.489 0 0 1 30.5 48v-8c0-.966.392-1.841 1.025-2.475A3.489 3.489 0 0 1 34 36.5Z",
|
|
12038
|
+
strokeLinejoin: "round",
|
|
12039
|
+
fill: "url(#".concat(createNewId("d"), ")")
|
|
12040
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
12041
|
+
transform: "rotate(180 57.343 24.657)"
|
|
12042
|
+
}, /*#__PURE__*/React.createElement("use", {
|
|
12043
|
+
fill: "#000",
|
|
12044
|
+
filter: "url(#".concat(createNewId("e"), ")"),
|
|
12045
|
+
xlinkHref: "#".concat(createNewId("f"))
|
|
12046
|
+
}), /*#__PURE__*/React.createElement("use", {
|
|
12047
|
+
fill: "url(#".concat(createNewId("g"), ")"),
|
|
12048
|
+
xlinkHref: "#".concat(createNewId("f"))
|
|
12049
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
12050
|
+
d: "M82.6 42a.7.7 0 0 1 .7.7v1.399l1.4.001a.7.7 0 0 1 0 1.4l-1.4-.001V46.9a.7.7 0 0 1-1.4 0v-1.401l-1.4.001a.7.7 0 0 1 0-1.4l1.4-.001V42.7a.7.7 0 0 1 .7-.7ZM2.1 30.8c.29 0 .525.235.525.525l-.001.874.876.001a.7.7 0 0 1 0 1.4h-.876l.001.875a.525.525 0 1 1-1.05 0l-.001-.875H.7a.7.7 0 0 1 0-1.4l.874-.001.001-.874c0-.29.235-.525.525-.525Z",
|
|
12051
|
+
fill: "#D6D8E4",
|
|
12052
|
+
opacity: 0.3
|
|
12053
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12054
|
+
d: "m8.4 79.8-.17-.005A2.8 2.8 0 0 1 5.6 77V60.2h12.393l.175-.006c3.802-.04 7.95 5.943 19.61 6.19l.022-.002.022.002c10.856.218 15.009-5.902 19.558-6.175l.227-.009H71.4V77a2.8 2.8 0 0 1-2.63 2.795l-.17.005H8.4Z",
|
|
12055
|
+
fill: "#D6D8E4"
|
|
12056
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12057
|
+
d: "M21 3.356S24.518 2.509 25.516 0c1.438 2.057 2.18 2.947 3.884 3.338-2.321.692-3.33 1.468-4.123 3.662-.912-2.584-1.741-2.919-4.277-3.644",
|
|
12058
|
+
fill: "#D6D8E4",
|
|
12059
|
+
opacity: 0.5
|
|
12060
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12061
|
+
d: "M63 10.125S72.382 7.923 75.044 1.4c3.834 5.35 5.81 7.663 10.356 8.68-6.19 1.797-8.878 3.816-10.995 9.52-2.43-6.72-4.643-7.59-11.405-9.475",
|
|
12062
|
+
fill: "#D6D8E4",
|
|
12063
|
+
opacity: 0.8
|
|
12064
|
+
}))) : /*#__PURE__*/React.createElement("svg", {
|
|
12065
|
+
width: 56,
|
|
12066
|
+
height: 53,
|
|
12067
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
12068
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink"
|
|
12069
|
+
}, /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
12070
|
+
x1: "5.718%",
|
|
12071
|
+
y1: "4.311%",
|
|
12072
|
+
x2: "83.05%",
|
|
12073
|
+
y2: "88.915%",
|
|
12074
|
+
id: createNewId("a")
|
|
12075
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
12076
|
+
stopColor: "#D4D8E4",
|
|
12077
|
+
offset: "0%"
|
|
12078
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
12079
|
+
stopColor: "#A9B0C4",
|
|
12080
|
+
offset: "100%"
|
|
12081
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
12082
|
+
x1: "0%",
|
|
12083
|
+
y1: "11.08%",
|
|
12084
|
+
x2: "80.548%",
|
|
12085
|
+
y2: "107.704%",
|
|
12086
|
+
id: createNewId("d")
|
|
12087
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
12088
|
+
stopColor: "#C2C7DA",
|
|
12089
|
+
offset: "0%"
|
|
12090
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
12091
|
+
stopColor: "#8F96B3",
|
|
12092
|
+
offset: "100%"
|
|
12093
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
12094
|
+
x1: "41.823%",
|
|
12095
|
+
y1: "24.795%",
|
|
12096
|
+
x2: "8.813%",
|
|
12097
|
+
y2: "86.427%",
|
|
12098
|
+
id: createNewId("g")
|
|
12099
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
12100
|
+
stopColor: "#CCD0DD",
|
|
12101
|
+
offset: "0%"
|
|
12102
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
12103
|
+
stopColor: "#9DA3B9",
|
|
12104
|
+
offset: "100%"
|
|
12105
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
12106
|
+
x: "-57.2%",
|
|
12107
|
+
y: "-47.7%",
|
|
12108
|
+
width: "233.4%",
|
|
12109
|
+
height: "233.4%",
|
|
12110
|
+
filterUnits: "objectBoundingBox",
|
|
12111
|
+
id: createNewId("b")
|
|
12112
|
+
}, /*#__PURE__*/React.createElement("feOffset", {
|
|
12113
|
+
dx: 1,
|
|
12114
|
+
dy: 2,
|
|
12115
|
+
in: "SourceAlpha",
|
|
12116
|
+
result: "shadowOffsetOuter1"
|
|
12117
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
12118
|
+
stdDeviation: 2,
|
|
12119
|
+
in: "shadowOffsetOuter1",
|
|
12120
|
+
result: "shadowBlurOuter1"
|
|
12121
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
12122
|
+
in: "shadowBlurOuter1",
|
|
12123
|
+
in2: "SourceAlpha",
|
|
12124
|
+
operator: "out",
|
|
12125
|
+
result: "shadowBlurOuter1"
|
|
12126
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
12127
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.22 0",
|
|
12128
|
+
in: "shadowBlurOuter1"
|
|
12129
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
12130
|
+
x: "-94.4%",
|
|
12131
|
+
y: "-121.3%",
|
|
12132
|
+
width: "288.7%",
|
|
12133
|
+
height: "288.7%",
|
|
12134
|
+
filterUnits: "objectBoundingBox",
|
|
12135
|
+
id: createNewId("e")
|
|
12136
|
+
}, /*#__PURE__*/React.createElement("feOffset", {
|
|
12137
|
+
dy: -2,
|
|
12138
|
+
in: "SourceAlpha",
|
|
12139
|
+
result: "shadowOffsetOuter1"
|
|
12140
|
+
}), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
12141
|
+
stdDeviation: 2,
|
|
12142
|
+
in: "shadowOffsetOuter1",
|
|
12143
|
+
result: "shadowBlurOuter1"
|
|
12144
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
12145
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0",
|
|
12146
|
+
in: "shadowBlurOuter1"
|
|
12147
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
12148
|
+
d: "M23.672 23.607h2.492a4 4 0 0 1 4 4v2.491a4 4 0 0 1-4 4h-2.492a4 4 0 0 1-4-4v-2.491a4 4 0 0 1 4-4Z",
|
|
12149
|
+
id: createNewId("c")
|
|
12150
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12151
|
+
d: "M37.311 12.459a4 4 0 0 1 4 4v3.419l-7.418-7.419h3.418Z",
|
|
12152
|
+
id: createNewId("f")
|
|
12153
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
12154
|
+
fill: "none",
|
|
12155
|
+
fillRule: "evenodd"
|
|
12156
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
12157
|
+
d: "M39.682 33.967H10.81a2.8 2.8 0 0 0-1.94.782l-5.197 4.999v6.98a5.6 5.6 0 0 0 5.6 5.6H41.22a5.6 5.6 0 0 0 5.6-5.6v-6.98l-5.196-4.999a2.8 2.8 0 0 0-1.942-.782Z",
|
|
12158
|
+
fill: "#A6AAC3"
|
|
12159
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12160
|
+
d: "m33.893 12.459 7.418 7.419v22.568a2.8 2.8 0 0 1-2.8 2.8h-26.53a2.8 2.8 0 0 1-2.8-2.8V18.459a6 6 0 0 1 6-6h18.712Z",
|
|
12161
|
+
fill: "url(#".concat(createNewId("a"), ")")
|
|
12162
|
+
}), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("use", {
|
|
12163
|
+
fill: "#000",
|
|
12164
|
+
filter: "url(#".concat(createNewId("b"), ")"),
|
|
12165
|
+
xlinkHref: "#".concat(createNewId("c"))
|
|
12166
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12167
|
+
stroke: "#FFF",
|
|
12168
|
+
d: "M26.164 24.107c.966 0 1.841.391 2.475 1.025a3.489 3.489 0 0 1 1.025 2.475v2.491c0 .967-.392 1.842-1.025 2.475a3.489 3.489 0 0 1-2.475 1.025h-2.492a3.489 3.489 0 0 1-2.475-1.025 3.489 3.489 0 0 1-1.025-2.475v-2.491c0-.967.392-1.842 1.025-2.475a3.489 3.489 0 0 1 2.475-1.025Z",
|
|
12169
|
+
strokeLinejoin: "round",
|
|
12170
|
+
fill: "url(#d)"
|
|
12171
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
12172
|
+
transform: "rotate(180 37.602 16.168)"
|
|
12173
|
+
}, /*#__PURE__*/React.createElement("use", {
|
|
12174
|
+
fill: "#000",
|
|
12175
|
+
filter: "url(#".concat(createNewId("e"), ")"),
|
|
12176
|
+
xlinkHref: "#".concat(createNewId("f"))
|
|
12177
|
+
}), /*#__PURE__*/React.createElement("use", {
|
|
12178
|
+
fill: "url(#".concat(createNewId("g"), ")"),
|
|
12179
|
+
xlinkHref: "#".concat(createNewId("f"))
|
|
12180
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
12181
|
+
d: "M54.164 27.541c.253 0 .459.205.459.459v.918h.918a.459.459 0 1 1 0 .918h-.918v.918a.459.459 0 0 1-.918 0v-.918h-.918a.459.459 0 0 1 0-.918h.918V28c0-.254.205-.459.459-.459ZM1.377 20.197c.19 0 .344.154.344.344v.574h.574a.459.459 0 1 1 0 .918h-.574v.574a.344.344 0 0 1-.688 0l-.001-.574H.459a.459.459 0 0 1 0-.918h.573v-.574c0-.19.155-.344.345-.344Z",
|
|
12182
|
+
fill: "#D6D8E4",
|
|
12183
|
+
opacity: 0.3
|
|
12184
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12185
|
+
d: "M24.787 43.53h.014c7.087.143 9.817-3.834 12.785-4.046l.19-.008h9.044v10.052a2.8 2.8 0 0 1-2.63 2.795l-.17.005H6.472l-.17-.005a2.8 2.8 0 0 1-2.63-2.795V39.475h8.126l.144-.004c2.485.004 5.214 3.898 12.83 4.06l.015-.002Z",
|
|
12186
|
+
fill: "#D6D8E4"
|
|
12187
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12188
|
+
d: "M13.77 2.2s2.308-.555 2.962-2.2c.943 1.35 1.429 1.933 2.547 2.189-1.522.453-2.183.963-2.704 2.401-.598-1.695-1.142-1.914-2.805-2.39",
|
|
12189
|
+
fill: "#D6D8E4",
|
|
12190
|
+
opacity: 0.5
|
|
12191
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12192
|
+
d: "M41.311 6.64S47.464 5.194 49.21.917c2.514 3.508 3.81 5.025 6.791 5.691-4.059 1.18-5.822 2.503-7.21 6.243-1.594-4.406-3.045-4.976-7.479-6.213",
|
|
12193
|
+
fill: "#D6D8E4",
|
|
12194
|
+
opacity: 0.8
|
|
12195
|
+
})));
|
|
12159
12196
|
}
|
|
12160
12197
|
|
|
12161
12198
|
/**
|
|
@@ -12165,14 +12202,13 @@ function EasyopsEmpty(props) {
|
|
|
12165
12202
|
var _props$imageStyle;
|
|
12166
12203
|
|
|
12167
12204
|
var illustration = useMemo(() => props.illustration && getIllustration(props.illustration), [props.illustration]);
|
|
12168
|
-
|
|
12169
|
-
|
|
12170
|
-
|
|
12171
|
-
var image = props.illustration ? illustration : /*#__PURE__*/React__default.createElement(_emptyImage);
|
|
12205
|
+
var image = props.illustration ? illustration : /*#__PURE__*/React.createElement(EmptySvg, {
|
|
12206
|
+
isBig: props.useBigEmptyImage
|
|
12207
|
+
});
|
|
12172
12208
|
var imageStyle = (_props$imageStyle = props.imageStyle) !== null && _props$imageStyle !== void 0 ? _props$imageStyle : props.useBigEmptyImage ? undefined : {
|
|
12173
12209
|
height: "60px"
|
|
12174
12210
|
};
|
|
12175
|
-
return /*#__PURE__*/
|
|
12211
|
+
return /*#__PURE__*/React.createElement(Empty, {
|
|
12176
12212
|
image: image,
|
|
12177
12213
|
imageStyle: imageStyle,
|
|
12178
12214
|
description: props.description,
|
|
@@ -12186,7 +12222,7 @@ function EasyopsEmpty(props) {
|
|
|
12186
12222
|
*/
|
|
12187
12223
|
|
|
12188
12224
|
function renderEasyopsEmpty() {
|
|
12189
|
-
return /*#__PURE__*/
|
|
12225
|
+
return /*#__PURE__*/React.createElement(EasyopsEmpty, null);
|
|
12190
12226
|
}
|
|
12191
12227
|
|
|
12192
12228
|
var FeatureFlagsContext = /*#__PURE__*/createContext(null);
|
|
@@ -12256,7 +12292,7 @@ function useFeatureFlags(name) {
|
|
|
12256
12292
|
|
|
12257
12293
|
function DisplayByFeatureFlags(props) {
|
|
12258
12294
|
var featureFlags = useFeatureFlags(props.name);
|
|
12259
|
-
return featureFlags.every(flag => !!flag) ? /*#__PURE__*/
|
|
12295
|
+
return featureFlags.every(flag => !!flag) ? /*#__PURE__*/React.createElement(React.Fragment, null, props.children) : props !== null && props !== void 0 && props.fallback ? /*#__PURE__*/React.createElement(React.Fragment, null, props === null || props === void 0 ? void 0 : props.fallback) : null;
|
|
12260
12296
|
}
|
|
12261
12297
|
|
|
12262
12298
|
/**
|
|
@@ -12266,15 +12302,15 @@ function BrickWrapper(props) {
|
|
|
12266
12302
|
var locale = i18next.language && i18next.language.split("-")[0] === "en" ? defaultLocale : zhCN; // istanbul ignore next
|
|
12267
12303
|
|
|
12268
12304
|
var featureFlags = process.env.NODE_ENV === "test" ? {} : getRuntime().getFeatureFlags();
|
|
12269
|
-
return /*#__PURE__*/
|
|
12305
|
+
return /*#__PURE__*/React.createElement(ErrorBoundary, null, /*#__PURE__*/React.createElement(FeatureFlagsProvider, {
|
|
12270
12306
|
value: featureFlags
|
|
12271
|
-
}, /*#__PURE__*/
|
|
12307
|
+
}, /*#__PURE__*/React.createElement(ConfigProvider, {
|
|
12272
12308
|
locale: locale,
|
|
12273
12309
|
autoInsertSpaceInButton: false,
|
|
12274
12310
|
renderEmpty: () => {
|
|
12275
12311
|
var _props$wrapperConfig;
|
|
12276
12312
|
|
|
12277
|
-
return /*#__PURE__*/
|
|
12313
|
+
return /*#__PURE__*/React.createElement(EasyopsEmpty, (_props$wrapperConfig = props.wrapperConfig) === null || _props$wrapperConfig === void 0 ? void 0 : _props$wrapperConfig.empty);
|
|
12278
12314
|
}
|
|
12279
12315
|
}, props.children)));
|
|
12280
12316
|
}
|