@lingk/sync 0.1.67 → 0.1.68
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/css/main.css +19 -0
- package/build/lightning.js +39 -40
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js +5 -6
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js.map +1 -1
- package/build/main.js +533 -455
- package/build/main.js.map +1 -1
- package/build/reducer.js.map +1 -1
- package/package.json +1 -1
package/build/css/main.css
CHANGED
|
@@ -837,6 +837,25 @@ body{
|
|
|
837
837
|
}
|
|
838
838
|
|
|
839
839
|
|
|
840
|
+
.env-creds{
|
|
841
|
+
max-height:650px;
|
|
842
|
+
overflow: hidden;
|
|
843
|
+
-webkit-transition: max-height 0.25s;
|
|
844
|
+
transition: max-height 0.25s;
|
|
845
|
+
}
|
|
846
|
+
.env-creds-enter{
|
|
847
|
+
max-height: 0px;
|
|
848
|
+
}
|
|
849
|
+
.env-creds-enter-active{
|
|
850
|
+
max-height: 1200px;
|
|
851
|
+
}
|
|
852
|
+
.env-creds-leave{
|
|
853
|
+
max-height: 1200px;
|
|
854
|
+
}
|
|
855
|
+
.env-creds-leave-active{
|
|
856
|
+
max-height: 0px;
|
|
857
|
+
}
|
|
858
|
+
|
|
840
859
|
.rc-time-picker {
|
|
841
860
|
display: inline-block;
|
|
842
861
|
box-sizing: border-box;
|
package/build/lightning.js
CHANGED
|
@@ -108,7 +108,7 @@ module.exports =
|
|
|
108
108
|
/***/ function(module, exports, __webpack_require__) {
|
|
109
109
|
|
|
110
110
|
var dP = __webpack_require__(18)
|
|
111
|
-
, createDesc = __webpack_require__(
|
|
111
|
+
, createDesc = __webpack_require__(34);
|
|
112
112
|
module.exports = __webpack_require__(9) ? function(object, key, value){
|
|
113
113
|
return dP.f(object, key, createDesc(1, value));
|
|
114
114
|
} : function(object, key, value){
|
|
@@ -190,7 +190,7 @@ module.exports =
|
|
|
190
190
|
/***/ function(module, exports, __webpack_require__) {
|
|
191
191
|
|
|
192
192
|
// to indexed object, toObject with fallback for non-array-like ES3 strings
|
|
193
|
-
var IObject = __webpack_require__(
|
|
193
|
+
var IObject = __webpack_require__(31)
|
|
194
194
|
, defined = __webpack_require__(16);
|
|
195
195
|
module.exports = function(it){
|
|
196
196
|
return IObject(defined(it));
|
|
@@ -200,8 +200,8 @@ module.exports =
|
|
|
200
200
|
/* 21 */
|
|
201
201
|
/***/ function(module, exports, __webpack_require__) {
|
|
202
202
|
|
|
203
|
-
var store = __webpack_require__(
|
|
204
|
-
, uid = __webpack_require__(
|
|
203
|
+
var store = __webpack_require__(35)('wks')
|
|
204
|
+
, uid = __webpack_require__(37)
|
|
205
205
|
, Symbol = __webpack_require__(6).Symbol
|
|
206
206
|
, USE_SYMBOL = typeof Symbol == 'function';
|
|
207
207
|
|
|
@@ -283,8 +283,8 @@ module.exports =
|
|
|
283
283
|
/* 24 */
|
|
284
284
|
/***/ function(module, exports, __webpack_require__) {
|
|
285
285
|
|
|
286
|
-
var shared = __webpack_require__(
|
|
287
|
-
, uid = __webpack_require__(
|
|
286
|
+
var shared = __webpack_require__(35)('keys')
|
|
287
|
+
, uid = __webpack_require__(37);
|
|
288
288
|
module.exports = function(key){
|
|
289
289
|
return shared[key] || (shared[key] = uid(key));
|
|
290
290
|
};
|
|
@@ -292,7 +292,8 @@ module.exports =
|
|
|
292
292
|
/***/ },
|
|
293
293
|
/* 25 */,
|
|
294
294
|
/* 26 */,
|
|
295
|
-
/* 27
|
|
295
|
+
/* 27 */,
|
|
296
|
+
/* 28 */
|
|
296
297
|
/***/ function(module, exports) {
|
|
297
298
|
|
|
298
299
|
var toString = {}.toString;
|
|
@@ -302,7 +303,7 @@ module.exports =
|
|
|
302
303
|
};
|
|
303
304
|
|
|
304
305
|
/***/ },
|
|
305
|
-
/*
|
|
306
|
+
/* 29 */
|
|
306
307
|
/***/ function(module, exports, __webpack_require__) {
|
|
307
308
|
|
|
308
309
|
var isObject = __webpack_require__(14)
|
|
@@ -314,7 +315,7 @@ module.exports =
|
|
|
314
315
|
};
|
|
315
316
|
|
|
316
317
|
/***/ },
|
|
317
|
-
/*
|
|
318
|
+
/* 30 */
|
|
318
319
|
/***/ function(module, exports) {
|
|
319
320
|
|
|
320
321
|
// IE 8- don't enum bug keys
|
|
@@ -323,35 +324,35 @@ module.exports =
|
|
|
323
324
|
).split(',');
|
|
324
325
|
|
|
325
326
|
/***/ },
|
|
326
|
-
/*
|
|
327
|
+
/* 31 */
|
|
327
328
|
/***/ function(module, exports, __webpack_require__) {
|
|
328
329
|
|
|
329
330
|
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
330
|
-
var cof = __webpack_require__(
|
|
331
|
+
var cof = __webpack_require__(28);
|
|
331
332
|
module.exports = Object('z').propertyIsEnumerable(0) ? Object : function(it){
|
|
332
333
|
return cof(it) == 'String' ? it.split('') : Object(it);
|
|
333
334
|
};
|
|
334
335
|
|
|
335
336
|
/***/ },
|
|
336
|
-
/*
|
|
337
|
+
/* 32 */
|
|
337
338
|
/***/ function(module, exports) {
|
|
338
339
|
|
|
339
340
|
module.exports = {};
|
|
340
341
|
|
|
341
342
|
/***/ },
|
|
342
|
-
/*
|
|
343
|
+
/* 33 */
|
|
343
344
|
/***/ function(module, exports, __webpack_require__) {
|
|
344
345
|
|
|
345
346
|
// 19.1.2.14 / 15.2.3.14 Object.keys(O)
|
|
346
347
|
var $keys = __webpack_require__(46)
|
|
347
|
-
, enumBugKeys = __webpack_require__(
|
|
348
|
+
, enumBugKeys = __webpack_require__(30);
|
|
348
349
|
|
|
349
350
|
module.exports = Object.keys || function keys(O){
|
|
350
351
|
return $keys(O, enumBugKeys);
|
|
351
352
|
};
|
|
352
353
|
|
|
353
354
|
/***/ },
|
|
354
|
-
/*
|
|
355
|
+
/* 34 */
|
|
355
356
|
/***/ function(module, exports) {
|
|
356
357
|
|
|
357
358
|
module.exports = function(bitmap, value){
|
|
@@ -364,7 +365,7 @@ module.exports =
|
|
|
364
365
|
};
|
|
365
366
|
|
|
366
367
|
/***/ },
|
|
367
|
-
/*
|
|
368
|
+
/* 35 */
|
|
368
369
|
/***/ function(module, exports, __webpack_require__) {
|
|
369
370
|
|
|
370
371
|
var global = __webpack_require__(6)
|
|
@@ -375,7 +376,7 @@ module.exports =
|
|
|
375
376
|
};
|
|
376
377
|
|
|
377
378
|
/***/ },
|
|
378
|
-
/*
|
|
379
|
+
/* 36 */
|
|
379
380
|
/***/ function(module, exports, __webpack_require__) {
|
|
380
381
|
|
|
381
382
|
// 7.1.13 ToObject(argument)
|
|
@@ -385,7 +386,7 @@ module.exports =
|
|
|
385
386
|
};
|
|
386
387
|
|
|
387
388
|
/***/ },
|
|
388
|
-
/*
|
|
389
|
+
/* 37 */
|
|
389
390
|
/***/ function(module, exports) {
|
|
390
391
|
|
|
391
392
|
var id = 0
|
|
@@ -395,7 +396,7 @@ module.exports =
|
|
|
395
396
|
};
|
|
396
397
|
|
|
397
398
|
/***/ },
|
|
398
|
-
/*
|
|
399
|
+
/* 38 */
|
|
399
400
|
/***/ function(module, exports, __webpack_require__) {
|
|
400
401
|
|
|
401
402
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
@@ -449,7 +450,6 @@ module.exports =
|
|
|
449
450
|
|
|
450
451
|
|
|
451
452
|
/***/ },
|
|
452
|
-
/* 38 */,
|
|
453
453
|
/* 39 */,
|
|
454
454
|
/* 40 */,
|
|
455
455
|
/* 41 */,
|
|
@@ -517,7 +517,7 @@ module.exports =
|
|
|
517
517
|
/***/ function(module, exports, __webpack_require__) {
|
|
518
518
|
|
|
519
519
|
module.exports = !__webpack_require__(9) && !__webpack_require__(12)(function(){
|
|
520
|
-
return Object.defineProperty(__webpack_require__(
|
|
520
|
+
return Object.defineProperty(__webpack_require__(29)('div'), 'a', {get: function(){ return 7; }}).a != 7;
|
|
521
521
|
});
|
|
522
522
|
|
|
523
523
|
/***/ },
|
|
@@ -597,7 +597,7 @@ module.exports =
|
|
|
597
597
|
, redefine = __webpack_require__(149)
|
|
598
598
|
, hide = __webpack_require__(13)
|
|
599
599
|
, has = __webpack_require__(17)
|
|
600
|
-
, Iterators = __webpack_require__(
|
|
600
|
+
, Iterators = __webpack_require__(32)
|
|
601
601
|
, $iterCreate = __webpack_require__(139)
|
|
602
602
|
, setToStringTag = __webpack_require__(56)
|
|
603
603
|
, getPrototypeOf = __webpack_require__(146)
|
|
@@ -775,19 +775,18 @@ module.exports =
|
|
|
775
775
|
var isReverse = mode === 'reverse';
|
|
776
776
|
|
|
777
777
|
var normalGroup = resourceGroups.filter(function (g) {
|
|
778
|
-
return step.destinationProvider === g.provider;
|
|
778
|
+
return step.destinationProvider.toLowerCase() === g.provider.toLowerCase();
|
|
779
779
|
});
|
|
780
780
|
var reverseGroup = resourceGroups.filter(function (g) {
|
|
781
|
-
return step.sourceProvider === g.provider;
|
|
781
|
+
return step.sourceProvider.toLowerCase() === g.provider.toLowerCase();
|
|
782
782
|
});
|
|
783
783
|
|
|
784
784
|
var groups = isReverse ? reverseGroup : normalGroup;
|
|
785
|
-
var extraIndex = isReverse ? normalGroup.length : 0;
|
|
786
785
|
|
|
787
786
|
var title = isReverse ? step.destinationProvider + ' to ' + step.sourceProvider + ' Field Mappings' : step.sourceProvider + ' to ' + step.destinationProvider + ' Field Mappings';
|
|
788
787
|
|
|
789
788
|
var clearMapping = function clearMapping(i, mapping) {
|
|
790
|
-
return clearOneMapping(i
|
|
789
|
+
return clearOneMapping(i, mapping);
|
|
791
790
|
};
|
|
792
791
|
|
|
793
792
|
if (isReverse && !(reverseGroup && reverseGroup.length > 0)) return _react2.default.createElement('div', null);
|
|
@@ -841,9 +840,9 @@ module.exports =
|
|
|
841
840
|
return _react2.default.createElement(
|
|
842
841
|
_reactLightningDesignSystem.TableRow,
|
|
843
842
|
{ key: i, onClick: function onClick() {
|
|
844
|
-
return clickTableRow(i
|
|
843
|
+
return clickTableRow(i);
|
|
845
844
|
},
|
|
846
|
-
style: { background: i
|
|
845
|
+
style: { background: i === resourceGroupIndex ? '#f4f6f9' : 'white',
|
|
847
846
|
cursor: 'pointer' } },
|
|
848
847
|
_react2.default.createElement(
|
|
849
848
|
_reactLightningDesignSystem.TableRowColumn,
|
|
@@ -975,7 +974,7 @@ module.exports =
|
|
|
975
974
|
|
|
976
975
|
var _react2 = _interopRequireDefault(_react);
|
|
977
976
|
|
|
978
|
-
var _classnames = __webpack_require__(
|
|
977
|
+
var _classnames = __webpack_require__(38);
|
|
979
978
|
|
|
980
979
|
var _classnames2 = _interopRequireDefault(_classnames);
|
|
981
980
|
|
|
@@ -1952,7 +1951,7 @@ module.exports =
|
|
|
1952
1951
|
/***/ function(module, exports, __webpack_require__) {
|
|
1953
1952
|
|
|
1954
1953
|
// getting tag from 19.1.3.6 Object.prototype.toString()
|
|
1955
|
-
var cof = __webpack_require__(
|
|
1954
|
+
var cof = __webpack_require__(28)
|
|
1956
1955
|
, TAG = __webpack_require__(21)('toStringTag')
|
|
1957
1956
|
// ES3 wrong here
|
|
1958
1957
|
, ARG = cof(function(){ return arguments; }()) == 'Arguments';
|
|
@@ -1987,7 +1986,7 @@ module.exports =
|
|
|
1987
1986
|
|
|
1988
1987
|
'use strict';
|
|
1989
1988
|
var create = __webpack_require__(143)
|
|
1990
|
-
, descriptor = __webpack_require__(
|
|
1989
|
+
, descriptor = __webpack_require__(34)
|
|
1991
1990
|
, setToStringTag = __webpack_require__(56)
|
|
1992
1991
|
, IteratorPrototype = {};
|
|
1993
1992
|
|
|
@@ -2021,7 +2020,7 @@ module.exports =
|
|
|
2021
2020
|
// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
|
|
2022
2021
|
var anObject = __webpack_require__(15)
|
|
2023
2022
|
, dPs = __webpack_require__(144)
|
|
2024
|
-
, enumBugKeys = __webpack_require__(
|
|
2023
|
+
, enumBugKeys = __webpack_require__(30)
|
|
2025
2024
|
, IE_PROTO = __webpack_require__(24)('IE_PROTO')
|
|
2026
2025
|
, Empty = function(){ /* empty */ }
|
|
2027
2026
|
, PROTOTYPE = 'prototype';
|
|
@@ -2029,7 +2028,7 @@ module.exports =
|
|
|
2029
2028
|
// Create object with fake `null` prototype: use iframe Object with cleared prototype
|
|
2030
2029
|
var createDict = function(){
|
|
2031
2030
|
// Thrash, waste and sodomy: IE GC bug
|
|
2032
|
-
var iframe = __webpack_require__(
|
|
2031
|
+
var iframe = __webpack_require__(29)('iframe')
|
|
2033
2032
|
, i = enumBugKeys.length
|
|
2034
2033
|
, lt = '<'
|
|
2035
2034
|
, gt = '>'
|
|
@@ -2067,7 +2066,7 @@ module.exports =
|
|
|
2067
2066
|
|
|
2068
2067
|
var dP = __webpack_require__(18)
|
|
2069
2068
|
, anObject = __webpack_require__(15)
|
|
2070
|
-
, getKeys = __webpack_require__(
|
|
2069
|
+
, getKeys = __webpack_require__(33);
|
|
2071
2070
|
|
|
2072
2071
|
module.exports = __webpack_require__(9) ? Object.defineProperties : function defineProperties(O, Properties){
|
|
2073
2072
|
anObject(O);
|
|
@@ -2086,7 +2085,7 @@ module.exports =
|
|
|
2086
2085
|
|
|
2087
2086
|
// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)
|
|
2088
2087
|
var has = __webpack_require__(17)
|
|
2089
|
-
, toObject = __webpack_require__(
|
|
2088
|
+
, toObject = __webpack_require__(36)
|
|
2090
2089
|
, IE_PROTO = __webpack_require__(24)('IE_PROTO')
|
|
2091
2090
|
, ObjectProto = Object.prototype;
|
|
2092
2091
|
|
|
@@ -2148,7 +2147,7 @@ module.exports =
|
|
|
2148
2147
|
|
|
2149
2148
|
var classof = __webpack_require__(137)
|
|
2150
2149
|
, ITERATOR = __webpack_require__(21)('iterator')
|
|
2151
|
-
, Iterators = __webpack_require__(
|
|
2150
|
+
, Iterators = __webpack_require__(32);
|
|
2152
2151
|
module.exports = __webpack_require__(8).getIteratorMethod = function(it){
|
|
2153
2152
|
if(it != undefined)return it[ITERATOR]
|
|
2154
2153
|
|| it['@@iterator']
|
|
@@ -2174,7 +2173,7 @@ module.exports =
|
|
|
2174
2173
|
'use strict';
|
|
2175
2174
|
var addToUnscopables = __webpack_require__(136)
|
|
2176
2175
|
, step = __webpack_require__(140)
|
|
2177
|
-
, Iterators = __webpack_require__(
|
|
2176
|
+
, Iterators = __webpack_require__(32)
|
|
2178
2177
|
, toIObject = __webpack_require__(20);
|
|
2179
2178
|
|
|
2180
2179
|
// 22.1.3.4 Array.prototype.entries()
|
|
@@ -2213,8 +2212,8 @@ module.exports =
|
|
|
2213
2212
|
/***/ function(module, exports, __webpack_require__) {
|
|
2214
2213
|
|
|
2215
2214
|
// 19.1.2.14 Object.keys(O)
|
|
2216
|
-
var toObject = __webpack_require__(
|
|
2217
|
-
, $keys = __webpack_require__(
|
|
2215
|
+
var toObject = __webpack_require__(36)
|
|
2216
|
+
, $keys = __webpack_require__(33);
|
|
2218
2217
|
|
|
2219
2218
|
__webpack_require__(148)('keys', function(){
|
|
2220
2219
|
return function keys(it){
|
|
@@ -2251,7 +2250,7 @@ module.exports =
|
|
|
2251
2250
|
__webpack_require__(153);
|
|
2252
2251
|
var global = __webpack_require__(6)
|
|
2253
2252
|
, hide = __webpack_require__(13)
|
|
2254
|
-
, Iterators = __webpack_require__(
|
|
2253
|
+
, Iterators = __webpack_require__(32)
|
|
2255
2254
|
, TO_STRING_TAG = __webpack_require__(21)('toStringTag');
|
|
2256
2255
|
|
|
2257
2256
|
for(var collections = ['NodeList', 'DOMTokenList', 'MediaList', 'StyleSheetList', 'CSSRuleList'], i = 0; i < 5; i++){
|