@arcgis/api-extractor 4.32.0-next.13 → 4.32.0-next.130
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/README.md +1 -1
- package/dist/apiJson.d.ts +17 -8
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
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
|
|
package/dist/apiJson.d.ts
CHANGED
|
@@ -206,6 +206,12 @@ export type ApiReference = {
|
|
|
206
206
|
* @example "interfaces.d.ts"
|
|
207
207
|
*/
|
|
208
208
|
module?: string;
|
|
209
|
+
/**
|
|
210
|
+
* A URL to see user-friendly documentation for the type.
|
|
211
|
+
*
|
|
212
|
+
* @example "https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html"
|
|
213
|
+
*/
|
|
214
|
+
viewUrl?: string;
|
|
209
215
|
};
|
|
210
216
|
/**
|
|
211
217
|
* A reference to the source of a declaration or member.
|
|
@@ -250,6 +256,16 @@ export type ApiCustomElementDeclaration = ApiClassDeclaration & {
|
|
|
250
256
|
* @example "arcgis-counter"
|
|
251
257
|
*/
|
|
252
258
|
tagName: string;
|
|
259
|
+
/**
|
|
260
|
+
* Tag name converted to PascalCase.
|
|
261
|
+
* The interfaces for the custom element are based on this name.
|
|
262
|
+
*
|
|
263
|
+
* @example "ArcgisCounter" (even if class name is `Counter`)
|
|
264
|
+
*
|
|
265
|
+
* @remarks
|
|
266
|
+
* Not present in vanilla custom-elements-manifest.
|
|
267
|
+
*/
|
|
268
|
+
pascalCaseName: string;
|
|
253
269
|
members: ApiCustomElementMember[];
|
|
254
270
|
superclass: ApiReference;
|
|
255
271
|
/**
|
|
@@ -297,13 +313,6 @@ export type ApiCustomElementDeclaration = ApiClassDeclaration & {
|
|
|
297
313
|
* Not present in vanilla custom-elements-manifest.
|
|
298
314
|
*/
|
|
299
315
|
encapsulation?: "none" | "shadow";
|
|
300
|
-
/**
|
|
301
|
-
* @example "HTMLArcgisCounterElement"
|
|
302
|
-
*
|
|
303
|
-
* @remarks
|
|
304
|
-
* Not present in vanilla custom-elements-manifest.
|
|
305
|
-
*/
|
|
306
|
-
typeName: string;
|
|
307
316
|
};
|
|
308
317
|
/**
|
|
309
318
|
* A descriptor for a single JSDoc tag found in a block comment.
|
|
@@ -388,7 +397,7 @@ export type ApiEvent = {
|
|
|
388
397
|
/**
|
|
389
398
|
* The type of the event object that's fired.
|
|
390
399
|
*/
|
|
391
|
-
type:
|
|
400
|
+
type: ApiType;
|
|
392
401
|
inheritedFrom?: ApiReference;
|
|
393
402
|
/**
|
|
394
403
|
* Whether the event is deprecated.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { ApiExtractor, type ApiExtractorOptions } from "./extractor";
|
|
2
|
-
export * from "./apiJson";
|
|
2
|
+
export type * from "./apiJson";
|
|
3
3
|
export { hasIgnoredModifier, setDefaultFromInitializer, getMemberName } from "./utils/astHelpers";
|
|
4
4
|
export { isApiMethod, isApiProperty, globalPackageIdentifier } from "./utils/apiHelpers";
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/api-extractor",
|
|
3
|
-
"version": "4.32.0-next.
|
|
3
|
+
"version": "4.32.0-next.130",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
],
|
|
15
15
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@arcgis/components-build-utils": "4.32.0-next.
|
|
18
|
-
"@arcgis/components-utils": "4.32.0-next.
|
|
17
|
+
"@arcgis/components-build-utils": "4.32.0-next.130",
|
|
18
|
+
"@arcgis/components-utils": "4.32.0-next.130",
|
|
19
19
|
"tslib": "^2.7.0",
|
|
20
20
|
"typescript": "~5.6.3"
|
|
21
21
|
}
|