@arcgis/core-adapter 4.32.0-next.99 → 4.32.1
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 +1 -1
- package/dist/index.cjs +409 -43
- package/dist/index.d.cts +64 -16
- package/dist/index.d.ts +64 -16
- package/dist/index.js +355 -37
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -633,6 +633,28 @@ async function newGeometrySpatialReference(properties) {
|
|
|
633
633
|
const ModConstructor = await importGeometrySpatialReference();
|
|
634
634
|
return new ModConstructor(properties);
|
|
635
635
|
}
|
|
636
|
+
async function importGeometryOperatorsSupportGeographicTransformation() {
|
|
637
|
+
if (isAMD) {
|
|
638
|
+
return await window.$arcgis.import("esri/geometry/operators/support/GeographicTransformation");
|
|
639
|
+
}
|
|
640
|
+
const module = await import("@arcgis/core/geometry/operators/support/GeographicTransformation.js");
|
|
641
|
+
return isDefaultModule(module) ? module.default : module;
|
|
642
|
+
}
|
|
643
|
+
async function newGeometryOperatorsSupportGeographicTransformation(properties) {
|
|
644
|
+
const ModConstructor = await importGeometryOperatorsSupportGeographicTransformation();
|
|
645
|
+
return new ModConstructor(properties);
|
|
646
|
+
}
|
|
647
|
+
async function importGeometryOperatorsSupportGeographicTransformationStep() {
|
|
648
|
+
if (isAMD) {
|
|
649
|
+
return await window.$arcgis.import("esri/geometry/operators/support/GeographicTransformationStep");
|
|
650
|
+
}
|
|
651
|
+
const module = await import("@arcgis/core/geometry/operators/support/GeographicTransformationStep.js");
|
|
652
|
+
return isDefaultModule(module) ? module.default : module;
|
|
653
|
+
}
|
|
654
|
+
async function newGeometryOperatorsSupportGeographicTransformationStep(properties) {
|
|
655
|
+
const ModConstructor = await importGeometryOperatorsSupportGeographicTransformationStep();
|
|
656
|
+
return new ModConstructor(properties);
|
|
657
|
+
}
|
|
636
658
|
async function importGeometryOperatorsSupportTransformation() {
|
|
637
659
|
if (isAMD) {
|
|
638
660
|
return await window.$arcgis.import("esri/geometry/operators/support/Transformation");
|
|
@@ -754,6 +776,17 @@ async function newGeometrySupportMeshTransform(properties) {
|
|
|
754
776
|
const ModConstructor = await importGeometrySupportMeshTransform();
|
|
755
777
|
return new ModConstructor(properties);
|
|
756
778
|
}
|
|
779
|
+
async function importAttributeBinsGraphic() {
|
|
780
|
+
if (isAMD) {
|
|
781
|
+
return await window.$arcgis.import("esri/AttributeBinsGraphic");
|
|
782
|
+
}
|
|
783
|
+
const module = await import("@arcgis/core/AttributeBinsGraphic.js");
|
|
784
|
+
return isDefaultModule(module) ? module.default : module;
|
|
785
|
+
}
|
|
786
|
+
async function newAttributeBinsGraphic(properties) {
|
|
787
|
+
const ModConstructor = await importAttributeBinsGraphic();
|
|
788
|
+
return new ModConstructor(properties);
|
|
789
|
+
}
|
|
757
790
|
async function importGraphic() {
|
|
758
791
|
if (isAMD) {
|
|
759
792
|
return await window.$arcgis.import("esri/Graphic");
|
|
@@ -1370,6 +1403,28 @@ async function newLayersSupportDimensionalDefinition(properties) {
|
|
|
1370
1403
|
const ModConstructor = await importLayersSupportDimensionalDefinition();
|
|
1371
1404
|
return new ModConstructor(properties);
|
|
1372
1405
|
}
|
|
1406
|
+
async function importLayersSupportDisplayFilter() {
|
|
1407
|
+
if (isAMD) {
|
|
1408
|
+
return await window.$arcgis.import("esri/layers/support/DisplayFilter");
|
|
1409
|
+
}
|
|
1410
|
+
const module = await import("@arcgis/core/layers/support/DisplayFilter.js");
|
|
1411
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1412
|
+
}
|
|
1413
|
+
async function newLayersSupportDisplayFilter(properties) {
|
|
1414
|
+
const ModConstructor = await importLayersSupportDisplayFilter();
|
|
1415
|
+
return new ModConstructor(properties);
|
|
1416
|
+
}
|
|
1417
|
+
async function importLayersSupportDisplayFilterInfo() {
|
|
1418
|
+
if (isAMD) {
|
|
1419
|
+
return await window.$arcgis.import("esri/layers/support/DisplayFilterInfo");
|
|
1420
|
+
}
|
|
1421
|
+
const module = await import("@arcgis/core/layers/support/DisplayFilterInfo.js");
|
|
1422
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1423
|
+
}
|
|
1424
|
+
async function newLayersSupportDisplayFilterInfo(properties) {
|
|
1425
|
+
const ModConstructor = await importLayersSupportDisplayFilterInfo();
|
|
1426
|
+
return new ModConstructor(properties);
|
|
1427
|
+
}
|
|
1373
1428
|
async function importLayersSupportDomain() {
|
|
1374
1429
|
if (isAMD) {
|
|
1375
1430
|
return await window.$arcgis.import("esri/layers/support/Domain");
|
|
@@ -1656,6 +1711,17 @@ async function newLayersSupportMultidimensionalSubset(properties) {
|
|
|
1656
1711
|
const ModConstructor = await importLayersSupportMultidimensionalSubset();
|
|
1657
1712
|
return new ModConstructor(properties);
|
|
1658
1713
|
}
|
|
1714
|
+
async function importLayersSupportOrderByInfo() {
|
|
1715
|
+
if (isAMD) {
|
|
1716
|
+
return await window.$arcgis.import("esri/layers/support/OrderByInfo");
|
|
1717
|
+
}
|
|
1718
|
+
const module = await import("@arcgis/core/layers/support/OrderByInfo.js");
|
|
1719
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1720
|
+
}
|
|
1721
|
+
async function newLayersSupportOrderByInfo(properties) {
|
|
1722
|
+
const ModConstructor = await importLayersSupportOrderByInfo();
|
|
1723
|
+
return new ModConstructor(properties);
|
|
1724
|
+
}
|
|
1659
1725
|
async function importLayersSupportPixelBlock() {
|
|
1660
1726
|
if (isAMD) {
|
|
1661
1727
|
return await window.$arcgis.import("esri/layers/support/PixelBlock");
|
|
@@ -1898,6 +1964,28 @@ async function newLayersSupportTimeInfo(properties) {
|
|
|
1898
1964
|
const ModConstructor = await importLayersSupportTimeInfo();
|
|
1899
1965
|
return new ModConstructor(properties);
|
|
1900
1966
|
}
|
|
1967
|
+
async function importLayersSupportTrackInfo() {
|
|
1968
|
+
if (isAMD) {
|
|
1969
|
+
return await window.$arcgis.import("esri/layers/support/TrackInfo");
|
|
1970
|
+
}
|
|
1971
|
+
const module = await import("@arcgis/core/layers/support/TrackInfo.js");
|
|
1972
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1973
|
+
}
|
|
1974
|
+
async function newLayersSupportTrackInfo(properties) {
|
|
1975
|
+
const ModConstructor = await importLayersSupportTrackInfo();
|
|
1976
|
+
return new ModConstructor(properties);
|
|
1977
|
+
}
|
|
1978
|
+
async function importLayersSupportTrackPartInfo() {
|
|
1979
|
+
if (isAMD) {
|
|
1980
|
+
return await window.$arcgis.import("esri/layers/support/TrackPartInfo");
|
|
1981
|
+
}
|
|
1982
|
+
const module = await import("@arcgis/core/layers/support/TrackPartInfo.js");
|
|
1983
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1984
|
+
}
|
|
1985
|
+
async function newLayersSupportTrackPartInfo(properties) {
|
|
1986
|
+
const ModConstructor = await importLayersSupportTrackPartInfo();
|
|
1987
|
+
return new ModConstructor(properties);
|
|
1988
|
+
}
|
|
1901
1989
|
async function importLayersSupportVideoElement() {
|
|
1902
1990
|
if (isAMD) {
|
|
1903
1991
|
return await window.$arcgis.import("esri/layers/support/VideoElement");
|
|
@@ -2558,6 +2646,17 @@ async function newPopupRelatedRecordsInfo(properties) {
|
|
|
2558
2646
|
const ModConstructor = await importPopupRelatedRecordsInfo();
|
|
2559
2647
|
return new ModConstructor(properties);
|
|
2560
2648
|
}
|
|
2649
|
+
async function importPopupSupportAttachmentsOrderByInfo() {
|
|
2650
|
+
if (isAMD) {
|
|
2651
|
+
return await window.$arcgis.import("esri/popup/support/AttachmentsOrderByInfo");
|
|
2652
|
+
}
|
|
2653
|
+
const module = await import("@arcgis/core/popup/support/AttachmentsOrderByInfo.js");
|
|
2654
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2655
|
+
}
|
|
2656
|
+
async function newPopupSupportAttachmentsOrderByInfo(properties) {
|
|
2657
|
+
const ModConstructor = await importPopupSupportAttachmentsOrderByInfo();
|
|
2658
|
+
return new ModConstructor(properties);
|
|
2659
|
+
}
|
|
2561
2660
|
async function importPopupSupportFieldInfoFormat() {
|
|
2562
2661
|
if (isAMD) {
|
|
2563
2662
|
return await window.$arcgis.import("esri/popup/support/FieldInfoFormat");
|
|
@@ -2580,6 +2679,17 @@ async function newPopupSupportRelatedRecordsInfoFieldOrder(properties) {
|
|
|
2580
2679
|
const ModConstructor = await importPopupSupportRelatedRecordsInfoFieldOrder();
|
|
2581
2680
|
return new ModConstructor(properties);
|
|
2582
2681
|
}
|
|
2682
|
+
async function importPopupSupportUtilityNetworkAssociationType() {
|
|
2683
|
+
if (isAMD) {
|
|
2684
|
+
return await window.$arcgis.import("esri/popup/support/UtilityNetworkAssociationType");
|
|
2685
|
+
}
|
|
2686
|
+
const module = await import("@arcgis/core/popup/support/UtilityNetworkAssociationType.js");
|
|
2687
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2688
|
+
}
|
|
2689
|
+
async function newPopupSupportUtilityNetworkAssociationType(properties) {
|
|
2690
|
+
const ModConstructor = await importPopupSupportUtilityNetworkAssociationType();
|
|
2691
|
+
return new ModConstructor(properties);
|
|
2692
|
+
}
|
|
2583
2693
|
async function importPopupTemplate() {
|
|
2584
2694
|
if (isAMD) {
|
|
2585
2695
|
return await window.$arcgis.import("esri/PopupTemplate");
|
|
@@ -3405,6 +3515,61 @@ async function newRestKnowledgeGraphSourceTypeValueBehavior(properties) {
|
|
|
3405
3515
|
const ModConstructor = await importRestKnowledgeGraphSourceTypeValueBehavior();
|
|
3406
3516
|
return new ModConstructor(properties);
|
|
3407
3517
|
}
|
|
3518
|
+
async function importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration() {
|
|
3519
|
+
if (isAMD) {
|
|
3520
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsConfiguration");
|
|
3521
|
+
}
|
|
3522
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsConfiguration.js");
|
|
3523
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3524
|
+
}
|
|
3525
|
+
async function newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration(properties) {
|
|
3526
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration();
|
|
3527
|
+
return new ModConstructor(properties);
|
|
3528
|
+
}
|
|
3529
|
+
async function importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity() {
|
|
3530
|
+
if (isAMD) {
|
|
3531
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsEntity");
|
|
3532
|
+
}
|
|
3533
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsEntity.js");
|
|
3534
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3535
|
+
}
|
|
3536
|
+
async function newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity(properties) {
|
|
3537
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity();
|
|
3538
|
+
return new ModConstructor(properties);
|
|
3539
|
+
}
|
|
3540
|
+
async function importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter() {
|
|
3541
|
+
if (isAMD) {
|
|
3542
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsPathFilter");
|
|
3543
|
+
}
|
|
3544
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsPathFilter.js");
|
|
3545
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3546
|
+
}
|
|
3547
|
+
async function newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter(properties) {
|
|
3548
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter();
|
|
3549
|
+
return new ModConstructor(properties);
|
|
3550
|
+
}
|
|
3551
|
+
async function importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection() {
|
|
3552
|
+
if (isAMD) {
|
|
3553
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/CIMKGTraversalDirection");
|
|
3554
|
+
}
|
|
3555
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/CIMKGTraversalDirection.js");
|
|
3556
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3557
|
+
}
|
|
3558
|
+
async function newRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection(properties) {
|
|
3559
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection();
|
|
3560
|
+
return new ModConstructor(properties);
|
|
3561
|
+
}
|
|
3562
|
+
async function importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings() {
|
|
3563
|
+
if (isAMD) {
|
|
3564
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/FindPathsToolSettings");
|
|
3565
|
+
}
|
|
3566
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/FindPathsToolSettings.js");
|
|
3567
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3568
|
+
}
|
|
3569
|
+
async function newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings(properties) {
|
|
3570
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings();
|
|
3571
|
+
return new ModConstructor(properties);
|
|
3572
|
+
}
|
|
3408
3573
|
async function importRestNetworksSupportAggregatedGeometry() {
|
|
3409
3574
|
if (isAMD) {
|
|
3410
3575
|
return await window.$arcgis.import("esri/rest/networks/support/AggregatedGeometry");
|
|
@@ -3559,6 +3724,17 @@ async function newRestSupportAddressCandidate(properties) {
|
|
|
3559
3724
|
const ModConstructor = await importRestSupportAddressCandidate();
|
|
3560
3725
|
return new ModConstructor(properties);
|
|
3561
3726
|
}
|
|
3727
|
+
async function importRestSupportAttributeBinsFeatureSet() {
|
|
3728
|
+
if (isAMD) {
|
|
3729
|
+
return await window.$arcgis.import("esri/rest/support/AttributeBinsFeatureSet");
|
|
3730
|
+
}
|
|
3731
|
+
const module = await import("@arcgis/core/rest/support/AttributeBinsFeatureSet.js");
|
|
3732
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3733
|
+
}
|
|
3734
|
+
async function newRestSupportAttributeBinsFeatureSet(properties) {
|
|
3735
|
+
const ModConstructor = await importRestSupportAttributeBinsFeatureSet();
|
|
3736
|
+
return new ModConstructor(properties);
|
|
3737
|
+
}
|
|
3562
3738
|
async function importRestSupportAttributeBinsQuery() {
|
|
3563
3739
|
if (isAMD) {
|
|
3564
3740
|
return await window.$arcgis.import("esri/rest/support/AttributeBinsQuery");
|
|
@@ -3570,6 +3746,17 @@ async function newRestSupportAttributeBinsQuery(properties) {
|
|
|
3570
3746
|
const ModConstructor = await importRestSupportAttributeBinsQuery();
|
|
3571
3747
|
return new ModConstructor(properties);
|
|
3572
3748
|
}
|
|
3749
|
+
async function importRestSupportAttributeBinsGrouping() {
|
|
3750
|
+
if (isAMD) {
|
|
3751
|
+
return await window.$arcgis.import("esri/rest/support/AttributeBinsGrouping");
|
|
3752
|
+
}
|
|
3753
|
+
const module = await import("@arcgis/core/rest/support/AttributeBinsGrouping.js");
|
|
3754
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3755
|
+
}
|
|
3756
|
+
async function newRestSupportAttributeBinsGrouping(properties) {
|
|
3757
|
+
const ModConstructor = await importRestSupportAttributeBinsGrouping();
|
|
3758
|
+
return new ModConstructor(properties);
|
|
3759
|
+
}
|
|
3573
3760
|
async function importRestSupportAutoIntervalBinParameters() {
|
|
3574
3761
|
if (isAMD) {
|
|
3575
3762
|
return await window.$arcgis.import("esri/rest/support/AutoIntervalBinParameters");
|
|
@@ -4274,6 +4461,39 @@ async function newRestSupportImageUrlResult(properties) {
|
|
|
4274
4461
|
const ModConstructor = await importRestSupportImageUrlResult();
|
|
4275
4462
|
return new ModConstructor(properties);
|
|
4276
4463
|
}
|
|
4464
|
+
async function importRestSupportImageVolume() {
|
|
4465
|
+
if (isAMD) {
|
|
4466
|
+
return await window.$arcgis.import("esri/rest/support/ImageVolume");
|
|
4467
|
+
}
|
|
4468
|
+
const module = await import("@arcgis/core/rest/support/ImageVolume.js");
|
|
4469
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4470
|
+
}
|
|
4471
|
+
async function newRestSupportImageVolume(properties) {
|
|
4472
|
+
const ModConstructor = await importRestSupportImageVolume();
|
|
4473
|
+
return new ModConstructor(properties);
|
|
4474
|
+
}
|
|
4475
|
+
async function importRestSupportImageVolumeParameters() {
|
|
4476
|
+
if (isAMD) {
|
|
4477
|
+
return await window.$arcgis.import("esri/rest/support/ImageVolumeParameters");
|
|
4478
|
+
}
|
|
4479
|
+
const module = await import("@arcgis/core/rest/support/ImageVolumeParameters.js");
|
|
4480
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4481
|
+
}
|
|
4482
|
+
async function newRestSupportImageVolumeParameters(properties) {
|
|
4483
|
+
const ModConstructor = await importRestSupportImageVolumeParameters();
|
|
4484
|
+
return new ModConstructor(properties);
|
|
4485
|
+
}
|
|
4486
|
+
async function importRestSupportImageVolumeResult() {
|
|
4487
|
+
if (isAMD) {
|
|
4488
|
+
return await window.$arcgis.import("esri/rest/support/ImageVolumeResult");
|
|
4489
|
+
}
|
|
4490
|
+
const module = await import("@arcgis/core/rest/support/ImageVolumeResult.js");
|
|
4491
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4492
|
+
}
|
|
4493
|
+
async function newRestSupportImageVolumeResult(properties) {
|
|
4494
|
+
const ModConstructor = await importRestSupportImageVolumeResult();
|
|
4495
|
+
return new ModConstructor(properties);
|
|
4496
|
+
}
|
|
4277
4497
|
async function importRestSupportJobInfo() {
|
|
4278
4498
|
if (isAMD) {
|
|
4279
4499
|
return await window.$arcgis.import("esri/rest/support/JobInfo");
|
|
@@ -5836,6 +6056,17 @@ async function newViewsLayersImageryLayerView(properties) {
|
|
|
5836
6056
|
const ModConstructor = await importViewsLayersImageryLayerView();
|
|
5837
6057
|
return new ModConstructor(properties);
|
|
5838
6058
|
}
|
|
6059
|
+
async function importViewsLayersImageryTileLayerView() {
|
|
6060
|
+
if (isAMD) {
|
|
6061
|
+
return await window.$arcgis.import("esri/views/layers/ImageryTileLayerView");
|
|
6062
|
+
}
|
|
6063
|
+
const module = await import("@arcgis/core/views/layers/ImageryTileLayerView.js");
|
|
6064
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6065
|
+
}
|
|
6066
|
+
async function newViewsLayersImageryTileLayerView(properties) {
|
|
6067
|
+
const ModConstructor = await importViewsLayersImageryTileLayerView();
|
|
6068
|
+
return new ModConstructor(properties);
|
|
6069
|
+
}
|
|
5839
6070
|
async function importViewsLayersLayerView() {
|
|
5840
6071
|
if (isAMD) {
|
|
5841
6072
|
return await window.$arcgis.import("esri/views/layers/LayerView");
|
|
@@ -5979,15 +6210,15 @@ async function newViewsSceneView(properties) {
|
|
|
5979
6210
|
const ModConstructor = await importViewsSceneView();
|
|
5980
6211
|
return new ModConstructor(properties);
|
|
5981
6212
|
}
|
|
5982
|
-
async function
|
|
6213
|
+
async function importViewsSupportHighlightOptions() {
|
|
5983
6214
|
if (isAMD) {
|
|
5984
|
-
return await window.$arcgis.import("esri/views/support/
|
|
6215
|
+
return await window.$arcgis.import("esri/views/support/HighlightOptions");
|
|
5985
6216
|
}
|
|
5986
|
-
const module = await import("@arcgis/core/views/support/
|
|
6217
|
+
const module = await import("@arcgis/core/views/support/HighlightOptions.js");
|
|
5987
6218
|
return isDefaultModule(module) ? module.default : module;
|
|
5988
6219
|
}
|
|
5989
|
-
async function
|
|
5990
|
-
const ModConstructor = await
|
|
6220
|
+
async function newViewsSupportHighlightOptions(properties) {
|
|
6221
|
+
const ModConstructor = await importViewsSupportHighlightOptions();
|
|
5991
6222
|
return new ModConstructor(properties);
|
|
5992
6223
|
}
|
|
5993
6224
|
async function importViewsUiDefaultUI() {
|
|
@@ -6419,15 +6650,15 @@ async function newWebsceneSlide(properties) {
|
|
|
6419
6650
|
const ModConstructor = await importWebsceneSlide();
|
|
6420
6651
|
return new ModConstructor(properties);
|
|
6421
6652
|
}
|
|
6422
|
-
async function
|
|
6653
|
+
async function importWebsceneSlideLegendInfo() {
|
|
6423
6654
|
if (isAMD) {
|
|
6424
|
-
return await window.$arcgis.import("esri/webscene/
|
|
6655
|
+
return await window.$arcgis.import("esri/webscene/SlideLegendInfo");
|
|
6425
6656
|
}
|
|
6426
|
-
const module = await import("@arcgis/core/webscene/
|
|
6657
|
+
const module = await import("@arcgis/core/webscene/SlideLegendInfo.js");
|
|
6427
6658
|
return isDefaultModule(module) ? module.default : module;
|
|
6428
6659
|
}
|
|
6429
|
-
async function
|
|
6430
|
-
const ModConstructor = await
|
|
6660
|
+
async function newWebsceneSlideLegendInfo(properties) {
|
|
6661
|
+
const ModConstructor = await importWebsceneSlideLegendInfo();
|
|
6431
6662
|
return new ModConstructor(properties);
|
|
6432
6663
|
}
|
|
6433
6664
|
async function importWebsceneSunLighting() {
|
|
@@ -7662,6 +7893,17 @@ async function newWidgetsLegendSupportActiveLayerInfo(properties) {
|
|
|
7662
7893
|
const ModConstructor = await importWidgetsLegendSupportActiveLayerInfo();
|
|
7663
7894
|
return new ModConstructor(properties);
|
|
7664
7895
|
}
|
|
7896
|
+
async function importWidgetsLinkChartLayoutSwitcherLinkChartLayoutSwitcherViewModel() {
|
|
7897
|
+
if (isAMD) {
|
|
7898
|
+
return await window.$arcgis.import("esri/widgets/LinkChartLayoutSwitcher/LinkChartLayoutSwitcherViewModel");
|
|
7899
|
+
}
|
|
7900
|
+
const module = await import("@arcgis/core/widgets/LinkChartLayoutSwitcher/LinkChartLayoutSwitcherViewModel.js");
|
|
7901
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7902
|
+
}
|
|
7903
|
+
async function newWidgetsLinkChartLayoutSwitcherLinkChartLayoutSwitcherViewModel(properties) {
|
|
7904
|
+
const ModConstructor = await importWidgetsLinkChartLayoutSwitcherLinkChartLayoutSwitcherViewModel();
|
|
7905
|
+
return new ModConstructor(properties);
|
|
7906
|
+
}
|
|
7665
7907
|
async function importWidgetsLineOfSight() {
|
|
7666
7908
|
if (isAMD) {
|
|
7667
7909
|
return await window.$arcgis.import("esri/widgets/LineOfSight");
|
|
@@ -8729,6 +8971,20 @@ async function importCoreWorkers() {
|
|
|
8729
8971
|
const module = await import("@arcgis/core/core/workers.js");
|
|
8730
8972
|
return isDefaultModule(module) ? module.default : module;
|
|
8731
8973
|
}
|
|
8974
|
+
async function importEditingSharedTemplatesSharedTemplate() {
|
|
8975
|
+
if (isAMD) {
|
|
8976
|
+
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplate");
|
|
8977
|
+
}
|
|
8978
|
+
const module = await import("@arcgis/core/editing/sharedTemplates/SharedTemplate.js");
|
|
8979
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8980
|
+
}
|
|
8981
|
+
async function importEditingSharedTemplatesSharedTemplateMetadata() {
|
|
8982
|
+
if (isAMD) {
|
|
8983
|
+
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplateMetadata");
|
|
8984
|
+
}
|
|
8985
|
+
const module = await import("@arcgis/core/editing/sharedTemplates/SharedTemplateMetadata.js");
|
|
8986
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8987
|
+
}
|
|
8732
8988
|
async function importFormElementsInputs() {
|
|
8733
8989
|
if (isAMD) {
|
|
8734
8990
|
return await window.$arcgis.import("esri/form/elements/inputs");
|
|
@@ -9058,6 +9314,13 @@ async function importGeometryOperatorsPolygonSlicerOperator() {
|
|
|
9058
9314
|
const module = await import("@arcgis/core/geometry/operators/polygonSlicerOperator.js");
|
|
9059
9315
|
return isDefaultModule(module) ? module.default : module;
|
|
9060
9316
|
}
|
|
9317
|
+
async function importGeometryOperatorsProjectOperator() {
|
|
9318
|
+
if (isAMD) {
|
|
9319
|
+
return await window.$arcgis.import("esri/geometry/operators/projectOperator");
|
|
9320
|
+
}
|
|
9321
|
+
const module = await import("@arcgis/core/geometry/operators/projectOperator.js");
|
|
9322
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9323
|
+
}
|
|
9061
9324
|
async function importGeometryOperatorsProximityOperator() {
|
|
9062
9325
|
if (isAMD) {
|
|
9063
9326
|
return await window.$arcgis.import("esri/geometry/operators/proximityOperator");
|
|
@@ -9079,6 +9342,13 @@ async function importGeometryOperatorsReshapeOperator() {
|
|
|
9079
9342
|
const module = await import("@arcgis/core/geometry/operators/reshapeOperator.js");
|
|
9080
9343
|
return isDefaultModule(module) ? module.default : module;
|
|
9081
9344
|
}
|
|
9345
|
+
async function importGeometryOperatorsShapePreservingProjectOperator() {
|
|
9346
|
+
if (isAMD) {
|
|
9347
|
+
return await window.$arcgis.import("esri/geometry/operators/shapePreservingProjectOperator");
|
|
9348
|
+
}
|
|
9349
|
+
const module = await import("@arcgis/core/geometry/operators/shapePreservingProjectOperator.js");
|
|
9350
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9351
|
+
}
|
|
9082
9352
|
async function importGeometryOperatorsSimplifyOperator() {
|
|
9083
9353
|
if (isAMD) {
|
|
9084
9354
|
return await window.$arcgis.import("esri/geometry/operators/simplifyOperator");
|
|
@@ -9114,6 +9384,13 @@ async function importGeometryOperatorsWithinOperator() {
|
|
|
9114
9384
|
const module = await import("@arcgis/core/geometry/operators/withinOperator.js");
|
|
9115
9385
|
return isDefaultModule(module) ? module.default : module;
|
|
9116
9386
|
}
|
|
9387
|
+
async function importGeometryOperatorsSupportGeographicTransformationUtils() {
|
|
9388
|
+
if (isAMD) {
|
|
9389
|
+
return await window.$arcgis.import("esri/geometry/operators/support/geographicTransformationUtils");
|
|
9390
|
+
}
|
|
9391
|
+
const module = await import("@arcgis/core/geometry/operators/support/geographicTransformationUtils.js");
|
|
9392
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9393
|
+
}
|
|
9117
9394
|
async function importGeometrySupportGeodesicUtils() {
|
|
9118
9395
|
if (isAMD) {
|
|
9119
9396
|
return await window.$arcgis.import("esri/geometry/support/geodesicUtils");
|
|
@@ -9170,13 +9447,6 @@ async function importLayersCatalogCatalogUtils() {
|
|
|
9170
9447
|
const module = await import("@arcgis/core/layers/catalog/catalogUtils.js");
|
|
9171
9448
|
return isDefaultModule(module) ? module.default : module;
|
|
9172
9449
|
}
|
|
9173
|
-
async function importLayersKnowledgeGraphCypherUtils() {
|
|
9174
|
-
if (isAMD) {
|
|
9175
|
-
return await window.$arcgis.import("esri/layers/knowledgeGraph/cypherUtils");
|
|
9176
|
-
}
|
|
9177
|
-
const module = await import("@arcgis/core/layers/knowledgeGraph/cypherUtils.js");
|
|
9178
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9179
|
-
}
|
|
9180
9450
|
async function importLayersKnowledgeGraphSupportUtils() {
|
|
9181
9451
|
if (isAMD) {
|
|
9182
9452
|
return await window.$arcgis.import("esri/layers/knowledgeGraph/supportUtils");
|
|
@@ -9219,6 +9489,13 @@ async function importLayersSupportArcadeUtils() {
|
|
|
9219
9489
|
const module = await import("@arcgis/core/layers/support/arcadeUtils.js");
|
|
9220
9490
|
return isDefaultModule(module) ? module.default : module;
|
|
9221
9491
|
}
|
|
9492
|
+
async function importLayersSupportCsvUtils() {
|
|
9493
|
+
if (isAMD) {
|
|
9494
|
+
return await window.$arcgis.import("esri/layers/support/csvUtils");
|
|
9495
|
+
}
|
|
9496
|
+
const module = await import("@arcgis/core/layers/support/csvUtils.js");
|
|
9497
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9498
|
+
}
|
|
9222
9499
|
async function importLayersSupportFieldUtils() {
|
|
9223
9500
|
if (isAMD) {
|
|
9224
9501
|
return await window.$arcgis.import("esri/layers/support/fieldUtils");
|
|
@@ -9275,13 +9552,6 @@ async function importPopupContent() {
|
|
|
9275
9552
|
const module = await import("@arcgis/core/popup/content.js");
|
|
9276
9553
|
return isDefaultModule(module) ? module.default : module;
|
|
9277
9554
|
}
|
|
9278
|
-
async function importPopupSupportUtilityNetworkAssociationType() {
|
|
9279
|
-
if (isAMD) {
|
|
9280
|
-
return await window.$arcgis.import("esri/popup/support/UtilityNetworkAssociationType");
|
|
9281
|
-
}
|
|
9282
|
-
const module = await import("@arcgis/core/popup/support/UtilityNetworkAssociationType.js");
|
|
9283
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9284
|
-
}
|
|
9285
9555
|
async function importRasterRenderers() {
|
|
9286
9556
|
if (isAMD) {
|
|
9287
9557
|
return await window.$arcgis.import("esri/rasterRenderers");
|
|
@@ -9926,6 +10196,13 @@ async function importViewsSupportColorUtils() {
|
|
|
9926
10196
|
const module = await import("@arcgis/core/views/support/colorUtils.js");
|
|
9927
10197
|
return isDefaultModule(module) ? module.default : module;
|
|
9928
10198
|
}
|
|
10199
|
+
async function importWebsceneSupportSlideElements() {
|
|
10200
|
+
if (isAMD) {
|
|
10201
|
+
return await window.$arcgis.import("esri/webscene/support/SlideElements");
|
|
10202
|
+
}
|
|
10203
|
+
const module = await import("@arcgis/core/webscene/support/SlideElements.js");
|
|
10204
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10205
|
+
}
|
|
9929
10206
|
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
9930
10207
|
if (isAMD) {
|
|
9931
10208
|
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
@@ -9940,13 +10217,6 @@ async function importWidgetsSmartMappingSupportUtils() {
|
|
|
9940
10217
|
const module = await import("@arcgis/core/widgets/smartMapping/support/utils.js");
|
|
9941
10218
|
return isDefaultModule(module) ? module.default : module;
|
|
9942
10219
|
}
|
|
9943
|
-
async function importWidgetsSupportUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel() {
|
|
9944
|
-
if (isAMD) {
|
|
9945
|
-
return await window.$arcgis.import("esri/widgets/support/UtilityNetworkAssociations/UtilityNetworkAssociationsViewModel");
|
|
9946
|
-
}
|
|
9947
|
-
const module = await import("@arcgis/core/widgets/support/UtilityNetworkAssociations/UtilityNetworkAssociationsViewModel.js");
|
|
9948
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9949
|
-
}
|
|
9950
10220
|
async function importWidgetsSupportWidget() {
|
|
9951
10221
|
if (isAMD) {
|
|
9952
10222
|
return await window.$arcgis.import("esri/widgets/support/widget");
|
|
@@ -10112,6 +10382,7 @@ export {
|
|
|
10112
10382
|
importApplicationsSceneViewerDevEnvironmentUtils,
|
|
10113
10383
|
importApplicationsWebEditorSketchUtils,
|
|
10114
10384
|
importArcade,
|
|
10385
|
+
importAttributeBinsGraphic,
|
|
10115
10386
|
importBasemap,
|
|
10116
10387
|
importCamera,
|
|
10117
10388
|
importCameraLayout,
|
|
@@ -10131,6 +10402,8 @@ export {
|
|
|
10131
10402
|
importCoreUrlUtils,
|
|
10132
10403
|
importCoreWorkers,
|
|
10133
10404
|
importCoreWorkersConnection,
|
|
10405
|
+
importEditingSharedTemplatesSharedTemplate,
|
|
10406
|
+
importEditingSharedTemplatesSharedTemplateMetadata,
|
|
10134
10407
|
importFormElements,
|
|
10135
10408
|
importFormElementsAttachmentElement,
|
|
10136
10409
|
importFormElementsElement,
|
|
@@ -10208,10 +10481,15 @@ export {
|
|
|
10208
10481
|
importGeometryOperatorsOverlapsOperator,
|
|
10209
10482
|
importGeometryOperatorsPolygonOverlayOperator,
|
|
10210
10483
|
importGeometryOperatorsPolygonSlicerOperator,
|
|
10484
|
+
importGeometryOperatorsProjectOperator,
|
|
10211
10485
|
importGeometryOperatorsProximityOperator,
|
|
10212
10486
|
importGeometryOperatorsRelateOperator,
|
|
10213
10487
|
importGeometryOperatorsReshapeOperator,
|
|
10488
|
+
importGeometryOperatorsShapePreservingProjectOperator,
|
|
10214
10489
|
importGeometryOperatorsSimplifyOperator,
|
|
10490
|
+
importGeometryOperatorsSupportGeographicTransformation,
|
|
10491
|
+
importGeometryOperatorsSupportGeographicTransformationStep,
|
|
10492
|
+
importGeometryOperatorsSupportGeographicTransformationUtils,
|
|
10215
10493
|
importGeometryOperatorsSupportTransformation,
|
|
10216
10494
|
importGeometryOperatorsSymmetricDifferenceOperator,
|
|
10217
10495
|
importGeometryOperatorsTouchesOperator,
|
|
@@ -10270,7 +10548,6 @@ export {
|
|
|
10270
10548
|
importLayersIntegratedMesh3DTilesLayer,
|
|
10271
10549
|
importLayersIntegratedMeshLayer,
|
|
10272
10550
|
importLayersKMLLayer,
|
|
10273
|
-
importLayersKnowledgeGraphCypherUtils,
|
|
10274
10551
|
importLayersKnowledgeGraphKnowledgeGraphSublayer,
|
|
10275
10552
|
importLayersKnowledgeGraphLayer,
|
|
10276
10553
|
importLayersKnowledgeGraphSupportUtils,
|
|
@@ -10303,7 +10580,10 @@ export {
|
|
|
10303
10580
|
importLayersSupportCodedValueDomain,
|
|
10304
10581
|
importLayersSupportControlPointsGeoreference,
|
|
10305
10582
|
importLayersSupportCornersGeoreference,
|
|
10583
|
+
importLayersSupportCsvUtils,
|
|
10306
10584
|
importLayersSupportDimensionalDefinition,
|
|
10585
|
+
importLayersSupportDisplayFilter,
|
|
10586
|
+
importLayersSupportDisplayFilterInfo,
|
|
10307
10587
|
importLayersSupportDomain,
|
|
10308
10588
|
importLayersSupportElevationSampler,
|
|
10309
10589
|
importLayersSupportExpressionInfo,
|
|
@@ -10331,6 +10611,7 @@ export {
|
|
|
10331
10611
|
importLayersSupportMapImage,
|
|
10332
10612
|
importLayersSupportMosaicRule,
|
|
10333
10613
|
importLayersSupportMultidimensionalSubset,
|
|
10614
|
+
importLayersSupportOrderByInfo,
|
|
10334
10615
|
importLayersSupportPixelBlock,
|
|
10335
10616
|
importLayersSupportPublishingInfo,
|
|
10336
10617
|
importLayersSupportRangeDomain,
|
|
@@ -10356,6 +10637,8 @@ export {
|
|
|
10356
10637
|
importLayersSupportTileInfo,
|
|
10357
10638
|
importLayersSupportTileMatrixSet,
|
|
10358
10639
|
importLayersSupportTimeInfo,
|
|
10640
|
+
importLayersSupportTrackInfo,
|
|
10641
|
+
importLayersSupportTrackPartInfo,
|
|
10359
10642
|
importLayersSupportVideoElement,
|
|
10360
10643
|
importLayersSupportVideoTimeExtent,
|
|
10361
10644
|
importLayersSupportWMSSublayer,
|
|
@@ -10420,6 +10703,7 @@ export {
|
|
|
10420
10703
|
importPopupFieldInfo,
|
|
10421
10704
|
importPopupLayerOptions,
|
|
10422
10705
|
importPopupRelatedRecordsInfo,
|
|
10706
|
+
importPopupSupportAttachmentsOrderByInfo,
|
|
10423
10707
|
importPopupSupportFieldInfoFormat,
|
|
10424
10708
|
importPopupSupportRelatedRecordsInfoFieldOrder,
|
|
10425
10709
|
importPopupSupportUtilityNetworkAssociationType,
|
|
@@ -10512,6 +10796,11 @@ export {
|
|
|
10512
10796
|
importRestKnowledgeGraphService,
|
|
10513
10797
|
importRestKnowledgeGraphServiceDefinition,
|
|
10514
10798
|
importRestKnowledgeGraphSourceTypeValueBehavior,
|
|
10799
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration,
|
|
10800
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity,
|
|
10801
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter,
|
|
10802
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection,
|
|
10803
|
+
importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings,
|
|
10515
10804
|
importRestLocator,
|
|
10516
10805
|
importRestNetworkService,
|
|
10517
10806
|
importRestNetworksQueryAssociations,
|
|
@@ -10541,6 +10830,8 @@ export {
|
|
|
10541
10830
|
importRestSupportArealUnit,
|
|
10542
10831
|
importRestSupportAreasAndLengthsParameters,
|
|
10543
10832
|
importRestSupportAttachmentQuery,
|
|
10833
|
+
importRestSupportAttributeBinsFeatureSet,
|
|
10834
|
+
importRestSupportAttributeBinsGrouping,
|
|
10544
10835
|
importRestSupportAttributeBinsQuery,
|
|
10545
10836
|
importRestSupportAutoIntervalBinParameters,
|
|
10546
10837
|
importRestSupportBaseImageMeasureParameters,
|
|
@@ -10602,6 +10893,9 @@ export {
|
|
|
10602
10893
|
importRestSupportImageToMapParameters,
|
|
10603
10894
|
importRestSupportImageUrlParameters,
|
|
10604
10895
|
importRestSupportImageUrlResult,
|
|
10896
|
+
importRestSupportImageVolume,
|
|
10897
|
+
importRestSupportImageVolumeParameters,
|
|
10898
|
+
importRestSupportImageVolumeResult,
|
|
10605
10899
|
importRestSupportJobInfo,
|
|
10606
10900
|
importRestSupportLegendLayer,
|
|
10607
10901
|
importRestSupportLengthsParameters,
|
|
@@ -10810,6 +11104,7 @@ export {
|
|
|
10810
11104
|
importViewsLayersFeatureLayerView,
|
|
10811
11105
|
importViewsLayersGroupLayerView,
|
|
10812
11106
|
importViewsLayersImageryLayerView,
|
|
11107
|
+
importViewsLayersImageryTileLayerView,
|
|
10813
11108
|
importViewsLayersLayerView,
|
|
10814
11109
|
importViewsLayersMediaLayerView,
|
|
10815
11110
|
importViewsLayersOGCFeatureLayerView,
|
|
@@ -10824,7 +11119,7 @@ export {
|
|
|
10824
11119
|
importViewsNavigationNavigationActionMap,
|
|
10825
11120
|
importViewsSceneView,
|
|
10826
11121
|
importViewsSupportColorUtils,
|
|
10827
|
-
|
|
11122
|
+
importViewsSupportHighlightOptions,
|
|
10828
11123
|
importViewsTheme,
|
|
10829
11124
|
importViewsUiDefaultUI,
|
|
10830
11125
|
importViewsUiUI,
|
|
@@ -10864,8 +11159,9 @@ export {
|
|
|
10864
11159
|
importWebsceneInitialViewProperties,
|
|
10865
11160
|
importWebscenePresentation,
|
|
10866
11161
|
importWebsceneSlide,
|
|
10867
|
-
|
|
11162
|
+
importWebsceneSlideLegendInfo,
|
|
10868
11163
|
importWebsceneSunLighting,
|
|
11164
|
+
importWebsceneSupportSlideElements,
|
|
10869
11165
|
importWebsceneVirtualLighting,
|
|
10870
11166
|
importWidgetsAreaMeasurement2D,
|
|
10871
11167
|
importWidgetsAreaMeasurement2DAreaMeasurement2DViewModel,
|
|
@@ -10981,6 +11277,7 @@ export {
|
|
|
10981
11277
|
importWidgetsLineOfSight,
|
|
10982
11278
|
importWidgetsLineOfSightLineOfSightTarget,
|
|
10983
11279
|
importWidgetsLineOfSightLineOfSightViewModel,
|
|
11280
|
+
importWidgetsLinkChartLayoutSwitcherLinkChartLayoutSwitcherViewModel,
|
|
10984
11281
|
importWidgetsLocate,
|
|
10985
11282
|
importWidgetsLocateLocateViewModel,
|
|
10986
11283
|
importWidgetsMeasurement,
|
|
@@ -11038,7 +11335,6 @@ export {
|
|
|
11038
11335
|
importWidgetsSupportGridControlsGridControlsViewModel,
|
|
11039
11336
|
importWidgetsSupportSnappingControls,
|
|
11040
11337
|
importWidgetsSupportSnappingControlsSnappingControlsViewModel,
|
|
11041
|
-
importWidgetsSupportUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
11042
11338
|
importWidgetsSupportWidget,
|
|
11043
11339
|
importWidgetsSwipe,
|
|
11044
11340
|
importWidgetsSwipeSwipeViewModel,
|
|
@@ -11084,6 +11380,7 @@ export {
|
|
|
11084
11380
|
newAnalysisSlicePlane,
|
|
11085
11381
|
newAnalysisViewshed,
|
|
11086
11382
|
newAnalysisViewshedAnalysis,
|
|
11383
|
+
newAttributeBinsGraphic,
|
|
11087
11384
|
newBasemap,
|
|
11088
11385
|
newCamera,
|
|
11089
11386
|
newCameraLayout,
|
|
@@ -11124,6 +11421,8 @@ export {
|
|
|
11124
11421
|
newGeometryHeightModelInfo,
|
|
11125
11422
|
newGeometryMesh,
|
|
11126
11423
|
newGeometryMultipoint,
|
|
11424
|
+
newGeometryOperatorsSupportGeographicTransformation,
|
|
11425
|
+
newGeometryOperatorsSupportGeographicTransformationStep,
|
|
11127
11426
|
newGeometryOperatorsSupportTransformation,
|
|
11128
11427
|
newGeometryPoint,
|
|
11129
11428
|
newGeometryPolygon,
|
|
@@ -11195,6 +11494,8 @@ export {
|
|
|
11195
11494
|
newLayersSupportControlPointsGeoreference,
|
|
11196
11495
|
newLayersSupportCornersGeoreference,
|
|
11197
11496
|
newLayersSupportDimensionalDefinition,
|
|
11497
|
+
newLayersSupportDisplayFilter,
|
|
11498
|
+
newLayersSupportDisplayFilterInfo,
|
|
11198
11499
|
newLayersSupportDomain,
|
|
11199
11500
|
newLayersSupportElevationSampler,
|
|
11200
11501
|
newLayersSupportExpressionInfo,
|
|
@@ -11221,6 +11522,7 @@ export {
|
|
|
11221
11522
|
newLayersSupportMapImage,
|
|
11222
11523
|
newLayersSupportMosaicRule,
|
|
11223
11524
|
newLayersSupportMultidimensionalSubset,
|
|
11525
|
+
newLayersSupportOrderByInfo,
|
|
11224
11526
|
newLayersSupportPixelBlock,
|
|
11225
11527
|
newLayersSupportPublishingInfo,
|
|
11226
11528
|
newLayersSupportRangeDomain,
|
|
@@ -11243,6 +11545,8 @@ export {
|
|
|
11243
11545
|
newLayersSupportTileInfo,
|
|
11244
11546
|
newLayersSupportTileMatrixSet,
|
|
11245
11547
|
newLayersSupportTimeInfo,
|
|
11548
|
+
newLayersSupportTrackInfo,
|
|
11549
|
+
newLayersSupportTrackPartInfo,
|
|
11246
11550
|
newLayersSupportVideoElement,
|
|
11247
11551
|
newLayersSupportVideoTimeExtent,
|
|
11248
11552
|
newLayersSupportWMSSublayer,
|
|
@@ -11303,8 +11607,10 @@ export {
|
|
|
11303
11607
|
newPopupFieldInfo,
|
|
11304
11608
|
newPopupLayerOptions,
|
|
11305
11609
|
newPopupRelatedRecordsInfo,
|
|
11610
|
+
newPopupSupportAttachmentsOrderByInfo,
|
|
11306
11611
|
newPopupSupportFieldInfoFormat,
|
|
11307
11612
|
newPopupSupportRelatedRecordsInfoFieldOrder,
|
|
11613
|
+
newPopupSupportUtilityNetworkAssociationType,
|
|
11308
11614
|
newPopupTemplate,
|
|
11309
11615
|
newPortalPortal,
|
|
11310
11616
|
newPortalPortalFolder,
|
|
@@ -11380,6 +11686,11 @@ export {
|
|
|
11380
11686
|
newRestKnowledgeGraphSearchIndex,
|
|
11381
11687
|
newRestKnowledgeGraphServiceDefinition,
|
|
11382
11688
|
newRestKnowledgeGraphSourceTypeValueBehavior,
|
|
11689
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration,
|
|
11690
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity,
|
|
11691
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter,
|
|
11692
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection,
|
|
11693
|
+
newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings,
|
|
11383
11694
|
newRestNetworksSupportAggregatedGeometry,
|
|
11384
11695
|
newRestNetworksSupportAssociation,
|
|
11385
11696
|
newRestNetworksSupportAssociationGeometriesResult,
|
|
@@ -11398,6 +11709,8 @@ export {
|
|
|
11398
11709
|
newRestSupportArealUnit,
|
|
11399
11710
|
newRestSupportAreasAndLengthsParameters,
|
|
11400
11711
|
newRestSupportAttachmentQuery,
|
|
11712
|
+
newRestSupportAttributeBinsFeatureSet,
|
|
11713
|
+
newRestSupportAttributeBinsGrouping,
|
|
11401
11714
|
newRestSupportAttributeBinsQuery,
|
|
11402
11715
|
newRestSupportAutoIntervalBinParameters,
|
|
11403
11716
|
newRestSupportBaseImageMeasureParameters,
|
|
@@ -11459,6 +11772,9 @@ export {
|
|
|
11459
11772
|
newRestSupportImageToMapParameters,
|
|
11460
11773
|
newRestSupportImageUrlParameters,
|
|
11461
11774
|
newRestSupportImageUrlResult,
|
|
11775
|
+
newRestSupportImageVolume,
|
|
11776
|
+
newRestSupportImageVolumeParameters,
|
|
11777
|
+
newRestSupportImageVolumeResult,
|
|
11462
11778
|
newRestSupportJobInfo,
|
|
11463
11779
|
newRestSupportLegendLayer,
|
|
11464
11780
|
newRestSupportLengthsParameters,
|
|
@@ -11601,6 +11917,7 @@ export {
|
|
|
11601
11917
|
newViewsLayersFeatureLayerView,
|
|
11602
11918
|
newViewsLayersGroupLayerView,
|
|
11603
11919
|
newViewsLayersImageryLayerView,
|
|
11920
|
+
newViewsLayersImageryTileLayerView,
|
|
11604
11921
|
newViewsLayersLayerView,
|
|
11605
11922
|
newViewsLayersMediaLayerView,
|
|
11606
11923
|
newViewsLayersOGCFeatureLayerView,
|
|
@@ -11614,7 +11931,7 @@ export {
|
|
|
11614
11931
|
newViewsNavigationNavigation,
|
|
11615
11932
|
newViewsNavigationNavigationActionMap,
|
|
11616
11933
|
newViewsSceneView,
|
|
11617
|
-
|
|
11934
|
+
newViewsSupportHighlightOptions,
|
|
11618
11935
|
newViewsTheme,
|
|
11619
11936
|
newViewsUiDefaultUI,
|
|
11620
11937
|
newViewsUiUI,
|
|
@@ -11654,7 +11971,7 @@ export {
|
|
|
11654
11971
|
newWebsceneInitialViewProperties,
|
|
11655
11972
|
newWebscenePresentation,
|
|
11656
11973
|
newWebsceneSlide,
|
|
11657
|
-
|
|
11974
|
+
newWebsceneSlideLegendInfo,
|
|
11658
11975
|
newWebsceneSunLighting,
|
|
11659
11976
|
newWebsceneVirtualLighting,
|
|
11660
11977
|
newWidgetsAreaMeasurement2D,
|
|
@@ -11770,6 +12087,7 @@ export {
|
|
|
11770
12087
|
newWidgetsLineOfSight,
|
|
11771
12088
|
newWidgetsLineOfSightLineOfSightTarget,
|
|
11772
12089
|
newWidgetsLineOfSightLineOfSightViewModel,
|
|
12090
|
+
newWidgetsLinkChartLayoutSwitcherLinkChartLayoutSwitcherViewModel,
|
|
11773
12091
|
newWidgetsLocate,
|
|
11774
12092
|
newWidgetsLocateLocateViewModel,
|
|
11775
12093
|
newWidgetsMeasurement,
|