@stencil/core 4.38.2 → 4.38.3-dev.1762459485.1816def
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 +1 -1
- package/cli/index.js +1 -1
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/stencil.js +34 -17
- 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/app-globals/package.json +1 -1
- package/internal/client/index.js +7 -8
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +1 -1
- package/internal/hydrate/index.js +2 -2
- package/internal/hydrate/package.json +1 -1
- package/internal/hydrate/runner.js +4 -4
- package/internal/package.json +1 -1
- package/internal/stencil-private.d.ts +0 -1
- package/internal/stencil-public-runtime.d.ts +1 -1
- 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 +1 -1
- package/screenshot/package.json +1 -1
- package/screenshot/pixel-match.js +1 -1
- package/sys/node/index.js +26 -26
- package/sys/node/package.json +1 -1
- package/sys/node/worker.js +1 -1
- package/testing/index.js +4 -2
- package/testing/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Stencil Hydrate Runner v4.38.
|
|
2
|
+
Stencil Hydrate Runner v4.38.3-dev.1762459485.1816def | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
5
5
|
var __export = (target, all) => {
|
|
@@ -14164,9 +14164,6 @@ var Build = {
|
|
|
14164
14164
|
// src/client/client-host-ref.ts
|
|
14165
14165
|
import { BUILD as BUILD3 } from "@stencil/core/internal/app-data";
|
|
14166
14166
|
|
|
14167
|
-
// src/utils/es2022-rewire-class-members.ts
|
|
14168
|
-
import { BUILD as BUILD2 } from "@stencil/core/internal/app-data";
|
|
14169
|
-
|
|
14170
14167
|
// src/utils/constants.ts
|
|
14171
14168
|
var PrimitiveType = /* @__PURE__ */ ((PrimitiveType2) => {
|
|
14172
14169
|
PrimitiveType2["Undefined"] = "undefined";
|
|
@@ -14193,6 +14190,9 @@ var TYPE_CONSTANT = "type";
|
|
|
14193
14190
|
var VALUE_CONSTANT = "value";
|
|
14194
14191
|
var SERIALIZED_PREFIX = "serialized:";
|
|
14195
14192
|
|
|
14193
|
+
// src/utils/es2022-rewire-class-members.ts
|
|
14194
|
+
import { BUILD as BUILD2 } from "@stencil/core/internal/app-data";
|
|
14195
|
+
|
|
14196
14196
|
// src/client/client-load-module.ts
|
|
14197
14197
|
import { BUILD as BUILD5 } from "@stencil/core/internal/app-data";
|
|
14198
14198
|
|
package/internal/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stencil/core/internal",
|
|
3
|
-
"version": "4.38.
|
|
3
|
+
"version": "4.38.3-dev.1762459485.1816def",
|
|
4
4
|
"description": "Stencil internals only to be imported by the Stencil Compiler. Breaking changes can and will happen at any time.",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -105,7 +105,6 @@ export interface BuildFeatures {
|
|
|
105
105
|
observeAttribute: boolean;
|
|
106
106
|
reflect: boolean;
|
|
107
107
|
taskQueue: boolean;
|
|
108
|
-
modernPropertyDecls: boolean;
|
|
109
108
|
}
|
|
110
109
|
export interface BuildConditionals extends Partial<BuildFeatures> {
|
|
111
110
|
hotModuleReplacement?: boolean;
|
|
@@ -339,7 +339,7 @@ export declare function forceUpdate(ref: any): void;
|
|
|
339
339
|
* @returns the rendering ref
|
|
340
340
|
*/
|
|
341
341
|
export declare function getRenderingRef(): any;
|
|
342
|
-
export interface HTMLStencilElement extends
|
|
342
|
+
export interface HTMLStencilElement extends HTMLElement {
|
|
343
343
|
componentOnReady(): Promise<this>;
|
|
344
344
|
}
|
|
345
345
|
/**
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stencil/core/internal/testing",
|
|
3
|
-
"version": "4.38.
|
|
3
|
+
"version": "4.38.3-dev.1762459485.1816def",
|
|
4
4
|
"description": "Stencil internal testing platform to be imported by the Stencil Compiler. Breaking changes can and will happen at any time.",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"private": true
|
package/mock-doc/index.cjs
CHANGED
package/mock-doc/index.js
CHANGED
package/mock-doc/package.json
CHANGED
package/package.json
CHANGED
package/screenshot/index.js
CHANGED
package/screenshot/package.json
CHANGED