@stencil/core 4.41.3 → 4.42.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 (39) hide show
  1. package/cli/index.cjs +3 -2
  2. package/cli/index.js +3 -2
  3. package/cli/package.json +1 -1
  4. package/compiler/package.json +1 -1
  5. package/compiler/stencil.js +527 -127
  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 +2 -2
  12. package/internal/app-data/package.json +1 -1
  13. package/internal/app-globals/package.json +1 -1
  14. package/internal/client/index.js +25 -2
  15. package/internal/client/package.json +1 -1
  16. package/internal/client/patch-browser.js +1 -1
  17. package/internal/hydrate/index.js +25 -2
  18. package/internal/hydrate/package.json +1 -1
  19. package/internal/hydrate/runner.js +1 -1
  20. package/internal/package.json +1 -1
  21. package/internal/stencil-ext-modules.d.ts +1 -1
  22. package/internal/stencil-private.d.ts +32 -0
  23. package/internal/stencil-public-compiler.d.ts +17 -1
  24. package/internal/stencil-public-docs.d.ts +26 -0
  25. package/internal/stencil-public-runtime.d.ts +24 -1
  26. package/internal/testing/index.js +24 -1
  27. package/internal/testing/package.json +1 -1
  28. package/mock-doc/index.cjs +1 -1
  29. package/mock-doc/index.js +1 -1
  30. package/mock-doc/package.json +1 -1
  31. package/package.json +1 -1
  32. package/screenshot/index.js +1 -1
  33. package/screenshot/package.json +1 -1
  34. package/screenshot/pixel-match.js +1 -1
  35. package/sys/node/index.js +27 -27
  36. package/sys/node/package.json +1 -1
  37. package/sys/node/worker.js +1 -1
  38. package/testing/index.js +20 -1
  39. package/testing/package.json +1 -1
package/cli/index.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil CLI (CommonJS) v4.41.3 | MIT Licensed | https://stenciljs.com
2
+ Stencil CLI (CommonJS) v4.42.0 | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  "use strict";
5
5
  var __create = Object.create;
@@ -2759,6 +2759,7 @@ var DOCS_CUSTOM = "docs-custom";
2759
2759
  var DOCS_JSON = "docs-json";
2760
2760
  var DOCS_README = "docs-readme";
2761
2761
  var DOCS_VSCODE = "docs-vscode";
2762
+ var DOCS_CUSTOM_ELEMENTS_MANIFEST = "docs-custom-elements-manifest";
2762
2763
  var WWW = "www";
2763
2764
 
2764
2765
  // src/utils/helpers.ts
@@ -4284,7 +4285,7 @@ minimatch.unescape = unescape;
4284
4285
 
4285
4286
  // src/utils/output-target.ts
4286
4287
  var isOutputTargetHydrate = (o) => o.type === DIST_HYDRATE_SCRIPT;
4287
- var isOutputTargetDocs = (o) => o.type === DOCS_README || o.type === DOCS_JSON || o.type === DOCS_CUSTOM || o.type === DOCS_VSCODE;
4288
+ var isOutputTargetDocs = (o) => o.type === DOCS_README || o.type === DOCS_JSON || o.type === DOCS_CUSTOM || o.type === DOCS_VSCODE || o.type === DOCS_CUSTOM_ELEMENTS_MANIFEST;
4288
4289
 
4289
4290
  // src/utils/result.ts
4290
4291
  var result_exports = {};
package/cli/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil CLI v4.41.3 | MIT Licensed | https://stenciljs.com
2
+ Stencil CLI v4.42.0 | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  var __create = Object.create;
5
5
  var __defProp = Object.defineProperty;
@@ -2753,6 +2753,7 @@ var DOCS_CUSTOM = "docs-custom";
2753
2753
  var DOCS_JSON = "docs-json";
2754
2754
  var DOCS_README = "docs-readme";
2755
2755
  var DOCS_VSCODE = "docs-vscode";
2756
+ var DOCS_CUSTOM_ELEMENTS_MANIFEST = "docs-custom-elements-manifest";
2756
2757
  var WWW = "www";
2757
2758
 
2758
2759
  // src/utils/helpers.ts
@@ -4278,7 +4279,7 @@ minimatch.unescape = unescape;
4278
4279
 
4279
4280
  // src/utils/output-target.ts
4280
4281
  var isOutputTargetHydrate = (o) => o.type === DIST_HYDRATE_SCRIPT;
4281
- var isOutputTargetDocs = (o) => o.type === DOCS_README || o.type === DOCS_JSON || o.type === DOCS_CUSTOM || o.type === DOCS_VSCODE;
4282
+ var isOutputTargetDocs = (o) => o.type === DOCS_README || o.type === DOCS_JSON || o.type === DOCS_CUSTOM || o.type === DOCS_VSCODE || o.type === DOCS_CUSTOM_ELEMENTS_MANIFEST;
4282
4283
 
4283
4284
  // src/utils/result.ts
4284
4285
  var result_exports = {};
package/cli/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core/cli",
3
- "version": "4.41.3",
3
+ "version": "4.42.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.41.3",
3
+ "version": "4.42.0",
4
4
  "description": "Stencil Compiler.",
5
5
  "main": "./stencil.js",
6
6
  "types": "./stencil.d.ts",