@lingk/sync 0.1.98 → 0.2.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/build/lightning.js +24 -24
- 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/main.js +73 -78
- package/build/main.js.map +1 -1
- package/build/metadataFunctions.js +452 -0
- package/build/metadataFunctions.js.map +1 -0
- package/build/reducer.js +29 -29
- package/build/reducer.js.map +1 -1
- package/package.json +1 -1
package/build/lightning.js
CHANGED
|
@@ -158,8 +158,8 @@ module.exports =
|
|
|
158
158
|
/***/ function(module, exports, __webpack_require__) {
|
|
159
159
|
|
|
160
160
|
var anObject = __webpack_require__(15)
|
|
161
|
-
, IE8_DOM_DEFINE = __webpack_require__(
|
|
162
|
-
, toPrimitive = __webpack_require__(
|
|
161
|
+
, IE8_DOM_DEFINE = __webpack_require__(46)
|
|
162
|
+
, toPrimitive = __webpack_require__(50)
|
|
163
163
|
, dP = Object.defineProperty;
|
|
164
164
|
|
|
165
165
|
exports.f = __webpack_require__(9) ? Object.defineProperty : function defineProperty(O, P, Attributes){
|
|
@@ -220,7 +220,7 @@ module.exports =
|
|
|
220
220
|
|
|
221
221
|
var global = __webpack_require__(6)
|
|
222
222
|
, core = __webpack_require__(8)
|
|
223
|
-
, ctx = __webpack_require__(
|
|
223
|
+
, ctx = __webpack_require__(45)
|
|
224
224
|
, hide = __webpack_require__(13)
|
|
225
225
|
, PROTOTYPE = 'prototype';
|
|
226
226
|
|
|
@@ -344,7 +344,7 @@ module.exports =
|
|
|
344
344
|
/***/ function(module, exports, __webpack_require__) {
|
|
345
345
|
|
|
346
346
|
// 19.1.2.14 / 15.2.3.14 Object.keys(O)
|
|
347
|
-
var $keys = __webpack_require__(
|
|
347
|
+
var $keys = __webpack_require__(47)
|
|
348
348
|
, enumBugKeys = __webpack_require__(30);
|
|
349
349
|
|
|
350
350
|
module.exports = Object.keys || function keys(O){
|
|
@@ -453,7 +453,8 @@ module.exports =
|
|
|
453
453
|
/* 39 */,
|
|
454
454
|
/* 40 */,
|
|
455
455
|
/* 41 */,
|
|
456
|
-
/* 42
|
|
456
|
+
/* 42 */,
|
|
457
|
+
/* 43 */
|
|
457
458
|
/***/ function(module, exports) {
|
|
458
459
|
|
|
459
460
|
module.exports = function(it){
|
|
@@ -462,14 +463,14 @@ module.exports =
|
|
|
462
463
|
};
|
|
463
464
|
|
|
464
465
|
/***/ },
|
|
465
|
-
/*
|
|
466
|
+
/* 44 */
|
|
466
467
|
/***/ function(module, exports, __webpack_require__) {
|
|
467
468
|
|
|
468
469
|
// false -> Array#indexOf
|
|
469
470
|
// true -> Array#includes
|
|
470
471
|
var toIObject = __webpack_require__(20)
|
|
471
|
-
, toLength = __webpack_require__(
|
|
472
|
-
, toIndex = __webpack_require__(
|
|
472
|
+
, toLength = __webpack_require__(49)
|
|
473
|
+
, toIndex = __webpack_require__(48);
|
|
473
474
|
module.exports = function(IS_INCLUDES){
|
|
474
475
|
return function($this, el, fromIndex){
|
|
475
476
|
var O = toIObject($this)
|
|
@@ -488,11 +489,11 @@ module.exports =
|
|
|
488
489
|
};
|
|
489
490
|
|
|
490
491
|
/***/ },
|
|
491
|
-
/*
|
|
492
|
+
/* 45 */
|
|
492
493
|
/***/ function(module, exports, __webpack_require__) {
|
|
493
494
|
|
|
494
495
|
// optional / simple context binding
|
|
495
|
-
var aFunction = __webpack_require__(
|
|
496
|
+
var aFunction = __webpack_require__(43);
|
|
496
497
|
module.exports = function(fn, that, length){
|
|
497
498
|
aFunction(fn);
|
|
498
499
|
if(that === undefined)return fn;
|
|
@@ -513,7 +514,7 @@ module.exports =
|
|
|
513
514
|
};
|
|
514
515
|
|
|
515
516
|
/***/ },
|
|
516
|
-
/*
|
|
517
|
+
/* 46 */
|
|
517
518
|
/***/ function(module, exports, __webpack_require__) {
|
|
518
519
|
|
|
519
520
|
module.exports = !__webpack_require__(9) && !__webpack_require__(12)(function(){
|
|
@@ -521,12 +522,12 @@ module.exports =
|
|
|
521
522
|
});
|
|
522
523
|
|
|
523
524
|
/***/ },
|
|
524
|
-
/*
|
|
525
|
+
/* 47 */
|
|
525
526
|
/***/ function(module, exports, __webpack_require__) {
|
|
526
527
|
|
|
527
528
|
var has = __webpack_require__(17)
|
|
528
529
|
, toIObject = __webpack_require__(20)
|
|
529
|
-
, arrayIndexOf = __webpack_require__(
|
|
530
|
+
, arrayIndexOf = __webpack_require__(44)(false)
|
|
530
531
|
, IE_PROTO = __webpack_require__(25)('IE_PROTO');
|
|
531
532
|
|
|
532
533
|
module.exports = function(object, names){
|
|
@@ -543,7 +544,7 @@ module.exports =
|
|
|
543
544
|
};
|
|
544
545
|
|
|
545
546
|
/***/ },
|
|
546
|
-
/*
|
|
547
|
+
/* 48 */
|
|
547
548
|
/***/ function(module, exports, __webpack_require__) {
|
|
548
549
|
|
|
549
550
|
var toInteger = __webpack_require__(19)
|
|
@@ -555,7 +556,7 @@ module.exports =
|
|
|
555
556
|
};
|
|
556
557
|
|
|
557
558
|
/***/ },
|
|
558
|
-
/*
|
|
559
|
+
/* 49 */
|
|
559
560
|
/***/ function(module, exports, __webpack_require__) {
|
|
560
561
|
|
|
561
562
|
// 7.1.15 ToLength
|
|
@@ -566,7 +567,7 @@ module.exports =
|
|
|
566
567
|
};
|
|
567
568
|
|
|
568
569
|
/***/ },
|
|
569
|
-
/*
|
|
570
|
+
/* 50 */
|
|
570
571
|
/***/ function(module, exports, __webpack_require__) {
|
|
571
572
|
|
|
572
573
|
// 7.1.1 ToPrimitive(input [, PreferredType])
|
|
@@ -583,12 +584,12 @@ module.exports =
|
|
|
583
584
|
};
|
|
584
585
|
|
|
585
586
|
/***/ },
|
|
586
|
-
/* 50 */,
|
|
587
587
|
/* 51 */,
|
|
588
588
|
/* 52 */,
|
|
589
589
|
/* 53 */,
|
|
590
590
|
/* 54 */,
|
|
591
|
-
/* 55
|
|
591
|
+
/* 55 */,
|
|
592
|
+
/* 56 */
|
|
592
593
|
/***/ function(module, exports, __webpack_require__) {
|
|
593
594
|
|
|
594
595
|
'use strict';
|
|
@@ -599,7 +600,7 @@ module.exports =
|
|
|
599
600
|
, has = __webpack_require__(17)
|
|
600
601
|
, Iterators = __webpack_require__(32)
|
|
601
602
|
, $iterCreate = __webpack_require__(141)
|
|
602
|
-
, setToStringTag = __webpack_require__(
|
|
603
|
+
, setToStringTag = __webpack_require__(57)
|
|
603
604
|
, getPrototypeOf = __webpack_require__(148)
|
|
604
605
|
, ITERATOR = __webpack_require__(21)('iterator')
|
|
605
606
|
, BUGGY = !([].keys && 'next' in [].keys()) // Safari has buggy iterators w/o `next`
|
|
@@ -663,7 +664,7 @@ module.exports =
|
|
|
663
664
|
};
|
|
664
665
|
|
|
665
666
|
/***/ },
|
|
666
|
-
/*
|
|
667
|
+
/* 57 */
|
|
667
668
|
/***/ function(module, exports, __webpack_require__) {
|
|
668
669
|
|
|
669
670
|
var def = __webpack_require__(18).f
|
|
@@ -675,7 +676,6 @@ module.exports =
|
|
|
675
676
|
};
|
|
676
677
|
|
|
677
678
|
/***/ },
|
|
678
|
-
/* 57 */,
|
|
679
679
|
/* 58 */,
|
|
680
680
|
/* 59 */,
|
|
681
681
|
/* 60 */,
|
|
@@ -1989,7 +1989,7 @@ module.exports =
|
|
|
1989
1989
|
'use strict';
|
|
1990
1990
|
var create = __webpack_require__(145)
|
|
1991
1991
|
, descriptor = __webpack_require__(34)
|
|
1992
|
-
, setToStringTag = __webpack_require__(
|
|
1992
|
+
, setToStringTag = __webpack_require__(57)
|
|
1993
1993
|
, IteratorPrototype = {};
|
|
1994
1994
|
|
|
1995
1995
|
// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()
|
|
@@ -2182,7 +2182,7 @@ module.exports =
|
|
|
2182
2182
|
// 22.1.3.13 Array.prototype.keys()
|
|
2183
2183
|
// 22.1.3.29 Array.prototype.values()
|
|
2184
2184
|
// 22.1.3.30 Array.prototype[@@iterator]()
|
|
2185
|
-
module.exports = __webpack_require__(
|
|
2185
|
+
module.exports = __webpack_require__(56)(Array, 'Array', function(iterated, kind){
|
|
2186
2186
|
this._t = toIObject(iterated); // target
|
|
2187
2187
|
this._i = 0; // next index
|
|
2188
2188
|
this._k = kind; // kind
|
|
@@ -2231,7 +2231,7 @@ module.exports =
|
|
|
2231
2231
|
var $at = __webpack_require__(152)(true);
|
|
2232
2232
|
|
|
2233
2233
|
// 21.1.3.27 String.prototype[@@iterator]()
|
|
2234
|
-
__webpack_require__(
|
|
2234
|
+
__webpack_require__(56)(String, 'String', function(iterated){
|
|
2235
2235
|
this._t = String(iterated); // target
|
|
2236
2236
|
this._i = 0; // next index
|
|
2237
2237
|
// 21.1.5.2.1 %StringIteratorPrototype%.next()
|