@firesoon/icons-react 3.0.9 → 3.0.11
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/FsChoose.d.ts +4 -0
- package/es/components/fs/business-menu/FsChoose.js +12 -0
- package/es/components/fs/business-menu/index.d.ts +1 -0
- package/es/components/fs/business-menu/index.js +1 -0
- package/es/components/fs/suggestion/FsIntercept.d.ts +4 -0
- package/es/components/fs/suggestion/FsIntercept.js +12 -0
- package/es/components/fs/suggestion/FsVip.d.ts +4 -0
- package/es/components/fs/suggestion/FsVip.js +12 -0
- package/es/components/fs/suggestion/index.d.ts +2 -0
- package/es/components/fs/suggestion/index.js +2 -0
- package/es/components/sbt/business-menu/SbtAddressbook.d.ts +4 -0
- package/es/components/sbt/business-menu/SbtAddressbook.js +12 -0
- package/es/components/sbt/business-menu/SbtRealname.d.ts +4 -0
- package/es/components/sbt/business-menu/SbtRealname.js +12 -0
- package/es/components/sbt/business-menu/index.d.ts +2 -0
- package/es/components/sbt/business-menu/index.js +3 -1
- package/es/components/sbt/currency/SbtModify.d.ts +4 -0
- package/es/components/sbt/currency/SbtModify.js +12 -0
- package/es/icons/fs/business-menu/fs-choose.d.ts +17 -0
- package/es/icons/fs/business-menu/fs-choose.js +23 -0
- package/es/icons/fs/suggestion/fs-intercept.d.ts +17 -0
- package/es/icons/fs/suggestion/fs-intercept.js +17 -0
- package/es/icons/fs/suggestion/fs-vip.d.ts +17 -0
- package/es/icons/fs/suggestion/fs-vip.js +17 -0
- package/es/icons/sbt/business-menu/sbt-addressbook.d.ts +17 -0
- package/es/icons/sbt/business-menu/sbt-addressbook.js +17 -0
- package/es/icons/sbt/business-menu/sbt-realname.d.ts +17 -0
- package/es/icons/sbt/business-menu/sbt-realname.js +17 -0
- package/es/icons/sbt/currency/sbt-modify.d.ts +17 -0
- package/es/icons/sbt/currency/sbt-modify.js +17 -0
- package/es/index.d.ts +41 -35
- package/es/index.js +41 -35
- package/lib/components/fs/business-menu/FsChoose.d.ts +4 -0
- package/lib/components/fs/business-menu/FsChoose.js +20 -0
- package/lib/components/fs/business-menu/index.d.ts +1 -0
- package/lib/components/fs/business-menu/index.js +7 -0
- package/lib/components/fs/suggestion/FsIntercept.d.ts +4 -0
- package/lib/components/fs/suggestion/FsIntercept.js +20 -0
- package/lib/components/fs/suggestion/FsVip.d.ts +4 -0
- package/lib/components/fs/suggestion/FsVip.js +20 -0
- package/lib/components/fs/suggestion/index.d.ts +2 -0
- package/lib/components/fs/suggestion/index.js +14 -0
- package/lib/components/sbt/business-menu/SbtAddressbook.d.ts +4 -0
- package/lib/components/sbt/business-menu/SbtAddressbook.js +20 -0
- package/lib/components/sbt/business-menu/SbtRealname.d.ts +4 -0
- package/lib/components/sbt/business-menu/SbtRealname.js +20 -0
- package/lib/components/sbt/business-menu/index.d.ts +2 -0
- package/lib/components/sbt/business-menu/index.js +14 -0
- package/lib/components/sbt/currency/SbtModify.d.ts +4 -0
- package/lib/components/sbt/currency/SbtModify.js +20 -0
- package/lib/icons/fs/business-menu/fs-choose.d.ts +17 -0
- package/lib/icons/fs/business-menu/fs-choose.js +30 -0
- package/lib/icons/fs/suggestion/fs-intercept.d.ts +17 -0
- package/lib/icons/fs/suggestion/fs-intercept.js +24 -0
- package/lib/icons/fs/suggestion/fs-vip.d.ts +17 -0
- package/lib/icons/fs/suggestion/fs-vip.js +24 -0
- package/lib/icons/sbt/business-menu/sbt-addressbook.d.ts +17 -0
- package/lib/icons/sbt/business-menu/sbt-addressbook.js +24 -0
- package/lib/icons/sbt/business-menu/sbt-realname.d.ts +17 -0
- package/lib/icons/sbt/business-menu/sbt-realname.js +24 -0
- package/lib/icons/sbt/currency/sbt-modify.d.ts +17 -0
- package/lib/icons/sbt/currency/sbt-modify.js +24 -0
- package/lib/index.d.ts +41 -35
- package/lib/index.js +77 -35
- 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/fs-choose";
|
|
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: 'fs-choose',
|
|
10
|
+
"icon-type": 'fs/business-menu'
|
|
11
|
+
}));
|
|
12
|
+
});
|
|
@@ -36,6 +36,7 @@ export { default as DrgCheckFill } from './DrgCheckFill';
|
|
|
36
36
|
export { default as FsAppearance } from './FsAppearance';
|
|
37
37
|
export { default as FsAppearanceFill } from './FsAppearanceFill';
|
|
38
38
|
export { default as FsBringintoFill } from './FsBringintoFill';
|
|
39
|
+
export { default as FsChoose } from './FsChoose';
|
|
39
40
|
export { default as FsDatabase } from './FsDatabase';
|
|
40
41
|
export { default as FsDatabaseFill } from './FsDatabaseFill';
|
|
41
42
|
export { default as FsField } from './FsField';
|
|
@@ -36,6 +36,7 @@ export { default as DrgCheckFill } from "./DrgCheckFill";
|
|
|
36
36
|
export { default as FsAppearance } from "./FsAppearance";
|
|
37
37
|
export { default as FsAppearanceFill } from "./FsAppearanceFill";
|
|
38
38
|
export { default as FsBringintoFill } from "./FsBringintoFill";
|
|
39
|
+
export { default as FsChoose } from "./FsChoose";
|
|
39
40
|
export { default as FsDatabase } from "./FsDatabase";
|
|
40
41
|
export { default as FsDatabaseFill } from "./FsDatabaseFill";
|
|
41
42
|
export { default as FsField } from "./FsField";
|
|
@@ -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/fs-intercept";
|
|
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: 'fs-intercept',
|
|
10
|
+
"icon-type": 'fs/suggestion'
|
|
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/suggestion/fs-vip";
|
|
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: 'fs-vip',
|
|
10
|
+
"icon-type": 'fs/suggestion'
|
|
11
|
+
}));
|
|
12
|
+
});
|
|
@@ -9,7 +9,9 @@ export { default as DailyOperation } from './DailyOperation';
|
|
|
9
9
|
export { default as DrgsColor } from './DrgsColor';
|
|
10
10
|
export { default as Fail } from './Fail';
|
|
11
11
|
export { default as FailFill } from './FailFill';
|
|
12
|
+
export { default as FsIntercept } from './FsIntercept';
|
|
12
13
|
export { default as FsSpecial } from './FsSpecial';
|
|
14
|
+
export { default as FsVip } from './FsVip';
|
|
13
15
|
export { default as HospitalTransfer } from './HospitalTransfer';
|
|
14
16
|
export { default as Inform } from './Inform';
|
|
15
17
|
export { default as Information } from './Information';
|
|
@@ -9,7 +9,9 @@ export { default as DailyOperation } from "./DailyOperation";
|
|
|
9
9
|
export { default as DrgsColor } from "./DrgsColor";
|
|
10
10
|
export { default as Fail } from "./Fail";
|
|
11
11
|
export { default as FailFill } from "./FailFill";
|
|
12
|
+
export { default as FsIntercept } from "./FsIntercept";
|
|
12
13
|
export { default as FsSpecial } from "./FsSpecial";
|
|
14
|
+
export { default as FsVip } from "./FsVip";
|
|
13
15
|
export { default as HospitalTransfer } from "./HospitalTransfer";
|
|
14
16
|
export { default as Inform } from "./Inform";
|
|
15
17
|
export { default as Information } from "./Information";
|
|
@@ -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/sbt/business-menu/sbt-addressbook";
|
|
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: 'sbt-addressbook',
|
|
10
|
+
"icon-type": 'sbt/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/sbt/business-menu/sbt-realname";
|
|
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: 'sbt-realname',
|
|
10
|
+
"icon-type": 'sbt/business-menu'
|
|
11
|
+
}));
|
|
12
|
+
});
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export { default as Payment } from './Payment';
|
|
2
2
|
export { default as PaymentFill } from './PaymentFill';
|
|
3
|
+
export { default as SbtAddressbook } from './SbtAddressbook';
|
|
3
4
|
export { default as SbtApiRecord } from './SbtApiRecord';
|
|
4
5
|
export { default as SbtPingan } from './SbtPingan';
|
|
6
|
+
export { default as SbtRealname } from './SbtRealname';
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export { default as Payment } from "./Payment";
|
|
2
2
|
export { default as PaymentFill } from "./PaymentFill";
|
|
3
|
+
export { default as SbtAddressbook } from "./SbtAddressbook";
|
|
3
4
|
export { default as SbtApiRecord } from "./SbtApiRecord";
|
|
4
|
-
export { default as SbtPingan } from "./SbtPingan";
|
|
5
|
+
export { default as SbtPingan } from "./SbtPingan";
|
|
6
|
+
export { default as SbtRealname } from "./SbtRealname";
|
|
@@ -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/sbt/currency/sbt-modify";
|
|
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: 'sbt-modify',
|
|
10
|
+
"icon-type": 'sbt/currency'
|
|
11
|
+
}));
|
|
12
|
+
});
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "fs-choose",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"d": "M112 112h640c88.37 0 160 71.63 160 160v640L112 112z"
|
|
12
|
+
},
|
|
13
|
+
"children": []
|
|
14
|
+
}, {
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"d": "M775.12 229.46L639.37 368.3l-77.58-79.34L523 328.63l116.36 119 174.55-178.5z"
|
|
18
|
+
},
|
|
19
|
+
"children": []
|
|
20
|
+
}]
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
export default node;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "fs-intercept",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"d": "M512 64c247.42 0 448 200.58 448 448S759.42 960 512 960 64 759.42 64 512 264.58 64 512 64zm0 64c-212.08 0-384 171.92-384 384s171.92 384 384 384 384-171.92 384-384-171.92-384-384-384zM387.7 260.1v92.95h51.7v55.55h-51.7V501c19.8-8.8 39.6-18.15 58.85-28.05v56.1c-16.68 8.1-33.78 15.8-50.93 23.43L387.7 556v148.5c0 38.5-19.25 57.75-57.75 57.75H278.8l-12.1-53.9c15.4 2.2 29.7 3.85 44 3.85s21.45-7.15 21.45-21.45V578c-20.9 7.7-42.35 14.85-63.8 21.45L253.5 542.8c26.4-5.5 52.8-12.65 78.65-21.45V408.6H265.6v-55.55h66.55V260.1h55.55zM765 692.4v56.1H436.1v-56.1H765zm-38.5-149.05v54.45H476.25v-54.45H726.5zM673.7 260.1l55.55 19.8c-17.6 44.55-36.85 84.7-58.85 119.9h75.35v54.45H454.8V399.8h157.3c23.1-43.45 44-90.2 61.6-139.7zm-157.3 6.6c19.8 30.25 39.05 63.8 57.75 100.1l-47.3 23.65a707.88 707.88 0 00-58.3-101.2z"
|
|
12
|
+
},
|
|
13
|
+
"children": []
|
|
14
|
+
}]
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
export default node;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "fs-vip",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"d": "M832 256c70.7 0 128 57.3 128 128v256c0 70.7-57.3 128-128 128H192c-70.7 0-128-57.3-128-128V384c0-70.7 57.3-128 128-128h640zm-352.54 64l-159.1 185.14V320.2H192v31.91h32.13V704h96.23L640 320.2l-160.54-.2zm276.2 128H643.34v256h51.37v-92.5h58.91c29.06 0 50.4-10.62 64.1-32.03A89.17 89.17 0 00832 530c0-25.5-6.76-45.49-20.36-60.07-13.5-14.59-32.2-21.93-55.97-21.93zm-160.28 0H544v256h51.38V448zm140.13 44.26c16.05 0 27.6 2.76 34.64 8.16 7.05 5.51 10.57 14.49 10.57 27.03 0 10.4-1.57 18.46-4.8 24.17-5.97 10.4-17.12 15.6-33.56 15.6H694.7v-74.96z"
|
|
12
|
+
},
|
|
13
|
+
"children": []
|
|
14
|
+
}]
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
export default node;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "sbt-addressbook",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"d": "M688 112a32 32 0 0132 32v736a32 32 0 01-32 32H144a32 32 0 01-32-32V144a32 32 0 0132-32h544zm-32 64H176v672h480V176zM416 320c61.86 0 112 50.14 112 112 0 31.58-13.07 60.1-34.1 80.47 64.34 28.59 110.03 91.5 113.84 165.5.17.65.26 1.33.26 2.03v16a8 8 0 01-8 8h-48a8 8 0 01-8-8v-8c0-70.7-57.3-128-128-128s-128 57.3-128 128v8a8 8 0 01-8 8h-48a8 8 0 01-8-8v-16a8 8 0 01.26-2.03c3.8-74 49.5-136.91 113.83-165.5A111.66 111.66 0 01304 432c0-61.86 50.14-112 112-112zm0 64a48 48 0 100 96 48 48 0 000-96zm448 432a32 32 0 01-32 32h-80v-64h48v-80h-24a8 8 0 01-8-8v-48a8 8 0 018-8h24v-96h-24a8 8 0 01-8-8v-48a8 8 0 018-8h24v-96h-24a8 8 0 01-8-8v-48a8 8 0 018-8h24v-80h-48v-64h80a32 32 0 0132 32v112h40a8 8 0 018 8v48a8 8 0 01-8 8h-40v96h40a8 8 0 018 8v48a8 8 0 01-8 8h-40v96h40a8 8 0 018 8v48a8 8 0 01-8 8h-40v112z"
|
|
12
|
+
},
|
|
13
|
+
"children": []
|
|
14
|
+
}]
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
export default node;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "sbt-realname",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"d": "M928 160a32 32 0 0132 32v640a32 32 0 01-32 32H96a32 32 0 01-32-32V192a32 32 0 0132-32h832zm-32 64H128v576h768V224zM352 328c61.86 0 112 50.14 112 112 0 38.6-19.53 72.64-49.24 92.78 54.19 23.12 93.01 75.3 96.92 136.96A8.04 8.04 0 01512 672v16a8 8 0 01-8 8h-48a8 8 0 01-8-8v-8c0-53.02-42.98-96-96-96s-96 42.98-96 96v8a8 8 0 01-8 8h-48a8 8 0 01-8-8v-16c0-.79.11-1.55.33-2.26 3.9-61.66 42.72-113.84 96.91-136.96A111.87 111.87 0 01240 440c0-61.86 50.14-112 112-112zm440 280a8 8 0 018 8v48a8 8 0 01-8 8H584a8 8 0 01-8-8v-48a8 8 0 018-8h208zm7.32-244.6l30.86 36.78a8 8 0 01-.99 11.27l-171.6 143.98a8 8 0 01-10.77-.44 8.01 8.01 0 01-.38-.36l-86.97-86.97a8 8 0 010-11.32l33.94-33.94a8 8 0 0111.31 0l51.03 51.03 132.3-111a8 8 0 0111.27.98zM352 392a48 48 0 100 96 48 48 0 000-96z"
|
|
12
|
+
},
|
|
13
|
+
"children": []
|
|
14
|
+
}]
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
export default node;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
var node = {
|
|
2
|
+
"name": "sbt-modify",
|
|
3
|
+
"nodeTree": {
|
|
4
|
+
"tag": "svg",
|
|
5
|
+
"attrs": {
|
|
6
|
+
"viewBox": "0 0 1024 1024"
|
|
7
|
+
},
|
|
8
|
+
"children": [{
|
|
9
|
+
"tag": "path",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"d": "M727.96 270.12a32 32 0 010 45.25l-.26.25L314.23 719.9a8 8 0 01-5.67 2.28l-99.71-1.05a32 32 0 01-31.66-31.66l-1.05-99.6a8 8 0 012.4-5.8l413.91-404.7a32 32 0 0145 .25l90.51 90.5zm-66.55 22.62l-45.26-45.26-376.5 365.92 1.13 44.12 44.13 1.13 376.5-365.91zM183 784h657q8 0 8 8v48q0 8-8 8H183q-8 0-8-8v-48q0-8 8-8zM584 608h255q8 0 8 8v48q0 8-8 8H584q-8 0-8-8v-48q0-8 8-8z"
|
|
12
|
+
},
|
|
13
|
+
"children": []
|
|
14
|
+
}]
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
export default node;
|
package/es/index.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export { default as DrgCheckFill } from './components/fs/business-menu/DrgCheckF
|
|
|
36
36
|
export { default as FsAppearance } from './components/fs/business-menu/FsAppearance';
|
|
37
37
|
export { default as FsAppearanceFill } from './components/fs/business-menu/FsAppearanceFill';
|
|
38
38
|
export { default as FsBringintoFill } from './components/fs/business-menu/FsBringintoFill';
|
|
39
|
+
export { default as FsChoose } from './components/fs/business-menu/FsChoose';
|
|
39
40
|
export { default as FsDatabase } from './components/fs/business-menu/FsDatabase';
|
|
40
41
|
export { default as FsDatabaseFill } from './components/fs/business-menu/FsDatabaseFill';
|
|
41
42
|
export { default as FsField } from './components/fs/business-menu/FsField';
|
|
@@ -246,6 +247,43 @@ export { default as ServerError } from './components/fs/old-twocolor/ServerError
|
|
|
246
247
|
export { default as SuccessCircle } from './components/fs/old-twocolor/SuccessCircle';
|
|
247
248
|
export { default as Tishi } from './components/fs/old-twocolor/Tishi';
|
|
248
249
|
export { default as WaitCircle } from './components/fs/old-twocolor/WaitCircle';
|
|
250
|
+
export { default as Await } from './components/fs/suggestion/Await';
|
|
251
|
+
export { default as BenchmarkAnalysis } from './components/fs/suggestion/BenchmarkAnalysis';
|
|
252
|
+
export { default as ClaimFinish } from './components/fs/suggestion/ClaimFinish';
|
|
253
|
+
export { default as ClaimsFail } from './components/fs/suggestion/ClaimsFail';
|
|
254
|
+
export { default as CostReturn } from './components/fs/suggestion/CostReturn';
|
|
255
|
+
export { default as CostViolate } from './components/fs/suggestion/CostViolate';
|
|
256
|
+
export { default as CostWarning } from './components/fs/suggestion/CostWarning';
|
|
257
|
+
export { default as DailyOperation } from './components/fs/suggestion/DailyOperation';
|
|
258
|
+
export { default as DrgsColor } from './components/fs/suggestion/DrgsColor';
|
|
259
|
+
export { default as Fail } from './components/fs/suggestion/Fail';
|
|
260
|
+
export { default as FailFill } from './components/fs/suggestion/FailFill';
|
|
261
|
+
export { default as FsIntercept } from './components/fs/suggestion/FsIntercept';
|
|
262
|
+
export { default as FsSpecial } from './components/fs/suggestion/FsSpecial';
|
|
263
|
+
export { default as FsVip } from './components/fs/suggestion/FsVip';
|
|
264
|
+
export { default as HospitalTransfer } from './components/fs/suggestion/HospitalTransfer';
|
|
265
|
+
export { default as Inform } from './components/fs/suggestion/Inform';
|
|
266
|
+
export { default as Information } from './components/fs/suggestion/Information';
|
|
267
|
+
export { default as KeyGroup } from './components/fs/suggestion/KeyGroup';
|
|
268
|
+
export { default as Keyoffice } from './components/fs/suggestion/Keyoffice';
|
|
269
|
+
export { default as Lack } from './components/fs/suggestion/Lack';
|
|
270
|
+
export { default as Notice } from './components/fs/suggestion/Notice';
|
|
271
|
+
export { default as NoticeFill } from './components/fs/suggestion/NoticeFill';
|
|
272
|
+
export { default as Overtime } from './components/fs/suggestion/Overtime';
|
|
273
|
+
export { default as Problem } from './components/fs/suggestion/Problem';
|
|
274
|
+
export { default as ProblemFill } from './components/fs/suggestion/ProblemFill';
|
|
275
|
+
export { default as Processing } from './components/fs/suggestion/Processing';
|
|
276
|
+
export { default as RecordQuality } from './components/fs/suggestion/RecordQuality';
|
|
277
|
+
export { default as Rectification } from './components/fs/suggestion/Rectification';
|
|
278
|
+
export { default as Rehospitalization } from './components/fs/suggestion/Rehospitalization';
|
|
279
|
+
export { default as Sendback } from './components/fs/suggestion/Sendback';
|
|
280
|
+
export { default as Success } from './components/fs/suggestion/Success';
|
|
281
|
+
export { default as SuccessFill } from './components/fs/suggestion/SuccessFill';
|
|
282
|
+
export { default as UndipAccountColor } from './components/fs/suggestion/UndipAccountColor';
|
|
283
|
+
export { default as UndrgAccountColor } from './components/fs/suggestion/UndrgAccountColor';
|
|
284
|
+
export { default as UninsuranceAccountColor } from './components/fs/suggestion/UninsuranceAccountColor';
|
|
285
|
+
export { default as UnreasonableHospitalized } from './components/fs/suggestion/UnreasonableHospitalized';
|
|
286
|
+
export { default as Warning } from './components/fs/suggestion/Warning';
|
|
249
287
|
export { default as Account } from './components/fs/old-outlined/Account';
|
|
250
288
|
export { default as AccountFill } from './components/fs/old-outlined/AccountFill';
|
|
251
289
|
export { default as AcountManage } from './components/fs/old-outlined/AcountManage';
|
|
@@ -439,46 +477,14 @@ export { default as Zhuantifenxi } from './components/fs/old-outlined/Zhuantifen
|
|
|
439
477
|
export { default as ZhuantifenxiFill } from './components/fs/old-outlined/ZhuantifenxiFill';
|
|
440
478
|
export { default as Zhutizhibiao } from './components/fs/old-outlined/Zhutizhibiao';
|
|
441
479
|
export { default as Zygl } from './components/fs/old-outlined/Zygl';
|
|
442
|
-
export { default as Await } from './components/fs/suggestion/Await';
|
|
443
|
-
export { default as BenchmarkAnalysis } from './components/fs/suggestion/BenchmarkAnalysis';
|
|
444
|
-
export { default as ClaimFinish } from './components/fs/suggestion/ClaimFinish';
|
|
445
|
-
export { default as ClaimsFail } from './components/fs/suggestion/ClaimsFail';
|
|
446
|
-
export { default as CostReturn } from './components/fs/suggestion/CostReturn';
|
|
447
|
-
export { default as CostViolate } from './components/fs/suggestion/CostViolate';
|
|
448
|
-
export { default as CostWarning } from './components/fs/suggestion/CostWarning';
|
|
449
|
-
export { default as DailyOperation } from './components/fs/suggestion/DailyOperation';
|
|
450
|
-
export { default as DrgsColor } from './components/fs/suggestion/DrgsColor';
|
|
451
|
-
export { default as Fail } from './components/fs/suggestion/Fail';
|
|
452
|
-
export { default as FailFill } from './components/fs/suggestion/FailFill';
|
|
453
|
-
export { default as FsSpecial } from './components/fs/suggestion/FsSpecial';
|
|
454
|
-
export { default as HospitalTransfer } from './components/fs/suggestion/HospitalTransfer';
|
|
455
|
-
export { default as Inform } from './components/fs/suggestion/Inform';
|
|
456
|
-
export { default as Information } from './components/fs/suggestion/Information';
|
|
457
|
-
export { default as KeyGroup } from './components/fs/suggestion/KeyGroup';
|
|
458
|
-
export { default as Keyoffice } from './components/fs/suggestion/Keyoffice';
|
|
459
|
-
export { default as Lack } from './components/fs/suggestion/Lack';
|
|
460
|
-
export { default as Notice } from './components/fs/suggestion/Notice';
|
|
461
|
-
export { default as NoticeFill } from './components/fs/suggestion/NoticeFill';
|
|
462
|
-
export { default as Overtime } from './components/fs/suggestion/Overtime';
|
|
463
|
-
export { default as Problem } from './components/fs/suggestion/Problem';
|
|
464
|
-
export { default as ProblemFill } from './components/fs/suggestion/ProblemFill';
|
|
465
|
-
export { default as Processing } from './components/fs/suggestion/Processing';
|
|
466
|
-
export { default as RecordQuality } from './components/fs/suggestion/RecordQuality';
|
|
467
|
-
export { default as Rectification } from './components/fs/suggestion/Rectification';
|
|
468
|
-
export { default as Rehospitalization } from './components/fs/suggestion/Rehospitalization';
|
|
469
|
-
export { default as Sendback } from './components/fs/suggestion/Sendback';
|
|
470
|
-
export { default as Success } from './components/fs/suggestion/Success';
|
|
471
|
-
export { default as SuccessFill } from './components/fs/suggestion/SuccessFill';
|
|
472
|
-
export { default as UndipAccountColor } from './components/fs/suggestion/UndipAccountColor';
|
|
473
|
-
export { default as UndrgAccountColor } from './components/fs/suggestion/UndrgAccountColor';
|
|
474
|
-
export { default as UninsuranceAccountColor } from './components/fs/suggestion/UninsuranceAccountColor';
|
|
475
|
-
export { default as UnreasonableHospitalized } from './components/fs/suggestion/UnreasonableHospitalized';
|
|
476
|
-
export { default as Warning } from './components/fs/suggestion/Warning';
|
|
477
480
|
export { default as Payment } from './components/sbt/business-menu/Payment';
|
|
478
481
|
export { default as PaymentFill } from './components/sbt/business-menu/PaymentFill';
|
|
482
|
+
export { default as SbtAddressbook } from './components/sbt/business-menu/SbtAddressbook';
|
|
479
483
|
export { default as SbtApiRecord } from './components/sbt/business-menu/SbtApiRecord';
|
|
480
484
|
export { default as SbtPingan } from './components/sbt/business-menu/SbtPingan';
|
|
485
|
+
export { default as SbtRealname } from './components/sbt/business-menu/SbtRealname';
|
|
481
486
|
export { default as SbtLink } from './components/sbt/currency/SbtLink';
|
|
487
|
+
export { default as SbtModify } from './components/sbt/currency/SbtModify';
|
|
482
488
|
export { default as SbtQrcode } from './components/sbt/currency/SbtQrcode';
|
|
483
489
|
export { default as SbtRetract } from './components/sbt/currency/SbtRetract';
|
|
484
490
|
export { default as SbtRetractFill } from './components/sbt/currency/SbtRetractFill';
|
package/es/index.js
CHANGED
|
@@ -36,6 +36,7 @@ export { default as DrgCheckFill } from "./components/fs/business-menu/DrgCheckF
|
|
|
36
36
|
export { default as FsAppearance } from "./components/fs/business-menu/FsAppearance";
|
|
37
37
|
export { default as FsAppearanceFill } from "./components/fs/business-menu/FsAppearanceFill";
|
|
38
38
|
export { default as FsBringintoFill } from "./components/fs/business-menu/FsBringintoFill";
|
|
39
|
+
export { default as FsChoose } from "./components/fs/business-menu/FsChoose";
|
|
39
40
|
export { default as FsDatabase } from "./components/fs/business-menu/FsDatabase";
|
|
40
41
|
export { default as FsDatabaseFill } from "./components/fs/business-menu/FsDatabaseFill";
|
|
41
42
|
export { default as FsField } from "./components/fs/business-menu/FsField";
|
|
@@ -246,6 +247,43 @@ export { default as ServerError } from "./components/fs/old-twocolor/ServerError
|
|
|
246
247
|
export { default as SuccessCircle } from "./components/fs/old-twocolor/SuccessCircle";
|
|
247
248
|
export { default as Tishi } from "./components/fs/old-twocolor/Tishi";
|
|
248
249
|
export { default as WaitCircle } from "./components/fs/old-twocolor/WaitCircle";
|
|
250
|
+
export { default as Await } from "./components/fs/suggestion/Await";
|
|
251
|
+
export { default as BenchmarkAnalysis } from "./components/fs/suggestion/BenchmarkAnalysis";
|
|
252
|
+
export { default as ClaimFinish } from "./components/fs/suggestion/ClaimFinish";
|
|
253
|
+
export { default as ClaimsFail } from "./components/fs/suggestion/ClaimsFail";
|
|
254
|
+
export { default as CostReturn } from "./components/fs/suggestion/CostReturn";
|
|
255
|
+
export { default as CostViolate } from "./components/fs/suggestion/CostViolate";
|
|
256
|
+
export { default as CostWarning } from "./components/fs/suggestion/CostWarning";
|
|
257
|
+
export { default as DailyOperation } from "./components/fs/suggestion/DailyOperation";
|
|
258
|
+
export { default as DrgsColor } from "./components/fs/suggestion/DrgsColor";
|
|
259
|
+
export { default as Fail } from "./components/fs/suggestion/Fail";
|
|
260
|
+
export { default as FailFill } from "./components/fs/suggestion/FailFill";
|
|
261
|
+
export { default as FsIntercept } from "./components/fs/suggestion/FsIntercept";
|
|
262
|
+
export { default as FsSpecial } from "./components/fs/suggestion/FsSpecial";
|
|
263
|
+
export { default as FsVip } from "./components/fs/suggestion/FsVip";
|
|
264
|
+
export { default as HospitalTransfer } from "./components/fs/suggestion/HospitalTransfer";
|
|
265
|
+
export { default as Inform } from "./components/fs/suggestion/Inform";
|
|
266
|
+
export { default as Information } from "./components/fs/suggestion/Information";
|
|
267
|
+
export { default as KeyGroup } from "./components/fs/suggestion/KeyGroup";
|
|
268
|
+
export { default as Keyoffice } from "./components/fs/suggestion/Keyoffice";
|
|
269
|
+
export { default as Lack } from "./components/fs/suggestion/Lack";
|
|
270
|
+
export { default as Notice } from "./components/fs/suggestion/Notice";
|
|
271
|
+
export { default as NoticeFill } from "./components/fs/suggestion/NoticeFill";
|
|
272
|
+
export { default as Overtime } from "./components/fs/suggestion/Overtime";
|
|
273
|
+
export { default as Problem } from "./components/fs/suggestion/Problem";
|
|
274
|
+
export { default as ProblemFill } from "./components/fs/suggestion/ProblemFill";
|
|
275
|
+
export { default as Processing } from "./components/fs/suggestion/Processing";
|
|
276
|
+
export { default as RecordQuality } from "./components/fs/suggestion/RecordQuality";
|
|
277
|
+
export { default as Rectification } from "./components/fs/suggestion/Rectification";
|
|
278
|
+
export { default as Rehospitalization } from "./components/fs/suggestion/Rehospitalization";
|
|
279
|
+
export { default as Sendback } from "./components/fs/suggestion/Sendback";
|
|
280
|
+
export { default as Success } from "./components/fs/suggestion/Success";
|
|
281
|
+
export { default as SuccessFill } from "./components/fs/suggestion/SuccessFill";
|
|
282
|
+
export { default as UndipAccountColor } from "./components/fs/suggestion/UndipAccountColor";
|
|
283
|
+
export { default as UndrgAccountColor } from "./components/fs/suggestion/UndrgAccountColor";
|
|
284
|
+
export { default as UninsuranceAccountColor } from "./components/fs/suggestion/UninsuranceAccountColor";
|
|
285
|
+
export { default as UnreasonableHospitalized } from "./components/fs/suggestion/UnreasonableHospitalized";
|
|
286
|
+
export { default as Warning } from "./components/fs/suggestion/Warning";
|
|
249
287
|
export { default as Account } from "./components/fs/old-outlined/Account";
|
|
250
288
|
export { default as AccountFill } from "./components/fs/old-outlined/AccountFill";
|
|
251
289
|
export { default as AcountManage } from "./components/fs/old-outlined/AcountManage";
|
|
@@ -439,46 +477,14 @@ export { default as Zhuantifenxi } from "./components/fs/old-outlined/Zhuantifen
|
|
|
439
477
|
export { default as ZhuantifenxiFill } from "./components/fs/old-outlined/ZhuantifenxiFill";
|
|
440
478
|
export { default as Zhutizhibiao } from "./components/fs/old-outlined/Zhutizhibiao";
|
|
441
479
|
export { default as Zygl } from "./components/fs/old-outlined/Zygl";
|
|
442
|
-
export { default as Await } from "./components/fs/suggestion/Await";
|
|
443
|
-
export { default as BenchmarkAnalysis } from "./components/fs/suggestion/BenchmarkAnalysis";
|
|
444
|
-
export { default as ClaimFinish } from "./components/fs/suggestion/ClaimFinish";
|
|
445
|
-
export { default as ClaimsFail } from "./components/fs/suggestion/ClaimsFail";
|
|
446
|
-
export { default as CostReturn } from "./components/fs/suggestion/CostReturn";
|
|
447
|
-
export { default as CostViolate } from "./components/fs/suggestion/CostViolate";
|
|
448
|
-
export { default as CostWarning } from "./components/fs/suggestion/CostWarning";
|
|
449
|
-
export { default as DailyOperation } from "./components/fs/suggestion/DailyOperation";
|
|
450
|
-
export { default as DrgsColor } from "./components/fs/suggestion/DrgsColor";
|
|
451
|
-
export { default as Fail } from "./components/fs/suggestion/Fail";
|
|
452
|
-
export { default as FailFill } from "./components/fs/suggestion/FailFill";
|
|
453
|
-
export { default as FsSpecial } from "./components/fs/suggestion/FsSpecial";
|
|
454
|
-
export { default as HospitalTransfer } from "./components/fs/suggestion/HospitalTransfer";
|
|
455
|
-
export { default as Inform } from "./components/fs/suggestion/Inform";
|
|
456
|
-
export { default as Information } from "./components/fs/suggestion/Information";
|
|
457
|
-
export { default as KeyGroup } from "./components/fs/suggestion/KeyGroup";
|
|
458
|
-
export { default as Keyoffice } from "./components/fs/suggestion/Keyoffice";
|
|
459
|
-
export { default as Lack } from "./components/fs/suggestion/Lack";
|
|
460
|
-
export { default as Notice } from "./components/fs/suggestion/Notice";
|
|
461
|
-
export { default as NoticeFill } from "./components/fs/suggestion/NoticeFill";
|
|
462
|
-
export { default as Overtime } from "./components/fs/suggestion/Overtime";
|
|
463
|
-
export { default as Problem } from "./components/fs/suggestion/Problem";
|
|
464
|
-
export { default as ProblemFill } from "./components/fs/suggestion/ProblemFill";
|
|
465
|
-
export { default as Processing } from "./components/fs/suggestion/Processing";
|
|
466
|
-
export { default as RecordQuality } from "./components/fs/suggestion/RecordQuality";
|
|
467
|
-
export { default as Rectification } from "./components/fs/suggestion/Rectification";
|
|
468
|
-
export { default as Rehospitalization } from "./components/fs/suggestion/Rehospitalization";
|
|
469
|
-
export { default as Sendback } from "./components/fs/suggestion/Sendback";
|
|
470
|
-
export { default as Success } from "./components/fs/suggestion/Success";
|
|
471
|
-
export { default as SuccessFill } from "./components/fs/suggestion/SuccessFill";
|
|
472
|
-
export { default as UndipAccountColor } from "./components/fs/suggestion/UndipAccountColor";
|
|
473
|
-
export { default as UndrgAccountColor } from "./components/fs/suggestion/UndrgAccountColor";
|
|
474
|
-
export { default as UninsuranceAccountColor } from "./components/fs/suggestion/UninsuranceAccountColor";
|
|
475
|
-
export { default as UnreasonableHospitalized } from "./components/fs/suggestion/UnreasonableHospitalized";
|
|
476
|
-
export { default as Warning } from "./components/fs/suggestion/Warning";
|
|
477
480
|
export { default as Payment } from "./components/sbt/business-menu/Payment";
|
|
478
481
|
export { default as PaymentFill } from "./components/sbt/business-menu/PaymentFill";
|
|
482
|
+
export { default as SbtAddressbook } from "./components/sbt/business-menu/SbtAddressbook";
|
|
479
483
|
export { default as SbtApiRecord } from "./components/sbt/business-menu/SbtApiRecord";
|
|
480
484
|
export { default as SbtPingan } from "./components/sbt/business-menu/SbtPingan";
|
|
485
|
+
export { default as SbtRealname } from "./components/sbt/business-menu/SbtRealname";
|
|
481
486
|
export { default as SbtLink } from "./components/sbt/currency/SbtLink";
|
|
487
|
+
export { default as SbtModify } from "./components/sbt/currency/SbtModify";
|
|
482
488
|
export { default as SbtQrcode } from "./components/sbt/currency/SbtQrcode";
|
|
483
489
|
export { default as SbtRetract } from "./components/sbt/currency/SbtRetract";
|
|
484
490
|
export { default as SbtRetractFill } from "./components/sbt/currency/SbtRetractFill";
|