@aclymatepackages/modules 2.0.10 → 2.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/dist/index.js +7 -0
- package/package.json +1 -1
- package/src/index.js +2 -0
package/dist/index.js
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
+
Object.defineProperty(exports, "AccountingChart", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _AccountingChart.default;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
6
12
|
Object.defineProperty(exports, "CompaniesAutocomplete", {
|
|
7
13
|
enumerable: true,
|
|
8
14
|
get: function get() {
|
|
@@ -117,6 +123,7 @@ Object.defineProperty(exports, "useStripeInput", {
|
|
|
117
123
|
return _stripeInput.default;
|
|
118
124
|
}
|
|
119
125
|
});
|
|
126
|
+
var _AccountingChart = _interopRequireDefault(require("./components/AccountingChart"));
|
|
120
127
|
var _FootprintVideo = _interopRequireDefault(require("./components/FootprintVideo"));
|
|
121
128
|
var _IndustryAutocomplete = _interopRequireDefault(require("./components/IndustryAutocomplete"));
|
|
122
129
|
var _PlacesAutocomplete = _interopRequireDefault(require("./components/PlacesAutocomplete"));
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import AccountingChart from "./components/AccountingChart";
|
|
1
2
|
import FootprintVideo from "./components/FootprintVideo";
|
|
2
3
|
import IndustryAutocomplete from "./components/IndustryAutocomplete";
|
|
3
4
|
import PlacesAutocomplete from "./components/PlacesAutocomplete";
|
|
@@ -19,6 +20,7 @@ import ReportGraphContentLayout from "./components/ReportGraphContentLayout";
|
|
|
19
20
|
import EmissionsSummarySentence from "./components/EmissionsSummarySentence";
|
|
20
21
|
|
|
21
22
|
export {
|
|
23
|
+
AccountingChart,
|
|
22
24
|
FootprintVideo,
|
|
23
25
|
IndustryAutocomplete,
|
|
24
26
|
PlacesAutocomplete,
|