@stencil/core 2.9.0 → 2.10.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 (63) hide show
  1. package/cli/index.cjs +9 -3
  2. package/cli/index.js +9 -3
  3. package/cli/package.json +1 -1
  4. package/compiler/lib.dom.d.ts +263 -648
  5. package/compiler/lib.dom.iterable.d.ts +1 -5
  6. package/compiler/lib.es2015.core.d.ts +2 -2
  7. package/compiler/lib.es2015.iterable.d.ts +1 -1
  8. package/compiler/lib.es2015.symbol.wellknown.d.ts +10 -10
  9. package/compiler/lib.es2018.asynciterable.d.ts +1 -1
  10. package/compiler/lib.es2020.bigint.d.ts +1 -1
  11. package/compiler/lib.es2020.intl.d.ts +6 -7
  12. package/compiler/lib.es2020.symbol.wellknown.d.ts +1 -1
  13. package/compiler/lib.es2021.d.ts +24 -0
  14. package/compiler/lib.es2021.full.d.ts +25 -0
  15. package/compiler/lib.es2021.promise.d.ts +43 -0
  16. package/compiler/lib.es2021.string.d.ts +35 -0
  17. package/compiler/lib.es2021.weakref.d.ts +75 -0
  18. package/compiler/lib.es5.d.ts +9 -9
  19. package/compiler/lib.esnext.d.ts +1 -4
  20. package/compiler/lib.esnext.promise.d.ts +26 -26
  21. package/compiler/lib.esnext.string.d.ts +18 -18
  22. package/compiler/lib.esnext.weakref.d.ts +58 -58
  23. package/compiler/lib.webworker.d.ts +98 -153
  24. package/compiler/lib.webworker.iterable.d.ts +1 -1
  25. package/compiler/package.json +1 -1
  26. package/compiler/stencil.js +64 -20
  27. package/compiler/stencil.min.js +2 -2
  28. package/dependencies.json +6 -1
  29. package/dev-server/client/index.js +1 -1
  30. package/dev-server/client/package.json +1 -1
  31. package/dev-server/connector.html +2 -2
  32. package/dev-server/index.js +1 -1
  33. package/dev-server/package.json +1 -1
  34. package/dev-server/server-process.js +2 -2
  35. package/internal/app-data/package.json +1 -1
  36. package/internal/client/css-shim.js +1 -1
  37. package/internal/client/dom.js +1 -1
  38. package/internal/client/index.js +119 -102
  39. package/internal/client/package.json +1 -1
  40. package/internal/client/patch-browser.js +1 -1
  41. package/internal/client/patch-esm.js +1 -1
  42. package/internal/client/shadow-css.js +1 -1
  43. package/internal/hydrate/index.js +44 -40
  44. package/internal/hydrate/package.json +1 -1
  45. package/internal/index.js +1 -0
  46. package/internal/package.json +1 -1
  47. package/internal/testing/index.js +54 -47
  48. package/internal/testing/package.json +1 -1
  49. package/mock-doc/index.cjs +1 -1
  50. package/mock-doc/index.d.ts +6 -6
  51. package/mock-doc/index.js +1 -1
  52. package/mock-doc/package.json +1 -1
  53. package/package.json +7 -4
  54. package/screenshot/index.js +1 -1
  55. package/screenshot/package.json +1 -1
  56. package/sys/node/index.js +1 -1
  57. package/sys/node/package.json +1 -1
  58. package/sys/node/worker.js +1 -1
  59. package/testing/index.js +7 -4
  60. package/testing/mocks.d.ts +1 -5
  61. package/testing/package.json +1 -1
  62. package/testing/testing-sys.d.ts +6 -1
  63. package/screenshot/index.js.map +0 -1
package/cli/index.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil CLI (CommonJS) v2.9.0 | MIT Licensed | https://stenciljs.com
2
+ Stencil CLI (CommonJS) v2.10.0 | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  'use strict';
5
5
 
