@firesoon/icons-react 3.0.15 → 3.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/es/components/{fs/old-outlined → business/business-menu}/Bill.js +2 -2
  2. package/es/components/business/business-menu/Generate.js +2 -2
  3. package/es/components/{sbt → business}/business-menu/Payment.js +2 -2
  4. package/es/components/business/business-menu/Reconciliation.js +12 -0
  5. package/es/components/business/business-menu/index.d.ts +3 -0
  6. package/es/components/business/business-menu/index.js +4 -1
  7. package/es/components/fs/currency/index.js +0 -1
  8. package/es/components/fs/old-outlined/index.d.ts +0 -1
  9. package/es/components/general/currency/PatientInformation.js +2 -2
  10. package/es/components/sbt/business-menu/index.d.ts +0 -1
  11. package/es/icons/business/business-menu/bill.js +23 -0
  12. package/es/icons/business/business-menu/payment.js +23 -0
  13. package/es/icons/business/business-menu/reconciliation.js +17 -0
  14. package/es/index.d.ts +209 -208
  15. package/es/index.js +145 -143
  16. package/lib/components/{fs/old-outlined → business/business-menu}/Bill.js +2 -2
  17. package/lib/components/business/business-menu/Generate.js +2 -2
  18. package/lib/components/business/business-menu/Payment.d.ts +4 -0
  19. package/lib/components/{sbt → business}/business-menu/Payment.js +2 -2
  20. package/lib/components/business/business-menu/Reconciliation.d.ts +4 -0
  21. package/lib/components/business/business-menu/Reconciliation.js +20 -0
  22. package/lib/components/business/business-menu/index.d.ts +3 -0
  23. package/lib/components/business/business-menu/index.js +21 -0
  24. package/lib/components/fs/currency/index.js +0 -7
  25. package/lib/components/fs/old-outlined/index.d.ts +0 -1
  26. package/lib/components/general/currency/PatientInformation.js +2 -2
  27. package/lib/components/sbt/business-menu/index.d.ts +0 -1
  28. package/lib/icons/business/business-menu/bill.js +30 -0
  29. package/lib/icons/business/business-menu/payment.d.ts +17 -0
  30. package/lib/icons/business/business-menu/payment.js +30 -0
  31. package/lib/icons/business/business-menu/reconciliation.d.ts +17 -0
  32. package/lib/icons/business/business-menu/reconciliation.js +24 -0
  33. package/lib/index.d.ts +209 -208
  34. package/lib/index.js +163 -149
  35. package/package.json +1 -1
  36. package/es/icons/fs/old-outlined/bill.js +0 -47
  37. package/es/icons/sbt/business-menu/payment.js +0 -23
  38. package/lib/icons/fs/old-outlined/bill.js +0 -54
  39. package/lib/icons/sbt/business-menu/payment.js +0 -30
  40. /package/es/components/{fs/old-outlined → business/business-menu}/Bill.d.ts +0 -0
  41. /package/es/components/{sbt → business}/business-menu/Payment.d.ts +0 -0
  42. /package/{lib/components/fs/old-outlined/Bill.d.ts → es/components/business/business-menu/Reconciliation.d.ts} +0 -0
  43. /package/es/icons/{fs/old-outlined → business/business-menu}/bill.d.ts +0 -0
  44. /package/es/icons/{sbt → business}/business-menu/payment.d.ts +0 -0
  45. /package/{lib/icons/fs/old-outlined/bill.d.ts → es/icons/business/business-menu/reconciliation.d.ts} +0 -0
  46. /package/lib/components/{sbt/business-menu/Payment.d.ts → business/business-menu/Bill.d.ts} +0 -0
  47. /package/lib/icons/{sbt/business-menu/payment.d.ts → business/business-menu/bill.d.ts} +0 -0
@@ -1,12 +1,12 @@
1
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
2
  import React from 'react';
3
3
  import Icon from "../../../Icon";
4
- import rootNode from "../../../icons/fs/old-outlined/bill";
4
+ import rootNode from "../../../icons/business/business-menu/bill";
5
5
  export default (function () {
6
6
  var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
7
7
  return /*#__PURE__*/React.createElement(Icon, _extends({}, props, {
8
8
  rootNode: rootNode,
9
9
  iconName: 'bill',
10
- "icon-type": 'fs/old-outlined'
10
+ "icon-type": 'business/business-menu'
11
11
  }));
12
12
  });
@@ -1,12 +1,12 @@
1
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
2
  import React from 'react';
3
3
  import Icon from "../../../Icon";
