@arcgis/core-adapter 4.32.0-next.29 → 4.32.0-next.30

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.
@@ -7,10 +7,10 @@ CLI Cleaning output folder
7
7
  ESM Build start
8
8
  CJS Build start
9
9
  CJS dist/index.cjs 622.16 KB
10
- CJS ⚡️ Build success in 1100ms
10
+ CJS ⚡️ Build success in 704ms
11
11
  ESM dist/index.js 481.57 KB
12
- ESM ⚡️ Build success in 1148ms
12
+ ESM ⚡️ Build success in 744ms
13
13
  DTS Build start
14
- DTS ⚡️ Build success in 13603ms
14
+ DTS ⚡️ Build success in 12742ms
15
15
  DTS dist/index.d.ts 251.83 KB
16
16
  DTS dist/index.d.cts 251.83 KB
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/core-adapter",
3
- "version": "4.32.0-next.29",
3
+ "version": "4.32.0-next.30",
4
4
  "description": "ArcGIS Core Adapter",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -27,7 +27,6 @@
27
27
  "esri/core/quantity": "import * as quantity from \"@arcgis/core/core/quantity.js\";",
28
28
  "esri/core/reactiveUtils": "import * as reactiveUtils from \"@arcgis/core/core/reactiveUtils.js\";",
29
29
  "esri/core/scheduling": "import * as scheduling from \"@arcgis/core/core/scheduling.js\";",
30
- "esri/core/signal": "import * as signal from \"@arcgis/core/core/signal.js\";",
31
30
  "esri/core/sql": "import * as sql from \"@arcgis/core/core/sql.js\";",
32
31
  "esri/core/sql/WhereClause": "import WhereClause from \"@arcgis/core/core/sql/WhereClause.js\";",
33
32
  "esri/core/units": "import * as units from \"@arcgis/core/core/units.js\";",
@@ -203,6 +203,17 @@ declare namespace __esri {
203
203
 
204
204
  export const reactiveUtils: reactiveUtils;
205
205
 
206
+ export interface Signal<T> {
207
+ value: T;
208
+ mutate(mutateFn: (value: T) => void): void;
209
+ }
210
+
211
+ interface ComponentsReactiveUtils {
212
+ signal<T>(initialValue: T, equalityFunction?: (a: T, b: T) => boolean): Signal<T>;
213
+ }
214
+
215
+ export const ComponentsReactiveUtils: ComponentsReactiveUtils;
216
+
206
217
  export type BaseDynamicLayerLayerviewCreateErrorEventHandler = (
207
218
  event: BaseDynamicLayerLayerviewCreateErrorEvent,
208
219
  ) => void;
@@ -3605,19 +3616,6 @@ declare namespace __esri {
3605
3616
  elapsedFrameTime: number;
3606
3617
  }
3607
3618
 
3608
- export type MutateFunction = (value: any) => void;
3609
-
3610
- /**
3611
- * Signal which contains a single reactive value and methods to modify it and notify any other
3612
- * signals, Accessor properties or reactive contexts (i.e.
3613
- *
3614
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-signal.html#Signal Read more...}
3615
- */
3616
- export interface Signal {
3617
- value?: boolean;
3618
- mutate?: MutateFunction;
3619
- }
3620
-
3621
3619
  /**
3622
3620
  * Creates a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-sql-WhereClause.html WhereClause} expression that adheres to standardized SQL expressions.
3623
3621
  *
@@ -100611,17 +100609,6 @@ declare namespace __esri {
100611
100609
  }
100612
100610
 
100613
100611
  export class AreaMeasurement2DViewModel {
100614
- /**
100615
- * Threshold (in meters) which determines the method for computing and displaying areas and
100616
- * perimeters in non-Web Mercator projected coordinate systems (PCS).
100617
- *
100618
- * @default null
100619
- *
100620
- * @deprecated since version 4.29.
100621
- *
100622
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-AreaMeasurement2D-AreaMeasurement2DViewModel.html#geodesicDistanceThreshold Read more...}
100623
- */
100624
- geodesicDistanceThreshold: number;
100625
100612
  /**
100626
100613
  * The area and perimeter of the measurement polygon in square meters and meters respectively.
100627
100614
  *
@@ -102260,6 +102247,12 @@ declare namespace __esri {
102260
102247
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm-BatchAttributeFormViewModel.html#getFieldInputValue Read more...}
102261
102248
  */
102262
102249
  getFieldInputValue(elementId: string): any;
102250
+ /**
102251
+ * Fires the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm-BatchAttributeFormViewModel.html#event-submit submit} event.
102252
+ *
102253
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm-BatchAttributeFormViewModel.html#submit Read more...}
102254
+ */
102255
+ submit(): void;
102263
102256
  }
102264
102257
 
102265
102258
  export const BatchAttributeFormViewModel: BatchAttributeFormViewModel;
