@arcgis/core-adapter 4.32.0-next.12 → 4.32.0-next.121
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 +954 -108
- package/dist/index.d.cts +133 -24
- package/dist/index.d.ts +133 -24
- package/dist/index.js +832 -95
- package/package.json +4 -1
- package/.turbo/turbo-build.log +0 -3
- package/scripts/generator.ts +0 -419
- package/scripts/update-adapter-typings.ts +0 -71
- package/src/index.ts +0 -11416
- package/support/api-reference-esm-imports.json +0 -940
- package/support/arcgis.d.ts +0 -147060
- package/tsconfig.json +0 -5
- package/tsup.config.ts +0 -12
package/dist/index.js
CHANGED
|
@@ -314,6 +314,17 @@ async function newFormElementsTextElement(properties) {
|
|
|
314
314
|
const ModConstructor = await importFormElementsTextElement();
|
|
315
315
|
return new ModConstructor(properties);
|
|
316
316
|
}
|
|
317
|
+
async function importFormElementsUtilityNetworkAssociationsElement() {
|
|
318
|
+
if (isAMD) {
|
|
319
|
+
return await window.$arcgis.import("esri/form/elements/UtilityNetworkAssociationsElement");
|
|
320
|
+
}
|
|
321
|
+
const module = await import("@arcgis/core/form/elements/UtilityNetworkAssociationsElement.js");
|
|
322
|
+
return isDefaultModule(module) ? module.default : module;
|
|
323
|
+
}
|
|
324
|
+
async function newFormElementsUtilityNetworkAssociationsElement(properties) {
|
|
325
|
+
const ModConstructor = await importFormElementsUtilityNetworkAssociationsElement();
|
|
326
|
+
return new ModConstructor(properties);
|
|
327
|
+
}
|
|
317
328
|
async function importFormElementsInputsBarcodeScannerInput() {
|
|
318
329
|
if (isAMD) {
|
|
319
330
|
return await window.$arcgis.import("esri/form/elements/inputs/BarcodeScannerInput");
|
|
@@ -622,6 +633,28 @@ async function newGeometrySpatialReference(properties) {
|
|
|
622
633
|
const ModConstructor = await importGeometrySpatialReference();
|
|
623
634
|
return new ModConstructor(properties);
|
|
624
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
|
+
}
|
|
625
658
|
async function importGeometryOperatorsSupportTransformation() {
|
|
626
659
|
if (isAMD) {
|
|
627
660
|
return await window.$arcgis.import("esri/geometry/operators/support/Transformation");
|
|
@@ -743,6 +776,17 @@ async function newGeometrySupportMeshTransform(properties) {
|
|
|
743
776
|
const ModConstructor = await importGeometrySupportMeshTransform();
|
|
744
777
|
return new ModConstructor(properties);
|
|
745
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
|
+
}
|
|
746
790
|
async function importGraphic() {
|
|
747
791
|
if (isAMD) {
|
|
748
792
|
return await window.$arcgis.import("esri/Graphic");
|
|
@@ -1106,6 +1150,17 @@ async function newLayersLineOfSightLayer(properties) {
|
|
|
1106
1150
|
const ModConstructor = await importLayersLineOfSightLayer();
|
|
1107
1151
|
return new ModConstructor(properties);
|
|
1108
1152
|
}
|
|
1153
|
+
async function importLayersLinkChartLayer() {
|
|
1154
|
+
if (isAMD) {
|
|
1155
|
+
return await window.$arcgis.import("esri/layers/LinkChartLayer");
|
|
1156
|
+
}
|
|
1157
|
+
const module = await import("@arcgis/core/layers/LinkChartLayer.js");
|
|
1158
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1159
|
+
}
|
|
1160
|
+
async function newLayersLinkChartLayer(properties) {
|
|
1161
|
+
const ModConstructor = await importLayersLinkChartLayer();
|
|
1162
|
+
return new ModConstructor(properties);
|
|
1163
|
+
}
|
|
1109
1164
|
async function importLayersMapImageLayer() {
|
|
1110
1165
|
if (isAMD) {
|
|
1111
1166
|
return await window.$arcgis.import("esri/layers/MapImageLayer");
|
|
@@ -1348,6 +1403,28 @@ async function newLayersSupportDimensionalDefinition(properties) {
|
|
|
1348
1403
|
const ModConstructor = await importLayersSupportDimensionalDefinition();
|
|
1349
1404
|
return new ModConstructor(properties);
|
|
1350
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
|
+
}
|
|
1351
1428
|
async function importLayersSupportDomain() {
|
|
1352
1429
|
if (isAMD) {
|
|
1353
1430
|
return await window.$arcgis.import("esri/layers/support/Domain");
|
|
@@ -1634,6 +1711,17 @@ async function newLayersSupportMultidimensionalSubset(properties) {
|
|
|
1634
1711
|
const ModConstructor = await importLayersSupportMultidimensionalSubset();
|
|
1635
1712
|
return new ModConstructor(properties);
|
|
1636
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
|
+
}
|
|
1637
1725
|
async function importLayersSupportPixelBlock() {
|
|
1638
1726
|
if (isAMD) {
|
|
1639
1727
|
return await window.$arcgis.import("esri/layers/support/PixelBlock");
|
|
@@ -2118,6 +2206,61 @@ async function newLayersWMTSLayer(properties) {
|
|
|
2118
2206
|
const ModConstructor = await importLayersWMTSLayer();
|
|
2119
2207
|
return new ModConstructor(properties);
|
|
2120
2208
|
}
|
|
2209
|
+
async function importLinkChartChronologicalLayoutSettings() {
|
|
2210
|
+
if (isAMD) {
|
|
2211
|
+
return await window.$arcgis.import("esri/linkChart/ChronologicalLayoutSettings");
|
|
2212
|
+
}
|
|
2213
|
+
const module = await import("@arcgis/core/linkChart/ChronologicalLayoutSettings.js");
|
|
2214
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2215
|
+
}
|
|
2216
|
+
async function newLinkChartChronologicalLayoutSettings(properties) {
|
|
2217
|
+
const ModConstructor = await importLinkChartChronologicalLayoutSettings();
|
|
2218
|
+
return new ModConstructor(properties);
|
|
2219
|
+
}
|
|
2220
|
+
async function importLinkChartLayoutSettings() {
|
|
2221
|
+
if (isAMD) {
|
|
2222
|
+
return await window.$arcgis.import("esri/linkChart/LayoutSettings");
|
|
2223
|
+
}
|
|
2224
|
+
const module = await import("@arcgis/core/linkChart/LayoutSettings.js");
|
|
2225
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2226
|
+
}
|
|
2227
|
+
async function newLinkChartLayoutSettings(properties) {
|
|
2228
|
+
const ModConstructor = await importLinkChartLayoutSettings();
|
|
2229
|
+
return new ModConstructor(properties);
|
|
2230
|
+
}
|
|
2231
|
+
async function importLinkChartLinkChartProperties() {
|
|
2232
|
+
if (isAMD) {
|
|
2233
|
+
return await window.$arcgis.import("esri/linkChart/LinkChartProperties");
|
|
2234
|
+
}
|
|
2235
|
+
const module = await import("@arcgis/core/linkChart/LinkChartProperties.js");
|
|
2236
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2237
|
+
}
|
|
2238
|
+
async function newLinkChartLinkChartProperties(properties) {
|
|
2239
|
+
const ModConstructor = await importLinkChartLinkChartProperties();
|
|
2240
|
+
return new ModConstructor(properties);
|
|
2241
|
+
}
|
|
2242
|
+
async function importLinkChartNonspatialDataDisplay() {
|
|
2243
|
+
if (isAMD) {
|
|
2244
|
+
return await window.$arcgis.import("esri/linkChart/NonspatialDataDisplay");
|
|
2245
|
+
}
|
|
2246
|
+
const module = await import("@arcgis/core/linkChart/NonspatialDataDisplay.js");
|
|
2247
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2248
|
+
}
|
|
2249
|
+
async function newLinkChartNonspatialDataDisplay(properties) {
|
|
2250
|
+
const ModConstructor = await importLinkChartNonspatialDataDisplay();
|
|
2251
|
+
return new ModConstructor(properties);
|
|
2252
|
+
}
|
|
2253
|
+
async function importLinkChartOrganicLayoutSettings() {
|
|
2254
|
+
if (isAMD) {
|
|
2255
|
+
return await window.$arcgis.import("esri/linkChart/OrganicLayoutSettings");
|
|
2256
|
+
}
|
|
2257
|
+
const module = await import("@arcgis/core/linkChart/OrganicLayoutSettings.js");
|
|
2258
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2259
|
+
}
|
|
2260
|
+
async function newLinkChartOrganicLayoutSettings(properties) {
|
|
2261
|
+
const ModConstructor = await importLinkChartOrganicLayoutSettings();
|
|
2262
|
+
return new ModConstructor(properties);
|
|
2263
|
+
}
|
|
2121
2264
|
async function importMap() {
|
|
2122
2265
|
if (isAMD) {
|
|
2123
2266
|
return await window.$arcgis.import("esri/Map");
|
|
@@ -2503,6 +2646,17 @@ async function newPopupSupportRelatedRecordsInfoFieldOrder(properties) {
|
|
|
2503
2646
|
const ModConstructor = await importPopupSupportRelatedRecordsInfoFieldOrder();
|
|
2504
2647
|
return new ModConstructor(properties);
|
|
2505
2648
|
}
|
|
2649
|
+
async function importPopupSupportUtilityNetworkAssociationType() {
|
|
2650
|
+
if (isAMD) {
|
|
2651
|
+
return await window.$arcgis.import("esri/popup/support/UtilityNetworkAssociationType");
|
|
2652
|
+
}
|
|
2653
|
+
const module = await import("@arcgis/core/popup/support/UtilityNetworkAssociationType.js");
|
|
2654
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2655
|
+
}
|
|
2656
|
+
async function newPopupSupportUtilityNetworkAssociationType(properties) {
|
|
2657
|
+
const ModConstructor = await importPopupSupportUtilityNetworkAssociationType();
|
|
2658
|
+
return new ModConstructor(properties);
|
|
2659
|
+
}
|
|
2506
2660
|
async function importPopupTemplate() {
|
|
2507
2661
|
if (isAMD) {
|
|
2508
2662
|
return await window.$arcgis.import("esri/PopupTemplate");
|
|
@@ -3174,6 +3328,17 @@ async function newRestKnowledgeGraphGraphQueryResult(properties) {
|
|
|
3174
3328
|
const ModConstructor = await importRestKnowledgeGraphGraphQueryResult();
|
|
3175
3329
|
return new ModConstructor(properties);
|
|
3176
3330
|
}
|
|
3331
|
+
async function importRestKnowledgeGraphGraphQueryResultHeader() {
|
|
3332
|
+
if (isAMD) {
|
|
3333
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryResultHeader");
|
|
3334
|
+
}
|
|
3335
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphQueryResultHeader.js");
|
|
3336
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3337
|
+
}
|
|
3338
|
+
async function newRestKnowledgeGraphGraphQueryResultHeader(properties) {
|
|
3339
|
+
const ModConstructor = await importRestKnowledgeGraphGraphQueryResultHeader();
|
|
3340
|
+
return new ModConstructor(properties);
|
|
3341
|
+
}
|
|
3177
3342
|
async function importRestKnowledgeGraphGraphQueryStreaming() {
|
|
3178
3343
|
if (isAMD) {
|
|
3179
3344
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryStreaming");
|
|
@@ -3306,6 +3471,72 @@ async function newRestKnowledgeGraphServiceDefinition(properties) {
|
|
|
3306
3471
|
const ModConstructor = await importRestKnowledgeGraphServiceDefinition();
|
|
3307
3472
|
return new ModConstructor(properties);
|
|
3308
3473
|
}
|
|
3474
|
+
async function importRestKnowledgeGraphSourceTypeValueBehavior() {
|
|
3475
|
+
if (isAMD) {
|
|
3476
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/SourceTypeValueBehavior");
|
|
3477
|
+
}
|
|
3478
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/SourceTypeValueBehavior.js");
|
|
3479
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3480
|
+
}
|
|
3481
|
+
async function newRestKnowledgeGraphSourceTypeValueBehavior(properties) {
|
|
3482
|
+
const ModConstructor = await importRestKnowledgeGraphSourceTypeValueBehavior();
|
|
3483
|
+
return new ModConstructor(properties);
|
|
3484
|
+
}
|
|
3485
|
+
async function importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration() {
|
|
3486
|
+
if (isAMD) {
|
|
3487
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsConfiguration");
|
|
3488
|
+
}
|
|
3489
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsConfiguration.js");
|
|
3490
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3491
|
+
}
|
|
3492
|
+
async function newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration(properties) {
|
|
3493
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration();
|
|
3494
|
+
return new ModConstructor(properties);
|
|
3495
|
+
}
|
|
3496
|
+
async function importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity() {
|
|
3497
|
+
if (isAMD) {
|
|
3498
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsEntity");
|
|
3499
|
+
}
|
|
3500
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsEntity.js");
|
|
3501
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3502
|
+
}
|
|
3503
|
+
async function newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity(properties) {
|
|
3504
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity();
|
|
3505
|
+
return new ModConstructor(properties);
|
|
3506
|
+
}
|
|
3507
|
+
async function importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter() {
|
|
3508
|
+
if (isAMD) {
|
|
3509
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsPathFilter");
|
|
3510
|
+
}
|
|
3511
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsPathFilter.js");
|
|
3512
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3513
|
+
}
|
|
3514
|
+
async function newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter(properties) {
|
|
3515
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter();
|
|
3516
|
+
return new ModConstructor(properties);
|
|
3517
|
+
}
|
|
3518
|
+
async function importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection() {
|
|
3519
|
+
if (isAMD) {
|
|
3520
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/CIMKGTraversalDirection");
|
|
3521
|
+
}
|
|
3522
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/CIMKGTraversalDirection.js");
|
|
3523
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3524
|
+
}
|
|
3525
|
+
async function newRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection(properties) {
|
|
3526
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection();
|
|
3527
|
+
return new ModConstructor(properties);
|
|
3528
|
+
}
|
|
3529
|
+
async function importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings() {
|
|
3530
|
+
if (isAMD) {
|
|
3531
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/FindPathsToolSettings");
|
|
3532
|
+
}
|
|
3533
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/FindPathsToolSettings.js");
|
|
3534
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3535
|
+
}
|
|
3536
|
+
async function newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings(properties) {
|
|
3537
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings();
|
|
3538
|
+
return new ModConstructor(properties);
|
|
3539
|
+
}
|
|
3309
3540
|
async function importRestNetworksSupportAggregatedGeometry() {
|
|
3310
3541
|
if (isAMD) {
|
|
3311
3542
|
return await window.$arcgis.import("esri/rest/networks/support/AggregatedGeometry");
|
|
@@ -3460,6 +3691,94 @@ async function newRestSupportAddressCandidate(properties) {
|
|
|
3460
3691
|
const ModConstructor = await importRestSupportAddressCandidate();
|
|
3461
3692
|
return new ModConstructor(properties);
|
|
3462
3693
|
}
|
|
3694
|
+
async function importRestSupportAttributeBinsFeatureSet() {
|
|
3695
|
+
if (isAMD) {
|
|
3696
|
+
return await window.$arcgis.import("esri/rest/support/AttributeBinsFeatureSet");
|
|
3697
|
+
}
|
|
3698
|
+
const module = await import("@arcgis/core/rest/support/AttributeBinsFeatureSet.js");
|
|
3699
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3700
|
+
}
|
|
3701
|
+
async function newRestSupportAttributeBinsFeatureSet(properties) {
|
|
3702
|
+
const ModConstructor = await importRestSupportAttributeBinsFeatureSet();
|
|
3703
|
+
return new ModConstructor(properties);
|
|
3704
|
+
}
|
|
3705
|
+
async function importRestSupportAttributeBinsQuery() {
|
|
3706
|
+
if (isAMD) {
|
|
3707
|
+
return await window.$arcgis.import("esri/rest/support/AttributeBinsQuery");
|
|
3708
|
+
}
|
|
3709
|
+
const module = await import("@arcgis/core/rest/support/AttributeBinsQuery.js");
|
|
3710
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3711
|
+
}
|
|
3712
|
+
async function newRestSupportAttributeBinsQuery(properties) {
|
|
3713
|
+
const ModConstructor = await importRestSupportAttributeBinsQuery();
|
|
3714
|
+
return new ModConstructor(properties);
|
|
3715
|
+
}
|
|
3716
|
+
async function importRestSupportAttributeBinsGrouping() {
|
|
3717
|
+
if (isAMD) {
|
|
3718
|
+
return await window.$arcgis.import("esri/rest/support/AttributeBinsGrouping");
|
|
3719
|
+
}
|
|
3720
|
+
const module = await import("@arcgis/core/rest/support/AttributeBinsGrouping.js");
|
|
3721
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3722
|
+
}
|
|
3723
|
+
async function newRestSupportAttributeBinsGrouping(properties) {
|
|
3724
|
+
const ModConstructor = await importRestSupportAttributeBinsGrouping();
|
|
3725
|
+
return new ModConstructor(properties);
|
|
3726
|
+
}
|
|
3727
|
+
async function importRestSupportAutoIntervalBinParameters() {
|
|
3728
|
+
if (isAMD) {
|
|
3729
|
+
return await window.$arcgis.import("esri/rest/support/AutoIntervalBinParameters");
|
|
3730
|
+
}
|
|
3731
|
+
const module = await import("@arcgis/core/rest/support/AutoIntervalBinParameters.js");
|
|
3732
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3733
|
+
}
|
|
3734
|
+
async function newRestSupportAutoIntervalBinParameters(properties) {
|
|
3735
|
+
const ModConstructor = await importRestSupportAutoIntervalBinParameters();
|
|
3736
|
+
return new ModConstructor(properties);
|
|
3737
|
+
}
|
|
3738
|
+
async function importRestSupportFixedBoundariesBinParameters() {
|
|
3739
|
+
if (isAMD) {
|
|
3740
|
+
return await window.$arcgis.import("esri/rest/support/FixedBoundariesBinParameters");
|
|
3741
|
+
}
|
|
3742
|
+
const module = await import("@arcgis/core/rest/support/FixedBoundariesBinParameters.js");
|
|
3743
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3744
|
+
}
|
|
3745
|
+
async function newRestSupportFixedBoundariesBinParameters(properties) {
|
|
3746
|
+
const ModConstructor = await importRestSupportFixedBoundariesBinParameters();
|
|
3747
|
+
return new ModConstructor(properties);
|
|
3748
|
+
}
|
|
3749
|
+
async function importRestSupportFixedIntervalBinParameters() {
|
|
3750
|
+
if (isAMD) {
|
|
3751
|
+
return await window.$arcgis.import("esri/rest/support/FixedIntervalBinParameters");
|
|
3752
|
+
}
|
|
3753
|
+
const module = await import("@arcgis/core/rest/support/FixedIntervalBinParameters.js");
|
|
3754
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3755
|
+
}
|
|
3756
|
+
async function newRestSupportFixedIntervalBinParameters(properties) {
|
|
3757
|
+
const ModConstructor = await importRestSupportFixedIntervalBinParameters();
|
|
3758
|
+
return new ModConstructor(properties);
|
|
3759
|
+
}
|
|
3760
|
+
async function importRestSupportDateBinParameters() {
|
|
3761
|
+
if (isAMD) {
|
|
3762
|
+
return await window.$arcgis.import("esri/rest/support/DateBinParameters");
|
|
3763
|
+
}
|
|
3764
|
+
const module = await import("@arcgis/core/rest/support/DateBinParameters.js");
|
|
3765
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3766
|
+
}
|
|
3767
|
+
async function newRestSupportDateBinParameters(properties) {
|
|
3768
|
+
const ModConstructor = await importRestSupportDateBinParameters();
|
|
3769
|
+
return new ModConstructor(properties);
|
|
3770
|
+
}
|
|
3771
|
+
async function importRestSupportDateBinTimeInterval() {
|
|
3772
|
+
if (isAMD) {
|
|
3773
|
+
return await window.$arcgis.import("esri/rest/support/DateBinTimeInterval");
|
|
3774
|
+
}
|
|
3775
|
+
const module = await import("@arcgis/core/rest/support/DateBinTimeInterval.js");
|
|
3776
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3777
|
+
}
|
|
3778
|
+
async function newRestSupportDateBinTimeInterval(properties) {
|
|
3779
|
+
const ModConstructor = await importRestSupportDateBinTimeInterval();
|
|
3780
|
+
return new ModConstructor(properties);
|
|
3781
|
+
}
|
|
3463
3782
|
async function importRestSupportAlgorithmicColorRamp() {
|
|
3464
3783
|
if (isAMD) {
|
|
3465
3784
|
return await window.$arcgis.import("esri/rest/support/AlgorithmicColorRamp");
|
|
@@ -3504,6 +3823,28 @@ async function newRestSupportAttachmentQuery(properties) {
|
|
|
3504
3823
|
const ModConstructor = await importRestSupportAttachmentQuery();
|
|
3505
3824
|
return new ModConstructor(properties);
|
|
3506
3825
|
}
|
|
3826
|
+
async function importRestSupportBaseImageMeasureParameters() {
|
|
3827
|
+
if (isAMD) {
|
|
3828
|
+
return await window.$arcgis.import("esri/rest/support/BaseImageMeasureParameters");
|
|
3829
|
+
}
|
|
3830
|
+
const module = await import("@arcgis/core/rest/support/BaseImageMeasureParameters.js");
|
|
3831
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3832
|
+
}
|
|
3833
|
+
async function newRestSupportBaseImageMeasureParameters(properties) {
|
|
3834
|
+
const ModConstructor = await importRestSupportBaseImageMeasureParameters();
|
|
3835
|
+
return new ModConstructor(properties);
|
|
3836
|
+
}
|
|
3837
|
+
async function importRestSupportBaseImageMeasureResult() {
|
|
3838
|
+
if (isAMD) {
|
|
3839
|
+
return await window.$arcgis.import("esri/rest/support/BaseImageMeasureResult");
|
|
3840
|
+
}
|
|
3841
|
+
const module = await import("@arcgis/core/rest/support/BaseImageMeasureResult.js");
|
|
3842
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3843
|
+
}
|
|
3844
|
+
async function newRestSupportBaseImageMeasureResult(properties) {
|
|
3845
|
+
const ModConstructor = await importRestSupportBaseImageMeasureResult();
|
|
3846
|
+
return new ModConstructor(properties);
|
|
3847
|
+
}
|
|
3507
3848
|
async function importRestSupportBufferParameters() {
|
|
3508
3849
|
if (isAMD) {
|
|
3509
3850
|
return await window.$arcgis.import("esri/rest/support/BufferParameters");
|
|
@@ -4087,6 +4428,39 @@ async function newRestSupportImageUrlResult(properties) {
|
|
|
4087
4428
|
const ModConstructor = await importRestSupportImageUrlResult();
|
|
4088
4429
|
return new ModConstructor(properties);
|
|
4089
4430
|
}
|
|
4431
|
+
async function importRestSupportImageVolume() {
|
|
4432
|
+
if (isAMD) {
|
|
4433
|
+
return await window.$arcgis.import("esri/rest/support/ImageVolume");
|
|
4434
|
+
}
|
|
4435
|
+
const module = await import("@arcgis/core/rest/support/ImageVolume.js");
|
|
4436
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4437
|
+
}
|
|
4438
|
+
async function newRestSupportImageVolume(properties) {
|
|
4439
|
+
const ModConstructor = await importRestSupportImageVolume();
|
|
4440
|
+
return new ModConstructor(properties);
|
|
4441
|
+
}
|
|
4442
|
+
async function importRestSupportImageVolumeParameters() {
|
|
4443
|
+
if (isAMD) {
|
|
4444
|
+
return await window.$arcgis.import("esri/rest/support/ImageVolumeParameters");
|
|
4445
|
+
}
|
|
4446
|
+
const module = await import("@arcgis/core/rest/support/ImageVolumeParameters.js");
|
|
4447
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4448
|
+
}
|
|
4449
|
+
async function newRestSupportImageVolumeParameters(properties) {
|
|
4450
|
+
const ModConstructor = await importRestSupportImageVolumeParameters();
|
|
4451
|
+
return new ModConstructor(properties);
|
|
4452
|
+
}
|
|
4453
|
+
async function importRestSupportImageVolumeResult() {
|
|
4454
|
+
if (isAMD) {
|
|
4455
|
+
return await window.$arcgis.import("esri/rest/support/ImageVolumeResult");
|
|
4456
|
+
}
|
|
4457
|
+
const module = await import("@arcgis/core/rest/support/ImageVolumeResult.js");
|
|
4458
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4459
|
+
}
|
|
4460
|
+
async function newRestSupportImageVolumeResult(properties) {
|
|
4461
|
+
const ModConstructor = await importRestSupportImageVolumeResult();
|
|
4462
|
+
return new ModConstructor(properties);
|
|
4463
|
+
}
|
|
4090
4464
|
async function importRestSupportJobInfo() {
|
|
4091
4465
|
if (isAMD) {
|
|
4092
4466
|
return await window.$arcgis.import("esri/rest/support/JobInfo");
|
|
@@ -5715,6 +6089,17 @@ async function newViewsLayersViewshedLayerView(properties) {
|
|
|
5715
6089
|
const ModConstructor = await importViewsLayersViewshedLayerView();
|
|
5716
6090
|
return new ModConstructor(properties);
|
|
5717
6091
|
}
|
|
6092
|
+
async function importViewsLinkChartView() {
|
|
6093
|
+
if (isAMD) {
|
|
6094
|
+
return await window.$arcgis.import("esri/views/LinkChartView");
|
|
6095
|
+
}
|
|
6096
|
+
const module = await import("@arcgis/core/views/LinkChartView.js");
|
|
6097
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6098
|
+
}
|
|
6099
|
+
async function newViewsLinkChartView(properties) {
|
|
6100
|
+
const ModConstructor = await importViewsLinkChartView();
|
|
6101
|
+
return new ModConstructor(properties);
|
|
6102
|
+
}
|
|
5718
6103
|
async function importViewsMagnifier() {
|
|
5719
6104
|
if (isAMD) {
|
|
5720
6105
|
return await window.$arcgis.import("esri/views/Magnifier");
|
|
@@ -5759,6 +6144,17 @@ async function newViewsNavigationNavigation(properties) {
|
|
|
5759
6144
|
const ModConstructor = await importViewsNavigationNavigation();
|
|
5760
6145
|
return new ModConstructor(properties);
|
|
5761
6146
|
}
|
|
6147
|
+
async function importViewsNavigationNavigationActionMap() {
|
|
6148
|
+
if (isAMD) {
|
|
6149
|
+
return await window.$arcgis.import("esri/views/navigation/NavigationActionMap");
|
|
6150
|
+
}
|
|
6151
|
+
const module = await import("@arcgis/core/views/navigation/NavigationActionMap.js");
|
|
6152
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6153
|
+
}
|
|
6154
|
+
async function newViewsNavigationNavigationActionMap(properties) {
|
|
6155
|
+
const ModConstructor = await importViewsNavigationNavigationActionMap();
|
|
6156
|
+
return new ModConstructor(properties);
|
|
6157
|
+
}
|
|
5762
6158
|
async function importViewsSceneView() {
|
|
5763
6159
|
if (isAMD) {
|
|
5764
6160
|
return await window.$arcgis.import("esri/views/SceneView");
|
|
@@ -5770,6 +6166,17 @@ async function newViewsSceneView(properties) {
|
|
|
5770
6166
|
const ModConstructor = await importViewsSceneView();
|
|
5771
6167
|
return new ModConstructor(properties);
|
|
5772
6168
|
}
|
|
6169
|
+
async function importViewsSupportHighlightOptions() {
|
|
6170
|
+
if (isAMD) {
|
|
6171
|
+
return await window.$arcgis.import("esri/views/support/HighlightOptions");
|
|
6172
|
+
}
|
|
6173
|
+
const module = await import("@arcgis/core/views/support/HighlightOptions.js");
|
|
6174
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6175
|
+
}
|
|
6176
|
+
async function newViewsSupportHighlightOptions(properties) {
|
|
6177
|
+
const ModConstructor = await importViewsSupportHighlightOptions();
|
|
6178
|
+
return new ModConstructor(properties);
|
|
6179
|
+
}
|
|
5773
6180
|
async function importViewsUiDefaultUI() {
|
|
5774
6181
|
if (isAMD) {
|
|
5775
6182
|
return await window.$arcgis.import("esri/views/ui/DefaultUI");
|
|
@@ -6045,6 +6452,17 @@ async function newWebDocument2D(properties) {
|
|
|
6045
6452
|
const ModConstructor = await importWebDocument2D();
|
|
6046
6453
|
return new ModConstructor(properties);
|
|
6047
6454
|
}
|
|
6455
|
+
async function importWebLinkChart() {
|
|
6456
|
+
if (isAMD) {
|
|
6457
|
+
return await window.$arcgis.import("esri/WebLinkChart");
|
|
6458
|
+
}
|
|
6459
|
+
const module = await import("@arcgis/core/WebLinkChart.js");
|
|
6460
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6461
|
+
}
|
|
6462
|
+
async function newWebLinkChart(properties) {
|
|
6463
|
+
const ModConstructor = await importWebLinkChart();
|
|
6464
|
+
return new ModConstructor(properties);
|
|
6465
|
+
}
|
|
6048
6466
|
async function importWebMap() {
|
|
6049
6467
|
if (isAMD) {
|
|
6050
6468
|
return await window.$arcgis.import("esri/WebMap");
|
|
@@ -6188,6 +6606,17 @@ async function newWebsceneSlide(properties) {
|
|
|
6188
6606
|
const ModConstructor = await importWebsceneSlide();
|
|
6189
6607
|
return new ModConstructor(properties);
|
|
6190
6608
|
}
|
|
6609
|
+
async function importWebsceneSlideLegendInfo() {
|
|
6610
|
+
if (isAMD) {
|
|
6611
|
+
return await window.$arcgis.import("esri/webscene/SlideLegendInfo");
|
|
6612
|
+
}
|
|
6613
|
+
const module = await import("@arcgis/core/webscene/SlideLegendInfo.js");
|
|
6614
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6615
|
+
}
|
|
6616
|
+
async function newWebsceneSlideLegendInfo(properties) {
|
|
6617
|
+
const ModConstructor = await importWebsceneSlideLegendInfo();
|
|
6618
|
+
return new ModConstructor(properties);
|
|
6619
|
+
}
|
|
6191
6620
|
async function importWebsceneSunLighting() {
|
|
6192
6621
|
if (isAMD) {
|
|
6193
6622
|
return await window.$arcgis.import("esri/webscene/SunLighting");
|
|
@@ -6947,6 +7376,28 @@ async function newWidgetsFeatureFormRelationshipInput(properties) {
|
|
|
6947
7376
|
const ModConstructor = await importWidgetsFeatureFormRelationshipInput();
|
|
6948
7377
|
return new ModConstructor(properties);
|
|
6949
7378
|
}
|
|
7379
|
+
async function importWidgetsFeatureFormTextElementInput() {
|
|
7380
|
+
if (isAMD) {
|
|
7381
|
+
return await window.$arcgis.import("esri/widgets/FeatureForm/TextElementInput");
|
|
7382
|
+
}
|
|
7383
|
+
const module = await import("@arcgis/core/widgets/FeatureForm/TextElementInput.js");
|
|
7384
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7385
|
+
}
|
|
7386
|
+
async function newWidgetsFeatureFormTextElementInput(properties) {
|
|
7387
|
+
const ModConstructor = await importWidgetsFeatureFormTextElementInput();
|
|
7388
|
+
return new ModConstructor(properties);
|
|
7389
|
+
}
|
|
7390
|
+
async function importWidgetsFeatureFormUtilityNetworkAssociationInput() {
|
|
7391
|
+
if (isAMD) {
|
|
7392
|
+
return await window.$arcgis.import("esri/widgets/FeatureForm/UtilityNetworkAssociationInput");
|
|
7393
|
+
}
|
|
7394
|
+
const module = await import("@arcgis/core/widgets/FeatureForm/UtilityNetworkAssociationInput.js");
|
|
7395
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7396
|
+
}
|
|
7397
|
+
async function newWidgetsFeatureFormUtilityNetworkAssociationInput(properties) {
|
|
7398
|
+
const ModConstructor = await importWidgetsFeatureFormUtilityNetworkAssociationInput();
|
|
7399
|
+
return new ModConstructor(properties);
|
|
7400
|
+
}
|
|
6950
7401
|
async function importWidgetsFeatures() {
|
|
6951
7402
|
if (isAMD) {
|
|
6952
7403
|
return await window.$arcgis.import("esri/widgets/Features");
|
|
@@ -7123,6 +7574,28 @@ async function newWidgetsFeatureTableSupportFieldColumnTemplate(properties) {
|
|
|
7123
7574
|
const ModConstructor = await importWidgetsFeatureTableSupportFieldColumnTemplate();
|
|
7124
7575
|
return new ModConstructor(properties);
|
|
7125
7576
|
}
|
|
7577
|
+
async function importWidgetsFeatureTableSupportAttachmentsColumnTemplate() {
|
|
7578
|
+
if (isAMD) {
|
|
7579
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/AttachmentsColumnTemplate");
|
|
7580
|
+
}
|
|
7581
|
+
const module = await import("@arcgis/core/widgets/FeatureTable/support/AttachmentsColumnTemplate.js");
|
|
7582
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7583
|
+
}
|
|
7584
|
+
async function newWidgetsFeatureTableSupportAttachmentsColumnTemplate(properties) {
|
|
7585
|
+
const ModConstructor = await importWidgetsFeatureTableSupportAttachmentsColumnTemplate();
|
|
7586
|
+
return new ModConstructor(properties);
|
|
7587
|
+
}
|
|
7588
|
+
async function importWidgetsFeatureTableSupportRelationshipColumnTemplate() {
|
|
7589
|
+
if (isAMD) {
|
|
7590
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/RelationshipColumnTemplate");
|
|
7591
|
+
}
|
|
7592
|
+
const module = await import("@arcgis/core/widgets/FeatureTable/support/RelationshipColumnTemplate.js");
|
|
7593
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7594
|
+
}
|
|
7595
|
+
async function newWidgetsFeatureTableSupportRelationshipColumnTemplate(properties) {
|
|
7596
|
+
const ModConstructor = await importWidgetsFeatureTableSupportRelationshipColumnTemplate();
|
|
7597
|
+
return new ModConstructor(properties);
|
|
7598
|
+
}
|
|
7126
7599
|
async function importWidgetsFeatureTableSupportGroupColumnTemplate() {
|
|
7127
7600
|
if (isAMD) {
|
|
7128
7601
|
return await window.$arcgis.import("esri/widgets/FeatureTable/support/GroupColumnTemplate");
|
|
@@ -7376,6 +7849,17 @@ async function newWidgetsLegendSupportActiveLayerInfo(properties) {
|
|
|
7376
7849
|
const ModConstructor = await importWidgetsLegendSupportActiveLayerInfo();
|
|
7377
7850
|
return new ModConstructor(properties);
|
|
7378
7851
|
}
|
|
7852
|
+
async function importWidgetsLinkChartLayoutSwitcherLinkChartLayoutSwitcherViewModel() {
|
|
7853
|
+
if (isAMD) {
|
|
7854
|
+
return await window.$arcgis.import("esri/widgets/LinkChartLayoutSwitcher/LinkChartLayoutSwitcherViewModel");
|
|
7855
|
+
}
|
|
7856
|
+
const module = await import("@arcgis/core/widgets/LinkChartLayoutSwitcher/LinkChartLayoutSwitcherViewModel.js");
|
|
7857
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7858
|
+
}
|
|
7859
|
+
async function newWidgetsLinkChartLayoutSwitcherLinkChartLayoutSwitcherViewModel(properties) {
|
|
7860
|
+
const ModConstructor = await importWidgetsLinkChartLayoutSwitcherLinkChartLayoutSwitcherViewModel();
|
|
7861
|
+
return new ModConstructor(properties);
|
|
7862
|
+
}
|
|
7379
7863
|
async function importWidgetsLineOfSight() {
|
|
7380
7864
|
if (isAMD) {
|
|
7381
7865
|
return await window.$arcgis.import("esri/widgets/LineOfSight");
|
|
@@ -8179,6 +8663,17 @@ async function newWidgetsUtilityNetworkTrace(properties) {
|
|
|
8179
8663
|
const ModConstructor = await importWidgetsUtilityNetworkTrace();
|
|
8180
8664
|
return new ModConstructor(properties);
|
|
8181
8665
|
}
|
|
8666
|
+
async function importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel() {
|
|
8667
|
+
if (isAMD) {
|
|
8668
|
+
return await window.$arcgis.import("esri/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel");
|
|
8669
|
+
}
|
|
8670
|
+
const module = await import("@arcgis/core/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel.js");
|
|
8671
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8672
|
+
}
|
|
8673
|
+
async function newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel(properties) {
|
|
8674
|
+
const ModConstructor = await importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel();
|
|
8675
|
+
return new ModConstructor(properties);
|
|
8676
|
+
}
|
|
8182
8677
|
async function importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel() {
|
|
8183
8678
|
if (isAMD) {
|
|
8184
8679
|
return await window.$arcgis.import("esri/widgets/UtilityNetworkTrace/UtilityNetworkTraceViewModel");
|
|
@@ -8432,25 +8927,25 @@ async function importCoreWorkers() {
|
|
|
8432
8927
|
const module = await import("@arcgis/core/core/workers.js");
|
|
8433
8928
|
return isDefaultModule(module) ? module.default : module;
|
|
8434
8929
|
}
|
|
8435
|
-
async function
|
|
8930
|
+
async function importEditingSharedTemplatesSharedTemplateMetadata() {
|
|
8436
8931
|
if (isAMD) {
|
|
8437
|
-
return await window.$arcgis.import("esri/
|
|
8932
|
+
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplateMetadata");
|
|
8438
8933
|
}
|
|
8439
|
-
const module = await import("@arcgis/core/
|
|
8934
|
+
const module = await import("@arcgis/core/editing/sharedTemplates/SharedTemplateMetadata.js");
|
|
8440
8935
|
return isDefaultModule(module) ? module.default : module;
|
|
8441
8936
|
}
|
|
8442
|
-
async function
|
|
8937
|
+
async function importFormElementsInputs() {
|
|
8443
8938
|
if (isAMD) {
|
|
8444
|
-
return await window.$arcgis.import("esri/form/elements/
|
|
8939
|
+
return await window.$arcgis.import("esri/form/elements/inputs");
|
|
8445
8940
|
}
|
|
8446
|
-
const module = await import("@arcgis/core/form/elements/
|
|
8941
|
+
const module = await import("@arcgis/core/form/elements/inputs.js");
|
|
8447
8942
|
return isDefaultModule(module) ? module.default : module;
|
|
8448
8943
|
}
|
|
8449
|
-
async function
|
|
8944
|
+
async function importFormElements() {
|
|
8450
8945
|
if (isAMD) {
|
|
8451
|
-
return await window.$arcgis.import("esri/form/
|
|
8946
|
+
return await window.$arcgis.import("esri/form/elements");
|
|
8452
8947
|
}
|
|
8453
|
-
const module = await import("@arcgis/core/form/
|
|
8948
|
+
const module = await import("@arcgis/core/form/elements.js");
|
|
8454
8949
|
return isDefaultModule(module) ? module.default : module;
|
|
8455
8950
|
}
|
|
8456
8951
|
async function importGeometry() {
|
|
@@ -8495,6 +8990,13 @@ async function importGeometryOperatorsAffineTransformOperator() {
|
|
|
8495
8990
|
const module = await import("@arcgis/core/geometry/operators/affineTransformOperator.js");
|
|
8496
8991
|
return isDefaultModule(module) ? module.default : module;
|
|
8497
8992
|
}
|
|
8993
|
+
async function importGeometryOperatorsAlphaShapeOperator() {
|
|
8994
|
+
if (isAMD) {
|
|
8995
|
+
return await window.$arcgis.import("esri/geometry/operators/alphaShapeOperator");
|
|
8996
|
+
}
|
|
8997
|
+
const module = await import("@arcgis/core/geometry/operators/alphaShapeOperator.js");
|
|
8998
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8999
|
+
}
|
|
8498
9000
|
async function importGeometryOperatorsAreaOperator() {
|
|
8499
9001
|
if (isAMD) {
|
|
8500
9002
|
return await window.$arcgis.import("esri/geometry/operators/areaOperator");
|
|
@@ -8502,6 +9004,20 @@ async function importGeometryOperatorsAreaOperator() {
|
|
|
8502
9004
|
const module = await import("@arcgis/core/geometry/operators/areaOperator.js");
|
|
8503
9005
|
return isDefaultModule(module) ? module.default : module;
|
|
8504
9006
|
}
|
|
9007
|
+
async function importGeometryOperatorsAutoCompleteOperator() {
|
|
9008
|
+
if (isAMD) {
|
|
9009
|
+
return await window.$arcgis.import("esri/geometry/operators/autoCompleteOperator");
|
|
9010
|
+
}
|
|
9011
|
+
const module = await import("@arcgis/core/geometry/operators/autoCompleteOperator.js");
|
|
9012
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9013
|
+
}
|
|
9014
|
+
async function importGeometryOperatorsBoundaryOperator() {
|
|
9015
|
+
if (isAMD) {
|
|
9016
|
+
return await window.$arcgis.import("esri/geometry/operators/boundaryOperator");
|
|
9017
|
+
}
|
|
9018
|
+
const module = await import("@arcgis/core/geometry/operators/boundaryOperator.js");
|
|
9019
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9020
|
+
}
|
|
8505
9021
|
async function importGeometryOperatorsBufferOperator() {
|
|
8506
9022
|
if (isAMD) {
|
|
8507
9023
|
return await window.$arcgis.import("esri/geometry/operators/bufferOperator");
|
|
@@ -8586,6 +9102,13 @@ async function importGeometryOperatorsEqualsOperator() {
|
|
|
8586
9102
|
const module = await import("@arcgis/core/geometry/operators/equalsOperator.js");
|
|
8587
9103
|
return isDefaultModule(module) ? module.default : module;
|
|
8588
9104
|
}
|
|
9105
|
+
async function importGeometryOperatorsExtendOperator() {
|
|
9106
|
+
if (isAMD) {
|
|
9107
|
+
return await window.$arcgis.import("esri/geometry/operators/extendOperator");
|
|
9108
|
+
}
|
|
9109
|
+
const module = await import("@arcgis/core/geometry/operators/extendOperator.js");
|
|
9110
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9111
|
+
}
|
|
8589
9112
|
async function importGeometryOperatorsGeneralizeOperator() {
|
|
8590
9113
|
if (isAMD) {
|
|
8591
9114
|
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
@@ -8600,6 +9123,13 @@ async function importGeometryOperatorsGeodesicBufferOperator() {
|
|
|
8600
9123
|
const module = await import("@arcgis/core/geometry/operators/geodesicBufferOperator.js");
|
|
8601
9124
|
return isDefaultModule(module) ? module.default : module;
|
|
8602
9125
|
}
|
|
9126
|
+
async function importGeometryOperatorsGeodesicProximityOperator() {
|
|
9127
|
+
if (isAMD) {
|
|
9128
|
+
return await window.$arcgis.import("esri/geometry/operators/geodesicProximityOperator");
|
|
9129
|
+
}
|
|
9130
|
+
const module = await import("@arcgis/core/geometry/operators/geodesicProximityOperator.js");
|
|
9131
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9132
|
+
}
|
|
8603
9133
|
async function importGeometryOperatorsGeodeticAreaOperator() {
|
|
8604
9134
|
if (isAMD) {
|
|
8605
9135
|
return await window.$arcgis.import("esri/geometry/operators/geodeticAreaOperator");
|
|
@@ -8635,6 +9165,13 @@ async function importGeometryOperatorsGraphicBufferOperator() {
|
|
|
8635
9165
|
const module = await import("@arcgis/core/geometry/operators/graphicBufferOperator.js");
|
|
8636
9166
|
return isDefaultModule(module) ? module.default : module;
|
|
8637
9167
|
}
|
|
9168
|
+
async function importGeometryOperatorsIntegrateOperator() {
|
|
9169
|
+
if (isAMD) {
|
|
9170
|
+
return await window.$arcgis.import("esri/geometry/operators/integrateOperator");
|
|
9171
|
+
}
|
|
9172
|
+
const module = await import("@arcgis/core/geometry/operators/integrateOperator.js");
|
|
9173
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9174
|
+
}
|
|
8638
9175
|
async function importGeometryOperatorsIntersectionOperator() {
|
|
8639
9176
|
if (isAMD) {
|
|
8640
9177
|
return await window.$arcgis.import("esri/geometry/operators/intersectionOperator");
|
|
@@ -8649,6 +9186,20 @@ async function importGeometryOperatorsIntersectsOperator() {
|
|
|
8649
9186
|
const module = await import("@arcgis/core/geometry/operators/intersectsOperator.js");
|
|
8650
9187
|
return isDefaultModule(module) ? module.default : module;
|
|
8651
9188
|
}
|
|
9189
|
+
async function importGeometryOperatorsIsNearOperator() {
|
|
9190
|
+
if (isAMD) {
|
|
9191
|
+
return await window.$arcgis.import("esri/geometry/operators/isNearOperator");
|
|
9192
|
+
}
|
|
9193
|
+
const module = await import("@arcgis/core/geometry/operators/isNearOperator.js");
|
|
9194
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9195
|
+
}
|
|
9196
|
+
async function importGeometryOperatorsLabelPointOperator() {
|
|
9197
|
+
if (isAMD) {
|
|
9198
|
+
return await window.$arcgis.import("esri/geometry/operators/labelPointOperator");
|
|
9199
|
+
}
|
|
9200
|
+
const module = await import("@arcgis/core/geometry/operators/labelPointOperator.js");
|
|
9201
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9202
|
+
}
|
|
8652
9203
|
async function importGeometryOperatorsLengthOperator() {
|
|
8653
9204
|
if (isAMD) {
|
|
8654
9205
|
return await window.$arcgis.import("esri/geometry/operators/lengthOperator");
|
|
@@ -8656,6 +9207,34 @@ async function importGeometryOperatorsLengthOperator() {
|
|
|
8656
9207
|
const module = await import("@arcgis/core/geometry/operators/lengthOperator.js");
|
|
8657
9208
|
return isDefaultModule(module) ? module.default : module;
|
|
8658
9209
|
}
|
|
9210
|
+
async function importGeometryOperatorsLinesToPolygonsOperator() {
|
|
9211
|
+
if (isAMD) {
|
|
9212
|
+
return await window.$arcgis.import("esri/geometry/operators/linesToPolygonsOperator");
|
|
9213
|
+
}
|
|
9214
|
+
const module = await import("@arcgis/core/geometry/operators/linesToPolygonsOperator.js");
|
|
9215
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9216
|
+
}
|
|
9217
|
+
async function importGeometryOperatorsLocateBetweenOperator() {
|
|
9218
|
+
if (isAMD) {
|
|
9219
|
+
return await window.$arcgis.import("esri/geometry/operators/locateBetweenOperator");
|
|
9220
|
+
}
|
|
9221
|
+
const module = await import("@arcgis/core/geometry/operators/locateBetweenOperator.js");
|
|
9222
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9223
|
+
}
|
|
9224
|
+
async function importGeometryOperatorsMinimumBoundingCircleOperator() {
|
|
9225
|
+
if (isAMD) {
|
|
9226
|
+
return await window.$arcgis.import("esri/geometry/operators/minimumBoundingCircleOperator");
|
|
9227
|
+
}
|
|
9228
|
+
const module = await import("@arcgis/core/geometry/operators/minimumBoundingCircleOperator.js");
|
|
9229
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9230
|
+
}
|
|
9231
|
+
async function importGeometryOperatorsMultiPartToSinglePartOperator() {
|
|
9232
|
+
if (isAMD) {
|
|
9233
|
+
return await window.$arcgis.import("esri/geometry/operators/multiPartToSinglePartOperator");
|
|
9234
|
+
}
|
|
9235
|
+
const module = await import("@arcgis/core/geometry/operators/multiPartToSinglePartOperator.js");
|
|
9236
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9237
|
+
}
|
|
8659
9238
|
async function importGeometryOperatorsOffsetOperator() {
|
|
8660
9239
|
if (isAMD) {
|
|
8661
9240
|
return await window.$arcgis.import("esri/geometry/operators/offsetOperator");
|
|
@@ -8670,6 +9249,27 @@ async function importGeometryOperatorsOverlapsOperator() {
|
|
|
8670
9249
|
const module = await import("@arcgis/core/geometry/operators/overlapsOperator.js");
|
|
8671
9250
|
return isDefaultModule(module) ? module.default : module;
|
|
8672
9251
|
}
|
|
9252
|
+
async function importGeometryOperatorsPolygonOverlayOperator() {
|
|
9253
|
+
if (isAMD) {
|
|
9254
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonOverlayOperator");
|
|
9255
|
+
}
|
|
9256
|
+
const module = await import("@arcgis/core/geometry/operators/polygonOverlayOperator.js");
|
|
9257
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9258
|
+
}
|
|
9259
|
+
async function importGeometryOperatorsPolygonSlicerOperator() {
|
|
9260
|
+
if (isAMD) {
|
|
9261
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonSlicerOperator");
|
|
9262
|
+
}
|
|
9263
|
+
const module = await import("@arcgis/core/geometry/operators/polygonSlicerOperator.js");
|
|
9264
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9265
|
+
}
|
|
9266
|
+
async function importGeometryOperatorsProjectOperator() {
|
|
9267
|
+
if (isAMD) {
|
|
9268
|
+
return await window.$arcgis.import("esri/geometry/operators/projectOperator");
|
|
9269
|
+
}
|
|
9270
|
+
const module = await import("@arcgis/core/geometry/operators/projectOperator.js");
|
|
9271
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9272
|
+
}
|
|
8673
9273
|
async function importGeometryOperatorsProximityOperator() {
|
|
8674
9274
|
if (isAMD) {
|
|
8675
9275
|
return await window.$arcgis.import("esri/geometry/operators/proximityOperator");
|
|
@@ -8684,6 +9284,20 @@ async function importGeometryOperatorsRelateOperator() {
|
|
|
8684
9284
|
const module = await import("@arcgis/core/geometry/operators/relateOperator.js");
|
|
8685
9285
|
return isDefaultModule(module) ? module.default : module;
|
|
8686
9286
|
}
|
|
9287
|
+
async function importGeometryOperatorsReshapeOperator() {
|
|
9288
|
+
if (isAMD) {
|
|
9289
|
+
return await window.$arcgis.import("esri/geometry/operators/reshapeOperator");
|
|
9290
|
+
}
|
|
9291
|
+
const module = await import("@arcgis/core/geometry/operators/reshapeOperator.js");
|
|
9292
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9293
|
+
}
|
|
9294
|
+
async function importGeometryOperatorsShapePreservingProjectOperator() {
|
|
9295
|
+
if (isAMD) {
|
|
9296
|
+
return await window.$arcgis.import("esri/geometry/operators/shapePreservingProjectOperator");
|
|
9297
|
+
}
|
|
9298
|
+
const module = await import("@arcgis/core/geometry/operators/shapePreservingProjectOperator.js");
|
|
9299
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9300
|
+
}
|
|
8687
9301
|
async function importGeometryOperatorsSimplifyOperator() {
|
|
8688
9302
|
if (isAMD) {
|
|
8689
9303
|
return await window.$arcgis.import("esri/geometry/operators/simplifyOperator");
|
|
@@ -8719,6 +9333,13 @@ async function importGeometryOperatorsWithinOperator() {
|
|
|
8719
9333
|
const module = await import("@arcgis/core/geometry/operators/withinOperator.js");
|
|
8720
9334
|
return isDefaultModule(module) ? module.default : module;
|
|
8721
9335
|
}
|
|
9336
|
+
async function importGeometryOperatorsSupportGeographicTransformationUtils() {
|
|
9337
|
+
if (isAMD) {
|
|
9338
|
+
return await window.$arcgis.import("esri/geometry/operators/support/geographicTransformationUtils");
|
|
9339
|
+
}
|
|
9340
|
+
const module = await import("@arcgis/core/geometry/operators/support/geographicTransformationUtils.js");
|
|
9341
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9342
|
+
}
|
|
8722
9343
|
async function importGeometrySupportGeodesicUtils() {
|
|
8723
9344
|
if (isAMD) {
|
|
8724
9345
|
return await window.$arcgis.import("esri/geometry/support/geodesicUtils");
|
|
@@ -8775,6 +9396,20 @@ async function importLayersCatalogCatalogUtils() {
|
|
|
8775
9396
|
const module = await import("@arcgis/core/layers/catalog/catalogUtils.js");
|
|
8776
9397
|
return isDefaultModule(module) ? module.default : module;
|
|
8777
9398
|
}
|
|
9399
|
+
async function importLayersKnowledgeGraphCypherUtils() {
|
|
9400
|
+
if (isAMD) {
|
|
9401
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/cypherUtils");
|
|
9402
|
+
}
|
|
9403
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/cypherUtils.js");
|
|
9404
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9405
|
+
}
|
|
9406
|
+
async function importLayersKnowledgeGraphSupportUtils() {
|
|
9407
|
+
if (isAMD) {
|
|
9408
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/supportUtils");
|
|
9409
|
+
}
|
|
9410
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/supportUtils.js");
|
|
9411
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9412
|
+
}
|
|
8778
9413
|
async function importLayersOgcWfsUtils() {
|
|
8779
9414
|
if (isAMD) {
|
|
8780
9415
|
return await window.$arcgis.import("esri/layers/ogc/wfsUtils");
|
|
@@ -8789,6 +9424,20 @@ async function importLayersOgcWcsUtils() {
|
|
|
8789
9424
|
const module = await import("@arcgis/core/layers/ogc/wcsUtils.js");
|
|
8790
9425
|
return isDefaultModule(module) ? module.default : module;
|
|
8791
9426
|
}
|
|
9427
|
+
async function importLayersOrientedImageryTransformationsWorldToImage() {
|
|
9428
|
+
if (isAMD) {
|
|
9429
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/worldToImage");
|
|
9430
|
+
}
|
|
9431
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/worldToImage.js");
|
|
9432
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9433
|
+
}
|
|
9434
|
+
async function importLayersOrientedImageryTransformationsImageToWorld() {
|
|
9435
|
+
if (isAMD) {
|
|
9436
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/imageToWorld");
|
|
9437
|
+
}
|
|
9438
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/imageToWorld.js");
|
|
9439
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9440
|
+
}
|
|
8792
9441
|
async function importLayersSupportArcadeUtils() {
|
|
8793
9442
|
if (isAMD) {
|
|
8794
9443
|
return await window.$arcgis.import("esri/layers/support/arcadeUtils");
|
|
@@ -8796,6 +9445,13 @@ async function importLayersSupportArcadeUtils() {
|
|
|
8796
9445
|
const module = await import("@arcgis/core/layers/support/arcadeUtils.js");
|
|
8797
9446
|
return isDefaultModule(module) ? module.default : module;
|
|
8798
9447
|
}
|
|
9448
|
+
async function importLayersSupportCsvUtils() {
|
|
9449
|
+
if (isAMD) {
|
|
9450
|
+
return await window.$arcgis.import("esri/layers/support/csvUtils");
|
|
9451
|
+
}
|
|
9452
|
+
const module = await import("@arcgis/core/layers/support/csvUtils.js");
|
|
9453
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9454
|
+
}
|
|
8799
9455
|
async function importLayersSupportFieldUtils() {
|
|
8800
9456
|
if (isAMD) {
|
|
8801
9457
|
return await window.$arcgis.import("esri/layers/support/fieldUtils");
|
|
@@ -8852,13 +9508,6 @@ async function importPopupContent() {
|
|
|
8852
9508
|
const module = await import("@arcgis/core/popup/content.js");
|
|
8853
9509
|
return isDefaultModule(module) ? module.default : module;
|
|
8854
9510
|
}
|
|
8855
|
-
async function importPopupSupportUtilityNetworkAssociationType() {
|
|
8856
|
-
if (isAMD) {
|
|
8857
|
-
return await window.$arcgis.import("esri/popup/support/UtilityNetworkAssociationType");
|
|
8858
|
-
}
|
|
8859
|
-
const module = await import("@arcgis/core/popup/support/UtilityNetworkAssociationType.js");
|
|
8860
|
-
return isDefaultModule(module) ? module.default : module;
|
|
8861
|
-
}
|
|
8862
9511
|
async function importRasterRenderers() {
|
|
8863
9512
|
if (isAMD) {
|
|
8864
9513
|
return await window.$arcgis.import("esri/rasterRenderers");
|
|
@@ -9237,6 +9886,13 @@ async function importSmartMappingRenderersUnivariateColorSize() {
|
|
|
9237
9886
|
const module = await import("@arcgis/core/smartMapping/renderers/univariateColorSize.js");
|
|
9238
9887
|
return isDefaultModule(module) ? module.default : module;
|
|
9239
9888
|
}
|
|
9889
|
+
async function importSmartMappingRenderersSupportRendererUtils() {
|
|
9890
|
+
if (isAMD) {
|
|
9891
|
+
return await window.$arcgis.import("esri/smartMapping/renderers/support/rendererUtils");
|
|
9892
|
+
}
|
|
9893
|
+
const module = await import("@arcgis/core/smartMapping/renderers/support/rendererUtils.js");
|
|
9894
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9895
|
+
}
|
|
9240
9896
|
async function importSmartMappingStatisticsClassBreaks() {
|
|
9241
9897
|
if (isAMD) {
|
|
9242
9898
|
return await window.$arcgis.import("esri/smartMapping/statistics/classBreaks");
|
|
@@ -9426,11 +10082,11 @@ async function importSymbolsSupportSymbolUtils() {
|
|
|
9426
10082
|
const module = await import("@arcgis/core/symbols/support/symbolUtils.js");
|
|
9427
10083
|
return isDefaultModule(module) ? module.default : module;
|
|
9428
10084
|
}
|
|
9429
|
-
async function
|
|
10085
|
+
async function importTablesElements() {
|
|
9430
10086
|
if (isAMD) {
|
|
9431
|
-
return await window.$arcgis.import("esri/tables/
|
|
10087
|
+
return await window.$arcgis.import("esri/tables/elements");
|
|
9432
10088
|
}
|
|
9433
|
-
const module = await import("@arcgis/core/tables/
|
|
10089
|
+
const module = await import("@arcgis/core/tables/elements.js");
|
|
9434
10090
|
return isDefaultModule(module) ? module.default : module;
|
|
9435
10091
|
}
|
|
9436
10092
|
async function importVersionManagementUtils() {
|
|
@@ -9447,13 +10103,6 @@ async function importVersionManagementVersionAdaptersUtils() {
|
|
|
9447
10103
|
const module = await import("@arcgis/core/versionManagement/versionAdapters/utils.js");
|
|
9448
10104
|
return isDefaultModule(module) ? module.default : module;
|
|
9449
10105
|
}
|
|
9450
|
-
async function importViews3dExternalRenderers() {
|
|
9451
|
-
if (isAMD) {
|
|
9452
|
-
return await window.$arcgis.import("esri/views/3d/externalRenderers");
|
|
9453
|
-
}
|
|
9454
|
-
const module = await import("@arcgis/core/views/3d/externalRenderers.js");
|
|
9455
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9456
|
-
}
|
|
9457
10106
|
async function importViews3dWebglManagedFBO() {
|
|
9458
10107
|
if (isAMD) {
|
|
9459
10108
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -9503,6 +10152,13 @@ async function importViewsSupportColorUtils() {
|
|
|
9503
10152
|
const module = await import("@arcgis/core/views/support/colorUtils.js");
|
|
9504
10153
|
return isDefaultModule(module) ? module.default : module;
|
|
9505
10154
|
}
|
|
10155
|
+
async function importWebsceneSupportSlideElements() {
|
|
10156
|
+
if (isAMD) {
|
|
10157
|
+
return await window.$arcgis.import("esri/webscene/support/SlideElements");
|
|
10158
|
+
}
|
|
10159
|
+
const module = await import("@arcgis/core/webscene/support/SlideElements.js");
|
|
10160
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10161
|
+
}
|
|
9506
10162
|
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
9507
10163
|
if (isAMD) {
|
|
9508
10164
|
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
@@ -9517,6 +10173,13 @@ async function importWidgetsSmartMappingSupportUtils() {
|
|
|
9517
10173
|
const module = await import("@arcgis/core/widgets/smartMapping/support/utils.js");
|
|
9518
10174
|
return isDefaultModule(module) ? module.default : module;
|
|
9519
10175
|
}
|
|
10176
|
+
async function importWidgetsSupportUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel() {
|
|
10177
|
+
if (isAMD) {
|
|
10178
|
+
return await window.$arcgis.import("esri/widgets/support/UtilityNetworkAssociations/UtilityNetworkAssociationsViewModel");
|
|
10179
|
+
}
|
|
10180
|
+
const module = await import("@arcgis/core/widgets/support/UtilityNetworkAssociations/UtilityNetworkAssociationsViewModel.js");
|
|
10181
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10182
|
+
}
|
|
9520
10183
|
async function importWidgetsSupportWidget() {
|
|
9521
10184
|
if (isAMD) {
|
|
9522
10185
|
return await window.$arcgis.import("esri/widgets/support/widget");
|
|
@@ -9531,13 +10194,6 @@ async function importApplicationsComponentsBasemapUtils() {
|
|
|
9531
10194
|
const module = await import("@arcgis/core/applications/Components/basemapUtils.js");
|
|
9532
10195
|
return isDefaultModule(module) ? module.default : module;
|
|
9533
10196
|
}
|
|
9534
|
-
async function importApplicationsComponentsCollectionFlattener() {
|
|
9535
|
-
if (isAMD) {
|
|
9536
|
-
return await window.$arcgis.import("esri/applications/Components/CollectionFlattener");
|
|
9537
|
-
}
|
|
9538
|
-
const module = await import("@arcgis/core/applications/Components/CollectionFlattener.js");
|
|
9539
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9540
|
-
}
|
|
9541
10197
|
async function importApplicationsComponentsDrawUtils() {
|
|
9542
10198
|
if (isAMD) {
|
|
9543
10199
|
return await window.$arcgis.import("esri/applications/Components/drawUtils");
|
|
@@ -9587,6 +10243,27 @@ async function importApplicationsComponentsPreviewSymbol2D() {
|
|
|
9587
10243
|
const module = await import("@arcgis/core/applications/Components/previewSymbol2D.js");
|
|
9588
10244
|
return isDefaultModule(module) ? module.default : module;
|
|
9589
10245
|
}
|
|
10246
|
+
async function importApplicationsComponentsReactiveUtils() {
|
|
10247
|
+
if (isAMD) {
|
|
10248
|
+
return await window.$arcgis.import("esri/applications/Components/reactiveUtils");
|
|
10249
|
+
}
|
|
10250
|
+
const module = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10251
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10252
|
+
}
|
|
10253
|
+
async function importApplicationsComponentsSelectionOperation() {
|
|
10254
|
+
if (isAMD) {
|
|
10255
|
+
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
10256
|
+
}
|
|
10257
|
+
const module = await import("@arcgis/core/applications/Components/SelectionOperation.js");
|
|
10258
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10259
|
+
}
|
|
10260
|
+
async function importApplicationsComponentsSketchTooltipControls() {
|
|
10261
|
+
if (isAMD) {
|
|
10262
|
+
return await window.$arcgis.import("esri/applications/Components/SketchTooltipControls");
|
|
10263
|
+
}
|
|
10264
|
+
const module = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10265
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10266
|
+
}
|
|
9590
10267
|
async function importApplicationsComponentsStyleUtils() {
|
|
9591
10268
|
if (isAMD) {
|
|
9592
10269
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -9608,13 +10285,6 @@ async function importApplicationsComponentsWebStyleSymbolUtils() {
|
|
|
9608
10285
|
const module = await import("@arcgis/core/applications/Components/webStyleSymbolUtils.js");
|
|
9609
10286
|
return isDefaultModule(module) ? module.default : module;
|
|
9610
10287
|
}
|
|
9611
|
-
async function importApplicationsExcaliburVideoViewUtils() {
|
|
9612
|
-
if (isAMD) {
|
|
9613
|
-
return await window.$arcgis.import("esri/applications/Excalibur/videoViewUtils");
|
|
9614
|
-
}
|
|
9615
|
-
const module = await import("@arcgis/core/applications/Excalibur/videoViewUtils.js");
|
|
9616
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9617
|
-
}
|
|
9618
10288
|
async function importApplicationsExperienceBuilderSketchUtils() {
|
|
9619
10289
|
if (isAMD) {
|
|
9620
10290
|
return await window.$arcgis.import("esri/applications/ExperienceBuilder/sketchUtils");
|
|
@@ -9622,13 +10292,6 @@ async function importApplicationsExperienceBuilderSketchUtils() {
|
|
|
9622
10292
|
const module = await import("@arcgis/core/applications/ExperienceBuilder/sketchUtils.js");
|
|
9623
10293
|
return isDefaultModule(module) ? module.default : module;
|
|
9624
10294
|
}
|
|
9625
|
-
async function importApplicationsMapViewerMediaUtils() {
|
|
9626
|
-
if (isAMD) {
|
|
9627
|
-
return await window.$arcgis.import("esri/applications/MapViewer/mediaUtils");
|
|
9628
|
-
}
|
|
9629
|
-
const module = await import("@arcgis/core/applications/MapViewer/mediaUtils.js");
|
|
9630
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9631
|
-
}
|
|
9632
10295
|
async function importApplicationsMapViewerTemplateUtils() {
|
|
9633
10296
|
if (isAMD) {
|
|
9634
10297
|
return await window.$arcgis.import("esri/applications/MapViewer/templateUtils");
|
|
@@ -9636,13 +10299,6 @@ async function importApplicationsMapViewerTemplateUtils() {
|
|
|
9636
10299
|
const module = await import("@arcgis/core/applications/MapViewer/templateUtils.js");
|
|
9637
10300
|
return isDefaultModule(module) ? module.default : module;
|
|
9638
10301
|
}
|
|
9639
|
-
async function importApplicationsSceneViewerColorUtils() {
|
|
9640
|
-
if (isAMD) {
|
|
9641
|
-
return await window.$arcgis.import("esri/applications/SceneViewer/colorUtils");
|
|
9642
|
-
}
|
|
9643
|
-
const module = await import("@arcgis/core/applications/SceneViewer/colorUtils.js");
|
|
9644
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9645
|
-
}
|
|
9646
10302
|
async function importApplicationsSceneViewerDevEnvironmentUtils() {
|
|
9647
10303
|
if (isAMD) {
|
|
9648
10304
|
return await window.$arcgis.import("esri/applications/SceneViewer/devEnvironmentUtils");
|
|
@@ -9650,34 +10306,6 @@ async function importApplicationsSceneViewerDevEnvironmentUtils() {
|
|
|
9650
10306
|
const module = await import("@arcgis/core/applications/SceneViewer/devEnvironmentUtils.js");
|
|
9651
10307
|
return isDefaultModule(module) ? module.default : module;
|
|
9652
10308
|
}
|
|
9653
|
-
async function importApplicationsSceneViewerLayerUtils() {
|
|
9654
|
-
if (isAMD) {
|
|
9655
|
-
return await window.$arcgis.import("esri/applications/SceneViewer/layerUtils");
|
|
9656
|
-
}
|
|
9657
|
-
const module = await import("@arcgis/core/applications/SceneViewer/layerUtils.js");
|
|
9658
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9659
|
-
}
|
|
9660
|
-
async function importApplicationsSceneViewerSceneViewerUtils() {
|
|
9661
|
-
if (isAMD) {
|
|
9662
|
-
return await window.$arcgis.import("esri/applications/SceneViewer/sceneViewerUtils");
|
|
9663
|
-
}
|
|
9664
|
-
const module = await import("@arcgis/core/applications/SceneViewer/sceneViewerUtils.js");
|
|
9665
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9666
|
-
}
|
|
9667
|
-
async function importApplicationsSceneViewerSymbolUtils() {
|
|
9668
|
-
if (isAMD) {
|
|
9669
|
-
return await window.$arcgis.import("esri/applications/SceneViewer/symbolUtils");
|
|
9670
|
-
}
|
|
9671
|
-
const module = await import("@arcgis/core/applications/SceneViewer/symbolUtils.js");
|
|
9672
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9673
|
-
}
|
|
9674
|
-
async function importApplicationsUrbanMeshUtils() {
|
|
9675
|
-
if (isAMD) {
|
|
9676
|
-
return await window.$arcgis.import("esri/applications/Urban/meshUtils");
|
|
9677
|
-
}
|
|
9678
|
-
const module = await import("@arcgis/core/applications/Urban/meshUtils.js");
|
|
9679
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9680
|
-
}
|
|
9681
10309
|
async function importApplicationsWebEditorSketchUtils() {
|
|
9682
10310
|
if (isAMD) {
|
|
9683
10311
|
return await window.$arcgis.import("esri/applications/WebEditor/sketchUtils");
|
|
@@ -9699,7 +10327,6 @@ export {
|
|
|
9699
10327
|
importAnalysisViewshed,
|
|
9700
10328
|
importAnalysisViewshedAnalysis,
|
|
9701
10329
|
importApplicationsComponentsBasemapUtils,
|
|
9702
|
-
importApplicationsComponentsCollectionFlattener,
|
|
9703
10330
|
importApplicationsComponentsDrawUtils,
|
|
9704
10331
|
importApplicationsComponentsFontUtils,
|
|
9705
10332
|
importApplicationsComponentsGetDefaultUnits,
|
|
@@ -9707,21 +10334,18 @@ export {
|
|
|
9707
10334
|
importApplicationsComponentsLayerOriginUtils,
|
|
9708
10335
|
importApplicationsComponentsLayersEffectsJsonUtils,
|
|
9709
10336
|
importApplicationsComponentsPreviewSymbol2D,
|
|
10337
|
+
importApplicationsComponentsReactiveUtils,
|
|
10338
|
+
importApplicationsComponentsSelectionOperation,
|
|
10339
|
+
importApplicationsComponentsSketchTooltipControls,
|
|
9710
10340
|
importApplicationsComponentsStyleUtils,
|
|
9711
10341
|
importApplicationsComponentsSvgUtils,
|
|
9712
10342
|
importApplicationsComponentsWebStyleSymbolUtils,
|
|
9713
|
-
importApplicationsExcaliburVideoViewUtils,
|
|
9714
10343
|
importApplicationsExperienceBuilderSketchUtils,
|
|
9715
|
-
importApplicationsMapViewerMediaUtils,
|
|
9716
10344
|
importApplicationsMapViewerTemplateUtils,
|
|
9717
|
-
importApplicationsSceneViewerColorUtils,
|
|
9718
10345
|
importApplicationsSceneViewerDevEnvironmentUtils,
|
|
9719
|
-
importApplicationsSceneViewerLayerUtils,
|
|
9720
|
-
importApplicationsSceneViewerSceneViewerUtils,
|
|
9721
|
-
importApplicationsSceneViewerSymbolUtils,
|
|
9722
|
-
importApplicationsUrbanMeshUtils,
|
|
9723
10346
|
importApplicationsWebEditorSketchUtils,
|
|
9724
10347
|
importArcade,
|
|
10348
|
+
importAttributeBinsGraphic,
|
|
9725
10349
|
importBasemap,
|
|
9726
10350
|
importCamera,
|
|
9727
10351
|
importCameraLayout,
|
|
@@ -9741,16 +10365,18 @@ export {
|
|
|
9741
10365
|
importCoreUrlUtils,
|
|
9742
10366
|
importCoreWorkers,
|
|
9743
10367
|
importCoreWorkersConnection,
|
|
10368
|
+
importEditingSharedTemplatesSharedTemplateMetadata,
|
|
10369
|
+
importFormElements,
|
|
9744
10370
|
importFormElementsAttachmentElement,
|
|
9745
10371
|
importFormElementsElement,
|
|
9746
10372
|
importFormElementsFieldElement,
|
|
9747
10373
|
importFormElementsGroupElement,
|
|
10374
|
+
importFormElementsInputs,
|
|
9748
10375
|
importFormElementsInputsAttachmentsAttachmentInput,
|
|
9749
10376
|
importFormElementsInputsAttachmentsAudioInput,
|
|
9750
10377
|
importFormElementsInputsAttachmentsDocumentInput,
|
|
9751
10378
|
importFormElementsInputsAttachmentsImageInput,
|
|
9752
10379
|
importFormElementsInputsAttachmentsSignatureInput,
|
|
9753
|
-
importFormElementsInputsAttachmentsSupportInputs,
|
|
9754
10380
|
importFormElementsInputsAttachmentsVideoInput,
|
|
9755
10381
|
importFormElementsInputsBarcodeScannerInput,
|
|
9756
10382
|
importFormElementsInputsComboBoxInput,
|
|
@@ -9763,11 +10389,10 @@ export {
|
|
|
9763
10389
|
importFormElementsInputsTextBoxInput,
|
|
9764
10390
|
importFormElementsInputsTimePickerInput,
|
|
9765
10391
|
importFormElementsRelationshipElement,
|
|
9766
|
-
importFormElementsSupportInputs,
|
|
9767
10392
|
importFormElementsTextElement,
|
|
10393
|
+
importFormElementsUtilityNetworkAssociationsElement,
|
|
9768
10394
|
importFormExpressionInfo,
|
|
9769
10395
|
importFormFormTemplate,
|
|
9770
|
-
importFormSupportElements,
|
|
9771
10396
|
importGeometry,
|
|
9772
10397
|
importGeometryCircle,
|
|
9773
10398
|
importGeometryCoordinateFormatter,
|
|
@@ -9779,7 +10404,10 @@ export {
|
|
|
9779
10404
|
importGeometryMesh,
|
|
9780
10405
|
importGeometryMultipoint,
|
|
9781
10406
|
importGeometryOperatorsAffineTransformOperator,
|
|
10407
|
+
importGeometryOperatorsAlphaShapeOperator,
|
|
9782
10408
|
importGeometryOperatorsAreaOperator,
|
|
10409
|
+
importGeometryOperatorsAutoCompleteOperator,
|
|
10410
|
+
importGeometryOperatorsBoundaryOperator,
|
|
9783
10411
|
importGeometryOperatorsBufferOperator,
|
|
9784
10412
|
importGeometryOperatorsCentroidOperator,
|
|
9785
10413
|
importGeometryOperatorsClipOperator,
|
|
@@ -9792,21 +10420,38 @@ export {
|
|
|
9792
10420
|
importGeometryOperatorsDisjointOperator,
|
|
9793
10421
|
importGeometryOperatorsDistanceOperator,
|
|
9794
10422
|
importGeometryOperatorsEqualsOperator,
|
|
10423
|
+
importGeometryOperatorsExtendOperator,
|
|
9795
10424
|
importGeometryOperatorsGeneralizeOperator,
|
|
9796
10425
|
importGeometryOperatorsGeodesicBufferOperator,
|
|
10426
|
+
importGeometryOperatorsGeodesicProximityOperator,
|
|
9797
10427
|
importGeometryOperatorsGeodeticAreaOperator,
|
|
9798
10428
|
importGeometryOperatorsGeodeticDensifyOperator,
|
|
9799
10429
|
importGeometryOperatorsGeodeticDistanceOperator,
|
|
9800
10430
|
importGeometryOperatorsGeodeticLengthOperator,
|
|
9801
10431
|
importGeometryOperatorsGraphicBufferOperator,
|
|
10432
|
+
importGeometryOperatorsIntegrateOperator,
|
|
9802
10433
|
importGeometryOperatorsIntersectionOperator,
|
|
9803
10434
|
importGeometryOperatorsIntersectsOperator,
|
|
10435
|
+
importGeometryOperatorsIsNearOperator,
|
|
10436
|
+
importGeometryOperatorsLabelPointOperator,
|
|
9804
10437
|
importGeometryOperatorsLengthOperator,
|
|
10438
|
+
importGeometryOperatorsLinesToPolygonsOperator,
|
|
10439
|
+
importGeometryOperatorsLocateBetweenOperator,
|
|
10440
|
+
importGeometryOperatorsMinimumBoundingCircleOperator,
|
|
10441
|
+
importGeometryOperatorsMultiPartToSinglePartOperator,
|
|
9805
10442
|
importGeometryOperatorsOffsetOperator,
|
|
9806
10443
|
importGeometryOperatorsOverlapsOperator,
|
|
10444
|
+
importGeometryOperatorsPolygonOverlayOperator,
|
|
10445
|
+
importGeometryOperatorsPolygonSlicerOperator,
|
|
10446
|
+
importGeometryOperatorsProjectOperator,
|
|
9807
10447
|
importGeometryOperatorsProximityOperator,
|
|
9808
10448
|
importGeometryOperatorsRelateOperator,
|
|
10449
|
+
importGeometryOperatorsReshapeOperator,
|
|
10450
|
+
importGeometryOperatorsShapePreservingProjectOperator,
|
|
9809
10451
|
importGeometryOperatorsSimplifyOperator,
|
|
10452
|
+
importGeometryOperatorsSupportGeographicTransformation,
|
|
10453
|
+
importGeometryOperatorsSupportGeographicTransformationStep,
|
|
10454
|
+
importGeometryOperatorsSupportGeographicTransformationUtils,
|
|
9810
10455
|
importGeometryOperatorsSupportTransformation,
|
|
9811
10456
|
importGeometryOperatorsSymmetricDifferenceOperator,
|
|
9812
10457
|
importGeometryOperatorsTouchesOperator,
|
|
@@ -9865,10 +10510,13 @@ export {
|
|
|
9865
10510
|
importLayersIntegratedMesh3DTilesLayer,
|
|
9866
10511
|
importLayersIntegratedMeshLayer,
|
|
9867
10512
|
importLayersKMLLayer,
|
|
10513
|
+
importLayersKnowledgeGraphCypherUtils,
|
|
9868
10514
|
importLayersKnowledgeGraphKnowledgeGraphSublayer,
|
|
9869
10515
|
importLayersKnowledgeGraphLayer,
|
|
10516
|
+
importLayersKnowledgeGraphSupportUtils,
|
|
9870
10517
|
importLayersLayer,
|
|
9871
10518
|
importLayersLineOfSightLayer,
|
|
10519
|
+
importLayersLinkChartLayer,
|
|
9872
10520
|
importLayersMapImageLayer,
|
|
9873
10521
|
importLayersMapNotesLayer,
|
|
9874
10522
|
importLayersMediaLayer,
|
|
@@ -9877,6 +10525,8 @@ export {
|
|
|
9877
10525
|
importLayersOgcWfsUtils,
|
|
9878
10526
|
importLayersOpenStreetMapLayer,
|
|
9879
10527
|
importLayersOrientedImageryLayer,
|
|
10528
|
+
importLayersOrientedImageryTransformationsImageToWorld,
|
|
10529
|
+
importLayersOrientedImageryTransformationsWorldToImage,
|
|
9880
10530
|
importLayersPointCloudFiltersPointCloudBitfieldFilter,
|
|
9881
10531
|
importLayersPointCloudFiltersPointCloudFilter,
|
|
9882
10532
|
importLayersPointCloudFiltersPointCloudReturnFilter,
|
|
@@ -9893,7 +10543,10 @@ export {
|
|
|
9893
10543
|
importLayersSupportCodedValueDomain,
|
|
9894
10544
|
importLayersSupportControlPointsGeoreference,
|
|
9895
10545
|
importLayersSupportCornersGeoreference,
|
|
10546
|
+
importLayersSupportCsvUtils,
|
|
9896
10547
|
importLayersSupportDimensionalDefinition,
|
|
10548
|
+
importLayersSupportDisplayFilter,
|
|
10549
|
+
importLayersSupportDisplayFilterInfo,
|
|
9897
10550
|
importLayersSupportDomain,
|
|
9898
10551
|
importLayersSupportElevationSampler,
|
|
9899
10552
|
importLayersSupportExpressionInfo,
|
|
@@ -9921,6 +10574,7 @@ export {
|
|
|
9921
10574
|
importLayersSupportMapImage,
|
|
9922
10575
|
importLayersSupportMosaicRule,
|
|
9923
10576
|
importLayersSupportMultidimensionalSubset,
|
|
10577
|
+
importLayersSupportOrderByInfo,
|
|
9924
10578
|
importLayersSupportPixelBlock,
|
|
9925
10579
|
importLayersSupportPublishingInfo,
|
|
9926
10580
|
importLayersSupportRangeDomain,
|
|
@@ -9970,6 +10624,11 @@ export {
|
|
|
9970
10624
|
importLayersWMSLayer,
|
|
9971
10625
|
importLayersWMTSLayer,
|
|
9972
10626
|
importLayersWebTileLayer,
|
|
10627
|
+
importLinkChartChronologicalLayoutSettings,
|
|
10628
|
+
importLinkChartLayoutSettings,
|
|
10629
|
+
importLinkChartLinkChartProperties,
|
|
10630
|
+
importLinkChartNonspatialDataDisplay,
|
|
10631
|
+
importLinkChartOrganicLayoutSettings,
|
|
9973
10632
|
importMap,
|
|
9974
10633
|
importNetworksNetwork,
|
|
9975
10634
|
importNetworksSupportNamedTraceConfiguration,
|
|
@@ -10082,6 +10741,7 @@ export {
|
|
|
10082
10741
|
importRestKnowledgeGraphGraphProperty,
|
|
10083
10742
|
importRestKnowledgeGraphGraphQuery,
|
|
10084
10743
|
importRestKnowledgeGraphGraphQueryResult,
|
|
10744
|
+
importRestKnowledgeGraphGraphQueryResultHeader,
|
|
10085
10745
|
importRestKnowledgeGraphGraphQueryStreaming,
|
|
10086
10746
|
importRestKnowledgeGraphGraphQueryStreamingResult,
|
|
10087
10747
|
importRestKnowledgeGraphGraphSearch,
|
|
@@ -10095,6 +10755,12 @@ export {
|
|
|
10095
10755
|
importRestKnowledgeGraphSearchIndex,
|
|
10096
10756
|
importRestKnowledgeGraphService,
|
|
10097
10757
|
importRestKnowledgeGraphServiceDefinition,
|
|
10758
|
+
importRestKnowledgeGraphSourceTypeValueBehavior,
|
|
10759
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration,
|
|
10760
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity,
|
|
10761
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter,
|
|
10762
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection,
|
|
10763
|
+
importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings,
|
|
10098
10764
|
importRestLocator,
|
|
10099
10765
|
importRestNetworkService,
|
|
10100
10766
|
importRestNetworksQueryAssociations,
|
|
@@ -10124,6 +10790,12 @@ export {
|
|
|
10124
10790
|
importRestSupportArealUnit,
|
|
10125
10791
|
importRestSupportAreasAndLengthsParameters,
|
|
10126
10792
|
importRestSupportAttachmentQuery,
|
|
10793
|
+
importRestSupportAttributeBinsFeatureSet,
|
|
10794
|
+
importRestSupportAttributeBinsGrouping,
|
|
10795
|
+
importRestSupportAttributeBinsQuery,
|
|
10796
|
+
importRestSupportAutoIntervalBinParameters,
|
|
10797
|
+
importRestSupportBaseImageMeasureParameters,
|
|
10798
|
+
importRestSupportBaseImageMeasureResult,
|
|
10127
10799
|
importRestSupportBufferParameters,
|
|
10128
10800
|
importRestSupportCameraInfo,
|
|
10129
10801
|
importRestSupportClosestFacilityParameters,
|
|
@@ -10131,6 +10803,8 @@ export {
|
|
|
10131
10803
|
importRestSupportColorRamp,
|
|
10132
10804
|
importRestSupportDataFile,
|
|
10133
10805
|
importRestSupportDataLayer,
|
|
10806
|
+
importRestSupportDateBinParameters,
|
|
10807
|
+
importRestSupportDateBinTimeInterval,
|
|
10134
10808
|
importRestSupportDensifyParameters,
|
|
10135
10809
|
importRestSupportDirectionLine,
|
|
10136
10810
|
importRestSupportDirectionPoint,
|
|
@@ -10144,6 +10818,8 @@ export {
|
|
|
10144
10818
|
importRestSupportFindImagesResult,
|
|
10145
10819
|
importRestSupportFindParameters,
|
|
10146
10820
|
importRestSupportFindResult,
|
|
10821
|
+
importRestSupportFixedBoundariesBinParameters,
|
|
10822
|
+
importRestSupportFixedIntervalBinParameters,
|
|
10147
10823
|
importRestSupportGPMessage,
|
|
10148
10824
|
importRestSupportGeneralizeParameters,
|
|
10149
10825
|
importRestSupportIdentifyParameters,
|
|
@@ -10177,6 +10853,9 @@ export {
|
|
|
10177
10853
|
importRestSupportImageToMapParameters,
|
|
10178
10854
|
importRestSupportImageUrlParameters,
|
|
10179
10855
|
importRestSupportImageUrlResult,
|
|
10856
|
+
importRestSupportImageVolume,
|
|
10857
|
+
importRestSupportImageVolumeParameters,
|
|
10858
|
+
importRestSupportImageVolumeResult,
|
|
10180
10859
|
importRestSupportJobInfo,
|
|
10181
10860
|
importRestSupportLegendLayer,
|
|
10182
10861
|
importRestSupportLengthsParameters,
|
|
@@ -10244,6 +10923,7 @@ export {
|
|
|
10244
10923
|
importSmartMappingRenderersPredominance,
|
|
10245
10924
|
importSmartMappingRenderersRelationship,
|
|
10246
10925
|
importSmartMappingRenderersSize,
|
|
10926
|
+
importSmartMappingRenderersSupportRendererUtils,
|
|
10247
10927
|
importSmartMappingRenderersType,
|
|
10248
10928
|
importSmartMappingRenderersUnivariateColorSize,
|
|
10249
10929
|
importSmartMappingStatisticsClassBreaks,
|
|
@@ -10318,12 +10998,12 @@ export {
|
|
|
10318
10998
|
importSymbolsWaterSymbol3DLayer,
|
|
10319
10999
|
importSymbolsWebStyleSymbol,
|
|
10320
11000
|
importTablesAttributeTableTemplate,
|
|
11001
|
+
importTablesElements,
|
|
10321
11002
|
importTablesElementsAttributeTableAttachmentElement,
|
|
10322
11003
|
importTablesElementsAttributeTableElement,
|
|
10323
11004
|
importTablesElementsAttributeTableFieldElement,
|
|
10324
11005
|
importTablesElementsAttributeTableGroupElement,
|
|
10325
11006
|
importTablesElementsAttributeTableRelationshipElement,
|
|
10326
|
-
importTablesSupportElements,
|
|
10327
11007
|
importTimeExtent,
|
|
10328
11008
|
importTimeInterval,
|
|
10329
11009
|
importTimeTimeExtent,
|
|
@@ -10349,7 +11029,6 @@ export {
|
|
|
10349
11029
|
importViews3dEnvironmentSunLighting,
|
|
10350
11030
|
importViews3dEnvironmentSunnyWeather,
|
|
10351
11031
|
importViews3dEnvironmentVirtualLighting,
|
|
10352
|
-
importViews3dExternalRenderers,
|
|
10353
11032
|
importViews3dSupportLayerPerformanceInfo,
|
|
10354
11033
|
importViews3dSupportSceneViewPerformanceInfo,
|
|
10355
11034
|
importViews3dWebgl,
|
|
@@ -10391,12 +11070,15 @@ export {
|
|
|
10391
11070
|
importViewsLayersSceneLayerView,
|
|
10392
11071
|
importViewsLayersStreamLayerView,
|
|
10393
11072
|
importViewsLayersViewshedLayerView,
|
|
11073
|
+
importViewsLinkChartView,
|
|
10394
11074
|
importViewsMagnifier,
|
|
10395
11075
|
importViewsMapView,
|
|
10396
11076
|
importViewsNavigationGamepadGamepadSettings,
|
|
10397
11077
|
importViewsNavigationNavigation,
|
|
11078
|
+
importViewsNavigationNavigationActionMap,
|
|
10398
11079
|
importViewsSceneView,
|
|
10399
11080
|
importViewsSupportColorUtils,
|
|
11081
|
+
importViewsSupportHighlightOptions,
|
|
10400
11082
|
importViewsTheme,
|
|
10401
11083
|
importViewsUiDefaultUI,
|
|
10402
11084
|
importViewsUiUI,
|
|
@@ -10404,6 +11086,7 @@ export {
|
|
|
10404
11086
|
importViewsView2D,
|
|
10405
11087
|
importViewsViewAnimation,
|
|
10406
11088
|
importWebDocument2D,
|
|
11089
|
+
importWebLinkChart,
|
|
10407
11090
|
importWebMap,
|
|
10408
11091
|
importWebScene,
|
|
10409
11092
|
importWebdocApplicationPropertiesSearch,
|
|
@@ -10435,7 +11118,9 @@ export {
|
|
|
10435
11118
|
importWebsceneInitialViewProperties,
|
|
10436
11119
|
importWebscenePresentation,
|
|
10437
11120
|
importWebsceneSlide,
|
|
11121
|
+
importWebsceneSlideLegendInfo,
|
|
10438
11122
|
importWebsceneSunLighting,
|
|
11123
|
+
importWebsceneSupportSlideElements,
|
|
10439
11124
|
importWebsceneVirtualLighting,
|
|
10440
11125
|
importWidgetsAreaMeasurement2D,
|
|
10441
11126
|
importWidgetsAreaMeasurement2DAreaMeasurement2DViewModel,
|
|
@@ -10505,6 +11190,8 @@ export {
|
|
|
10505
11190
|
importWidgetsFeatureFormFieldInput,
|
|
10506
11191
|
importWidgetsFeatureFormGroupInput,
|
|
10507
11192
|
importWidgetsFeatureFormRelationshipInput,
|
|
11193
|
+
importWidgetsFeatureFormTextElementInput,
|
|
11194
|
+
importWidgetsFeatureFormUtilityNetworkAssociationInput,
|
|
10508
11195
|
importWidgetsFeatureTable,
|
|
10509
11196
|
importWidgetsFeatureTableActionColumn,
|
|
10510
11197
|
importWidgetsFeatureTableAttachmentsColumn,
|
|
@@ -10516,10 +11203,12 @@ export {
|
|
|
10516
11203
|
importWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
10517
11204
|
importWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
10518
11205
|
importWidgetsFeatureTableRelationshipColumn,
|
|
11206
|
+
importWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
10519
11207
|
importWidgetsFeatureTableSupportColumnTemplate,
|
|
10520
11208
|
importWidgetsFeatureTableSupportColumnTemplateBase,
|
|
10521
11209
|
importWidgetsFeatureTableSupportFieldColumnTemplate,
|
|
10522
11210
|
importWidgetsFeatureTableSupportGroupColumnTemplate,
|
|
11211
|
+
importWidgetsFeatureTableSupportRelationshipColumnTemplate,
|
|
10523
11212
|
importWidgetsFeatureTableSupportTableTemplate,
|
|
10524
11213
|
importWidgetsFeatureTemplates,
|
|
10525
11214
|
importWidgetsFeatureTemplatesFeatureTemplatesViewModel,
|
|
@@ -10547,6 +11236,7 @@ export {
|
|
|
10547
11236
|
importWidgetsLineOfSight,
|
|
10548
11237
|
importWidgetsLineOfSightLineOfSightTarget,
|
|
10549
11238
|
importWidgetsLineOfSightLineOfSightViewModel,
|
|
11239
|
+
importWidgetsLinkChartLayoutSwitcherLinkChartLayoutSwitcherViewModel,
|
|
10550
11240
|
importWidgetsLocate,
|
|
10551
11241
|
importWidgetsLocateLocateViewModel,
|
|
10552
11242
|
importWidgetsMeasurement,
|
|
@@ -10604,6 +11294,7 @@ export {
|
|
|
10604
11294
|
importWidgetsSupportGridControlsGridControlsViewModel,
|
|
10605
11295
|
importWidgetsSupportSnappingControls,
|
|
10606
11296
|
importWidgetsSupportSnappingControlsSnappingControlsViewModel,
|
|
11297
|
+
importWidgetsSupportUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
10607
11298
|
importWidgetsSupportWidget,
|
|
10608
11299
|
importWidgetsSwipe,
|
|
10609
11300
|
importWidgetsSwipeSwipeViewModel,
|
|
@@ -10619,6 +11310,7 @@ export {
|
|
|
10619
11310
|
importWidgetsUtilityNetworkAssociations,
|
|
10620
11311
|
importWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
10621
11312
|
importWidgetsUtilityNetworkTrace,
|
|
11313
|
+
importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel,
|
|
10622
11314
|
importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel,
|
|
10623
11315
|
importWidgetsUtilityNetworkValidateTopology,
|
|
10624
11316
|
importWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel,
|
|
@@ -10648,6 +11340,7 @@ export {
|
|
|
10648
11340
|
newAnalysisSlicePlane,
|
|
10649
11341
|
newAnalysisViewshed,
|
|
10650
11342
|
newAnalysisViewshedAnalysis,
|
|
11343
|
+
newAttributeBinsGraphic,
|
|
10651
11344
|
newBasemap,
|
|
10652
11345
|
newCamera,
|
|
10653
11346
|
newCameraLayout,
|
|
@@ -10679,6 +11372,7 @@ export {
|
|
|
10679
11372
|
newFormElementsInputsTimePickerInput,
|
|
10680
11373
|
newFormElementsRelationshipElement,
|
|
10681
11374
|
newFormElementsTextElement,
|
|
11375
|
+
newFormElementsUtilityNetworkAssociationsElement,
|
|
10682
11376
|
newFormExpressionInfo,
|
|
10683
11377
|
newFormFormTemplate,
|
|
10684
11378
|
newGeometryCircle,
|
|
@@ -10687,6 +11381,8 @@ export {
|
|
|
10687
11381
|
newGeometryHeightModelInfo,
|
|
10688
11382
|
newGeometryMesh,
|
|
10689
11383
|
newGeometryMultipoint,
|
|
11384
|
+
newGeometryOperatorsSupportGeographicTransformation,
|
|
11385
|
+
newGeometryOperatorsSupportGeographicTransformationStep,
|
|
10690
11386
|
newGeometryOperatorsSupportTransformation,
|
|
10691
11387
|
newGeometryPoint,
|
|
10692
11388
|
newGeometryPolygon,
|
|
@@ -10735,6 +11431,7 @@ export {
|
|
|
10735
11431
|
newLayersKnowledgeGraphLayer,
|
|
10736
11432
|
newLayersLayer,
|
|
10737
11433
|
newLayersLineOfSightLayer,
|
|
11434
|
+
newLayersLinkChartLayer,
|
|
10738
11435
|
newLayersMapImageLayer,
|
|
10739
11436
|
newLayersMapNotesLayer,
|
|
10740
11437
|
newLayersMediaLayer,
|
|
@@ -10757,6 +11454,8 @@ export {
|
|
|
10757
11454
|
newLayersSupportControlPointsGeoreference,
|
|
10758
11455
|
newLayersSupportCornersGeoreference,
|
|
10759
11456
|
newLayersSupportDimensionalDefinition,
|
|
11457
|
+
newLayersSupportDisplayFilter,
|
|
11458
|
+
newLayersSupportDisplayFilterInfo,
|
|
10760
11459
|
newLayersSupportDomain,
|
|
10761
11460
|
newLayersSupportElevationSampler,
|
|
10762
11461
|
newLayersSupportExpressionInfo,
|
|
@@ -10783,6 +11482,7 @@ export {
|
|
|
10783
11482
|
newLayersSupportMapImage,
|
|
10784
11483
|
newLayersSupportMosaicRule,
|
|
10785
11484
|
newLayersSupportMultidimensionalSubset,
|
|
11485
|
+
newLayersSupportOrderByInfo,
|
|
10786
11486
|
newLayersSupportPixelBlock,
|
|
10787
11487
|
newLayersSupportPublishingInfo,
|
|
10788
11488
|
newLayersSupportRangeDomain,
|
|
@@ -10827,6 +11527,11 @@ export {
|
|
|
10827
11527
|
newLayersWMSLayer,
|
|
10828
11528
|
newLayersWMTSLayer,
|
|
10829
11529
|
newLayersWebTileLayer,
|
|
11530
|
+
newLinkChartChronologicalLayoutSettings,
|
|
11531
|
+
newLinkChartLayoutSettings,
|
|
11532
|
+
newLinkChartLinkChartProperties,
|
|
11533
|
+
newLinkChartNonspatialDataDisplay,
|
|
11534
|
+
newLinkChartOrganicLayoutSettings,
|
|
10830
11535
|
newMap,
|
|
10831
11536
|
newNetworksNetwork,
|
|
10832
11537
|
newNetworksSupportNamedTraceConfiguration,
|
|
@@ -10862,6 +11567,7 @@ export {
|
|
|
10862
11567
|
newPopupRelatedRecordsInfo,
|
|
10863
11568
|
newPopupSupportFieldInfoFormat,
|
|
10864
11569
|
newPopupSupportRelatedRecordsInfoFieldOrder,
|
|
11570
|
+
newPopupSupportUtilityNetworkAssociationType,
|
|
10865
11571
|
newPopupTemplate,
|
|
10866
11572
|
newPortalPortal,
|
|
10867
11573
|
newPortalPortalFolder,
|
|
@@ -10923,6 +11629,7 @@ export {
|
|
|
10923
11629
|
newRestKnowledgeGraphGraphProperty,
|
|
10924
11630
|
newRestKnowledgeGraphGraphQuery,
|
|
10925
11631
|
newRestKnowledgeGraphGraphQueryResult,
|
|
11632
|
+
newRestKnowledgeGraphGraphQueryResultHeader,
|
|
10926
11633
|
newRestKnowledgeGraphGraphQueryStreaming,
|
|
10927
11634
|
newRestKnowledgeGraphGraphQueryStreamingResult,
|
|
10928
11635
|
newRestKnowledgeGraphGraphSearch,
|
|
@@ -10935,6 +11642,12 @@ export {
|
|
|
10935
11642
|
newRestKnowledgeGraphRelationshipType,
|
|
10936
11643
|
newRestKnowledgeGraphSearchIndex,
|
|
10937
11644
|
newRestKnowledgeGraphServiceDefinition,
|
|
11645
|
+
newRestKnowledgeGraphSourceTypeValueBehavior,
|
|
11646
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration,
|
|
11647
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity,
|
|
11648
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter,
|
|
11649
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection,
|
|
11650
|
+
newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings,
|
|
10938
11651
|
newRestNetworksSupportAggregatedGeometry,
|
|
10939
11652
|
newRestNetworksSupportAssociation,
|
|
10940
11653
|
newRestNetworksSupportAssociationGeometriesResult,
|
|
@@ -10953,6 +11666,12 @@ export {
|
|
|
10953
11666
|
newRestSupportArealUnit,
|
|
10954
11667
|
newRestSupportAreasAndLengthsParameters,
|
|
10955
11668
|
newRestSupportAttachmentQuery,
|
|
11669
|
+
newRestSupportAttributeBinsFeatureSet,
|
|
11670
|
+
newRestSupportAttributeBinsGrouping,
|
|
11671
|
+
newRestSupportAttributeBinsQuery,
|
|
11672
|
+
newRestSupportAutoIntervalBinParameters,
|
|
11673
|
+
newRestSupportBaseImageMeasureParameters,
|
|
11674
|
+
newRestSupportBaseImageMeasureResult,
|
|
10956
11675
|
newRestSupportBufferParameters,
|
|
10957
11676
|
newRestSupportCameraInfo,
|
|
10958
11677
|
newRestSupportClosestFacilityParameters,
|
|
@@ -10960,6 +11679,8 @@ export {
|
|
|
10960
11679
|
newRestSupportColorRamp,
|
|
10961
11680
|
newRestSupportDataFile,
|
|
10962
11681
|
newRestSupportDataLayer,
|
|
11682
|
+
newRestSupportDateBinParameters,
|
|
11683
|
+
newRestSupportDateBinTimeInterval,
|
|
10963
11684
|
newRestSupportDensifyParameters,
|
|
10964
11685
|
newRestSupportDirectionLine,
|
|
10965
11686
|
newRestSupportDirectionPoint,
|
|
@@ -10973,6 +11694,8 @@ export {
|
|
|
10973
11694
|
newRestSupportFindImagesResult,
|
|
10974
11695
|
newRestSupportFindParameters,
|
|
10975
11696
|
newRestSupportFindResult,
|
|
11697
|
+
newRestSupportFixedBoundariesBinParameters,
|
|
11698
|
+
newRestSupportFixedIntervalBinParameters,
|
|
10976
11699
|
newRestSupportGPMessage,
|
|
10977
11700
|
newRestSupportGeneralizeParameters,
|
|
10978
11701
|
newRestSupportIdentifyParameters,
|
|
@@ -11006,6 +11729,9 @@ export {
|
|
|
11006
11729
|
newRestSupportImageToMapParameters,
|
|
11007
11730
|
newRestSupportImageUrlParameters,
|
|
11008
11731
|
newRestSupportImageUrlResult,
|
|
11732
|
+
newRestSupportImageVolume,
|
|
11733
|
+
newRestSupportImageVolumeParameters,
|
|
11734
|
+
newRestSupportImageVolumeResult,
|
|
11009
11735
|
newRestSupportJobInfo,
|
|
11010
11736
|
newRestSupportLegendLayer,
|
|
11011
11737
|
newRestSupportLengthsParameters,
|
|
@@ -11154,11 +11880,14 @@ export {
|
|
|
11154
11880
|
newViewsLayersSceneLayerView,
|
|
11155
11881
|
newViewsLayersStreamLayerView,
|
|
11156
11882
|
newViewsLayersViewshedLayerView,
|
|
11883
|
+
newViewsLinkChartView,
|
|
11157
11884
|
newViewsMagnifier,
|
|
11158
11885
|
newViewsMapView,
|
|
11159
11886
|
newViewsNavigationGamepadGamepadSettings,
|
|
11160
11887
|
newViewsNavigationNavigation,
|
|
11888
|
+
newViewsNavigationNavigationActionMap,
|
|
11161
11889
|
newViewsSceneView,
|
|
11890
|
+
newViewsSupportHighlightOptions,
|
|
11162
11891
|
newViewsTheme,
|
|
11163
11892
|
newViewsUiDefaultUI,
|
|
11164
11893
|
newViewsUiUI,
|
|
@@ -11166,6 +11895,7 @@ export {
|
|
|
11166
11895
|
newViewsView2D,
|
|
11167
11896
|
newViewsViewAnimation,
|
|
11168
11897
|
newWebDocument2D,
|
|
11898
|
+
newWebLinkChart,
|
|
11169
11899
|
newWebMap,
|
|
11170
11900
|
newWebScene,
|
|
11171
11901
|
newWebdocApplicationPropertiesSearch,
|
|
@@ -11197,6 +11927,7 @@ export {
|
|
|
11197
11927
|
newWebsceneInitialViewProperties,
|
|
11198
11928
|
newWebscenePresentation,
|
|
11199
11929
|
newWebsceneSlide,
|
|
11930
|
+
newWebsceneSlideLegendInfo,
|
|
11200
11931
|
newWebsceneSunLighting,
|
|
11201
11932
|
newWebsceneVirtualLighting,
|
|
11202
11933
|
newWidgetsAreaMeasurement2D,
|
|
@@ -11266,6 +11997,8 @@ export {
|
|
|
11266
11997
|
newWidgetsFeatureFormFieldInput,
|
|
11267
11998
|
newWidgetsFeatureFormGroupInput,
|
|
11268
11999
|
newWidgetsFeatureFormRelationshipInput,
|
|
12000
|
+
newWidgetsFeatureFormTextElementInput,
|
|
12001
|
+
newWidgetsFeatureFormUtilityNetworkAssociationInput,
|
|
11269
12002
|
newWidgetsFeatureTable,
|
|
11270
12003
|
newWidgetsFeatureTableActionColumn,
|
|
11271
12004
|
newWidgetsFeatureTableAttachmentsColumn,
|
|
@@ -11277,10 +12010,12 @@ export {
|
|
|
11277
12010
|
newWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
11278
12011
|
newWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
11279
12012
|
newWidgetsFeatureTableRelationshipColumn,
|
|
12013
|
+
newWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
11280
12014
|
newWidgetsFeatureTableSupportColumnTemplate,
|
|
11281
12015
|
newWidgetsFeatureTableSupportColumnTemplateBase,
|
|
11282
12016
|
newWidgetsFeatureTableSupportFieldColumnTemplate,
|
|
11283
12017
|
newWidgetsFeatureTableSupportGroupColumnTemplate,
|
|
12018
|
+
newWidgetsFeatureTableSupportRelationshipColumnTemplate,
|
|
11284
12019
|
newWidgetsFeatureTableSupportTableTemplate,
|
|
11285
12020
|
newWidgetsFeatureTemplates,
|
|
11286
12021
|
newWidgetsFeatureTemplatesFeatureTemplatesViewModel,
|
|
@@ -11308,6 +12043,7 @@ export {
|
|
|
11308
12043
|
newWidgetsLineOfSight,
|
|
11309
12044
|
newWidgetsLineOfSightLineOfSightTarget,
|
|
11310
12045
|
newWidgetsLineOfSightLineOfSightViewModel,
|
|
12046
|
+
newWidgetsLinkChartLayoutSwitcherLinkChartLayoutSwitcherViewModel,
|
|
11311
12047
|
newWidgetsLocate,
|
|
11312
12048
|
newWidgetsLocateLocateViewModel,
|
|
11313
12049
|
newWidgetsMeasurement,
|
|
@@ -11378,6 +12114,7 @@ export {
|
|
|
11378
12114
|
newWidgetsUtilityNetworkAssociations,
|
|
11379
12115
|
newWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
11380
12116
|
newWidgetsUtilityNetworkTrace,
|
|
12117
|
+
newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel,
|
|
11381
12118
|
newWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel,
|
|
11382
12119
|
newWidgetsUtilityNetworkValidateTopology,
|
|
11383
12120
|
newWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel,
|