@arcgis/core-adapter 4.32.0-next.35 → 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 -0
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +52 -0
- package/package.json +1 -1
- package/src/index.ts +52 -0
- package/support/arcgis.d.ts +192 -112
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...}
|
|
@@ -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
|
*
|
|
@@ -117703,7 +117654,19 @@ declare namespace __esri {
|
|
|
117703
117654
|
*
|
|
117704
117655
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#alignment Read more...}
|
|
117705
117656
|
*/
|
|
117706
|
-
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;
|
|
117707
117670
|
/**
|
|
117708
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.
|
|
117709
117672
|
*
|
|
@@ -117980,7 +117943,19 @@ declare namespace __esri {
|
|
|
117980
117943
|
*
|
|
117981
117944
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#alignment Read more...}
|
|
117982
117945
|
*/
|
|
117983
|
-
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;
|
|
117984
117959
|
/**
|
|
117985
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.
|
|
117986
117961
|
*
|
|
@@ -118247,7 +118222,7 @@ declare namespace __esri {
|
|
|
118247
118222
|
*
|
|
118248
118223
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html#templateCustomTextElements Read more...}
|
|
118249
118224
|
*/
|
|
118250
|
-
templateCustomTextElements:
|
|
118225
|
+
templateCustomTextElements: HashMap<HashMap<string>[]>;
|
|
118251
118226
|
/**
|
|
118252
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.
|
|
118253
118228
|
*
|
|
@@ -118334,7 +118309,7 @@ declare namespace __esri {
|
|
|
118334
118309
|
*
|
|
118335
118310
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print.html#templateCustomTextElements Read more...}
|
|
118336
118311
|
*/
|
|
118337
|
-
templateCustomTextElements?:
|
|
118312
|
+
templateCustomTextElements?: HashMap<HashMap<string>[]>;
|
|
118338
118313
|
/**
|
|
118339
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.
|
|
118340
118315
|
*
|
|
@@ -118376,7 +118351,7 @@ declare namespace __esri {
|
|
|
118376
118351
|
*
|
|
118377
118352
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html#format Read more...}
|
|
118378
118353
|
*/
|
|
118379
|
-
format: "
|
|
118354
|
+
format: "jpg" | "png8" | "png32" | "pdf" | "gif" | "tiff" | "aix" | "eps" | "svg" | "svgz";
|
|
118380
118355
|
/**
|
|
118381
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.
|
|
118382
118357
|
*
|
|
@@ -118412,7 +118387,7 @@ declare namespace __esri {
|
|
|
118412
118387
|
*
|
|
118413
118388
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-CustomTemplate.html#format Read more...}
|
|
118414
118389
|
*/
|
|
118415
|
-
format?: "
|
|
118390
|
+
format?: "jpg" | "png8" | "png32" | "pdf" | "gif" | "tiff" | "aix" | "eps" | "svg" | "svgz";
|
|
118416
118391
|
}
|
|
118417
118392
|
|
|
118418
118393
|
export interface CustomTemplateLayoutOptions {
|
|
@@ -118463,7 +118438,7 @@ declare namespace __esri {
|
|
|
118463
118438
|
*
|
|
118464
118439
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#effectiveTemplateCustomTextElements Read more...}
|
|
118465
118440
|
*/
|
|
118466
|
-
readonly effectiveTemplateCustomTextElements:
|
|
118441
|
+
readonly effectiveTemplateCustomTextElements: HashMap<HashMap<string>[]>;
|
|
118467
118442
|
/**
|
|
118468
118443
|
* This option allows passing extra parameters to the print (export webmap) requests.
|
|
118469
118444
|
*
|
|
@@ -118520,7 +118495,7 @@ declare namespace __esri {
|
|
|
118520
118495
|
*
|
|
118521
118496
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#templateCustomTextElements Read more...}
|
|
118522
118497
|
*/
|
|
118523
|
-
templateCustomTextElements:
|
|
118498
|
+
templateCustomTextElements: HashMap<HashMap<string>[]>;
|
|
118524
118499
|
/**
|
|
118525
118500
|
* The service metadata that contains the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#format format}
|
|
118526
118501
|
* and {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#layout layout} information for the printout.
|
|
@@ -118622,7 +118597,7 @@ declare namespace __esri {
|
|
|
118622
118597
|
*
|
|
118623
118598
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#templateCustomTextElements Read more...}
|
|
118624
118599
|
*/
|
|
118625
|
-
templateCustomTextElements?:
|
|
118600
|
+
templateCustomTextElements?: HashMap<HashMap<string>[]>;
|
|
118626
118601
|
/**
|
|
118627
118602
|
* The time interval in milliseconds between each job status request sent to an asynchronous GP task.
|
|
118628
118603
|
*
|
|
@@ -118679,7 +118654,7 @@ declare namespace __esri {
|
|
|
118679
118654
|
*
|
|
118680
118655
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#dpi Read more...}
|
|
118681
118656
|
*/
|
|
118682
|
-
dpi:
|
|
118657
|
+
dpi: number;
|
|
118683
118658
|
/**
|
|
118684
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`.
|
|
118685
118660
|
*
|
|
@@ -118702,7 +118677,7 @@ declare namespace __esri {
|
|
|
118702
118677
|
*
|
|
118703
118678
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#format Read more...}
|
|
118704
118679
|
*/
|
|
118705
|
-
format: "
|
|
118680
|
+
format: "jpg" | "aix" | "eps" | "gif" | "pdf" | "png32" | "png8" | "svg" | "svgz" | "tiff";
|
|
118706
118681
|
/**
|
|
118707
118682
|
* Map height.
|
|
118708
118683
|
*
|
|
@@ -118814,7 +118789,7 @@ declare namespace __esri {
|
|
|
118814
118789
|
*
|
|
118815
118790
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#dpi Read more...}
|
|
118816
118791
|
*/
|
|
118817
|
-
dpi?:
|
|
118792
|
+
dpi?: number;
|
|
118818
118793
|
/**
|
|
118819
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`.
|
|
118820
118795
|
*
|
|
@@ -118833,7 +118808,7 @@ declare namespace __esri {
|
|
|
118833
118808
|
*
|
|
118834
118809
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#format Read more...}
|
|
118835
118810
|
*/
|
|
118836
|
-
format?: "
|
|
118811
|
+
format?: "jpg" | "aix" | "eps" | "gif" | "pdf" | "png32" | "png8" | "svg" | "svgz" | "tiff";
|
|
118837
118812
|
/**
|
|
118838
118813
|
* Map height.
|
|
118839
118814
|
*
|
|
@@ -118916,10 +118891,10 @@ declare namespace __esri {
|
|
|
118916
118891
|
*/
|
|
118917
118892
|
export interface FileLink {
|
|
118918
118893
|
count: number;
|
|
118919
|
-
error:
|
|
118894
|
+
error: Error;
|
|
118920
118895
|
extension: string;
|
|
118921
118896
|
name: string;
|
|
118922
|
-
state:
|
|
118897
|
+
state: "ready" | "error" | "pending";
|
|
118923
118898
|
url: string;
|
|
118924
118899
|
}
|
|
118925
118900
|
|
|
@@ -119063,7 +119038,7 @@ declare namespace __esri {
|
|
|
119063
119038
|
*
|
|
119064
119039
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ScaleRangeSlider.html#layer Read more...}
|
|
119065
119040
|
*/
|
|
119066
|
-
layer: Layer;
|
|
119041
|
+
layer: Layer | Sublayer;
|
|
119067
119042
|
/**
|
|
119068
119043
|
* The maximum scale of the active scale range.
|
|
119069
119044
|
*
|
|
@@ -119136,7 +119111,7 @@ declare namespace __esri {
|
|
|
119136
119111
|
*
|
|
119137
119112
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ScaleRangeSlider.html#layer Read more...}
|
|
119138
119113
|
*/
|
|
119139
|
-
layer?: LayerProperties;
|
|
119114
|
+
layer?: LayerProperties | (SublayerProperties & { type: "sublayer" });
|
|
119140
119115
|
/**
|
|
119141
119116
|
* The maximum scale of the active scale range.
|
|
119142
119117
|
*
|
|
@@ -119281,7 +119256,7 @@ declare namespace __esri {
|
|
|
119281
119256
|
*
|
|
119282
119257
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ScaleRangeSlider-ScaleRangeSliderViewModel.html#layer Read more...}
|
|
119283
119258
|
*/
|
|
119284
|
-
layer: Layer;
|
|
119259
|
+
layer: Layer | Sublayer;
|
|
119285
119260
|
/**
|
|
119286
119261
|
* The maximum scale of the active scale range.
|
|
119287
119262
|
*
|
|
@@ -119358,7 +119333,7 @@ declare namespace __esri {
|
|
|
119358
119333
|
*
|
|
119359
119334
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ScaleRangeSlider-ScaleRangeSliderViewModel.html#layer Read more...}
|
|
119360
119335
|
*/
|
|
119361
|
-
layer?: LayerProperties;
|
|
119336
|
+
layer?: LayerProperties | (SublayerProperties & { type: "sublayer" });
|
|
119362
119337
|
/**
|
|
119363
119338
|
* The maximum scale of the active scale range.
|
|
119364
119339
|
*
|
|
@@ -119475,7 +119450,79 @@ declare namespace __esri {
|
|
|
119475
119450
|
| "US"
|
|
119476
119451
|
| "VE"
|
|
119477
119452
|
| "VI"
|
|
119478
|
-
| "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";
|
|
119479
119526
|
|
|
119480
119527
|
/**
|
|
119481
119528
|
* The visible elements that are displayed within the widget.
|
|
@@ -119698,7 +119745,7 @@ declare namespace __esri {
|
|
|
119698
119745
|
*
|
|
119699
119746
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search.html#suggestions Read more...}
|
|
119700
119747
|
*/
|
|
119701
|
-
readonly suggestions:
|
|
119748
|
+
readonly suggestions: SearchResultsSuggestions[];
|
|
119702
119749
|
/**
|
|
119703
119750
|
* Enable suggestions for the widget.
|
|
119704
119751
|
*
|
|
@@ -121564,13 +121611,16 @@ declare namespace __esri {
|
|
|
121564
121611
|
| "point"
|
|
121565
121612
|
| "polyline"
|
|
121566
121613
|
| "polygon"
|
|
121614
|
+
| "multipoint"
|
|
121615
|
+
| "mesh"
|
|
121567
121616
|
| "circle"
|
|
121568
121617
|
| "rectangle"
|
|
121569
121618
|
| "move"
|
|
121570
121619
|
| "transform"
|
|
121571
121620
|
| "reshape"
|
|
121572
121621
|
| "rectangle-selection"
|
|
121573
|
-
| "lasso-selection"
|
|
121622
|
+
| "lasso-selection"
|
|
121623
|
+
| "custom-selection";
|
|
121574
121624
|
/**
|
|
121575
121625
|
* The tooltip currently being displayed for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch-SketchViewModel.html#activeTool activeTool}.
|
|
121576
121626
|
*
|
|
@@ -123516,14 +123566,14 @@ declare namespace __esri {
|
|
|
123516
123566
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slider.html#TickConfig Read more...}
|
|
123517
123567
|
*/
|
|
123518
123568
|
export interface TickConfig {
|
|
123519
|
-
mode: "
|
|
123569
|
+
mode: "percent" | "position" | "count" | "step";
|
|
123520
123570
|
values: number | number[];
|
|
123521
123571
|
labelsVisible?: boolean;
|
|
123522
123572
|
tickCreatedFunction?: TickCreatedFunction;
|
|
123523
123573
|
labelFormatFunction?: SliderLabelFormatter;
|
|
123524
123574
|
}
|
|
123525
123575
|
|
|
123526
|
-
export type TickCreatedFunction = (value: number, tickElement
|
|
123576
|
+
export type TickCreatedFunction = (value: number, tickElement?: HTMLElement, labelElement?: HTMLElement) => void;
|
|
123527
123577
|
|
|
123528
123578
|
/**
|
|
123529
123579
|
* The HTML Element nodes representing a single slider tick and its associated label.
|
|
@@ -125000,6 +125050,21 @@ declare namespace __esri {
|
|
|
125000
125050
|
|
|
125001
125051
|
constructor(properties?: SmartMappingSliderViewModelProperties);
|
|
125002
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;
|
|
125003
125068
|
/**
|
|
125004
125069
|
* Enables zooming on the slider.
|
|
125005
125070
|
*
|
|
@@ -125028,6 +125093,21 @@ declare namespace __esri {
|
|
|
125028
125093
|
}
|
|
125029
125094
|
|
|
125030
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;
|
|
125031
125111
|
/**
|
|
125032
125112
|
* Enables zooming on the slider.
|
|
125033
125113
|
*
|
|
@@ -126912,9 +126992,9 @@ declare namespace __esri {
|
|
|
126912
126992
|
|
|
126913
126993
|
export type DateLabelFormatter = (
|
|
126914
126994
|
value: Date | Date[],
|
|
126915
|
-
type
|
|
126916
|
-
element
|
|
126917
|
-
layout
|
|
126995
|
+
type: "min" | "max" | "extent",
|
|
126996
|
+
element: HTMLElement,
|
|
126997
|
+
layout: "compact" | "wide",
|
|
126918
126998
|
) => void;
|
|
126919
126999
|
|
|
126920
127000
|
/**
|
|
@@ -127762,25 +127842,25 @@ declare namespace __esri {
|
|
|
127762
127842
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkAssociations.html#VisibleElements Read more...}
|
|
127763
127843
|
*/
|
|
127764
127844
|
export interface UtilityNetworkAssociationsVisibleElements {
|
|
127765
|
-
connectivityAssociationsSettings
|
|
127845
|
+
connectivityAssociationsSettings: VisibleElementsConnectivityAssociationsSettings;
|
|
127766
127846
|
maxAllowableAssociationsSlider: boolean;
|
|
127767
|
-
structuralAttachmentAssociationsSettings
|
|
127847
|
+
structuralAttachmentAssociationsSettings: VisibleElementsStructuralAttachmentAssociationsSettings;
|
|
127768
127848
|
}
|
|
127769
127849
|
|
|
127770
127850
|
export interface VisibleElementsConnectivityAssociationsSettings {
|
|
127771
|
-
arrowsToggle
|
|
127772
|
-
capSelect
|
|
127773
|
-
colorPicker
|
|
127774
|
-
stylePicker
|
|
127775
|
-
widthInput
|
|
127851
|
+
arrowsToggle: boolean;
|
|
127852
|
+
capSelect: boolean;
|
|
127853
|
+
colorPicker: boolean;
|
|
127854
|
+
stylePicker: boolean;
|
|
127855
|
+
widthInput: boolean;
|
|
127776
127856
|
}
|
|
127777
127857
|
|
|
127778
127858
|
export interface VisibleElementsStructuralAttachmentAssociationsSettings {
|
|
127779
|
-
arrowsToggle
|
|
127780
|
-
capSelect
|
|
127781
|
-
colorPicker
|
|
127782
|
-
stylePicker
|
|
127783
|
-
widthInput
|
|
127859
|
+
arrowsToggle: boolean;
|
|
127860
|
+
capSelect: boolean;
|
|
127861
|
+
colorPicker: boolean;
|
|
127862
|
+
stylePicker: boolean;
|
|
127863
|
+
widthInput: boolean;
|
|
127784
127864
|
}
|
|
127785
127865
|
|
|
127786
127866
|
export class UtilityNetworkTrace extends Widget {
|
|
@@ -128509,7 +128589,7 @@ declare namespace __esri {
|
|
|
128509
128589
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#DisplayField Read more...}
|
|
128510
128590
|
*/
|
|
128511
128591
|
export interface DisplayField {
|
|
128512
|
-
field
|
|
128592
|
+
field?: string;
|
|
128513
128593
|
value: string;
|
|
128514
128594
|
}
|
|
128515
128595
|
|
|
@@ -128540,14 +128620,14 @@ declare namespace __esri {
|
|
|
128540
128620
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#FlagProperty Read more...}
|
|
128541
128621
|
*/
|
|
128542
128622
|
export interface FlagProperty {
|
|
128543
|
-
allTerminals
|
|
128544
|
-
details
|
|
128545
|
-
|
|
128546
|
-
id
|
|
128547
|
-
mapGraphic
|
|
128548
|
-
mapPoint
|
|
128549
|
-
selectedTerminals
|
|
128550
|
-
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";
|
|
128551
128631
|
}
|
|
128552
128632
|
|
|
128553
128633
|
/**
|
|
@@ -128592,7 +128672,7 @@ declare namespace __esri {
|
|
|
128592
128672
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#TraceItem Read more...}
|
|
128593
128673
|
*/
|
|
128594
128674
|
export interface TraceItem {
|
|
128595
|
-
selected
|
|
128675
|
+
selected?: boolean;
|
|
128596
128676
|
}
|
|
128597
128677
|
|
|
128598
128678
|
/**
|
|
@@ -128601,8 +128681,8 @@ declare namespace __esri {
|
|
|
128601
128681
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#TraceResultExtend Read more...}
|
|
128602
128682
|
*/
|
|
128603
128683
|
export interface TraceResultExtend {
|
|
128604
|
-
|
|
128605
|
-
|
|
128684
|
+
trace: TraceItem;
|
|
128685
|
+
results: TraceResult;
|
|
128606
128686
|
selectionEnabled: boolean;
|
|
128607
128687
|
graphicEnabled: boolean;
|
|
128608
128688
|
graphicColor: GraphicColor;
|
|
@@ -128647,10 +128727,10 @@ declare namespace __esri {
|
|
|
128647
128727
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace.html#InputSetting Read more...}
|
|
128648
128728
|
*/
|
|
128649
128729
|
export interface InputSetting {
|
|
128650
|
-
type:
|
|
128730
|
+
type: string;
|
|
128651
128731
|
label: string;
|
|
128652
128732
|
description: string;
|
|
128653
|
-
symbol
|
|
128733
|
+
symbol?: SimpleMarkerSymbol | PictureMarkerSymbol;
|
|
128654
128734
|
}
|
|
128655
128735
|
|
|
128656
128736
|
export interface UtilityNetworkTraceRemoveResultAreaEvent {
|
|
@@ -129161,7 +129241,7 @@ declare namespace __esri {
|
|
|
129161
129241
|
*
|
|
129162
129242
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ValuePicker-ValuePickerSlider.html#reversed Read more...}
|
|
129163
129243
|
*/
|
|
129164
|
-
reversed:
|
|
129244
|
+
reversed: boolean;
|
|
129165
129245
|
/**
|
|
129166
129246
|
* Positions along the slider that the thumb will snap to when interacted with.
|
|
129167
129247
|
*
|
|
@@ -129262,7 +129342,7 @@ declare namespace __esri {
|
|
|
129262
129342
|
*
|
|
129263
129343
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#state Read more...}
|
|
129264
129344
|
*/
|
|
129265
|
-
readonly state: "
|
|
129345
|
+
readonly state: "loading" | "failed" | "ready" | "disabled" | "success" | "executing";
|
|
129266
129346
|
/**
|
|
129267
129347
|
* Map of Service URLs and logged in users.
|
|
129268
129348
|
*
|
|
@@ -129615,7 +129695,7 @@ declare namespace __esri {
|
|
|
129615
129695
|
*
|
|
129616
129696
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VideoPlayer-VideoPlayerViewModel.html#followingMode Read more...}
|
|
129617
129697
|
*/
|
|
129618
|
-
followingMode: "follow-sensor" | "follow-frame" | "follow-both";
|
|
129698
|
+
followingMode: "follow-sensor" | "follow-frame" | "follow-both" | "none";
|
|
129619
129699
|
/**
|
|
129620
129700
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html VideoLayer} to play.
|
|
129621
129701
|
*
|
|
@@ -129763,7 +129843,7 @@ declare namespace __esri {
|
|
|
129763
129843
|
*
|
|
129764
129844
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VideoPlayer-VideoPlayerViewModel.html#followingMode Read more...}
|
|
129765
129845
|
*/
|
|
129766
|
-
followingMode?: "follow-sensor" | "follow-frame" | "follow-both";
|
|
129846
|
+
followingMode?: "follow-sensor" | "follow-frame" | "follow-both" | "none";
|
|
129767
129847
|
/**
|
|
129768
129848
|
* The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html VideoLayer} to play.
|
|
129769
129849
|
*
|
|
@@ -129865,7 +129945,7 @@ declare namespace __esri {
|
|
|
129865
129945
|
*
|
|
129866
129946
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Weather-WeatherViewModel.html#state Read more...}
|
|
129867
129947
|
*/
|
|
129868
|
-
readonly state: "disabled" | "ready";
|
|
129948
|
+
readonly state: "disabled" | "ready" | "error";
|
|
129869
129949
|
/**
|
|
129870
129950
|
* A reference to the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html View}.
|
|
129871
129951
|
*
|