linkmore-design 1.0.57 → 1.0.58

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.
Files changed (63) hide show
  1. package/dist/CardTable/LmCardTable.d.ts +1 -0
  2. package/dist/Empty/demos/custom.d.ts +2 -0
  3. package/dist/Empty/empty.d.ts +2 -0
  4. package/dist/Empty/index.d.ts +18 -3
  5. package/dist/Empty/simple.d.ts +2 -0
  6. package/dist/LmFilter/utils.d.ts +1 -1
  7. package/dist/index.umd.js +336 -183
  8. package/dist/index.umd.min.js +6 -6
  9. package/es/CardTable/LmCardTable.js +4 -1
  10. package/es/CardTable/card/PictureTextRow.js +8 -3
  11. package/es/CardTable/style/index.css +8 -1
  12. package/es/CustomTableOption/cardSort.js +0 -3
  13. package/es/CustomTableOption/columnsSort.js +2 -4
  14. package/es/CustomTableOption/filterSort.js +0 -3
  15. package/es/CustomTableOption/index.js +2 -2
  16. package/es/Empty/empty.d.ts +2 -0
  17. package/es/Empty/empty.js +55 -0
  18. package/es/Empty/index.d.ts +18 -3
  19. package/es/Empty/index.js +100 -1
  20. package/es/Empty/simple.d.ts +2 -0
  21. package/es/Empty/simple.js +36 -0
  22. package/es/Empty/style/index.css +44 -0
  23. package/es/LmFilter/Controls/index.js +32 -2
  24. package/es/LmFilter/complexFilter/drawer.js +18 -32
  25. package/es/LmFilter/components/CascaderFilter.js +19 -32
  26. package/es/LmFilter/components/CheckboxFilter.js +13 -21
  27. package/es/LmFilter/components/DateFilter.js +50 -22
  28. package/es/LmFilter/components/DropdownFIlter.js +44 -23
  29. package/es/LmFilter/components/SelectFilter.js +2 -3
  30. package/es/LmFilter/components/index.js +5 -61
  31. package/es/LmFilter/filterFns/index.js +17 -17
  32. package/es/LmFilter/style/style.css +2 -1
  33. package/es/LmFilter/utils.js +63 -14
  34. package/es/LmFilter/wrapper/FilterRoot.js +4 -17
  35. package/es/LmTable/Table.js +8 -6
  36. package/lib/CardTable/LmCardTable.js +4 -1
  37. package/lib/CardTable/card/PictureTextRow.js +8 -3
  38. package/lib/CardTable/style/index.css +8 -1
  39. package/lib/CustomTableOption/cardSort.js +0 -3
  40. package/lib/CustomTableOption/columnsSort.js +2 -4
  41. package/lib/CustomTableOption/filterSort.js +0 -3
  42. package/lib/CustomTableOption/index.js +2 -2
  43. package/lib/Empty/empty.d.ts +2 -0
  44. package/lib/Empty/empty.js +66 -0
  45. package/lib/Empty/index.d.ts +18 -3
  46. package/lib/Empty/index.js +107 -1
  47. package/lib/Empty/simple.d.ts +2 -0
  48. package/lib/Empty/simple.js +47 -0
  49. package/lib/Empty/style/index.css +44 -0
  50. package/lib/LmFilter/Controls/index.js +32 -2
  51. package/lib/LmFilter/complexFilter/drawer.js +18 -32
  52. package/lib/LmFilter/components/CascaderFilter.js +19 -32
  53. package/lib/LmFilter/components/CheckboxFilter.js +13 -21
  54. package/lib/LmFilter/components/DateFilter.js +50 -22
  55. package/lib/LmFilter/components/DropdownFIlter.js +44 -23
  56. package/lib/LmFilter/components/SelectFilter.js +2 -3
  57. package/lib/LmFilter/components/index.js +5 -61
  58. package/lib/LmFilter/filterFns/index.js +17 -17
  59. package/lib/LmFilter/style/style.css +2 -1
  60. package/lib/LmFilter/utils.js +63 -14
  61. package/lib/LmFilter/wrapper/FilterRoot.js +4 -17
  62. package/lib/LmTable/Table.js +8 -6
  63. package/package.json +1 -1
