@stencil/core 4.38.3 → 4.39.0-dev.1765343168.3771af0
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 +2 -1
- package/cli/index.js +2 -1
- package/cli/package.json +1 -1
- package/compiler/lib.dom.d.ts +4826 -14645
- package/compiler/lib.dom.iterable.d.ts +25 -103
- package/compiler/lib.es2015.symbol.wellknown.d.ts +1 -1
- package/compiler/lib.es2017.sharedmemory.d.ts +1 -1
- package/compiler/lib.es2022.intl.d.ts +1 -25
- package/compiler/lib.es5.d.ts +2 -9
- package/compiler/lib.esnext.d.ts +0 -2
- package/compiler/lib.esnext.float16.d.ts +0 -2
- package/compiler/lib.webworker.d.ts +1342 -4598
- package/compiler/lib.webworker.iterable.d.ts +19 -72
- package/compiler/package.json +1 -1
- package/compiler/stencil.js +23984 -14073
- 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 +6 -5
- package/internal/app-data/index.cjs +1 -0
- package/internal/app-data/index.js +1 -0
- package/internal/app-data/package.json +1 -1
- package/internal/app-globals/package.json +1 -1
- package/internal/client/index.js +29 -5
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +1 -1
- package/internal/hydrate/index.js +35 -5
- package/internal/hydrate/package.json +1 -1
- package/internal/hydrate/runner.d.ts +12 -0
- package/internal/hydrate/runner.js +1357 -1330
- package/internal/package.json +1 -1
- package/internal/stencil-core/index.d.ts +2 -0
- package/internal/stencil-private.d.ts +3 -0
- package/internal/stencil-public-compiler.d.ts +13 -0
- package/internal/stencil-public-runtime.d.ts +43 -0
- package/internal/testing/index.js +30 -4
- package/internal/testing/package.json +1 -1
- package/mock-doc/index.cjs +226 -226
- package/mock-doc/index.js +226 -226
- package/mock-doc/package.json +1 -1
- package/package.json +6 -3
- package/screenshot/index.js +2 -1
- package/screenshot/package.json +1 -1
- package/screenshot/pixel-match.js +3 -3
- package/sys/node/autoprefixer.js +2 -2
- package/sys/node/glob.js +1 -1
- package/sys/node/index.js +18 -18
- package/sys/node/node-fetch.js +1 -1
- package/sys/node/package.json +1 -1
- package/sys/node/worker.js +1 -1
- package/testing/index.js +35 -7
- package/testing/package.json +1 -1
- package/testing/puppeteer/puppeteer-browser.d.ts +1 -1
- package/compiler/lib.esnext.error.d.ts +0 -24
- package/compiler/lib.esnext.sharedmemory.d.ts +0 -25
package/cli/index.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil CLI (CommonJS) v4.
|
|
2
|
+
Stencil CLI (CommonJS) v4.39.0-dev.1765343168.3771af0 | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
"use strict";
|
|
5
5
|
var __create = Object.create;
|
|
@@ -2839,6 +2839,7 @@ var BUILD = {
|
|
|
2839
2839
|
initializeNextTick: false,
|
|
2840
2840
|
asyncLoading: true,
|
|
2841
2841
|
asyncQueue: false,
|
|
2842
|
+
// TODO: deprecated in favour of `setTagTransformer` and `transformTag`. Remove in 5.0
|
|
2842
2843
|
transformTagName: false,
|
|
2843
2844
|
attachStyles: true,
|
|
2844
2845
|
// TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
|
package/cli/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil CLI v4.
|
|
2
|
+
Stencil CLI v4.39.0-dev.1765343168.3771af0 | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
var __create = Object.create;
|
|
5
5
|
var __defProp = Object.defineProperty;
|
|
@@ -2833,6 +2833,7 @@ var BUILD = {
|
|
|
2833
2833
|
initializeNextTick: false,
|
|
2834
2834
|
asyncLoading: true,
|
|
2835
2835
|
asyncQueue: false,
|
|
2836
|
+
// TODO: deprecated in favour of `setTagTransformer` and `transformTag`. Remove in 5.0
|
|
2836
2837
|
transformTagName: false,
|
|
2837
2838
|
attachStyles: true,
|
|
2838
2839
|
// TODO(STENCIL-914): remove this option when `experimentalSlotFixes` is the default behavior
|