@luftborn/custom-elements 1.1.38 → 1.1.41
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/demo/index.html +147 -2
- package/demo/index.js +451 -325
- package/demo/index.min.js +450 -324
- package/demo/index.min.js.map +1 -1
- package/dist/elements/Address/AddressElement.js +6 -4
- package/dist/elements/Address/AddressElement.js.map +1 -1
- package/dist/elements/BankField/BankFieldElement.js +4 -2
- package/dist/elements/BankField/BankFieldElement.js.map +1 -1
- package/dist/elements/CPRElement/CPRElement.js +4 -2
- package/dist/elements/CPRElement/CPRElement.js.map +1 -1
- package/dist/elements/CVRElement/CVRElement.js +4 -2
- package/dist/elements/CVRElement/CVRElement.js.map +1 -1
- package/dist/elements/CheckBoxElement/CheckBoxElement.js +5 -2
- package/dist/elements/CheckBoxElement/CheckBoxElement.js.map +1 -1
- package/dist/elements/CustomRegularExpression/CustomRegularExpressionElement.js +4 -2
- package/dist/elements/CustomRegularExpression/CustomRegularExpressionElement.js.map +1 -1
- package/dist/elements/DateField/DateFieldElement.js +4 -2
- package/dist/elements/DateField/DateFieldElement.js.map +1 -1
- package/dist/elements/DropDownList/DropDownListElement.js +6 -3
- package/dist/elements/DropDownList/DropDownListElement.js.map +1 -1
- package/dist/elements/EmailField/EmailFieldElement.js +4 -2
- package/dist/elements/EmailField/EmailFieldElement.js.map +1 -1
- package/dist/elements/FileField/FileFieldElement.js +4 -2
- package/dist/elements/FileField/FileFieldElement.js.map +1 -1
- package/dist/elements/IdentificationElement/IdentificationElement.js +4 -2
- package/dist/elements/IdentificationElement/IdentificationElement.js.map +1 -1
- package/dist/elements/InternationaPhoneNumber/InternationaPhoneNumberElement.js +4 -2
- package/dist/elements/InternationaPhoneNumber/InternationaPhoneNumberElement.js.map +1 -1
- package/dist/elements/NumericField/NumericFieldElement.js +4 -2
- package/dist/elements/NumericField/NumericFieldElement.js.map +1 -1
- package/dist/elements/RadioButtonGroup/RadioButtonGroupElement.js +5 -2
- package/dist/elements/RadioButtonGroup/RadioButtonGroupElement.js.map +1 -1
- package/dist/elements/TextAreaElement/TextAreaElement.js +4 -2
- package/dist/elements/TextAreaElement/TextAreaElement.js.map +1 -1
- package/dist/elements/TextField/TextFieldElement.js +4 -2
- package/dist/elements/TextField/TextFieldElement.js.map +1 -1
- package/dist/elements/TypeAhead/TypeAheadElement.js +4 -2
- package/dist/elements/TypeAhead/TypeAheadElement.js.map +1 -1
- package/dist/framework/CustomInputElement.d.ts +2 -0
- package/dist/framework/CustomInputElement.js +21 -2
- package/dist/framework/CustomInputElement.js.map +1 -1
- package/dist/framework/Language/Languages/DanishDictionary.js +3 -1
- package/dist/framework/Language/Languages/DanishDictionary.js.map +1 -1
- package/dist/framework/Language/Languages/EnglishDictionary.js +3 -1
- package/dist/framework/Language/Languages/EnglishDictionary.js.map +1 -1
- package/node_modules/@webcomponents/webcomponentsjs/CHANGELOG.md +61 -0
- package/node_modules/@webcomponents/webcomponentsjs/README.md +64 -47
- package/node_modules/@webcomponents/webcomponentsjs/bundles/webcomponents-ce.js +14 -24
- package/node_modules/@webcomponents/webcomponentsjs/bundles/webcomponents-ce.js.map +1 -1
- package/node_modules/@webcomponents/webcomponentsjs/bundles/webcomponents-pf_dom.js +60 -0
- package/node_modules/@webcomponents/webcomponentsjs/bundles/webcomponents-pf_dom.js.map +1 -0
- package/node_modules/@webcomponents/webcomponentsjs/bundles/webcomponents-pf_js.js +95 -0
- package/node_modules/@webcomponents/webcomponentsjs/bundles/webcomponents-pf_js.js.map +1 -0
- package/node_modules/@webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js +290 -250
- package/node_modules/@webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js.map +1 -1
- package/node_modules/@webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce.js +184 -177
- package/node_modules/@webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce.js.map +1 -1
- package/node_modules/@webcomponents/webcomponentsjs/bundles/webcomponents-sd.js +151 -135
- package/node_modules/@webcomponents/webcomponentsjs/bundles/webcomponents-sd.js.map +1 -1
- package/node_modules/@webcomponents/webcomponentsjs/package.json +30 -29
- package/node_modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-bundle-index.js +5 -3
- package/node_modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-ce-index.js +1 -1
- package/node_modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-pf_dom-index.js +17 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-pf_js-index.js +13 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-index.js +1 -1
- package/node_modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-pf-index.js +4 -7
- package/node_modules/@webcomponents/webcomponentsjs/src/entrypoints/webcomponents-sd-index.js +1 -1
- package/node_modules/@webcomponents/webcomponentsjs/src/flag-parser.js +69 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/baseuri.js +28 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/child-node/after.js +47 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/child-node/before.js +40 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/child-node/index.js +14 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/child-node/remove.js +37 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/child-node/replace-with.js +42 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/custom-event.js +79 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/es6-misc.js +38 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/get-attribute-names.js +27 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/matches.js +21 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/parent-node/append.js +31 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/parent-node/index.js +13 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/parent-node/prepend.js +42 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/parent-node/replace-children.js +45 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/promise.js +50 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/svg-element-class-list.js +28 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/platform/symbol.js +64 -0
- package/node_modules/@webcomponents/webcomponentsjs/src/unresolved.js +32 -0
- package/node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.d.ts +174 -0
- package/node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js +299 -250
- package/node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js.map +1 -1
- package/node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js +49 -28
- package/package.json +2 -2
- package/src/elements/CheckBoxElement/CheckBoxElement.ts +1 -0
- package/src/elements/DropDownList/DropDownListElement.ts +2 -0
- package/src/elements/RadioButtonGroup/RadioButtonGroupElement.ts +1 -0
- package/src/framework/CustomInputElement.ts +19 -2
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
@license @nocompile
|
|
3
|
+
Copyright (c) 2018 The Polymer Project Authors. All rights reserved.
|
|
4
|
+
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
|
5
|
+
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
|
6
|
+
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
7
|
+
Code distributed by Google as part of the polymer project is also
|
|
8
|
+
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
9
|
+
*/
|
|
10
|
+
(function(){/*
|
|
11
|
+
|
|
12
|
+
Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
|
|
13
|
+
This code may only be used under the BSD style license found at
|
|
14
|
+
http://polymer.github.io/LICENSE.txt The complete set of authors may be found
|
|
15
|
+
at http://polymer.github.io/AUTHORS.txt The complete set of contributors may
|
|
16
|
+
be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by
|
|
17
|
+
Google as part of the polymer project is also subject to an additional IP
|
|
18
|
+
rights grant found at http://polymer.github.io/PATENTS.txt
|
|
19
|
+
*/
|
|
20
|
+
'use strict';function g(b){var d=0;return function(){return d<b.length?{done:!1,value:b[d++]}:{done:!0}}}function h(b){var d="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];return d?d.call(b):{next:g(b)}}var k=document.createEvent("Event");k.initEvent("foo",!0,!0);k.preventDefault();
|
|
21
|
+
if(!k.defaultPrevented){var l=Event.prototype.preventDefault;Event.prototype.preventDefault=function(){this.cancelable&&(l.call(this),Object.defineProperty(this,"defaultPrevented",{get:function(){return!0},configurable:!0}))}}var m=/Trident/.test(navigator.userAgent);
|
|
22
|
+
if(!window.Event||m&&"function"!==typeof window.Event){var n=window.Event;window.Event=function(b,d){d=d||{};var c=document.createEvent("Event");c.initEvent(b,!!d.bubbles,!!d.cancelable);return c};if(n){for(var p in n)window.Event[p]=n[p];window.Event.prototype=n.prototype}}
|
|
23
|
+
if(!window.CustomEvent||m&&"function"!==typeof window.CustomEvent)window.CustomEvent=function(b,d){d=d||{};var c=document.createEvent("CustomEvent");c.initCustomEvent(b,!!d.bubbles,!!d.cancelable,d.detail);return c},window.CustomEvent.prototype=window.Event.prototype;
|
|
24
|
+
if(!window.MouseEvent||m&&"function"!==typeof window.MouseEvent){var q=window.MouseEvent;window.MouseEvent=function(b,d){d=d||{};var c=document.createEvent("MouseEvent");c.initMouseEvent(b,!!d.bubbles,!!d.cancelable,d.view||window,d.detail,d.screenX,d.screenY,d.clientX,d.clientY,d.ctrlKey,d.altKey,d.shiftKey,d.metaKey,d.button,d.relatedTarget);return c};if(q)for(var r in q)window.MouseEvent[r]=q[r];window.MouseEvent.prototype=q.prototype};/*
|
|
25
|
+
|
|
26
|
+
Copyright (c) 2018 The Polymer Project Authors. All rights reserved.
|
|
27
|
+
This code may only be used under the BSD style license found at
|
|
28
|
+
http://polymer.github.io/LICENSE.txt The complete set of authors may be found at
|
|
29
|
+
http://polymer.github.io/AUTHORS.txt The complete set of contributors may be
|
|
30
|
+
found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as
|
|
31
|
+
part of the polymer project is also subject to an additional IP rights grant
|
|
32
|
+
found at http://polymer.github.io/PATENTS.txt
|
|
33
|
+
*/
|
|
34
|
+
Object.getOwnPropertyDescriptor(Node.prototype,"baseURI")||Object.defineProperty(Node.prototype,"baseURI",{get:function(){var b=(this.ownerDocument||this).querySelector("base[href]");return b&&b.href||window.location.href},configurable:!0,enumerable:!0});/*
|
|
35
|
+
|
|
36
|
+
Copyright (c) 2020 The Polymer Project Authors. All rights reserved.
|
|
37
|
+
This code may only be used under the BSD style license found at
|
|
38
|
+
http://polymer.github.io/LICENSE.txt The complete set of authors may be found at
|
|
39
|
+
http://polymer.github.io/AUTHORS.txt The complete set of contributors may be
|
|
40
|
+
found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as
|
|
41
|
+
part of the polymer project is also subject to an additional IP rights grant
|
|
42
|
+
found at http://polymer.github.io/PATENTS.txt
|
|
43
|
+
*/
|
|
44
|
+
var t,u,v=Element.prototype,w=null!==(t=Object.getOwnPropertyDescriptor(v,"attributes"))&&void 0!==t?t:Object.getOwnPropertyDescriptor(Node.prototype,"attributes"),x=null!==(u=null===w||void 0===w?void 0:w.get)&&void 0!==u?u:function(){return this.attributes},y=Array.prototype.map;v.hasOwnProperty("getAttributeNames")||(v.getAttributeNames=function(){return y.call(x.call(this),function(b){return b.name})});var z,A=Element.prototype;A.hasOwnProperty("matches")||(A.matches=null!==(z=A.webkitMatchesSelector)&&void 0!==z?z:A.msMatchesSelector);/*
|
|
45
|
+
|
|
46
|
+
Copyright (c) 2020 The Polymer Project Authors. All rights reserved.
|
|
47
|
+
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
|
48
|
+
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
|
49
|
+
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
50
|
+
Code distributed by Google as part of the polymer project is also
|
|
51
|
+
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
52
|
+
*/
|
|
53
|
+
var B=Node.prototype.appendChild;function C(b){b=b.prototype;b.hasOwnProperty("append")||Object.defineProperty(b,"append",{configurable:!0,enumerable:!0,writable:!0,value:function(d){for(var c=[],a=0;a<arguments.length;++a)c[a]=arguments[a];c=h(c);for(a=c.next();!a.done;a=c.next())a=a.value,B.call(this,"string"===typeof a?document.createTextNode(a):a)}})}C(Document);C(DocumentFragment);C(Element);var D,E,F=Node.prototype.insertBefore,aa=null!==(E=null===(D=Object.getOwnPropertyDescriptor(Node.prototype,"firstChild"))||void 0===D?void 0:D.get)&&void 0!==E?E:function(){return this.firstChild};
|
|
54
|
+
function G(b){b=b.prototype;b.hasOwnProperty("prepend")||Object.defineProperty(b,"prepend",{configurable:!0,enumerable:!0,writable:!0,value:function(d){for(var c=[],a=0;a<arguments.length;++a)c[a]=arguments[a];a=aa.call(this);c=h(c);for(var e=c.next();!e.done;e=c.next())e=e.value,F.call(this,"string"===typeof e?document.createTextNode(e):e,a)}})}G(Document);G(DocumentFragment);G(Element);var H,I,ba=Node.prototype.appendChild,ca=Node.prototype.removeChild,da=null!==(I=null===(H=Object.getOwnPropertyDescriptor(Node.prototype,"firstChild"))||void 0===H?void 0:H.get)&&void 0!==I?I:function(){return this.firstChild};
|
|
55
|
+
function J(b){b=b.prototype;b.hasOwnProperty("replaceChildren")||Object.defineProperty(b,"replaceChildren",{configurable:!0,enumerable:!0,writable:!0,value:function(d){for(var c=[],a=0;a<arguments.length;++a)c[a]=arguments[a];for(;null!==(a=da.call(this));)ca.call(this,a);c=h(c);for(a=c.next();!a.done;a=c.next())a=a.value,ba.call(this,"string"===typeof a?document.createTextNode(a):a)}})}J(Document);J(DocumentFragment);J(Element);var K,L,M,N,ea=Node.prototype.insertBefore,fa=null!==(L=null===(K=Object.getOwnPropertyDescriptor(Node.prototype,"parentNode"))||void 0===K?void 0:K.get)&&void 0!==L?L:function(){return this.parentNode},ha=null!==(N=null===(M=Object.getOwnPropertyDescriptor(Node.prototype,"nextSibling"))||void 0===M?void 0:M.get)&&void 0!==N?N:function(){return this.nextSibling};
|
|
56
|
+
function O(b){b=b.prototype;b.hasOwnProperty("after")||Object.defineProperty(b,"after",{configurable:!0,enumerable:!0,writable:!0,value:function(d){for(var c=[],a=0;a<arguments.length;++a)c[a]=arguments[a];a=fa.call(this);if(null!==a){var e=ha.call(this);c=h(c);for(var f=c.next();!f.done;f=c.next())f=f.value,ea.call(a,"string"===typeof f?document.createTextNode(f):f,e)}}})}O(CharacterData);O(Element);var P,Q,ia=Node.prototype.insertBefore,ja=null!==(Q=null===(P=Object.getOwnPropertyDescriptor(Node.prototype,"parentNode"))||void 0===P?void 0:P.get)&&void 0!==Q?Q:function(){return this.parentNode};
|
|
57
|
+
function R(b){b=b.prototype;b.hasOwnProperty("before")||Object.defineProperty(b,"before",{configurable:!0,enumerable:!0,writable:!0,value:function(d){for(var c=[],a=0;a<arguments.length;++a)c[a]=arguments[a];a=ja.call(this);if(null!==a){c=h(c);for(var e=c.next();!e.done;e=c.next())e=e.value,ia.call(a,"string"===typeof e?document.createTextNode(e):e,this)}}})}R(CharacterData);R(Element);var S,T,ka=Node.prototype.removeChild,la=null!==(T=null===(S=Object.getOwnPropertyDescriptor(Node.prototype,"parentNode"))||void 0===S?void 0:S.get)&&void 0!==T?T:function(){return this.parentNode};function U(b){b=b.prototype;b.hasOwnProperty("remove")||Object.defineProperty(b,"remove",{configurable:!0,enumerable:!0,writable:!0,value:function(){var d=la.call(this);d&&ka.call(d,this)}})}U(CharacterData);U(Element);var V,W,ma=Node.prototype.insertBefore,na=Node.prototype.removeChild,oa=null!==(W=null===(V=Object.getOwnPropertyDescriptor(Node.prototype,"parentNode"))||void 0===V?void 0:V.get)&&void 0!==W?W:function(){return this.parentNode};
|
|
58
|
+
function X(b){b=b.prototype;b.hasOwnProperty("replaceWith")||Object.defineProperty(b,"replaceWith",{configurable:!0,enumerable:!0,writable:!0,value:function(d){for(var c=[],a=0;a<arguments.length;++a)c[a]=arguments[a];a=oa.call(this);if(null!==a){c=h(c);for(var e=c.next();!e.done;e=c.next())e=e.value,ma.call(a,"string"===typeof e?document.createTextNode(e):e,this);na.call(a,this)}}})}X(CharacterData);X(Element);var Y=window.Element.prototype,Z=window.HTMLElement.prototype,pa=window.SVGElement.prototype;!Z.hasOwnProperty("classList")||Y.hasOwnProperty("classList")||pa.hasOwnProperty("classList")||Object.defineProperty(Y,"classList",Object.getOwnPropertyDescriptor(Z,"classList"));}).call(this);
|
|
59
|
+
|
|
60
|
+
//# sourceMappingURL=webcomponents-pf_dom.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[" [synthetic:es6/util/arrayiterator] "," [synthetic:es6/util/makeiterator] ","ts_src/platform/custom-event.ts","ts_src/platform/baseuri.ts","ts_src/platform/get-attribute-names.ts","ts_src/platform/matches.ts","ts_src/platform/parent-node/append.ts","ts_src/platform/parent-node/prepend.ts","ts_src/platform/parent-node/replace-children.ts","ts_src/platform/child-node/after.ts","ts_src/platform/child-node/before.ts","ts_src/platform/child-node/remove.ts","ts_src/platform/child-node/replace-with.ts","ts_src/platform/svg-element-class-list.ts"],"names":["$jscomp.arrayIteratorImpl","e","document","createEvent","initEvent","preventDefault","defaultPrevented","origPreventDefault","Event","prototype","Event.prototype.preventDefault","cancelable","call","Object","defineProperty","get","configurable","isIE","test","navigator","userAgent","window","origEvent","inType","params","bubbles","i","CustomEvent","initCustomEvent","detail","MouseEvent","origMouseEvent","initMouseEvent","view","screenX","screenY","clientX","clientY","ctrlKey","altKey","shiftKey","metaKey","button","relatedTarget","j","native_baseURI","getOwnPropertyDescriptor","Node","base","ownerDocument","querySelector","href","location","enumerable","_a","_b","Element_prototype","Element","attributesDescriptor","getAttributes","attributes","map","Array","hasOwnProperty","getAttributeNames","Element_prototype.getAttributeNames","attr","name","matches","webkitMatchesSelector","msMatchesSelector","nativeAppendChild","appendChild","installAppend","constructor","writable","value","append","args","$jscomp.makeIterator","arg","createTextNode","Document","DocumentFragment","nativeInsertBefore","insertBefore","nativeGetFirstChild","firstChild","installPrepend","prepend","newNode","nativeRemoveChild","removeChild","installReplaceChildren","replaceChildren","child","_c","_d","nativeGetParentNode","parentNode","nativeGetNextSibling","nextSibling","installAfter","after","CharacterData","installBefore","before","installRemove","remove","installReplaceWith","replaceWith","HTMLElement_prototype","HTMLElement","SVGElement_prototype"],"mappings":"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","file":"webcomponents-pf_dom.js","sourcesContent":[null,null,"/**\n * @license\n * Copyright (c) 2016 The Polymer Project Authors. All rights reserved.\n * This code may only be used under the BSD style license found at\n * http://polymer.github.io/LICENSE.txt The complete set of authors may be found\n * at http://polymer.github.io/AUTHORS.txt The complete set of contributors may\n * be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by\n * Google as part of the polymer project is also subject to an additional IP\n * rights grant found at http://polymer.github.io/PATENTS.txt\n */\n\nexport {};\n\n// defaultPrevented is broken in IE.\n// https://connect.microsoft.com/IE/feedback/details/790389/event-defaultprevented-returns-false-after-preventdefault-was-called\nconst workingDefaultPrevented = (() => {\n const e = document.createEvent('Event');\n e.initEvent('foo', true, true);\n e.preventDefault();\n return e.defaultPrevented;\n})();\n\nif (!workingDefaultPrevented) {\n const origPreventDefault = Event.prototype.preventDefault;\n Event.prototype.preventDefault = function (this: Event) {\n if (!this.cancelable) {\n return;\n }\n\n origPreventDefault.call(this);\n\n Object.defineProperty(this, 'defaultPrevented', {\n get() {\n return true;\n },\n configurable: true,\n });\n };\n}\n\nconst isIE = /Trident/.test(navigator.userAgent);\n\n// Event constructor shim\nif (!window.Event || (isIE && typeof window.Event !== 'function')) {\n const origEvent = window.Event as typeof Event;\n window['Event'] = (((inType: string, params?: EventInit) => {\n params = params || {};\n const e = document.createEvent('Event');\n e.initEvent(inType, Boolean(params.bubbles), Boolean(params.cancelable));\n return e;\n }) as unknown) as typeof Event;\n if (origEvent) {\n for (const i in origEvent) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n (window['Event'] as any)[i] = (origEvent as any)[i];\n }\n window['Event'].prototype = origEvent.prototype;\n }\n}\n\n// CustomEvent constructor shim\nif (!window.CustomEvent || (isIE && typeof window.CustomEvent !== 'function')) {\n window['CustomEvent'] = ((<T extends unknown>(\n inType: string,\n params?: CustomEventInit<T>\n ) => {\n params = params || {};\n const e: CustomEvent<T> = document.createEvent('CustomEvent');\n e.initCustomEvent(\n inType,\n Boolean(params.bubbles),\n Boolean(params.cancelable),\n params.detail!\n );\n return e;\n }) as unknown) as typeof CustomEvent;\n window['CustomEvent'].prototype = window.Event.prototype as CustomEvent;\n}\n\nif (!window.MouseEvent || (isIE && typeof window.MouseEvent !== 'function')) {\n const origMouseEvent = window.MouseEvent as typeof MouseEvent;\n window['MouseEvent'] = (((inType: string, params?: MouseEventInit) => {\n params = params || {};\n const e = document.createEvent('MouseEvent');\n e.initMouseEvent(\n inType,\n Boolean(params.bubbles),\n Boolean(params.cancelable),\n params.view || window,\n params.detail!,\n params.screenX!,\n params.screenY!,\n params.clientX!,\n params.clientY!,\n params.ctrlKey!,\n params.altKey!,\n params.shiftKey!,\n params.metaKey!,\n params.button!,\n params.relatedTarget!\n );\n return e;\n }) as unknown) as typeof MouseEvent;\n if (origMouseEvent) {\n for (const j in origMouseEvent) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n (window.MouseEvent as any)[j] = (origMouseEvent as any)[j];\n }\n }\n window['MouseEvent'].prototype = origMouseEvent.prototype;\n}\n","/**\n@license\nCopyright (c) 2018 The Polymer Project Authors. All rights reserved.\nThis code may only be used under the BSD style license found at\nhttp://polymer.github.io/LICENSE.txt The complete set of authors may be found at\nhttp://polymer.github.io/AUTHORS.txt The complete set of contributors may be\nfound at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as\npart of the polymer project is also subject to an additional IP rights grant\nfound at http://polymer.github.io/PATENTS.txt\n*/\n\nexport {};\n\n// Implement Node.baseURI for IE 11\n// adapted from\n// https://github.com/webcomponents/html-imports/blob/v1.2.0/src/html-imports.js\n\nconst native_baseURI = Object.getOwnPropertyDescriptor(\n Node.prototype,\n 'baseURI'\n);\nif (!native_baseURI) {\n Object.defineProperty(Node.prototype, 'baseURI', {\n get(this: Node): string {\n // this.ownerDocument is `null` for documents\n const doc = this.ownerDocument || (this as Document);\n const base = doc.querySelector('base[href]') as HTMLBaseElement;\n return (base && base.href) || window.location.href;\n },\n configurable: true,\n enumerable: true,\n });\n}\n","/**\n@license\nCopyright (c) 2020 The Polymer Project Authors. All rights reserved.\nThis code may only be used under the BSD style license found at\nhttp://polymer.github.io/LICENSE.txt The complete set of authors may be found at\nhttp://polymer.github.io/AUTHORS.txt The complete set of contributors may be\nfound at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as\npart of the polymer project is also subject to an additional IP rights grant\nfound at http://polymer.github.io/PATENTS.txt\n*/\n\nexport {};\n\nconst Element_prototype = Element.prototype;\n// In IE11, the `attributes` descriptor is on `Node.prototype`.\nconst attributesDescriptor =\n Object.getOwnPropertyDescriptor(Element_prototype, 'attributes') ??\n Object.getOwnPropertyDescriptor(Node.prototype, 'attributes');\n// In Safari 9, the `attributes` descriptor's getter is undefined. In Chrome 41,\n// the `attributes` descriptor is a data descriptor on each Element instance.\nconst getAttributes =\n attributesDescriptor?.get ??\n function (this: Element) {\n return this.attributes;\n };\nconst map = Array.prototype.map;\n\nif (!Element_prototype.hasOwnProperty('getAttributeNames')) {\n Element_prototype.getAttributeNames = function getAttributeNames(\n this: Element\n ): Array<string> {\n return map.call(\n getAttributes.call(this),\n (attr) => attr.name\n ) as Array<string>;\n };\n}\n","/**\n@license\nCopyright (c) 2020 The Polymer Project Authors. All rights reserved.\nThis code may only be used under the BSD style license found at\nhttp://polymer.github.io/LICENSE.txt The complete set of authors may be found at\nhttp://polymer.github.io/AUTHORS.txt The complete set of contributors may be\nfound at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as\npart of the polymer project is also subject to an additional IP rights grant\nfound at http://polymer.github.io/PATENTS.txt\n*/\n\nexport {};\n\nconst Element_prototype = Element.prototype;\n\nif (!Element_prototype.hasOwnProperty('matches')) {\n Element_prototype.matches =\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n ((Element_prototype as any).webkitMatchesSelector as Element['matches']) ??\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n ((Element_prototype as any).msMatchesSelector as Element['matches']);\n}\n","/**\n@license\nCopyright (c) 2020 The Polymer Project Authors. All rights reserved.\nThis code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt\nThe complete set of authors may be found at http://polymer.github.io/AUTHORS.txt\nThe complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt\nCode distributed by Google as part of the polymer project is also\nsubject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt\n*/\n\nexport {};\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ntype Constructor<T> = new (...args: Array<any>) => T;\n\nconst nativeAppendChild = Node.prototype.appendChild;\n\nconst installAppend = <T>(constructor: Constructor<T>) => {\n const prototype = constructor.prototype;\n if (prototype.hasOwnProperty('append')) {\n return;\n }\n\n Object.defineProperty(prototype, 'append', {\n configurable: true,\n enumerable: true,\n writable: true,\n value: function append(...args: Array<Node | string>) {\n for (const arg of args) {\n nativeAppendChild.call(\n this,\n typeof arg === 'string' ? document.createTextNode(arg) : arg\n );\n }\n },\n });\n};\n\ninstallAppend(Document);\ninstallAppend(DocumentFragment);\ninstallAppend(Element);\n","/**\n@license\nCopyright (c) 2020 The Polymer Project Authors. All rights reserved.\nThis code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt\nThe complete set of authors may be found at http://polymer.github.io/AUTHORS.txt\nThe complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt\nCode distributed by Google as part of the polymer project is also\nsubject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt\n*/\n\nexport {};\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ntype Constructor<T> = new (...args: Array<any>) => T;\n\nconst nativeInsertBefore = Node.prototype.insertBefore;\nconst nativeGetFirstChild =\n // In Chrome 41, `firstChild` is a data descriptor on every instance, not a\n // accessor descriptor on `Node.prototype`.\n Object.getOwnPropertyDescriptor(Node.prototype, 'firstChild')?.get ??\n // In Safari 9, the `firstChild` descriptor's `get` and `set` are undefined.\n function (this: Node) {\n return this.firstChild;\n };\n\nconst installPrepend = <T>(constructor: Constructor<T>) => {\n const prototype = constructor.prototype;\n if (prototype.hasOwnProperty('prepend')) {\n return;\n }\n\n Object.defineProperty(prototype, 'prepend', {\n configurable: true,\n enumerable: true,\n writable: true,\n value: function prepend(...args: Array<Node | string>) {\n const firstChild = nativeGetFirstChild.call(this);\n for (const arg of args) {\n const newNode =\n typeof arg === 'string' ? document.createTextNode(arg) : arg;\n nativeInsertBefore.call(this, newNode, firstChild);\n }\n },\n });\n};\n\ninstallPrepend(Document);\ninstallPrepend(DocumentFragment);\ninstallPrepend(Element);\n","/**\n@license\nCopyright (c) 2020 The Polymer Project Authors. All rights reserved.\nThis code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt\nThe complete set of authors may be found at http://polymer.github.io/AUTHORS.txt\nThe complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt\nCode distributed by Google as part of the polymer project is also\nsubject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt\n*/\n\nexport {};\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ntype Constructor<T> = new (...args: Array<any>) => T;\n\nconst nativeAppendChild = Node.prototype.appendChild;\nconst nativeRemoveChild = Node.prototype.removeChild;\nconst nativeGetFirstChild =\n // In Chrome 41, `firstChild` is a data descriptor on every instance, not a\n // accessor descriptor on `Node.prototype`.\n Object.getOwnPropertyDescriptor(Node.prototype, 'firstChild')?.get ??\n // In Safari 9, the `firstChild` descriptor's `get` and `set` are undefined.\n function (this: Node) {\n return this.firstChild;\n };\n\nconst installReplaceChildren = <T>(constructor: Constructor<T>) => {\n const prototype = constructor.prototype;\n if (prototype.hasOwnProperty('replaceChildren')) {\n return;\n }\n\n Object.defineProperty(prototype, 'replaceChildren', {\n configurable: true,\n enumerable: true,\n writable: true,\n value: function replaceChildren(...args: Array<Node | string>) {\n let child;\n while ((child = nativeGetFirstChild.call(this)) !== null) {\n nativeRemoveChild.call(this, child);\n }\n\n for (const arg of args) {\n nativeAppendChild.call(\n this,\n typeof arg === 'string' ? document.createTextNode(arg) : arg\n );\n }\n },\n });\n};\n\ninstallReplaceChildren(Document);\ninstallReplaceChildren(DocumentFragment);\ninstallReplaceChildren(Element);\n","/**\n@license\nCopyright (c) 2020 The Polymer Project Authors. All rights reserved.\nThis code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt\nThe complete set of authors may be found at http://polymer.github.io/AUTHORS.txt\nThe complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt\nCode distributed by Google as part of the polymer project is also\nsubject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt\n*/\n\nexport {};\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ntype Constructor<T> = new (...args: Array<any>) => T;\n\nconst nativeInsertBefore = Node.prototype.insertBefore;\nconst nativeGetParentNode =\n Object.getOwnPropertyDescriptor(Node.prototype, 'parentNode')?.get ??\n // In Safari 9, the `parentNode` descriptor's `get` and `set` are undefined.\n function (this: Node) {\n return this.parentNode;\n };\nconst nativeGetNextSibling =\n Object.getOwnPropertyDescriptor(Node.prototype, 'nextSibling')?.get ??\n // In Safari 9, the `nextSibling` descriptor's `get` and `set` are\n // undefined.\n function (this: Node) {\n return this.nextSibling;\n };\n\nconst installAfter = <T>(constructor: Constructor<T>) => {\n const prototype = constructor.prototype;\n if (prototype.hasOwnProperty('after')) {\n return;\n }\n\n Object.defineProperty(prototype, 'after', {\n configurable: true,\n enumerable: true,\n writable: true,\n value: function after(...args: Array<Node | string>) {\n const parentNode = nativeGetParentNode.call(this);\n if (parentNode === null) {\n return;\n }\n\n const nextSibling = nativeGetNextSibling.call(this);\n for (const arg of args) {\n nativeInsertBefore.call(\n parentNode,\n typeof arg === 'string' ? document.createTextNode(arg) : arg,\n nextSibling\n );\n }\n },\n });\n};\n\ninstallAfter(CharacterData);\ninstallAfter(Element);\n","/**\n@license\nCopyright (c) 2020 The Polymer Project Authors. All rights reserved.\nThis code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt\nThe complete set of authors may be found at http://polymer.github.io/AUTHORS.txt\nThe complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt\nCode distributed by Google as part of the polymer project is also\nsubject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt\n*/\n\nexport {};\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ntype Constructor<T> = new (...args: Array<any>) => T;\n\nconst nativeInsertBefore = Node.prototype.insertBefore;\nconst nativeGetParentNode =\n Object.getOwnPropertyDescriptor(Node.prototype, 'parentNode')?.get ??\n // In Safari 9, the `parentNode` descriptor's `get` and `set` are undefined.\n function (this: Node) {\n return this.parentNode;\n };\n\nconst installBefore = <T>(constructor: Constructor<T>) => {\n const prototype = constructor.prototype;\n if (prototype.hasOwnProperty('before')) {\n return;\n }\n\n Object.defineProperty(prototype, 'before', {\n configurable: true,\n enumerable: true,\n writable: true,\n value: function before(...args: Array<Node | string>) {\n const parentNode = nativeGetParentNode.call(this);\n if (parentNode === null) {\n return;\n }\n\n for (const arg of args) {\n nativeInsertBefore.call(\n parentNode,\n typeof arg === 'string' ? document.createTextNode(arg) : arg,\n this\n );\n }\n },\n });\n};\n\ninstallBefore(CharacterData);\ninstallBefore(Element);\n","/**\n@license\nCopyright (c) 2020 The Polymer Project Authors. All rights reserved.\nThis code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt\nThe complete set of authors may be found at http://polymer.github.io/AUTHORS.txt\nThe complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt\nCode distributed by Google as part of the polymer project is also\nsubject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt\n*/\n\nexport {};\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ntype Constructor<T> = new (...args: Array<any>) => T;\n\nconst nativeRemoveChild = Node.prototype.removeChild;\nconst nativeGetParentNode =\n Object.getOwnPropertyDescriptor(Node.prototype, 'parentNode')?.get ??\n // In Safari 9, the `parentNode` descriptor's `get` and `set` are undefined.\n function (this: Node) {\n return this.parentNode;\n };\n\nconst installRemove = <T>(constructor: Constructor<T>) => {\n const prototype = constructor.prototype;\n if (prototype.hasOwnProperty('remove')) {\n return;\n }\n\n Object.defineProperty(prototype, 'remove', {\n configurable: true,\n enumerable: true,\n writable: true,\n value: function remove() {\n const parentNode = nativeGetParentNode.call(this);\n if (parentNode) {\n nativeRemoveChild.call(parentNode, this);\n }\n },\n });\n};\n\ninstallRemove(CharacterData);\ninstallRemove(Element);\n","/**\n@license\nCopyright (c) 2020 The Polymer Project Authors. All rights reserved.\nThis code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt\nThe complete set of authors may be found at http://polymer.github.io/AUTHORS.txt\nThe complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt\nCode distributed by Google as part of the polymer project is also\nsubject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt\n*/\n\nexport {};\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ntype Constructor<T> = new (...args: Array<any>) => T;\n\nconst nativeInsertBefore = Node.prototype.insertBefore;\nconst nativeRemoveChild = Node.prototype.removeChild;\nconst nativeGetParentNode =\n Object.getOwnPropertyDescriptor(Node.prototype, 'parentNode')?.get ??\n // In Safari 9, the `parentNode` descriptor's `get` and `set` are undefined.\n function (this: Node) {\n return this.parentNode;\n };\n\nconst installReplaceWith = <T>(constructor: Constructor<T>) => {\n const prototype = constructor.prototype;\n if (prototype.hasOwnProperty('replaceWith')) {\n return;\n }\n\n Object.defineProperty(prototype, 'replaceWith', {\n configurable: true,\n enumerable: true,\n writable: true,\n value: function replaceWith(...args: Array<Node | string>) {\n const parentNode = nativeGetParentNode.call(this);\n if (parentNode === null) {\n return;\n }\n\n for (const arg of args) {\n nativeInsertBefore.call(\n parentNode,\n typeof arg === 'string' ? document.createTextNode(arg) : arg,\n this\n );\n }\n\n nativeRemoveChild.call(parentNode, this);\n },\n });\n};\n\ninstallReplaceWith(CharacterData);\ninstallReplaceWith(Element);\n","/**\n@license\nCopyright (c) 2020 The Polymer Project Authors. All rights reserved.\nThis code may only be used under the BSD style license found at\nhttp://polymer.github.io/LICENSE.txt The complete set of authors may be found at\nhttp://polymer.github.io/AUTHORS.txt The complete set of contributors may be\nfound at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as\npart of the polymer project is also subject to an additional IP rights grant\nfound at http://polymer.github.io/PATENTS.txt\n*/\n\nexport {};\n\nconst Element_prototype = window.Element.prototype;\nconst HTMLElement_prototype = window.HTMLElement.prototype;\nconst SVGElement_prototype = window['SVGElement'].prototype;\n\n// Thanks to @justinfagnani for finding this:\n//\n// In IE11, `classList` is only supported on `HTMLElement` instances: the\n// descriptor is an own property of `HTMLElement.prototype` and is an accessor\n// descriptor with `set` as `undefined` and no `get`. However, it seems to be\n// implemented generically enough such that copying it to something in the\n// prototype chain of `SVGElement` correctly adds support for `classList` (as\n// far as `DOMTokenList` implemented in IE11).\nif (\n HTMLElement_prototype.hasOwnProperty('classList') &&\n !Element_prototype.hasOwnProperty('classList') &&\n !SVGElement_prototype.hasOwnProperty('classList')\n) {\n Object.defineProperty(\n Element_prototype,\n 'classList',\n Object.getOwnPropertyDescriptor(HTMLElement_prototype, 'classList')!\n );\n}\n"]}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
/**
|
|
2
|
+
@license @nocompile
|
|
3
|
+
Copyright (c) 2018 The Polymer Project Authors. All rights reserved.
|
|
4
|
+
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
|
5
|
+
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
|
6
|
+
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
7
|
+
Code distributed by Google as part of the polymer project is also
|
|
8
|
+
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
9
|
+
*/
|
|
10
|
+
(function(){/*
|
|
11
|
+
|
|
12
|
+
Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
|
|
13
|
+
This code may only be used under the BSD style license found at
|
|
14
|
+
http://polymer.github.io/LICENSE.txt The complete set of authors may be found
|
|
15
|
+
at http://polymer.github.io/AUTHORS.txt The complete set of contributors may
|
|
16
|
+
be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by
|
|
17
|
+
Google as part of the polymer project is also subject to an additional IP
|
|
18
|
+
rights grant found at http://polymer.github.io/PATENTS.txt
|
|
19
|
+
*/
|
|
20
|
+
'use strict';function aa(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}}var t="function"==typeof Object.defineProperties?Object.defineProperty:function(a,b,c){if(a==Array.prototype||a==Object.prototype)return a;a[b]=c.value;return a};
|
|
21
|
+
function ba(a){a=["object"==typeof globalThis&&globalThis,a,"object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global];for(var b=0;b<a.length;++b){var c=a[b];if(c&&c.Math==Math)return c}throw Error("Cannot find global object");}var z=ba(this);function A(a,b){if(b)a:{var c=z;a=a.split(".");for(var d=0;d<a.length-1;d++){var f=a[d];if(!(f in c))break a;c=c[f]}a=a[a.length-1];d=c[a];b=b(d);b!=d&&null!=b&&t(c,a,{configurable:!0,writable:!0,value:b})}}
|
|
22
|
+
A("Symbol",function(a){function b(f){if(this instanceof b)throw new TypeError("Symbol is not a constructor");return new c("jscomp_symbol_"+(f||"")+"_"+d++,f)}function c(f,g){this.g=f;t(this,"description",{configurable:!0,writable:!0,value:g})}if(a)return a;c.prototype.toString=function(){return this.g};var d=0;return b});
|
|
23
|
+
A("Symbol.iterator",function(a){if(a)return a;a=Symbol("Symbol.iterator");for(var b="Array Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array".split(" "),c=0;c<b.length;c++){var d=z[b[c]];"function"===typeof d&&"function"!=typeof d.prototype[a]&&t(d.prototype,a,{configurable:!0,writable:!0,value:function(){return ca(aa(this))}})}return a});function ca(a){a={next:a};a[Symbol.iterator]=function(){return this};return a}var E;
|
|
24
|
+
if("function"==typeof Object.setPrototypeOf)E=Object.setPrototypeOf;else{var H;a:{var ia={a:!0},I={};try{I.__proto__=ia;H=I.a;break a}catch(a){}H=!1}E=H?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null}var J=E;function K(){this.o=!1;this.h=null;this.A=void 0;this.g=1;this.v=0;this.m=null}function L(a){if(a.o)throw new TypeError("Generator is already running");a.o=!0}K.prototype.s=function(a){this.A=a};
|
|
25
|
+
function M(a,b){a.m={B:b,C:!0};a.g=a.v}K.prototype.return=function(a){this.m={return:a};this.g=this.v};function N(a,b){a.g=3;return{value:b}}function ja(a){this.g=new K;this.h=a}function ka(a,b){L(a.g);var c=a.g.h;if(c)return O(a,"return"in c?c["return"]:function(d){return{value:d,done:!0}},b,a.g.return);a.g.return(b);return P(a)}
|
|
26
|
+
function O(a,b,c,d){try{var f=b.call(a.g.h,c);if(!(f instanceof Object))throw new TypeError("Iterator result "+f+" is not an object");if(!f.done)return a.g.o=!1,f;var g=f.value}catch(h){return a.g.h=null,M(a.g,h),P(a)}a.g.h=null;d.call(a.g,g);return P(a)}function P(a){for(;a.g.g;)try{var b=a.h(a.g);if(b)return a.g.o=!1,{value:b.value,done:!1}}catch(c){a.g.A=void 0,M(a.g,c)}a.g.o=!1;if(a.g.m){b=a.g.m;a.g.m=null;if(b.C)throw b.B;return{value:b.return,done:!0}}return{value:void 0,done:!0}}
|
|
27
|
+
function la(a){this.next=function(b){L(a.g);a.g.h?b=O(a,a.g.h.next,b,a.g.s):(a.g.s(b),b=P(a));return b};this.throw=function(b){L(a.g);a.g.h?b=O(a,a.g.h["throw"],b,a.g.s):(M(a.g,b),b=P(a));return b};this.return=function(b){return ka(a,b)};this[Symbol.iterator]=function(){return this}}function Q(a,b){b=new la(new ja(b));J&&a.prototype&&J(b,a.prototype);return b}Array.from||(Array.from=function(a){return[].slice.call(a)});
|
|
28
|
+
Object.assign||(Object.assign=function(a){for(var b=[].slice.call(arguments,1),c=0,d;c<b.length;c++)if(d=b[c])for(var f=a,g=Object.keys(d),h=0;h<g.length;h++){var r=g[h];f[r]=d[r]}return a});var ma=setTimeout;function na(){}function oa(a,b){return function(){a.apply(b,arguments)}}function R(a){if(!(this instanceof R))throw new TypeError("Promises must be constructed via new");if("function"!==typeof a)throw new TypeError("not a function");this.i=0;this.u=!1;this.j=void 0;this.l=[];pa(a,this)}
|
|
29
|
+
function qa(a,b){for(;3===a.i;)a=a.j;0===a.i?a.l.push(b):(a.u=!0,S(function(){var c=1===a.i?b.D:b.F;if(null===c)(1===a.i?T:W)(b.promise,a.j);else{try{var d=c(a.j)}catch(f){W(b.promise,f);return}T(b.promise,d)}}))}function T(a,b){try{if(b===a)throw new TypeError("A promise cannot be resolved with itself.");if(b&&("object"===typeof b||"function"===typeof b)){var c=b.then;if(b instanceof R){a.i=3;a.j=b;X(a);return}if("function"===typeof c){pa(oa(c,b),a);return}}a.i=1;a.j=b;X(a)}catch(d){W(a,d)}}
|
|
30
|
+
function W(a,b){a.i=2;a.j=b;X(a)}function X(a){2===a.i&&0===a.l.length&&S(function(){a.u||"undefined"!==typeof console&&console&&console.warn("Possible Unhandled Promise Rejection:",a.j)});for(var b=0,c=a.l.length;b<c;b++)qa(a,a.l[b]);a.l=null}function ra(a,b,c){this.D="function"===typeof a?a:null;this.F="function"===typeof b?b:null;this.promise=c}function pa(a,b){var c=!1;try{a(function(d){c||(c=!0,T(b,d))},function(d){c||(c=!0,W(b,d))})}catch(d){c||(c=!0,W(b,d))}}
|
|
31
|
+
R.prototype["catch"]=function(a){return this.then(null,a)};R.prototype.then=function(a,b){var c=new this.constructor(na);qa(this,new ra(a,b,c));return c};R.prototype["finally"]=function(a){var b=this.constructor;return this.then(function(c){return b.resolve(a()).then(function(){return c})},function(c){return b.resolve(a()).then(function(){return b.reject(c)})})};
|
|
32
|
+
function sa(a){return new R(function(b,c){function d(r,q){try{if(q&&("object"===typeof q||"function"===typeof q)){var v=q.then;if("function"===typeof v){v.call(q,function(x){d(r,x)},c);return}}f[r]=q;0===--g&&b(f)}catch(x){c(x)}}if(!a||"undefined"===typeof a.length)return c(new TypeError("Promise.all accepts an array"));var f=Array.prototype.slice.call(a);if(0===f.length)return b([]);for(var g=f.length,h=0;h<f.length;h++)d(h,f[h])})}
|
|
33
|
+
function ta(a){return a&&"object"===typeof a&&a.constructor===R?a:new R(function(b){b(a)})}function ua(a){return new R(function(b,c){c(a)})}function va(a){return new R(function(b,c){if(!a||"undefined"===typeof a.length)return c(new TypeError("Promise.race accepts an array"));for(var d=0,f=a.length;d<f;d++)ta(a[d]).then(b,c)})}var S="function"===typeof setImmediate&&function(a){setImmediate(a)}||function(a){ma(a,0)};/*
|
|
34
|
+
|
|
35
|
+
Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
|
|
36
|
+
This code may only be used under the BSD style license found at
|
|
37
|
+
http://polymer.github.io/LICENSE.txt The complete set of authors may be found at
|
|
38
|
+
http://polymer.github.io/AUTHORS.txt The complete set of contributors may be
|
|
39
|
+
found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as
|
|
40
|
+
part of the polymer project is also subject to an additional IP rights grant
|
|
41
|
+
found at http://polymer.github.io/PATENTS.txt
|
|
42
|
+
*/
|
|
43
|
+
if(!window.Promise){window.Promise=R;R.prototype.then=R.prototype.then;R.all=sa;R.race=va;R.resolve=ta;R.reject=ua;var Y=document.createTextNode(""),Z=[];(new MutationObserver(function(){for(var a=Z.length,b=0;b<a;b++)Z[b]();Z.splice(0,a)})).observe(Y,{characterData:!0});S=function(a){Z.push(a);Y.textContent=0<Y.textContent.length?"":"a"}};/*
|
|
44
|
+
Copyright (C) 2015 by WebReflection
|
|
45
|
+
|
|
46
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
47
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
48
|
+
in the Software without restriction, including without limitation the rights
|
|
49
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
50
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
51
|
+
furnished to do so, subject to the following conditions:
|
|
52
|
+
|
|
53
|
+
The above copyright notice and this permission notice shall be included in
|
|
54
|
+
all copies or substantial portions of the Software.
|
|
55
|
+
|
|
56
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
57
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
58
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
59
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
60
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
61
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
62
|
+
THE SOFTWARE.
|
|
63
|
+
|
|
64
|
+
*/
|
|
65
|
+
(function(a,b){if(!(b in a)){var c=typeof global===typeof c?window:global,d=0,f=String(Math.random()),g="__\u0001symbol@@"+f,h=a.getOwnPropertyNames,r=a.getOwnPropertyDescriptor,q=a.create,v=a.keys,x=a.freeze||a,p=a.defineProperty,wa=a.defineProperties,l=r(a,"getOwnPropertyNames"),u=a.prototype,B=u.hasOwnProperty,xa=u.propertyIsEnumerable,ya=u.toString,da=function(m,e,k){B.call(m,g)||p(m,g,{enumerable:!1,configurable:!1,writable:!1,value:{}});m[g]["@@"+e]=k},za=function(m,e){var k=q(m);h(e).forEach(function(n){F.call(e,
|
|
66
|
+
n)&&U(k,n,e[n])});return k},Aa=function(){},ea=function(m){return m!=g&&!B.call(y,m)},C=function(m){return m!=g&&B.call(y,m)},F=function(m){var e=String(m);return C(e)?B.call(this,e)&&!!this[g]&&this[g]["@@"+e]:xa.call(this,m)},fa=function(m){p(u,m,{enumerable:!1,configurable:!0,get:Aa,set:function(e){V(this,m,{enumerable:!1,configurable:!0,writable:!0,value:e});da(this,m,!0)}});y[m]=p(a(m),"constructor",Ba);return x(y[m])},G=function k(e){if(this instanceof k)throw new TypeError("Symbol is not a constructor");
|
|
67
|
+
return fa("__\u0001symbol:".concat(e||"",f,++d))},y=q(null),Ba={value:G},Ca=function(e){return y[e]},U=function(e,k,n){var w=String(k);if(C(w)){k=V;if(n.enumerable){var D=q(n);D.enumerable=!1}else D=n;k(e,w,D);da(e,w,!!n.enumerable)}else p(e,k,n);return e},ha=function(e){return h(e).filter(C).map(Ca)};l.value=U;p(a,"defineProperty",l);l.value=ha;p(a,b,l);l.value=function(e){return h(e).filter(ea)};p(a,"getOwnPropertyNames",l);l.value=function(e,k){var n=ha(k);n.length?v(k).concat(n).forEach(function(w){F.call(k,
|
|
68
|
+
w)&&U(e,w,k[w])}):wa(e,k);return e};p(a,"defineProperties",l);l.value=F;p(u,"propertyIsEnumerable",l);l.value=G;p(c,"Symbol",l);l.value=function(e){e="__\u0001symbol:".concat("__\u0001symbol:",e,f);return e in u?y[e]:fa(e)};p(G,"for",l);l.value=function(e){if(ea(e))throw new TypeError(e+" is not a symbol");if(B.call(y,e)&&(e=e.slice(10),"__\u0001symbol:"===e.slice(0,10)&&(e=e.slice(10),e!==f)))return e=e.slice(0,e.length-f.length),0<e.length?e:void 0};p(G,"keyFor",l);l.value=function(e,k){var n=r(e,
|
|
69
|
+
k);n&&C(k)&&(n.enumerable=F.call(e,k));return n};p(a,"getOwnPropertyDescriptor",l);l.value=function(e,k){return 1===arguments.length||"undefined"===typeof k?q(e):za(e,k)};p(a,"create",l);l.value=function(){var e=ya.call(this);return"[object String]"===e&&C(this)?"[object Symbol]":e};p(u,"toString",l);try{if(!0===q(p({},"__\u0001symbol:",{get:function(){return p(this,"__\u0001symbol:",{value:!0})["__\u0001symbol:"]}}))["__\u0001symbol:"])var V=p;else throw"IE11";}catch(e){V=function(k,n,w){var D=r(u,
|
|
70
|
+
n);delete u[n];p(k,n,w);p(u,n,D)}}}})(Object,"getOwnPropertySymbols");
|
|
71
|
+
(function(a,b){var c=a.defineProperty,d=a.prototype,f=d.toString,g;"iterator match replace search split hasInstance isConcatSpreadable unscopables species toPrimitive toStringTag".split(" ").forEach(function(h){h in b||(c(b,h,{value:b(h)}),"toStringTag"===h&&(g=a.getOwnPropertyDescriptor(d,"toString"),g.value=function(){var r=f.call(this),q=null==this?this:this[b.toStringTag];return null==q?r:"[object "+q+"]"},c(d,"toString",g)))})})(Object,Symbol);
|
|
72
|
+
(function(a,b,c){function d(){return this}b[a]||(b[a]=function(){var f=0,g=this,h={next:function(){var r=g.length<=f;return r?{done:r}:{done:r,value:g[f++]}}};h[a]=d;return h});c[a]||(c[a]=function(){var f=String.fromCodePoint,g=this,h=0,r=g.length,q={next:function(){var v=r<=h,x=v?"":f(g.codePointAt(h));h+=x.length;return v?{done:v}:{done:v,value:x}}};q[a]=d;return q})})(Symbol.iterator,Array.prototype,String.prototype);/*
|
|
73
|
+
|
|
74
|
+
Copyright (c) 2018 The Polymer Project Authors. All rights reserved.
|
|
75
|
+
This code may only be used under the BSD style license found at
|
|
76
|
+
http://polymer.github.io/LICENSE.txt The complete set of authors may be found at
|
|
77
|
+
http://polymer.github.io/AUTHORS.txt The complete set of contributors may be
|
|
78
|
+
found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as
|
|
79
|
+
part of the polymer project is also subject to an additional IP rights grant
|
|
80
|
+
found at http://polymer.github.io/PATENTS.txt
|
|
81
|
+
*/
|
|
82
|
+
var Da=Object.prototype.toString;Object.prototype.toString=function(){return void 0===this?"[object Undefined]":null===this?"[object Null]":Da.call(this)};Object.keys=function(a){return Object.getOwnPropertyNames(a).filter(function(b){return(b=Object.getOwnPropertyDescriptor(a,b))&&b.enumerable})};
|
|
83
|
+
String.prototype[Symbol.iterator]&&String.prototype.codePointAt||(String.prototype[Symbol.iterator]=function Ea(){var b,c=this;return Q(Ea,function(d){1==d.g&&(b=0);if(3!=d.g)return b<c.length?d=N(d,c[b]):(d.g=0,d=void 0),d;b++;d.g=2})});Set.prototype[Symbol.iterator]||(Set.prototype[Symbol.iterator]=function Fa(){var b,c=this,d;return Q(Fa,function(f){1==f.g&&(b=[],c.forEach(function(g){b.push(g)}),d=0);if(3!=f.g)return d<b.length?f=N(f,b[d]):(f.g=0,f=void 0),f;d++;f.g=2})});
|
|
84
|
+
Map.prototype[Symbol.iterator]||(Map.prototype[Symbol.iterator]=function Ga(){var b,c=this,d;return Q(Ga,function(f){1==f.g&&(b=[],c.forEach(function(g,h){b.push([h,g])}),d=0);if(3!=f.g)return d<b.length?f=N(f,b[d]):(f.g=0,f=void 0),f;d++;f.g=2})});/*
|
|
85
|
+
|
|
86
|
+
Copyright (c) 2020 The Polymer Project Authors. All rights reserved.
|
|
87
|
+
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
|
88
|
+
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
|
89
|
+
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
90
|
+
Code distributed by Google as part of the polymer project is also
|
|
91
|
+
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
92
|
+
*/
|
|
93
|
+
}).call(this);
|
|
94
|
+
|
|
95
|
+
//# sourceMappingURL=webcomponents-pf_js.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[" [synthetic:es6/util/arrayiterator] "," [synthetic:util/defineproperty] "," [synthetic:util/global] "," [synthetic:util/polyfill] "," [synthetic:es6/symbol] "," [synthetic:es6/util/setprototypeof] "," [synthetic:es6/generator_engine] ","ts_src/platform/symbol.ts","ts_src/platform/es6-misc.ts","../../../promise-polyfill/src/index.js","../../../promise-polyfill/src/finally.js","ts_src/platform/promise.ts","../../../get-own-property-symbols/build/get-own-property-symbols.max.js"],"names":["$jscomp.defineProperty","$jscomp.global","$jscomp.getGlobal","$jscomp.polyfill","$jscomp.iteratorPrototype","$jscomp.arrayIteratorImpl","$jscomp.setPrototypeOf","$jscomp.generator.Context","$jscomp.generator.Generator_","$jscomp.generator.Engine_","Array","from","Array.from","object","slice","call","Object","assign","Object.assign","target","args","arguments","i","s","length","n$","keys","source","p","setTimeoutFunc","setTimeout","noop","bind","fn","thisArg","apply","Promise","TypeError","_state","_handled","_value","undefined","_deferreds","doResolve","handle","self","deferred","push","Promise$$module$node_modules$promise_polyfill$src$index._immediateFn","cb","onFulfilled","onRejected","resolve","reject","promise","ret","e","newValue","then","finale","console","warn","len","Handler","done","value","reason","ex","prototype","Promise.prototype.then","prom","constructor","finallyConstructor","callback","Promise.all","arr","res","val","remaining","Promise.resolve","Promise.reject","Promise.race","Promise$$module$node_modules$promise_polyfill$src$index.resolve","setImmediate","window","Promise$$module$node_modules$promise_polyfill$src$index.all","Promise$$module$node_modules$promise_polyfill$src$index.race","Promise$$module$node_modules$promise_polyfill$src$index.reject","node","document","createTextNode","callbacks","MutationObserver","splice","observe","characterData","PromisePolyfill._immediateFn","textContent","GOPS","G","global","id","random","String","Math","internalSymbol","gOPN","GOPN","gOPD","GOPD","create","freeze","defineProperty","DP","$defineProperties","DPies","descriptor","ObjectProto","hOP","hasOwnProperty","pIE","PIE","toString","addInternalIfNeeded","o","uid","enumerable","configurable","writable","createWithSymbols","proto","descriptors","forEach","key","propertyIsEnumerable","$defineProperty","get","onlyNonSymbols","name","onlySymbols","setAndGetSymbol","set","setDescriptor","sourceConstructor","Symbol","description","prefix","concat","sourceMap","newDescriptor","$getOwnPropertySymbols","filter","map","descriptor.value","symbols","symbol","label","str","o_O","protoDescriptor","O","dP","toStringTag","getOwnPropertyDescriptor","tst","Si","AP","SP","returnThis","iterator","next","fromCodePoint","c","codePointAt","Object.prototype.toString","Object.keys","obj","getOwnPropertyNames","prop","$jscomp.generator.createGenerator","Set","temp","Map","entries"],"mappings":"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","file":"webcomponents-pf_js.js","sourcesContent":[null,null,null,null,null,null,null,"/**\n@license\nCopyright (c) 2018 The Polymer Project Authors. All rights reserved.\nThis code may only be used under the BSD style license found at\nhttp://polymer.github.io/LICENSE.txt The complete set of authors may be found at\nhttp://polymer.github.io/AUTHORS.txt The complete set of contributors may be\nfound at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as\npart of the polymer project is also subject to an additional IP rights grant\nfound at http://polymer.github.io/PATENTS.txt\n*/\n\n// import polyfill for Symbol and Object.getOwnPropertySymbols\nimport 'get-own-property-symbols/build/get-own-property-symbols.max';\n\n// Fix issue in toString patch when compiled into strict mode via closure\n// https://github.com/es-shims/get-own-property-symbols/issues/16\nconst toString = Object.prototype.toString;\nObject.prototype.toString = function () {\n if (this === undefined) {\n return '[object Undefined]';\n } else if (this === null) {\n return '[object Null]';\n } else {\n return toString.call(this);\n }\n};\n\n// overwrite Object.keys to filter out symbols\nObject.keys = function (obj: object) {\n return Object.getOwnPropertyNames(obj).filter((name) => {\n const prop = Object.getOwnPropertyDescriptor(obj, name);\n return prop && prop.enumerable;\n });\n};\n\n// implement iterators for IE 11\nif (!String.prototype[Symbol.iterator] || !String.prototype.codePointAt) {\n String.prototype[Symbol.iterator] = function* (this: string) {\n for (let i = 0; i < this.length; i++) {\n yield this[i];\n }\n };\n}\n\nif (!Set.prototype[Symbol.iterator]) {\n Set.prototype[Symbol.iterator] = function* <T>(this: Set<T>) {\n const temp: T[] = [];\n this.forEach((value) => {\n temp.push(value);\n });\n for (let i = 0; i < temp.length; i++) {\n yield temp[i];\n }\n };\n}\n\nif (!Map.prototype[Symbol.iterator]) {\n Map.prototype[Symbol.iterator] = function* <K, V>(this: Map<K, V>) {\n const entries: Array<[K, V]> = [];\n this.forEach((value, key) => {\n entries.push([key, value]);\n });\n for (let i = 0; i < entries.length; i++) {\n yield entries[i];\n }\n };\n}\n","/**\n * @license\n * Copyright (c) 2016 The Polymer Project Authors. All rights reserved.\n * This code may only be used under the BSD style license found at\n * http://polymer.github.io/LICENSE.txt The complete set of authors may be found\n * at http://polymer.github.io/AUTHORS.txt The complete set of contributors may\n * be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by\n * Google as part of the polymer project is also subject to an additional IP\n * rights grant found at http://polymer.github.io/PATENTS.txt\n */\n\nexport {};\n\nif (!Array.from) {\n Array.from = <T extends unknown>(object: ArrayLike<T>): Array<T> => {\n return [].slice.call(object);\n };\n}\n\nif (!Object.assign) {\n const assign = (target: object, source: object) => {\n const n$ = Object.keys(source);\n for (let i = 0; i < n$.length; i++) {\n const p = n$[i];\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n (target as any)[p] = (source as any)[p];\n }\n };\n\n Object.assign = function (target: object) {\n // eslint-disable-next-line prefer-rest-params\n const args: object[] = [].slice.call(arguments, 1);\n for (let i = 0, s; i < args.length; i++) {\n s = args[i];\n if (s) {\n assign(target, s);\n }\n }\n return target;\n };\n}\n","import promiseFinally from './finally';\nimport allSettled from './allSettled';\n\n// Store setTimeout reference so promise-polyfill will be unaffected by\n// other code modifying setTimeout (like sinon.useFakeTimers())\nvar setTimeoutFunc = setTimeout;\n\nfunction isArray(x) {\n return Boolean(x && typeof x.length !== 'undefined');\n}\n\nfunction noop() {}\n\n// Polyfill for Function.prototype.bind\nfunction bind(fn, thisArg) {\n return function() {\n fn.apply(thisArg, arguments);\n };\n}\n\n/**\n * @constructor\n * @param {Function} fn\n */\nfunction Promise(fn) {\n if (!(this instanceof Promise))\n throw new TypeError('Promises must be constructed via new');\n if (typeof fn !== 'function') throw new TypeError('not a function');\n /** @type {!number} */\n this._state = 0;\n /** @type {!boolean} */\n this._handled = false;\n /** @type {Promise|undefined} */\n this._value = undefined;\n /** @type {!Array<!Function>} */\n this._deferreds = [];\n\n doResolve(fn, this);\n}\n\nfunction handle(self, deferred) {\n while (self._state === 3) {\n self = self._value;\n }\n if (self._state === 0) {\n self._deferreds.push(deferred);\n return;\n }\n self._handled = true;\n Promise._immediateFn(function() {\n var cb = self._state === 1 ? deferred.onFulfilled : deferred.onRejected;\n if (cb === null) {\n (self._state === 1 ? resolve : reject)(deferred.promise, self._value);\n return;\n }\n var ret;\n try {\n ret = cb(self._value);\n } catch (e) {\n reject(deferred.promise, e);\n return;\n }\n resolve(deferred.promise, ret);\n });\n}\n\nfunction resolve(self, newValue) {\n try {\n // Promise Resolution Procedure: https://github.com/promises-aplus/promises-spec#the-promise-resolution-procedure\n if (newValue === self)\n throw new TypeError('A promise cannot be resolved with itself.');\n if (\n newValue &&\n (typeof newValue === 'object' || typeof newValue === 'function')\n ) {\n var then = newValue.then;\n if (newValue instanceof Promise) {\n self._state = 3;\n self._value = newValue;\n finale(self);\n return;\n } else if (typeof then === 'function') {\n doResolve(bind(then, newValue), self);\n return;\n }\n }\n self._state = 1;\n self._value = newValue;\n finale(self);\n } catch (e) {\n reject(self, e);\n }\n}\n\nfunction reject(self, newValue) {\n self._state = 2;\n self._value = newValue;\n finale(self);\n}\n\nfunction finale(self) {\n if (self._state === 2 && self._deferreds.length === 0) {\n Promise._immediateFn(function() {\n if (!self._handled) {\n Promise._unhandledRejectionFn(self._value);\n }\n });\n }\n\n for (var i = 0, len = self._deferreds.length; i < len; i++) {\n handle(self, self._deferreds[i]);\n }\n self._deferreds = null;\n}\n\n/**\n * @constructor\n */\nfunction Handler(onFulfilled, onRejected, promise) {\n this.onFulfilled = typeof onFulfilled === 'function' ? onFulfilled : null;\n this.onRejected = typeof onRejected === 'function' ? onRejected : null;\n this.promise = promise;\n}\n\n/**\n * Take a potentially misbehaving resolver function and make sure\n * onFulfilled and onRejected are only called once.\n *\n * Makes no guarantees about asynchrony.\n */\nfunction doResolve(fn, self) {\n var done = false;\n try {\n fn(\n function(value) {\n if (done) return;\n done = true;\n resolve(self, value);\n },\n function(reason) {\n if (done) return;\n done = true;\n reject(self, reason);\n }\n );\n } catch (ex) {\n if (done) return;\n done = true;\n reject(self, ex);\n }\n}\n\nPromise.prototype['catch'] = function(onRejected) {\n return this.then(null, onRejected);\n};\n\nPromise.prototype.then = function(onFulfilled, onRejected) {\n // @ts-ignore\n var prom = new this.constructor(noop);\n\n handle(this, new Handler(onFulfilled, onRejected, prom));\n return prom;\n};\n\nPromise.prototype['finally'] = promiseFinally;\n\nPromise.all = function(arr) {\n return new Promise(function(resolve, reject) {\n if (!isArray(arr)) {\n return reject(new TypeError('Promise.all accepts an array'));\n }\n\n var args = Array.prototype.slice.call(arr);\n if (args.length === 0) return resolve([]);\n var remaining = args.length;\n\n function res(i, val) {\n try {\n if (val && (typeof val === 'object' || typeof val === 'function')) {\n var then = val.then;\n if (typeof then === 'function') {\n then.call(\n val,\n function(val) {\n res(i, val);\n },\n reject\n );\n return;\n }\n }\n args[i] = val;\n if (--remaining === 0) {\n resolve(args);\n }\n } catch (ex) {\n reject(ex);\n }\n }\n\n for (var i = 0; i < args.length; i++) {\n res(i, args[i]);\n }\n });\n};\n\nPromise.allSettled = allSettled;\n\nPromise.resolve = function(value) {\n if (value && typeof value === 'object' && value.constructor === Promise) {\n return value;\n }\n\n return new Promise(function(resolve) {\n resolve(value);\n });\n};\n\nPromise.reject = function(value) {\n return new Promise(function(resolve, reject) {\n reject(value);\n });\n};\n\nPromise.race = function(arr) {\n return new Promise(function(resolve, reject) {\n if (!isArray(arr)) {\n return reject(new TypeError('Promise.race accepts an array'));\n }\n\n for (var i = 0, len = arr.length; i < len; i++) {\n Promise.resolve(arr[i]).then(resolve, reject);\n }\n });\n};\n\n// Use polyfill for setImmediate for performance gains\nPromise._immediateFn =\n // @ts-ignore\n (typeof setImmediate === 'function' &&\n function(fn) {\n // @ts-ignore\n setImmediate(fn);\n }) ||\n function(fn) {\n setTimeoutFunc(fn, 0);\n };\n\nPromise._unhandledRejectionFn = function _unhandledRejectionFn(err) {\n if (typeof console !== 'undefined' && console) {\n console.warn('Possible Unhandled Promise Rejection:', err); // eslint-disable-line no-console\n }\n};\n\nexport default Promise;\n","/**\n * @this {Promise}\n */\nfunction finallyConstructor(callback) {\n var constructor = this.constructor;\n return this.then(\n function(value) {\n // @ts-ignore\n return constructor.resolve(callback()).then(function() {\n return value;\n });\n },\n function(reason) {\n // @ts-ignore\n return constructor.resolve(callback()).then(function() {\n // @ts-ignore\n return constructor.reject(reason);\n });\n }\n );\n}\n\nexport default finallyConstructor;\n","/**\n@license\nCopyright (c) 2017 The Polymer Project Authors. All rights reserved.\nThis code may only be used under the BSD style license found at\nhttp://polymer.github.io/LICENSE.txt The complete set of authors may be found at\nhttp://polymer.github.io/AUTHORS.txt The complete set of contributors may be\nfound at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as\npart of the polymer project is also subject to an additional IP rights grant\nfound at http://polymer.github.io/PATENTS.txt\n*/\n\nimport PromisePolyfill from 'promise-polyfill/src/index.js';\n\n/*\nAssign the ES6 promise polyfill to window ourselves instead of using the \"auto\"\npolyfill to work around\nhttps://github.com/webcomponents/webcomponentsjs/issues/837\n*/\nif (!window.Promise) {\n window.Promise = PromisePolyfill;\n // save Promise API\n /* eslint-disable no-self-assign */\n // PromisePolyfill.prototype['catch'] = PromisePolyfill.prototype.catch;\n PromisePolyfill.prototype['then'] = PromisePolyfill.prototype.then;\n // PromisePolyfill.prototype['finally'] = PromisePolyfill.prototype.finally;\n PromisePolyfill['all'] = PromisePolyfill.all;\n PromisePolyfill['race'] = PromisePolyfill.race;\n PromisePolyfill['resolve'] = PromisePolyfill.resolve;\n PromisePolyfill['reject'] = PromisePolyfill.reject;\n /* eslint-enable */\n\n // approach copied from\n // https://github.com/Polymer/polymer/blob/v3.0.2/lib/utils/async.js\n const node = document.createTextNode('');\n const twiddleNode = function twiddleNode() {\n node.textContent = node.textContent!.length > 0 ? '' : 'a';\n };\n /** @type {!Array<function():void>} */\n const callbacks: Array<() => void> = [];\n new MutationObserver(() => {\n const len = callbacks.length;\n for (let i = 0; i < len; i++) {\n callbacks[i]();\n }\n callbacks.splice(0, len);\n }).observe(node, {characterData: true});\n\n // set _immediateFn to a MutationObserver for close-to-native timing\n PromisePolyfill._immediateFn = (fn: () => void) => {\n callbacks.push(fn);\n twiddleNode();\n };\n}\n","/*!\nCopyright (C) 2015 by WebReflection\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n*/\n(function (Object, GOPS) {\n 'use strict';\n\n // (C) Andrea Giammarchi - Mit Style\n\n if (GOPS in Object) { return; }\n\n var\n setDescriptor,\n G = typeof global === typeof G ? window : global,\n id = 0,\n random = String(Math.random()),\n prefix = '__\\x01symbol:',\n prefixLength = prefix.length,\n internalSymbol = '__\\x01symbol@@' + random,\n DP = 'defineProperty',\n DPies = 'defineProperties',\n GOPN = 'getOwnPropertyNames',\n GOPD = 'getOwnPropertyDescriptor',\n PIE = 'propertyIsEnumerable',\n gOPN = Object[GOPN],\n gOPD = Object[GOPD],\n create = Object.create,\n keys = Object.keys,\n freeze = Object.freeze || Object,\n defineProperty = Object[DP],\n $defineProperties = Object[DPies],\n descriptor = gOPD(Object, GOPN),\n ObjectProto = Object.prototype,\n hOP = ObjectProto.hasOwnProperty,\n pIE = ObjectProto[PIE],\n toString = ObjectProto.toString,\n addInternalIfNeeded = function (o, uid, enumerable) {\n if (!hOP.call(o, internalSymbol)) {\n defineProperty(o, internalSymbol, {\n enumerable: false,\n configurable: false,\n writable: false,\n value: {}\n });\n }\n o[internalSymbol]['@@' + uid] = enumerable; // eslint-disable-line no-param-reassign\n },\n createWithSymbols = function (proto, descriptors) {\n var self = create(proto);\n gOPN(descriptors).forEach(function (key) {\n if (propertyIsEnumerable.call(descriptors, key)) {\n $defineProperty(self, key, descriptors[key]);\n }\n });\n return self;\n },\n copyAsNonEnumerable = function (descriptor) {\n var newDescriptor = create(descriptor);\n newDescriptor.enumerable = false;\n return newDescriptor;\n },\n get = function get() {},\n onlyNonSymbols = function (name) {\n // eslint-disable-next-line eqeqeq\n return name != internalSymbol && !hOP.call(source, name);\n },\n onlySymbols = function (name) {\n // eslint-disable-next-line eqeqeq\n return name != internalSymbol && hOP.call(source, name);\n },\n propertyIsEnumerable = function propertyIsEnumerable(key) {\n var uid = String(key);\n return onlySymbols(uid) ? hOP.call(this, uid) && !!this[internalSymbol] && this[internalSymbol]['@@' + uid] : pIE.call(this, key);\n },\n setAndGetSymbol = function (uid) {\n var descriptor = {\n enumerable: false,\n configurable: true,\n get: get,\n set: function (value) {\n setDescriptor(this, uid, {\n enumerable: false,\n configurable: true,\n writable: true,\n value: value\n });\n addInternalIfNeeded(this, uid, true);\n }\n };\n defineProperty(ObjectProto, uid, descriptor);\n source[uid] = defineProperty(\n Object(uid),\n 'constructor',\n sourceConstructor\n );\n return freeze(source[uid]);\n },\n Symbol = function Symbol(description) {\n if (this instanceof Symbol) {\n throw new TypeError('Symbol is not a constructor');\n }\n return setAndGetSymbol(prefix.concat(description || '', random, ++id));\n },\n source = create(null),\n sourceConstructor = { value: Symbol },\n sourceMap = function (uid) {\n return source[uid];\n },\n $defineProperty = function defineProp(o, key, descriptor) {\n var uid = String(key);\n if (onlySymbols(uid)) {\n setDescriptor(o, uid, descriptor.enumerable ? copyAsNonEnumerable(descriptor) : descriptor);\n addInternalIfNeeded(o, uid, !!descriptor.enumerable);\n } else {\n defineProperty(o, key, descriptor);\n }\n return o;\n },\n $getOwnPropertySymbols = function getOwnPropertySymbols(o) {\n return gOPN(o).filter(onlySymbols).map(sourceMap);\n };\n descriptor.value = $defineProperty;\n defineProperty(Object, DP, descriptor);\n\n descriptor.value = $getOwnPropertySymbols;\n defineProperty(Object, GOPS, descriptor);\n\n descriptor.value = function getOwnPropertyNames(o) {\n return gOPN(o).filter(onlyNonSymbols);\n };\n defineProperty(Object, GOPN, descriptor);\n\n descriptor.value = function defineProperties(o, descriptors) {\n var symbols = $getOwnPropertySymbols(descriptors);\n if (symbols.length) {\n keys(descriptors).concat(symbols).forEach(function (uid) {\n if (propertyIsEnumerable.call(descriptors, uid)) {\n $defineProperty(o, uid, descriptors[uid]);\n }\n });\n } else {\n $defineProperties(o, descriptors);\n }\n return o;\n };\n defineProperty(Object, DPies, descriptor);\n\n descriptor.value = propertyIsEnumerable;\n defineProperty(ObjectProto, PIE, descriptor);\n\n descriptor.value = Symbol;\n defineProperty(G, 'Symbol', descriptor);\n\n // defining `Symbol.for(key)`\n descriptor.value = function (key) {\n var uid = prefix.concat(prefix, key, random);\n return uid in ObjectProto ? source[uid] : setAndGetSymbol(uid);\n };\n defineProperty(Symbol, 'for', descriptor);\n\n // defining `Symbol.keyFor(symbol)`\n descriptor.value = function (symbol) {\n if (onlyNonSymbols(symbol)) { throw new TypeError(symbol + ' is not a symbol'); }\n if (!hOP.call(source, symbol)) {\n return void 0;\n }\n var label = symbol.slice(prefixLength);\n if (label.slice(0, prefixLength) !== prefix) {\n return void 0;\n }\n label = label.slice(prefixLength);\n if (label === random) {\n return void 0;\n }\n label = label.slice(0, label.length - random.length);\n return label.length > 0 ? label : void 0;\n };\n defineProperty(Symbol, 'keyFor', descriptor);\n\n descriptor.value = function getOwnPropertyDescriptor(o, key) {\n var descriptor = gOPD(o, key);\n if (descriptor && onlySymbols(key)) {\n descriptor.enumerable = propertyIsEnumerable.call(o, key);\n }\n return descriptor;\n };\n defineProperty(Object, GOPD, descriptor);\n\n descriptor.value = function (proto, descriptors) {\n return arguments.length === 1 || typeof descriptors === 'undefined' ? create(proto) : createWithSymbols(proto, descriptors);\n };\n defineProperty(Object, 'create', descriptor);\n\n descriptor.value = function () {\n var str = toString.call(this);\n return str === '[object String]' && onlySymbols(this) ? '[object Symbol]' : str;\n };\n defineProperty(ObjectProto, 'toString', descriptor);\n\n try { // fails in few pre ES 5.1 engines\n if (\n create(defineProperty({}, prefix, {\n get: function () {\n return defineProperty(this, prefix, { value: true })[prefix];\n }\n }))[prefix] === true\n ) {\n setDescriptor = defineProperty;\n } else {\n throw 'IE11'; // eslint-disable-line no-throw-literal\n }\n } catch (o_O) { // eslint-disable-line camelcase\n setDescriptor = function (o, key, descriptor) {\n var protoDescriptor = gOPD(ObjectProto, key);\n delete ObjectProto[key];\n defineProperty(o, key, descriptor);\n defineProperty(ObjectProto, key, protoDescriptor);\n };\n }\n\n}(Object, 'getOwnPropertySymbols'));\n\n(function (O, Symbol) {\n 'use strict';\n\n var\n dP = O.defineProperty,\n ObjectProto = O.prototype,\n toString = ObjectProto.toString,\n toStringTag = 'toStringTag',\n descriptor;\n [\n 'iterator', // A method returning the default iterator for an object. Used by for...of.\n 'match', // A method that matches against a string, also used to determine if an object may be used as a regular expression. Used by String.prototype.match().\n 'replace', // A method that replaces matched substrings of a string. Used by String.prototype.replace().\n 'search', // A method that returns the index within a string that matches the regular expression. Used by String.prototype.search().\n 'split', // A method that splits a string at the indices that match a regular expression. Used by String.prototype.split().\n 'hasInstance', // A method determining if a constructor object recognizes an object as its instance. Used by instanceof.\n 'isConcatSpreadable', // A Boolean value indicating if an object should be flattened to its array elements. Used by Array.prototype.concat().\n 'unscopables', // An Array of string values that are property values. These are excluded from the with environment bindings of the associated objects.\n 'species', // A constructor function that is used to create derived objects.\n 'toPrimitive', // A method converting an object to a primitive value.\n toStringTag // A string value used for the default description of an object. Used by Object.prototype.toString().\n ].forEach(function (name) {\n if (!(name in Symbol)) {\n dP(Symbol, name, { value: Symbol(name) });\n if (name === toStringTag) {\n descriptor = O.getOwnPropertyDescriptor(ObjectProto, 'toString');\n descriptor.value = function () {\n var str = toString.call(this);\n var tst = this == null ? this : this[Symbol.toStringTag];\n return tst == null ? str : '[object ' + tst + ']';\n };\n dP(ObjectProto, 'toString', descriptor);\n }\n }\n });\n}(Object, Symbol));\n\n(function (Si, AP, SP) {\n\n function returnThis() { return this; }\n\n /*\n * make Arrays usable as iterators\n * so that other iterables can copy same logic\n */\n if (!AP[Si]) {\n // eslint-disable-next-line no-param-reassign\n AP[Si] = function () {\n var\n i = 0,\n self = this,\n iterator = {\n next: function next() {\n var done = self.length <= i;\n return done ? { done: done } : { done: done, value: self[i++] };\n }\n };\n iterator[Si] = returnThis;\n return iterator;\n };\n }\n\n /*\n * make Strings usable as iterators\n * to simplify Array.from and for/of like loops\n */\n if (!SP[Si]) {\n // eslint-disable-next-line no-param-reassign\n SP[Si] = function () {\n var\n fromCodePoint = String.fromCodePoint,\n self = this,\n i = 0,\n length = self.length,\n iterator = {\n next: function next() {\n var\n done = length <= i,\n c = done ? '' : fromCodePoint(self.codePointAt(i));\n i += c.length;\n return done ? { done: done } : { done: done, value: c };\n }\n };\n iterator[Si] = returnThis;\n return iterator;\n };\n }\n\n}(Symbol.iterator, Array.prototype, String.prototype));\n"]}
|