@arcgis/core-adapter 4.34.0-next.16 → 4.34.0-next.161
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/LICENSE.md +1 -1
- package/README.md +2 -10
- package/dist/index.cjs +654 -231
- package/dist/index.d.cts +115 -52
- package/dist/index.d.ts +115 -52
- package/dist/index.js +654 -231
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -115,6 +115,17 @@ async function newAnalysisDirectLineMeasurementAnalysis(properties) {
|
|
|
115
115
|
const ModConstructor = await importAnalysisDirectLineMeasurementAnalysis();
|
|
116
116
|
return new ModConstructor(properties);
|
|
117
117
|
}
|
|
118
|
+
async function importAnalysisElevationProfileAnalysis() {
|
|
119
|
+
if (isAMD) {
|
|
120
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfileAnalysis");
|
|
121
|
+
}
|
|
122
|
+
const module = await import("@arcgis/core/analysis/ElevationProfileAnalysis.js");
|
|
123
|
+
return isDefaultModule(module) ? module.default : module;
|
|
124
|
+
}
|
|
125
|
+
async function newAnalysisElevationProfileAnalysis(properties) {
|
|
126
|
+
const ModConstructor = await importAnalysisElevationProfileAnalysis();
|
|
127
|
+
return new ModConstructor(properties);
|
|
128
|
+
}
|
|
118
129
|
async function importAnalysisLengthDimension() {
|
|
119
130
|
if (isAMD) {
|
|
120
131
|
return await window.$arcgis.import("esri/analysis/LengthDimension");
|
|
@@ -203,6 +214,116 @@ async function newAnalysisViewshedAnalysis(properties) {
|
|
|
203
214
|
const ModConstructor = await importAnalysisViewshedAnalysis();
|
|
204
215
|
return new ModConstructor(properties);
|
|
205
216
|
}
|
|
217
|
+
async function importAnalysisVolumeMeasurementAnalysis() {
|
|
218
|
+
if (isAMD) {
|
|
219
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurementAnalysis");
|
|
220
|
+
}
|
|
221
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurementAnalysis.js");
|
|
222
|
+
return isDefaultModule(module) ? module.default : module;
|
|
223
|
+
}
|
|
224
|
+
async function newAnalysisVolumeMeasurementAnalysis(properties) {
|
|
225
|
+
const ModConstructor = await importAnalysisVolumeMeasurementAnalysis();
|
|
226
|
+
return new ModConstructor(properties);
|
|
227
|
+
}
|
|
228
|
+
async function importAnalysisElevationProfileElevationProfileLine() {
|
|
229
|
+
if (isAMD) {
|
|
230
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLine");
|
|
231
|
+
}
|
|
232
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLine.js");
|
|
233
|
+
return isDefaultModule(module) ? module.default : module;
|
|
234
|
+
}
|
|
235
|
+
async function newAnalysisElevationProfileElevationProfileLine(properties) {
|
|
236
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLine();
|
|
237
|
+
return new ModConstructor(properties);
|
|
238
|
+
}
|
|
239
|
+
async function importAnalysisElevationProfileElevationProfileLineChartOptions() {
|
|
240
|
+
if (isAMD) {
|
|
241
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineChartOptions");
|
|
242
|
+
}
|
|
243
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineChartOptions.js");
|
|
244
|
+
return isDefaultModule(module) ? module.default : module;
|
|
245
|
+
}
|
|
246
|
+
async function newAnalysisElevationProfileElevationProfileLineChartOptions(properties) {
|
|
247
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineChartOptions();
|
|
248
|
+
return new ModConstructor(properties);
|
|
249
|
+
}
|
|
250
|
+
async function importAnalysisElevationProfileElevationProfileLineGround() {
|
|
251
|
+
if (isAMD) {
|
|
252
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineGround");
|
|
253
|
+
}
|
|
254
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineGround.js");
|
|
255
|
+
return isDefaultModule(module) ? module.default : module;
|
|
256
|
+
}
|
|
257
|
+
async function newAnalysisElevationProfileElevationProfileLineGround(properties) {
|
|
258
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineGround();
|
|
259
|
+
return new ModConstructor(properties);
|
|
260
|
+
}
|
|
261
|
+
async function importAnalysisElevationProfileElevationProfileLineInput() {
|
|
262
|
+
if (isAMD) {
|
|
263
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineInput");
|
|
264
|
+
}
|
|
265
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineInput.js");
|
|
266
|
+
return isDefaultModule(module) ? module.default : module;
|
|
267
|
+
}
|
|
268
|
+
async function newAnalysisElevationProfileElevationProfileLineInput(properties) {
|
|
269
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineInput();
|
|
270
|
+
return new ModConstructor(properties);
|
|
271
|
+
}
|
|
272
|
+
async function importAnalysisElevationProfileElevationProfileLineQuery() {
|
|
273
|
+
if (isAMD) {
|
|
274
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineQuery");
|
|
275
|
+
}
|
|
276
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineQuery.js");
|
|
277
|
+
return isDefaultModule(module) ? module.default : module;
|
|
278
|
+
}
|
|
279
|
+
async function newAnalysisElevationProfileElevationProfileLineQuery(properties) {
|
|
280
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineQuery();
|
|
281
|
+
return new ModConstructor(properties);
|
|
282
|
+
}
|
|
283
|
+
async function importAnalysisElevationProfileElevationProfileLineScene() {
|
|
284
|
+
if (isAMD) {
|
|
285
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineScene");
|
|
286
|
+
}
|
|
287
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineScene.js");
|
|
288
|
+
return isDefaultModule(module) ? module.default : module;
|
|
289
|
+
}
|
|
290
|
+
async function newAnalysisElevationProfileElevationProfileLineScene(properties) {
|
|
291
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineScene();
|
|
292
|
+
return new ModConstructor(properties);
|
|
293
|
+
}
|
|
294
|
+
async function importAnalysisElevationProfileElevationProfileLineViewOptions() {
|
|
295
|
+
if (isAMD) {
|
|
296
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileLineViewOptions");
|
|
297
|
+
}
|
|
298
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileLineViewOptions.js");
|
|
299
|
+
return isDefaultModule(module) ? module.default : module;
|
|
300
|
+
}
|
|
301
|
+
async function newAnalysisElevationProfileElevationProfileLineViewOptions(properties) {
|
|
302
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileLineViewOptions();
|
|
303
|
+
return new ModConstructor(properties);
|
|
304
|
+
}
|
|
305
|
+
async function importAnalysisElevationProfileElevationProfileDisplayUnits() {
|
|
306
|
+
if (isAMD) {
|
|
307
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileDisplayUnits");
|
|
308
|
+
}
|
|
309
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileDisplayUnits.js");
|
|
310
|
+
return isDefaultModule(module) ? module.default : module;
|
|
311
|
+
}
|
|
312
|
+
async function newAnalysisElevationProfileElevationProfileDisplayUnits(properties) {
|
|
313
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileDisplayUnits();
|
|
314
|
+
return new ModConstructor(properties);
|
|
315
|
+
}
|
|
316
|
+
async function importAnalysisElevationProfileElevationProfileViewOptions() {
|
|
317
|
+
if (isAMD) {
|
|
318
|
+
return await window.$arcgis.import("esri/analysis/ElevationProfile/ElevationProfileViewOptions");
|
|
319
|
+
}
|
|
320
|
+
const module = await import("@arcgis/core/analysis/ElevationProfile/ElevationProfileViewOptions.js");
|
|
321
|
+
return isDefaultModule(module) ? module.default : module;
|
|
322
|
+
}
|
|
323
|
+
async function newAnalysisElevationProfileElevationProfileViewOptions(properties) {
|
|
324
|
+
const ModConstructor = await importAnalysisElevationProfileElevationProfileViewOptions();
|
|
325
|
+
return new ModConstructor(properties);
|
|
326
|
+
}
|
|
206
327
|
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
207
328
|
if (isAMD) {
|
|
208
329
|
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
@@ -214,6 +335,39 @@ async function newAnalysisSupportAnalysisOriginWebScene(properties) {
|
|
|
214
335
|
const ModConstructor = await importAnalysisSupportAnalysisOriginWebScene();
|
|
215
336
|
return new ModConstructor(properties);
|
|
216
337
|
}
|
|
338
|
+
async function importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions() {
|
|
339
|
+
if (isAMD) {
|
|
340
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementCutFillOptions");
|
|
341
|
+
}
|
|
342
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementCutFillOptions.js");
|
|
343
|
+
return isDefaultModule(module) ? module.default : module;
|
|
344
|
+
}
|
|
345
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions(properties) {
|
|
346
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions();
|
|
347
|
+
return new ModConstructor(properties);
|
|
348
|
+
}
|
|
349
|
+
async function importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits() {
|
|
350
|
+
if (isAMD) {
|
|
351
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementDisplayUnits");
|
|
352
|
+
}
|
|
353
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementDisplayUnits.js");
|
|
354
|
+
return isDefaultModule(module) ? module.default : module;
|
|
355
|
+
}
|
|
356
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits(properties) {
|
|
357
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits();
|
|
358
|
+
return new ModConstructor(properties);
|
|
359
|
+
}
|
|
360
|
+
async function importAnalysisVolumeMeasurementVolumeMeasurementInputUnits() {
|
|
361
|
+
if (isAMD) {
|
|
362
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/VolumeMeasurementInputUnits");
|
|
363
|
+
}
|
|
364
|
+
const module = await import("@arcgis/core/analysis/VolumeMeasurement/VolumeMeasurementInputUnits.js");
|
|
365
|
+
return isDefaultModule(module) ? module.default : module;
|
|
366
|
+
}
|
|
367
|
+
async function newAnalysisVolumeMeasurementVolumeMeasurementInputUnits(properties) {
|
|
368
|
+
const ModConstructor = await importAnalysisVolumeMeasurementVolumeMeasurementInputUnits();
|
|
369
|
+
return new ModConstructor(properties);
|
|
370
|
+
}
|
|
217
371
|
async function importCoreAccessor() {
|
|
218
372
|
if (isAMD) {
|
|
219
373
|
return await window.$arcgis.import("esri/core/Accessor");
|
|
@@ -720,28 +874,6 @@ async function newGeometryOperatorsSupportTransformation() {
|
|
|
720
874
|
const ModConstructor = await importGeometryOperatorsSupportTransformation();
|
|
721
875
|
return new ModConstructor();
|
|
722
876
|
}
|
|
723
|
-
async function importGeometrySupportGeographicTransformation() {
|
|
724
|
-
if (isAMD) {
|
|
725
|
-
return await window.$arcgis.import("esri/geometry/support/GeographicTransformation");
|
|
726
|
-
}
|
|
727
|
-
const module = await import("@arcgis/core/geometry/support/GeographicTransformation.js");
|
|
728
|
-
return isDefaultModule(module) ? module.default : module;
|
|
729
|
-
}
|
|
730
|
-
async function newGeometrySupportGeographicTransformation(properties) {
|
|
731
|
-
const ModConstructor = await importGeometrySupportGeographicTransformation();
|
|
732
|
-
return new ModConstructor(properties);
|
|
733
|
-
}
|
|
734
|
-
async function importGeometrySupportGeographicTransformationStep() {
|
|
735
|
-
if (isAMD) {
|
|
736
|
-
return await window.$arcgis.import("esri/geometry/support/GeographicTransformationStep");
|
|
737
|
-
}
|
|
738
|
-
const module = await import("@arcgis/core/geometry/support/GeographicTransformationStep.js");
|
|
739
|
-
return isDefaultModule(module) ? module.default : module;
|
|
740
|
-
}
|
|
741
|
-
async function newGeometrySupportGeographicTransformationStep(properties) {
|
|
742
|
-
const ModConstructor = await importGeometrySupportGeographicTransformationStep();
|
|
743
|
-
return new ModConstructor(properties);
|
|
744
|
-
}
|
|
745
877
|
async function importGeometrySupportMeshComponent() {
|
|
746
878
|
if (isAMD) {
|
|
747
879
|
return await window.$arcgis.import("esri/geometry/support/MeshComponent");
|
|
@@ -830,6 +962,28 @@ async function newGeometrySupportMeshTransform(properties) {
|
|
|
830
962
|
const ModConstructor = await importGeometrySupportMeshTransform();
|
|
831
963
|
return new ModConstructor(properties);
|
|
832
964
|
}
|
|
965
|
+
async function importGraphicGraphicOrigin() {
|
|
966
|
+
if (isAMD) {
|
|
967
|
+
return await window.$arcgis.import("esri/graphic/GraphicOrigin");
|
|
968
|
+
}
|
|
969
|
+
const module = await import("@arcgis/core/graphic/GraphicOrigin.js");
|
|
970
|
+
return isDefaultModule(module) ? module.default : module;
|
|
971
|
+
}
|
|
972
|
+
async function newGraphicGraphicOrigin() {
|
|
973
|
+
const ModConstructor = await importGraphicGraphicOrigin();
|
|
974
|
+
return new ModConstructor();
|
|
975
|
+
}
|
|
976
|
+
async function importGraphicVectorTileGraphicOrigin() {
|
|
977
|
+
if (isAMD) {
|
|
978
|
+
return await window.$arcgis.import("esri/graphic/VectorTileGraphicOrigin");
|
|
979
|
+
}
|
|
980
|
+
const module = await import("@arcgis/core/graphic/VectorTileGraphicOrigin.js");
|
|
981
|
+
return isDefaultModule(module) ? module.default : module;
|
|
982
|
+
}
|
|
983
|
+
async function newGraphicVectorTileGraphicOrigin(layer, layerId, layerIndex) {
|
|
984
|
+
const ModConstructor = await importGraphicVectorTileGraphicOrigin();
|
|
985
|
+
return new ModConstructor(layer, layerId, layerIndex);
|
|
986
|
+
}
|
|
833
987
|
async function importAttributeBinsGraphic() {
|
|
834
988
|
if (isAMD) {
|
|
835
989
|
return await window.$arcgis.import("esri/AttributeBinsGraphic");
|
|
@@ -1457,6 +1611,17 @@ async function newLayersSupportCornersGeoreference(properties) {
|
|
|
1457
1611
|
const ModConstructor = await importLayersSupportCornersGeoreference();
|
|
1458
1612
|
return new ModConstructor(properties);
|
|
1459
1613
|
}
|
|
1614
|
+
async function importLayersSupportDateTimeFieldFormat() {
|
|
1615
|
+
if (isAMD) {
|
|
1616
|
+
return await window.$arcgis.import("esri/layers/support/DateTimeFieldFormat");
|
|
1617
|
+
}
|
|
1618
|
+
const module = await import("@arcgis/core/layers/support/DateTimeFieldFormat.js");
|
|
1619
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1620
|
+
}
|
|
1621
|
+
async function newLayersSupportDateTimeFieldFormat(properties) {
|
|
1622
|
+
const ModConstructor = await importLayersSupportDateTimeFieldFormat();
|
|
1623
|
+
return new ModConstructor(properties);
|
|
1624
|
+
}
|
|
1460
1625
|
async function importLayersSupportDimensionalDefinition() {
|
|
1461
1626
|
if (isAMD) {
|
|
1462
1627
|
return await window.$arcgis.import("esri/layers/support/DimensionalDefinition");
|
|
@@ -1633,6 +1798,17 @@ async function newLayersSupportField(properties) {
|
|
|
1633
1798
|
const ModConstructor = await importLayersSupportField();
|
|
1634
1799
|
return new ModConstructor(properties);
|
|
1635
1800
|
}
|
|
1801
|
+
async function importLayersSupportFieldConfiguration() {
|
|
1802
|
+
if (isAMD) {
|
|
1803
|
+
return await window.$arcgis.import("esri/layers/support/FieldConfiguration");
|
|
1804
|
+
}
|
|
1805
|
+
const module = await import("@arcgis/core/layers/support/FieldConfiguration.js");
|
|
1806
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1807
|
+
}
|
|
1808
|
+
async function newLayersSupportFieldConfiguration(properties) {
|
|
1809
|
+
const ModConstructor = await importLayersSupportFieldConfiguration();
|
|
1810
|
+
return new ModConstructor(properties);
|
|
1811
|
+
}
|
|
1636
1812
|
async function importLayersSupportFieldsIndex() {
|
|
1637
1813
|
if (isAMD) {
|
|
1638
1814
|
return await window.$arcgis.import("esri/layers/support/FieldsIndex");
|
|
@@ -1776,6 +1952,17 @@ async function newLayersSupportMultidimensionalSubset(properties) {
|
|
|
1776
1952
|
const ModConstructor = await importLayersSupportMultidimensionalSubset();
|
|
1777
1953
|
return new ModConstructor(properties);
|
|
1778
1954
|
}
|
|
1955
|
+
async function importLayersSupportNumberFieldFormat() {
|
|
1956
|
+
if (isAMD) {
|
|
1957
|
+
return await window.$arcgis.import("esri/layers/support/NumberFieldFormat");
|
|
1958
|
+
}
|
|
1959
|
+
const module = await import("@arcgis/core/layers/support/NumberFieldFormat.js");
|
|
1960
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1961
|
+
}
|
|
1962
|
+
async function newLayersSupportNumberFieldFormat(properties) {
|
|
1963
|
+
const ModConstructor = await importLayersSupportNumberFieldFormat();
|
|
1964
|
+
return new ModConstructor(properties);
|
|
1965
|
+
}
|
|
1779
1966
|
async function importLayersSupportOrderByInfo() {
|
|
1780
1967
|
if (isAMD) {
|
|
1781
1968
|
return await window.$arcgis.import("esri/layers/support/OrderByInfo");
|
|
@@ -1820,6 +2007,17 @@ async function newLayersSupportPixelBlock(properties) {
|
|
|
1820
2007
|
const ModConstructor = await importLayersSupportPixelBlock();
|
|
1821
2008
|
return new ModConstructor(properties);
|
|
1822
2009
|
}
|
|
2010
|
+
async function importLayersSupportPlaybackInfo() {
|
|
2011
|
+
if (isAMD) {
|
|
2012
|
+
return await window.$arcgis.import("esri/layers/support/PlaybackInfo");
|
|
2013
|
+
}
|
|
2014
|
+
const module = await import("@arcgis/core/layers/support/PlaybackInfo.js");
|
|
2015
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2016
|
+
}
|
|
2017
|
+
async function newLayersSupportPlaybackInfo(properties) {
|
|
2018
|
+
const ModConstructor = await importLayersSupportPlaybackInfo();
|
|
2019
|
+
return new ModConstructor(properties);
|
|
2020
|
+
}
|
|
1823
2021
|
async function importLayersSupportPublishingInfo() {
|
|
1824
2022
|
if (isAMD) {
|
|
1825
2023
|
return await window.$arcgis.import("esri/layers/support/PublishingInfo");
|
|
@@ -3371,6 +3569,28 @@ async function newRestKnowledgeGraphGraphAddNamedTypesResult(properties) {
|
|
|
3371
3569
|
const ModConstructor = await importRestKnowledgeGraphGraphAddNamedTypesResult();
|
|
3372
3570
|
return new ModConstructor(properties);
|
|
3373
3571
|
}
|
|
3572
|
+
async function importRestKnowledgeGraphGraphAddFieldIndexResult() {
|
|
3573
|
+
if (isAMD) {
|
|
3574
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddFieldIndexResult");
|
|
3575
|
+
}
|
|
3576
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphAddFieldIndexResult.js");
|
|
3577
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3578
|
+
}
|
|
3579
|
+
async function newRestKnowledgeGraphGraphAddFieldIndexResult(properties) {
|
|
3580
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddFieldIndexResult();
|
|
3581
|
+
return new ModConstructor(properties);
|
|
3582
|
+
}
|
|
3583
|
+
async function importRestKnowledgeGraphGraphAddPropertyResult() {
|
|
3584
|
+
if (isAMD) {
|
|
3585
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddPropertyResult");
|
|
3586
|
+
}
|
|
3587
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphAddPropertyResult.js");
|
|
3588
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3589
|
+
}
|
|
3590
|
+
async function newRestKnowledgeGraphGraphAddPropertyResult(properties) {
|
|
3591
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddPropertyResult();
|
|
3592
|
+
return new ModConstructor(properties);
|
|
3593
|
+
}
|
|
3374
3594
|
async function importRestKnowledgeGraphGraphApplyEdits() {
|
|
3375
3595
|
if (isAMD) {
|
|
3376
3596
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphApplyEdits");
|
|
@@ -3393,6 +3613,28 @@ async function newRestKnowledgeGraphGraphApplyEditsResult(properties) {
|
|
|
3393
3613
|
const ModConstructor = await importRestKnowledgeGraphGraphApplyEditsResult();
|
|
3394
3614
|
return new ModConstructor(properties);
|
|
3395
3615
|
}
|
|
3616
|
+
async function importRestKnowledgeGraphGraphDataModelOperationResult() {
|
|
3617
|
+
if (isAMD) {
|
|
3618
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDataModelOperationResult");
|
|
3619
|
+
}
|
|
3620
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDataModelOperationResult.js");
|
|
3621
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3622
|
+
}
|
|
3623
|
+
async function newRestKnowledgeGraphGraphDataModelOperationResult(properties) {
|
|
3624
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDataModelOperationResult();
|
|
3625
|
+
return new ModConstructor(properties);
|
|
3626
|
+
}
|
|
3627
|
+
async function importRestKnowledgeGraphGraphDeleteFieldIndexResult() {
|
|
3628
|
+
if (isAMD) {
|
|
3629
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteFieldIndexResult");
|
|
3630
|
+
}
|
|
3631
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDeleteFieldIndexResult.js");
|
|
3632
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3633
|
+
}
|
|
3634
|
+
async function newRestKnowledgeGraphGraphDeleteFieldIndexResult(properties) {
|
|
3635
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeleteFieldIndexResult();
|
|
3636
|
+
return new ModConstructor(properties);
|
|
3637
|
+
}
|
|
3396
3638
|
async function importRestKnowledgeGraphGraphDeleteNamedTypeResult() {
|
|
3397
3639
|
if (isAMD) {
|
|
3398
3640
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteNamedTypeResult");
|
|
@@ -3404,6 +3646,17 @@ async function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties) {
|
|
|
3404
3646
|
const ModConstructor = await importRestKnowledgeGraphGraphDeleteNamedTypeResult();
|
|
3405
3647
|
return new ModConstructor(properties);
|
|
3406
3648
|
}
|
|
3649
|
+
async function importRestKnowledgeGraphGraphDeletePropertyResult() {
|
|
3650
|
+
if (isAMD) {
|
|
3651
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeletePropertyResult");
|
|
3652
|
+
}
|
|
3653
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphDeletePropertyResult.js");
|
|
3654
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3655
|
+
}
|
|
3656
|
+
async function newRestKnowledgeGraphGraphDeletePropertyResult(properties) {
|
|
3657
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeletePropertyResult();
|
|
3658
|
+
return new ModConstructor(properties);
|
|
3659
|
+
}
|
|
3407
3660
|
async function importRestKnowledgeGraphGraphNamedObject() {
|
|
3408
3661
|
if (isAMD) {
|
|
3409
3662
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphNamedObject");
|
|
@@ -3525,6 +3778,39 @@ async function newRestKnowledgeGraphGraphSearchStreaming(properties) {
|
|
|
3525
3778
|
const ModConstructor = await importRestKnowledgeGraphGraphSearchStreaming();
|
|
3526
3779
|
return new ModConstructor(properties);
|
|
3527
3780
|
}
|
|
3781
|
+
async function importRestKnowledgeGraphGraphUpdateNamedTypesResult() {
|
|
3782
|
+
if (isAMD) {
|
|
3783
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateNamedTypesResult");
|
|
3784
|
+
}
|
|
3785
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateNamedTypesResult.js");
|
|
3786
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3787
|
+
}
|
|
3788
|
+
async function newRestKnowledgeGraphGraphUpdateNamedTypesResult(properties) {
|
|
3789
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateNamedTypesResult();
|
|
3790
|
+
return new ModConstructor(properties);
|
|
3791
|
+
}
|
|
3792
|
+
async function importRestKnowledgeGraphGraphUpdatePropertyResult() {
|
|
3793
|
+
if (isAMD) {
|
|
3794
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdatePropertyResult");
|
|
3795
|
+
}
|
|
3796
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdatePropertyResult.js");
|
|
3797
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3798
|
+
}
|
|
3799
|
+
async function newRestKnowledgeGraphGraphUpdatePropertyResult(properties) {
|
|
3800
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdatePropertyResult();
|
|
3801
|
+
return new ModConstructor(properties);
|
|
3802
|
+
}
|
|
3803
|
+
async function importRestKnowledgeGraphGraphUpdateSearchIndexResult() {
|
|
3804
|
+
if (isAMD) {
|
|
3805
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateSearchIndexResult");
|
|
3806
|
+
}
|
|
3807
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateSearchIndexResult.js");
|
|
3808
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3809
|
+
}
|
|
3810
|
+
async function newRestKnowledgeGraphGraphUpdateSearchIndexResult(properties) {
|
|
3811
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateSearchIndexResult();
|
|
3812
|
+
return new ModConstructor(properties);
|
|
3813
|
+
}
|
|
3528
3814
|
async function importRestKnowledgeGraphInputQuantizationParameters() {
|
|
3529
3815
|
if (isAMD) {
|
|
3530
3816
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/InputQuantizationParameters");
|
|
@@ -4614,6 +4900,17 @@ async function newRestSupportJobInfo(properties) {
|
|
|
4614
4900
|
const ModConstructor = await importRestSupportJobInfo();
|
|
4615
4901
|
return new ModConstructor(properties);
|
|
4616
4902
|
}
|
|
4903
|
+
async function importRestSupportLastMileDeliveryParameters() {
|
|
4904
|
+
if (isAMD) {
|
|
4905
|
+
return await window.$arcgis.import("esri/rest/support/LastMileDeliveryParameters");
|
|
4906
|
+
}
|
|
4907
|
+
const module = await import("@arcgis/core/rest/support/LastMileDeliveryParameters.js");
|
|
4908
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4909
|
+
}
|
|
4910
|
+
async function newRestSupportLastMileDeliveryParameters(properties) {
|
|
4911
|
+
const ModConstructor = await importRestSupportLastMileDeliveryParameters();
|
|
4912
|
+
return new ModConstructor(properties);
|
|
4913
|
+
}
|
|
4617
4914
|
async function importRestSupportLegendLayer() {
|
|
4618
4915
|
if (isAMD) {
|
|
4619
4916
|
return await window.$arcgis.import("esri/rest/support/LegendLayer");
|
|
@@ -5637,28 +5934,6 @@ async function newTimeTimeInterval(properties) {
|
|
|
5637
5934
|
const ModConstructor = await importTimeTimeInterval();
|
|
5638
5935
|
return new ModConstructor(properties);
|
|
5639
5936
|
}
|
|
5640
|
-
async function importTimeExtent() {
|
|
5641
|
-
if (isAMD) {
|
|
5642
|
-
return await window.$arcgis.import("esri/TimeExtent");
|
|
5643
|
-
}
|
|
5644
|
-
const module = await import("@arcgis/core/TimeExtent.js");
|
|
5645
|
-
return isDefaultModule(module) ? module.default : module;
|
|
5646
|
-
}
|
|
5647
|
-
async function newTimeExtent(properties) {
|
|
5648
|
-
const ModConstructor = await importTimeExtent();
|
|
5649
|
-
return new ModConstructor(properties);
|
|
5650
|
-
}
|
|
5651
|
-
async function importTimeInterval() {
|
|
5652
|
-
if (isAMD) {
|
|
5653
|
-
return await window.$arcgis.import("esri/TimeInterval");
|
|
5654
|
-
}
|
|
5655
|
-
const module = await import("@arcgis/core/TimeInterval.js");
|
|
5656
|
-
return isDefaultModule(module) ? module.default : module;
|
|
5657
|
-
}
|
|
5658
|
-
async function newTimeInterval(properties) {
|
|
5659
|
-
const ModConstructor = await importTimeInterval();
|
|
5660
|
-
return new ModConstructor(properties);
|
|
5661
|
-
}
|
|
5662
5937
|
async function importVersionManagementVersioningState() {
|
|
5663
5938
|
if (isAMD) {
|
|
5664
5939
|
return await window.$arcgis.import("esri/versionManagement/VersioningState");
|
|
@@ -5692,26 +5967,26 @@ async function newViewpoint(properties) {
|
|
|
5692
5967
|
const ModConstructor = await importViewpoint();
|
|
5693
5968
|
return new ModConstructor(properties);
|
|
5694
5969
|
}
|
|
5695
|
-
async function
|
|
5970
|
+
async function importViewsBasemapView() {
|
|
5696
5971
|
if (isAMD) {
|
|
5697
|
-
return await window.$arcgis.import("esri/views/
|
|
5972
|
+
return await window.$arcgis.import("esri/views/BasemapView");
|
|
5698
5973
|
}
|
|
5699
|
-
const module = await import("@arcgis/core/views/
|
|
5974
|
+
const module = await import("@arcgis/core/views/BasemapView.js");
|
|
5700
5975
|
return isDefaultModule(module) ? module.default : module;
|
|
5701
5976
|
}
|
|
5702
|
-
async function
|
|
5703
|
-
const ModConstructor = await
|
|
5977
|
+
async function newViewsBasemapView(properties) {
|
|
5978
|
+
const ModConstructor = await importViewsBasemapView();
|
|
5704
5979
|
return new ModConstructor(properties);
|
|
5705
5980
|
}
|
|
5706
|
-
async function
|
|
5981
|
+
async function importViewsGroundView() {
|
|
5707
5982
|
if (isAMD) {
|
|
5708
|
-
return await window.$arcgis.import("esri/views/
|
|
5983
|
+
return await window.$arcgis.import("esri/views/GroundView");
|
|
5709
5984
|
}
|
|
5710
|
-
const module = await import("@arcgis/core/views/
|
|
5985
|
+
const module = await import("@arcgis/core/views/GroundView.js");
|
|
5711
5986
|
return isDefaultModule(module) ? module.default : module;
|
|
5712
5987
|
}
|
|
5713
|
-
async function
|
|
5714
|
-
const ModConstructor = await
|
|
5988
|
+
async function newViewsGroundView(properties) {
|
|
5989
|
+
const ModConstructor = await importViewsGroundView();
|
|
5715
5990
|
return new ModConstructor(properties);
|
|
5716
5991
|
}
|
|
5717
5992
|
async function importViews2dViewState() {
|
|
@@ -5725,6 +6000,39 @@ async function newViews2dViewState(properties) {
|
|
|
5725
6000
|
const ModConstructor = await importViews2dViewState();
|
|
5726
6001
|
return new ModConstructor(properties);
|
|
5727
6002
|
}
|
|
6003
|
+
async function importViews2dAnalysisElevationProfileAnalysisView2D() {
|
|
6004
|
+
if (isAMD) {
|
|
6005
|
+
return await window.$arcgis.import("esri/views/2d/analysis/ElevationProfileAnalysisView2D");
|
|
6006
|
+
}
|
|
6007
|
+
const module = await import("@arcgis/core/views/2d/analysis/ElevationProfileAnalysisView2D.js");
|
|
6008
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6009
|
+
}
|
|
6010
|
+
async function newViews2dAnalysisElevationProfileAnalysisView2D(properties) {
|
|
6011
|
+
const ModConstructor = await importViews2dAnalysisElevationProfileAnalysisView2D();
|
|
6012
|
+
return new ModConstructor(properties);
|
|
6013
|
+
}
|
|
6014
|
+
async function importViews2dLayersBaseLayerView2D() {
|
|
6015
|
+
if (isAMD) {
|
|
6016
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerView2D");
|
|
6017
|
+
}
|
|
6018
|
+
const module = await import("@arcgis/core/views/2d/layers/BaseLayerView2D.js");
|
|
6019
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6020
|
+
}
|
|
6021
|
+
async function newViews2dLayersBaseLayerView2D(properties) {
|
|
6022
|
+
const ModConstructor = await importViews2dLayersBaseLayerView2D();
|
|
6023
|
+
return new ModConstructor(properties);
|
|
6024
|
+
}
|
|
6025
|
+
async function importViews2dLayersBaseLayerViewGL2D() {
|
|
6026
|
+
if (isAMD) {
|
|
6027
|
+
return await window.$arcgis.import("esri/views/2d/layers/BaseLayerViewGL2D");
|
|
6028
|
+
}
|
|
6029
|
+
const module = await import("@arcgis/core/views/2d/layers/BaseLayerViewGL2D.js");
|
|
6030
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6031
|
+
}
|
|
6032
|
+
async function newViews2dLayersBaseLayerViewGL2D(properties) {
|
|
6033
|
+
const ModConstructor = await importViews2dLayersBaseLayerViewGL2D();
|
|
6034
|
+
return new ModConstructor(properties);
|
|
6035
|
+
}
|
|
5728
6036
|
async function importViews3dAnalysisAreaMeasurementAnalysisView3D() {
|
|
5729
6037
|
if (isAMD) {
|
|
5730
6038
|
return await window.$arcgis.import("esri/views/3d/analysis/AreaMeasurementAnalysisView3D");
|
|
@@ -5758,6 +6066,17 @@ async function newViews3dAnalysisDirectLineMeasurementAnalysisView3D(properties)
|
|
|
5758
6066
|
const ModConstructor = await importViews3dAnalysisDirectLineMeasurementAnalysisView3D();
|
|
5759
6067
|
return new ModConstructor(properties);
|
|
5760
6068
|
}
|
|
6069
|
+
async function importViews3dAnalysisElevationProfileAnalysisView3D() {
|
|
6070
|
+
if (isAMD) {
|
|
6071
|
+
return await window.$arcgis.import("esri/views/3d/analysis/ElevationProfileAnalysisView3D");
|
|
6072
|
+
}
|
|
6073
|
+
const module = await import("@arcgis/core/views/3d/analysis/ElevationProfileAnalysisView3D.js");
|
|
6074
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6075
|
+
}
|
|
6076
|
+
async function newViews3dAnalysisElevationProfileAnalysisView3D(properties) {
|
|
6077
|
+
const ModConstructor = await importViews3dAnalysisElevationProfileAnalysisView3D();
|
|
6078
|
+
return new ModConstructor(properties);
|
|
6079
|
+
}
|
|
5761
6080
|
async function importViews3dAnalysisLineOfSightAnalysisResult() {
|
|
5762
6081
|
if (isAMD) {
|
|
5763
6082
|
return await window.$arcgis.import("esri/views/3d/analysis/LineOfSightAnalysisResult");
|
|
@@ -5802,6 +6121,39 @@ async function newViews3dAnalysisViewshedAnalysisView3D(properties) {
|
|
|
5802
6121
|
const ModConstructor = await importViews3dAnalysisViewshedAnalysisView3D();
|
|
5803
6122
|
return new ModConstructor(properties);
|
|
5804
6123
|
}
|
|
6124
|
+
async function importViews3dAnalysisVolumeMeasurementAnalysisView3D() {
|
|
6125
|
+
if (isAMD) {
|
|
6126
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurementAnalysisView3D");
|
|
6127
|
+
}
|
|
6128
|
+
const module = await import("@arcgis/core/views/3d/analysis/VolumeMeasurementAnalysisView3D.js");
|
|
6129
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6130
|
+
}
|
|
6131
|
+
async function newViews3dAnalysisVolumeMeasurementAnalysisView3D(properties) {
|
|
6132
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementAnalysisView3D();
|
|
6133
|
+
return new ModConstructor(properties);
|
|
6134
|
+
}
|
|
6135
|
+
async function importViews3dAnalysisVolumeMeasurementVolumeMeasurementError() {
|
|
6136
|
+
if (isAMD) {
|
|
6137
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurement/VolumeMeasurementError");
|
|
6138
|
+
}
|
|
6139
|
+
const module = await import("@arcgis/core/views/3d/analysis/VolumeMeasurement/VolumeMeasurementError.js");
|
|
6140
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6141
|
+
}
|
|
6142
|
+
async function newViews3dAnalysisVolumeMeasurementVolumeMeasurementError(name, message, details) {
|
|
6143
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementVolumeMeasurementError();
|
|
6144
|
+
return new ModConstructor(name, message, details);
|
|
6145
|
+
}
|
|
6146
|
+
async function importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult() {
|
|
6147
|
+
if (isAMD) {
|
|
6148
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurement/VolumeMeasurementResult");
|
|
6149
|
+
}
|
|
6150
|
+
const module = await import("@arcgis/core/views/3d/analysis/VolumeMeasurement/VolumeMeasurementResult.js");
|
|
6151
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6152
|
+
}
|
|
6153
|
+
async function newViews3dAnalysisVolumeMeasurementVolumeMeasurementResult(properties) {
|
|
6154
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult();
|
|
6155
|
+
return new ModConstructor(properties);
|
|
6156
|
+
}
|
|
5805
6157
|
async function importViews3dEnvironmentCloudyWeather() {
|
|
5806
6158
|
if (isAMD) {
|
|
5807
6159
|
return await window.$arcgis.import("esri/views/3d/environment/CloudyWeather");
|
|
@@ -5890,15 +6242,15 @@ async function newViews3dWebglRenderNode(properties) {
|
|
|
5890
6242
|
const ModConstructor = await importViews3dWebglRenderNode();
|
|
5891
6243
|
return new ModConstructor(properties);
|
|
5892
6244
|
}
|
|
5893
|
-
async function
|
|
6245
|
+
async function importViewsAnalysisElevationProfileElevationProfileResult() {
|
|
5894
6246
|
if (isAMD) {
|
|
5895
|
-
return await window.$arcgis.import("esri/views/
|
|
6247
|
+
return await window.$arcgis.import("esri/views/analysis/ElevationProfile/ElevationProfileResult");
|
|
5896
6248
|
}
|
|
5897
|
-
const module = await import("@arcgis/core/views/
|
|
6249
|
+
const module = await import("@arcgis/core/views/analysis/ElevationProfile/ElevationProfileResult.js");
|
|
5898
6250
|
return isDefaultModule(module) ? module.default : module;
|
|
5899
6251
|
}
|
|
5900
|
-
async function
|
|
5901
|
-
const ModConstructor = await
|
|
6252
|
+
async function newViewsAnalysisElevationProfileElevationProfileResult(properties) {
|
|
6253
|
+
const ModConstructor = await importViewsAnalysisElevationProfileElevationProfileResult();
|
|
5902
6254
|
return new ModConstructor(properties);
|
|
5903
6255
|
}
|
|
5904
6256
|
async function importViewsDrawDraw() {
|
|
@@ -5978,15 +6330,15 @@ async function newViewsDrawSegmentDrawAction(properties) {
|
|
|
5978
6330
|
const ModConstructor = await importViewsDrawSegmentDrawAction();
|
|
5979
6331
|
return new ModConstructor(properties);
|
|
5980
6332
|
}
|
|
5981
|
-
async function
|
|
6333
|
+
async function importViewsInputInput() {
|
|
5982
6334
|
if (isAMD) {
|
|
5983
|
-
return await window.$arcgis.import("esri/views/
|
|
6335
|
+
return await window.$arcgis.import("esri/views/input/Input");
|
|
5984
6336
|
}
|
|
5985
|
-
const module = await import("@arcgis/core/views/
|
|
6337
|
+
const module = await import("@arcgis/core/views/input/Input.js");
|
|
5986
6338
|
return isDefaultModule(module) ? module.default : module;
|
|
5987
6339
|
}
|
|
5988
|
-
async function
|
|
5989
|
-
const ModConstructor = await
|
|
6340
|
+
async function newViewsInputInput(properties) {
|
|
6341
|
+
const ModConstructor = await importViewsInputInput();
|
|
5990
6342
|
return new ModConstructor(properties);
|
|
5991
6343
|
}
|
|
5992
6344
|
async function importViewsInputGamepadGamepadInputDevice() {
|
|
@@ -6011,17 +6363,6 @@ async function newViewsInputGamepadGamepadSettings(properties) {
|
|
|
6011
6363
|
const ModConstructor = await importViewsInputGamepadGamepadSettings();
|
|
6012
6364
|
return new ModConstructor(properties);
|
|
6013
6365
|
}
|
|
6014
|
-
async function importViewsInputInput() {
|
|
6015
|
-
if (isAMD) {
|
|
6016
|
-
return await window.$arcgis.import("esri/views/input/Input");
|
|
6017
|
-
}
|
|
6018
|
-
const module = await import("@arcgis/core/views/input/Input.js");
|
|
6019
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6020
|
-
}
|
|
6021
|
-
async function newViewsInputInput(properties) {
|
|
6022
|
-
const ModConstructor = await importViewsInputInput();
|
|
6023
|
-
return new ModConstructor(properties);
|
|
6024
|
-
}
|
|
6025
6366
|
async function importViewsInteractiveSketchSketchLabelOptions() {
|
|
6026
6367
|
if (isAMD) {
|
|
6027
6368
|
return await window.$arcgis.import("esri/views/interactive/sketch/SketchLabelOptions");
|
|
@@ -6110,39 +6451,6 @@ async function newViewsLayersBuildingSceneLayerView(properties) {
|
|
|
6110
6451
|
const ModConstructor = await importViewsLayersBuildingSceneLayerView();
|
|
6111
6452
|
return new ModConstructor(properties);
|
|
6112
6453
|
}
|
|
6113
|
-
async function importViewsLayersCatalogDynamicGroupLayerView() {
|
|
6114
|
-
if (isAMD) {
|
|
6115
|
-
return await window.$arcgis.import("esri/views/layers/CatalogDynamicGroupLayerView");
|
|
6116
|
-
}
|
|
6117
|
-
const module = await import("@arcgis/core/views/layers/CatalogDynamicGroupLayerView.js");
|
|
6118
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6119
|
-
}
|
|
6120
|
-
async function newViewsLayersCatalogDynamicGroupLayerView(properties) {
|
|
6121
|
-
const ModConstructor = await importViewsLayersCatalogDynamicGroupLayerView();
|
|
6122
|
-
return new ModConstructor(properties);
|
|
6123
|
-
}
|
|
6124
|
-
async function importViewsLayersCatalogFootprintLayerView() {
|
|
6125
|
-
if (isAMD) {
|
|
6126
|
-
return await window.$arcgis.import("esri/views/layers/CatalogFootprintLayerView");
|
|
6127
|
-
}
|
|
6128
|
-
const module = await import("@arcgis/core/views/layers/CatalogFootprintLayerView.js");
|
|
6129
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6130
|
-
}
|
|
6131
|
-
async function newViewsLayersCatalogFootprintLayerView(properties) {
|
|
6132
|
-
const ModConstructor = await importViewsLayersCatalogFootprintLayerView();
|
|
6133
|
-
return new ModConstructor(properties);
|
|
6134
|
-
}
|
|
6135
|
-
async function importViewsLayersCatalogLayerView() {
|
|
6136
|
-
if (isAMD) {
|
|
6137
|
-
return await window.$arcgis.import("esri/views/layers/CatalogLayerView");
|
|
6138
|
-
}
|
|
6139
|
-
const module = await import("@arcgis/core/views/layers/CatalogLayerView.js");
|
|
6140
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6141
|
-
}
|
|
6142
|
-
async function newViewsLayersCatalogLayerView(properties) {
|
|
6143
|
-
const ModConstructor = await importViewsLayersCatalogLayerView();
|
|
6144
|
-
return new ModConstructor(properties);
|
|
6145
|
-
}
|
|
6146
6454
|
async function importViewsLayersDimensionLayerView() {
|
|
6147
6455
|
if (isAMD) {
|
|
6148
6456
|
return await window.$arcgis.import("esri/views/layers/DimensionLayerView");
|
|
@@ -6154,17 +6462,6 @@ async function newViewsLayersDimensionLayerView(properties) {
|
|
|
6154
6462
|
const ModConstructor = await importViewsLayersDimensionLayerView();
|
|
6155
6463
|
return new ModConstructor(properties);
|
|
6156
6464
|
}
|
|
6157
|
-
async function importViewsLayersFeatureLayerView() {
|
|
6158
|
-
if (isAMD) {
|
|
6159
|
-
return await window.$arcgis.import("esri/views/layers/FeatureLayerView");
|
|
6160
|
-
}
|
|
6161
|
-
const module = await import("@arcgis/core/views/layers/FeatureLayerView.js");
|
|
6162
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6163
|
-
}
|
|
6164
|
-
async function newViewsLayersFeatureLayerView(properties) {
|
|
6165
|
-
const ModConstructor = await importViewsLayersFeatureLayerView();
|
|
6166
|
-
return new ModConstructor(properties);
|
|
6167
|
-
}
|
|
6168
6465
|
async function importViewsLayersGroupLayerView() {
|
|
6169
6466
|
if (isAMD) {
|
|
6170
6467
|
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
@@ -6231,28 +6528,6 @@ async function newViewsLayersMediaLayerView(properties) {
|
|
|
6231
6528
|
const ModConstructor = await importViewsLayersMediaLayerView();
|
|
6232
6529
|
return new ModConstructor(properties);
|
|
6233
6530
|
}
|
|
6234
|
-
async function importViewsLayersOGCFeatureLayerView() {
|
|
6235
|
-
if (isAMD) {
|
|
6236
|
-
return await window.$arcgis.import("esri/views/layers/OGCFeatureLayerView");
|
|
6237
|
-
}
|
|
6238
|
-
const module = await import("@arcgis/core/views/layers/OGCFeatureLayerView.js");
|
|
6239
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6240
|
-
}
|
|
6241
|
-
async function newViewsLayersOGCFeatureLayerView(properties) {
|
|
6242
|
-
const ModConstructor = await importViewsLayersOGCFeatureLayerView();
|
|
6243
|
-
return new ModConstructor(properties);
|
|
6244
|
-
}
|
|
6245
|
-
async function importViewsLayersPointCloudLayerView() {
|
|
6246
|
-
if (isAMD) {
|
|
6247
|
-
return await window.$arcgis.import("esri/views/layers/PointCloudLayerView");
|
|
6248
|
-
}
|
|
6249
|
-
const module = await import("@arcgis/core/views/layers/PointCloudLayerView.js");
|
|
6250
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6251
|
-
}
|
|
6252
|
-
async function newViewsLayersPointCloudLayerView(properties) {
|
|
6253
|
-
const ModConstructor = await importViewsLayersPointCloudLayerView();
|
|
6254
|
-
return new ModConstructor(properties);
|
|
6255
|
-
}
|
|
6256
6531
|
async function importViewsLayersSceneLayerView() {
|
|
6257
6532
|
if (isAMD) {
|
|
6258
6533
|
return await window.$arcgis.import("esri/views/layers/SceneLayerView");
|
|
@@ -6264,17 +6539,6 @@ async function newViewsLayersSceneLayerView(properties) {
|
|
|
6264
6539
|
const ModConstructor = await importViewsLayersSceneLayerView();
|
|
6265
6540
|
return new ModConstructor(properties);
|
|
6266
6541
|
}
|
|
6267
|
-
async function importViewsLayersStreamLayerView() {
|
|
6268
|
-
if (isAMD) {
|
|
6269
|
-
return await window.$arcgis.import("esri/views/layers/StreamLayerView");
|
|
6270
|
-
}
|
|
6271
|
-
const module = await import("@arcgis/core/views/layers/StreamLayerView.js");
|
|
6272
|
-
return isDefaultModule(module) ? module.default : module;
|
|
6273
|
-
}
|
|
6274
|
-
async function newViewsLayersStreamLayerView(properties) {
|
|
6275
|
-
const ModConstructor = await importViewsLayersStreamLayerView();
|
|
6276
|
-
return new ModConstructor(properties);
|
|
6277
|
-
}
|
|
6278
6542
|
async function importViewsLayersViewshedLayerView() {
|
|
6279
6543
|
if (isAMD) {
|
|
6280
6544
|
return await window.$arcgis.import("esri/views/layers/ViewshedLayerView");
|
|
@@ -7177,6 +7441,50 @@ async function newWidgetsBatchAttributeForm(properties) {
|
|
|
7177
7441
|
const ModConstructor = await importWidgetsBatchAttributeForm();
|
|
7178
7442
|
return new ModConstructor(properties);
|
|
7179
7443
|
}
|
|
7444
|
+
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
7445
|
+
if (isAMD) {
|
|
7446
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
7447
|
+
}
|
|
7448
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
7449
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7450
|
+
}
|
|
7451
|
+
async function newWidgetsBatchAttributeFormBatchAttributeFormViewModel(properties) {
|
|
7452
|
+
const ModConstructor = await importWidgetsBatchAttributeFormBatchAttributeFormViewModel();
|
|
7453
|
+
return new ModConstructor(properties);
|
|
7454
|
+
}
|
|
7455
|
+
async function importWidgetsBatchAttributeFormInputsBatchFormInputs() {
|
|
7456
|
+
if (isAMD) {
|
|
7457
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/BatchFormInputs");
|
|
7458
|
+
}
|
|
7459
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/BatchFormInputs.js");
|
|
7460
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7461
|
+
}
|
|
7462
|
+
async function newWidgetsBatchAttributeFormInputsBatchFormInputs(properties) {
|
|
7463
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsBatchFormInputs();
|
|
7464
|
+
return new ModConstructor(properties);
|
|
7465
|
+
}
|
|
7466
|
+
async function importWidgetsBatchAttributeFormInputsFieldInput() {
|
|
7467
|
+
if (isAMD) {
|
|
7468
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/FieldInput");
|
|
7469
|
+
}
|
|
7470
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/FieldInput.js");
|
|
7471
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7472
|
+
}
|
|
7473
|
+
async function newWidgetsBatchAttributeFormInputsFieldInput(properties) {
|
|
7474
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsFieldInput();
|
|
7475
|
+
return new ModConstructor(properties);
|
|
7476
|
+
}
|
|
7477
|
+
async function importWidgetsBatchAttributeFormInputsGroupInput() {
|
|
7478
|
+
if (isAMD) {
|
|
7479
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/GroupInput");
|
|
7480
|
+
}
|
|
7481
|
+
const module = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/GroupInput.js");
|
|
7482
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7483
|
+
}
|
|
7484
|
+
async function newWidgetsBatchAttributeFormInputsGroupInput(properties) {
|
|
7485
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsGroupInput();
|
|
7486
|
+
return new ModConstructor(properties);
|
|
7487
|
+
}
|
|
7180
7488
|
async function importWidgetsBookmarks() {
|
|
7181
7489
|
if (isAMD) {
|
|
7182
7490
|
return await window.$arcgis.import("esri/widgets/Bookmarks");
|
|
@@ -7496,6 +7804,28 @@ async function newWidgetsEditorEdits(properties) {
|
|
|
7496
7804
|
const ModConstructor = await importWidgetsEditorEdits();
|
|
7497
7805
|
return new ModConstructor(properties);
|
|
7498
7806
|
}
|
|
7807
|
+
async function importWidgetsEditorSplitFeatureWorkflow() {
|
|
7808
|
+
if (isAMD) {
|
|
7809
|
+
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflow");
|
|
7810
|
+
}
|
|
7811
|
+
const module = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflow.js");
|
|
7812
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7813
|
+
}
|
|
7814
|
+
async function newWidgetsEditorSplitFeatureWorkflow(properties) {
|
|
7815
|
+
const ModConstructor = await importWidgetsEditorSplitFeatureWorkflow();
|
|
7816
|
+
return new ModConstructor(properties);
|
|
7817
|
+
}
|
|
7818
|
+
async function importWidgetsEditorUpdateFeaturesWorkflow() {
|
|
7819
|
+
if (isAMD) {
|
|
7820
|
+
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflow");
|
|
7821
|
+
}
|
|
7822
|
+
const module = await import("@arcgis/core/widgets/Editor/UpdateFeaturesWorkflow.js");
|
|
7823
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7824
|
+
}
|
|
7825
|
+
async function newWidgetsEditorUpdateFeaturesWorkflow(properties) {
|
|
7826
|
+
const ModConstructor = await importWidgetsEditorUpdateFeaturesWorkflow();
|
|
7827
|
+
return new ModConstructor(properties);
|
|
7828
|
+
}
|
|
7499
7829
|
async function importWidgetsEditorUpdateFeaturesWorkflowData() {
|
|
7500
7830
|
if (isAMD) {
|
|
7501
7831
|
return await window.$arcgis.import("esri/widgets/Editor/UpdateFeaturesWorkflowData");
|
|
@@ -7859,39 +8189,6 @@ async function newWidgetsFeatureTableGridGroupColumn(properties) {
|
|
|
7859
8189
|
const ModConstructor = await importWidgetsFeatureTableGridGroupColumn();
|
|
7860
8190
|
return new ModConstructor(properties);
|
|
7861
8191
|
}
|
|
7862
|
-
async function importWidgetsFeatureTableGridSupportButtonMenu() {
|
|
7863
|
-
if (isAMD) {
|
|
7864
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/Grid/support/ButtonMenu");
|
|
7865
|
-
}
|
|
7866
|
-
const module = await import("@arcgis/core/widgets/FeatureTable/Grid/support/ButtonMenu.js");
|
|
7867
|
-
return isDefaultModule(module) ? module.default : module;
|
|
7868
|
-
}
|
|
7869
|
-
async function newWidgetsFeatureTableGridSupportButtonMenu(properties) {
|
|
7870
|
-
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenu();
|
|
7871
|
-
return new ModConstructor(properties);
|
|
7872
|
-
}
|
|
7873
|
-
async function importWidgetsFeatureTableGridSupportButtonMenuItem() {
|
|
7874
|
-
if (isAMD) {
|
|
7875
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/Grid/support/ButtonMenuItem");
|
|
7876
|
-
}
|
|
7877
|
-
const module = await import("@arcgis/core/widgets/FeatureTable/Grid/support/ButtonMenuItem.js");
|
|
7878
|
-
return isDefaultModule(module) ? module.default : module;
|
|
7879
|
-
}
|
|
7880
|
-
async function newWidgetsFeatureTableGridSupportButtonMenuItem(properties) {
|
|
7881
|
-
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenuItem();
|
|
7882
|
-
return new ModConstructor(properties);
|
|
7883
|
-
}
|
|
7884
|
-
async function importWidgetsFeatureTableGridSupportButtonMenuViewModel() {
|
|
7885
|
-
if (isAMD) {
|
|
7886
|
-
return await window.$arcgis.import("esri/widgets/FeatureTable/Grid/support/ButtonMenuViewModel");
|
|
7887
|
-
}
|
|
7888
|
-
const module = await import("@arcgis/core/widgets/FeatureTable/Grid/support/ButtonMenuViewModel.js");
|
|
7889
|
-
return isDefaultModule(module) ? module.default : module;
|
|
7890
|
-
}
|
|
7891
|
-
async function newWidgetsFeatureTableGridSupportButtonMenuViewModel(properties) {
|
|
7892
|
-
const ModConstructor = await importWidgetsFeatureTableGridSupportButtonMenuViewModel();
|
|
7893
|
-
return new ModConstructor(properties);
|
|
7894
|
-
}
|
|
7895
8192
|
async function importWidgetsFeatureTableSupportAttachmentsColumnTemplate() {
|
|
7896
8193
|
if (isAMD) {
|
|
7897
8194
|
return await window.$arcgis.import("esri/widgets/FeatureTable/support/AttachmentsColumnTemplate");
|
|
@@ -9378,13 +9675,6 @@ async function importGeometryGeometryEngineAsync() {
|
|
|
9378
9675
|
const module = await import("@arcgis/core/geometry/geometryEngineAsync.js");
|
|
9379
9676
|
return isDefaultModule(module) ? module.default : module;
|
|
9380
9677
|
}
|
|
9381
|
-
async function importGeometryProjection() {
|
|
9382
|
-
if (isAMD) {
|
|
9383
|
-
return await window.$arcgis.import("esri/geometry/projection");
|
|
9384
|
-
}
|
|
9385
|
-
const module = await import("@arcgis/core/geometry/projection.js");
|
|
9386
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9387
|
-
}
|
|
9388
9678
|
async function importGeometryOperatorsAffineTransformOperator() {
|
|
9389
9679
|
if (isAMD) {
|
|
9390
9680
|
return await window.$arcgis.import("esri/geometry/operators/affineTransformOperator");
|
|
@@ -9560,6 +9850,13 @@ async function importGeometryOperatorsGeodeticLengthOperator() {
|
|
|
9560
9850
|
const module = await import("@arcgis/core/geometry/operators/geodeticLengthOperator.js");
|
|
9561
9851
|
return isDefaultModule(module) ? module.default : module;
|
|
9562
9852
|
}
|
|
9853
|
+
async function importGeometryOperatorsGeodeticUtilsOperator() {
|
|
9854
|
+
if (isAMD) {
|
|
9855
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticUtilsOperator");
|
|
9856
|
+
}
|
|
9857
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticUtilsOperator.js");
|
|
9858
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9859
|
+
}
|
|
9563
9860
|
async function importGeometryOperatorsGraphicBufferOperator() {
|
|
9564
9861
|
if (isAMD) {
|
|
9565
9862
|
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
@@ -10008,6 +10305,13 @@ async function importRestKnowledgeGraphService() {
|
|
|
10008
10305
|
const module = await import("@arcgis/core/rest/knowledgeGraphService.js");
|
|
10009
10306
|
return isDefaultModule(module) ? module.default : module;
|
|
10010
10307
|
}
|
|
10308
|
+
async function importRestLastMileDelivery() {
|
|
10309
|
+
if (isAMD) {
|
|
10310
|
+
return await window.$arcgis.import("esri/rest/lastMileDelivery");
|
|
10311
|
+
}
|
|
10312
|
+
const module = await import("@arcgis/core/rest/lastMileDelivery.js");
|
|
10313
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10314
|
+
}
|
|
10011
10315
|
async function importRestLocator() {
|
|
10012
10316
|
if (isAMD) {
|
|
10013
10317
|
return await window.$arcgis.import("esri/rest/locator");
|
|
@@ -10512,6 +10816,13 @@ async function importVersionManagementVersionAdaptersUtils() {
|
|
|
10512
10816
|
const module = await import("@arcgis/core/versionManagement/versionAdapters/utils.js");
|
|
10513
10817
|
return isDefaultModule(module) ? module.default : module;
|
|
10514
10818
|
}
|
|
10819
|
+
async function importViews3dWebgl() {
|
|
10820
|
+
if (isAMD) {
|
|
10821
|
+
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
10822
|
+
}
|
|
10823
|
+
const module = await import("@arcgis/core/views/3d/webgl.js");
|
|
10824
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10825
|
+
}
|
|
10515
10826
|
async function importViews3dWebglManagedFBO() {
|
|
10516
10827
|
if (isAMD) {
|
|
10517
10828
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -10526,13 +10837,6 @@ async function importViews3dWebglRenderCamera() {
|
|
|
10526
10837
|
const module = await import("@arcgis/core/views/3d/webgl/RenderCamera.js");
|
|
10527
10838
|
return isDefaultModule(module) ? module.default : module;
|
|
10528
10839
|
}
|
|
10529
|
-
async function importViews3dWebgl() {
|
|
10530
|
-
if (isAMD) {
|
|
10531
|
-
return await window.$arcgis.import("esri/views/3d/webgl");
|
|
10532
|
-
}
|
|
10533
|
-
const module = await import("@arcgis/core/views/3d/webgl.js");
|
|
10534
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10535
|
-
}
|
|
10536
10840
|
async function importViews3dSupportLayerPerformanceInfo() {
|
|
10537
10841
|
if (isAMD) {
|
|
10538
10842
|
return await window.$arcgis.import("esri/views/3d/support/LayerPerformanceInfo");
|
|
@@ -10561,11 +10865,11 @@ async function importViewsSupportColorUtils() {
|
|
|
10561
10865
|
const module = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10562
10866
|
return isDefaultModule(module) ? module.default : module;
|
|
10563
10867
|
}
|
|
10564
|
-
async function
|
|
10868
|
+
async function importWidgetsEditorSplitFeatureWorkflowData() {
|
|
10565
10869
|
if (isAMD) {
|
|
10566
|
-
return await window.$arcgis.import("esri/widgets/
|
|
10870
|
+
return await window.$arcgis.import("esri/widgets/Editor/SplitFeatureWorkflowData");
|
|
10567
10871
|
}
|
|
10568
|
-
const module = await import("@arcgis/core/widgets/
|
|
10872
|
+
const module = await import("@arcgis/core/widgets/Editor/SplitFeatureWorkflowData.js");
|
|
10569
10873
|
return isDefaultModule(module) ? module.default : module;
|
|
10570
10874
|
}
|
|
10571
10875
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
@@ -10582,6 +10886,13 @@ async function importWidgetsSupportWidget() {
|
|
|
10582
10886
|
const module = await import("@arcgis/core/widgets/support/widget.js");
|
|
10583
10887
|
return isDefaultModule(module) ? module.default : module;
|
|
10584
10888
|
}
|
|
10889
|
+
async function importApplicationsComponentsActionUtils() {
|
|
10890
|
+
if (isAMD) {
|
|
10891
|
+
return await window.$arcgis.import("esri/applications/Components/actionUtils");
|
|
10892
|
+
}
|
|
10893
|
+
const module = await import("@arcgis/core/applications/Components/actionUtils.js");
|
|
10894
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10895
|
+
}
|
|
10585
10896
|
async function importApplicationsComponentsAnalysisUtils() {
|
|
10586
10897
|
if (isAMD) {
|
|
10587
10898
|
return await window.$arcgis.import("esri/applications/Components/analysisUtils");
|
|
@@ -10589,6 +10900,20 @@ async function importApplicationsComponentsAnalysisUtils() {
|
|
|
10589
10900
|
const module = await import("@arcgis/core/applications/Components/analysisUtils.js");
|
|
10590
10901
|
return isDefaultModule(module) ? module.default : module;
|
|
10591
10902
|
}
|
|
10903
|
+
async function importApplicationsComponentsArcadeEditorUtils() {
|
|
10904
|
+
if (isAMD) {
|
|
10905
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeEditorUtils");
|
|
10906
|
+
}
|
|
10907
|
+
const module = await import("@arcgis/core/applications/Components/arcadeEditorUtils.js");
|
|
10908
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10909
|
+
}
|
|
10910
|
+
async function importApplicationsComponentsArcadeFeatureUtils() {
|
|
10911
|
+
if (isAMD) {
|
|
10912
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeFeatureUtils");
|
|
10913
|
+
}
|
|
10914
|
+
const module = await import("@arcgis/core/applications/Components/arcadeFeatureUtils.js");
|
|
10915
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10916
|
+
}
|
|
10592
10917
|
async function importApplicationsComponentsBasemapUtils() {
|
|
10593
10918
|
if (isAMD) {
|
|
10594
10919
|
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
@@ -10603,6 +10928,13 @@ async function importApplicationsComponentsDrawUtils() {
|
|
|
10603
10928
|
const module = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
10604
10929
|
return isDefaultModule(module) ? module.default : module;
|
|
10605
10930
|
}
|
|
10931
|
+
async function importApplicationsComponentsFeatureUtils() {
|
|
10932
|
+
if (isAMD) {
|
|
10933
|
+
return await window.$arcgis.import("esri/applications/Components/featureUtils");
|
|
10934
|
+
}
|
|
10935
|
+
const module = await import("@arcgis/core/applications/Components/featureUtils.js");
|
|
10936
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10937
|
+
}
|
|
10606
10938
|
async function importApplicationsComponentsFontUtils() {
|
|
10607
10939
|
if (isAMD) {
|
|
10608
10940
|
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
@@ -10610,6 +10942,13 @@ async function importApplicationsComponentsFontUtils() {
|
|
|
10610
10942
|
const module = await import("@arcgis/core/applications/Components/fontUtils.js");
|
|
10611
10943
|
return isDefaultModule(module) ? module.default : module;
|
|
10612
10944
|
}
|
|
10945
|
+
async function importApplicationsComponentsFormatUtils() {
|
|
10946
|
+
if (isAMD) {
|
|
10947
|
+
return await window.$arcgis.import("esri/applications/Components/formatUtils");
|
|
10948
|
+
}
|
|
10949
|
+
const module = await import("@arcgis/core/applications/Components/formatUtils.js");
|
|
10950
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10951
|
+
}
|
|
10613
10952
|
async function importApplicationsComponentsGetDefaultUnits() {
|
|
10614
10953
|
if (isAMD) {
|
|
10615
10954
|
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
@@ -10624,6 +10963,13 @@ async function importApplicationsComponentsGfxUtils() {
|
|
|
10624
10963
|
const module = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
10625
10964
|
return isDefaultModule(module) ? module.default : module;
|
|
10626
10965
|
}
|
|
10966
|
+
async function importApplicationsComponentsImageryUtils() {
|
|
10967
|
+
if (isAMD) {
|
|
10968
|
+
return await window.$arcgis.import("esri/applications/Components/imageryUtils");
|
|
10969
|
+
}
|
|
10970
|
+
const module = await import("@arcgis/core/applications/Components/imageryUtils.js");
|
|
10971
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10972
|
+
}
|
|
10627
10973
|
async function importApplicationsComponentsLayerOriginUtils() {
|
|
10628
10974
|
if (isAMD) {
|
|
10629
10975
|
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
@@ -10652,6 +10998,13 @@ async function importApplicationsComponentsReactiveUtils() {
|
|
|
10652
10998
|
const module = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10653
10999
|
return isDefaultModule(module) ? module.default : module;
|
|
10654
11000
|
}
|
|
11001
|
+
async function importApplicationsComponentsSanitizerUtils() {
|
|
11002
|
+
if (isAMD) {
|
|
11003
|
+
return await window.$arcgis.import("esri/applications/Components/sanitizerUtils");
|
|
11004
|
+
}
|
|
11005
|
+
const module = await import("@arcgis/core/applications/Components/sanitizerUtils.js");
|
|
11006
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11007
|
+
}
|
|
10655
11008
|
async function importApplicationsComponentsSelectionOperation() {
|
|
10656
11009
|
if (isAMD) {
|
|
10657
11010
|
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
@@ -10666,6 +11019,13 @@ async function importApplicationsComponentsSketchTooltipControls() {
|
|
|
10666
11019
|
const module = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10667
11020
|
return isDefaultModule(module) ? module.default : module;
|
|
10668
11021
|
}
|
|
11022
|
+
async function importApplicationsComponentsStringUtils() {
|
|
11023
|
+
if (isAMD) {
|
|
11024
|
+
return await window.$arcgis.import("esri/applications/Components/stringUtils");
|
|
11025
|
+
}
|
|
11026
|
+
const module = await import("@arcgis/core/applications/Components/stringUtils.js");
|
|
11027
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11028
|
+
}
|
|
10669
11029
|
async function importApplicationsComponentsStyleUtils() {
|
|
10670
11030
|
if (isAMD) {
|
|
10671
11031
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -10728,6 +11088,16 @@ export {
|
|
|
10728
11088
|
importAnalysisDimensionAnalysis,
|
|
10729
11089
|
importAnalysisDimensionSimpleStyle,
|
|
10730
11090
|
importAnalysisDirectLineMeasurementAnalysis,
|
|
11091
|
+
importAnalysisElevationProfileAnalysis,
|
|
11092
|
+
importAnalysisElevationProfileElevationProfileDisplayUnits,
|
|
11093
|
+
importAnalysisElevationProfileElevationProfileLine,
|
|
11094
|
+
importAnalysisElevationProfileElevationProfileLineChartOptions,
|
|
11095
|
+
importAnalysisElevationProfileElevationProfileLineGround,
|
|
11096
|
+
importAnalysisElevationProfileElevationProfileLineInput,
|
|
11097
|
+
importAnalysisElevationProfileElevationProfileLineQuery,
|
|
11098
|
+
importAnalysisElevationProfileElevationProfileLineScene,
|
|
11099
|
+
importAnalysisElevationProfileElevationProfileLineViewOptions,
|
|
11100
|
+
importAnalysisElevationProfileElevationProfileViewOptions,
|
|
10731
11101
|
importAnalysisLengthDimension,
|
|
10732
11102
|
importAnalysisLineOfSightAnalysis,
|
|
10733
11103
|
importAnalysisLineOfSightAnalysisObserver,
|
|
@@ -10737,18 +11107,30 @@ export {
|
|
|
10737
11107
|
importAnalysisSupportAnalysisOriginWebScene,
|
|
10738
11108
|
importAnalysisViewshed,
|
|
10739
11109
|
importAnalysisViewshedAnalysis,
|
|
11110
|
+
importAnalysisVolumeMeasurementAnalysis,
|
|
11111
|
+
importAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions,
|
|
11112
|
+
importAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits,
|
|
11113
|
+
importAnalysisVolumeMeasurementVolumeMeasurementInputUnits,
|
|
11114
|
+
importApplicationsComponentsActionUtils,
|
|
10740
11115
|
importApplicationsComponentsAnalysisUtils,
|
|
11116
|
+
importApplicationsComponentsArcadeEditorUtils,
|
|
11117
|
+
importApplicationsComponentsArcadeFeatureUtils,
|
|
10741
11118
|
importApplicationsComponentsBasemapUtils,
|
|
10742
11119
|
importApplicationsComponentsDrawUtils,
|
|
11120
|
+
importApplicationsComponentsFeatureUtils,
|
|
10743
11121
|
importApplicationsComponentsFontUtils,
|
|
11122
|
+
importApplicationsComponentsFormatUtils,
|
|
10744
11123
|
importApplicationsComponentsGetDefaultUnits,
|
|
10745
11124
|
importApplicationsComponentsGfxUtils,
|
|
11125
|
+
importApplicationsComponentsImageryUtils,
|
|
10746
11126
|
importApplicationsComponentsLayerOriginUtils,
|
|
10747
11127
|
importApplicationsComponentsLayersEffectsJsonUtils,
|
|
10748
11128
|
importApplicationsComponentsPreviewSymbol2D,
|
|
10749
11129
|
importApplicationsComponentsReactiveUtils,
|
|
11130
|
+
importApplicationsComponentsSanitizerUtils,
|
|
10750
11131
|
importApplicationsComponentsSelectionOperation,
|
|
10751
11132
|
importApplicationsComponentsSketchTooltipControls,
|
|
11133
|
+
importApplicationsComponentsStringUtils,
|
|
10752
11134
|
importApplicationsComponentsStyleUtils,
|
|
10753
11135
|
importApplicationsComponentsSvgUtils,
|
|
10754
11136
|
importApplicationsComponentsViewUtils,
|
|
@@ -10845,6 +11227,7 @@ export {
|
|
|
10845
11227
|
importGeometryOperatorsGeodeticDensifyOperator,
|
|
10846
11228
|
importGeometryOperatorsGeodeticDistanceOperator,
|
|
10847
11229
|
importGeometryOperatorsGeodeticLengthOperator,
|
|
11230
|
+
importGeometryOperatorsGeodeticUtilsOperator,
|
|
10848
11231
|
importGeometryOperatorsGraphicBufferOperator,
|
|
10849
11232
|
importGeometryOperatorsIntegrateOperator,
|
|
10850
11233
|
importGeometryOperatorsIntersectionOperator,
|
|
@@ -10878,11 +11261,8 @@ export {
|
|
|
10878
11261
|
importGeometryPoint,
|
|
10879
11262
|
importGeometryPolygon,
|
|
10880
11263
|
importGeometryPolyline,
|
|
10881
|
-
importGeometryProjection,
|
|
10882
11264
|
importGeometrySpatialReference,
|
|
10883
11265
|
importGeometrySupportGeodesicUtils,
|
|
10884
|
-
importGeometrySupportGeographicTransformation,
|
|
10885
|
-
importGeometrySupportGeographicTransformationStep,
|
|
10886
11266
|
importGeometrySupportJsonUtils,
|
|
10887
11267
|
importGeometrySupportMeshComponent,
|
|
10888
11268
|
importGeometrySupportMeshGeoreferencedVertexSpace,
|
|
@@ -10896,6 +11276,8 @@ export {
|
|
|
10896
11276
|
importGeometrySupportNormalizeUtils,
|
|
10897
11277
|
importGeometrySupportWebMercatorUtils,
|
|
10898
11278
|
importGraphic,
|
|
11279
|
+
importGraphicGraphicOrigin,
|
|
11280
|
+
importGraphicVectorTileGraphicOrigin,
|
|
10899
11281
|
importGround,
|
|
10900
11282
|
importIdentityCredential,
|
|
10901
11283
|
importIdentityIdentityManager,
|
|
@@ -10961,6 +11343,7 @@ export {
|
|
|
10961
11343
|
importLayersSupportControlPointsGeoreference,
|
|
10962
11344
|
importLayersSupportCornersGeoreference,
|
|
10963
11345
|
importLayersSupportCsvUtils,
|
|
11346
|
+
importLayersSupportDateTimeFieldFormat,
|
|
10964
11347
|
importLayersSupportDimensionalDefinition,
|
|
10965
11348
|
importLayersSupportDisplayFilter,
|
|
10966
11349
|
importLayersSupportDisplayFilterInfo,
|
|
@@ -10977,6 +11360,7 @@ export {
|
|
|
10977
11360
|
importLayersSupportFeatureTemplate,
|
|
10978
11361
|
importLayersSupportFeatureType,
|
|
10979
11362
|
importLayersSupportField,
|
|
11363
|
+
importLayersSupportFieldConfiguration,
|
|
10980
11364
|
importLayersSupportFieldUtils,
|
|
10981
11365
|
importLayersSupportFieldsIndex,
|
|
10982
11366
|
importLayersSupportGeometryFieldsInfo,
|
|
@@ -10991,11 +11375,13 @@ export {
|
|
|
10991
11375
|
importLayersSupportMapImage,
|
|
10992
11376
|
importLayersSupportMosaicRule,
|
|
10993
11377
|
importLayersSupportMultidimensionalSubset,
|
|
11378
|
+
importLayersSupportNumberFieldFormat,
|
|
10994
11379
|
importLayersSupportOrderByInfo,
|
|
10995
11380
|
importLayersSupportParquetEncodingLocation,
|
|
10996
11381
|
importLayersSupportParquetEncodingWkb,
|
|
10997
11382
|
importLayersSupportParquetUtils,
|
|
10998
11383
|
importLayersSupportPixelBlock,
|
|
11384
|
+
importLayersSupportPlaybackInfo,
|
|
10999
11385
|
importLayersSupportPublishingInfo,
|
|
11000
11386
|
importLayersSupportRangeDomain,
|
|
11001
11387
|
importLayersSupportRasterBandInfo,
|
|
@@ -11156,10 +11542,15 @@ export {
|
|
|
11156
11542
|
importRestKnowledgeGraphEntity,
|
|
11157
11543
|
importRestKnowledgeGraphEntityType,
|
|
11158
11544
|
importRestKnowledgeGraphFieldIndex,
|
|
11545
|
+
importRestKnowledgeGraphGraphAddFieldIndexResult,
|
|
11159
11546
|
importRestKnowledgeGraphGraphAddNamedTypesResult,
|
|
11547
|
+
importRestKnowledgeGraphGraphAddPropertyResult,
|
|
11160
11548
|
importRestKnowledgeGraphGraphApplyEdits,
|
|
11161
11549
|
importRestKnowledgeGraphGraphApplyEditsResult,
|
|
11550
|
+
importRestKnowledgeGraphGraphDataModelOperationResult,
|
|
11551
|
+
importRestKnowledgeGraphGraphDeleteFieldIndexResult,
|
|
11162
11552
|
importRestKnowledgeGraphGraphDeleteNamedTypeResult,
|
|
11553
|
+
importRestKnowledgeGraphGraphDeletePropertyResult,
|
|
11163
11554
|
importRestKnowledgeGraphGraphNamedObject,
|
|
11164
11555
|
importRestKnowledgeGraphGraphObject,
|
|
11165
11556
|
importRestKnowledgeGraphGraphObjectType,
|
|
@@ -11171,6 +11562,9 @@ export {
|
|
|
11171
11562
|
importRestKnowledgeGraphGraphQueryStreamingResult,
|
|
11172
11563
|
importRestKnowledgeGraphGraphSearch,
|
|
11173
11564
|
importRestKnowledgeGraphGraphSearchStreaming,
|
|
11565
|
+
importRestKnowledgeGraphGraphUpdateNamedTypesResult,
|
|
11566
|
+
importRestKnowledgeGraphGraphUpdatePropertyResult,
|
|
11567
|
+
importRestKnowledgeGraphGraphUpdateSearchIndexResult,
|
|
11174
11568
|
importRestKnowledgeGraphInputQuantizationParameters,
|
|
11175
11569
|
importRestKnowledgeGraphKnowledgeGraph,
|
|
11176
11570
|
importRestKnowledgeGraphOutputQuantizationParameters,
|
|
@@ -11186,6 +11580,7 @@ export {
|
|
|
11186
11580
|
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter,
|
|
11187
11581
|
importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection,
|
|
11188
11582
|
importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings,
|
|
11583
|
+
importRestLastMileDelivery,
|
|
11189
11584
|
importRestLocator,
|
|
11190
11585
|
importRestNetworkService,
|
|
11191
11586
|
importRestNetworksQueryAssociations,
|
|
@@ -11282,6 +11677,7 @@ export {
|
|
|
11282
11677
|
importRestSupportImageVolumeParameters,
|
|
11283
11678
|
importRestSupportImageVolumeResult,
|
|
11284
11679
|
importRestSupportJobInfo,
|
|
11680
|
+
importRestSupportLastMileDeliveryParameters,
|
|
11285
11681
|
importRestSupportLegendLayer,
|
|
11286
11682
|
importRestSupportLengthsParameters,
|
|
11287
11683
|
importRestSupportLinearUnit,
|
|
@@ -11432,8 +11828,6 @@ export {
|
|
|
11432
11828
|
importTablesElementsAttributeTableFieldElement,
|
|
11433
11829
|
importTablesElementsAttributeTableGroupElement,
|
|
11434
11830
|
importTablesElementsAttributeTableRelationshipElement,
|
|
11435
|
-
importTimeExtent,
|
|
11436
|
-
importTimeInterval,
|
|
11437
11831
|
importTimeTimeExtent,
|
|
11438
11832
|
importTimeTimeInterval,
|
|
11439
11833
|
importVersionManagementUtils,
|
|
@@ -11441,16 +11835,21 @@ export {
|
|
|
11441
11835
|
importVersionManagementVersionManagementService,
|
|
11442
11836
|
importVersionManagementVersioningState,
|
|
11443
11837
|
importViewpoint,
|
|
11838
|
+
importViews2dAnalysisElevationProfileAnalysisView2D,
|
|
11444
11839
|
importViews2dLayersBaseLayerView2D,
|
|
11445
11840
|
importViews2dLayersBaseLayerViewGL2D,
|
|
11446
11841
|
importViews2dViewState,
|
|
11447
11842
|
importViews3dAnalysisAreaMeasurementAnalysisView3D,
|
|
11448
11843
|
importViews3dAnalysisDimensionAnalysisView3D,
|
|
11449
11844
|
importViews3dAnalysisDirectLineMeasurementAnalysisView3D,
|
|
11845
|
+
importViews3dAnalysisElevationProfileAnalysisView3D,
|
|
11450
11846
|
importViews3dAnalysisLineOfSightAnalysisResult,
|
|
11451
11847
|
importViews3dAnalysisLineOfSightAnalysisView3D,
|
|
11452
11848
|
importViews3dAnalysisSliceAnalysisView3D,
|
|
11453
11849
|
importViews3dAnalysisViewshedAnalysisView3D,
|
|
11850
|
+
importViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
11851
|
+
importViews3dAnalysisVolumeMeasurementVolumeMeasurementError,
|
|
11852
|
+
importViews3dAnalysisVolumeMeasurementVolumeMeasurementResult,
|
|
11454
11853
|
importViews3dEnvironmentCloudyWeather,
|
|
11455
11854
|
importViews3dEnvironmentFoggyWeather,
|
|
11456
11855
|
importViews3dEnvironmentRainyWeather,
|
|
@@ -11464,6 +11863,7 @@ export {
|
|
|
11464
11863
|
importViews3dWebglManagedFBO,
|
|
11465
11864
|
importViews3dWebglRenderCamera,
|
|
11466
11865
|
importViews3dWebglRenderNode,
|
|
11866
|
+
importViewsAnalysisElevationProfileElevationProfileResult,
|
|
11467
11867
|
importViewsAnalysisLengthDimensionResult,
|
|
11468
11868
|
importViewsBasemapView,
|
|
11469
11869
|
importViewsDrawDraw,
|
|
@@ -11485,21 +11885,14 @@ export {
|
|
|
11485
11885
|
importViewsInteractiveTooltip,
|
|
11486
11886
|
importViewsLayersBuildingComponentSublayerView,
|
|
11487
11887
|
importViewsLayersBuildingSceneLayerView,
|
|
11488
|
-
importViewsLayersCatalogDynamicGroupLayerView,
|
|
11489
|
-
importViewsLayersCatalogFootprintLayerView,
|
|
11490
|
-
importViewsLayersCatalogLayerView,
|
|
11491
11888
|
importViewsLayersDimensionLayerView,
|
|
11492
|
-
importViewsLayersFeatureLayerView,
|
|
11493
11889
|
importViewsLayersGroupLayerView,
|
|
11494
11890
|
importViewsLayersImageryLayerView,
|
|
11495
11891
|
importViewsLayersImageryTileLayerView,
|
|
11496
11892
|
importViewsLayersLayerView,
|
|
11497
11893
|
importViewsLayersLineOfSightLayerView,
|
|
11498
11894
|
importViewsLayersMediaLayerView,
|
|
11499
|
-
importViewsLayersOGCFeatureLayerView,
|
|
11500
|
-
importViewsLayersPointCloudLayerView,
|
|
11501
11895
|
importViewsLayersSceneLayerView,
|
|
11502
|
-
importViewsLayersStreamLayerView,
|
|
11503
11896
|
importViewsLayersViewshedLayerView,
|
|
11504
11897
|
importViewsLinkChartView,
|
|
11505
11898
|
importViewsMagnifier,
|
|
@@ -11584,6 +11977,9 @@ export {
|
|
|
11584
11977
|
importWidgetsBasemapToggleBasemapToggleViewModel,
|
|
11585
11978
|
importWidgetsBatchAttributeForm,
|
|
11586
11979
|
importWidgetsBatchAttributeFormBatchAttributeFormViewModel,
|
|
11980
|
+
importWidgetsBatchAttributeFormInputsBatchFormInputs,
|
|
11981
|
+
importWidgetsBatchAttributeFormInputsFieldInput,
|
|
11982
|
+
importWidgetsBatchAttributeFormInputsGroupInput,
|
|
11587
11983
|
importWidgetsBookmarks,
|
|
11588
11984
|
importWidgetsBookmarksBookmarksViewModel,
|
|
11589
11985
|
importWidgetsBuildingExplorer,
|
|
@@ -11613,7 +12009,10 @@ export {
|
|
|
11613
12009
|
importWidgetsEditorCreateFeaturesWorkflowData,
|
|
11614
12010
|
importWidgetsEditorEditorViewModel,
|
|
11615
12011
|
importWidgetsEditorEdits,
|
|
12012
|
+
importWidgetsEditorSplitFeatureWorkflow,
|
|
12013
|
+
importWidgetsEditorSplitFeatureWorkflowData,
|
|
11616
12014
|
importWidgetsEditorSupportEditorItem,
|
|
12015
|
+
importWidgetsEditorUpdateFeaturesWorkflow,
|
|
11617
12016
|
importWidgetsEditorUpdateFeaturesWorkflowData,
|
|
11618
12017
|
importWidgetsEditorUpdateWorkflow,
|
|
11619
12018
|
importWidgetsEditorUpdateWorkflowData,
|
|
@@ -11643,9 +12042,6 @@ export {
|
|
|
11643
12042
|
importWidgetsFeatureTableFieldColumn,
|
|
11644
12043
|
importWidgetsFeatureTableGridColumn,
|
|
11645
12044
|
importWidgetsFeatureTableGridGroupColumn,
|
|
11646
|
-
importWidgetsFeatureTableGridSupportButtonMenu,
|
|
11647
|
-
importWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
11648
|
-
importWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
11649
12045
|
importWidgetsFeatureTableRelationshipColumn,
|
|
11650
12046
|
importWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
11651
12047
|
importWidgetsFeatureTableSupportAttachmentsViewOptions,
|
|
@@ -11780,6 +12176,16 @@ export {
|
|
|
11780
12176
|
newAnalysisDimensionAnalysis,
|
|
11781
12177
|
newAnalysisDimensionSimpleStyle,
|
|
11782
12178
|
newAnalysisDirectLineMeasurementAnalysis,
|
|
12179
|
+
newAnalysisElevationProfileAnalysis,
|
|
12180
|
+
newAnalysisElevationProfileElevationProfileDisplayUnits,
|
|
12181
|
+
newAnalysisElevationProfileElevationProfileLine,
|
|
12182
|
+
newAnalysisElevationProfileElevationProfileLineChartOptions,
|
|
12183
|
+
newAnalysisElevationProfileElevationProfileLineGround,
|
|
12184
|
+
newAnalysisElevationProfileElevationProfileLineInput,
|
|
12185
|
+
newAnalysisElevationProfileElevationProfileLineQuery,
|
|
12186
|
+
newAnalysisElevationProfileElevationProfileLineScene,
|
|
12187
|
+
newAnalysisElevationProfileElevationProfileLineViewOptions,
|
|
12188
|
+
newAnalysisElevationProfileElevationProfileViewOptions,
|
|
11783
12189
|
newAnalysisLengthDimension,
|
|
11784
12190
|
newAnalysisLineOfSightAnalysis,
|
|
11785
12191
|
newAnalysisLineOfSightAnalysisObserver,
|
|
@@ -11789,6 +12195,10 @@ export {
|
|
|
11789
12195
|
newAnalysisSupportAnalysisOriginWebScene,
|
|
11790
12196
|
newAnalysisViewshed,
|
|
11791
12197
|
newAnalysisViewshedAnalysis,
|
|
12198
|
+
newAnalysisVolumeMeasurementAnalysis,
|
|
12199
|
+
newAnalysisVolumeMeasurementVolumeMeasurementCutFillOptions,
|
|
12200
|
+
newAnalysisVolumeMeasurementVolumeMeasurementDisplayUnits,
|
|
12201
|
+
newAnalysisVolumeMeasurementVolumeMeasurementInputUnits,
|
|
11792
12202
|
newAttributeBinsGraphic,
|
|
11793
12203
|
newBasemap,
|
|
11794
12204
|
newCamera,
|
|
@@ -11840,8 +12250,6 @@ export {
|
|
|
11840
12250
|
newGeometryPolygon,
|
|
11841
12251
|
newGeometryPolyline,
|
|
11842
12252
|
newGeometrySpatialReference,
|
|
11843
|
-
newGeometrySupportGeographicTransformation,
|
|
11844
|
-
newGeometrySupportGeographicTransformationStep,
|
|
11845
12253
|
newGeometrySupportMeshComponent,
|
|
11846
12254
|
newGeometrySupportMeshGeoreferencedVertexSpace,
|
|
11847
12255
|
newGeometrySupportMeshLocalVertexSpace,
|
|
@@ -11851,6 +12259,8 @@ export {
|
|
|
11851
12259
|
newGeometrySupportMeshTextureTransform,
|
|
11852
12260
|
newGeometrySupportMeshTransform,
|
|
11853
12261
|
newGraphic,
|
|
12262
|
+
newGraphicGraphicOrigin,
|
|
12263
|
+
newGraphicVectorTileGraphicOrigin,
|
|
11854
12264
|
newGround,
|
|
11855
12265
|
newIdentityCredential,
|
|
11856
12266
|
newIdentityOAuthInfo,
|
|
@@ -11906,6 +12316,7 @@ export {
|
|
|
11906
12316
|
newLayersSupportCodedValueDomain,
|
|
11907
12317
|
newLayersSupportControlPointsGeoreference,
|
|
11908
12318
|
newLayersSupportCornersGeoreference,
|
|
12319
|
+
newLayersSupportDateTimeFieldFormat,
|
|
11909
12320
|
newLayersSupportDimensionalDefinition,
|
|
11910
12321
|
newLayersSupportDisplayFilter,
|
|
11911
12322
|
newLayersSupportDisplayFilterInfo,
|
|
@@ -11922,6 +12333,7 @@ export {
|
|
|
11922
12333
|
newLayersSupportFeatureTemplate,
|
|
11923
12334
|
newLayersSupportFeatureType,
|
|
11924
12335
|
newLayersSupportField,
|
|
12336
|
+
newLayersSupportFieldConfiguration,
|
|
11925
12337
|
newLayersSupportFieldsIndex,
|
|
11926
12338
|
newLayersSupportGeometryFieldsInfo,
|
|
11927
12339
|
newLayersSupportImageElement,
|
|
@@ -11935,10 +12347,12 @@ export {
|
|
|
11935
12347
|
newLayersSupportMapImage,
|
|
11936
12348
|
newLayersSupportMosaicRule,
|
|
11937
12349
|
newLayersSupportMultidimensionalSubset,
|
|
12350
|
+
newLayersSupportNumberFieldFormat,
|
|
11938
12351
|
newLayersSupportOrderByInfo,
|
|
11939
12352
|
newLayersSupportParquetEncodingLocation,
|
|
11940
12353
|
newLayersSupportParquetEncodingWkb,
|
|
11941
12354
|
newLayersSupportPixelBlock,
|
|
12355
|
+
newLayersSupportPlaybackInfo,
|
|
11942
12356
|
newLayersSupportPublishingInfo,
|
|
11943
12357
|
newLayersSupportRangeDomain,
|
|
11944
12358
|
newLayersSupportRasterBandInfo,
|
|
@@ -12079,10 +12493,15 @@ export {
|
|
|
12079
12493
|
newRestKnowledgeGraphEntity,
|
|
12080
12494
|
newRestKnowledgeGraphEntityType,
|
|
12081
12495
|
newRestKnowledgeGraphFieldIndex,
|
|
12496
|
+
newRestKnowledgeGraphGraphAddFieldIndexResult,
|
|
12082
12497
|
newRestKnowledgeGraphGraphAddNamedTypesResult,
|
|
12498
|
+
newRestKnowledgeGraphGraphAddPropertyResult,
|
|
12083
12499
|
newRestKnowledgeGraphGraphApplyEdits,
|
|
12084
12500
|
newRestKnowledgeGraphGraphApplyEditsResult,
|
|
12501
|
+
newRestKnowledgeGraphGraphDataModelOperationResult,
|
|
12502
|
+
newRestKnowledgeGraphGraphDeleteFieldIndexResult,
|
|
12085
12503
|
newRestKnowledgeGraphGraphDeleteNamedTypeResult,
|
|
12504
|
+
newRestKnowledgeGraphGraphDeletePropertyResult,
|
|
12086
12505
|
newRestKnowledgeGraphGraphNamedObject,
|
|
12087
12506
|
newRestKnowledgeGraphGraphObject,
|
|
12088
12507
|
newRestKnowledgeGraphGraphObjectType,
|
|
@@ -12094,6 +12513,9 @@ export {
|
|
|
12094
12513
|
newRestKnowledgeGraphGraphQueryStreamingResult,
|
|
12095
12514
|
newRestKnowledgeGraphGraphSearch,
|
|
12096
12515
|
newRestKnowledgeGraphGraphSearchStreaming,
|
|
12516
|
+
newRestKnowledgeGraphGraphUpdateNamedTypesResult,
|
|
12517
|
+
newRestKnowledgeGraphGraphUpdatePropertyResult,
|
|
12518
|
+
newRestKnowledgeGraphGraphUpdateSearchIndexResult,
|
|
12097
12519
|
newRestKnowledgeGraphInputQuantizationParameters,
|
|
12098
12520
|
newRestKnowledgeGraphKnowledgeGraph,
|
|
12099
12521
|
newRestKnowledgeGraphOutputQuantizationParameters,
|
|
@@ -12193,6 +12615,7 @@ export {
|
|
|
12193
12615
|
newRestSupportImageVolumeParameters,
|
|
12194
12616
|
newRestSupportImageVolumeResult,
|
|
12195
12617
|
newRestSupportJobInfo,
|
|
12618
|
+
newRestSupportLastMileDeliveryParameters,
|
|
12196
12619
|
newRestSupportLegendLayer,
|
|
12197
12620
|
newRestSupportLengthsParameters,
|
|
12198
12621
|
newRestSupportLinearUnit,
|
|
@@ -12284,23 +12707,26 @@ export {
|
|
|
12284
12707
|
newTablesElementsAttributeTableFieldElement,
|
|
12285
12708
|
newTablesElementsAttributeTableGroupElement,
|
|
12286
12709
|
newTablesElementsAttributeTableRelationshipElement,
|
|
12287
|
-
newTimeExtent,
|
|
12288
|
-
newTimeInterval,
|
|
12289
12710
|
newTimeTimeExtent,
|
|
12290
12711
|
newTimeTimeInterval,
|
|
12291
12712
|
newVersionManagementVersionManagementService,
|
|
12292
12713
|
newVersionManagementVersioningState,
|
|
12293
12714
|
newViewpoint,
|
|
12715
|
+
newViews2dAnalysisElevationProfileAnalysisView2D,
|
|
12294
12716
|
newViews2dLayersBaseLayerView2D,
|
|
12295
12717
|
newViews2dLayersBaseLayerViewGL2D,
|
|
12296
12718
|
newViews2dViewState,
|
|
12297
12719
|
newViews3dAnalysisAreaMeasurementAnalysisView3D,
|
|
12298
12720
|
newViews3dAnalysisDimensionAnalysisView3D,
|
|
12299
12721
|
newViews3dAnalysisDirectLineMeasurementAnalysisView3D,
|
|
12722
|
+
newViews3dAnalysisElevationProfileAnalysisView3D,
|
|
12300
12723
|
newViews3dAnalysisLineOfSightAnalysisResult,
|
|
12301
12724
|
newViews3dAnalysisLineOfSightAnalysisView3D,
|
|
12302
12725
|
newViews3dAnalysisSliceAnalysisView3D,
|
|
12303
12726
|
newViews3dAnalysisViewshedAnalysisView3D,
|
|
12727
|
+
newViews3dAnalysisVolumeMeasurementAnalysisView3D,
|
|
12728
|
+
newViews3dAnalysisVolumeMeasurementVolumeMeasurementError,
|
|
12729
|
+
newViews3dAnalysisVolumeMeasurementVolumeMeasurementResult,
|
|
12304
12730
|
newViews3dEnvironmentCloudyWeather,
|
|
12305
12731
|
newViews3dEnvironmentFoggyWeather,
|
|
12306
12732
|
newViews3dEnvironmentRainyWeather,
|
|
@@ -12309,6 +12735,7 @@ export {
|
|
|
12309
12735
|
newViews3dEnvironmentSunnyWeather,
|
|
12310
12736
|
newViews3dEnvironmentVirtualLighting,
|
|
12311
12737
|
newViews3dWebglRenderNode,
|
|
12738
|
+
newViewsAnalysisElevationProfileElevationProfileResult,
|
|
12312
12739
|
newViewsBasemapView,
|
|
12313
12740
|
newViewsDrawDraw,
|
|
12314
12741
|
newViewsDrawDrawAction,
|
|
@@ -12329,21 +12756,14 @@ export {
|
|
|
12329
12756
|
newViewsInteractiveTooltip,
|
|
12330
12757
|
newViewsLayersBuildingComponentSublayerView,
|
|
12331
12758
|
newViewsLayersBuildingSceneLayerView,
|
|
12332
|
-
newViewsLayersCatalogDynamicGroupLayerView,
|
|
12333
|
-
newViewsLayersCatalogFootprintLayerView,
|
|
12334
|
-
newViewsLayersCatalogLayerView,
|
|
12335
12759
|
newViewsLayersDimensionLayerView,
|
|
12336
|
-
newViewsLayersFeatureLayerView,
|
|
12337
12760
|
newViewsLayersGroupLayerView,
|
|
12338
12761
|
newViewsLayersImageryLayerView,
|
|
12339
12762
|
newViewsLayersImageryTileLayerView,
|
|
12340
12763
|
newViewsLayersLayerView,
|
|
12341
12764
|
newViewsLayersLineOfSightLayerView,
|
|
12342
12765
|
newViewsLayersMediaLayerView,
|
|
12343
|
-
newViewsLayersOGCFeatureLayerView,
|
|
12344
|
-
newViewsLayersPointCloudLayerView,
|
|
12345
12766
|
newViewsLayersSceneLayerView,
|
|
12346
|
-
newViewsLayersStreamLayerView,
|
|
12347
12767
|
newViewsLayersViewshedLayerView,
|
|
12348
12768
|
newViewsLinkChartView,
|
|
12349
12769
|
newViewsMagnifier,
|
|
@@ -12426,6 +12846,10 @@ export {
|
|
|
12426
12846
|
newWidgetsBasemapToggle,
|
|
12427
12847
|
newWidgetsBasemapToggleBasemapToggleViewModel,
|
|
12428
12848
|
newWidgetsBatchAttributeForm,
|
|
12849
|
+
newWidgetsBatchAttributeFormBatchAttributeFormViewModel,
|
|
12850
|
+
newWidgetsBatchAttributeFormInputsBatchFormInputs,
|
|
12851
|
+
newWidgetsBatchAttributeFormInputsFieldInput,
|
|
12852
|
+
newWidgetsBatchAttributeFormInputsGroupInput,
|
|
12429
12853
|
newWidgetsBookmarks,
|
|
12430
12854
|
newWidgetsBookmarksBookmarksViewModel,
|
|
12431
12855
|
newWidgetsBuildingExplorer,
|
|
@@ -12455,7 +12879,9 @@ export {
|
|
|
12455
12879
|
newWidgetsEditorCreateFeaturesWorkflowData,
|
|
12456
12880
|
newWidgetsEditorEditorViewModel,
|
|
12457
12881
|
newWidgetsEditorEdits,
|
|
12882
|
+
newWidgetsEditorSplitFeatureWorkflow,
|
|
12458
12883
|
newWidgetsEditorSupportEditorItem,
|
|
12884
|
+
newWidgetsEditorUpdateFeaturesWorkflow,
|
|
12459
12885
|
newWidgetsEditorUpdateFeaturesWorkflowData,
|
|
12460
12886
|
newWidgetsEditorUpdateWorkflow,
|
|
12461
12887
|
newWidgetsEditorUpdateWorkflowData,
|
|
@@ -12485,9 +12911,6 @@ export {
|
|
|
12485
12911
|
newWidgetsFeatureTableFieldColumn,
|
|
12486
12912
|
newWidgetsFeatureTableGridColumn,
|
|
12487
12913
|
newWidgetsFeatureTableGridGroupColumn,
|
|
12488
|
-
newWidgetsFeatureTableGridSupportButtonMenu,
|
|
12489
|
-
newWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
12490
|
-
newWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
12491
12914
|
newWidgetsFeatureTableRelationshipColumn,
|
|
12492
12915
|
newWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
12493
12916
|
newWidgetsFeatureTableSupportAttachmentsViewOptions,
|