@firesoon/icons-react 2.1.11 → 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/components/currency/Refresh.d.ts +3 -0
- package/dist/esm/components/currency/Refresh.js +13 -0
- package/dist/esm/components/currency/index.d.ts +1 -0
- package/dist/esm/components/currency/index.js +1 -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/icons/currency/refresh.d.ts +18 -0
- package/dist/esm/icons/currency/refresh.js +18 -0
- package/dist/esm/index.d.ts +117 -114
- package/dist/esm/index.js +117 -114
- 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,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/currency/refresh";
|
|
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: 'refresh',
|
|
11
|
+
iconType: 'currency'
|
|
12
|
+
}));
|
|
13
|
+
});
|
|
@@ -66,6 +66,7 @@ export { default as RecordFill } from './RecordFill';
|
|
|
66
66
|
export { default as Recover } from './Recover';
|
|
67
67
|
export { default as RectifyMassage } from './RectifyMassage';
|
|
68
68
|
export { default as RectifyMassageFill } from './RectifyMassageFill';
|
|
69
|
+
export { default as Refresh } from './Refresh';
|
|
69
70
|
export { default as Screening } from './Screening';
|
|
70
71
|
export { default as Search } from './Search';
|
|
71
72
|
export { default as Selecte } from './Selecte';
|
|
@@ -66,6 +66,7 @@ export { default as RecordFill } from "./RecordFill";
|
|
|
66
66
|
export { default as Recover } from "./Recover";
|
|
67
67
|
export { default as RectifyMassage } from "./RectifyMassage";
|
|
68
68
|
export { default as RectifyMassageFill } from "./RectifyMassageFill";
|
|
69
|
+
export { default as Refresh } from "./Refresh";
|
|
69
70
|
export { default as Screening } from "./Screening";
|
|
70
71
|
export { default as Search } from "./Search";
|
|
71
72
|
export { default as Selecte } from "./Selecte";
|
|
@@ -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;
|
|
@@ -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": "refresh",
|
|
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": "M828.78 195.22A449.07 449.07 0 01896 281.04V200a8 8 0 018-8h48a8 8 0 018 8v176a8 8 0 01-8 8H776a8 8 0 01-8-8v-48a8 8 0 018-8h68.66a384.54 384.54 0 00-61.13-79.53c-149.96-149.96-393.1-149.96-543.06 0s-149.96 393.1 0 543.06 393.1 149.96 543.06 0a382.2 382.2 0 00101.9-181.86h.04a31.85 31.85 0 018.5-15.17 32 32 0 0153.3 31.74h.02a445.91 445.91 0 01-118.5 210.54c-174.96 174.96-458.62 174.96-633.57 0-174.96-174.95-174.96-458.6 0-633.56 174.95-174.96 458.6-174.96 633.56 0z"
|
|
13
|
+
},
|
|
14
|
+
"children": []
|
|
15
|
+
}]
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
export default node;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,94 +1,3 @@
|
|
|
1
|
-
export { default as Add } from './components/currency/Add';
|
|
2
|
-
export { default as AddFill } from './components/currency/AddFill';
|
|
3
|
-
export { default as Admin } from './components/currency/Admin';
|
|
4
|
-
export { default as AppearRecord } from './components/currency/AppearRecord';
|
|
5
|
-
export { default as AppearRecordFill } from './components/currency/AppearRecordFill';
|
|
6
|
-
export { default as ArrowDown } from './components/currency/ArrowDown';
|
|
7
|
-
export { default as ArrowLeft } from './components/currency/ArrowLeft';
|
|
8
|
-
export { default as ArrowRight } from './components/currency/ArrowRight';
|
|
9
|
-
export { default as ArrowUp } from './components/currency/ArrowUp';
|
|
10
|
-
export { default as BackToPlatform } from './components/currency/BackToPlatform';
|
|
11
|
-
export { default as BackToPlatformFill } from './components/currency/BackToPlatformFill';
|
|
12
|
-
export { default as Bottom } from './components/currency/Bottom';
|
|
13
|
-
export { default as Cancel } from './components/currency/Cancel';
|
|
14
|
-
export { default as CancelFill } from './components/currency/CancelFill';
|
|
15
|
-
export { default as CaseInformation } from './components/currency/CaseInformation';
|
|
16
|
-
export { default as CaseInformationFill } from './components/currency/CaseInformationFill';
|
|
17
|
-
export { default as Checkbox } from './components/currency/Checkbox';
|
|
18
|
-
export { default as CheckboxDisable } from './components/currency/CheckboxDisable';
|
|
19
|
-
export { default as CheckboxFill } from './components/currency/CheckboxFill';
|
|
20
|
-
export { default as ChooseFile } from './components/currency/ChooseFile';
|
|
21
|
-
export { default as ChooseFileFill } from './components/currency/ChooseFileFill';
|
|
22
|
-
export { default as Clean } from './components/currency/Clean';
|
|
23
|
-
export { default as CleanFill } from './components/currency/CleanFill';
|
|
24
|
-
export { default as Close } from './components/currency/Close';
|
|
25
|
-
export { default as Code } from './components/currency/Code';
|
|
26
|
-
export { default as Copy } from './components/currency/Copy';
|
|
27
|
-
export { default as CopyFill } from './components/currency/CopyFill';
|
|
28
|
-
export { default as CostDetail } from './components/currency/CostDetail';
|
|
29
|
-
export { default as CostDetailFill } from './components/currency/CostDetailFill';
|
|
30
|
-
export { default as Date } from './components/currency/Date';
|
|
31
|
-
export { default as DateFill } from './components/currency/DateFill';
|
|
32
|
-
export { default as Delete } from './components/currency/Delete';
|
|
33
|
-
export { default as DeleteFill } from './components/currency/DeleteFill';
|
|
34
|
-
export { default as Download } from './components/currency/Download';
|
|
35
|
-
export { default as DownloadFill } from './components/currency/DownloadFill';
|
|
36
|
-
export { default as Drag } from './components/currency/Drag';
|
|
37
|
-
export { default as Edit } from './components/currency/Edit';
|
|
38
|
-
export { default as EditFill } from './components/currency/EditFill';
|
|
39
|
-
export { default as EventFollow } from './components/currency/EventFollow';
|
|
40
|
-
export { default as EventFollowFill } from './components/currency/EventFollowFill';
|
|
41
|
-
export { default as Exitfullscreen } from './components/currency/Exitfullscreen';
|
|
42
|
-
export { default as Fall } from './components/currency/Fall';
|
|
43
|
-
export { default as Fold } from './components/currency/Fold';
|
|
44
|
-
export { default as FoldFill } from './components/currency/FoldFill';
|
|
45
|
-
export { default as Fullscreen } from './components/currency/Fullscreen';
|
|
46
|
-
export { default as GroupFeedback } from './components/currency/GroupFeedback';
|
|
47
|
-
export { default as GroupFeedbackFill } from './components/currency/GroupFeedbackFill';
|
|
48
|
-
export { default as HospitalAppeal } from './components/currency/HospitalAppeal';
|
|
49
|
-
export { default as HospitalAppealFill } from './components/currency/HospitalAppealFill';
|
|
50
|
-
export { default as ImitateGroup } from './components/currency/ImitateGroup';
|
|
51
|
-
export { default as ImitateGroupFill } from './components/currency/ImitateGroupFill';
|
|
52
|
-
export { default as Invisible } from './components/currency/Invisible';
|
|
53
|
-
export { default as InvisibleFill } from './components/currency/InvisibleFill';
|
|
54
|
-
export { default as LeadinginInformation } from './components/currency/LeadinginInformation';
|
|
55
|
-
export { default as ListDetail } from './components/currency/ListDetail';
|
|
56
|
-
export { default as ListDetailFill } from './components/currency/ListDetailFill';
|
|
57
|
-
export { default as Loading } from './components/currency/Loading';
|
|
58
|
-
export { default as More } from './components/currency/More';
|
|
59
|
-
export { default as PatientInformation } from './components/currency/PatientInformation';
|
|
60
|
-
export { default as PatientInformationFill } from './components/currency/PatientInformationFill';
|
|
61
|
-
export { default as Radio } from './components/currency/Radio';
|
|
62
|
-
export { default as RadioFill } from './components/currency/RadioFill';
|
|
63
|
-
export { default as Raise } from './components/currency/Raise';
|
|
64
|
-
export { default as Record } from './components/currency/Record';
|
|
65
|
-
export { default as RecordFill } from './components/currency/RecordFill';
|
|
66
|
-
export { default as Recover } from './components/currency/Recover';
|
|
67
|
-
export { default as RectifyMassage } from './components/currency/RectifyMassage';
|
|
68
|
-
export { default as RectifyMassageFill } from './components/currency/RectifyMassageFill';
|
|
69
|
-
export { default as Screening } from './components/currency/Screening';
|
|
70
|
-
export { default as Search } from './components/currency/Search';
|
|
71
|
-
export { default as Selecte } from './components/currency/Selecte';
|
|
72
|
-
export { default as Setting } from './components/currency/Setting';
|
|
73
|
-
export { default as SettingFill } from './components/currency/SettingFill';
|
|
74
|
-
export { default as ShuttleLeft } from './components/currency/ShuttleLeft';
|
|
75
|
-
export { default as ShuttleRight } from './components/currency/ShuttleRight';
|
|
76
|
-
export { default as Singlearrow } from './components/currency/Singlearrow';
|
|
77
|
-
export { default as Sort } from './components/currency/Sort';
|
|
78
|
-
export { default as StartAnnotate } from './components/currency/StartAnnotate';
|
|
79
|
-
export { default as StartAnnotateFill } from './components/currency/StartAnnotateFill';
|
|
80
|
-
export { default as Submit } from './components/currency/Submit';
|
|
81
|
-
export { default as SubmitFill } from './components/currency/SubmitFill';
|
|
82
|
-
export { default as Switch } from './components/currency/Switch';
|
|
83
|
-
export { default as SwitchFill } from './components/currency/SwitchFill';
|
|
84
|
-
export { default as Time } from './components/currency/Time';
|
|
85
|
-
export { default as TimeFill } from './components/currency/TimeFill';
|
|
86
|
-
export { default as Top } from './components/currency/Top';
|
|
87
|
-
export { default as Unfixed } from './components/currency/Unfixed';
|
|
88
|
-
export { default as Unfold } from './components/currency/Unfold';
|
|
89
|
-
export { default as UnfoldFill } from './components/currency/UnfoldFill';
|
|
90
|
-
export { default as Visible } from './components/currency/Visible';
|
|
91
|
-
export { default as VisibleFill } from './components/currency/VisibleFill';
|
|
92
1
|
export { default as Analyse } from './components/business-menu/Analyse';
|
|
93
2
|
export { default as Annotate } from './components/business-menu/Annotate';
|
|
94
3
|
export { default as AppealFeedback } from './components/business-menu/AppealFeedback';
|
|
@@ -156,6 +65,8 @@ export { default as OverspendSurplus } from './components/business-menu/Overspen
|
|
|
156
65
|
export { default as PloblemCheck } from './components/business-menu/PloblemCheck';
|
|
157
66
|
export { default as PloblemCheckFill } from './components/business-menu/PloblemCheckFill';
|
|
158
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';
|
|
159
70
|
export { default as ReportManagement } from './components/business-menu/ReportManagement';
|
|
160
71
|
export { default as ReportManagementFill } from './components/business-menu/ReportManagementFill';
|
|
161
72
|
export { default as ResultAnalyse } from './components/business-menu/ResultAnalyse';
|
|
@@ -182,29 +93,98 @@ export { default as UserManagement } from './components/business-menu/UserManage
|
|
|
182
93
|
export { default as UserManagementFill } from './components/business-menu/UserManagementFill';
|
|
183
94
|
export { default as WarningVerify } from './components/business-menu/WarningVerify';
|
|
184
95
|
export { default as WarningVerifyFill } from './components/business-menu/WarningVerifyFill';
|
|
185
|
-
export { default as
|
|
186
|
-
export { default as
|
|
187
|
-
export { default as
|
|
188
|
-
export { default as
|
|
189
|
-
export { default as
|
|
190
|
-
export { default as
|
|
191
|
-
export { default as
|
|
192
|
-
export { default as
|
|
193
|
-
export { default as
|
|
194
|
-
export { default as
|
|
195
|
-
export { default as
|
|
196
|
-
export { default as
|
|
197
|
-
export { default as
|
|
198
|
-
export { default as
|
|
199
|
-
export { default as
|
|
200
|
-
export { default as
|
|
201
|
-
export { default as
|
|
202
|
-
export { default as
|
|
203
|
-
export { default as
|
|
204
|
-
export { default as
|
|
205
|
-
export { default as
|
|
206
|
-
export { default as
|
|
207
|
-
export { default as
|
|
96
|
+
export { default as Add } from './components/currency/Add';
|
|
97
|
+
export { default as AddFill } from './components/currency/AddFill';
|
|
98
|
+
export { default as Admin } from './components/currency/Admin';
|
|
99
|
+
export { default as AppearRecord } from './components/currency/AppearRecord';
|
|
100
|
+
export { default as AppearRecordFill } from './components/currency/AppearRecordFill';
|
|
101
|
+
export { default as ArrowDown } from './components/currency/ArrowDown';
|
|
102
|
+
export { default as ArrowLeft } from './components/currency/ArrowLeft';
|
|
103
|
+
export { default as ArrowRight } from './components/currency/ArrowRight';
|
|
104
|
+
export { default as ArrowUp } from './components/currency/ArrowUp';
|
|
105
|
+
export { default as BackToPlatform } from './components/currency/BackToPlatform';
|
|
106
|
+
export { default as BackToPlatformFill } from './components/currency/BackToPlatformFill';
|
|
107
|
+
export { default as Bottom } from './components/currency/Bottom';
|
|
108
|
+
export { default as Cancel } from './components/currency/Cancel';
|
|
109
|
+
export { default as CancelFill } from './components/currency/CancelFill';
|
|
110
|
+
export { default as CaseInformation } from './components/currency/CaseInformation';
|
|
111
|
+
export { default as CaseInformationFill } from './components/currency/CaseInformationFill';
|
|
112
|
+
export { default as Checkbox } from './components/currency/Checkbox';
|
|
113
|
+
export { default as CheckboxDisable } from './components/currency/CheckboxDisable';
|
|
114
|
+
export { default as CheckboxFill } from './components/currency/CheckboxFill';
|
|
115
|
+
export { default as ChooseFile } from './components/currency/ChooseFile';
|
|
116
|
+
export { default as ChooseFileFill } from './components/currency/ChooseFileFill';
|
|
117
|
+
export { default as Clean } from './components/currency/Clean';
|
|
118
|
+
export { default as CleanFill } from './components/currency/CleanFill';
|
|
119
|
+
export { default as Close } from './components/currency/Close';
|
|
120
|
+
export { default as Code } from './components/currency/Code';
|
|
121
|
+
export { default as Copy } from './components/currency/Copy';
|
|
122
|
+
export { default as CopyFill } from './components/currency/CopyFill';
|
|
123
|
+
export { default as CostDetail } from './components/currency/CostDetail';
|
|
124
|
+
export { default as CostDetailFill } from './components/currency/CostDetailFill';
|
|
125
|
+
export { default as Date } from './components/currency/Date';
|
|
126
|
+
export { default as DateFill } from './components/currency/DateFill';
|
|
127
|
+
export { default as Delete } from './components/currency/Delete';
|
|
128
|
+
export { default as DeleteFill } from './components/currency/DeleteFill';
|
|
129
|
+
export { default as Download } from './components/currency/Download';
|
|
130
|
+
export { default as DownloadFill } from './components/currency/DownloadFill';
|
|
131
|
+
export { default as Drag } from './components/currency/Drag';
|
|
132
|
+
export { default as Edit } from './components/currency/Edit';
|
|
133
|
+
export { default as EditFill } from './components/currency/EditFill';
|
|
134
|
+
export { default as EventFollow } from './components/currency/EventFollow';
|
|
135
|
+
export { default as EventFollowFill } from './components/currency/EventFollowFill';
|
|
136
|
+
export { default as Exitfullscreen } from './components/currency/Exitfullscreen';
|
|
137
|
+
export { default as Fall } from './components/currency/Fall';
|
|
138
|
+
export { default as Fold } from './components/currency/Fold';
|
|
139
|
+
export { default as FoldFill } from './components/currency/FoldFill';
|
|
140
|
+
export { default as Fullscreen } from './components/currency/Fullscreen';
|
|
141
|
+
export { default as GroupFeedback } from './components/currency/GroupFeedback';
|
|
142
|
+
export { default as GroupFeedbackFill } from './components/currency/GroupFeedbackFill';
|
|
143
|
+
export { default as HospitalAppeal } from './components/currency/HospitalAppeal';
|
|
144
|
+
export { default as HospitalAppealFill } from './components/currency/HospitalAppealFill';
|
|
145
|
+
export { default as ImitateGroup } from './components/currency/ImitateGroup';
|
|
146
|
+
export { default as ImitateGroupFill } from './components/currency/ImitateGroupFill';
|
|
147
|
+
export { default as Invisible } from './components/currency/Invisible';
|
|
148
|
+
export { default as InvisibleFill } from './components/currency/InvisibleFill';
|
|
149
|
+
export { default as LeadinginInformation } from './components/currency/LeadinginInformation';
|
|
150
|
+
export { default as ListDetail } from './components/currency/ListDetail';
|
|
151
|
+
export { default as ListDetailFill } from './components/currency/ListDetailFill';
|
|
152
|
+
export { default as Loading } from './components/currency/Loading';
|
|
153
|
+
export { default as More } from './components/currency/More';
|
|
154
|
+
export { default as PatientInformation } from './components/currency/PatientInformation';
|
|
155
|
+
export { default as PatientInformationFill } from './components/currency/PatientInformationFill';
|
|
156
|
+
export { default as Radio } from './components/currency/Radio';
|
|
157
|
+
export { default as RadioFill } from './components/currency/RadioFill';
|
|
158
|
+
export { default as Raise } from './components/currency/Raise';
|
|
159
|
+
export { default as Record } from './components/currency/Record';
|
|
160
|
+
export { default as RecordFill } from './components/currency/RecordFill';
|
|
161
|
+
export { default as Recover } from './components/currency/Recover';
|
|
162
|
+
export { default as RectifyMassage } from './components/currency/RectifyMassage';
|
|
163
|
+
export { default as RectifyMassageFill } from './components/currency/RectifyMassageFill';
|
|
164
|
+
export { default as Refresh } from './components/currency/Refresh';
|
|
165
|
+
export { default as Screening } from './components/currency/Screening';
|
|
166
|
+
export { default as Search } from './components/currency/Search';
|
|
167
|
+
export { default as Selecte } from './components/currency/Selecte';
|
|
168
|
+
export { default as Setting } from './components/currency/Setting';
|
|
169
|
+
export { default as SettingFill } from './components/currency/SettingFill';
|
|
170
|
+
export { default as ShuttleLeft } from './components/currency/ShuttleLeft';
|
|
171
|
+
export { default as ShuttleRight } from './components/currency/ShuttleRight';
|
|
172
|
+
export { default as Singlearrow } from './components/currency/Singlearrow';
|
|
173
|
+
export { default as Sort } from './components/currency/Sort';
|
|
174
|
+
export { default as StartAnnotate } from './components/currency/StartAnnotate';
|
|
175
|
+
export { default as StartAnnotateFill } from './components/currency/StartAnnotateFill';
|
|
176
|
+
export { default as Submit } from './components/currency/Submit';
|
|
177
|
+
export { default as SubmitFill } from './components/currency/SubmitFill';
|
|
178
|
+
export { default as Switch } from './components/currency/Switch';
|
|
179
|
+
export { default as SwitchFill } from './components/currency/SwitchFill';
|
|
180
|
+
export { default as Time } from './components/currency/Time';
|
|
181
|
+
export { default as TimeFill } from './components/currency/TimeFill';
|
|
182
|
+
export { default as Top } from './components/currency/Top';
|
|
183
|
+
export { default as Unfixed } from './components/currency/Unfixed';
|
|
184
|
+
export { default as Unfold } from './components/currency/Unfold';
|
|
185
|
+
export { default as UnfoldFill } from './components/currency/UnfoldFill';
|
|
186
|
+
export { default as Visible } from './components/currency/Visible';
|
|
187
|
+
export { default as VisibleFill } from './components/currency/VisibleFill';
|
|
208
188
|
export { default as Account } from './components/old-outlined/Account';
|
|
209
189
|
export { default as AccountFill } from './components/old-outlined/AccountFill';
|
|
210
190
|
export { default as AcountManage } from './components/old-outlined/AcountManage';
|
|
@@ -398,6 +378,29 @@ export { default as Zhuantifenxi } from './components/old-outlined/Zhuantifenxi'
|
|
|
398
378
|
export { default as ZhuantifenxiFill } from './components/old-outlined/ZhuantifenxiFill';
|
|
399
379
|
export { default as Zhutizhibiao } from './components/old-outlined/Zhutizhibiao';
|
|
400
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';
|
|
401
404
|
export { default as Await } from './components/suggestion/Await';
|
|
402
405
|
export { default as CostReturn } from './components/suggestion/CostReturn';
|
|
403
406
|
export { default as CostViolate } from './components/suggestion/CostViolate';
|
package/dist/esm/index.js
CHANGED
|
@@ -1,94 +1,3 @@
|
|
|
1
|
-
export { default as Add } from "./components/currency/Add";
|
|
2
|
-
export { default as AddFill } from "./components/currency/AddFill";
|
|
3
|
-
export { default as Admin } from "./components/currency/Admin";
|
|
4
|
-
export { default as AppearRecord } from "./components/currency/AppearRecord";
|
|
5
|
-
export { default as AppearRecordFill } from "./components/currency/AppearRecordFill";
|
|
6
|
-
export { default as ArrowDown } from "./components/currency/ArrowDown";
|
|
7
|
-
export { default as ArrowLeft } from "./components/currency/ArrowLeft";
|
|
8
|
-
export { default as ArrowRight } from "./components/currency/ArrowRight";
|
|
9
|
-
export { default as ArrowUp } from "./components/currency/ArrowUp";
|
|
10
|
-
export { default as BackToPlatform } from "./components/currency/BackToPlatform";
|
|
11
|
-
export { default as BackToPlatformFill } from "./components/currency/BackToPlatformFill";
|
|
12
|
-
export { default as Bottom } from "./components/currency/Bottom";
|
|
13
|
-
export { default as Cancel } from "./components/currency/Cancel";
|
|
14
|
-
export { default as CancelFill } from "./components/currency/CancelFill";
|
|
15
|
-
export { default as CaseInformation } from "./components/currency/CaseInformation";
|
|
16
|
-
export { default as CaseInformationFill } from "./components/currency/CaseInformationFill";
|
|
17
|
-
export { default as Checkbox } from "./components/currency/Checkbox";
|
|
18
|
-
export { default as CheckboxDisable } from "./components/currency/CheckboxDisable";
|
|
19
|
-
export { default as CheckboxFill } from "./components/currency/CheckboxFill";
|
|
20
|
-
export { default as ChooseFile } from "./components/currency/ChooseFile";
|
|
21
|
-
export { default as ChooseFileFill } from "./components/currency/ChooseFileFill";
|
|
22
|
-
export { default as Clean } from "./components/currency/Clean";
|
|
23
|
-
export { default as CleanFill } from "./components/currency/CleanFill";
|
|
24
|
-
export { default as Close } from "./components/currency/Close";
|
|
25
|
-
export { default as Code } from "./components/currency/Code";
|
|
26
|
-
export { default as Copy } from "./components/currency/Copy";
|
|
27
|
-
export { default as CopyFill } from "./components/currency/CopyFill";
|
|
28
|
-
export { default as CostDetail } from "./components/currency/CostDetail";
|
|
29
|
-
export { default as CostDetailFill } from "./components/currency/CostDetailFill";
|
|
30
|
-
export { default as Date } from "./components/currency/Date";
|
|
31
|
-
export { default as DateFill } from "./components/currency/DateFill";
|
|
32
|
-
export { default as Delete } from "./components/currency/Delete";
|
|
33
|
-
export { default as DeleteFill } from "./components/currency/DeleteFill";
|
|
34
|
-
export { default as Download } from "./components/currency/Download";
|
|
35
|
-
export { default as DownloadFill } from "./components/currency/DownloadFill";
|
|
36
|
-
export { default as Drag } from "./components/currency/Drag";
|
|
37
|
-
export { default as Edit } from "./components/currency/Edit";
|
|
38
|
-
export { default as EditFill } from "./components/currency/EditFill";
|
|
39
|
-
export { default as EventFollow } from "./components/currency/EventFollow";
|
|
40
|
-
export { default as EventFollowFill } from "./components/currency/EventFollowFill";
|
|
41
|
-
export { default as Exitfullscreen } from "./components/currency/Exitfullscreen";
|
|
42
|
-
export { default as Fall } from "./components/currency/Fall";
|
|
43
|
-
export { default as Fold } from "./components/currency/Fold";
|
|
44
|
-
export { default as FoldFill } from "./components/currency/FoldFill";
|
|
45
|
-
export { default as Fullscreen } from "./components/currency/Fullscreen";
|
|
46
|
-
export { default as GroupFeedback } from "./components/currency/GroupFeedback";
|
|
47
|
-
export { default as GroupFeedbackFill } from "./components/currency/GroupFeedbackFill";
|
|
48
|
-
export { default as HospitalAppeal } from "./components/currency/HospitalAppeal";
|
|
49
|
-
export { default as HospitalAppealFill } from "./components/currency/HospitalAppealFill";
|
|
50
|
-
export { default as ImitateGroup } from "./components/currency/ImitateGroup";
|
|
51
|
-
export { default as ImitateGroupFill } from "./components/currency/ImitateGroupFill";
|
|
52
|
-
export { default as Invisible } from "./components/currency/Invisible";
|
|
53
|
-
export { default as InvisibleFill } from "./components/currency/InvisibleFill";
|
|
54
|
-
export { default as LeadinginInformation } from "./components/currency/LeadinginInformation";
|
|
55
|
-
export { default as ListDetail } from "./components/currency/ListDetail";
|
|
56
|
-
export { default as ListDetailFill } from "./components/currency/ListDetailFill";
|
|
57
|
-
export { default as Loading } from "./components/currency/Loading";
|
|
58
|
-
export { default as More } from "./components/currency/More";
|
|
59
|
-
export { default as PatientInformation } from "./components/currency/PatientInformation";
|
|
60
|
-
export { default as PatientInformationFill } from "./components/currency/PatientInformationFill";
|
|
61
|
-
export { default as Radio } from "./components/currency/Radio";
|
|
62
|
-
export { default as RadioFill } from "./components/currency/RadioFill";
|
|
63
|
-
export { default as Raise } from "./components/currency/Raise";
|
|
64
|
-
export { default as Record } from "./components/currency/Record";
|
|
65
|
-
export { default as RecordFill } from "./components/currency/RecordFill";
|
|
66
|
-
export { default as Recover } from "./components/currency/Recover";
|
|
67
|
-
export { default as RectifyMassage } from "./components/currency/RectifyMassage";
|
|
68
|
-
export { default as RectifyMassageFill } from "./components/currency/RectifyMassageFill";
|
|
69
|
-
export { default as Screening } from "./components/currency/Screening";
|
|
70
|
-
export { default as Search } from "./components/currency/Search";
|
|
71
|
-
export { default as Selecte } from "./components/currency/Selecte";
|
|
72
|
-
export { default as Setting } from "./components/currency/Setting";
|
|
73
|
-
export { default as SettingFill } from "./components/currency/SettingFill";
|
|
74
|
-
export { default as ShuttleLeft } from "./components/currency/ShuttleLeft";
|
|
75
|
-
export { default as ShuttleRight } from "./components/currency/ShuttleRight";
|
|
76
|
-
export { default as Singlearrow } from "./components/currency/Singlearrow";
|
|
77
|
-
export { default as Sort } from "./components/currency/Sort";
|
|
78
|
-
export { default as StartAnnotate } from "./components/currency/StartAnnotate";
|
|
79
|
-
export { default as StartAnnotateFill } from "./components/currency/StartAnnotateFill";
|
|
80
|
-
export { default as Submit } from "./components/currency/Submit";
|
|
81
|
-
export { default as SubmitFill } from "./components/currency/SubmitFill";
|
|
82
|
-
export { default as Switch } from "./components/currency/Switch";
|
|
83
|
-
export { default as SwitchFill } from "./components/currency/SwitchFill";
|
|
84
|
-
export { default as Time } from "./components/currency/Time";
|
|
85
|
-
export { default as TimeFill } from "./components/currency/TimeFill";
|
|
86
|
-
export { default as Top } from "./components/currency/Top";
|
|
87
|
-
export { default as Unfixed } from "./components/currency/Unfixed";
|
|
88
|
-
export { default as Unfold } from "./components/currency/Unfold";
|
|
89
|
-
export { default as UnfoldFill } from "./components/currency/UnfoldFill";
|
|
90
|
-
export { default as Visible } from "./components/currency/Visible";
|
|
91
|
-
export { default as VisibleFill } from "./components/currency/VisibleFill";
|
|
92
1
|
export { default as Analyse } from "./components/business-menu/Analyse";
|
|
93
2
|
export { default as Annotate } from "./components/business-menu/Annotate";
|
|
94
3
|
export { default as AppealFeedback } from "./components/business-menu/AppealFeedback";
|
|
@@ -156,6 +65,8 @@ export { default as OverspendSurplus } from "./components/business-menu/Overspen
|
|
|
156
65
|
export { default as PloblemCheck } from "./components/business-menu/PloblemCheck";
|
|
157
66
|
export { default as PloblemCheckFill } from "./components/business-menu/PloblemCheckFill";
|
|
158
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";
|
|
159
70
|
export { default as ReportManagement } from "./components/business-menu/ReportManagement";
|
|
160
71
|
export { default as ReportManagementFill } from "./components/business-menu/ReportManagementFill";
|
|
161
72
|
export { default as ResultAnalyse } from "./components/business-menu/ResultAnalyse";
|
|
@@ -182,29 +93,98 @@ export { default as UserManagement } from "./components/business-menu/UserManage
|
|
|
182
93
|
export { default as UserManagementFill } from "./components/business-menu/UserManagementFill";
|
|
183
94
|
export { default as WarningVerify } from "./components/business-menu/WarningVerify";
|
|
184
95
|
export { default as WarningVerifyFill } from "./components/business-menu/WarningVerifyFill";
|
|
185
|
-
export { default as
|
|
186
|
-
export { default as
|
|
187
|
-
export { default as
|
|
188
|
-
export { default as
|
|
189
|
-
export { default as
|
|
190
|
-
export { default as
|
|
191
|
-
export { default as
|
|
192
|
-
export { default as
|
|
193
|
-
export { default as
|
|
194
|
-
export { default as
|
|
195
|
-
export { default as
|
|
196
|
-
export { default as
|
|
197
|
-
export { default as
|
|
198
|
-
export { default as
|
|
199
|
-
export { default as
|
|
200
|
-
export { default as
|
|
201
|
-
export { default as
|
|
202
|
-
export { default as
|
|
203
|
-
export { default as
|
|
204
|
-
export { default as
|
|
205
|
-
export { default as
|
|
206
|
-
export { default as
|
|
207
|
-
export { default as
|
|
96
|
+
export { default as Add } from "./components/currency/Add";
|
|
97
|
+
export { default as AddFill } from "./components/currency/AddFill";
|
|
98
|
+
export { default as Admin } from "./components/currency/Admin";
|
|
99
|
+
export { default as AppearRecord } from "./components/currency/AppearRecord";
|
|
100
|
+
export { default as AppearRecordFill } from "./components/currency/AppearRecordFill";
|
|
101
|
+
export { default as ArrowDown } from "./components/currency/ArrowDown";
|
|
102
|
+
export { default as ArrowLeft } from "./components/currency/ArrowLeft";
|
|
103
|
+
export { default as ArrowRight } from "./components/currency/ArrowRight";
|
|
104
|
+
export { default as ArrowUp } from "./components/currency/ArrowUp";
|
|
105
|
+
export { default as BackToPlatform } from "./components/currency/BackToPlatform";
|
|
106
|
+
export { default as BackToPlatformFill } from "./components/currency/BackToPlatformFill";
|
|
107
|
+
export { default as Bottom } from "./components/currency/Bottom";
|
|
108
|
+
export { default as Cancel } from "./components/currency/Cancel";
|
|
109
|
+
export { default as CancelFill } from "./components/currency/CancelFill";
|
|
110
|
+
export { default as CaseInformation } from "./components/currency/CaseInformation";
|
|
111
|
+
export { default as CaseInformationFill } from "./components/currency/CaseInformationFill";
|
|
112
|
+
export { default as Checkbox } from "./components/currency/Checkbox";
|
|
113
|
+
export { default as CheckboxDisable } from "./components/currency/CheckboxDisable";
|
|
114
|
+
export { default as CheckboxFill } from "./components/currency/CheckboxFill";
|
|
115
|
+
export { default as ChooseFile } from "./components/currency/ChooseFile";
|
|
116
|
+
export { default as ChooseFileFill } from "./components/currency/ChooseFileFill";
|
|
117
|
+
export { default as Clean } from "./components/currency/Clean";
|
|
118
|
+
export { default as CleanFill } from "./components/currency/CleanFill";
|
|
119
|
+
export { default as Close } from "./components/currency/Close";
|
|
120
|
+
export { default as Code } from "./components/currency/Code";
|
|
121
|
+
export { default as Copy } from "./components/currency/Copy";
|
|
122
|
+
export { default as CopyFill } from "./components/currency/CopyFill";
|
|
123
|
+
export { default as CostDetail } from "./components/currency/CostDetail";
|
|
124
|
+
export { default as CostDetailFill } from "./components/currency/CostDetailFill";
|
|
125
|
+
export { default as Date } from "./components/currency/Date";
|
|
126
|
+
export { default as DateFill } from "./components/currency/DateFill";
|
|
127
|
+
export { default as Delete } from "./components/currency/Delete";
|
|
128
|
+
export { default as DeleteFill } from "./components/currency/DeleteFill";
|
|
129
|
+
export { default as Download } from "./components/currency/Download";
|
|
130
|
+
export { default as DownloadFill } from "./components/currency/DownloadFill";
|
|
131
|
+
export { default as Drag } from "./components/currency/Drag";
|
|
132
|
+
export { default as Edit } from "./components/currency/Edit";
|
|
133
|
+
export { default as EditFill } from "./components/currency/EditFill";
|
|
134
|
+
export { default as EventFollow } from "./components/currency/EventFollow";
|
|
135
|
+
export { default as EventFollowFill } from "./components/currency/EventFollowFill";
|
|
136
|
+
export { default as Exitfullscreen } from "./components/currency/Exitfullscreen";
|
|
137
|
+
export { default as Fall } from "./components/currency/Fall";
|
|
138
|
+
export { default as Fold } from "./components/currency/Fold";
|
|
139
|
+
export { default as FoldFill } from "./components/currency/FoldFill";
|
|
140
|
+
export { default as Fullscreen } from "./components/currency/Fullscreen";
|
|
141
|
+
export { default as GroupFeedback } from "./components/currency/GroupFeedback";
|
|
142
|
+
export { default as GroupFeedbackFill } from "./components/currency/GroupFeedbackFill";
|
|
143
|
+
export { default as HospitalAppeal } from "./components/currency/HospitalAppeal";
|
|
144
|
+
export { default as HospitalAppealFill } from "./components/currency/HospitalAppealFill";
|
|
145
|
+
export { default as ImitateGroup } from "./components/currency/ImitateGroup";
|
|
146
|
+
export { default as ImitateGroupFill } from "./components/currency/ImitateGroupFill";
|
|
147
|
+
export { default as Invisible } from "./components/currency/Invisible";
|
|
148
|
+
export { default as InvisibleFill } from "./components/currency/InvisibleFill";
|
|
149
|
+
export { default as LeadinginInformation } from "./components/currency/LeadinginInformation";
|
|
150
|
+
export { default as ListDetail } from "./components/currency/ListDetail";
|
|
151
|
+
export { default as ListDetailFill } from "./components/currency/ListDetailFill";
|
|
152
|
+
export { default as Loading } from "./components/currency/Loading";
|
|
153
|
+
export { default as More } from "./components/currency/More";
|
|
154
|
+
export { default as PatientInformation } from "./components/currency/PatientInformation";
|
|
155
|
+
export { default as PatientInformationFill } from "./components/currency/PatientInformationFill";
|
|
156
|
+
export { default as Radio } from "./components/currency/Radio";
|
|
157
|
+
export { default as RadioFill } from "./components/currency/RadioFill";
|
|
158
|
+
export { default as Raise } from "./components/currency/Raise";
|
|
159
|
+
export { default as Record } from "./components/currency/Record";
|
|
160
|
+
export { default as RecordFill } from "./components/currency/RecordFill";
|
|
161
|
+
export { default as Recover } from "./components/currency/Recover";
|
|
162
|
+
export { default as RectifyMassage } from "./components/currency/RectifyMassage";
|
|
163
|
+
export { default as RectifyMassageFill } from "./components/currency/RectifyMassageFill";
|
|
164
|
+
export { default as Refresh } from "./components/currency/Refresh";
|
|
165
|
+
export { default as Screening } from "./components/currency/Screening";
|
|
166
|
+
export { default as Search } from "./components/currency/Search";
|
|
167
|
+
export { default as Selecte } from "./components/currency/Selecte";
|
|
168
|
+
export { default as Setting } from "./components/currency/Setting";
|
|
169
|
+
export { default as SettingFill } from "./components/currency/SettingFill";
|
|
170
|
+
export { default as ShuttleLeft } from "./components/currency/ShuttleLeft";
|
|
171
|
+
export { default as ShuttleRight } from "./components/currency/ShuttleRight";
|
|
172
|
+
export { default as Singlearrow } from "./components/currency/Singlearrow";
|
|
173
|
+
export { default as Sort } from "./components/currency/Sort";
|
|
174
|
+
export { default as StartAnnotate } from "./components/currency/StartAnnotate";
|
|
175
|
+
export { default as StartAnnotateFill } from "./components/currency/StartAnnotateFill";
|
|
176
|
+
export { default as Submit } from "./components/currency/Submit";
|
|
177
|
+
export { default as SubmitFill } from "./components/currency/SubmitFill";
|
|
178
|
+
export { default as Switch } from "./components/currency/Switch";
|
|
179
|
+
export { default as SwitchFill } from "./components/currency/SwitchFill";
|
|
180
|
+
export { default as Time } from "./components/currency/Time";
|
|
181
|
+
export { default as TimeFill } from "./components/currency/TimeFill";
|
|
182
|
+
export { default as Top } from "./components/currency/Top";
|
|
183
|
+
export { default as Unfixed } from "./components/currency/Unfixed";
|
|
184
|
+
export { default as Unfold } from "./components/currency/Unfold";
|
|
185
|
+
export { default as UnfoldFill } from "./components/currency/UnfoldFill";
|
|
186
|
+
export { default as Visible } from "./components/currency/Visible";
|
|
187
|
+
export { default as VisibleFill } from "./components/currency/VisibleFill";
|
|
208
188
|
export { default as Account } from "./components/old-outlined/Account";
|
|
209
189
|
export { default as AccountFill } from "./components/old-outlined/AccountFill";
|
|
210
190
|
export { default as AcountManage } from "./components/old-outlined/AcountManage";
|
|
@@ -398,6 +378,29 @@ export { default as Zhuantifenxi } from "./components/old-outlined/Zhuantifenxi"
|
|
|
398
378
|
export { default as ZhuantifenxiFill } from "./components/old-outlined/ZhuantifenxiFill";
|
|
399
379
|
export { default as Zhutizhibiao } from "./components/old-outlined/Zhutizhibiao";
|
|
400
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";
|
|
401
404
|
export { default as Await } from "./components/suggestion/Await";
|
|
402
405
|
export { default as CostReturn } from "./components/suggestion/CostReturn";
|
|
403
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
|