@firesoon/icons-react 3.0.12 → 3.0.13

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 (34) hide show
  1. package/CHANGELOG.md +96 -0
  2. package/es/components/fs/business-menu/Topcancel.d.ts +4 -0
  3. package/es/components/fs/business-menu/Topcancel.js +12 -0
  4. package/es/components/fs/business-menu/Toped.d.ts +4 -0
  5. package/es/components/fs/business-menu/Toped.js +12 -0
  6. package/es/components/fs/business-menu/Totop.d.ts +4 -0
  7. package/es/components/fs/business-menu/Totop.js +12 -0
  8. package/es/components/fs/business-menu/index.d.ts +3 -0
  9. package/es/components/fs/business-menu/index.js +3 -0
  10. package/es/icons/fs/business-menu/topcancel.d.ts +17 -0
  11. package/es/icons/fs/business-menu/topcancel.js +17 -0
  12. package/es/icons/fs/business-menu/toped.d.ts +17 -0
  13. package/es/icons/fs/business-menu/toped.js +17 -0
  14. package/es/icons/fs/business-menu/totop.d.ts +17 -0
  15. package/es/icons/fs/business-menu/totop.js +17 -0
  16. package/es/index.d.ts +3 -0
  17. package/es/index.js +3 -0
  18. package/lib/components/fs/business-menu/Topcancel.d.ts +4 -0
  19. package/lib/components/fs/business-menu/Topcancel.js +20 -0
  20. package/lib/components/fs/business-menu/Toped.d.ts +4 -0
  21. package/lib/components/fs/business-menu/Toped.js +20 -0
  22. package/lib/components/fs/business-menu/Totop.d.ts +4 -0
  23. package/lib/components/fs/business-menu/Totop.js +20 -0
  24. package/lib/components/fs/business-menu/index.d.ts +3 -0
  25. package/lib/components/fs/business-menu/index.js +21 -0
  26. package/lib/icons/fs/business-menu/topcancel.d.ts +17 -0
  27. package/lib/icons/fs/business-menu/topcancel.js +24 -0
  28. package/lib/icons/fs/business-menu/toped.d.ts +17 -0
  29. package/lib/icons/fs/business-menu/toped.js +24 -0
  30. package/lib/icons/fs/business-menu/totop.d.ts +17 -0
  31. package/lib/icons/fs/business-menu/totop.js +24 -0
  32. package/lib/index.d.ts +3 -0
  33. package/lib/index.js +21 -0
  34. package/package.json +1 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,96 @@
