|
1 |
| -/** |
2 |
| -@license |
3 |
| -Copyright (c) 2017 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 |
| - |
11 |
| -/* |
12 |
| - * Polyfills loaded: HTML Imports, Custom Elements, platform polyfills, template |
13 |
| - * Used in: IE 11 |
14 |
| - */ |
15 |
| - |
16 | 1 | import 'regenerator-runtime/runtime';
|
17 |
| -import '@webcomponents/template/template.js'; |
18 |
| -import 'core-js/modules/es.array.find'; |
| 2 | +import 'custom-event-polyfill'; |
| 3 | +import 'get-own-property-symbols'; |
| 4 | +import '@webcomponents/webcomponentsjs/webcomponents-bundle'; |
19 | 5 |
|
20 | 6 | import 'element-closest';
|
21 | 7 | import 'core-js/modules/es.string.includes';
|
| 8 | +import 'core-js/modules/es.string.trim-end'; |
| 9 | +import 'core-js/modules/es.string.trim-start'; |
| 10 | +import 'core-js/modules/es.string.code-point-at'; |
| 11 | +import 'core-js/modules/es.string.starts-with'; |
| 12 | +import 'core-js/modules/es.number.is-nan'; |
| 13 | +import 'core-js/modules/es.array.find'; |
22 | 14 | import 'core-js/modules/es.array.includes';
|
23 |
| -// import 'core-js/modules/es.array.from'; |
24 |
| -// import 'core-js/modules/es.object.assign'; |
25 |
| - |
26 |
| -import './platform/remove-polyfill.js'; |
27 |
| -import './platform/es6-misc'; |
28 |
| -import './platform/custom-event'; |
29 |
| -import './platform/promise'; |
30 |
| -import './platform/symbol'; |
31 |
| -import './platform/flag-parser'; |
32 |
| -// import '@webcomponents/custom-elements/src/custom-elements.js'; |
33 |
| - |
34 |
| -import '@webcomponents/custom-elements/src/custom-elements.js'; |
35 |
| - |
36 |
| -// import 'document-register-element'; |
37 |
| -// by default, the second argument is 'auto' |
38 |
| -// but it could be also 'force' |
39 |
| -// which ignores feature detection and force |
40 |
| -// the polyfill version of CustomElements |
41 |
| -// installCE(global, 'auto'); |
42 |
| - |
43 |
| -import '@webcomponents/url/url.js'; |
44 |
| -import './platform/baseuri'; |
45 |
| -import './platform/unresolved'; |
46 |
| - |
| 15 | +import 'core-js/modules/es.array.from'; |
47 | 16 | import 'core-js/modules/es.array.for-each';
|
48 |
| - |
49 |
| -if (window.NodeList && !NodeList.prototype.forEach) { |
50 |
| - NodeList.prototype.forEach = Array.prototype.forEach; |
51 |
| -} |
52 |
| - |
53 |
| -// import 'core-js/modules/es.string.trim-end'; |
54 |
| -// import 'core-js/modules/es.string.trim-start'; |
55 |
| -// import 'core-js/modules/es.string.code-point-at'; |
56 |
| -// import 'core-js/modules/es.number.is-nan'; |
| 17 | +import 'core-js/modules/es.object.assign'; |
| 18 | +import 'core-js/modules/es.promise'; |
| 19 | +import 'core-js/es6/symbol'; |
| 20 | +import 'core-js/web/dom-collections'; |
| 21 | +import 'core-js/web/url-search-params'; |
0 commit comments