UNPKG

59.1 kBJavaScriptView Raw
1(function webpackUniversalModuleDefinition(root, factory) {
2 if(typeof exports === 'object' && typeof module === 'object')
3 module.exports = factory(require("react"));
4 else if(typeof define === 'function' && define.amd)
5 define(["react"], factory);
6 else if(typeof exports === 'object')
7 exports["rmc-feedback"] = factory(require("react"));
8 else
9 root["rmc-feedback"] = factory(root["React"]);
10})(this, function(__WEBPACK_EXTERNAL_MODULE_89__) {
11return /******/ (function(modules) { // webpackBootstrap
12/******/ // The module cache
13/******/ var installedModules = {};
14/******/
15/******/ // The require function
16/******/ function __webpack_require__(moduleId) {
17/******/
18/******/ // Check if module is in cache
19/******/ if(installedModules[moduleId]) {
20/******/ return installedModules[moduleId].exports;
21/******/ }
22/******/ // Create a new module (and put it into the cache)
23/******/ var module = installedModules[moduleId] = {
24/******/ i: moduleId,
25/******/ l: false,
26/******/ exports: {}
27/******/ };
28/******/
29/******/ // Execute the module function
30/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
31/******/
32/******/ // Flag the module as loaded
33/******/ module.l = true;
34/******/
35/******/ // Return the exports of the module
36/******/ return module.exports;
37/******/ }
38/******/
39/******/
40/******/ // expose the modules object (__webpack_modules__)
41/******/ __webpack_require__.m = modules;
42/******/
43/******/ // expose the module cache
44/******/ __webpack_require__.c = installedModules;
45/******/
46/******/ // identity function for calling harmony imports with the correct context
47/******/ __webpack_require__.i = function(value) { return value; };
48/******/
49/******/ // define getter function for harmony exports
50/******/ __webpack_require__.d = function(exports, name, getter) {
51/******/ if(!__webpack_require__.o(exports, name)) {
52/******/ Object.defineProperty(exports, name, {
53/******/ configurable: false,
54/******/ enumerable: true,
55/******/ get: getter
56/******/ });
57/******/ }
58/******/ };
59/******/
60/******/ // getDefaultExport function for compatibility with non-harmony modules
61/******/ __webpack_require__.n = function(module) {
62/******/ var getter = module && module.__esModule ?
63/******/ function getDefault() { return module['default']; } :
64/******/ function getModuleExports() { return module; };
65/******/ __webpack_require__.d(getter, 'a', getter);
66/******/ return getter;
67/******/ };
68/******/
69/******/ // Object.prototype.hasOwnProperty.call
70/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
71/******/
72/******/ // __webpack_public_path__
73/******/ __webpack_require__.p = "";
74/******/
75/******/ // Load entry module and return exports
76/******/ return __webpack_require__(__webpack_require__.s = 90);
77/******/ })
78/************************************************************************/
79/******/ ([
80/* 0 */
81/***/ (function(module, exports) {
82
83// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
84var global = module.exports = typeof window != 'undefined' && window.Math == Math
85 ? window : typeof self != 'undefined' && self.Math == Math ? self
86 // eslint-disable-next-line no-new-func
87 : Function('return this')();
88if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef
89
90
91/***/ }),
92/* 1 */
93/***/ (function(module, exports) {
94
95var core = module.exports = { version: '2.5.5' };
96if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef
97
98
99/***/ }),
100/* 2 */
101/***/ (function(module, exports, __webpack_require__) {
102
103// Thank's IE8 for his funny defineProperty
104module.exports = !__webpack_require__(11)(function () {
105 return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
106});
107
108
109/***/ }),
110/* 3 */
111/***/ (function(module, exports) {
112
113var hasOwnProperty = {}.hasOwnProperty;
114module.exports = function (it, key) {
115 return hasOwnProperty.call(it, key);
116};
117
118
119/***/ }),
120/* 4 */
121/***/ (function(module, exports, __webpack_require__) {
122
123var anObject = __webpack_require__(10);
124var IE8_DOM_DEFINE = __webpack_require__(33);
125var toPrimitive = __webpack_require__(26);
126var dP = Object.defineProperty;
127
128exports.f = __webpack_require__(2) ? Object.defineProperty : function defineProperty(O, P, Attributes) {
129 anObject(O);
130 P = toPrimitive(P, true);
131 anObject(Attributes);
132 if (IE8_DOM_DEFINE) try {
133 return dP(O, P, Attributes);
134 } catch (e) { /* empty */ }
135 if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
136 if ('value' in Attributes) O[P] = Attributes.value;
137 return O;
138};
139
140
141/***/ }),
142/* 5 */
143/***/ (function(module, exports, __webpack_require__) {
144
145var global = __webpack_require__(0);
146var core = __webpack_require__(1);
147var ctx = __webpack_require__(31);
148var hide = __webpack_require__(6);
149var has = __webpack_require__(3);
150var PROTOTYPE = 'prototype';
151
152var $export = function (type, name, source) {
153 var IS_FORCED = type & $export.F;
154 var IS_GLOBAL = type & $export.G;
155 var IS_STATIC = type & $export.S;
156 var IS_PROTO = type & $export.P;
157 var IS_BIND = type & $export.B;
158 var IS_WRAP = type & $export.W;
159 var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});
160 var expProto = exports[PROTOTYPE];
161 var target = IS_GLOBAL ? global : IS_STATIC ? global[name] : (global[name] || {})[PROTOTYPE];
162 var key, own, out;
163 if (IS_GLOBAL) source = name;
164 for (key in source) {
165 // contains in native
166 own = !IS_FORCED && target && target[key] !== undefined;
167 if (own && has(exports, key)) continue;
168 // export native or passed
169 out = own ? target[key] : source[key];
170 // prevent global pollution for namespaces
171 exports[key] = IS_GLOBAL && typeof target[key] != 'function' ? source[key]
172 // bind timers to global for call from export context
173 : IS_BIND && own ? ctx(out, global)
174 // wrap global constructors for prevent change them in library
175 : IS_WRAP && target[key] == out ? (function (C) {
176 var F = function (a, b, c) {
177 if (this instanceof C) {
178 switch (arguments.length) {
179 case 0: return new C();
180 case 1: return new C(a);
181 case 2: return new C(a, b);
182 } return new C(a, b, c);
183 } return C.apply(this, arguments);
184 };
185 F[PROTOTYPE] = C[PROTOTYPE];
186 return F;
187 // make static versions for prototype methods
188 })(out) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;
189 // export proto methods to core.%CONSTRUCTOR%.methods.%NAME%
190 if (IS_PROTO) {
191 (exports.virtual || (exports.virtual = {}))[key] = out;
192 // export proto methods to core.%CONSTRUCTOR%.prototype.%NAME%
193 if (type & $export.R && expProto && !expProto[key]) hide(expProto, key, out);
194 }
195 }
196};
197// type bitmap
198$export.F = 1; // forced
199$export.G = 2; // global
200$export.S = 4; // static
201$export.P = 8; // proto
202$export.B = 16; // bind
203$export.W = 32; // wrap
204$export.U = 64; // safe
205$export.R = 128; // real proto method for `library`
206module.exports = $export;
207
208
209/***/ }),
210/* 6 */
211/***/ (function(module, exports, __webpack_require__) {
212
213var dP = __webpack_require__(4);
214var createDesc = __webpack_require__(14);
215module.exports = __webpack_require__(2) ? function (object, key, value) {
216 return dP.f(object, key, createDesc(1, value));
217} : function (object, key, value) {
218 object[key] = value;
219 return object;
220};
221
222
223/***/ }),
224/* 7 */
225/***/ (function(module, exports) {
226
227module.exports = function (it) {
228 return typeof it === 'object' ? it !== null : typeof it === 'function';
229};
230
231
232/***/ }),
233/* 8 */
234/***/ (function(module, exports, __webpack_require__) {
235
236// to indexed object, toObject with fallback for non-array-like ES3 strings
237var IObject = __webpack_require__(34);
238var defined = __webpack_require__(16);
239module.exports = function (it) {
240 return IObject(defined(it));
241};
242
243
244/***/ }),
245/* 9 */
246/***/ (function(module, exports, __webpack_require__) {
247
248var store = __webpack_require__(24)('wks');
249var uid = __webpack_require__(15);
250var Symbol = __webpack_require__(0).Symbol;
251var USE_SYMBOL = typeof Symbol == 'function';
252
253var $exports = module.exports = function (name) {
254 return store[name] || (store[name] =
255 USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));
256};
257
258$exports.store = store;
259
260
261/***/ }),
262/* 10 */
263/***/ (function(module, exports, __webpack_require__) {
264
265var isObject = __webpack_require__(7);
266module.exports = function (it) {
267 if (!isObject(it)) throw TypeError(it + ' is not an object!');
268 return it;
269};
270
271
272/***/ }),
273/* 11 */
274/***/ (function(module, exports) {
275
276module.exports = function (exec) {
277 try {
278 return !!exec();
279 } catch (e) {
280 return true;
281 }
282};
283
284
285/***/ }),
286/* 12 */
287/***/ (function(module, exports, __webpack_require__) {
288
289// 19.1.2.14 / 15.2.3.14 Object.keys(O)
290var $keys = __webpack_require__(38);
291var enumBugKeys = __webpack_require__(17);
292
293module.exports = Object.keys || function keys(O) {
294 return $keys(O, enumBugKeys);
295};
296
297
298/***/ }),
299/* 13 */
300/***/ (function(module, exports) {
301
302exports.f = {}.propertyIsEnumerable;
303
304
305/***/ }),
306/* 14 */
307/***/ (function(module, exports) {
308
309module.exports = function (bitmap, value) {
310 return {
311 enumerable: !(bitmap & 1),
312 configurable: !(bitmap & 2),
313 writable: !(bitmap & 4),
314 value: value
315 };
316};
317
318
319/***/ }),
320/* 15 */
321/***/ (function(module, exports) {
322
323var id = 0;
324var px = Math.random();
325module.exports = function (key) {
326 return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));
327};
328
329
330/***/ }),
331/* 16 */
332/***/ (function(module, exports) {
333
334// 7.2.1 RequireObjectCoercible(argument)
335module.exports = function (it) {
336 if (it == undefined) throw TypeError("Can't call method on " + it);
337 return it;
338};
339
340
341/***/ }),
342/* 17 */
343/***/ (function(module, exports) {
344
345// IE 8- don't enum bug keys
346module.exports = (
347 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'
348).split(',');
349
350
351/***/ }),
352/* 18 */
353/***/ (function(module, exports) {
354
355module.exports = {};
356
357
358/***/ }),
359/* 19 */
360/***/ (function(module, exports) {
361
362module.exports = true;
363
364
365/***/ }),
366/* 20 */
367/***/ (function(module, exports, __webpack_require__) {
368
369// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
370var anObject = __webpack_require__(10);
371var dPs = __webpack_require__(71);
372var enumBugKeys = __webpack_require__(17);
373var IE_PROTO = __webpack_require__(23)('IE_PROTO');
374var Empty = function () { /* empty */ };
375var PROTOTYPE = 'prototype';
376
377// Create object with fake `null` prototype: use iframe Object with cleared prototype
378var createDict = function () {
379 // Thrash, waste and sodomy: IE GC bug
380 var iframe = __webpack_require__(32)('iframe');
381 var i = enumBugKeys.length;
382 var lt = '<';
383 var gt = '>';
384 var iframeDocument;
385 iframe.style.display = 'none';
386 __webpack_require__(65).appendChild(iframe);
387 iframe.src = 'javascript:'; // eslint-disable-line no-script-url
388 // createDict = iframe.contentWindow.Object;
389 // html.removeChild(iframe);
390 iframeDocument = iframe.contentWindow.document;
391 iframeDocument.open();
392 iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
393 iframeDocument.close();
394 createDict = iframeDocument.F;
395 while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];
396 return createDict();
397};
398
399module.exports = Object.create || function create(O, Properties) {
400 var result;
401 if (O !== null) {
402 Empty[PROTOTYPE] = anObject(O);
403 result = new Empty();
404 Empty[PROTOTYPE] = null;
405 // add "__proto__" for Object.getPrototypeOf polyfill
406 result[IE_PROTO] = O;
407 } else result = createDict();
408 return Properties === undefined ? result : dPs(result, Properties);
409};
410
411
412/***/ }),
413/* 21 */
414/***/ (function(module, exports) {
415
416exports.f = Object.getOwnPropertySymbols;
417
418
419/***/ }),
420/* 22 */
421/***/ (function(module, exports, __webpack_require__) {
422
423var def = __webpack_require__(4).f;
424var has = __webpack_require__(3);
425var TAG = __webpack_require__(9)('toStringTag');
426
427module.exports = function (it, tag, stat) {
428 if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });
429};
430
431
432/***/ }),
433/* 23 */
434/***/ (function(module, exports, __webpack_require__) {
435
436var shared = __webpack_require__(24)('keys');
437var uid = __webpack_require__(15);
438module.exports = function (key) {
439 return shared[key] || (shared[key] = uid(key));
440};
441
442
443/***/ }),
444/* 24 */
445/***/ (function(module, exports, __webpack_require__) {
446
447var global = __webpack_require__(0);
448var SHARED = '__core-js_shared__';
449var store = global[SHARED] || (global[SHARED] = {});
450module.exports = function (key) {
451 return store[key] || (store[key] = {});
452};
453
454
455/***/ }),
456/* 25 */
457/***/ (function(module, exports) {
458
459// 7.1.4 ToInteger
460var ceil = Math.ceil;
461var floor = Math.floor;
462module.exports = function (it) {
463 return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);
464};
465
466
467/***/ }),
468/* 26 */
469/***/ (function(module, exports, __webpack_require__) {
470
471// 7.1.1 ToPrimitive(input [, PreferredType])
472var isObject = __webpack_require__(7);
473// instead of the ES6 spec version, we didn't implement @@toPrimitive case
474// and the second argument - flag - preferred type is a string
475module.exports = function (it, S) {
476 if (!isObject(it)) return it;
477 var fn, val;
478 if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;
479 if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;
480 if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;
481 throw TypeError("Can't convert object to primitive value");
482};
483
484
485/***/ }),
486/* 27 */
487/***/ (function(module, exports, __webpack_require__) {
488
489var global = __webpack_require__(0);
490var core = __webpack_require__(1);
491var LIBRARY = __webpack_require__(19);
492var wksExt = __webpack_require__(28);
493var defineProperty = __webpack_require__(4).f;
494module.exports = function (name) {
495 var $Symbol = core.Symbol || (core.Symbol = LIBRARY ? {} : global.Symbol || {});
496 if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: wksExt.f(name) });
497};
498
499
500/***/ }),
501/* 28 */
502/***/ (function(module, exports, __webpack_require__) {
503
504exports.f = __webpack_require__(9);
505
506
507/***/ }),
508/* 29 */
509/***/ (function(module, exports, __webpack_require__) {
510
511"use strict";
512
513
514exports.__esModule = true;
515
516var _iterator = __webpack_require__(48);
517
518var _iterator2 = _interopRequireDefault(_iterator);
519
520var _symbol = __webpack_require__(47);
521
522var _symbol2 = _interopRequireDefault(_symbol);
523
524var _typeof = typeof _symbol2.default === "function" && typeof _iterator2.default === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof _symbol2.default === "function" && obj.constructor === _symbol2.default && obj !== _symbol2.default.prototype ? "symbol" : typeof obj; };
525
526function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
527
528exports.default = typeof _symbol2.default === "function" && _typeof(_iterator2.default) === "symbol" ? function (obj) {
529 return typeof obj === "undefined" ? "undefined" : _typeof(obj);
530} : function (obj) {
531 return obj && typeof _symbol2.default === "function" && obj.constructor === _symbol2.default && obj !== _symbol2.default.prototype ? "symbol" : typeof obj === "undefined" ? "undefined" : _typeof(obj);
532};
533
534/***/ }),
535/* 30 */
536/***/ (function(module, exports) {
537
538var toString = {}.toString;
539
540module.exports = function (it) {
541 return toString.call(it).slice(8, -1);
542};
543
544
545/***/ }),
546/* 31 */
547/***/ (function(module, exports, __webpack_require__) {
548
549// optional / simple context binding
550var aFunction = __webpack_require__(61);
551module.exports = function (fn, that, length) {
552 aFunction(fn);
553 if (that === undefined) return fn;
554 switch (length) {
555 case 1: return function (a) {
556 return fn.call(that, a);
557 };
558 case 2: return function (a, b) {
559 return fn.call(that, a, b);
560 };
561 case 3: return function (a, b, c) {
562 return fn.call(that, a, b, c);
563 };
564 }
565 return function (/* ...args */) {
566 return fn.apply(that, arguments);
567 };
568};
569
570
571/***/ }),
572/* 32 */
573/***/ (function(module, exports, __webpack_require__) {
574
575var isObject = __webpack_require__(7);
576var document = __webpack_require__(0).document;
577// typeof document.createElement is 'object' in old IE
578var is = isObject(document) && isObject(document.createElement);
579module.exports = function (it) {
580 return is ? document.createElement(it) : {};
581};
582
583
584/***/ }),
585/* 33 */
586/***/ (function(module, exports, __webpack_require__) {
587
588module.exports = !__webpack_require__(2) && !__webpack_require__(11)(function () {
589 return Object.defineProperty(__webpack_require__(32)('div'), 'a', { get: function () { return 7; } }).a != 7;
590});
591
592
593/***/ }),
594/* 34 */
595/***/ (function(module, exports, __webpack_require__) {
596
597// fallback for non-array-like ES3 and non-enumerable old V8 strings
598var cof = __webpack_require__(30);
599// eslint-disable-next-line no-prototype-builtins
600module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
601 return cof(it) == 'String' ? it.split('') : Object(it);
602};
603
604
605/***/ }),
606/* 35 */
607/***/ (function(module, exports, __webpack_require__) {
608
609"use strict";
610
611var LIBRARY = __webpack_require__(19);
612var $export = __webpack_require__(5);
613var redefine = __webpack_require__(39);
614var hide = __webpack_require__(6);
615var Iterators = __webpack_require__(18);
616var $iterCreate = __webpack_require__(67);
617var setToStringTag = __webpack_require__(22);
618var getPrototypeOf = __webpack_require__(73);
619var ITERATOR = __webpack_require__(9)('iterator');
620var BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`
621var FF_ITERATOR = '@@iterator';
622var KEYS = 'keys';
623var VALUES = 'values';
624
625var returnThis = function () { return this; };
626
627module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {
628 $iterCreate(Constructor, NAME, next);
629 var getMethod = function (kind) {
630 if (!BUGGY && kind in proto) return proto[kind];
631 switch (kind) {
632 case KEYS: return function keys() { return new Constructor(this, kind); };
633 case VALUES: return function values() { return new Constructor(this, kind); };
634 } return function entries() { return new Constructor(this, kind); };
635 };
636 var TAG = NAME + ' Iterator';
637 var DEF_VALUES = DEFAULT == VALUES;
638 var VALUES_BUG = false;
639 var proto = Base.prototype;
640 var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];
641 var $default = $native || getMethod(DEFAULT);
642 var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;
643 var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;
644 var methods, key, IteratorPrototype;
645 // Fix native
646 if ($anyNative) {
647 IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));
648 if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {
649 // Set @@toStringTag to native iterators
650 setToStringTag(IteratorPrototype, TAG, true);
651 // fix for some old engines
652 if (!LIBRARY && typeof IteratorPrototype[ITERATOR] != 'function') hide(IteratorPrototype, ITERATOR, returnThis);
653 }
654 }
655 // fix Array#{values, @@iterator}.name in V8 / FF
656 if (DEF_VALUES && $native && $native.name !== VALUES) {
657 VALUES_BUG = true;
658 $default = function values() { return $native.call(this); };
659 }
660 // Define iterator
661 if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {
662 hide(proto, ITERATOR, $default);
663 }
664 // Plug for library
665 Iterators[NAME] = $default;
666 Iterators[TAG] = returnThis;
667 if (DEFAULT) {
668 methods = {
669 values: DEF_VALUES ? $default : getMethod(VALUES),
670 keys: IS_SET ? $default : getMethod(KEYS),
671 entries: $entries
672 };
673 if (FORCED) for (key in methods) {
674 if (!(key in proto)) redefine(proto, key, methods[key]);
675 } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);
676 }
677 return methods;
678};
679
680
681/***/ }),
682/* 36 */
683/***/ (function(module, exports, __webpack_require__) {
684
685var pIE = __webpack_require__(13);
686var createDesc = __webpack_require__(14);
687var toIObject = __webpack_require__(8);
688var toPrimitive = __webpack_require__(26);
689var has = __webpack_require__(3);
690var IE8_DOM_DEFINE = __webpack_require__(33);
691var gOPD = Object.getOwnPropertyDescriptor;
692
693exports.f = __webpack_require__(2) ? gOPD : function getOwnPropertyDescriptor(O, P) {
694 O = toIObject(O);
695 P = toPrimitive(P, true);
696 if (IE8_DOM_DEFINE) try {
697 return gOPD(O, P);
698 } catch (e) { /* empty */ }
699 if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);
700};
701
702
703/***/ }),
704/* 37 */
705/***/ (function(module, exports, __webpack_require__) {
706
707// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)
708var $keys = __webpack_require__(38);
709var hiddenKeys = __webpack_require__(17).concat('length', 'prototype');
710
711exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
712 return $keys(O, hiddenKeys);
713};
714
715
716/***/ }),
717/* 38 */
718/***/ (function(module, exports, __webpack_require__) {
719
720var has = __webpack_require__(3);
721var toIObject = __webpack_require__(8);
722var arrayIndexOf = __webpack_require__(63)(false);
723var IE_PROTO = __webpack_require__(23)('IE_PROTO');
724
725module.exports = function (object, names) {
726 var O = toIObject(object);
727 var i = 0;
728 var result = [];
729 var key;
730 for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);
731 // Don't enum bug & hidden keys
732 while (names.length > i) if (has(O, key = names[i++])) {
733 ~arrayIndexOf(result, key) || result.push(key);
734 }
735 return result;
736};
737
738
739/***/ }),
740/* 39 */
741/***/ (function(module, exports, __webpack_require__) {
742
743module.exports = __webpack_require__(6);
744
745
746/***/ }),
747/* 40 */
748/***/ (function(module, exports, __webpack_require__) {
749
750// 7.1.13 ToObject(argument)
751var defined = __webpack_require__(16);
752module.exports = function (it) {
753 return Object(defined(it));
754};
755
756
757/***/ }),
758/* 41 */
759/***/ (function(module, __webpack_exports__, __webpack_require__) {
760
761"use strict";
762Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
763/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__src_TouchFeedback__ = __webpack_require__(42);
764
765
766/* harmony default export */ __webpack_exports__["default"] = (__WEBPACK_IMPORTED_MODULE_0__src_TouchFeedback__["a" /* default */]);
767
768/***/ }),
769/* 42 */
770/***/ (function(module, __webpack_exports__, __webpack_require__) {
771
772"use strict";
773/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_extends__ = __webpack_require__(51);
774/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_extends___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_extends__);
775/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_classCallCheck__ = __webpack_require__(49);
776/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_classCallCheck___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_classCallCheck__);
777/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_createClass__ = __webpack_require__(50);
778/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_createClass___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_createClass__);
779/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_possibleConstructorReturn__ = __webpack_require__(53);
780/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_possibleConstructorReturn___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_possibleConstructorReturn__);
781/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_babel_runtime_helpers_inherits__ = __webpack_require__(52);
782/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_babel_runtime_helpers_inherits___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_babel_runtime_helpers_inherits__);
783/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_react__ = __webpack_require__(89);
784/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_react__);
785/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_classnames__ = __webpack_require__(54);
786/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_classnames__);
787
788
789
790
791
792
793
794
795var TouchFeedback = function (_React$Component) {
796 __WEBPACK_IMPORTED_MODULE_4_babel_runtime_helpers_inherits___default()(TouchFeedback, _React$Component);
797
798 function TouchFeedback() {
799 __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_classCallCheck___default()(this, TouchFeedback);
800
801 var _this = __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_possibleConstructorReturn___default()(this, (TouchFeedback.__proto__ || Object.getPrototypeOf(TouchFeedback)).apply(this, arguments));
802
803 _this.state = {
804 active: false
805 };
806 _this.onTouchStart = function (e) {
807 _this.triggerEvent('TouchStart', true, e);
808 };
809 _this.onTouchMove = function (e) {
810 _this.triggerEvent('TouchMove', false, e);
811 };
812 _this.onTouchEnd = function (e) {
813 _this.triggerEvent('TouchEnd', false, e);
814 };
815 _this.onTouchCancel = function (e) {
816 _this.triggerEvent('TouchCancel', false, e);
817 };
818 _this.onMouseDown = function (e) {
819 // pc simulate mobile
820 _this.triggerEvent('MouseDown', true, e);
821 };
822 _this.onMouseUp = function (e) {
823 _this.triggerEvent('MouseUp', false, e);
824 };
825 _this.onMouseLeave = function (e) {
826 _this.triggerEvent('MouseLeave', false, e);
827 };
828 return _this;
829 }
830
831 __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_createClass___default()(TouchFeedback, [{
832 key: 'componentDidUpdate',
833 value: function componentDidUpdate() {
834 if (this.props.disabled && this.state.active) {
835 this.setState({
836 active: false
837 });
838 }
839 }
840 }, {
841 key: 'triggerEvent',
842 value: function triggerEvent(type, isActive, ev) {
843 var eventType = 'on' + type;
844 var children = this.props.children;
845
846 if (children.props[eventType]) {
847 children.props[eventType](ev);
848 }
849 if (isActive !== this.state.active) {
850 this.setState({
851 active: isActive
852 });
853 }
854 }
855 }, {
856 key: 'render',
857 value: function render() {
858 var _props = this.props,
859 children = _props.children,
860 disabled = _props.disabled,
861 activeClassName = _props.activeClassName,
862 activeStyle = _props.activeStyle;
863
864 var events = disabled ? undefined : {
865 onTouchStart: this.onTouchStart,
866 onTouchMove: this.onTouchMove,
867 onTouchEnd: this.onTouchEnd,
868 onTouchCancel: this.onTouchCancel,
869 onMouseDown: this.onMouseDown,
870 onMouseUp: this.onMouseUp,
871 onMouseLeave: this.onMouseLeave
872 };
873 var child = __WEBPACK_IMPORTED_MODULE_5_react___default.a.Children.only(children);
874 if (!disabled && this.state.active) {
875 var _child$props = child.props,
876 style = _child$props.style,
877 className = _child$props.className;
878
879 if (activeStyle !== false) {
880 if (activeStyle) {
881 style = __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_extends___default()({}, style, activeStyle);
882 }
883 className = __WEBPACK_IMPORTED_MODULE_6_classnames___default()(className, activeClassName);
884 }
885 return __WEBPACK_IMPORTED_MODULE_5_react___default.a.cloneElement(child, __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_extends___default()({ className: className,
886 style: style }, events));
887 }
888 return __WEBPACK_IMPORTED_MODULE_5_react___default.a.cloneElement(child, events);
889 }
890 }]);
891
892 return TouchFeedback;
893}(__WEBPACK_IMPORTED_MODULE_5_react___default.a.Component);
894
895/* harmony default export */ __webpack_exports__["a"] = (TouchFeedback);
896
897TouchFeedback.defaultProps = {
898 disabled: false
899};
900
901/***/ }),
902/* 43 */
903/***/ (function(module, exports, __webpack_require__) {
904
905module.exports = { "default": __webpack_require__(55), __esModule: true };
906
907/***/ }),
908/* 44 */
909/***/ (function(module, exports, __webpack_require__) {
910
911module.exports = { "default": __webpack_require__(56), __esModule: true };
912
913/***/ }),
914/* 45 */
915/***/ (function(module, exports, __webpack_require__) {
916
917module.exports = { "default": __webpack_require__(57), __esModule: true };
918
919/***/ }),
920/* 46 */
921/***/ (function(module, exports, __webpack_require__) {
922
923module.exports = { "default": __webpack_require__(58), __esModule: true };
924
925/***/ }),
926/* 47 */
927/***/ (function(module, exports, __webpack_require__) {
928
929module.exports = { "default": __webpack_require__(59), __esModule: true };
930
931/***/ }),
932/* 48 */
933/***/ (function(module, exports, __webpack_require__) {
934
935module.exports = { "default": __webpack_require__(60), __esModule: true };
936
937/***/ }),
938/* 49 */
939/***/ (function(module, exports, __webpack_require__) {
940
941"use strict";
942
943
944exports.__esModule = true;
945
946exports.default = function (instance, Constructor) {
947 if (!(instance instanceof Constructor)) {
948 throw new TypeError("Cannot call a class as a function");
949 }
950};
951
952/***/ }),
953/* 50 */
954/***/ (function(module, exports, __webpack_require__) {
955
956"use strict";
957
958
959exports.__esModule = true;
960
961var _defineProperty = __webpack_require__(45);
962
963var _defineProperty2 = _interopRequireDefault(_defineProperty);
964
965function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
966
967exports.default = function () {
968 function defineProperties(target, props) {
969 for (var i = 0; i < props.length; i++) {
970 var descriptor = props[i];
971 descriptor.enumerable = descriptor.enumerable || false;
972 descriptor.configurable = true;
973 if ("value" in descriptor) descriptor.writable = true;
974 (0, _defineProperty2.default)(target, descriptor.key, descriptor);
975 }
976 }
977
978 return function (Constructor, protoProps, staticProps) {
979 if (protoProps) defineProperties(Constructor.prototype, protoProps);
980 if (staticProps) defineProperties(Constructor, staticProps);
981 return Constructor;
982 };
983}();
984
985/***/ }),
986/* 51 */
987/***/ (function(module, exports, __webpack_require__) {
988
989"use strict";
990
991
992exports.__esModule = true;
993
994var _assign = __webpack_require__(43);
995
996var _assign2 = _interopRequireDefault(_assign);
997
998function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
999
1000exports.default = _assign2.default || function (target) {
1001 for (var i = 1; i < arguments.length; i++) {
1002 var source = arguments[i];
1003
1004 for (var key in source) {
1005 if (Object.prototype.hasOwnProperty.call(source, key)) {
1006 target[key] = source[key];
1007 }
1008 }
1009 }
1010
1011 return target;
1012};
1013
1014/***/ }),
1015/* 52 */
1016/***/ (function(module, exports, __webpack_require__) {
1017
1018"use strict";
1019
1020
1021exports.__esModule = true;
1022
1023var _setPrototypeOf = __webpack_require__(46);
1024
1025var _setPrototypeOf2 = _interopRequireDefault(_setPrototypeOf);
1026
1027var _create = __webpack_require__(44);
1028
1029var _create2 = _interopRequireDefault(_create);
1030
1031var _typeof2 = __webpack_require__(29);
1032
1033var _typeof3 = _interopRequireDefault(_typeof2);
1034
1035function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
1036
1037exports.default = function (subClass, superClass) {
1038 if (typeof superClass !== "function" && superClass !== null) {
1039 throw new TypeError("Super expression must either be null or a function, not " + (typeof superClass === "undefined" ? "undefined" : (0, _typeof3.default)(superClass)));
1040 }
1041
1042 subClass.prototype = (0, _create2.default)(superClass && superClass.prototype, {
1043 constructor: {
1044 value: subClass,
1045 enumerable: false,
1046 writable: true,
1047 configurable: true
1048 }
1049 });
1050 if (superClass) _setPrototypeOf2.default ? (0, _setPrototypeOf2.default)(subClass, superClass) : subClass.__proto__ = superClass;
1051};
1052
1053/***/ }),
1054/* 53 */
1055/***/ (function(module, exports, __webpack_require__) {
1056
1057"use strict";
1058
1059
1060exports.__esModule = true;
1061
1062var _typeof2 = __webpack_require__(29);
1063
1064var _typeof3 = _interopRequireDefault(_typeof2);
1065
1066function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
1067
1068exports.default = function (self, call) {
1069 if (!self) {
1070 throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
1071 }
1072
1073 return call && ((typeof call === "undefined" ? "undefined" : (0, _typeof3.default)(call)) === "object" || typeof call === "function") ? call : self;
1074};
1075
1076/***/ }),
1077/* 54 */
1078/***/ (function(module, exports, __webpack_require__) {
1079
1080var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
1081 Copyright (c) 2016 Jed Watson.
1082 Licensed under the MIT License (MIT), see
1083 http://jedwatson.github.io/classnames
1084*/
1085/* global define */
1086
1087(function () {
1088 'use strict';
1089
1090 var hasOwn = {}.hasOwnProperty;
1091
1092 function classNames () {
1093 var classes = [];
1094
1095 for (var i = 0; i < arguments.length; i++) {
1096 var arg = arguments[i];
1097 if (!arg) continue;
1098
1099 var argType = typeof arg;
1100
1101 if (argType === 'string' || argType === 'number') {
1102 classes.push(arg);
1103 } else if (Array.isArray(arg)) {
1104 classes.push(classNames.apply(null, arg));
1105 } else if (argType === 'object') {
1106 for (var key in arg) {
1107 if (hasOwn.call(arg, key) && arg[key]) {
1108 classes.push(key);
1109 }
1110 }
1111 }
1112 }
1113
1114 return classes.join(' ');
1115 }
1116
1117 if (typeof module !== 'undefined' && module.exports) {
1118 module.exports = classNames;
1119 } else if (true) {
1120 // register as 'classnames', consistent with npm package name
1121 !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_RESULT__ = function () {
1122 return classNames;
1123 }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
1124 __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
1125 } else {
1126 window.classNames = classNames;
1127 }
1128}());
1129
1130
1131/***/ }),
1132/* 55 */
1133/***/ (function(module, exports, __webpack_require__) {
1134
1135__webpack_require__(79);
1136module.exports = __webpack_require__(1).Object.assign;
1137
1138
1139/***/ }),
1140/* 56 */
1141/***/ (function(module, exports, __webpack_require__) {
1142
1143__webpack_require__(80);
1144var $Object = __webpack_require__(1).Object;
1145module.exports = function create(P, D) {
1146 return $Object.create(P, D);
1147};
1148
1149
1150/***/ }),
1151/* 57 */
1152/***/ (function(module, exports, __webpack_require__) {
1153
1154__webpack_require__(81);
1155var $Object = __webpack_require__(1).Object;
1156module.exports = function defineProperty(it, key, desc) {
1157 return $Object.defineProperty(it, key, desc);
1158};
1159
1160
1161/***/ }),
1162/* 58 */
1163/***/ (function(module, exports, __webpack_require__) {
1164
1165__webpack_require__(82);
1166module.exports = __webpack_require__(1).Object.setPrototypeOf;
1167
1168
1169/***/ }),
1170/* 59 */
1171/***/ (function(module, exports, __webpack_require__) {
1172
1173__webpack_require__(85);
1174__webpack_require__(83);
1175__webpack_require__(86);
1176__webpack_require__(87);
1177module.exports = __webpack_require__(1).Symbol;
1178
1179
1180/***/ }),
1181/* 60 */
1182/***/ (function(module, exports, __webpack_require__) {
1183
1184__webpack_require__(84);
1185__webpack_require__(88);
1186module.exports = __webpack_require__(28).f('iterator');
1187
1188
1189/***/ }),
1190/* 61 */
1191/***/ (function(module, exports) {
1192
1193module.exports = function (it) {
1194 if (typeof it != 'function') throw TypeError(it + ' is not a function!');
1195 return it;
1196};
1197
1198
1199/***/ }),
1200/* 62 */
1201/***/ (function(module, exports) {
1202
1203module.exports = function () { /* empty */ };
1204
1205
1206/***/ }),
1207/* 63 */
1208/***/ (function(module, exports, __webpack_require__) {
1209
1210// false -> Array#indexOf
1211// true -> Array#includes
1212var toIObject = __webpack_require__(8);
1213var toLength = __webpack_require__(77);
1214var toAbsoluteIndex = __webpack_require__(76);
1215module.exports = function (IS_INCLUDES) {
1216 return function ($this, el, fromIndex) {
1217 var O = toIObject($this);
1218 var length = toLength(O.length);
1219 var index = toAbsoluteIndex(fromIndex, length);
1220 var value;
1221 // Array#includes uses SameValueZero equality algorithm
1222 // eslint-disable-next-line no-self-compare
1223 if (IS_INCLUDES && el != el) while (length > index) {
1224 value = O[index++];
1225 // eslint-disable-next-line no-self-compare
1226 if (value != value) return true;
1227 // Array#indexOf ignores holes, Array#includes - not
1228 } else for (;length > index; index++) if (IS_INCLUDES || index in O) {
1229 if (O[index] === el) return IS_INCLUDES || index || 0;
1230 } return !IS_INCLUDES && -1;
1231 };
1232};
1233
1234
1235/***/ }),
1236/* 64 */
1237/***/ (function(module, exports, __webpack_require__) {
1238
1239// all enumerable object keys, includes symbols
1240var getKeys = __webpack_require__(12);
1241var gOPS = __webpack_require__(21);
1242var pIE = __webpack_require__(13);
1243module.exports = function (it) {
1244 var result = getKeys(it);
1245 var getSymbols = gOPS.f;
1246 if (getSymbols) {
1247 var symbols = getSymbols(it);
1248 var isEnum = pIE.f;
1249 var i = 0;
1250 var key;
1251 while (symbols.length > i) if (isEnum.call(it, key = symbols[i++])) result.push(key);
1252 } return result;
1253};
1254
1255
1256/***/ }),
1257/* 65 */
1258/***/ (function(module, exports, __webpack_require__) {
1259
1260var document = __webpack_require__(0).document;
1261module.exports = document && document.documentElement;
1262
1263
1264/***/ }),
1265/* 66 */
1266/***/ (function(module, exports, __webpack_require__) {
1267
1268// 7.2.2 IsArray(argument)
1269var cof = __webpack_require__(30);
1270module.exports = Array.isArray || function isArray(arg) {
1271 return cof(arg) == 'Array';
1272};
1273
1274
1275/***/ }),
1276/* 67 */
1277/***/ (function(module, exports, __webpack_require__) {
1278
1279"use strict";
1280
1281var create = __webpack_require__(20);
1282var descriptor = __webpack_require__(14);
1283var setToStringTag = __webpack_require__(22);
1284var IteratorPrototype = {};
1285
1286// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()
1287__webpack_require__(6)(IteratorPrototype, __webpack_require__(9)('iterator'), function () { return this; });
1288
1289module.exports = function (Constructor, NAME, next) {
1290 Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });
1291 setToStringTag(Constructor, NAME + ' Iterator');
1292};
1293
1294
1295/***/ }),
1296/* 68 */
1297/***/ (function(module, exports) {
1298
1299module.exports = function (done, value) {
1300 return { value: value, done: !!done };
1301};
1302
1303
1304/***/ }),
1305/* 69 */
1306/***/ (function(module, exports, __webpack_require__) {
1307
1308var META = __webpack_require__(15)('meta');
1309var isObject = __webpack_require__(7);
1310var has = __webpack_require__(3);
1311var setDesc = __webpack_require__(4).f;
1312var id = 0;
1313var isExtensible = Object.isExtensible || function () {
1314 return true;
1315};
1316var FREEZE = !__webpack_require__(11)(function () {
1317 return isExtensible(Object.preventExtensions({}));
1318});
1319var setMeta = function (it) {
1320 setDesc(it, META, { value: {
1321 i: 'O' + ++id, // object ID
1322 w: {} // weak collections IDs
1323 } });
1324};
1325var fastKey = function (it, create) {
1326 // return primitive with prefix
1327 if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;
1328 if (!has(it, META)) {
1329 // can't set metadata to uncaught frozen object
1330 if (!isExtensible(it)) return 'F';
1331 // not necessary to add metadata
1332 if (!create) return 'E';
1333 // add missing metadata
1334 setMeta(it);
1335 // return object ID
1336 } return it[META].i;
1337};
1338var getWeak = function (it, create) {
1339 if (!has(it, META)) {
1340 // can't set metadata to uncaught frozen object
1341 if (!isExtensible(it)) return true;
1342 // not necessary to add metadata
1343 if (!create) return false;
1344 // add missing metadata
1345 setMeta(it);
1346 // return hash weak collections IDs
1347 } return it[META].w;
1348};
1349// add metadata on freeze-family methods calling
1350var onFreeze = function (it) {
1351 if (FREEZE && meta.NEED && isExtensible(it) && !has(it, META)) setMeta(it);
1352 return it;
1353};
1354var meta = module.exports = {
1355 KEY: META,
1356 NEED: false,
1357 fastKey: fastKey,
1358 getWeak: getWeak,
1359 onFreeze: onFreeze
1360};
1361
1362
1363/***/ }),
1364/* 70 */
1365/***/ (function(module, exports, __webpack_require__) {
1366
1367"use strict";
1368
1369// 19.1.2.1 Object.assign(target, source, ...)
1370var getKeys = __webpack_require__(12);
1371var gOPS = __webpack_require__(21);
1372var pIE = __webpack_require__(13);
1373var toObject = __webpack_require__(40);
1374var IObject = __webpack_require__(34);
1375var $assign = Object.assign;
1376
1377// should work with symbols and should have deterministic property order (V8 bug)
1378module.exports = !$assign || __webpack_require__(11)(function () {
1379 var A = {};
1380 var B = {};
1381 // eslint-disable-next-line no-undef
1382 var S = Symbol();
1383 var K = 'abcdefghijklmnopqrst';
1384 A[S] = 7;
1385 K.split('').forEach(function (k) { B[k] = k; });
1386 return $assign({}, A)[S] != 7 || Object.keys($assign({}, B)).join('') != K;
1387}) ? function assign(target, source) { // eslint-disable-line no-unused-vars
1388 var T = toObject(target);
1389 var aLen = arguments.length;
1390 var index = 1;
1391 var getSymbols = gOPS.f;
1392 var isEnum = pIE.f;
1393 while (aLen > index) {
1394 var S = IObject(arguments[index++]);
1395 var keys = getSymbols ? getKeys(S).concat(getSymbols(S)) : getKeys(S);
1396 var length = keys.length;
1397 var j = 0;
1398 var key;
1399 while (length > j) if (isEnum.call(S, key = keys[j++])) T[key] = S[key];
1400 } return T;
1401} : $assign;
1402
1403
1404/***/ }),
1405/* 71 */
1406/***/ (function(module, exports, __webpack_require__) {
1407
1408var dP = __webpack_require__(4);
1409var anObject = __webpack_require__(10);
1410var getKeys = __webpack_require__(12);
1411
1412module.exports = __webpack_require__(2) ? Object.defineProperties : function defineProperties(O, Properties) {
1413 anObject(O);
1414 var keys = getKeys(Properties);
1415 var length = keys.length;
1416 var i = 0;
1417 var P;
1418 while (length > i) dP.f(O, P = keys[i++], Properties[P]);
1419 return O;
1420};
1421
1422
1423/***/ }),
1424/* 72 */
1425/***/ (function(module, exports, __webpack_require__) {
1426
1427// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
1428var toIObject = __webpack_require__(8);
1429var gOPN = __webpack_require__(37).f;
1430var toString = {}.toString;
1431
1432var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames
1433 ? Object.getOwnPropertyNames(window) : [];
1434
1435var getWindowNames = function (it) {
1436 try {
1437 return gOPN(it);
1438 } catch (e) {
1439 return windowNames.slice();
1440 }
1441};
1442
1443module.exports.f = function getOwnPropertyNames(it) {
1444 return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it));
1445};
1446
1447
1448/***/ }),
1449/* 73 */
1450/***/ (function(module, exports, __webpack_require__) {
1451
1452// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)
1453var has = __webpack_require__(3);
1454var toObject = __webpack_require__(40);
1455var IE_PROTO = __webpack_require__(23)('IE_PROTO');
1456var ObjectProto = Object.prototype;
1457
1458module.exports = Object.getPrototypeOf || function (O) {
1459 O = toObject(O);
1460 if (has(O, IE_PROTO)) return O[IE_PROTO];
1461 if (typeof O.constructor == 'function' && O instanceof O.constructor) {
1462 return O.constructor.prototype;
1463 } return O instanceof Object ? ObjectProto : null;
1464};
1465
1466
1467/***/ }),
1468/* 74 */
1469/***/ (function(module, exports, __webpack_require__) {
1470
1471// Works with __proto__ only. Old v8 can't work with null proto objects.
1472/* eslint-disable no-proto */
1473var isObject = __webpack_require__(7);
1474var anObject = __webpack_require__(10);
1475var check = function (O, proto) {
1476 anObject(O);
1477 if (!isObject(proto) && proto !== null) throw TypeError(proto + ": can't set as prototype!");
1478};
1479module.exports = {
1480 set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line
1481 function (test, buggy, set) {
1482 try {
1483 set = __webpack_require__(31)(Function.call, __webpack_require__(36).f(Object.prototype, '__proto__').set, 2);
1484 set(test, []);
1485 buggy = !(test instanceof Array);
1486 } catch (e) { buggy = true; }
1487 return function setPrototypeOf(O, proto) {
1488 check(O, proto);
1489 if (buggy) O.__proto__ = proto;
1490 else set(O, proto);
1491 return O;
1492 };
1493 }({}, false) : undefined),
1494 check: check
1495};
1496
1497
1498/***/ }),
1499/* 75 */
1500/***/ (function(module, exports, __webpack_require__) {
1501
1502var toInteger = __webpack_require__(25);
1503var defined = __webpack_require__(16);
1504// true -> String#at
1505// false -> String#codePointAt
1506module.exports = function (TO_STRING) {
1507 return function (that, pos) {
1508 var s = String(defined(that));
1509 var i = toInteger(pos);
1510 var l = s.length;
1511 var a, b;
1512 if (i < 0 || i >= l) return TO_STRING ? '' : undefined;
1513 a = s.charCodeAt(i);
1514 return a < 0xd800 || a > 0xdbff || i + 1 === l || (b = s.charCodeAt(i + 1)) < 0xdc00 || b > 0xdfff
1515 ? TO_STRING ? s.charAt(i) : a
1516 : TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;
1517 };
1518};
1519
1520
1521/***/ }),
1522/* 76 */
1523/***/ (function(module, exports, __webpack_require__) {
1524
1525var toInteger = __webpack_require__(25);
1526var max = Math.max;
1527var min = Math.min;
1528module.exports = function (index, length) {
1529 index = toInteger(index);
1530 return index < 0 ? max(index + length, 0) : min(index, length);
1531};
1532
1533
1534/***/ }),
1535/* 77 */
1536/***/ (function(module, exports, __webpack_require__) {
1537
1538// 7.1.15 ToLength
1539var toInteger = __webpack_require__(25);
1540var min = Math.min;
1541module.exports = function (it) {
1542 return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991
1543};
1544
1545
1546/***/ }),
1547/* 78 */
1548/***/ (function(module, exports, __webpack_require__) {
1549
1550"use strict";
1551
1552var addToUnscopables = __webpack_require__(62);
1553var step = __webpack_require__(68);
1554var Iterators = __webpack_require__(18);
1555var toIObject = __webpack_require__(8);
1556
1557// 22.1.3.4 Array.prototype.entries()
1558// 22.1.3.13 Array.prototype.keys()
1559// 22.1.3.29 Array.prototype.values()
1560// 22.1.3.30 Array.prototype[@@iterator]()
1561module.exports = __webpack_require__(35)(Array, 'Array', function (iterated, kind) {
1562 this._t = toIObject(iterated); // target
1563 this._i = 0; // next index
1564 this._k = kind; // kind
1565// 22.1.5.2.1 %ArrayIteratorPrototype%.next()
1566}, function () {
1567 var O = this._t;
1568 var kind = this._k;
1569 var index = this._i++;
1570 if (!O || index >= O.length) {
1571 this._t = undefined;
1572 return step(1);
1573 }
1574 if (kind == 'keys') return step(0, index);
1575 if (kind == 'values') return step(0, O[index]);
1576 return step(0, [index, O[index]]);
1577}, 'values');
1578
1579// argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)
1580Iterators.Arguments = Iterators.Array;
1581
1582addToUnscopables('keys');
1583addToUnscopables('values');
1584addToUnscopables('entries');
1585
1586
1587/***/ }),
1588/* 79 */
1589/***/ (function(module, exports, __webpack_require__) {
1590
1591// 19.1.3.1 Object.assign(target, source)
1592var $export = __webpack_require__(5);
1593
1594$export($export.S + $export.F, 'Object', { assign: __webpack_require__(70) });
1595
1596
1597/***/ }),
1598/* 80 */
1599/***/ (function(module, exports, __webpack_require__) {
1600
1601var $export = __webpack_require__(5);
1602// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
1603$export($export.S, 'Object', { create: __webpack_require__(20) });
1604
1605
1606/***/ }),
1607/* 81 */
1608/***/ (function(module, exports, __webpack_require__) {
1609
1610var $export = __webpack_require__(5);
1611// 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)
1612$export($export.S + $export.F * !__webpack_require__(2), 'Object', { defineProperty: __webpack_require__(4).f });
1613
1614
1615/***/ }),
1616/* 82 */
1617/***/ (function(module, exports, __webpack_require__) {
1618
1619// 19.1.3.19 Object.setPrototypeOf(O, proto)
1620var $export = __webpack_require__(5);
1621$export($export.S, 'Object', { setPrototypeOf: __webpack_require__(74).set });
1622
1623
1624/***/ }),
1625/* 83 */
1626/***/ (function(module, exports) {
1627
1628
1629
1630/***/ }),
1631/* 84 */
1632/***/ (function(module, exports, __webpack_require__) {
1633
1634"use strict";
1635
1636var $at = __webpack_require__(75)(true);
1637
1638// 21.1.3.27 String.prototype[@@iterator]()
1639__webpack_require__(35)(String, 'String', function (iterated) {
1640 this._t = String(iterated); // target
1641 this._i = 0; // next index
1642// 21.1.5.2.1 %StringIteratorPrototype%.next()
1643}, function () {
1644 var O = this._t;
1645 var index = this._i;
1646 var point;
1647 if (index >= O.length) return { value: undefined, done: true };
1648 point = $at(O, index);
1649 this._i += point.length;
1650 return { value: point, done: false };
1651});
1652
1653
1654/***/ }),
1655/* 85 */
1656/***/ (function(module, exports, __webpack_require__) {
1657
1658"use strict";
1659
1660// ECMAScript 6 symbols shim
1661var global = __webpack_require__(0);
1662var has = __webpack_require__(3);
1663var DESCRIPTORS = __webpack_require__(2);
1664var $export = __webpack_require__(5);
1665var redefine = __webpack_require__(39);
1666var META = __webpack_require__(69).KEY;
1667var $fails = __webpack_require__(11);
1668var shared = __webpack_require__(24);
1669var setToStringTag = __webpack_require__(22);
1670var uid = __webpack_require__(15);
1671var wks = __webpack_require__(9);
1672var wksExt = __webpack_require__(28);
1673var wksDefine = __webpack_require__(27);
1674var enumKeys = __webpack_require__(64);
1675var isArray = __webpack_require__(66);
1676var anObject = __webpack_require__(10);
1677var isObject = __webpack_require__(7);
1678var toIObject = __webpack_require__(8);
1679var toPrimitive = __webpack_require__(26);
1680var createDesc = __webpack_require__(14);
1681var _create = __webpack_require__(20);
1682var gOPNExt = __webpack_require__(72);
1683var $GOPD = __webpack_require__(36);
1684var $DP = __webpack_require__(4);
1685var $keys = __webpack_require__(12);
1686var gOPD = $GOPD.f;
1687var dP = $DP.f;
1688var gOPN = gOPNExt.f;
1689var $Symbol = global.Symbol;
1690var $JSON = global.JSON;
1691var _stringify = $JSON && $JSON.stringify;
1692var PROTOTYPE = 'prototype';
1693var HIDDEN = wks('_hidden');
1694var TO_PRIMITIVE = wks('toPrimitive');
1695var isEnum = {}.propertyIsEnumerable;
1696var SymbolRegistry = shared('symbol-registry');
1697var AllSymbols = shared('symbols');
1698var OPSymbols = shared('op-symbols');
1699var ObjectProto = Object[PROTOTYPE];
1700var USE_NATIVE = typeof $Symbol == 'function';
1701var QObject = global.QObject;
1702// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173
1703var setter = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;
1704
1705// fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687
1706var setSymbolDesc = DESCRIPTORS && $fails(function () {
1707 return _create(dP({}, 'a', {
1708 get: function () { return dP(this, 'a', { value: 7 }).a; }
1709 })).a != 7;
1710}) ? function (it, key, D) {
1711 var protoDesc = gOPD(ObjectProto, key);
1712 if (protoDesc) delete ObjectProto[key];
1713 dP(it, key, D);
1714 if (protoDesc && it !== ObjectProto) dP(ObjectProto, key, protoDesc);
1715} : dP;
1716
1717var wrap = function (tag) {
1718 var sym = AllSymbols[tag] = _create($Symbol[PROTOTYPE]);
1719 sym._k = tag;
1720 return sym;
1721};
1722
1723var isSymbol = USE_NATIVE && typeof $Symbol.iterator == 'symbol' ? function (it) {
1724 return typeof it == 'symbol';
1725} : function (it) {
1726 return it instanceof $Symbol;
1727};
1728
1729var $defineProperty = function defineProperty(it, key, D) {
1730 if (it === ObjectProto) $defineProperty(OPSymbols, key, D);
1731 anObject(it);
1732 key = toPrimitive(key, true);
1733 anObject(D);
1734 if (has(AllSymbols, key)) {
1735 if (!D.enumerable) {
1736 if (!has(it, HIDDEN)) dP(it, HIDDEN, createDesc(1, {}));
1737 it[HIDDEN][key] = true;
1738 } else {
1739 if (has(it, HIDDEN) && it[HIDDEN][key]) it[HIDDEN][key] = false;
1740 D = _create(D, { enumerable: createDesc(0, false) });
1741 } return setSymbolDesc(it, key, D);
1742 } return dP(it, key, D);
1743};
1744var $defineProperties = function defineProperties(it, P) {
1745 anObject(it);
1746 var keys = enumKeys(P = toIObject(P));
1747 var i = 0;
1748 var l = keys.length;
1749 var key;
1750 while (l > i) $defineProperty(it, key = keys[i++], P[key]);
1751 return it;
1752};
1753var $create = function create(it, P) {
1754 return P === undefined ? _create(it) : $defineProperties(_create(it), P);
1755};
1756var $propertyIsEnumerable = function propertyIsEnumerable(key) {
1757 var E = isEnum.call(this, key = toPrimitive(key, true));
1758 if (this === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return false;
1759 return E || !has(this, key) || !has(AllSymbols, key) || has(this, HIDDEN) && this[HIDDEN][key] ? E : true;
1760};
1761var $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(it, key) {
1762 it = toIObject(it);
1763 key = toPrimitive(key, true);
1764 if (it === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return;
1765 var D = gOPD(it, key);
1766 if (D && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) D.enumerable = true;
1767 return D;
1768};
1769var $getOwnPropertyNames = function getOwnPropertyNames(it) {
1770 var names = gOPN(toIObject(it));
1771 var result = [];
1772 var i = 0;
1773 var key;
1774 while (names.length > i) {
1775 if (!has(AllSymbols, key = names[i++]) && key != HIDDEN && key != META) result.push(key);
1776 } return result;
1777};
1778var $getOwnPropertySymbols = function getOwnPropertySymbols(it) {
1779 var IS_OP = it === ObjectProto;
1780 var names = gOPN(IS_OP ? OPSymbols : toIObject(it));
1781 var result = [];
1782 var i = 0;
1783 var key;
1784 while (names.length > i) {
1785 if (has(AllSymbols, key = names[i++]) && (IS_OP ? has(ObjectProto, key) : true)) result.push(AllSymbols[key]);
1786 } return result;
1787};
1788
1789// 19.4.1.1 Symbol([description])
1790if (!USE_NATIVE) {
1791 $Symbol = function Symbol() {
1792 if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor!');
1793 var tag = uid(arguments.length > 0 ? arguments[0] : undefined);
1794 var $set = function (value) {
1795 if (this === ObjectProto) $set.call(OPSymbols, value);
1796 if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false;
1797 setSymbolDesc(this, tag, createDesc(1, value));
1798 };
1799 if (DESCRIPTORS && setter) setSymbolDesc(ObjectProto, tag, { configurable: true, set: $set });
1800 return wrap(tag);
1801 };
1802 redefine($Symbol[PROTOTYPE], 'toString', function toString() {
1803 return this._k;
1804 });
1805
1806 $GOPD.f = $getOwnPropertyDescriptor;
1807 $DP.f = $defineProperty;
1808 __webpack_require__(37).f = gOPNExt.f = $getOwnPropertyNames;
1809 __webpack_require__(13).f = $propertyIsEnumerable;
1810 __webpack_require__(21).f = $getOwnPropertySymbols;
1811
1812 if (DESCRIPTORS && !__webpack_require__(19)) {
1813 redefine(ObjectProto, 'propertyIsEnumerable', $propertyIsEnumerable, true);
1814 }
1815
1816 wksExt.f = function (name) {
1817 return wrap(wks(name));
1818 };
1819}
1820
1821$export($export.G + $export.W + $export.F * !USE_NATIVE, { Symbol: $Symbol });
1822
1823for (var es6Symbols = (
1824 // 19.4.2.2, 19.4.2.3, 19.4.2.4, 19.4.2.6, 19.4.2.8, 19.4.2.9, 19.4.2.10, 19.4.2.11, 19.4.2.12, 19.4.2.13, 19.4.2.14
1825 'hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables'
1826).split(','), j = 0; es6Symbols.length > j;)wks(es6Symbols[j++]);
1827
1828for (var wellKnownSymbols = $keys(wks.store), k = 0; wellKnownSymbols.length > k;) wksDefine(wellKnownSymbols[k++]);
1829
1830$export($export.S + $export.F * !USE_NATIVE, 'Symbol', {
1831 // 19.4.2.1 Symbol.for(key)
1832 'for': function (key) {
1833 return has(SymbolRegistry, key += '')
1834 ? SymbolRegistry[key]
1835 : SymbolRegistry[key] = $Symbol(key);
1836 },
1837 // 19.4.2.5 Symbol.keyFor(sym)
1838 keyFor: function keyFor(sym) {
1839 if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol!');
1840 for (var key in SymbolRegistry) if (SymbolRegistry[key] === sym) return key;
1841 },
1842 useSetter: function () { setter = true; },
1843 useSimple: function () { setter = false; }
1844});
1845
1846$export($export.S + $export.F * !USE_NATIVE, 'Object', {
1847 // 19.1.2.2 Object.create(O [, Properties])
1848 create: $create,
1849 // 19.1.2.4 Object.defineProperty(O, P, Attributes)
1850 defineProperty: $defineProperty,
1851 // 19.1.2.3 Object.defineProperties(O, Properties)
1852 defineProperties: $defineProperties,
1853 // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)
1854 getOwnPropertyDescriptor: $getOwnPropertyDescriptor,
1855 // 19.1.2.7 Object.getOwnPropertyNames(O)
1856 getOwnPropertyNames: $getOwnPropertyNames,
1857 // 19.1.2.8 Object.getOwnPropertySymbols(O)
1858 getOwnPropertySymbols: $getOwnPropertySymbols
1859});
1860
1861// 24.3.2 JSON.stringify(value [, replacer [, space]])
1862$JSON && $export($export.S + $export.F * (!USE_NATIVE || $fails(function () {
1863 var S = $Symbol();
1864 // MS Edge converts symbol values to JSON as {}
1865 // WebKit converts symbol values to JSON as null
1866 // V8 throws on boxed symbols
1867 return _stringify([S]) != '[null]' || _stringify({ a: S }) != '{}' || _stringify(Object(S)) != '{}';
1868})), 'JSON', {
1869 stringify: function stringify(it) {
1870 var args = [it];
1871 var i = 1;
1872 var replacer, $replacer;
1873 while (arguments.length > i) args.push(arguments[i++]);
1874 $replacer = replacer = args[1];
1875 if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined
1876 if (!isArray(replacer)) replacer = function (key, value) {
1877 if (typeof $replacer == 'function') value = $replacer.call(this, key, value);
1878 if (!isSymbol(value)) return value;
1879 };
1880 args[1] = replacer;
1881 return _stringify.apply($JSON, args);
1882 }
1883});
1884
1885// 19.4.3.4 Symbol.prototype[@@toPrimitive](hint)
1886$Symbol[PROTOTYPE][TO_PRIMITIVE] || __webpack_require__(6)($Symbol[PROTOTYPE], TO_PRIMITIVE, $Symbol[PROTOTYPE].valueOf);
1887// 19.4.3.5 Symbol.prototype[@@toStringTag]
1888setToStringTag($Symbol, 'Symbol');
1889// 20.2.1.9 Math[@@toStringTag]
1890setToStringTag(Math, 'Math', true);
1891// 24.3.3 JSON[@@toStringTag]
1892setToStringTag(global.JSON, 'JSON', true);
1893
1894
1895/***/ }),
1896/* 86 */
1897/***/ (function(module, exports, __webpack_require__) {
1898
1899__webpack_require__(27)('asyncIterator');
1900
1901
1902/***/ }),
1903/* 87 */
1904/***/ (function(module, exports, __webpack_require__) {
1905
1906__webpack_require__(27)('observable');
1907
1908
1909/***/ }),
1910/* 88 */
1911/***/ (function(module, exports, __webpack_require__) {
1912
1913__webpack_require__(78);
1914var global = __webpack_require__(0);
1915var hide = __webpack_require__(6);
1916var Iterators = __webpack_require__(18);
1917var TO_STRING_TAG = __webpack_require__(9)('toStringTag');
1918
1919var DOMIterables = ('CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,' +
1920 'DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,' +
1921 'MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,' +
1922 'SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,' +
1923 'TextTrackList,TouchList').split(',');
1924
1925for (var i = 0; i < DOMIterables.length; i++) {
1926 var NAME = DOMIterables[i];
1927 var Collection = global[NAME];
1928 var proto = Collection && Collection.prototype;
1929 if (proto && !proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);
1930 Iterators[NAME] = Iterators.Array;
1931}
1932
1933
1934/***/ }),
1935/* 89 */
1936/***/ (function(module, exports) {
1937
1938module.exports = __WEBPACK_EXTERNAL_MODULE_89__;
1939
1940/***/ }),
1941/* 90 */
1942/***/ (function(module, exports, __webpack_require__) {
1943
1944module.exports = __webpack_require__(41);
1945
1946
1947/***/ })
1948/******/ ]);
1949});
1950//# sourceMappingURL=rmc-feedback.js.map
\No newline at end of file