@firesoon/icons-react 3.0.6 → 3.0.8
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/es/components/fs/business-menu/License.d.ts +4 -0
- package/es/components/fs/business-menu/License.js +12 -0
- package/es/components/fs/business-menu/LicenseFill.d.ts +4 -0
- package/es/components/fs/business-menu/LicenseFill.js +12 -0
- package/es/components/fs/business-menu/Temporary.d.ts +4 -0
- package/es/components/fs/business-menu/Temporary.js +12 -0
- package/es/components/fs/business-menu/TemporaryFill.d.ts +4 -0
- package/es/components/fs/business-menu/TemporaryFill.js +12 -0
- package/es/components/fs/business-menu/index.d.ts +4 -0
- package/es/components/fs/business-menu/index.js +4 -0
- package/es/components/fs/suggestion/BenchmarkAnalysis.d.ts +4 -0
- package/es/components/fs/suggestion/BenchmarkAnalysis.js +12 -0
- package/es/components/fs/suggestion/index.d.ts +1 -0
- package/es/components/fs/suggestion/index.js +1 -0
- package/es/icons/fs/business-menu/license-fill.d.ts +17 -0
- package/es/icons/fs/business-menu/license-fill.js +17 -0
- package/es/icons/fs/business-menu/license.d.ts +17 -0
- package/es/icons/fs/business-menu/license.js +17 -0
- package/es/icons/fs/business-menu/temporary-fill.d.ts +17 -0
- package/es/icons/fs/business-menu/temporary-fill.js +17 -0
- package/es/icons/fs/business-menu/temporary.d.ts +17 -0
- package/es/icons/fs/business-menu/temporary.js +29 -0
- package/es/icons/fs/suggestion/benchmark-analysis.d.ts +17 -0
- package/es/icons/fs/suggestion/benchmark-analysis.js +17 -0
- package/es/index.d.ts +61 -56
- package/es/index.js +61 -56
- package/lib/components/fs/business-menu/License.d.ts +4 -0
- package/lib/components/fs/business-menu/License.js +20 -0
- package/lib/components/fs/business-menu/LicenseFill.d.ts +4 -0
- package/lib/components/fs/business-menu/LicenseFill.js +20 -0
- package/lib/components/fs/business-menu/Temporary.d.ts +4 -0
- package/lib/components/fs/business-menu/Temporary.js +20 -0
- package/lib/components/fs/business-menu/TemporaryFill.d.ts +4 -0
- package/lib/components/fs/business-menu/TemporaryFill.js +20 -0
- package/lib/components/fs/business-menu/index.d.ts +4 -0
- package/lib/components/fs/business-menu/index.js +28 -0
- package/lib/components/fs/suggestion/BenchmarkAnalysis.d.ts +4 -0
- package/lib/components/fs/suggestion/BenchmarkAnalysis.js +20 -0
- package/lib/components/fs/suggestion/index.d.ts +1 -0
- package/lib/components/fs/suggestion/index.js +7 -0
- package/lib/icons/fs/business-menu/license-fill.d.ts +17 -0
- package/lib/icons/fs/business-menu/license-fill.js +24 -0
- package/lib/icons/fs/business-menu/license.d.ts +17 -0
- package/lib/icons/fs/business-menu/license.js +24 -0
- package/lib/icons/fs/business-menu/temporary-fill.d.ts +17 -0
- package/lib/icons/fs/business-menu/temporary-fill.js +24 -0
- package/lib/icons/fs/business-menu/temporary.d.ts +17 -0
- package/lib/icons/fs/business-menu/temporary.js +36 -0
- package/lib/icons/fs/suggestion/benchmark-analysis.d.ts +17 -0
- package/lib/icons/fs/suggestion/benchmark-analysis.js +24 -0
- package/lib/index.d.ts +61 -56
- package/lib/index.js +91 -56
- package/package.json +1 -1
|
@@ -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/license";
|
|
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: 'license',
|
|
10
|
+
"icon-type": 'fs/business-menu'
|
|
11
|
+
}));
|
|
12
|
+
});
|
|
@@ -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/license-fill";
|
|
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: 'license-fill',
|
|
10
|
+
"icon-type": 'fs/business-menu'
|
|
11
|
+
}));
|
|
12
|
+
});
|
|
@@ -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/temporary";
|
|
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: 'temporary',
|
|
10
|
+
"icon-type": 'fs/business-menu'
|
|
11
|
+
}));
|
|
12
|
+
});
|
|
@@ -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/temporary-fill";
|
|
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: 'temporary-fill',
|
|
10
|
+
"icon-type": 'fs/business-menu'
|
|
11
|
+
}));
|
|
12
|
+
});
|
|
@@ -65,6 +65,8 @@ export { default as LeadingIn } from './LeadingIn';
|
|
|
65
65
|
export { default as LeadingInFill } from './LeadingInFill';
|
|
66
66
|
export { default as LeadinginManagement } from './LeadinginManagement';
|
|
67
67
|
export { default as LeadinginManagementFill } from './LeadinginManagementFill';
|
|
68
|
+
export { default as License } from './License';
|
|
69
|
+
export { default as LicenseFill } from './LicenseFill';
|
|
68
70
|
export { default as ListEdit } from './ListEdit';
|
|
69
71
|
export { default as ListEditFill } from './ListEditFill';
|
|
70
72
|
export { default as Listing } from './Listing';
|
|
@@ -116,6 +118,8 @@ export { default as TargetStatistics } from './TargetStatistics';
|
|
|
116
118
|
export { default as TargetStatisticsFill } from './TargetStatisticsFill';
|
|
117
119
|
export { default as TargetView } from './TargetView';
|
|
118
120
|
export { default as TargetViewFill } from './TargetViewFill';
|
|
121
|
+
export { default as Temporary } from './Temporary';
|
|
122
|
+
export { default as TemporaryFill } from './TemporaryFill';
|
|
119
123
|
export { default as ThirdParty } from './ThirdParty';
|
|
120
124
|
export { default as ThirdPartyFill } from './ThirdPartyFill';
|
|
121
125
|
export { default as TopicAnalyse } from './TopicAnalyse';
|
|
@@ -65,6 +65,8 @@ export { default as LeadingIn } from "./LeadingIn";
|
|
|
65
65
|
export { default as LeadingInFill } from "./LeadingInFill";
|
|
66
66
|
export { default as LeadinginManagement } from "./LeadinginManagement";
|
|
67
67
|
export { default as LeadinginManagementFill } from "./LeadinginManagementFill";
|
|
68
|
+
export { default as License } from "./License";
|
|
69
|
+
export { default as LicenseFill } from "./LicenseFill";
|
|
68
70
|
export { default as ListEdit } from "./ListEdit";
|
|
69
71
|
export { default as ListEditFill } from "./ListEditFill";
|
|
70
72
|
export { default as Listing } from "./Listing";
|
|
@@ -116,6 +118,8 @@ export { default as TargetStatistics } from "./TargetStatistics";
|
|
|
116
118
|
export { default as TargetStatisticsFill } from "./TargetStatisticsFill";
|
|
117
119
|
export { default as TargetView } from "./TargetView";
|
|
118
120
|
export { default as TargetViewFill } from "./TargetViewFill";
|
|
121
|
+
export { default as Temporary } from "./Temporary";
|
|
122
|
+
export { default as TemporaryFill } from "./TemporaryFill";
|
|
119
123
|
export { default as ThirdParty } from "./ThirdParty";
|
|
120
124
|
export { default as ThirdPartyFill } from "./ThirdPartyFill";
|
|
121
125
|
export { default as TopicAnalyse } from "./TopicAnalyse";
|
|
@@ -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/suggestion/benchmark-analysis";
|
|
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: 'benchmark-analysis',
|
|
10
|
+
"icon-type": 'fs/suggestion'
|
|
11
|
+
}));
|
|
12
|
+
});
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as Await } from './Await';
|
|
2
|
+
export { default as BenchmarkAnalysis } from './BenchmarkAnalysis';
|
|
2
3
|
export { default as ClaimFinish } from './ClaimFinish';
|
|
3
4
|
export { default as ClaimsFail } from './ClaimsFail';
|
|
4
5
|
export { default as CostReturn } from './CostReturn';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as Await } from "./Await";
|
|
2
|
+
export { default as BenchmarkAnalysis } from "./BenchmarkAnalysis";
|
|
2
3
|
export { default as ClaimFinish } from "./ClaimFinish";
|
|
3
4
|
export { default as ClaimsFail } from "./ClaimsFail";
|
|
4
5
|
export { default as CostReturn } from "./CostReturn";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "license-fill",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"d": "M880 112a32 32 0 0132 32v736a32 32 0 01-32 32H144a32 32 0 01-32-32V144a32 32 0 0132-32h736zM664 288h-48a8 8 0 00-8 8v188.03a128 128 0 1064 0l-.06-67.84h56.44l2.56-.45a8 8 0 005.44-7.61v-48a8 8 0 00-8-8l-56.44.06L672 296l-.38-2.56A8 8 0 00664 288zM440 640H264a8 8 0 00-8 8v48a8 8 0 008 8h176a8 8 0 008-8v-48a8 8 0 00-8-8zm200-96a64 64 0 110 128 64 64 0 010-128zm-200-64H264a8 8 0 00-8 8v48a8 8 0 008 8h176a8 8 0 008-8v-48a8 8 0 00-8-8zm64-160H264a8 8 0 00-8 8v48a8 8 0 008 8h240a8 8 0 008-8v-48a8 8 0 00-8-8z"
|
|
12
|
+
},
|
|
13
|
+
"children": []
|
|
14
|
+
}]
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
export default node;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "license",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"d": "M880 112a32 32 0 0132 32v736a32 32 0 01-32 32H144a32 32 0 01-32-32V144a32 32 0 0132-32h736zm-32 64H176v672h672V176zM664 288a8.1 8.1 0 017.62 5.44L672 296l-.06 56.2h56.44c4.42 0 8 3.51 8 7.93v48a8 8 0 01-5.44 7.61l-2.56.39-56.44.06.06 67.84a128 128 0 11-64 0V296a8 8 0 018-8zM440 640a8 8 0 018 8v48a8 8 0 01-8 8H264a8 8 0 01-8-8v-48a8 8 0 018-8h176zm200-96a64 64 0 100 128 64 64 0 000-128zm-200-64a8 8 0 018 8v48a8 8 0 01-8 8H264a8 8 0 01-8-8v-48a8 8 0 018-8h176zm64-160a8 8 0 018 8v48a8 8 0 01-8 8H264a8 8 0 01-8-8v-48a8 8 0 018-8h240z"
|
|
12
|
+
},
|
|
13
|
+
"children": []
|
|
14
|
+
}]
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
export default node;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "temporary-fill",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"d": "M628.16 64a32 32 0 0120.8 7.68L852.8 246.4a32 32 0 0111.2 24.32V928a32 32 0 01-32 32H192a32 32 0 01-32-32V96a32 32 0 0132-32zM480 352h-64a8 8 0 00-8 8v248a8 8 0 008 8h248a8 8 0 008-8v-64a8 8 0 00-8-8l-176-.06V360a8 8 0 00-5.44-7.62L480 352z"
|
|
12
|
+
},
|
|
13
|
+
"children": []
|
|
14
|
+
}]
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
export default node;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "temporary",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"d": "M628.16 64a32 32 0 0120.8 7.68L852.8 246.4a32 32 0 0111.2 24.32V928a32 32 0 01-32 32H192a32 32 0 01-32-32V96a32 32 0 0132-32zm-13.95 64H224v768h576V288L614.2 128z"
|
|
12
|
+
},
|
|
13
|
+
"children": []
|
|
14
|
+
}, {
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"d": "M416 352h64q8 0 8 8v248q0 8-8 8h-64q-8 0-8-8V360q0-8 8-8z"
|
|
18
|
+
},
|
|
19
|
+
"children": []
|
|
20
|
+
}, {
|
|
21
|
+
"tag": "path",
|
|
22
|
+
"attrs": {
|
|
23
|
+
"d": "M671.94 544.06v64q0 8-8 8h-248q-8 0-8-8v-64q0-8 8-8h248q8 0 8 8z"
|
|
24
|
+
},
|
|
25
|
+
"children": []
|
|
26
|
+
}]
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
export default node;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "benchmark-analysis",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"d": "M534 704c1.18 0 2.35.07 3.49.2l-5.55-.07C743.59 706.83 912 752.3 912 808c0 57.44-179.09 104-400 104s-400-46.56-400-104c0-36.8 73.53-69.14 184.47-87.63A27.73 27.73 0 01301 720a27 27 0 015.1 53.52l.04.26C236.35 782.8 192 795.7 192 808c0 22.1 143.27 49.05 320 49.05S832 830.09 832 808c0-21.12-130.93-44.05-296.86-46.02L534 762a29 29 0 010-58zM416 112a32 32 0 0132 32v23.58c75.1-13.61 140.22-8.47 195.39 15.42 70.29 30.44 143.82 36.78 220.61 19v287.17c-102.64 30.44-189.1 30.44-259.39 0-50.52-21.89-102.73-31.31-156.61-28.28V736a32 32 0 01-64 0V144a32 32 0 0132-32z"
|
|
12
|
+
},
|
|
13
|
+
"children": []
|
|
14
|
+
}]
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
export default node;
|
package/es/index.d.ts
CHANGED
|
@@ -65,6 +65,8 @@ export { default as LeadingIn } from './components/fs/business-menu/LeadingIn';
|
|
|
65
65
|
export { default as LeadingInFill } from './components/fs/business-menu/LeadingInFill';
|
|
66
66
|
export { default as LeadinginManagement } from './components/fs/business-menu/LeadinginManagement';
|
|
67
67
|
export { default as LeadinginManagementFill } from './components/fs/business-menu/LeadinginManagementFill';
|
|
68
|
+
export { default as License } from './components/fs/business-menu/License';
|
|
69
|
+
export { default as LicenseFill } from './components/fs/business-menu/LicenseFill';
|
|
68
70
|
export { default as ListEdit } from './components/fs/business-menu/ListEdit';
|
|
69
71
|
export { default as ListEditFill } from './components/fs/business-menu/ListEditFill';
|
|
70
72
|
export { default as Listing } from './components/fs/business-menu/Listing';
|
|
@@ -116,6 +118,8 @@ export { default as TargetStatistics } from './components/fs/business-menu/Targe
|
|
|
116
118
|
export { default as TargetStatisticsFill } from './components/fs/business-menu/TargetStatisticsFill';
|
|
117
119
|
export { default as TargetView } from './components/fs/business-menu/TargetView';
|
|
118
120
|
export { default as TargetViewFill } from './components/fs/business-menu/TargetViewFill';
|
|
121
|
+
export { default as Temporary } from './components/fs/business-menu/Temporary';
|
|
122
|
+
export { default as TemporaryFill } from './components/fs/business-menu/TemporaryFill';
|
|
119
123
|
export { default as ThirdParty } from './components/fs/business-menu/ThirdParty';
|
|
120
124
|
export { default as ThirdPartyFill } from './components/fs/business-menu/ThirdPartyFill';
|
|
121
125
|
export { default as TopicAnalyse } from './components/fs/business-menu/TopicAnalyse';
|
|
@@ -125,6 +129,29 @@ export { default as UserManagement } from './components/fs/business-menu/UserMan
|
|
|
125
129
|
export { default as UserManagementFill } from './components/fs/business-menu/UserManagementFill';
|
|
126
130
|
export { default as WarningVerify } from './components/fs/business-menu/WarningVerify';
|
|
127
131
|
export { default as WarningVerifyFill } from './components/fs/business-menu/WarningVerifyFill';
|
|
132
|
+
export { default as Bingzuwentifankui } from './components/fs/old-twocolor/Bingzuwentifankui';
|
|
133
|
+
export { default as BingzuwentifankuiNew } from './components/fs/old-twocolor/BingzuwentifankuiNew';
|
|
134
|
+
export { default as CasesDoubt } from './components/fs/old-twocolor/CasesDoubt';
|
|
135
|
+
export { default as Empty404 } from './components/fs/old-twocolor/Empty404';
|
|
136
|
+
export { default as EmptyNetwork } from './components/fs/old-twocolor/EmptyNetwork';
|
|
137
|
+
export { default as EmptyNormal } from './components/fs/old-twocolor/EmptyNormal';
|
|
138
|
+
export { default as EmptyPermission } from './components/fs/old-twocolor/EmptyPermission';
|
|
139
|
+
export { default as EmptyTable } from './components/fs/old-twocolor/EmptyTable';
|
|
140
|
+
export { default as FailCircle } from './components/fs/old-twocolor/FailCircle';
|
|
141
|
+
export { default as Html404 } from './components/fs/old-twocolor/Html404';
|
|
142
|
+
export { default as Huanzhejibenxinxi } from './components/fs/old-twocolor/Huanzhejibenxinxi';
|
|
143
|
+
export { default as LoadingCircle } from './components/fs/old-twocolor/LoadingCircle';
|
|
144
|
+
export { default as MasterMedicalOrder } from './components/fs/old-twocolor/MasterMedicalOrder';
|
|
145
|
+
export { default as MissFill } from './components/fs/old-twocolor/MissFill';
|
|
146
|
+
export { default as MonitorTrend } from './components/fs/old-twocolor/MonitorTrend';
|
|
147
|
+
export { default as NoNetwork } from './components/fs/old-twocolor/NoNetwork';
|
|
148
|
+
export { default as NoPermissions } from './components/fs/old-twocolor/NoPermissions';
|
|
149
|
+
export { default as ReHospitalizedTag } from './components/fs/old-twocolor/ReHospitalizedTag';
|
|
150
|
+
export { default as Ruotishi } from './components/fs/old-twocolor/Ruotishi';
|
|
151
|
+
export { default as ServerError } from './components/fs/old-twocolor/ServerError';
|
|
152
|
+
export { default as SuccessCircle } from './components/fs/old-twocolor/SuccessCircle';
|
|
153
|
+
export { default as Tishi } from './components/fs/old-twocolor/Tishi';
|
|
154
|
+
export { default as WaitCircle } from './components/fs/old-twocolor/WaitCircle';
|
|
128
155
|
export { default as Add } from './components/fs/currency/Add';
|
|
129
156
|
export { default as AddFill } from './components/fs/currency/AddFill';
|
|
130
157
|
export { default as Admin } from './components/fs/currency/Admin';
|
|
@@ -219,29 +246,40 @@ export { default as Unfold } from './components/fs/currency/Unfold';
|
|
|
219
246
|
export { default as UnfoldFill } from './components/fs/currency/UnfoldFill';
|
|
220
247
|
export { default as Visible } from './components/fs/currency/Visible';
|
|
221
248
|
export { default as VisibleFill } from './components/fs/currency/VisibleFill';
|
|
222
|
-
export { default as
|
|
223
|
-
export { default as
|
|
224
|
-
export { default as
|
|
225
|
-
export { default as
|
|
226
|
-
export { default as
|
|
227
|
-
export { default as
|
|
228
|
-
export { default as
|
|
229
|
-
export { default as
|
|
230
|
-
export { default as
|
|
231
|
-
export { default as
|
|
232
|
-
export { default as
|
|
233
|
-
export { default as
|
|
234
|
-
export { default as
|
|
235
|
-
export { default as
|
|
236
|
-
export { default as
|
|
237
|
-
export { default as
|
|
238
|
-
export { default as
|
|
239
|
-
export { default as
|
|
240
|
-
export { default as
|
|
241
|
-
export { default as
|
|
242
|
-
export { default as
|
|
243
|
-
export { default as
|
|
244
|
-
export { default as
|
|
249
|
+
export { default as Await } from './components/fs/suggestion/Await';
|
|
250
|
+
export { default as BenchmarkAnalysis } from './components/fs/suggestion/BenchmarkAnalysis';
|
|
251
|
+
export { default as ClaimFinish } from './components/fs/suggestion/ClaimFinish';
|
|
252
|
+
export { default as ClaimsFail } from './components/fs/suggestion/ClaimsFail';
|
|
253
|
+
export { default as CostReturn } from './components/fs/suggestion/CostReturn';
|
|
254
|
+
export { default as CostViolate } from './components/fs/suggestion/CostViolate';
|
|
255
|
+
export { default as CostWarning } from './components/fs/suggestion/CostWarning';
|
|
256
|
+
export { default as DailyOperation } from './components/fs/suggestion/DailyOperation';
|
|
257
|
+
export { default as DrgsColor } from './components/fs/suggestion/DrgsColor';
|
|
258
|
+
export { default as Fail } from './components/fs/suggestion/Fail';
|
|
259
|
+
export { default as FailFill } from './components/fs/suggestion/FailFill';
|
|
260
|
+
export { default as HospitalTransfer } from './components/fs/suggestion/HospitalTransfer';
|
|
261
|
+
export { default as Inform } from './components/fs/suggestion/Inform';
|
|
262
|
+
export { default as Information } from './components/fs/suggestion/Information';
|
|
263
|
+
export { default as KeyGroup } from './components/fs/suggestion/KeyGroup';
|
|
264
|
+
export { default as Keyoffice } from './components/fs/suggestion/Keyoffice';
|
|
265
|
+
export { default as Lack } from './components/fs/suggestion/Lack';
|
|
266
|
+
export { default as Notice } from './components/fs/suggestion/Notice';
|
|
267
|
+
export { default as NoticeFill } from './components/fs/suggestion/NoticeFill';
|
|
268
|
+
export { default as Overtime } from './components/fs/suggestion/Overtime';
|
|
269
|
+
export { default as Problem } from './components/fs/suggestion/Problem';
|
|
270
|
+
export { default as ProblemFill } from './components/fs/suggestion/ProblemFill';
|
|
271
|
+
export { default as Processing } from './components/fs/suggestion/Processing';
|
|
272
|
+
export { default as RecordQuality } from './components/fs/suggestion/RecordQuality';
|
|
273
|
+
export { default as Rectification } from './components/fs/suggestion/Rectification';
|
|
274
|
+
export { default as Rehospitalization } from './components/fs/suggestion/Rehospitalization';
|
|
275
|
+
export { default as Sendback } from './components/fs/suggestion/Sendback';
|
|
276
|
+
export { default as Success } from './components/fs/suggestion/Success';
|
|
277
|
+
export { default as SuccessFill } from './components/fs/suggestion/SuccessFill';
|
|
278
|
+
export { default as UndipAccountColor } from './components/fs/suggestion/UndipAccountColor';
|
|
279
|
+
export { default as UndrgAccountColor } from './components/fs/suggestion/UndrgAccountColor';
|
|
280
|
+
export { default as UninsuranceAccountColor } from './components/fs/suggestion/UninsuranceAccountColor';
|
|
281
|
+
export { default as UnreasonableHospitalized } from './components/fs/suggestion/UnreasonableHospitalized';
|
|
282
|
+
export { default as Warning } from './components/fs/suggestion/Warning';
|
|
245
283
|
export { default as Account } from './components/fs/old-outlined/Account';
|
|
246
284
|
export { default as AccountFill } from './components/fs/old-outlined/AccountFill';
|
|
247
285
|
export { default as AcountManage } from './components/fs/old-outlined/AcountManage';
|
|
@@ -435,39 +473,6 @@ export { default as Zhuantifenxi } from './components/fs/old-outlined/Zhuantifen
|
|
|
435
473
|
export { default as ZhuantifenxiFill } from './components/fs/old-outlined/ZhuantifenxiFill';
|
|
436
474
|
export { default as Zhutizhibiao } from './components/fs/old-outlined/Zhutizhibiao';
|
|
437
475
|
export { default as Zygl } from './components/fs/old-outlined/Zygl';
|
|
438
|
-
export { default as Await } from './components/fs/suggestion/Await';
|
|
439
|
-
export { default as ClaimFinish } from './components/fs/suggestion/ClaimFinish';
|
|
440
|
-
export { default as ClaimsFail } from './components/fs/suggestion/ClaimsFail';
|
|
441
|
-
export { default as CostReturn } from './components/fs/suggestion/CostReturn';
|
|
442
|
-
export { default as CostViolate } from './components/fs/suggestion/CostViolate';
|
|
443
|
-
export { default as CostWarning } from './components/fs/suggestion/CostWarning';
|
|
444
|
-
export { default as DailyOperation } from './components/fs/suggestion/DailyOperation';
|
|
445
|
-
export { default as DrgsColor } from './components/fs/suggestion/DrgsColor';
|
|
446
|
-
export { default as Fail } from './components/fs/suggestion/Fail';
|
|
447
|
-
export { default as FailFill } from './components/fs/suggestion/FailFill';
|
|
448
|
-
export { default as HospitalTransfer } from './components/fs/suggestion/HospitalTransfer';
|
|
449
|
-
export { default as Inform } from './components/fs/suggestion/Inform';
|
|
450
|
-
export { default as Information } from './components/fs/suggestion/Information';
|
|
451
|
-
export { default as KeyGroup } from './components/fs/suggestion/KeyGroup';
|
|
452
|
-
export { default as Keyoffice } from './components/fs/suggestion/Keyoffice';
|
|
453
|
-
export { default as Lack } from './components/fs/suggestion/Lack';
|
|
454
|
-
export { default as Notice } from './components/fs/suggestion/Notice';
|
|
455
|
-
export { default as NoticeFill } from './components/fs/suggestion/NoticeFill';
|
|
456
|
-
export { default as Overtime } from './components/fs/suggestion/Overtime';
|
|
457
|
-
export { default as Problem } from './components/fs/suggestion/Problem';
|
|
458
|
-
export { default as ProblemFill } from './components/fs/suggestion/ProblemFill';
|
|
459
|
-
export { default as Processing } from './components/fs/suggestion/Processing';
|
|
460
|
-
export { default as RecordQuality } from './components/fs/suggestion/RecordQuality';
|
|
461
|
-
export { default as Rectification } from './components/fs/suggestion/Rectification';
|
|
462
|
-
export { default as Rehospitalization } from './components/fs/suggestion/Rehospitalization';
|
|
463
|
-
export { default as Sendback } from './components/fs/suggestion/Sendback';
|
|
464
|
-
export { default as Success } from './components/fs/suggestion/Success';
|
|
465
|
-
export { default as SuccessFill } from './components/fs/suggestion/SuccessFill';
|
|
466
|
-
export { default as UndipAccountColor } from './components/fs/suggestion/UndipAccountColor';
|
|
467
|
-
export { default as UndrgAccountColor } from './components/fs/suggestion/UndrgAccountColor';
|
|
468
|
-
export { default as UninsuranceAccountColor } from './components/fs/suggestion/UninsuranceAccountColor';
|
|
469
|
-
export { default as UnreasonableHospitalized } from './components/fs/suggestion/UnreasonableHospitalized';
|
|
470
|
-
export { default as Warning } from './components/fs/suggestion/Warning';
|
|
471
476
|
export { default as Payment } from './components/sbt/business-menu/Payment';
|
|
472
477
|
export { default as PaymentFill } from './components/sbt/business-menu/PaymentFill';
|
|
473
478
|
export { default as SbtLink } from './components/sbt/currency/SbtLink';
|