@arcgis/lumina-compiler 4.32.0-next.98 → 4.32.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/LICENSE.md +1 -1
- package/README.md +1 -1
- package/dist/extractor/extractor.d.ts +2 -2
- package/dist/index.js +65 -66
- package/dist/jsxToLitHtml/types.d.ts +1 -0
- package/dist/plugins/buildCdn.d.ts +0 -1
- package/dist/publicTypes.d.ts +13 -7
- package/dist/puppeteerTesting/index.js +3 -3
- package/dist/testing/index.js +4 -4
- package/package.json +5 -5
package/LICENSE.md
CHANGED
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ It is not intended to be used directly, but rather used as a dependency by other
|
|
|
8
8
|
|
|
9
9
|
## License
|
|
10
10
|
|
|
11
|
-
COPYRIGHT ©
|
|
11
|
+
COPYRIGHT © 2025 Esri
|
|
12
12
|
|
|
13
13
|
All rights reserved under the copyright laws of the United States and applicable international laws, treaties, and conventions.
|
|
14
14
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import ts from "typescript";
|
|
2
2
|
import { ApiExtractor } from "@arcgis/api-extractor";
|
|
3
|
-
import type { ApiAttribute, ApiClassMethod, ApiCustomElementDeclaration, ApiCustomElementField, ApiCustomElementMember, ApiDeclaration, ApiEvent, ApiExport, ApiJson, ApiModule } from "@arcgis/api-extractor";
|
|
3
|
+
import type { ApiAttribute, ApiClassMethod, ApiCustomElementDeclaration, ApiCustomElementField, ApiCustomElementMember, ApiDeclaration, ApiEvent, ApiExport, ApiJson, ApiModule, ApiReference } from "@arcgis/api-extractor";
|
|
4
4
|
import type { CompilerContext } from "../context";
|
|
5
5
|
export declare class LuminaApiExtractor extends ApiExtractor {
|
|
6
6
|
context: CompilerContext;
|
|
@@ -44,7 +44,7 @@ export declare class LuminaApiExtractor extends ApiExtractor {
|
|
|
44
44
|
* needs to be in a a file named like a component
|
|
45
45
|
* (src/components/name/name.tsx), even if it is not a standalone component.
|
|
46
46
|
*/
|
|
47
|
-
protected inheritMembers(component: ApiCustomElementDeclaration, modules: ApiModule[], existingMembers?: Set<string>, existingAttributes?: Set<string>, existingEvents?: Set<string>): void;
|
|
47
|
+
protected inheritMembers(component: ApiCustomElementDeclaration, modules: ApiModule[], superClass?: ApiReference, existingMembers?: Set<string>, existingAttributes?: Set<string>, existingEvents?: Set<string>): void;
|
|
48
48
|
private _resolvedInheritance;
|
|
49
49
|
/**
|
|
50
50
|
* Based on the superclass name, find the actual declaration in the modules.
|