@arcgis/lumina-compiler 4.34.0-next.133 → 4.34.0-next.135
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/dist/context/index.d.ts +5 -0
- package/dist/dependencies/discover.d.ts +2 -1
- package/dist/dependencies/testSetupFiles.d.ts +1 -0
- package/dist/entrypoints/resolveTagName.d.ts +1 -1
- package/dist/frameworkTypes/preact.d.ts +1 -0
- package/dist/frameworkTypes/preact10.d.ts +10 -0
- package/dist/index.js +1213 -1162
- package/dist/loader/index.d.ts +1 -1
- package/dist/loader/lazy.d.ts +1 -1
- package/package.json +5 -5
package/dist/loader/index.d.ts
CHANGED
|
@@ -10,4 +10,4 @@ import { CompilerContext } from '../context';
|
|
|
10
10
|
* The generated api.json is then used by componentTransformPipeline() and by
|
|
11
11
|
* generateDocs(), among others.
|
|
12
12
|
*/
|
|
13
|
-
export declare function generateVirtualFiles(context: CompilerContext): VitePlugin;
|
|
13
|
+
export declare function generateVirtualFiles(context: CompilerContext): readonly [VitePlugin, VitePlugin];
|
package/dist/loader/lazy.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare const loaderDts = "import \"./index\";\nexport declare const defi
|
|
|
15
15
|
* properties, attributes, asynchronous methods and synchronous methods.
|
|
16
16
|
*/
|
|
17
17
|
declare function buildCompactLazyMeta(customElement: Pick<ApiCustomElementDeclaration, "members" | "tagName">): string;
|
|
18
|
-
export declare function
|
|
18
|
+
export declare function buildLazyMeta(customElement: Pick<ApiCustomElementDeclaration, "members" | "tagName">): HmrComponentMeta;
|
|
19
19
|
export declare const exportsForTests: {
|
|
20
20
|
buildCompactLazyMeta: typeof buildCompactLazyMeta;
|
|
21
21
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/lumina-compiler",
|
|
3
|
-
"version": "4.34.0-next.
|
|
3
|
+
"version": "4.34.0-next.135",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
],
|
|
19
19
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@arcgis/api-extractor": "4.34.0-next.
|
|
22
|
-
"@arcgis/components-build-utils": "4.34.0-next.
|
|
23
|
-
"@arcgis/toolkit": "~4.34.0-next.
|
|
21
|
+
"@arcgis/api-extractor": "4.34.0-next.135",
|
|
22
|
+
"@arcgis/components-build-utils": "4.34.0-next.135",
|
|
23
|
+
"@arcgis/toolkit": "~4.34.0-next.135",
|
|
24
24
|
"chalk": "^5.4.1",
|
|
25
25
|
"esbuild": "^0.25.5",
|
|
26
26
|
"glob": "^11.0.3",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"vite-plugin-dts": "^4.5.4"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@arcgis/lumina": "~4.34.0-next.
|
|
33
|
+
"@arcgis/lumina": "~4.34.0-next.135",
|
|
34
34
|
"lit": "^3.3.0",
|
|
35
35
|
"typescript": "~5.8.3",
|
|
36
36
|
"vite": "^7.0.0",
|