@lingk/sync 0.2.5 → 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 +5 -4
- package/build/credentialSections.js.map +1 -1
- package/build/css/main.css +8 -0
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js.map +1 -1
- package/build/loadData.js.map +1 -1
- package/build/main.js +5 -4
- package/build/main.js.map +1 -1
- package/build/metadataFunctions.js.map +1 -1
- package/build/reducer.js.map +1 -1
- package/build/saveData.js.map +1 -1
- package/package.json +1 -1
|
@@ -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 },
|