1
+ # @firesoon/icons-react
2
+
3
+ 火树 svg 图标库
4
+
5
+ ## Change
6
+
7
+ ### 1.0.0
8
+
9
+ - 更新 svg 图标
10
+
11
+ ### 1.1.0
12
+
13
+ - Fix bug
14
+ - svgOption 为 undefined 时,svg 默认属性丢失
15
+ - 删除 span 默认 font-size=0
16
+
17
+ ### 1.1.1
18
+
19
+ - npm scripts 添加 preversion
20
+ - 使用 Icon.jsx 组件
21
+
22
+ ### 1.1.2
23
+
24
+ - fix Icon.jsx 导入 style 路径错误
25
+
26
+ ### 1.2.0(2020/1/24)
27
+
28
+ - delete: 重复的图标
29
+ - feature: 图标命名修改;添加部分图标;支持多色图标
30
+
31
+ ### 1.2.1
32
+
33
+ - 临时更新: 模块命名添加只有首字母大写
34
+
35
+ ### 1.2.3
36
+
37
+ - fix: style.css 样式打包后缺失(#1)
38
+ - fix: 1.1->1.2 版本命名规则错误, 未向下兼容(旧图标被删除)(#2)
39
+ - fix: spread operator 低版本浏览器不支持(#3)
40
+
41
+ ### 1.2.4
42
+
43
+ - fix: ie10 兼容
44
+
45
+ ### 1.4.0
46
+
47
+ - feature: 增加图标
48
+
49
+ ### 1.4.1
50
+
51
+ - fix: components 缺少入口文件(index.js), 无法展示全部图标
52
+
53
+ ### 1.5.0
54
+
55
+ - feature: 增加切换院区 icon
56
+
57
+ ### 1.16.0
58
+
59
+ - 删除了只首字母大写的 icon 导出(不向下兼容, 但是目前业务中并未使用)
60
+ - 新增了两个图标
61
+
62
+ ### 1.30.0
63
+
64
+ - 新增结算管理部分图标
65
+
66
+ ### 1.40.0
67
+
68
+ - 新增病案部分图标
69
+
70
+ ### 1.41.0
71
+
72
+ - 新增空态相关 icon
73
+
74
+ ### 1.42.0
75
+
76
+ - 新增病案相关 icon
77
+
78
+ ### 1.43.0
79
+
80
+ - 新增系统设置相关 icon
81
+
82
+ ### 1.43.10
83
+
84
+ - 新增数据质量相关 icon
85
+
86
+ ### 1.43.11
87
+
88
+ - 删除多色 wodezhuyuanx,新增单色 wodezhuyuanx
89
+
90
+ ### 1.43.12
91
+
92
+ - wodezhuyuanx 单色图表 bug 修复
93
+
94
+ ### 2.0.0
95
+
96
+ - 兼容旧版本和新增新版本 icon
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { Iprops } from '../../../types';
3
+ declare const _default: (props?: Iprops) => React.JSX.Element;
4
+ export default _default;
@@ -0,0 +1,12 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
2
+ import React from 'react';
3
+ import Icon from "../../../Icon";
4
+ import rootNode from "../../../icons/fs/business-menu/topcancel";
5
+ export default (function () {
6
+ var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
7
+ return /*#__PURE__*/React.createElement(Icon, _extends({}, props, {
8
+ rootNode: rootNode,
9
+ iconName: 'topcancel',
10
+ "icon-type": 'fs/business-menu'
11
+ }));
12
+ });
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { Iprops } from '../../../types';
3
+ declare const _default: (props?: Iprops) => React.JSX.Element;
4
+ export default _default;
@@ -0,0 +1,12 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
2
+ import React from 'react';
3
+ import Icon from "../../../Icon";
4
+ import rootNode from "../../../icons/fs/business-menu/toped";
5
+ export default (function () {
6
+ var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
7
+ return /*#__PURE__*/React.createElement(Icon, _extends({}, props, {
8
+ rootNode: rootNode,
9
+ iconName: 'toped',
10
+ "icon-type": 'fs/business-menu'
11
+ }));
12
+ });
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { Iprops } from '../../../types';
3
+ declare const _default: (props?: Iprops) => React.JSX.Element;
4
+ export default _default;
@@ -0,0 +1,12 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
2
+ import React from 'react';
3
+ import Icon from "../../../Icon";
4
+ import rootNode from "../../../icons/fs/business-menu/totop";
5
+ export default (function () {
6
+ var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
7
+ return /*#__PURE__*/React.createElement(Icon, _extends({}, props, {
8
+ rootNode: rootNode,
9
+ iconName: 'totop',
10
+ "icon-type": 'fs/business-menu'
11
+ }));
12
+ });
@@ -125,8 +125,11 @@ export { default as Temporary } from './Temporary';
125
125
  export { default as TemporaryFill } from './TemporaryFill';
126
126
  export { default as ThirdParty } from './ThirdParty';
127
127
  export { default as ThirdPartyFill } from './ThirdPartyFill';
128
+ export { default as Topcancel } from './Topcancel';
129
+ export { default as Toped } from './Toped';
128
130
  export { default as TopicAnalyse } from './TopicAnalyse';
129
131
  export { default as TopicAnalyseFill } from './TopicAnalyseFill';
132
+ export { default as Totop } from './Totop';
130
133
  export { default as TreeList } from './TreeList';
131
134
  export { default as UserManagement } from './UserManagement';
132
135
  export { default as UserManagementFill } from './UserManagementFill';
@@ -125,8 +125,11 @@ export { default as Temporary } from "./Temporary";
125
125
  export { default as TemporaryFill } from "./TemporaryFill";
126
126
  export { default as ThirdParty } from "./ThirdParty";
127
127
  export { default as ThirdPartyFill } from "./ThirdPartyFill";
128
+ export { default as Topcancel } from "./Topcancel";
129
+ export { default as Toped } from "./Toped";
128
130
  export { default as TopicAnalyse } from "./TopicAnalyse";
129
131
  export { default as TopicAnalyseFill } from "./TopicAnalyseFill";
132
+ export { default as Totop } from "./Totop";
130
133
  export { default as TreeList } from "./TreeList";
131
134
  export { default as UserManagement } from "./UserManagement";
132
135
  export { default as UserManagementFill } from "./UserManagementFill";
@@ -0,0 +1,17 @@
1
+ declare const node: {
2
+ name: string;
3
+ nodeTree: {
4
+ tag: string;
5
+ attrs: {
6
+ viewBox: string;
7
+ };
8
+ children: {
9
+ tag: string;
10
+ attrs: {
11
+ d: string;
12
+ };
13
+ children: never[];
14
+ }[];
15
+ };
16
+ };
17
+ export default node;
@@ -0,0 +1,17 @@
1
+ var node = {
2
+ "name": "topcancel",
3
+ "nodeTree": {
4
+ "tag": "svg",
5
+ "attrs": {
6
+ "viewBox": "0 0 1024 1024"
7
+ },
8
+ "children": [{
9
+ "tag": "path",
10
+ "attrs": {
11
+ "d": "M690.89 435.48l92.75 92.74a7.98 7.98 0 012.33 6.07c.02.24.03.47.03.71v48a8 8 0 01-8 8H669v313a7.97 7.97 0 01-2.25 5.56l-.19.19A7.97 7.97 0 01661 912H361a8 8 0 01-8-8V773.37l64-64V848h188V535a7.97 7.97 0 012.07-5.37l.18-.2.19-.18A7.97 7.97 0 01613 527h78.9l-46.26-46.27 45.25-45.25zM517.06 261.64l97.46 97.47-45.25 45.25-57.78-57.77-180.4 180.4L409 527a8 8 0 018 8v21.63l-64 64V591H244a8 8 0 01-8-8v-48c0-2.22.9-4.23 2.37-5.68a8.11 8.11 0 01.75-.87L470.87 296.7c.27-.4.58-.77.93-1.11l33.94-33.95a8 8 0 0111.32 0zm178.8-101.76a8 8 0 018 8v48a8 8 0 01-8 8h-368a8 8 0 01-8-8v-48a8 8 0 018-8h368zM751.3199999999999 295.73999999999995l33.94 33.94q5.65 5.66 0 11.32L284.63 841.63q-5.66 5.66-11.32 0l-33.94-33.94q-5.66-5.66 0-11.32L740 295.74q5.66-5.65 11.32 0z"
12
+ },
13
+ "children": []
14
+ }]
15
+ }
16
+ };
17
+ export default node;
@@ -0,0 +1,17 @@
1
+ declare const node: {
2
+ name: string;
3
+ nodeTree: {
4
+ tag: string;
5
+ attrs: {
6
+ viewBox: string;
7
+ };
8
+ children: {
9
+ tag: string;
10
+ attrs: {
11
+ d: string;
12
+ };
13
+ children: never[];
14
+ }[];
15
+ };
16
+ };
17
+ export default node;
@@ -0,0 +1,17 @@
1
+ var node = {
2
+ "name": "toped",
3
+ "nodeTree": {
4
+ "tag": "svg",
5
+ "attrs": {
6
+ "viewBox": "0 0 1024 1024"
7
+ },
8
+ "children": [{
9
+ "tag": "path",
10
+ "attrs": {
11
+ "d": "M812 112c55.23 0 100 44.77 100 100v700L526.38 526.38h31.94c28.56 0 43.26-15.12 43.26-45.36V200.04h45.36V157.2H497.42v42.84h59.64V470.1c0 11.34-4.62 17.22-13.86 17.22-12.6 0-25.62-.84-39.9-2.52l5.92 24.42L112 112h700zm-7.56 321.98l-29.4 28.14c31.08 25.2 55.02 48.72 72.24 70.14l31.92-32.34c-20.16-21.84-45.36-44.1-74.76-65.94zm-19.32-142.8h-43.26v73.92c-1.68 33.18-10.5 60.06-26.46 80.64-15.54 18.9-45.78 34.86-90.72 47.88l23.1 37.38c47.04-13.44 81.06-32.76 102.06-57.96 21.42-26.88 33.18-62.58 35.28-107.94v-73.92zm89.04-133.98H658.28v42.84h83.58a733.29 733.29 0 01-4.2 31.92h-71.4v205.38h42.84V272.28h112.14v165.06h42.84V231.96h-81.9c1.68-10.08 2.94-21 4.2-31.92h87.78V157.2z"
12
+ },
13
+ "children": []
14
+ }]
15
+ }
16
+ };
17
+ export default node;
@@ -0,0 +1,17 @@
1
+ declare const node: {
2
+ name: string;
3
+ nodeTree: {
4
+ tag: string;
5
+ attrs: {
6
+ viewBox: string;
7
+ };
8
+ children: {
9
+ tag: string;
10
+ attrs: {
11
+ d: string;
12
+ };
13
+ children: never[];
14
+ }[];
15
+ };
16
+ };
17
+ export default node;
@@ -0,0 +1,17 @@
1
+ var node = {
2
+ "name": "totop",
3
+ "nodeTree": {
4
+ "tag": "svg",
5
+ "attrs": {
6
+ "viewBox": "0 0 1024 1024"
7
+ },
8
+ "children": [{
9
+ "tag": "path",
10
+ "attrs": {
11
+ "d": "M695.86 223.88h-368a8 8 0 01-8-8v-48a8 8 0 018-8h368a8 8 0 018 8v48a8 8 0 01-8 8zm-29.3 685.87A7.97 7.97 0 01661 912H361a8 8 0 01-8-8V591H244a8 8 0 01-8-8v-48c0-2.22.9-4.23 2.37-5.68a8.11 8.11 0 01.75-.87L470.87 296.7c.27-.4.58-.77.93-1.11l33.94-33.95a8 8 0 0111.32 0l266.58 266.58a7.98 7.98 0 012.33 6.07c.02.24.03.47.03.71v48a8 8 0 01-8 8H669v313a7.97 7.97 0 01-2.25 5.56l-.19.19zM605 535a7.97 7.97 0 012.07-5.37l.18-.2.19-.18A7.97 7.97 0 01613 527h78.9L511.5 346.59l-180.42 180.4L409 527a8 8 0 018 8v313h188V535z"
12
+ },
13
+ "children": []
14
+ }]
15
+ }
16
+ };
17
+ export default node;
package/es/index.d.ts CHANGED
@@ -125,8 +125,11 @@ export { default as Temporary } from './components/fs/business-menu/Temporary';
125
125
  export { default as TemporaryFill } from './components/fs/business-menu/TemporaryFill';
126
126
  export { default as ThirdParty } from './components/fs/business-menu/ThirdParty';
127
127
  export { default as ThirdPartyFill } from './components/fs/business-menu/ThirdPartyFill';
128
+ export { default as Topcancel } from './components/fs/business-menu/Topcancel';
129
+ export { default as Toped } from './components/fs/business-menu/Toped';
128
130
  export { default as TopicAnalyse } from './components/fs/business-menu/TopicAnalyse';
129
131
  export { default as TopicAnalyseFill } from './components/fs/business-menu/TopicAnalyseFill';
132
+ export { default as Totop } from './components/fs/business-menu/Totop';
130
133
  export { default as TreeList } from './components/fs/business-menu/TreeList';
131
134
  export { default as UserManagement } from './components/fs/business-menu/UserManagement';
132
135
  export { default as UserManagementFill } from './components/fs/business-menu/UserManagementFill';
package/es/index.js CHANGED
@@ -125,8 +125,11 @@ export { default as Temporary } from "./components/fs/business-menu/Temporary";
125
125
  export { default as TemporaryFill } from "./components/fs/business-menu/TemporaryFill";
126
126
  export { default as ThirdParty } from "./components/fs/business-menu/ThirdParty";
127
127
  export { default as ThirdPartyFill } from "./components/fs/business-menu/ThirdPartyFill";
128
+ export { default as Topcancel } from "./components/fs/business-menu/Topcancel";
129
+ export { default as Toped } from "./components/fs/business-menu/Toped";
128
130
  export { default as TopicAnalyse } from "./components/fs/business-menu/TopicAnalyse";
129
131
  export { default as TopicAnalyseFill } from "./components/fs/business-menu/TopicAnalyseFill";
132
+ export { default as Totop } from "./components/fs/business-menu/Totop";
130
133
  export { default as TreeList } from "./components/fs/business-menu/TreeList";
131
134
  export { default as UserManagement } from "./components/fs/business-menu/UserManagement";
132
135
  export { default as UserManagementFill } from "./components/fs/business-menu/UserManagementFill";
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { Iprops } from '../../../types';
3
+ declare const _default: (props?: Iprops) => React.JSX.Element;
4
+ export default _default;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _Icon = _interopRequireDefault(require("../../../Icon"));
9
+ var _topcancel = _interopRequireDefault(require("../../../icons/fs/business-menu/topcancel"));
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
12
+ var _default = function _default() {
13
+ var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
14
+ return /*#__PURE__*/_react.default.createElement(_Icon.default, _extends({}, props, {
15
+ rootNode: _topcancel.default,
16
+ iconName: 'topcancel',
17
+ "icon-type": 'fs/business-menu'
18
+ }));
19
+ };
20
+ exports.default = _default;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { Iprops } from '../../../types';
3
+ declare const _default: (props?: Iprops) => React.JSX.Element;
4
+ export default _default;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _Icon = _interopRequireDefault(require("../../../Icon"));
9
+ var _toped = _interopRequireDefault(require("../../../icons/fs/business-menu/toped"));
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
12
+ var _default = function _default() {
13
+ var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
14
+ return /*#__PURE__*/_react.default.createElement(_Icon.default, _extends({}, props, {
15
+ rootNode: _toped.default,
16
+ iconName: 'toped',
17
+ "icon-type": 'fs/business-menu'
18
+ }));
19
+ };
20
+ exports.default = _default;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { Iprops } from '../../../types';
3
+ declare const _default: (props?: Iprops) => React.JSX.Element;
4
+ export default _default;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _Icon = _interopRequireDefault(require("../../../Icon"));
9
+ var _totop = _interopRequireDefault(require("../../../icons/fs/business-menu/totop"));
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
12
+ var _default = function _default() {
13
+ var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
14
+ return /*#__PURE__*/_react.default.createElement(_Icon.default, _extends({}, props, {
15
+ rootNode: _totop.default,
16
+ iconName: 'totop',
17
+ "icon-type": 'fs/business-menu'
18
+ }));
19
+ };
20
+ exports.default = _default;
@@ -125,8 +125,11 @@ export { default as Temporary } from './Temporary';
125
125
  export { default as TemporaryFill } from './TemporaryFill';
126
126
  export { default as ThirdParty } from './ThirdParty';
127
127
  export { default as ThirdPartyFill } from './ThirdPartyFill';
128
+ export { default as Topcancel } from './Topcancel';
129
+ export { default as Toped } from './Toped';
128
130
  export { default as TopicAnalyse } from './TopicAnalyse';
129
131
  export { default as TopicAnalyseFill } from './TopicAnalyseFill';
132
+ export { default as Totop } from './Totop';
130
133
  export { default as TreeList } from './TreeList';
131
134
  export { default as UserManagement } from './UserManagement';
132
135
  export { default as UserManagementFill } from './UserManagementFill';
@@ -765,6 +765,18 @@ Object.defineProperty(exports, "ThirdPartyFill", {
765
765
  return _ThirdPartyFill.default;
766
766
  }
767
767
  });
768
+ Object.defineProperty(exports, "Topcancel", {
769
+ enumerable: true,
770
+ get: function get() {
771
+ return _Topcancel.default;
772
+ }
773
+ });
774
+ Object.defineProperty(exports, "Toped", {
775
+ enumerable: true,
776
+ get: function get() {
777
+ return _Toped.default;
778
+ }
779
+ });
768
780
  Object.defineProperty(exports, "TopicAnalyse", {
769
781
  enumerable: true,
770
782
  get: function get() {
@@ -777,6 +789,12 @@ Object.defineProperty(exports, "TopicAnalyseFill", {
777
789
  return _TopicAnalyseFill.default;
778
790
  }
779
791
  });
792
+ Object.defineProperty(exports, "Totop", {
793
+ enumerable: true,
794
+ get: function get() {
795
+ return _Totop.default;
796
+ }
797
+ });
780
798
  Object.defineProperty(exports, "TreeList", {
781
799
  enumerable: true,
782
800
  get: function get() {
@@ -934,8 +952,11 @@ var _Temporary = _interopRequireDefault(require("./Temporary"));
934
952
  var _TemporaryFill = _interopRequireDefault(require("./TemporaryFill"));
935
953
  var _ThirdParty = _interopRequireDefault(require("./ThirdParty"));
936
954
  var _ThirdPartyFill = _interopRequireDefault(require("./ThirdPartyFill"));
955
+ var _Topcancel = _interopRequireDefault(require("./Topcancel"));
956
+ var _Toped = _interopRequireDefault(require("./Toped"));
937
957
  var _TopicAnalyse = _interopRequireDefault(require("./TopicAnalyse"));
938
958
  var _TopicAnalyseFill = _interopRequireDefault(require("./TopicAnalyseFill"));
959
+ var _Totop = _interopRequireDefault(require("./Totop"));
939
960
  var _TreeList = _interopRequireDefault(require("./TreeList"));
940
961
  var _UserManagement = _interopRequireDefault(require("./UserManagement"));
941
962
  var _UserManagementFill = _interopRequireDefault(require("./UserManagementFill"));
@@ -0,0 +1,17 @@
1
+ declare const node: {
2
+ name: string;
3
+ nodeTree: {
4
+ tag: string;
5
+ attrs: {
6
+ viewBox: string;
7
+ };
8
+ children: {
9
+ tag: string;
10
+ attrs: {
11
+ d: string;
12
+ };
13
+ children: never[];
14
+ }[];
15
+ };
16
+ };
17
+ export default node;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var node = {
8
+ "name": "topcancel",
9
+ "nodeTree": {
10
+ "tag": "svg",
11
+ "attrs": {
12
+ "viewBox": "0 0 1024 1024"
13
+ },
14
+ "children": [{
15
+ "tag": "path",
16
+ "attrs": {
17
+ "d": "M690.89 435.48l92.75 92.74a7.98 7.98 0 012.33 6.07c.02.24.03.47.03.71v48a8 8 0 01-8 8H669v313a7.97 7.97 0 01-2.25 5.56l-.19.19A7.97 7.97 0 01661 912H361a8 8 0 01-8-8V773.37l64-64V848h188V535a7.97 7.97 0 012.07-5.37l.18-.2.19-.18A7.97 7.97 0 01613 527h78.9l-46.26-46.27 45.25-45.25zM517.06 261.64l97.46 97.47-45.25 45.25-57.78-57.77-180.4 180.4L409 527a8 8 0 018 8v21.63l-64 64V591H244a8 8 0 01-8-8v-48c0-2.22.9-4.23 2.37-5.68a8.11 8.11 0 01.75-.87L470.87 296.7c.27-.4.58-.77.93-1.11l33.94-33.95a8 8 0 0111.32 0zm178.8-101.76a8 8 0 018 8v48a8 8 0 01-8 8h-368a8 8 0 01-8-8v-48a8 8 0 018-8h368zM751.3199999999999 295.73999999999995l33.94 33.94q5.65 5.66 0 11.32L284.63 841.63q-5.66 5.66-11.32 0l-33.94-33.94q-5.66-5.66 0-11.32L740 295.74q5.66-5.65 11.32 0z"
18
+ },
19
+ "children": []
20
+ }]
21
+ }
22
+ };
23
+ var _default = node;
24
+ exports.default = _default;
@@ -0,0 +1,17 @@
1
+ declare const node: {
2
+ name: string;
3
+ nodeTree: {
4
+ tag: string;
5
+ attrs: {
6
+ viewBox: string;
7
+ };
8
+ children: {
9
+ tag: string;
10
+ attrs: {
11
+ d: string;
12
+ };
13
+ children: never[];
14
+ }[];
15
+ };
16
+ };
17
+ export default node;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var node = {
8
+ "name": "toped",
9
+ "nodeTree": {
10
+ "tag": "svg",
11
+ "attrs": {
12
+ "viewBox": "0 0 1024 1024"
13
+ },
14
+ "children": [{
15
+ "tag": "path",
16
+ "attrs": {
17
+ "d": "M812 112c55.23 0 100 44.77 100 100v700L526.38 526.38h31.94c28.56 0 43.26-15.12 43.26-45.36V200.04h45.36V157.2H497.42v42.84h59.64V470.1c0 11.34-4.62 17.22-13.86 17.22-12.6 0-25.62-.84-39.9-2.52l5.92 24.42L112 112h700zm-7.56 321.98l-29.4 28.14c31.08 25.2 55.02 48.72 72.24 70.14l31.92-32.34c-20.16-21.84-45.36-44.1-74.76-65.94zm-19.32-142.8h-43.26v73.92c-1.68 33.18-10.5 60.06-26.46 80.64-15.54 18.9-45.78 34.86-90.72 47.88l23.1 37.38c47.04-13.44 81.06-32.76 102.06-57.96 21.42-26.88 33.18-62.58 35.28-107.94v-73.92zm89.04-133.98H658.28v42.84h83.58a733.29 733.29 0 01-4.2 31.92h-71.4v205.38h42.84V272.28h112.14v165.06h42.84V231.96h-81.9c1.68-10.08 2.94-21 4.2-31.92h87.78V157.2z"
18
+ },
19
+ "children": []
20
+ }]
21
+ }
22
+ };
23
+ var _default = node;
24
+ exports.default = _default;
@@ -0,0 +1,17 @@
1
+ declare const node: {
2
+ name: string;
3
+ nodeTree: {
4
+ tag: string;
5
+ attrs: {
6
+ viewBox: string;
7
+ };
8
+ children: {
9
+ tag: string;
10
+ attrs: {
11
+ d: string;
12
+ };
13
+ children: never[];
14
+ }[];
15
+ };
16
+ };
17
+ export default node;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var node = {
8
+ "name": "totop",
9
+ "nodeTree": {
10
+ "tag": "svg",
11
+ "attrs": {
12
+ "viewBox": "0 0 1024 1024"
13
+ },
14
+ "children": [{
15
+ "tag": "path",
16
+ "attrs": {
17
+ "d": "M695.86 223.88h-368a8 8 0 01-8-8v-48a8 8 0 018-8h368a8 8 0 018 8v48a8 8 0 01-8 8zm-29.3 685.87A7.97 7.97 0 01661 912H361a8 8 0 01-8-8V591H244a8 8 0 01-8-8v-48c0-2.22.9-4.23 2.37-5.68a8.11 8.11 0 01.75-.87L470.87 296.7c.27-.4.58-.77.93-1.11l33.94-33.95a8 8 0 0111.32 0l266.58 266.58a7.98 7.98 0 012.33 6.07c.02.24.03.47.03.71v48a8 8 0 01-8 8H669v313a7.97 7.97 0 01-2.25 5.56l-.19.19zM605 535a7.97 7.97 0 012.07-5.37l.18-.2.19-.18A7.97 7.97 0 01613 527h78.9L511.5 346.59l-180.42 180.4L409 527a8 8 0 018 8v313h188V535z"
18
+ },
19
+ "children": []
20
+ }]
21
+ }
22
+ };
23
+ var _default = node;
24
+ exports.default = _default;
package/lib/index.d.ts CHANGED
@@ -125,8 +125,11 @@ export { default as Temporary } from './components/fs/business-menu/Temporary';
125
125
  export { default as TemporaryFill } from './components/fs/business-menu/TemporaryFill';
126
126
  export { default as ThirdParty } from './components/fs/business-menu/ThirdParty';
127
127
  export { default as ThirdPartyFill } from './components/fs/business-menu/ThirdPartyFill';
128
+ export { default as Topcancel } from './components/fs/business-menu/Topcancel';
129
+ export { default as Toped } from './components/fs/business-menu/Toped';
128
130
  export { default as TopicAnalyse } from './components/fs/business-menu/TopicAnalyse';
129
131
  export { default as TopicAnalyseFill } from './components/fs/business-menu/TopicAnalyseFill';
132
+ export { default as Totop } from './components/fs/business-menu/Totop';
130
133
  export { default as TreeList } from './components/fs/business-menu/TreeList';
131
134
  export { default as UserManagement } from './components/fs/business-menu/UserManagement';
132
135
  export { default as UserManagementFill } from './components/fs/business-menu/UserManagementFill';
package/lib/index.js CHANGED
@@ -2805,6 +2805,18 @@ Object.defineProperty(exports, "Top", {
2805
2805
  return _Top.default;
2806
2806
  }
2807
2807
  });
2808
+ Object.defineProperty(exports, "Topcancel", {
2809
+ enumerable: true,
2810
+ get: function get() {
2811
+ return _Topcancel.default;
2812
+ }
2813
+ });
2814
+ Object.defineProperty(exports, "Toped", {
2815
+ enumerable: true,
2816
+ get: function get() {
2817
+ return _Toped.default;
2818
+ }
2819
+ });
2808
2820
  Object.defineProperty(exports, "TopicAnalyse", {
2809
2821
  enumerable: true,
2810
2822
  get: function get() {
@@ -2817,6 +2829,12 @@ Object.defineProperty(exports, "TopicAnalyseFill", {
2817
2829
  return _TopicAnalyseFill.default;
2818
2830
  }
2819
2831
  });
2832
+ Object.defineProperty(exports, "Totop", {
2833
+ enumerable: true,
2834
+ get: function get() {
2835
+ return _Totop.default;
2836
+ }
2837
+ });
2820
2838
  Object.defineProperty(exports, "TreeList", {
2821
2839
  enumerable: true,
2822
2840
  get: function get() {
@@ -3202,8 +3220,11 @@ var _Temporary = _interopRequireDefault(require("./components/fs/business-menu/T
3202
3220
  var _TemporaryFill = _interopRequireDefault(require("./components/fs/business-menu/TemporaryFill"));
3203
3221
  var _ThirdParty = _interopRequireDefault(require("./components/fs/business-menu/ThirdParty"));
3204
3222
  var _ThirdPartyFill = _interopRequireDefault(require("./components/fs/business-menu/ThirdPartyFill"));
3223
+ var _Topcancel = _interopRequireDefault(require("./components/fs/business-menu/Topcancel"));
3224
+ var _Toped = _interopRequireDefault(require("./components/fs/business-menu/Toped"));
3205
3225
  var _TopicAnalyse = _interopRequireDefault(require("./components/fs/business-menu/TopicAnalyse"));
3206
3226
  var _TopicAnalyseFill = _interopRequireDefault(require("./components/fs/business-menu/TopicAnalyseFill"));
3227
+ var _Totop = _interopRequireDefault(require("./components/fs/business-menu/Totop"));
3207
3228
  var _TreeList = _interopRequireDefault(require("./components/fs/business-menu/TreeList"));
3208
3229
  var _UserManagement = _interopRequireDefault(require("./components/fs/business-menu/UserManagement"));
3209
3230
  var _UserManagementFill = _interopRequireDefault(require("./components/fs/business-menu/UserManagementFill"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firesoon/icons-react",
3
- "version": "3.0.12",
3
+ "version": "3.0.13",
4
4
  "description": "火树图标库",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",