@next-core/brick-kit 2.103.5 → 2.103.9

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/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 * as React from 'react';
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$2 from '@babel/runtime/helpers/esm/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__*/React__default.createElement(ExclamationCircleOutlined, null),
3208
- content: /*#__PURE__*/React__default.createElement(LoginTimeoutMessage, null),
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__*/React__default.createElement("div", {
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
- React__default.useEffect(() => {
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__*/React__default.createElement("div", null, i18next.t("".concat(NS_BRICK_KIT, ":").concat(K.LOGIN_TIMEOUT_MESSAGE)));
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 React__default.Component {
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__*/React__default.createElement("div", {
10783
+ return /*#__PURE__*/React.createElement("div", {
10735
10784
  "data-testid": "error-boundary"
10736
- }, /*#__PURE__*/React__default.createElement("h3", null, this.props.t(K.SOMETHING_WENT_WRONG)), /*#__PURE__*/React__default.createElement("p", null, httpErrorToString(this.state.error)));
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] = React__default.useState(getRuntime().getRecentApps());
10932
- React__default.useEffect(() => {
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] = React__default.useState(history.location);
10967
- React__default.useEffect(() => {
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__*/React__default.memo(function SingleBrickAsComponent(_ref2) {
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 = React__default.useMemo(() => {
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 = React__default.useMemo( /*#__PURE__*/_asyncToGenerator$4(function* () {
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 = React__default.useCallback( /*#__PURE__*/function () {
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__*/React__default.createElement(template.brick, {
11288
+ return /*#__PURE__*/React.createElement(template.brick, {
11240
11289
  ref: innerRefCallback
11241
11290
  }, ...slotsToChildren(template.slots).map((item, index) => {
11242
- return /*#__PURE__*/React__default.createElement(SingleBrickAsComponent, {
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__*/React__default.createElement(useBrick.brick, {
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__*/React__default.createElement(SingleBrickAsComponent, {
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__*/React__default.createElement(React__default.Fragment, null, useBrick.map((item, index) => /*#__PURE__*/React__default.createElement(SingleBrickAsComponent, {
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__*/React__default.createElement(SingleBrickAsComponent, {
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__*/React__default.memo( /*#__PURE__*/forwardRef(function LegacySingleBrickAsComponent(_ref8, ref) {
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 = React__default.useMemo(() => {
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 = React__default.useMemo( /*#__PURE__*/_asyncToGenerator$4(function* () {
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 = React__default.useCallback( /*#__PURE__*/function () {
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__*/React__default.createElement(template.brick, {
11508
+ return /*#__PURE__*/React.createElement(template.brick, {
11460
11509
  ref: innerRefCallback
11461
11510
  }, ...slotsToChildren(template.slots).map((item, index) => {
11462
- return /*#__PURE__*/React__default.createElement(SingleBrickAsComponent, {
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__*/React__default.createElement(useBrick.brick, {
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__*/React__default.createElement(SingleBrickAsComponent, {
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$2({
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$2({}, TimePicker$1)
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$2({
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$2({}, TimePicker)
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,619 @@ var localeValues = {
11874
11923
  };
11875
11924
  var defaultLocale = localeValues;
11876
11925
 
11877
- function _extends$1() { _extends$1 = 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$1.apply(this, arguments); }
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 {
11928
+ isBig
11929
+ } = props;
11930
+ var theme = useCurrentTheme();
11931
+ var prefix = uniqueId();
12008
11932
 
12009
- function SvgEmptyImage(props) {
12010
- return /*#__PURE__*/React.createElement("svg", _extends$1({
12011
- width: 56,
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
- }));
11933
+ var createNewId = id => {
11934
+ return prefix + id;
11935
+ };
12150
11936
 
12151
- function SvgBigEmptyImage(props) {
12152
- return /*#__PURE__*/React.createElement("svg", _extends({
12153
- width: 86,
12154
- height: 80,
12155
- viewBox: "0 0 86 80",
12156
- xmlns: "http://www.w3.org/2000/svg",
12157
- xmlnsXlink: "http://www.w3.org/1999/xlink"
12158
- }, props), _ref, _ref2);
11937
+ if (theme === "dark-v2") {
11938
+ return isBig ? /*#__PURE__*/React.createElement("svg", {
11939
+ width: "88px",
11940
+ height: "83px",
11941
+ viewBox: "0 0 88 83",
11942
+ version: "1.1",
11943
+ xmlns: "http://www.w3.org/2000/svg"
11944
+ }, /*#__PURE__*/React.createElement("title", null, "dark big empty image"), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
11945
+ x1: "5.71824875%",
11946
+ y1: "4.31113823%",
11947
+ x2: "83.0501817%",
11948
+ y2: "88.9150948%",
11949
+ id: createNewId("linearGradient-1")
11950
+ }, /*#__PURE__*/React.createElement("stop", {
11951
+ stopColor: "#868686",
11952
+ offset: "0%"
11953
+ }), /*#__PURE__*/React.createElement("stop", {
11954
+ stopColor: "#4F4F4F",
11955
+ offset: "100%"
11956
+ })), /*#__PURE__*/React.createElement("linearGradient", {
11957
+ x1: "0%",
11958
+ y1: "11.0800956%",
11959
+ x2: "80.5475944%",
11960
+ y2: "107.703999%",
11961
+ id: createNewId("linearGradient-2")
11962
+ }, /*#__PURE__*/React.createElement("stop", {
11963
+ stopColor: "#868686",
11964
+ offset: "0%"
11965
+ }), /*#__PURE__*/React.createElement("stop", {
11966
+ stopColor: "#4F4F4F",
11967
+ offset: "100%"
11968
+ })), /*#__PURE__*/React.createElement("path", {
11969
+ d: "M34.9133489,37.0960187 L43.4004684,37.0960187 C45.6096074,37.0960187 47.4004684,38.8868797 47.4004684,41.0960187 L47.4004684,49.5831382 C47.4004684,51.7922772 45.6096074,53.5831382 43.4004684,53.5831382 L34.9133489,53.5831382 C32.7042099,53.5831382 30.9133489,51.7922772 30.9133489,49.5831382 L30.9133489,41.0960187 C30.9133489,38.8868797 32.7042099,37.0960187 34.9133489,37.0960187 Z",
11970
+ id: createNewId("path-3")
11971
+ }), /*#__PURE__*/React.createElement("filter", {
11972
+ x: "-36.4%",
11973
+ y: "-30.3%",
11974
+ width: "184.9%",
11975
+ height: "184.9%",
11976
+ filterUnits: "objectBoundingBox",
11977
+ id: createNewId("filter-4")
11978
+ }, /*#__PURE__*/React.createElement("feOffset", {
11979
+ dx: "1",
11980
+ dy: "2",
11981
+ in: "SourceAlpha",
11982
+ result: "shadowOffsetOuter1"
11983
+ }), /*#__PURE__*/React.createElement("feGaussianBlur", {
11984
+ stdDeviation: "2",
11985
+ in: "shadowOffsetOuter1",
11986
+ result: "shadowBlurOuter1"
11987
+ }), /*#__PURE__*/React.createElement("feComposite", {
11988
+ in: "shadowBlurOuter1",
11989
+ in2: "SourceAlpha",
11990
+ operator: "out",
11991
+ result: "shadowBlurOuter1"
11992
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
11993
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.22 0",
11994
+ type: "matrix",
11995
+ in: "shadowBlurOuter1"
11996
+ })), /*#__PURE__*/React.createElement("linearGradient", {
11997
+ x1: "41.822656%",
11998
+ y1: "24.7954546%",
11999
+ x2: "8.8126561%",
12000
+ y2: "86.4269134%",
12001
+ id: createNewId("linearGradient-5")
12002
+ }, /*#__PURE__*/React.createElement("stop", {
12003
+ stopColor: "#B2B2B2",
12004
+ offset: "0%"
12005
+ }), /*#__PURE__*/React.createElement("stop", {
12006
+ stopColor: "#DEDEDE",
12007
+ offset: "100%"
12008
+ })), /*#__PURE__*/React.createElement("path", {
12009
+ d: "M60.9180328,19.5784543 C63.1271718,19.5784543 64.9180328,21.3693153 64.9180328,23.5784543 L64.9180328,31.2366083 L53.2598788,19.5784543 L60.9180328,19.5784543 Z",
12010
+ id: createNewId("path-6")
12011
+ }), /*#__PURE__*/React.createElement("filter", {
12012
+ x: "-60.0%",
12013
+ y: "-77.2%",
12014
+ width: "220.1%",
12015
+ height: "220.1%",
12016
+ filterUnits: "objectBoundingBox",
12017
+ id: createNewId("filter-7")
12018
+ }, /*#__PURE__*/React.createElement("feOffset", {
12019
+ dx: "0",
12020
+ dy: "-2",
12021
+ in: "SourceAlpha",
12022
+ result: "shadowOffsetOuter1"
12023
+ }), /*#__PURE__*/React.createElement("feGaussianBlur", {
12024
+ stdDeviation: "2",
12025
+ in: "shadowOffsetOuter1",
12026
+ result: "shadowBlurOuter1"
12027
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
12028
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0",
12029
+ type: "matrix",
12030
+ in: "shadowBlurOuter1"
12031
+ }))), /*#__PURE__*/React.createElement("g", {
12032
+ id: "\u6697\u82722",
12033
+ stroke: "none",
12034
+ strokeWidth: "1",
12035
+ fill: "none",
12036
+ fillRule: "evenodd"
12037
+ }, /*#__PURE__*/React.createElement("g", {
12038
+ id: "\u65B0\u5EFA\u4EEA\u8868\u76D8-3",
12039
+ transform: "translate(-392.000000, -240.000000)"
12040
+ }, /*#__PURE__*/React.createElement("g", {
12041
+ id: "\u7F16\u7EC4-50",
12042
+ transform: "translate(36.000000, 134.000000)"
12043
+ }, /*#__PURE__*/React.createElement("g", {
12044
+ id: "\u63D2\u56FE/\u7A7A\u8868\u683C--\u767D\u8272\u80CC\u666F\u5907\u4EFD",
12045
+ transform: "translate(356.000000, 106.000000)"
12046
+ }, /*#__PURE__*/React.createElement("path", {
12047
+ d: "M63.0027562,53.3770492 L16.3415061,53.3770492 C15.617696,53.3770492 14.9220071,53.6573421 14.4003686,54.1591332 L5.7704918,62.4606569 L5.7704918,62.4606569 L5.7704918,76.6295082 C5.7704918,79.7223028 8.2776972,82.2295082 11.3704918,82.2295082 L67.9737705,82.2295082 C71.0665651,82.2295082 73.5737705,79.7223028 73.5737705,76.6295082 L73.5737705,62.4606569 L73.5737705,62.4606569 L64.9438937,54.1591332 C64.4222552,53.6573421 63.7265663,53.3770492 63.0027562,53.3770492 Z",
12048
+ id: createNewId("Fill-3"),
12049
+ fill: "#4F4F4F"
12050
+ }), /*#__PURE__*/React.createElement("path", {
12051
+ d: "M53.2598788,19.5784543 L64.9180328,31.2366083 L64.9180328,68.3007026 C64.9180328,69.8470999 63.6644301,71.1007026 62.1180328,71.1007026 L17.2262295,71.1007026 C15.6798322,71.1007026 14.4262295,69.8470999 14.4262295,68.3007026 L14.4262295,25.5784543 C14.4262295,22.2647458 17.112521,19.5784543 20.4262295,19.5784543 L53.2598788,19.5784543 Z",
12052
+ id: createNewId("形状结合"),
12053
+ fill: "url(#".concat(createNewId("linearGradient-1"), ")")
12054
+ }), /*#__PURE__*/React.createElement("g", {
12055
+ id: "\u77E9\u5F62\u5907\u4EFD"
12056
+ }, /*#__PURE__*/React.createElement("use", {
12057
+ fill: "black",
12058
+ fillOpacity: "1",
12059
+ filter: "url(#".concat(createNewId("filter-4"), ")"),
12060
+ xlinkHref: "#".concat(createNewId("path-3"))
12061
+ }), /*#__PURE__*/React.createElement("path", {
12062
+ stroke: "#DEDEDE",
12063
+ strokeWidth: "1",
12064
+ d: "M43.4004684,37.5960187 C44.3669667,37.5960187 45.2419667,37.9877696 45.8753421,38.621145 C46.5087175,39.2545204 46.9004684,40.1295204 46.9004684,41.0960187 L46.9004684,41.0960187 L46.9004684,49.5831382 C46.9004684,50.5496365 46.5087175,51.4246365 45.8753421,52.0580119 C45.2419667,52.6913873 44.3669667,53.0831382 43.4004684,53.0831382 L43.4004684,53.0831382 L34.9133489,53.0831382 C33.9468506,53.0831382 33.0718506,52.6913873 32.4384752,52.0580119 C31.8050998,51.4246365 31.4133489,50.5496365 31.4133489,49.5831382 L31.4133489,49.5831382 L31.4133489,41.0960187 C31.4133489,40.1295204 31.8050998,39.2545204 32.4384752,38.621145 C33.0718506,37.9877696 33.9468506,37.5960187 34.9133489,37.5960187 L34.9133489,37.5960187 Z",
12065
+ strokeLinejoin: "round",
12066
+ fill: "url(#".concat(createNewId("linearGradient-2"), ")"),
12067
+ fillRule: "evenodd"
12068
+ })), /*#__PURE__*/React.createElement("g", {
12069
+ id: "\u5F62\u72B6\u7ED3\u5408",
12070
+ transform: "translate(59.088956, 25.407531) scale(-1, -1) translate(-59.088956, -25.407531) "
12071
+ }, /*#__PURE__*/React.createElement("use", {
12072
+ fill: "black",
12073
+ fillOpacity: "1",
12074
+ filter: "url(#".concat(createNewId("filter-7"), ")"),
12075
+ xlinkHref: "#".concat(createNewId("path-6"))
12076
+ }), /*#__PURE__*/React.createElement("use", {
12077
+ fill: "url(#".concat(createNewId("linearGradient-5"), ")"),
12078
+ fillRule: "evenodd",
12079
+ xlinkHref: "#".concat(createNewId("path-6"))
12080
+ })), /*#__PURE__*/React.createElement("path", {
12081
+ d: "M85.1360656,43.2786885 C85.5226649,43.2786885 85.8360656,43.5920892 85.8360656,43.9786885 L85.8355082,45.4416885 L87.3,45.442623 C87.6865993,45.442623 88,45.7560236 88,46.142623 L88,46.1852459 C88,46.5718452 87.6865993,46.8852459 87.3,46.8852459 L85.8355082,46.8846885 L85.8360656,48.3491803 C85.8360656,48.7357797 85.5226649,49.0491803 85.1360656,49.0491803 L85.0934426,49.0491803 C84.7068433,49.0491803 84.3934426,48.7357797 84.3934426,48.3491803 L84.3925082,46.8846885 L82.9295082,46.8852459 C82.5429089,46.8852459 82.2295082,46.5718452 82.2295082,46.1852459 L82.2295082,46.142623 C82.2295082,45.7560236 82.5429089,45.442623 82.9295082,45.442623 L84.3925082,45.4416885 L84.3934426,43.9786885 C84.3934426,43.5920892 84.7068433,43.2786885 85.0934426,43.2786885 L85.1360656,43.2786885 Z",
12082
+ id: "\u5F62\u72B6\u7ED3\u5408",
12083
+ fill: "#646465",
12084
+ opacity: "0.299999982"
12085
+ }), /*#__PURE__*/React.createElement("path", {
12086
+ d: "M2.16393443,31.7377049 C2.46271142,31.7377049 2.70491803,31.9799115 2.70491803,32.2786885 L2.704,33.1797049 L3.62786885,33.1803279 C4.01446818,33.1803279 4.32786885,33.4937285 4.32786885,33.8803279 L4.32786885,33.9229508 C4.32786885,34.3095501 4.01446818,34.6229508 3.62786885,34.6229508 L2.704,34.6227049 L2.70491803,35.5245902 C2.70491803,35.8233672 2.46271142,36.0655738 2.16393443,36.0655738 C1.86515743,36.0655738 1.62295082,35.8233672 1.62295082,35.5245902 L1.622,34.6227049 L0.7,34.6229508 C0.313400675,34.6229508 1.58367065e-16,34.3095501 0,33.9229508 L0,33.8803279 C6.36775399e-17,33.4937285 0.313400675,33.1803279 0.7,33.1803279 L1.622,33.1797049 L1.62295082,32.2786885 C1.62295082,31.9799115 1.86515743,31.7377049 2.16393443,31.7377049 Z",
12087
+ id: "\u5F62\u72B6\u7ED3\u5408\u5907\u4EFD-2",
12088
+ fill: "#646465",
12089
+ opacity: "0.299999982"
12090
+ }), /*#__PURE__*/React.createElement("path", {
12091
+ d: "M8.5704918,82.2292826 L8.39992361,82.2241726 C6.93295466,82.1360215 5.7704918,80.9184059 5.7704918,79.4292826 L5.7704918,79.4292826 L5.7704918,62.0328238 L18.5403984,62.0328238 L18.7183062,62.0265026 C22.6370926,61.9824786 26.9110314,68.1500392 38.9284814,68.4052546 L38.9284814,68.4052546 L38.9508197,68.402268 L38.9508197,68.4029405 L38.9731579,68.4054802 C50.1627105,68.6294222 54.4413911,62.3194865 59.130277,62.0416842 L59.3612409,62.0329405 L73.5737705,62.0329405 L73.5737705,79.4295082 C73.5737705,80.9186315 72.4113076,82.1362471 70.9443387,82.2243982 L70.7737705,82.2295082 L38.9508197,82.2289405 L8.5704918,82.2292826 Z",
12092
+ id: "\u5F62\u72B6\u7ED3\u5408",
12093
+ fill: "#868686"
12094
+ }), /*#__PURE__*/React.createElement("path", {
12095
+ d: "M21.6393443,3.45798016 C21.6393443,3.45798016 25.2647414,2.58521485 26.2931908,0 C27.7747015,2.12006603 28.538563,3.03684357 30.295082,3.43985748 C27.9033709,4.15239527 26.8645012,4.95266986 26.0462723,7.21311475 C25.1070761,4.54994361 24.2521493,4.20532501 21.6393443,3.45798016",
12096
+ id: "Fill-1",
12097
+ fill: "#646465",
12098
+ opacity: "0.5"
12099
+ }), /*#__PURE__*/React.createElement("path", {
12100
+ d: "M64.9180328,10.4333714 C64.9180328,10.4333714 74.5857586,8.16418155 77.3282902,1.44262295 C81.2789854,6.95479463 83.3159494,9.33841623 88,10.3862524 C81.6221039,12.2388507 78.8517846,14.3195646 76.669841,20.1967213 C74.1653176,13.2724763 71.8855128,12.376468 64.9180328,10.4333714",
12101
+ id: "Fill-1\u5907\u4EFD",
12102
+ fill: "#646465",
12103
+ opacity: "0.799999952"
12104
+ })))))) : /*#__PURE__*/React.createElement("svg", {
12105
+ width: "56px",
12106
+ height: "53px",
12107
+ viewBox: "0 0 56 53",
12108
+ version: "1.1",
12109
+ xmlns: "http://www.w3.org/2000/svg"
12110
+ }, /*#__PURE__*/React.createElement("title", null, "dark default empty image"), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
12111
+ x1: "5.71824875%",
12112
+ y1: "4.31113823%",
12113
+ x2: "83.0501817%",
12114
+ y2: "88.9150948%",
12115
+ id: createNewId("linearGradient-1")
12116
+ }, /*#__PURE__*/React.createElement("stop", {
12117
+ stopColor: "#868686",
12118
+ offset: "0%"
12119
+ }), /*#__PURE__*/React.createElement("stop", {
12120
+ stopColor: "#4F4F4F",
12121
+ offset: "100%"
12122
+ })), /*#__PURE__*/React.createElement("linearGradient", {
12123
+ x1: "0%",
12124
+ y1: "11.0800956%",
12125
+ x2: "80.5475944%",
12126
+ y2: "107.703999%",
12127
+ id: createNewId("linearGradient-2")
12128
+ }, /*#__PURE__*/React.createElement("stop", {
12129
+ stopColor: "#868686",
12130
+ offset: "0%"
12131
+ }), /*#__PURE__*/React.createElement("stop", {
12132
+ stopColor: "#4F4F4F",
12133
+ offset: "100%"
12134
+ })), /*#__PURE__*/React.createElement("path", {
12135
+ d: "M23.6721311,23.6065574 L26.1639344,23.6065574 C28.3730734,23.6065574 30.1639344,25.3974184 30.1639344,27.6065574 L30.1639344,30.0983607 C30.1639344,32.3074997 28.3730734,34.0983607 26.1639344,34.0983607 L23.6721311,34.0983607 C21.4629921,34.0983607 19.6721311,32.3074997 19.6721311,30.0983607 L19.6721311,27.6065574 C19.6721311,25.3974184 21.4629921,23.6065574 23.6721311,23.6065574 Z",
12136
+ id: createNewId("path-3")
12137
+ }), /*#__PURE__*/React.createElement("filter", {
12138
+ x: "-57.2%",
12139
+ y: "-47.7%",
12140
+ width: "233.4%",
12141
+ height: "233.4%",
12142
+ filterUnits: "objectBoundingBox",
12143
+ id: createNewId("filter-4")
12144
+ }, /*#__PURE__*/React.createElement("feOffset", {
12145
+ dx: "1",
12146
+ dy: "2",
12147
+ in: "SourceAlpha",
12148
+ result: "shadowOffsetOuter1"
12149
+ }), /*#__PURE__*/React.createElement("feGaussianBlur", {
12150
+ stdDeviation: "2",
12151
+ in: "shadowOffsetOuter1",
12152
+ result: "shadowBlurOuter1"
12153
+ }), /*#__PURE__*/React.createElement("feComposite", {
12154
+ in: "shadowBlurOuter1",
12155
+ in2: "SourceAlpha",
12156
+ operator: "out",
12157
+ result: "shadowBlurOuter1"
12158
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
12159
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.22 0",
12160
+ type: "matrix",
12161
+ in: "shadowBlurOuter1"
12162
+ })), /*#__PURE__*/React.createElement("linearGradient", {
12163
+ x1: "41.822656%",
12164
+ y1: "24.7954546%",
12165
+ x2: "8.8126561%",
12166
+ y2: "86.4269134%",
12167
+ id: createNewId("linearGradient-5")
12168
+ }, /*#__PURE__*/React.createElement("stop", {
12169
+ stopColor: "#B2B2B2",
12170
+ offset: "0%"
12171
+ }), /*#__PURE__*/React.createElement("stop", {
12172
+ stopColor: "#DEDEDE",
12173
+ offset: "100%"
12174
+ })), /*#__PURE__*/React.createElement("path", {
12175
+ d: "M37.3114754,12.4590164 C39.5206144,12.4590164 41.3114754,14.2498774 41.3114754,16.4590164 L41.3114754,19.8778416 L33.8926502,12.4590164 L37.3114754,12.4590164 Z",
12176
+ id: createNewId("path-6")
12177
+ }), /*#__PURE__*/React.createElement("filter", {
12178
+ x: "-94.4%",
12179
+ y: "-121.3%",
12180
+ width: "288.7%",
12181
+ height: "288.7%",
12182
+ filterUnits: "objectBoundingBox",
12183
+ id: createNewId("filter-7")
12184
+ }, /*#__PURE__*/React.createElement("feOffset", {
12185
+ dx: "0",
12186
+ dy: "-2",
12187
+ in: "SourceAlpha",
12188
+ result: "shadowOffsetOuter1"
12189
+ }), /*#__PURE__*/React.createElement("feGaussianBlur", {
12190
+ stdDeviation: "2",
12191
+ in: "shadowOffsetOuter1",
12192
+ result: "shadowBlurOuter1"
12193
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
12194
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0",
12195
+ type: "matrix",
12196
+ in: "shadowBlurOuter1"
12197
+ }))), /*#__PURE__*/React.createElement("g", {
12198
+ id: "\u6697\u8272\u8BBE\u8BA1\u7A3F",
12199
+ stroke: "none",
12200
+ strokeWidth: "1",
12201
+ fill: "none",
12202
+ fillRule: "evenodd"
12203
+ }, /*#__PURE__*/React.createElement("g", {
12204
+ id: "\u8D44\u6E90\u6392\u884C--\u8BBE\u7F6E\u9EC4\u91D1\u6307\u6807",
12205
+ transform: "translate(-1989.000000, -363.000000)"
12206
+ }, /*#__PURE__*/React.createElement("g", {
12207
+ id: "5.\u53CD\u9988/1.Modal\u5BF9\u8BDD\u6846/\u6697\u8272/\u9ED8\u8BA4\u5BF9\u8BDD\u6846\u5907\u4EFD",
12208
+ transform: "translate(1525.000000, 120.000000)"
12209
+ }, /*#__PURE__*/React.createElement("g", {
12210
+ id: "\u7A7F\u68AD\u6846/\u57FA\u672C\u7528\u6CD5/\u53F3\u7A7F\u68AD",
12211
+ transform: "translate(56.000000, 137.000000)"
12212
+ }, /*#__PURE__*/React.createElement("g", {
12213
+ id: "\u63D2\u56FE/\u7A7A\u8868\u683C--\u767D\u8272\u80CC\u666F\u5907\u4EFD",
12214
+ transform: "translate(408.000000, 106.000000)"
12215
+ }, /*#__PURE__*/React.createElement("path", {
12216
+ d: "M39.6824378,33.9672131 L10.8093655,33.9672131 C10.0855554,33.9672131 9.38986655,34.247506 8.86822799,34.7492971 L3.67213115,39.7476907 L3.67213115,39.7476907 L3.67213115,46.7278689 C3.67213115,49.8206635 6.17933655,52.3278689 9.27213115,52.3278689 L41.2196721,52.3278689 C44.3124667,52.3278689 46.8196721,49.8206635 46.8196721,46.7278689 L46.8196721,39.7476907 L46.8196721,39.7476907 L41.6235753,34.7492971 C41.1019367,34.247506 40.4062478,33.9672131 39.6824378,33.9672131 Z",
12217
+ id: createNewId("Fill-3"),
12218
+ fill: "#4F4F4F"
12219
+ }), /*#__PURE__*/React.createElement("path", {
12220
+ d: "M33.8926502,12.4590164 L41.3114754,19.8778416 L41.3114754,42.4459016 C41.3114754,43.9922989 40.0578727,45.2459016 38.5114754,45.2459016 L11.9803279,45.2459016 C10.4339306,45.2459016 9.18032787,43.9922989 9.18032787,42.4459016 L9.18032787,18.4590164 C9.18032787,15.1453079 11.8666194,12.4590164 15.1803279,12.4590164 L33.8926502,12.4590164 Z",
12221
+ id: createNewId("形状结合"),
12222
+ fill: "url(#".concat(createNewId("linearGradient-1"), ")")
12223
+ }), /*#__PURE__*/React.createElement("g", {
12224
+ id: createNewId("矩形备份")
12225
+ }, /*#__PURE__*/React.createElement("use", {
12226
+ fill: "black",
12227
+ fillOpacity: "1",
12228
+ filter: "url(#filter-4)",
12229
+ xlinkHref: "#".concat(createNewId("path-3"))
12230
+ }), /*#__PURE__*/React.createElement("path", {
12231
+ stroke: "#DEDEDE",
12232
+ strokeWidth: "1",
12233
+ d: "M26.1639344,24.1065574 C27.1304327,24.1065574 28.0054327,24.4983082 28.6388082,25.1316836 C29.2721836,25.7650591 29.6639344,26.6400591 29.6639344,27.6065574 L29.6639344,27.6065574 L29.6639344,30.0983607 C29.6639344,31.064859 29.2721836,31.939859 28.6388082,32.5732344 C28.0054327,33.2066098 27.1304327,33.5983607 26.1639344,33.5983607 L26.1639344,33.5983607 L23.6721311,33.5983607 C22.7056328,33.5983607 21.8306328,33.2066098 21.1972574,32.5732344 C20.563882,31.939859 20.1721311,31.064859 20.1721311,30.0983607 L20.1721311,30.0983607 L20.1721311,27.6065574 C20.1721311,26.6400591 20.563882,25.7650591 21.1972574,25.1316836 C21.8306328,24.4983082 22.7056328,24.1065574 23.6721311,24.1065574 L23.6721311,24.1065574 Z",
12234
+ strokeLinejoin: "round",
12235
+ fill: "url(#".concat(createNewId("linearGradient-2"), ")"),
12236
+ fillRule: "evenodd"
12237
+ })), /*#__PURE__*/React.createElement("g", {
12238
+ id: createNewId("形状结合"),
12239
+ transform: "translate(37.602063, 16.168429) scale(-1, -1) translate(-37.602063, -16.168429) "
12240
+ }, /*#__PURE__*/React.createElement("use", {
12241
+ fill: "black",
12242
+ fillOpacity: "1",
12243
+ filter: "url(#filter-7)",
12244
+ xlinkHref: "#".concat(createNewId("path-6"))
12245
+ }), /*#__PURE__*/React.createElement("use", {
12246
+ fill: "url(#".concat(createNewId("linearGradient-5"), ")"),
12247
+ fillRule: "evenodd",
12248
+ xlinkHref: "#".concat(createNewId("path-6"))
12249
+ })), /*#__PURE__*/React.createElement("path", {
12250
+ d: "M54.1639344,27.5409836 C54.4174422,27.5409836 54.6229508,27.7464922 54.6229508,28 L54.6228689,28.9179836 L55.5409836,28.9180328 C55.7944914,28.9180328 56,29.1235414 56,29.3770492 C56,29.6305569 55.7944914,29.8360656 55.5409836,29.8360656 L54.6228689,29.8359836 L54.6229508,30.7540984 C54.6229508,31.0076061 54.4174422,31.2131148 54.1639344,31.2131148 C53.9104267,31.2131148 53.704918,31.0076061 53.704918,30.7540984 L53.7048689,29.8359836 L52.7868852,29.8360656 C52.5333775,29.8360656 52.3278689,29.6305569 52.3278689,29.3770492 C52.3278689,29.1235414 52.5333775,28.9180328 52.7868852,28.9180328 L53.7048689,28.9179836 L53.704918,28 C53.704918,27.7464922 53.9104267,27.5409836 54.1639344,27.5409836 Z",
12251
+ id: createNewId("形状结合"),
12252
+ fill: "#646465",
12253
+ opacity: "0.299999982"
12254
+ }), /*#__PURE__*/React.createElement("path", {
12255
+ d: "M1.37704918,20.1967213 C1.56718,20.1967213 1.72131148,20.3508528 1.72131148,20.5409836 L1.721,21.1147213 L2.29508197,21.1147541 C2.54858972,21.1147541 2.75409836,21.3202627 2.75409836,21.5737705 C2.75409836,21.8272782 2.54858972,22.0327869 2.29508197,22.0327869 L1.721,22.0327213 L1.72131148,22.6065574 C1.72131148,22.7966882 1.56718,22.9508197 1.37704918,22.9508197 C1.18691836,22.9508197 1.03278689,22.7966882 1.03278689,22.6065574 L1.032,22.0327213 L0.459016393,22.0327869 C0.205508639,22.0327869 3.1045746e-17,21.8272782 0,21.5737705 C-3.1045746e-17,21.3202627 0.205508639,21.1147541 0.459016393,21.1147541 L1.032,21.1147213 L1.03278689,20.5409836 C1.03278689,20.3508528 1.18691836,20.1967213 1.37704918,20.1967213 Z",
12256
+ id: createNewId("形状结合备份-2"),
12257
+ fill: "#646465",
12258
+ opacity: "0.299999982"
12259
+ }), /*#__PURE__*/React.createElement("path", {
12260
+ d: "M24.7868852,43.5295076 L24.8011005,43.5307601 C31.8876782,43.6725873 34.6183834,39.6961587 37.5855745,39.48387 L37.7753351,39.4755076 L46.8196721,39.4755076 L46.8196721,49.5278689 C46.8196721,51.0169922 45.6572093,52.2346078 44.1902403,52.3227588 L44.0196721,52.3278689 L24.7868852,52.3275076 L24.7868852,52.3272615 L6.47213115,52.3277253 L6.30156296,52.3226152 C4.83459401,52.2344642 3.67213115,51.0168486 3.67213115,49.5277253 L3.67213115,49.5277253 L3.67213115,39.4754333 L11.7984354,39.4754333 L11.941603,39.4712638 C14.4272721,39.4747517 17.1558091,43.3688567 24.77267,43.5306166 L24.77267,43.5306166 L24.7868852,43.5292615 L24.7868852,43.5295076 Z",
12261
+ id: createNewId("形状结合"),
12262
+ fill: "#868686"
12263
+ }), /*#__PURE__*/React.createElement("path", {
12264
+ d: "M13.7704918,2.20053283 C13.7704918,2.20053283 16.0775627,1.64513672 16.7320305,0 C17.67481,1.34913293 18.1609037,1.93253682 19.2786885,2.18900021 C17.7566906,2.64243336 17.0955917,3.151699 16.5749006,4.59016393 C15.9772302,2.89541866 15.4331859,2.67611591 13.7704918,2.20053283",
12265
+ id: createNewId("Fill-1"),
12266
+ fill: "#646465",
12267
+ opacity: "0.5"
12268
+ }), /*#__PURE__*/React.createElement("path", {
12269
+ d: "M41.3114754,6.63941814 C41.3114754,6.63941814 47.4636646,5.19538826 49.2089119,0.918032787 C51.7229907,4.4257784 53.0192405,5.94262851 56,6.60943334 C51.9413388,7.78835951 50.1784084,9.11245019 48.7898988,12.852459 C47.1961112,8.44612131 45.7453263,7.87593416 41.3114754,6.63941814",
12270
+ id: createNewId("Fill-1备份"),
12271
+ fill: "#646465",
12272
+ opacity: "0.799999952"
12273
+ })))))));
12274
+ } else {
12275
+ return isBig ? /*#__PURE__*/React.createElement("svg", {
12276
+ width: 86,
12277
+ height: 80,
12278
+ xmlns: "http://www.w3.org/2000/svg",
12279
+ xmlnsXlink: "http://www.w3.org/1999/xlink"
12280
+ }, /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
12281
+ x1: "5.718%",
12282
+ y1: "4.311%",
12283
+ x2: "83.05%",
12284
+ y2: "88.915%",
12285
+ id: createNewId("a")
12286
+ }, /*#__PURE__*/React.createElement("stop", {
12287
+ stopColor: "#D4D8E4",
12288
+ offset: "0%"
12289
+ }), /*#__PURE__*/React.createElement("stop", {
12290
+ stopColor: "#A9B0C4",
12291
+ offset: "100%"
12292
+ })), /*#__PURE__*/React.createElement("linearGradient", {
12293
+ x1: "0%",
12294
+ y1: "11.08%",
12295
+ x2: "80.548%",
12296
+ y2: "107.704%",
12297
+ id: createNewId("d")
12298
+ }, /*#__PURE__*/React.createElement("stop", {
12299
+ stopColor: "#C2C7DA",
12300
+ offset: "0%"
12301
+ }), /*#__PURE__*/React.createElement("stop", {
12302
+ stopColor: "#8F96B3",
12303
+ offset: "100%"
12304
+ })), /*#__PURE__*/React.createElement("linearGradient", {
12305
+ x1: "41.823%",
12306
+ y1: "24.795%",
12307
+ x2: "8.813%",
12308
+ y2: "86.427%",
12309
+ id: createNewId("g")
12310
+ }, /*#__PURE__*/React.createElement("stop", {
12311
+ stopColor: "#CCD0DD",
12312
+ offset: "0%"
12313
+ }), /*#__PURE__*/React.createElement("stop", {
12314
+ stopColor: "#9DA3B9",
12315
+ offset: "100%"
12316
+ })), /*#__PURE__*/React.createElement("filter", {
12317
+ x: "-37.5%",
12318
+ y: "-31.3%",
12319
+ width: "187.5%",
12320
+ height: "187.5%",
12321
+ filterUnits: "objectBoundingBox",
12322
+ id: createNewId("b")
12323
+ }, /*#__PURE__*/React.createElement("feOffset", {
12324
+ dx: 1,
12325
+ dy: 2,
12326
+ in: "SourceAlpha",
12327
+ result: "shadowOffsetOuter1"
12328
+ }), /*#__PURE__*/React.createElement("feGaussianBlur", {
12329
+ stdDeviation: 2,
12330
+ in: "shadowOffsetOuter1",
12331
+ result: "shadowBlurOuter1"
12332
+ }), /*#__PURE__*/React.createElement("feComposite", {
12333
+ in: "shadowBlurOuter1",
12334
+ in2: "SourceAlpha",
12335
+ operator: "out",
12336
+ result: "shadowBlurOuter1"
12337
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
12338
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.22 0",
12339
+ in: "shadowBlurOuter1"
12340
+ })), /*#__PURE__*/React.createElement("filter", {
12341
+ x: "-61.9%",
12342
+ y: "-79.5%",
12343
+ width: "223.7%",
12344
+ height: "223.7%",
12345
+ filterUnits: "objectBoundingBox",
12346
+ id: createNewId("e")
12347
+ }, /*#__PURE__*/React.createElement("feOffset", {
12348
+ dy: -2,
12349
+ in: "SourceAlpha",
12350
+ result: "shadowOffsetOuter1"
12351
+ }), /*#__PURE__*/React.createElement("feGaussianBlur", {
12352
+ stdDeviation: 2,
12353
+ in: "shadowOffsetOuter1",
12354
+ result: "shadowBlurOuter1"
12355
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
12356
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0",
12357
+ in: "shadowBlurOuter1"
12358
+ })), /*#__PURE__*/React.createElement("path", {
12359
+ 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",
12360
+ id: createNewId("c")
12361
+ }), /*#__PURE__*/React.createElement("path", {
12362
+ d: "M59 19a4 4 0 0 1 4 4v7.314L51.686 19H59Z",
12363
+ id: createNewId("f")
12364
+ })), /*#__PURE__*/React.createElement("g", {
12365
+ fill: "none",
12366
+ fillRule: "evenodd"
12367
+ }, /*#__PURE__*/React.createElement("path", {
12368
+ 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",
12369
+ fill: "#A6AAC3"
12370
+ }), /*#__PURE__*/React.createElement("path", {
12371
+ 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",
12372
+ fill: "url(#".concat(createNewId("a"), ")")
12373
+ }), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("use", {
12374
+ fill: "#000",
12375
+ filter: "url(#".concat(createNewId("b"), ")"),
12376
+ xlinkHref: "#".concat(createNewId("c"))
12377
+ }), /*#__PURE__*/React.createElement("path", {
12378
+ stroke: "#FFF",
12379
+ 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",
12380
+ strokeLinejoin: "round",
12381
+ fill: "url(#".concat(createNewId("d"), ")")
12382
+ })), /*#__PURE__*/React.createElement("g", {
12383
+ transform: "rotate(180 57.343 24.657)"
12384
+ }, /*#__PURE__*/React.createElement("use", {
12385
+ fill: "#000",
12386
+ filter: "url(#".concat(createNewId("e"), ")"),
12387
+ xlinkHref: "#".concat(createNewId("f"))
12388
+ }), /*#__PURE__*/React.createElement("use", {
12389
+ fill: "url(#".concat(createNewId("g"), ")"),
12390
+ xlinkHref: "#".concat(createNewId("f"))
12391
+ })), /*#__PURE__*/React.createElement("path", {
12392
+ 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",
12393
+ fill: "#D6D8E4",
12394
+ opacity: 0.3
12395
+ }), /*#__PURE__*/React.createElement("path", {
12396
+ 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",
12397
+ fill: "#D6D8E4"
12398
+ }), /*#__PURE__*/React.createElement("path", {
12399
+ 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",
12400
+ fill: "#D6D8E4",
12401
+ opacity: 0.5
12402
+ }), /*#__PURE__*/React.createElement("path", {
12403
+ 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",
12404
+ fill: "#D6D8E4",
12405
+ opacity: 0.8
12406
+ }))) : /*#__PURE__*/React.createElement("svg", {
12407
+ width: 56,
12408
+ height: 53,
12409
+ xmlns: "http://www.w3.org/2000/svg",
12410
+ xmlnsXlink: "http://www.w3.org/1999/xlink"
12411
+ }, /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
12412
+ x1: "5.718%",
12413
+ y1: "4.311%",
12414
+ x2: "83.05%",
12415
+ y2: "88.915%",
12416
+ id: createNewId("a")
12417
+ }, /*#__PURE__*/React.createElement("stop", {
12418
+ stopColor: "#D4D8E4",
12419
+ offset: "0%"
12420
+ }), /*#__PURE__*/React.createElement("stop", {
12421
+ stopColor: "#A9B0C4",
12422
+ offset: "100%"
12423
+ })), /*#__PURE__*/React.createElement("linearGradient", {
12424
+ x1: "0%",
12425
+ y1: "11.08%",
12426
+ x2: "80.548%",
12427
+ y2: "107.704%",
12428
+ id: createNewId("d")
12429
+ }, /*#__PURE__*/React.createElement("stop", {
12430
+ stopColor: "#C2C7DA",
12431
+ offset: "0%"
12432
+ }), /*#__PURE__*/React.createElement("stop", {
12433
+ stopColor: "#8F96B3",
12434
+ offset: "100%"
12435
+ })), /*#__PURE__*/React.createElement("linearGradient", {
12436
+ x1: "41.823%",
12437
+ y1: "24.795%",
12438
+ x2: "8.813%",
12439
+ y2: "86.427%",
12440
+ id: createNewId("g")
12441
+ }, /*#__PURE__*/React.createElement("stop", {
12442
+ stopColor: "#CCD0DD",
12443
+ offset: "0%"
12444
+ }), /*#__PURE__*/React.createElement("stop", {
12445
+ stopColor: "#9DA3B9",
12446
+ offset: "100%"
12447
+ })), /*#__PURE__*/React.createElement("filter", {
12448
+ x: "-57.2%",
12449
+ y: "-47.7%",
12450
+ width: "233.4%",
12451
+ height: "233.4%",
12452
+ filterUnits: "objectBoundingBox",
12453
+ id: createNewId("b")
12454
+ }, /*#__PURE__*/React.createElement("feOffset", {
12455
+ dx: 1,
12456
+ dy: 2,
12457
+ in: "SourceAlpha",
12458
+ result: "shadowOffsetOuter1"
12459
+ }), /*#__PURE__*/React.createElement("feGaussianBlur", {
12460
+ stdDeviation: 2,
12461
+ in: "shadowOffsetOuter1",
12462
+ result: "shadowBlurOuter1"
12463
+ }), /*#__PURE__*/React.createElement("feComposite", {
12464
+ in: "shadowBlurOuter1",
12465
+ in2: "SourceAlpha",
12466
+ operator: "out",
12467
+ result: "shadowBlurOuter1"
12468
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
12469
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.22 0",
12470
+ in: "shadowBlurOuter1"
12471
+ })), /*#__PURE__*/React.createElement("filter", {
12472
+ x: "-94.4%",
12473
+ y: "-121.3%",
12474
+ width: "288.7%",
12475
+ height: "288.7%",
12476
+ filterUnits: "objectBoundingBox",
12477
+ id: createNewId("e")
12478
+ }, /*#__PURE__*/React.createElement("feOffset", {
12479
+ dy: -2,
12480
+ in: "SourceAlpha",
12481
+ result: "shadowOffsetOuter1"
12482
+ }), /*#__PURE__*/React.createElement("feGaussianBlur", {
12483
+ stdDeviation: 2,
12484
+ in: "shadowOffsetOuter1",
12485
+ result: "shadowBlurOuter1"
12486
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
12487
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0",
12488
+ in: "shadowBlurOuter1"
12489
+ })), /*#__PURE__*/React.createElement("path", {
12490
+ 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",
12491
+ id: createNewId("c")
12492
+ }), /*#__PURE__*/React.createElement("path", {
12493
+ d: "M37.311 12.459a4 4 0 0 1 4 4v3.419l-7.418-7.419h3.418Z",
12494
+ id: createNewId("f")
12495
+ })), /*#__PURE__*/React.createElement("g", {
12496
+ fill: "none",
12497
+ fillRule: "evenodd"
12498
+ }, /*#__PURE__*/React.createElement("path", {
12499
+ 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",
12500
+ fill: "#A6AAC3"
12501
+ }), /*#__PURE__*/React.createElement("path", {
12502
+ 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",
12503
+ fill: "url(#".concat(createNewId("a"), ")")
12504
+ }), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("use", {
12505
+ fill: "#000",
12506
+ filter: "url(#".concat(createNewId("b"), ")"),
12507
+ xlinkHref: "#".concat(createNewId("c"))
12508
+ }), /*#__PURE__*/React.createElement("path", {
12509
+ stroke: "#FFF",
12510
+ 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",
12511
+ strokeLinejoin: "round",
12512
+ fill: "url(#d)"
12513
+ })), /*#__PURE__*/React.createElement("g", {
12514
+ transform: "rotate(180 37.602 16.168)"
12515
+ }, /*#__PURE__*/React.createElement("use", {
12516
+ fill: "#000",
12517
+ filter: "url(#".concat(createNewId("e"), ")"),
12518
+ xlinkHref: "#".concat(createNewId("f"))
12519
+ }), /*#__PURE__*/React.createElement("use", {
12520
+ fill: "url(#".concat(createNewId("g"), ")"),
12521
+ xlinkHref: "#".concat(createNewId("f"))
12522
+ })), /*#__PURE__*/React.createElement("path", {
12523
+ 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",
12524
+ fill: "#D6D8E4",
12525
+ opacity: 0.3
12526
+ }), /*#__PURE__*/React.createElement("path", {
12527
+ 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",
12528
+ fill: "#D6D8E4"
12529
+ }), /*#__PURE__*/React.createElement("path", {
12530
+ 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",
12531
+ fill: "#D6D8E4",
12532
+ opacity: 0.5
12533
+ }), /*#__PURE__*/React.createElement("path", {
12534
+ 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",
12535
+ fill: "#D6D8E4",
12536
+ opacity: 0.8
12537
+ })));
12538
+ }
12159
12539
  }
12160
12540
 
12161
12541
  /**
@@ -12165,14 +12545,13 @@ function EasyopsEmpty(props) {
12165
12545
  var _props$imageStyle;
12166
12546
 
12167
12547
  var illustration = useMemo(() => props.illustration && getIllustration(props.illustration), [props.illustration]);
12168
-
12169
- var _emptyImage = props.useBigEmptyImage ? SvgBigEmptyImage : SvgEmptyImage;
12170
-
12171
- var image = props.illustration ? illustration : /*#__PURE__*/React__default.createElement(_emptyImage);
12548
+ var image = props.illustration ? illustration : /*#__PURE__*/React.createElement(EmptySvg, {
12549
+ isBig: props.useBigEmptyImage
12550
+ });
12172
12551
  var imageStyle = (_props$imageStyle = props.imageStyle) !== null && _props$imageStyle !== void 0 ? _props$imageStyle : props.useBigEmptyImage ? undefined : {
12173
12552
  height: "60px"
12174
12553
  };
12175
- return /*#__PURE__*/React__default.createElement(Empty, {
12554
+ return /*#__PURE__*/React.createElement(Empty, {
12176
12555
  image: image,
12177
12556
  imageStyle: imageStyle,
12178
12557
  description: props.description,
@@ -12186,7 +12565,7 @@ function EasyopsEmpty(props) {
12186
12565
  */
12187
12566
 
12188
12567
  function renderEasyopsEmpty() {
12189
- return /*#__PURE__*/React__default.createElement(EasyopsEmpty, null);
12568
+ return /*#__PURE__*/React.createElement(EasyopsEmpty, null);
12190
12569
  }
12191
12570
 
12192
12571
  var FeatureFlagsContext = /*#__PURE__*/createContext(null);
@@ -12256,7 +12635,7 @@ function useFeatureFlags(name) {
12256
12635
 
12257
12636
  function DisplayByFeatureFlags(props) {
12258
12637
  var featureFlags = useFeatureFlags(props.name);
12259
- return featureFlags.every(flag => !!flag) ? /*#__PURE__*/React__default.createElement(React__default.Fragment, null, props.children) : props !== null && props !== void 0 && props.fallback ? /*#__PURE__*/React__default.createElement(React__default.Fragment, null, props === null || props === void 0 ? void 0 : props.fallback) : null;
12638
+ 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
12639
  }
12261
12640
 
12262
12641
  /**
@@ -12266,15 +12645,15 @@ function BrickWrapper(props) {
12266
12645
  var locale = i18next.language && i18next.language.split("-")[0] === "en" ? defaultLocale : zhCN; // istanbul ignore next
12267
12646
 
12268
12647
  var featureFlags = process.env.NODE_ENV === "test" ? {} : getRuntime().getFeatureFlags();
12269
- return /*#__PURE__*/React__default.createElement(ErrorBoundary, null, /*#__PURE__*/React__default.createElement(FeatureFlagsProvider, {
12648
+ return /*#__PURE__*/React.createElement(ErrorBoundary, null, /*#__PURE__*/React.createElement(FeatureFlagsProvider, {
12270
12649
  value: featureFlags
12271
- }, /*#__PURE__*/React__default.createElement(ConfigProvider, {
12650
+ }, /*#__PURE__*/React.createElement(ConfigProvider, {
12272
12651
  locale: locale,
12273
12652
  autoInsertSpaceInButton: false,
12274
12653
  renderEmpty: () => {
12275
12654
  var _props$wrapperConfig;
12276
12655
 
12277
- return /*#__PURE__*/React__default.createElement(EasyopsEmpty, (_props$wrapperConfig = props.wrapperConfig) === null || _props$wrapperConfig === void 0 ? void 0 : _props$wrapperConfig.empty);
12656
+ return /*#__PURE__*/React.createElement(EasyopsEmpty, (_props$wrapperConfig = props.wrapperConfig) === null || _props$wrapperConfig === void 0 ? void 0 : _props$wrapperConfig.empty);
12278
12657
  }
12279
12658
  }, props.children)));
12280
12659
  }