@arcgis/core-adapter 4.32.0-next.34 → 4.32.0-next.36
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 +7 -7
- package/dist/index.cjs +60 -99
- package/dist/index.d.cts +9 -12
- package/dist/index.d.ts +9 -12
- package/dist/index.js +52 -88
- package/package.json +1 -1
- package/scripts/generator.ts +11 -1
- package/scripts/update-adapter-typings.ts +41 -9
- package/src/index.ts +52 -88
- package/support/api-reference-esm-imports.json +4 -0
- package/support/arcgis.d.ts +697 -289
- package/support/publicModules.ts +25 -0
package/support/arcgis.d.ts
CHANGED
|
@@ -3626,7 +3626,7 @@ declare namespace __esri {
|
|
|
3626
3626
|
* Parses the given where clause string and returns an instance of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-sql-WhereClause.html WhereClause} when resolved.
|
|
3627
3627
|
*
|
|
3628
3628
|
* @param clause The SQL where clause expression.
|
|
3629
|
-
* @param fieldsIndex The
|
|
3629
|
+
* @param fieldsIndex The fields index of the layer. The fields index is used to match the fields found in the where clause against the service, to fix casing for example.
|
|
3630
3630
|
* @param timeZone The time zone in which SQL date functions are evaluated. The default is "UTC". This parameter only accepts {@link https://en.wikipedia.org/wiki/List_of_tz_database_time_zones IANA time zones}.
|
|
3631
3631
|
*
|
|
3632
3632
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-sql.html#parseWhereClause Read more...}
|
|
@@ -9859,7 +9859,7 @@ declare namespace __esri {
|
|
|
9859
9859
|
*
|
|
9860
9860
|
* @param geometries The set of input geometries.
|
|
9861
9861
|
* @param options Additional options.
|
|
9862
|
-
* @param options.merge
|
|
9862
|
+
* @param options.merge If `true`, the input geometries will be merged into a single geometry before calculating the minimum bounding circle.
|
|
9863
9863
|
*
|
|
9864
9864
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-minimumBoundingCircleOperator.html#executeMany Read more...}
|
|
9865
9865
|
*/
|
|
@@ -15844,12 +15844,6 @@ declare namespace __esri {
|
|
|
15844
15844
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CatalogLayer.html#fields Read more...}
|
|
15845
15845
|
*/
|
|
15846
15846
|
fields: Field[];
|
|
15847
|
-
/**
|
|
15848
|
-
* A convenient property that can be used to make case-insensitive lookups for a field by name.
|
|
15849
|
-
*
|
|
15850
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CatalogLayer.html#fieldsIndex Read more...}
|
|
15851
|
-
*/
|
|
15852
|
-
declare readonly fieldsIndex: FeatureLayerBase["fieldsIndex"];
|
|
15853
15847
|
/**
|
|
15854
15848
|
* When a feature layer is configured as floor-aware, it has a floorInfo property defined.
|
|
15855
15849
|
*
|
|
@@ -17860,12 +17854,6 @@ declare namespace __esri {
|
|
|
17860
17854
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#fields Read more...}
|
|
17861
17855
|
*/
|
|
17862
17856
|
fields: Field[];
|
|
17863
|
-
/**
|
|
17864
|
-
* A convenient property that can be used to make case-insensitive lookups for a field by name.
|
|
17865
|
-
*
|
|
17866
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#fieldsIndex Read more...}
|
|
17867
|
-
*/
|
|
17868
|
-
declare readonly fieldsIndex: FeatureLayerBase["fieldsIndex"];
|
|
17869
17857
|
/**
|
|
17870
17858
|
* When a feature layer is configured as floor-aware, it has a floorInfo property defined.
|
|
17871
17859
|
*
|
|
@@ -21792,13 +21780,13 @@ declare namespace __esri {
|
|
|
21792
21780
|
*
|
|
21793
21781
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html#popupEnabled Read more...}
|
|
21794
21782
|
*/
|
|
21795
|
-
|
|
21783
|
+
popupEnabled: boolean;
|
|
21796
21784
|
/**
|
|
21797
21785
|
* The popup template for the layer.
|
|
21798
21786
|
*
|
|
21799
21787
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html#popupTemplate Read more...}
|
|
21800
21788
|
*/
|
|
21801
|
-
|
|
21789
|
+
popupTemplate: PopupTemplate;
|
|
21802
21790
|
/**
|
|
21803
21791
|
* The portal item from which the layer is loaded.
|
|
21804
21792
|
*
|
|
@@ -22104,13 +22092,13 @@ declare namespace __esri {
|
|
|
22104
22092
|
*
|
|
22105
22093
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html#popupEnabled Read more...}
|
|
22106
22094
|
*/
|
|
22107
|
-
popupEnabled?:
|
|
22095
|
+
popupEnabled?: boolean;
|
|
22108
22096
|
/**
|
|
22109
22097
|
* The popup template for the layer.
|
|
22110
22098
|
*
|
|
22111
22099
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryTileLayer.html#popupTemplate Read more...}
|
|
22112
22100
|
*/
|
|
22113
|
-
popupTemplate?:
|
|
22101
|
+
popupTemplate?: PopupTemplateProperties;
|
|
22114
22102
|
/**
|
|
22115
22103
|
* The portal item from which the layer is loaded.
|
|
22116
22104
|
*
|
|
@@ -25757,7 +25745,6 @@ declare namespace __esri {
|
|
|
25757
25745
|
readonly effectiveCapabilities: Capabilities;
|
|
25758
25746
|
readonly effectiveEditingEnabled: boolean;
|
|
25759
25747
|
elevationInfo: FeatureLayerBaseElevationInfo;
|
|
25760
|
-
readonly fieldsIndex: FieldsIndex;
|
|
25761
25748
|
floorInfo: LayerFloorInfo;
|
|
25762
25749
|
fullExtent: Extent;
|
|
25763
25750
|
gdbVersion: string;
|
|
@@ -26053,8 +26040,6 @@ declare namespace __esri {
|
|
|
26053
26040
|
legendEnabled: boolean;
|
|
26054
26041
|
multidimensionalDefinition: DimensionalDefinition[];
|
|
26055
26042
|
multidimensionalSubset: MultidimensionalSubset;
|
|
26056
|
-
popupEnabled: boolean;
|
|
26057
|
-
popupTemplate: PopupTemplate;
|
|
26058
26043
|
renderer:
|
|
26059
26044
|
| ClassBreaksRenderer
|
|
26060
26045
|
| UniqueValueRenderer
|
|
@@ -26105,8 +26090,6 @@ declare namespace __esri {
|
|
|
26105
26090
|
legendEnabled?: boolean;
|
|
26106
26091
|
multidimensionalDefinition?: DimensionalDefinitionProperties[];
|
|
26107
26092
|
multidimensionalSubset?: MultidimensionalSubsetProperties;
|
|
26108
|
-
popupEnabled?: boolean;
|
|
26109
|
-
popupTemplate?: PopupTemplateProperties;
|
|
26110
26093
|
renderer?:
|
|
26111
26094
|
| (ClassBreaksRendererProperties & { type: "class-breaks" })
|
|
26112
26095
|
| (UniqueValueRendererProperties & { type: "unique-value" })
|
|
@@ -30355,12 +30338,6 @@ declare namespace __esri {
|
|
|
30355
30338
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SubtypeGroupLayer.html#fields Read more...}
|
|
30356
30339
|
*/
|
|
30357
30340
|
fields: Field[];
|
|
30358
|
-
/**
|
|
30359
|
-
* A convenient property that can be used to make case-insensitive lookups for a field by name.
|
|
30360
|
-
*
|
|
30361
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SubtypeGroupLayer.html#fieldsIndex Read more...}
|
|
30362
|
-
*/
|
|
30363
|
-
declare readonly fieldsIndex: FeatureLayerBase["fieldsIndex"];
|
|
30364
30341
|
/**
|
|
30365
30342
|
* When a feature layer is configured as floor-aware, it has a floorInfo property defined.
|
|
30366
30343
|
*
|
|
@@ -44076,20 +44053,6 @@ declare namespace __esri {
|
|
|
44076
44053
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html#persistenceEnabled Read more...}
|
|
44077
44054
|
*/
|
|
44078
44055
|
declare persistenceEnabled: OperationalLayer["persistenceEnabled"];
|
|
44079
|
-
/**
|
|
44080
|
-
* Indicates whether to display popups when features in the layer are clicked.
|
|
44081
|
-
*
|
|
44082
|
-
* @default true
|
|
44083
|
-
*
|
|
44084
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html#popupEnabled Read more...}
|
|
44085
|
-
*/
|
|
44086
|
-
declare popupEnabled: ImageryTileMixin["popupEnabled"];
|
|
44087
|
-
/**
|
|
44088
|
-
* The popup template for the layer.
|
|
44089
|
-
*
|
|
44090
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html#popupTemplate Read more...}
|
|
44091
|
-
*/
|
|
44092
|
-
declare popupTemplate: ImageryTileMixin["popupTemplate"];
|
|
44093
44056
|
/**
|
|
44094
44057
|
* The portal item from which the layer is loaded.
|
|
44095
44058
|
*
|
|
@@ -44318,18 +44281,6 @@ declare namespace __esri {
|
|
|
44318
44281
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html#persistenceEnabled Read more...}
|
|
44319
44282
|
*/
|
|
44320
44283
|
persistenceEnabled?: OperationalLayerProperties["persistenceEnabled"];
|
|
44321
|
-
/**
|
|
44322
|
-
* Indicates whether to display popups when features in the layer are clicked.
|
|
44323
|
-
*
|
|
44324
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html#popupEnabled Read more...}
|
|
44325
|
-
*/
|
|
44326
|
-
popupEnabled?: ImageryTileMixinProperties["popupEnabled"];
|
|
44327
|
-
/**
|
|
44328
|
-
* The popup template for the layer.
|
|
44329
|
-
*
|
|
44330
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html#popupTemplate Read more...}
|
|
44331
|
-
*/
|
|
44332
|
-
popupTemplate?: ImageryTileMixinProperties["popupTemplate"];
|
|
44333
44284
|
/**
|
|
44334
44285
|
* The portal item from which the layer is loaded.
|
|
44335
44286
|
*
|
|
@@ -94965,7 +94916,7 @@ declare namespace __esri {
|
|
|
94965
94916
|
*
|
|
94966
94917
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#HitTestItem Read more...}
|
|
94967
94918
|
*/
|
|
94968
|
-
export type HitTestItem = Layer | Graphic |
|
|
94919
|
+
export type HitTestItem = Layer | Graphic | SubtypeSublayer;
|
|
94969
94920
|
|
|
94970
94921
|
/**
|
|
94971
94922
|
* Object specification for the result of the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#hitTest hitTest()} method.
|
|
@@ -94978,8 +94929,8 @@ declare namespace __esri {
|
|
|
94978
94929
|
}
|
|
94979
94930
|
|
|
94980
94931
|
export interface MapViewHitTestOptions {
|
|
94981
|
-
include?: HitTestItem
|
|
94982
|
-
exclude?: HitTestItem
|
|
94932
|
+
include?: HitTestItem | Iterable<HitTestItem> | Iterable<Iterable<HitTestItem>>;
|
|
94933
|
+
exclude?: HitTestItem | Iterable<HitTestItem> | Iterable<Iterable<HitTestItem>>;
|
|
94983
94934
|
}
|
|
94984
94935
|
|
|
94985
94936
|
export interface MapViewTakeScreenshotOptions {
|
|
@@ -95830,7 +95781,7 @@ declare namespace __esri {
|
|
|
95830
95781
|
*
|
|
95831
95782
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#IntersectItem Read more...}
|
|
95832
95783
|
*/
|
|
95833
|
-
export type IntersectItem = Graphic | Layer | BuildingSublayer;
|
|
95784
|
+
export type IntersectItem = Graphic | Layer | BuildingSublayer | SubtypeSublayer | Ground;
|
|
95834
95785
|
|
|
95835
95786
|
/**
|
|
95836
95787
|
* Object specification for the media hit results returned from {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-MediaLayer.html MediaLayer} in {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#HitTestResult HitTestResult} of the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#hitTest hitTest()} method.
|
|
@@ -95951,14 +95902,8 @@ declare namespace __esri {
|
|
|
95951
95902
|
}
|
|
95952
95903
|
|
|
95953
95904
|
export interface SceneViewToMapOptions {
|
|
95954
|
-
include?:
|
|
95955
|
-
|
|
95956
|
-
| Collection<IntersectItem>
|
|
95957
|
-
| IntersectItem;
|
|
95958
|
-
exclude?:
|
|
95959
|
-
| (IntersectItem | Collection<IntersectItem> | IntersectItem[] | Ground)[]
|
|
95960
|
-
| Collection<IntersectItem>
|
|
95961
|
-
| IntersectItem;
|
|
95905
|
+
include?: IntersectItem | Iterable<IntersectItem> | Iterable<Iterable<IntersectItem>>;
|
|
95906
|
+
exclude?: IntersectItem | Iterable<IntersectItem> | Iterable<Iterable<IntersectItem>>;
|
|
95962
95907
|
}
|
|
95963
95908
|
|
|
95964
95909
|
/**
|
|
@@ -102835,7 +102780,7 @@ declare namespace __esri {
|
|
|
102835
102780
|
*
|
|
102836
102781
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BuildingExplorer-BuildingLevel.html#allowedValues Read more...}
|
|
102837
102782
|
*/
|
|
102838
|
-
allowedValues: number[];
|
|
102783
|
+
allowedValues: readonly number[];
|
|
102839
102784
|
/**
|
|
102840
102785
|
* Whether the filter is enabled.
|
|
102841
102786
|
*
|
|
@@ -102918,7 +102863,7 @@ declare namespace __esri {
|
|
|
102918
102863
|
*
|
|
102919
102864
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BuildingExplorer-BuildingLevel.html#allowedValues Read more...}
|
|
102920
102865
|
*/
|
|
102921
|
-
allowedValues?: number[];
|
|
102866
|
+
allowedValues?: readonly number[];
|
|
102922
102867
|
}
|
|
102923
102868
|
|
|
102924
102869
|
export class BuildingPhase extends Accessor {
|
|
@@ -102936,7 +102881,7 @@ declare namespace __esri {
|
|
|
102936
102881
|
*
|
|
102937
102882
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BuildingExplorer-BuildingPhase.html#allowedValues Read more...}
|
|
102938
102883
|
*/
|
|
102939
|
-
allowedValues: number[];
|
|
102884
|
+
allowedValues: readonly number[];
|
|
102940
102885
|
/**
|
|
102941
102886
|
* Whether the filter is enabled.
|
|
102942
102887
|
*
|
|
@@ -103019,7 +102964,7 @@ declare namespace __esri {
|
|
|
103019
102964
|
*
|
|
103020
102965
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BuildingExplorer-BuildingPhase.html#allowedValues Read more...}
|
|
103021
102966
|
*/
|
|
103022
|
-
allowedValues?: number[];
|
|
102967
|
+
allowedValues?: readonly number[];
|
|
103023
102968
|
}
|
|
103024
102969
|
|
|
103025
102970
|
/**
|
|
@@ -104679,19 +104624,7 @@ declare namespace __esri {
|
|
|
104679
104624
|
*
|
|
104680
104625
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Directions.html#unit Read more...}
|
|
104681
104626
|
*/
|
|
104682
|
-
unit:
|
|
104683
|
-
| "imperial"
|
|
104684
|
-
| "metric"
|
|
104685
|
-
| "centimeters"
|
|
104686
|
-
| "decimeters"
|
|
104687
|
-
| "feet"
|
|
104688
|
-
| "inches"
|
|
104689
|
-
| "kilometers"
|
|
104690
|
-
| "meters"
|
|
104691
|
-
| "miles"
|
|
104692
|
-
| "millimeters"
|
|
104693
|
-
| "nautical-miles"
|
|
104694
|
-
| "yards";
|
|
104627
|
+
unit: SystemOrLengthUnit;
|
|
104695
104628
|
/**
|
|
104696
104629
|
* The view from which the widget will operate.
|
|
104697
104630
|
*
|
|
@@ -104785,19 +104718,7 @@ declare namespace __esri {
|
|
|
104785
104718
|
*
|
|
104786
104719
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Directions.html#unit Read more...}
|
|
104787
104720
|
*/
|
|
104788
|
-
unit?:
|
|
104789
|
-
| "imperial"
|
|
104790
|
-
| "metric"
|
|
104791
|
-
| "centimeters"
|
|
104792
|
-
| "decimeters"
|
|
104793
|
-
| "feet"
|
|
104794
|
-
| "inches"
|
|
104795
|
-
| "kilometers"
|
|
104796
|
-
| "meters"
|
|
104797
|
-
| "miles"
|
|
104798
|
-
| "millimeters"
|
|
104799
|
-
| "nautical-miles"
|
|
104800
|
-
| "yards";
|
|
104721
|
+
unit?: SystemOrLengthUnit;
|
|
104801
104722
|
/**
|
|
104802
104723
|
* The view from which the widget will operate.
|
|
104803
104724
|
*
|
|
@@ -104901,7 +104822,7 @@ declare namespace __esri {
|
|
|
104901
104822
|
*
|
|
104902
104823
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Directions-DirectionsViewModel.html#state Read more...}
|
|
104903
104824
|
*/
|
|
104904
|
-
readonly state: "disabled" | "
|
|
104825
|
+
readonly state: "ready" | "disabled" | "error" | "initializing" | "routing" | "unauthenticated";
|
|
104905
104826
|
/**
|
|
104906
104827
|
* The name of the network attribute to use for the drive time when computing directions.
|
|
104907
104828
|
*
|
|
@@ -105486,7 +105407,7 @@ declare namespace __esri {
|
|
|
105486
105407
|
*
|
|
105487
105408
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#allowedWorkflows Read more...}
|
|
105488
105409
|
*/
|
|
105489
|
-
allowedWorkflows: "create-features" | "update";
|
|
105410
|
+
allowedWorkflows: ("create-features" | "update" | "update-feature" | "update-table-record")[];
|
|
105490
105411
|
/**
|
|
105491
105412
|
* Indicates the heading level to use for title of the widget.
|
|
105492
105413
|
*
|
|
@@ -105625,7 +105546,7 @@ declare namespace __esri {
|
|
|
105625
105546
|
*
|
|
105626
105547
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#allowedWorkflows Read more...}
|
|
105627
105548
|
*/
|
|
105628
|
-
allowedWorkflows?: "create-features" | "update";
|
|
105549
|
+
allowedWorkflows?: ("create-features" | "update" | "update-feature" | "update-table-record")[];
|
|
105629
105550
|
/**
|
|
105630
105551
|
* Indicates the heading level to use for title of the widget.
|
|
105631
105552
|
*
|
|
@@ -105723,7 +105644,7 @@ declare namespace __esri {
|
|
|
105723
105644
|
*
|
|
105724
105645
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor-CreateFeaturesWorkflow.html#pendingFeatures Read more...}
|
|
105725
105646
|
*/
|
|
105726
|
-
readonly pendingFeatures: Collection<
|
|
105647
|
+
readonly pendingFeatures: Collection<Graphic>;
|
|
105727
105648
|
|
|
105728
105649
|
/**
|
|
105729
105650
|
* Moves the pending feature into update mode.
|
|
@@ -105810,7 +105731,7 @@ declare namespace __esri {
|
|
|
105810
105731
|
*
|
|
105811
105732
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor-EditorViewModel.html#allowedWorkflows Read more...}
|
|
105812
105733
|
*/
|
|
105813
|
-
allowedWorkflows: "create-features" | "update";
|
|
105734
|
+
allowedWorkflows: ("create-features" | "update" | "update-table-record" | "update-feature")[];
|
|
105814
105735
|
/**
|
|
105815
105736
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Attachments-AttachmentsViewModel.html AttachmentsViewModel} for supporting the editor widget.
|
|
105816
105737
|
*
|
|
@@ -106011,7 +105932,7 @@ declare namespace __esri {
|
|
|
106011
105932
|
*
|
|
106012
105933
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor-EditorViewModel.html#allowedWorkflows Read more...}
|
|
106013
105934
|
*/
|
|
106014
|
-
allowedWorkflows?: "create-features" | "update";
|
|
105935
|
+
allowedWorkflows?: ("create-features" | "update" | "update-table-record" | "update-feature")[];
|
|
106015
105936
|
/**
|
|
106016
105937
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Attachments-AttachmentsViewModel.html AttachmentsViewModel} for supporting the editor widget.
|
|
106017
105938
|
*
|
|
@@ -106083,8 +106004,8 @@ declare namespace __esri {
|
|
|
106083
106004
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor-EditorViewModel.html#EditableItem Read more...}
|
|
106084
106005
|
*/
|
|
106085
106006
|
export interface EditableItem {
|
|
106086
|
-
layer: FeatureLayer | SceneLayer | SubtypeSublayer;
|
|
106087
|
-
supports:
|
|
106007
|
+
layer: GeoJSONLayer | FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
106008
|
+
supports: ("create" | "update" | "delete")[];
|
|
106088
106009
|
hasAttachments: boolean;
|
|
106089
106010
|
geometryUpdatesEnabled: boolean;
|
|
106090
106011
|
attributeUpdatesEnabled: boolean;
|
|
@@ -106209,11 +106130,11 @@ declare namespace __esri {
|
|
|
106209
106130
|
*/
|
|
106210
106131
|
isTable: boolean;
|
|
106211
106132
|
/**
|
|
106212
|
-
* The
|
|
106133
|
+
* The layer currently being edited.
|
|
106213
106134
|
*
|
|
106214
106135
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor-support-EditorItem.html#layer Read more...}
|
|
106215
106136
|
*/
|
|
106216
|
-
layer: FeatureLayer | SubtypeSublayer;
|
|
106137
|
+
layer: GeoJSONLayer | FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
106217
106138
|
/**
|
|
106218
106139
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#LayerInfo layerInfo} for the provided layer.
|
|
106219
106140
|
*
|
|
@@ -106260,11 +106181,16 @@ declare namespace __esri {
|
|
|
106260
106181
|
*/
|
|
106261
106182
|
isTable?: boolean;
|
|
106262
106183
|
/**
|
|
106263
|
-
* The
|
|
106184
|
+
* The layer currently being edited.
|
|
106264
106185
|
*
|
|
106265
106186
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor-support-EditorItem.html#layer Read more...}
|
|
106266
106187
|
*/
|
|
106267
|
-
layer?:
|
|
106188
|
+
layer?:
|
|
106189
|
+
| (GeoJSONLayerProperties & { type: "geojson" })
|
|
106190
|
+
| (FeatureLayerProperties & { type: "feature" })
|
|
106191
|
+
| (OrientedImageryLayerProperties & { type: "oriented-imagery" })
|
|
106192
|
+
| (SceneLayerProperties & { type: "scene" })
|
|
106193
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" });
|
|
106268
106194
|
/**
|
|
106269
106195
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#LayerInfo layerInfo} for the provided layer.
|
|
106270
106196
|
*
|
|
@@ -106304,7 +106230,7 @@ declare namespace __esri {
|
|
|
106304
106230
|
attachments: AttachmentCapabilities;
|
|
106305
106231
|
create: CreateCapabilities;
|
|
106306
106232
|
delete: DeleteCapabilities;
|
|
106307
|
-
layer: FeatureLayer | SubtypeSublayer;
|
|
106233
|
+
layer: GeoJSONLayer | FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
106308
106234
|
reliesOnOwnerAdminPrivileges: boolean;
|
|
106309
106235
|
update: UpdateCapabilities;
|
|
106310
106236
|
}
|
|
@@ -106330,7 +106256,7 @@ declare namespace __esri {
|
|
|
106330
106256
|
defaults: DefaultEditingCapabilities;
|
|
106331
106257
|
delete: DeleteCapabilities;
|
|
106332
106258
|
formTemplate: FormTemplate;
|
|
106333
|
-
layer: FeatureLayer | SubtypeSublayer;
|
|
106259
|
+
layer: GeoJSONLayer | FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
106334
106260
|
layerInfo: EditorLayerInfo;
|
|
106335
106261
|
relationship: RelationshipCapabilities;
|
|
106336
106262
|
reliesOnOwnerAdminPrivileges: boolean;
|
|
@@ -106469,7 +106395,7 @@ declare namespace __esri {
|
|
|
106469
106395
|
*
|
|
106470
106396
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor-Workflow.html#type Read more...}
|
|
106471
106397
|
*/
|
|
106472
|
-
readonly type: "create" | "
|
|
106398
|
+
readonly type: "create-features" | "update" | "update-feature" | "update-table-record";
|
|
106473
106399
|
|
|
106474
106400
|
/**
|
|
106475
106401
|
* Cancels the active workflow.
|
|
@@ -106535,8 +106461,8 @@ declare namespace __esri {
|
|
|
106535
106461
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#CreationInfo Read more...}
|
|
106536
106462
|
*/
|
|
106537
106463
|
export interface CreationInfo {
|
|
106538
|
-
layer: FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
106539
|
-
template
|
|
106464
|
+
layer: GeoJSONLayer | FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
106465
|
+
template?: FeatureTemplate;
|
|
106540
106466
|
geometryToPlace?: Mesh;
|
|
106541
106467
|
maxFeatures?: number;
|
|
106542
106468
|
initialFeature?: Graphic;
|
|
@@ -106552,7 +106478,7 @@ declare namespace __esri {
|
|
|
106552
106478
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#LayerInfo Read more...}
|
|
106553
106479
|
*/
|
|
106554
106480
|
export interface EditorLayerInfo {
|
|
106555
|
-
layer: FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer |
|
|
106481
|
+
layer: FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer | GeoJSONLayer;
|
|
106556
106482
|
enabled?: boolean;
|
|
106557
106483
|
addEnabled?: boolean;
|
|
106558
106484
|
updateEnabled?: boolean;
|
|
@@ -106631,7 +106557,7 @@ declare namespace __esri {
|
|
|
106631
106557
|
|
|
106632
106558
|
export interface SupportingWidgetDefaultsFeatureTemplates {
|
|
106633
106559
|
groupBy?: string | GroupByFunction;
|
|
106634
|
-
visibleElements
|
|
106560
|
+
visibleElements?: SupportingWidgetDefaultsFeatureTemplatesVisibleElements;
|
|
106635
106561
|
enableListScroll?: boolean;
|
|
106636
106562
|
}
|
|
106637
106563
|
|
|
@@ -106641,9 +106567,9 @@ declare namespace __esri {
|
|
|
106641
106567
|
|
|
106642
106568
|
export interface SupportingWidgetDefaultsSketch {
|
|
106643
106569
|
defaultUpdateOptions?: any;
|
|
106644
|
-
|
|
106645
|
-
polygonSymbol?: SimpleFillSymbol;
|
|
106646
|
-
polylineSymbol?: SimpleLineSymbol;
|
|
106570
|
+
pointSymbol?: SimpleMarkerSymbol | PictureMarkerSymbol | PointSymbol3D | TextSymbol | CIMSymbol | WebStyleSymbol;
|
|
106571
|
+
polygonSymbol?: SimpleFillSymbol | CIMSymbol | PolygonSymbol3D;
|
|
106572
|
+
polylineSymbol?: SimpleLineSymbol | CIMSymbol | LineSymbol3D;
|
|
106647
106573
|
}
|
|
106648
106574
|
|
|
106649
106575
|
export interface VisibleElementsSnappingControlsElements {
|
|
@@ -106916,8 +106842,10 @@ declare namespace __esri {
|
|
|
106916
106842
|
avgElevation: number;
|
|
106917
106843
|
elevationGain: number;
|
|
106918
106844
|
elevationLoss: number;
|
|
106919
|
-
|
|
106920
|
-
|
|
106845
|
+
maxPositiveSlope: number;
|
|
106846
|
+
avgPositiveSlope: number;
|
|
106847
|
+
maxNegativeSlope: number;
|
|
106848
|
+
avgNegativeSlope: number;
|
|
106921
106849
|
}
|
|
106922
106850
|
|
|
106923
106851
|
export class ElevationProfileLineGround extends ElevationProfileLine {
|
|
@@ -107018,19 +106946,13 @@ declare namespace __esri {
|
|
|
107018
106946
|
*
|
|
107019
106947
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile-ElevationProfileLineView.html#exclude Read more...}
|
|
107020
106948
|
*/
|
|
107021
|
-
exclude:
|
|
107022
|
-
| (IntersectItem | Collection<IntersectItem> | IntersectItem[] | Ground)[]
|
|
107023
|
-
| Collection<IntersectItem>
|
|
107024
|
-
| IntersectItem;
|
|
106949
|
+
exclude: IntersectItem | Iterable<IntersectItem> | Iterable<Iterable<IntersectItem>>;
|
|
107025
106950
|
/**
|
|
107026
106951
|
* Items which are to be hit when querying elevation from view.
|
|
107027
106952
|
*
|
|
107028
106953
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile-ElevationProfileLineView.html#include Read more...}
|
|
107029
106954
|
*/
|
|
107030
|
-
include:
|
|
107031
|
-
| (IntersectItem | Collection<IntersectItem> | IntersectItem[] | Ground)[]
|
|
107032
|
-
| Collection<IntersectItem>
|
|
107033
|
-
| IntersectItem;
|
|
106955
|
+
include: IntersectItem | Iterable<IntersectItem> | Iterable<Iterable<IntersectItem>>;
|
|
107034
106956
|
/**
|
|
107035
106957
|
* The line type.
|
|
107036
106958
|
*
|
|
@@ -107046,36 +106968,54 @@ declare namespace __esri {
|
|
|
107046
106968
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile-ElevationProfileLineView.html#exclude Read more...}
|
|
107047
106969
|
*/
|
|
107048
106970
|
exclude?:
|
|
107049
|
-
|
|
|
106971
|
+
| GraphicProperties
|
|
106972
|
+
| LayerProperties
|
|
106973
|
+
| BuildingSublayerProperties
|
|
106974
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" })
|
|
106975
|
+
| GroundProperties
|
|
106976
|
+
| Iterable<
|
|
107050
106977
|
| GraphicProperties
|
|
107051
106978
|
| LayerProperties
|
|
107052
106979
|
| BuildingSublayerProperties
|
|
107053
|
-
|
|
|
107054
|
-
| (GraphicProperties | LayerProperties | BuildingSublayerProperties)[]
|
|
106980
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" })
|
|
107055
106981
|
| GroundProperties
|
|
107056
|
-
|
|
107057
|
-
|
|
|
107058
|
-
|
|
107059
|
-
|
|
107060
|
-
|
|
106982
|
+
>
|
|
106983
|
+
| Iterable<
|
|
106984
|
+
Iterable<
|
|
106985
|
+
| GraphicProperties
|
|
106986
|
+
| LayerProperties
|
|
106987
|
+
| BuildingSublayerProperties
|
|
106988
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" })
|
|
106989
|
+
| GroundProperties
|
|
106990
|
+
>
|
|
106991
|
+
>;
|
|
107061
106992
|
/**
|
|
107062
106993
|
* Items which are to be hit when querying elevation from view.
|
|
107063
106994
|
*
|
|
107064
106995
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile-ElevationProfileLineView.html#include Read more...}
|
|
107065
106996
|
*/
|
|
107066
106997
|
include?:
|
|
107067
|
-
|
|
|
106998
|
+
| GraphicProperties
|
|
106999
|
+
| LayerProperties
|
|
107000
|
+
| BuildingSublayerProperties
|
|
107001
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" })
|
|
107002
|
+
| GroundProperties
|
|
107003
|
+
| Iterable<
|
|
107068
107004
|
| GraphicProperties
|
|
107069
107005
|
| LayerProperties
|
|
107070
107006
|
| BuildingSublayerProperties
|
|
107071
|
-
|
|
|
107072
|
-
| (GraphicProperties | LayerProperties | BuildingSublayerProperties)[]
|
|
107007
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" })
|
|
107073
107008
|
| GroundProperties
|
|
107074
|
-
|
|
107075
|
-
|
|
|
107076
|
-
|
|
107077
|
-
|
|
107078
|
-
|
|
107009
|
+
>
|
|
107010
|
+
| Iterable<
|
|
107011
|
+
Iterable<
|
|
107012
|
+
| GraphicProperties
|
|
107013
|
+
| LayerProperties
|
|
107014
|
+
| BuildingSublayerProperties
|
|
107015
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" })
|
|
107016
|
+
| GroundProperties
|
|
107017
|
+
>
|
|
107018
|
+
>;
|
|
107079
107019
|
}
|
|
107080
107020
|
|
|
107081
107021
|
export class ElevationProfileViewModel extends Accessor {
|
|
@@ -107332,7 +107272,7 @@ declare namespace __esri {
|
|
|
107332
107272
|
*
|
|
107333
107273
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Expand.html#content Read more...}
|
|
107334
107274
|
*/
|
|
107335
|
-
content:
|
|
107275
|
+
content: string | HTMLElement | Widget | DomNodeOwner;
|
|
107336
107276
|
/**
|
|
107337
107277
|
* Indicates whether the widget is currently expanded or not.
|
|
107338
107278
|
*
|
|
@@ -107471,7 +107411,7 @@ declare namespace __esri {
|
|
|
107471
107411
|
*
|
|
107472
107412
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Expand.html#content Read more...}
|
|
107473
107413
|
*/
|
|
107474
|
-
content?:
|
|
107414
|
+
content?: string | HTMLElement | WidgetProperties | DomNodeOwner;
|
|
107475
107415
|
/**
|
|
107476
107416
|
* Indicates whether the widget is currently expanded or not.
|
|
107477
107417
|
*
|
|
@@ -107628,6 +107568,15 @@ declare namespace __esri {
|
|
|
107628
107568
|
view?: (MapViewProperties & { type: "2d" }) | (SceneViewProperties & { type: "3d" });
|
|
107629
107569
|
}
|
|
107630
107570
|
|
|
107571
|
+
/**
|
|
107572
|
+
* A dom node owner.
|
|
107573
|
+
*
|
|
107574
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Expand.html#DomNodeOwner Read more...}
|
|
107575
|
+
*/
|
|
107576
|
+
export interface DomNodeOwner {
|
|
107577
|
+
domNode: HTMLElement;
|
|
107578
|
+
}
|
|
107579
|
+
|
|
107631
107580
|
export class Feature extends Widget {
|
|
107632
107581
|
/**
|
|
107633
107582
|
* The Feature widget displays a graphic according to its [PopupTemplate](esri-PopupTemplate.html).
|
|
@@ -107816,14 +107765,14 @@ declare namespace __esri {
|
|
|
107816
107765
|
*/
|
|
107817
107766
|
interface FeatureUtilityNetworkAssociationsViewModel {
|
|
107818
107767
|
readonly associationsLayer: FeatureLayer;
|
|
107819
|
-
|
|
107768
|
+
associationTypes: UtilityNetworkAssociationType[];
|
|
107820
107769
|
description: string;
|
|
107821
107770
|
displayCount: number;
|
|
107822
107771
|
featureCount: number;
|
|
107823
107772
|
readonly globalId: string;
|
|
107824
107773
|
readonly globalIdField: string;
|
|
107825
107774
|
graphic: Graphic;
|
|
107826
|
-
layer: FeatureLayer;
|
|
107775
|
+
layer: FeatureLayer | SceneLayer | SubtypeSublayer | Sublayer;
|
|
107827
107776
|
map: Map;
|
|
107828
107777
|
readonly objectId: number;
|
|
107829
107778
|
readonly objectIdField: string;
|
|
@@ -108125,7 +108074,7 @@ declare namespace __esri {
|
|
|
108125
108074
|
*
|
|
108126
108075
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm.html#layer Read more...}
|
|
108127
108076
|
*/
|
|
108128
|
-
layer: FeatureLayer | SubtypeSublayer;
|
|
108077
|
+
layer: CSVLayer | GeoJSONLayer | FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
108129
108078
|
/**
|
|
108130
108079
|
* A reference to the associated {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html Map}.
|
|
108131
108080
|
*
|
|
@@ -108199,7 +108148,13 @@ declare namespace __esri {
|
|
|
108199
108148
|
*
|
|
108200
108149
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm.html#layer Read more...}
|
|
108201
108150
|
*/
|
|
108202
|
-
layer?:
|
|
108151
|
+
layer?:
|
|
108152
|
+
| (CSVLayerProperties & { type: "csv" })
|
|
108153
|
+
| (GeoJSONLayerProperties & { type: "geojson" })
|
|
108154
|
+
| (FeatureLayerProperties & { type: "feature" })
|
|
108155
|
+
| (OrientedImageryLayerProperties & { type: "oriented-imagery" })
|
|
108156
|
+
| (SceneLayerProperties & { type: "scene" })
|
|
108157
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" });
|
|
108203
108158
|
/**
|
|
108204
108159
|
* A reference to the associated {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html Map}.
|
|
108205
108160
|
*
|
|
@@ -108243,9 +108198,9 @@ declare namespace __esri {
|
|
|
108243
108198
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html FeatureUtilityNetworkAssociationsViewModel}
|
|
108244
108199
|
* for supporting the editor widget.
|
|
108245
108200
|
*
|
|
108246
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#
|
|
108201
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#featureUtilityNetworkAssociationsViewModel Read more...}
|
|
108247
108202
|
*/
|
|
108248
|
-
|
|
108203
|
+
featureUtilityNetworkAssociationsViewModel: FeatureUtilityNetworkAssociationsViewModel;
|
|
108249
108204
|
/**
|
|
108250
108205
|
* The associated {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-FormTemplate.html template} used for the form.
|
|
108251
108206
|
*
|
|
@@ -108258,13 +108213,19 @@ declare namespace __esri {
|
|
|
108258
108213
|
*
|
|
108259
108214
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#inputs Read more...}
|
|
108260
108215
|
*/
|
|
108261
|
-
readonly inputs: (
|
|
108216
|
+
readonly inputs: (
|
|
108217
|
+
| FieldInput
|
|
108218
|
+
| GroupInput
|
|
108219
|
+
| RelationshipInput
|
|
108220
|
+
| TextElementInput
|
|
108221
|
+
| UtilityNetworkAssociationInput
|
|
108222
|
+
)[];
|
|
108262
108223
|
/**
|
|
108263
108224
|
* Layer containing the editable feature attributes.
|
|
108264
108225
|
*
|
|
108265
108226
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#layer Read more...}
|
|
108266
108227
|
*/
|
|
108267
|
-
layer: FeatureLayer | SceneLayer | SubtypeSublayer;
|
|
108228
|
+
layer: CSVLayer | GeoJSONLayer | FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
108268
108229
|
/**
|
|
108269
108230
|
* A reference to the associated {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html Map}.
|
|
108270
108231
|
*
|
|
@@ -108381,9 +108342,9 @@ declare namespace __esri {
|
|
|
108381
108342
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html FeatureUtilityNetworkAssociationsViewModel}
|
|
108382
108343
|
* for supporting the editor widget.
|
|
108383
108344
|
*
|
|
108384
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#
|
|
108345
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#featureUtilityNetworkAssociationsViewModel Read more...}
|
|
108385
108346
|
*/
|
|
108386
|
-
|
|
108347
|
+
featureUtilityNetworkAssociationsViewModel?: FeatureUtilityNetworkAssociationsViewModel;
|
|
108387
108348
|
/**
|
|
108388
108349
|
* The associated {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-FormTemplate.html template} used for the form.
|
|
108389
108350
|
*
|
|
@@ -108396,7 +108357,10 @@ declare namespace __esri {
|
|
|
108396
108357
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#layer Read more...}
|
|
108397
108358
|
*/
|
|
108398
108359
|
layer?:
|
|
108360
|
+
| (CSVLayerProperties & { type: "csv" })
|
|
108361
|
+
| (GeoJSONLayerProperties & { type: "geojson" })
|
|
108399
108362
|
| (FeatureLayerProperties & { type: "feature" })
|
|
108363
|
+
| (OrientedImageryLayerProperties & { type: "oriented-imagery" })
|
|
108400
108364
|
| (SceneLayerProperties & { type: "scene" })
|
|
108401
108365
|
| (SubtypeSublayerProperties & { type: "subtype-sublayer" });
|
|
108402
108366
|
/**
|
|
@@ -108465,7 +108429,7 @@ declare namespace __esri {
|
|
|
108465
108429
|
*
|
|
108466
108430
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FieldInput.html#domain Read more...}
|
|
108467
108431
|
*/
|
|
108468
|
-
readonly domain: CodedValueDomain | RangeDomain;
|
|
108432
|
+
readonly domain: CodedValueDomain | RangeDomain | InheritedDomain;
|
|
108469
108433
|
/**
|
|
108470
108434
|
* Indicates if the field is editable.
|
|
108471
108435
|
*
|
|
@@ -108511,7 +108475,7 @@ declare namespace __esri {
|
|
|
108511
108475
|
*
|
|
108512
108476
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FieldInput.html#includeTime Read more...}
|
|
108513
108477
|
*/
|
|
108514
|
-
readonly includeTime:
|
|
108478
|
+
readonly includeTime: boolean;
|
|
108515
108479
|
/**
|
|
108516
108480
|
* Indicates whether timestamp information is included for date inputs.
|
|
108517
108481
|
*
|
|
@@ -108527,7 +108491,17 @@ declare namespace __esri {
|
|
|
108527
108491
|
*
|
|
108528
108492
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FieldInput.html#inputType Read more...}
|
|
108529
108493
|
*/
|
|
108530
|
-
readonly inputType:
|
|
108494
|
+
readonly inputType:
|
|
108495
|
+
| "switch"
|
|
108496
|
+
| "barcode-scanner"
|
|
108497
|
+
| "combo-box"
|
|
108498
|
+
| "date-picker"
|
|
108499
|
+
| "datetime-picker"
|
|
108500
|
+
| "datetimeoffset-picker"
|
|
108501
|
+
| "radio-buttons"
|
|
108502
|
+
| "text-area"
|
|
108503
|
+
| "text-box"
|
|
108504
|
+
| "time-picker";
|
|
108531
108505
|
/**
|
|
108532
108506
|
* The field's label.
|
|
108533
108507
|
*
|
|
@@ -108628,7 +108602,7 @@ declare namespace __esri {
|
|
|
108628
108602
|
*
|
|
108629
108603
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-GroupInput.html#inputs Read more...}
|
|
108630
108604
|
*/
|
|
108631
|
-
readonly inputs: FieldInput
|
|
108605
|
+
readonly inputs: (FieldInput | RelationshipInput | TextElementInput | UtilityNetworkAssociationInput)[];
|
|
108632
108606
|
/**
|
|
108633
108607
|
* The group's label.
|
|
108634
108608
|
*
|
|
@@ -108739,6 +108713,129 @@ declare namespace __esri {
|
|
|
108739
108713
|
|
|
108740
108714
|
interface RelationshipInputProperties extends InputBaseProperties {}
|
|
108741
108715
|
|
|
108716
|
+
export interface TextElementInput extends Accessor, InputBase {}
|
|
108717
|
+
|
|
108718
|
+
export class TextElementInput {
|
|
108719
|
+
constructor(properties?: TextElementInputProperties);
|
|
108720
|
+
|
|
108721
|
+
/**
|
|
108722
|
+
* The input's description.
|
|
108723
|
+
*
|
|
108724
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#description Read more...}
|
|
108725
|
+
*/
|
|
108726
|
+
declare readonly description: InputBase["description"];
|
|
108727
|
+
/**
|
|
108728
|
+
* All Aracde expressions referenced, via string substitution, in the text
|
|
108729
|
+
* content.
|
|
108730
|
+
*
|
|
108731
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#expressionsUsed Read more...}
|
|
108732
|
+
*/
|
|
108733
|
+
readonly expressionsUsed: string[];
|
|
108734
|
+
/**
|
|
108735
|
+
* The names of all fields referenced, via string templates, in the text
|
|
108736
|
+
* content.
|
|
108737
|
+
*
|
|
108738
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#fieldsUsed Read more...}
|
|
108739
|
+
*/
|
|
108740
|
+
readonly fieldsUsed: string[];
|
|
108741
|
+
/**
|
|
108742
|
+
* The group containing the text element input.
|
|
108743
|
+
*
|
|
108744
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#group Read more...}
|
|
108745
|
+
*/
|
|
108746
|
+
readonly group: GroupInput;
|
|
108747
|
+
/**
|
|
108748
|
+
* The content of the TextElement, as a string in either plain-text (no
|
|
108749
|
+
* formatting) or Markdown.
|
|
108750
|
+
*
|
|
108751
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#rawText Read more...}
|
|
108752
|
+
*/
|
|
108753
|
+
rawText: string;
|
|
108754
|
+
/**
|
|
108755
|
+
* The processed text, compiled and with template parameters replaced with
|
|
108756
|
+
* values.
|
|
108757
|
+
*
|
|
108758
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#text Read more...}
|
|
108759
|
+
*/
|
|
108760
|
+
text: string;
|
|
108761
|
+
/**
|
|
108762
|
+
* Defines the format of the `text` property.
|
|
108763
|
+
*
|
|
108764
|
+
* @default "plain-text"
|
|
108765
|
+
*
|
|
108766
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#textFormat Read more...}
|
|
108767
|
+
*/
|
|
108768
|
+
textFormat: "plain-text" | "markdown";
|
|
108769
|
+
/**
|
|
108770
|
+
* The type of input.
|
|
108771
|
+
*
|
|
108772
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#type Read more...}
|
|
108773
|
+
*/
|
|
108774
|
+
readonly type: "text";
|
|
108775
|
+
}
|
|
108776
|
+
|
|
108777
|
+
interface TextElementInputProperties extends InputBaseProperties {
|
|
108778
|
+
/**
|
|
108779
|
+
* The content of the TextElement, as a string in either plain-text (no
|
|
108780
|
+
* formatting) or Markdown.
|
|
108781
|
+
*
|
|
108782
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#rawText Read more...}
|
|
108783
|
+
*/
|
|
108784
|
+
rawText?: string;
|
|
108785
|
+
/**
|
|
108786
|
+
* The processed text, compiled and with template parameters replaced with
|
|
108787
|
+
* values.
|
|
108788
|
+
*
|
|
108789
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#text Read more...}
|
|
108790
|
+
*/
|
|
108791
|
+
text?: string;
|
|
108792
|
+
/**
|
|
108793
|
+
* Defines the format of the `text` property.
|
|
108794
|
+
*
|
|
108795
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#textFormat Read more...}
|
|
108796
|
+
*/
|
|
108797
|
+
textFormat?: "plain-text" | "markdown";
|
|
108798
|
+
}
|
|
108799
|
+
|
|
108800
|
+
export interface UtilityNetworkAssociationInput extends Accessor, EditableInput, InputBase {}
|
|
108801
|
+
|
|
108802
|
+
export class UtilityNetworkAssociationInput {
|
|
108803
|
+
constructor(properties?: UtilityNetworkAssociationInputProperties);
|
|
108804
|
+
|
|
108805
|
+
/**
|
|
108806
|
+
* The input's description.
|
|
108807
|
+
*
|
|
108808
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-UtilityNetworkAssociationInput.html#description Read more...}
|
|
108809
|
+
*/
|
|
108810
|
+
declare readonly description: InputBase["description"];
|
|
108811
|
+
/**
|
|
108812
|
+
* Indicates whether the input is editable.
|
|
108813
|
+
*
|
|
108814
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-UtilityNetworkAssociationInput.html#editable Read more...}
|
|
108815
|
+
*/
|
|
108816
|
+
readonly editable: boolean;
|
|
108817
|
+
/**
|
|
108818
|
+
* The group containing the relationship input.
|
|
108819
|
+
*
|
|
108820
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-UtilityNetworkAssociationInput.html#group Read more...}
|
|
108821
|
+
*/
|
|
108822
|
+
readonly group: GroupInput;
|
|
108823
|
+
/**
|
|
108824
|
+
* The type of input.
|
|
108825
|
+
*
|
|
108826
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-UtilityNetworkAssociationInput.html#type Read more...}
|
|
108827
|
+
*/
|
|
108828
|
+
readonly type: "utilityNetworkAssociations";
|
|
108829
|
+
/**
|
|
108830
|
+
* Indicates whether the form is currently updating.
|
|
108831
|
+
*
|
|
108832
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-UtilityNetworkAssociationInput.html#updating Read more...}
|
|
108833
|
+
*/
|
|
108834
|
+
readonly updating: boolean;
|
|
108835
|
+
}
|
|
108836
|
+
|
|
108837
|
+
interface UtilityNetworkAssociationInputProperties extends InputBaseProperties {}
|
|
108838
|
+
|
|
108742
108839
|
export interface FeatureFormSubmitEvent {
|
|
108743
108840
|
invalid: string[];
|
|
108744
108841
|
valid: string[];
|
|
@@ -109817,6 +109914,12 @@ declare namespace __esri {
|
|
|
109817
109914
|
readonly columns: Collection<
|
|
109818
109915
|
Column | FieldColumn | GroupColumn | ActionColumn | AttachmentsColumn | RelationshipColumn
|
|
109819
109916
|
>;
|
|
109917
|
+
/**
|
|
109918
|
+
* The ID or node representing the DOM element containing the widget.
|
|
109919
|
+
*
|
|
109920
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#container Read more...}
|
|
109921
|
+
*/
|
|
109922
|
+
container: HTMLElement;
|
|
109820
109923
|
/**
|
|
109821
109924
|
* Text displayed in the table header, under the title.
|
|
109822
109925
|
*
|
|
@@ -110322,6 +110425,12 @@ declare namespace __esri {
|
|
|
110322
110425
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#columnReorderingEnabled Read more...}
|
|
110323
110426
|
*/
|
|
110324
110427
|
columnReorderingEnabled?: boolean;
|
|
110428
|
+
/**
|
|
110429
|
+
* The ID or node representing the DOM element containing the widget.
|
|
110430
|
+
*
|
|
110431
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#container Read more...}
|
|
110432
|
+
*/
|
|
110433
|
+
container?: HTMLElement | string;
|
|
110325
110434
|
/**
|
|
110326
110435
|
* Text displayed in the table header, under the title.
|
|
110327
110436
|
*
|
|
@@ -110656,11 +110765,11 @@ declare namespace __esri {
|
|
|
110656
110765
|
/**
|
|
110657
110766
|
* Attempts to display attachment thumbnail previews as images instead of generic icons.
|
|
110658
110767
|
*
|
|
110659
|
-
* @default
|
|
110768
|
+
* @default "image"
|
|
110660
110769
|
*
|
|
110661
110770
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-AttachmentsColumn.html#thumbnailAppearance Read more...}
|
|
110662
110771
|
*/
|
|
110663
|
-
thumbnailAppearance:
|
|
110772
|
+
thumbnailAppearance: "image" | "icon";
|
|
110664
110773
|
/**
|
|
110665
110774
|
* Controls the number of attachment thumbnail previews to display in each cell.
|
|
110666
110775
|
*
|
|
@@ -110714,7 +110823,7 @@ declare namespace __esri {
|
|
|
110714
110823
|
*
|
|
110715
110824
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-AttachmentsColumn.html#thumbnailAppearance Read more...}
|
|
110716
110825
|
*/
|
|
110717
|
-
thumbnailAppearance?:
|
|
110826
|
+
thumbnailAppearance?: "image" | "icon";
|
|
110718
110827
|
/**
|
|
110719
110828
|
* Controls the number of attachment thumbnail previews to display in each cell.
|
|
110720
110829
|
*
|
|
@@ -111532,7 +111641,7 @@ declare namespace __esri {
|
|
|
111532
111641
|
*/
|
|
111533
111642
|
export interface SelectionFilter {
|
|
111534
111643
|
type: string;
|
|
111535
|
-
objectIds: number[];
|
|
111644
|
+
objectIds: (number | string)[];
|
|
111536
111645
|
}
|
|
111537
111646
|
|
|
111538
111647
|
export interface FieldColumn extends Accessor, Column {}
|
|
@@ -112347,7 +112456,7 @@ declare namespace __esri {
|
|
|
112347
112456
|
*
|
|
112348
112457
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-RelationshipColumn.html#resizable Read more...}
|
|
112349
112458
|
*/
|
|
112350
|
-
readonly resizable:
|
|
112459
|
+
readonly resizable: boolean;
|
|
112351
112460
|
/**
|
|
112352
112461
|
* The text alignment of the relationship column.
|
|
112353
112462
|
*
|
|
@@ -112385,6 +112494,28 @@ declare namespace __esri {
|
|
|
112385
112494
|
width?: number | string;
|
|
112386
112495
|
}
|
|
112387
112496
|
|
|
112497
|
+
export class AttachmentsColumnTemplate extends ColumnTemplateBase {
|
|
112498
|
+
/**
|
|
112499
|
+
* A AttachmentsColumnTemplate formats and defines the structure of a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-AttachmentsColumn.html AttachmentsColumn} within a
|
|
112500
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html FeatureTable} widget.
|
|
112501
|
+
*
|
|
112502
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-AttachmentsColumnTemplate.html Read more...}
|
|
112503
|
+
*/
|
|
112504
|
+
|
|
112505
|
+
constructor(properties?: AttachmentsColumnTemplateProperties);
|
|
112506
|
+
|
|
112507
|
+
/**
|
|
112508
|
+
* The type of column that the template represents.
|
|
112509
|
+
*
|
|
112510
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-AttachmentsColumnTemplate.html#type Read more...}
|
|
112511
|
+
*/
|
|
112512
|
+
readonly type: "attachment";
|
|
112513
|
+
|
|
112514
|
+
static fromJSON(json: any): AttachmentsColumnTemplate;
|
|
112515
|
+
}
|
|
112516
|
+
|
|
112517
|
+
interface AttachmentsColumnTemplateProperties extends ColumnTemplateBaseProperties {}
|
|
112518
|
+
|
|
112388
112519
|
export class ColumnTemplate extends ColumnTemplateBase {
|
|
112389
112520
|
/**
|
|
112390
112521
|
* A ColumnTemplate formats and defines the structure of a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html Column} within a
|
|
@@ -112828,7 +112959,7 @@ declare namespace __esri {
|
|
|
112828
112959
|
*
|
|
112829
112960
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-GroupColumnTemplate.html#columnTemplates Read more...}
|
|
112830
112961
|
*/
|
|
112831
|
-
columnTemplates: (FieldColumnTemplate |
|
|
112962
|
+
columnTemplates: (ColumnTemplate | FieldColumnTemplate | AttachmentsColumnTemplate | RelationshipColumnTemplate)[];
|
|
112832
112963
|
/**
|
|
112833
112964
|
* The type of column that the template represents.
|
|
112834
112965
|
*
|
|
@@ -112846,11 +112977,35 @@ declare namespace __esri {
|
|
|
112846
112977
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-GroupColumnTemplate.html#columnTemplates Read more...}
|
|
112847
112978
|
*/
|
|
112848
112979
|
columnTemplates?: (
|
|
112980
|
+
| (ColumnTemplateProperties & { type: "column" })
|
|
112849
112981
|
| (FieldColumnTemplateProperties & { type: "field" })
|
|
112850
|
-
| (
|
|
112982
|
+
| (AttachmentsColumnTemplateProperties & { type: "attachment" })
|
|
112983
|
+
| (RelationshipColumnTemplateProperties & { type: "relationship" })
|
|
112851
112984
|
)[];
|
|
112852
112985
|
}
|
|
112853
112986
|
|
|
112987
|
+
export class RelationshipColumnTemplate extends ColumnTemplateBase {
|
|
112988
|
+
/**
|
|
112989
|
+
* A RelationshipColumnTemplate formats and defines the structure of a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-RelationshipColumn.html RelationshipColumn} within a
|
|
112990
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html FeatureTable} widget.
|
|
112991
|
+
*
|
|
112992
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-RelationshipColumnTemplate.html Read more...}
|
|
112993
|
+
*/
|
|
112994
|
+
|
|
112995
|
+
constructor(properties?: RelationshipColumnTemplateProperties);
|
|
112996
|
+
|
|
112997
|
+
/**
|
|
112998
|
+
* The type of column that the template represents.
|
|
112999
|
+
*
|
|
113000
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-RelationshipColumnTemplate.html#type Read more...}
|
|
113001
|
+
*/
|
|
113002
|
+
readonly type: "relationship";
|
|
113003
|
+
|
|
113004
|
+
static fromJSON(json: any): RelationshipColumnTemplate;
|
|
113005
|
+
}
|
|
113006
|
+
|
|
113007
|
+
interface RelationshipColumnTemplateProperties extends ColumnTemplateBaseProperties {}
|
|
113008
|
+
|
|
112854
113009
|
export interface TableTemplate extends Accessor, JSONSupport {}
|
|
112855
113010
|
|
|
112856
113011
|
export class TableTemplate {
|
|
@@ -112867,7 +113022,13 @@ declare namespace __esri {
|
|
|
112867
113022
|
*
|
|
112868
113023
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-TableTemplate.html#columnTemplates Read more...}
|
|
112869
113024
|
*/
|
|
112870
|
-
columnTemplates: (
|
|
113025
|
+
columnTemplates: (
|
|
113026
|
+
| FieldColumnTemplate
|
|
113027
|
+
| GroupColumnTemplate
|
|
113028
|
+
| ColumnTemplate
|
|
113029
|
+
| AttachmentsColumnTemplate
|
|
113030
|
+
| RelationshipColumnTemplate
|
|
113031
|
+
)[];
|
|
112871
113032
|
|
|
112872
113033
|
/**
|
|
112873
113034
|
* Creates a deep clone of the TableTemplate class.
|
|
@@ -112904,6 +113065,8 @@ declare namespace __esri {
|
|
|
112904
113065
|
| (FieldColumnTemplateProperties & { type: "field" })
|
|
112905
113066
|
| (GroupColumnTemplateProperties & { type: "group" })
|
|
112906
113067
|
| (ColumnTemplateProperties & { type: "column" })
|
|
113068
|
+
| (AttachmentsColumnTemplateProperties & { type: "attachment" })
|
|
113069
|
+
| (RelationshipColumnTemplateProperties & { type: "relationship" })
|
|
112907
113070
|
)[];
|
|
112908
113071
|
}
|
|
112909
113072
|
|
|
@@ -112978,21 +113141,14 @@ declare namespace __esri {
|
|
|
112978
113141
|
icon?: string;
|
|
112979
113142
|
iconClass?: string;
|
|
112980
113143
|
selected?: boolean;
|
|
112981
|
-
|
|
112982
|
-
|
|
112983
|
-
* The function that executes when the menu item is clicked.
|
|
112984
|
-
*
|
|
112985
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#TableMenuItemConfig Read more...}
|
|
112986
|
-
*/
|
|
112987
|
-
clickFunction(): void;
|
|
112988
|
-
/**
|
|
112989
|
-
* A function that determines whether the menu item is hidden.
|
|
112990
|
-
*
|
|
112991
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#TableMenuItemConfig Read more...}
|
|
112992
|
-
*/
|
|
112993
|
-
hidden(): void;
|
|
113144
|
+
clickFunction: TableMenuItemConfigClickFunction;
|
|
113145
|
+
hidden?: TableMenuItemConfigHiddenFunction | boolean;
|
|
112994
113146
|
}
|
|
112995
113147
|
|
|
113148
|
+
export type TableMenuItemConfigClickFunction = (event: MouseEvent | KeyboardEvent) => void;
|
|
113149
|
+
|
|
113150
|
+
export type TableMenuItemConfigHiddenFunction = () => boolean;
|
|
113151
|
+
|
|
112996
113152
|
/**
|
|
112997
113153
|
* The visible elements that are displayed within the widget.
|
|
112998
113154
|
*
|
|
@@ -113087,7 +113243,7 @@ declare namespace __esri {
|
|
|
113087
113243
|
*
|
|
113088
113244
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTemplates.html#layers Read more...}
|
|
113089
113245
|
*/
|
|
113090
|
-
layers: (FeatureLayer | GeoJSONLayer | SceneLayer | SubtypeSublayer | SubtypeGroupLayer)[];
|
|
113246
|
+
layers: (FeatureLayer | GeoJSONLayer | SceneLayer | SubtypeSublayer | SubtypeGroupLayer | OrientedImageryLayer)[];
|
|
113091
113247
|
/**
|
|
113092
113248
|
* Specifies the selection behavior of list items.
|
|
113093
113249
|
*
|
|
@@ -113169,6 +113325,7 @@ declare namespace __esri {
|
|
|
113169
113325
|
| (SceneLayerProperties & { type: "scene" })
|
|
113170
113326
|
| (SubtypeSublayerProperties & { type: "subtype-sublayer" })
|
|
113171
113327
|
| (SubtypeGroupLayerProperties & { type: "subtype-group" })
|
|
113328
|
+
| (OrientedImageryLayerProperties & { type: "oriented-imagery" })
|
|
113172
113329
|
)[];
|
|
113173
113330
|
/**
|
|
113174
113331
|
* Specifies the selection behavior of list items.
|
|
@@ -113229,14 +113386,14 @@ declare namespace __esri {
|
|
|
113229
113386
|
*
|
|
113230
113387
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTemplates-FeatureTemplatesViewModel.html#items Read more...}
|
|
113231
113388
|
*/
|
|
113232
|
-
readonly items: TemplateItem
|
|
113389
|
+
readonly items: (TemplateItem | TemplateItemGroup)[];
|
|
113233
113390
|
/**
|
|
113234
113391
|
* An array of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html FeatureLayers}
|
|
113235
113392
|
* that are associated with the widget.
|
|
113236
113393
|
*
|
|
113237
113394
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTemplates-FeatureTemplatesViewModel.html#layers Read more...}
|
|
113238
113395
|
*/
|
|
113239
|
-
layers: (FeatureLayer | GeoJSONLayer | SceneLayer | SubtypeSublayer | SubtypeGroupLayer)[];
|
|
113396
|
+
layers: (FeatureLayer | GeoJSONLayer | SceneLayer | OrientedImageryLayer | SubtypeSublayer | SubtypeGroupLayer)[];
|
|
113240
113397
|
/**
|
|
113241
113398
|
* The widget's state.
|
|
113242
113399
|
*
|
|
@@ -113312,6 +113469,7 @@ declare namespace __esri {
|
|
|
113312
113469
|
| (FeatureLayerProperties & { type: "feature" })
|
|
113313
113470
|
| (GeoJSONLayerProperties & { type: "geojson" })
|
|
113314
113471
|
| (SceneLayerProperties & { type: "scene" })
|
|
113472
|
+
| (OrientedImageryLayerProperties & { type: "oriented-imagery" })
|
|
113315
113473
|
| (SubtypeSublayerProperties & { type: "subtype-sublayer" })
|
|
113316
113474
|
| (SubtypeGroupLayerProperties & { type: "subtype-group" })
|
|
113317
113475
|
)[];
|
|
@@ -113344,11 +113502,11 @@ declare namespace __esri {
|
|
|
113344
113502
|
*/
|
|
113345
113503
|
label: string;
|
|
113346
113504
|
/**
|
|
113347
|
-
* The
|
|
113505
|
+
* The layer associated with the template item.
|
|
113348
113506
|
*
|
|
113349
113507
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTemplates-TemplateItem.html#layer Read more...}
|
|
113350
113508
|
*/
|
|
113351
|
-
layer: FeatureLayer;
|
|
113509
|
+
layer: FeatureLayer | GeoJSONLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
113352
113510
|
/**
|
|
113353
113511
|
* The associated {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureTemplate.html FeatureTemplate} for the item.
|
|
113354
113512
|
*
|
|
@@ -113391,11 +113549,16 @@ declare namespace __esri {
|
|
|
113391
113549
|
*/
|
|
113392
113550
|
label?: string;
|
|
113393
113551
|
/**
|
|
113394
|
-
* The
|
|
113552
|
+
* The layer associated with the template item.
|
|
113395
113553
|
*
|
|
113396
113554
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTemplates-TemplateItem.html#layer Read more...}
|
|
113397
113555
|
*/
|
|
113398
|
-
layer?:
|
|
113556
|
+
layer?:
|
|
113557
|
+
| (FeatureLayerProperties & { type: "feature" })
|
|
113558
|
+
| (GeoJSONLayerProperties & { type: "geojson" })
|
|
113559
|
+
| (OrientedImageryLayerProperties & { type: "oriented-imagery" })
|
|
113560
|
+
| (SceneLayerProperties & { type: "scene" })
|
|
113561
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" });
|
|
113399
113562
|
/**
|
|
113400
113563
|
* The associated {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureTemplate.html FeatureTemplate} for the item.
|
|
113401
113564
|
*
|
|
@@ -115502,7 +115665,7 @@ declare namespace __esri {
|
|
|
115502
115665
|
filterPlaceholder?: string;
|
|
115503
115666
|
listItemCreatedFunction?: TableListListItemCreatedHandler;
|
|
115504
115667
|
minFilterItems?: number;
|
|
115505
|
-
selectionMode?:
|
|
115668
|
+
selectionMode?: "multiple" | "none" | "single" | "single-persist";
|
|
115506
115669
|
visibleElements?: LayerListKnowledgeGraphOptionsVisibleElements;
|
|
115507
115670
|
}
|
|
115508
115671
|
|
|
@@ -115801,8 +115964,8 @@ declare namespace __esri {
|
|
|
115801
115964
|
}
|
|
115802
115965
|
|
|
115803
115966
|
export interface LegendViewModelLayerInfos {
|
|
115804
|
-
title
|
|
115805
|
-
layer
|
|
115967
|
+
title: string;
|
|
115968
|
+
layer: Layer | Sublayer;
|
|
115806
115969
|
}
|
|
115807
115970
|
|
|
115808
115971
|
export class ActiveLayerInfo extends Accessor {
|
|
@@ -115951,7 +116114,17 @@ declare namespace __esri {
|
|
|
115951
116114
|
*
|
|
115952
116115
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#legendElements Read more...}
|
|
115953
116116
|
*/
|
|
115954
|
-
legendElements?:
|
|
116117
|
+
legendElements?: (
|
|
116118
|
+
| (SymbolTableElement & { type: "symbol-table" })
|
|
116119
|
+
| (ColorRampElement & { type: "color-ramp" })
|
|
116120
|
+
| (StretchRampElement & { type: "stretch-ramp" })
|
|
116121
|
+
| (OpacityRampElement & { type: "opacity-ramp" })
|
|
116122
|
+
| (SizeRampElement & { type: "size-ramp" })
|
|
116123
|
+
| (HeatmapRampElement & { type: "heatmap-ramp" })
|
|
116124
|
+
| (RelationshipRampElement & { type: "relationship-ramp" })
|
|
116125
|
+
| UnivariateColorSizeRampElement
|
|
116126
|
+
| (PieChartRampElement & { type: "pie-chart-ramp" })
|
|
116127
|
+
)[];
|
|
115955
116128
|
/**
|
|
115956
116129
|
* The ActiveLayerInfo of the parent module:esri/layers/support/ISublayer or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GroupLayer.html GroupLayer}.
|
|
115957
116130
|
*
|
|
@@ -116003,14 +116176,23 @@ declare namespace __esri {
|
|
|
116003
116176
|
view?: ViewProperties;
|
|
116004
116177
|
}
|
|
116005
116178
|
|
|
116179
|
+
/**
|
|
116180
|
+
* Describes the schema of the ClusterTitle element.
|
|
116181
|
+
*
|
|
116182
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#ClusterTitle Read more...}
|
|
116183
|
+
*/
|
|
116184
|
+
export interface ClusterTitle {
|
|
116185
|
+
showCount: boolean;
|
|
116186
|
+
}
|
|
116187
|
+
|
|
116006
116188
|
/**
|
|
116007
116189
|
* Describes the schema of the ColorRampElement used as a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#legendElement legendElement}.
|
|
116008
116190
|
*
|
|
116009
116191
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#ColorRampElement Read more...}
|
|
116010
116192
|
*/
|
|
116011
116193
|
export interface ColorRampElement {
|
|
116012
|
-
type:
|
|
116013
|
-
title
|
|
116194
|
+
type: "color-ramp";
|
|
116195
|
+
title?: string | RampTitle;
|
|
116014
116196
|
infos: ColorRampStop[];
|
|
116015
116197
|
}
|
|
116016
116198
|
|
|
@@ -116021,9 +116203,18 @@ declare namespace __esri {
|
|
|
116021
116203
|
*/
|
|
116022
116204
|
export interface ColorRampStop {
|
|
116023
116205
|
label: string;
|
|
116024
|
-
value: number;
|
|
116206
|
+
value: number | string;
|
|
116025
116207
|
color: Color;
|
|
116026
|
-
|
|
116208
|
+
}
|
|
116209
|
+
|
|
116210
|
+
/**
|
|
116211
|
+
* Describes the schema of the DotDensityTitle element.
|
|
116212
|
+
*
|
|
116213
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#DotDensityTitle Read more...}
|
|
116214
|
+
*/
|
|
116215
|
+
export interface DotDensityTitle {
|
|
116216
|
+
value: number;
|
|
116217
|
+
unit?: string;
|
|
116027
116218
|
}
|
|
116028
116219
|
|
|
116029
116220
|
/**
|
|
@@ -116032,8 +116223,8 @@ declare namespace __esri {
|
|
|
116032
116223
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#HeatmapRampElement Read more...}
|
|
116033
116224
|
*/
|
|
116034
116225
|
export interface HeatmapRampElement {
|
|
116035
|
-
type:
|
|
116036
|
-
title?: string |
|
|
116226
|
+
type: "heatmap-ramp";
|
|
116227
|
+
title?: string | RendererTitle;
|
|
116037
116228
|
infos: HeatmapRampStop[];
|
|
116038
116229
|
}
|
|
116039
116230
|
|
|
@@ -116046,7 +116237,6 @@ declare namespace __esri {
|
|
|
116046
116237
|
label: string;
|
|
116047
116238
|
ratio: number;
|
|
116048
116239
|
color: Color;
|
|
116049
|
-
offset: number;
|
|
116050
116240
|
}
|
|
116051
116241
|
|
|
116052
116242
|
/**
|
|
@@ -116055,9 +116245,9 @@ declare namespace __esri {
|
|
|
116055
116245
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#ImageSymbolTableElementInfo Read more...}
|
|
116056
116246
|
*/
|
|
116057
116247
|
export interface ImageSymbolTableElementInfo {
|
|
116058
|
-
label?: string;
|
|
116248
|
+
label?: string | StretchMultibandTitle;
|
|
116059
116249
|
src: string;
|
|
116060
|
-
opacity
|
|
116250
|
+
opacity?: number;
|
|
116061
116251
|
width?: number;
|
|
116062
116252
|
height?: number;
|
|
116063
116253
|
}
|
|
@@ -116070,10 +116260,13 @@ declare namespace __esri {
|
|
|
116070
116260
|
export type LegendElement =
|
|
116071
116261
|
| SymbolTableElement
|
|
116072
116262
|
| ColorRampElement
|
|
116263
|
+
| StretchRampElement
|
|
116073
116264
|
| OpacityRampElement
|
|
116074
116265
|
| SizeRampElement
|
|
116075
116266
|
| HeatmapRampElement
|
|
116076
|
-
| RelationshipRampElement
|
|
116267
|
+
| RelationshipRampElement
|
|
116268
|
+
| UnivariateColorSizeRampElement
|
|
116269
|
+
| PieChartRampElement;
|
|
116077
116270
|
|
|
116078
116271
|
/**
|
|
116079
116272
|
* Describes the schema of the OpacityRampElement used as a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#legendElement legendElement}.
|
|
@@ -116081,7 +116274,7 @@ declare namespace __esri {
|
|
|
116081
116274
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#OpacityRampElement Read more...}
|
|
116082
116275
|
*/
|
|
116083
116276
|
export interface OpacityRampElement {
|
|
116084
|
-
type:
|
|
116277
|
+
type: "opacity-ramp";
|
|
116085
116278
|
title?: string | RampTitle;
|
|
116086
116279
|
infos: OpacityRampStop[];
|
|
116087
116280
|
}
|
|
@@ -116095,7 +116288,17 @@ declare namespace __esri {
|
|
|
116095
116288
|
label: string;
|
|
116096
116289
|
value: number;
|
|
116097
116290
|
color: Color;
|
|
116098
|
-
|
|
116291
|
+
}
|
|
116292
|
+
|
|
116293
|
+
/**
|
|
116294
|
+
* Describes the schema of the UnivariateColorSizeRampElement used as a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#legendElement legendElement}.
|
|
116295
|
+
*
|
|
116296
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#PieChartRampElement Read more...}
|
|
116297
|
+
*/
|
|
116298
|
+
export interface PieChartRampElement {
|
|
116299
|
+
type: "pie-chart-ramp";
|
|
116300
|
+
title?: string | RendererTitle;
|
|
116301
|
+
infos: SymbolTableElementInfo[];
|
|
116099
116302
|
}
|
|
116100
116303
|
|
|
116101
116304
|
/**
|
|
@@ -116104,8 +116307,8 @@ declare namespace __esri {
|
|
|
116104
116307
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#RampTitle Read more...}
|
|
116105
116308
|
*/
|
|
116106
116309
|
export interface RampTitle {
|
|
116107
|
-
field
|
|
116108
|
-
normField
|
|
116310
|
+
field?: string;
|
|
116311
|
+
normField?: string;
|
|
116109
116312
|
ratio: boolean;
|
|
116110
116313
|
ratioPercent: boolean;
|
|
116111
116314
|
ratioPercentTotal: boolean;
|
|
@@ -116129,9 +116332,9 @@ declare namespace __esri {
|
|
|
116129
116332
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#RelationshipRampElement Read more...}
|
|
116130
116333
|
*/
|
|
116131
116334
|
export interface RelationshipRampElement {
|
|
116132
|
-
type:
|
|
116335
|
+
type: "relationship-ramp";
|
|
116133
116336
|
numClasses: number;
|
|
116134
|
-
focus:
|
|
116337
|
+
focus: "HH" | "HL" | "LH" | "LL";
|
|
116135
116338
|
colors: Color[][];
|
|
116136
116339
|
labels: RelationshipLabels;
|
|
116137
116340
|
rotation: number;
|
|
@@ -116146,9 +116349,9 @@ declare namespace __esri {
|
|
|
116146
116349
|
*/
|
|
116147
116350
|
export interface RendererTitle {
|
|
116148
116351
|
title?: string;
|
|
116149
|
-
field
|
|
116150
|
-
normField
|
|
116151
|
-
normByPct
|
|
116352
|
+
field?: string;
|
|
116353
|
+
normField?: string;
|
|
116354
|
+
normByPct?: boolean;
|
|
116152
116355
|
}
|
|
116153
116356
|
|
|
116154
116357
|
/**
|
|
@@ -116157,8 +116360,8 @@ declare namespace __esri {
|
|
|
116157
116360
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#SizeRampElement Read more...}
|
|
116158
116361
|
*/
|
|
116159
116362
|
export interface SizeRampElement {
|
|
116160
|
-
type:
|
|
116161
|
-
title?: string | RampTitle;
|
|
116363
|
+
type: "size-ramp";
|
|
116364
|
+
title?: string | RampTitle | ClusterTitle;
|
|
116162
116365
|
infos: SizeRampStop[];
|
|
116163
116366
|
}
|
|
116164
116367
|
|
|
@@ -116176,14 +116379,35 @@ declare namespace __esri {
|
|
|
116176
116379
|
preview?: HTMLElement;
|
|
116177
116380
|
}
|
|
116178
116381
|
|
|
116382
|
+
/**
|
|
116383
|
+
* Describes the schema of the StretchMultibandTitle element.
|
|
116384
|
+
*
|
|
116385
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#StretchMultibandTitle Read more...}
|
|
116386
|
+
*/
|
|
116387
|
+
export interface StretchMultibandTitle {
|
|
116388
|
+
colorName: string;
|
|
116389
|
+
bandName: string;
|
|
116390
|
+
}
|
|
116391
|
+
|
|
116392
|
+
/**
|
|
116393
|
+
* Describes the schema of the StretchRampElement used as a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#legendElement legendElement}.
|
|
116394
|
+
*
|
|
116395
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#StretchRampElement Read more...}
|
|
116396
|
+
*/
|
|
116397
|
+
export interface StretchRampElement {
|
|
116398
|
+
type: "stretch-ramp";
|
|
116399
|
+
title?: string | RampTitle;
|
|
116400
|
+
infos: ColorRampStop[];
|
|
116401
|
+
}
|
|
116402
|
+
|
|
116179
116403
|
/**
|
|
116180
116404
|
* Describes the schema of the SymbolTableElement used as a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#legendElement legendElement}.
|
|
116181
116405
|
*
|
|
116182
116406
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#SymbolTableElement Read more...}
|
|
116183
116407
|
*/
|
|
116184
116408
|
export interface SymbolTableElement {
|
|
116185
|
-
type:
|
|
116186
|
-
title?: string | RendererTitle;
|
|
116409
|
+
type: "symbol-table";
|
|
116410
|
+
title?: string | RendererTitle | DotDensityTitle;
|
|
116187
116411
|
legendType?: string;
|
|
116188
116412
|
infos: SymbolTableElementType[];
|
|
116189
116413
|
}
|
|
@@ -116194,7 +116418,7 @@ declare namespace __esri {
|
|
|
116194
116418
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#SymbolTableElementInfo Read more...}
|
|
116195
116419
|
*/
|
|
116196
116420
|
export interface SymbolTableElementInfo {
|
|
116197
|
-
label
|
|
116421
|
+
label?: string | RampTitle;
|
|
116198
116422
|
value?: any;
|
|
116199
116423
|
symbol: Symbol;
|
|
116200
116424
|
size?: number;
|
|
@@ -116206,11 +116430,22 @@ declare namespace __esri {
|
|
|
116206
116430
|
*
|
|
116207
116431
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#SymbolTableElementType Read more...}
|
|
116208
116432
|
*/
|
|
116209
|
-
export type SymbolTableElementType = ImageSymbolTableElementInfo | SymbolTableElementInfo;
|
|
116433
|
+
export type SymbolTableElementType = ImageSymbolTableElementInfo | SymbolTableElementInfo | LegendElement;
|
|
116434
|
+
|
|
116435
|
+
/**
|
|
116436
|
+
* Describes the schema of the UnivariateColorSizeRampElement used as a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#legendElement legendElement}.
|
|
116437
|
+
*
|
|
116438
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#UnivariateColorSizeRampElement Read more...}
|
|
116439
|
+
*/
|
|
116440
|
+
export interface UnivariateColorSizeRampElement {
|
|
116441
|
+
type: "univariate-above-and-below-ramp" | "univariate-color-size-ramp";
|
|
116442
|
+
title?: string | RampTitle | ClusterTitle;
|
|
116443
|
+
infos: (SizeRampElement | ColorRampElement)[];
|
|
116444
|
+
}
|
|
116210
116445
|
|
|
116211
116446
|
export interface LegendLayerInfos {
|
|
116212
116447
|
title?: string;
|
|
116213
|
-
layer: Layer;
|
|
116448
|
+
layer: Layer | Sublayer;
|
|
116214
116449
|
sublayerIds?: number[];
|
|
116215
116450
|
}
|
|
116216
116451
|
|
|
@@ -117419,7 +117654,19 @@ declare namespace __esri {
|
|
|
117419
117654
|
*
|
|
117420
117655
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#alignment Read more...}
|
|
117421
117656
|
*/
|
|
117422
|
-
alignment:
|
|
117657
|
+
alignment:
|
|
117658
|
+
| "auto"
|
|
117659
|
+
| "top-leading"
|
|
117660
|
+
| "top-trailing"
|
|
117661
|
+
| "bottom-leading"
|
|
117662
|
+
| "bottom-trailing"
|
|
117663
|
+
| "top-left"
|
|
117664
|
+
| "top-center"
|
|
117665
|
+
| "top-right"
|
|
117666
|
+
| "bottom-left"
|
|
117667
|
+
| "bottom-center"
|
|
117668
|
+
| "bottom-right"
|
|
117669
|
+
| Function;
|
|
117423
117670
|
/**
|
|
117424
117671
|
* This closes the popup when the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html View} camera or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Viewpoint.html Viewpoint} changes.
|
|
117425
117672
|
*
|
|
@@ -117696,7 +117943,19 @@ declare namespace __esri {
|
|
|
117696
117943
|
*
|
|
117697
117944
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#alignment Read more...}
|
|
117698
117945
|
*/
|
|
117699
|
-
alignment?:
|
|
117946
|
+
alignment?:
|
|
117947
|
+
| "auto"
|
|
117948
|
+
| "top-leading"
|
|
117949
|
+
| "top-trailing"
|
|
117950
|
+
| "bottom-leading"
|
|
117951
|
+
| "bottom-trailing"
|
|
117952
|
+
| "top-left"
|
|
117953
|
+
| "top-center"
|
|
117954
|
+
| "top-right"
|
|
117955
|
+
| "bottom-left"
|
|
117956
|
+
| "bottom-center"
|
|
117957
|
+
| "bottom-right"
|
|
117958
|
+
| Function;
|
|
117700
117959
|
/**
|
|
117701
117960
|
* This closes the popup when the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html View} camera or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Viewpoint.html Viewpoint} changes.
|
|
117702
117961
|
*
|
|
@@ -117963,7 +118222,7 @@ declare namespace __esri {
|
|
|
117963
118222
|
*
|
|
117964
118223
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html#templateCustomTextElements Read more...}
|
|
117965
118224
|
*/
|
|
117966
|
-
templateCustomTextElements:
|
|
118225
|
+
templateCustomTextElements: HashMap<HashMap<string>[]>;
|
|
117967
118226
|
/**
|
|
117968
118227
|
* Defines the layout template options used by the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html Print} widget to generate the print page.
|
|
117969
118228
|
*
|
|
@@ -118050,7 +118309,7 @@ declare namespace __esri {
|
|
|
118050
118309
|
*
|
|
118051
118310
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html#templateCustomTextElements Read more...}
|
|
118052
118311
|
*/
|
|
118053
|
-
templateCustomTextElements?:
|
|
118312
|
+
templateCustomTextElements?: HashMap<HashMap<string>[]>;
|
|
118054
118313
|
/**
|
|
118055
118314
|
* Defines the layout template options used by the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html Print} widget to generate the print page.
|
|
118056
118315
|
*
|
|
@@ -118092,7 +118351,7 @@ declare namespace __esri {
|
|
|
118092
118351
|
*
|
|
118093
118352
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html#format Read more...}
|
|
118094
118353
|
*/
|
|
118095
|
-
format: "
|
|
118354
|
+
format: "jpg" | "png8" | "png32" | "pdf" | "gif" | "tiff" | "aix" | "eps" | "svg" | "svgz";
|
|
118096
118355
|
/**
|
|
118097
118356
|
* The text that appears inside the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html Print Widget's} `Select template` button.
|
|
118098
118357
|
*
|
|
@@ -118128,7 +118387,7 @@ declare namespace __esri {
|
|
|
118128
118387
|
*
|
|
118129
118388
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html#format Read more...}
|
|
118130
118389
|
*/
|
|
118131
|
-
format?: "
|
|
118390
|
+
format?: "jpg" | "png8" | "png32" | "pdf" | "gif" | "tiff" | "aix" | "eps" | "svg" | "svgz";
|
|
118132
118391
|
}
|
|
118133
118392
|
|
|
118134
118393
|
export interface CustomTemplateLayoutOptions {
|
|
@@ -118179,7 +118438,7 @@ declare namespace __esri {
|
|
|
118179
118438
|
*
|
|
118180
118439
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#effectiveTemplateCustomTextElements Read more...}
|
|
118181
118440
|
*/
|
|
118182
|
-
readonly effectiveTemplateCustomTextElements:
|
|
118441
|
+
readonly effectiveTemplateCustomTextElements: HashMap<HashMap<string>[]>;
|
|
118183
118442
|
/**
|
|
118184
118443
|
* This option allows passing extra parameters to the print (export webmap) requests.
|
|
118185
118444
|
*
|
|
@@ -118236,7 +118495,7 @@ declare namespace __esri {
|
|
|
118236
118495
|
*
|
|
118237
118496
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#templateCustomTextElements Read more...}
|
|
118238
118497
|
*/
|
|
118239
|
-
templateCustomTextElements:
|
|
118498
|
+
templateCustomTextElements: HashMap<HashMap<string>[]>;
|
|
118240
118499
|
/**
|
|
118241
118500
|
* The service metadata that contains the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#format format}
|
|
118242
118501
|
* and {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#layout layout} information for the printout.
|
|
@@ -118338,7 +118597,7 @@ declare namespace __esri {
|
|
|
118338
118597
|
*
|
|
118339
118598
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#templateCustomTextElements Read more...}
|
|
118340
118599
|
*/
|
|
118341
|
-
templateCustomTextElements?:
|
|
118600
|
+
templateCustomTextElements?: HashMap<HashMap<string>[]>;
|
|
118342
118601
|
/**
|
|
118343
118602
|
* The time interval in milliseconds between each job status request sent to an asynchronous GP task.
|
|
118344
118603
|
*
|
|
@@ -118395,7 +118654,7 @@ declare namespace __esri {
|
|
|
118395
118654
|
*
|
|
118396
118655
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#dpi Read more...}
|
|
118397
118656
|
*/
|
|
118398
|
-
dpi:
|
|
118657
|
+
dpi: number;
|
|
118399
118658
|
/**
|
|
118400
118659
|
* This property only applies when the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#layout layout} value is `map-only`.
|
|
118401
118660
|
*
|
|
@@ -118418,7 +118677,7 @@ declare namespace __esri {
|
|
|
118418
118677
|
*
|
|
118419
118678
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#format Read more...}
|
|
118420
118679
|
*/
|
|
118421
|
-
format: "
|
|
118680
|
+
format: "jpg" | "aix" | "eps" | "gif" | "pdf" | "png32" | "png8" | "svg" | "svgz" | "tiff";
|
|
118422
118681
|
/**
|
|
118423
118682
|
* Map height.
|
|
118424
118683
|
*
|
|
@@ -118530,7 +118789,7 @@ declare namespace __esri {
|
|
|
118530
118789
|
*
|
|
118531
118790
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#dpi Read more...}
|
|
118532
118791
|
*/
|
|
118533
|
-
dpi?:
|
|
118792
|
+
dpi?: number;
|
|
118534
118793
|
/**
|
|
118535
118794
|
* This property only applies when the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#layout layout} value is `map-only`.
|
|
118536
118795
|
*
|
|
@@ -118549,7 +118808,7 @@ declare namespace __esri {
|
|
|
118549
118808
|
*
|
|
118550
118809
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#format Read more...}
|
|
118551
118810
|
*/
|
|
118552
|
-
format?: "
|
|
118811
|
+
format?: "jpg" | "aix" | "eps" | "gif" | "pdf" | "png32" | "png8" | "svg" | "svgz" | "tiff";
|
|
118553
118812
|
/**
|
|
118554
118813
|
* Map height.
|
|
118555
118814
|
*
|
|
@@ -118632,10 +118891,10 @@ declare namespace __esri {
|
|
|
118632
118891
|
*/
|
|
118633
118892
|
export interface FileLink {
|
|
118634
118893
|
count: number;
|
|
118635
|
-
error:
|
|
118894
|
+
error: Error;
|
|
118636
118895
|
extension: string;
|
|
118637
118896
|
name: string;
|
|
118638
|
-
state:
|
|
118897
|
+
state: "ready" | "error" | "pending";
|
|
118639
118898
|
url: string;
|
|
118640
118899
|
}
|
|
118641
118900
|
|
|
@@ -118779,7 +119038,7 @@ declare namespace __esri {
|
|
|
118779
119038
|
*
|
|
118780
119039
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ScaleRangeSlider.html#layer Read more...}
|
|
118781
119040
|
*/
|
|
118782
|
-
layer: Layer;
|
|
119041
|
+
layer: Layer | Sublayer;
|
|
118783
119042
|
/**
|
|
118784
119043
|
* The maximum scale of the active scale range.
|
|
118785
119044
|
*
|
|
@@ -118852,7 +119111,7 @@ declare namespace __esri {
|
|
|
118852
119111
|
*
|
|
118853
119112
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ScaleRangeSlider.html#layer Read more...}
|
|
118854
119113
|
*/
|
|
118855
|
-
layer?: LayerProperties;
|
|
119114
|
+
layer?: LayerProperties | (SublayerProperties & { type: "sublayer" });
|
|
118856
119115
|
/**
|
|
118857
119116
|
* The maximum scale of the active scale range.
|
|
118858
119117
|
*
|
|
@@ -118997,7 +119256,7 @@ declare namespace __esri {
|
|
|
118997
119256
|
*
|
|
118998
119257
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ScaleRangeSlider-ScaleRangeSliderViewModel.html#layer Read more...}
|
|
118999
119258
|
*/
|
|
119000
|
-
layer: Layer;
|
|
119259
|
+
layer: Layer | Sublayer;
|
|
119001
119260
|
/**
|
|
119002
119261
|
* The maximum scale of the active scale range.
|
|
119003
119262
|
*
|
|
@@ -119074,7 +119333,7 @@ declare namespace __esri {
|
|
|
119074
119333
|
*
|
|
119075
119334
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ScaleRangeSlider-ScaleRangeSliderViewModel.html#layer Read more...}
|
|
119076
119335
|
*/
|
|
119077
|
-
layer?: LayerProperties;
|
|
119336
|
+
layer?: LayerProperties | (SublayerProperties & { type: "sublayer" });
|
|
119078
119337
|
/**
|
|
119079
119338
|
* The maximum scale of the active scale range.
|
|
119080
119339
|
*
|
|
@@ -119191,7 +119450,79 @@ declare namespace __esri {
|
|
|
119191
119450
|
| "US"
|
|
119192
119451
|
| "VE"
|
|
119193
119452
|
| "VI"
|
|
119194
|
-
| "ZA"
|
|
119453
|
+
| "ZA"
|
|
119454
|
+
| "ae"
|
|
119455
|
+
| "ar"
|
|
119456
|
+
| "at"
|
|
119457
|
+
| "au"
|
|
119458
|
+
| "be"
|
|
119459
|
+
| "bg"
|
|
119460
|
+
| "bo"
|
|
119461
|
+
| "br"
|
|
119462
|
+
| "ca"
|
|
119463
|
+
| "ch"
|
|
119464
|
+
| "ci"
|
|
119465
|
+
| "cl"
|
|
119466
|
+
| "cn"
|
|
119467
|
+
| "co"
|
|
119468
|
+
| "cr"
|
|
119469
|
+
| "cz"
|
|
119470
|
+
| "de"
|
|
119471
|
+
| "dk"
|
|
119472
|
+
| "ee"
|
|
119473
|
+
| "eg"
|
|
119474
|
+
| "es"
|
|
119475
|
+
| "fi"
|
|
119476
|
+
| "fr"
|
|
119477
|
+
| "gb"
|
|
119478
|
+
| "gl"
|
|
119479
|
+
| "gr"
|
|
119480
|
+
| "gt"
|
|
119481
|
+
| "hk"
|
|
119482
|
+
| "id"
|
|
119483
|
+
| "ie"
|
|
119484
|
+
| "il"
|
|
119485
|
+
| "in"
|
|
119486
|
+
| "iq"
|
|
119487
|
+
| "is"
|
|
119488
|
+
| "it"
|
|
119489
|
+
| "jp"
|
|
119490
|
+
| "ke"
|
|
119491
|
+
| "kr"
|
|
119492
|
+
| "kw"
|
|
119493
|
+
| "li"
|
|
119494
|
+
| "lt"
|
|
119495
|
+
| "lu"
|
|
119496
|
+
| "lv"
|
|
119497
|
+
| "ma"
|
|
119498
|
+
| "mg"
|
|
119499
|
+
| "ml"
|
|
119500
|
+
| "mo"
|
|
119501
|
+
| "mx"
|
|
119502
|
+
| "my"
|
|
119503
|
+
| "ni"
|
|
119504
|
+
| "nl"
|
|
119505
|
+
| "no"
|
|
119506
|
+
| "nz"
|
|
119507
|
+
| "pe"
|
|
119508
|
+
| "pl"
|
|
119509
|
+
| "pr"
|
|
119510
|
+
| "pt"
|
|
119511
|
+
| "ro"
|
|
119512
|
+
| "ru"
|
|
119513
|
+
| "rw"
|
|
119514
|
+
| "se"
|
|
119515
|
+
| "sg"
|
|
119516
|
+
| "sk"
|
|
119517
|
+
| "sr"
|
|
119518
|
+
| "sv"
|
|
119519
|
+
| "th"
|
|
119520
|
+
| "tn"
|
|
119521
|
+
| "tw"
|
|
119522
|
+
| "us"
|
|
119523
|
+
| "ve"
|
|
119524
|
+
| "vi"
|
|
119525
|
+
| "za";
|
|
119195
119526
|
|
|
119196
119527
|
/**
|
|
119197
119528
|
* The visible elements that are displayed within the widget.
|
|
@@ -119414,7 +119745,7 @@ declare namespace __esri {
|
|
|
119414
119745
|
*
|
|
119415
119746
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search.html#suggestions Read more...}
|
|
119416
119747
|
*/
|
|
119417
|
-
readonly suggestions:
|
|
119748
|
+
readonly suggestions: SearchResultsSuggestions[];
|
|
119418
119749
|
/**
|
|
119419
119750
|
* Enable suggestions for the widget.
|
|
119420
119751
|
*
|
|
@@ -120524,7 +120855,7 @@ declare namespace __esri {
|
|
|
120524
120855
|
*
|
|
120525
120856
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search-SearchViewModel.html#suggestions Read more...}
|
|
120526
120857
|
*/
|
|
120527
|
-
readonly suggestions:
|
|
120858
|
+
readonly suggestions: SearchResultsSuggestions[];
|
|
120528
120859
|
/**
|
|
120529
120860
|
* Enable suggestions for the widget.
|
|
120530
120861
|
*
|
|
@@ -120783,10 +121114,22 @@ declare namespace __esri {
|
|
|
120783
121114
|
name: string;
|
|
120784
121115
|
}
|
|
120785
121116
|
|
|
121117
|
+
/**
|
|
121118
|
+
* The result object returned from the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search-SearchViewModel.html#search search}.
|
|
121119
|
+
*
|
|
121120
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search-SearchViewModel.html#SearchResultsSuggestions Read more...}
|
|
121121
|
+
*/
|
|
121122
|
+
export interface SearchResultsSuggestions {
|
|
121123
|
+
source: LayerSearchSource | LocatorSearchSource;
|
|
121124
|
+
sourceIndex: number;
|
|
121125
|
+
results?: SearchViewModelSuggestResult[];
|
|
121126
|
+
error?: Error;
|
|
121127
|
+
}
|
|
121128
|
+
|
|
120786
121129
|
export interface SearchViewModelSearchStartEvent {}
|
|
120787
121130
|
|
|
120788
121131
|
export interface SearchViewModelDefaultSymbols {
|
|
120789
|
-
point?: SimpleMarkerSymbol | PointSymbol3D | TextSymbol | CIMSymbol | WebStyleSymbol;
|
|
121132
|
+
point?: SimpleMarkerSymbol | PictureMarkerSymbol | PointSymbol3D | TextSymbol | CIMSymbol | WebStyleSymbol;
|
|
120790
121133
|
polygon?: SimpleFillSymbol | PolygonSymbol3D | CIMSymbol;
|
|
120791
121134
|
polyline?: SimpleLineSymbol | LineSymbol3D | CIMSymbol;
|
|
120792
121135
|
}
|
|
@@ -120824,7 +121167,7 @@ declare namespace __esri {
|
|
|
120824
121167
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search-SearchViewModel.html#SuggestResult Read more...}
|
|
120825
121168
|
*/
|
|
120826
121169
|
export interface SearchViewModelSuggestResult {
|
|
120827
|
-
key: string;
|
|
121170
|
+
key: string | number;
|
|
120828
121171
|
text: string;
|
|
120829
121172
|
sourceIndex: number;
|
|
120830
121173
|
}
|
|
@@ -120935,7 +121278,7 @@ declare namespace __esri {
|
|
|
120935
121278
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search.html#SuggestResult Read more...}
|
|
120936
121279
|
*/
|
|
120937
121280
|
export interface SuggestResult {
|
|
120938
|
-
key: string;
|
|
121281
|
+
key: string | number;
|
|
120939
121282
|
text: string;
|
|
120940
121283
|
sourceIndex: number;
|
|
120941
121284
|
}
|
|
@@ -121268,13 +121611,16 @@ declare namespace __esri {
|
|
|
121268
121611
|
| "point"
|
|
121269
121612
|
| "polyline"
|
|
121270
121613
|
| "polygon"
|
|
121614
|
+
| "multipoint"
|
|
121615
|
+
| "mesh"
|
|
121271
121616
|
| "circle"
|
|
121272
121617
|
| "rectangle"
|
|
121273
121618
|
| "move"
|
|
121274
121619
|
| "transform"
|
|
121275
121620
|
| "reshape"
|
|
121276
121621
|
| "rectangle-selection"
|
|
121277
|
-
| "lasso-selection"
|
|
121622
|
+
| "lasso-selection"
|
|
121623
|
+
| "custom-selection";
|
|
121278
121624
|
/**
|
|
121279
121625
|
* The tooltip currently being displayed for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch-SketchViewModel.html#activeTool activeTool}.
|
|
121280
121626
|
*
|
|
@@ -121579,7 +121925,7 @@ declare namespace __esri {
|
|
|
121579
121925
|
*
|
|
121580
121926
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch-SketchViewModel.html#activeFillSymbol Read more...}
|
|
121581
121927
|
*/
|
|
121582
|
-
activeFillSymbol: SimpleFillSymbol;
|
|
121928
|
+
activeFillSymbol: SimpleFillSymbol | CIMSymbol;
|
|
121583
121929
|
/**
|
|
121584
121930
|
* When creating new graphics (for example after {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch-SketchViewModel.html#create create()} has been called),
|
|
121585
121931
|
* this property reflects the create tool being used.
|
|
@@ -121638,7 +121984,7 @@ declare namespace __esri {
|
|
|
121638
121984
|
*
|
|
121639
121985
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch-SketchViewModel.html#pointSymbol Read more...}
|
|
121640
121986
|
*/
|
|
121641
|
-
pointSymbol: SimpleMarkerSymbol | PointSymbol3D | TextSymbol | CIMSymbol | WebStyleSymbol;
|
|
121987
|
+
pointSymbol: SimpleMarkerSymbol | PictureMarkerSymbol | PointSymbol3D | TextSymbol | CIMSymbol | WebStyleSymbol;
|
|
121642
121988
|
/**
|
|
121643
121989
|
* A {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleFillSymbol.html SimpleFillSymbol}, {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-PolygonSymbol3D.html PolygonSymbol3D}, or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-CIMSymbol.html CIMSymbol} used for representing the polygon geometry that is being drawn.
|
|
121644
121990
|
*
|
|
@@ -121840,7 +122186,7 @@ declare namespace __esri {
|
|
|
121840
122186
|
*
|
|
121841
122187
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch-SketchViewModel.html#activeFillSymbol Read more...}
|
|
121842
122188
|
*/
|
|
121843
|
-
activeFillSymbol?: SimpleFillSymbolProperties;
|
|
122189
|
+
activeFillSymbol?: (SimpleFillSymbolProperties & { type: "simple-fill" }) | (CIMSymbolProperties & { type: "cim" });
|
|
121844
122190
|
/**
|
|
121845
122191
|
* Default create options set for the SketchViewModel.
|
|
121846
122192
|
*
|
|
@@ -121872,6 +122218,7 @@ declare namespace __esri {
|
|
|
121872
122218
|
*/
|
|
121873
122219
|
pointSymbol?:
|
|
121874
122220
|
| (SimpleMarkerSymbolProperties & { type: "simple-marker" })
|
|
122221
|
+
| (PictureMarkerSymbolProperties & { type: "picture-marker" })
|
|
121875
122222
|
| (PointSymbol3DProperties & { type: "point-3d" })
|
|
121876
122223
|
| (TextSymbolProperties & { type: "text" })
|
|
121877
122224
|
| (CIMSymbolProperties & { type: "cim" })
|
|
@@ -122563,7 +122910,7 @@ declare namespace __esri {
|
|
|
122563
122910
|
*
|
|
122564
122911
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slider.html#labels Read more...}
|
|
122565
122912
|
*/
|
|
122566
|
-
readonly labels:
|
|
122913
|
+
readonly labels: LabelInfos;
|
|
122567
122914
|
/**
|
|
122568
122915
|
* Determines the layout/orientation of the Slider widget.
|
|
122569
122916
|
*
|
|
@@ -122932,7 +123279,7 @@ declare namespace __esri {
|
|
|
122932
123279
|
*
|
|
122933
123280
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slider-SliderViewModel.html#labels Read more...}
|
|
122934
123281
|
*/
|
|
122935
|
-
readonly labels:
|
|
123282
|
+
readonly labels: LabelInfos;
|
|
122936
123283
|
/**
|
|
122937
123284
|
* The maximum possible data/thumb value of the slider.
|
|
122938
123285
|
*
|
|
@@ -123132,6 +123479,17 @@ declare namespace __esri {
|
|
|
123132
123479
|
index?: number,
|
|
123133
123480
|
) => string;
|
|
123134
123481
|
|
|
123482
|
+
/**
|
|
123483
|
+
* Label infos for the slider.
|
|
123484
|
+
*
|
|
123485
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slider.html#LabelInfos Read more...}
|
|
123486
|
+
*/
|
|
123487
|
+
export interface LabelInfos {
|
|
123488
|
+
min: string;
|
|
123489
|
+
max: string;
|
|
123490
|
+
values: string[];
|
|
123491
|
+
}
|
|
123492
|
+
|
|
123135
123493
|
export interface SliderMaxChangeEvent {
|
|
123136
123494
|
oldValue: number;
|
|
123137
123495
|
type: "max-change";
|
|
@@ -123208,14 +123566,14 @@ declare namespace __esri {
|
|
|
123208
123566
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slider.html#TickConfig Read more...}
|
|
123209
123567
|
*/
|
|
123210
123568
|
export interface TickConfig {
|
|
123211
|
-
mode: "
|
|
123569
|
+
mode: "percent" | "position" | "count" | "step";
|
|
123212
123570
|
values: number | number[];
|
|
123213
123571
|
labelsVisible?: boolean;
|
|
123214
123572
|
tickCreatedFunction?: TickCreatedFunction;
|
|
123215
123573
|
labelFormatFunction?: SliderLabelFormatter;
|
|
123216
123574
|
}
|
|
123217
123575
|
|
|
123218
|
-
export type TickCreatedFunction = (value: number, tickElement
|
|
123576
|
+
export type TickCreatedFunction = (value: number, tickElement?: HTMLElement, labelElement?: HTMLElement) => void;
|
|
123219
123577
|
|
|
123220
123578
|
/**
|
|
123221
123579
|
* The HTML Element nodes representing a single slider tick and its associated label.
|
|
@@ -124692,6 +125050,21 @@ declare namespace __esri {
|
|
|
124692
125050
|
|
|
124693
125051
|
constructor(properties?: SmartMappingSliderViewModelProperties);
|
|
124694
125052
|
|
|
125053
|
+
/**
|
|
125054
|
+
* A function used to format user inputs.
|
|
125055
|
+
*
|
|
125056
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-smartMapping-SmartMappingSliderViewModel.html#inputFormatFunction Read more...}
|
|
125057
|
+
*/
|
|
125058
|
+
inputFormatFunction: SmartMappingSliderBaseLabelFormatter;
|
|
125059
|
+
/**
|
|
125060
|
+
* A modified version of
|
|
125061
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slider-SliderViewModel.html#labelFormatFunction SliderViewModel.labelFormatFunction},
|
|
125062
|
+
* which is a custom function used to format labels on the thumbs, min, max, and average
|
|
125063
|
+
* values.
|
|
125064
|
+
*
|
|
125065
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-smartMapping-SmartMappingSliderViewModel.html#labelFormatFunction Read more...}
|
|
125066
|
+
*/
|
|
125067
|
+
labelFormatFunction: SmartMappingSliderBaseLabelFormatter;
|
|
124695
125068
|
/**
|
|
124696
125069
|
* Enables zooming on the slider.
|
|
124697
125070
|
*
|
|
@@ -124720,6 +125093,21 @@ declare namespace __esri {
|
|
|
124720
125093
|
}
|
|
124721
125094
|
|
|
124722
125095
|
interface SmartMappingSliderViewModelProperties extends SliderViewModelProperties {
|
|
125096
|
+
/**
|
|
125097
|
+
* A function used to format user inputs.
|
|
125098
|
+
*
|
|
125099
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-smartMapping-SmartMappingSliderViewModel.html#inputFormatFunction Read more...}
|
|
125100
|
+
*/
|
|
125101
|
+
inputFormatFunction?: SmartMappingSliderBaseLabelFormatter;
|
|
125102
|
+
/**
|
|
125103
|
+
* A modified version of
|
|
125104
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slider-SliderViewModel.html#labelFormatFunction SliderViewModel.labelFormatFunction},
|
|
125105
|
+
* which is a custom function used to format labels on the thumbs, min, max, and average
|
|
125106
|
+
* values.
|
|
125107
|
+
*
|
|
125108
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-smartMapping-SmartMappingSliderViewModel.html#labelFormatFunction Read more...}
|
|
125109
|
+
*/
|
|
125110
|
+
labelFormatFunction?: SmartMappingSliderBaseLabelFormatter;
|
|
124723
125111
|
/**
|
|
124724
125112
|
* Enables zooming on the slider.
|
|
124725
125113
|
*
|
|
@@ -125823,7 +126211,7 @@ declare namespace __esri {
|
|
|
125823
126211
|
*
|
|
125824
126212
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html#layer Read more...}
|
|
125825
126213
|
*/
|
|
125826
|
-
layer: Layer;
|
|
126214
|
+
layer: Layer | Sublayer;
|
|
125827
126215
|
/**
|
|
125828
126216
|
* Allows you to display custom content for each ListItem
|
|
125829
126217
|
* in the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html TableList} widget.
|
|
@@ -126043,7 +126431,7 @@ declare namespace __esri {
|
|
|
126043
126431
|
*
|
|
126044
126432
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-TableListViewModel.html#tables Read more...}
|
|
126045
126433
|
*/
|
|
126046
|
-
tables: Collection<Layer>;
|
|
126434
|
+
tables: Collection<Layer | Sublayer>;
|
|
126047
126435
|
/**
|
|
126048
126436
|
* The total number of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-TableListViewModel.html#tableItems tableItems} in the list.
|
|
126049
126437
|
*
|
|
@@ -126096,7 +126484,7 @@ declare namespace __esri {
|
|
|
126096
126484
|
*
|
|
126097
126485
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-TableListViewModel.html#tables Read more...}
|
|
126098
126486
|
*/
|
|
126099
|
-
tables?: CollectionProperties<LayerProperties>;
|
|
126487
|
+
tables?: CollectionProperties<LayerProperties | (SublayerProperties & { type: "sublayer" })>;
|
|
126100
126488
|
}
|
|
126101
126489
|
|
|
126102
126490
|
export type TableListViewModelListItemCreatedHandler = (event: any) => void;
|
|
@@ -126604,9 +126992,9 @@ declare namespace __esri {
|
|
|
126604
126992
|
|
|
126605
126993
|
export type DateLabelFormatter = (
|
|
126606
126994
|
value: Date | Date[],
|
|
126607
|
-
type
|
|
126608
|
-
element
|
|
126609
|
-
layout
|
|
126995
|
+
type: "min" | "max" | "extent",
|
|
126996
|
+
element: HTMLElement,
|
|
126997
|
+
layout: "compact" | "wide",
|
|
126610
126998
|
) => void;
|
|
126611
126999
|
|
|
126612
127000
|
/**
|
|
@@ -127454,25 +127842,25 @@ declare namespace __esri {
|
|
|
127454
127842
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkAssociations.html#VisibleElements Read more...}
|
|
127455
127843
|
*/
|
|
127456
127844
|
export interface UtilityNetworkAssociationsVisibleElements {
|
|
127457
|
-
connectivityAssociationsSettings
|
|
127845
|
+
connectivityAssociationsSettings: VisibleElementsConnectivityAssociationsSettings;
|
|
127458
127846
|
maxAllowableAssociationsSlider: boolean;
|
|
127459
|
-
structuralAttachmentAssociationsSettings
|
|
127847
|
+
structuralAttachmentAssociationsSettings: VisibleElementsStructuralAttachmentAssociationsSettings;
|
|
127460
127848
|
}
|
|
127461
127849
|
|
|
127462
127850
|
export interface VisibleElementsConnectivityAssociationsSettings {
|
|
127463
|
-
arrowsToggle
|
|
127464
|
-
capSelect
|
|
127465
|
-
colorPicker
|
|
127466
|
-
stylePicker
|
|
127467
|
-
widthInput
|
|
127851
|
+
arrowsToggle: boolean;
|
|
127852
|
+
capSelect: boolean;
|
|
127853
|
+
colorPicker: boolean;
|
|
127854
|
+
stylePicker: boolean;
|
|
127855
|
+
widthInput: boolean;
|
|
127468
127856
|
}
|
|
127469
127857
|
|
|
127470
127858
|
export interface VisibleElementsStructuralAttachmentAssociationsSettings {
|
|
127471
|
-
arrowsToggle
|
|
127472
|
-
capSelect
|
|
127473
|
-
colorPicker
|
|
127474
|
-
stylePicker
|
|
127475
|
-
widthInput
|
|
127859
|
+
arrowsToggle: boolean;
|
|
127860
|
+
capSelect: boolean;
|
|
127861
|
+
colorPicker: boolean;
|
|
127862
|
+
stylePicker: boolean;
|
|
127863
|
+
widthInput: boolean;
|
|
127476
127864
|
}
|
|
127477
127865
|
|
|
127478
127866
|
export class UtilityNetworkTrace extends Widget {
|
|
@@ -128201,7 +128589,7 @@ declare namespace __esri {
|
|
|
128201
128589
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#DisplayField Read more...}
|
|
128202
128590
|
*/
|
|
128203
128591
|
export interface DisplayField {
|
|
128204
|
-
field
|
|
128592
|
+
field?: string;
|
|
128205
128593
|
value: string;
|
|
128206
128594
|
}
|
|
128207
128595
|
|
|
@@ -128232,14 +128620,14 @@ declare namespace __esri {
|
|
|
128232
128620
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#FlagProperty Read more...}
|
|
128233
128621
|
*/
|
|
128234
128622
|
export interface FlagProperty {
|
|
128235
|
-
allTerminals
|
|
128236
|
-
details
|
|
128237
|
-
|
|
128238
|
-
id
|
|
128239
|
-
mapGraphic
|
|
128240
|
-
mapPoint
|
|
128241
|
-
selectedTerminals
|
|
128242
|
-
type:
|
|
128623
|
+
allTerminals?: TerminalConfiguration;
|
|
128624
|
+
details?: any;
|
|
128625
|
+
displayValue?: DisplayField;
|
|
128626
|
+
id?: number;
|
|
128627
|
+
mapGraphic?: Graphic;
|
|
128628
|
+
mapPoint?: Point;
|
|
128629
|
+
selectedTerminals?: number[];
|
|
128630
|
+
type: "starting-point" | "barrier";
|
|
128243
128631
|
}
|
|
128244
128632
|
|
|
128245
128633
|
/**
|
|
@@ -128284,7 +128672,7 @@ declare namespace __esri {
|
|
|
128284
128672
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#TraceItem Read more...}
|
|
128285
128673
|
*/
|
|
128286
128674
|
export interface TraceItem {
|
|
128287
|
-
selected
|
|
128675
|
+
selected?: boolean;
|
|
128288
128676
|
}
|
|
128289
128677
|
|
|
128290
128678
|
/**
|
|
@@ -128293,8 +128681,8 @@ declare namespace __esri {
|
|
|
128293
128681
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#TraceResultExtend Read more...}
|
|
128294
128682
|
*/
|
|
128295
128683
|
export interface TraceResultExtend {
|
|
128296
|
-
|
|
128297
|
-
|
|
128684
|
+
trace: TraceItem;
|
|
128685
|
+
results: TraceResult;
|
|
128298
128686
|
selectionEnabled: boolean;
|
|
128299
128687
|
graphicEnabled: boolean;
|
|
128300
128688
|
graphicColor: GraphicColor;
|
|
@@ -128339,10 +128727,10 @@ declare namespace __esri {
|
|
|
128339
128727
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace.html#InputSetting Read more...}
|
|
128340
128728
|
*/
|
|
128341
128729
|
export interface InputSetting {
|
|
128342
|
-
type:
|
|
128730
|
+
type: string;
|
|
128343
128731
|
label: string;
|
|
128344
128732
|
description: string;
|
|
128345
|
-
symbol
|
|
128733
|
+
symbol?: SimpleMarkerSymbol | PictureMarkerSymbol;
|
|
128346
128734
|
}
|
|
128347
128735
|
|
|
128348
128736
|
export interface UtilityNetworkTraceRemoveResultAreaEvent {
|
|
@@ -128853,7 +129241,7 @@ declare namespace __esri {
|
|
|
128853
129241
|
*
|
|
128854
129242
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ValuePicker-ValuePickerSlider.html#reversed Read more...}
|
|
128855
129243
|
*/
|
|
128856
|
-
reversed:
|
|
129244
|
+
reversed: boolean;
|
|
128857
129245
|
/**
|
|
128858
129246
|
* Positions along the slider that the thumb will snap to when interacted with.
|
|
128859
129247
|
*
|
|
@@ -128954,7 +129342,7 @@ declare namespace __esri {
|
|
|
128954
129342
|
*
|
|
128955
129343
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#state Read more...}
|
|
128956
129344
|
*/
|
|
128957
|
-
readonly state: "
|
|
129345
|
+
readonly state: "loading" | "failed" | "ready" | "disabled" | "success" | "executing";
|
|
128958
129346
|
/**
|
|
128959
129347
|
* Map of Service URLs and logged in users.
|
|
128960
129348
|
*
|
|
@@ -129307,7 +129695,7 @@ declare namespace __esri {
|
|
|
129307
129695
|
*
|
|
129308
129696
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VideoPlayer-VideoPlayerViewModel.html#followingMode Read more...}
|
|
129309
129697
|
*/
|
|
129310
|
-
followingMode: "follow-sensor" | "follow-frame" | "follow-both";
|
|
129698
|
+
followingMode: "follow-sensor" | "follow-frame" | "follow-both" | "none";
|
|
129311
129699
|
/**
|
|
129312
129700
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html VideoLayer} to play.
|
|
129313
129701
|
*
|
|
@@ -129455,7 +129843,7 @@ declare namespace __esri {
|
|
|
129455
129843
|
*
|
|
129456
129844
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VideoPlayer-VideoPlayerViewModel.html#followingMode Read more...}
|
|
129457
129845
|
*/
|
|
129458
|
-
followingMode?: "follow-sensor" | "follow-frame" | "follow-both";
|
|
129846
|
+
followingMode?: "follow-sensor" | "follow-frame" | "follow-both" | "none";
|
|
129459
129847
|
/**
|
|
129460
129848
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html VideoLayer} to play.
|
|
129461
129849
|
*
|
|
@@ -129557,7 +129945,7 @@ declare namespace __esri {
|
|
|
129557
129945
|
*
|
|
129558
129946
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Weather-WeatherViewModel.html#state Read more...}
|
|
129559
129947
|
*/
|
|
129560
|
-
readonly state: "disabled" | "ready";
|
|
129948
|
+
readonly state: "disabled" | "ready" | "error";
|
|
129561
129949
|
/**
|
|
129562
129950
|
* A reference to the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html View}.
|
|
129563
129951
|
*
|
|
@@ -136646,6 +137034,16 @@ declare module "esri/widgets/FeatureForm/RelationshipInput" {
|
|
|
136646
137034
|
export = RelationshipInput;
|
|
136647
137035
|
}
|
|
136648
137036
|
|
|
137037
|
+
declare module "esri/widgets/FeatureForm/TextElementInput" {
|
|
137038
|
+
import TextElementInput = __esri.TextElementInput;
|
|
137039
|
+
export = TextElementInput;
|
|
137040
|
+
}
|
|
137041
|
+
|
|
137042
|
+
declare module "esri/widgets/FeatureForm/UtilityNetworkAssociationInput" {
|
|
137043
|
+
import UtilityNetworkAssociationInput = __esri.UtilityNetworkAssociationInput;
|
|
137044
|
+
export = UtilityNetworkAssociationInput;
|
|
137045
|
+
}
|
|
137046
|
+
|
|
136649
137047
|
declare module "esri/widgets/Features" {
|
|
136650
137048
|
import Features = __esri.Features;
|
|
136651
137049
|
export = Features;
|
|
@@ -136726,6 +137124,16 @@ declare module "esri/widgets/FeatureTable/support/FieldColumnTemplate" {
|
|
|
136726
137124
|
export = FieldColumnTemplate;
|
|
136727
137125
|
}
|
|
136728
137126
|
|
|
137127
|
+
declare module "esri/widgets/FeatureTable/support/AttachmentsColumnTemplate" {
|
|
137128
|
+
import AttachmentsColumnTemplate = __esri.AttachmentsColumnTemplate;
|
|
137129
|
+
export = AttachmentsColumnTemplate;
|
|
137130
|
+
}
|
|
137131
|
+
|
|
137132
|
+
declare module "esri/widgets/FeatureTable/support/RelationshipColumnTemplate" {
|
|
137133
|
+
import RelationshipColumnTemplate = __esri.RelationshipColumnTemplate;
|
|
137134
|
+
export = RelationshipColumnTemplate;
|
|
137135
|
+
}
|
|
137136
|
+
|
|
136729
137137
|
declare module "esri/widgets/FeatureTable/support/GroupColumnTemplate" {
|
|
136730
137138
|
import GroupColumnTemplate = __esri.GroupColumnTemplate;
|
|
136731
137139
|
export = GroupColumnTemplate;
|