@semcore/illustration 1.1.1 → 1.1.3
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/AccessDenied/index.js +1 -0
- package/AccessDenied/index.mjs +2 -1
- package/AreaChart/index.mjs +1 -1
- package/Blocked/index.js +1 -0
- package/Blocked/index.mjs +2 -1
- package/CHANGELOG.md +12 -0
- package/ChoroplethMapChart/index.mjs +1 -1
- package/Coffee/index.mjs +1 -1
- package/Collection/index.mjs +1 -1
- package/CombinedChart/index.js +1 -0
- package/CombinedChart/index.mjs +2 -1
- package/Confirmation/index.js +1 -0
- package/Confirmation/index.mjs +2 -1
- package/Congrats/index.mjs +1 -1
- package/ConnectionLost/index.js +1 -0
- package/ConnectionLost/index.mjs +2 -1
- package/DeletedAccount/index.js +1 -0
- package/DeletedAccount/index.mjs +2 -1
- package/DeletedPage/index.mjs +1 -1
- package/Dns/index.js +1 -0
- package/Dns/index.mjs +2 -1
- package/DonutChart/index.mjs +1 -1
- package/Duplicates/index.mjs +1 -1
- package/FunnelChart/index.js +1 -0
- package/FunnelChart/index.mjs +2 -1
- package/Good/index.mjs +1 -1
- package/HeatMapChart/index.js +2 -0
- package/HeatMapChart/index.mjs +3 -1
- package/HorizontalBarChart/index.js +1 -0
- package/HorizontalBarChart/index.mjs +2 -1
- package/KagiChart/index.mjs +1 -1
- package/LineChart/index.mjs +1 -1
- package/LollipopChart/index.mjs +1 -1
- package/MailSent/index.mjs +1 -1
- package/Maintenance/index.js +2 -0
- package/Maintenance/index.mjs +3 -1
- package/Nexttime/index.mjs +1 -1
- package/NoPayment/index.js +1 -0
- package/NoPayment/index.mjs +2 -1
- package/NothingFound/index.mjs +1 -1
- package/OtherData/index.mjs +1 -1
- package/PageError/index.mjs +1 -1
- package/PageNotFound/index.mjs +1 -1
- package/PieChart/index.mjs +1 -1
- package/Processing/index.mjs +1 -1
- package/ProjectNotFound/index.mjs +1 -1
- package/RadarChart/index.js +1 -0
- package/RadarChart/index.mjs +2 -1
- package/RadialTreeChart/index.mjs +1 -1
- package/SankeyChart/index.mjs +1 -1
- package/ScatterPlotChart/index.js +1 -0
- package/ScatterPlotChart/index.mjs +2 -1
- package/StackedAreaChart/index.mjs +1 -1
- package/Suggestion/index.mjs +1 -1
- package/Suggestions/index.mjs +1 -1
- package/Table/index.mjs +1 -1
- package/TagCloud/index.js +2 -0
- package/TagCloud/index.mjs +3 -1
- package/TextLinksEtc/index.mjs +1 -1
- package/Timeout/index.js +1 -0
- package/Timeout/index.mjs +2 -1
- package/UnderConstruction/index.mjs +1 -1
- package/VennChart/index.js +1 -0
- package/VennChart/index.mjs +2 -1
- package/VerticalBarChart/index.mjs +1 -1
- package/Waiting/index.mjs +1 -1
- package/Warning/index.mjs +1 -1
- package/lib/cjs/index.d.js +2 -0
- package/lib/cjs/index.d.js.map +1 -0
- package/lib/cjs/index.js +24 -0
- package/lib/cjs/index.js.map +1 -0
- package/lib/es6/index.d.js +2 -0
- package/lib/es6/index.d.js.map +1 -0
- package/lib/es6/index.js +16 -0
- package/lib/es6/index.js.map +1 -0
- package/lib/types/index.d.ts +55 -0
- package/package.json +8 -6
- package/svg/AccessDenied.svg +1 -1
- package/svg/Blocked.svg +1 -1
- package/svg/CombinedChart.svg +1 -1
- package/svg/Confirmation.svg +1 -1
- package/svg/ConnectionLost.svg +1 -1
- package/svg/DeletedAccount.svg +1 -1
- package/svg/Dns.svg +1 -1
- package/svg/FunnelChart.svg +1 -1
- package/svg/HeatMapChart.svg +2 -2
- package/svg/HorizontalBarChart.svg +1 -1
- package/svg/Maintenance.svg +2 -2
- package/svg/NoPayment.svg +1 -1
- package/svg/RadarChart.svg +1 -1
- package/svg/ScatterPlotChart.svg +1 -1
- package/svg/TagCloud.svg +2 -2
- package/svg/Timeout.svg +1 -1
- package/svg/VennChart.svg +1 -1
package/AccessDenied/index.js
CHANGED
package/AccessDenied/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
|
@@ -23,6 +23,7 @@ function AccessDenied({
|
|
|
23
23
|
fill: "#FFE74D",
|
|
24
24
|
shapeRendering: "geometricPrecision"
|
|
25
25
|
}), /*#__PURE__*/React.createElement("mask", {
|
|
26
|
+
id: "a",
|
|
26
27
|
maskUnits: "userSpaceOnUse",
|
|
27
28
|
x: "19",
|
|
28
29
|
y: "10",
|
package/AreaChart/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/Blocked/index.js
CHANGED
package/Blocked/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
|
@@ -225,6 +225,7 @@ function Blocked({
|
|
|
225
225
|
fill: "#000",
|
|
226
226
|
shapeRendering: "geometricPrecision"
|
|
227
227
|
}), /*#__PURE__*/React.createElement("mask", {
|
|
228
|
+
id: "a",
|
|
228
229
|
maskUnits: "userSpaceOnUse",
|
|
229
230
|
x: "14",
|
|
230
231
|
y: "67",
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangelog.com/en/1.0.0/).
|
|
4
4
|
|
|
5
|
+
## [1.1.3] - 2022-10-03
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Added and changed fields `main`, `module` and `typings` in `package.json`.
|
|
10
|
+
|
|
11
|
+
## [1.1.2] - 2022-09-27
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Added missed illustrations and added missed id attribute for some illustrations.
|
|
16
|
+
|
|
5
17
|
## [1.1.1] - 2022-09-23
|
|
6
18
|
|
|
7
19
|
### Added
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/Coffee/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/Collection/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/CombinedChart/index.js
CHANGED
package/CombinedChart/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
|
@@ -99,6 +99,7 @@ function CombinedChart({
|
|
|
99
99
|
strokeLinejoin: "round",
|
|
100
100
|
shapeRendering: "geometricPrecision"
|
|
101
101
|
}), /*#__PURE__*/React.createElement("mask", {
|
|
102
|
+
id: "a",
|
|
102
103
|
maskUnits: "userSpaceOnUse",
|
|
103
104
|
x: "36",
|
|
104
105
|
y: "28",
|
package/Confirmation/index.js
CHANGED
package/Confirmation/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
|
@@ -23,6 +23,7 @@ function Confirmation({
|
|
|
23
23
|
fill: "#6EDAFF",
|
|
24
24
|
shapeRendering: "geometricPrecision"
|
|
25
25
|
}), /*#__PURE__*/React.createElement("mask", {
|
|
26
|
+
id: "a",
|
|
26
27
|
maskUnits: "userSpaceOnUse",
|
|
27
28
|
x: "8",
|
|
28
29
|
y: "12",
|
package/Congrats/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/ConnectionLost/index.js
CHANGED
package/ConnectionLost/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
|
@@ -23,6 +23,7 @@ function ConnectionLost({
|
|
|
23
23
|
fill: "#FFB26E",
|
|
24
24
|
shapeRendering: "geometricPrecision"
|
|
25
25
|
}), /*#__PURE__*/React.createElement("mask", {
|
|
26
|
+
id: "a",
|
|
26
27
|
maskUnits: "userSpaceOnUse",
|
|
27
28
|
x: "4",
|
|
28
29
|
y: "10",
|
package/DeletedAccount/index.js
CHANGED
package/DeletedAccount/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
|
@@ -23,6 +23,7 @@ function DeletedAccount({
|
|
|
23
23
|
fill: "#6EDAFF",
|
|
24
24
|
shapeRendering: "geometricPrecision"
|
|
25
25
|
}), /*#__PURE__*/React.createElement("mask", {
|
|
26
|
+
id: "a",
|
|
26
27
|
maskUnits: "userSpaceOnUse",
|
|
27
28
|
x: "10",
|
|
28
29
|
y: "10",
|
package/DeletedPage/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/Dns/index.js
CHANGED
package/Dns/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
|
@@ -23,6 +23,7 @@ function Dns({
|
|
|
23
23
|
fill: "#45E0A8",
|
|
24
24
|
shapeRendering: "geometricPrecision"
|
|
25
25
|
}), /*#__PURE__*/React.createElement("mask", {
|
|
26
|
+
id: "a",
|
|
26
27
|
maskUnits: "userSpaceOnUse",
|
|
27
28
|
x: "24",
|
|
28
29
|
y: "16",
|
package/DonutChart/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/Duplicates/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/FunnelChart/index.js
CHANGED
package/FunnelChart/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
|
@@ -65,6 +65,7 @@ function FunnelChart({
|
|
|
65
65
|
strokeLinejoin: "round",
|
|
66
66
|
shapeRendering: "geometricPrecision"
|
|
67
67
|
}), /*#__PURE__*/React.createElement("mask", {
|
|
68
|
+
id: "a",
|
|
68
69
|
maskUnits: "userSpaceOnUse",
|
|
69
70
|
x: "23",
|
|
70
71
|
y: "34",
|
package/Good/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/HeatMapChart/index.js
CHANGED
|
@@ -115,6 +115,7 @@ function HeatMapChart(_ref, ref) {
|
|
|
115
115
|
strokeLinejoin: "round",
|
|
116
116
|
shapeRendering: "geometricPrecision"
|
|
117
117
|
}), /*#__PURE__*/_react["default"].createElement("mask", {
|
|
118
|
+
id: "a",
|
|
118
119
|
maskUnits: "userSpaceOnUse",
|
|
119
120
|
x: "23",
|
|
120
121
|
y: "33",
|
|
@@ -133,6 +134,7 @@ function HeatMapChart(_ref, ref) {
|
|
|
133
134
|
d: "M29.86 31.42 21.43 43.7M33.47 33.9l-8.43 12.28M37.08 36.37l-9.59 13.98M40.69 38.84l-9.25 13.49",
|
|
134
135
|
shapeRendering: "geometricPrecision"
|
|
135
136
|
})), /*#__PURE__*/_react["default"].createElement("mask", {
|
|
137
|
+
id: "b",
|
|
136
138
|
maskUnits: "userSpaceOnUse",
|
|
137
139
|
x: "54",
|
|
138
140
|
y: "38",
|
package/HeatMapChart/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
|
@@ -97,6 +97,7 @@ function HeatMapChart({
|
|
|
97
97
|
strokeLinejoin: "round",
|
|
98
98
|
shapeRendering: "geometricPrecision"
|
|
99
99
|
}), /*#__PURE__*/React.createElement("mask", {
|
|
100
|
+
id: "a",
|
|
100
101
|
maskUnits: "userSpaceOnUse",
|
|
101
102
|
x: "23",
|
|
102
103
|
y: "33",
|
|
@@ -115,6 +116,7 @@ function HeatMapChart({
|
|
|
115
116
|
d: "M29.86 31.42 21.43 43.7M33.47 33.9l-8.43 12.28M37.08 36.37l-9.59 13.98M40.69 38.84l-9.25 13.49",
|
|
116
117
|
shapeRendering: "geometricPrecision"
|
|
117
118
|
})), /*#__PURE__*/React.createElement("mask", {
|
|
119
|
+
id: "b",
|
|
118
120
|
maskUnits: "userSpaceOnUse",
|
|
119
121
|
x: "54",
|
|
120
122
|
y: "38",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
|
@@ -81,6 +81,7 @@ function HorizontalBarChart({
|
|
|
81
81
|
strokeLinejoin: "round",
|
|
82
82
|
shapeRendering: "geometricPrecision"
|
|
83
83
|
}), /*#__PURE__*/React.createElement("mask", {
|
|
84
|
+
id: "a",
|
|
84
85
|
maskUnits: "userSpaceOnUse",
|
|
85
86
|
x: "25",
|
|
86
87
|
y: "29",
|
package/KagiChart/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/LineChart/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/LollipopChart/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/MailSent/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/Maintenance/index.js
CHANGED
|
@@ -47,6 +47,7 @@ function Maintenance(_ref, ref) {
|
|
|
47
47
|
strokeLinejoin: "round",
|
|
48
48
|
shapeRendering: "geometricPrecision"
|
|
49
49
|
}), /*#__PURE__*/_react["default"].createElement("mask", {
|
|
50
|
+
id: "a",
|
|
50
51
|
maskUnits: "userSpaceOnUse",
|
|
51
52
|
x: "6",
|
|
52
53
|
y: "10",
|
|
@@ -274,6 +275,7 @@ function Maintenance(_ref, ref) {
|
|
|
274
275
|
fill: "#45E0A8",
|
|
275
276
|
shapeRendering: "geometricPrecision"
|
|
276
277
|
}), /*#__PURE__*/_react["default"].createElement("mask", {
|
|
278
|
+
id: "b",
|
|
277
279
|
maskUnits: "userSpaceOnUse",
|
|
278
280
|
x: "128",
|
|
279
281
|
y: "145",
|
package/Maintenance/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
|
@@ -29,6 +29,7 @@ function Maintenance({
|
|
|
29
29
|
strokeLinejoin: "round",
|
|
30
30
|
shapeRendering: "geometricPrecision"
|
|
31
31
|
}), /*#__PURE__*/React.createElement("mask", {
|
|
32
|
+
id: "a",
|
|
32
33
|
maskUnits: "userSpaceOnUse",
|
|
33
34
|
x: "6",
|
|
34
35
|
y: "10",
|
|
@@ -256,6 +257,7 @@ function Maintenance({
|
|
|
256
257
|
fill: "#45E0A8",
|
|
257
258
|
shapeRendering: "geometricPrecision"
|
|
258
259
|
}), /*#__PURE__*/React.createElement("mask", {
|
|
260
|
+
id: "b",
|
|
259
261
|
maskUnits: "userSpaceOnUse",
|
|
260
262
|
x: "128",
|
|
261
263
|
y: "145",
|
package/Nexttime/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/NoPayment/index.js
CHANGED
package/NoPayment/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
|
@@ -25,6 +25,7 @@ function NoPayment({
|
|
|
25
25
|
fill: "#FF788F",
|
|
26
26
|
shapeRendering: "geometricPrecision"
|
|
27
27
|
}), /*#__PURE__*/React.createElement("mask", {
|
|
28
|
+
id: "b",
|
|
28
29
|
maskUnits: "userSpaceOnUse",
|
|
29
30
|
x: "14",
|
|
30
31
|
y: "26",
|
package/NothingFound/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/OtherData/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/PageError/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/PageNotFound/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/PieChart/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/Processing/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/RadarChart/index.js
CHANGED
package/RadarChart/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
|
@@ -73,6 +73,7 @@ function RadarChart({
|
|
|
73
73
|
strokeLinejoin: "round",
|
|
74
74
|
shapeRendering: "geometricPrecision"
|
|
75
75
|
}), /*#__PURE__*/React.createElement("mask", {
|
|
76
|
+
id: "a",
|
|
76
77
|
maskUnits: "userSpaceOnUse",
|
|
77
78
|
x: "27",
|
|
78
79
|
y: "31",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/SankeyChart/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
|
@@ -88,6 +88,7 @@ function ScatterPlotChart({
|
|
|
88
88
|
strokeLinejoin: "round",
|
|
89
89
|
shapeRendering: "geometricPrecision"
|
|
90
90
|
}), /*#__PURE__*/React.createElement("mask", {
|
|
91
|
+
id: "a",
|
|
91
92
|
maskUnits: "userSpaceOnUse",
|
|
92
93
|
x: "38",
|
|
93
94
|
y: "40",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/Suggestion/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/Suggestions/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|
package/Table/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
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
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { createBaseComponent } from '@semcore/core';
|