@ui5/webcomponents-base 0.0.0-aeb93167c → 0.0.0-b6f02e4b3

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.
Files changed (340) hide show
  1. package/.eslintignore +3 -0
  2. package/CHANGELOG.md +283 -0
  3. package/README.md +26 -2
  4. package/bundle.esm.js +13 -11
  5. package/dist/AssetRegistry.js +8 -9
  6. package/dist/Boot.js +59 -0
  7. package/dist/CSP.js +59 -0
  8. package/dist/CustomElementsRegistry.js +60 -4
  9. package/dist/CustomElementsScope.js +20 -98
  10. package/dist/CustomElementsScopeUtils.js +108 -0
  11. package/dist/DOMObserver.js +65 -0
  12. package/dist/Device.js +71 -773
  13. package/dist/EventProvider.js +30 -26
  14. package/dist/FeaturesRegistry.js +4 -1
  15. package/dist/FontFace.js +7 -95
  16. package/dist/InitialConfiguration.js +37 -21
  17. package/dist/Keys.js +98 -0
  18. package/dist/ManagedStyles.js +83 -0
  19. package/dist/MediaRange.js +109 -0
  20. package/{src/util/parseProperties.js → dist/PropertiesFileFormat.js} +6 -0
  21. package/dist/Render.js +175 -0
  22. package/dist/RenderScheduler.js +16 -138
  23. package/dist/Runtimes.js +107 -0
  24. package/dist/StaticArea.js +1 -29
  25. package/dist/StaticAreaItem.js +58 -65
  26. package/dist/SystemCSSVars.js +4 -25
  27. package/dist/UI5Element.js +315 -382
  28. package/dist/UI5ElementMetadata.js +132 -17
  29. package/dist/asset-registries/Icons.js +117 -14
  30. package/dist/asset-registries/Illustrations.js +30 -0
  31. package/dist/asset-registries/LocaleData.js +97 -68
  32. package/dist/asset-registries/Themes.js +29 -35
  33. package/dist/asset-registries/i18n.js +61 -50
  34. package/dist/assets-meta/IconCollectionsAlias.js +18 -0
  35. package/dist/config/Icons.js +52 -0
  36. package/dist/config/Language.js +18 -20
  37. package/dist/config/Theme.js +25 -0
  38. package/dist/css/BusyIndicator.css +76 -0
  39. package/dist/css/FontFace.css +75 -0
  40. package/dist/css/OverrideFontFace.css +32 -0
  41. package/dist/css/SystemCSSVars.css +17 -0
  42. package/dist/delegate/ItemNavigation.js +233 -201
  43. package/dist/delegate/ResizeHandler.js +78 -37
  44. package/dist/delegate/ScrollEnablement.js +49 -20
  45. package/dist/features/F6Navigation.js +108 -0
  46. package/dist/features/OpenUI5Enablement.js +119 -0
  47. package/dist/features/OpenUI5Support.js +41 -6
  48. package/dist/generated/AssetParameters.js +1 -1
  49. package/dist/generated/VersionInfo.js +10 -0
  50. package/dist/generated/css/BusyIndicator.css.js +5 -0
  51. package/dist/generated/css/FontFace.css.js +5 -0
  52. package/dist/generated/css/OverrideFontFace.css.js +5 -0
  53. package/dist/generated/css/SystemCSSVars.css.js +5 -0
  54. package/dist/i18nBundle.js +38 -4
  55. package/dist/isLegacyBrowser.js +3 -0
  56. package/dist/locale/applyDirection.js +6 -4
  57. package/dist/locale/directionChange.js +32 -0
  58. package/dist/locale/getEffectiveDir.js +28 -0
  59. package/dist/locale/languageChange.js +1 -1
  60. package/dist/renderer/LitRenderer.js +39 -18
  61. package/dist/renderer/directives/style-map.js +72 -0
  62. package/dist/renderer/executeTemplate.js +19 -2
  63. package/dist/resources/bundle.esm.js +15 -112
  64. package/dist/resources/bundle.esm.js.map +1 -1
  65. package/dist/sap/base/Log.js +241 -0
  66. package/dist/sap/base/assert.js +8 -0
  67. package/dist/sap/base/security/URLListValidator.js +148 -0
  68. package/dist/sap/base/security/encodeCSS.js +14 -0
  69. package/dist/sap/base/security/encodeXML.js +23 -0
  70. package/dist/sap/base/security/sanitizeHTML.js +16 -0
  71. package/dist/sap/base/strings/toHex.js +8 -0
  72. package/dist/sap/base/util/now.js +7 -0
  73. package/dist/sap/ui/thirdparty/caja-html-sanitizer.js +3585 -0
  74. package/dist/test-resources/assets/Themes.js +8 -8
  75. package/dist/test-resources/elements/Parent.js +6 -2
  76. package/dist/test-resources/elements/WithStaticArea.js +2 -1
  77. package/dist/test-resources/pages/AllTestElements.html +3 -3
  78. package/dist/test-resources/pages/Configuration.html +0 -2
  79. package/dist/test-resources/pages/ConfigurationScript.html +0 -2
  80. package/dist/test-resources/pages/i18n.html +2 -9
  81. package/dist/test-resources/specs/ConfigurationChange.spec.js +10 -8
  82. package/dist/test-resources/specs/ConfigurationScript.spec.js +25 -23
  83. package/dist/test-resources/specs/ConfigurationURL.spec.js +65 -17
  84. package/dist/test-resources/specs/CustomTheme.spec.js +9 -7
  85. package/dist/test-resources/specs/EventProvider.spec.js +63 -0
  86. package/dist/test-resources/specs/StaticArea.spec.js +56 -12
  87. package/dist/test-resources/specs/Theming.spec.js +23 -10
  88. package/dist/test-resources/specs/UI5ElementInvalidation.js +54 -70
  89. package/dist/test-resources/specs/UI5ElementLifecycle.js +17 -15
  90. package/dist/test-resources/specs/UI5ElementListenForChildPropChanges.spec.js +25 -51
  91. package/dist/test-resources/specs/UI5ElementMetadataExt.js +9 -7
  92. package/dist/test-resources/specs/UI5ElementPropertyValidation.js +7 -5
  93. package/dist/test-resources/specs/UI5ElementPropsAndAttrs.spec.js +37 -35
  94. package/dist/test-resources/specs/UI5ElementShadowDOM.js +10 -8
  95. package/dist/test-resources/specs/UI5ElementSlots.js +10 -8
  96. package/dist/theming/CustomStyle.js +25 -5
  97. package/dist/theming/applyTheme.js +11 -16
  98. package/dist/theming/getConstructableStyle.js +7 -6
  99. package/dist/theming/getEffectiveLinksHrefs.js +27 -0
  100. package/dist/theming/getEffectiveStyle.js +24 -8
  101. package/dist/theming/getStylesString.js +4 -2
  102. package/dist/theming/getThemeDesignerTheme.js +25 -5
  103. package/dist/theming/preloadLinks.js +23 -0
  104. package/dist/types/CSSColor.js +9 -0
  105. package/dist/types/CalendarType.js +1 -1
  106. package/dist/types/DataType.js +13 -1
  107. package/dist/types/Float.js +4 -0
  108. package/dist/types/Integer.js +4 -0
  109. package/dist/types/InvisibleMessageMode.js +30 -0
  110. package/dist/types/ItemNavigationBehavior.js +2 -7
  111. package/dist/types/PopupState.js +1 -1
  112. package/dist/types/ValueState.js +1 -1
  113. package/dist/updateShadowRoot.js +30 -0
  114. package/dist/util/AriaLabelHelper.js +4 -4
  115. package/dist/util/Caret.js +45 -0
  116. package/dist/util/ColorConversion.js +370 -0
  117. package/dist/util/FocusableElements.js +22 -9
  118. package/dist/util/HTMLSanitizer.js +7 -0
  119. package/dist/util/InvisibleMessage.js +60 -0
  120. package/dist/util/PopupUtils.js +93 -0
  121. package/dist/util/SlotsHelper.js +43 -0
  122. package/dist/util/TabbableElements.js +5 -1
  123. package/dist/util/arraysAreEqual.js +15 -0
  124. package/dist/util/clamp.js +12 -0
  125. package/dist/util/createLinkInHead.js +19 -0
  126. package/dist/util/debounce.js +17 -0
  127. package/dist/util/escapeRegex.js +10 -0
  128. package/dist/util/generateHighlightedMarkup.js +42 -0
  129. package/dist/util/getActiveElement.js +11 -0
  130. package/dist/util/getClassCopy.js +10 -0
  131. package/dist/util/getEffectiveContentDensity.js +5 -0
  132. package/dist/util/getNormalizedTarget.js +16 -0
  133. package/dist/util/isElementInView.js +15 -0
  134. package/dist/util/isNodeHidden.js +1 -1
  135. package/dist/util/isNodeTabbable.js +4 -4
  136. package/index.js +1 -1
  137. package/lib/generate-asset-parameters/index.js +8 -5
  138. package/lib/generate-styles/index.js +26 -0
  139. package/lib/generate-version-info/index.js +32 -0
  140. package/package-scripts.js +30 -19
  141. package/package.json +19 -13
  142. package/src/AssetRegistry.js +8 -9
  143. package/src/Boot.js +59 -0
  144. package/src/CSP.js +59 -0
  145. package/src/CustomElementsRegistry.js +60 -4
  146. package/src/CustomElementsScope.js +20 -98
  147. package/src/CustomElementsScopeUtils.js +108 -0
  148. package/src/DOMObserver.js +65 -0
  149. package/src/Device.js +71 -773
  150. package/src/EventProvider.js +30 -26
  151. package/src/FeaturesRegistry.js +4 -1
  152. package/src/FontFace.js +7 -95
  153. package/src/InitialConfiguration.js +37 -21
  154. package/src/Keys.js +98 -0
  155. package/src/ManagedStyles.js +83 -0
  156. package/src/MediaRange.js +109 -0
  157. package/{dist/util/parseProperties.js → src/PropertiesFileFormat.js} +6 -0
  158. package/src/Render.js +175 -0
  159. package/src/RenderScheduler.js +16 -138
  160. package/src/Runtimes.js +107 -0
  161. package/src/StaticArea.js +1 -29
  162. package/src/StaticAreaItem.js +58 -65
  163. package/src/SystemCSSVars.js +4 -25
  164. package/src/UI5Element.js +315 -382
  165. package/src/UI5ElementMetadata.js +132 -17
  166. package/src/asset-registries/Icons.js +117 -14
  167. package/src/asset-registries/Illustrations.js +30 -0
  168. package/src/asset-registries/LocaleData.js +97 -68
  169. package/src/asset-registries/Themes.js +29 -35
  170. package/src/asset-registries/i18n.js +61 -50
  171. package/src/assets-meta/IconCollectionsAlias.js +18 -0
  172. package/src/config/Icons.js +52 -0
  173. package/src/config/Language.js +18 -20
  174. package/src/config/Theme.js +25 -0
  175. package/src/css/BusyIndicator.css +76 -0
  176. package/src/css/FontFace.css +75 -0
  177. package/src/css/OverrideFontFace.css +32 -0
  178. package/src/css/SystemCSSVars.css +17 -0
  179. package/src/delegate/ItemNavigation.js +233 -201
  180. package/src/delegate/ResizeHandler.js +78 -37
  181. package/src/delegate/ScrollEnablement.js +49 -20
  182. package/src/features/F6Navigation.js +108 -0
  183. package/src/features/OpenUI5Enablement.js +119 -0
  184. package/src/features/OpenUI5Support.js +41 -6
  185. package/src/i18nBundle.js +38 -4
  186. package/src/isLegacyBrowser.js +3 -0
  187. package/src/locale/applyDirection.js +6 -4
  188. package/src/locale/directionChange.js +32 -0
  189. package/src/locale/getEffectiveDir.js +28 -0
  190. package/src/locale/languageChange.js +1 -1
  191. package/src/renderer/LitRenderer.js +39 -18
  192. package/src/renderer/directives/style-map.js +72 -0
  193. package/src/renderer/executeTemplate.js +19 -2
  194. package/src/theming/CustomStyle.js +25 -5
  195. package/src/theming/applyTheme.js +11 -16
  196. package/src/theming/getConstructableStyle.js +7 -6
  197. package/src/theming/getEffectiveLinksHrefs.js +27 -0
  198. package/src/theming/getEffectiveStyle.js +24 -8
  199. package/src/theming/getStylesString.js +4 -2
  200. package/src/theming/getThemeDesignerTheme.js +25 -5
  201. package/src/theming/preloadLinks.js +23 -0
  202. package/src/types/CSSColor.js +9 -0
  203. package/src/types/CalendarType.js +1 -1
  204. package/src/types/DataType.js +13 -1
  205. package/src/types/Float.js +4 -0
  206. package/src/types/Integer.js +4 -0
  207. package/src/types/InvisibleMessageMode.js +30 -0
  208. package/src/types/ItemNavigationBehavior.js +2 -7
  209. package/src/types/PopupState.js +1 -1
  210. package/src/types/ValueState.js +1 -1
  211. package/src/updateShadowRoot.js +30 -0
  212. package/src/util/AriaLabelHelper.js +4 -4
  213. package/src/util/Caret.js +45 -0
  214. package/src/util/ColorConversion.js +370 -0
  215. package/src/util/FocusableElements.js +22 -9
  216. package/src/util/HTMLSanitizer.js +7 -0
  217. package/src/util/InvisibleMessage.js +60 -0
  218. package/src/util/PopupUtils.js +93 -0
  219. package/src/util/SlotsHelper.js +43 -0
  220. package/src/util/TabbableElements.js +5 -1
  221. package/src/util/arraysAreEqual.js +15 -0
  222. package/src/util/clamp.js +12 -0
  223. package/src/util/createLinkInHead.js +19 -0
  224. package/src/util/debounce.js +17 -0
  225. package/src/util/escapeRegex.js +10 -0
  226. package/src/util/generateHighlightedMarkup.js +42 -0
  227. package/src/util/getActiveElement.js +11 -0
  228. package/src/util/getClassCopy.js +10 -0
  229. package/src/util/getEffectiveContentDensity.js +5 -0
  230. package/src/util/getNormalizedTarget.js +16 -0
  231. package/src/util/isElementInView.js +15 -0
  232. package/src/util/isNodeHidden.js +1 -1
  233. package/src/util/isNodeTabbable.js +4 -4
  234. package/used-modules.txt +10 -0
  235. package/bundle.es5.js +0 -28
  236. package/dist/SVGIconRegistry.js +0 -73
  237. package/dist/boot.js +0 -34
  238. package/dist/compatibility/DOMObserver.js +0 -62
  239. package/dist/compatibility/patchNodeValue.js +0 -24
  240. package/dist/compatibility/whenPolyfillLoaded.js +0 -26
  241. package/dist/config/AssetsPath.js +0 -17
  242. package/dist/delegate/CustomResize.js +0 -78
  243. package/dist/delegate/NativeResize.js +0 -45
  244. package/dist/features/PropertiesFormatSupport.js +0 -8
  245. package/dist/features/browsersupport/Edge.js +0 -6
  246. package/dist/features/browsersupport/IE11.js +0 -42
  247. package/dist/features/browsersupport/IE11WithWebComponentsPolyfill.js +0 -5
  248. package/dist/renderer/ifDefined.js +0 -21
  249. package/dist/renderer/scopeHTML.js +0 -32
  250. package/dist/resources/bundle.es5.js +0 -212
  251. package/dist/resources/bundle.es5.js.map +0 -1
  252. package/dist/theming/CSSVarsPonyfill.js +0 -68
  253. package/dist/theming/adaptCSSForIE.js +0 -95
  254. package/dist/theming/createComponentStyleTag.js +0 -54
  255. package/dist/theming/createThemePropertiesStyleTag.js +0 -20
  256. package/dist/thirdparty/Array.from.js +0 -16
  257. package/dist/thirdparty/Array.prototype.fill.js +0 -44
  258. package/dist/thirdparty/Array.prototype.find.js +0 -46
  259. package/dist/thirdparty/Array.prototype.includes.js +0 -51
  260. package/dist/thirdparty/Element.prototype.closest.js +0 -11
  261. package/dist/thirdparty/Element.prototype.matches.js +0 -6
  262. package/dist/thirdparty/Map.prototype.keys.js +0 -9
  263. package/dist/thirdparty/Number.isInteger.js +0 -5
  264. package/dist/thirdparty/Number.isNaN.js +0 -1
  265. package/dist/thirdparty/Number.parseFloat.js +0 -1
  266. package/dist/thirdparty/Number.parseInt.js +0 -1
  267. package/dist/thirdparty/Object.assign.js +0 -31
  268. package/dist/thirdparty/Object.entries.js +0 -11
  269. package/dist/thirdparty/Symbol.js +0 -2
  270. package/dist/thirdparty/WeakSet.js +0 -27
  271. package/dist/thirdparty/es6-string-methods.js +0 -182
  272. package/dist/thirdparty/events-polyfills.js +0 -89
  273. package/dist/thirdparty/fetch.js +0 -1
  274. package/dist/thirdparty/template.js +0 -600
  275. package/dist/thirdparty/webcomponents-sd-ce-pf.js +0 -318
  276. package/dist/util/EffectiveAssetPath.js +0 -27
  277. package/dist/util/encodeCSS.js +0 -24
  278. package/dist/util/isSlot.js +0 -3
  279. package/dist/webcomponentsjs/LICENSE.md +0 -19
  280. package/dist/webcomponentsjs/README.md +0 -229
  281. package/dist/webcomponentsjs/bundles/webcomponents-ce.js +0 -63
  282. package/dist/webcomponentsjs/bundles/webcomponents-ce.js.map +0 -1
  283. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js +0 -297
  284. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js.map +0 -1
  285. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js +0 -208
  286. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js.map +0 -1
  287. package/dist/webcomponentsjs/bundles/webcomponents-sd.js +0 -166
  288. package/dist/webcomponentsjs/bundles/webcomponents-sd.js.map +0 -1
  289. package/dist/webcomponentsjs/custom-elements-es5-adapter.js +0 -15
  290. package/dist/webcomponentsjs/package.json +0 -46
  291. package/dist/webcomponentsjs/src/entrypoints/custom-elements-es5-adapter-index.js +0 -16
  292. package/dist/webcomponentsjs/src/entrypoints/webcomponents-bundle-index.js +0 -53
  293. package/dist/webcomponentsjs/src/entrypoints/webcomponents-ce-index.js +0 -17
  294. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-index.js +0 -19
  295. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-pf-index.js +0 -28
  296. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-index.js +0 -18
  297. package/dist/webcomponentsjs/webcomponents-bundle.js +0 -298
  298. package/dist/webcomponentsjs/webcomponents-bundle.js.map +0 -1
  299. package/dist/webcomponentsjs/webcomponents-loader.js +0 -185
  300. package/src/SVGIconRegistry.js +0 -73
  301. package/src/boot.js +0 -34
  302. package/src/compatibility/DOMObserver.js +0 -62
  303. package/src/compatibility/patchNodeValue.js +0 -24
  304. package/src/compatibility/whenPolyfillLoaded.js +0 -26
  305. package/src/config/AssetsPath.js +0 -17
  306. package/src/delegate/CustomResize.js +0 -78
  307. package/src/delegate/NativeResize.js +0 -45
  308. package/src/features/PropertiesFormatSupport.js +0 -8
  309. package/src/features/browsersupport/Edge.js +0 -6
  310. package/src/features/browsersupport/IE11.js +0 -42
  311. package/src/features/browsersupport/IE11WithWebComponentsPolyfill.js +0 -5
  312. package/src/renderer/ifDefined.js +0 -21
  313. package/src/renderer/scopeHTML.js +0 -32
  314. package/src/theming/CSSVarsPonyfill.js +0 -68
  315. package/src/theming/adaptCSSForIE.js +0 -95
  316. package/src/theming/createComponentStyleTag.js +0 -54
  317. package/src/theming/createThemePropertiesStyleTag.js +0 -20
  318. package/src/thirdparty/Array.from.js +0 -16
  319. package/src/thirdparty/Array.prototype.fill.js +0 -44
  320. package/src/thirdparty/Array.prototype.find.js +0 -46
  321. package/src/thirdparty/Array.prototype.includes.js +0 -51
  322. package/src/thirdparty/Element.prototype.closest.js +0 -11
  323. package/src/thirdparty/Element.prototype.matches.js +0 -6
  324. package/src/thirdparty/Map.prototype.keys.js +0 -9
  325. package/src/thirdparty/Number.isInteger.js +0 -5
  326. package/src/thirdparty/Number.isNaN.js +0 -1
  327. package/src/thirdparty/Number.parseFloat.js +0 -1
  328. package/src/thirdparty/Number.parseInt.js +0 -1
  329. package/src/thirdparty/Object.assign.js +0 -31
  330. package/src/thirdparty/Object.entries.js +0 -11
  331. package/src/thirdparty/Symbol.js +0 -2
  332. package/src/thirdparty/WeakSet.js +0 -27
  333. package/src/thirdparty/es6-string-methods.js +0 -182
  334. package/src/thirdparty/events-polyfills.js +0 -89
  335. package/src/thirdparty/fetch.js +0 -1
  336. package/src/thirdparty/template.js +0 -600
  337. package/src/thirdparty/webcomponents-sd-ce-pf.js +0 -318
  338. package/src/util/EffectiveAssetPath.js +0 -27
  339. package/src/util/encodeCSS.js +0 -24
  340. package/src/util/isSlot.js +0 -3
