@arcgis/core-adapter 4.32.0-next.12 → 4.32.0-next.120
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 +939 -108
- package/dist/index.d.cts +131 -24
- package/dist/index.d.ts +131 -24
- package/dist/index.js +819 -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");
|
|
@@ -8179,6 +8652,17 @@ async function newWidgetsUtilityNetworkTrace(properties) {
|
|
|
8179
8652
|
const ModConstructor = await importWidgetsUtilityNetworkTrace();
|
|
8180
8653
|
return new ModConstructor(properties);
|
|
8181
8654
|
}
|
|
8655
|
+
async function importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel() {
|
|
8656
|
+
if (isAMD) {
|
|
8657
|
+
return await window.$arcgis.import("esri/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel");
|
|
8658
|
+
}
|
|
8659
|
+
const module = await import("@arcgis/core/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel.js");
|
|
8660
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8661
|
+
}
|
|
8662
|
+
async function newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel(properties) {
|
|
8663
|
+
const ModConstructor = await importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel();
|
|
8664
|
+
return new ModConstructor(properties);
|
|
8665
|
+
}
|
|
8182
8666
|
async function importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel() {
|
|
8183
8667
|
if (isAMD) {
|
|
8184
8668
|
return await window.$arcgis.import("esri/widgets/UtilityNetworkTrace/UtilityNetworkTraceViewModel");
|
|
@@ -8432,25 +8916,25 @@ async function importCoreWorkers() {
|
|
|
8432
8916
|
const module = await import("@arcgis/core/core/workers.js");
|
|
8433
8917
|
return isDefaultModule(module) ? module.default : module;
|
|
8434
8918
|
}
|
|
8435
|
-
async function
|
|
8919
|
+
async function importEditingSharedTemplatesSharedTemplateMetadata() {
|
|
8436
8920
|
if (isAMD) {
|
|
8437
|
-
return await window.$arcgis.import("esri/
|
|
8921
|
+
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplateMetadata");
|
|
8438
8922
|
}
|
|
8439
|
-
const module = await import("@arcgis/core/
|
|
8923
|
+
const module = await import("@arcgis/core/editing/sharedTemplates/SharedTemplateMetadata.js");
|
|
8440
8924
|
return isDefaultModule(module) ? module.default : module;
|
|
8441
8925
|
}
|
|
8442
|
-
async function
|
|
8926
|
+
async function importFormElementsInputs() {
|
|
8443
8927
|
if (isAMD) {
|
|
8444
|
-
return await window.$arcgis.import("esri/form/elements/
|
|
8928
|
+
return await window.$arcgis.import("esri/form/elements/inputs");
|
|
8445
8929
|
}
|
|
8446
|
-
const module = await import("@arcgis/core/form/elements/
|
|
8930
|
+
const module = await import("@arcgis/core/form/elements/inputs.js");
|
|
8447
8931
|
return isDefaultModule(module) ? module.default : module;
|
|
8448
8932
|
}
|
|
8449
|
-
async function
|
|
8933
|
+
async function importFormElements() {
|
|
8450
8934
|
if (isAMD) {
|
|
8451
|
-
return await window.$arcgis.import("esri/form/
|
|
8935
|
+
return await window.$arcgis.import("esri/form/elements");
|
|
8452
8936
|
}
|
|
8453
|
-
const module = await import("@arcgis/core/form/
|
|
8937
|
+
const module = await import("@arcgis/core/form/elements.js");
|
|
8454
8938
|
return isDefaultModule(module) ? module.default : module;
|
|
8455
8939
|
}
|
|
8456
8940
|
async function importGeometry() {
|
|
@@ -8495,6 +8979,13 @@ async function importGeometryOperatorsAffineTransformOperator() {
|
|
|
8495
8979
|
const module = await import("@arcgis/core/geometry/operators/affineTransformOperator.js");
|
|
8496
8980
|
return isDefaultModule(module) ? module.default : module;
|
|
8497
8981
|
}
|
|
8982
|
+
async function importGeometryOperatorsAlphaShapeOperator() {
|
|
8983
|
+
if (isAMD) {
|
|
8984
|
+
return await window.$arcgis.import("esri/geometry/operators/alphaShapeOperator");
|
|
8985
|
+
}
|
|
8986
|
+
const module = await import("@arcgis/core/geometry/operators/alphaShapeOperator.js");
|
|
8987
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8988
|
+
}
|
|
8498
8989
|
async function importGeometryOperatorsAreaOperator() {
|
|
8499
8990
|
if (isAMD) {
|
|
8500
8991
|
return await window.$arcgis.import("esri/geometry/operators/areaOperator");
|
|
@@ -8502,6 +8993,20 @@ async function importGeometryOperatorsAreaOperator() {
|
|
|
8502
8993
|
const module = await import("@arcgis/core/geometry/operators/areaOperator.js");
|
|
8503
8994
|
return isDefaultModule(module) ? module.default : module;
|
|
8504
8995
|
}
|
|
8996
|
+
async function importGeometryOperatorsAutoCompleteOperator() {
|
|
8997
|
+
if (isAMD) {
|
|
8998
|
+
return await window.$arcgis.import("esri/geometry/operators/autoCompleteOperator");
|
|
8999
|
+
}
|
|
9000
|
+
const module = await import("@arcgis/core/geometry/operators/autoCompleteOperator.js");
|
|
9001
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9002
|
+
}
|
|
9003
|
+
async function importGeometryOperatorsBoundaryOperator() {
|
|
9004
|
+
if (isAMD) {
|
|
9005
|
+
return await window.$arcgis.import("esri/geometry/operators/boundaryOperator");
|
|
9006
|
+
}
|
|
9007
|
+
const module = await import("@arcgis/core/geometry/operators/boundaryOperator.js");
|
|
9008
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9009
|
+
}
|
|
8505
9010
|
async function importGeometryOperatorsBufferOperator() {
|
|
8506
9011
|
if (isAMD) {
|
|
8507
9012
|
return await window.$arcgis.import("esri/geometry/operators/bufferOperator");
|
|
@@ -8586,6 +9091,13 @@ async function importGeometryOperatorsEqualsOperator() {
|
|
|
8586
9091
|
const module = await import("@arcgis/core/geometry/operators/equalsOperator.js");
|
|
8587
9092
|
return isDefaultModule(module) ? module.default : module;
|
|
8588
9093
|
}
|
|
9094
|
+
async function importGeometryOperatorsExtendOperator() {
|
|
9095
|
+
if (isAMD) {
|
|
9096
|
+
return await window.$arcgis.import("esri/geometry/operators/extendOperator");
|
|
9097
|
+
}
|
|
9098
|
+
const module = await import("@arcgis/core/geometry/operators/extendOperator.js");
|
|
9099
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9100
|
+
}
|
|
8589
9101
|
async function importGeometryOperatorsGeneralizeOperator() {
|
|
8590
9102
|
if (isAMD) {
|
|
8591
9103
|
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
@@ -8600,6 +9112,13 @@ async function importGeometryOperatorsGeodesicBufferOperator() {
|
|
|
8600
9112
|
const module = await import("@arcgis/core/geometry/operators/geodesicBufferOperator.js");
|
|
8601
9113
|
return isDefaultModule(module) ? module.default : module;
|
|
8602
9114
|
}
|
|
9115
|
+
async function importGeometryOperatorsGeodesicProximityOperator() {
|
|
9116
|
+
if (isAMD) {
|
|
9117
|
+
return await window.$arcgis.import("esri/geometry/operators/geodesicProximityOperator");
|
|
9118
|
+
}
|
|
9119
|
+
const module = await import("@arcgis/core/geometry/operators/geodesicProximityOperator.js");
|
|
9120
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9121
|
+
}
|
|
8603
9122
|
async function importGeometryOperatorsGeodeticAreaOperator() {
|
|
8604
9123
|
if (isAMD) {
|
|
8605
9124
|
return await window.$arcgis.import("esri/geometry/operators/geodeticAreaOperator");
|
|
@@ -8635,6 +9154,13 @@ async function importGeometryOperatorsGraphicBufferOperator() {
|
|
|
8635
9154
|
const module = await import("@arcgis/core/geometry/operators/graphicBufferOperator.js");
|
|
8636
9155
|
return isDefaultModule(module) ? module.default : module;
|
|
8637
9156
|
}
|
|
9157
|
+
async function importGeometryOperatorsIntegrateOperator() {
|
|
9158
|
+
if (isAMD) {
|
|
9159
|
+
return await window.$arcgis.import("esri/geometry/operators/integrateOperator");
|
|
9160
|
+
}
|
|
9161
|
+
const module = await import("@arcgis/core/geometry/operators/integrateOperator.js");
|
|
9162
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9163
|
+
}
|
|
8638
9164
|
async function importGeometryOperatorsIntersectionOperator() {
|
|
8639
9165
|
if (isAMD) {
|
|
8640
9166
|
return await window.$arcgis.import("esri/geometry/operators/intersectionOperator");
|
|
@@ -8649,6 +9175,20 @@ async function importGeometryOperatorsIntersectsOperator() {
|
|
|
8649
9175
|
const module = await import("@arcgis/core/geometry/operators/intersectsOperator.js");
|
|
8650
9176
|
return isDefaultModule(module) ? module.default : module;
|
|
8651
9177
|
}
|
|
9178
|
+
async function importGeometryOperatorsIsNearOperator() {
|
|
9179
|
+
if (isAMD) {
|
|
9180
|
+
return await window.$arcgis.import("esri/geometry/operators/isNearOperator");
|
|
9181
|
+
}
|
|
9182
|
+
const module = await import("@arcgis/core/geometry/operators/isNearOperator.js");
|
|
9183
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9184
|
+
}
|
|
9185
|
+
async function importGeometryOperatorsLabelPointOperator() {
|
|
9186
|
+
if (isAMD) {
|
|
9187
|
+
return await window.$arcgis.import("esri/geometry/operators/labelPointOperator");
|
|
9188
|
+
}
|
|
9189
|
+
const module = await import("@arcgis/core/geometry/operators/labelPointOperator.js");
|
|
9190
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9191
|
+
}
|
|
8652
9192
|
async function importGeometryOperatorsLengthOperator() {
|
|
8653
9193
|
if (isAMD) {
|
|
8654
9194
|
return await window.$arcgis.import("esri/geometry/operators/lengthOperator");
|
|
@@ -8656,6 +9196,34 @@ async function importGeometryOperatorsLengthOperator() {
|
|
|
8656
9196
|
const module = await import("@arcgis/core/geometry/operators/lengthOperator.js");
|
|
8657
9197
|
return isDefaultModule(module) ? module.default : module;
|
|
8658
9198
|
}
|
|
9199
|
+
async function importGeometryOperatorsLinesToPolygonsOperator() {
|
|
9200
|
+
if (isAMD) {
|
|
9201
|
+
return await window.$arcgis.import("esri/geometry/operators/linesToPolygonsOperator");
|
|
9202
|
+
}
|
|
9203
|
+
const module = await import("@arcgis/core/geometry/operators/linesToPolygonsOperator.js");
|
|
9204
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9205
|
+
}
|
|
9206
|
+
async function importGeometryOperatorsLocateBetweenOperator() {
|
|
9207
|
+
if (isAMD) {
|
|
9208
|
+
return await window.$arcgis.import("esri/geometry/operators/locateBetweenOperator");
|
|
9209
|
+
}
|
|
9210
|
+
const module = await import("@arcgis/core/geometry/operators/locateBetweenOperator.js");
|
|
9211
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9212
|
+
}
|
|
9213
|
+
async function importGeometryOperatorsMinimumBoundingCircleOperator() {
|
|
9214
|
+
if (isAMD) {
|
|
9215
|
+
return await window.$arcgis.import("esri/geometry/operators/minimumBoundingCircleOperator");
|
|
9216
|
+
}
|
|
9217
|
+
const module = await import("@arcgis/core/geometry/operators/minimumBoundingCircleOperator.js");
|
|
9218
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9219
|
+
}
|
|
9220
|
+
async function importGeometryOperatorsMultiPartToSinglePartOperator() {
|
|
9221
|
+
if (isAMD) {
|
|
9222
|
+
return await window.$arcgis.import("esri/geometry/operators/multiPartToSinglePartOperator");
|
|
9223
|
+
}
|
|
9224
|
+
const module = await import("@arcgis/core/geometry/operators/multiPartToSinglePartOperator.js");
|
|
9225
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9226
|
+
}
|
|
8659
9227
|
async function importGeometryOperatorsOffsetOperator() {
|
|
8660
9228
|
if (isAMD) {
|
|
8661
9229
|
return await window.$arcgis.import("esri/geometry/operators/offsetOperator");
|
|
@@ -8670,6 +9238,27 @@ async function importGeometryOperatorsOverlapsOperator() {
|
|
|
8670
9238
|
const module = await import("@arcgis/core/geometry/operators/overlapsOperator.js");
|
|
8671
9239
|
return isDefaultModule(module) ? module.default : module;
|
|
8672
9240
|
}
|
|
9241
|
+
async function importGeometryOperatorsPolygonOverlayOperator() {
|
|
9242
|
+
if (isAMD) {
|
|
9243
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonOverlayOperator");
|
|
9244
|
+
}
|
|
9245
|
+
const module = await import("@arcgis/core/geometry/operators/polygonOverlayOperator.js");
|
|
9246
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9247
|
+
}
|
|
9248
|
+
async function importGeometryOperatorsPolygonSlicerOperator() {
|
|
9249
|
+
if (isAMD) {
|
|
9250
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonSlicerOperator");
|
|
9251
|
+
}
|
|
9252
|
+
const module = await import("@arcgis/core/geometry/operators/polygonSlicerOperator.js");
|
|
9253
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9254
|
+
}
|
|
9255
|
+
async function importGeometryOperatorsProjectOperator() {
|
|
9256
|
+
if (isAMD) {
|
|
9257
|
+
return await window.$arcgis.import("esri/geometry/operators/projectOperator");
|
|
9258
|
+
}
|
|
9259
|
+
const module = await import("@arcgis/core/geometry/operators/projectOperator.js");
|
|
9260
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9261
|
+
}
|
|
8673
9262
|
async function importGeometryOperatorsProximityOperator() {
|
|
8674
9263
|
if (isAMD) {
|
|
8675
9264
|
return await window.$arcgis.import("esri/geometry/operators/proximityOperator");
|
|
@@ -8684,6 +9273,20 @@ async function importGeometryOperatorsRelateOperator() {
|
|
|
8684
9273
|
const module = await import("@arcgis/core/geometry/operators/relateOperator.js");
|
|
8685
9274
|
return isDefaultModule(module) ? module.default : module;
|
|
8686
9275
|
}
|
|
9276
|
+
async function importGeometryOperatorsReshapeOperator() {
|
|
9277
|
+
if (isAMD) {
|
|
9278
|
+
return await window.$arcgis.import("esri/geometry/operators/reshapeOperator");
|
|
9279
|
+
}
|
|
9280
|
+
const module = await import("@arcgis/core/geometry/operators/reshapeOperator.js");
|
|
9281
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9282
|
+
}
|
|
9283
|
+
async function importGeometryOperatorsShapePreservingProjectOperator() {
|
|
9284
|
+
if (isAMD) {
|
|
9285
|
+
return await window.$arcgis.import("esri/geometry/operators/shapePreservingProjectOperator");
|
|
9286
|
+
}
|
|
9287
|
+
const module = await import("@arcgis/core/geometry/operators/shapePreservingProjectOperator.js");
|
|
9288
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9289
|
+
}
|
|
8687
9290
|
async function importGeometryOperatorsSimplifyOperator() {
|
|
8688
9291
|
if (isAMD) {
|
|
8689
9292
|
return await window.$arcgis.import("esri/geometry/operators/simplifyOperator");
|
|
@@ -8719,6 +9322,13 @@ async function importGeometryOperatorsWithinOperator() {
|
|
|
8719
9322
|
const module = await import("@arcgis/core/geometry/operators/withinOperator.js");
|
|
8720
9323
|
return isDefaultModule(module) ? module.default : module;
|
|
8721
9324
|
}
|
|
9325
|
+
async function importGeometryOperatorsSupportGeographicTransformationUtils() {
|
|
9326
|
+
if (isAMD) {
|
|
9327
|
+
return await window.$arcgis.import("esri/geometry/operators/support/geographicTransformationUtils");
|
|
9328
|
+
}
|
|
9329
|
+
const module = await import("@arcgis/core/geometry/operators/support/geographicTransformationUtils.js");
|
|
9330
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9331
|
+
}
|
|
8722
9332
|
async function importGeometrySupportGeodesicUtils() {
|
|
8723
9333
|
if (isAMD) {
|
|
8724
9334
|
return await window.$arcgis.import("esri/geometry/support/geodesicUtils");
|
|
@@ -8775,6 +9385,20 @@ async function importLayersCatalogCatalogUtils() {
|
|
|
8775
9385
|
const module = await import("@arcgis/core/layers/catalog/catalogUtils.js");
|
|
8776
9386
|
return isDefaultModule(module) ? module.default : module;
|
|
8777
9387
|
}
|
|
9388
|
+
async function importLayersKnowledgeGraphCypherUtils() {
|
|
9389
|
+
if (isAMD) {
|
|
9390
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/cypherUtils");
|
|
9391
|
+
}
|
|
9392
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/cypherUtils.js");
|
|
9393
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9394
|
+
}
|
|
9395
|
+
async function importLayersKnowledgeGraphSupportUtils() {
|
|
9396
|
+
if (isAMD) {
|
|
9397
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/supportUtils");
|
|
9398
|
+
}
|
|
9399
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/supportUtils.js");
|
|
9400
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9401
|
+
}
|
|
8778
9402
|
async function importLayersOgcWfsUtils() {
|
|
8779
9403
|
if (isAMD) {
|
|
8780
9404
|
return await window.$arcgis.import("esri/layers/ogc/wfsUtils");
|
|
@@ -8789,6 +9413,20 @@ async function importLayersOgcWcsUtils() {
|
|
|
8789
9413
|
const module = await import("@arcgis/core/layers/ogc/wcsUtils.js");
|
|
8790
9414
|
return isDefaultModule(module) ? module.default : module;
|
|
8791
9415
|
}
|
|
9416
|
+
async function importLayersOrientedImageryTransformationsWorldToImage() {
|
|
9417
|
+
if (isAMD) {
|
|
9418
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/worldToImage");
|
|
9419
|
+
}
|
|
9420
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/worldToImage.js");
|
|
9421
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9422
|
+
}
|
|
9423
|
+
async function importLayersOrientedImageryTransformationsImageToWorld() {
|
|
9424
|
+
if (isAMD) {
|
|
9425
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/imageToWorld");
|
|
9426
|
+
}
|
|
9427
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/imageToWorld.js");
|
|
9428
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9429
|
+
}
|
|
8792
9430
|
async function importLayersSupportArcadeUtils() {
|
|
8793
9431
|
if (isAMD) {
|
|
8794
9432
|
return await window.$arcgis.import("esri/layers/support/arcadeUtils");
|
|
@@ -8796,6 +9434,13 @@ async function importLayersSupportArcadeUtils() {
|
|
|
8796
9434
|
const module = await import("@arcgis/core/layers/support/arcadeUtils.js");
|
|
8797
9435
|
return isDefaultModule(module) ? module.default : module;
|
|
8798
9436
|
}
|
|
9437
|
+
async function importLayersSupportCsvUtils() {
|
|
9438
|
+
if (isAMD) {
|
|
9439
|
+
return await window.$arcgis.import("esri/layers/support/csvUtils");
|
|
9440
|
+
}
|
|
9441
|
+
const module = await import("@arcgis/core/layers/support/csvUtils.js");
|
|
9442
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9443
|
+
}
|
|
8799
9444
|
async function importLayersSupportFieldUtils() {
|
|
8800
9445
|
if (isAMD) {
|
|
8801
9446
|
return await window.$arcgis.import("esri/layers/support/fieldUtils");
|
|
@@ -8852,13 +9497,6 @@ async function importPopupContent() {
|
|
|
8852
9497
|
const module = await import("@arcgis/core/popup/content.js");
|
|
8853
9498
|
return isDefaultModule(module) ? module.default : module;
|
|
8854
9499
|
}
|
|
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
9500
|
async function importRasterRenderers() {
|
|
8863
9501
|
if (isAMD) {
|
|
8864
9502
|
return await window.$arcgis.import("esri/rasterRenderers");
|
|
@@ -9237,6 +9875,13 @@ async function importSmartMappingRenderersUnivariateColorSize() {
|
|
|
9237
9875
|
const module = await import("@arcgis/core/smartMapping/renderers/univariateColorSize.js");
|
|
9238
9876
|
return isDefaultModule(module) ? module.default : module;
|
|
9239
9877
|
}
|
|
9878
|
+
async function importSmartMappingRenderersSupportRendererUtils() {
|
|
9879
|
+
if (isAMD) {
|
|
9880
|
+
return await window.$arcgis.import("esri/smartMapping/renderers/support/rendererUtils");
|
|
9881
|
+
}
|
|
9882
|
+
const module = await import("@arcgis/core/smartMapping/renderers/support/rendererUtils.js");
|
|
9883
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9884
|
+
}
|
|
9240
9885
|
async function importSmartMappingStatisticsClassBreaks() {
|
|
9241
9886
|
if (isAMD) {
|
|
9242
9887
|
return await window.$arcgis.import("esri/smartMapping/statistics/classBreaks");
|
|
@@ -9426,11 +10071,11 @@ async function importSymbolsSupportSymbolUtils() {
|
|
|
9426
10071
|
const module = await import("@arcgis/core/symbols/support/symbolUtils.js");
|
|
9427
10072
|
return isDefaultModule(module) ? module.default : module;
|
|
9428
10073
|
}
|
|
9429
|
-
async function
|
|
10074
|
+
async function importTablesElements() {
|
|
9430
10075
|
if (isAMD) {
|
|
9431
|
-
return await window.$arcgis.import("esri/tables/
|
|
10076
|
+
return await window.$arcgis.import("esri/tables/elements");
|
|
9432
10077
|
}
|
|
9433
|
-
const module = await import("@arcgis/core/tables/
|
|
10078
|
+
const module = await import("@arcgis/core/tables/elements.js");
|
|
9434
10079
|
return isDefaultModule(module) ? module.default : module;
|
|
9435
10080
|
}
|
|
9436
10081
|
async function importVersionManagementUtils() {
|
|
@@ -9447,13 +10092,6 @@ async function importVersionManagementVersionAdaptersUtils() {
|
|
|
9447
10092
|
const module = await import("@arcgis/core/versionManagement/versionAdapters/utils.js");
|
|
9448
10093
|
return isDefaultModule(module) ? module.default : module;
|
|
9449
10094
|
}
|
|
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
10095
|
async function importViews3dWebglManagedFBO() {
|
|
9458
10096
|
if (isAMD) {
|
|
9459
10097
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -9503,6 +10141,13 @@ async function importViewsSupportColorUtils() {
|
|
|
9503
10141
|
const module = await import("@arcgis/core/views/support/colorUtils.js");
|
|
9504
10142
|
return isDefaultModule(module) ? module.default : module;
|
|
9505
10143
|
}
|
|
10144
|
+
async function importWebsceneSupportSlideElements() {
|
|
10145
|
+
if (isAMD) {
|
|
10146
|
+
return await window.$arcgis.import("esri/webscene/support/SlideElements");
|
|
10147
|
+
}
|
|
10148
|
+
const module = await import("@arcgis/core/webscene/support/SlideElements.js");
|
|
10149
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10150
|
+
}
|
|
9506
10151
|
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
9507
10152
|
if (isAMD) {
|
|
9508
10153
|
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
@@ -9517,6 +10162,13 @@ async function importWidgetsSmartMappingSupportUtils() {
|
|
|
9517
10162
|
const module = await import("@arcgis/core/widgets/smartMapping/support/utils.js");
|
|
9518
10163
|
return isDefaultModule(module) ? module.default : module;
|
|
9519
10164
|
}
|
|
10165
|
+
async function importWidgetsSupportUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel() {
|
|
10166
|
+
if (isAMD) {
|
|
10167
|
+
return await window.$arcgis.import("esri/widgets/support/UtilityNetworkAssociations/UtilityNetworkAssociationsViewModel");
|
|
10168
|
+
}
|
|
10169
|
+
const module = await import("@arcgis/core/widgets/support/UtilityNetworkAssociations/UtilityNetworkAssociationsViewModel.js");
|
|
10170
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10171
|
+
}
|
|
9520
10172
|
async function importWidgetsSupportWidget() {
|
|
9521
10173
|
if (isAMD) {
|
|
9522
10174
|
return await window.$arcgis.import("esri/widgets/support/widget");
|
|
@@ -9531,13 +10183,6 @@ async function importApplicationsComponentsBasemapUtils() {
|
|
|
9531
10183
|
const module = await import("@arcgis/core/applications/Components/basemapUtils.js");
|
|
9532
10184
|
return isDefaultModule(module) ? module.default : module;
|
|
9533
10185
|
}
|
|
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
10186
|
async function importApplicationsComponentsDrawUtils() {
|
|
9542
10187
|
if (isAMD) {
|
|
9543
10188
|
return await window.$arcgis.import("esri/applications/Components/drawUtils");
|
|
@@ -9587,6 +10232,27 @@ async function importApplicationsComponentsPreviewSymbol2D() {
|
|
|
9587
10232
|
const module = await import("@arcgis/core/applications/Components/previewSymbol2D.js");
|
|
9588
10233
|
return isDefaultModule(module) ? module.default : module;
|
|
9589
10234
|
}
|
|
10235
|
+
async function importApplicationsComponentsReactiveUtils() {
|
|
10236
|
+
if (isAMD) {
|
|
10237
|
+
return await window.$arcgis.import("esri/applications/Components/reactiveUtils");
|
|
10238
|
+
}
|
|
10239
|
+
const module = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10240
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10241
|
+
}
|
|
10242
|
+
async function importApplicationsComponentsSelectionOperation() {
|
|
10243
|
+
if (isAMD) {
|
|
10244
|
+
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
10245
|
+
}
|
|
10246
|
+
const module = await import("@arcgis/core/applications/Components/SelectionOperation.js");
|
|
10247
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10248
|
+
}
|
|
10249
|
+
async function importApplicationsComponentsSketchTooltipControls() {
|
|
10250
|
+
if (isAMD) {
|
|
10251
|
+
return await window.$arcgis.import("esri/applications/Components/SketchTooltipControls");
|
|
10252
|
+
}
|
|
10253
|
+
const module = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10254
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10255
|
+
}
|
|
9590
10256
|
async function importApplicationsComponentsStyleUtils() {
|
|
9591
10257
|
if (isAMD) {
|
|
9592
10258
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -9608,13 +10274,6 @@ async function importApplicationsComponentsWebStyleSymbolUtils() {
|
|
|
9608
10274
|
const module = await import("@arcgis/core/applications/Components/webStyleSymbolUtils.js");
|
|
9609
10275
|
return isDefaultModule(module) ? module.default : module;
|
|
9610
10276
|
}
|
|
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
10277
|
async function importApplicationsExperienceBuilderSketchUtils() {
|
|
9619
10278
|
if (isAMD) {
|
|
9620
10279
|
return await window.$arcgis.import("esri/applications/ExperienceBuilder/sketchUtils");
|
|
@@ -9622,13 +10281,6 @@ async function importApplicationsExperienceBuilderSketchUtils() {
|
|
|
9622
10281
|
const module = await import("@arcgis/core/applications/ExperienceBuilder/sketchUtils.js");
|
|
9623
10282
|
return isDefaultModule(module) ? module.default : module;
|
|
9624
10283
|
}
|
|
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
10284
|
async function importApplicationsMapViewerTemplateUtils() {
|
|
9633
10285
|
if (isAMD) {
|
|
9634
10286
|
return await window.$arcgis.import("esri/applications/MapViewer/templateUtils");
|
|
@@ -9636,13 +10288,6 @@ async function importApplicationsMapViewerTemplateUtils() {
|
|
|
9636
10288
|
const module = await import("@arcgis/core/applications/MapViewer/templateUtils.js");
|
|
9637
10289
|
return isDefaultModule(module) ? module.default : module;
|
|
9638
10290
|
}
|
|
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
10291
|
async function importApplicationsSceneViewerDevEnvironmentUtils() {
|
|
9647
10292
|
if (isAMD) {
|
|
9648
10293
|
return await window.$arcgis.import("esri/applications/SceneViewer/devEnvironmentUtils");
|
|
@@ -9650,34 +10295,6 @@ async function importApplicationsSceneViewerDevEnvironmentUtils() {
|
|
|
9650
10295
|
const module = await import("@arcgis/core/applications/SceneViewer/devEnvironmentUtils.js");
|
|
9651
10296
|
return isDefaultModule(module) ? module.default : module;
|
|
9652
10297
|
}
|
|
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
10298
|
async function importApplicationsWebEditorSketchUtils() {
|
|
9682
10299
|
if (isAMD) {
|
|
9683
10300
|
return await window.$arcgis.import("esri/applications/WebEditor/sketchUtils");
|
|
@@ -9699,7 +10316,6 @@ export {
|
|
|
9699
10316
|
importAnalysisViewshed,
|
|
9700
10317
|
importAnalysisViewshedAnalysis,
|
|
9701
10318
|
importApplicationsComponentsBasemapUtils,
|
|
9702
|
-
importApplicationsComponentsCollectionFlattener,
|
|
9703
10319
|
importApplicationsComponentsDrawUtils,
|
|
9704
10320
|
importApplicationsComponentsFontUtils,
|
|
9705
10321
|
importApplicationsComponentsGetDefaultUnits,
|
|
@@ -9707,21 +10323,18 @@ export {
|
|
|
9707
10323
|
importApplicationsComponentsLayerOriginUtils,
|
|
9708
10324
|
importApplicationsComponentsLayersEffectsJsonUtils,
|
|
9709
10325
|
importApplicationsComponentsPreviewSymbol2D,
|
|
10326
|
+
importApplicationsComponentsReactiveUtils,
|
|
10327
|
+
importApplicationsComponentsSelectionOperation,
|
|
10328
|
+
importApplicationsComponentsSketchTooltipControls,
|
|
9710
10329
|
importApplicationsComponentsStyleUtils,
|
|
9711
10330
|
importApplicationsComponentsSvgUtils,
|
|
9712
10331
|
importApplicationsComponentsWebStyleSymbolUtils,
|
|
9713
|
-
importApplicationsExcaliburVideoViewUtils,
|
|
9714
10332
|
importApplicationsExperienceBuilderSketchUtils,
|
|
9715
|
-
importApplicationsMapViewerMediaUtils,
|
|
9716
10333
|
importApplicationsMapViewerTemplateUtils,
|
|
9717
|
-
importApplicationsSceneViewerColorUtils,
|
|
9718
10334
|
importApplicationsSceneViewerDevEnvironmentUtils,
|
|
9719
|
-
importApplicationsSceneViewerLayerUtils,
|
|
9720
|
-
importApplicationsSceneViewerSceneViewerUtils,
|
|
9721
|
-
importApplicationsSceneViewerSymbolUtils,
|
|
9722
|
-
importApplicationsUrbanMeshUtils,
|
|
9723
10335
|
importApplicationsWebEditorSketchUtils,
|
|
9724
10336
|
importArcade,
|
|
10337
|
+
importAttributeBinsGraphic,
|
|
9725
10338
|
importBasemap,
|
|
9726
10339
|
importCamera,
|
|
9727
10340
|
importCameraLayout,
|
|
@@ -9741,16 +10354,18 @@ export {
|
|
|
9741
10354
|
importCoreUrlUtils,
|
|
9742
10355
|
importCoreWorkers,
|
|
9743
10356
|
importCoreWorkersConnection,
|
|
10357
|
+
importEditingSharedTemplatesSharedTemplateMetadata,
|
|
10358
|
+
importFormElements,
|
|
9744
10359
|
importFormElementsAttachmentElement,
|
|
9745
10360
|
importFormElementsElement,
|
|
9746
10361
|
importFormElementsFieldElement,
|
|
9747
10362
|
importFormElementsGroupElement,
|
|
10363
|
+
importFormElementsInputs,
|
|
9748
10364
|
importFormElementsInputsAttachmentsAttachmentInput,
|
|
9749
10365
|
importFormElementsInputsAttachmentsAudioInput,
|
|
9750
10366
|
importFormElementsInputsAttachmentsDocumentInput,
|
|
9751
10367
|
importFormElementsInputsAttachmentsImageInput,
|
|
9752
10368
|
importFormElementsInputsAttachmentsSignatureInput,
|
|
9753
|
-
importFormElementsInputsAttachmentsSupportInputs,
|
|
9754
10369
|
importFormElementsInputsAttachmentsVideoInput,
|
|
9755
10370
|
importFormElementsInputsBarcodeScannerInput,
|
|
9756
10371
|
importFormElementsInputsComboBoxInput,
|
|
@@ -9763,11 +10378,10 @@ export {
|
|
|
9763
10378
|
importFormElementsInputsTextBoxInput,
|
|
9764
10379
|
importFormElementsInputsTimePickerInput,
|
|
9765
10380
|
importFormElementsRelationshipElement,
|
|
9766
|
-
importFormElementsSupportInputs,
|
|
9767
10381
|
importFormElementsTextElement,
|
|
10382
|
+
importFormElementsUtilityNetworkAssociationsElement,
|
|
9768
10383
|
importFormExpressionInfo,
|
|
9769
10384
|
importFormFormTemplate,
|
|
9770
|
-
importFormSupportElements,
|
|
9771
10385
|
importGeometry,
|
|
9772
10386
|
importGeometryCircle,
|
|
9773
10387
|
importGeometryCoordinateFormatter,
|
|
@@ -9779,7 +10393,10 @@ export {
|
|
|
9779
10393
|
importGeometryMesh,
|
|
9780
10394
|
importGeometryMultipoint,
|
|
9781
10395
|
importGeometryOperatorsAffineTransformOperator,
|
|
10396
|
+
importGeometryOperatorsAlphaShapeOperator,
|
|
9782
10397
|
importGeometryOperatorsAreaOperator,
|
|
10398
|
+
importGeometryOperatorsAutoCompleteOperator,
|
|
10399
|
+
importGeometryOperatorsBoundaryOperator,
|
|
9783
10400
|
importGeometryOperatorsBufferOperator,
|
|
9784
10401
|
importGeometryOperatorsCentroidOperator,
|
|
9785
10402
|
importGeometryOperatorsClipOperator,
|
|
@@ -9792,21 +10409,38 @@ export {
|
|
|
9792
10409
|
importGeometryOperatorsDisjointOperator,
|
|
9793
10410
|
importGeometryOperatorsDistanceOperator,
|
|
9794
10411
|
importGeometryOperatorsEqualsOperator,
|
|
10412
|
+
importGeometryOperatorsExtendOperator,
|
|
9795
10413
|
importGeometryOperatorsGeneralizeOperator,
|
|
9796
10414
|
importGeometryOperatorsGeodesicBufferOperator,
|
|
10415
|
+
importGeometryOperatorsGeodesicProximityOperator,
|
|
9797
10416
|
importGeometryOperatorsGeodeticAreaOperator,
|
|
9798
10417
|
importGeometryOperatorsGeodeticDensifyOperator,
|
|
9799
10418
|
importGeometryOperatorsGeodeticDistanceOperator,
|
|
9800
10419
|
importGeometryOperatorsGeodeticLengthOperator,
|
|
9801
10420
|
importGeometryOperatorsGraphicBufferOperator,
|
|
10421
|
+
importGeometryOperatorsIntegrateOperator,
|
|
9802
10422
|
importGeometryOperatorsIntersectionOperator,
|
|
9803
10423
|
importGeometryOperatorsIntersectsOperator,
|
|
10424
|
+
importGeometryOperatorsIsNearOperator,
|
|
10425
|
+
importGeometryOperatorsLabelPointOperator,
|
|
9804
10426
|
importGeometryOperatorsLengthOperator,
|
|
10427
|
+
importGeometryOperatorsLinesToPolygonsOperator,
|
|
10428
|
+
importGeometryOperatorsLocateBetweenOperator,
|
|
10429
|
+
importGeometryOperatorsMinimumBoundingCircleOperator,
|
|
10430
|
+
importGeometryOperatorsMultiPartToSinglePartOperator,
|
|
9805
10431
|
importGeometryOperatorsOffsetOperator,
|
|
9806
10432
|
importGeometryOperatorsOverlapsOperator,
|
|
10433
|
+
importGeometryOperatorsPolygonOverlayOperator,
|
|
10434
|
+
importGeometryOperatorsPolygonSlicerOperator,
|
|
10435
|
+
importGeometryOperatorsProjectOperator,
|
|
9807
10436
|
importGeometryOperatorsProximityOperator,
|
|
9808
10437
|
importGeometryOperatorsRelateOperator,
|
|
10438
|
+
importGeometryOperatorsReshapeOperator,
|
|
10439
|
+
importGeometryOperatorsShapePreservingProjectOperator,
|
|
9809
10440
|
importGeometryOperatorsSimplifyOperator,
|
|
10441
|
+
importGeometryOperatorsSupportGeographicTransformation,
|
|
10442
|
+
importGeometryOperatorsSupportGeographicTransformationStep,
|
|
10443
|
+
importGeometryOperatorsSupportGeographicTransformationUtils,
|
|
9810
10444
|
importGeometryOperatorsSupportTransformation,
|
|
9811
10445
|
importGeometryOperatorsSymmetricDifferenceOperator,
|
|
9812
10446
|
importGeometryOperatorsTouchesOperator,
|
|
@@ -9865,10 +10499,13 @@ export {
|
|
|
9865
10499
|
importLayersIntegratedMesh3DTilesLayer,
|
|
9866
10500
|
importLayersIntegratedMeshLayer,
|
|
9867
10501
|
importLayersKMLLayer,
|
|
10502
|
+
importLayersKnowledgeGraphCypherUtils,
|
|
9868
10503
|
importLayersKnowledgeGraphKnowledgeGraphSublayer,
|
|
9869
10504
|
importLayersKnowledgeGraphLayer,
|
|
10505
|
+
importLayersKnowledgeGraphSupportUtils,
|
|
9870
10506
|
importLayersLayer,
|
|
9871
10507
|
importLayersLineOfSightLayer,
|
|
10508
|
+
importLayersLinkChartLayer,
|
|
9872
10509
|
importLayersMapImageLayer,
|
|
9873
10510
|
importLayersMapNotesLayer,
|
|
9874
10511
|
importLayersMediaLayer,
|
|
@@ -9877,6 +10514,8 @@ export {
|
|
|
9877
10514
|
importLayersOgcWfsUtils,
|
|
9878
10515
|
importLayersOpenStreetMapLayer,
|
|
9879
10516
|
importLayersOrientedImageryLayer,
|
|
10517
|
+
importLayersOrientedImageryTransformationsImageToWorld,
|
|
10518
|
+
importLayersOrientedImageryTransformationsWorldToImage,
|
|
9880
10519
|
importLayersPointCloudFiltersPointCloudBitfieldFilter,
|
|
9881
10520
|
importLayersPointCloudFiltersPointCloudFilter,
|
|
9882
10521
|
importLayersPointCloudFiltersPointCloudReturnFilter,
|
|
@@ -9893,7 +10532,10 @@ export {
|
|
|
9893
10532
|
importLayersSupportCodedValueDomain,
|
|
9894
10533
|
importLayersSupportControlPointsGeoreference,
|
|
9895
10534
|
importLayersSupportCornersGeoreference,
|
|
10535
|
+
importLayersSupportCsvUtils,
|
|
9896
10536
|
importLayersSupportDimensionalDefinition,
|
|
10537
|
+
importLayersSupportDisplayFilter,
|
|
10538
|
+
importLayersSupportDisplayFilterInfo,
|
|
9897
10539
|
importLayersSupportDomain,
|
|
9898
10540
|
importLayersSupportElevationSampler,
|
|
9899
10541
|
importLayersSupportExpressionInfo,
|
|
@@ -9921,6 +10563,7 @@ export {
|
|
|
9921
10563
|
importLayersSupportMapImage,
|
|
9922
10564
|
importLayersSupportMosaicRule,
|
|
9923
10565
|
importLayersSupportMultidimensionalSubset,
|
|
10566
|
+
importLayersSupportOrderByInfo,
|
|
9924
10567
|
importLayersSupportPixelBlock,
|
|
9925
10568
|
importLayersSupportPublishingInfo,
|
|
9926
10569
|
importLayersSupportRangeDomain,
|
|
@@ -9970,6 +10613,11 @@ export {
|
|
|
9970
10613
|
importLayersWMSLayer,
|
|
9971
10614
|
importLayersWMTSLayer,
|
|
9972
10615
|
importLayersWebTileLayer,
|
|
10616
|
+
importLinkChartChronologicalLayoutSettings,
|
|
10617
|
+
importLinkChartLayoutSettings,
|
|
10618
|
+
importLinkChartLinkChartProperties,
|
|
10619
|
+
importLinkChartNonspatialDataDisplay,
|
|
10620
|
+
importLinkChartOrganicLayoutSettings,
|
|
9973
10621
|
importMap,
|
|
9974
10622
|
importNetworksNetwork,
|
|
9975
10623
|
importNetworksSupportNamedTraceConfiguration,
|
|
@@ -10082,6 +10730,7 @@ export {
|
|
|
10082
10730
|
importRestKnowledgeGraphGraphProperty,
|
|
10083
10731
|
importRestKnowledgeGraphGraphQuery,
|
|
10084
10732
|
importRestKnowledgeGraphGraphQueryResult,
|
|
10733
|
+
importRestKnowledgeGraphGraphQueryResultHeader,
|
|
10085
10734
|
importRestKnowledgeGraphGraphQueryStreaming,
|
|
10086
10735
|
importRestKnowledgeGraphGraphQueryStreamingResult,
|
|
10087
10736
|
importRestKnowledgeGraphGraphSearch,
|
|
@@ -10095,6 +10744,12 @@ export {
|
|
|
10095
10744
|
importRestKnowledgeGraphSearchIndex,
|
|
10096
10745
|
importRestKnowledgeGraphService,
|
|
10097
10746
|
importRestKnowledgeGraphServiceDefinition,
|
|
10747
|
+
importRestKnowledgeGraphSourceTypeValueBehavior,
|
|
10748
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration,
|
|
10749
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity,
|
|
10750
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter,
|
|
10751
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection,
|
|
10752
|
+
importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings,
|
|
10098
10753
|
importRestLocator,
|
|
10099
10754
|
importRestNetworkService,
|
|
10100
10755
|
importRestNetworksQueryAssociations,
|
|
@@ -10124,6 +10779,12 @@ export {
|
|
|
10124
10779
|
importRestSupportArealUnit,
|
|
10125
10780
|
importRestSupportAreasAndLengthsParameters,
|
|
10126
10781
|
importRestSupportAttachmentQuery,
|
|
10782
|
+
importRestSupportAttributeBinsFeatureSet,
|
|
10783
|
+
importRestSupportAttributeBinsGrouping,
|
|
10784
|
+
importRestSupportAttributeBinsQuery,
|
|
10785
|
+
importRestSupportAutoIntervalBinParameters,
|
|
10786
|
+
importRestSupportBaseImageMeasureParameters,
|
|
10787
|
+
importRestSupportBaseImageMeasureResult,
|
|
10127
10788
|
importRestSupportBufferParameters,
|
|
10128
10789
|
importRestSupportCameraInfo,
|
|
10129
10790
|
importRestSupportClosestFacilityParameters,
|
|
@@ -10131,6 +10792,8 @@ export {
|
|
|
10131
10792
|
importRestSupportColorRamp,
|
|
10132
10793
|
importRestSupportDataFile,
|
|
10133
10794
|
importRestSupportDataLayer,
|
|
10795
|
+
importRestSupportDateBinParameters,
|
|
10796
|
+
importRestSupportDateBinTimeInterval,
|
|
10134
10797
|
importRestSupportDensifyParameters,
|
|
10135
10798
|
importRestSupportDirectionLine,
|
|
10136
10799
|
importRestSupportDirectionPoint,
|
|
@@ -10144,6 +10807,8 @@ export {
|
|
|
10144
10807
|
importRestSupportFindImagesResult,
|
|
10145
10808
|
importRestSupportFindParameters,
|
|
10146
10809
|
importRestSupportFindResult,
|
|
10810
|
+
importRestSupportFixedBoundariesBinParameters,
|
|
10811
|
+
importRestSupportFixedIntervalBinParameters,
|
|
10147
10812
|
importRestSupportGPMessage,
|
|
10148
10813
|
importRestSupportGeneralizeParameters,
|
|
10149
10814
|
importRestSupportIdentifyParameters,
|
|
@@ -10177,6 +10842,9 @@ export {
|
|
|
10177
10842
|
importRestSupportImageToMapParameters,
|
|
10178
10843
|
importRestSupportImageUrlParameters,
|
|
10179
10844
|
importRestSupportImageUrlResult,
|
|
10845
|
+
importRestSupportImageVolume,
|
|
10846
|
+
importRestSupportImageVolumeParameters,
|
|
10847
|
+
importRestSupportImageVolumeResult,
|
|
10180
10848
|
importRestSupportJobInfo,
|
|
10181
10849
|
importRestSupportLegendLayer,
|
|
10182
10850
|
importRestSupportLengthsParameters,
|
|
@@ -10244,6 +10912,7 @@ export {
|
|
|
10244
10912
|
importSmartMappingRenderersPredominance,
|
|
10245
10913
|
importSmartMappingRenderersRelationship,
|
|
10246
10914
|
importSmartMappingRenderersSize,
|
|
10915
|
+
importSmartMappingRenderersSupportRendererUtils,
|
|
10247
10916
|
importSmartMappingRenderersType,
|
|
10248
10917
|
importSmartMappingRenderersUnivariateColorSize,
|
|
10249
10918
|
importSmartMappingStatisticsClassBreaks,
|
|
@@ -10318,12 +10987,12 @@ export {
|
|
|
10318
10987
|
importSymbolsWaterSymbol3DLayer,
|
|
10319
10988
|
importSymbolsWebStyleSymbol,
|
|
10320
10989
|
importTablesAttributeTableTemplate,
|
|
10990
|
+
importTablesElements,
|
|
10321
10991
|
importTablesElementsAttributeTableAttachmentElement,
|
|
10322
10992
|
importTablesElementsAttributeTableElement,
|
|
10323
10993
|
importTablesElementsAttributeTableFieldElement,
|
|
10324
10994
|
importTablesElementsAttributeTableGroupElement,
|
|
10325
10995
|
importTablesElementsAttributeTableRelationshipElement,
|
|
10326
|
-
importTablesSupportElements,
|
|
10327
10996
|
importTimeExtent,
|
|
10328
10997
|
importTimeInterval,
|
|
10329
10998
|
importTimeTimeExtent,
|
|
@@ -10349,7 +11018,6 @@ export {
|
|
|
10349
11018
|
importViews3dEnvironmentSunLighting,
|
|
10350
11019
|
importViews3dEnvironmentSunnyWeather,
|
|
10351
11020
|
importViews3dEnvironmentVirtualLighting,
|
|
10352
|
-
importViews3dExternalRenderers,
|
|
10353
11021
|
importViews3dSupportLayerPerformanceInfo,
|
|
10354
11022
|
importViews3dSupportSceneViewPerformanceInfo,
|
|
10355
11023
|
importViews3dWebgl,
|
|
@@ -10391,12 +11059,15 @@ export {
|
|
|
10391
11059
|
importViewsLayersSceneLayerView,
|
|
10392
11060
|
importViewsLayersStreamLayerView,
|
|
10393
11061
|
importViewsLayersViewshedLayerView,
|
|
11062
|
+
importViewsLinkChartView,
|
|
10394
11063
|
importViewsMagnifier,
|
|
10395
11064
|
importViewsMapView,
|
|
10396
11065
|
importViewsNavigationGamepadGamepadSettings,
|
|
10397
11066
|
importViewsNavigationNavigation,
|
|
11067
|
+
importViewsNavigationNavigationActionMap,
|
|
10398
11068
|
importViewsSceneView,
|
|
10399
11069
|
importViewsSupportColorUtils,
|
|
11070
|
+
importViewsSupportHighlightOptions,
|
|
10400
11071
|
importViewsTheme,
|
|
10401
11072
|
importViewsUiDefaultUI,
|
|
10402
11073
|
importViewsUiUI,
|
|
@@ -10404,6 +11075,7 @@ export {
|
|
|
10404
11075
|
importViewsView2D,
|
|
10405
11076
|
importViewsViewAnimation,
|
|
10406
11077
|
importWebDocument2D,
|
|
11078
|
+
importWebLinkChart,
|
|
10407
11079
|
importWebMap,
|
|
10408
11080
|
importWebScene,
|
|
10409
11081
|
importWebdocApplicationPropertiesSearch,
|
|
@@ -10435,7 +11107,9 @@ export {
|
|
|
10435
11107
|
importWebsceneInitialViewProperties,
|
|
10436
11108
|
importWebscenePresentation,
|
|
10437
11109
|
importWebsceneSlide,
|
|
11110
|
+
importWebsceneSlideLegendInfo,
|
|
10438
11111
|
importWebsceneSunLighting,
|
|
11112
|
+
importWebsceneSupportSlideElements,
|
|
10439
11113
|
importWebsceneVirtualLighting,
|
|
10440
11114
|
importWidgetsAreaMeasurement2D,
|
|
10441
11115
|
importWidgetsAreaMeasurement2DAreaMeasurement2DViewModel,
|
|
@@ -10505,6 +11179,8 @@ export {
|
|
|
10505
11179
|
importWidgetsFeatureFormFieldInput,
|
|
10506
11180
|
importWidgetsFeatureFormGroupInput,
|
|
10507
11181
|
importWidgetsFeatureFormRelationshipInput,
|
|
11182
|
+
importWidgetsFeatureFormTextElementInput,
|
|
11183
|
+
importWidgetsFeatureFormUtilityNetworkAssociationInput,
|
|
10508
11184
|
importWidgetsFeatureTable,
|
|
10509
11185
|
importWidgetsFeatureTableActionColumn,
|
|
10510
11186
|
importWidgetsFeatureTableAttachmentsColumn,
|
|
@@ -10516,10 +11192,12 @@ export {
|
|
|
10516
11192
|
importWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
10517
11193
|
importWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
10518
11194
|
importWidgetsFeatureTableRelationshipColumn,
|
|
11195
|
+
importWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
10519
11196
|
importWidgetsFeatureTableSupportColumnTemplate,
|
|
10520
11197
|
importWidgetsFeatureTableSupportColumnTemplateBase,
|
|
10521
11198
|
importWidgetsFeatureTableSupportFieldColumnTemplate,
|
|
10522
11199
|
importWidgetsFeatureTableSupportGroupColumnTemplate,
|
|
11200
|
+
importWidgetsFeatureTableSupportRelationshipColumnTemplate,
|
|
10523
11201
|
importWidgetsFeatureTableSupportTableTemplate,
|
|
10524
11202
|
importWidgetsFeatureTemplates,
|
|
10525
11203
|
importWidgetsFeatureTemplatesFeatureTemplatesViewModel,
|
|
@@ -10604,6 +11282,7 @@ export {
|
|
|
10604
11282
|
importWidgetsSupportGridControlsGridControlsViewModel,
|
|
10605
11283
|
importWidgetsSupportSnappingControls,
|
|
10606
11284
|
importWidgetsSupportSnappingControlsSnappingControlsViewModel,
|
|
11285
|
+
importWidgetsSupportUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
10607
11286
|
importWidgetsSupportWidget,
|
|
10608
11287
|
importWidgetsSwipe,
|
|
10609
11288
|
importWidgetsSwipeSwipeViewModel,
|
|
@@ -10619,6 +11298,7 @@ export {
|
|
|
10619
11298
|
importWidgetsUtilityNetworkAssociations,
|
|
10620
11299
|
importWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
10621
11300
|
importWidgetsUtilityNetworkTrace,
|
|
11301
|
+
importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel,
|
|
10622
11302
|
importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel,
|
|
10623
11303
|
importWidgetsUtilityNetworkValidateTopology,
|
|
10624
11304
|
importWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel,
|
|
@@ -10648,6 +11328,7 @@ export {
|
|
|
10648
11328
|
newAnalysisSlicePlane,
|
|
10649
11329
|
newAnalysisViewshed,
|
|
10650
11330
|
newAnalysisViewshedAnalysis,
|
|
11331
|
+
newAttributeBinsGraphic,
|
|
10651
11332
|
newBasemap,
|
|
10652
11333
|
newCamera,
|
|
10653
11334
|
newCameraLayout,
|
|
@@ -10679,6 +11360,7 @@ export {
|
|
|
10679
11360
|
newFormElementsInputsTimePickerInput,
|
|
10680
11361
|
newFormElementsRelationshipElement,
|
|
10681
11362
|
newFormElementsTextElement,
|
|
11363
|
+
newFormElementsUtilityNetworkAssociationsElement,
|
|
10682
11364
|
newFormExpressionInfo,
|
|
10683
11365
|
newFormFormTemplate,
|
|
10684
11366
|
newGeometryCircle,
|
|
@@ -10687,6 +11369,8 @@ export {
|
|
|
10687
11369
|
newGeometryHeightModelInfo,
|
|
10688
11370
|
newGeometryMesh,
|
|
10689
11371
|
newGeometryMultipoint,
|
|
11372
|
+
newGeometryOperatorsSupportGeographicTransformation,
|
|
11373
|
+
newGeometryOperatorsSupportGeographicTransformationStep,
|
|
10690
11374
|
newGeometryOperatorsSupportTransformation,
|
|
10691
11375
|
newGeometryPoint,
|
|
10692
11376
|
newGeometryPolygon,
|
|
@@ -10735,6 +11419,7 @@ export {
|
|
|
10735
11419
|
newLayersKnowledgeGraphLayer,
|
|
10736
11420
|
newLayersLayer,
|
|
10737
11421
|
newLayersLineOfSightLayer,
|
|
11422
|
+
newLayersLinkChartLayer,
|
|
10738
11423
|
newLayersMapImageLayer,
|
|
10739
11424
|
newLayersMapNotesLayer,
|
|
10740
11425
|
newLayersMediaLayer,
|
|
@@ -10757,6 +11442,8 @@ export {
|
|
|
10757
11442
|
newLayersSupportControlPointsGeoreference,
|
|
10758
11443
|
newLayersSupportCornersGeoreference,
|
|
10759
11444
|
newLayersSupportDimensionalDefinition,
|
|
11445
|
+
newLayersSupportDisplayFilter,
|
|
11446
|
+
newLayersSupportDisplayFilterInfo,
|
|
10760
11447
|
newLayersSupportDomain,
|
|
10761
11448
|
newLayersSupportElevationSampler,
|
|
10762
11449
|
newLayersSupportExpressionInfo,
|
|
@@ -10783,6 +11470,7 @@ export {
|
|
|
10783
11470
|
newLayersSupportMapImage,
|
|
10784
11471
|
newLayersSupportMosaicRule,
|
|
10785
11472
|
newLayersSupportMultidimensionalSubset,
|
|
11473
|
+
newLayersSupportOrderByInfo,
|
|
10786
11474
|
newLayersSupportPixelBlock,
|
|
10787
11475
|
newLayersSupportPublishingInfo,
|
|
10788
11476
|
newLayersSupportRangeDomain,
|
|
@@ -10827,6 +11515,11 @@ export {
|
|
|
10827
11515
|
newLayersWMSLayer,
|
|
10828
11516
|
newLayersWMTSLayer,
|
|
10829
11517
|
newLayersWebTileLayer,
|
|
11518
|
+
newLinkChartChronologicalLayoutSettings,
|
|
11519
|
+
newLinkChartLayoutSettings,
|
|
11520
|
+
newLinkChartLinkChartProperties,
|
|
11521
|
+
newLinkChartNonspatialDataDisplay,
|
|
11522
|
+
newLinkChartOrganicLayoutSettings,
|
|
10830
11523
|
newMap,
|
|
10831
11524
|
newNetworksNetwork,
|
|
10832
11525
|
newNetworksSupportNamedTraceConfiguration,
|
|
@@ -10862,6 +11555,7 @@ export {
|
|
|
10862
11555
|
newPopupRelatedRecordsInfo,
|
|
10863
11556
|
newPopupSupportFieldInfoFormat,
|
|
10864
11557
|
newPopupSupportRelatedRecordsInfoFieldOrder,
|
|
11558
|
+
newPopupSupportUtilityNetworkAssociationType,
|
|
10865
11559
|
newPopupTemplate,
|
|
10866
11560
|
newPortalPortal,
|
|
10867
11561
|
newPortalPortalFolder,
|
|
@@ -10923,6 +11617,7 @@ export {
|
|
|
10923
11617
|
newRestKnowledgeGraphGraphProperty,
|
|
10924
11618
|
newRestKnowledgeGraphGraphQuery,
|
|
10925
11619
|
newRestKnowledgeGraphGraphQueryResult,
|
|
11620
|
+
newRestKnowledgeGraphGraphQueryResultHeader,
|
|
10926
11621
|
newRestKnowledgeGraphGraphQueryStreaming,
|
|
10927
11622
|
newRestKnowledgeGraphGraphQueryStreamingResult,
|
|
10928
11623
|
newRestKnowledgeGraphGraphSearch,
|
|
@@ -10935,6 +11630,12 @@ export {
|
|
|
10935
11630
|
newRestKnowledgeGraphRelationshipType,
|
|
10936
11631
|
newRestKnowledgeGraphSearchIndex,
|
|
10937
11632
|
newRestKnowledgeGraphServiceDefinition,
|
|
11633
|
+
newRestKnowledgeGraphSourceTypeValueBehavior,
|
|
11634
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration,
|
|
11635
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity,
|
|
11636
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter,
|
|
11637
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection,
|
|
11638
|
+
newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings,
|
|
10938
11639
|
newRestNetworksSupportAggregatedGeometry,
|
|
10939
11640
|
newRestNetworksSupportAssociation,
|
|
10940
11641
|
newRestNetworksSupportAssociationGeometriesResult,
|
|
@@ -10953,6 +11654,12 @@ export {
|
|
|
10953
11654
|
newRestSupportArealUnit,
|
|
10954
11655
|
newRestSupportAreasAndLengthsParameters,
|
|
10955
11656
|
newRestSupportAttachmentQuery,
|
|
11657
|
+
newRestSupportAttributeBinsFeatureSet,
|
|
11658
|
+
newRestSupportAttributeBinsGrouping,
|
|
11659
|
+
newRestSupportAttributeBinsQuery,
|
|
11660
|
+
newRestSupportAutoIntervalBinParameters,
|
|
11661
|
+
newRestSupportBaseImageMeasureParameters,
|
|
11662
|
+
newRestSupportBaseImageMeasureResult,
|
|
10956
11663
|
newRestSupportBufferParameters,
|
|
10957
11664
|
newRestSupportCameraInfo,
|
|
10958
11665
|
newRestSupportClosestFacilityParameters,
|
|
@@ -10960,6 +11667,8 @@ export {
|
|
|
10960
11667
|
newRestSupportColorRamp,
|
|
10961
11668
|
newRestSupportDataFile,
|
|
10962
11669
|
newRestSupportDataLayer,
|
|
11670
|
+
newRestSupportDateBinParameters,
|
|
11671
|
+
newRestSupportDateBinTimeInterval,
|
|
10963
11672
|
newRestSupportDensifyParameters,
|
|
10964
11673
|
newRestSupportDirectionLine,
|
|
10965
11674
|
newRestSupportDirectionPoint,
|
|
@@ -10973,6 +11682,8 @@ export {
|
|
|
10973
11682
|
newRestSupportFindImagesResult,
|
|
10974
11683
|
newRestSupportFindParameters,
|
|
10975
11684
|
newRestSupportFindResult,
|
|
11685
|
+
newRestSupportFixedBoundariesBinParameters,
|
|
11686
|
+
newRestSupportFixedIntervalBinParameters,
|
|
10976
11687
|
newRestSupportGPMessage,
|
|
10977
11688
|
newRestSupportGeneralizeParameters,
|
|
10978
11689
|
newRestSupportIdentifyParameters,
|
|
@@ -11006,6 +11717,9 @@ export {
|
|
|
11006
11717
|
newRestSupportImageToMapParameters,
|
|
11007
11718
|
newRestSupportImageUrlParameters,
|
|
11008
11719
|
newRestSupportImageUrlResult,
|
|
11720
|
+
newRestSupportImageVolume,
|
|
11721
|
+
newRestSupportImageVolumeParameters,
|
|
11722
|
+
newRestSupportImageVolumeResult,
|
|
11009
11723
|
newRestSupportJobInfo,
|
|
11010
11724
|
newRestSupportLegendLayer,
|
|
11011
11725
|
newRestSupportLengthsParameters,
|
|
@@ -11154,11 +11868,14 @@ export {
|
|
|
11154
11868
|
newViewsLayersSceneLayerView,
|
|
11155
11869
|
newViewsLayersStreamLayerView,
|
|
11156
11870
|
newViewsLayersViewshedLayerView,
|
|
11871
|
+
newViewsLinkChartView,
|
|
11157
11872
|
newViewsMagnifier,
|
|
11158
11873
|
newViewsMapView,
|
|
11159
11874
|
newViewsNavigationGamepadGamepadSettings,
|
|
11160
11875
|
newViewsNavigationNavigation,
|
|
11876
|
+
newViewsNavigationNavigationActionMap,
|
|
11161
11877
|
newViewsSceneView,
|
|
11878
|
+
newViewsSupportHighlightOptions,
|
|
11162
11879
|
newViewsTheme,
|
|
11163
11880
|
newViewsUiDefaultUI,
|
|
11164
11881
|
newViewsUiUI,
|
|
@@ -11166,6 +11883,7 @@ export {
|
|
|
11166
11883
|
newViewsView2D,
|
|
11167
11884
|
newViewsViewAnimation,
|
|
11168
11885
|
newWebDocument2D,
|
|
11886
|
+
newWebLinkChart,
|
|
11169
11887
|
newWebMap,
|
|
11170
11888
|
newWebScene,
|
|
11171
11889
|
newWebdocApplicationPropertiesSearch,
|
|
@@ -11197,6 +11915,7 @@ export {
|
|
|
11197
11915
|
newWebsceneInitialViewProperties,
|
|
11198
11916
|
newWebscenePresentation,
|
|
11199
11917
|
newWebsceneSlide,
|
|
11918
|
+
newWebsceneSlideLegendInfo,
|
|
11200
11919
|
newWebsceneSunLighting,
|
|
11201
11920
|
newWebsceneVirtualLighting,
|
|
11202
11921
|
newWidgetsAreaMeasurement2D,
|
|
@@ -11266,6 +11985,8 @@ export {
|
|
|
11266
11985
|
newWidgetsFeatureFormFieldInput,
|
|
11267
11986
|
newWidgetsFeatureFormGroupInput,
|
|
11268
11987
|
newWidgetsFeatureFormRelationshipInput,
|
|
11988
|
+
newWidgetsFeatureFormTextElementInput,
|
|
11989
|
+
newWidgetsFeatureFormUtilityNetworkAssociationInput,
|
|
11269
11990
|
newWidgetsFeatureTable,
|
|
11270
11991
|
newWidgetsFeatureTableActionColumn,
|
|
11271
11992
|
newWidgetsFeatureTableAttachmentsColumn,
|
|
@@ -11277,10 +11998,12 @@ export {
|
|
|
11277
11998
|
newWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
11278
11999
|
newWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
11279
12000
|
newWidgetsFeatureTableRelationshipColumn,
|
|
12001
|
+
newWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
11280
12002
|
newWidgetsFeatureTableSupportColumnTemplate,
|
|
11281
12003
|
newWidgetsFeatureTableSupportColumnTemplateBase,
|
|
11282
12004
|
newWidgetsFeatureTableSupportFieldColumnTemplate,
|
|
11283
12005
|
newWidgetsFeatureTableSupportGroupColumnTemplate,
|
|
12006
|
+
newWidgetsFeatureTableSupportRelationshipColumnTemplate,
|
|
11284
12007
|
newWidgetsFeatureTableSupportTableTemplate,
|
|
11285
12008
|
newWidgetsFeatureTemplates,
|
|
11286
12009
|
newWidgetsFeatureTemplatesFeatureTemplatesViewModel,
|
|
@@ -11378,6 +12101,7 @@ export {
|
|
|
11378
12101
|
newWidgetsUtilityNetworkAssociations,
|
|
11379
12102
|
newWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
11380
12103
|
newWidgetsUtilityNetworkTrace,
|
|
12104
|
+
newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel,
|
|
11381
12105
|
newWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel,
|
|
11382
12106
|
newWidgetsUtilityNetworkValidateTopology,
|
|
11383
12107
|
newWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel,
|