@lingk/sync 0.2.4 → 0.2.6
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/build/credentialSections.js +21 -20
- package/build/credentialSections.js.map +1 -1
- package/build/css/main.css +8 -0
- package/build/lightning.js +144 -143
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js +2 -2
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js +30 -30
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js +2 -2
- package/build/lingkStyles.js.map +1 -1
- package/build/loadData.js +323 -0
- package/build/loadData.js.map +1 -0
- package/build/main.js +1164 -1140
- package/build/main.js.map +1 -1
- package/build/metadataFunctions.js +2 -2
- package/build/metadataFunctions.js.map +1 -1
- package/build/reducer.js +6 -6
- package/build/reducer.js.map +1 -1
- package/build/saveData.js +339 -0
- package/build/saveData.js.map +1 -0
- package/package.json +1 -1
|
@@ -46,7 +46,7 @@ module.exports =
|
|
|
46
46
|
/***/ 0:
|
|
47
47
|
/***/ function(module, exports, __webpack_require__) {
|
|
48
48
|
|
|
49
|
-
module.exports = __webpack_require__(
|
|
49
|
+
module.exports = __webpack_require__(43);
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
/***/ },
|
|
@@ -58,7 +58,7 @@ module.exports =
|
|
|
58
58
|
|
|
59
59
|
/***/ },
|
|
60
60
|
|
|
61
|
-
/***/
|
|
61
|
+
/***/ 43:
|
|
62
62
|
/***/ function(module, exports, __webpack_require__) {
|
|
63
63
|
|
|
64
64
|
'use strict';
|
|
@@ -73,17 +73,17 @@ module.exports =
|
|
|
73
73
|
|
|
74
74
|
var _react2 = _interopRequireDefault(_react);
|
|
75
75
|
|
|
76
|
-
var _reactDropzone = __webpack_require__(
|
|
76
|
+
var _reactDropzone = __webpack_require__(60);
|
|
77
77
|
|
|
78
78
|
var _reactDropzone2 = _interopRequireDefault(_reactDropzone);
|
|
79
79
|
|
|
80
|
-
var _papaparse = __webpack_require__(
|
|
80
|
+
var _papaparse = __webpack_require__(58);
|
|
81
81
|
|
|
82
82
|
var _papaparse2 = _interopRequireDefault(_papaparse);
|
|
83
83
|
|
|
84
|
-
__webpack_require__(
|
|
84
|
+
__webpack_require__(57);
|
|
85
85
|
|
|
86
|
-
var _clipboard = __webpack_require__(
|
|
86
|
+
var _clipboard = __webpack_require__(44);
|
|
87
87
|
|
|
88
88
|
var _clipboard2 = _interopRequireDefault(_clipboard);
|
|
89
89
|
|
|
@@ -102,8 +102,8 @@ module.exports =
|
|
|
102
102
|
// SKIP ON SERVER-SIDE RENDERING
|
|
103
103
|
var codemirror = null;
|
|
104
104
|
if (typeof window !== 'undefined' && typeof window.navigator !== 'undefined') {
|
|
105
|
-
codemirror = __webpack_require__(
|
|
106
|
-
__webpack_require__(
|
|
105
|
+
codemirror = __webpack_require__(59);
|
|
106
|
+
__webpack_require__(56);
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
function unCamelize(text) {
|
|
@@ -219,7 +219,8 @@ module.exports =
|
|
|
219
219
|
checking: checking, inputs: inputs }) : isSFTP ? _react2.default.createElement(SFTP, { wizard: wizard, onCheck: check,
|
|
220
220
|
checking: checking, setCsvFields: setCsvFields,
|
|
221
221
|
providerType: providerType }) : isGoogle ? _react2.default.createElement(Google, { config: config, creds: creds, onChange: this.onChange,
|
|
222
|
-
credsDisabledCheck: credsDisabledCheck, inputs: inputs
|
|
222
|
+
credsDisabledCheck: credsDisabledCheck, inputs: inputs,
|
|
223
|
+
onCheck: check }) : _react2.default.createElement(
|
|
223
224
|
'div',
|
|
224
225
|
null,
|
|
225
226
|
_react2.default.createElement(
|
|
@@ -316,9 +317,9 @@ module.exports =
|
|
|
316
317
|
var config = props.config,
|
|
317
318
|
creds = props.creds,
|
|
318
319
|
_onChange = props.onChange,
|
|
319
|
-
check = props.check,
|
|
320
320
|
credsDisabledCheck = props.credsDisabledCheck,
|
|
321
|
-
inputs = props.inputs
|
|
321
|
+
inputs = props.inputs,
|
|
322
|
+
onCheck = props.onCheck;
|
|
322
323
|
|
|
323
324
|
var Input = inputs.Input;
|
|
324
325
|
var Button = inputs.Button;
|
|
@@ -370,7 +371,7 @@ module.exports =
|
|
|
370
371
|
Button,
|
|
371
372
|
{
|
|
372
373
|
onClick: function onClick() {
|
|
373
|
-
return
|
|
374
|
+
return onCheck(creds);
|
|
374
375
|
},
|
|
375
376
|
style: { marginLeft: 8, marginBottom: 2, height: 30, lineHeight: '10px' },
|
|
376
377
|
disabled: credsDisabledCheck },
|
|
@@ -823,7 +824,7 @@ module.exports =
|
|
|
823
824
|
|
|
824
825
|
/***/ },
|
|
825
826
|
|
|
826
|
-
/***/
|
|
827
|
+
/***/ 44:
|
|
827
828
|
/***/ function(module, exports, __webpack_require__) {
|
|
828
829
|
|
|
829
830
|
"use strict";
|
|
@@ -1005,7 +1006,7 @@ module.exports =
|
|
|
1005
1006
|
|
|
1006
1007
|
/***/ },
|
|
1007
1008
|
|
|
1008
|
-
/***/
|
|
1009
|
+
/***/ 55:
|
|
1009
1010
|
/***/ function(module, exports, __webpack_require__) {
|
|
1010
1011
|
|
|
1011
1012
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
@@ -10671,7 +10672,7 @@ module.exports =
|
|
|
10671
10672
|
|
|
10672
10673
|
/***/ },
|
|
10673
10674
|
|
|
10674
|
-
/***/
|
|
10675
|
+
/***/ 56:
|
|
10675
10676
|
/***/ function(module, exports, __webpack_require__) {
|
|
10676
10677
|
|
|
10677
10678
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
@@ -10679,7 +10680,7 @@ module.exports =
|
|
|
10679
10680
|
|
|
10680
10681
|
(function(mod) {
|
|
10681
10682
|
if (true) // CommonJS
|
|
10682
|
-
mod(__webpack_require__(
|
|
10683
|
+
mod(__webpack_require__(55));
|
|
10683
10684
|
else if (typeof define == "function" && define.amd) // AMD
|
|
10684
10685
|
define(["../../lib/codemirror"], mod);
|
|
10685
10686
|
else // Plain browser env
|
|
@@ -11533,28 +11534,28 @@ module.exports =
|
|
|
11533
11534
|
|
|
11534
11535
|
/***/ },
|
|
11535
11536
|
|
|
11536
|
-
/***/
|
|
11537
|
+
/***/ 57:
|
|
11537
11538
|
/***/ function(module, exports) {
|
|
11538
11539
|
|
|
11539
11540
|
// removed by extract-text-webpack-plugin
|
|
11540
11541
|
|
|
11541
11542
|
/***/ },
|
|
11542
11543
|
|
|
11543
|
-
/***/
|
|
11544
|
+
/***/ 58:
|
|
11544
11545
|
/***/ function(module, exports) {
|
|
11545
11546
|
|
|
11546
11547
|
module.exports = require("papaparse");
|
|
11547
11548
|
|
|
11548
11549
|
/***/ },
|
|
11549
11550
|
|
|
11550
|
-
/***/
|
|
11551
|
+
/***/ 59:
|
|
11551
11552
|
/***/ function(module, exports) {
|
|
11552
11553
|
|
|
11553
11554
|
module.exports = require("react-codemirror2");
|
|
11554
11555
|
|
|
11555
11556
|
/***/ },
|
|
11556
11557
|
|
|
11557
|
-
/***/
|
|
11558
|
+
/***/ 60:
|
|
11558
11559
|
/***/ function(module, exports) {
|
|
11559
11560
|
|
|
11560
11561
|
module.exports = require("react-dropzone");
|