@stencil/core 4.37.1 → 4.38.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 +2 -2
- package/cli/index.js +2 -2
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/stencil.js +337 -169
- 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 +3 -3
- package/internal/app-data/index.cjs +1 -1
- package/internal/app-data/index.js +1 -1
- package/internal/app-data/package.json +1 -1
- package/internal/app-globals/package.json +1 -1
- package/internal/client/index.js +95 -46
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +1 -1
- package/internal/hydrate/index.js +116 -64
- package/internal/hydrate/package.json +1 -1
- package/internal/hydrate/runner.d.ts +2 -0
- package/internal/hydrate/runner.js +1 -1
- package/internal/package.json +1 -1
- package/internal/stencil-core/index.d.ts +2 -0
- package/internal/stencil-private.d.ts +33 -8
- package/internal/stencil-public-compiler.d.ts +5 -0
- package/internal/stencil-public-runtime.d.ts +16 -2
- package/internal/testing/index.js +91 -44
- package/internal/testing/package.json +1 -1
- package/mock-doc/index.cjs +1 -1
- package/mock-doc/index.js +1 -1
- package/mock-doc/package.json +1 -1
- package/package.json +1 -1
- package/screenshot/index.js +2 -2
- package/screenshot/package.json +1 -1
- package/screenshot/pixel-match.js +1 -1
- package/sys/node/index.js +34 -34
- package/sys/node/package.json +1 -1
- package/sys/node/worker.js +1 -1
- package/testing/index.js +22 -12
- package/testing/package.json +1 -1
package/cli/index.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil CLI (CommonJS) v4.
|
|
2
|
+
Stencil CLI (CommonJS) v4.38.0 | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
"use strict";
|
|
5
5
|
var __create = Object.create;
|
|
@@ -2803,7 +2803,7 @@ var BUILD = {
|
|
|
2803
2803
|
vdomRender: true,
|
|
2804
2804
|
vdomStyle: true,
|
|
2805
2805
|
vdomText: true,
|
|
2806
|
-
|
|
2806
|
+
propChangeCallback: true,
|
|
2807
2807
|
taskQueue: true,
|
|
2808
2808
|
hotModuleReplacement: false,
|
|
2809
2809
|
isDebug: false,
|
package/cli/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil CLI v4.
|
|
2
|
+
Stencil CLI v4.38.0 | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
var __create = Object.create;
|
|
5
5
|
var __defProp = Object.defineProperty;
|
|
@@ -2797,7 +2797,7 @@ var BUILD = {
|
|
|
2797
2797
|
vdomRender: true,
|
|
2798
2798
|
vdomStyle: true,
|
|
2799
2799
|
vdomText: true,
|
|
2800
|
-
|
|
2800
|
+
propChangeCallback: true,
|
|
2801
2801
|
taskQueue: true,
|
|
2802
2802
|
hotModuleReplacement: false,
|
|
2803
2803
|
isDebug: false,
|
package/cli/package.json
CHANGED