@aclymatepackages/modules 4.2.1 → 4.3.0
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.
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
package/dist/index.js
CHANGED
|
@@ -75,6 +75,12 @@ Object.defineProperty(exports, "PlacesAutocomplete", {
|
|
|
75
75
|
return _PlacesAutocomplete.default;
|
|
76
76
|
}
|
|
77
77
|
});
|
|
78
|
+
Object.defineProperty(exports, "ProductFootprintPieChart", {
|
|
79
|
+
enumerable: true,
|
|
80
|
+
get: function get() {
|
|
81
|
+
return _ProductFootprintPieChart.default;
|
|
82
|
+
}
|
|
83
|
+
});
|
|
78
84
|
Object.defineProperty(exports, "YesNoQuestion", {
|
|
79
85
|
enumerable: true,
|
|
80
86
|
get: function get() {
|
|
@@ -101,4 +107,5 @@ var _useChartWarningLabels = _interopRequireDefault(require("./components/useCha
|
|
|
101
107
|
var _EmissionsSummarySentence = _interopRequireDefault(require("./components/EmissionsSummarySentence"));
|
|
102
108
|
var _DbCompanySelect = _interopRequireDefault(require("./components/DbCompanySelect"));
|
|
103
109
|
var _CompanyDataConfirmation = _interopRequireDefault(require("./components/CompanyDataConfirmation"));
|
|
110
|
+
var _ProductFootprintPieChart = _interopRequireDefault(require("./components/ProductFootprintPieChart"));
|
|
104
111
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
package/package.json
CHANGED
|
File without changes
|
package/src/index.js
CHANGED
|
@@ -12,6 +12,7 @@ import useChartWarningLabels from "./components/useChartWarningLabels";
|
|
|
12
12
|
import EmissionsSummarySentence from "./components/EmissionsSummarySentence";
|
|
13
13
|
import DbCompanySelect from "./components/DbCompanySelect";
|
|
14
14
|
import CompanyDataConfirmation from "./components/CompanyDataConfirmation";
|
|
15
|
+
import ProductFootprintPieChart from "./components/ProductFootprintPieChart";
|
|
15
16
|
|
|
16
17
|
export {
|
|
17
18
|
AccountingChart,
|
|
@@ -28,4 +29,5 @@ export {
|
|
|
28
29
|
EmissionsSummarySentence,
|
|
29
30
|
DbCompanySelect,
|
|
30
31
|
CompanyDataConfirmation,
|
|
32
|
+
ProductFootprintPieChart,
|
|
31
33
|
};
|