@@ -17,7 +17,7 @@ var _react = _interopRequireWildcard(require("react"));
17
17
 
18
18
  var _TableRoot = _interopRequireDefault(require("./table/TableRoot"));
19
19
 
20
- var _excluded = ["cellKey", "type", "height", "virtual", "components", "dataSource", "cellConfig", "checkboxConfig"];
20
+ var _excluded = ["cellKey", "type", "height", "virtual", "ellipsis", "components", "dataSource", "cellConfig", "checkboxConfig"];
21
21
 
22
22
  // export type LmCardTableProps<TData extends Record<string, any> = {}> {
23
23
  // rows: LM_Row<TData>[];
@@ -32,6 +32,8 @@ var LmCardTable = function LmCardTable(_ref, ref) {
32
32
  height = _ref$height === void 0 ? '100%' : _ref$height,
33
33
  _ref$virtual = _ref.virtual,
34
34
  virtual = _ref$virtual === void 0 ? true : _ref$virtual,
35
+ _ref$ellipsis = _ref.ellipsis,
36
+ ellipsis = _ref$ellipsis === void 0 ? true : _ref$ellipsis,
35
37
  _ref$components = _ref.components,
36
38
  components = _ref$components === void 0 ? {} : _ref$components,
37
39
  _ref$dataSource = _ref.dataSource,
@@ -47,6 +49,7 @@ var LmCardTable = function LmCardTable(_ref, ref) {
47
49
  type: type,
48
50
  height: height,
49
51
  virtual: virtual,
52
+ ellipsis: ellipsis,
50
53
  components: components,
51
54
  dataSource: dataSource,
52
55
  cellConfig: cellConfig,
@@ -40,7 +40,8 @@ var PictureTextRow = function PictureTextRow(_ref) {
40
40
  cellClick = table.cellClick,
41
41
  cellDoubleClick = table.cellDoubleClick,
42
42
  toggleCheckboxKey = table.toggleCheckboxKey,
43
- checkboxChange = table.checkboxChange;
43
+ checkboxChange = table.checkboxChange,
44
+ ellipsis = table.ellipsis;
44
45
  var trigger = state.checkboxConfig.trigger;
45
46
  var resetDefaultConfig = (0, _objectSpread2.default)({
46
47
  checkbox: true,
@@ -116,9 +117,13 @@ var PictureTextRow = function PictureTextRow(_ref) {
116
117
  className: "PTR_column_box"
117
118
  }, resetDefaultConfig.columns.map(function (v, idx) {
118
119
  var isVisible = v.show || typeof v.show !== 'boolean';
119
- return isVisible ? /*#__PURE__*/_react.default.createElement("span", {
120
+ return isVisible ? /*#__PURE__*/_react.default.createElement("div", {
120
121
  key: (v === null || v === void 0 ? void 0 : v.dataIndex) || idx
121
- }, v.title, ": ", cell[v.dataIndex]) : null;
122
+ }, v.title, "\uFF1A", /*#__PURE__*/_react.default.createElement("div", {
123
+ className: (0, _classnames.default)({
124
+ ellipsis: ellipsis
125
+ })
126
+ }, typeof v.render === 'function' ? v.render(cell[v.dataIndex], cell, table) : cell[v.dataIndex])) : null;
122
127
  }))) : null, resetDefaultConfig.extend ? /*#__PURE__*/_react.default.createElement("div", {
123
128
  className: "PTR_extend"
124
129
  }, resetDefaultConfig.extend(cell, table)) : null, resetDefaultConfig.desc ? /*#__PURE__*/_react.default.createElement("div", {
@@ -231,14 +231,21 @@
231
231
  font-size: 12px;
232
232
  display: grid;
233
233
  grid-template-columns: repeat(2, 1fr);
234
+ column-gap: 8px;
234
235
  color: var(--color-65);
235
236
  margin-top: 8px;
236
237
  }
237
- .card_PTR .card_PTR_container .card_PTR_body .card_PTR_right .PTR_column .PTR_column_box span {
238
+ .card_PTR .card_PTR_container .card_PTR_body .card_PTR_right .PTR_column .PTR_column_box > div {
238
239
  display: inline-flex;
239
240
  align-items: center;
240
241
  min-height: 20px;
241
242
  }
243
+ .card_PTR .card_PTR_container .card_PTR_body .card_PTR_right .PTR_column .PTR_column_box .ellipsis {
244
+ flex: 1 1 0;
245
+ text-overflow: ellipsis;
246
+ white-space: nowrap;
247
+ overflow: hidden;
248
+ }
242
249
  .card_PTR .card_PTR_container .card_PTR_body .card_PTR_right .PTR_desc {
243
250
  font-size: 12px;
244
251
  color: var(--color-65);
@@ -119,9 +119,6 @@ var FilterSort = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
119
119
  setSearchValue(searchIngValue);
120
120
  };
121
121
 
122
- (0, _react.useEffect)(function () {
123
- console.log(localCard, 'localFilter');
124
- }, [localCard]);
125
122
  (0, _react.useEffect)(function () {
126
123
  setLocalCard(card);
127
124
  setColStateValue(cardStateValue);
@@ -64,7 +64,6 @@ var SortItem = function SortItem(props) {
64
64
  type: "lmweb-vertical-align-top",
65
65
  className: "lm_custom_icon hover_show icon_top",
66
66
  onClick: function onClick(e) {
67
- console.log(e, 'eee');
68
67
  e.stopPropagation();
69
68
  props.addFiexd(props.id, 'left');
70
69
  }
@@ -86,8 +85,7 @@ var SortItem = function SortItem(props) {
86
85
 
87
86
 
88
87
  var ColumnsSort = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
89
- var _ref$columns = _ref.columns,
90
- columns = _ref$columns === void 0 ? [] : _ref$columns,
88
+ var columns = _ref.columns,
91
89
  _ref$ColumnsStateValu = _ref.ColumnsStateValue,
92
90
  ColumnsStateValue = _ref$ColumnsStateValu === void 0 ? {} : _ref$ColumnsStateValu;
93
91
 
@@ -167,7 +165,7 @@ var ColumnsSort = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
167
165
  };
168
166
 
169
167
  (0, _react.useEffect)(function () {
170
- setLocalColumns(columns);
168
+ setLocalColumns(columns || []);
171
169
  setColStateValue(ColumnsStateValue);
172
170
  }, [columns]);
173
171
  var leftSensors = (0, _core.useSensors)((0, _core.useSensor)(_core.PointerSensor), (0, _core.useSensor)(_core.KeyboardSensor, {
@@ -119,9 +119,6 @@ var FilterSort = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
119
119
  setSearchValue(searchIngValue);
120
120
  };
121
121
 
122
- (0, _react.useEffect)(function () {
123
- console.log(localFilter, 'localFilter');
124
- }, [localFilter]);
125
122
  (0, _react.useEffect)(function () {
126
123
  setLocalFilter(filter);
127
124
  setColStateValue(filterStateValue);
@@ -89,8 +89,8 @@ var LMCustomTableOption = /*#__PURE__*/(0, _react.forwardRef)(function (props, r
89
89
 
90
90
  (0, _react.useEffect)(function () {
91
91
  setLmOptions({
92
- filter: props.filter,
93
- columns: props.columns,
92
+ filter: props.filter || [],
93
+ columns: props.columns || [],
94
94
  size: props.size || 'default',
95
95
  card: props.card || []
96
96
  });
@@ -0,0 +1,2 @@
1
+ declare const Empty: () => JSX.Element;
2
+ export default Empty;
@@ -0,0 +1,66 @@
1
+ "use strict";
2
+
3
+ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.default = void 0;
9
+
10
+ var React = _interopRequireWildcard(require("react"));
11
+
12
+ var _configProvider = require("antd/es/config-provider");
13
+
14
+ var Empty = function Empty() {
15
+ var _React$useContext = React.useContext(_configProvider.ConfigContext),
16
+ getPrefixCls = _React$useContext.getPrefixCls;
17
+
18
+ var prefixCls = getPrefixCls('empty-img-default');
19
+ return /*#__PURE__*/React.createElement("svg", {
20
+ className: prefixCls,
21
+ width: "184",
22
+ height: "152",
23
+ viewBox: "0 0 184 152",
24
+ xmlns: "http://www.w3.org/2000/svg"
25
+ }, /*#__PURE__*/React.createElement("g", {
26
+ fill: "none",
27
+ fillRule: "evenodd"
28
+ }, /*#__PURE__*/React.createElement("g", {
29
+ transform: "translate(24 31.67)"
30
+ }, /*#__PURE__*/React.createElement("ellipse", {
31
+ className: "".concat(prefixCls, "-ellipse"),
32
+ cx: "67.797",
33
+ cy: "106.89",
34
+ rx: "67.797",
35
+ ry: "12.668"
36
+ }), /*#__PURE__*/React.createElement("path", {
37
+ className: "".concat(prefixCls, "-path-1"),
38
+ d: "M122.034 69.674L98.109 40.229c-1.148-1.386-2.826-2.225-4.593-2.225h-51.44c-1.766 0-3.444.839-4.592 2.225L13.56 69.674v15.383h108.475V69.674z"
39
+ }), /*#__PURE__*/React.createElement("path", {
40
+ className: "".concat(prefixCls, "-path-2"),
41
+ d: "M101.537 86.214L80.63 61.102c-1.001-1.207-2.507-1.867-4.048-1.867H31.724c-1.54 0-3.047.66-4.048 1.867L6.769 86.214v13.792h94.768V86.214z",
42
+ transform: "translate(13.56)"
43
+ }), /*#__PURE__*/React.createElement("path", {
44
+ className: "".concat(prefixCls, "-path-3"),
45
+ d: "M33.83 0h67.933a4 4 0 0 1 4 4v93.344a4 4 0 0 1-4 4H33.83a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4z"
46
+ }), /*#__PURE__*/React.createElement("path", {
47
+ className: "".concat(prefixCls, "-path-4"),
48
+ d: "M42.678 9.953h50.237a2 2 0 0 1 2 2V36.91a2 2 0 0 1-2 2H42.678a2 2 0 0 1-2-2V11.953a2 2 0 0 1 2-2zM42.94 49.767h49.713a2.262 2.262 0 1 1 0 4.524H42.94a2.262 2.262 0 0 1 0-4.524zM42.94 61.53h49.713a2.262 2.262 0 1 1 0 4.525H42.94a2.262 2.262 0 0 1 0-4.525zM121.813 105.032c-.775 3.071-3.497 5.36-6.735 5.36H20.515c-3.238 0-5.96-2.29-6.734-5.36a7.309 7.309 0 0 1-.222-1.79V69.675h26.318c2.907 0 5.25 2.448 5.25 5.42v.04c0 2.971 2.37 5.37 5.277 5.37h34.785c2.907 0 5.277-2.421 5.277-5.393V75.1c0-2.972 2.343-5.426 5.25-5.426h26.318v33.569c0 .617-.077 1.216-.221 1.789z"
49
+ })), /*#__PURE__*/React.createElement("path", {
50
+ className: "".concat(prefixCls, "-path-5"),
51
+ d: "M149.121 33.292l-6.83 2.65a1 1 0 0 1-1.317-1.23l1.937-6.207c-2.589-2.944-4.109-6.534-4.109-10.408C138.802 8.102 148.92 0 161.402 0 173.881 0 184 8.102 184 18.097c0 9.995-10.118 18.097-22.599 18.097-4.528 0-8.744-1.066-12.28-2.902z"
52
+ }), /*#__PURE__*/React.createElement("g", {
53
+ className: "".concat(prefixCls, "-g"),
54
+ transform: "translate(149.65 15.383)"
55
+ }, /*#__PURE__*/React.createElement("ellipse", {
56
+ cx: "20.654",
57
+ cy: "3.167",
58
+ rx: "2.849",
59
+ ry: "2.815"
60
+ }), /*#__PURE__*/React.createElement("path", {
61
+ d: "M5.698 5.63H0L2.898.704zM9.259.704h4.985V5.63H9.259z"
62
+ }))));
63
+ };
64
+
65
+ var _default = Empty;
66
+ exports.default = _default;
@@ -1,7 +1,22 @@
1
- import React from 'react';
2
- import { Empty } from 'antd';
3
- export interface IEmptyProps {
1
+ import * as React from 'react';
2
+ export interface TransferLocale {
3
+ description: string;
4
+ }
5
+ export interface EmptyProps {
6
+ prefixCls?: string;
4
7
  className?: string;
5
8
  style?: React.CSSProperties;
9
+ /** @since 3.16.0 */
10
+ imageStyle?: React.CSSProperties;
11
+ image?: React.ReactNode;
12
+ description?: React.ReactNode;
13
+ children?: React.ReactNode;
14
+ title: string | React.ReactNode;
15
+ }
16
+ interface EmptyType extends React.FC<EmptyProps> {
17
+ PRESENTED_IMAGE_DEFAULT: React.ReactNode;
18
+ PRESENTED_IMAGE_SIMPLE: React.ReactNode;
19
+ AntdEmpty: React.ReactNode;
6
20
  }
21
+ declare const Empty: EmptyType;
7
22
  export default Empty;
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
 
3
+ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
4
+
3
5
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
6
 
5
7
  Object.defineProperty(exports, "__esModule", {
@@ -11,5 +13,109 @@ require("antd/es/empty/style");
11
13
 
12
14
  var _empty = _interopRequireDefault(require("antd/es/empty"));
13
15
 
14
- var _default = _empty.default;
16
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
17
+
18
+ var _classnames = _interopRequireDefault(require("classnames"));
19
+
20
+ var React = _interopRequireWildcard(require("react"));
21
+
22
+ var _configProvider = require("antd/es/config-provider");
23
+
24
+ var _LocaleReceiver = _interopRequireDefault(require("antd/es/locale-provider/LocaleReceiver"));
25
+
26
+ var _empty2 = _interopRequireDefault(require("./empty"));
27
+
28
+ var _simple = _interopRequireDefault(require("./simple"));
29
+
30
+ var __rest = void 0 && (void 0).__rest || function (s, e) {
31
+ var t = {};
32
+
33
+ for (var p in s) {
34
+ if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
35
+ }
36
+
37
+ if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
38
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
39
+ }
40
+ return t;
41
+ };
42
+
43
+ var defaultEmptyImg = /*#__PURE__*/React.createElement(_empty2.default, null);
44
+ var simpleEmptyImg = /*#__PURE__*/React.createElement(_simple.default, null);
45
+ var TitleMap = {
46
+ notfound: '抱歉,404页面',
47
+ nopermissions: '抱歉,您的权限不足',
48
+ loaderror: '数据加载中,请您再试一次',
49
+ networkerror: '抱歉,服务器出错误',
50
+ nodata: '抱歉,暂无数据'
51
+ };
52
+
53
+ var Empty = function Empty(_a) {
54
+ var className = _a.className,
55
+ customizePrefixCls = _a.prefixCls,
56
+ _a$image = _a.image,
57
+ image = _a$image === void 0 ? defaultEmptyImg : _a$image,
58
+ title = _a.title,
59
+ description = _a.description,
60
+ children = _a.children,
61
+ imageStyle = _a.imageStyle,
62
+ restProps = __rest(_a, ["className", "prefixCls", "image", "title", "description", "children", "imageStyle"]);
63
+
64
+ var _React$useContext = React.useContext(_configProvider.ConfigContext),
65
+ getPrefixCls = _React$useContext.getPrefixCls,
66
+ direction = _React$useContext.direction;
67
+
68
+ var isCustomEmpty = (0, React.useMemo)(function () {
69
+ if (typeof image === 'string' && ['notfound', 'nopermissions', 'loaderror', 'networkerror', 'nodata'].includes(image)) {
70
+ return true;
71
+ }
72
+
73
+ return false;
74
+ }, [image]);
75
+ return (
76
+ /*#__PURE__*/
77
+ // @ts-ignore
78
+ React.createElement(_LocaleReceiver.default, {
79
+ componentName: "Empty"
80
+ }, function (locale) {
81
+ var _classNames;
82
+
83
+ var prefixCls = getPrefixCls('empty', customizePrefixCls);
84
+ var des = typeof description !== 'undefined' ? description : locale.description;
85
+ var alt = typeof des === 'string' ? des : 'empty';
86
+ var imageNode = null;
87
+
88
+ if (isCustomEmpty) {
89
+ imageNode = /*#__PURE__*/React.createElement("div", {
90
+ className: (0, _classnames.default)('lm_custom_empty_img', "".concat(image))
91
+ });
92
+ } else if (typeof image === 'string') {
93
+ imageNode = /*#__PURE__*/React.createElement("img", {
94
+ alt: alt,
95
+ src: image
96
+ });
97
+ } else {
98
+ imageNode = image;
99
+ }
100
+
101
+ return /*#__PURE__*/React.createElement("div", Object.assign({
102
+ className: (0, _classnames.default)(prefixCls, (_classNames = {}, (0, _defineProperty2.default)(_classNames, "".concat(prefixCls, "-normal"), image === simpleEmptyImg), (0, _defineProperty2.default)(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), _classNames), className, 'lm_empty')
103
+ }, restProps), /*#__PURE__*/React.createElement("div", {
104
+ className: (0, _classnames.default)("".concat(prefixCls, "-image"), isCustomEmpty && 'lm_custom_empty'),
105
+ style: imageStyle
106
+ }, imageNode), (title || isCustomEmpty) && /*#__PURE__*/React.createElement("div", {
107
+ className: "".concat(prefixCls, "-title")
108
+ }, title || TitleMap["".concat(image)]), des && /*#__PURE__*/React.createElement("div", {
109
+ className: "".concat(prefixCls, "-description")
110
+ }, des), children && /*#__PURE__*/React.createElement("div", {
111
+ className: "".concat(prefixCls, "-footer")
112
+ }, children));
113
+ })
114
+ );
115
+ };
116
+
117
+ Empty.PRESENTED_IMAGE_DEFAULT = defaultEmptyImg;
118
+ Empty.PRESENTED_IMAGE_SIMPLE = simpleEmptyImg;
119
+ Empty.AntdEmpty = _empty.default;
120
+ var _default = Empty;
15
121
  exports.default = _default;
@@ -0,0 +1,2 @@
1
+ declare const Simple: () => JSX.Element;
2
+ export default Simple;
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+
3
+ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.default = void 0;
9
+
10
+ var React = _interopRequireWildcard(require("react"));
11
+
12
+ var _configProvider = require("antd/es/config-provider");
13
+
14
+ var Simple = function Simple() {
15
+ var _React$useContext = React.useContext(_configProvider.ConfigContext),
16
+ getPrefixCls = _React$useContext.getPrefixCls;
17
+
18
+ var prefixCls = getPrefixCls('empty-img-simple');
19
+ return /*#__PURE__*/React.createElement("svg", {
20
+ className: prefixCls,
21
+ width: "64",
22
+ height: "41",
23
+ viewBox: "0 0 64 41",
24
+ xmlns: "http://www.w3.org/2000/svg"
25
+ }, /*#__PURE__*/React.createElement("g", {
26
+ transform: "translate(0 1)",
27
+ fill: "none",
28
+ fillRule: "evenodd"
29
+ }, /*#__PURE__*/React.createElement("ellipse", {
30
+ className: "".concat(prefixCls, "-ellipse"),
31
+ cx: "32",
32
+ cy: "33",
33
+ rx: "32",
34
+ ry: "7"
35
+ }), /*#__PURE__*/React.createElement("g", {
36
+ className: "".concat(prefixCls, "-g"),
37
+ fillRule: "nonzero"
38
+ }, /*#__PURE__*/React.createElement("path", {
39
+ d: "M55 12.76L44.854 1.258C44.367.474 43.656 0 42.907 0H21.093c-.749 0-1.46.474-1.947 1.257L9 12.761V22h46v-9.24z"
40
+ }), /*#__PURE__*/React.createElement("path", {
41
+ d: "M41.613 15.931c0-1.605.994-2.93 2.227-2.931H55v18.137C55 33.26 53.68 35 52.05 35h-40.1C10.32 35 9 33.259 9 31.137V13h11.16c1.233 0 2.227 1.323 2.227 2.928v.022c0 1.605 1.005 2.901 2.237 2.901h14.752c1.232 0 2.237-1.308 2.237-2.913v-.007z",
42
+ className: "".concat(prefixCls, "-path")
43
+ }))));
44
+ };
45
+
46
+ var _default = Simple;
47
+ exports.default = _default;