@arcgis/core-adapter 4.32.0-next.33 → 4.32.0-next.35
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 +0 -99
- package/dist/index.d.cts +1 -12
- package/dist/index.d.ts +1 -12
- package/dist/index.js +0 -88
- package/package.json +1 -1
- package/scripts/generator.ts +11 -1
- package/scripts/update-adapter-typings.ts +41 -9
- package/src/index.ts +0 -88
- package/support/api-reference-esm-imports.json +4 -0
- package/support/arcgis.d.ts +505 -177
- package/support/publicModules.ts +25 -0
package/support/arcgis.d.ts
CHANGED
|
@@ -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
|
*/
|
|
@@ -94965,7 +94965,7 @@ declare namespace __esri {
|
|
|
94965
94965
|
*
|
|
94966
94966
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#HitTestItem Read more...}
|
|
94967
94967
|
*/
|
|
94968
|
-
export type HitTestItem = Layer | Graphic |
|
|
94968
|
+
export type HitTestItem = Layer | Graphic | SubtypeSublayer;
|
|
94969
94969
|
|
|
94970
94970
|
/**
|
|
94971
94971
|
* 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 +94978,8 @@ declare namespace __esri {
|
|
|
94978
94978
|
}
|
|
94979
94979
|
|
|
94980
94980
|
export interface MapViewHitTestOptions {
|
|
94981
|
-
include?: HitTestItem
|
|
94982
|
-
exclude?: HitTestItem
|
|
94981
|
+
include?: HitTestItem | Iterable<HitTestItem> | Iterable<Iterable<HitTestItem>>;
|
|
94982
|
+
exclude?: HitTestItem | Iterable<HitTestItem> | Iterable<Iterable<HitTestItem>>;
|
|
94983
94983
|
}
|
|
94984
94984
|
|
|
94985
94985
|
export interface MapViewTakeScreenshotOptions {
|
|
@@ -95830,7 +95830,7 @@ declare namespace __esri {
|
|
|
95830
95830
|
*
|
|
95831
95831
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#IntersectItem Read more...}
|
|
95832
95832
|
*/
|
|
95833
|
-
export type IntersectItem = Graphic | Layer | BuildingSublayer;
|
|
95833
|
+
export type IntersectItem = Graphic | Layer | BuildingSublayer | SubtypeSublayer | Ground;
|
|
95834
95834
|
|
|
95835
95835
|
/**
|
|
95836
95836
|
* 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 +95951,8 @@ declare namespace __esri {
|
|
|
95951
95951
|
}
|
|
95952
95952
|
|
|
95953
95953
|
export interface SceneViewToMapOptions {
|
|
95954
|
-
include?:
|
|
95955
|
-
|
|
95956
|
-
| Collection<IntersectItem>
|
|
95957
|
-
| IntersectItem;
|
|
95958
|
-
exclude?:
|
|
95959
|
-
| (IntersectItem | Collection<IntersectItem> | IntersectItem[] | Ground)[]
|
|
95960
|
-
| Collection<IntersectItem>
|
|
95961
|
-
| IntersectItem;
|
|
95954
|
+
include?: IntersectItem | Iterable<IntersectItem> | Iterable<Iterable<IntersectItem>>;
|
|
95955
|
+
exclude?: IntersectItem | Iterable<IntersectItem> | Iterable<Iterable<IntersectItem>>;
|
|
95962
95956
|
}
|
|
95963
95957
|
|
|
95964
95958
|
/**
|
|
@@ -102835,7 +102829,7 @@ declare namespace __esri {
|
|
|
102835
102829
|
*
|
|
102836
102830
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BuildingExplorer-BuildingLevel.html#allowedValues Read more...}
|
|
102837
102831
|
*/
|
|
102838
|
-
allowedValues: number[];
|
|
102832
|
+
allowedValues: readonly number[];
|
|
102839
102833
|
/**
|
|
102840
102834
|
* Whether the filter is enabled.
|
|
102841
102835
|
*
|
|
@@ -102918,7 +102912,7 @@ declare namespace __esri {
|
|
|
102918
102912
|
*
|
|
102919
102913
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BuildingExplorer-BuildingLevel.html#allowedValues Read more...}
|
|
102920
102914
|
*/
|
|
102921
|
-
allowedValues?: number[];
|
|
102915
|
+
allowedValues?: readonly number[];
|
|
102922
102916
|
}
|
|
102923
102917
|
|
|
102924
102918
|
export class BuildingPhase extends Accessor {
|
|
@@ -102936,7 +102930,7 @@ declare namespace __esri {
|
|
|
102936
102930
|
*
|
|
102937
102931
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BuildingExplorer-BuildingPhase.html#allowedValues Read more...}
|
|
102938
102932
|
*/
|
|
102939
|
-
allowedValues: number[];
|
|
102933
|
+
allowedValues: readonly number[];
|
|
102940
102934
|
/**
|
|
102941
102935
|
* Whether the filter is enabled.
|
|
102942
102936
|
*
|
|
@@ -103019,7 +103013,7 @@ declare namespace __esri {
|
|
|
103019
103013
|
*
|
|
103020
103014
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BuildingExplorer-BuildingPhase.html#allowedValues Read more...}
|
|
103021
103015
|
*/
|
|
103022
|
-
allowedValues?: number[];
|
|
103016
|
+
allowedValues?: readonly number[];
|
|
103023
103017
|
}
|
|
103024
103018
|
|
|
103025
103019
|
/**
|
|
@@ -104679,19 +104673,7 @@ declare namespace __esri {
|
|
|
104679
104673
|
*
|
|
104680
104674
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Directions.html#unit Read more...}
|
|
104681
104675
|
*/
|
|
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";
|
|
104676
|
+
unit: SystemOrLengthUnit;
|
|
104695
104677
|
/**
|
|
104696
104678
|
* The view from which the widget will operate.
|
|
104697
104679
|
*
|
|
@@ -104785,19 +104767,7 @@ declare namespace __esri {
|
|
|
104785
104767
|
*
|
|
104786
104768
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Directions.html#unit Read more...}
|
|
104787
104769
|
*/
|
|
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";
|
|
104770
|
+
unit?: SystemOrLengthUnit;
|
|
104801
104771
|
/**
|
|
104802
104772
|
* The view from which the widget will operate.
|
|
104803
104773
|
*
|
|
@@ -104901,7 +104871,7 @@ declare namespace __esri {
|
|
|
104901
104871
|
*
|
|
104902
104872
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Directions-DirectionsViewModel.html#state Read more...}
|
|
104903
104873
|
*/
|
|
104904
|
-
readonly state: "disabled" | "
|
|
104874
|
+
readonly state: "ready" | "disabled" | "error" | "initializing" | "routing" | "unauthenticated";
|
|
104905
104875
|
/**
|
|
104906
104876
|
* The name of the network attribute to use for the drive time when computing directions.
|
|
104907
104877
|
*
|
|
@@ -105486,7 +105456,7 @@ declare namespace __esri {
|
|
|
105486
105456
|
*
|
|
105487
105457
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#allowedWorkflows Read more...}
|
|
105488
105458
|
*/
|
|
105489
|
-
allowedWorkflows: "create-features" | "update";
|
|
105459
|
+
allowedWorkflows: ("create-features" | "update" | "update-feature" | "update-table-record")[];
|
|
105490
105460
|
/**
|
|
105491
105461
|
* Indicates the heading level to use for title of the widget.
|
|
105492
105462
|
*
|
|
@@ -105625,7 +105595,7 @@ declare namespace __esri {
|
|
|
105625
105595
|
*
|
|
105626
105596
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#allowedWorkflows Read more...}
|
|
105627
105597
|
*/
|
|
105628
|
-
allowedWorkflows?: "create-features" | "update";
|
|
105598
|
+
allowedWorkflows?: ("create-features" | "update" | "update-feature" | "update-table-record")[];
|
|
105629
105599
|
/**
|
|
105630
105600
|
* Indicates the heading level to use for title of the widget.
|
|
105631
105601
|
*
|
|
@@ -105723,7 +105693,7 @@ declare namespace __esri {
|
|
|
105723
105693
|
*
|
|
105724
105694
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor-CreateFeaturesWorkflow.html#pendingFeatures Read more...}
|
|
105725
105695
|
*/
|
|
105726
|
-
readonly pendingFeatures: Collection<
|
|
105696
|
+
readonly pendingFeatures: Collection<Graphic>;
|
|
105727
105697
|
|
|
105728
105698
|
/**
|
|
105729
105699
|
* Moves the pending feature into update mode.
|
|
@@ -105810,7 +105780,7 @@ declare namespace __esri {
|
|
|
105810
105780
|
*
|
|
105811
105781
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor-EditorViewModel.html#allowedWorkflows Read more...}
|
|
105812
105782
|
*/
|
|
105813
|
-
allowedWorkflows: "create-features" | "update";
|
|
105783
|
+
allowedWorkflows: ("create-features" | "update" | "update-table-record" | "update-feature")[];
|
|
105814
105784
|
/**
|
|
105815
105785
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Attachments-AttachmentsViewModel.html AttachmentsViewModel} for supporting the editor widget.
|
|
105816
105786
|
*
|
|
@@ -106011,7 +105981,7 @@ declare namespace __esri {
|
|
|
106011
105981
|
*
|
|
106012
105982
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor-EditorViewModel.html#allowedWorkflows Read more...}
|
|
106013
105983
|
*/
|
|
106014
|
-
allowedWorkflows?: "create-features" | "update";
|
|
105984
|
+
allowedWorkflows?: ("create-features" | "update" | "update-table-record" | "update-feature")[];
|
|
106015
105985
|
/**
|
|
106016
105986
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Attachments-AttachmentsViewModel.html AttachmentsViewModel} for supporting the editor widget.
|
|
106017
105987
|
*
|
|
@@ -106083,8 +106053,8 @@ declare namespace __esri {
|
|
|
106083
106053
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor-EditorViewModel.html#EditableItem Read more...}
|
|
106084
106054
|
*/
|
|
106085
106055
|
export interface EditableItem {
|
|
106086
|
-
layer: FeatureLayer | SceneLayer | SubtypeSublayer;
|
|
106087
|
-
supports:
|
|
106056
|
+
layer: GeoJSONLayer | FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
106057
|
+
supports: ("create" | "update" | "delete")[];
|
|
106088
106058
|
hasAttachments: boolean;
|
|
106089
106059
|
geometryUpdatesEnabled: boolean;
|
|
106090
106060
|
attributeUpdatesEnabled: boolean;
|
|
@@ -106209,11 +106179,11 @@ declare namespace __esri {
|
|
|
106209
106179
|
*/
|
|
106210
106180
|
isTable: boolean;
|
|
106211
106181
|
/**
|
|
106212
|
-
* The
|
|
106182
|
+
* The layer currently being edited.
|
|
106213
106183
|
*
|
|
106214
106184
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor-support-EditorItem.html#layer Read more...}
|
|
106215
106185
|
*/
|
|
106216
|
-
layer: FeatureLayer | SubtypeSublayer;
|
|
106186
|
+
layer: GeoJSONLayer | FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
106217
106187
|
/**
|
|
106218
106188
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#LayerInfo layerInfo} for the provided layer.
|
|
106219
106189
|
*
|
|
@@ -106260,11 +106230,16 @@ declare namespace __esri {
|
|
|
106260
106230
|
*/
|
|
106261
106231
|
isTable?: boolean;
|
|
106262
106232
|
/**
|
|
106263
|
-
* The
|
|
106233
|
+
* The layer currently being edited.
|
|
106264
106234
|
*
|
|
106265
106235
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor-support-EditorItem.html#layer Read more...}
|
|
106266
106236
|
*/
|
|
106267
|
-
layer?:
|
|
106237
|
+
layer?:
|
|
106238
|
+
| (GeoJSONLayerProperties & { type: "geojson" })
|
|
106239
|
+
| (FeatureLayerProperties & { type: "feature" })
|
|
106240
|
+
| (OrientedImageryLayerProperties & { type: "oriented-imagery" })
|
|
106241
|
+
| (SceneLayerProperties & { type: "scene" })
|
|
106242
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" });
|
|
106268
106243
|
/**
|
|
106269
106244
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#LayerInfo layerInfo} for the provided layer.
|
|
106270
106245
|
*
|
|
@@ -106304,7 +106279,7 @@ declare namespace __esri {
|
|
|
106304
106279
|
attachments: AttachmentCapabilities;
|
|
106305
106280
|
create: CreateCapabilities;
|
|
106306
106281
|
delete: DeleteCapabilities;
|
|
106307
|
-
layer: FeatureLayer | SubtypeSublayer;
|
|
106282
|
+
layer: GeoJSONLayer | FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
106308
106283
|
reliesOnOwnerAdminPrivileges: boolean;
|
|
106309
106284
|
update: UpdateCapabilities;
|
|
106310
106285
|
}
|
|
@@ -106330,7 +106305,7 @@ declare namespace __esri {
|
|
|
106330
106305
|
defaults: DefaultEditingCapabilities;
|
|
106331
106306
|
delete: DeleteCapabilities;
|
|
106332
106307
|
formTemplate: FormTemplate;
|
|
106333
|
-
layer: FeatureLayer | SubtypeSublayer;
|
|
106308
|
+
layer: GeoJSONLayer | FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
106334
106309
|
layerInfo: EditorLayerInfo;
|
|
106335
106310
|
relationship: RelationshipCapabilities;
|
|
106336
106311
|
reliesOnOwnerAdminPrivileges: boolean;
|
|
@@ -106469,7 +106444,7 @@ declare namespace __esri {
|
|
|
106469
106444
|
*
|
|
106470
106445
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor-Workflow.html#type Read more...}
|
|
106471
106446
|
*/
|
|
106472
|
-
readonly type: "create" | "
|
|
106447
|
+
readonly type: "create-features" | "update" | "update-feature" | "update-table-record";
|
|
106473
106448
|
|
|
106474
106449
|
/**
|
|
106475
106450
|
* Cancels the active workflow.
|
|
@@ -106535,8 +106510,8 @@ declare namespace __esri {
|
|
|
106535
106510
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#CreationInfo Read more...}
|
|
106536
106511
|
*/
|
|
106537
106512
|
export interface CreationInfo {
|
|
106538
|
-
layer: FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
106539
|
-
template
|
|
106513
|
+
layer: GeoJSONLayer | FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
106514
|
+
template?: FeatureTemplate;
|
|
106540
106515
|
geometryToPlace?: Mesh;
|
|
106541
106516
|
maxFeatures?: number;
|
|
106542
106517
|
initialFeature?: Graphic;
|
|
@@ -106552,7 +106527,7 @@ declare namespace __esri {
|
|
|
106552
106527
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#LayerInfo Read more...}
|
|
106553
106528
|
*/
|
|
106554
106529
|
export interface EditorLayerInfo {
|
|
106555
|
-
layer: FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer |
|
|
106530
|
+
layer: FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer | GeoJSONLayer;
|
|
106556
106531
|
enabled?: boolean;
|
|
106557
106532
|
addEnabled?: boolean;
|
|
106558
106533
|
updateEnabled?: boolean;
|
|
@@ -106631,7 +106606,7 @@ declare namespace __esri {
|
|
|
106631
106606
|
|
|
106632
106607
|
export interface SupportingWidgetDefaultsFeatureTemplates {
|
|
106633
106608
|
groupBy?: string | GroupByFunction;
|
|
106634
|
-
visibleElements
|
|
106609
|
+
visibleElements?: SupportingWidgetDefaultsFeatureTemplatesVisibleElements;
|
|
106635
106610
|
enableListScroll?: boolean;
|
|
106636
106611
|
}
|
|
106637
106612
|
|
|
@@ -106641,9 +106616,9 @@ declare namespace __esri {
|
|
|
106641
106616
|
|
|
106642
106617
|
export interface SupportingWidgetDefaultsSketch {
|
|
106643
106618
|
defaultUpdateOptions?: any;
|
|
106644
|
-
|
|
106645
|
-
polygonSymbol?: SimpleFillSymbol;
|
|
106646
|
-
polylineSymbol?: SimpleLineSymbol;
|
|
106619
|
+
pointSymbol?: SimpleMarkerSymbol | PictureMarkerSymbol | PointSymbol3D | TextSymbol | CIMSymbol | WebStyleSymbol;
|
|
106620
|
+
polygonSymbol?: SimpleFillSymbol | CIMSymbol | PolygonSymbol3D;
|
|
106621
|
+
polylineSymbol?: SimpleLineSymbol | CIMSymbol | LineSymbol3D;
|
|
106647
106622
|
}
|
|
106648
106623
|
|
|
106649
106624
|
export interface VisibleElementsSnappingControlsElements {
|
|
@@ -106916,8 +106891,10 @@ declare namespace __esri {
|
|
|
106916
106891
|
avgElevation: number;
|
|
106917
106892
|
elevationGain: number;
|
|
106918
106893
|
elevationLoss: number;
|
|
106919
|
-
|
|
106920
|
-
|
|
106894
|
+
maxPositiveSlope: number;
|
|
106895
|
+
avgPositiveSlope: number;
|
|
106896
|
+
maxNegativeSlope: number;
|
|
106897
|
+
avgNegativeSlope: number;
|
|
106921
106898
|
}
|
|
106922
106899
|
|
|
106923
106900
|
export class ElevationProfileLineGround extends ElevationProfileLine {
|
|
@@ -107018,19 +106995,13 @@ declare namespace __esri {
|
|
|
107018
106995
|
*
|
|
107019
106996
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile-ElevationProfileLineView.html#exclude Read more...}
|
|
107020
106997
|
*/
|
|
107021
|
-
exclude:
|
|
107022
|
-
| (IntersectItem | Collection<IntersectItem> | IntersectItem[] | Ground)[]
|
|
107023
|
-
| Collection<IntersectItem>
|
|
107024
|
-
| IntersectItem;
|
|
106998
|
+
exclude: IntersectItem | Iterable<IntersectItem> | Iterable<Iterable<IntersectItem>>;
|
|
107025
106999
|
/**
|
|
107026
107000
|
* Items which are to be hit when querying elevation from view.
|
|
107027
107001
|
*
|
|
107028
107002
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile-ElevationProfileLineView.html#include Read more...}
|
|
107029
107003
|
*/
|
|
107030
|
-
include:
|
|
107031
|
-
| (IntersectItem | Collection<IntersectItem> | IntersectItem[] | Ground)[]
|
|
107032
|
-
| Collection<IntersectItem>
|
|
107033
|
-
| IntersectItem;
|
|
107004
|
+
include: IntersectItem | Iterable<IntersectItem> | Iterable<Iterable<IntersectItem>>;
|
|
107034
107005
|
/**
|
|
107035
107006
|
* The line type.
|
|
107036
107007
|
*
|
|
@@ -107046,36 +107017,54 @@ declare namespace __esri {
|
|
|
107046
107017
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile-ElevationProfileLineView.html#exclude Read more...}
|
|
107047
107018
|
*/
|
|
107048
107019
|
exclude?:
|
|
107049
|
-
|
|
|
107020
|
+
| GraphicProperties
|
|
107021
|
+
| LayerProperties
|
|
107022
|
+
| BuildingSublayerProperties
|
|
107023
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" })
|
|
107024
|
+
| GroundProperties
|
|
107025
|
+
| Iterable<
|
|
107050
107026
|
| GraphicProperties
|
|
107051
107027
|
| LayerProperties
|
|
107052
107028
|
| BuildingSublayerProperties
|
|
107053
|
-
|
|
|
107054
|
-
| (GraphicProperties | LayerProperties | BuildingSublayerProperties)[]
|
|
107029
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" })
|
|
107055
107030
|
| GroundProperties
|
|
107056
|
-
|
|
107057
|
-
|
|
|
107058
|
-
|
|
107059
|
-
|
|
107060
|
-
|
|
107031
|
+
>
|
|
107032
|
+
| Iterable<
|
|
107033
|
+
Iterable<
|
|
107034
|
+
| GraphicProperties
|
|
107035
|
+
| LayerProperties
|
|
107036
|
+
| BuildingSublayerProperties
|
|
107037
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" })
|
|
107038
|
+
| GroundProperties
|
|
107039
|
+
>
|
|
107040
|
+
>;
|
|
107061
107041
|
/**
|
|
107062
107042
|
* Items which are to be hit when querying elevation from view.
|
|
107063
107043
|
*
|
|
107064
107044
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile-ElevationProfileLineView.html#include Read more...}
|
|
107065
107045
|
*/
|
|
107066
107046
|
include?:
|
|
107067
|
-
|
|
|
107047
|
+
| GraphicProperties
|
|
107048
|
+
| LayerProperties
|
|
107049
|
+
| BuildingSublayerProperties
|
|
107050
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" })
|
|
107051
|
+
| GroundProperties
|
|
107052
|
+
| Iterable<
|
|
107068
107053
|
| GraphicProperties
|
|
107069
107054
|
| LayerProperties
|
|
107070
107055
|
| BuildingSublayerProperties
|
|
107071
|
-
|
|
|
107072
|
-
| (GraphicProperties | LayerProperties | BuildingSublayerProperties)[]
|
|
107056
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" })
|
|
107073
107057
|
| GroundProperties
|
|
107074
|
-
|
|
107075
|
-
|
|
|
107076
|
-
|
|
107077
|
-
|
|
107078
|
-
|
|
107058
|
+
>
|
|
107059
|
+
| Iterable<
|
|
107060
|
+
Iterable<
|
|
107061
|
+
| GraphicProperties
|
|
107062
|
+
| LayerProperties
|
|
107063
|
+
| BuildingSublayerProperties
|
|
107064
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" })
|
|
107065
|
+
| GroundProperties
|
|
107066
|
+
>
|
|
107067
|
+
>;
|
|
107079
107068
|
}
|
|
107080
107069
|
|
|
107081
107070
|
export class ElevationProfileViewModel extends Accessor {
|
|
@@ -107332,7 +107321,7 @@ declare namespace __esri {
|
|
|
107332
107321
|
*
|
|
107333
107322
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Expand.html#content Read more...}
|
|
107334
107323
|
*/
|
|
107335
|
-
content:
|
|
107324
|
+
content: string | HTMLElement | Widget | DomNodeOwner;
|
|
107336
107325
|
/**
|
|
107337
107326
|
* Indicates whether the widget is currently expanded or not.
|
|
107338
107327
|
*
|
|
@@ -107471,7 +107460,7 @@ declare namespace __esri {
|
|
|
107471
107460
|
*
|
|
107472
107461
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Expand.html#content Read more...}
|
|
107473
107462
|
*/
|
|
107474
|
-
content?:
|
|
107463
|
+
content?: string | HTMLElement | WidgetProperties | DomNodeOwner;
|
|
107475
107464
|
/**
|
|
107476
107465
|
* Indicates whether the widget is currently expanded or not.
|
|
107477
107466
|
*
|
|
@@ -107628,6 +107617,15 @@ declare namespace __esri {
|
|
|
107628
107617
|
view?: (MapViewProperties & { type: "2d" }) | (SceneViewProperties & { type: "3d" });
|
|
107629
107618
|
}
|
|
107630
107619
|
|
|
107620
|
+
/**
|
|
107621
|
+
* A dom node owner.
|
|
107622
|
+
*
|
|
107623
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Expand.html#DomNodeOwner Read more...}
|
|
107624
|
+
*/
|
|
107625
|
+
export interface DomNodeOwner {
|
|
107626
|
+
domNode: HTMLElement;
|
|
107627
|
+
}
|
|
107628
|
+
|
|
107631
107629
|
export class Feature extends Widget {
|
|
107632
107630
|
/**
|
|
107633
107631
|
* The Feature widget displays a graphic according to its [PopupTemplate](esri-PopupTemplate.html).
|
|
@@ -107816,14 +107814,14 @@ declare namespace __esri {
|
|
|
107816
107814
|
*/
|
|
107817
107815
|
interface FeatureUtilityNetworkAssociationsViewModel {
|
|
107818
107816
|
readonly associationsLayer: FeatureLayer;
|
|
107819
|
-
|
|
107817
|
+
associationTypes: UtilityNetworkAssociationType[];
|
|
107820
107818
|
description: string;
|
|
107821
107819
|
displayCount: number;
|
|
107822
107820
|
featureCount: number;
|
|
107823
107821
|
readonly globalId: string;
|
|
107824
107822
|
readonly globalIdField: string;
|
|
107825
107823
|
graphic: Graphic;
|
|
107826
|
-
layer: FeatureLayer;
|
|
107824
|
+
layer: FeatureLayer | SceneLayer | SubtypeSublayer | Sublayer;
|
|
107827
107825
|
map: Map;
|
|
107828
107826
|
readonly objectId: number;
|
|
107829
107827
|
readonly objectIdField: string;
|
|
@@ -108125,7 +108123,7 @@ declare namespace __esri {
|
|
|
108125
108123
|
*
|
|
108126
108124
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm.html#layer Read more...}
|
|
108127
108125
|
*/
|
|
108128
|
-
layer: FeatureLayer | SubtypeSublayer;
|
|
108126
|
+
layer: CSVLayer | GeoJSONLayer | FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
108129
108127
|
/**
|
|
108130
108128
|
* A reference to the associated {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html Map}.
|
|
108131
108129
|
*
|
|
@@ -108199,7 +108197,13 @@ declare namespace __esri {
|
|
|
108199
108197
|
*
|
|
108200
108198
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm.html#layer Read more...}
|
|
108201
108199
|
*/
|
|
108202
|
-
layer?:
|
|
108200
|
+
layer?:
|
|
108201
|
+
| (CSVLayerProperties & { type: "csv" })
|
|
108202
|
+
| (GeoJSONLayerProperties & { type: "geojson" })
|
|
108203
|
+
| (FeatureLayerProperties & { type: "feature" })
|
|
108204
|
+
| (OrientedImageryLayerProperties & { type: "oriented-imagery" })
|
|
108205
|
+
| (SceneLayerProperties & { type: "scene" })
|
|
108206
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" });
|
|
108203
108207
|
/**
|
|
108204
108208
|
* A reference to the associated {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html Map}.
|
|
108205
108209
|
*
|
|
@@ -108243,9 +108247,9 @@ declare namespace __esri {
|
|
|
108243
108247
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html FeatureUtilityNetworkAssociationsViewModel}
|
|
108244
108248
|
* for supporting the editor widget.
|
|
108245
108249
|
*
|
|
108246
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#
|
|
108250
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#featureUtilityNetworkAssociationsViewModel Read more...}
|
|
108247
108251
|
*/
|
|
108248
|
-
|
|
108252
|
+
featureUtilityNetworkAssociationsViewModel: FeatureUtilityNetworkAssociationsViewModel;
|
|
108249
108253
|
/**
|
|
108250
108254
|
* The associated {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-FormTemplate.html template} used for the form.
|
|
108251
108255
|
*
|
|
@@ -108258,13 +108262,19 @@ declare namespace __esri {
|
|
|
108258
108262
|
*
|
|
108259
108263
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#inputs Read more...}
|
|
108260
108264
|
*/
|
|
108261
|
-
readonly inputs: (
|
|
108265
|
+
readonly inputs: (
|
|
108266
|
+
| FieldInput
|
|
108267
|
+
| GroupInput
|
|
108268
|
+
| RelationshipInput
|
|
108269
|
+
| TextElementInput
|
|
108270
|
+
| UtilityNetworkAssociationInput
|
|
108271
|
+
)[];
|
|
108262
108272
|
/**
|
|
108263
108273
|
* Layer containing the editable feature attributes.
|
|
108264
108274
|
*
|
|
108265
108275
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#layer Read more...}
|
|
108266
108276
|
*/
|
|
108267
|
-
layer: FeatureLayer | SceneLayer | SubtypeSublayer;
|
|
108277
|
+
layer: CSVLayer | GeoJSONLayer | FeatureLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
108268
108278
|
/**
|
|
108269
108279
|
* A reference to the associated {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html Map}.
|
|
108270
108280
|
*
|
|
@@ -108381,9 +108391,9 @@ declare namespace __esri {
|
|
|
108381
108391
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html FeatureUtilityNetworkAssociationsViewModel}
|
|
108382
108392
|
* for supporting the editor widget.
|
|
108383
108393
|
*
|
|
108384
|
-
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#
|
|
108394
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#featureUtilityNetworkAssociationsViewModel Read more...}
|
|
108385
108395
|
*/
|
|
108386
|
-
|
|
108396
|
+
featureUtilityNetworkAssociationsViewModel?: FeatureUtilityNetworkAssociationsViewModel;
|
|
108387
108397
|
/**
|
|
108388
108398
|
* The associated {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-FormTemplate.html template} used for the form.
|
|
108389
108399
|
*
|
|
@@ -108396,7 +108406,10 @@ declare namespace __esri {
|
|
|
108396
108406
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#layer Read more...}
|
|
108397
108407
|
*/
|
|
108398
108408
|
layer?:
|
|
108409
|
+
| (CSVLayerProperties & { type: "csv" })
|
|
108410
|
+
| (GeoJSONLayerProperties & { type: "geojson" })
|
|
108399
108411
|
| (FeatureLayerProperties & { type: "feature" })
|
|
108412
|
+
| (OrientedImageryLayerProperties & { type: "oriented-imagery" })
|
|
108400
108413
|
| (SceneLayerProperties & { type: "scene" })
|
|
108401
108414
|
| (SubtypeSublayerProperties & { type: "subtype-sublayer" });
|
|
108402
108415
|
/**
|
|
@@ -108465,7 +108478,7 @@ declare namespace __esri {
|
|
|
108465
108478
|
*
|
|
108466
108479
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FieldInput.html#domain Read more...}
|
|
108467
108480
|
*/
|
|
108468
|
-
readonly domain: CodedValueDomain | RangeDomain;
|
|
108481
|
+
readonly domain: CodedValueDomain | RangeDomain | InheritedDomain;
|
|
108469
108482
|
/**
|
|
108470
108483
|
* Indicates if the field is editable.
|
|
108471
108484
|
*
|
|
@@ -108511,7 +108524,7 @@ declare namespace __esri {
|
|
|
108511
108524
|
*
|
|
108512
108525
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FieldInput.html#includeTime Read more...}
|
|
108513
108526
|
*/
|
|
108514
|
-
readonly includeTime:
|
|
108527
|
+
readonly includeTime: boolean;
|
|
108515
108528
|
/**
|
|
108516
108529
|
* Indicates whether timestamp information is included for date inputs.
|
|
108517
108530
|
*
|
|
@@ -108527,7 +108540,17 @@ declare namespace __esri {
|
|
|
108527
108540
|
*
|
|
108528
108541
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FieldInput.html#inputType Read more...}
|
|
108529
108542
|
*/
|
|
108530
|
-
readonly inputType:
|
|
108543
|
+
readonly inputType:
|
|
108544
|
+
| "switch"
|
|
108545
|
+
| "barcode-scanner"
|
|
108546
|
+
| "combo-box"
|
|
108547
|
+
| "date-picker"
|
|
108548
|
+
| "datetime-picker"
|
|
108549
|
+
| "datetimeoffset-picker"
|
|
108550
|
+
| "radio-buttons"
|
|
108551
|
+
| "text-area"
|
|
108552
|
+
| "text-box"
|
|
108553
|
+
| "time-picker";
|
|
108531
108554
|
/**
|
|
108532
108555
|
* The field's label.
|
|
108533
108556
|
*
|
|
@@ -108628,7 +108651,7 @@ declare namespace __esri {
|
|
|
108628
108651
|
*
|
|
108629
108652
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-GroupInput.html#inputs Read more...}
|
|
108630
108653
|
*/
|
|
108631
|
-
readonly inputs: FieldInput
|
|
108654
|
+
readonly inputs: (FieldInput | RelationshipInput | TextElementInput | UtilityNetworkAssociationInput)[];
|
|
108632
108655
|
/**
|
|
108633
108656
|
* The group's label.
|
|
108634
108657
|
*
|
|
@@ -108739,6 +108762,129 @@ declare namespace __esri {
|
|
|
108739
108762
|
|
|
108740
108763
|
interface RelationshipInputProperties extends InputBaseProperties {}
|
|
108741
108764
|
|
|
108765
|
+
export interface TextElementInput extends Accessor, InputBase {}
|
|
108766
|
+
|
|
108767
|
+
export class TextElementInput {
|
|
108768
|
+
constructor(properties?: TextElementInputProperties);
|
|
108769
|
+
|
|
108770
|
+
/**
|
|
108771
|
+
* The input's description.
|
|
108772
|
+
*
|
|
108773
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#description Read more...}
|
|
108774
|
+
*/
|
|
108775
|
+
declare readonly description: InputBase["description"];
|
|
108776
|
+
/**
|
|
108777
|
+
* All Aracde expressions referenced, via string substitution, in the text
|
|
108778
|
+
* content.
|
|
108779
|
+
*
|
|
108780
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#expressionsUsed Read more...}
|
|
108781
|
+
*/
|
|
108782
|
+
readonly expressionsUsed: string[];
|
|
108783
|
+
/**
|
|
108784
|
+
* The names of all fields referenced, via string templates, in the text
|
|
108785
|
+
* content.
|
|
108786
|
+
*
|
|
108787
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#fieldsUsed Read more...}
|
|
108788
|
+
*/
|
|
108789
|
+
readonly fieldsUsed: string[];
|
|
108790
|
+
/**
|
|
108791
|
+
* The group containing the text element input.
|
|
108792
|
+
*
|
|
108793
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#group Read more...}
|
|
108794
|
+
*/
|
|
108795
|
+
readonly group: GroupInput;
|
|
108796
|
+
/**
|
|
108797
|
+
* The content of the TextElement, as a string in either plain-text (no
|
|
108798
|
+
* formatting) or Markdown.
|
|
108799
|
+
*
|
|
108800
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#rawText Read more...}
|
|
108801
|
+
*/
|
|
108802
|
+
rawText: string;
|
|
108803
|
+
/**
|
|
108804
|
+
* The processed text, compiled and with template parameters replaced with
|
|
108805
|
+
* values.
|
|
108806
|
+
*
|
|
108807
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#text Read more...}
|
|
108808
|
+
*/
|
|
108809
|
+
text: string;
|
|
108810
|
+
/**
|
|
108811
|
+
* Defines the format of the `text` property.
|
|
108812
|
+
*
|
|
108813
|
+
* @default "plain-text"
|
|
108814
|
+
*
|
|
108815
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#textFormat Read more...}
|
|
108816
|
+
*/
|
|
108817
|
+
textFormat: "plain-text" | "markdown";
|
|
108818
|
+
/**
|
|
108819
|
+
* The type of input.
|
|
108820
|
+
*
|
|
108821
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#type Read more...}
|
|
108822
|
+
*/
|
|
108823
|
+
readonly type: "text";
|
|
108824
|
+
}
|
|
108825
|
+
|
|
108826
|
+
interface TextElementInputProperties extends InputBaseProperties {
|
|
108827
|
+
/**
|
|
108828
|
+
* The content of the TextElement, as a string in either plain-text (no
|
|
108829
|
+
* formatting) or Markdown.
|
|
108830
|
+
*
|
|
108831
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#rawText Read more...}
|
|
108832
|
+
*/
|
|
108833
|
+
rawText?: string;
|
|
108834
|
+
/**
|
|
108835
|
+
* The processed text, compiled and with template parameters replaced with
|
|
108836
|
+
* values.
|
|
108837
|
+
*
|
|
108838
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#text Read more...}
|
|
108839
|
+
*/
|
|
108840
|
+
text?: string;
|
|
108841
|
+
/**
|
|
108842
|
+
* Defines the format of the `text` property.
|
|
108843
|
+
*
|
|
108844
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-TextElementInput.html#textFormat Read more...}
|
|
108845
|
+
*/
|
|
108846
|
+
textFormat?: "plain-text" | "markdown";
|
|
108847
|
+
}
|
|
108848
|
+
|
|
108849
|
+
export interface UtilityNetworkAssociationInput extends Accessor, EditableInput, InputBase {}
|
|
108850
|
+
|
|
108851
|
+
export class UtilityNetworkAssociationInput {
|
|
108852
|
+
constructor(properties?: UtilityNetworkAssociationInputProperties);
|
|
108853
|
+
|
|
108854
|
+
/**
|
|
108855
|
+
* The input's description.
|
|
108856
|
+
*
|
|
108857
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-UtilityNetworkAssociationInput.html#description Read more...}
|
|
108858
|
+
*/
|
|
108859
|
+
declare readonly description: InputBase["description"];
|
|
108860
|
+
/**
|
|
108861
|
+
* Indicates whether the input is editable.
|
|
108862
|
+
*
|
|
108863
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-UtilityNetworkAssociationInput.html#editable Read more...}
|
|
108864
|
+
*/
|
|
108865
|
+
readonly editable: boolean;
|
|
108866
|
+
/**
|
|
108867
|
+
* The group containing the relationship input.
|
|
108868
|
+
*
|
|
108869
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-UtilityNetworkAssociationInput.html#group Read more...}
|
|
108870
|
+
*/
|
|
108871
|
+
readonly group: GroupInput;
|
|
108872
|
+
/**
|
|
108873
|
+
* The type of input.
|
|
108874
|
+
*
|
|
108875
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-UtilityNetworkAssociationInput.html#type Read more...}
|
|
108876
|
+
*/
|
|
108877
|
+
readonly type: "utilityNetworkAssociations";
|
|
108878
|
+
/**
|
|
108879
|
+
* Indicates whether the form is currently updating.
|
|
108880
|
+
*
|
|
108881
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-UtilityNetworkAssociationInput.html#updating Read more...}
|
|
108882
|
+
*/
|
|
108883
|
+
readonly updating: boolean;
|
|
108884
|
+
}
|
|
108885
|
+
|
|
108886
|
+
interface UtilityNetworkAssociationInputProperties extends InputBaseProperties {}
|
|
108887
|
+
|
|
108742
108888
|
export interface FeatureFormSubmitEvent {
|
|
108743
108889
|
invalid: string[];
|
|
108744
108890
|
valid: string[];
|
|
@@ -109817,6 +109963,12 @@ declare namespace __esri {
|
|
|
109817
109963
|
readonly columns: Collection<
|
|
109818
109964
|
Column | FieldColumn | GroupColumn | ActionColumn | AttachmentsColumn | RelationshipColumn
|
|
109819
109965
|
>;
|
|
109966
|
+
/**
|
|
109967
|
+
* The ID or node representing the DOM element containing the widget.
|
|
109968
|
+
*
|
|
109969
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#container Read more...}
|
|
109970
|
+
*/
|
|
109971
|
+
container: HTMLElement;
|
|
109820
109972
|
/**
|
|
109821
109973
|
* Text displayed in the table header, under the title.
|
|
109822
109974
|
*
|
|
@@ -110322,6 +110474,12 @@ declare namespace __esri {
|
|
|
110322
110474
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#columnReorderingEnabled Read more...}
|
|
110323
110475
|
*/
|
|
110324
110476
|
columnReorderingEnabled?: boolean;
|
|
110477
|
+
/**
|
|
110478
|
+
* The ID or node representing the DOM element containing the widget.
|
|
110479
|
+
*
|
|
110480
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#container Read more...}
|
|
110481
|
+
*/
|
|
110482
|
+
container?: HTMLElement | string;
|
|
110325
110483
|
/**
|
|
110326
110484
|
* Text displayed in the table header, under the title.
|
|
110327
110485
|
*
|
|
@@ -110656,11 +110814,11 @@ declare namespace __esri {
|
|
|
110656
110814
|
/**
|
|
110657
110815
|
* Attempts to display attachment thumbnail previews as images instead of generic icons.
|
|
110658
110816
|
*
|
|
110659
|
-
* @default
|
|
110817
|
+
* @default "image"
|
|
110660
110818
|
*
|
|
110661
110819
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-AttachmentsColumn.html#thumbnailAppearance Read more...}
|
|
110662
110820
|
*/
|
|
110663
|
-
thumbnailAppearance:
|
|
110821
|
+
thumbnailAppearance: "image" | "icon";
|
|
110664
110822
|
/**
|
|
110665
110823
|
* Controls the number of attachment thumbnail previews to display in each cell.
|
|
110666
110824
|
*
|
|
@@ -110714,7 +110872,7 @@ declare namespace __esri {
|
|
|
110714
110872
|
*
|
|
110715
110873
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-AttachmentsColumn.html#thumbnailAppearance Read more...}
|
|
110716
110874
|
*/
|
|
110717
|
-
thumbnailAppearance?:
|
|
110875
|
+
thumbnailAppearance?: "image" | "icon";
|
|
110718
110876
|
/**
|
|
110719
110877
|
* Controls the number of attachment thumbnail previews to display in each cell.
|
|
110720
110878
|
*
|
|
@@ -111532,7 +111690,7 @@ declare namespace __esri {
|
|
|
111532
111690
|
*/
|
|
111533
111691
|
export interface SelectionFilter {
|
|
111534
111692
|
type: string;
|
|
111535
|
-
objectIds: number[];
|
|
111693
|
+
objectIds: (number | string)[];
|
|
111536
111694
|
}
|
|
111537
111695
|
|
|
111538
111696
|
export interface FieldColumn extends Accessor, Column {}
|
|
@@ -112347,7 +112505,7 @@ declare namespace __esri {
|
|
|
112347
112505
|
*
|
|
112348
112506
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-RelationshipColumn.html#resizable Read more...}
|
|
112349
112507
|
*/
|
|
112350
|
-
readonly resizable:
|
|
112508
|
+
readonly resizable: boolean;
|
|
112351
112509
|
/**
|
|
112352
112510
|
* The text alignment of the relationship column.
|
|
112353
112511
|
*
|
|
@@ -112385,6 +112543,28 @@ declare namespace __esri {
|
|
|
112385
112543
|
width?: number | string;
|
|
112386
112544
|
}
|
|
112387
112545
|
|
|
112546
|
+
export class AttachmentsColumnTemplate extends ColumnTemplateBase {
|
|
112547
|
+
/**
|
|
112548
|
+
* 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
|
|
112549
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html FeatureTable} widget.
|
|
112550
|
+
*
|
|
112551
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-AttachmentsColumnTemplate.html Read more...}
|
|
112552
|
+
*/
|
|
112553
|
+
|
|
112554
|
+
constructor(properties?: AttachmentsColumnTemplateProperties);
|
|
112555
|
+
|
|
112556
|
+
/**
|
|
112557
|
+
* The type of column that the template represents.
|
|
112558
|
+
*
|
|
112559
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-AttachmentsColumnTemplate.html#type Read more...}
|
|
112560
|
+
*/
|
|
112561
|
+
readonly type: "attachment";
|
|
112562
|
+
|
|
112563
|
+
static fromJSON(json: any): AttachmentsColumnTemplate;
|
|
112564
|
+
}
|
|
112565
|
+
|
|
112566
|
+
interface AttachmentsColumnTemplateProperties extends ColumnTemplateBaseProperties {}
|
|
112567
|
+
|
|
112388
112568
|
export class ColumnTemplate extends ColumnTemplateBase {
|
|
112389
112569
|
/**
|
|
112390
112570
|
* 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 +113008,7 @@ declare namespace __esri {
|
|
|
112828
113008
|
*
|
|
112829
113009
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-GroupColumnTemplate.html#columnTemplates Read more...}
|
|
112830
113010
|
*/
|
|
112831
|
-
columnTemplates: (FieldColumnTemplate |
|
|
113011
|
+
columnTemplates: (ColumnTemplate | FieldColumnTemplate | AttachmentsColumnTemplate | RelationshipColumnTemplate)[];
|
|
112832
113012
|
/**
|
|
112833
113013
|
* The type of column that the template represents.
|
|
112834
113014
|
*
|
|
@@ -112846,11 +113026,35 @@ declare namespace __esri {
|
|
|
112846
113026
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-GroupColumnTemplate.html#columnTemplates Read more...}
|
|
112847
113027
|
*/
|
|
112848
113028
|
columnTemplates?: (
|
|
113029
|
+
| (ColumnTemplateProperties & { type: "column" })
|
|
112849
113030
|
| (FieldColumnTemplateProperties & { type: "field" })
|
|
112850
|
-
| (
|
|
113031
|
+
| (AttachmentsColumnTemplateProperties & { type: "attachment" })
|
|
113032
|
+
| (RelationshipColumnTemplateProperties & { type: "relationship" })
|
|
112851
113033
|
)[];
|
|
112852
113034
|
}
|
|
112853
113035
|
|
|
113036
|
+
export class RelationshipColumnTemplate extends ColumnTemplateBase {
|
|
113037
|
+
/**
|
|
113038
|
+
* 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
|
|
113039
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html FeatureTable} widget.
|
|
113040
|
+
*
|
|
113041
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-RelationshipColumnTemplate.html Read more...}
|
|
113042
|
+
*/
|
|
113043
|
+
|
|
113044
|
+
constructor(properties?: RelationshipColumnTemplateProperties);
|
|
113045
|
+
|
|
113046
|
+
/**
|
|
113047
|
+
* The type of column that the template represents.
|
|
113048
|
+
*
|
|
113049
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-RelationshipColumnTemplate.html#type Read more...}
|
|
113050
|
+
*/
|
|
113051
|
+
readonly type: "relationship";
|
|
113052
|
+
|
|
113053
|
+
static fromJSON(json: any): RelationshipColumnTemplate;
|
|
113054
|
+
}
|
|
113055
|
+
|
|
113056
|
+
interface RelationshipColumnTemplateProperties extends ColumnTemplateBaseProperties {}
|
|
113057
|
+
|
|
112854
113058
|
export interface TableTemplate extends Accessor, JSONSupport {}
|
|
112855
113059
|
|
|
112856
113060
|
export class TableTemplate {
|
|
@@ -112867,7 +113071,13 @@ declare namespace __esri {
|
|
|
112867
113071
|
*
|
|
112868
113072
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-TableTemplate.html#columnTemplates Read more...}
|
|
112869
113073
|
*/
|
|
112870
|
-
columnTemplates: (
|
|
113074
|
+
columnTemplates: (
|
|
113075
|
+
| FieldColumnTemplate
|
|
113076
|
+
| GroupColumnTemplate
|
|
113077
|
+
| ColumnTemplate
|
|
113078
|
+
| AttachmentsColumnTemplate
|
|
113079
|
+
| RelationshipColumnTemplate
|
|
113080
|
+
)[];
|
|
112871
113081
|
|
|
112872
113082
|
/**
|
|
112873
113083
|
* Creates a deep clone of the TableTemplate class.
|
|
@@ -112904,6 +113114,8 @@ declare namespace __esri {
|
|
|
112904
113114
|
| (FieldColumnTemplateProperties & { type: "field" })
|
|
112905
113115
|
| (GroupColumnTemplateProperties & { type: "group" })
|
|
112906
113116
|
| (ColumnTemplateProperties & { type: "column" })
|
|
113117
|
+
| (AttachmentsColumnTemplateProperties & { type: "attachment" })
|
|
113118
|
+
| (RelationshipColumnTemplateProperties & { type: "relationship" })
|
|
112907
113119
|
)[];
|
|
112908
113120
|
}
|
|
112909
113121
|
|
|
@@ -112978,21 +113190,14 @@ declare namespace __esri {
|
|
|
112978
113190
|
icon?: string;
|
|
112979
113191
|
iconClass?: string;
|
|
112980
113192
|
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;
|
|
113193
|
+
clickFunction: TableMenuItemConfigClickFunction;
|
|
113194
|
+
hidden?: TableMenuItemConfigHiddenFunction | boolean;
|
|
112994
113195
|
}
|
|
112995
113196
|
|
|
113197
|
+
export type TableMenuItemConfigClickFunction = (event: MouseEvent | KeyboardEvent) => void;
|
|
113198
|
+
|
|
113199
|
+
export type TableMenuItemConfigHiddenFunction = () => boolean;
|
|
113200
|
+
|
|
112996
113201
|
/**
|
|
112997
113202
|
* The visible elements that are displayed within the widget.
|
|
112998
113203
|
*
|
|
@@ -113087,7 +113292,7 @@ declare namespace __esri {
|
|
|
113087
113292
|
*
|
|
113088
113293
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTemplates.html#layers Read more...}
|
|
113089
113294
|
*/
|
|
113090
|
-
layers: (FeatureLayer | GeoJSONLayer | SceneLayer | SubtypeSublayer | SubtypeGroupLayer)[];
|
|
113295
|
+
layers: (FeatureLayer | GeoJSONLayer | SceneLayer | SubtypeSublayer | SubtypeGroupLayer | OrientedImageryLayer)[];
|
|
113091
113296
|
/**
|
|
113092
113297
|
* Specifies the selection behavior of list items.
|
|
113093
113298
|
*
|
|
@@ -113169,6 +113374,7 @@ declare namespace __esri {
|
|
|
113169
113374
|
| (SceneLayerProperties & { type: "scene" })
|
|
113170
113375
|
| (SubtypeSublayerProperties & { type: "subtype-sublayer" })
|
|
113171
113376
|
| (SubtypeGroupLayerProperties & { type: "subtype-group" })
|
|
113377
|
+
| (OrientedImageryLayerProperties & { type: "oriented-imagery" })
|
|
113172
113378
|
)[];
|
|
113173
113379
|
/**
|
|
113174
113380
|
* Specifies the selection behavior of list items.
|
|
@@ -113229,14 +113435,14 @@ declare namespace __esri {
|
|
|
113229
113435
|
*
|
|
113230
113436
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTemplates-FeatureTemplatesViewModel.html#items Read more...}
|
|
113231
113437
|
*/
|
|
113232
|
-
readonly items: TemplateItem
|
|
113438
|
+
readonly items: (TemplateItem | TemplateItemGroup)[];
|
|
113233
113439
|
/**
|
|
113234
113440
|
* An array of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html FeatureLayers}
|
|
113235
113441
|
* that are associated with the widget.
|
|
113236
113442
|
*
|
|
113237
113443
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTemplates-FeatureTemplatesViewModel.html#layers Read more...}
|
|
113238
113444
|
*/
|
|
113239
|
-
layers: (FeatureLayer | GeoJSONLayer | SceneLayer | SubtypeSublayer | SubtypeGroupLayer)[];
|
|
113445
|
+
layers: (FeatureLayer | GeoJSONLayer | SceneLayer | OrientedImageryLayer | SubtypeSublayer | SubtypeGroupLayer)[];
|
|
113240
113446
|
/**
|
|
113241
113447
|
* The widget's state.
|
|
113242
113448
|
*
|
|
@@ -113312,6 +113518,7 @@ declare namespace __esri {
|
|
|
113312
113518
|
| (FeatureLayerProperties & { type: "feature" })
|
|
113313
113519
|
| (GeoJSONLayerProperties & { type: "geojson" })
|
|
113314
113520
|
| (SceneLayerProperties & { type: "scene" })
|
|
113521
|
+
| (OrientedImageryLayerProperties & { type: "oriented-imagery" })
|
|
113315
113522
|
| (SubtypeSublayerProperties & { type: "subtype-sublayer" })
|
|
113316
113523
|
| (SubtypeGroupLayerProperties & { type: "subtype-group" })
|
|
113317
113524
|
)[];
|
|
@@ -113344,11 +113551,11 @@ declare namespace __esri {
|
|
|
113344
113551
|
*/
|
|
113345
113552
|
label: string;
|
|
113346
113553
|
/**
|
|
113347
|
-
* The
|
|
113554
|
+
* The layer associated with the template item.
|
|
113348
113555
|
*
|
|
113349
113556
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTemplates-TemplateItem.html#layer Read more...}
|
|
113350
113557
|
*/
|
|
113351
|
-
layer: FeatureLayer;
|
|
113558
|
+
layer: FeatureLayer | GeoJSONLayer | OrientedImageryLayer | SceneLayer | SubtypeSublayer;
|
|
113352
113559
|
/**
|
|
113353
113560
|
* The associated {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureTemplate.html FeatureTemplate} for the item.
|
|
113354
113561
|
*
|
|
@@ -113391,11 +113598,16 @@ declare namespace __esri {
|
|
|
113391
113598
|
*/
|
|
113392
113599
|
label?: string;
|
|
113393
113600
|
/**
|
|
113394
|
-
* The
|
|
113601
|
+
* The layer associated with the template item.
|
|
113395
113602
|
*
|
|
113396
113603
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTemplates-TemplateItem.html#layer Read more...}
|
|
113397
113604
|
*/
|
|
113398
|
-
layer?:
|
|
113605
|
+
layer?:
|
|
113606
|
+
| (FeatureLayerProperties & { type: "feature" })
|
|
113607
|
+
| (GeoJSONLayerProperties & { type: "geojson" })
|
|
113608
|
+
| (OrientedImageryLayerProperties & { type: "oriented-imagery" })
|
|
113609
|
+
| (SceneLayerProperties & { type: "scene" })
|
|
113610
|
+
| (SubtypeSublayerProperties & { type: "subtype-sublayer" });
|
|
113399
113611
|
/**
|
|
113400
113612
|
* The associated {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureTemplate.html FeatureTemplate} for the item.
|
|
113401
113613
|
*
|
|
@@ -115502,7 +115714,7 @@ declare namespace __esri {
|
|
|
115502
115714
|
filterPlaceholder?: string;
|
|
115503
115715
|
listItemCreatedFunction?: TableListListItemCreatedHandler;
|
|
115504
115716
|
minFilterItems?: number;
|
|
115505
|
-
selectionMode?:
|
|
115717
|
+
selectionMode?: "multiple" | "none" | "single" | "single-persist";
|
|
115506
115718
|
visibleElements?: LayerListKnowledgeGraphOptionsVisibleElements;
|
|
115507
115719
|
}
|
|
115508
115720
|
|
|
@@ -115801,8 +116013,8 @@ declare namespace __esri {
|
|
|
115801
116013
|
}
|
|
115802
116014
|
|
|
115803
116015
|
export interface LegendViewModelLayerInfos {
|
|
115804
|
-
title
|
|
115805
|
-
layer
|
|
116016
|
+
title: string;
|
|
116017
|
+
layer: Layer | Sublayer;
|
|
115806
116018
|
}
|
|
115807
116019
|
|
|
115808
116020
|
export class ActiveLayerInfo extends Accessor {
|
|
@@ -115951,7 +116163,17 @@ declare namespace __esri {
|
|
|
115951
116163
|
*
|
|
115952
116164
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#legendElements Read more...}
|
|
115953
116165
|
*/
|
|
115954
|
-
legendElements?:
|
|
116166
|
+
legendElements?: (
|
|
116167
|
+
| (SymbolTableElement & { type: "symbol-table" })
|
|
116168
|
+
| (ColorRampElement & { type: "color-ramp" })
|
|
116169
|
+
| (StretchRampElement & { type: "stretch-ramp" })
|
|
116170
|
+
| (OpacityRampElement & { type: "opacity-ramp" })
|
|
116171
|
+
| (SizeRampElement & { type: "size-ramp" })
|
|
116172
|
+
| (HeatmapRampElement & { type: "heatmap-ramp" })
|
|
116173
|
+
| (RelationshipRampElement & { type: "relationship-ramp" })
|
|
116174
|
+
| UnivariateColorSizeRampElement
|
|
116175
|
+
| (PieChartRampElement & { type: "pie-chart-ramp" })
|
|
116176
|
+
)[];
|
|
115955
116177
|
/**
|
|
115956
116178
|
* 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
116179
|
*
|
|
@@ -116003,14 +116225,23 @@ declare namespace __esri {
|
|
|
116003
116225
|
view?: ViewProperties;
|
|
116004
116226
|
}
|
|
116005
116227
|
|
|
116228
|
+
/**
|
|
116229
|
+
* Describes the schema of the ClusterTitle element.
|
|
116230
|
+
*
|
|
116231
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#ClusterTitle Read more...}
|
|
116232
|
+
*/
|
|
116233
|
+
export interface ClusterTitle {
|
|
116234
|
+
showCount: boolean;
|
|
116235
|
+
}
|
|
116236
|
+
|
|
116006
116237
|
/**
|
|
116007
116238
|
* 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
116239
|
*
|
|
116009
116240
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#ColorRampElement Read more...}
|
|
116010
116241
|
*/
|
|
116011
116242
|
export interface ColorRampElement {
|
|
116012
|
-
type:
|
|
116013
|
-
title
|
|
116243
|
+
type: "color-ramp";
|
|
116244
|
+
title?: string | RampTitle;
|
|
116014
116245
|
infos: ColorRampStop[];
|
|
116015
116246
|
}
|
|
116016
116247
|
|
|
@@ -116021,9 +116252,18 @@ declare namespace __esri {
|
|
|
116021
116252
|
*/
|
|
116022
116253
|
export interface ColorRampStop {
|
|
116023
116254
|
label: string;
|
|
116024
|
-
value: number;
|
|
116255
|
+
value: number | string;
|
|
116025
116256
|
color: Color;
|
|
116026
|
-
|
|
116257
|
+
}
|
|
116258
|
+
|
|
116259
|
+
/**
|
|
116260
|
+
* Describes the schema of the DotDensityTitle element.
|
|
116261
|
+
*
|
|
116262
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#DotDensityTitle Read more...}
|
|
116263
|
+
*/
|
|
116264
|
+
export interface DotDensityTitle {
|
|
116265
|
+
value: number;
|
|
116266
|
+
unit?: string;
|
|
116027
116267
|
}
|
|
116028
116268
|
|
|
116029
116269
|
/**
|
|
@@ -116032,8 +116272,8 @@ declare namespace __esri {
|
|
|
116032
116272
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#HeatmapRampElement Read more...}
|
|
116033
116273
|
*/
|
|
116034
116274
|
export interface HeatmapRampElement {
|
|
116035
|
-
type:
|
|
116036
|
-
title?: string |
|
|
116275
|
+
type: "heatmap-ramp";
|
|
116276
|
+
title?: string | RendererTitle;
|
|
116037
116277
|
infos: HeatmapRampStop[];
|
|
116038
116278
|
}
|
|
116039
116279
|
|
|
@@ -116046,7 +116286,6 @@ declare namespace __esri {
|
|
|
116046
116286
|
label: string;
|
|
116047
116287
|
ratio: number;
|
|
116048
116288
|
color: Color;
|
|
116049
|
-
offset: number;
|
|
116050
116289
|
}
|
|
116051
116290
|
|
|
116052
116291
|
/**
|
|
@@ -116055,9 +116294,9 @@ declare namespace __esri {
|
|
|
116055
116294
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#ImageSymbolTableElementInfo Read more...}
|
|
116056
116295
|
*/
|
|
116057
116296
|
export interface ImageSymbolTableElementInfo {
|
|
116058
|
-
label?: string;
|
|
116297
|
+
label?: string | StretchMultibandTitle;
|
|
116059
116298
|
src: string;
|
|
116060
|
-
opacity
|
|
116299
|
+
opacity?: number;
|
|
116061
116300
|
width?: number;
|
|
116062
116301
|
height?: number;
|
|
116063
116302
|
}
|
|
@@ -116070,10 +116309,13 @@ declare namespace __esri {
|
|
|
116070
116309
|
export type LegendElement =
|
|
116071
116310
|
| SymbolTableElement
|
|
116072
116311
|
| ColorRampElement
|
|
116312
|
+
| StretchRampElement
|
|
116073
116313
|
| OpacityRampElement
|
|
116074
116314
|
| SizeRampElement
|
|
116075
116315
|
| HeatmapRampElement
|
|
116076
|
-
| RelationshipRampElement
|
|
116316
|
+
| RelationshipRampElement
|
|
116317
|
+
| UnivariateColorSizeRampElement
|
|
116318
|
+
| PieChartRampElement;
|
|
116077
116319
|
|
|
116078
116320
|
/**
|
|
116079
116321
|
* 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 +116323,7 @@ declare namespace __esri {
|
|
|
116081
116323
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#OpacityRampElement Read more...}
|
|
116082
116324
|
*/
|
|
116083
116325
|
export interface OpacityRampElement {
|
|
116084
|
-
type:
|
|
116326
|
+
type: "opacity-ramp";
|
|
116085
116327
|
title?: string | RampTitle;
|
|
116086
116328
|
infos: OpacityRampStop[];
|
|
116087
116329
|
}
|
|
@@ -116095,7 +116337,17 @@ declare namespace __esri {
|
|
|
116095
116337
|
label: string;
|
|
116096
116338
|
value: number;
|
|
116097
116339
|
color: Color;
|
|
116098
|
-
|
|
116340
|
+
}
|
|
116341
|
+
|
|
116342
|
+
/**
|
|
116343
|
+
* 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}.
|
|
116344
|
+
*
|
|
116345
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#PieChartRampElement Read more...}
|
|
116346
|
+
*/
|
|
116347
|
+
export interface PieChartRampElement {
|
|
116348
|
+
type: "pie-chart-ramp";
|
|
116349
|
+
title?: string | RendererTitle;
|
|
116350
|
+
infos: SymbolTableElementInfo[];
|
|
116099
116351
|
}
|
|
116100
116352
|
|
|
116101
116353
|
/**
|
|
@@ -116104,8 +116356,8 @@ declare namespace __esri {
|
|
|
116104
116356
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#RampTitle Read more...}
|
|
116105
116357
|
*/
|
|
116106
116358
|
export interface RampTitle {
|
|
116107
|
-
field
|
|
116108
|
-
normField
|
|
116359
|
+
field?: string;
|
|
116360
|
+
normField?: string;
|
|
116109
116361
|
ratio: boolean;
|
|
116110
116362
|
ratioPercent: boolean;
|
|
116111
116363
|
ratioPercentTotal: boolean;
|
|
@@ -116129,9 +116381,9 @@ declare namespace __esri {
|
|
|
116129
116381
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#RelationshipRampElement Read more...}
|
|
116130
116382
|
*/
|
|
116131
116383
|
export interface RelationshipRampElement {
|
|
116132
|
-
type:
|
|
116384
|
+
type: "relationship-ramp";
|
|
116133
116385
|
numClasses: number;
|
|
116134
|
-
focus:
|
|
116386
|
+
focus: "HH" | "HL" | "LH" | "LL";
|
|
116135
116387
|
colors: Color[][];
|
|
116136
116388
|
labels: RelationshipLabels;
|
|
116137
116389
|
rotation: number;
|
|
@@ -116146,9 +116398,9 @@ declare namespace __esri {
|
|
|
116146
116398
|
*/
|
|
116147
116399
|
export interface RendererTitle {
|
|
116148
116400
|
title?: string;
|
|
116149
|
-
field
|
|
116150
|
-
normField
|
|
116151
|
-
normByPct
|
|
116401
|
+
field?: string;
|
|
116402
|
+
normField?: string;
|
|
116403
|
+
normByPct?: boolean;
|
|
116152
116404
|
}
|
|
116153
116405
|
|
|
116154
116406
|
/**
|
|
@@ -116157,8 +116409,8 @@ declare namespace __esri {
|
|
|
116157
116409
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#SizeRampElement Read more...}
|
|
116158
116410
|
*/
|
|
116159
116411
|
export interface SizeRampElement {
|
|
116160
|
-
type:
|
|
116161
|
-
title?: string | RampTitle;
|
|
116412
|
+
type: "size-ramp";
|
|
116413
|
+
title?: string | RampTitle | ClusterTitle;
|
|
116162
116414
|
infos: SizeRampStop[];
|
|
116163
116415
|
}
|
|
116164
116416
|
|
|
@@ -116176,14 +116428,35 @@ declare namespace __esri {
|
|
|
116176
116428
|
preview?: HTMLElement;
|
|
116177
116429
|
}
|
|
116178
116430
|
|
|
116431
|
+
/**
|
|
116432
|
+
* Describes the schema of the StretchMultibandTitle element.
|
|
116433
|
+
*
|
|
116434
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#StretchMultibandTitle Read more...}
|
|
116435
|
+
*/
|
|
116436
|
+
export interface StretchMultibandTitle {
|
|
116437
|
+
colorName: string;
|
|
116438
|
+
bandName: string;
|
|
116439
|
+
}
|
|
116440
|
+
|
|
116441
|
+
/**
|
|
116442
|
+
* 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}.
|
|
116443
|
+
*
|
|
116444
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#StretchRampElement Read more...}
|
|
116445
|
+
*/
|
|
116446
|
+
export interface StretchRampElement {
|
|
116447
|
+
type: "stretch-ramp";
|
|
116448
|
+
title?: string | RampTitle;
|
|
116449
|
+
infos: ColorRampStop[];
|
|
116450
|
+
}
|
|
116451
|
+
|
|
116179
116452
|
/**
|
|
116180
116453
|
* 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
116454
|
*
|
|
116182
116455
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#SymbolTableElement Read more...}
|
|
116183
116456
|
*/
|
|
116184
116457
|
export interface SymbolTableElement {
|
|
116185
|
-
type:
|
|
116186
|
-
title?: string | RendererTitle;
|
|
116458
|
+
type: "symbol-table";
|
|
116459
|
+
title?: string | RendererTitle | DotDensityTitle;
|
|
116187
116460
|
legendType?: string;
|
|
116188
116461
|
infos: SymbolTableElementType[];
|
|
116189
116462
|
}
|
|
@@ -116194,7 +116467,7 @@ declare namespace __esri {
|
|
|
116194
116467
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#SymbolTableElementInfo Read more...}
|
|
116195
116468
|
*/
|
|
116196
116469
|
export interface SymbolTableElementInfo {
|
|
116197
|
-
label
|
|
116470
|
+
label?: string | RampTitle;
|
|
116198
116471
|
value?: any;
|
|
116199
116472
|
symbol: Symbol;
|
|
116200
116473
|
size?: number;
|
|
@@ -116206,11 +116479,22 @@ declare namespace __esri {
|
|
|
116206
116479
|
*
|
|
116207
116480
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#SymbolTableElementType Read more...}
|
|
116208
116481
|
*/
|
|
116209
|
-
export type SymbolTableElementType = ImageSymbolTableElementInfo | SymbolTableElementInfo;
|
|
116482
|
+
export type SymbolTableElementType = ImageSymbolTableElementInfo | SymbolTableElementInfo | LegendElement;
|
|
116483
|
+
|
|
116484
|
+
/**
|
|
116485
|
+
* 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}.
|
|
116486
|
+
*
|
|
116487
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend-support-ActiveLayerInfo.html#UnivariateColorSizeRampElement Read more...}
|
|
116488
|
+
*/
|
|
116489
|
+
export interface UnivariateColorSizeRampElement {
|
|
116490
|
+
type: "univariate-above-and-below-ramp" | "univariate-color-size-ramp";
|
|
116491
|
+
title?: string | RampTitle | ClusterTitle;
|
|
116492
|
+
infos: (SizeRampElement | ColorRampElement)[];
|
|
116493
|
+
}
|
|
116210
116494
|
|
|
116211
116495
|
export interface LegendLayerInfos {
|
|
116212
116496
|
title?: string;
|
|
116213
|
-
layer: Layer;
|
|
116497
|
+
layer: Layer | Sublayer;
|
|
116214
116498
|
sublayerIds?: number[];
|
|
116215
116499
|
}
|
|
116216
116500
|
|
|
@@ -120524,7 +120808,7 @@ declare namespace __esri {
|
|
|
120524
120808
|
*
|
|
120525
120809
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search-SearchViewModel.html#suggestions Read more...}
|
|
120526
120810
|
*/
|
|
120527
|
-
readonly suggestions:
|
|
120811
|
+
readonly suggestions: SearchResultsSuggestions[];
|
|
120528
120812
|
/**
|
|
120529
120813
|
* Enable suggestions for the widget.
|
|
120530
120814
|
*
|
|
@@ -120783,10 +121067,22 @@ declare namespace __esri {
|
|
|
120783
121067
|
name: string;
|
|
120784
121068
|
}
|
|
120785
121069
|
|
|
121070
|
+
/**
|
|
121071
|
+
* The result object returned from the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search-SearchViewModel.html#search search}.
|
|
121072
|
+
*
|
|
121073
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search-SearchViewModel.html#SearchResultsSuggestions Read more...}
|
|
121074
|
+
*/
|
|
121075
|
+
export interface SearchResultsSuggestions {
|
|
121076
|
+
source: LayerSearchSource | LocatorSearchSource;
|
|
121077
|
+
sourceIndex: number;
|
|
121078
|
+
results?: SearchViewModelSuggestResult[];
|
|
121079
|
+
error?: Error;
|
|
121080
|
+
}
|
|
121081
|
+
|
|
120786
121082
|
export interface SearchViewModelSearchStartEvent {}
|
|
120787
121083
|
|
|
120788
121084
|
export interface SearchViewModelDefaultSymbols {
|
|
120789
|
-
point?: SimpleMarkerSymbol | PointSymbol3D | TextSymbol | CIMSymbol | WebStyleSymbol;
|
|
121085
|
+
point?: SimpleMarkerSymbol | PictureMarkerSymbol | PointSymbol3D | TextSymbol | CIMSymbol | WebStyleSymbol;
|
|
120790
121086
|
polygon?: SimpleFillSymbol | PolygonSymbol3D | CIMSymbol;
|
|
120791
121087
|
polyline?: SimpleLineSymbol | LineSymbol3D | CIMSymbol;
|
|
120792
121088
|
}
|
|
@@ -120824,7 +121120,7 @@ declare namespace __esri {
|
|
|
120824
121120
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search-SearchViewModel.html#SuggestResult Read more...}
|
|
120825
121121
|
*/
|
|
120826
121122
|
export interface SearchViewModelSuggestResult {
|
|
120827
|
-
key: string;
|
|
121123
|
+
key: string | number;
|
|
120828
121124
|
text: string;
|
|
120829
121125
|
sourceIndex: number;
|
|
120830
121126
|
}
|
|
@@ -120935,7 +121231,7 @@ declare namespace __esri {
|
|
|
120935
121231
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search.html#SuggestResult Read more...}
|
|
120936
121232
|
*/
|
|
120937
121233
|
export interface SuggestResult {
|
|
120938
|
-
key: string;
|
|
121234
|
+
key: string | number;
|
|
120939
121235
|
text: string;
|
|
120940
121236
|
sourceIndex: number;
|
|
120941
121237
|
}
|
|
@@ -121579,7 +121875,7 @@ declare namespace __esri {
|
|
|
121579
121875
|
*
|
|
121580
121876
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch-SketchViewModel.html#activeFillSymbol Read more...}
|
|
121581
121877
|
*/
|
|
121582
|
-
activeFillSymbol: SimpleFillSymbol;
|
|
121878
|
+
activeFillSymbol: SimpleFillSymbol | CIMSymbol;
|
|
121583
121879
|
/**
|
|
121584
121880
|
* 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
121881
|
* this property reflects the create tool being used.
|
|
@@ -121638,7 +121934,7 @@ declare namespace __esri {
|
|
|
121638
121934
|
*
|
|
121639
121935
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch-SketchViewModel.html#pointSymbol Read more...}
|
|
121640
121936
|
*/
|
|
121641
|
-
pointSymbol: SimpleMarkerSymbol | PointSymbol3D | TextSymbol | CIMSymbol | WebStyleSymbol;
|
|
121937
|
+
pointSymbol: SimpleMarkerSymbol | PictureMarkerSymbol | PointSymbol3D | TextSymbol | CIMSymbol | WebStyleSymbol;
|
|
121642
121938
|
/**
|
|
121643
121939
|
* 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
121940
|
*
|
|
@@ -121840,7 +122136,7 @@ declare namespace __esri {
|
|
|
121840
122136
|
*
|
|
121841
122137
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch-SketchViewModel.html#activeFillSymbol Read more...}
|
|
121842
122138
|
*/
|
|
121843
|
-
activeFillSymbol?: SimpleFillSymbolProperties;
|
|
122139
|
+
activeFillSymbol?: (SimpleFillSymbolProperties & { type: "simple-fill" }) | (CIMSymbolProperties & { type: "cim" });
|
|
121844
122140
|
/**
|
|
121845
122141
|
* Default create options set for the SketchViewModel.
|
|
121846
122142
|
*
|
|
@@ -121872,6 +122168,7 @@ declare namespace __esri {
|
|
|
121872
122168
|
*/
|
|
121873
122169
|
pointSymbol?:
|
|
121874
122170
|
| (SimpleMarkerSymbolProperties & { type: "simple-marker" })
|
|
122171
|
+
| (PictureMarkerSymbolProperties & { type: "picture-marker" })
|
|
121875
122172
|
| (PointSymbol3DProperties & { type: "point-3d" })
|
|
121876
122173
|
| (TextSymbolProperties & { type: "text" })
|
|
121877
122174
|
| (CIMSymbolProperties & { type: "cim" })
|
|
@@ -122563,7 +122860,7 @@ declare namespace __esri {
|
|
|
122563
122860
|
*
|
|
122564
122861
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slider.html#labels Read more...}
|
|
122565
122862
|
*/
|
|
122566
|
-
readonly labels:
|
|
122863
|
+
readonly labels: LabelInfos;
|
|
122567
122864
|
/**
|
|
122568
122865
|
* Determines the layout/orientation of the Slider widget.
|
|
122569
122866
|
*
|
|
@@ -122932,7 +123229,7 @@ declare namespace __esri {
|
|
|
122932
123229
|
*
|
|
122933
123230
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slider-SliderViewModel.html#labels Read more...}
|
|
122934
123231
|
*/
|
|
122935
|
-
readonly labels:
|
|
123232
|
+
readonly labels: LabelInfos;
|
|
122936
123233
|
/**
|
|
122937
123234
|
* The maximum possible data/thumb value of the slider.
|
|
122938
123235
|
*
|
|
@@ -123132,6 +123429,17 @@ declare namespace __esri {
|
|
|
123132
123429
|
index?: number,
|
|
123133
123430
|
) => string;
|
|
123134
123431
|
|
|
123432
|
+
/**
|
|
123433
|
+
* Label infos for the slider.
|
|
123434
|
+
*
|
|
123435
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slider.html#LabelInfos Read more...}
|
|
123436
|
+
*/
|
|
123437
|
+
export interface LabelInfos {
|
|
123438
|
+
min: string;
|
|
123439
|
+
max: string;
|
|
123440
|
+
values: string[];
|
|
123441
|
+
}
|
|
123442
|
+
|
|
123135
123443
|
export interface SliderMaxChangeEvent {
|
|
123136
123444
|
oldValue: number;
|
|
123137
123445
|
type: "max-change";
|
|
@@ -125823,7 +126131,7 @@ declare namespace __esri {
|
|
|
125823
126131
|
*
|
|
125824
126132
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html#layer Read more...}
|
|
125825
126133
|
*/
|
|
125826
|
-
layer: Layer;
|
|
126134
|
+
layer: Layer | Sublayer;
|
|
125827
126135
|
/**
|
|
125828
126136
|
* Allows you to display custom content for each ListItem
|
|
125829
126137
|
* in the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html TableList} widget.
|
|
@@ -126043,7 +126351,7 @@ declare namespace __esri {
|
|
|
126043
126351
|
*
|
|
126044
126352
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-TableListViewModel.html#tables Read more...}
|
|
126045
126353
|
*/
|
|
126046
|
-
tables: Collection<Layer>;
|
|
126354
|
+
tables: Collection<Layer | Sublayer>;
|
|
126047
126355
|
/**
|
|
126048
126356
|
* The total number of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-TableListViewModel.html#tableItems tableItems} in the list.
|
|
126049
126357
|
*
|
|
@@ -126096,7 +126404,7 @@ declare namespace __esri {
|
|
|
126096
126404
|
*
|
|
126097
126405
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-TableListViewModel.html#tables Read more...}
|
|
126098
126406
|
*/
|
|
126099
|
-
tables?: CollectionProperties<LayerProperties>;
|
|
126407
|
+
tables?: CollectionProperties<LayerProperties | (SublayerProperties & { type: "sublayer" })>;
|
|
126100
126408
|
}
|
|
126101
126409
|
|
|
126102
126410
|
export type TableListViewModelListItemCreatedHandler = (event: any) => void;
|
|
@@ -136646,6 +136954,16 @@ declare module "esri/widgets/FeatureForm/RelationshipInput" {
|
|
|
136646
136954
|
export = RelationshipInput;
|
|
136647
136955
|
}
|
|
136648
136956
|
|
|
136957
|
+
declare module "esri/widgets/FeatureForm/TextElementInput" {
|
|
136958
|
+
import TextElementInput = __esri.TextElementInput;
|
|
136959
|
+
export = TextElementInput;
|
|
136960
|
+
}
|
|
136961
|
+
|
|
136962
|
+
declare module "esri/widgets/FeatureForm/UtilityNetworkAssociationInput" {
|
|
136963
|
+
import UtilityNetworkAssociationInput = __esri.UtilityNetworkAssociationInput;
|
|
136964
|
+
export = UtilityNetworkAssociationInput;
|
|
136965
|
+
}
|
|
136966
|
+
|
|
136649
136967
|
declare module "esri/widgets/Features" {
|
|
136650
136968
|
import Features = __esri.Features;
|
|
136651
136969
|
export = Features;
|
|
@@ -136726,6 +137044,16 @@ declare module "esri/widgets/FeatureTable/support/FieldColumnTemplate" {
|
|
|
136726
137044
|
export = FieldColumnTemplate;
|
|
136727
137045
|
}
|
|
136728
137046
|
|
|
137047
|
+
declare module "esri/widgets/FeatureTable/support/AttachmentsColumnTemplate" {
|
|
137048
|
+
import AttachmentsColumnTemplate = __esri.AttachmentsColumnTemplate;
|
|
137049
|
+
export = AttachmentsColumnTemplate;
|
|
137050
|
+
}
|
|
137051
|
+
|
|
137052
|
+
declare module "esri/widgets/FeatureTable/support/RelationshipColumnTemplate" {
|
|
137053
|
+
import RelationshipColumnTemplate = __esri.RelationshipColumnTemplate;
|
|
137054
|
+
export = RelationshipColumnTemplate;
|
|
137055
|
+
}
|
|
137056
|
+
|
|
136729
137057
|
declare module "esri/widgets/FeatureTable/support/GroupColumnTemplate" {
|
|
136730
137058
|
import GroupColumnTemplate = __esri.GroupColumnTemplate;
|
|
136731
137059
|
export = GroupColumnTemplate;
|