web-component-wrapper 0.0.489 → 0.0.491

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.489",
3
+ "version": "0.0.491",
4
4
  "description": "Generic web-component base class and framework specific wrapper.",
5
5
  "keywords": [
6
6
  "component",
@@ -68,8 +68,8 @@
68
68
  },
69
69
  "runkitExample": "require('@babel/runtime/package.json')\n\nconst {Web} = require('web-component-wrapper')\n\nWeb.hasCode('<div>${expression}</div>')",
70
70
  "devDependencies": {
71
- "@babel/eslint-parser": "^7.24.7",
72
- "@babel/runtime": "^7.24.7",
71
+ "@babel/eslint-parser": "^7.24.8",
72
+ "@babel/runtime": "^7.24.8",
73
73
  "@types/ejs": "^3.1.5",
74
74
  "@types/html-minifier": "^4.0.5",
75
75
  "@types/jsdom": "^21.1.7",
@@ -80,9 +80,9 @@
80
80
  "@typescript-eslint/eslint-plugin": "^7.16.0",
81
81
  "@typescript-eslint/parser": "^7.16.0",
82
82
  "@webcomponents/webcomponentsjs": "^2.8.0",
83
- "clientnode": "^3.0.1163",
83
+ "clientnode": "^3.0.1166",
84
84
  "documentation-website": "^1.0.328",
85
- "eslint": "^9.6.0",
85
+ "eslint": "^9.7.0",
86
86
  "eslint-config-google": "^0.14.0",
87
87
  "eslint-plugin-jsdoc": "^48.7.0",
88
88
  "jest": "^29.7.0",
@@ -91,7 +91,7 @@
91
91
  "react": "^18.3.1",
92
92
  "react-dom": "^18.3.1",
93
93
  "typescript-eslint": "^7.16.0",
94
- "weboptimizer": "^2.0.1483",
94
+ "weboptimizer": "^2.0.1486",
95
95
  "webpack-dev-server": "^5.0.4"
96
96
  },
97
97
  "peerDependencies": {
package/polyfill.html.ejs CHANGED
@@ -56,7 +56,7 @@
56
56
  typeof additionalFeatures === 'undefined' ? [] : additionalFeatures
57
57
  ))
58
58
  _%>
59
- <script src="https://polyfill.io/v3/polyfill.js?features=<%- encodeURIComponent(Array.from(features).sort().join(',')) %>"></script>
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
  <script>
61
61
  /*
62
62
  Only provide the shadow dom polyfill and avoid to patch a lot
package/readme.md CHANGED
@@ -48,8 +48,3 @@ Data can be communicated back via:
48
48
  A Web-Component-Wrapper component forwards (transformed) given properties into
49
49
  a wrapped react component via `props` and reads data via provided callbacks
50
50
  as part of `props` or as part of reacts `ref` object.
51
-
52
- <!-- region modline
53
- vim: set tabstop=4 shiftwidth=4 expandtab:
54
- vim: foldmethod=marker foldmarker=region,endregion:
55
- endregion -->