@@ -1,15 +0,0 @@
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
- 'use strict';
12
-
13
- (function(){if(void 0===window.Reflect||void 0===window.customElements||window.customElements.polyfillWrapFlushCallback)return;const a=HTMLElement;window.HTMLElement={HTMLElement:function HTMLElement(){return Reflect.construct(a,[],this.constructor)}}.HTMLElement,HTMLElement.prototype=a.prototype,HTMLElement.prototype.constructor=HTMLElement,Object.setPrototypeOf(HTMLElement,a);})();
14
-
15
- }());
@@ -1,46 +0,0 @@
1
- {
2
- "name": "@webcomponents/webcomponentsjs",
3
- "version": "2.4.0",
4
- "description": "Web Components Polyfills",
5
- "main": "webcomponents-bundle.js",
6
- "repository": "github:webcomponents/polyfills",
7
- "bugs": "https://github.com/webcomponents/polyfills/issues",
8
- "homepage": "https://webcomponents.org/polyfills",
9
- "author": "The Polymer Project Authors (https://polymer.github.io/AUTHORS.txt)",
10
- "license": "BSD-3-Clause",
11
- "keywords": [
12
- "webcomponents",
13
- "web-components",
14
- "polyfill",
15
- "shim"
16
- ],
17
- "scripts": {
18
- "build": "gulp",
19
- "test": "wct",
20
- "lint": "eslint src tests",
21
- "regen-package-lock": "rm -rf node_modules package-lock.json; npm install",
22
- "prepack": "npm run build",
23
- "clean": "gulp clean"
24
- },
25
- "devDependencies": {
26
- "@webcomponents/custom-elements": "^1.3.1",
27
- "@webcomponents/shadycss": "^1.9.3",
28
- "@webcomponents/shadydom": "^1.7.0",
29
- "@webcomponents/template": "^1.4.1",
30
- "@webcomponents/url": "^0.7.4",
31
- "babel-preset-minify": "^0.4.3",
32
- "get-own-property-symbols": "^0.9.2",
33
- "promise-polyfill": "^8.0.0",
34
- "wct-browser-legacy": "^1.0.2"
35
- },
36
- "publishConfig": {
37
- "access": "public"
38
- },
39
- "files": [
40
- "bundles/**/*",
41
- "src/entrypoints/**/*",
42
- "custom-elements-es5-adapter.js",
43
- "webcomponents-bundle.js*",
44
- "webcomponents-loader.js"
45
- ]
46
- }
@@ -1,16 +0,0 @@
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
- 'use strict';
11
-
12
- /*
13
- * Polyfills loaded: Custom Elements ES5 Shim
14
- */
15
-
16
- import '../../node_modules/@webcomponents/custom-elements/src/native-shim.js';
@@ -1,53 +0,0 @@
1
- /**
2
- @license
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
- 'use strict';
11
-
12
- /*
13
- * Polyfills loaded: HTML Imports, Custom Elements, Shady DOM/Shady CSS, platform polyfills, template
14
- * Used in: webcomponents bundle to load ALL the things
15
- */
16
-
17
- import './webcomponents-sd-ce-pf-index.js';
18
-
19
- const customElements = window.customElements;
20
-
21
- let shouldFlush = false;
22
- /** @type {?function()} */
23
- let flusher = null;
24
-
25
- if (customElements['polyfillWrapFlushCallback']) {
26
- customElements['polyfillWrapFlushCallback']((flush) => {
27
- flusher = flush;
28
- if (shouldFlush) {
29
- flush();
30
- }
31
- });
32
- }
33
-
34
- function flushAndFire() {
35
- if (window.HTMLTemplateElement.bootstrap) {
36
- window.HTMLTemplateElement.bootstrap(window.document);
37
- }
38
- flusher && flusher();
39
- shouldFlush = true;
40
- window.WebComponents.ready = true;
41
- document.dispatchEvent(new CustomEvent('WebComponentsReady', { bubbles: true }));
42
- }
43
-
44
- if (document.readyState !== 'complete') {
45
- // this script may come between DCL and load, so listen for both, and cancel load listener if DCL fires
46
- window.addEventListener('load', flushAndFire)
47
- window.addEventListener('DOMContentLoaded', () => {
48
- window.removeEventListener('load', flushAndFire);
49
- flushAndFire();
50
- });
51
- } else {
52
- flushAndFire();
53
- }
@@ -1,17 +0,0 @@
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
- 'use strict';
11
-
12
- /*
13
- * Polyfills loaded: Custom Elements
14
- * Used in: Safari 10
15
- */
16
-
17
- import '../../node_modules/@webcomponents/custom-elements/src/custom-elements.js';
@@ -1,19 +0,0 @@
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
- 'use strict';
11
-
12
- /*
13
- * Polyfills loaded: Custom Elements, Shady DOM/Shady CSS
14
- * Used in: Safari 9, Firefox, Edge
15
- */
16
-
17
- import '../../node_modules/@webcomponents/shadydom/src/shadydom.js';
18
- import '../../node_modules/@webcomponents/custom-elements/src/custom-elements.js';
19
- import '../../node_modules/@webcomponents/shadycss/entrypoints/scoping-shim.js';
@@ -1,28 +0,0 @@
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
- 'use strict';
11
-
12
- /*
13
- * Polyfills loaded: HTML Imports, Custom Elements, Shady DOM/Shady CSS, platform polyfills, template
14
- * Used in: IE 11
15
- */
16
-
17
- import '../platform/es6-misc.js';
18
- import '../platform/custom-event.js';
19
- import '../../node_modules/@webcomponents/template/template.js';
20
- import '../platform/promise.js';
21
- import '../platform/symbol.js';
22
- import '../platform/flag-parser.js';
23
- import '../../node_modules/@webcomponents/shadydom/src/shadydom.js';
24
- import '../../node_modules/@webcomponents/custom-elements/src/custom-elements.js';
25
- import '../../node_modules/@webcomponents/shadycss/entrypoints/scoping-shim.js';
26
- import '../../node_modules/@webcomponents/url/url.js';
27
- import '../platform/baseuri.js';
28
- import '../platform/unresolved.js';
@@ -1,18 +0,0 @@
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
- 'use strict';
11
-
12
- /*
13
- * Polyfills loaded: Shady DOM/Shady CSS
14
- * Used in: Firefox when CE is implemented
15
- */
16
-
17
- import '../../node_modules/@webcomponents/shadydom/src/shadydom.js';
18
- import '../../node_modules/@webcomponents/shadycss/entrypoints/scoping-shim.js';