@lingk/sync 0.1.16 → 0.1.17
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/lightningStyles.css +0 -1
- package/build/css/main.css +58 -3
- package/build/lightning.js +38 -37
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js +7 -4
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js.map +1 -1
- package/build/main.js +519 -224
- package/build/main.js.map +1 -1
- package/build/reducer.js +2 -2
- package/build/reducer.js.map +1 -1
- package/package.json +1 -1
package/build/css/main.css
CHANGED
|
@@ -510,11 +510,66 @@ body{
|
|
|
510
510
|
max-height:0px;
|
|
511
511
|
}
|
|
512
512
|
.enable-delete{
|
|
513
|
-
width: 115px;
|
|
514
513
|
position: absolute;
|
|
515
|
-
|
|
516
|
-
|
|
514
|
+
top:6px;
|
|
515
|
+
left: 500px;
|
|
516
|
+
width: 207px;
|
|
517
517
|
z-index: 6003;
|
|
518
|
+
cursor: pointer;
|
|
519
|
+
-webkit-user-select:none;
|
|
520
|
+
-moz-user-select:none;
|
|
521
|
+
-ms-user-select:none;
|
|
522
|
+
user-select:none;
|
|
523
|
+
}
|
|
524
|
+
.enable-delete span{
|
|
525
|
+
float:right;
|
|
526
|
+
}
|
|
527
|
+
.enable-delete:hover span{
|
|
528
|
+
text-decoration: underline;
|
|
529
|
+
}
|
|
530
|
+
.bundle-mode-options{
|
|
531
|
+
width:30%;
|
|
532
|
+
height:100%;
|
|
533
|
+
background: white;
|
|
534
|
+
padding:6px;
|
|
535
|
+
border-left:1px solid grey;
|
|
536
|
+
position: absolute;
|
|
537
|
+
top:0; right:0;
|
|
538
|
+
z-index: 6004;
|
|
539
|
+
}
|
|
540
|
+
.close-bundle-mode-options{
|
|
541
|
+
cursor: pointer;
|
|
542
|
+
float: right;
|
|
543
|
+
margin-right: 5px;
|
|
544
|
+
}
|
|
545
|
+
.close-bundle-mode-options svg path{
|
|
546
|
+
stroke:grey;
|
|
547
|
+
}
|
|
548
|
+
.close-bundle-mode-options:hover svg path{
|
|
549
|
+
stroke:black;
|
|
550
|
+
}
|
|
551
|
+
.bundle-mode-options-content{
|
|
552
|
+
padding:20px 15px;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
.bundle-mode-options-enter{
|
|
556
|
+
-webkit-transition: all 0.3s;
|
|
557
|
+
transition: all 0.3s;
|
|
558
|
+
-webkit-transform:translate(100%);
|
|
559
|
+
-ms-transform:translate(100%);
|
|
560
|
+
transform:translate(100%);
|
|
561
|
+
}
|
|
562
|
+
.bundle-mode-options-leave, .bundle-mode-options-enter-active{
|
|
563
|
+
-webkit-transition: all 0.3s;
|
|
564
|
+
transition: all 0.3s;
|
|
565
|
+
-webkit-transform:translate(0%);
|
|
566
|
+
-ms-transform:translate(0%);
|
|
567
|
+
transform:translate(0%);
|
|
568
|
+
}
|
|
569
|
+
.bundle-mode-options-leave-active{
|
|
570
|
+
-webkit-transform:translate(100%);
|
|
571
|
+
-ms-transform:translate(100%);
|
|
572
|
+
transform:translate(100%);
|
|
518
573
|
}
|
|
519
574
|
|
|
520
575
|
.slide-left-enter{
|
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__(33);
|
|
112
112
|
module.exports = __webpack_require__(10) ? 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__(30)
|
|
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__(34)('wks')
|
|
204
|
+
, uid = __webpack_require__(36)
|
|
205
205
|
, Symbol = __webpack_require__(7).Symbol
|
|
206
206
|
, USE_SYMBOL = typeof Symbol == 'function';
|
|
207
207
|
|
|
@@ -283,15 +283,16 @@ 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__(34)('keys')
|
|
287
|
+
, uid = __webpack_require__(36);
|
|
288
288
|
module.exports = function(key){
|
|
289
289
|
return shared[key] || (shared[key] = uid(key));
|
|
290
290
|
};
|
|
291
291
|
|
|
292
292
|
/***/ },
|
|
293
293
|
/* 25 */,
|
|
294
|
-
/* 26
|
|
294
|
+
/* 26 */,
|
|
295
|
+
/* 27 */
|
|
295
296
|
/***/ function(module, exports) {
|
|
296
297
|
|
|
297
298
|
var toString = {}.toString;
|
|
@@ -301,7 +302,7 @@ module.exports =
|
|
|
301
302
|
};
|
|
302
303
|
|
|
303
304
|
/***/ },
|
|
304
|
-
/*
|
|
305
|
+
/* 28 */
|
|
305
306
|
/***/ function(module, exports, __webpack_require__) {
|
|
306
307
|
|
|
307
308
|
var isObject = __webpack_require__(14)
|
|
@@ -313,7 +314,7 @@ module.exports =
|
|
|
313
314
|
};
|
|
314
315
|
|
|
315
316
|
/***/ },
|
|
316
|
-
/*
|
|
317
|
+
/* 29 */
|
|
317
318
|
/***/ function(module, exports) {
|
|
318
319
|
|
|
319
320
|
// IE 8- don't enum bug keys
|
|
@@ -322,35 +323,35 @@ module.exports =
|
|
|
322
323
|
).split(',');
|
|
323
324
|
|
|
324
325
|
/***/ },
|
|
325
|
-
/*
|
|
326
|
+
/* 30 */
|
|
326
327
|
/***/ function(module, exports, __webpack_require__) {
|
|
327
328
|
|
|
328
329
|
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
329
|
-
var cof = __webpack_require__(
|
|
330
|
+
var cof = __webpack_require__(27);
|
|
330
331
|
module.exports = Object('z').propertyIsEnumerable(0) ? Object : function(it){
|
|
331
332
|
return cof(it) == 'String' ? it.split('') : Object(it);
|
|
332
333
|
};
|
|
333
334
|
|
|
334
335
|
/***/ },
|
|
335
|
-
/*
|
|
336
|
+
/* 31 */
|
|
336
337
|
/***/ function(module, exports) {
|
|
337
338
|
|
|
338
339
|
module.exports = {};
|
|
339
340
|
|
|
340
341
|
/***/ },
|
|
341
|
-
/*
|
|
342
|
+
/* 32 */
|
|
342
343
|
/***/ function(module, exports, __webpack_require__) {
|
|
343
344
|
|
|
344
345
|
// 19.1.2.14 / 15.2.3.14 Object.keys(O)
|
|
345
346
|
var $keys = __webpack_require__(45)
|
|
346
|
-
, enumBugKeys = __webpack_require__(
|
|
347
|
+
, enumBugKeys = __webpack_require__(29);
|
|
347
348
|
|
|
348
349
|
module.exports = Object.keys || function keys(O){
|
|
349
350
|
return $keys(O, enumBugKeys);
|
|
350
351
|
};
|
|
351
352
|
|
|
352
353
|
/***/ },
|
|
353
|
-
/*
|
|
354
|
+
/* 33 */
|
|
354
355
|
/***/ function(module, exports) {
|
|
355
356
|
|
|
356
357
|
module.exports = function(bitmap, value){
|
|
@@ -363,7 +364,7 @@ module.exports =
|
|
|
363
364
|
};
|
|
364
365
|
|
|
365
366
|
/***/ },
|
|
366
|
-
/*
|
|
367
|
+
/* 34 */
|
|
367
368
|
/***/ function(module, exports, __webpack_require__) {
|
|
368
369
|
|
|
369
370
|
var global = __webpack_require__(7)
|
|
@@ -374,7 +375,7 @@ module.exports =
|
|
|
374
375
|
};
|
|
375
376
|
|
|
376
377
|
/***/ },
|
|
377
|
-
/*
|
|
378
|
+
/* 35 */
|
|
378
379
|
/***/ function(module, exports, __webpack_require__) {
|
|
379
380
|
|
|
380
381
|
// 7.1.13 ToObject(argument)
|
|
@@ -384,7 +385,7 @@ module.exports =
|
|
|
384
385
|
};
|
|
385
386
|
|
|
386
387
|
/***/ },
|
|
387
|
-
/*
|
|
388
|
+
/* 36 */
|
|
388
389
|
/***/ function(module, exports) {
|
|
389
390
|
|
|
390
391
|
var id = 0
|
|
@@ -394,7 +395,7 @@ module.exports =
|
|
|
394
395
|
};
|
|
395
396
|
|
|
396
397
|
/***/ },
|
|
397
|
-
/*
|
|
398
|
+
/* 37 */
|
|
398
399
|
/***/ function(module, exports, __webpack_require__) {
|
|
399
400
|
|
|
400
401
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
@@ -448,7 +449,6 @@ module.exports =
|
|
|
448
449
|
|
|
449
450
|
|
|
450
451
|
/***/ },
|
|
451
|
-
/* 37 */,
|
|
452
452
|
/* 38 */,
|
|
453
453
|
/* 39 */,
|
|
454
454
|
/* 40 */,
|
|
@@ -516,7 +516,7 @@ module.exports =
|
|
|
516
516
|
/***/ function(module, exports, __webpack_require__) {
|
|
517
517
|
|
|
518
518
|
module.exports = !__webpack_require__(10) && !__webpack_require__(12)(function(){
|
|
519
|
-
return Object.defineProperty(__webpack_require__(
|
|
519
|
+
return Object.defineProperty(__webpack_require__(28)('div'), 'a', {get: function(){ return 7; }}).a != 7;
|
|
520
520
|
});
|
|
521
521
|
|
|
522
522
|
/***/ },
|
|
@@ -596,7 +596,7 @@ module.exports =
|
|
|
596
596
|
, redefine = __webpack_require__(255)
|
|
597
597
|
, hide = __webpack_require__(13)
|
|
598
598
|
, has = __webpack_require__(17)
|
|
599
|
-
, Iterators = __webpack_require__(
|
|
599
|
+
, Iterators = __webpack_require__(31)
|
|
600
600
|
, $iterCreate = __webpack_require__(245)
|
|
601
601
|
, setToStringTag = __webpack_require__(55)
|
|
602
602
|
, getPrototypeOf = __webpack_require__(252)
|
|
@@ -1024,7 +1024,7 @@ module.exports =
|
|
|
1024
1024
|
_react2.default.createElement(Header, { title: title, closeButton: true }),
|
|
1025
1025
|
_react2.default.createElement(
|
|
1026
1026
|
Content,
|
|
1027
|
-
{ style: { padding: '1em' } },
|
|
1027
|
+
{ style: { padding: '1em', overflow: 'visible' } },
|
|
1028
1028
|
_react2.default.isValidElement(children) ? _react2.default.cloneElement(children) : null
|
|
1029
1029
|
),
|
|
1030
1030
|
_react2.default.createElement(
|
|
@@ -1080,7 +1080,7 @@ module.exports =
|
|
|
1080
1080
|
|
|
1081
1081
|
var _react2 = _interopRequireDefault(_react);
|
|
1082
1082
|
|
|
1083
|
-
var _classnames = __webpack_require__(
|
|
1083
|
+
var _classnames = __webpack_require__(37);
|
|
1084
1084
|
|
|
1085
1085
|
var _classnames2 = _interopRequireDefault(_classnames);
|
|
1086
1086
|
|
|
@@ -1581,7 +1581,7 @@ module.exports =
|
|
|
1581
1581
|
|
|
1582
1582
|
return _react2.default.createElement(
|
|
1583
1583
|
'div',
|
|
1584
|
-
{ className: 'help-tooltip', style: wrapStyle },
|
|
1584
|
+
{ className: 'help-tooltip', style: Object.assign({}, wrapStyle, { position: 'absolute' }) },
|
|
1585
1585
|
_react2.default.createElement(
|
|
1586
1586
|
'div',
|
|
1587
1587
|
{ className: 'help-tooltip-q' },
|
|
@@ -1592,7 +1592,8 @@ module.exports =
|
|
|
1592
1592
|
{ className: 'help-tooltip-pop' },
|
|
1593
1593
|
_react2.default.createElement(
|
|
1594
1594
|
_reactLightningDesignSystem.Popover,
|
|
1595
|
-
{ hidden: false, position: nubbin, tooltip: true,
|
|
1595
|
+
{ hidden: false, position: nubbin, tooltip: true,
|
|
1596
|
+
style: Object.assign({}, popStyle, { position: 'absolute' }) },
|
|
1596
1597
|
_react2.default.Children.count(children) > 0 ? _react2.default.Children.map(children, function (child) {
|
|
1597
1598
|
return _react2.default.cloneElement(child);
|
|
1598
1599
|
}) : null
|
|
@@ -2045,7 +2046,7 @@ module.exports =
|
|
|
2045
2046
|
/***/ function(module, exports, __webpack_require__) {
|
|
2046
2047
|
|
|
2047
2048
|
// getting tag from 19.1.3.6 Object.prototype.toString()
|
|
2048
|
-
var cof = __webpack_require__(
|
|
2049
|
+
var cof = __webpack_require__(27)
|
|
2049
2050
|
, TAG = __webpack_require__(21)('toStringTag')
|
|
2050
2051
|
// ES3 wrong here
|
|
2051
2052
|
, ARG = cof(function(){ return arguments; }()) == 'Arguments';
|
|
@@ -2080,7 +2081,7 @@ module.exports =
|
|
|
2080
2081
|
|
|
2081
2082
|
'use strict';
|
|
2082
2083
|
var create = __webpack_require__(249)
|
|
2083
|
-
, descriptor = __webpack_require__(
|
|
2084
|
+
, descriptor = __webpack_require__(33)
|
|
2084
2085
|
, setToStringTag = __webpack_require__(55)
|
|
2085
2086
|
, IteratorPrototype = {};
|
|
2086
2087
|
|
|
@@ -2114,7 +2115,7 @@ module.exports =
|
|
|
2114
2115
|
// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
|
|
2115
2116
|
var anObject = __webpack_require__(15)
|
|
2116
2117
|
, dPs = __webpack_require__(250)
|
|
2117
|
-
, enumBugKeys = __webpack_require__(
|
|
2118
|
+
, enumBugKeys = __webpack_require__(29)
|
|
2118
2119
|
, IE_PROTO = __webpack_require__(24)('IE_PROTO')
|
|
2119
2120
|
, Empty = function(){ /* empty */ }
|
|
2120
2121
|
, PROTOTYPE = 'prototype';
|
|
@@ -2122,7 +2123,7 @@ module.exports =
|
|
|
2122
2123
|
// Create object with fake `null` prototype: use iframe Object with cleared prototype
|
|
2123
2124
|
var createDict = function(){
|
|
2124
2125
|
// Thrash, waste and sodomy: IE GC bug
|
|
2125
|
-
var iframe = __webpack_require__(
|
|
2126
|
+
var iframe = __webpack_require__(28)('iframe')
|
|
2126
2127
|
, i = enumBugKeys.length
|
|
2127
2128
|
, lt = '<'
|
|
2128
2129
|
, gt = '>'
|
|
@@ -2160,7 +2161,7 @@ module.exports =
|
|
|
2160
2161
|
|
|
2161
2162
|
var dP = __webpack_require__(18)
|
|
2162
2163
|
, anObject = __webpack_require__(15)
|
|
2163
|
-
, getKeys = __webpack_require__(
|
|
2164
|
+
, getKeys = __webpack_require__(32);
|
|
2164
2165
|
|
|
2165
2166
|
module.exports = __webpack_require__(10) ? Object.defineProperties : function defineProperties(O, Properties){
|
|
2166
2167
|
anObject(O);
|
|
@@ -2179,7 +2180,7 @@ module.exports =
|
|
|
2179
2180
|
|
|
2180
2181
|
// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)
|
|
2181
2182
|
var has = __webpack_require__(17)
|
|
2182
|
-
, toObject = __webpack_require__(
|
|
2183
|
+
, toObject = __webpack_require__(35)
|
|
2183
2184
|
, IE_PROTO = __webpack_require__(24)('IE_PROTO')
|
|
2184
2185
|
, ObjectProto = Object.prototype;
|
|
2185
2186
|
|
|
@@ -2241,7 +2242,7 @@ module.exports =
|
|
|
2241
2242
|
|
|
2242
2243
|
var classof = __webpack_require__(243)
|
|
2243
2244
|
, ITERATOR = __webpack_require__(21)('iterator')
|
|
2244
|
-
, Iterators = __webpack_require__(
|
|
2245
|
+
, Iterators = __webpack_require__(31);
|
|
2245
2246
|
module.exports = __webpack_require__(9).getIteratorMethod = function(it){
|
|
2246
2247
|
if(it != undefined)return it[ITERATOR]
|
|
2247
2248
|
|| it['@@iterator']
|
|
@@ -2267,7 +2268,7 @@ module.exports =
|
|
|
2267
2268
|
'use strict';
|
|
2268
2269
|
var addToUnscopables = __webpack_require__(242)
|
|
2269
2270
|
, step = __webpack_require__(246)
|
|
2270
|
-
, Iterators = __webpack_require__(
|
|
2271
|
+
, Iterators = __webpack_require__(31)
|
|
2271
2272
|
, toIObject = __webpack_require__(20);
|
|
2272
2273
|
|
|
2273
2274
|
// 22.1.3.4 Array.prototype.entries()
|
|
@@ -2306,8 +2307,8 @@ module.exports =
|
|
|
2306
2307
|
/***/ function(module, exports, __webpack_require__) {
|
|
2307
2308
|
|
|
2308
2309
|
// 19.1.2.14 Object.keys(O)
|
|
2309
|
-
var toObject = __webpack_require__(
|
|
2310
|
-
, $keys = __webpack_require__(
|
|
2310
|
+
var toObject = __webpack_require__(35)
|
|
2311
|
+
, $keys = __webpack_require__(32);
|
|
2311
2312
|
|
|
2312
2313
|
__webpack_require__(254)('keys', function(){
|
|
2313
2314
|
return function keys(it){
|
|
@@ -2344,7 +2345,7 @@ module.exports =
|
|
|
2344
2345
|
__webpack_require__(259);
|
|
2345
2346
|
var global = __webpack_require__(7)
|
|
2346
2347
|
, hide = __webpack_require__(13)
|
|
2347
|
-
, Iterators = __webpack_require__(
|
|
2348
|
+
, Iterators = __webpack_require__(31)
|
|
2348
2349
|
, TO_STRING_TAG = __webpack_require__(21)('toStringTag');
|
|
2349
2350
|
|
|
2350
2351
|
for(var collections = ['NodeList', 'DOMTokenList', 'MediaList', 'StyleSheetList', 'CSSRuleList'], i = 0; i < 5; i++){
|