@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.
- package/cli/index.cjs +4 -3
- package/cli/index.js +4 -3
- package/cli/package.json +1 -1
- package/compiler/lib.dom.d.ts +130 -185
- package/compiler/lib.dom.iterable.d.ts +1 -11
- package/compiler/lib.es2015.collection.d.ts +62 -1
- package/compiler/lib.es2015.proxy.d.ts +91 -2
- package/compiler/lib.es2017.intl.d.ts +16 -1
- package/compiler/lib.es2020.intl.d.ts +30 -5
- package/compiler/lib.es2021.intl.d.ts +11 -3
- package/compiler/lib.es2022.d.ts +1 -0
- package/compiler/lib.es2022.error.d.ts +2 -2
- package/compiler/lib.es2022.sharedmemory.d.ts +27 -0
- package/compiler/lib.es5.d.ts +13 -1
- package/compiler/lib.esnext.intl.d.ts +5 -1
- package/compiler/lib.webworker.d.ts +56 -29
- package/compiler/lib.webworker.iterable.d.ts +1 -1
- package/compiler/package.json +1 -1
- package/compiler/stencil.js +30456 -30383
- package/compiler/stencil.min.js +2 -2
- package/dependencies.json +2 -1
- package/dev-server/client/index.js +1 -1
- package/dev-server/client/package.json +1 -1
- package/dev-server/connector.html +2 -2
- package/dev-server/index.js +1 -1
- package/dev-server/package.json +1 -1
- package/dev-server/server-process.js +2 -2
- package/internal/app-data/package.json +1 -1
- package/internal/client/css-shim.js +1 -1
- package/internal/client/dom.js +1 -1
- package/internal/client/index.js +1 -1
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +1 -1
- package/internal/client/patch-esm.js +1 -1
- package/internal/client/shadow-css.js +1 -1
- package/internal/hydrate/package.json +1 -1
- package/internal/hydrate/runner.d.ts +1 -1
- package/internal/package.json +1 -1
- package/internal/testing/package.json +1 -1
- package/mock-doc/index.cjs +6 -6
- package/mock-doc/index.js +6 -6
- package/mock-doc/package.json +1 -1
- package/package.json +14 -14
- package/screenshot/package.json +1 -1
- package/sys/node/index.js +1 -1
- package/sys/node/package.json +1 -1
- package/sys/node/worker.js +1 -1
- package/testing/index.js +13 -11
- package/testing/package.json +1 -1
package/cli/index.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil CLI (CommonJS) v2.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
1081
|
+
version: "4.8.4",
|
|
1081
1082
|
main: "lib/typescript.js"
|
|
1082
1083
|
}
|
|
1083
1084
|
];
|