@arcgis/core-adapter 4.32.0-next.21 → 4.32.0-next.23
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/.turbo/turbo-build.log +16 -10
- package/package.json +1 -1
- package/scripts/update-adapter-typings.ts +8 -0
- package/support/arcgis.d.ts +207 -113
- package/src/.gitkeep +0 -0
- package/support/.gitkeep +0 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
CLI Building entry: src/index.ts
|
|
2
|
+
CLI Using tsconfig: tsconfig.json
|
|
3
|
+
CLI tsup v8.3.5
|
|
4
|
+
CLI Using tsup config: /data/arcgis-web-compoments/actions-runner-1/_work/arcgis-web-components/arcgis-web-components/packages/support-packages/core-adapter/tsup.config.ts
|
|
5
|
+
CLI Target: es2020
|
|
6
|
+
CLI Cleaning output folder
|
|
7
|
+
ESM Build start
|
|
8
|
+
CJS Build start
|
|
9
|
+
CJS dist/index.cjs 621.09 KB
|
|
10
|
+
CJS ⚡️ Build success in 869ms
|
|
11
|
+
ESM dist/index.js 480.78 KB
|
|
12
|
+
ESM ⚡️ Build success in 1001ms
|
|
13
|
+
DTS Build start
|
|
14
|
+
DTS ⚡️ Build success in 12402ms
|
|
15
|
+
DTS dist/index.d.ts 251.40 KB
|
|
16
|
+
DTS dist/index.d.cts 251.40 KB
|
package/package.json
CHANGED
|
@@ -24,6 +24,8 @@ const files = [
|
|
|
24
24
|
},
|
|
25
25
|
];
|
|
26
26
|
|
|
27
|
+
const HttpOK = 200;
|
|
28
|
+
|
|
27
29
|
// Download the typings and support files.
|
|
28
30
|
async function downloadSupportFiles(source: string, destination: string): Promise<void> {
|
|
29
31
|
const file = fs.createWriteStream(destination);
|
|
@@ -33,6 +35,12 @@ async function downloadSupportFiles(source: string, destination: string): Promis
|
|
|
33
35
|
console.log("Downloaded:", source);
|
|
34
36
|
console.log(`Response type: ${resp.headers["content-type"]}`);
|
|
35
37
|
|
|
38
|
+
if (resp.statusCode !== HttpOK) {
|
|
39
|
+
console.error(`Request failed for ${source}:`, resp.statusMessage);
|
|
40
|
+
console.error(`Skipping: ${destination}`);
|
|
41
|
+
resolve(undefined);
|
|
42
|
+
}
|
|
43
|
+
|
|
36
44
|
resp.pipe(file);
|
|
37
45
|
|
|
38
46
|
resp.on("error", (err) => {
|
package/support/arcgis.d.ts
CHANGED
|
@@ -38687,6 +38687,8 @@ declare namespace __esri {
|
|
|
38687
38687
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Sublayer.html#opacity)
|
|
38688
38688
|
*/
|
|
38689
38689
|
opacity: number;
|
|
38690
|
+
|
|
38691
|
+
orderBy: SublayerOrderBy[];
|
|
38690
38692
|
/**
|
|
38691
38693
|
* The parent layer to which the sublayer belongs.
|
|
38692
38694
|
*
|
|
@@ -38932,6 +38934,8 @@ declare namespace __esri {
|
|
|
38932
38934
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Sublayer.html#opacity)
|
|
38933
38935
|
*/
|
|
38934
38936
|
opacity?: number;
|
|
38937
|
+
|
|
38938
|
+
orderBy?: SublayerOrderByProperties[];
|
|
38935
38939
|
/**
|
|
38936
38940
|
* The parent layer to which the sublayer belongs.
|
|
38937
38941
|
*
|
|
@@ -39240,6 +39244,40 @@ declare namespace __esri {
|
|
|
39240
39244
|
feature: Graphic;
|
|
39241
39245
|
}
|
|
39242
39246
|
|
|
39247
|
+
export interface SublayerOrderByProperties {
|
|
39248
|
+
/**
|
|
39249
|
+
* The number or date field whose values will be used to sort features.
|
|
39250
|
+
*
|
|
39251
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Sublayer.html#orderBy)
|
|
39252
|
+
*/
|
|
39253
|
+
field?: string;
|
|
39254
|
+
/**
|
|
39255
|
+
* The sort order.
|
|
39256
|
+
*
|
|
39257
|
+
* @default ascending
|
|
39258
|
+
*
|
|
39259
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Sublayer.html#orderBy)
|
|
39260
|
+
*/
|
|
39261
|
+
order?: "ascending" | "descending";
|
|
39262
|
+
}
|
|
39263
|
+
|
|
39264
|
+
export interface SublayerOrderBy extends AnonymousAccessor {
|
|
39265
|
+
/**
|
|
39266
|
+
* The number or date field whose values will be used to sort features.
|
|
39267
|
+
*
|
|
39268
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Sublayer.html#orderBy)
|
|
39269
|
+
*/
|
|
39270
|
+
field?: string;
|
|
39271
|
+
/**
|
|
39272
|
+
* The sort order.
|
|
39273
|
+
*
|
|
39274
|
+
* @default ascending
|
|
39275
|
+
*
|
|
39276
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Sublayer.html#orderBy)
|
|
39277
|
+
*/
|
|
39278
|
+
order?: "ascending" | "descending";
|
|
39279
|
+
}
|
|
39280
|
+
|
|
39243
39281
|
export interface SublayerQueryAttachmentsOptions {
|
|
39244
39282
|
/**
|
|
39245
39283
|
* Signal object that can be used to abort the asynchronous task.
|
|
@@ -47829,6 +47867,12 @@ declare namespace __esri {
|
|
|
47829
47867
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-networks-UtilityNetwork.html#getTierNames)
|
|
47830
47868
|
*/
|
|
47831
47869
|
getTierNames(domainNetworkName: string): string[];
|
|
47870
|
+
/**
|
|
47871
|
+
* Returns a boolean indicating if the layer is a utility layer belonging to the network.
|
|
47872
|
+
*
|
|
47873
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-networks-UtilityNetwork.html#isUtilityLayer)
|
|
47874
|
+
*/
|
|
47875
|
+
isUtilityLayer(layer: any | any): boolean;
|
|
47832
47876
|
/**
|
|
47833
47877
|
* Returns all associations filtered by the [QueryAssociationsParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-networks-support-QueryAssociationsParameters.html) in a utility network.
|
|
47834
47878
|
*
|
|
@@ -49167,6 +49211,12 @@ declare namespace __esri {
|
|
|
49167
49211
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-content-UtilityNetworkAssociationsContent.html#description)
|
|
49168
49212
|
*/
|
|
49169
49213
|
description: string;
|
|
49214
|
+
/**
|
|
49215
|
+
* A numeric value indicating the maximum number of features to display in the list of associated features per layer.
|
|
49216
|
+
*
|
|
49217
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-content-UtilityNetworkAssociationsContent.html#displayCount)
|
|
49218
|
+
*/
|
|
49219
|
+
displayCount: number;
|
|
49170
49220
|
/**
|
|
49171
49221
|
* A heading indicating what the relationship's content represents.
|
|
49172
49222
|
*
|
|
@@ -49196,6 +49246,12 @@ declare namespace __esri {
|
|
|
49196
49246
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-content-UtilityNetworkAssociationsContent.html#description)
|
|
49197
49247
|
*/
|
|
49198
49248
|
description?: string;
|
|
49249
|
+
/**
|
|
49250
|
+
* A numeric value indicating the maximum number of features to display in the list of associated features per layer.
|
|
49251
|
+
*
|
|
49252
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-popup-content-UtilityNetworkAssociationsContent.html#displayCount)
|
|
49253
|
+
*/
|
|
49254
|
+
displayCount?: number;
|
|
49199
49255
|
/**
|
|
49200
49256
|
* A heading indicating what the relationship's content represents.
|
|
49201
49257
|
*
|
|
@@ -98598,7 +98654,7 @@ declare namespace __esri {
|
|
|
98598
98654
|
*
|
|
98599
98655
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-HighlightLayerViewMixin.html#highlight)
|
|
98600
98656
|
*/
|
|
98601
|
-
highlight(target?: Graphic | Graphic[] | number | number[] | string | string[]
|
|
98657
|
+
highlight(target?: Graphic | Graphic[] | number | number[] | string | string[]): Handle;
|
|
98602
98658
|
}
|
|
98603
98659
|
|
|
98604
98660
|
interface HighlightLayerViewMixinProperties {
|
|
@@ -99363,7 +99419,7 @@ declare namespace __esri {
|
|
|
99363
99419
|
*
|
|
99364
99420
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-LinkChartView.html#map)
|
|
99365
99421
|
*/
|
|
99366
|
-
map:
|
|
99422
|
+
map: WebLinkChart;
|
|
99367
99423
|
}
|
|
99368
99424
|
|
|
99369
99425
|
interface LinkChartViewProperties extends View2DProperties {
|
|
@@ -99372,7 +99428,7 @@ declare namespace __esri {
|
|
|
99372
99428
|
*
|
|
99373
99429
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-LinkChartView.html#map)
|
|
99374
99430
|
*/
|
|
99375
|
-
map?:
|
|
99431
|
+
map?: WebLinkChartProperties;
|
|
99376
99432
|
}
|
|
99377
99433
|
|
|
99378
99434
|
export class Magnifier extends Accessor {
|
|
@@ -104051,7 +104107,7 @@ declare namespace __esri {
|
|
|
104051
104107
|
| "SMART_TREE"
|
|
104052
104108
|
| "CHRONOLOGICAL_SINGLE"
|
|
104053
104109
|
| "CHRONOLOGICAL_MULTIPLE",
|
|
104054
|
-
options?:
|
|
104110
|
+
options?: ApplyNewLayoutOptions
|
|
104055
104111
|
): Promise<void>;
|
|
104056
104112
|
|
|
104057
104113
|
changeNonspatialDataDisplay(mode: "hidden" | "visible"): void;
|
|
@@ -104093,97 +104149,6 @@ declare namespace __esri {
|
|
|
104093
104149
|
relationshipCount?: number;
|
|
104094
104150
|
}
|
|
104095
104151
|
|
|
104096
|
-
export class esriWebLinkChart extends WebDocument2D {
|
|
104097
|
-
/**
|
|
104098
|
-
* The WebLinkChart class contains properties and methods for storing, managing, and overlaying layers in a link chart.
|
|
104099
|
-
*
|
|
104100
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html)
|
|
104101
|
-
*/
|
|
104102
|
-
|
|
104103
|
-
constructor(properties?: esriWebLinkChartProperties);
|
|
104104
|
-
|
|
104105
|
-
/**
|
|
104106
|
-
* The active [link chart layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html).
|
|
104107
|
-
*
|
|
104108
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#activeLinkChartLayer)
|
|
104109
|
-
*/
|
|
104110
|
-
readonly activeLinkChartLayer: LinkChartLayer;
|
|
104111
|
-
|
|
104112
|
-
readonly diagramNodesExtent: Extent;
|
|
104113
|
-
|
|
104114
|
-
entityCount: number;
|
|
104115
|
-
|
|
104116
|
-
knowledgeGraph: KnowledgeGraph;
|
|
104117
|
-
/**
|
|
104118
|
-
* Properties specific to the link chart.
|
|
104119
|
-
*
|
|
104120
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#linkChartProperties)
|
|
104121
|
-
*/
|
|
104122
|
-
linkChartProperties: LinkChartProperties;
|
|
104123
|
-
/**
|
|
104124
|
-
* The map type.
|
|
104125
|
-
*
|
|
104126
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#mapType)
|
|
104127
|
-
*/
|
|
104128
|
-
mapType: "webLinkChart";
|
|
104129
|
-
|
|
104130
|
-
relationshipCount: number;
|
|
104131
|
-
|
|
104132
|
-
addRecords(records: IdTypePair[]): Promise<void>;
|
|
104133
|
-
|
|
104134
|
-
applyLayout(
|
|
104135
|
-
layoutMode:
|
|
104136
|
-
| "RADIAL_TREE"
|
|
104137
|
-
| "GEOGRAPHIC"
|
|
104138
|
-
| "FORCE_DIRECTED"
|
|
104139
|
-
| "COMMUNITY"
|
|
104140
|
-
| "SIMPLE"
|
|
104141
|
-
| "HIERARCHICAL"
|
|
104142
|
-
| "SMART_TREE"
|
|
104143
|
-
| "CHRONOLOGICAL_SINGLE"
|
|
104144
|
-
| "CHRONOLOGICAL_MULTIPLE",
|
|
104145
|
-
options?: WebLinkChartApplyNewLayoutOptions
|
|
104146
|
-
): Promise<void>;
|
|
104147
|
-
|
|
104148
|
-
changeNonspatialDataDisplay(mode: "hidden" | "visible"): void;
|
|
104149
|
-
|
|
104150
|
-
connectBetweenEntities(entityIds: string[]): IdTypePair[];
|
|
104151
|
-
|
|
104152
|
-
connectFromEntities(entityIds: string[]): IdTypePair[];
|
|
104153
|
-
/**
|
|
104154
|
-
* todo: more doc description
|
|
104155
|
-
*
|
|
104156
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#expand)
|
|
104157
|
-
*/
|
|
104158
|
-
expand(nodeIds: string[], relationshipTypeNames?: string[]): IdTypePair[];
|
|
104159
|
-
|
|
104160
|
-
getMemberIdsByType(typeName: string): string[];
|
|
104161
|
-
|
|
104162
|
-
refreshLinkChartData(ids?: string[]): Promise<void>;
|
|
104163
|
-
|
|
104164
|
-
removeRecords(records: IdTypePair[]): Promise<void>;
|
|
104165
|
-
}
|
|
104166
|
-
|
|
104167
|
-
interface esriWebLinkChartProperties extends WebDocument2DProperties {
|
|
104168
|
-
entityCount?: number;
|
|
104169
|
-
|
|
104170
|
-
knowledgeGraph?: KnowledgeGraphProperties;
|
|
104171
|
-
/**
|
|
104172
|
-
* Properties specific to the link chart.
|
|
104173
|
-
*
|
|
104174
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#linkChartProperties)
|
|
104175
|
-
*/
|
|
104176
|
-
linkChartProperties?: LinkChartPropertiesProperties;
|
|
104177
|
-
/**
|
|
104178
|
-
* The map type.
|
|
104179
|
-
*
|
|
104180
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#mapType)
|
|
104181
|
-
*/
|
|
104182
|
-
mapType?: "webLinkChart";
|
|
104183
|
-
|
|
104184
|
-
relationshipCount?: number;
|
|
104185
|
-
}
|
|
104186
|
-
|
|
104187
104152
|
export interface ApplyNewLayoutOptions {
|
|
104188
104153
|
/**
|
|
104189
104154
|
* A map of node IDs to their locked locations
|
|
@@ -104197,19 +104162,6 @@ declare namespace __esri {
|
|
|
104197
104162
|
chronologicalLayoutSettings?: layersLinkChartLayerChronologicalLayoutSettings;
|
|
104198
104163
|
}
|
|
104199
104164
|
|
|
104200
|
-
export interface WebLinkChartApplyNewLayoutOptions {
|
|
104201
|
-
/**
|
|
104202
|
-
* A map of node IDs to their locked locations
|
|
104203
|
-
*
|
|
104204
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#ApplyNewLayoutOptions)
|
|
104205
|
-
*/
|
|
104206
|
-
lockedNodeLocations?: globalThis.Map<string, Point>;
|
|
104207
|
-
|
|
104208
|
-
organicLayoutSettings?: LinkChartLayerOrganicLayoutSettings;
|
|
104209
|
-
|
|
104210
|
-
chronologicalLayoutSettings?: layersLinkChartLayerChronologicalLayoutSettings;
|
|
104211
|
-
}
|
|
104212
|
-
|
|
104213
104165
|
export class WebMap extends WebDocument2D {
|
|
104214
104166
|
/**
|
|
104215
104167
|
* Loads a [WebMap](https://doc.arcgis.com/en/arcgis-online/create-maps/make-your-first-map.htm) from [ArcGIS Online](https://www.arcgis.com/home/) or [ArcGIS Enterprise portal](https://enterprise.arcgis.com/en/portal/latest/administer/windows/what-is-portal-for-arcgis-.htm) into a [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html).
|
|
@@ -115917,6 +115869,12 @@ declare namespace __esri {
|
|
|
115917
115869
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#active)
|
|
115918
115870
|
*/
|
|
115919
115871
|
readonly active: boolean;
|
|
115872
|
+
/**
|
|
115873
|
+
* The highlighted feature on the map that is either hovered over or in focus within the feature menu.
|
|
115874
|
+
*
|
|
115875
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#activeFeature)
|
|
115876
|
+
*/
|
|
115877
|
+
activeFeature: Graphic;
|
|
115920
115878
|
/**
|
|
115921
115879
|
* A collection of [actions](https://developers.arcgis.com/javascript/latest/api-reference/esri-support-actions-ActionButton.html) or [action toggles](https://developers.arcgis.com/javascript/latest/api-reference/esri-support-actions-ActionToggle.html).
|
|
115922
115880
|
*
|
|
@@ -115967,12 +115925,28 @@ declare namespace __esri {
|
|
|
115967
115925
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureCount)
|
|
115968
115926
|
*/
|
|
115969
115927
|
readonly featureCount: number;
|
|
115928
|
+
/**
|
|
115929
|
+
* This property enables showing the list of features.
|
|
115930
|
+
*
|
|
115931
|
+
* @default false
|
|
115932
|
+
*
|
|
115933
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureMenuOpen)
|
|
115934
|
+
*/
|
|
115935
|
+
featureMenuOpen: boolean;
|
|
115970
115936
|
/**
|
|
115971
115937
|
* The title to display on the widget while viewing the feature menu.
|
|
115972
115938
|
*
|
|
115973
115939
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureMenuTitle)
|
|
115974
115940
|
*/
|
|
115975
115941
|
featureMenuTitle: string;
|
|
115942
|
+
/**
|
|
115943
|
+
* The current page number in the feature browsing menu.
|
|
115944
|
+
*
|
|
115945
|
+
* @default null
|
|
115946
|
+
*
|
|
115947
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featurePage)
|
|
115948
|
+
*/
|
|
115949
|
+
featurePage: number;
|
|
115976
115950
|
/**
|
|
115977
115951
|
* An array of features.
|
|
115978
115952
|
*
|
|
@@ -116051,6 +116025,20 @@ declare namespace __esri {
|
|
|
116051
116025
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#promises)
|
|
116052
116026
|
*/
|
|
116053
116027
|
promises: Promise<any>[];
|
|
116028
|
+
/**
|
|
116029
|
+
* The screen location of the selected feature.
|
|
116030
|
+
*
|
|
116031
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#screenLocation)
|
|
116032
|
+
*/
|
|
116033
|
+
screenLocation: FeaturesViewModelScreenPoint;
|
|
116034
|
+
/**
|
|
116035
|
+
* Determines whether screen point tracking is active for positioning.
|
|
116036
|
+
*
|
|
116037
|
+
* @default false
|
|
116038
|
+
*
|
|
116039
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#screenLocationEnabled)
|
|
116040
|
+
*/
|
|
116041
|
+
screenLocationEnabled: boolean;
|
|
116054
116042
|
/**
|
|
116055
116043
|
* The graphic used to represent the cluster extent when the `Browse features` action is active.
|
|
116056
116044
|
*
|
|
@@ -116069,6 +116057,12 @@ declare namespace __esri {
|
|
|
116069
116057
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#selectedFeatureIndex)
|
|
116070
116058
|
*/
|
|
116071
116059
|
selectedFeatureIndex: number;
|
|
116060
|
+
/**
|
|
116061
|
+
* The [view model](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureViewModel.html) of the selected feature.
|
|
116062
|
+
*
|
|
116063
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#selectedFeatureViewModel)
|
|
116064
|
+
*/
|
|
116065
|
+
readonly selectedFeatureViewModel: FeatureViewModel;
|
|
116072
116066
|
/**
|
|
116073
116067
|
* The spatial reference used for [Arcade](https://developers.arcgis.com/arcade) operations.
|
|
116074
116068
|
*
|
|
@@ -116097,6 +116091,14 @@ declare namespace __esri {
|
|
|
116097
116091
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#title)
|
|
116098
116092
|
*/
|
|
116099
116093
|
title: string;
|
|
116094
|
+
/**
|
|
116095
|
+
* Indicates whether to update the [location](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#location) when the [selectedFeatureIndex](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#selectedFeatureIndex) changes.
|
|
116096
|
+
*
|
|
116097
|
+
* @default false
|
|
116098
|
+
*
|
|
116099
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#updateLocationEnabled)
|
|
116100
|
+
*/
|
|
116101
|
+
updateLocationEnabled: boolean;
|
|
116100
116102
|
/**
|
|
116101
116103
|
* A reference to the [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html) or [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
|
|
116102
116104
|
*
|
|
@@ -116111,6 +116113,12 @@ declare namespace __esri {
|
|
|
116111
116113
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#visible)
|
|
116112
116114
|
*/
|
|
116113
116115
|
visible: boolean;
|
|
116116
|
+
/**
|
|
116117
|
+
* Indicates whether the widget is waiting for content to be resolved.
|
|
116118
|
+
*
|
|
116119
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#waitingForContents)
|
|
116120
|
+
*/
|
|
116121
|
+
waitingForContents: boolean;
|
|
116114
116122
|
/**
|
|
116115
116123
|
* Indicates whether a feature was found while resolving [promises](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#promises).
|
|
116116
116124
|
*
|
|
@@ -116159,6 +116167,12 @@ declare namespace __esri {
|
|
|
116159
116167
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#triggerAction)
|
|
116160
116168
|
*/
|
|
116161
116169
|
triggerAction(actionIndex: number): void;
|
|
116170
|
+
/**
|
|
116171
|
+
* Sets the view to a given target.
|
|
116172
|
+
*
|
|
116173
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#zoomTo)
|
|
116174
|
+
*/
|
|
116175
|
+
zoomTo(params?: FeaturesViewModelZoomToParams): Promise<any>;
|
|
116162
116176
|
|
|
116163
116177
|
on(name: "trigger-action", eventHandler: FeaturesViewModelTriggerActionEventHandler): IHandle;
|
|
116164
116178
|
}
|
|
@@ -116172,6 +116186,12 @@ declare namespace __esri {
|
|
|
116172
116186
|
actions?: CollectionProperties<
|
|
116173
116187
|
(ActionButtonProperties & { type: "button" }) | (ActionToggleProperties & { type: "toggle" })
|
|
116174
116188
|
>;
|
|
116189
|
+
/**
|
|
116190
|
+
* The highlighted feature on the map that is either hovered over or in focus within the feature menu.
|
|
116191
|
+
*
|
|
116192
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#activeFeature)
|
|
116193
|
+
*/
|
|
116194
|
+
activeFeature?: GraphicProperties;
|
|
116175
116195
|
/**
|
|
116176
116196
|
* This closes the container when the [View](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html) camera or [Viewpoint](https://developers.arcgis.com/javascript/latest/api-reference/esri-Viewpoint.html) changes.
|
|
116177
116197
|
*
|
|
@@ -116202,12 +116222,28 @@ declare namespace __esri {
|
|
|
116202
116222
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#defaultPopupTemplateEnabled)
|
|
116203
116223
|
*/
|
|
116204
116224
|
defaultPopupTemplateEnabled?: boolean;
|
|
116225
|
+
/**
|
|
116226
|
+
* This property enables showing the list of features.
|
|
116227
|
+
*
|
|
116228
|
+
* @default false
|
|
116229
|
+
*
|
|
116230
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureMenuOpen)
|
|
116231
|
+
*/
|
|
116232
|
+
featureMenuOpen?: boolean;
|
|
116205
116233
|
/**
|
|
116206
116234
|
* The title to display on the widget while viewing the feature menu.
|
|
116207
116235
|
*
|
|
116208
116236
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureMenuTitle)
|
|
116209
116237
|
*/
|
|
116210
116238
|
featureMenuTitle?: string;
|
|
116239
|
+
/**
|
|
116240
|
+
* The current page number in the feature browsing menu.
|
|
116241
|
+
*
|
|
116242
|
+
* @default null
|
|
116243
|
+
*
|
|
116244
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featurePage)
|
|
116245
|
+
*/
|
|
116246
|
+
featurePage?: number;
|
|
116211
116247
|
/**
|
|
116212
116248
|
* An array of features.
|
|
116213
116249
|
*
|
|
@@ -116264,6 +116300,20 @@ declare namespace __esri {
|
|
|
116264
116300
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#promises)
|
|
116265
116301
|
*/
|
|
116266
116302
|
promises?: Promise<any>[];
|
|
116303
|
+
/**
|
|
116304
|
+
* The screen location of the selected feature.
|
|
116305
|
+
*
|
|
116306
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#screenLocation)
|
|
116307
|
+
*/
|
|
116308
|
+
screenLocation?: FeaturesViewModelScreenPoint;
|
|
116309
|
+
/**
|
|
116310
|
+
* Determines whether screen point tracking is active for positioning.
|
|
116311
|
+
*
|
|
116312
|
+
* @default false
|
|
116313
|
+
*
|
|
116314
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#screenLocationEnabled)
|
|
116315
|
+
*/
|
|
116316
|
+
screenLocationEnabled?: boolean;
|
|
116267
116317
|
/**
|
|
116268
116318
|
* Index of the feature that is [selected](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#selectedFeature).
|
|
116269
116319
|
*
|
|
@@ -116290,6 +116340,14 @@ declare namespace __esri {
|
|
|
116290
116340
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#title)
|
|
116291
116341
|
*/
|
|
116292
116342
|
title?: string;
|
|
116343
|
+
/**
|
|
116344
|
+
* Indicates whether to update the [location](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#location) when the [selectedFeatureIndex](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#selectedFeatureIndex) changes.
|
|
116345
|
+
*
|
|
116346
|
+
* @default false
|
|
116347
|
+
*
|
|
116348
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#updateLocationEnabled)
|
|
116349
|
+
*/
|
|
116350
|
+
updateLocationEnabled?: boolean;
|
|
116293
116351
|
/**
|
|
116294
116352
|
* A reference to the [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html) or [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
|
|
116295
116353
|
*
|
|
@@ -116304,6 +116362,12 @@ declare namespace __esri {
|
|
|
116304
116362
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#visible)
|
|
116305
116363
|
*/
|
|
116306
116364
|
visible?: boolean;
|
|
116365
|
+
/**
|
|
116366
|
+
* Indicates whether the widget is waiting for content to be resolved.
|
|
116367
|
+
*
|
|
116368
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#waitingForContents)
|
|
116369
|
+
*/
|
|
116370
|
+
waitingForContents?: boolean;
|
|
116307
116371
|
}
|
|
116308
116372
|
|
|
116309
116373
|
export interface FeaturesViewModelFetchFeaturesScreenPoint {
|
|
@@ -116366,6 +116430,41 @@ declare namespace __esri {
|
|
|
116366
116430
|
updateLocationEnabled?: boolean;
|
|
116367
116431
|
}
|
|
116368
116432
|
|
|
116433
|
+
export interface FeaturesViewModelZoomToParams {
|
|
116434
|
+
/**
|
|
116435
|
+
* The target location/viewpoint/extent to animate to.
|
|
116436
|
+
*
|
|
116437
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#zoomTo)
|
|
116438
|
+
*/
|
|
116439
|
+
target: GoToTarget2D | GoToTarget3D;
|
|
116440
|
+
/**
|
|
116441
|
+
* Options defining the animation, duration, and easing of the navigation.
|
|
116442
|
+
*
|
|
116443
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#zoomTo)
|
|
116444
|
+
*/
|
|
116445
|
+
options?: GoToOptions2D | GoToOptions3D;
|
|
116446
|
+
}
|
|
116447
|
+
|
|
116448
|
+
/**
|
|
116449
|
+
* An object representing a point on the screen.
|
|
116450
|
+
*
|
|
116451
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#ScreenPoint)
|
|
116452
|
+
*/
|
|
116453
|
+
export interface FeaturesViewModelScreenPoint {
|
|
116454
|
+
/**
|
|
116455
|
+
* The x coordinate.
|
|
116456
|
+
*
|
|
116457
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#ScreenPoint)
|
|
116458
|
+
*/
|
|
116459
|
+
x: number;
|
|
116460
|
+
/**
|
|
116461
|
+
* The y coordinate.
|
|
116462
|
+
*
|
|
116463
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#ScreenPoint)
|
|
116464
|
+
*/
|
|
116465
|
+
y: number;
|
|
116466
|
+
}
|
|
116467
|
+
|
|
116369
116468
|
export interface FeaturesViewModelTriggerActionEvent {
|
|
116370
116469
|
action: ActionButton | ActionToggle;
|
|
116371
116470
|
}
|
|
@@ -145860,11 +145959,6 @@ declare module "esri/webmap/InitialViewProperties" {
|
|
|
145860
145959
|
export = InitialViewProperties;
|
|
145861
145960
|
}
|
|
145862
145961
|
|
|
145863
|
-
declare module "esri/WebLinkChart" {
|
|
145864
|
-
import esriWebLinkChart = __esri.esriWebLinkChart;
|
|
145865
|
-
export = esriWebLinkChart;
|
|
145866
|
-
}
|
|
145867
|
-
|
|
145868
145962
|
declare module "esri/WebScene" {
|
|
145869
145963
|
import WebScene = __esri.WebScene;
|
|
145870
145964
|
export = WebScene;
|
package/src/.gitkeep
DELETED
|
File without changes
|
package/support/.gitkeep
DELETED
|
File without changes
|