@arcgis/lumina-compiler 4.32.0-next.2 → 4.32.0-next.3
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/utils.d.ts +1 -1
- package/dist/dependencies/updateLumina.d.ts +2 -2
- package/dist/entrypoints/dtsUtils.d.ts +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.js +84 -84
- package/dist/jsxToLitHtml/autoAddNothing.d.ts +1 -1
- package/dist/jsxToLitHtml/config.d.ts +18 -40
- package/dist/jsxToLitHtml/convertProps.d.ts +2 -1
- package/dist/jsxToLitHtml/inferPropType.d.ts +1 -1
- package/dist/jsxToLitHtml/insertRepeatCall.d.ts +1 -0
- package/dist/jsxToLitHtml/jsxVisitor.d.ts +7 -1
- package/dist/jsxToLitHtml/types.d.ts +1 -1
- package/dist/plugins/updatePackageJson.d.ts +1 -1
- package/dist/puppeteerTesting/index.js +3 -3
- package/package.json +8 -8
- package/dist/chunk-BQ4U6HQL.js +0 -1
- package/dist/utils/packageJson.d.ts +0 -24
- package/dist/utils/path.d.ts +0 -25
- package/dist/utils/path.spec.d.ts +0 -1
package/dist/context/utils.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export declare function loadTypeScriptConfig(tsConfigPath?: string): {
|
|
|
10
10
|
readonly path: string;
|
|
11
11
|
readonly config: ts.ParsedCommandLine;
|
|
12
12
|
};
|
|
13
|
-
export declare function inferPreamble(packageJson?: import("
|
|
13
|
+
export declare function inferPreamble(packageJson?: import("@arcgis/components-build-utils").MiniPackageJson): string;
|
|
14
14
|
export declare const preambleToComment: (preamble: string) => string;
|
|
15
15
|
export declare const throwOnReadBeforeSet: (createdDuring: string) => PropertyDecorator;
|
|
16
16
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ResolvedDependencyComponents } from "./discover";
|
|
2
2
|
import type { BrowserConfigOptions } from "vitest/node";
|
|
3
|
-
export declare function updateLuminaTs(dependencies: readonly ResolvedDependencyComponents[], srcDir: string, hasCore: boolean, browserProvider?: BrowserConfigOptions["provider"], packageJson?: import("
|
|
4
|
-
declare function produceLuminaTs(dependencies: readonly ResolvedDependencyComponents[], hasCore: boolean, browserProvider?: BrowserConfigOptions["provider"], packageJson?: import("
|
|
3
|
+
export declare function updateLuminaTs(dependencies: readonly ResolvedDependencyComponents[], srcDir: string, hasCore: boolean, browserProvider?: BrowserConfigOptions["provider"], packageJson?: import("@arcgis/components-build-utils").MiniPackageJson): Promise<void>;
|
|
4
|
+
declare function produceLuminaTs(dependencies: readonly ResolvedDependencyComponents[], hasCore: boolean, browserProvider?: BrowserConfigOptions["provider"], packageJson?: import("@arcgis/components-build-utils").MiniPackageJson): string;
|
|
5
5
|
export declare const exportsForTests: {
|
|
6
6
|
produceLuminaTs: typeof produceLuminaTs;
|
|
7
7
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { DeclarationTextTransformer } from "../publicTypes";
|
|
2
|
-
import { path } from "
|
|
2
|
+
import { path } from "@arcgis/components-build-utils";
|
|
3
3
|
import type { CompilerContext } from "../context";
|
|
4
4
|
export declare const rewriteDtsComponentFileNames: DeclarationTextTransformer;
|
|
5
5
|
export declare const rePath: RegExp;
|
package/dist/index.d.ts
CHANGED
|
@@ -15,9 +15,8 @@ export declare const exportsForCodemod: {
|
|
|
15
15
|
initializeComponentDependencies: typeof initializeComponentDependencies;
|
|
16
16
|
updateLuminaTs: typeof updateLuminaTs;
|
|
17
17
|
propertyToAttributeMappings: {
|
|
18
|
-
readonly common: import("./jsxToLitHtml/config").ElementPropertyToAttributeMappings
|
|
18
|
+
readonly common: Required<import("./jsxToLitHtml/config").ElementPropertyToAttributeMappings>;
|
|
19
19
|
readonly perElement: Record<string, import("./jsxToLitHtml/config").ElementPropertyToAttributeMappings | undefined>;
|
|
20
|
-
readonly ambiguousReflectedProperties: ["value", "defaultValue"];
|
|
21
20
|
};
|
|
22
21
|
findDeclaredComponents: typeof findDeclaredComponents;
|
|
23
22
|
nativeEvents: Set<string>;
|