@stencil/core 2.19.3 → 2.20.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 (49) hide show
  1. package/cli/index.cjs +4 -3
  2. package/cli/index.js +4 -3
  3. package/cli/package.json +1 -1
  4. package/compiler/lib.dom.d.ts +130 -185
  5. package/compiler/lib.dom.iterable.d.ts +1 -11
  6. package/compiler/lib.es2015.collection.d.ts +62 -1
  7. package/compiler/lib.es2015.proxy.d.ts +91 -2
  8. package/compiler/lib.es2017.intl.d.ts +16 -1
  9. package/compiler/lib.es2020.intl.d.ts +30 -5
  10. package/compiler/lib.es2021.intl.d.ts +11 -3
  11. package/compiler/lib.es2022.d.ts +1 -0
  12. package/compiler/lib.es2022.error.d.ts +2 -2
  13. package/compiler/lib.es2022.sharedmemory.d.ts +27 -0
  14. package/compiler/lib.es5.d.ts +13 -1
  15. package/compiler/lib.esnext.intl.d.ts +5 -1
  16. package/compiler/lib.webworker.d.ts +56 -29
  17. package/compiler/lib.webworker.iterable.d.ts +1 -1
  18. package/compiler/package.json +1 -1
  19. package/compiler/stencil.js +30456 -30383
  20. package/compiler/stencil.min.js +2 -2
  21. package/dependencies.json +2 -1
  22. package/dev-server/client/index.js +1 -1
  23. package/dev-server/client/package.json +1 -1
  24. package/dev-server/connector.html +2 -2
  25. package/dev-server/index.js +1 -1
  26. package/dev-server/package.json +1 -1
  27. package/dev-server/server-process.js +2 -2
  28. package/internal/app-data/package.json +1 -1
  29. package/internal/client/css-shim.js +1 -1
  30. package/internal/client/dom.js +1 -1
  31. package/internal/client/index.js +1 -1
  32. package/internal/client/package.json +1 -1
  33. package/internal/client/patch-browser.js +1 -1
  34. package/internal/client/patch-esm.js +1 -1
  35. package/internal/client/shadow-css.js +1 -1
  36. package/internal/hydrate/package.json +1 -1
  37. package/internal/hydrate/runner.d.ts +1 -1
  38. package/internal/package.json +1 -1
  39. package/internal/testing/package.json +1 -1
  40. package/mock-doc/index.cjs +6 -6
  41. package/mock-doc/index.js +6 -6
  42. package/mock-doc/package.json +1 -1
  43. package/package.json +14 -14
  44. package/screenshot/package.json +1 -1
  45. package/sys/node/index.js +1 -1
  46. package/sys/node/package.json +1 -1
  47. package/sys/node/worker.js +1 -1
  48. package/testing/index.js +13 -11
  49. package/testing/package.json +1 -1
package/cli/index.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil CLI (CommonJS) v2.19.3 | MIT Licensed | https://stenciljs.com
2
+ Stencil CLI (CommonJS) v2.20.0 | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  'use strict';
5
5
 
@@ -989,7 +989,7 @@ const dereferenceAlias = (maybeAlias) => {
989
989
  const dependencies = [
990
990
  {
991
991
  name: "@stencil/core",
992
- version: "2.19.3",
992
+ version: "2.20.0",
993
993
  main: "compiler/stencil.js",
994
994
  resources: [
995
995
  "package.json",
@@ -1051,6 +1051,7 @@ const dependencies = [
1051
1051
  "compiler/lib.es2022.full.d.ts",
1052
1052
  "compiler/lib.es2022.intl.d.ts",
1053
1053
  "compiler/lib.es2022.object.d.ts",
1054
+ "compiler/lib.es2022.sharedmemory.d.ts",
1054
1055
  "compiler/lib.es2022.string.d.ts",
1055
1056
  "compiler/lib.es5.d.ts",
1056
1057
  "compiler/lib.es6.d.ts",
@@ -1101,7 +1102,7 @@ const dependencies = [
1101
1102
  },
1102
1103
  {
1103
1104
  name: "typescript",
1104
- version: "4.7.4",
1105
+ version: "4.8.4",
1105
1106
  main: "lib/typescript.js"
1106
1107
  }
1107
1108
  ];
package/cli/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil CLI v2.19.3 | MIT Licensed | https://stenciljs.com
2
+ Stencil CLI v2.20.0 | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  /**
5
5
  * Convert a string from dash-case / kebab-case to PascalCase (or CamelCase,
@@ -965,7 +965,7 @@ const dereferenceAlias = (maybeAlias) => {
965
965
  const dependencies = [
966
966
  {
967
967
  name: "@stencil/core",
968
- version: "2.19.3",
968
+ version: "2.20.0",
969
969
  main: "compiler/stencil.js",
970
970
  resources: [
971
971
  "package.json",
@@ -1027,6 +1027,7 @@ const dependencies = [
1027
1027
  "compiler/lib.es2022.full.d.ts",
1028
1028
  "compiler/lib.es2022.intl.d.ts",
1029
1029
  "compiler/lib.es2022.object.d.ts",
1030
+ "compiler/lib.es2022.sharedmemory.d.ts",
1030
1031
  "compiler/lib.es2022.string.d.ts",
1031
1032
  "compiler/lib.es5.d.ts",
1032
1033
  "compiler/lib.es6.d.ts",
@@ -1077,7 +1078,7 @@ const dependencies = [
1077
1078
  },
1078
1079
  {
1079
1080
  name: "typescript",
1080
- version: "4.7.4",
1081
+ version: "4.8.4",
1081
1082
  main: "lib/typescript.js"
1082
1083
  }
1083
1084
  ];
package/cli/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core/cli",
3
- "version": "2.19.3",
3
+ "version": "2.20.0",
4
4
  "description": "Stencil CLI.",
5
5
  "main": "./index.cjs",
6
6
  "module": "./index.js",