@stencil/core 4.38.3 → 4.39.0-dev.1765343168.3771af0

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 (57) hide show
  1. package/cli/index.cjs +2 -1
  2. package/cli/index.js +2 -1
  3. package/cli/package.json +1 -1
  4. package/compiler/lib.dom.d.ts +4826 -14645
  5. package/compiler/lib.dom.iterable.d.ts +25 -103
  6. package/compiler/lib.es2015.symbol.wellknown.d.ts +1 -1
  7. package/compiler/lib.es2017.sharedmemory.d.ts +1 -1
  8. package/compiler/lib.es2022.intl.d.ts +1 -25
  9. package/compiler/lib.es5.d.ts +2 -9
  10. package/compiler/lib.esnext.d.ts +0 -2
  11. package/compiler/lib.esnext.float16.d.ts +0 -2
  12. package/compiler/lib.webworker.d.ts +1342 -4598
  13. package/compiler/lib.webworker.iterable.d.ts +19 -72
  14. package/compiler/package.json +1 -1
  15. package/compiler/stencil.js +23984 -14073
  16. package/dev-server/client/index.js +1 -1
  17. package/dev-server/client/package.json +1 -1
  18. package/dev-server/connector.html +2 -2
  19. package/dev-server/index.js +1 -1
  20. package/dev-server/package.json +1 -1
  21. package/dev-server/server-process.js +6 -5
  22. package/internal/app-data/index.cjs +1 -0
  23. package/internal/app-data/index.js +1 -0
  24. package/internal/app-data/package.json +1 -1
  25. package/internal/app-globals/package.json +1 -1
  26. package/internal/client/index.js +29 -5
  27. package/internal/client/package.json +1 -1
  28. package/internal/client/patch-browser.js +1 -1
  29. package/internal/hydrate/index.js +35 -5
  30. package/internal/hydrate/package.json +1 -1
  31. package/internal/hydrate/runner.d.ts +12 -0
  32. package/internal/hydrate/runner.js +1357 -1330
  33. package/internal/package.json +1 -1
  34. package/internal/stencil-core/index.d.ts +2 -0
  35. package/internal/stencil-private.d.ts +3 -0
  36. package/internal/stencil-public-compiler.d.ts +13 -0
  37. package/internal/stencil-public-runtime.d.ts +43 -0
  38. package/internal/testing/index.js +30 -4
  39. package/internal/testing/package.json +1 -1
  40. package/mock-doc/index.cjs +226 -226
  41. package/mock-doc/index.js +226 -226
  42. package/mock-doc/package.json +1 -1
  43. package/package.json +6 -3
  44. package/screenshot/index.js +2 -1
  45. package/screenshot/package.json +1 -1
  46. package/screenshot/pixel-match.js +3 -3
  47. package/sys/node/autoprefixer.js +2 -2
  48. package/sys/node/glob.js +1 -1
  49. package/sys/node/index.js +18 -18
  50. package/sys/node/node-fetch.js +1 -1
  51. package/sys/node/package.json +1 -1
  52. package/sys/node/worker.js +1 -1
  53. package/testing/index.js +35 -7
  54. package/testing/package.json +1 -1
  55. package/testing/puppeteer/puppeteer-browser.d.ts +1 -1
  56. package/compiler/lib.esnext.error.d.ts +0 -24
  57. package/compiler/lib.esnext.sharedmemory.d.ts +0 -25
package/cli/index.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil CLI (CommonJS) v4.38.3 | MIT Licensed | https://stenciljs.com
2
+ Stencil CLI (CommonJS) v4.39.0-dev.1765343168.3771af0 | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  "use strict";
5
5
  var __create = Object.create;
@@ -2839,6 +2839,7 @@ var BUILD = {
2839
2839
  initializeNextTick: false,
2840
2840
  asyncLoading: true,
2841
2841
  asyncQueue: false,
2842
+ // TODO: deprecated in favour of `setTagTransformer` and `transformTag`. Remove in 5.0
2842
2843
  transformTagName: false,
2843
2844
  attachStyles: true,
2844
2845
  // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
package/cli/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil CLI v4.38.3 | MIT Licensed | https://stenciljs.com
2
+ Stencil CLI v4.39.0-dev.1765343168.3771af0 | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  var __create = Object.create;
5
5
  var __defProp = Object.defineProperty;
@@ -2833,6 +2833,7 @@ var BUILD = {
2833
2833
  initializeNextTick: false,
2834
2834
  asyncLoading: true,
2835
2835
  asyncQueue: false,
2836
+ // TODO: deprecated in favour of `setTagTransformer` and `transformTag`. Remove in 5.0
2836
2837
  transformTagName: false,
2837
2838
  attachStyles: true,
2838
2839
  // TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
package/cli/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core/cli",
3
- "version": "4.38.3",
3
+ "version": "4.39.0-dev.1765343168.3771af0",
4
4
  "description": "Stencil CLI.",
5
5
  "main": "./index.cjs",
6
6
  "module": "./index.js",