@@ -105350,17 +105343,6 @@ declare namespace __esri {
105350
105343
 
105351
105344
  constructor(properties?: DistanceMeasurement2DViewModelProperties);
105352
105345
 
105353
- /**
105354
- * Threshold (in meters) which determines the method for computing and displaying distances in
105355
- * non-Web Mercator projected coordinate systems (PCS).
105356
- *
105357
- * @default null
105358
- *
105359
- * @deprecated since version 4.29.
105360
- *
105361
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-DistanceMeasurement2D-DistanceMeasurement2DViewModel.html#geodesicDistanceThreshold Read more...}
105362
- */
105363
- geodesicDistanceThreshold: number;
105364
105346
  /**
105365
105347
  * The length and geometry of the measurement polyline in meters.
105366
105348
  *
@@ -105415,15 +105397,6 @@ declare namespace __esri {
105415
105397
  }
105416
105398
 
105417
105399
  interface DistanceMeasurement2DViewModelProperties {
105418
- /**
105419
- * Threshold (in meters) which determines the method for computing and displaying distances in
105420
- * non-Web Mercator projected coordinate systems (PCS).
105421
- *
105422
- * @deprecated since version 4.29.
105423
- *
105424
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-DistanceMeasurement2D-DistanceMeasurement2DViewModel.html#geodesicDistanceThreshold Read more...}
105425
- */
105426
- geodesicDistanceThreshold?: number;
105427
105400
  /**
105428
105401
  * Unit system (imperial, metric) or specific unit used for displaying the distance values.
105429
105402
  *
@@ -106665,17 +106638,6 @@ declare namespace __esri {
106665
106638
 
106666
106639
  constructor(properties?: ElevationProfileProperties);
106667
106640
 
106668
- /**
106669
- * Threshold (in meters) which determines the method for computing and displaying distances in
106670
- * non-Web Mercator projected coordinate systems (PCS).
106671
- *
106672
- * @default null
106673
- *
106674
- * @deprecated since version 4.29.
106675
- *
106676
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile.html#geodesicDistanceThreshold Read more...}
106677
- */
106678
- geodesicDistanceThreshold: number;
106679
106641
  /**
106680
106642
  * The input line graphic along which elevation will be queried in order to generate an elevation profile.
106681
106643
  *
@@ -106726,15 +106688,6 @@ declare namespace __esri {
106726
106688
  }
106727
106689
 
106728
106690
  interface ElevationProfileProperties extends WidgetProperties {
106729
- /**
106730
- * Threshold (in meters) which determines the method for computing and displaying distances in
106731
- * non-Web Mercator projected coordinate systems (PCS).
106732
- *
106733
- * @deprecated since version 4.29.
106734
- *
106735
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile.html#geodesicDistanceThreshold Read more...}
106736
- */
106737
- geodesicDistanceThreshold?: number;
106738
106691
  /**
106739
106692
  * The input line graphic along which elevation will be queried in order to generate an elevation profile.
106740
106693
  *
@@ -107100,17 +107053,6 @@ declare namespace __esri {
107100
107053
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile-ElevationProfileViewModel.html#effectiveUnits Read more...}
107101
107054
  */
107102
107055
  readonly effectiveUnits: EffectiveUnits;
107103
- /**
107104
- * Threshold (in meters) which determines the method for computing and displaying distances in
107105
- * non-Web Mercator projected coordinate systems (PCS).
107106
- *
107107
- * @default null
107108
- *
107109
- * @deprecated since version 4.29.
107110
- *
107111
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile-ElevationProfileViewModel.html#geodesicDistanceThreshold Read more...}
107112
- */
107113
- geodesicDistanceThreshold: number;
107114
107056
  /**
107115
107057
  * Whether the graphic used as {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile.html#input input}
107116
107058
  * is highlighted.
@@ -107214,15 +107156,6 @@ declare namespace __esri {
107214
107156
  }
107215
107157
 
107216
107158
  interface ElevationProfileViewModelProperties {
107217
- /**
107218
- * Threshold (in meters) which determines the method for computing and displaying distances in
107219
- * non-Web Mercator projected coordinate systems (PCS).
107220
- *
107221
- * @deprecated since version 4.29.
107222
- *
107223
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile-ElevationProfileViewModel.html#geodesicDistanceThreshold Read more...}
107224
- */
107225
- geodesicDistanceThreshold?: number;
107226
107159
  /**
107227
107160
  * Whether the graphic used as {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-ElevationProfile.html#input input}
107228
107161
  * is highlighted.
@@ -138529,6 +138462,11 @@ declare module "esri/applications/Components/previewSymbol2D" {
138529
138462
  export = previewSymbol2D;
138530
138463
  }
138531
138464
 
138465
+ declare module "esri/applications/Components/reactiveUtils" {
138466
+ import ComponentsReactiveUtils = __esri.ComponentsReactiveUtils;
138467
+ export = ComponentsReactiveUtils;
138468
+ }
138469
+
138532
138470
  declare module "esri/applications/Components/SelectionOperation" {
138533
138471
  import SelectionOperation = __esri.SelectionOperation;
138534
138472
  export = SelectionOperation;