@arcgis/lumina-compiler 4.34.0-next.67 → 4.34.0-next.69
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/index.js +497 -488
- package/dist/jsxToLitHtml/types.d.ts +1 -1
- package/dist/publicTypes.d.ts +23 -1
- package/package.json +5 -5
|
@@ -65,7 +65,7 @@ export declare const mathMlTag = "mathml";
|
|
|
65
65
|
declare const litTagsArray: readonly ["css", "html", "mathml", "staticHtml", "staticSvg", "svg"];
|
|
66
66
|
export declare const litTags: Set<"html" | "css" | "mathml" | "staticHtml" | "staticSvg" | "svg">;
|
|
67
67
|
export type LitTag = (typeof litTagsArray)[number];
|
|
68
|
-
export declare const jsxImportNames: readonly ["keyed", "ref", "repeat", "live", "css", "html", "mathml", "staticHtml", "staticSvg", "svg", "safeClassMap", "safeStyleMap", "deferLoad", "nothing"];
|
|
68
|
+
export declare const jsxImportNames: readonly ["keyed", "ref", "repeat", "live", "css", "html", "mathml", "staticHtml", "staticSvg", "svg", "safeClassMap", "safeStyleMap", "deferLoad", "stabilizedRef", "nothing"];
|
|
69
69
|
export type JsxImportName = (typeof jsxImportNames)[number];
|
|
70
70
|
export type JsxHost = ts.JsxElement | ts.JsxFragment | ts.JsxSelfClosingElement;
|
|
71
71
|
export declare const isJsxHost: (node: ts.Node) => node is JsxHost;
|
package/dist/publicTypes.d.ts
CHANGED
|
@@ -64,6 +64,9 @@ export type LuminaOptions = {
|
|
|
64
64
|
*/
|
|
65
65
|
readonly assets?: AssetHandlingOptions;
|
|
66
66
|
readonly linting?: LintingOptions;
|
|
67
|
+
readonly experimental?: {
|
|
68
|
+
readonly stabilizeRef?: boolean;
|
|
69
|
+
};
|
|
67
70
|
};
|
|
68
71
|
export type BuildOptions = {
|
|
69
72
|
/**
|
|
@@ -232,7 +235,11 @@ export type ServeEnvironmentOptions = {
|
|
|
232
235
|
export type DetailedExtraDependency = {
|
|
233
236
|
/** @example "@arcgis/map-config-components" */
|
|
234
237
|
name: string;
|
|
235
|
-
/**
|
|
238
|
+
/**
|
|
239
|
+
* Overwrite the default CDN asset path for this dependency.
|
|
240
|
+
*
|
|
241
|
+
* @example (): string => `https://example.com/arcgis-components/builds/main/cdn/map-config-components/`
|
|
242
|
+
*/
|
|
236
243
|
getCdnUrl: (context: CompilerContext) => string;
|
|
237
244
|
};
|
|
238
245
|
export type PuppeteerTestingOptions = {
|
|
@@ -554,6 +561,21 @@ export type AssetHandlingOptions = {
|
|
|
554
561
|
* Any additional assets you wish to provide, besides those located in the
|
|
555
562
|
* assets/ directories
|
|
556
563
|
*
|
|
564
|
+
* @example
|
|
565
|
+
* ```ts
|
|
566
|
+
* import resolvePkg from "resolve-pkg";
|
|
567
|
+
*
|
|
568
|
+
* // ...
|
|
569
|
+
*
|
|
570
|
+
* extra: [
|
|
571
|
+
* {
|
|
572
|
+
* type: "directory",
|
|
573
|
+
* source: resolvePkg("@arcgis/arcade-sdk/dist/arcgis-arcade-editor")!,
|
|
574
|
+
* destination: "arcade-language",
|
|
575
|
+
* },
|
|
576
|
+
* ]
|
|
577
|
+
* ```
|
|
578
|
+
*
|
|
557
579
|
* @remarks
|
|
558
580
|
* If you need additional flexibility, you can call the
|
|
559
581
|
* `compilerContext.provideAssets()` utility at any time
|
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.69",
|
|
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.69",
|
|
22
|
+
"@arcgis/components-build-utils": "4.34.0-next.69",
|
|
23
|
+
"@arcgis/toolkit": "4.34.0-next.69",
|
|
24
24
|
"chalk": "^5.4.1",
|
|
25
25
|
"esbuild": "^0.25.5",
|
|
26
26
|
"glob": "^11.0.3",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"vitest-fail-on-console": "^0.7.1"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@arcgis/lumina": "~4.34.0-next.
|
|
34
|
+
"@arcgis/lumina": "~4.34.0-next.69",
|
|
35
35
|
"lit": "^3.3.0",
|
|
36
36
|
"typescript": "~5.8.3",
|
|
37
37
|
"vite": "^7.0.0",
|