4
- import rootNode from "../../../icons/undefined/business-menu/generate";
4
+ import rootNode from "../../../icons/business/business-menu/generate";
5
5
  export default (function () {
6
6
  var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
7
7
  return /*#__PURE__*/React.createElement(Icon, _extends({}, props, {
8
8
  rootNode: rootNode,
9
9
  iconName: 'generate',
10
- "icon-type": 'undefined/business-menu'
10
+ "icon-type": 'business/business-menu'
11
11
  }));
12
12
  });
@@ -1,12 +1,12 @@
1
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
2
  import React from 'react';
3
3
  import Icon from "../../../Icon";
4
- import rootNode from "../../../icons/sbt/business-menu/payment";
4
+ import rootNode from "../../../icons/business/business-menu/payment";
5
5
  export default (function () {
6
6
  var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
7
7
  return /*#__PURE__*/React.createElement(Icon, _extends({}, props, {
8
8
  rootNode: rootNode,
9
9
  iconName: 'payment',
10
- "icon-type": 'sbt/business-menu'
10
+ "icon-type": 'business/business-menu'
11
11
  }));
12
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/business/business-menu/reconciliation";
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: 'reconciliation',
10
+ "icon-type": 'business/business-menu'
11
+ }));
12
+ });
@@ -1 +1,4 @@
1
+ export { default as Bill } from './Bill';
1
2
  export { default as Generate } from './Generate';
3
+ export { default as Payment } from './Payment';
4
+ export { default as Reconciliation } from './Reconciliation';
@@ -1 +1,4 @@
1
- export { default as Generate } from "./Generate";
1
+ export { default as Bill } from "./Bill";
2
+ export { default as Generate } from "./Generate";
3
+ export { default as Payment } from "./Payment";
4
+ export { default as Reconciliation } from "./Reconciliation";
@@ -59,7 +59,6 @@ export { default as ListDetail } from "./ListDetail";
59
59
  export { default as ListDetailFill } from "./ListDetailFill";
60
60
  export { default as Loading } from "./Loading";
61
61
  export { default as More } from "./More";
62
- export { default as PatientInformation } from "./PatientInformation";
63
62
  export { default as PatientInformationFill } from "./PatientInformationFill";
64
63
  export { default as Radio } from "./Radio";
65
64
  export { default as RadioFill } from "./RadioFill";
@@ -16,7 +16,6 @@ export { default as BarChartCircleFill } from './BarChartCircleFill';
16
16
  export { default as BeHospitalized } from './BeHospitalized';
17
17
  export { default as Bianji } from './Bianji';
18
18
  export { default as Biaogan } from './Biaogan';
19
- export { default as Bill } from './Bill';
20
19
  export { default as BillFill } from './BillFill';
21
20
  export { default as BillList } from './BillList';
22
21
  export { default as BillListFill } from './BillListFill';
@@ -1,12 +1,12 @@
1
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
2
  import React from 'react';
3
3
  import Icon from "../../../Icon";
4
- import rootNode from "../../../icons/undefined/currency/patient-information";
4
+ import rootNode from "../../../icons/general/currency/patient-information";
5
5
  export default (function () {
6
6
  var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
7
7
  return /*#__PURE__*/React.createElement(Icon, _extends({}, props, {
8
8
  rootNode: rootNode,
9
9
  iconName: 'patient-information',
10
- "icon-type": 'undefined/currency'
10
+ "icon-type": 'general/currency'
11
11
  }));
12
12
  });
@@ -1,6 +1,5 @@
1
1
  export { default as Document } from './Document';
2
2
  export { default as Insurancepolicy } from './Insurancepolicy';
3
- export { default as Payment } from './Payment';
4
3
  export { default as PaymentFill } from './PaymentFill';
5
4
  export { default as SbtAddressbook } from './SbtAddressbook';
6
5
  export { default as SbtApiRecord } from './SbtApiRecord';
