@stencil/core 4.37.1 → 4.38.0

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 (41) hide show
  1. package/cli/index.cjs +2 -2
  2. package/cli/index.js +2 -2
  3. package/cli/package.json +1 -1
  4. package/compiler/package.json +1 -1
  5. package/compiler/stencil.js +337 -169
  6. package/dev-server/client/index.js +1 -1
  7. package/dev-server/client/package.json +1 -1
  8. package/dev-server/connector.html +2 -2
  9. package/dev-server/index.js +1 -1
  10. package/dev-server/package.json +1 -1
  11. package/dev-server/server-process.js +3 -3
  12. package/internal/app-data/index.cjs +1 -1
  13. package/internal/app-data/index.js +1 -1
  14. package/internal/app-data/package.json +1 -1
  15. package/internal/app-globals/package.json +1 -1
  16. package/internal/client/index.js +95 -46
  17. package/internal/client/package.json +1 -1
  18. package/internal/client/patch-browser.js +1 -1
  19. package/internal/hydrate/index.js +116 -64
  20. package/internal/hydrate/package.json +1 -1
  21. package/internal/hydrate/runner.d.ts +2 -0
  22. package/internal/hydrate/runner.js +1 -1
  23. package/internal/package.json +1 -1
  24. package/internal/stencil-core/index.d.ts +2 -0
  25. package/internal/stencil-private.d.ts +33 -8
  26. package/internal/stencil-public-compiler.d.ts +5 -0
  27. package/internal/stencil-public-runtime.d.ts +16 -2
  28. package/internal/testing/index.js +91 -44
  29. package/internal/testing/package.json +1 -1
  30. package/mock-doc/index.cjs +1 -1
  31. package/mock-doc/index.js +1 -1
  32. package/mock-doc/package.json +1 -1
  33. package/package.json +1 -1
  34. package/screenshot/index.js +2 -2
  35. package/screenshot/package.json +1 -1
  36. package/screenshot/pixel-match.js +1 -1
  37. package/sys/node/index.js +34 -34
  38. package/sys/node/package.json +1 -1
  39. package/sys/node/worker.js +1 -1
  40. package/testing/index.js +22 -12
  41. package/testing/package.json +1 -1
package/cli/index.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil CLI (CommonJS) v4.37.1 | MIT Licensed | https://stenciljs.com
2
+ Stencil CLI (CommonJS) v4.38.0 | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  "use strict";
5
5
  var __create = Object.create;
@@ -2803,7 +2803,7 @@ var BUILD = {
2803
2803
  vdomRender: true,
2804
2804
  vdomStyle: true,
2805
2805
  vdomText: true,
2806
- watchCallback: true,
2806
+ propChangeCallback: true,
2807
2807
  taskQueue: true,
2808
2808
  hotModuleReplacement: false,
2809
2809
  isDebug: false,
package/cli/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil CLI v4.37.1 | MIT Licensed | https://stenciljs.com
2
+ Stencil CLI v4.38.0 | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  var __create = Object.create;
5
5
  var __defProp = Object.defineProperty;
@@ -2797,7 +2797,7 @@ var BUILD = {
2797
2797
  vdomRender: true,
2798
2798
  vdomStyle: true,
2799
2799
  vdomText: true,
2800
- watchCallback: true,
2800
+ propChangeCallback: true,
2801
2801
  taskQueue: true,
2802
2802
  hotModuleReplacement: false,
2803
2803
  isDebug: false,
package/cli/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core/cli",
3
- "version": "4.37.1",
3
+ "version": "4.38.0",
4
4
  "description": "Stencil CLI.",
5
5
  "main": "./index.cjs",
6
6
  "module": "./index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core/compiler",
3
- "version": "4.37.1",
3
+ "version": "4.38.0",
4
4
  "description": "Stencil Compiler.",
5
5
  "main": "./stencil.js",
6
6
  "types": "./stencil.d.ts",