@@ -485,7 +485,7 @@ const getNpmConfigEnvArgs = (sys) => {
485
485
  const dependencies = [
486
486
  {
487
487
  name: "@stencil/core",
488
- version: "2.9.0",
488
+ version: "2.10.0",
489
489
  main: "compiler/stencil.js",
490
490
  resources: [
491
491
  "package.json",
@@ -533,6 +533,11 @@ const dependencies = [
533
533
  "compiler/lib.es2020.sharedmemory.d.ts",
534
534
  "compiler/lib.es2020.string.d.ts",
535
535
  "compiler/lib.es2020.symbol.wellknown.d.ts",
536
+ "compiler/lib.es2021.d.ts",
537
+ "compiler/lib.es2021.full.d.ts",
538
+ "compiler/lib.es2021.promise.d.ts",
539
+ "compiler/lib.es2021.string.d.ts",
540
+ "compiler/lib.es2021.weakref.d.ts",
536
541
  "compiler/lib.es5.d.ts",
537
542
  "compiler/lib.es6.d.ts",
538
543
  "compiler/lib.esnext.d.ts",
@@ -582,7 +587,7 @@ const dependencies = [
582
587
  },
583
588
  {
584
589
  name: "typescript",
585
- version: "4.2.3",
590
+ version: "4.3.5",
586
591
  main: "lib/typescript.js"
587
592
  }
588
593
  ];
@@ -1709,3 +1714,4 @@ const runTask = async (coreCompiler, config, task, sys) => {
1709
1714
  exports.parseFlags = parseFlags;
1710
1715
  exports.run = run;
1711
1716
  exports.runTask = runTask;
1717
+ //# sourceMappingURL=index.cjs.map
package/cli/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil CLI v2.9.0 | MIT Licensed | https://stenciljs.com
2
+ Stencil CLI v2.10.0 | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  const toLowerCase = (str) => str.toLowerCase();
5
5
  const dashToPascalCase = (str) => toLowerCase(str)
@@ -461,7 +461,7 @@ const getNpmConfigEnvArgs = (sys) => {
461
461
  const dependencies = [
462
462
  {
463
463
  name: "@stencil/core",
464
- version: "2.9.0",
464
+ version: "2.10.0",
465
465
  main: "compiler/stencil.js",
466
466
  resources: [
467
467
  "package.json",
@@ -509,6 +509,11 @@ const dependencies = [
509
509
  "compiler/lib.es2020.sharedmemory.d.ts",
510
510
  "compiler/lib.es2020.string.d.ts",
511
511
  "compiler/lib.es2020.symbol.wellknown.d.ts",
512
+ "compiler/lib.es2021.d.ts",
513
+ "compiler/lib.es2021.full.d.ts",
514
+ "compiler/lib.es2021.promise.d.ts",
515
+ "compiler/lib.es2021.string.d.ts",
516
+ "compiler/lib.es2021.weakref.d.ts",
512
517
  "compiler/lib.es5.d.ts",
513
518
  "compiler/lib.es6.d.ts",
514
519
  "compiler/lib.esnext.d.ts",
@@ -558,7 +563,7 @@ const dependencies = [
558
563
  },
559
564
  {
560
565
  name: "typescript",
561
- version: "4.2.3",
566
+ version: "4.3.5",
562
567
  main: "lib/typescript.js"
563
568
  }
564
569
  ];
@@ -1683,3 +1688,4 @@ const runTask = async (coreCompiler, config, task, sys) => {
1683
1688
  };
1684
1689
 
1685
1690
  export { parseFlags, run, runTask };
1691
+ //# sourceMappingURL=index.js.map
package/cli/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core/cli",
3
- "version": "2.9.0",
3
+ "version": "2.10.0",
4
4
  "description": "Stencil CLI.",
5
5
  "main": "./index.cjs",
6
6
  "module": "./index.js",