web-component-wrapper 0.0.559 → 0.0.561

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-component-wrapper",
3
- "version": "0.0.559",
3
+ "version": "0.0.561",
4
4
  "description": "Generic web-component base class and framework specific wrapper.",
5
5
  "keywords": [
6
6
  "component",
package/polyfill.html.ejs CHANGED
@@ -53,19 +53,22 @@
53
53
  'WeakMap',
54
54
  'WeakSet'
55
55
  ].concat(
56
- typeof additionalFeatures === 'undefined' ? [] : additionalFeatures
56
+ typeof _.additionalFeatures === 'undefined' ? [] : _.additionalFeatures
57
57
  ))
58
58
  _%>
59
59
  <script src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?version=4.8.0&features=<%- encodeURIComponent(Array.from(features).sort().join(',')) %>"></script>
60
60
 
61
- <%_ if (typeof webComponents === 'undefined' || webComponents) { _%>
61
+ <%_ if (typeof _.webComponents === 'undefined' || _.webComponents) { _%>
62
62
  <script>
63
63
  /*
64
- Only provide the shadow dom polyfill and avoid to patch a lot of dom
65
- apis.
64
+ Only provide the shadow dom polyfill and avoid to patch a lot of
65
+ dom apis.
66
66
  */
67
67
  window.ShadyDOM = {noPatch: true}
68
68
  </script>
69
- <script src="/@webcomponents/webcomponentsjs/webcomponents-bundle.js"></script>
70
- <script src="/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js"></script>
69
+ <script src="/@webcomponents/webcomponentsjs/webcomponents-bundle.js">
70
+ </script>
71
+ <script
72
+ src="/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js"
73
+ ></script>
71
74
  <%_ } _%>