@arcgis/core-adapter 4.32.0-next.13 → 4.32.0-next.130
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 +984 -108
- package/dist/index.d.cts +137 -24
- package/dist/index.d.ts +137 -24
- package/dist/index.js +858 -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 -147076
- 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");
|
|
@@ -2481,6 +2624,17 @@ async function newPopupRelatedRecordsInfo(properties) {
|
|
|
2481
2624
|
const ModConstructor = await importPopupRelatedRecordsInfo();
|
|
2482
2625
|
return new ModConstructor(properties);
|
|
2483
2626
|
}
|
|
2627
|
+
async function importPopupSupportAttachmentsOrderByInfo() {
|
|
2628
|
+
if (isAMD) {
|
|
2629
|
+
return await window.$arcgis.import("esri/popup/support/AttachmentsOrderByInfo");
|
|
2630
|
+
}
|
|
2631
|
+
const module = await import("@arcgis/core/popup/support/AttachmentsOrderByInfo.js");
|
|
2632
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2633
|
+
}
|
|
2634
|
+
async function newPopupSupportAttachmentsOrderByInfo(properties) {
|
|
2635
|
+
const ModConstructor = await importPopupSupportAttachmentsOrderByInfo();
|
|
2636
|
+
return new ModConstructor(properties);
|
|
2637
|
+
}
|
|
2484
2638
|
async function importPopupSupportFieldInfoFormat() {
|
|
2485
2639
|
if (isAMD) {
|
|
2486
2640
|
return await window.$arcgis.import("esri/popup/support/FieldInfoFormat");
|
|
@@ -2503,6 +2657,17 @@ async function newPopupSupportRelatedRecordsInfoFieldOrder(properties) {
|
|
|
2503
2657
|
const ModConstructor = await importPopupSupportRelatedRecordsInfoFieldOrder();
|
|
2504
2658
|
return new ModConstructor(properties);
|
|
2505
2659
|
}
|
|
2660
|
+
async function importPopupSupportUtilityNetworkAssociationType() {
|
|
2661
|
+
if (isAMD) {
|
|
2662
|
+
return await window.$arcgis.import("esri/popup/support/UtilityNetworkAssociationType");
|
|
2663
|
+
}
|
|
2664
|
+
const module = await import("@arcgis/core/popup/support/UtilityNetworkAssociationType.js");
|
|
2665
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2666
|
+
}
|
|
2667
|
+
async function newPopupSupportUtilityNetworkAssociationType(properties) {
|
|
2668
|
+
const ModConstructor = await importPopupSupportUtilityNetworkAssociationType();
|
|
2669
|
+
return new ModConstructor(properties);
|
|
2670
|
+
}
|
|
2506
2671
|
async function importPopupTemplate() {
|
|
2507
2672
|
if (isAMD) {
|
|
2508
2673
|
return await window.$arcgis.import("esri/PopupTemplate");
|
|
@@ -3174,6 +3339,17 @@ async function newRestKnowledgeGraphGraphQueryResult(properties) {
|
|
|
3174
3339
|
const ModConstructor = await importRestKnowledgeGraphGraphQueryResult();
|
|
3175
3340
|
return new ModConstructor(properties);
|
|
3176
3341
|
}
|
|
3342
|
+
async function importRestKnowledgeGraphGraphQueryResultHeader() {
|
|
3343
|
+
if (isAMD) {
|
|
3344
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryResultHeader");
|
|
3345
|
+
}
|
|
3346
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphQueryResultHeader.js");
|
|
3347
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3348
|
+
}
|
|
3349
|
+
async function newRestKnowledgeGraphGraphQueryResultHeader(properties) {
|
|
3350
|
+
const ModConstructor = await importRestKnowledgeGraphGraphQueryResultHeader();
|
|
3351
|
+
return new ModConstructor(properties);
|
|
3352
|
+
}
|
|
3177
3353
|
async function importRestKnowledgeGraphGraphQueryStreaming() {
|
|
3178
3354
|
if (isAMD) {
|
|
3179
3355
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryStreaming");
|
|
@@ -3306,6 +3482,72 @@ async function newRestKnowledgeGraphServiceDefinition(properties) {
|
|
|
3306
3482
|
const ModConstructor = await importRestKnowledgeGraphServiceDefinition();
|
|
3307
3483
|
return new ModConstructor(properties);
|
|
3308
3484
|
}
|
|
3485
|
+
async function importRestKnowledgeGraphSourceTypeValueBehavior() {
|
|
3486
|
+
if (isAMD) {
|
|
3487
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/SourceTypeValueBehavior");
|
|
3488
|
+
}
|
|
3489
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/SourceTypeValueBehavior.js");
|
|
3490
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3491
|
+
}
|
|
3492
|
+
async function newRestKnowledgeGraphSourceTypeValueBehavior(properties) {
|
|
3493
|
+
const ModConstructor = await importRestKnowledgeGraphSourceTypeValueBehavior();
|
|
3494
|
+
return new ModConstructor(properties);
|
|
3495
|
+
}
|
|
3496
|
+
async function importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration() {
|
|
3497
|
+
if (isAMD) {
|
|
3498
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsConfiguration");
|
|
3499
|
+
}
|
|
3500
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsConfiguration.js");
|
|
3501
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3502
|
+
}
|
|
3503
|
+
async function newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration(properties) {
|
|
3504
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration();
|
|
3505
|
+
return new ModConstructor(properties);
|
|
3506
|
+
}
|
|
3507
|
+
async function importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity() {
|
|
3508
|
+
if (isAMD) {
|
|
3509
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsEntity");
|
|
3510
|
+
}
|
|
3511
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsEntity.js");
|
|
3512
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3513
|
+
}
|
|
3514
|
+
async function newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity(properties) {
|
|
3515
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity();
|
|
3516
|
+
return new ModConstructor(properties);
|
|
3517
|
+
}
|
|
3518
|
+
async function importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter() {
|
|
3519
|
+
if (isAMD) {
|
|
3520
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsPathFilter");
|
|
3521
|
+
}
|
|
3522
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsPathFilter.js");
|
|
3523
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3524
|
+
}
|
|
3525
|
+
async function newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter(properties) {
|
|
3526
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter();
|
|
3527
|
+
return new ModConstructor(properties);
|
|
3528
|
+
}
|
|
3529
|
+
async function importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection() {
|
|
3530
|
+
if (isAMD) {
|
|
3531
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/CIMKGTraversalDirection");
|
|
3532
|
+
}
|
|
3533
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/CIMKGTraversalDirection.js");
|
|
3534
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3535
|
+
}
|
|
3536
|
+
async function newRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection(properties) {
|
|
3537
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection();
|
|
3538
|
+
return new ModConstructor(properties);
|
|
3539
|
+
}
|
|
3540
|
+
async function importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings() {
|
|
3541
|
+
if (isAMD) {
|
|
3542
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/FindPathsToolSettings");
|
|
3543
|
+
}
|
|
3544
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/FindPathsToolSettings.js");
|
|
3545
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3546
|
+
}
|
|
3547
|
+
async function newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings(properties) {
|
|
3548
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings();
|
|
3549
|
+
return new ModConstructor(properties);
|
|
3550
|
+
}
|
|
3309
3551
|
async function importRestNetworksSupportAggregatedGeometry() {
|
|
3310
3552
|
if (isAMD) {
|
|
3311
3553
|
return await window.$arcgis.import("esri/rest/networks/support/AggregatedGeometry");
|
|
@@ -3460,6 +3702,94 @@ async function newRestSupportAddressCandidate(properties) {
|
|
|
3460
3702
|
const ModConstructor = await importRestSupportAddressCandidate();
|
|
3461
3703
|
return new ModConstructor(properties);
|
|
3462
3704
|
}
|
|
3705
|
+
async function importRestSupportAttributeBinsFeatureSet() {
|
|
3706
|
+
if (isAMD) {
|
|
3707
|
+
return await window.$arcgis.import("esri/rest/support/AttributeBinsFeatureSet");
|
|
3708
|
+
}
|
|
3709
|
+
const module = await import("@arcgis/core/rest/support/AttributeBinsFeatureSet.js");
|
|
3710
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3711
|
+
}
|
|
3712
|
+
async function newRestSupportAttributeBinsFeatureSet(properties) {
|
|
3713
|
+
const ModConstructor = await importRestSupportAttributeBinsFeatureSet();
|
|
3714
|
+
return new ModConstructor(properties);
|
|
3715
|
+
}
|
|
3716
|
+
async function importRestSupportAttributeBinsQuery() {
|
|
3717
|
+
if (isAMD) {
|
|
3718
|
+
return await window.$arcgis.import("esri/rest/support/AttributeBinsQuery");
|
|
3719
|
+
}
|
|
3720
|
+
const module = await import("@arcgis/core/rest/support/AttributeBinsQuery.js");
|
|
3721
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3722
|
+
}
|
|
3723
|
+
async function newRestSupportAttributeBinsQuery(properties) {
|
|
3724
|
+
const ModConstructor = await importRestSupportAttributeBinsQuery();
|
|
3725
|
+
return new ModConstructor(properties);
|
|
3726
|
+
}
|
|
3727
|
+
async function importRestSupportAttributeBinsGrouping() {
|
|
3728
|
+
if (isAMD) {
|
|
3729
|
+
return await window.$arcgis.import("esri/rest/support/AttributeBinsGrouping");
|
|
3730
|
+
}
|
|
3731
|
+
const module = await import("@arcgis/core/rest/support/AttributeBinsGrouping.js");
|
|
3732
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3733
|
+
}
|
|
3734
|
+
async function newRestSupportAttributeBinsGrouping(properties) {
|
|
3735
|
+
const ModConstructor = await importRestSupportAttributeBinsGrouping();
|
|
3736
|
+
return new ModConstructor(properties);
|
|
3737
|
+
}
|
|
3738
|
+
async function importRestSupportAutoIntervalBinParameters() {
|
|
3739
|
+
if (isAMD) {
|
|
3740
|
+
return await window.$arcgis.import("esri/rest/support/AutoIntervalBinParameters");
|
|
3741
|
+
}
|
|
3742
|
+
const module = await import("@arcgis/core/rest/support/AutoIntervalBinParameters.js");
|
|
3743
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3744
|
+
}
|
|
3745
|
+
async function newRestSupportAutoIntervalBinParameters(properties) {
|
|
3746
|
+
const ModConstructor = await importRestSupportAutoIntervalBinParameters();
|
|
3747
|
+
return new ModConstructor(properties);
|
|
3748
|
+
}
|
|
3749
|
+
async function importRestSupportFixedBoundariesBinParameters() {
|
|
3750
|
+
if (isAMD) {
|
|
3751
|
+
return await window.$arcgis.import("esri/rest/support/FixedBoundariesBinParameters");
|
|
3752
|
+
}
|
|
3753
|
+
const module = await import("@arcgis/core/rest/support/FixedBoundariesBinParameters.js");
|
|
3754
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3755
|
+
}
|
|
3756
|
+
async function newRestSupportFixedBoundariesBinParameters(properties) {
|
|
3757
|
+
const ModConstructor = await importRestSupportFixedBoundariesBinParameters();
|
|
3758
|
+
return new ModConstructor(properties);
|
|
3759
|
+
}
|
|
3760
|
+
async function importRestSupportFixedIntervalBinParameters() {
|
|
3761
|
+
if (isAMD) {
|
|
3762
|
+
return await window.$arcgis.import("esri/rest/support/FixedIntervalBinParameters");
|
|
3763
|
+
}
|
|
3764
|
+
const module = await import("@arcgis/core/rest/support/FixedIntervalBinParameters.js");
|
|
3765
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3766
|
+
}
|
|
3767
|
+
async function newRestSupportFixedIntervalBinParameters(properties) {
|
|
3768
|
+
const ModConstructor = await importRestSupportFixedIntervalBinParameters();
|
|
3769
|
+
return new ModConstructor(properties);
|
|
3770
|
+
}
|
|
3771
|
+
async function importRestSupportDateBinParameters() {
|
|
3772
|
+
if (isAMD) {
|
|
3773
|
+
return await window.$arcgis.import("esri/rest/support/DateBinParameters");
|
|
3774
|
+
}
|
|
3775
|
+
const module = await import("@arcgis/core/rest/support/DateBinParameters.js");
|
|
3776
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3777
|
+
}
|
|
3778
|
+
async function newRestSupportDateBinParameters(properties) {
|
|
3779
|
+
const ModConstructor = await importRestSupportDateBinParameters();
|
|
3780
|
+
return new ModConstructor(properties);
|
|
3781
|
+
}
|
|
3782
|
+
async function importRestSupportDateBinTimeInterval() {
|
|
3783
|
+
if (isAMD) {
|
|
3784
|
+
return await window.$arcgis.import("esri/rest/support/DateBinTimeInterval");
|
|
3785
|
+
}
|
|
3786
|
+
const module = await import("@arcgis/core/rest/support/DateBinTimeInterval.js");
|
|
3787
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3788
|
+
}
|
|
3789
|
+
async function newRestSupportDateBinTimeInterval(properties) {
|
|
3790
|
+
const ModConstructor = await importRestSupportDateBinTimeInterval();
|
|
3791
|
+
return new ModConstructor(properties);
|
|
3792
|
+
}
|
|
3463
3793
|
async function importRestSupportAlgorithmicColorRamp() {
|
|
3464
3794
|
if (isAMD) {
|
|
3465
3795
|
return await window.$arcgis.import("esri/rest/support/AlgorithmicColorRamp");
|
|
@@ -3504,6 +3834,28 @@ async function newRestSupportAttachmentQuery(properties) {
|
|
|
3504
3834
|
const ModConstructor = await importRestSupportAttachmentQuery();
|
|
3505
3835
|
return new ModConstructor(properties);
|
|
3506
3836
|
}
|
|
3837
|
+
async function importRestSupportBaseImageMeasureParameters() {
|
|
3838
|
+
if (isAMD) {
|
|
3839
|
+
return await window.$arcgis.import("esri/rest/support/BaseImageMeasureParameters");
|
|
3840
|
+
}
|
|
3841
|
+
const module = await import("@arcgis/core/rest/support/BaseImageMeasureParameters.js");
|
|
3842
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3843
|
+
}
|
|
3844
|
+
async function newRestSupportBaseImageMeasureParameters(properties) {
|
|
3845
|
+
const ModConstructor = await importRestSupportBaseImageMeasureParameters();
|
|
3846
|
+
return new ModConstructor(properties);
|
|
3847
|
+
}
|
|
3848
|
+
async function importRestSupportBaseImageMeasureResult() {
|
|
3849
|
+
if (isAMD) {
|
|
3850
|
+
return await window.$arcgis.import("esri/rest/support/BaseImageMeasureResult");
|
|
3851
|
+
}
|
|
3852
|
+
const module = await import("@arcgis/core/rest/support/BaseImageMeasureResult.js");
|
|
3853
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3854
|
+
}
|
|
3855
|
+
async function newRestSupportBaseImageMeasureResult(properties) {
|
|
3856
|
+
const ModConstructor = await importRestSupportBaseImageMeasureResult();
|
|
3857
|
+
return new ModConstructor(properties);
|
|
3858
|
+
}
|
|
3507
3859
|
async function importRestSupportBufferParameters() {
|
|
3508
3860
|
if (isAMD) {
|
|
3509
3861
|
return await window.$arcgis.import("esri/rest/support/BufferParameters");
|
|
@@ -4087,6 +4439,39 @@ async function newRestSupportImageUrlResult(properties) {
|
|
|
4087
4439
|
const ModConstructor = await importRestSupportImageUrlResult();
|
|
4088
4440
|
return new ModConstructor(properties);
|
|
4089
4441
|
}
|
|
4442
|
+
async function importRestSupportImageVolume() {
|
|
4443
|
+
if (isAMD) {
|
|
4444
|
+
return await window.$arcgis.import("esri/rest/support/ImageVolume");
|
|
4445
|
+
}
|
|
4446
|
+
const module = await import("@arcgis/core/rest/support/ImageVolume.js");
|
|
4447
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4448
|
+
}
|
|
4449
|
+
async function newRestSupportImageVolume(properties) {
|
|
4450
|
+
const ModConstructor = await importRestSupportImageVolume();
|
|
4451
|
+
return new ModConstructor(properties);
|
|
4452
|
+
}
|
|
4453
|
+
async function importRestSupportImageVolumeParameters() {
|
|
4454
|
+
if (isAMD) {
|
|
4455
|
+
return await window.$arcgis.import("esri/rest/support/ImageVolumeParameters");
|
|
4456
|
+
}
|
|
4457
|
+
const module = await import("@arcgis/core/rest/support/ImageVolumeParameters.js");
|
|
4458
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4459
|
+
}
|
|
4460
|
+
async function newRestSupportImageVolumeParameters(properties) {
|
|
4461
|
+
const ModConstructor = await importRestSupportImageVolumeParameters();
|
|
4462
|
+
return new ModConstructor(properties);
|
|
4463
|
+
}
|
|
4464
|
+
async function importRestSupportImageVolumeResult() {
|
|
4465
|
+
if (isAMD) {
|
|
4466
|
+
return await window.$arcgis.import("esri/rest/support/ImageVolumeResult");
|
|
4467
|
+
}
|
|
4468
|
+
const module = await import("@arcgis/core/rest/support/ImageVolumeResult.js");
|
|
4469
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4470
|
+
}
|
|
4471
|
+
async function newRestSupportImageVolumeResult(properties) {
|
|
4472
|
+
const ModConstructor = await importRestSupportImageVolumeResult();
|
|
4473
|
+
return new ModConstructor(properties);
|
|
4474
|
+
}
|
|
4090
4475
|
async function importRestSupportJobInfo() {
|
|
4091
4476
|
if (isAMD) {
|
|
4092
4477
|
return await window.$arcgis.import("esri/rest/support/JobInfo");
|
|
@@ -5649,6 +6034,17 @@ async function newViewsLayersImageryLayerView(properties) {
|
|
|
5649
6034
|
const ModConstructor = await importViewsLayersImageryLayerView();
|
|
5650
6035
|
return new ModConstructor(properties);
|
|
5651
6036
|
}
|
|
6037
|
+
async function importViewsLayersImageryTileLayerView() {
|
|
6038
|
+
if (isAMD) {
|
|
6039
|
+
return await window.$arcgis.import("esri/views/layers/ImageryTileLayerView");
|
|
6040
|
+
}
|
|
6041
|
+
const module = await import("@arcgis/core/views/layers/ImageryTileLayerView.js");
|
|
6042
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6043
|
+
}
|
|
6044
|
+
async function newViewsLayersImageryTileLayerView(properties) {
|
|
6045
|
+
const ModConstructor = await importViewsLayersImageryTileLayerView();
|
|
6046
|
+
return new ModConstructor(properties);
|
|
6047
|
+
}
|
|
5652
6048
|
async function importViewsLayersLayerView() {
|
|
5653
6049
|
if (isAMD) {
|
|
5654
6050
|
return await window.$arcgis.import("esri/views/layers/LayerView");
|
|
@@ -5715,6 +6111,17 @@ async function newViewsLayersViewshedLayerView(properties) {
|
|
|
5715
6111
|
const ModConstructor = await importViewsLayersViewshedLayerView();
|
|
5716
6112
|
return new ModConstructor(properties);
|
|
5717
6113
|
}
|
|
6114
|
+
async function importViewsLinkChartView() {
|
|
6115
|
+
if (isAMD) {
|
|
6116
|
+
return await window.$arcgis.import("esri/views/LinkChartView");
|
|
6117
|
+
}
|
|
6118
|
+
const module = await import("@arcgis/core/views/LinkChartView.js");
|
|
6119
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6120
|
+
}
|
|
6121
|
+
async function newViewsLinkChartView(properties) {
|
|
6122
|
+
const ModConstructor = await importViewsLinkChartView();
|
|
6123
|
+
return new ModConstructor(properties);
|
|
6124
|
+
}
|
|
5718
6125
|
async function importViewsMagnifier() {
|
|
5719
6126
|
if (isAMD) {
|
|
5720
6127
|
return await window.$arcgis.import("esri/views/Magnifier");
|
|
@@ -5759,6 +6166,17 @@ async function newViewsNavigationNavigation(properties) {
|
|
|
5759
6166
|
const ModConstructor = await importViewsNavigationNavigation();
|
|
5760
6167
|
return new ModConstructor(properties);
|
|
5761
6168
|
}
|
|
6169
|
+
async function importViewsNavigationNavigationActionMap() {
|
|
6170
|
+
if (isAMD) {
|
|
6171
|
+
return await window.$arcgis.import("esri/views/navigation/NavigationActionMap");
|
|
6172
|
+
}
|
|
6173
|
+
const module = await import("@arcgis/core/views/navigation/NavigationActionMap.js");
|
|
6174
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6175
|
+
}
|
|
6176
|
+
async function newViewsNavigationNavigationActionMap(properties) {
|
|
6177
|
+
const ModConstructor = await importViewsNavigationNavigationActionMap();
|
|
6178
|
+
return new ModConstructor(properties);
|
|
6179
|
+
}
|
|
5762
6180
|
async function importViewsSceneView() {
|
|
5763
6181
|
if (isAMD) {
|
|
5764
6182
|
return await window.$arcgis.import("esri/views/SceneView");
|
|
@@ -5770,6 +6188,17 @@ async function newViewsSceneView(properties) {
|
|
|
5770
6188
|
const ModConstructor = await importViewsSceneView();
|
|
5771
6189
|
return new ModConstructor(properties);
|
|
5772
6190
|
}
|
|
6191
|
+
async function importViewsSupportHighlightOptions() {
|
|
6192
|
+
if (isAMD) {
|
|
6193
|
+
return await window.$arcgis.import("esri/views/support/HighlightOptions");
|
|
6194
|
+
}
|
|
6195
|
+
const module = await import("@arcgis/core/views/support/HighlightOptions.js");
|
|
6196
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6197
|
+
}
|
|
6198
|
+
async function newViewsSupportHighlightOptions(properties) {
|
|
6199
|
+
const ModConstructor = await importViewsSupportHighlightOptions();
|
|
6200
|
+
return new ModConstructor(properties);
|
|
6201
|
+
}
|
|
5773
6202
|
async function importViewsUiDefaultUI() {
|
|
5774
6203
|
if (isAMD) {
|
|
5775
6204
|
return await window.$arcgis.import("esri/views/ui/DefaultUI");
|
|
@@ -6045,6 +6474,17 @@ async function newWebDocument2D(properties) {
|
|
|
6045
6474
|
const ModConstructor = await importWebDocument2D();
|
|
6046
6475
|
return new ModConstructor(properties);
|
|
6047
6476
|
}
|
|
6477
|
+
async function importWebLinkChart() {
|
|
6478
|
+
if (isAMD) {
|
|
6479
|
+
return await window.$arcgis.import("esri/WebLinkChart");
|
|
6480
|
+
}
|
|
6481
|
+
const module = await import("@arcgis/core/WebLinkChart.js");
|
|
6482
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6483
|
+
}
|
|
6484
|
+
async function newWebLinkChart(properties) {
|
|
6485
|
+
const ModConstructor = await importWebLinkChart();
|
|
6486
|
+
return new ModConstructor(properties);
|
|
6487
|
+
}
|
|
6048
6488
|
async function importWebMap() {
|
|
6049
6489
|
if (isAMD) {
|
|
6050
6490
|
return await window.$arcgis.import("esri/WebMap");
|
|
@@ -6188,6 +6628,17 @@ async function newWebsceneSlide(properties) {
|
|
|
6188
6628
|
const ModConstructor = await importWebsceneSlide();
|
|
6189
6629
|
return new ModConstructor(properties);
|
|
6190
6630
|
}
|
|
6631
|
+
async function importWebsceneSlideLegendInfo() {
|
|
6632
|
+
if (isAMD) {
|
|
6633
|
+
return await window.$arcgis.import("esri/webscene/SlideLegendInfo");
|
|
6634
|
+
}
|
|
6635
|
+
const module = await import("@arcgis/core/webscene/SlideLegendInfo.js");
|
|
6636
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6637
|
+
}
|
|
6638
|
+
async function newWebsceneSlideLegendInfo(properties) {
|
|
6639
|
+
const ModConstructor = await importWebsceneSlideLegendInfo();
|
|
6640
|
+
return new ModConstructor(properties);
|
|
6641
|
+
}
|
|
6191
6642
|
async function importWebsceneSunLighting() {
|
|
6192
6643
|
if (isAMD) {
|
|
6193
6644
|
return await window.$arcgis.import("esri/webscene/SunLighting");
|
|
@@ -6947,6 +7398,28 @@ async function newWidgetsFeatureFormRelationshipInput(properties) {
|
|
|
6947
7398
|
const ModConstructor = await importWidgetsFeatureFormRelationshipInput();
|
|
6948
7399
|
return new ModConstructor(properties);
|
|
6949
7400
|
}
|
|
7401
|
+
async function importWidgetsFeatureFormTextElementInput() {
|
|
7402
|
+
if (isAMD) {
|
|
7403
|
+
return await window.$arcgis.import("esri/widgets/FeatureForm/TextElementInput");
|
|
7404
|
+
}
|
|
7405
|
+
const module = await import("@arcgis/core/widgets/FeatureForm/TextElementInput.js");
|
|
7406
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7407
|
+
}
|
|
7408
|
+
async function newWidgetsFeatureFormTextElementInput(properties) {
|
|
7409
|
+
const ModConstructor = await importWidgetsFeatureFormTextElementInput();
|
|
7410
|
+
return new ModConstructor(properties);
|
|
7411
|
+
}
|
|
7412
|
+
async function importWidgetsFeatureFormUtilityNetworkAssociationInput() {
|
|
7413
|
+
if (isAMD) {
|
|
7414
|
+
return await window.$arcgis.import("esri/widgets/FeatureForm/UtilityNetworkAssociationInput");
|
|
7415
|
+
}
|
|
7416
|
+
const module = await import("@arcgis/core/widgets/FeatureForm/UtilityNetworkAssociationInput.js");
|
|
7417
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7418
|
+
}
|
|
7419
|
+
async function newWidgetsFeatureFormUtilityNetworkAssociationInput(properties) {
|
|
7420
|
+
const ModConstructor = await importWidgetsFeatureFormUtilityNetworkAssociationInput();
|
|
7421
|
+
return new ModConstructor(properties);
|
|
7422
|
+
}
|
|
6950
7423
|
async function importWidgetsFeatures() {
|
|
6951
7424
|
if (isAMD) {
|
|
6952
7425
|
return await window.$arcgis.import("esri/widgets/Features");
|
|
@@ -7123,6 +7596,28 @@ async function newWidgetsFeatureTableSupportFieldColumnTemplate(properties) {
|
|
|
7123
7596
|
const ModConstructor = await importWidgetsFeatureTableSupportFieldColumnTemplate();
|
|
7124
7597
|
return new ModConstructor(properties);
|
|
7125
7598
|
}
|
|
7599
|
+
async function importWidgetsFeatureTableSupportAttachmentsColumnTemplate() {
|
|
7600
|
+
if (isAMD) {
|
|
7601
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/AttachmentsColumnTemplate");
|
|
7602
|
+
}
|
|
7603
|
+
const module = await import("@arcgis/core/widgets/FeatureTable/support/AttachmentsColumnTemplate.js");
|
|
7604
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7605
|
+
}
|
|
7606
|
+
async function newWidgetsFeatureTableSupportAttachmentsColumnTemplate(properties) {
|
|
7607
|
+
const ModConstructor = await importWidgetsFeatureTableSupportAttachmentsColumnTemplate();
|
|
7608
|
+
return new ModConstructor(properties);
|
|
7609
|
+
}
|
|
7610
|
+
async function importWidgetsFeatureTableSupportRelationshipColumnTemplate() {
|
|
7611
|
+
if (isAMD) {
|
|
7612
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/RelationshipColumnTemplate");
|
|
7613
|
+
}
|
|
7614
|
+
const module = await import("@arcgis/core/widgets/FeatureTable/support/RelationshipColumnTemplate.js");
|
|
7615
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7616
|
+
}
|
|
7617
|
+
async function newWidgetsFeatureTableSupportRelationshipColumnTemplate(properties) {
|
|
7618
|
+
const ModConstructor = await importWidgetsFeatureTableSupportRelationshipColumnTemplate();
|
|
7619
|
+
return new ModConstructor(properties);
|
|
7620
|
+
}
|
|
7126
7621
|
async function importWidgetsFeatureTableSupportGroupColumnTemplate() {
|
|
7127
7622
|
if (isAMD) {
|
|
7128
7623
|
return await window.$arcgis.import("esri/widgets/FeatureTable/support/GroupColumnTemplate");
|
|
@@ -7376,6 +7871,17 @@ async function newWidgetsLegendSupportActiveLayerInfo(properties) {
|
|
|
7376
7871
|
const ModConstructor = await importWidgetsLegendSupportActiveLayerInfo();
|
|
7377
7872
|
return new ModConstructor(properties);
|
|
7378
7873
|
}
|
|
7874
|
+
async function importWidgetsLinkChartLayoutSwitcherLinkChartLayoutSwitcherViewModel() {
|
|
7875
|
+
if (isAMD) {
|
|
7876
|
+
return await window.$arcgis.import("esri/widgets/LinkChartLayoutSwitcher/LinkChartLayoutSwitcherViewModel");
|
|
7877
|
+
}
|
|
7878
|
+
const module = await import("@arcgis/core/widgets/LinkChartLayoutSwitcher/LinkChartLayoutSwitcherViewModel.js");
|
|
7879
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7880
|
+
}
|
|
7881
|
+
async function newWidgetsLinkChartLayoutSwitcherLinkChartLayoutSwitcherViewModel(properties) {
|
|
7882
|
+
const ModConstructor = await importWidgetsLinkChartLayoutSwitcherLinkChartLayoutSwitcherViewModel();
|
|
7883
|
+
return new ModConstructor(properties);
|
|
7884
|
+
}
|
|
7379
7885
|
async function importWidgetsLineOfSight() {
|
|
7380
7886
|
if (isAMD) {
|
|
7381
7887
|
return await window.$arcgis.import("esri/widgets/LineOfSight");
|
|
@@ -8179,6 +8685,17 @@ async function newWidgetsUtilityNetworkTrace(properties) {
|
|
|
8179
8685
|
const ModConstructor = await importWidgetsUtilityNetworkTrace();
|
|
8180
8686
|
return new ModConstructor(properties);
|
|
8181
8687
|
}
|
|
8688
|
+
async function importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel() {
|
|
8689
|
+
if (isAMD) {
|
|
8690
|
+
return await window.$arcgis.import("esri/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel");
|
|
8691
|
+
}
|
|
8692
|
+
const module = await import("@arcgis/core/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel.js");
|
|
8693
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8694
|
+
}
|
|
8695
|
+
async function newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel(properties) {
|
|
8696
|
+
const ModConstructor = await importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel();
|
|
8697
|
+
return new ModConstructor(properties);
|
|
8698
|
+
}
|
|
8182
8699
|
async function importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel() {
|
|
8183
8700
|
if (isAMD) {
|
|
8184
8701
|
return await window.$arcgis.import("esri/widgets/UtilityNetworkTrace/UtilityNetworkTraceViewModel");
|
|
@@ -8432,25 +8949,25 @@ async function importCoreWorkers() {
|
|
|
8432
8949
|
const module = await import("@arcgis/core/core/workers.js");
|
|
8433
8950
|
return isDefaultModule(module) ? module.default : module;
|
|
8434
8951
|
}
|
|
8435
|
-
async function
|
|
8952
|
+
async function importEditingSharedTemplatesSharedTemplateMetadata() {
|
|
8436
8953
|
if (isAMD) {
|
|
8437
|
-
return await window.$arcgis.import("esri/
|
|
8954
|
+
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplateMetadata");
|
|
8438
8955
|
}
|
|
8439
|
-
const module = await import("@arcgis/core/
|
|
8956
|
+
const module = await import("@arcgis/core/editing/sharedTemplates/SharedTemplateMetadata.js");
|
|
8440
8957
|
return isDefaultModule(module) ? module.default : module;
|
|
8441
8958
|
}
|
|
8442
|
-
async function
|
|
8959
|
+
async function importFormElementsInputs() {
|
|
8443
8960
|
if (isAMD) {
|
|
8444
|
-
return await window.$arcgis.import("esri/form/elements/
|
|
8961
|
+
return await window.$arcgis.import("esri/form/elements/inputs");
|
|
8445
8962
|
}
|
|
8446
|
-
const module = await import("@arcgis/core/form/elements/
|
|
8963
|
+
const module = await import("@arcgis/core/form/elements/inputs.js");
|
|
8447
8964
|
return isDefaultModule(module) ? module.default : module;
|
|
8448
8965
|
}
|
|
8449
|
-
async function
|
|
8966
|
+
async function importFormElements() {
|
|
8450
8967
|
if (isAMD) {
|
|
8451
|
-
return await window.$arcgis.import("esri/form/
|
|
8968
|
+
return await window.$arcgis.import("esri/form/elements");
|
|
8452
8969
|
}
|
|
8453
|
-
const module = await import("@arcgis/core/form/
|
|
8970
|
+
const module = await import("@arcgis/core/form/elements.js");
|
|
8454
8971
|
return isDefaultModule(module) ? module.default : module;
|
|
8455
8972
|
}
|
|
8456
8973
|
async function importGeometry() {
|
|
@@ -8495,6 +9012,13 @@ async function importGeometryOperatorsAffineTransformOperator() {
|
|
|
8495
9012
|
const module = await import("@arcgis/core/geometry/operators/affineTransformOperator.js");
|
|
8496
9013
|
return isDefaultModule(module) ? module.default : module;
|
|
8497
9014
|
}
|
|
9015
|
+
async function importGeometryOperatorsAlphaShapeOperator() {
|
|
9016
|
+
if (isAMD) {
|
|
9017
|
+
return await window.$arcgis.import("esri/geometry/operators/alphaShapeOperator");
|
|
9018
|
+
}
|
|
9019
|
+
const module = await import("@arcgis/core/geometry/operators/alphaShapeOperator.js");
|
|
9020
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9021
|
+
}
|
|
8498
9022
|
async function importGeometryOperatorsAreaOperator() {
|
|
8499
9023
|
if (isAMD) {
|
|
8500
9024
|
return await window.$arcgis.import("esri/geometry/operators/areaOperator");
|
|
@@ -8502,6 +9026,20 @@ async function importGeometryOperatorsAreaOperator() {
|
|
|
8502
9026
|
const module = await import("@arcgis/core/geometry/operators/areaOperator.js");
|
|
8503
9027
|
return isDefaultModule(module) ? module.default : module;
|
|
8504
9028
|
}
|
|
9029
|
+
async function importGeometryOperatorsAutoCompleteOperator() {
|
|
9030
|
+
if (isAMD) {
|
|
9031
|
+
return await window.$arcgis.import("esri/geometry/operators/autoCompleteOperator");
|
|
9032
|
+
}
|
|
9033
|
+
const module = await import("@arcgis/core/geometry/operators/autoCompleteOperator.js");
|
|
9034
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9035
|
+
}
|
|
9036
|
+
async function importGeometryOperatorsBoundaryOperator() {
|
|
9037
|
+
if (isAMD) {
|
|
9038
|
+
return await window.$arcgis.import("esri/geometry/operators/boundaryOperator");
|
|
9039
|
+
}
|
|
9040
|
+
const module = await import("@arcgis/core/geometry/operators/boundaryOperator.js");
|
|
9041
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9042
|
+
}
|
|
8505
9043
|
async function importGeometryOperatorsBufferOperator() {
|
|
8506
9044
|
if (isAMD) {
|
|
8507
9045
|
return await window.$arcgis.import("esri/geometry/operators/bufferOperator");
|
|
@@ -8586,6 +9124,13 @@ async function importGeometryOperatorsEqualsOperator() {
|
|
|
8586
9124
|
const module = await import("@arcgis/core/geometry/operators/equalsOperator.js");
|
|
8587
9125
|
return isDefaultModule(module) ? module.default : module;
|
|
8588
9126
|
}
|
|
9127
|
+
async function importGeometryOperatorsExtendOperator() {
|
|
9128
|
+
if (isAMD) {
|
|
9129
|
+
return await window.$arcgis.import("esri/geometry/operators/extendOperator");
|
|
9130
|
+
}
|
|
9131
|
+
const module = await import("@arcgis/core/geometry/operators/extendOperator.js");
|
|
9132
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9133
|
+
}
|
|
8589
9134
|
async function importGeometryOperatorsGeneralizeOperator() {
|
|
8590
9135
|
if (isAMD) {
|
|
8591
9136
|
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
@@ -8600,6 +9145,13 @@ async function importGeometryOperatorsGeodesicBufferOperator() {
|
|
|
8600
9145
|
const module = await import("@arcgis/core/geometry/operators/geodesicBufferOperator.js");
|
|
8601
9146
|
return isDefaultModule(module) ? module.default : module;
|
|
8602
9147
|
}
|
|
9148
|
+
async function importGeometryOperatorsGeodesicProximityOperator() {
|
|
9149
|
+
if (isAMD) {
|
|
9150
|
+
return await window.$arcgis.import("esri/geometry/operators/geodesicProximityOperator");
|
|
9151
|
+
}
|
|
9152
|
+
const module = await import("@arcgis/core/geometry/operators/geodesicProximityOperator.js");
|
|
9153
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9154
|
+
}
|
|
8603
9155
|
async function importGeometryOperatorsGeodeticAreaOperator() {
|
|
8604
9156
|
if (isAMD) {
|
|
8605
9157
|
return await window.$arcgis.import("esri/geometry/operators/geodeticAreaOperator");
|
|
@@ -8635,6 +9187,13 @@ async function importGeometryOperatorsGraphicBufferOperator() {
|
|
|
8635
9187
|
const module = await import("@arcgis/core/geometry/operators/graphicBufferOperator.js");
|
|
8636
9188
|
return isDefaultModule(module) ? module.default : module;
|
|
8637
9189
|
}
|
|
9190
|
+
async function importGeometryOperatorsIntegrateOperator() {
|
|
9191
|
+
if (isAMD) {
|
|
9192
|
+
return await window.$arcgis.import("esri/geometry/operators/integrateOperator");
|
|
9193
|
+
}
|
|
9194
|
+
const module = await import("@arcgis/core/geometry/operators/integrateOperator.js");
|
|
9195
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9196
|
+
}
|
|
8638
9197
|
async function importGeometryOperatorsIntersectionOperator() {
|
|
8639
9198
|
if (isAMD) {
|
|
8640
9199
|
return await window.$arcgis.import("esri/geometry/operators/intersectionOperator");
|
|
@@ -8649,6 +9208,20 @@ async function importGeometryOperatorsIntersectsOperator() {
|
|
|
8649
9208
|
const module = await import("@arcgis/core/geometry/operators/intersectsOperator.js");
|
|
8650
9209
|
return isDefaultModule(module) ? module.default : module;
|
|
8651
9210
|
}
|
|
9211
|
+
async function importGeometryOperatorsIsNearOperator() {
|
|
9212
|
+
if (isAMD) {
|
|
9213
|
+
return await window.$arcgis.import("esri/geometry/operators/isNearOperator");
|
|
9214
|
+
}
|
|
9215
|
+
const module = await import("@arcgis/core/geometry/operators/isNearOperator.js");
|
|
9216
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9217
|
+
}
|
|
9218
|
+
async function importGeometryOperatorsLabelPointOperator() {
|
|
9219
|
+
if (isAMD) {
|
|
9220
|
+
return await window.$arcgis.import("esri/geometry/operators/labelPointOperator");
|
|
9221
|
+
}
|
|
9222
|
+
const module = await import("@arcgis/core/geometry/operators/labelPointOperator.js");
|
|
9223
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9224
|
+
}
|
|
8652
9225
|
async function importGeometryOperatorsLengthOperator() {
|
|
8653
9226
|
if (isAMD) {
|
|
8654
9227
|
return await window.$arcgis.import("esri/geometry/operators/lengthOperator");
|
|
@@ -8656,6 +9229,34 @@ async function importGeometryOperatorsLengthOperator() {
|
|
|
8656
9229
|
const module = await import("@arcgis/core/geometry/operators/lengthOperator.js");
|
|
8657
9230
|
return isDefaultModule(module) ? module.default : module;
|
|
8658
9231
|
}
|
|
9232
|
+
async function importGeometryOperatorsLinesToPolygonsOperator() {
|
|
9233
|
+
if (isAMD) {
|
|
9234
|
+
return await window.$arcgis.import("esri/geometry/operators/linesToPolygonsOperator");
|
|
9235
|
+
}
|
|
9236
|
+
const module = await import("@arcgis/core/geometry/operators/linesToPolygonsOperator.js");
|
|
9237
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9238
|
+
}
|
|
9239
|
+
async function importGeometryOperatorsLocateBetweenOperator() {
|
|
9240
|
+
if (isAMD) {
|
|
9241
|
+
return await window.$arcgis.import("esri/geometry/operators/locateBetweenOperator");
|
|
9242
|
+
}
|
|
9243
|
+
const module = await import("@arcgis/core/geometry/operators/locateBetweenOperator.js");
|
|
9244
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9245
|
+
}
|
|
9246
|
+
async function importGeometryOperatorsMinimumBoundingCircleOperator() {
|
|
9247
|
+
if (isAMD) {
|
|
9248
|
+
return await window.$arcgis.import("esri/geometry/operators/minimumBoundingCircleOperator");
|
|
9249
|
+
}
|
|
9250
|
+
const module = await import("@arcgis/core/geometry/operators/minimumBoundingCircleOperator.js");
|
|
9251
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9252
|
+
}
|
|
9253
|
+
async function importGeometryOperatorsMultiPartToSinglePartOperator() {
|
|
9254
|
+
if (isAMD) {
|
|
9255
|
+
return await window.$arcgis.import("esri/geometry/operators/multiPartToSinglePartOperator");
|
|
9256
|
+
}
|
|
9257
|
+
const module = await import("@arcgis/core/geometry/operators/multiPartToSinglePartOperator.js");
|
|
9258
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9259
|
+
}
|
|
8659
9260
|
async function importGeometryOperatorsOffsetOperator() {
|
|
8660
9261
|
if (isAMD) {
|
|
8661
9262
|
return await window.$arcgis.import("esri/geometry/operators/offsetOperator");
|
|
@@ -8670,6 +9271,27 @@ async function importGeometryOperatorsOverlapsOperator() {
|
|
|
8670
9271
|
const module = await import("@arcgis/core/geometry/operators/overlapsOperator.js");
|
|
8671
9272
|
return isDefaultModule(module) ? module.default : module;
|
|
8672
9273
|
}
|
|
9274
|
+
async function importGeometryOperatorsPolygonOverlayOperator() {
|
|
9275
|
+
if (isAMD) {
|
|
9276
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonOverlayOperator");
|
|
9277
|
+
}
|
|
9278
|
+
const module = await import("@arcgis/core/geometry/operators/polygonOverlayOperator.js");
|
|
9279
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9280
|
+
}
|
|
9281
|
+
async function importGeometryOperatorsPolygonSlicerOperator() {
|
|
9282
|
+
if (isAMD) {
|
|
9283
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonSlicerOperator");
|
|
9284
|
+
}
|
|
9285
|
+
const module = await import("@arcgis/core/geometry/operators/polygonSlicerOperator.js");
|
|
9286
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9287
|
+
}
|
|
9288
|
+
async function importGeometryOperatorsProjectOperator() {
|
|
9289
|
+
if (isAMD) {
|
|
9290
|
+
return await window.$arcgis.import("esri/geometry/operators/projectOperator");
|
|
9291
|
+
}
|
|
9292
|
+
const module = await import("@arcgis/core/geometry/operators/projectOperator.js");
|
|
9293
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9294
|
+
}
|
|
8673
9295
|
async function importGeometryOperatorsProximityOperator() {
|
|
8674
9296
|
if (isAMD) {
|
|
8675
9297
|
return await window.$arcgis.import("esri/geometry/operators/proximityOperator");
|
|
@@ -8684,6 +9306,20 @@ async function importGeometryOperatorsRelateOperator() {
|
|
|
8684
9306
|
const module = await import("@arcgis/core/geometry/operators/relateOperator.js");
|
|
8685
9307
|
return isDefaultModule(module) ? module.default : module;
|
|
8686
9308
|
}
|
|
9309
|
+
async function importGeometryOperatorsReshapeOperator() {
|
|
9310
|
+
if (isAMD) {
|
|
9311
|
+
return await window.$arcgis.import("esri/geometry/operators/reshapeOperator");
|
|
9312
|
+
}
|
|
9313
|
+
const module = await import("@arcgis/core/geometry/operators/reshapeOperator.js");
|
|
9314
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9315
|
+
}
|
|
9316
|
+
async function importGeometryOperatorsShapePreservingProjectOperator() {
|
|
9317
|
+
if (isAMD) {
|
|
9318
|
+
return await window.$arcgis.import("esri/geometry/operators/shapePreservingProjectOperator");
|
|
9319
|
+
}
|
|
9320
|
+
const module = await import("@arcgis/core/geometry/operators/shapePreservingProjectOperator.js");
|
|
9321
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9322
|
+
}
|
|
8687
9323
|
async function importGeometryOperatorsSimplifyOperator() {
|
|
8688
9324
|
if (isAMD) {
|
|
8689
9325
|
return await window.$arcgis.import("esri/geometry/operators/simplifyOperator");
|
|
@@ -8719,6 +9355,13 @@ async function importGeometryOperatorsWithinOperator() {
|
|
|
8719
9355
|
const module = await import("@arcgis/core/geometry/operators/withinOperator.js");
|
|
8720
9356
|
return isDefaultModule(module) ? module.default : module;
|
|
8721
9357
|
}
|
|
9358
|
+
async function importGeometryOperatorsSupportGeographicTransformationUtils() {
|
|
9359
|
+
if (isAMD) {
|
|
9360
|
+
return await window.$arcgis.import("esri/geometry/operators/support/geographicTransformationUtils");
|
|
9361
|
+
}
|
|
9362
|
+
const module = await import("@arcgis/core/geometry/operators/support/geographicTransformationUtils.js");
|
|
9363
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9364
|
+
}
|
|
8722
9365
|
async function importGeometrySupportGeodesicUtils() {
|
|
8723
9366
|
if (isAMD) {
|
|
8724
9367
|
return await window.$arcgis.import("esri/geometry/support/geodesicUtils");
|
|
@@ -8775,6 +9418,20 @@ async function importLayersCatalogCatalogUtils() {
|
|
|
8775
9418
|
const module = await import("@arcgis/core/layers/catalog/catalogUtils.js");
|
|
8776
9419
|
return isDefaultModule(module) ? module.default : module;
|
|
8777
9420
|
}
|
|
9421
|
+
async function importLayersKnowledgeGraphCypherUtils() {
|
|
9422
|
+
if (isAMD) {
|
|
9423
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/cypherUtils");
|
|
9424
|
+
}
|
|
9425
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/cypherUtils.js");
|
|
9426
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9427
|
+
}
|
|
9428
|
+
async function importLayersKnowledgeGraphSupportUtils() {
|
|
9429
|
+
if (isAMD) {
|
|
9430
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/supportUtils");
|
|
9431
|
+
}
|
|
9432
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/supportUtils.js");
|
|
9433
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9434
|
+
}
|
|
8778
9435
|
async function importLayersOgcWfsUtils() {
|
|
8779
9436
|
if (isAMD) {
|
|
8780
9437
|
return await window.$arcgis.import("esri/layers/ogc/wfsUtils");
|
|
@@ -8789,6 +9446,20 @@ async function importLayersOgcWcsUtils() {
|
|
|
8789
9446
|
const module = await import("@arcgis/core/layers/ogc/wcsUtils.js");
|
|
8790
9447
|
return isDefaultModule(module) ? module.default : module;
|
|
8791
9448
|
}
|
|
9449
|
+
async function importLayersOrientedImageryTransformationsWorldToImage() {
|
|
9450
|
+
if (isAMD) {
|
|
9451
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/worldToImage");
|
|
9452
|
+
}
|
|
9453
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/worldToImage.js");
|
|
9454
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9455
|
+
}
|
|
9456
|
+
async function importLayersOrientedImageryTransformationsImageToWorld() {
|
|
9457
|
+
if (isAMD) {
|
|
9458
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/imageToWorld");
|
|
9459
|
+
}
|
|
9460
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/imageToWorld.js");
|
|
9461
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9462
|
+
}
|
|
8792
9463
|
async function importLayersSupportArcadeUtils() {
|
|
8793
9464
|
if (isAMD) {
|
|
8794
9465
|
return await window.$arcgis.import("esri/layers/support/arcadeUtils");
|
|
@@ -8796,6 +9467,13 @@ async function importLayersSupportArcadeUtils() {
|
|
|
8796
9467
|
const module = await import("@arcgis/core/layers/support/arcadeUtils.js");
|
|
8797
9468
|
return isDefaultModule(module) ? module.default : module;
|
|
8798
9469
|
}
|
|
9470
|
+
async function importLayersSupportCsvUtils() {
|
|
9471
|
+
if (isAMD) {
|
|
9472
|
+
return await window.$arcgis.import("esri/layers/support/csvUtils");
|
|
9473
|
+
}
|
|
9474
|
+
const module = await import("@arcgis/core/layers/support/csvUtils.js");
|
|
9475
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9476
|
+
}
|
|
8799
9477
|
async function importLayersSupportFieldUtils() {
|
|
8800
9478
|
if (isAMD) {
|
|
8801
9479
|
return await window.$arcgis.import("esri/layers/support/fieldUtils");
|
|
@@ -8852,13 +9530,6 @@ async function importPopupContent() {
|
|
|
8852
9530
|
const module = await import("@arcgis/core/popup/content.js");
|
|
8853
9531
|
return isDefaultModule(module) ? module.default : module;
|
|
8854
9532
|
}
|
|
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
9533
|
async function importRasterRenderers() {
|
|
8863
9534
|
if (isAMD) {
|
|
8864
9535
|
return await window.$arcgis.import("esri/rasterRenderers");
|
|
@@ -9237,6 +9908,13 @@ async function importSmartMappingRenderersUnivariateColorSize() {
|
|
|
9237
9908
|
const module = await import("@arcgis/core/smartMapping/renderers/univariateColorSize.js");
|
|
9238
9909
|
return isDefaultModule(module) ? module.default : module;
|
|
9239
9910
|
}
|
|
9911
|
+
async function importSmartMappingRenderersSupportRendererUtils() {
|
|
9912
|
+
if (isAMD) {
|
|
9913
|
+
return await window.$arcgis.import("esri/smartMapping/renderers/support/rendererUtils");
|
|
9914
|
+
}
|
|
9915
|
+
const module = await import("@arcgis/core/smartMapping/renderers/support/rendererUtils.js");
|
|
9916
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9917
|
+
}
|
|
9240
9918
|
async function importSmartMappingStatisticsClassBreaks() {
|
|
9241
9919
|
if (isAMD) {
|
|
9242
9920
|
return await window.$arcgis.import("esri/smartMapping/statistics/classBreaks");
|
|
@@ -9426,11 +10104,11 @@ async function importSymbolsSupportSymbolUtils() {
|
|
|
9426
10104
|
const module = await import("@arcgis/core/symbols/support/symbolUtils.js");
|
|
9427
10105
|
return isDefaultModule(module) ? module.default : module;
|
|
9428
10106
|
}
|
|
9429
|
-
async function
|
|
10107
|
+
async function importTablesElements() {
|
|
9430
10108
|
if (isAMD) {
|
|
9431
|
-
return await window.$arcgis.import("esri/tables/
|
|
10109
|
+
return await window.$arcgis.import("esri/tables/elements");
|
|
9432
10110
|
}
|
|
9433
|
-
const module = await import("@arcgis/core/tables/
|
|
10111
|
+
const module = await import("@arcgis/core/tables/elements.js");
|
|
9434
10112
|
return isDefaultModule(module) ? module.default : module;
|
|
9435
10113
|
}
|
|
9436
10114
|
async function importVersionManagementUtils() {
|
|
@@ -9447,13 +10125,6 @@ async function importVersionManagementVersionAdaptersUtils() {
|
|
|
9447
10125
|
const module = await import("@arcgis/core/versionManagement/versionAdapters/utils.js");
|
|
9448
10126
|
return isDefaultModule(module) ? module.default : module;
|
|
9449
10127
|
}
|
|
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
10128
|
async function importViews3dWebglManagedFBO() {
|
|
9458
10129
|
if (isAMD) {
|
|
9459
10130
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -9503,6 +10174,13 @@ async function importViewsSupportColorUtils() {
|
|
|
9503
10174
|
const module = await import("@arcgis/core/views/support/colorUtils.js");
|
|
9504
10175
|
return isDefaultModule(module) ? module.default : module;
|
|
9505
10176
|
}
|
|
10177
|
+
async function importWebsceneSupportSlideElements() {
|
|
10178
|
+
if (isAMD) {
|
|
10179
|
+
return await window.$arcgis.import("esri/webscene/support/SlideElements");
|
|
10180
|
+
}
|
|
10181
|
+
const module = await import("@arcgis/core/webscene/support/SlideElements.js");
|
|
10182
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10183
|
+
}
|
|
9506
10184
|
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
9507
10185
|
if (isAMD) {
|
|
9508
10186
|
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
@@ -9517,6 +10195,13 @@ async function importWidgetsSmartMappingSupportUtils() {
|
|
|
9517
10195
|
const module = await import("@arcgis/core/widgets/smartMapping/support/utils.js");
|
|
9518
10196
|
return isDefaultModule(module) ? module.default : module;
|
|
9519
10197
|
}
|
|
10198
|
+
async function importWidgetsSupportUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel() {
|
|
10199
|
+
if (isAMD) {
|
|
10200
|
+
return await window.$arcgis.import("esri/widgets/support/UtilityNetworkAssociations/UtilityNetworkAssociationsViewModel");
|
|
10201
|
+
}
|
|
10202
|
+
const module = await import("@arcgis/core/widgets/support/UtilityNetworkAssociations/UtilityNetworkAssociationsViewModel.js");
|
|
10203
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10204
|
+
}
|
|
9520
10205
|
async function importWidgetsSupportWidget() {
|
|
9521
10206
|
if (isAMD) {
|
|
9522
10207
|
return await window.$arcgis.import("esri/widgets/support/widget");
|
|
@@ -9531,13 +10216,6 @@ async function importApplicationsComponentsBasemapUtils() {
|
|
|
9531
10216
|
const module = await import("@arcgis/core/applications/Components/basemapUtils.js");
|
|
9532
10217
|
return isDefaultModule(module) ? module.default : module;
|
|
9533
10218
|
}
|
|
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
10219
|
async function importApplicationsComponentsDrawUtils() {
|
|
9542
10220
|
if (isAMD) {
|
|
9543
10221
|
return await window.$arcgis.import("esri/applications/Components/drawUtils");
|
|
@@ -9587,6 +10265,27 @@ async function importApplicationsComponentsPreviewSymbol2D() {
|
|
|
9587
10265
|
const module = await import("@arcgis/core/applications/Components/previewSymbol2D.js");
|
|
9588
10266
|
return isDefaultModule(module) ? module.default : module;
|
|
9589
10267
|
}
|
|
10268
|
+
async function importApplicationsComponentsReactiveUtils() {
|
|
10269
|
+
if (isAMD) {
|
|
10270
|
+
return await window.$arcgis.import("esri/applications/Components/reactiveUtils");
|
|
10271
|
+
}
|
|
10272
|
+
const module = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10273
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10274
|
+
}
|
|
10275
|
+
async function importApplicationsComponentsSelectionOperation() {
|
|
10276
|
+
if (isAMD) {
|
|
10277
|
+
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
10278
|
+
}
|
|
10279
|
+
const module = await import("@arcgis/core/applications/Components/SelectionOperation.js");
|
|
10280
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10281
|
+
}
|
|
10282
|
+
async function importApplicationsComponentsSketchTooltipControls() {
|
|
10283
|
+
if (isAMD) {
|
|
10284
|
+
return await window.$arcgis.import("esri/applications/Components/SketchTooltipControls");
|
|
10285
|
+
}
|
|
10286
|
+
const module = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10287
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10288
|
+
}
|
|
9590
10289
|
async function importApplicationsComponentsStyleUtils() {
|
|
9591
10290
|
if (isAMD) {
|
|
9592
10291
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -9608,13 +10307,6 @@ async function importApplicationsComponentsWebStyleSymbolUtils() {
|
|
|
9608
10307
|
const module = await import("@arcgis/core/applications/Components/webStyleSymbolUtils.js");
|
|
9609
10308
|
return isDefaultModule(module) ? module.default : module;
|
|
9610
10309
|
}
|
|
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
10310
|
async function importApplicationsExperienceBuilderSketchUtils() {
|
|
9619
10311
|
if (isAMD) {
|
|
9620
10312
|
return await window.$arcgis.import("esri/applications/ExperienceBuilder/sketchUtils");
|
|
@@ -9622,13 +10314,6 @@ async function importApplicationsExperienceBuilderSketchUtils() {
|
|
|
9622
10314
|
const module = await import("@arcgis/core/applications/ExperienceBuilder/sketchUtils.js");
|
|
9623
10315
|
return isDefaultModule(module) ? module.default : module;
|
|
9624
10316
|
}
|
|
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
10317
|
async function importApplicationsMapViewerTemplateUtils() {
|
|
9633
10318
|
if (isAMD) {
|
|
9634
10319
|
return await window.$arcgis.import("esri/applications/MapViewer/templateUtils");
|
|
@@ -9636,13 +10321,6 @@ async function importApplicationsMapViewerTemplateUtils() {
|
|
|
9636
10321
|
const module = await import("@arcgis/core/applications/MapViewer/templateUtils.js");
|
|
9637
10322
|
return isDefaultModule(module) ? module.default : module;
|
|
9638
10323
|
}
|
|
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
10324
|
async function importApplicationsSceneViewerDevEnvironmentUtils() {
|
|
9647
10325
|
if (isAMD) {
|
|
9648
10326
|
return await window.$arcgis.import("esri/applications/SceneViewer/devEnvironmentUtils");
|
|
@@ -9650,34 +10328,6 @@ async function importApplicationsSceneViewerDevEnvironmentUtils() {
|
|
|
9650
10328
|
const module = await import("@arcgis/core/applications/SceneViewer/devEnvironmentUtils.js");
|
|
9651
10329
|
return isDefaultModule(module) ? module.default : module;
|
|
9652
10330
|
}
|
|
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
10331
|
async function importApplicationsWebEditorSketchUtils() {
|
|
9682
10332
|
if (isAMD) {
|
|
9683
10333
|
return await window.$arcgis.import("esri/applications/WebEditor/sketchUtils");
|
|
@@ -9699,7 +10349,6 @@ export {
|
|
|
9699
10349
|
importAnalysisViewshed,
|
|
9700
10350
|
importAnalysisViewshedAnalysis,
|
|
9701
10351
|
importApplicationsComponentsBasemapUtils,
|
|
9702
|
-
importApplicationsComponentsCollectionFlattener,
|
|
9703
10352
|
importApplicationsComponentsDrawUtils,
|
|
9704
10353
|
importApplicationsComponentsFontUtils,
|
|
9705
10354
|
importApplicationsComponentsGetDefaultUnits,
|
|
@@ -9707,21 +10356,18 @@ export {
|
|
|
9707
10356
|
importApplicationsComponentsLayerOriginUtils,
|
|
9708
10357
|
importApplicationsComponentsLayersEffectsJsonUtils,
|
|
9709
10358
|
importApplicationsComponentsPreviewSymbol2D,
|
|
10359
|
+
importApplicationsComponentsReactiveUtils,
|
|
10360
|
+
importApplicationsComponentsSelectionOperation,
|
|
10361
|
+
importApplicationsComponentsSketchTooltipControls,
|
|
9710
10362
|
importApplicationsComponentsStyleUtils,
|
|
9711
10363
|
importApplicationsComponentsSvgUtils,
|
|
9712
10364
|
importApplicationsComponentsWebStyleSymbolUtils,
|
|
9713
|
-
importApplicationsExcaliburVideoViewUtils,
|
|
9714
10365
|
importApplicationsExperienceBuilderSketchUtils,
|
|
9715
|
-
importApplicationsMapViewerMediaUtils,
|
|
9716
10366
|
importApplicationsMapViewerTemplateUtils,
|
|
9717
|
-
importApplicationsSceneViewerColorUtils,
|
|
9718
10367
|
importApplicationsSceneViewerDevEnvironmentUtils,
|
|
9719
|
-
importApplicationsSceneViewerLayerUtils,
|
|
9720
|
-
importApplicationsSceneViewerSceneViewerUtils,
|
|
9721
|
-
importApplicationsSceneViewerSymbolUtils,
|
|
9722
|
-
importApplicationsUrbanMeshUtils,
|
|
9723
10368
|
importApplicationsWebEditorSketchUtils,
|
|
9724
10369
|
importArcade,
|
|
10370
|
+
importAttributeBinsGraphic,
|
|
9725
10371
|
importBasemap,
|
|
9726
10372
|
importCamera,
|
|
9727
10373
|
importCameraLayout,
|
|
@@ -9741,16 +10387,18 @@ export {
|
|
|
9741
10387
|
importCoreUrlUtils,
|
|
9742
10388
|
importCoreWorkers,
|
|
9743
10389
|
importCoreWorkersConnection,
|
|
10390
|
+
importEditingSharedTemplatesSharedTemplateMetadata,
|
|
10391
|
+
importFormElements,
|
|
9744
10392
|
importFormElementsAttachmentElement,
|
|
9745
10393
|
importFormElementsElement,
|
|
9746
10394
|
importFormElementsFieldElement,
|
|
9747
10395
|
importFormElementsGroupElement,
|
|
10396
|
+
importFormElementsInputs,
|
|
9748
10397
|
importFormElementsInputsAttachmentsAttachmentInput,
|
|
9749
10398
|
importFormElementsInputsAttachmentsAudioInput,
|
|
9750
10399
|
importFormElementsInputsAttachmentsDocumentInput,
|
|
9751
10400
|
importFormElementsInputsAttachmentsImageInput,
|
|
9752
10401
|
importFormElementsInputsAttachmentsSignatureInput,
|
|
9753
|
-
importFormElementsInputsAttachmentsSupportInputs,
|
|
9754
10402
|
importFormElementsInputsAttachmentsVideoInput,
|
|
9755
10403
|
importFormElementsInputsBarcodeScannerInput,
|
|
9756
10404
|
importFormElementsInputsComboBoxInput,
|
|
@@ -9763,11 +10411,10 @@ export {
|
|
|
9763
10411
|
importFormElementsInputsTextBoxInput,
|
|
9764
10412
|
importFormElementsInputsTimePickerInput,
|
|
9765
10413
|
importFormElementsRelationshipElement,
|
|
9766
|
-
importFormElementsSupportInputs,
|
|
9767
10414
|
importFormElementsTextElement,
|
|
10415
|
+
importFormElementsUtilityNetworkAssociationsElement,
|
|
9768
10416
|
importFormExpressionInfo,
|
|
9769
10417
|
importFormFormTemplate,
|
|
9770
|
-
importFormSupportElements,
|
|
9771
10418
|
importGeometry,
|
|
9772
10419
|
importGeometryCircle,
|
|
9773
10420
|
importGeometryCoordinateFormatter,
|
|
@@ -9779,7 +10426,10 @@ export {
|
|
|
9779
10426
|
importGeometryMesh,
|
|
9780
10427
|
importGeometryMultipoint,
|
|
9781
10428
|
importGeometryOperatorsAffineTransformOperator,
|
|
10429
|
+
importGeometryOperatorsAlphaShapeOperator,
|
|
9782
10430
|
importGeometryOperatorsAreaOperator,
|
|
10431
|
+
importGeometryOperatorsAutoCompleteOperator,
|
|
10432
|
+
importGeometryOperatorsBoundaryOperator,
|
|
9783
10433
|
importGeometryOperatorsBufferOperator,
|
|
9784
10434
|
importGeometryOperatorsCentroidOperator,
|
|
9785
10435
|
importGeometryOperatorsClipOperator,
|
|
@@ -9792,21 +10442,38 @@ export {
|
|
|
9792
10442
|
importGeometryOperatorsDisjointOperator,
|
|
9793
10443
|
importGeometryOperatorsDistanceOperator,
|
|
9794
10444
|
importGeometryOperatorsEqualsOperator,
|
|
10445
|
+
importGeometryOperatorsExtendOperator,
|
|
9795
10446
|
importGeometryOperatorsGeneralizeOperator,
|
|
9796
10447
|
importGeometryOperatorsGeodesicBufferOperator,
|
|
10448
|
+
importGeometryOperatorsGeodesicProximityOperator,
|
|
9797
10449
|
importGeometryOperatorsGeodeticAreaOperator,
|
|
9798
10450
|
importGeometryOperatorsGeodeticDensifyOperator,
|
|
9799
10451
|
importGeometryOperatorsGeodeticDistanceOperator,
|
|
9800
10452
|
importGeometryOperatorsGeodeticLengthOperator,
|
|
9801
10453
|
importGeometryOperatorsGraphicBufferOperator,
|
|
10454
|
+
importGeometryOperatorsIntegrateOperator,
|
|
9802
10455
|
importGeometryOperatorsIntersectionOperator,
|
|
9803
10456
|
importGeometryOperatorsIntersectsOperator,
|
|
10457
|
+
importGeometryOperatorsIsNearOperator,
|
|
10458
|
+
importGeometryOperatorsLabelPointOperator,
|
|
9804
10459
|
importGeometryOperatorsLengthOperator,
|
|
10460
|
+
importGeometryOperatorsLinesToPolygonsOperator,
|
|
10461
|
+
importGeometryOperatorsLocateBetweenOperator,
|
|
10462
|
+
importGeometryOperatorsMinimumBoundingCircleOperator,
|
|
10463
|
+
importGeometryOperatorsMultiPartToSinglePartOperator,
|
|
9805
10464
|
importGeometryOperatorsOffsetOperator,
|
|
9806
10465
|
importGeometryOperatorsOverlapsOperator,
|
|
10466
|
+
importGeometryOperatorsPolygonOverlayOperator,
|
|
10467
|
+
importGeometryOperatorsPolygonSlicerOperator,
|
|
10468
|
+
importGeometryOperatorsProjectOperator,
|
|
9807
10469
|
importGeometryOperatorsProximityOperator,
|
|
9808
10470
|
importGeometryOperatorsRelateOperator,
|
|
10471
|
+
importGeometryOperatorsReshapeOperator,
|
|
10472
|
+
importGeometryOperatorsShapePreservingProjectOperator,
|
|
9809
10473
|
importGeometryOperatorsSimplifyOperator,
|
|
10474
|
+
importGeometryOperatorsSupportGeographicTransformation,
|
|
10475
|
+
importGeometryOperatorsSupportGeographicTransformationStep,
|
|
10476
|
+
importGeometryOperatorsSupportGeographicTransformationUtils,
|
|
9810
10477
|
importGeometryOperatorsSupportTransformation,
|
|
9811
10478
|
importGeometryOperatorsSymmetricDifferenceOperator,
|
|
9812
10479
|
importGeometryOperatorsTouchesOperator,
|
|
@@ -9865,10 +10532,13 @@ export {
|
|
|
9865
10532
|
importLayersIntegratedMesh3DTilesLayer,
|
|
9866
10533
|
importLayersIntegratedMeshLayer,
|
|
9867
10534
|
importLayersKMLLayer,
|
|
10535
|
+
importLayersKnowledgeGraphCypherUtils,
|
|
9868
10536
|
importLayersKnowledgeGraphKnowledgeGraphSublayer,
|
|
9869
10537
|
importLayersKnowledgeGraphLayer,
|
|
10538
|
+
importLayersKnowledgeGraphSupportUtils,
|
|
9870
10539
|
importLayersLayer,
|
|
9871
10540
|
importLayersLineOfSightLayer,
|
|
10541
|
+
importLayersLinkChartLayer,
|
|
9872
10542
|
importLayersMapImageLayer,
|
|
9873
10543
|
importLayersMapNotesLayer,
|
|
9874
10544
|
importLayersMediaLayer,
|
|
@@ -9877,6 +10547,8 @@ export {
|
|
|
9877
10547
|
importLayersOgcWfsUtils,
|
|
9878
10548
|
importLayersOpenStreetMapLayer,
|
|
9879
10549
|
importLayersOrientedImageryLayer,
|
|
10550
|
+
importLayersOrientedImageryTransformationsImageToWorld,
|
|
10551
|
+
importLayersOrientedImageryTransformationsWorldToImage,
|
|
9880
10552
|
importLayersPointCloudFiltersPointCloudBitfieldFilter,
|
|
9881
10553
|
importLayersPointCloudFiltersPointCloudFilter,
|
|
9882
10554
|
importLayersPointCloudFiltersPointCloudReturnFilter,
|
|
@@ -9893,7 +10565,10 @@ export {
|
|
|
9893
10565
|
importLayersSupportCodedValueDomain,
|
|
9894
10566
|
importLayersSupportControlPointsGeoreference,
|
|
9895
10567
|
importLayersSupportCornersGeoreference,
|
|
10568
|
+
importLayersSupportCsvUtils,
|
|
9896
10569
|
importLayersSupportDimensionalDefinition,
|
|
10570
|
+
importLayersSupportDisplayFilter,
|
|
10571
|
+
importLayersSupportDisplayFilterInfo,
|
|
9897
10572
|
importLayersSupportDomain,
|
|
9898
10573
|
importLayersSupportElevationSampler,
|
|
9899
10574
|
importLayersSupportExpressionInfo,
|
|
@@ -9921,6 +10596,7 @@ export {
|
|
|
9921
10596
|
importLayersSupportMapImage,
|
|
9922
10597
|
importLayersSupportMosaicRule,
|
|
9923
10598
|
importLayersSupportMultidimensionalSubset,
|
|
10599
|
+
importLayersSupportOrderByInfo,
|
|
9924
10600
|
importLayersSupportPixelBlock,
|
|
9925
10601
|
importLayersSupportPublishingInfo,
|
|
9926
10602
|
importLayersSupportRangeDomain,
|
|
@@ -9970,6 +10646,11 @@ export {
|
|
|
9970
10646
|
importLayersWMSLayer,
|
|
9971
10647
|
importLayersWMTSLayer,
|
|
9972
10648
|
importLayersWebTileLayer,
|
|
10649
|
+
importLinkChartChronologicalLayoutSettings,
|
|
10650
|
+
importLinkChartLayoutSettings,
|
|
10651
|
+
importLinkChartLinkChartProperties,
|
|
10652
|
+
importLinkChartNonspatialDataDisplay,
|
|
10653
|
+
importLinkChartOrganicLayoutSettings,
|
|
9973
10654
|
importMap,
|
|
9974
10655
|
importNetworksNetwork,
|
|
9975
10656
|
importNetworksSupportNamedTraceConfiguration,
|
|
@@ -10005,6 +10686,7 @@ export {
|
|
|
10005
10686
|
importPopupFieldInfo,
|
|
10006
10687
|
importPopupLayerOptions,
|
|
10007
10688
|
importPopupRelatedRecordsInfo,
|
|
10689
|
+
importPopupSupportAttachmentsOrderByInfo,
|
|
10008
10690
|
importPopupSupportFieldInfoFormat,
|
|
10009
10691
|
importPopupSupportRelatedRecordsInfoFieldOrder,
|
|
10010
10692
|
importPopupSupportUtilityNetworkAssociationType,
|
|
@@ -10082,6 +10764,7 @@ export {
|
|
|
10082
10764
|
importRestKnowledgeGraphGraphProperty,
|
|
10083
10765
|
importRestKnowledgeGraphGraphQuery,
|
|
10084
10766
|
importRestKnowledgeGraphGraphQueryResult,
|
|
10767
|
+
importRestKnowledgeGraphGraphQueryResultHeader,
|
|
10085
10768
|
importRestKnowledgeGraphGraphQueryStreaming,
|
|
10086
10769
|
importRestKnowledgeGraphGraphQueryStreamingResult,
|
|
10087
10770
|
importRestKnowledgeGraphGraphSearch,
|
|
@@ -10095,6 +10778,12 @@ export {
|
|
|
10095
10778
|
importRestKnowledgeGraphSearchIndex,
|
|
10096
10779
|
importRestKnowledgeGraphService,
|
|
10097
10780
|
importRestKnowledgeGraphServiceDefinition,
|
|
10781
|
+
importRestKnowledgeGraphSourceTypeValueBehavior,
|
|
10782
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration,
|
|
10783
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity,
|
|
10784
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter,
|
|
10785
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection,
|
|
10786
|
+
importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings,
|
|
10098
10787
|
importRestLocator,
|
|
10099
10788
|
importRestNetworkService,
|
|
10100
10789
|
importRestNetworksQueryAssociations,
|
|
@@ -10124,6 +10813,12 @@ export {
|
|
|
10124
10813
|
importRestSupportArealUnit,
|
|
10125
10814
|
importRestSupportAreasAndLengthsParameters,
|
|
10126
10815
|
importRestSupportAttachmentQuery,
|
|
10816
|
+
importRestSupportAttributeBinsFeatureSet,
|
|
10817
|
+
importRestSupportAttributeBinsGrouping,
|
|
10818
|
+
importRestSupportAttributeBinsQuery,
|
|
10819
|
+
importRestSupportAutoIntervalBinParameters,
|
|
10820
|
+
importRestSupportBaseImageMeasureParameters,
|
|
10821
|
+
importRestSupportBaseImageMeasureResult,
|
|
10127
10822
|
importRestSupportBufferParameters,
|
|
10128
10823
|
importRestSupportCameraInfo,
|
|
10129
10824
|
importRestSupportClosestFacilityParameters,
|
|
@@ -10131,6 +10826,8 @@ export {
|
|
|
10131
10826
|
importRestSupportColorRamp,
|
|
10132
10827
|
importRestSupportDataFile,
|
|
10133
10828
|
importRestSupportDataLayer,
|
|
10829
|
+
importRestSupportDateBinParameters,
|
|
10830
|
+
importRestSupportDateBinTimeInterval,
|
|
10134
10831
|
importRestSupportDensifyParameters,
|
|
10135
10832
|
importRestSupportDirectionLine,
|
|
10136
10833
|
importRestSupportDirectionPoint,
|
|
@@ -10144,6 +10841,8 @@ export {
|
|
|
10144
10841
|
importRestSupportFindImagesResult,
|
|
10145
10842
|
importRestSupportFindParameters,
|
|
10146
10843
|
importRestSupportFindResult,
|
|
10844
|
+
importRestSupportFixedBoundariesBinParameters,
|
|
10845
|
+
importRestSupportFixedIntervalBinParameters,
|
|
10147
10846
|
importRestSupportGPMessage,
|
|
10148
10847
|
importRestSupportGeneralizeParameters,
|
|
10149
10848
|
importRestSupportIdentifyParameters,
|
|
@@ -10177,6 +10876,9 @@ export {
|
|
|
10177
10876
|
importRestSupportImageToMapParameters,
|
|
10178
10877
|
importRestSupportImageUrlParameters,
|
|
10179
10878
|
importRestSupportImageUrlResult,
|
|
10879
|
+
importRestSupportImageVolume,
|
|
10880
|
+
importRestSupportImageVolumeParameters,
|
|
10881
|
+
importRestSupportImageVolumeResult,
|
|
10180
10882
|
importRestSupportJobInfo,
|
|
10181
10883
|
importRestSupportLegendLayer,
|
|
10182
10884
|
importRestSupportLengthsParameters,
|
|
@@ -10244,6 +10946,7 @@ export {
|
|
|
10244
10946
|
importSmartMappingRenderersPredominance,
|
|
10245
10947
|
importSmartMappingRenderersRelationship,
|
|
10246
10948
|
importSmartMappingRenderersSize,
|
|
10949
|
+
importSmartMappingRenderersSupportRendererUtils,
|
|
10247
10950
|
importSmartMappingRenderersType,
|
|
10248
10951
|
importSmartMappingRenderersUnivariateColorSize,
|
|
10249
10952
|
importSmartMappingStatisticsClassBreaks,
|
|
@@ -10318,12 +11021,12 @@ export {
|
|
|
10318
11021
|
importSymbolsWaterSymbol3DLayer,
|
|
10319
11022
|
importSymbolsWebStyleSymbol,
|
|
10320
11023
|
importTablesAttributeTableTemplate,
|
|
11024
|
+
importTablesElements,
|
|
10321
11025
|
importTablesElementsAttributeTableAttachmentElement,
|
|
10322
11026
|
importTablesElementsAttributeTableElement,
|
|
10323
11027
|
importTablesElementsAttributeTableFieldElement,
|
|
10324
11028
|
importTablesElementsAttributeTableGroupElement,
|
|
10325
11029
|
importTablesElementsAttributeTableRelationshipElement,
|
|
10326
|
-
importTablesSupportElements,
|
|
10327
11030
|
importTimeExtent,
|
|
10328
11031
|
importTimeInterval,
|
|
10329
11032
|
importTimeTimeExtent,
|
|
@@ -10349,7 +11052,6 @@ export {
|
|
|
10349
11052
|
importViews3dEnvironmentSunLighting,
|
|
10350
11053
|
importViews3dEnvironmentSunnyWeather,
|
|
10351
11054
|
importViews3dEnvironmentVirtualLighting,
|
|
10352
|
-
importViews3dExternalRenderers,
|
|
10353
11055
|
importViews3dSupportLayerPerformanceInfo,
|
|
10354
11056
|
importViews3dSupportSceneViewPerformanceInfo,
|
|
10355
11057
|
importViews3dWebgl,
|
|
@@ -10385,18 +11087,22 @@ export {
|
|
|
10385
11087
|
importViewsLayersFeatureLayerView,
|
|
10386
11088
|
importViewsLayersGroupLayerView,
|
|
10387
11089
|
importViewsLayersImageryLayerView,
|
|
11090
|
+
importViewsLayersImageryTileLayerView,
|
|
10388
11091
|
importViewsLayersLayerView,
|
|
10389
11092
|
importViewsLayersMediaLayerView,
|
|
10390
11093
|
importViewsLayersOGCFeatureLayerView,
|
|
10391
11094
|
importViewsLayersSceneLayerView,
|
|
10392
11095
|
importViewsLayersStreamLayerView,
|
|
10393
11096
|
importViewsLayersViewshedLayerView,
|
|
11097
|
+
importViewsLinkChartView,
|
|
10394
11098
|
importViewsMagnifier,
|
|
10395
11099
|
importViewsMapView,
|
|
10396
11100
|
importViewsNavigationGamepadGamepadSettings,
|
|
10397
11101
|
importViewsNavigationNavigation,
|
|
11102
|
+
importViewsNavigationNavigationActionMap,
|
|
10398
11103
|
importViewsSceneView,
|
|
10399
11104
|
importViewsSupportColorUtils,
|
|
11105
|
+
importViewsSupportHighlightOptions,
|
|
10400
11106
|
importViewsTheme,
|
|
10401
11107
|
importViewsUiDefaultUI,
|
|
10402
11108
|
importViewsUiUI,
|
|
@@ -10404,6 +11110,7 @@ export {
|
|
|
10404
11110
|
importViewsView2D,
|
|
10405
11111
|
importViewsViewAnimation,
|
|
10406
11112
|
importWebDocument2D,
|
|
11113
|
+
importWebLinkChart,
|
|
10407
11114
|
importWebMap,
|
|
10408
11115
|
importWebScene,
|
|
10409
11116
|
importWebdocApplicationPropertiesSearch,
|
|
@@ -10435,7 +11142,9 @@ export {
|
|
|
10435
11142
|
importWebsceneInitialViewProperties,
|
|
10436
11143
|
importWebscenePresentation,
|
|
10437
11144
|
importWebsceneSlide,
|
|
11145
|
+
importWebsceneSlideLegendInfo,
|
|
10438
11146
|
importWebsceneSunLighting,
|
|
11147
|
+
importWebsceneSupportSlideElements,
|
|
10439
11148
|
importWebsceneVirtualLighting,
|
|
10440
11149
|
importWidgetsAreaMeasurement2D,
|
|
10441
11150
|
importWidgetsAreaMeasurement2DAreaMeasurement2DViewModel,
|
|
@@ -10505,6 +11214,8 @@ export {
|
|
|
10505
11214
|
importWidgetsFeatureFormFieldInput,
|
|
10506
11215
|
importWidgetsFeatureFormGroupInput,
|
|
10507
11216
|
importWidgetsFeatureFormRelationshipInput,
|
|
11217
|
+
importWidgetsFeatureFormTextElementInput,
|
|
11218
|
+
importWidgetsFeatureFormUtilityNetworkAssociationInput,
|
|
10508
11219
|
importWidgetsFeatureTable,
|
|
10509
11220
|
importWidgetsFeatureTableActionColumn,
|
|
10510
11221
|
importWidgetsFeatureTableAttachmentsColumn,
|
|
@@ -10516,10 +11227,12 @@ export {
|
|
|
10516
11227
|
importWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
10517
11228
|
importWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
10518
11229
|
importWidgetsFeatureTableRelationshipColumn,
|
|
11230
|
+
importWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
10519
11231
|
importWidgetsFeatureTableSupportColumnTemplate,
|
|
10520
11232
|
importWidgetsFeatureTableSupportColumnTemplateBase,
|
|
10521
11233
|
importWidgetsFeatureTableSupportFieldColumnTemplate,
|
|
10522
11234
|
importWidgetsFeatureTableSupportGroupColumnTemplate,
|
|
11235
|
+
importWidgetsFeatureTableSupportRelationshipColumnTemplate,
|
|
10523
11236
|
importWidgetsFeatureTableSupportTableTemplate,
|
|
10524
11237
|
importWidgetsFeatureTemplates,
|
|
10525
11238
|
importWidgetsFeatureTemplatesFeatureTemplatesViewModel,
|
|
@@ -10547,6 +11260,7 @@ export {
|
|
|
10547
11260
|
importWidgetsLineOfSight,
|
|
10548
11261
|
importWidgetsLineOfSightLineOfSightTarget,
|
|
10549
11262
|
importWidgetsLineOfSightLineOfSightViewModel,
|
|
11263
|
+
importWidgetsLinkChartLayoutSwitcherLinkChartLayoutSwitcherViewModel,
|
|
10550
11264
|
importWidgetsLocate,
|
|
10551
11265
|
importWidgetsLocateLocateViewModel,
|
|
10552
11266
|
importWidgetsMeasurement,
|
|
@@ -10604,6 +11318,7 @@ export {
|
|
|
10604
11318
|
importWidgetsSupportGridControlsGridControlsViewModel,
|
|
10605
11319
|
importWidgetsSupportSnappingControls,
|
|
10606
11320
|
importWidgetsSupportSnappingControlsSnappingControlsViewModel,
|
|
11321
|
+
importWidgetsSupportUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
10607
11322
|
importWidgetsSupportWidget,
|
|
10608
11323
|
importWidgetsSwipe,
|
|
10609
11324
|
importWidgetsSwipeSwipeViewModel,
|
|
@@ -10619,6 +11334,7 @@ export {
|
|
|
10619
11334
|
importWidgetsUtilityNetworkAssociations,
|
|
10620
11335
|
importWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
10621
11336
|
importWidgetsUtilityNetworkTrace,
|
|
11337
|
+
importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel,
|
|
10622
11338
|
importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel,
|
|
10623
11339
|
importWidgetsUtilityNetworkValidateTopology,
|
|
10624
11340
|
importWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel,
|
|
@@ -10648,6 +11364,7 @@ export {
|
|
|
10648
11364
|
newAnalysisSlicePlane,
|
|
10649
11365
|
newAnalysisViewshed,
|
|
10650
11366
|
newAnalysisViewshedAnalysis,
|
|
11367
|
+
newAttributeBinsGraphic,
|
|
10651
11368
|
newBasemap,
|
|
10652
11369
|
newCamera,
|
|
10653
11370
|
newCameraLayout,
|
|
@@ -10679,6 +11396,7 @@ export {
|
|
|
10679
11396
|
newFormElementsInputsTimePickerInput,
|
|
10680
11397
|
newFormElementsRelationshipElement,
|
|
10681
11398
|
newFormElementsTextElement,
|
|
11399
|
+
newFormElementsUtilityNetworkAssociationsElement,
|
|
10682
11400
|
newFormExpressionInfo,
|
|
10683
11401
|
newFormFormTemplate,
|
|
10684
11402
|
newGeometryCircle,
|
|
@@ -10687,6 +11405,8 @@ export {
|
|
|
10687
11405
|
newGeometryHeightModelInfo,
|
|
10688
11406
|
newGeometryMesh,
|
|
10689
11407
|
newGeometryMultipoint,
|
|
11408
|
+
newGeometryOperatorsSupportGeographicTransformation,
|
|
11409
|
+
newGeometryOperatorsSupportGeographicTransformationStep,
|
|
10690
11410
|
newGeometryOperatorsSupportTransformation,
|
|
10691
11411
|
newGeometryPoint,
|
|
10692
11412
|
newGeometryPolygon,
|
|
@@ -10735,6 +11455,7 @@ export {
|
|
|
10735
11455
|
newLayersKnowledgeGraphLayer,
|
|
10736
11456
|
newLayersLayer,
|
|
10737
11457
|
newLayersLineOfSightLayer,
|
|
11458
|
+
newLayersLinkChartLayer,
|
|
10738
11459
|
newLayersMapImageLayer,
|
|
10739
11460
|
newLayersMapNotesLayer,
|
|
10740
11461
|
newLayersMediaLayer,
|
|
@@ -10757,6 +11478,8 @@ export {
|
|
|
10757
11478
|
newLayersSupportControlPointsGeoreference,
|
|
10758
11479
|
newLayersSupportCornersGeoreference,
|
|
10759
11480
|
newLayersSupportDimensionalDefinition,
|
|
11481
|
+
newLayersSupportDisplayFilter,
|
|
11482
|
+
newLayersSupportDisplayFilterInfo,
|
|
10760
11483
|
newLayersSupportDomain,
|
|
10761
11484
|
newLayersSupportElevationSampler,
|
|
10762
11485
|
newLayersSupportExpressionInfo,
|
|
@@ -10783,6 +11506,7 @@ export {
|
|
|
10783
11506
|
newLayersSupportMapImage,
|
|
10784
11507
|
newLayersSupportMosaicRule,
|
|
10785
11508
|
newLayersSupportMultidimensionalSubset,
|
|
11509
|
+
newLayersSupportOrderByInfo,
|
|
10786
11510
|
newLayersSupportPixelBlock,
|
|
10787
11511
|
newLayersSupportPublishingInfo,
|
|
10788
11512
|
newLayersSupportRangeDomain,
|
|
@@ -10827,6 +11551,11 @@ export {
|
|
|
10827
11551
|
newLayersWMSLayer,
|
|
10828
11552
|
newLayersWMTSLayer,
|
|
10829
11553
|
newLayersWebTileLayer,
|
|
11554
|
+
newLinkChartChronologicalLayoutSettings,
|
|
11555
|
+
newLinkChartLayoutSettings,
|
|
11556
|
+
newLinkChartLinkChartProperties,
|
|
11557
|
+
newLinkChartNonspatialDataDisplay,
|
|
11558
|
+
newLinkChartOrganicLayoutSettings,
|
|
10830
11559
|
newMap,
|
|
10831
11560
|
newNetworksNetwork,
|
|
10832
11561
|
newNetworksSupportNamedTraceConfiguration,
|
|
@@ -10860,8 +11589,10 @@ export {
|
|
|
10860
11589
|
newPopupFieldInfo,
|
|
10861
11590
|
newPopupLayerOptions,
|
|
10862
11591
|
newPopupRelatedRecordsInfo,
|
|
11592
|
+
newPopupSupportAttachmentsOrderByInfo,
|
|
10863
11593
|
newPopupSupportFieldInfoFormat,
|
|
10864
11594
|
newPopupSupportRelatedRecordsInfoFieldOrder,
|
|
11595
|
+
newPopupSupportUtilityNetworkAssociationType,
|
|
10865
11596
|
newPopupTemplate,
|
|
10866
11597
|
newPortalPortal,
|
|
10867
11598
|
newPortalPortalFolder,
|
|
@@ -10923,6 +11654,7 @@ export {
|
|
|
10923
11654
|
newRestKnowledgeGraphGraphProperty,
|
|
10924
11655
|
newRestKnowledgeGraphGraphQuery,
|
|
10925
11656
|
newRestKnowledgeGraphGraphQueryResult,
|
|
11657
|
+
newRestKnowledgeGraphGraphQueryResultHeader,
|
|
10926
11658
|
newRestKnowledgeGraphGraphQueryStreaming,
|
|
10927
11659
|
newRestKnowledgeGraphGraphQueryStreamingResult,
|
|
10928
11660
|
newRestKnowledgeGraphGraphSearch,
|
|
@@ -10935,6 +11667,12 @@ export {
|
|
|
10935
11667
|
newRestKnowledgeGraphRelationshipType,
|
|
10936
11668
|
newRestKnowledgeGraphSearchIndex,
|
|
10937
11669
|
newRestKnowledgeGraphServiceDefinition,
|
|
11670
|
+
newRestKnowledgeGraphSourceTypeValueBehavior,
|
|
11671
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration,
|
|
11672
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity,
|
|
11673
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter,
|
|
11674
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection,
|
|
11675
|
+
newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings,
|
|
10938
11676
|
newRestNetworksSupportAggregatedGeometry,
|
|
10939
11677
|
newRestNetworksSupportAssociation,
|
|
10940
11678
|
newRestNetworksSupportAssociationGeometriesResult,
|
|
@@ -10953,6 +11691,12 @@ export {
|
|
|
10953
11691
|
newRestSupportArealUnit,
|
|
10954
11692
|
newRestSupportAreasAndLengthsParameters,
|
|
10955
11693
|
newRestSupportAttachmentQuery,
|
|
11694
|
+
newRestSupportAttributeBinsFeatureSet,
|
|
11695
|
+
newRestSupportAttributeBinsGrouping,
|
|
11696
|
+
newRestSupportAttributeBinsQuery,
|
|
11697
|
+
newRestSupportAutoIntervalBinParameters,
|
|
11698
|
+
newRestSupportBaseImageMeasureParameters,
|
|
11699
|
+
newRestSupportBaseImageMeasureResult,
|
|
10956
11700
|
newRestSupportBufferParameters,
|
|
10957
11701
|
newRestSupportCameraInfo,
|
|
10958
11702
|
newRestSupportClosestFacilityParameters,
|
|
@@ -10960,6 +11704,8 @@ export {
|
|
|
10960
11704
|
newRestSupportColorRamp,
|
|
10961
11705
|
newRestSupportDataFile,
|
|
10962
11706
|
newRestSupportDataLayer,
|
|
11707
|
+
newRestSupportDateBinParameters,
|
|
11708
|
+
newRestSupportDateBinTimeInterval,
|
|
10963
11709
|
newRestSupportDensifyParameters,
|
|
10964
11710
|
newRestSupportDirectionLine,
|
|
10965
11711
|
newRestSupportDirectionPoint,
|
|
@@ -10973,6 +11719,8 @@ export {
|
|
|
10973
11719
|
newRestSupportFindImagesResult,
|
|
10974
11720
|
newRestSupportFindParameters,
|
|
10975
11721
|
newRestSupportFindResult,
|
|
11722
|
+
newRestSupportFixedBoundariesBinParameters,
|
|
11723
|
+
newRestSupportFixedIntervalBinParameters,
|
|
10976
11724
|
newRestSupportGPMessage,
|
|
10977
11725
|
newRestSupportGeneralizeParameters,
|
|
10978
11726
|
newRestSupportIdentifyParameters,
|
|
@@ -11006,6 +11754,9 @@ export {
|
|
|
11006
11754
|
newRestSupportImageToMapParameters,
|
|
11007
11755
|
newRestSupportImageUrlParameters,
|
|
11008
11756
|
newRestSupportImageUrlResult,
|
|
11757
|
+
newRestSupportImageVolume,
|
|
11758
|
+
newRestSupportImageVolumeParameters,
|
|
11759
|
+
newRestSupportImageVolumeResult,
|
|
11009
11760
|
newRestSupportJobInfo,
|
|
11010
11761
|
newRestSupportLegendLayer,
|
|
11011
11762
|
newRestSupportLengthsParameters,
|
|
@@ -11148,17 +11899,21 @@ export {
|
|
|
11148
11899
|
newViewsLayersFeatureLayerView,
|
|
11149
11900
|
newViewsLayersGroupLayerView,
|
|
11150
11901
|
newViewsLayersImageryLayerView,
|
|
11902
|
+
newViewsLayersImageryTileLayerView,
|
|
11151
11903
|
newViewsLayersLayerView,
|
|
11152
11904
|
newViewsLayersMediaLayerView,
|
|
11153
11905
|
newViewsLayersOGCFeatureLayerView,
|
|
11154
11906
|
newViewsLayersSceneLayerView,
|
|
11155
11907
|
newViewsLayersStreamLayerView,
|
|
11156
11908
|
newViewsLayersViewshedLayerView,
|
|
11909
|
+
newViewsLinkChartView,
|
|
11157
11910
|
newViewsMagnifier,
|
|
11158
11911
|
newViewsMapView,
|
|
11159
11912
|
newViewsNavigationGamepadGamepadSettings,
|
|
11160
11913
|
newViewsNavigationNavigation,
|
|
11914
|
+
newViewsNavigationNavigationActionMap,
|
|
11161
11915
|
newViewsSceneView,
|
|
11916
|
+
newViewsSupportHighlightOptions,
|
|
11162
11917
|
newViewsTheme,
|
|
11163
11918
|
newViewsUiDefaultUI,
|
|
11164
11919
|
newViewsUiUI,
|
|
@@ -11166,6 +11921,7 @@ export {
|
|
|
11166
11921
|
newViewsView2D,
|
|
11167
11922
|
newViewsViewAnimation,
|
|
11168
11923
|
newWebDocument2D,
|
|
11924
|
+
newWebLinkChart,
|
|
11169
11925
|
newWebMap,
|
|
11170
11926
|
newWebScene,
|
|
11171
11927
|
newWebdocApplicationPropertiesSearch,
|
|
@@ -11197,6 +11953,7 @@ export {
|
|
|
11197
11953
|
newWebsceneInitialViewProperties,
|
|
11198
11954
|
newWebscenePresentation,
|
|
11199
11955
|
newWebsceneSlide,
|
|
11956
|
+
newWebsceneSlideLegendInfo,
|
|
11200
11957
|
newWebsceneSunLighting,
|
|
11201
11958
|
newWebsceneVirtualLighting,
|
|
11202
11959
|
newWidgetsAreaMeasurement2D,
|
|
@@ -11266,6 +12023,8 @@ export {
|
|
|
11266
12023
|
newWidgetsFeatureFormFieldInput,
|
|
11267
12024
|
newWidgetsFeatureFormGroupInput,
|
|
11268
12025
|
newWidgetsFeatureFormRelationshipInput,
|
|
12026
|
+
newWidgetsFeatureFormTextElementInput,
|
|
12027
|
+
newWidgetsFeatureFormUtilityNetworkAssociationInput,
|
|
11269
12028
|
newWidgetsFeatureTable,
|
|
11270
12029
|
newWidgetsFeatureTableActionColumn,
|
|
11271
12030
|
newWidgetsFeatureTableAttachmentsColumn,
|
|
@@ -11277,10 +12036,12 @@ export {
|
|
|
11277
12036
|
newWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
11278
12037
|
newWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
11279
12038
|
newWidgetsFeatureTableRelationshipColumn,
|
|
12039
|
+
newWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
11280
12040
|
newWidgetsFeatureTableSupportColumnTemplate,
|
|
11281
12041
|
newWidgetsFeatureTableSupportColumnTemplateBase,
|
|
11282
12042
|
newWidgetsFeatureTableSupportFieldColumnTemplate,
|
|
11283
12043
|
newWidgetsFeatureTableSupportGroupColumnTemplate,
|
|
12044
|
+
newWidgetsFeatureTableSupportRelationshipColumnTemplate,
|
|
11284
12045
|
newWidgetsFeatureTableSupportTableTemplate,
|
|
11285
12046
|
newWidgetsFeatureTemplates,
|
|
11286
12047
|
newWidgetsFeatureTemplatesFeatureTemplatesViewModel,
|
|
@@ -11308,6 +12069,7 @@ export {
|
|
|
11308
12069
|
newWidgetsLineOfSight,
|
|
11309
12070
|
newWidgetsLineOfSightLineOfSightTarget,
|
|
11310
12071
|
newWidgetsLineOfSightLineOfSightViewModel,
|
|
12072
|
+
newWidgetsLinkChartLayoutSwitcherLinkChartLayoutSwitcherViewModel,
|
|
11311
12073
|
newWidgetsLocate,
|
|
11312
12074
|
newWidgetsLocateLocateViewModel,
|
|
11313
12075
|
newWidgetsMeasurement,
|
|
@@ -11378,6 +12140,7 @@ export {
|
|
|
11378
12140
|
newWidgetsUtilityNetworkAssociations,
|
|
11379
12141
|
newWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
11380
12142
|
newWidgetsUtilityNetworkTrace,
|
|
12143
|
+
newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel,
|
|
11381
12144
|
newWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel,
|
|
11382
12145
|
newWidgetsUtilityNetworkValidateTopology,
|
|
11383
12146
|
newWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel,
|