@stencil/core 4.36.3 → 4.37.0-dev.1757998932.d7ee800
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 +6 -1
- package/cli/index.js +6 -1
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/stencil.js +1153 -858
- 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 +7 -2
- package/internal/app-data/package.json +1 -1
- package/internal/app-globals/package.json +1 -1
- package/internal/client/index.js +41 -15
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +1 -1
- package/internal/hydrate/index.js +45 -19
- package/internal/hydrate/package.json +1 -1
- package/internal/hydrate/runner.js +8 -2
- package/internal/package.json +1 -1
- package/internal/stencil-core/index.d.ts +1 -0
- package/internal/stencil-core/index.js +1 -0
- package/internal/stencil-private.d.ts +3 -0
- package/internal/stencil-public-runtime.d.ts +21 -0
- package/internal/testing/index.js +19 -3
- 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 +2 -2
- package/screenshot/index.js +6 -1
- package/screenshot/package.json +1 -1
- package/screenshot/pixel-match.js +1 -1
- package/sys/node/index.js +25 -25
- package/sys/node/package.json +1 -1
- package/sys/node/worker.js +1 -1
- package/testing/index.js +3 -1
- 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.37.0-dev.1757998932.d7ee800 | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
"use strict";
|
|
5
5
|
var __create = Object.create;
|
|
@@ -2910,6 +2910,11 @@ var _colonHostContextRe = createSupportsRuleRe(":host-context");
|
|
|
2910
2910
|
var CAPTURE_EVENT_SUFFIX = "Capture";
|
|
2911
2911
|
var CAPTURE_EVENT_REGEX = new RegExp(CAPTURE_EVENT_SUFFIX + "$");
|
|
2912
2912
|
|
|
2913
|
+
// src/runtime/mixin.ts
|
|
2914
|
+
var baseClass = BUILD.lazyLoad ? class {
|
|
2915
|
+
} : globalThis.HTMLElement || class {
|
|
2916
|
+
};
|
|
2917
|
+
|
|
2913
2918
|
// src/utils/util.ts
|
|
2914
2919
|
var lowerPathParam = (fn) => (p) => fn(p.toLowerCase());
|
|
2915
2920
|
var isDtsFile = lowerPathParam((p) => p.endsWith(".d.ts") || p.endsWith(".d.mts") || p.endsWith(".d.cts"));
|
package/cli/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil CLI v4.
|
|
2
|
+
Stencil CLI v4.37.0-dev.1757998932.d7ee800 | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
var __create = Object.create;
|
|
5
5
|
var __defProp = Object.defineProperty;
|
|
@@ -2904,6 +2904,11 @@ var _colonHostContextRe = createSupportsRuleRe(":host-context");
|
|
|
2904
2904
|
var CAPTURE_EVENT_SUFFIX = "Capture";
|
|
2905
2905
|
var CAPTURE_EVENT_REGEX = new RegExp(CAPTURE_EVENT_SUFFIX + "$");
|
|
2906
2906
|
|
|
2907
|
+
// src/runtime/mixin.ts
|
|
2908
|
+
var baseClass = BUILD.lazyLoad ? class {
|
|
2909
|
+
} : globalThis.HTMLElement || class {
|
|
2910
|
+
};
|
|
2911
|
+
|
|
2907
2912
|
// src/utils/util.ts
|
|
2908
2913
|
var lowerPathParam = (fn) => (p) => fn(p.toLowerCase());
|
|
2909
2914
|
var isDtsFile = lowerPathParam((p) => p.endsWith(".d.ts") || p.endsWith(".d.mts") || p.endsWith(".d.cts"));
|
package/cli/package.json
CHANGED