@arcgis/core-adapter 4.32.0-next.21 → 4.32.0-next.22
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/support/arcgis.d.ts +194 -112
- 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
|
+
ESM dist/index.js 480.78 KB
|
|
10
|
+
ESM ⚡️ Build success in 853ms
|
|
11
|
+
CJS dist/index.cjs 621.09 KB
|
|
12
|
+
CJS ⚡️ Build success in 900ms
|
|
13
|
+
DTS Build start
|
|
14
|
+
DTS ⚡️ Build success in 12302ms
|
|
15
|
+
DTS dist/index.d.ts 251.40 KB
|
|
16
|
+
DTS dist/index.d.cts 251.40 KB
|
package/package.json
CHANGED
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
|
*
|
|
@@ -99363,7 +99407,7 @@ declare namespace __esri {
|
|
|
99363
99407
|
*
|
|
99364
99408
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-LinkChartView.html#map)
|
|
99365
99409
|
*/
|
|
99366
|
-
map:
|
|
99410
|
+
map: WebLinkChart;
|
|
99367
99411
|
}
|
|
99368
99412
|
|
|
99369
99413
|
interface LinkChartViewProperties extends View2DProperties {
|
|
@@ -99372,7 +99416,7 @@ declare namespace __esri {
|
|
|
99372
99416
|
*
|
|
99373
99417
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-LinkChartView.html#map)
|
|
99374
99418
|
*/
|
|
99375
|
-
map?:
|
|
99419
|
+
map?: WebLinkChartProperties;
|
|
99376
99420
|
}
|
|
99377
99421
|
|
|
99378
99422
|
export class Magnifier extends Accessor {
|
|
@@ -104051,7 +104095,7 @@ declare namespace __esri {
|
|
|
104051
104095
|
| "SMART_TREE"
|
|
104052
104096
|
| "CHRONOLOGICAL_SINGLE"
|
|
104053
104097
|
| "CHRONOLOGICAL_MULTIPLE",
|
|
104054
|
-
options?:
|
|
104098
|
+
options?: ApplyNewLayoutOptions
|
|
104055
104099
|
): Promise<void>;
|
|
104056
104100
|
|
|
104057
104101
|
changeNonspatialDataDisplay(mode: "hidden" | "visible"): void;
|
|
@@ -104093,97 +104137,6 @@ declare namespace __esri {
|
|
|
104093
104137
|
relationshipCount?: number;
|
|
104094
104138
|
}
|
|
104095
104139
|
|
|
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
104140
|
export interface ApplyNewLayoutOptions {
|
|
104188
104141
|
/**
|
|
104189
104142
|
* A map of node IDs to their locked locations
|
|
@@ -104197,19 +104150,6 @@ declare namespace __esri {
|
|
|
104197
104150
|
chronologicalLayoutSettings?: layersLinkChartLayerChronologicalLayoutSettings;
|
|
104198
104151
|
}
|
|
104199
104152
|
|
|
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
104153
|
export class WebMap extends WebDocument2D {
|
|
104214
104154
|
/**
|
|
104215
104155
|
* 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 +115857,12 @@ declare namespace __esri {
|
|
|
115917
115857
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#active)
|
|
115918
115858
|
*/
|
|
115919
115859
|
readonly active: boolean;
|
|
115860
|
+
/**
|
|
115861
|
+
* The highlighted feature on the map that is either hovered over or in focus within the feature menu.
|
|
115862
|
+
*
|
|
115863
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#activeFeature)
|
|
115864
|
+
*/
|
|
115865
|
+
activeFeature: Graphic;
|
|
115920
115866
|
/**
|
|
115921
115867
|
* 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
115868
|
*
|
|
@@ -115967,12 +115913,28 @@ declare namespace __esri {
|
|
|
115967
115913
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureCount)
|
|
115968
115914
|
*/
|
|
115969
115915
|
readonly featureCount: number;
|
|
115916
|
+
/**
|
|
115917
|
+
* This property enables showing the list of features.
|
|
115918
|
+
*
|
|
115919
|
+
* @default false
|
|
115920
|
+
*
|
|
115921
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureMenuOpen)
|
|
115922
|
+
*/
|
|
115923
|
+
featureMenuOpen: boolean;
|
|
115970
115924
|
/**
|
|
115971
115925
|
* The title to display on the widget while viewing the feature menu.
|
|
115972
115926
|
*
|
|
115973
115927
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureMenuTitle)
|
|
115974
115928
|
*/
|
|
115975
115929
|
featureMenuTitle: string;
|
|
115930
|
+
/**
|
|
115931
|
+
* The current page number in the feature browsing menu.
|
|
115932
|
+
*
|
|
115933
|
+
* @default null
|
|
115934
|
+
*
|
|
115935
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featurePage)
|
|
115936
|
+
*/
|
|
115937
|
+
featurePage: number;
|
|
115976
115938
|
/**
|
|
115977
115939
|
* An array of features.
|
|
115978
115940
|
*
|
|
@@ -116051,6 +116013,20 @@ declare namespace __esri {
|
|
|
116051
116013
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#promises)
|
|
116052
116014
|
*/
|
|
116053
116015
|
promises: Promise<any>[];
|
|
116016
|
+
/**
|
|
116017
|
+
* The screen location of the selected feature.
|
|
116018
|
+
*
|
|
116019
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#screenLocation)
|
|
116020
|
+
*/
|
|
116021
|
+
screenLocation: FeaturesViewModelScreenPoint;
|
|
116022
|
+
/**
|
|
116023
|
+
* Determines whether screen point tracking is active for positioning.
|
|
116024
|
+
*
|
|
116025
|
+
* @default false
|
|
116026
|
+
*
|
|
116027
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#screenLocationEnabled)
|
|
116028
|
+
*/
|
|
116029
|
+
screenLocationEnabled: boolean;
|
|
116054
116030
|
/**
|
|
116055
116031
|
* The graphic used to represent the cluster extent when the `Browse features` action is active.
|
|
116056
116032
|
*
|
|
@@ -116069,6 +116045,12 @@ declare namespace __esri {
|
|
|
116069
116045
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#selectedFeatureIndex)
|
|
116070
116046
|
*/
|
|
116071
116047
|
selectedFeatureIndex: number;
|
|
116048
|
+
/**
|
|
116049
|
+
* The [view model](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureViewModel.html) of the selected feature.
|
|
116050
|
+
*
|
|
116051
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#selectedFeatureViewModel)
|
|
116052
|
+
*/
|
|
116053
|
+
readonly selectedFeatureViewModel: FeatureViewModel;
|
|
116072
116054
|
/**
|
|
116073
116055
|
* The spatial reference used for [Arcade](https://developers.arcgis.com/arcade) operations.
|
|
116074
116056
|
*
|
|
@@ -116097,6 +116079,14 @@ declare namespace __esri {
|
|
|
116097
116079
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#title)
|
|
116098
116080
|
*/
|
|
116099
116081
|
title: string;
|
|
116082
|
+
/**
|
|
116083
|
+
* 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.
|
|
116084
|
+
*
|
|
116085
|
+
* @default false
|
|
116086
|
+
*
|
|
116087
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#updateLocationEnabled)
|
|
116088
|
+
*/
|
|
116089
|
+
updateLocationEnabled: boolean;
|
|
116100
116090
|
/**
|
|
116101
116091
|
* 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
116092
|
*
|
|
@@ -116111,6 +116101,12 @@ declare namespace __esri {
|
|
|
116111
116101
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#visible)
|
|
116112
116102
|
*/
|
|
116113
116103
|
visible: boolean;
|
|
116104
|
+
/**
|
|
116105
|
+
* Indicates whether the widget is waiting for content to be resolved.
|
|
116106
|
+
*
|
|
116107
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#waitingForContents)
|
|
116108
|
+
*/
|
|
116109
|
+
waitingForContents: boolean;
|
|
116114
116110
|
/**
|
|
116115
116111
|
* Indicates whether a feature was found while resolving [promises](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#promises).
|
|
116116
116112
|
*
|
|
@@ -116159,6 +116155,12 @@ declare namespace __esri {
|
|
|
116159
116155
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#triggerAction)
|
|
116160
116156
|
*/
|
|
116161
116157
|
triggerAction(actionIndex: number): void;
|
|
116158
|
+
/**
|
|
116159
|
+
* Sets the view to a given target.
|
|
116160
|
+
*
|
|
116161
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#zoomTo)
|
|
116162
|
+
*/
|
|
116163
|
+
zoomTo(params?: FeaturesViewModelZoomToParams): Promise<any>;
|
|
116162
116164
|
|
|
116163
116165
|
on(name: "trigger-action", eventHandler: FeaturesViewModelTriggerActionEventHandler): IHandle;
|
|
116164
116166
|
}
|
|
@@ -116172,6 +116174,12 @@ declare namespace __esri {
|
|
|
116172
116174
|
actions?: CollectionProperties<
|
|
116173
116175
|
(ActionButtonProperties & { type: "button" }) | (ActionToggleProperties & { type: "toggle" })
|
|
116174
116176
|
>;
|
|
116177
|
+
/**
|
|
116178
|
+
* The highlighted feature on the map that is either hovered over or in focus within the feature menu.
|
|
116179
|
+
*
|
|
116180
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#activeFeature)
|
|
116181
|
+
*/
|
|
116182
|
+
activeFeature?: GraphicProperties;
|
|
116175
116183
|
/**
|
|
116176
116184
|
* 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
116185
|
*
|
|
@@ -116202,12 +116210,28 @@ declare namespace __esri {
|
|
|
116202
116210
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#defaultPopupTemplateEnabled)
|
|
116203
116211
|
*/
|
|
116204
116212
|
defaultPopupTemplateEnabled?: boolean;
|
|
116213
|
+
/**
|
|
116214
|
+
* This property enables showing the list of features.
|
|
116215
|
+
*
|
|
116216
|
+
* @default false
|
|
116217
|
+
*
|
|
116218
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureMenuOpen)
|
|
116219
|
+
*/
|
|
116220
|
+
featureMenuOpen?: boolean;
|
|
116205
116221
|
/**
|
|
116206
116222
|
* The title to display on the widget while viewing the feature menu.
|
|
116207
116223
|
*
|
|
116208
116224
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureMenuTitle)
|
|
116209
116225
|
*/
|
|
116210
116226
|
featureMenuTitle?: string;
|
|
116227
|
+
/**
|
|
116228
|
+
* The current page number in the feature browsing menu.
|
|
116229
|
+
*
|
|
116230
|
+
* @default null
|
|
116231
|
+
*
|
|
116232
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featurePage)
|
|
116233
|
+
*/
|
|
116234
|
+
featurePage?: number;
|
|
116211
116235
|
/**
|
|
116212
116236
|
* An array of features.
|
|
116213
116237
|
*
|
|
@@ -116264,6 +116288,20 @@ declare namespace __esri {
|
|
|
116264
116288
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#promises)
|
|
116265
116289
|
*/
|
|
116266
116290
|
promises?: Promise<any>[];
|
|
116291
|
+
/**
|
|
116292
|
+
* The screen location of the selected feature.
|
|
116293
|
+
*
|
|
116294
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#screenLocation)
|
|
116295
|
+
*/
|
|
116296
|
+
screenLocation?: FeaturesViewModelScreenPoint;
|
|
116297
|
+
/**
|
|
116298
|
+
* Determines whether screen point tracking is active for positioning.
|
|
116299
|
+
*
|
|
116300
|
+
* @default false
|
|
116301
|
+
*
|
|
116302
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#screenLocationEnabled)
|
|
116303
|
+
*/
|
|
116304
|
+
screenLocationEnabled?: boolean;
|
|
116267
116305
|
/**
|
|
116268
116306
|
* Index of the feature that is [selected](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#selectedFeature).
|
|
116269
116307
|
*
|
|
@@ -116290,6 +116328,14 @@ declare namespace __esri {
|
|
|
116290
116328
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#title)
|
|
116291
116329
|
*/
|
|
116292
116330
|
title?: string;
|
|
116331
|
+
/**
|
|
116332
|
+
* 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.
|
|
116333
|
+
*
|
|
116334
|
+
* @default false
|
|
116335
|
+
*
|
|
116336
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#updateLocationEnabled)
|
|
116337
|
+
*/
|
|
116338
|
+
updateLocationEnabled?: boolean;
|
|
116293
116339
|
/**
|
|
116294
116340
|
* 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
116341
|
*
|
|
@@ -116304,6 +116350,12 @@ declare namespace __esri {
|
|
|
116304
116350
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#visible)
|
|
116305
116351
|
*/
|
|
116306
116352
|
visible?: boolean;
|
|
116353
|
+
/**
|
|
116354
|
+
* Indicates whether the widget is waiting for content to be resolved.
|
|
116355
|
+
*
|
|
116356
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#waitingForContents)
|
|
116357
|
+
*/
|
|
116358
|
+
waitingForContents?: boolean;
|
|
116307
116359
|
}
|
|
116308
116360
|
|
|
116309
116361
|
export interface FeaturesViewModelFetchFeaturesScreenPoint {
|
|
@@ -116366,6 +116418,41 @@ declare namespace __esri {
|
|
|
116366
116418
|
updateLocationEnabled?: boolean;
|
|
116367
116419
|
}
|
|
116368
116420
|
|
|
116421
|
+
export interface FeaturesViewModelZoomToParams {
|
|
116422
|
+
/**
|
|
116423
|
+
* The target location/viewpoint/extent to animate to.
|
|
116424
|
+
*
|
|
116425
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#zoomTo)
|
|
116426
|
+
*/
|
|
116427
|
+
target: GoToTarget2D | GoToTarget3D;
|
|
116428
|
+
/**
|
|
116429
|
+
* Options defining the animation, duration, and easing of the navigation.
|
|
116430
|
+
*
|
|
116431
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#zoomTo)
|
|
116432
|
+
*/
|
|
116433
|
+
options?: GoToOptions2D | GoToOptions3D;
|
|
116434
|
+
}
|
|
116435
|
+
|
|
116436
|
+
/**
|
|
116437
|
+
* An object representing a point on the screen.
|
|
116438
|
+
*
|
|
116439
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#ScreenPoint)
|
|
116440
|
+
*/
|
|
116441
|
+
export interface FeaturesViewModelScreenPoint {
|
|
116442
|
+
/**
|
|
116443
|
+
* The x coordinate.
|
|
116444
|
+
*
|
|
116445
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#ScreenPoint)
|
|
116446
|
+
*/
|
|
116447
|
+
x: number;
|
|
116448
|
+
/**
|
|
116449
|
+
* The y coordinate.
|
|
116450
|
+
*
|
|
116451
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#ScreenPoint)
|
|
116452
|
+
*/
|
|
116453
|
+
y: number;
|
|
116454
|
+
}
|
|
116455
|
+
|
|
116369
116456
|
export interface FeaturesViewModelTriggerActionEvent {
|
|
116370
116457
|
action: ActionButton | ActionToggle;
|
|
116371
116458
|
}
|
|
@@ -145860,11 +145947,6 @@ declare module "esri/webmap/InitialViewProperties" {
|
|
|
145860
145947
|
export = InitialViewProperties;
|
|
145861
145948
|
}
|
|
145862
145949
|
|
|
145863
|
-
declare module "esri/WebLinkChart" {
|
|
145864
|
-
import esriWebLinkChart = __esri.esriWebLinkChart;
|
|
145865
|
-
export = esriWebLinkChart;
|
|
145866
|
-
}
|
|
145867
|
-
|
|
145868
145950
|
declare module "esri/WebScene" {
|
|
145869
145951
|
import WebScene = __esri.WebScene;
|
|
145870
145952
|
export = WebScene;
|
package/src/.gitkeep
DELETED
|
File without changes
|
package/support/.gitkeep
DELETED
|
File without changes
|