@usecsv/react 0.3.1 → 0.4.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.
- package/CHANGELOG.md +14 -0
- package/build/index.cjs +9 -4
- package/build/index.cjs.map +1 -1
- package/build/index.esm.js +9 -4
- package/build/index.esm.js.map +1 -1
- package/build/index.js +9 -4
- package/build/index.js.map +1 -1
- package/build/index.mjs +9 -4
- package/build/index.mjs.map +1 -1
- package/build/index.umd.js +9 -4
- package/build/index.umd.js.map +1 -1
- package/build/index.umd.min.js +4 -4
- package/build/index.umd.min.js.map +1 -1
- package/package.json +4 -4
package/build/index.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @usecsv/react v0.
|
|
2
|
+
* @usecsv/react v0.4.0
|
|
3
3
|
* (c) layercode
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -32,7 +32,7 @@ function __rest(s, e) {
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
/*!
|
|
35
|
-
* @usecsv/js v0.
|
|
35
|
+
* @usecsv/js v0.16.0
|
|
36
36
|
* (c) layercode
|
|
37
37
|
* Released under the MIT License.
|
|
38
38
|
*/
|
|
@@ -713,7 +713,7 @@ var insertIframe = function (id, importerDisplay) {
|
|
|
713
713
|
return iframe;
|
|
714
714
|
};
|
|
715
715
|
var useCsvPlugin = function (_a) {
|
|
716
|
-
var importerKey = _a.importerKey, user = _a.user, metadata = _a.metadata, onData = _a.onData, onRecordsInitial = _a.onRecordsInitial, onRecordEdit = _a.onRecordEdit, _b = _a.importerDisplay, importerDisplay = _b === void 0 ? "modal" : _b, onClose = _a.onClose, theme = _a.theme, batchSize = _a.batchSize, sampleFileURL = _a.sampleFileURL, _c = _a.downloadExampleButton, downloadExampleButton = _c === void 0 ? true : _c, dynamicColumns = _a.dynamicColumns;
|
|
716
|
+
var importerKey = _a.importerKey, user = _a.user, metadata = _a.metadata, onData = _a.onData, onRecordsInitial = _a.onRecordsInitial, onRecordEdit = _a.onRecordEdit, _b = _a.importerDisplay, importerDisplay = _b === void 0 ? "modal" : _b, onClose = _a.onClose, theme = _a.theme, batchSize = _a.batchSize, sampleFileURL = _a.sampleFileURL, _c = _a.downloadExampleButton, downloadExampleButton = _c === void 0 ? true : _c, dynamicColumns = _a.dynamicColumns, defaultLanguage = _a.defaultLanguage, onError = _a.onError;
|
|
717
717
|
var id = "usecsv-".concat(Math.round(Math.random() * 100000000));
|
|
718
718
|
return whenDomReady().then(function () {
|
|
719
719
|
var iframe = insertIframe(id, importerDisplay);
|
|
@@ -723,7 +723,7 @@ var useCsvPlugin = function (_a) {
|
|
|
723
723
|
};
|
|
724
724
|
var iframeConnection = connectToChild({
|
|
725
725
|
iframe: iframe,
|
|
726
|
-
methods: __assign(__assign(__assign(__assign({ closeIframe: closeIframe }, (onData
|
|
726
|
+
methods: __assign(__assign(__assign(__assign(__assign({ closeIframe: closeIframe }, (onData
|
|
727
727
|
? {
|
|
728
728
|
onData: function (data) { return onData(data, closeIframe); },
|
|
729
729
|
}
|
|
@@ -739,6 +739,10 @@ var useCsvPlugin = function (_a) {
|
|
|
739
739
|
? {
|
|
740
740
|
onClose: onClose,
|
|
741
741
|
}
|
|
742
|
+
: {})), (onError
|
|
743
|
+
? {
|
|
744
|
+
onError: onError,
|
|
745
|
+
}
|
|
742
746
|
: {})),
|
|
743
747
|
});
|
|
744
748
|
iframeConnection.promise.then(function (child) {
|
|
@@ -757,6 +761,7 @@ var useCsvPlugin = function (_a) {
|
|
|
757
761
|
sampleFileURL: sampleFileURL,
|
|
758
762
|
downloadExampleButton: downloadExampleButton,
|
|
759
763
|
dynamicColumns: dynamicColumns,
|
|
764
|
+
defaultLanguage: defaultLanguage,
|
|
760
765
|
});
|
|
761
766
|
});
|
|
762
767
|
return iframeConnection;
|