@arcgis/api-extractor 4.32.0-next.24 → 4.32.0-next.25
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/apiJson.d.ts +10 -7
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/apiJson.d.ts
CHANGED
|
@@ -250,6 +250,16 @@ export type ApiCustomElementDeclaration = ApiClassDeclaration & {
|
|
|
250
250
|
* @example "arcgis-counter"
|
|
251
251
|
*/
|
|
252
252
|
tagName: string;
|
|
253
|
+
/**
|
|
254
|
+
* Tag name converted to PascalCase.
|
|
255
|
+
* The interfaces for the custom element are based on this name.
|
|
256
|
+
*
|
|
257
|
+
* @example "ArcgisCounter" (even if class name is `Counter`)
|
|
258
|
+
*
|
|
259
|
+
* @remarks
|
|
260
|
+
* Not present in vanilla custom-elements-manifest.
|
|
261
|
+
*/
|
|
262
|
+
pascalCaseName: string;
|
|
253
263
|
members: ApiCustomElementMember[];
|
|
254
264
|
superclass: ApiReference;
|
|
255
265
|
/**
|
|
@@ -297,13 +307,6 @@ export type ApiCustomElementDeclaration = ApiClassDeclaration & {
|
|
|
297
307
|
* Not present in vanilla custom-elements-manifest.
|
|
298
308
|
*/
|
|
299
309
|
encapsulation?: "none" | "shadow";
|
|
300
|
-
/**
|
|
301
|
-
* @example "HTMLArcgisCounterElement"
|
|
302
|
-
*
|
|
303
|
-
* @remarks
|
|
304
|
-
* Not present in vanilla custom-elements-manifest.
|
|
305
|
-
*/
|
|
306
|
-
typeName: string;
|
|
307
310
|
};
|
|
308
311
|
/**
|
|
309
312
|
* A descriptor for a single JSDoc tag found in a block comment.
|
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.25",
|
|
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.25",
|
|
18
|
+
"@arcgis/components-utils": "4.32.0-next.25",
|
|
19
19
|
"tslib": "^2.7.0",
|
|
20
20
|
"typescript": "~5.6.3"
|
|
21
21
|
}
|