@firesoon/icons-react 2.1.12 → 2.1.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.
- package/dist/esm/Icon.d.ts +0 -1
- package/dist/esm/components/business-menu/ReportLibrary.d.ts +3 -0
- package/dist/esm/components/business-menu/ReportLibrary.js +13 -0
- package/dist/esm/components/business-menu/ReportLibraryFill.d.ts +3 -0
- package/dist/esm/components/business-menu/ReportLibraryFill.js +13 -0
- package/dist/esm/components/business-menu/index.d.ts +2 -0
- package/dist/esm/components/business-menu/index.js +2 -0
- package/dist/esm/icons/business-menu/report-library-fill.d.ts +18 -0
- package/dist/esm/icons/business-menu/report-library-fill.js +18 -0
- package/dist/esm/icons/business-menu/report-library.d.ts +18 -0
- package/dist/esm/icons/business-menu/report-library.js +18 -0
- package/dist/esm/index.d.ts +25 -23
- package/dist/esm/index.js +25 -23
- package/package.json +1 -1
- package/CHANGELOG.md +0 -96
package/dist/esm/Icon.d.ts
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import Icon from "../../Icon";
|
|
5
|
+
import rootNode from "../../icons/business-menu/report-library";
|
|
6
|
+
export default (function () {
|
|
7
|
+
var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
8
|
+
return /*#__PURE__*/React.createElement(Icon, _extends({}, props, {
|
|
9
|
+
rootNode: rootNode,
|
|
10
|
+
iconName: 'report-library',
|
|
11
|
+
iconType: 'business-menu'
|
|
12
|
+
}));
|
|
13
|
+
});
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import Icon from "../../Icon";
|
|
5
|
+
import rootNode from "../../icons/business-menu/report-library-fill";
|
|
6
|
+
export default (function () {
|
|
7
|
+
var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
8
|
+
return /*#__PURE__*/React.createElement(Icon, _extends({}, props, {
|
|
9
|
+
rootNode: rootNode,
|
|
10
|
+
iconName: 'report-library-fill',
|
|
11
|
+
iconType: 'business-menu'
|
|
12
|
+
}));
|
|
13
|
+
});
|
|
@@ -65,6 +65,8 @@ export { default as OverspendSurplus } from './OverspendSurplus';
|
|
|
65
65
|
export { default as PloblemCheck } from './PloblemCheck';
|
|
66
66
|
export { default as PloblemCheckFill } from './PloblemCheckFill';
|
|
67
67
|
export { default as Pole } from './Pole';
|
|
68
|
+
export { default as ReportLibrary } from './ReportLibrary';
|
|
69
|
+
export { default as ReportLibraryFill } from './ReportLibraryFill';
|
|
68
70
|
export { default as ReportManagement } from './ReportManagement';
|
|
69
71
|
export { default as ReportManagementFill } from './ReportManagementFill';
|
|
70
72
|
export { default as ResultAnalyse } from './ResultAnalyse';
|
|
@@ -65,6 +65,8 @@ export { default as OverspendSurplus } from "./OverspendSurplus";
|
|
|
65
65
|
export { default as PloblemCheck } from "./PloblemCheck";
|
|
66
66
|
export { default as PloblemCheckFill } from "./PloblemCheckFill";
|
|
67
67
|
export { default as Pole } from "./Pole";
|
|
68
|
+
export { default as ReportLibrary } from "./ReportLibrary";
|
|
69
|
+
export { default as ReportLibraryFill } from "./ReportLibraryFill";
|
|
68
70
|
export { default as ReportManagement } from "./ReportManagement";
|
|
69
71
|
export { default as ReportManagementFill } from "./ReportManagementFill";
|
|
70
72
|
export { default as ResultAnalyse } from "./ResultAnalyse";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare const node: {
|
|
2
|
+
name: string;
|
|
3
|
+
nodeTree: {
|
|
4
|
+
tag: string;
|
|
5
|
+
attrs: {
|
|
6
|
+
viewBox: string;
|
|
7
|
+
};
|
|
8
|
+
children: {
|
|
9
|
+
tag: string;
|
|
10
|
+
defaultColor: string;
|
|
11
|
+
attrs: {
|
|
12
|
+
d: string;
|
|
13
|
+
};
|
|
14
|
+
children: never[];
|
|
15
|
+
}[];
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export default node;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "report-library-fill",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"defaultColor": "#3367D6",
|
|
11
|
+
"attrs": {
|
|
12
|
+
"d": "M816 768v112a32 32 0 01-31.47 32H144a32 32 0 01-32-31.47V144a32 32 0 0131.47-32h437.69a32 32 0 0119 6.25l.45.34 202.84 155.23A32 32 0 01816 298.74V448h64a32 32 0 0132 32v256a32 32 0 01-32 32h-64zm-312-64H280a8 8 0 00-8 8v48a8 8 0 008 8h224a8 8 0 008-8v-48a8 8 0 00-8-8zm344-192H656v192h192V512zm-344 64H280a8 8 0 00-8 8v48a8 8 0 008 8h224a8 8 0 008-8v-48a8 8 0 00-8-8zm0-128H280a8 8 0 00-8 8v48a8 8 0 008 8h224a8 8 0 008-8v-48a8 8 0 00-8-8zm144-128H280a8 8 0 00-8 8v48a8 8 0 008 8h368a8 8 0 008-8v-48a8 8 0 00-8-8z"
|
|
13
|
+
},
|
|
14
|
+
"children": []
|
|
15
|
+
}]
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
export default node;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare const node: {
|
|
2
|
+
name: string;
|
|
3
|
+
nodeTree: {
|
|
4
|
+
tag: string;
|
|
5
|
+
attrs: {
|
|
6
|
+
viewBox: string;
|
|
7
|
+
};
|
|
8
|
+
children: {
|
|
9
|
+
tag: string;
|
|
10
|
+
defaultColor: string;
|
|
11
|
+
attrs: {
|
|
12
|
+
d: string;
|
|
13
|
+
};
|
|
14
|
+
children: never[];
|
|
15
|
+
}[];
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export default node;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "report-library",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"defaultColor": "#333",
|
|
11
|
+
"attrs": {
|
|
12
|
+
"d": "M816 880a32 32 0 01-31.47 32H144a32 32 0 01-32-31.47V144a32 32 0 0131.47-32h437.69a32 32 0 0119 6.25l.45.34 202.84 155.23A32 32 0 01816 298.74V448h64a32 32 0 0132 32v256a32 32 0 01-32 32h-64v112zM504 704a8 8 0 018 8v48a8 8 0 01-8 8H280a8 8 0 01-8-8v-48a8 8 0 018-8h224zm344-192H656v192h192V512zm-344 64a8 8 0 018 8v48a8 8 0 01-8 8H280a8 8 0 01-8-8v-48a8 8 0 018-8h224zm0-128a8 8 0 018 8v48a8 8 0 01-8 8H280a8 8 0 01-8-8v-48a8 8 0 018-8h224zm144-128a8 8 0 018 8v48a8 8 0 01-8 8H280a8 8 0 01-8-8v-48a8 8 0 018-8h368zm-24 448a32 32 0 01-32-32V480a32 32 0 0132-32h128V316L566.2 176H176v672h576v-80H624z"
|
|
13
|
+
},
|
|
14
|
+
"children": []
|
|
15
|
+
}]
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
export default node;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -65,6 +65,8 @@ export { default as OverspendSurplus } from './components/business-menu/Overspen
|
|
|
65
65
|
export { default as PloblemCheck } from './components/business-menu/PloblemCheck';
|
|
66
66
|
export { default as PloblemCheckFill } from './components/business-menu/PloblemCheckFill';
|
|
67
67
|
export { default as Pole } from './components/business-menu/Pole';
|
|
68
|
+
export { default as ReportLibrary } from './components/business-menu/ReportLibrary';
|
|
69
|
+
export { default as ReportLibraryFill } from './components/business-menu/ReportLibraryFill';
|
|
68
70
|
export { default as ReportManagement } from './components/business-menu/ReportManagement';
|
|
69
71
|
export { default as ReportManagementFill } from './components/business-menu/ReportManagementFill';
|
|
70
72
|
export { default as ResultAnalyse } from './components/business-menu/ResultAnalyse';
|
|
@@ -183,29 +185,6 @@ export { default as Unfold } from './components/currency/Unfold';
|
|
|
183
185
|
export { default as UnfoldFill } from './components/currency/UnfoldFill';
|
|
184
186
|
export { default as Visible } from './components/currency/Visible';
|
|
185
187
|
export { default as VisibleFill } from './components/currency/VisibleFill';
|
|
186
|
-
export { default as Bingzuwentifankui } from './components/old-twocolor/Bingzuwentifankui';
|
|
187
|
-
export { default as BingzuwentifankuiNew } from './components/old-twocolor/BingzuwentifankuiNew';
|
|
188
|
-
export { default as CasesDoubt } from './components/old-twocolor/CasesDoubt';
|
|
189
|
-
export { default as Empty404 } from './components/old-twocolor/Empty404';
|
|
190
|
-
export { default as EmptyNetwork } from './components/old-twocolor/EmptyNetwork';
|
|
191
|
-
export { default as EmptyNormal } from './components/old-twocolor/EmptyNormal';
|
|
192
|
-
export { default as EmptyPermission } from './components/old-twocolor/EmptyPermission';
|
|
193
|
-
export { default as EmptyTable } from './components/old-twocolor/EmptyTable';
|
|
194
|
-
export { default as FailCircle } from './components/old-twocolor/FailCircle';
|
|
195
|
-
export { default as Html404 } from './components/old-twocolor/Html404';
|
|
196
|
-
export { default as Huanzhejibenxinxi } from './components/old-twocolor/Huanzhejibenxinxi';
|
|
197
|
-
export { default as LoadingCircle } from './components/old-twocolor/LoadingCircle';
|
|
198
|
-
export { default as MasterMedicalOrder } from './components/old-twocolor/MasterMedicalOrder';
|
|
199
|
-
export { default as MissFill } from './components/old-twocolor/MissFill';
|
|
200
|
-
export { default as MonitorTrend } from './components/old-twocolor/MonitorTrend';
|
|
201
|
-
export { default as NoNetwork } from './components/old-twocolor/NoNetwork';
|
|
202
|
-
export { default as NoPermissions } from './components/old-twocolor/NoPermissions';
|
|
203
|
-
export { default as ReHospitalizedTag } from './components/old-twocolor/ReHospitalizedTag';
|
|
204
|
-
export { default as Ruotishi } from './components/old-twocolor/Ruotishi';
|
|
205
|
-
export { default as ServerError } from './components/old-twocolor/ServerError';
|
|
206
|
-
export { default as SuccessCircle } from './components/old-twocolor/SuccessCircle';
|
|
207
|
-
export { default as Tishi } from './components/old-twocolor/Tishi';
|
|
208
|
-
export { default as WaitCircle } from './components/old-twocolor/WaitCircle';
|
|
209
188
|
export { default as Account } from './components/old-outlined/Account';
|
|
210
189
|
export { default as AccountFill } from './components/old-outlined/AccountFill';
|
|
211
190
|
export { default as AcountManage } from './components/old-outlined/AcountManage';
|
|
@@ -399,6 +378,29 @@ export { default as Zhuantifenxi } from './components/old-outlined/Zhuantifenxi'
|
|
|
399
378
|
export { default as ZhuantifenxiFill } from './components/old-outlined/ZhuantifenxiFill';
|
|
400
379
|
export { default as Zhutizhibiao } from './components/old-outlined/Zhutizhibiao';
|
|
401
380
|
export { default as Zygl } from './components/old-outlined/Zygl';
|
|
381
|
+
export { default as Bingzuwentifankui } from './components/old-twocolor/Bingzuwentifankui';
|
|
382
|
+
export { default as BingzuwentifankuiNew } from './components/old-twocolor/BingzuwentifankuiNew';
|
|
383
|
+
export { default as CasesDoubt } from './components/old-twocolor/CasesDoubt';
|
|
384
|
+
export { default as Empty404 } from './components/old-twocolor/Empty404';
|
|
385
|
+
export { default as EmptyNetwork } from './components/old-twocolor/EmptyNetwork';
|
|
386
|
+
export { default as EmptyNormal } from './components/old-twocolor/EmptyNormal';
|
|
387
|
+
export { default as EmptyPermission } from './components/old-twocolor/EmptyPermission';
|
|
388
|
+
export { default as EmptyTable } from './components/old-twocolor/EmptyTable';
|
|
389
|
+
export { default as FailCircle } from './components/old-twocolor/FailCircle';
|
|
390
|
+
export { default as Html404 } from './components/old-twocolor/Html404';
|
|
391
|
+
export { default as Huanzhejibenxinxi } from './components/old-twocolor/Huanzhejibenxinxi';
|
|
392
|
+
export { default as LoadingCircle } from './components/old-twocolor/LoadingCircle';
|
|
393
|
+
export { default as MasterMedicalOrder } from './components/old-twocolor/MasterMedicalOrder';
|
|
394
|
+
export { default as MissFill } from './components/old-twocolor/MissFill';
|
|
395
|
+
export { default as MonitorTrend } from './components/old-twocolor/MonitorTrend';
|
|
396
|
+
export { default as NoNetwork } from './components/old-twocolor/NoNetwork';
|
|
397
|
+
export { default as NoPermissions } from './components/old-twocolor/NoPermissions';
|
|
398
|
+
export { default as ReHospitalizedTag } from './components/old-twocolor/ReHospitalizedTag';
|
|
399
|
+
export { default as Ruotishi } from './components/old-twocolor/Ruotishi';
|
|
400
|
+
export { default as ServerError } from './components/old-twocolor/ServerError';
|
|
401
|
+
export { default as SuccessCircle } from './components/old-twocolor/SuccessCircle';
|
|
402
|
+
export { default as Tishi } from './components/old-twocolor/Tishi';
|
|
403
|
+
export { default as WaitCircle } from './components/old-twocolor/WaitCircle';
|
|
402
404
|
export { default as Await } from './components/suggestion/Await';
|
|
403
405
|
export { default as CostReturn } from './components/suggestion/CostReturn';
|
|
404
406
|
export { default as CostViolate } from './components/suggestion/CostViolate';
|
package/dist/esm/index.js
CHANGED
|
@@ -65,6 +65,8 @@ export { default as OverspendSurplus } from "./components/business-menu/Overspen
|
|
|
65
65
|
export { default as PloblemCheck } from "./components/business-menu/PloblemCheck";
|
|
66
66
|
export { default as PloblemCheckFill } from "./components/business-menu/PloblemCheckFill";
|
|
67
67
|
export { default as Pole } from "./components/business-menu/Pole";
|
|
68
|
+
export { default as ReportLibrary } from "./components/business-menu/ReportLibrary";
|
|
69
|
+
export { default as ReportLibraryFill } from "./components/business-menu/ReportLibraryFill";
|
|
68
70
|
export { default as ReportManagement } from "./components/business-menu/ReportManagement";
|
|
69
71
|
export { default as ReportManagementFill } from "./components/business-menu/ReportManagementFill";
|
|
70
72
|
export { default as ResultAnalyse } from "./components/business-menu/ResultAnalyse";
|
|
@@ -183,29 +185,6 @@ export { default as Unfold } from "./components/currency/Unfold";
|
|
|
183
185
|
export { default as UnfoldFill } from "./components/currency/UnfoldFill";
|
|
184
186
|
export { default as Visible } from "./components/currency/Visible";
|
|
185
187
|
export { default as VisibleFill } from "./components/currency/VisibleFill";
|
|
186
|
-
export { default as Bingzuwentifankui } from "./components/old-twocolor/Bingzuwentifankui";
|
|
187
|
-
export { default as BingzuwentifankuiNew } from "./components/old-twocolor/BingzuwentifankuiNew";
|
|
188
|
-
export { default as CasesDoubt } from "./components/old-twocolor/CasesDoubt";
|
|
189
|
-
export { default as Empty404 } from "./components/old-twocolor/Empty404";
|
|
190
|
-
export { default as EmptyNetwork } from "./components/old-twocolor/EmptyNetwork";
|
|
191
|
-
export { default as EmptyNormal } from "./components/old-twocolor/EmptyNormal";
|
|
192
|
-
export { default as EmptyPermission } from "./components/old-twocolor/EmptyPermission";
|
|
193
|
-
export { default as EmptyTable } from "./components/old-twocolor/EmptyTable";
|
|
194
|
-
export { default as FailCircle } from "./components/old-twocolor/FailCircle";
|
|
195
|
-
export { default as Html404 } from "./components/old-twocolor/Html404";
|
|
196
|
-
export { default as Huanzhejibenxinxi } from "./components/old-twocolor/Huanzhejibenxinxi";
|
|
197
|
-
export { default as LoadingCircle } from "./components/old-twocolor/LoadingCircle";
|
|
198
|
-
export { default as MasterMedicalOrder } from "./components/old-twocolor/MasterMedicalOrder";
|
|
199
|
-
export { default as MissFill } from "./components/old-twocolor/MissFill";
|
|
200
|
-
export { default as MonitorTrend } from "./components/old-twocolor/MonitorTrend";
|
|
201
|
-
export { default as NoNetwork } from "./components/old-twocolor/NoNetwork";
|
|
202
|
-
export { default as NoPermissions } from "./components/old-twocolor/NoPermissions";
|
|
203
|
-
export { default as ReHospitalizedTag } from "./components/old-twocolor/ReHospitalizedTag";
|
|
204
|
-
export { default as Ruotishi } from "./components/old-twocolor/Ruotishi";
|
|
205
|
-
export { default as ServerError } from "./components/old-twocolor/ServerError";
|
|
206
|
-
export { default as SuccessCircle } from "./components/old-twocolor/SuccessCircle";
|
|
207
|
-
export { default as Tishi } from "./components/old-twocolor/Tishi";
|
|
208
|
-
export { default as WaitCircle } from "./components/old-twocolor/WaitCircle";
|
|
209
188
|
export { default as Account } from "./components/old-outlined/Account";
|
|
210
189
|
export { default as AccountFill } from "./components/old-outlined/AccountFill";
|
|
211
190
|
export { default as AcountManage } from "./components/old-outlined/AcountManage";
|
|
@@ -399,6 +378,29 @@ export { default as Zhuantifenxi } from "./components/old-outlined/Zhuantifenxi"
|
|
|
399
378
|
export { default as ZhuantifenxiFill } from "./components/old-outlined/ZhuantifenxiFill";
|
|
400
379
|
export { default as Zhutizhibiao } from "./components/old-outlined/Zhutizhibiao";
|
|
401
380
|
export { default as Zygl } from "./components/old-outlined/Zygl";
|
|
381
|
+
export { default as Bingzuwentifankui } from "./components/old-twocolor/Bingzuwentifankui";
|
|
382
|
+
export { default as BingzuwentifankuiNew } from "./components/old-twocolor/BingzuwentifankuiNew";
|
|
383
|
+
export { default as CasesDoubt } from "./components/old-twocolor/CasesDoubt";
|
|
384
|
+
export { default as Empty404 } from "./components/old-twocolor/Empty404";
|
|
385
|
+
export { default as EmptyNetwork } from "./components/old-twocolor/EmptyNetwork";
|
|
386
|
+
export { default as EmptyNormal } from "./components/old-twocolor/EmptyNormal";
|
|
387
|
+
export { default as EmptyPermission } from "./components/old-twocolor/EmptyPermission";
|
|
388
|
+
export { default as EmptyTable } from "./components/old-twocolor/EmptyTable";
|
|
389
|
+
export { default as FailCircle } from "./components/old-twocolor/FailCircle";
|
|
390
|
+
export { default as Html404 } from "./components/old-twocolor/Html404";
|
|
391
|
+
export { default as Huanzhejibenxinxi } from "./components/old-twocolor/Huanzhejibenxinxi";
|
|
392
|
+
export { default as LoadingCircle } from "./components/old-twocolor/LoadingCircle";
|
|
393
|
+
export { default as MasterMedicalOrder } from "./components/old-twocolor/MasterMedicalOrder";
|
|
394
|
+
export { default as MissFill } from "./components/old-twocolor/MissFill";
|
|
395
|
+
export { default as MonitorTrend } from "./components/old-twocolor/MonitorTrend";
|
|
396
|
+
export { default as NoNetwork } from "./components/old-twocolor/NoNetwork";
|
|
397
|
+
export { default as NoPermissions } from "./components/old-twocolor/NoPermissions";
|
|
398
|
+
export { default as ReHospitalizedTag } from "./components/old-twocolor/ReHospitalizedTag";
|
|
399
|
+
export { default as Ruotishi } from "./components/old-twocolor/Ruotishi";
|
|
400
|
+
export { default as ServerError } from "./components/old-twocolor/ServerError";
|
|
401
|
+
export { default as SuccessCircle } from "./components/old-twocolor/SuccessCircle";
|
|
402
|
+
export { default as Tishi } from "./components/old-twocolor/Tishi";
|
|
403
|
+
export { default as WaitCircle } from "./components/old-twocolor/WaitCircle";
|
|
402
404
|
export { default as Await } from "./components/suggestion/Await";
|
|
403
405
|
export { default as CostReturn } from "./components/suggestion/CostReturn";
|
|
404
406
|
export { default as CostViolate } from "./components/suggestion/CostViolate";
|
package/package.json
CHANGED
package/CHANGELOG.md
DELETED
|
@@ -1,96 +0,0 @@
|
|
|
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
|