@stencil/core 4.27.2 → 4.28.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 +1 -1
- package/cli/index.js +1 -1
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/stencil.js +27825 -32582
- package/dev-server/client/index.js +1 -1
- package/dev-server/client/package.json +1 -1
- package/dev-server/connector.html +3 -3
- 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/index.js +1 -1
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +1 -1
- package/internal/hydrate/index.js +1 -1
- package/internal/hydrate/package.json +1 -1
- package/internal/hydrate/runner.js +290 -396
- package/internal/package.json +1 -1
- package/internal/stencil-public-compiler.d.ts +1 -1
- package/internal/stencil-public-runtime.d.ts +1 -0
- package/internal/testing/package.json +1 -1
- package/mock-doc/index.cjs +1439 -1530
- package/mock-doc/index.js +1439 -1530
- package/mock-doc/package.json +1 -1
- package/package.json +12 -8
- package/screenshot/index.js +1 -1
- package/screenshot/package.json +1 -1
- package/screenshot/pixel-match.js +1 -1
- package/sys/node/autoprefixer.js +2 -2
- package/sys/node/index.js +1 -1
- 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 +1 -1
- package/testing/package.json +1 -1
package/internal/package.json
CHANGED
|
@@ -1239,7 +1239,7 @@ export interface ResolveModuleIdOptions {
|
|
|
1239
1239
|
moduleId: string;
|
|
1240
1240
|
containingFile?: string;
|
|
1241
1241
|
exts?: string[];
|
|
1242
|
-
packageFilter?: (pkg: any) =>
|
|
1242
|
+
packageFilter?: (pkg: any, pkgFile: string) => any;
|
|
1243
1243
|
}
|
|
1244
1244
|
export interface ResolveModuleIdResults {
|
|
1245
1245
|
moduleId: string;
|
|
@@ -826,6 +826,7 @@ export declare namespace JSXBase {
|
|
|
826
826
|
}
|
|
827
827
|
interface DetailsHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
828
828
|
open?: boolean;
|
|
829
|
+
name?: string;
|
|
829
830
|
onToggle?: (event: Event) => void;
|
|
830
831
|
}
|
|
831
832
|
interface DelHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stencil/core/internal/testing",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.28.0",
|
|
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
|