@stencil/core 3.0.0-alpha.0 → 3.0.0-alpha.1

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 (50) 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 +22807 -22740
  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/package.json +1 -1
  38. package/internal/stencil-private.d.ts +1 -0
  39. package/internal/testing/package.json +1 -1
  40. package/mock-doc/index.cjs +1 -1
  41. package/mock-doc/index.js +1 -1
  42. package/mock-doc/package.json +1 -1
  43. package/package.json +4 -4
  44. package/screenshot/package.json +1 -1
  45. package/sys/node/index.js +3 -3
  46. package/sys/node/package.json +1 -1
  47. package/sys/node/worker.js +1 -1
  48. package/testing/index.js +597 -410
  49. package/testing/package.json +1 -1
  50. package/testing/puppeteer/puppeteer-element.d.ts +3 -3
package/cli/index.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil CLI (CommonJS) v3.0.0-alpha.0 | MIT Licensed | https://stenciljs.com
2
+ Stencil CLI (CommonJS) v3.0.0-alpha.1 | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  'use strict';
5
5
 
@@ -987,7 +987,7 @@ const dereferenceAlias = (maybeAlias) => {
987
987
  const dependencies = [
988
988
  {
989
989
  name: "@stencil/core",
990
- version: "3.0.0-alpha.0",
990
+ version: "3.0.0-alpha.1",
991
991
  main: "compiler/stencil.js",
992
992
  resources: [
993
993
  "package.json",
@@ -1049,6 +1049,7 @@ const dependencies = [
1049
1049
  "compiler/lib.es2022.full.d.ts",
1050
1050
  "compiler/lib.es2022.intl.d.ts",
1051
1051
  "compiler/lib.es2022.object.d.ts",
1052
+ "compiler/lib.es2022.sharedmemory.d.ts",
1052
1053
  "compiler/lib.es2022.string.d.ts",
1053
1054
  "compiler/lib.es5.d.ts",
1054
1055
  "compiler/lib.es6.d.ts",
@@ -1099,7 +1100,7 @@ const dependencies = [
1099
1100
  },
1100
1101
  {
1101
1102
  name: "typescript",
1102
- version: "4.7.4",
1103
+ version: "4.8.4",
1103
1104
  main: "lib/typescript.js"
1104
1105
  }
1105
1106
  ];
package/cli/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil CLI v3.0.0-alpha.0 | MIT Licensed | https://stenciljs.com
2
+ Stencil CLI v3.0.0-alpha.1 | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  /**
5
5
  * Convert a string from dash-case / kebab-case to PascalCase (or CamelCase,
@@ -963,7 +963,7 @@ const dereferenceAlias = (maybeAlias) => {
963
963
  const dependencies = [
964
964
  {
965
965
  name: "@stencil/core",
966
- version: "3.0.0-alpha.0",
966
+ version: "3.0.0-alpha.1",
967
967
  main: "compiler/stencil.js",
968
968
  resources: [
969
969
  "package.json",
@@ -1025,6 +1025,7 @@ const dependencies = [
1025
1025
  "compiler/lib.es2022.full.d.ts",
1026
1026
  "compiler/lib.es2022.intl.d.ts",
1027
1027
  "compiler/lib.es2022.object.d.ts",
1028
+ "compiler/lib.es2022.sharedmemory.d.ts",
1028
1029
  "compiler/lib.es2022.string.d.ts",
1029
1030
  "compiler/lib.es5.d.ts",
1030
1031
  "compiler/lib.es6.d.ts",
@@ -1075,7 +1076,7 @@ const dependencies = [
1075
1076
  },
1076
1077
  {
1077
1078
  name: "typescript",
1078
- version: "4.7.4",
1079
+ version: "4.8.4",
1079
1080
  main: "lib/typescript.js"
1080
1081
  }
1081
1082
  ];
package/cli/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core/cli",
3
- "version": "3.0.0-alpha.0",
3
+ "version": "3.0.0-alpha.1",
4
4
  "description": "Stencil CLI.",
5
5
  "main": "./index.cjs",
6
6
  "module": "./index.js",