@arcgis/core-adapter 4.34.0-next.4 → 4.34.0-next.40
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/dist/index.cjs +305 -8
- package/dist/index.d.cts +50 -5
- package/dist/index.d.ts +50 -5
- package/dist/index.js +305 -8
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -30,7 +30,7 @@ async function loadUndocumentedModule(modulePath, deferredImport) {
|
|
|
30
30
|
if (isAMD) {
|
|
31
31
|
return await window.$arcgis.import(modulePath);
|
|
32
32
|
}
|
|
33
|
-
const module2 = deferredImport();
|
|
33
|
+
const module2 = await deferredImport();
|
|
34
34
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
35
35
|
}
|
|
36
36
|
async function importIdentityIdentityManager() {
|
|
@@ -227,6 +227,28 @@ async function newAnalysisViewshedAnalysis(properties) {
|
|
|
227
227
|
const ModConstructor = await importAnalysisViewshedAnalysis();
|
|
228
228
|
return new ModConstructor(properties);
|
|
229
229
|
}
|
|
230
|
+
async function importAnalysisVolumeMeasurementAnalysis() {
|
|
231
|
+
if (isAMD) {
|
|
232
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurementAnalysis");
|
|
233
|
+
}
|
|
234
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurementAnalysis.js");
|
|
235
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
236
|
+
}
|
|
237
|
+
async function newAnalysisVolumeMeasurementAnalysis(properties) {
|
|
238
|
+
const ModConstructor = await importAnalysisVolumeMeasurementAnalysis();
|
|
239
|
+
return new ModConstructor(properties);
|
|
240
|
+
}
|
|
241
|
+
async function importAnalysisVolumeMeasurementCutFillOptions() {
|
|
242
|
+
if (isAMD) {
|
|
243
|
+
return await window.$arcgis.import("esri/analysis/VolumeMeasurement/CutFillOptions");
|
|
244
|
+
}
|
|
245
|
+
const module2 = await import("@arcgis/core/analysis/VolumeMeasurement/CutFillOptions.js");
|
|
246
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
247
|
+
}
|
|
248
|
+
async function newAnalysisVolumeMeasurementCutFillOptions(properties) {
|
|
249
|
+
const ModConstructor = await importAnalysisVolumeMeasurementCutFillOptions();
|
|
250
|
+
return new ModConstructor(properties);
|
|
251
|
+
}
|
|
230
252
|
async function importAnalysisSupportAnalysisOriginWebScene() {
|
|
231
253
|
if (isAMD) {
|
|
232
254
|
return await window.$arcgis.import("esri/analysis/support/AnalysisOriginWebScene");
|
|
@@ -293,6 +315,39 @@ async function newCoreWorkersConnection() {
|
|
|
293
315
|
const ModConstructor = await importCoreWorkersConnection();
|
|
294
316
|
return new ModConstructor();
|
|
295
317
|
}
|
|
318
|
+
async function importEffectsFocusAreas() {
|
|
319
|
+
if (isAMD) {
|
|
320
|
+
return await window.$arcgis.import("esri/effects/FocusAreas");
|
|
321
|
+
}
|
|
322
|
+
const module2 = await import("@arcgis/core/effects/FocusAreas.js");
|
|
323
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
324
|
+
}
|
|
325
|
+
async function newEffectsFocusAreas(properties) {
|
|
326
|
+
const ModConstructor = await importEffectsFocusAreas();
|
|
327
|
+
return new ModConstructor(properties);
|
|
328
|
+
}
|
|
329
|
+
async function importEffectsFocusArea() {
|
|
330
|
+
if (isAMD) {
|
|
331
|
+
return await window.$arcgis.import("esri/effects/FocusArea");
|
|
332
|
+
}
|
|
333
|
+
const module2 = await import("@arcgis/core/effects/FocusArea.js");
|
|
334
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
335
|
+
}
|
|
336
|
+
async function newEffectsFocusArea(properties) {
|
|
337
|
+
const ModConstructor = await importEffectsFocusArea();
|
|
338
|
+
return new ModConstructor(properties);
|
|
339
|
+
}
|
|
340
|
+
async function importEffectsFocusAreaOutline() {
|
|
341
|
+
if (isAMD) {
|
|
342
|
+
return await window.$arcgis.import("esri/effects/FocusAreaOutline");
|
|
343
|
+
}
|
|
344
|
+
const module2 = await import("@arcgis/core/effects/FocusAreaOutline.js");
|
|
345
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
346
|
+
}
|
|
347
|
+
async function newEffectsFocusAreaOutline(properties) {
|
|
348
|
+
const ModConstructor = await importEffectsFocusAreaOutline();
|
|
349
|
+
return new ModConstructor(properties);
|
|
350
|
+
}
|
|
296
351
|
async function importFormElementsAttachmentElement() {
|
|
297
352
|
if (isAMD) {
|
|
298
353
|
return await window.$arcgis.import("esri/form/elements/AttachmentElement");
|
|
@@ -1811,6 +1866,17 @@ async function newLayersSupportPixelBlock(properties) {
|
|
|
1811
1866
|
const ModConstructor = await importLayersSupportPixelBlock();
|
|
1812
1867
|
return new ModConstructor(properties);
|
|
1813
1868
|
}
|
|
1869
|
+
async function importLayersSupportPlaybackInfo() {
|
|
1870
|
+
if (isAMD) {
|
|
1871
|
+
return await window.$arcgis.import("esri/layers/support/PlaybackInfo");
|
|
1872
|
+
}
|
|
1873
|
+
const module2 = await import("@arcgis/core/layers/support/PlaybackInfo.js");
|
|
1874
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
1875
|
+
}
|
|
1876
|
+
async function newLayersSupportPlaybackInfo(properties) {
|
|
1877
|
+
const ModConstructor = await importLayersSupportPlaybackInfo();
|
|
1878
|
+
return new ModConstructor(properties);
|
|
1879
|
+
}
|
|
1814
1880
|
async function importLayersSupportPublishingInfo() {
|
|
1815
1881
|
if (isAMD) {
|
|
1816
1882
|
return await window.$arcgis.import("esri/layers/support/PublishingInfo");
|
|
@@ -3362,6 +3428,28 @@ async function newRestKnowledgeGraphGraphAddNamedTypesResult(properties) {
|
|
|
3362
3428
|
const ModConstructor = await importRestKnowledgeGraphGraphAddNamedTypesResult();
|
|
3363
3429
|
return new ModConstructor(properties);
|
|
3364
3430
|
}
|
|
3431
|
+
async function importRestKnowledgeGraphGraphAddFieldIndexResult() {
|
|
3432
|
+
if (isAMD) {
|
|
3433
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddFieldIndexResult");
|
|
3434
|
+
}
|
|
3435
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphAddFieldIndexResult.js");
|
|
3436
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3437
|
+
}
|
|
3438
|
+
async function newRestKnowledgeGraphGraphAddFieldIndexResult(properties) {
|
|
3439
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddFieldIndexResult();
|
|
3440
|
+
return new ModConstructor(properties);
|
|
3441
|
+
}
|
|
3442
|
+
async function importRestKnowledgeGraphGraphAddPropertyResult() {
|
|
3443
|
+
if (isAMD) {
|
|
3444
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphAddPropertyResult");
|
|
3445
|
+
}
|
|
3446
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphAddPropertyResult.js");
|
|
3447
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3448
|
+
}
|
|
3449
|
+
async function newRestKnowledgeGraphGraphAddPropertyResult(properties) {
|
|
3450
|
+
const ModConstructor = await importRestKnowledgeGraphGraphAddPropertyResult();
|
|
3451
|
+
return new ModConstructor(properties);
|
|
3452
|
+
}
|
|
3365
3453
|
async function importRestKnowledgeGraphGraphApplyEdits() {
|
|
3366
3454
|
if (isAMD) {
|
|
3367
3455
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphApplyEdits");
|
|
@@ -3384,6 +3472,28 @@ async function newRestKnowledgeGraphGraphApplyEditsResult(properties) {
|
|
|
3384
3472
|
const ModConstructor = await importRestKnowledgeGraphGraphApplyEditsResult();
|
|
3385
3473
|
return new ModConstructor(properties);
|
|
3386
3474
|
}
|
|
3475
|
+
async function importRestKnowledgeGraphGraphDataModelOperationResult() {
|
|
3476
|
+
if (isAMD) {
|
|
3477
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDataModelOperationResult");
|
|
3478
|
+
}
|
|
3479
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDataModelOperationResult.js");
|
|
3480
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3481
|
+
}
|
|
3482
|
+
async function newRestKnowledgeGraphGraphDataModelOperationResult(properties) {
|
|
3483
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDataModelOperationResult();
|
|
3484
|
+
return new ModConstructor(properties);
|
|
3485
|
+
}
|
|
3486
|
+
async function importRestKnowledgeGraphGraphDeleteFieldIndexResult() {
|
|
3487
|
+
if (isAMD) {
|
|
3488
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteFieldIndexResult");
|
|
3489
|
+
}
|
|
3490
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDeleteFieldIndexResult.js");
|
|
3491
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3492
|
+
}
|
|
3493
|
+
async function newRestKnowledgeGraphGraphDeleteFieldIndexResult(properties) {
|
|
3494
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeleteFieldIndexResult();
|
|
3495
|
+
return new ModConstructor(properties);
|
|
3496
|
+
}
|
|
3387
3497
|
async function importRestKnowledgeGraphGraphDeleteNamedTypeResult() {
|
|
3388
3498
|
if (isAMD) {
|
|
3389
3499
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeleteNamedTypeResult");
|
|
@@ -3395,6 +3505,17 @@ async function newRestKnowledgeGraphGraphDeleteNamedTypeResult(properties) {
|
|
|
3395
3505
|
const ModConstructor = await importRestKnowledgeGraphGraphDeleteNamedTypeResult();
|
|
3396
3506
|
return new ModConstructor(properties);
|
|
3397
3507
|
}
|
|
3508
|
+
async function importRestKnowledgeGraphGraphDeletePropertyResult() {
|
|
3509
|
+
if (isAMD) {
|
|
3510
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphDeletePropertyResult");
|
|
3511
|
+
}
|
|
3512
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphDeletePropertyResult.js");
|
|
3513
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3514
|
+
}
|
|
3515
|
+
async function newRestKnowledgeGraphGraphDeletePropertyResult(properties) {
|
|
3516
|
+
const ModConstructor = await importRestKnowledgeGraphGraphDeletePropertyResult();
|
|
3517
|
+
return new ModConstructor(properties);
|
|
3518
|
+
}
|
|
3398
3519
|
async function importRestKnowledgeGraphGraphNamedObject() {
|
|
3399
3520
|
if (isAMD) {
|
|
3400
3521
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphNamedObject");
|
|
@@ -3516,6 +3637,39 @@ async function newRestKnowledgeGraphGraphSearchStreaming(properties) {
|
|
|
3516
3637
|
const ModConstructor = await importRestKnowledgeGraphGraphSearchStreaming();
|
|
3517
3638
|
return new ModConstructor(properties);
|
|
3518
3639
|
}
|
|
3640
|
+
async function importRestKnowledgeGraphGraphUpdateNamedTypesResult() {
|
|
3641
|
+
if (isAMD) {
|
|
3642
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateNamedTypesResult");
|
|
3643
|
+
}
|
|
3644
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateNamedTypesResult.js");
|
|
3645
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3646
|
+
}
|
|
3647
|
+
async function newRestKnowledgeGraphGraphUpdateNamedTypesResult(properties) {
|
|
3648
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateNamedTypesResult();
|
|
3649
|
+
return new ModConstructor(properties);
|
|
3650
|
+
}
|
|
3651
|
+
async function importRestKnowledgeGraphGraphUpdatePropertyResult() {
|
|
3652
|
+
if (isAMD) {
|
|
3653
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdatePropertyResult");
|
|
3654
|
+
}
|
|
3655
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdatePropertyResult.js");
|
|
3656
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3657
|
+
}
|
|
3658
|
+
async function newRestKnowledgeGraphGraphUpdatePropertyResult(properties) {
|
|
3659
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdatePropertyResult();
|
|
3660
|
+
return new ModConstructor(properties);
|
|
3661
|
+
}
|
|
3662
|
+
async function importRestKnowledgeGraphGraphUpdateSearchIndexResult() {
|
|
3663
|
+
if (isAMD) {
|
|
3664
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphUpdateSearchIndexResult");
|
|
3665
|
+
}
|
|
3666
|
+
const module2 = await import("@arcgis/core/rest/knowledgeGraph/GraphUpdateSearchIndexResult.js");
|
|
3667
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
3668
|
+
}
|
|
3669
|
+
async function newRestKnowledgeGraphGraphUpdateSearchIndexResult(properties) {
|
|
3670
|
+
const ModConstructor = await importRestKnowledgeGraphGraphUpdateSearchIndexResult();
|
|
3671
|
+
return new ModConstructor(properties);
|
|
3672
|
+
}
|
|
3519
3673
|
async function importRestKnowledgeGraphInputQuantizationParameters() {
|
|
3520
3674
|
if (isAMD) {
|
|
3521
3675
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/InputQuantizationParameters");
|
|
@@ -5419,6 +5573,28 @@ async function newSymbolsSimpleMarkerSymbol(properties) {
|
|
|
5419
5573
|
const ModConstructor = await importSymbolsSimpleMarkerSymbol();
|
|
5420
5574
|
return new ModConstructor(properties);
|
|
5421
5575
|
}
|
|
5576
|
+
async function importSymbolsSupportElevationInfo() {
|
|
5577
|
+
if (isAMD) {
|
|
5578
|
+
return await window.$arcgis.import("esri/symbols/support/ElevationInfo");
|
|
5579
|
+
}
|
|
5580
|
+
const module2 = await import("@arcgis/core/symbols/support/ElevationInfo.js");
|
|
5581
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5582
|
+
}
|
|
5583
|
+
async function newSymbolsSupportElevationInfo(properties) {
|
|
5584
|
+
const ModConstructor = await importSymbolsSupportElevationInfo();
|
|
5585
|
+
return new ModConstructor(properties);
|
|
5586
|
+
}
|
|
5587
|
+
async function importSymbolsSupportFeatureExpressionInfo() {
|
|
5588
|
+
if (isAMD) {
|
|
5589
|
+
return await window.$arcgis.import("esri/symbols/support/FeatureExpressionInfo");
|
|
5590
|
+
}
|
|
5591
|
+
const module2 = await import("@arcgis/core/symbols/support/FeatureExpressionInfo.js");
|
|
5592
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5593
|
+
}
|
|
5594
|
+
async function newSymbolsSupportFeatureExpressionInfo(properties) {
|
|
5595
|
+
const ModConstructor = await importSymbolsSupportFeatureExpressionInfo();
|
|
5596
|
+
return new ModConstructor(properties);
|
|
5597
|
+
}
|
|
5422
5598
|
async function importSymbolsSupportStyleOrigin() {
|
|
5423
5599
|
if (isAMD) {
|
|
5424
5600
|
return await window.$arcgis.import("esri/symbols/support/StyleOrigin");
|
|
@@ -5771,6 +5947,17 @@ async function newViews3dAnalysisViewshedAnalysisView3D(properties) {
|
|
|
5771
5947
|
const ModConstructor = await importViews3dAnalysisViewshedAnalysisView3D();
|
|
5772
5948
|
return new ModConstructor(properties);
|
|
5773
5949
|
}
|
|
5950
|
+
async function importViews3dAnalysisVolumeMeasurementAnalysisView3D() {
|
|
5951
|
+
if (isAMD) {
|
|
5952
|
+
return await window.$arcgis.import("esri/views/3d/analysis/VolumeMeasurementAnalysisView3D");
|
|
5953
|
+
}
|
|
5954
|
+
const module2 = await import("@arcgis/core/views/3d/analysis/VolumeMeasurementAnalysisView3D.js");
|
|
5955
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
5956
|
+
}
|
|
5957
|
+
async function newViews3dAnalysisVolumeMeasurementAnalysisView3D(properties) {
|
|
5958
|
+
const ModConstructor = await importViews3dAnalysisVolumeMeasurementAnalysisView3D();
|
|
5959
|
+
return new ModConstructor(properties);
|
|
5960
|
+
}
|
|
5774
5961
|
async function importViews3dEnvironmentCloudyWeather() {
|
|
5775
5962
|
if (isAMD) {
|
|
5776
5963
|
return await window.$arcgis.import("esri/views/3d/environment/CloudyWeather");
|
|
@@ -7146,6 +7333,50 @@ async function newWidgetsBatchAttributeForm(properties) {
|
|
|
7146
7333
|
const ModConstructor = await importWidgetsBatchAttributeForm();
|
|
7147
7334
|
return new ModConstructor(properties);
|
|
7148
7335
|
}
|
|
7336
|
+
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
7337
|
+
if (isAMD) {
|
|
7338
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
7339
|
+
}
|
|
7340
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
7341
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7342
|
+
}
|
|
7343
|
+
async function newWidgetsBatchAttributeFormBatchAttributeFormViewModel(properties) {
|
|
7344
|
+
const ModConstructor = await importWidgetsBatchAttributeFormBatchAttributeFormViewModel();
|
|
7345
|
+
return new ModConstructor(properties);
|
|
7346
|
+
}
|
|
7347
|
+
async function importWidgetsBatchAttributeFormInputsBatchFormInputs() {
|
|
7348
|
+
if (isAMD) {
|
|
7349
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/BatchFormInputs");
|
|
7350
|
+
}
|
|
7351
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/BatchFormInputs.js");
|
|
7352
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7353
|
+
}
|
|
7354
|
+
async function newWidgetsBatchAttributeFormInputsBatchFormInputs(properties) {
|
|
7355
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsBatchFormInputs();
|
|
7356
|
+
return new ModConstructor(properties);
|
|
7357
|
+
}
|
|
7358
|
+
async function importWidgetsBatchAttributeFormInputsFieldInput() {
|
|
7359
|
+
if (isAMD) {
|
|
7360
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/FieldInput");
|
|
7361
|
+
}
|
|
7362
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/FieldInput.js");
|
|
7363
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7364
|
+
}
|
|
7365
|
+
async function newWidgetsBatchAttributeFormInputsFieldInput(properties) {
|
|
7366
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsFieldInput();
|
|
7367
|
+
return new ModConstructor(properties);
|
|
7368
|
+
}
|
|
7369
|
+
async function importWidgetsBatchAttributeFormInputsGroupInput() {
|
|
7370
|
+
if (isAMD) {
|
|
7371
|
+
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/inputs/GroupInput");
|
|
7372
|
+
}
|
|
7373
|
+
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/inputs/GroupInput.js");
|
|
7374
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
7375
|
+
}
|
|
7376
|
+
async function newWidgetsBatchAttributeFormInputsGroupInput(properties) {
|
|
7377
|
+
const ModConstructor = await importWidgetsBatchAttributeFormInputsGroupInput();
|
|
7378
|
+
return new ModConstructor(properties);
|
|
7379
|
+
}
|
|
7149
7380
|
async function importWidgetsBookmarks() {
|
|
7150
7381
|
if (isAMD) {
|
|
7151
7382
|
return await window.$arcgis.import("esri/widgets/Bookmarks");
|
|
@@ -10530,13 +10761,6 @@ async function importViewsSupportColorUtils() {
|
|
|
10530
10761
|
const module2 = await import("@arcgis/core/views/support/colorUtils.js");
|
|
10531
10762
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10532
10763
|
}
|
|
10533
|
-
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
10534
|
-
if (isAMD) {
|
|
10535
|
-
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
10536
|
-
}
|
|
10537
|
-
const module2 = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
10538
|
-
return isDefaultModule(module2) ? module2.default : module2;
|
|
10539
|
-
}
|
|
10540
10764
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
10541
10765
|
if (isAMD) {
|
|
10542
10766
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -10558,6 +10782,13 @@ async function importApplicationsComponentsAnalysisUtils() {
|
|
|
10558
10782
|
const module2 = await import("@arcgis/core/applications/Components/analysisUtils.js");
|
|
10559
10783
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10560
10784
|
}
|
|
10785
|
+
async function importApplicationsComponentsArcadeFeatureUtils() {
|
|
10786
|
+
if (isAMD) {
|
|
10787
|
+
return await window.$arcgis.import("esri/applications/Components/arcadeFeatureUtils");
|
|
10788
|
+
}
|
|
10789
|
+
const module2 = await import("@arcgis/core/applications/Components/arcadeFeatureUtils.js");
|
|
10790
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10791
|
+
}
|
|
10561
10792
|
async function importApplicationsComponentsBasemapUtils() {
|
|
10562
10793
|
if (isAMD) {
|
|
10563
10794
|
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
@@ -10593,6 +10824,13 @@ async function importApplicationsComponentsGfxUtils() {
|
|
|
10593
10824
|
const module2 = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
10594
10825
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10595
10826
|
}
|
|
10827
|
+
async function importApplicationsComponentsImageryUtils() {
|
|
10828
|
+
if (isAMD) {
|
|
10829
|
+
return await window.$arcgis.import("esri/applications/Components/imageryUtils");
|
|
10830
|
+
}
|
|
10831
|
+
const module2 = await import("@arcgis/core/applications/Components/imageryUtils.js");
|
|
10832
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10833
|
+
}
|
|
10596
10834
|
async function importApplicationsComponentsLayerOriginUtils() {
|
|
10597
10835
|
if (isAMD) {
|
|
10598
10836
|
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
@@ -10621,6 +10859,13 @@ async function importApplicationsComponentsReactiveUtils() {
|
|
|
10621
10859
|
const module2 = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10622
10860
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10623
10861
|
}
|
|
10862
|
+
async function importApplicationsComponentsSanitizerUtils() {
|
|
10863
|
+
if (isAMD) {
|
|
10864
|
+
return await window.$arcgis.import("esri/applications/Components/sanitizerUtils");
|
|
10865
|
+
}
|
|
10866
|
+
const module2 = await import("@arcgis/core/applications/Components/sanitizerUtils.js");
|
|
10867
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10868
|
+
}
|
|
10624
10869
|
async function importApplicationsComponentsSelectionOperation() {
|
|
10625
10870
|
if (isAMD) {
|
|
10626
10871
|
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
@@ -10635,6 +10880,13 @@ async function importApplicationsComponentsSketchTooltipControls() {
|
|
|
10635
10880
|
const module2 = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10636
10881
|
return isDefaultModule(module2) ? module2.default : module2;
|
|
10637
10882
|
}
|
|
10883
|
+
async function importApplicationsComponentsStringUtils() {
|
|
10884
|
+
if (isAMD) {
|
|
10885
|
+
return await window.$arcgis.import("esri/applications/Components/stringUtils");
|
|
10886
|
+
}
|
|
10887
|
+
const module2 = await import("@arcgis/core/applications/Components/stringUtils.js");
|
|
10888
|
+
return isDefaultModule(module2) ? module2.default : module2;
|
|
10889
|
+
}
|
|
10638
10890
|
async function importApplicationsComponentsStyleUtils() {
|
|
10639
10891
|
if (isAMD) {
|
|
10640
10892
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -10705,18 +10957,24 @@ exports.importAnalysisSlicePlane = importAnalysisSlicePlane;
|
|
|
10705
10957
|
exports.importAnalysisSupportAnalysisOriginWebScene = importAnalysisSupportAnalysisOriginWebScene;
|
|
10706
10958
|
exports.importAnalysisViewshed = importAnalysisViewshed;
|
|
10707
10959
|
exports.importAnalysisViewshedAnalysis = importAnalysisViewshedAnalysis;
|
|
10960
|
+
exports.importAnalysisVolumeMeasurementAnalysis = importAnalysisVolumeMeasurementAnalysis;
|
|
10961
|
+
exports.importAnalysisVolumeMeasurementCutFillOptions = importAnalysisVolumeMeasurementCutFillOptions;
|
|
10708
10962
|
exports.importApplicationsComponentsAnalysisUtils = importApplicationsComponentsAnalysisUtils;
|
|
10963
|
+
exports.importApplicationsComponentsArcadeFeatureUtils = importApplicationsComponentsArcadeFeatureUtils;
|
|
10709
10964
|
exports.importApplicationsComponentsBasemapUtils = importApplicationsComponentsBasemapUtils;
|
|
10710
10965
|
exports.importApplicationsComponentsDrawUtils = importApplicationsComponentsDrawUtils;
|
|
10711
10966
|
exports.importApplicationsComponentsFontUtils = importApplicationsComponentsFontUtils;
|
|
10712
10967
|
exports.importApplicationsComponentsGetDefaultUnits = importApplicationsComponentsGetDefaultUnits;
|
|
10713
10968
|
exports.importApplicationsComponentsGfxUtils = importApplicationsComponentsGfxUtils;
|
|
10969
|
+
exports.importApplicationsComponentsImageryUtils = importApplicationsComponentsImageryUtils;
|
|
10714
10970
|
exports.importApplicationsComponentsLayerOriginUtils = importApplicationsComponentsLayerOriginUtils;
|
|
10715
10971
|
exports.importApplicationsComponentsLayersEffectsJsonUtils = importApplicationsComponentsLayersEffectsJsonUtils;
|
|
10716
10972
|
exports.importApplicationsComponentsPreviewSymbol2D = importApplicationsComponentsPreviewSymbol2D;
|
|
10717
10973
|
exports.importApplicationsComponentsReactiveUtils = importApplicationsComponentsReactiveUtils;
|
|
10974
|
+
exports.importApplicationsComponentsSanitizerUtils = importApplicationsComponentsSanitizerUtils;
|
|
10718
10975
|
exports.importApplicationsComponentsSelectionOperation = importApplicationsComponentsSelectionOperation;
|
|
10719
10976
|
exports.importApplicationsComponentsSketchTooltipControls = importApplicationsComponentsSketchTooltipControls;
|
|
10977
|
+
exports.importApplicationsComponentsStringUtils = importApplicationsComponentsStringUtils;
|
|
10720
10978
|
exports.importApplicationsComponentsStyleUtils = importApplicationsComponentsStyleUtils;
|
|
10721
10979
|
exports.importApplicationsComponentsSvgUtils = importApplicationsComponentsSvgUtils;
|
|
10722
10980
|
exports.importApplicationsComponentsViewUtils = importApplicationsComponentsViewUtils;
|
|
@@ -10748,6 +11006,9 @@ exports.importCoreWorkers = importCoreWorkers;
|
|
|
10748
11006
|
exports.importCoreWorkersConnection = importCoreWorkersConnection;
|
|
10749
11007
|
exports.importEditingSharedTemplatesSharedTemplate = importEditingSharedTemplatesSharedTemplate;
|
|
10750
11008
|
exports.importEditingSharedTemplatesSharedTemplateMetadata = importEditingSharedTemplatesSharedTemplateMetadata;
|
|
11009
|
+
exports.importEffectsFocusArea = importEffectsFocusArea;
|
|
11010
|
+
exports.importEffectsFocusAreaOutline = importEffectsFocusAreaOutline;
|
|
11011
|
+
exports.importEffectsFocusAreas = importEffectsFocusAreas;
|
|
10751
11012
|
exports.importFormElements = importFormElements;
|
|
10752
11013
|
exports.importFormElementsAttachmentElement = importFormElementsAttachmentElement;
|
|
10753
11014
|
exports.importFormElementsElement = importFormElementsElement;
|
|
@@ -10961,6 +11222,7 @@ exports.importLayersSupportParquetEncodingLocation = importLayersSupportParquetE
|
|
|
10961
11222
|
exports.importLayersSupportParquetEncodingWkb = importLayersSupportParquetEncodingWkb;
|
|
10962
11223
|
exports.importLayersSupportParquetUtils = importLayersSupportParquetUtils;
|
|
10963
11224
|
exports.importLayersSupportPixelBlock = importLayersSupportPixelBlock;
|
|
11225
|
+
exports.importLayersSupportPlaybackInfo = importLayersSupportPlaybackInfo;
|
|
10964
11226
|
exports.importLayersSupportPublishingInfo = importLayersSupportPublishingInfo;
|
|
10965
11227
|
exports.importLayersSupportRangeDomain = importLayersSupportRangeDomain;
|
|
10966
11228
|
exports.importLayersSupportRasterBandInfo = importLayersSupportRasterBandInfo;
|
|
@@ -11121,10 +11383,15 @@ exports.importRestKnowledgeGraphDataModel = importRestKnowledgeGraphDataModel;
|
|
|
11121
11383
|
exports.importRestKnowledgeGraphEntity = importRestKnowledgeGraphEntity;
|
|
11122
11384
|
exports.importRestKnowledgeGraphEntityType = importRestKnowledgeGraphEntityType;
|
|
11123
11385
|
exports.importRestKnowledgeGraphFieldIndex = importRestKnowledgeGraphFieldIndex;
|
|
11386
|
+
exports.importRestKnowledgeGraphGraphAddFieldIndexResult = importRestKnowledgeGraphGraphAddFieldIndexResult;
|
|
11124
11387
|
exports.importRestKnowledgeGraphGraphAddNamedTypesResult = importRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
11388
|
+
exports.importRestKnowledgeGraphGraphAddPropertyResult = importRestKnowledgeGraphGraphAddPropertyResult;
|
|
11125
11389
|
exports.importRestKnowledgeGraphGraphApplyEdits = importRestKnowledgeGraphGraphApplyEdits;
|
|
11126
11390
|
exports.importRestKnowledgeGraphGraphApplyEditsResult = importRestKnowledgeGraphGraphApplyEditsResult;
|
|
11391
|
+
exports.importRestKnowledgeGraphGraphDataModelOperationResult = importRestKnowledgeGraphGraphDataModelOperationResult;
|
|
11392
|
+
exports.importRestKnowledgeGraphGraphDeleteFieldIndexResult = importRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
11127
11393
|
exports.importRestKnowledgeGraphGraphDeleteNamedTypeResult = importRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
11394
|
+
exports.importRestKnowledgeGraphGraphDeletePropertyResult = importRestKnowledgeGraphGraphDeletePropertyResult;
|
|
11128
11395
|
exports.importRestKnowledgeGraphGraphNamedObject = importRestKnowledgeGraphGraphNamedObject;
|
|
11129
11396
|
exports.importRestKnowledgeGraphGraphObject = importRestKnowledgeGraphGraphObject;
|
|
11130
11397
|
exports.importRestKnowledgeGraphGraphObjectType = importRestKnowledgeGraphGraphObjectType;
|
|
@@ -11136,6 +11403,9 @@ exports.importRestKnowledgeGraphGraphQueryStreaming = importRestKnowledgeGraphGr
|
|
|
11136
11403
|
exports.importRestKnowledgeGraphGraphQueryStreamingResult = importRestKnowledgeGraphGraphQueryStreamingResult;
|
|
11137
11404
|
exports.importRestKnowledgeGraphGraphSearch = importRestKnowledgeGraphGraphSearch;
|
|
11138
11405
|
exports.importRestKnowledgeGraphGraphSearchStreaming = importRestKnowledgeGraphGraphSearchStreaming;
|
|
11406
|
+
exports.importRestKnowledgeGraphGraphUpdateNamedTypesResult = importRestKnowledgeGraphGraphUpdateNamedTypesResult;
|
|
11407
|
+
exports.importRestKnowledgeGraphGraphUpdatePropertyResult = importRestKnowledgeGraphGraphUpdatePropertyResult;
|
|
11408
|
+
exports.importRestKnowledgeGraphGraphUpdateSearchIndexResult = importRestKnowledgeGraphGraphUpdateSearchIndexResult;
|
|
11139
11409
|
exports.importRestKnowledgeGraphInputQuantizationParameters = importRestKnowledgeGraphInputQuantizationParameters;
|
|
11140
11410
|
exports.importRestKnowledgeGraphKnowledgeGraph = importRestKnowledgeGraphKnowledgeGraph;
|
|
11141
11411
|
exports.importRestKnowledgeGraphOutputQuantizationParameters = importRestKnowledgeGraphOutputQuantizationParameters;
|
|
@@ -11377,6 +11647,8 @@ exports.importSymbolsSimpleLineSymbol = importSymbolsSimpleLineSymbol;
|
|
|
11377
11647
|
exports.importSymbolsSimpleMarkerSymbol = importSymbolsSimpleMarkerSymbol;
|
|
11378
11648
|
exports.importSymbolsSupportCimConversionUtils = importSymbolsSupportCimConversionUtils;
|
|
11379
11649
|
exports.importSymbolsSupportCimSymbolUtils = importSymbolsSupportCimSymbolUtils;
|
|
11650
|
+
exports.importSymbolsSupportElevationInfo = importSymbolsSupportElevationInfo;
|
|
11651
|
+
exports.importSymbolsSupportFeatureExpressionInfo = importSymbolsSupportFeatureExpressionInfo;
|
|
11380
11652
|
exports.importSymbolsSupportJsonUtils = importSymbolsSupportJsonUtils;
|
|
11381
11653
|
exports.importSymbolsSupportStyleOrigin = importSymbolsSupportStyleOrigin;
|
|
11382
11654
|
exports.importSymbolsSupportSymbol3DVerticalOffset = importSymbolsSupportSymbol3DVerticalOffset;
|
|
@@ -11414,6 +11686,7 @@ exports.importViews3dAnalysisLineOfSightAnalysisResult = importViews3dAnalysisLi
|
|
|
11414
11686
|
exports.importViews3dAnalysisLineOfSightAnalysisView3D = importViews3dAnalysisLineOfSightAnalysisView3D;
|
|
11415
11687
|
exports.importViews3dAnalysisSliceAnalysisView3D = importViews3dAnalysisSliceAnalysisView3D;
|
|
11416
11688
|
exports.importViews3dAnalysisViewshedAnalysisView3D = importViews3dAnalysisViewshedAnalysisView3D;
|
|
11689
|
+
exports.importViews3dAnalysisVolumeMeasurementAnalysisView3D = importViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
11417
11690
|
exports.importViews3dEnvironmentCloudyWeather = importViews3dEnvironmentCloudyWeather;
|
|
11418
11691
|
exports.importViews3dEnvironmentFoggyWeather = importViews3dEnvironmentFoggyWeather;
|
|
11419
11692
|
exports.importViews3dEnvironmentRainyWeather = importViews3dEnvironmentRainyWeather;
|
|
@@ -11547,6 +11820,9 @@ exports.importWidgetsBasemapToggle = importWidgetsBasemapToggle;
|
|
|
11547
11820
|
exports.importWidgetsBasemapToggleBasemapToggleViewModel = importWidgetsBasemapToggleBasemapToggleViewModel;
|
|
11548
11821
|
exports.importWidgetsBatchAttributeForm = importWidgetsBatchAttributeForm;
|
|
11549
11822
|
exports.importWidgetsBatchAttributeFormBatchAttributeFormViewModel = importWidgetsBatchAttributeFormBatchAttributeFormViewModel;
|
|
11823
|
+
exports.importWidgetsBatchAttributeFormInputsBatchFormInputs = importWidgetsBatchAttributeFormInputsBatchFormInputs;
|
|
11824
|
+
exports.importWidgetsBatchAttributeFormInputsFieldInput = importWidgetsBatchAttributeFormInputsFieldInput;
|
|
11825
|
+
exports.importWidgetsBatchAttributeFormInputsGroupInput = importWidgetsBatchAttributeFormInputsGroupInput;
|
|
11550
11826
|
exports.importWidgetsBookmarks = importWidgetsBookmarks;
|
|
11551
11827
|
exports.importWidgetsBookmarksBookmarksViewModel = importWidgetsBookmarksBookmarksViewModel;
|
|
11552
11828
|
exports.importWidgetsBuildingExplorer = importWidgetsBuildingExplorer;
|
|
@@ -11752,6 +12028,8 @@ exports.newAnalysisSlicePlane = newAnalysisSlicePlane;
|
|
|
11752
12028
|
exports.newAnalysisSupportAnalysisOriginWebScene = newAnalysisSupportAnalysisOriginWebScene;
|
|
11753
12029
|
exports.newAnalysisViewshed = newAnalysisViewshed;
|
|
11754
12030
|
exports.newAnalysisViewshedAnalysis = newAnalysisViewshedAnalysis;
|
|
12031
|
+
exports.newAnalysisVolumeMeasurementAnalysis = newAnalysisVolumeMeasurementAnalysis;
|
|
12032
|
+
exports.newAnalysisVolumeMeasurementCutFillOptions = newAnalysisVolumeMeasurementCutFillOptions;
|
|
11755
12033
|
exports.newAttributeBinsGraphic = newAttributeBinsGraphic;
|
|
11756
12034
|
exports.newBasemap = newBasemap;
|
|
11757
12035
|
exports.newCamera = newCamera;
|
|
@@ -11762,6 +12040,9 @@ exports.newCoreCollection = newCoreCollection;
|
|
|
11762
12040
|
exports.newCoreError = newCoreError;
|
|
11763
12041
|
exports.newCoreHandles = newCoreHandles;
|
|
11764
12042
|
exports.newCoreWorkersConnection = newCoreWorkersConnection;
|
|
12043
|
+
exports.newEffectsFocusArea = newEffectsFocusArea;
|
|
12044
|
+
exports.newEffectsFocusAreaOutline = newEffectsFocusAreaOutline;
|
|
12045
|
+
exports.newEffectsFocusAreas = newEffectsFocusAreas;
|
|
11765
12046
|
exports.newFormElementsAttachmentElement = newFormElementsAttachmentElement;
|
|
11766
12047
|
exports.newFormElementsElement = newFormElementsElement;
|
|
11767
12048
|
exports.newFormElementsFieldElement = newFormElementsFieldElement;
|
|
@@ -11899,6 +12180,7 @@ exports.newLayersSupportOrderByInfo = newLayersSupportOrderByInfo;
|
|
|
11899
12180
|
exports.newLayersSupportParquetEncodingLocation = newLayersSupportParquetEncodingLocation;
|
|
11900
12181
|
exports.newLayersSupportParquetEncodingWkb = newLayersSupportParquetEncodingWkb;
|
|
11901
12182
|
exports.newLayersSupportPixelBlock = newLayersSupportPixelBlock;
|
|
12183
|
+
exports.newLayersSupportPlaybackInfo = newLayersSupportPlaybackInfo;
|
|
11902
12184
|
exports.newLayersSupportPublishingInfo = newLayersSupportPublishingInfo;
|
|
11903
12185
|
exports.newLayersSupportRangeDomain = newLayersSupportRangeDomain;
|
|
11904
12186
|
exports.newLayersSupportRasterBandInfo = newLayersSupportRasterBandInfo;
|
|
@@ -12039,10 +12321,15 @@ exports.newRestKnowledgeGraphDataModel = newRestKnowledgeGraphDataModel;
|
|
|
12039
12321
|
exports.newRestKnowledgeGraphEntity = newRestKnowledgeGraphEntity;
|
|
12040
12322
|
exports.newRestKnowledgeGraphEntityType = newRestKnowledgeGraphEntityType;
|
|
12041
12323
|
exports.newRestKnowledgeGraphFieldIndex = newRestKnowledgeGraphFieldIndex;
|
|
12324
|
+
exports.newRestKnowledgeGraphGraphAddFieldIndexResult = newRestKnowledgeGraphGraphAddFieldIndexResult;
|
|
12042
12325
|
exports.newRestKnowledgeGraphGraphAddNamedTypesResult = newRestKnowledgeGraphGraphAddNamedTypesResult;
|
|
12326
|
+
exports.newRestKnowledgeGraphGraphAddPropertyResult = newRestKnowledgeGraphGraphAddPropertyResult;
|
|
12043
12327
|
exports.newRestKnowledgeGraphGraphApplyEdits = newRestKnowledgeGraphGraphApplyEdits;
|
|
12044
12328
|
exports.newRestKnowledgeGraphGraphApplyEditsResult = newRestKnowledgeGraphGraphApplyEditsResult;
|
|
12329
|
+
exports.newRestKnowledgeGraphGraphDataModelOperationResult = newRestKnowledgeGraphGraphDataModelOperationResult;
|
|
12330
|
+
exports.newRestKnowledgeGraphGraphDeleteFieldIndexResult = newRestKnowledgeGraphGraphDeleteFieldIndexResult;
|
|
12045
12331
|
exports.newRestKnowledgeGraphGraphDeleteNamedTypeResult = newRestKnowledgeGraphGraphDeleteNamedTypeResult;
|
|
12332
|
+
exports.newRestKnowledgeGraphGraphDeletePropertyResult = newRestKnowledgeGraphGraphDeletePropertyResult;
|
|
12046
12333
|
exports.newRestKnowledgeGraphGraphNamedObject = newRestKnowledgeGraphGraphNamedObject;
|
|
12047
12334
|
exports.newRestKnowledgeGraphGraphObject = newRestKnowledgeGraphGraphObject;
|
|
12048
12335
|
exports.newRestKnowledgeGraphGraphObjectType = newRestKnowledgeGraphGraphObjectType;
|
|
@@ -12054,6 +12341,9 @@ exports.newRestKnowledgeGraphGraphQueryStreaming = newRestKnowledgeGraphGraphQue
|
|
|
12054
12341
|
exports.newRestKnowledgeGraphGraphQueryStreamingResult = newRestKnowledgeGraphGraphQueryStreamingResult;
|
|
12055
12342
|
exports.newRestKnowledgeGraphGraphSearch = newRestKnowledgeGraphGraphSearch;
|
|
12056
12343
|
exports.newRestKnowledgeGraphGraphSearchStreaming = newRestKnowledgeGraphGraphSearchStreaming;
|
|
12344
|
+
exports.newRestKnowledgeGraphGraphUpdateNamedTypesResult = newRestKnowledgeGraphGraphUpdateNamedTypesResult;
|
|
12345
|
+
exports.newRestKnowledgeGraphGraphUpdatePropertyResult = newRestKnowledgeGraphGraphUpdatePropertyResult;
|
|
12346
|
+
exports.newRestKnowledgeGraphGraphUpdateSearchIndexResult = newRestKnowledgeGraphGraphUpdateSearchIndexResult;
|
|
12057
12347
|
exports.newRestKnowledgeGraphInputQuantizationParameters = newRestKnowledgeGraphInputQuantizationParameters;
|
|
12058
12348
|
exports.newRestKnowledgeGraphKnowledgeGraph = newRestKnowledgeGraphKnowledgeGraph;
|
|
12059
12349
|
exports.newRestKnowledgeGraphOutputQuantizationParameters = newRestKnowledgeGraphOutputQuantizationParameters;
|
|
@@ -12227,6 +12517,8 @@ exports.newSymbolsPolygonSymbol3D = newSymbolsPolygonSymbol3D;
|
|
|
12227
12517
|
exports.newSymbolsSimpleFillSymbol = newSymbolsSimpleFillSymbol;
|
|
12228
12518
|
exports.newSymbolsSimpleLineSymbol = newSymbolsSimpleLineSymbol;
|
|
12229
12519
|
exports.newSymbolsSimpleMarkerSymbol = newSymbolsSimpleMarkerSymbol;
|
|
12520
|
+
exports.newSymbolsSupportElevationInfo = newSymbolsSupportElevationInfo;
|
|
12521
|
+
exports.newSymbolsSupportFeatureExpressionInfo = newSymbolsSupportFeatureExpressionInfo;
|
|
12230
12522
|
exports.newSymbolsSupportStyleOrigin = newSymbolsSupportStyleOrigin;
|
|
12231
12523
|
exports.newSymbolsSupportSymbol3DVerticalOffset = newSymbolsSupportSymbol3DVerticalOffset;
|
|
12232
12524
|
exports.newSymbolsSymbol = newSymbolsSymbol;
|
|
@@ -12259,6 +12551,7 @@ exports.newViews3dAnalysisLineOfSightAnalysisResult = newViews3dAnalysisLineOfSi
|
|
|
12259
12551
|
exports.newViews3dAnalysisLineOfSightAnalysisView3D = newViews3dAnalysisLineOfSightAnalysisView3D;
|
|
12260
12552
|
exports.newViews3dAnalysisSliceAnalysisView3D = newViews3dAnalysisSliceAnalysisView3D;
|
|
12261
12553
|
exports.newViews3dAnalysisViewshedAnalysisView3D = newViews3dAnalysisViewshedAnalysisView3D;
|
|
12554
|
+
exports.newViews3dAnalysisVolumeMeasurementAnalysisView3D = newViews3dAnalysisVolumeMeasurementAnalysisView3D;
|
|
12262
12555
|
exports.newViews3dEnvironmentCloudyWeather = newViews3dEnvironmentCloudyWeather;
|
|
12263
12556
|
exports.newViews3dEnvironmentFoggyWeather = newViews3dEnvironmentFoggyWeather;
|
|
12264
12557
|
exports.newViews3dEnvironmentRainyWeather = newViews3dEnvironmentRainyWeather;
|
|
@@ -12384,6 +12677,10 @@ exports.newWidgetsBasemapLayerListBasemapLayerListViewModel = newWidgetsBasemapL
|
|
|
12384
12677
|
exports.newWidgetsBasemapToggle = newWidgetsBasemapToggle;
|
|
12385
12678
|
exports.newWidgetsBasemapToggleBasemapToggleViewModel = newWidgetsBasemapToggleBasemapToggleViewModel;
|
|
12386
12679
|
exports.newWidgetsBatchAttributeForm = newWidgetsBatchAttributeForm;
|
|
12680
|
+
exports.newWidgetsBatchAttributeFormBatchAttributeFormViewModel = newWidgetsBatchAttributeFormBatchAttributeFormViewModel;
|
|
12681
|
+
exports.newWidgetsBatchAttributeFormInputsBatchFormInputs = newWidgetsBatchAttributeFormInputsBatchFormInputs;
|
|
12682
|
+
exports.newWidgetsBatchAttributeFormInputsFieldInput = newWidgetsBatchAttributeFormInputsFieldInput;
|
|
12683
|
+
exports.newWidgetsBatchAttributeFormInputsGroupInput = newWidgetsBatchAttributeFormInputsGroupInput;
|
|
12387
12684
|
exports.newWidgetsBookmarks = newWidgetsBookmarks;
|
|
12388
12685
|
exports.newWidgetsBookmarksBookmarksViewModel = newWidgetsBookmarksBookmarksViewModel;
|
|
12389
12686
|
exports.newWidgetsBuildingExplorer = newWidgetsBuildingExplorer;
|