@@ -0,0 +1,23 @@
1
+ var node = {
2
+ "name": "bill",
3
+ "nodeTree": {
4
+ "tag": "svg",
5
+ "attrs": {
6
+ "viewBox": "0 0 1024 1024"
7
+ },
8
+ "children": [{
9
+ "tag": "path",
10
+ "attrs": {
11
+ "d": "M987.43 0A36.57 36.57 0 011024 36.57v950.86a36.57 36.57 0 01-36.57 36.57H36.57A36.57 36.57 0 010 987.43V36.57A36.57 36.57 0 0136.57 0h950.86zm-36.57 73.14H73.14v877.72h877.72V73.14z"
12
+ },
13
+ "children": []
14
+ }, {
15
+ "tag": "path",
16
+ "attrs": {
17
+ "d": "M201.14 256h640q9.15 0 9.15 9.14V320q0 9.14-9.15 9.14h-640q-9.14 0-9.14-9.14v-54.86q0-9.14 9.14-9.14zM201.14 475.43h228.57q9.15 0 9.15 9.14v54.86q0 9.14-9.15 9.14H201.14q-9.14 0-9.14-9.14v-54.86q0-9.14 9.14-9.14zM201.14 694.86h228.57q9.15 0 9.15 9.14v54.86q0 9.14-9.15 9.14H201.14q-9.14 0-9.14-9.14V704q0-9.14 9.14-9.14zM676.57 438.86c90.9 0 164.57 73.68 164.57 164.57 0 34.59-10.67 66.68-28.9 93.17l59.08 59.08a9.14 9.14 0 010 12.93l-38.78 38.8a9.14 9.14 0 01-12.93 0l-61.18-61.18A163.8 163.8 0 01676.57 768C585.68 768 512 694.32 512 603.43s73.68-164.57 164.57-164.57zm.3 73.14a91.43 91.43 0 100 182.86 91.43 91.43 0 000-182.86z"
18
+ },
19
+ "children": []
20
+ }]
21
+ }
22
+ };
23
+ export default node;
@@ -0,0 +1,23 @@
1
+ var node = {
2
+ "name": "payment",
3
+ "nodeTree": {
4
+ "tag": "svg",
5
+ "attrs": {
6
+ "viewBox": "0 0 1024 1024"
7
+ },
8
+ "children": [{
9
+ "tag": "path",
10
+ "attrs": {
11
+ "d": "M0 36.57A36.57 36.57 0 0136.57 0h950.86A36.57 36.57 0 011024 36.57v950.86a36.57 36.57 0 01-36.57 36.57H36.57A36.57 36.57 0 010 987.43V36.57zm73.14 36.57v877.72h877.72V73.14H73.14z"
12
+ },
13
+ "children": []
14
+ }, {
15
+ "tag": "path",
16
+ "attrs": {
17
+ "d": "M264.27 259.9l57.14 57.14 55.88-55.89a10.86 10.86 0 0115.36 0l36.36 36.36a10.86 10.86 0 010 15.36l-51.7 51.7h52.4a9.14 9.14 0 019.15 9.14v54.86a9.14 9.14 0 01-9.15 9.14H360v36.57h69.71a9.14 9.14 0 019.15 9.15v54.86a9.14 9.14 0 01-9.15 9.14H360v64a9.14 9.14 0 01-9.14 9.14h-68.57a9.14 9.14 0 01-9.15-9.14v-64h-69.71a9.14 9.14 0 01-9.14-9.14v-54.86a9.14 9.14 0 019.14-9.14h69.71V437.7h-69.71a9.14 9.14 0 01-9.14-9.14v-54.86a9.14 9.14 0 019.14-9.14h62.07l-52.95-52.95a9.14 9.14 0 010-12.93l38.79-38.8a9.14 9.14 0 0112.93 0zM192 694.86h640q9.14 0 9.14 9.14v54.86q0 9.14-9.14 9.14H192q-9.14 0-9.14-9.14V704q0-9.14 9.14-9.14zM521.14 496H832q9.14 0 9.14 9.14V560q0 9.14-9.14 9.14H521.14q-9.14 0-9.14-9.14v-54.86q0-9.14 9.14-9.14zM521.14 308.57H832q9.14 0 9.14 9.14v54.86q0 9.14-9.14 9.14H521.14q-9.14 0-9.14-9.14v-54.86q0-9.14 9.14-9.14z"
18
+ },
19
+ "children": []
20
+ }]
21
+ }
22
+ };
23
+ export default node;
@@ -0,0 +1,17 @@
1
+ var node = {
2
+ "name": "reconciliation",
3
+ "nodeTree": {
4
+ "tag": "svg",
5
+ "attrs": {
6
+ "viewBox": "0 0 1024 1024"
7
+ },
8
+ "children": [{
9
+ "tag": "path",
10
+ "attrs": {
11
+ "d": "M365.71 54.86a36.57 36.57 0 0136.58 36.57v841.14a36.57 36.57 0 01-36.58 36.57H36.57A36.57 36.57 0 010 932.57V91.43a36.57 36.57 0 0136.57-36.57h329.14zM329.14 128h-256v768h256V128zm658.29-73.14A36.57 36.57 0 011024 91.43v841.14a36.57 36.57 0 01-36.57 36.57H658.29a36.57 36.57 0 01-36.58-36.57V91.43a36.57 36.57 0 0136.58-36.57h329.14zM950.86 128h-256v768h256V128zM548.57 91.43v841.14q0 36.57-36.57 36.57t-36.57-36.57V91.43q0-36.57 36.57-36.57t36.57 36.57z"
12
+ },
13
+ "children": []
14
+ }]
15
+ }
16
+ };
17
+ export default node;