@arcgis/core-adapter 4.32.0-next.12 → 4.32.0-next.13
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/package.json +1 -1
- package/support/arcgis.d.ts +51 -35
package/package.json
CHANGED
package/support/arcgis.d.ts
CHANGED
|
@@ -1308,7 +1308,7 @@ declare namespace __esri {
|
|
|
1308
1308
|
*
|
|
1309
1309
|
* performs translation of given geometry dx, dy: how much to translate the geometry in x and y direction.
|
|
1310
1310
|
*/
|
|
1311
|
-
move(geometry: any): any;
|
|
1311
|
+
move(geometry: any, dx: number, dy: number, dz?: number): any;
|
|
1312
1312
|
}
|
|
1313
1313
|
|
|
1314
1314
|
export const drawUtils: drawUtils;
|
|
@@ -1422,6 +1422,28 @@ declare namespace __esri {
|
|
|
1422
1422
|
|
|
1423
1423
|
export const previewSymbol2D: previewSymbol2D;
|
|
1424
1424
|
|
|
1425
|
+
/**
|
|
1426
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1427
|
+
*
|
|
1428
|
+
* SelectionOperation util for Components.
|
|
1429
|
+
*/
|
|
1430
|
+
interface SelectionOperation {}
|
|
1431
|
+
|
|
1432
|
+
export const SelectionOperation: SelectionOperation;
|
|
1433
|
+
|
|
1434
|
+
export interface Selector2DSelectionOperation {}
|
|
1435
|
+
|
|
1436
|
+
/**
|
|
1437
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1438
|
+
*
|
|
1439
|
+
* SketchTooltipControls util for Components.
|
|
1440
|
+
*/
|
|
1441
|
+
interface SketchTooltipControls {}
|
|
1442
|
+
|
|
1443
|
+
export const SketchTooltipControls: SketchTooltipControls;
|
|
1444
|
+
|
|
1445
|
+
export interface supportSketchTooltipControls {}
|
|
1446
|
+
|
|
1425
1447
|
/**
|
|
1426
1448
|
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1427
1449
|
*
|
|
@@ -114853,6 +114875,12 @@ declare namespace __esri {
|
|
|
114853
114875
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureCount)
|
|
114854
114876
|
*/
|
|
114855
114877
|
readonly featureCount: number;
|
|
114878
|
+
/**
|
|
114879
|
+
* The title to display on the widget while viewing the feature menu.
|
|
114880
|
+
*
|
|
114881
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureMenuTitle)
|
|
114882
|
+
*/
|
|
114883
|
+
featureMenuTitle: string;
|
|
114856
114884
|
/**
|
|
114857
114885
|
* An array of features.
|
|
114858
114886
|
*
|
|
@@ -115082,6 +115110,12 @@ declare namespace __esri {
|
|
|
115082
115110
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#defaultPopupTemplateEnabled)
|
|
115083
115111
|
*/
|
|
115084
115112
|
defaultPopupTemplateEnabled?: boolean;
|
|
115113
|
+
/**
|
|
115114
|
+
* The title to display on the widget while viewing the feature menu.
|
|
115115
|
+
*
|
|
115116
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureMenuTitle)
|
|
115117
|
+
*/
|
|
115118
|
+
featureMenuTitle?: string;
|
|
115085
115119
|
/**
|
|
115086
115120
|
* An array of features.
|
|
115087
115121
|
*
|
|
@@ -115290,6 +115324,12 @@ declare namespace __esri {
|
|
|
115290
115324
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#open)
|
|
115291
115325
|
*/
|
|
115292
115326
|
featureMenuOpen?: boolean;
|
|
115327
|
+
/**
|
|
115328
|
+
* Sets the title to display on the widget while viewing the feature menu.
|
|
115329
|
+
*
|
|
115330
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#open)
|
|
115331
|
+
*/
|
|
115332
|
+
featureMenuTitle?: string;
|
|
115293
115333
|
/**
|
|
115294
115334
|
* When `true`, indicates the widget should fetch the content of this feature and display it.
|
|
115295
115335
|
*
|
|
@@ -123943,15 +123983,6 @@ declare namespace __esri {
|
|
|
123943
123983
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#collapsed)
|
|
123944
123984
|
*/
|
|
123945
123985
|
readonly collapsed: boolean;
|
|
123946
|
-
/**
|
|
123947
|
-
* Indicates whether to enable collapse functionality for the popup.
|
|
123948
|
-
*
|
|
123949
|
-
* @default true
|
|
123950
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/Popup~VisibleElements PopupVisibleElements.collapseButton} instead.
|
|
123951
|
-
*
|
|
123952
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#collapseEnabled)
|
|
123953
|
-
*/
|
|
123954
|
-
collapseEnabled: boolean;
|
|
123955
123986
|
/**
|
|
123956
123987
|
* The content of the popup.
|
|
123957
123988
|
*
|
|
@@ -124053,14 +124084,6 @@ declare namespace __esri {
|
|
|
124053
124084
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#selectedFeatureWidget)
|
|
124054
124085
|
*/
|
|
124055
124086
|
readonly selectedFeatureWidget: Feature;
|
|
124056
|
-
/**
|
|
124057
|
-
* Indicates whether to display a spinner at the popup location prior to its display when it has pending promises.
|
|
124058
|
-
*
|
|
124059
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/Popup~VisibleElements PopupVisibleElements.spinner} instead.
|
|
124060
|
-
*
|
|
124061
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#spinnerEnabled)
|
|
124062
|
-
*/
|
|
124063
|
-
spinnerEnabled: boolean;
|
|
124064
124087
|
/**
|
|
124065
124088
|
* The title of the popup.
|
|
124066
124089
|
*
|
|
@@ -124178,15 +124201,6 @@ declare namespace __esri {
|
|
|
124178
124201
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#autoCloseEnabled)
|
|
124179
124202
|
*/
|
|
124180
124203
|
autoCloseEnabled?: boolean;
|
|
124181
|
-
/**
|
|
124182
|
-
* Indicates whether to enable collapse functionality for the popup.
|
|
124183
|
-
*
|
|
124184
|
-
* @default true
|
|
124185
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/Popup~VisibleElements PopupVisibleElements.collapseButton} instead.
|
|
124186
|
-
*
|
|
124187
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#collapseEnabled)
|
|
124188
|
-
*/
|
|
124189
|
-
collapseEnabled?: boolean;
|
|
124190
124204
|
/**
|
|
124191
124205
|
* The content of the popup.
|
|
124192
124206
|
*
|
|
@@ -124255,14 +124269,6 @@ declare namespace __esri {
|
|
|
124255
124269
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#selectedFeatureIndex)
|
|
124256
124270
|
*/
|
|
124257
124271
|
selectedFeatureIndex?: number;
|
|
124258
|
-
/**
|
|
124259
|
-
* Indicates whether to display a spinner at the popup location prior to its display when it has pending promises.
|
|
124260
|
-
*
|
|
124261
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/Popup~VisibleElements PopupVisibleElements.spinner} instead.
|
|
124262
|
-
*
|
|
124263
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#spinnerEnabled)
|
|
124264
|
-
*/
|
|
124265
|
-
spinnerEnabled?: boolean;
|
|
124266
124272
|
/**
|
|
124267
124273
|
* The title of the popup.
|
|
124268
124274
|
*
|
|
@@ -146989,6 +146995,16 @@ declare module "esri/applications/Components/previewSymbol2D" {
|
|
|
146989
146995
|
export = previewSymbol2D;
|
|
146990
146996
|
}
|
|
146991
146997
|
|
|
146998
|
+
declare module "esri/applications/Components/SelectionOperation" {
|
|
146999
|
+
import SelectionOperation = __esri.SelectionOperation;
|
|
147000
|
+
export = SelectionOperation;
|
|
147001
|
+
}
|
|
147002
|
+
|
|
147003
|
+
declare module "esri/applications/Components/SketchTooltipControls" {
|
|
147004
|
+
import SketchTooltipControls = __esri.SketchTooltipControls;
|
|
147005
|
+
export = SketchTooltipControls;
|
|
147006
|
+
}
|
|
147007
|
+
|
|
146992
147008
|
declare module "esri/applications/Components/styleUtils" {
|
|
146993
147009
|
import styleUtils = __esri.styleUtils;
|
|
146994
147010
|
export = styleUtils;
|