@arcgis/core-adapter 4.32.0-next.11 → 4.32.0-next.111
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1054 -196
- package/dist/index.d.cts +151 -41
- package/dist/index.d.ts +151 -41
- package/dist/index.js +932 -184
- 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 -11392
- package/support/api-reference-esm-imports.json +0 -940
- package/support/arcgis.d.ts +0 -145324
- 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");
|
|
@@ -1656,17 +1744,6 @@ async function newLayersSupportPublishingInfo(properties) {
|
|
|
1656
1744
|
const ModConstructor = await importLayersSupportPublishingInfo();
|
|
1657
1745
|
return new ModConstructor(properties);
|
|
1658
1746
|
}
|
|
1659
|
-
async function importLayersSupportSceneFilter() {
|
|
1660
|
-
if (isAMD) {
|
|
1661
|
-
return await window.$arcgis.import("esri/layers/support/SceneFilter");
|
|
1662
|
-
}
|
|
1663
|
-
const module = await import("@arcgis/core/layers/support/SceneFilter.js");
|
|
1664
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1665
|
-
}
|
|
1666
|
-
async function newLayersSupportSceneFilter(properties) {
|
|
1667
|
-
const ModConstructor = await importLayersSupportSceneFilter();
|
|
1668
|
-
return new ModConstructor(properties);
|
|
1669
|
-
}
|
|
1670
1747
|
async function importLayersSupportRangeDomain() {
|
|
1671
1748
|
if (isAMD) {
|
|
1672
1749
|
return await window.$arcgis.import("esri/layers/support/RangeDomain");
|
|
@@ -1755,6 +1832,17 @@ async function newLayersSupportRouteSymbols(properties) {
|
|
|
1755
1832
|
const ModConstructor = await importLayersSupportRouteSymbols();
|
|
1756
1833
|
return new ModConstructor(properties);
|
|
1757
1834
|
}
|
|
1835
|
+
async function importLayersSupportSceneFilter() {
|
|
1836
|
+
if (isAMD) {
|
|
1837
|
+
return await window.$arcgis.import("esri/layers/support/SceneFilter");
|
|
1838
|
+
}
|
|
1839
|
+
const module = await import("@arcgis/core/layers/support/SceneFilter.js");
|
|
1840
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1841
|
+
}
|
|
1842
|
+
async function newLayersSupportSceneFilter(properties) {
|
|
1843
|
+
const ModConstructor = await importLayersSupportSceneFilter();
|
|
1844
|
+
return new ModConstructor(properties);
|
|
1845
|
+
}
|
|
1758
1846
|
async function importLayersSupportSceneModification() {
|
|
1759
1847
|
if (isAMD) {
|
|
1760
1848
|
return await window.$arcgis.import("esri/layers/support/SceneModification");
|
|
@@ -2030,26 +2118,26 @@ async function newLayersUnsupportedLayer(properties) {
|
|
|
2030
2118
|
const ModConstructor = await importLayersUnsupportedLayer();
|
|
2031
2119
|
return new ModConstructor(properties);
|
|
2032
2120
|
}
|
|
2033
|
-
async function
|
|
2121
|
+
async function importLayersVectorTileLayer() {
|
|
2034
2122
|
if (isAMD) {
|
|
2035
|
-
return await window.$arcgis.import("esri/layers/
|
|
2123
|
+
return await window.$arcgis.import("esri/layers/VectorTileLayer");
|
|
2036
2124
|
}
|
|
2037
|
-
const module = await import("@arcgis/core/layers/
|
|
2125
|
+
const module = await import("@arcgis/core/layers/VectorTileLayer.js");
|
|
2038
2126
|
return isDefaultModule(module) ? module.default : module;
|
|
2039
2127
|
}
|
|
2040
|
-
async function
|
|
2041
|
-
const ModConstructor = await
|
|
2128
|
+
async function newLayersVectorTileLayer(properties) {
|
|
2129
|
+
const ModConstructor = await importLayersVectorTileLayer();
|
|
2042
2130
|
return new ModConstructor(properties);
|
|
2043
2131
|
}
|
|
2044
|
-
async function
|
|
2132
|
+
async function importLayersVideoLayer() {
|
|
2045
2133
|
if (isAMD) {
|
|
2046
|
-
return await window.$arcgis.import("esri/layers/
|
|
2134
|
+
return await window.$arcgis.import("esri/layers/VideoLayer");
|
|
2047
2135
|
}
|
|
2048
|
-
const module = await import("@arcgis/core/layers/
|
|
2136
|
+
const module = await import("@arcgis/core/layers/VideoLayer.js");
|
|
2049
2137
|
return isDefaultModule(module) ? module.default : module;
|
|
2050
2138
|
}
|
|
2051
|
-
async function
|
|
2052
|
-
const ModConstructor = await
|
|
2139
|
+
async function newLayersVideoLayer(properties) {
|
|
2140
|
+
const ModConstructor = await importLayersVideoLayer();
|
|
2053
2141
|
return new ModConstructor(properties);
|
|
2054
2142
|
}
|
|
2055
2143
|
async function importLayersVoxelLayer() {
|
|
@@ -2118,6 +2206,61 @@ async function newLayersWMTSLayer(properties) {
|
|
|
2118
2206
|
const ModConstructor = await importLayersWMTSLayer();
|
|
2119
2207
|
return new ModConstructor(properties);
|
|
2120
2208
|
}
|
|
2209
|
+
async function importLinkChartChronologicalLayoutSettings() {
|
|
2210
|
+
if (isAMD) {
|
|
2211
|
+
return await window.$arcgis.import("esri/linkChart/ChronologicalLayoutSettings");
|
|
2212
|
+
}
|
|
2213
|
+
const module = await import("@arcgis/core/linkChart/ChronologicalLayoutSettings.js");
|
|
2214
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2215
|
+
}
|
|
2216
|
+
async function newLinkChartChronologicalLayoutSettings(properties) {
|
|
2217
|
+
const ModConstructor = await importLinkChartChronologicalLayoutSettings();
|
|
2218
|
+
return new ModConstructor(properties);
|
|
2219
|
+
}
|
|
2220
|
+
async function importLinkChartLayoutSettings() {
|
|
2221
|
+
if (isAMD) {
|
|
2222
|
+
return await window.$arcgis.import("esri/linkChart/LayoutSettings");
|
|
2223
|
+
}
|
|
2224
|
+
const module = await import("@arcgis/core/linkChart/LayoutSettings.js");
|
|
2225
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2226
|
+
}
|
|
2227
|
+
async function newLinkChartLayoutSettings(properties) {
|
|
2228
|
+
const ModConstructor = await importLinkChartLayoutSettings();
|
|
2229
|
+
return new ModConstructor(properties);
|
|
2230
|
+
}
|
|
2231
|
+
async function importLinkChartLinkChartProperties() {
|
|
2232
|
+
if (isAMD) {
|
|
2233
|
+
return await window.$arcgis.import("esri/linkChart/LinkChartProperties");
|
|
2234
|
+
}
|
|
2235
|
+
const module = await import("@arcgis/core/linkChart/LinkChartProperties.js");
|
|
2236
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2237
|
+
}
|
|
2238
|
+
async function newLinkChartLinkChartProperties(properties) {
|
|
2239
|
+
const ModConstructor = await importLinkChartLinkChartProperties();
|
|
2240
|
+
return new ModConstructor(properties);
|
|
2241
|
+
}
|
|
2242
|
+
async function importLinkChartNonspatialDataDisplay() {
|
|
2243
|
+
if (isAMD) {
|
|
2244
|
+
return await window.$arcgis.import("esri/linkChart/NonspatialDataDisplay");
|
|
2245
|
+
}
|
|
2246
|
+
const module = await import("@arcgis/core/linkChart/NonspatialDataDisplay.js");
|
|
2247
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2248
|
+
}
|
|
2249
|
+
async function newLinkChartNonspatialDataDisplay(properties) {
|
|
2250
|
+
const ModConstructor = await importLinkChartNonspatialDataDisplay();
|
|
2251
|
+
return new ModConstructor(properties);
|
|
2252
|
+
}
|
|
2253
|
+
async function importLinkChartOrganicLayoutSettings() {
|
|
2254
|
+
if (isAMD) {
|
|
2255
|
+
return await window.$arcgis.import("esri/linkChart/OrganicLayoutSettings");
|
|
2256
|
+
}
|
|
2257
|
+
const module = await import("@arcgis/core/linkChart/OrganicLayoutSettings.js");
|
|
2258
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2259
|
+
}
|
|
2260
|
+
async function newLinkChartOrganicLayoutSettings(properties) {
|
|
2261
|
+
const ModConstructor = await importLinkChartOrganicLayoutSettings();
|
|
2262
|
+
return new ModConstructor(properties);
|
|
2263
|
+
}
|
|
2121
2264
|
async function importMap() {
|
|
2122
2265
|
if (isAMD) {
|
|
2123
2266
|
return await window.$arcgis.import("esri/Map");
|
|
@@ -2503,6 +2646,17 @@ async function newPopupSupportRelatedRecordsInfoFieldOrder(properties) {
|
|
|
2503
2646
|
const ModConstructor = await importPopupSupportRelatedRecordsInfoFieldOrder();
|
|
2504
2647
|
return new ModConstructor(properties);
|
|
2505
2648
|
}
|
|
2649
|
+
async function importPopupSupportUtilityNetworkAssociationType() {
|
|
2650
|
+
if (isAMD) {
|
|
2651
|
+
return await window.$arcgis.import("esri/popup/support/UtilityNetworkAssociationType");
|
|
2652
|
+
}
|
|
2653
|
+
const module = await import("@arcgis/core/popup/support/UtilityNetworkAssociationType.js");
|
|
2654
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2655
|
+
}
|
|
2656
|
+
async function newPopupSupportUtilityNetworkAssociationType(properties) {
|
|
2657
|
+
const ModConstructor = await importPopupSupportUtilityNetworkAssociationType();
|
|
2658
|
+
return new ModConstructor(properties);
|
|
2659
|
+
}
|
|
2506
2660
|
async function importPopupTemplate() {
|
|
2507
2661
|
if (isAMD) {
|
|
2508
2662
|
return await window.$arcgis.import("esri/PopupTemplate");
|
|
@@ -3174,6 +3328,17 @@ async function newRestKnowledgeGraphGraphQueryResult(properties) {
|
|
|
3174
3328
|
const ModConstructor = await importRestKnowledgeGraphGraphQueryResult();
|
|
3175
3329
|
return new ModConstructor(properties);
|
|
3176
3330
|
}
|
|
3331
|
+
async function importRestKnowledgeGraphGraphQueryResultHeader() {
|
|
3332
|
+
if (isAMD) {
|
|
3333
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryResultHeader");
|
|
3334
|
+
}
|
|
3335
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphQueryResultHeader.js");
|
|
3336
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3337
|
+
}
|
|
3338
|
+
async function newRestKnowledgeGraphGraphQueryResultHeader(properties) {
|
|
3339
|
+
const ModConstructor = await importRestKnowledgeGraphGraphQueryResultHeader();
|
|
3340
|
+
return new ModConstructor(properties);
|
|
3341
|
+
}
|
|
3177
3342
|
async function importRestKnowledgeGraphGraphQueryStreaming() {
|
|
3178
3343
|
if (isAMD) {
|
|
3179
3344
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryStreaming");
|
|
@@ -3306,6 +3471,72 @@ async function newRestKnowledgeGraphServiceDefinition(properties) {
|
|
|
3306
3471
|
const ModConstructor = await importRestKnowledgeGraphServiceDefinition();
|
|
3307
3472
|
return new ModConstructor(properties);
|
|
3308
3473
|
}
|
|
3474
|
+
async function importRestKnowledgeGraphSourceTypeValueBehavior() {
|
|
3475
|
+
if (isAMD) {
|
|
3476
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/SourceTypeValueBehavior");
|
|
3477
|
+
}
|
|
3478
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/SourceTypeValueBehavior.js");
|
|
3479
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3480
|
+
}
|
|
3481
|
+
async function newRestKnowledgeGraphSourceTypeValueBehavior(properties) {
|
|
3482
|
+
const ModConstructor = await importRestKnowledgeGraphSourceTypeValueBehavior();
|
|
3483
|
+
return new ModConstructor(properties);
|
|
3484
|
+
}
|
|
3485
|
+
async function importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration() {
|
|
3486
|
+
if (isAMD) {
|
|
3487
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsConfiguration");
|
|
3488
|
+
}
|
|
3489
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsConfiguration.js");
|
|
3490
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3491
|
+
}
|
|
3492
|
+
async function newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration(properties) {
|
|
3493
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration();
|
|
3494
|
+
return new ModConstructor(properties);
|
|
3495
|
+
}
|
|
3496
|
+
async function importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity() {
|
|
3497
|
+
if (isAMD) {
|
|
3498
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsEntity");
|
|
3499
|
+
}
|
|
3500
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsEntity.js");
|
|
3501
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3502
|
+
}
|
|
3503
|
+
async function newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity(properties) {
|
|
3504
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity();
|
|
3505
|
+
return new ModConstructor(properties);
|
|
3506
|
+
}
|
|
3507
|
+
async function importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter() {
|
|
3508
|
+
if (isAMD) {
|
|
3509
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsPathFilter");
|
|
3510
|
+
}
|
|
3511
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/CIMFilteredFindPathsPathFilter.js");
|
|
3512
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3513
|
+
}
|
|
3514
|
+
async function newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter(properties) {
|
|
3515
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter();
|
|
3516
|
+
return new ModConstructor(properties);
|
|
3517
|
+
}
|
|
3518
|
+
async function importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection() {
|
|
3519
|
+
if (isAMD) {
|
|
3520
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/CIMKGTraversalDirection");
|
|
3521
|
+
}
|
|
3522
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/CIMKGTraversalDirection.js");
|
|
3523
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3524
|
+
}
|
|
3525
|
+
async function newRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection(properties) {
|
|
3526
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection();
|
|
3527
|
+
return new ModConstructor(properties);
|
|
3528
|
+
}
|
|
3529
|
+
async function importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings() {
|
|
3530
|
+
if (isAMD) {
|
|
3531
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/toolService/findPaths/FindPathsToolSettings");
|
|
3532
|
+
}
|
|
3533
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/toolService/findPaths/FindPathsToolSettings.js");
|
|
3534
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3535
|
+
}
|
|
3536
|
+
async function newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings(properties) {
|
|
3537
|
+
const ModConstructor = await importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings();
|
|
3538
|
+
return new ModConstructor(properties);
|
|
3539
|
+
}
|
|
3309
3540
|
async function importRestNetworksSupportAggregatedGeometry() {
|
|
3310
3541
|
if (isAMD) {
|
|
3311
3542
|
return await window.$arcgis.import("esri/rest/networks/support/AggregatedGeometry");
|
|
@@ -3460,6 +3691,94 @@ async function newRestSupportAddressCandidate(properties) {
|
|
|
3460
3691
|
const ModConstructor = await importRestSupportAddressCandidate();
|
|
3461
3692
|
return new ModConstructor(properties);
|
|
3462
3693
|
}
|
|
3694
|
+
async function importRestSupportAttributeBinsFeatureSet() {
|
|
3695
|
+
if (isAMD) {
|
|
3696
|
+
return await window.$arcgis.import("esri/rest/support/AttributeBinsFeatureSet");
|
|
3697
|
+
}
|
|
3698
|
+
const module = await import("@arcgis/core/rest/support/AttributeBinsFeatureSet.js");
|
|
3699
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3700
|
+
}
|
|
3701
|
+
async function newRestSupportAttributeBinsFeatureSet(properties) {
|
|
3702
|
+
const ModConstructor = await importRestSupportAttributeBinsFeatureSet();
|
|
3703
|
+
return new ModConstructor(properties);
|
|
3704
|
+
}
|
|
3705
|
+
async function importRestSupportAttributeBinsQuery() {
|
|
3706
|
+
if (isAMD) {
|
|
3707
|
+
return await window.$arcgis.import("esri/rest/support/AttributeBinsQuery");
|
|
3708
|
+
}
|
|
3709
|
+
const module = await import("@arcgis/core/rest/support/AttributeBinsQuery.js");
|
|
3710
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3711
|
+
}
|
|
3712
|
+
async function newRestSupportAttributeBinsQuery(properties) {
|
|
3713
|
+
const ModConstructor = await importRestSupportAttributeBinsQuery();
|
|
3714
|
+
return new ModConstructor(properties);
|
|
3715
|
+
}
|
|
3716
|
+
async function importRestSupportAttributeBinsGrouping() {
|
|
3717
|
+
if (isAMD) {
|
|
3718
|
+
return await window.$arcgis.import("esri/rest/support/AttributeBinsGrouping");
|
|
3719
|
+
}
|
|
3720
|
+
const module = await import("@arcgis/core/rest/support/AttributeBinsGrouping.js");
|
|
3721
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3722
|
+
}
|
|
3723
|
+
async function newRestSupportAttributeBinsGrouping(properties) {
|
|
3724
|
+
const ModConstructor = await importRestSupportAttributeBinsGrouping();
|
|
3725
|
+
return new ModConstructor(properties);
|
|
3726
|
+
}
|
|
3727
|
+
async function importRestSupportAutoIntervalBinParameters() {
|
|
3728
|
+
if (isAMD) {
|
|
3729
|
+
return await window.$arcgis.import("esri/rest/support/AutoIntervalBinParameters");
|
|
3730
|
+
}
|
|
3731
|
+
const module = await import("@arcgis/core/rest/support/AutoIntervalBinParameters.js");
|
|
3732
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3733
|
+
}
|
|
3734
|
+
async function newRestSupportAutoIntervalBinParameters(properties) {
|
|
3735
|
+
const ModConstructor = await importRestSupportAutoIntervalBinParameters();
|
|
3736
|
+
return new ModConstructor(properties);
|
|
3737
|
+
}
|
|
3738
|
+
async function importRestSupportFixedBoundariesBinParameters() {
|
|
3739
|
+
if (isAMD) {
|
|
3740
|
+
return await window.$arcgis.import("esri/rest/support/FixedBoundariesBinParameters");
|
|
3741
|
+
}
|
|
3742
|
+
const module = await import("@arcgis/core/rest/support/FixedBoundariesBinParameters.js");
|
|
3743
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3744
|
+
}
|
|
3745
|
+
async function newRestSupportFixedBoundariesBinParameters(properties) {
|
|
3746
|
+
const ModConstructor = await importRestSupportFixedBoundariesBinParameters();
|
|
3747
|
+
return new ModConstructor(properties);
|
|
3748
|
+
}
|
|
3749
|
+
async function importRestSupportFixedIntervalBinParameters() {
|
|
3750
|
+
if (isAMD) {
|
|
3751
|
+
return await window.$arcgis.import("esri/rest/support/FixedIntervalBinParameters");
|
|
3752
|
+
}
|
|
3753
|
+
const module = await import("@arcgis/core/rest/support/FixedIntervalBinParameters.js");
|
|
3754
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3755
|
+
}
|
|
3756
|
+
async function newRestSupportFixedIntervalBinParameters(properties) {
|
|
3757
|
+
const ModConstructor = await importRestSupportFixedIntervalBinParameters();
|
|
3758
|
+
return new ModConstructor(properties);
|
|
3759
|
+
}
|
|
3760
|
+
async function importRestSupportDateBinParameters() {
|
|
3761
|
+
if (isAMD) {
|
|
3762
|
+
return await window.$arcgis.import("esri/rest/support/DateBinParameters");
|
|
3763
|
+
}
|
|
3764
|
+
const module = await import("@arcgis/core/rest/support/DateBinParameters.js");
|
|
3765
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3766
|
+
}
|
|
3767
|
+
async function newRestSupportDateBinParameters(properties) {
|
|
3768
|
+
const ModConstructor = await importRestSupportDateBinParameters();
|
|
3769
|
+
return new ModConstructor(properties);
|
|
3770
|
+
}
|
|
3771
|
+
async function importRestSupportDateBinTimeInterval() {
|
|
3772
|
+
if (isAMD) {
|
|
3773
|
+
return await window.$arcgis.import("esri/rest/support/DateBinTimeInterval");
|
|
3774
|
+
}
|
|
3775
|
+
const module = await import("@arcgis/core/rest/support/DateBinTimeInterval.js");
|
|
3776
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3777
|
+
}
|
|
3778
|
+
async function newRestSupportDateBinTimeInterval(properties) {
|
|
3779
|
+
const ModConstructor = await importRestSupportDateBinTimeInterval();
|
|
3780
|
+
return new ModConstructor(properties);
|
|
3781
|
+
}
|
|
3463
3782
|
async function importRestSupportAlgorithmicColorRamp() {
|
|
3464
3783
|
if (isAMD) {
|
|
3465
3784
|
return await window.$arcgis.import("esri/rest/support/AlgorithmicColorRamp");
|
|
@@ -3504,6 +3823,28 @@ async function newRestSupportAttachmentQuery(properties) {
|
|
|
3504
3823
|
const ModConstructor = await importRestSupportAttachmentQuery();
|
|
3505
3824
|
return new ModConstructor(properties);
|
|
3506
3825
|
}
|
|
3826
|
+
async function importRestSupportBaseImageMeasureParameters() {
|
|
3827
|
+
if (isAMD) {
|
|
3828
|
+
return await window.$arcgis.import("esri/rest/support/BaseImageMeasureParameters");
|
|
3829
|
+
}
|
|
3830
|
+
const module = await import("@arcgis/core/rest/support/BaseImageMeasureParameters.js");
|
|
3831
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3832
|
+
}
|
|
3833
|
+
async function newRestSupportBaseImageMeasureParameters(properties) {
|
|
3834
|
+
const ModConstructor = await importRestSupportBaseImageMeasureParameters();
|
|
3835
|
+
return new ModConstructor(properties);
|
|
3836
|
+
}
|
|
3837
|
+
async function importRestSupportBaseImageMeasureResult() {
|
|
3838
|
+
if (isAMD) {
|
|
3839
|
+
return await window.$arcgis.import("esri/rest/support/BaseImageMeasureResult");
|
|
3840
|
+
}
|
|
3841
|
+
const module = await import("@arcgis/core/rest/support/BaseImageMeasureResult.js");
|
|
3842
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3843
|
+
}
|
|
3844
|
+
async function newRestSupportBaseImageMeasureResult(properties) {
|
|
3845
|
+
const ModConstructor = await importRestSupportBaseImageMeasureResult();
|
|
3846
|
+
return new ModConstructor(properties);
|
|
3847
|
+
}
|
|
3507
3848
|
async function importRestSupportBufferParameters() {
|
|
3508
3849
|
if (isAMD) {
|
|
3509
3850
|
return await window.$arcgis.import("esri/rest/support/BufferParameters");
|
|
@@ -3834,50 +4175,6 @@ async function newRestSupportImageBoundaryResult(properties) {
|
|
|
3834
4175
|
const ModConstructor = await importRestSupportImageBoundaryResult();
|
|
3835
4176
|
return new ModConstructor(properties);
|
|
3836
4177
|
}
|
|
3837
|
-
async function importRestSupportImageHistogramParameters() {
|
|
3838
|
-
if (isAMD) {
|
|
3839
|
-
return await window.$arcgis.import("esri/rest/support/ImageHistogramParameters");
|
|
3840
|
-
}
|
|
3841
|
-
const module = await import("@arcgis/core/rest/support/ImageHistogramParameters.js");
|
|
3842
|
-
return isDefaultModule(module) ? module.default : module;
|
|
3843
|
-
}
|
|
3844
|
-
async function newRestSupportImageHistogramParameters(properties) {
|
|
3845
|
-
const ModConstructor = await importRestSupportImageHistogramParameters();
|
|
3846
|
-
return new ModConstructor(properties);
|
|
3847
|
-
}
|
|
3848
|
-
async function importRestSupportImageIdentifyParameters() {
|
|
3849
|
-
if (isAMD) {
|
|
3850
|
-
return await window.$arcgis.import("esri/rest/support/ImageIdentifyParameters");
|
|
3851
|
-
}
|
|
3852
|
-
const module = await import("@arcgis/core/rest/support/ImageIdentifyParameters.js");
|
|
3853
|
-
return isDefaultModule(module) ? module.default : module;
|
|
3854
|
-
}
|
|
3855
|
-
async function newRestSupportImageIdentifyParameters(properties) {
|
|
3856
|
-
const ModConstructor = await importRestSupportImageIdentifyParameters();
|
|
3857
|
-
return new ModConstructor(properties);
|
|
3858
|
-
}
|
|
3859
|
-
async function importRestSupportImageIdentifyResult() {
|
|
3860
|
-
if (isAMD) {
|
|
3861
|
-
return await window.$arcgis.import("esri/rest/support/ImageIdentifyResult");
|
|
3862
|
-
}
|
|
3863
|
-
const module = await import("@arcgis/core/rest/support/ImageIdentifyResult.js");
|
|
3864
|
-
return isDefaultModule(module) ? module.default : module;
|
|
3865
|
-
}
|
|
3866
|
-
async function newRestSupportImageIdentifyResult(properties) {
|
|
3867
|
-
const ModConstructor = await importRestSupportImageIdentifyResult();
|
|
3868
|
-
return new ModConstructor(properties);
|
|
3869
|
-
}
|
|
3870
|
-
async function importRestSupportImageInspectionInfo() {
|
|
3871
|
-
if (isAMD) {
|
|
3872
|
-
return await window.$arcgis.import("esri/rest/support/ImageInspectionInfo");
|
|
3873
|
-
}
|
|
3874
|
-
const module = await import("@arcgis/core/rest/support/ImageInspectionInfo.js");
|
|
3875
|
-
return isDefaultModule(module) ? module.default : module;
|
|
3876
|
-
}
|
|
3877
|
-
async function newRestSupportImageInspectionInfo(properties) {
|
|
3878
|
-
const ModConstructor = await importRestSupportImageInspectionInfo();
|
|
3879
|
-
return new ModConstructor(properties);
|
|
3880
|
-
}
|
|
3881
4178
|
async function importRestSupportImageDistanceParameters() {
|
|
3882
4179
|
if (isAMD) {
|
|
3883
4180
|
return await window.$arcgis.import("esri/rest/support/ImageDistanceParameters");
|
|
@@ -3955,6 +4252,50 @@ async function newRestSupportImageHeightResult(properties) {
|
|
|
3955
4252
|
const ModConstructor = await importRestSupportImageHeightResult();
|
|
3956
4253
|
return new ModConstructor(properties);
|
|
3957
4254
|
}
|
|
4255
|
+
async function importRestSupportImageHistogramParameters() {
|
|
4256
|
+
if (isAMD) {
|
|
4257
|
+
return await window.$arcgis.import("esri/rest/support/ImageHistogramParameters");
|
|
4258
|
+
}
|
|
4259
|
+
const module = await import("@arcgis/core/rest/support/ImageHistogramParameters.js");
|
|
4260
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4261
|
+
}
|
|
4262
|
+
async function newRestSupportImageHistogramParameters(properties) {
|
|
4263
|
+
const ModConstructor = await importRestSupportImageHistogramParameters();
|
|
4264
|
+
return new ModConstructor(properties);
|
|
4265
|
+
}
|
|
4266
|
+
async function importRestSupportImageIdentifyParameters() {
|
|
4267
|
+
if (isAMD) {
|
|
4268
|
+
return await window.$arcgis.import("esri/rest/support/ImageIdentifyParameters");
|
|
4269
|
+
}
|
|
4270
|
+
const module = await import("@arcgis/core/rest/support/ImageIdentifyParameters.js");
|
|
4271
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4272
|
+
}
|
|
4273
|
+
async function newRestSupportImageIdentifyParameters(properties) {
|
|
4274
|
+
const ModConstructor = await importRestSupportImageIdentifyParameters();
|
|
4275
|
+
return new ModConstructor(properties);
|
|
4276
|
+
}
|
|
4277
|
+
async function importRestSupportImageIdentifyResult() {
|
|
4278
|
+
if (isAMD) {
|
|
4279
|
+
return await window.$arcgis.import("esri/rest/support/ImageIdentifyResult");
|
|
4280
|
+
}
|
|
4281
|
+
const module = await import("@arcgis/core/rest/support/ImageIdentifyResult.js");
|
|
4282
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4283
|
+
}
|
|
4284
|
+
async function newRestSupportImageIdentifyResult(properties) {
|
|
4285
|
+
const ModConstructor = await importRestSupportImageIdentifyResult();
|
|
4286
|
+
return new ModConstructor(properties);
|
|
4287
|
+
}
|
|
4288
|
+
async function importRestSupportImageInspectionInfo() {
|
|
4289
|
+
if (isAMD) {
|
|
4290
|
+
return await window.$arcgis.import("esri/rest/support/ImageInspectionInfo");
|
|
4291
|
+
}
|
|
4292
|
+
const module = await import("@arcgis/core/rest/support/ImageInspectionInfo.js");
|
|
4293
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4294
|
+
}
|
|
4295
|
+
async function newRestSupportImageInspectionInfo(properties) {
|
|
4296
|
+
const ModConstructor = await importRestSupportImageInspectionInfo();
|
|
4297
|
+
return new ModConstructor(properties);
|
|
4298
|
+
}
|
|
3958
4299
|
async function importRestSupportImageParameters() {
|
|
3959
4300
|
if (isAMD) {
|
|
3960
4301
|
return await window.$arcgis.import("esri/rest/support/ImageParameters");
|
|
@@ -4043,26 +4384,26 @@ async function newRestSupportImageSampleResult(properties) {
|
|
|
4043
4384
|
const ModConstructor = await importRestSupportImageSampleResult();
|
|
4044
4385
|
return new ModConstructor(properties);
|
|
4045
4386
|
}
|
|
4046
|
-
async function
|
|
4387
|
+
async function importRestSupportImageToMapMultirayParameters() {
|
|
4047
4388
|
if (isAMD) {
|
|
4048
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4389
|
+
return await window.$arcgis.import("esri/rest/support/ImageToMapMultirayParameters");
|
|
4049
4390
|
}
|
|
4050
|
-
const module = await import("@arcgis/core/rest/support/
|
|
4391
|
+
const module = await import("@arcgis/core/rest/support/ImageToMapMultirayParameters.js");
|
|
4051
4392
|
return isDefaultModule(module) ? module.default : module;
|
|
4052
4393
|
}
|
|
4053
|
-
async function
|
|
4054
|
-
const ModConstructor = await
|
|
4394
|
+
async function newRestSupportImageToMapMultirayParameters(properties) {
|
|
4395
|
+
const ModConstructor = await importRestSupportImageToMapMultirayParameters();
|
|
4055
4396
|
return new ModConstructor(properties);
|
|
4056
4397
|
}
|
|
4057
|
-
async function
|
|
4398
|
+
async function importRestSupportImageToMapParameters() {
|
|
4058
4399
|
if (isAMD) {
|
|
4059
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4400
|
+
return await window.$arcgis.import("esri/rest/support/ImageToMapParameters");
|
|
4060
4401
|
}
|
|
4061
|
-
const module = await import("@arcgis/core/rest/support/
|
|
4402
|
+
const module = await import("@arcgis/core/rest/support/ImageToMapParameters.js");
|
|
4062
4403
|
return isDefaultModule(module) ? module.default : module;
|
|
4063
4404
|
}
|
|
4064
|
-
async function
|
|
4065
|
-
const ModConstructor = await
|
|
4405
|
+
async function newRestSupportImageToMapParameters(properties) {
|
|
4406
|
+
const ModConstructor = await importRestSupportImageToMapParameters();
|
|
4066
4407
|
return new ModConstructor(properties);
|
|
4067
4408
|
}
|
|
4068
4409
|
async function importRestSupportImageUrlParameters() {
|
|
@@ -4087,6 +4428,39 @@ async function newRestSupportImageUrlResult(properties) {
|
|
|
4087
4428
|
const ModConstructor = await importRestSupportImageUrlResult();
|
|
4088
4429
|
return new ModConstructor(properties);
|
|
4089
4430
|
}
|
|
4431
|
+
async function importRestSupportImageVolume() {
|
|
4432
|
+
if (isAMD) {
|
|
4433
|
+
return await window.$arcgis.import("esri/rest/support/ImageVolume");
|
|
4434
|
+
}
|
|
4435
|
+
const module = await import("@arcgis/core/rest/support/ImageVolume.js");
|
|
4436
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4437
|
+
}
|
|
4438
|
+
async function newRestSupportImageVolume(properties) {
|
|
4439
|
+
const ModConstructor = await importRestSupportImageVolume();
|
|
4440
|
+
return new ModConstructor(properties);
|
|
4441
|
+
}
|
|
4442
|
+
async function importRestSupportImageVolumeParameters() {
|
|
4443
|
+
if (isAMD) {
|
|
4444
|
+
return await window.$arcgis.import("esri/rest/support/ImageVolumeParameters");
|
|
4445
|
+
}
|
|
4446
|
+
const module = await import("@arcgis/core/rest/support/ImageVolumeParameters.js");
|
|
4447
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4448
|
+
}
|
|
4449
|
+
async function newRestSupportImageVolumeParameters(properties) {
|
|
4450
|
+
const ModConstructor = await importRestSupportImageVolumeParameters();
|
|
4451
|
+
return new ModConstructor(properties);
|
|
4452
|
+
}
|
|
4453
|
+
async function importRestSupportImageVolumeResult() {
|
|
4454
|
+
if (isAMD) {
|
|
4455
|
+
return await window.$arcgis.import("esri/rest/support/ImageVolumeResult");
|
|
4456
|
+
}
|
|
4457
|
+
const module = await import("@arcgis/core/rest/support/ImageVolumeResult.js");
|
|
4458
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4459
|
+
}
|
|
4460
|
+
async function newRestSupportImageVolumeResult(properties) {
|
|
4461
|
+
const ModConstructor = await importRestSupportImageVolumeResult();
|
|
4462
|
+
return new ModConstructor(properties);
|
|
4463
|
+
}
|
|
4090
4464
|
async function importRestSupportJobInfo() {
|
|
4091
4465
|
if (isAMD) {
|
|
4092
4466
|
return await window.$arcgis.import("esri/rest/support/JobInfo");
|
|
@@ -4146,22 +4520,11 @@ async function importRestSupportMeasureAreaFromImageResult() {
|
|
|
4146
4520
|
if (isAMD) {
|
|
4147
4521
|
return await window.$arcgis.import("esri/rest/support/MeasureAreaFromImageResult");
|
|
4148
4522
|
}
|
|
4149
|
-
const module = await import("@arcgis/core/rest/support/MeasureAreaFromImageResult.js");
|
|
4150
|
-
return isDefaultModule(module) ? module.default : module;
|
|
4151
|
-
}
|
|
4152
|
-
async function newRestSupportMeasureAreaFromImageResult(properties) {
|
|
4153
|
-
const ModConstructor = await importRestSupportMeasureAreaFromImageResult();
|
|
4154
|
-
return new ModConstructor(properties);
|
|
4155
|
-
}
|
|
4156
|
-
async function importRestSupportMeasureLengthFromImageResult() {
|
|
4157
|
-
if (isAMD) {
|
|
4158
|
-
return await window.$arcgis.import("esri/rest/support/MeasureLengthFromImageResult");
|
|
4159
|
-
}
|
|
4160
|
-
const module = await import("@arcgis/core/rest/support/MeasureLengthFromImageResult.js");
|
|
4523
|
+
const module = await import("@arcgis/core/rest/support/MeasureAreaFromImageResult.js");
|
|
4161
4524
|
return isDefaultModule(module) ? module.default : module;
|
|
4162
4525
|
}
|
|
4163
|
-
async function
|
|
4164
|
-
const ModConstructor = await
|
|
4526
|
+
async function newRestSupportMeasureAreaFromImageResult(properties) {
|
|
4527
|
+
const ModConstructor = await importRestSupportMeasureAreaFromImageResult();
|
|
4165
4528
|
return new ModConstructor(properties);
|
|
4166
4529
|
}
|
|
4167
4530
|
async function importRestSupportMeasureFromImageParameters() {
|
|
@@ -4175,6 +4538,17 @@ async function newRestSupportMeasureFromImageParameters(properties) {
|
|
|
4175
4538
|
const ModConstructor = await importRestSupportMeasureFromImageParameters();
|
|
4176
4539
|
return new ModConstructor(properties);
|
|
4177
4540
|
}
|
|
4541
|
+
async function importRestSupportMeasureLengthFromImageResult() {
|
|
4542
|
+
if (isAMD) {
|
|
4543
|
+
return await window.$arcgis.import("esri/rest/support/MeasureLengthFromImageResult");
|
|
4544
|
+
}
|
|
4545
|
+
const module = await import("@arcgis/core/rest/support/MeasureLengthFromImageResult.js");
|
|
4546
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4547
|
+
}
|
|
4548
|
+
async function newRestSupportMeasureLengthFromImageResult(properties) {
|
|
4549
|
+
const ModConstructor = await importRestSupportMeasureLengthFromImageResult();
|
|
4550
|
+
return new ModConstructor(properties);
|
|
4551
|
+
}
|
|
4178
4552
|
async function importRestSupportMultipartColorRamp() {
|
|
4179
4553
|
if (isAMD) {
|
|
4180
4554
|
return await window.$arcgis.import("esri/rest/support/MultipartColorRamp");
|
|
@@ -5715,6 +6089,17 @@ async function newViewsLayersViewshedLayerView(properties) {
|
|
|
5715
6089
|
const ModConstructor = await importViewsLayersViewshedLayerView();
|
|
5716
6090
|
return new ModConstructor(properties);
|
|
5717
6091
|
}
|
|
6092
|
+
async function importViewsLinkChartView() {
|
|
6093
|
+
if (isAMD) {
|
|
6094
|
+
return await window.$arcgis.import("esri/views/LinkChartView");
|
|
6095
|
+
}
|
|
6096
|
+
const module = await import("@arcgis/core/views/LinkChartView.js");
|
|
6097
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6098
|
+
}
|
|
6099
|
+
async function newViewsLinkChartView(properties) {
|
|
6100
|
+
const ModConstructor = await importViewsLinkChartView();
|
|
6101
|
+
return new ModConstructor(properties);
|
|
6102
|
+
}
|
|
5718
6103
|
async function importViewsMagnifier() {
|
|
5719
6104
|
if (isAMD) {
|
|
5720
6105
|
return await window.$arcgis.import("esri/views/Magnifier");
|
|
@@ -5759,6 +6144,17 @@ async function newViewsNavigationNavigation(properties) {
|
|
|
5759
6144
|
const ModConstructor = await importViewsNavigationNavigation();
|
|
5760
6145
|
return new ModConstructor(properties);
|
|
5761
6146
|
}
|
|
6147
|
+
async function importViewsNavigationNavigationActionMap() {
|
|
6148
|
+
if (isAMD) {
|
|
6149
|
+
return await window.$arcgis.import("esri/views/navigation/NavigationActionMap");
|
|
6150
|
+
}
|
|
6151
|
+
const module = await import("@arcgis/core/views/navigation/NavigationActionMap.js");
|
|
6152
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6153
|
+
}
|
|
6154
|
+
async function newViewsNavigationNavigationActionMap(properties) {
|
|
6155
|
+
const ModConstructor = await importViewsNavigationNavigationActionMap();
|
|
6156
|
+
return new ModConstructor(properties);
|
|
6157
|
+
}
|
|
5762
6158
|
async function importViewsSceneView() {
|
|
5763
6159
|
if (isAMD) {
|
|
5764
6160
|
return await window.$arcgis.import("esri/views/SceneView");
|
|
@@ -5770,6 +6166,17 @@ async function newViewsSceneView(properties) {
|
|
|
5770
6166
|
const ModConstructor = await importViewsSceneView();
|
|
5771
6167
|
return new ModConstructor(properties);
|
|
5772
6168
|
}
|
|
6169
|
+
async function importViewsSupportHighlightOptions() {
|
|
6170
|
+
if (isAMD) {
|
|
6171
|
+
return await window.$arcgis.import("esri/views/support/HighlightOptions");
|
|
6172
|
+
}
|
|
6173
|
+
const module = await import("@arcgis/core/views/support/HighlightOptions.js");
|
|
6174
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6175
|
+
}
|
|
6176
|
+
async function newViewsSupportHighlightOptions(properties) {
|
|
6177
|
+
const ModConstructor = await importViewsSupportHighlightOptions();
|
|
6178
|
+
return new ModConstructor(properties);
|
|
6179
|
+
}
|
|
5773
6180
|
async function importViewsUiDefaultUI() {
|
|
5774
6181
|
if (isAMD) {
|
|
5775
6182
|
return await window.$arcgis.import("esri/views/ui/DefaultUI");
|
|
@@ -6045,6 +6452,17 @@ async function newWebDocument2D(properties) {
|
|
|
6045
6452
|
const ModConstructor = await importWebDocument2D();
|
|
6046
6453
|
return new ModConstructor(properties);
|
|
6047
6454
|
}
|
|
6455
|
+
async function importWebLinkChart() {
|
|
6456
|
+
if (isAMD) {
|
|
6457
|
+
return await window.$arcgis.import("esri/WebLinkChart");
|
|
6458
|
+
}
|
|
6459
|
+
const module = await import("@arcgis/core/WebLinkChart.js");
|
|
6460
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6461
|
+
}
|
|
6462
|
+
async function newWebLinkChart(properties) {
|
|
6463
|
+
const ModConstructor = await importWebLinkChart();
|
|
6464
|
+
return new ModConstructor(properties);
|
|
6465
|
+
}
|
|
6048
6466
|
async function importWebMap() {
|
|
6049
6467
|
if (isAMD) {
|
|
6050
6468
|
return await window.$arcgis.import("esri/WebMap");
|
|
@@ -6188,6 +6606,17 @@ async function newWebsceneSlide(properties) {
|
|
|
6188
6606
|
const ModConstructor = await importWebsceneSlide();
|
|
6189
6607
|
return new ModConstructor(properties);
|
|
6190
6608
|
}
|
|
6609
|
+
async function importWebsceneSlideLegendInfo() {
|
|
6610
|
+
if (isAMD) {
|
|
6611
|
+
return await window.$arcgis.import("esri/webscene/SlideLegendInfo");
|
|
6612
|
+
}
|
|
6613
|
+
const module = await import("@arcgis/core/webscene/SlideLegendInfo.js");
|
|
6614
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6615
|
+
}
|
|
6616
|
+
async function newWebsceneSlideLegendInfo(properties) {
|
|
6617
|
+
const ModConstructor = await importWebsceneSlideLegendInfo();
|
|
6618
|
+
return new ModConstructor(properties);
|
|
6619
|
+
}
|
|
6191
6620
|
async function importWebsceneSunLighting() {
|
|
6192
6621
|
if (isAMD) {
|
|
6193
6622
|
return await window.$arcgis.import("esri/webscene/SunLighting");
|
|
@@ -6947,6 +7376,28 @@ async function newWidgetsFeatureFormRelationshipInput(properties) {
|
|
|
6947
7376
|
const ModConstructor = await importWidgetsFeatureFormRelationshipInput();
|
|
6948
7377
|
return new ModConstructor(properties);
|
|
6949
7378
|
}
|
|
7379
|
+
async function importWidgetsFeatureFormTextElementInput() {
|
|
7380
|
+
if (isAMD) {
|
|
7381
|
+
return await window.$arcgis.import("esri/widgets/FeatureForm/TextElementInput");
|
|
7382
|
+
}
|
|
7383
|
+
const module = await import("@arcgis/core/widgets/FeatureForm/TextElementInput.js");
|
|
7384
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7385
|
+
}
|
|
7386
|
+
async function newWidgetsFeatureFormTextElementInput(properties) {
|
|
7387
|
+
const ModConstructor = await importWidgetsFeatureFormTextElementInput();
|
|
7388
|
+
return new ModConstructor(properties);
|
|
7389
|
+
}
|
|
7390
|
+
async function importWidgetsFeatureFormUtilityNetworkAssociationInput() {
|
|
7391
|
+
if (isAMD) {
|
|
7392
|
+
return await window.$arcgis.import("esri/widgets/FeatureForm/UtilityNetworkAssociationInput");
|
|
7393
|
+
}
|
|
7394
|
+
const module = await import("@arcgis/core/widgets/FeatureForm/UtilityNetworkAssociationInput.js");
|
|
7395
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7396
|
+
}
|
|
7397
|
+
async function newWidgetsFeatureFormUtilityNetworkAssociationInput(properties) {
|
|
7398
|
+
const ModConstructor = await importWidgetsFeatureFormUtilityNetworkAssociationInput();
|
|
7399
|
+
return new ModConstructor(properties);
|
|
7400
|
+
}
|
|
6950
7401
|
async function importWidgetsFeatures() {
|
|
6951
7402
|
if (isAMD) {
|
|
6952
7403
|
return await window.$arcgis.import("esri/widgets/Features");
|
|
@@ -7123,6 +7574,28 @@ async function newWidgetsFeatureTableSupportFieldColumnTemplate(properties) {
|
|
|
7123
7574
|
const ModConstructor = await importWidgetsFeatureTableSupportFieldColumnTemplate();
|
|
7124
7575
|
return new ModConstructor(properties);
|
|
7125
7576
|
}
|
|
7577
|
+
async function importWidgetsFeatureTableSupportAttachmentsColumnTemplate() {
|
|
7578
|
+
if (isAMD) {
|
|
7579
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/AttachmentsColumnTemplate");
|
|
7580
|
+
}
|
|
7581
|
+
const module = await import("@arcgis/core/widgets/FeatureTable/support/AttachmentsColumnTemplate.js");
|
|
7582
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7583
|
+
}
|
|
7584
|
+
async function newWidgetsFeatureTableSupportAttachmentsColumnTemplate(properties) {
|
|
7585
|
+
const ModConstructor = await importWidgetsFeatureTableSupportAttachmentsColumnTemplate();
|
|
7586
|
+
return new ModConstructor(properties);
|
|
7587
|
+
}
|
|
7588
|
+
async function importWidgetsFeatureTableSupportRelationshipColumnTemplate() {
|
|
7589
|
+
if (isAMD) {
|
|
7590
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/RelationshipColumnTemplate");
|
|
7591
|
+
}
|
|
7592
|
+
const module = await import("@arcgis/core/widgets/FeatureTable/support/RelationshipColumnTemplate.js");
|
|
7593
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7594
|
+
}
|
|
7595
|
+
async function newWidgetsFeatureTableSupportRelationshipColumnTemplate(properties) {
|
|
7596
|
+
const ModConstructor = await importWidgetsFeatureTableSupportRelationshipColumnTemplate();
|
|
7597
|
+
return new ModConstructor(properties);
|
|
7598
|
+
}
|
|
7126
7599
|
async function importWidgetsFeatureTableSupportGroupColumnTemplate() {
|
|
7127
7600
|
if (isAMD) {
|
|
7128
7601
|
return await window.$arcgis.import("esri/widgets/FeatureTable/support/GroupColumnTemplate");
|
|
@@ -8179,6 +8652,17 @@ async function newWidgetsUtilityNetworkTrace(properties) {
|
|
|
8179
8652
|
const ModConstructor = await importWidgetsUtilityNetworkTrace();
|
|
8180
8653
|
return new ModConstructor(properties);
|
|
8181
8654
|
}
|
|
8655
|
+
async function importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel() {
|
|
8656
|
+
if (isAMD) {
|
|
8657
|
+
return await window.$arcgis.import("esri/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel");
|
|
8658
|
+
}
|
|
8659
|
+
const module = await import("@arcgis/core/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel.js");
|
|
8660
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8661
|
+
}
|
|
8662
|
+
async function newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel(properties) {
|
|
8663
|
+
const ModConstructor = await importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel();
|
|
8664
|
+
return new ModConstructor(properties);
|
|
8665
|
+
}
|
|
8182
8666
|
async function importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel() {
|
|
8183
8667
|
if (isAMD) {
|
|
8184
8668
|
return await window.$arcgis.import("esri/widgets/UtilityNetworkTrace/UtilityNetworkTraceViewModel");
|
|
@@ -8432,25 +8916,25 @@ async function importCoreWorkers() {
|
|
|
8432
8916
|
const module = await import("@arcgis/core/core/workers.js");
|
|
8433
8917
|
return isDefaultModule(module) ? module.default : module;
|
|
8434
8918
|
}
|
|
8435
|
-
async function
|
|
8919
|
+
async function importEditingSharedTemplatesSharedTemplateMetadata() {
|
|
8436
8920
|
if (isAMD) {
|
|
8437
|
-
return await window.$arcgis.import("esri/
|
|
8921
|
+
return await window.$arcgis.import("esri/editing/sharedTemplates/SharedTemplateMetadata");
|
|
8438
8922
|
}
|
|
8439
|
-
const module = await import("@arcgis/core/
|
|
8923
|
+
const module = await import("@arcgis/core/editing/sharedTemplates/SharedTemplateMetadata.js");
|
|
8440
8924
|
return isDefaultModule(module) ? module.default : module;
|
|
8441
8925
|
}
|
|
8442
|
-
async function
|
|
8926
|
+
async function importFormElementsInputs() {
|
|
8443
8927
|
if (isAMD) {
|
|
8444
|
-
return await window.$arcgis.import("esri/form/elements/
|
|
8928
|
+
return await window.$arcgis.import("esri/form/elements/inputs");
|
|
8445
8929
|
}
|
|
8446
|
-
const module = await import("@arcgis/core/form/elements/
|
|
8930
|
+
const module = await import("@arcgis/core/form/elements/inputs.js");
|
|
8447
8931
|
return isDefaultModule(module) ? module.default : module;
|
|
8448
8932
|
}
|
|
8449
|
-
async function
|
|
8933
|
+
async function importFormElements() {
|
|
8450
8934
|
if (isAMD) {
|
|
8451
|
-
return await window.$arcgis.import("esri/form/
|
|
8935
|
+
return await window.$arcgis.import("esri/form/elements");
|
|
8452
8936
|
}
|
|
8453
|
-
const module = await import("@arcgis/core/form/
|
|
8937
|
+
const module = await import("@arcgis/core/form/elements.js");
|
|
8454
8938
|
return isDefaultModule(module) ? module.default : module;
|
|
8455
8939
|
}
|
|
8456
8940
|
async function importGeometry() {
|
|
@@ -8495,6 +8979,13 @@ async function importGeometryOperatorsAffineTransformOperator() {
|
|
|
8495
8979
|
const module = await import("@arcgis/core/geometry/operators/affineTransformOperator.js");
|
|
8496
8980
|
return isDefaultModule(module) ? module.default : module;
|
|
8497
8981
|
}
|
|
8982
|
+
async function importGeometryOperatorsAlphaShapeOperator() {
|
|
8983
|
+
if (isAMD) {
|
|
8984
|
+
return await window.$arcgis.import("esri/geometry/operators/alphaShapeOperator");
|
|
8985
|
+
}
|
|
8986
|
+
const module = await import("@arcgis/core/geometry/operators/alphaShapeOperator.js");
|
|
8987
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8988
|
+
}
|
|
8498
8989
|
async function importGeometryOperatorsAreaOperator() {
|
|
8499
8990
|
if (isAMD) {
|
|
8500
8991
|
return await window.$arcgis.import("esri/geometry/operators/areaOperator");
|
|
@@ -8502,6 +8993,20 @@ async function importGeometryOperatorsAreaOperator() {
|
|
|
8502
8993
|
const module = await import("@arcgis/core/geometry/operators/areaOperator.js");
|
|
8503
8994
|
return isDefaultModule(module) ? module.default : module;
|
|
8504
8995
|
}
|
|
8996
|
+
async function importGeometryOperatorsAutoCompleteOperator() {
|
|
8997
|
+
if (isAMD) {
|
|
8998
|
+
return await window.$arcgis.import("esri/geometry/operators/autoCompleteOperator");
|
|
8999
|
+
}
|
|
9000
|
+
const module = await import("@arcgis/core/geometry/operators/autoCompleteOperator.js");
|
|
9001
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9002
|
+
}
|
|
9003
|
+
async function importGeometryOperatorsBoundaryOperator() {
|
|
9004
|
+
if (isAMD) {
|
|
9005
|
+
return await window.$arcgis.import("esri/geometry/operators/boundaryOperator");
|
|
9006
|
+
}
|
|
9007
|
+
const module = await import("@arcgis/core/geometry/operators/boundaryOperator.js");
|
|
9008
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9009
|
+
}
|
|
8505
9010
|
async function importGeometryOperatorsBufferOperator() {
|
|
8506
9011
|
if (isAMD) {
|
|
8507
9012
|
return await window.$arcgis.import("esri/geometry/operators/bufferOperator");
|
|
@@ -8565,18 +9070,18 @@ async function importGeometryOperatorsDifferenceOperator() {
|
|
|
8565
9070
|
const module = await import("@arcgis/core/geometry/operators/differenceOperator.js");
|
|
8566
9071
|
return isDefaultModule(module) ? module.default : module;
|
|
8567
9072
|
}
|
|
8568
|
-
async function
|
|
9073
|
+
async function importGeometryOperatorsDisjointOperator() {
|
|
8569
9074
|
if (isAMD) {
|
|
8570
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
9075
|
+
return await window.$arcgis.import("esri/geometry/operators/disjointOperator");
|
|
8571
9076
|
}
|
|
8572
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
9077
|
+
const module = await import("@arcgis/core/geometry/operators/disjointOperator.js");
|
|
8573
9078
|
return isDefaultModule(module) ? module.default : module;
|
|
8574
9079
|
}
|
|
8575
|
-
async function
|
|
9080
|
+
async function importGeometryOperatorsDistanceOperator() {
|
|
8576
9081
|
if (isAMD) {
|
|
8577
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
9082
|
+
return await window.$arcgis.import("esri/geometry/operators/distanceOperator");
|
|
8578
9083
|
}
|
|
8579
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
9084
|
+
const module = await import("@arcgis/core/geometry/operators/distanceOperator.js");
|
|
8580
9085
|
return isDefaultModule(module) ? module.default : module;
|
|
8581
9086
|
}
|
|
8582
9087
|
async function importGeometryOperatorsEqualsOperator() {
|
|
@@ -8586,6 +9091,20 @@ async function importGeometryOperatorsEqualsOperator() {
|
|
|
8586
9091
|
const module = await import("@arcgis/core/geometry/operators/equalsOperator.js");
|
|
8587
9092
|
return isDefaultModule(module) ? module.default : module;
|
|
8588
9093
|
}
|
|
9094
|
+
async function importGeometryOperatorsExtendOperator() {
|
|
9095
|
+
if (isAMD) {
|
|
9096
|
+
return await window.$arcgis.import("esri/geometry/operators/extendOperator");
|
|
9097
|
+
}
|
|
9098
|
+
const module = await import("@arcgis/core/geometry/operators/extendOperator.js");
|
|
9099
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9100
|
+
}
|
|
9101
|
+
async function importGeometryOperatorsGeneralizeOperator() {
|
|
9102
|
+
if (isAMD) {
|
|
9103
|
+
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
9104
|
+
}
|
|
9105
|
+
const module = await import("@arcgis/core/geometry/operators/generalizeOperator.js");
|
|
9106
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9107
|
+
}
|
|
8589
9108
|
async function importGeometryOperatorsGeodesicBufferOperator() {
|
|
8590
9109
|
if (isAMD) {
|
|
8591
9110
|
return await window.$arcgis.import("esri/geometry/operators/geodesicBufferOperator");
|
|
@@ -8593,6 +9112,13 @@ async function importGeometryOperatorsGeodesicBufferOperator() {
|
|
|
8593
9112
|
const module = await import("@arcgis/core/geometry/operators/geodesicBufferOperator.js");
|
|
8594
9113
|
return isDefaultModule(module) ? module.default : module;
|
|
8595
9114
|
}
|
|
9115
|
+
async function importGeometryOperatorsGeodesicProximityOperator() {
|
|
9116
|
+
if (isAMD) {
|
|
9117
|
+
return await window.$arcgis.import("esri/geometry/operators/geodesicProximityOperator");
|
|
9118
|
+
}
|
|
9119
|
+
const module = await import("@arcgis/core/geometry/operators/geodesicProximityOperator.js");
|
|
9120
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9121
|
+
}
|
|
8596
9122
|
async function importGeometryOperatorsGeodeticAreaOperator() {
|
|
8597
9123
|
if (isAMD) {
|
|
8598
9124
|
return await window.$arcgis.import("esri/geometry/operators/geodeticAreaOperator");
|
|
@@ -8621,18 +9147,18 @@ async function importGeometryOperatorsGeodeticLengthOperator() {
|
|
|
8621
9147
|
const module = await import("@arcgis/core/geometry/operators/geodeticLengthOperator.js");
|
|
8622
9148
|
return isDefaultModule(module) ? module.default : module;
|
|
8623
9149
|
}
|
|
8624
|
-
async function
|
|
9150
|
+
async function importGeometryOperatorsGraphicBufferOperator() {
|
|
8625
9151
|
if (isAMD) {
|
|
8626
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
9152
|
+
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
8627
9153
|
}
|
|
8628
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
9154
|
+
const module = await import("@arcgis/core/geometry/operators/graphicBufferOperator.js");
|
|
8629
9155
|
return isDefaultModule(module) ? module.default : module;
|
|
8630
9156
|
}
|
|
8631
|
-
async function
|
|
9157
|
+
async function importGeometryOperatorsIntegrateOperator() {
|
|
8632
9158
|
if (isAMD) {
|
|
8633
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
9159
|
+
return await window.$arcgis.import("esri/geometry/operators/integrateOperator");
|
|
8634
9160
|
}
|
|
8635
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
9161
|
+
const module = await import("@arcgis/core/geometry/operators/integrateOperator.js");
|
|
8636
9162
|
return isDefaultModule(module) ? module.default : module;
|
|
8637
9163
|
}
|
|
8638
9164
|
async function importGeometryOperatorsIntersectionOperator() {
|
|
@@ -8649,6 +9175,20 @@ async function importGeometryOperatorsIntersectsOperator() {
|
|
|
8649
9175
|
const module = await import("@arcgis/core/geometry/operators/intersectsOperator.js");
|
|
8650
9176
|
return isDefaultModule(module) ? module.default : module;
|
|
8651
9177
|
}
|
|
9178
|
+
async function importGeometryOperatorsIsNearOperator() {
|
|
9179
|
+
if (isAMD) {
|
|
9180
|
+
return await window.$arcgis.import("esri/geometry/operators/isNearOperator");
|
|
9181
|
+
}
|
|
9182
|
+
const module = await import("@arcgis/core/geometry/operators/isNearOperator.js");
|
|
9183
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9184
|
+
}
|
|
9185
|
+
async function importGeometryOperatorsLabelPointOperator() {
|
|
9186
|
+
if (isAMD) {
|
|
9187
|
+
return await window.$arcgis.import("esri/geometry/operators/labelPointOperator");
|
|
9188
|
+
}
|
|
9189
|
+
const module = await import("@arcgis/core/geometry/operators/labelPointOperator.js");
|
|
9190
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9191
|
+
}
|
|
8652
9192
|
async function importGeometryOperatorsLengthOperator() {
|
|
8653
9193
|
if (isAMD) {
|
|
8654
9194
|
return await window.$arcgis.import("esri/geometry/operators/lengthOperator");
|
|
@@ -8656,6 +9196,34 @@ async function importGeometryOperatorsLengthOperator() {
|
|
|
8656
9196
|
const module = await import("@arcgis/core/geometry/operators/lengthOperator.js");
|
|
8657
9197
|
return isDefaultModule(module) ? module.default : module;
|
|
8658
9198
|
}
|
|
9199
|
+
async function importGeometryOperatorsLinesToPolygonsOperator() {
|
|
9200
|
+
if (isAMD) {
|
|
9201
|
+
return await window.$arcgis.import("esri/geometry/operators/linesToPolygonsOperator");
|
|
9202
|
+
}
|
|
9203
|
+
const module = await import("@arcgis/core/geometry/operators/linesToPolygonsOperator.js");
|
|
9204
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9205
|
+
}
|
|
9206
|
+
async function importGeometryOperatorsLocateBetweenOperator() {
|
|
9207
|
+
if (isAMD) {
|
|
9208
|
+
return await window.$arcgis.import("esri/geometry/operators/locateBetweenOperator");
|
|
9209
|
+
}
|
|
9210
|
+
const module = await import("@arcgis/core/geometry/operators/locateBetweenOperator.js");
|
|
9211
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9212
|
+
}
|
|
9213
|
+
async function importGeometryOperatorsMinimumBoundingCircleOperator() {
|
|
9214
|
+
if (isAMD) {
|
|
9215
|
+
return await window.$arcgis.import("esri/geometry/operators/minimumBoundingCircleOperator");
|
|
9216
|
+
}
|
|
9217
|
+
const module = await import("@arcgis/core/geometry/operators/minimumBoundingCircleOperator.js");
|
|
9218
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9219
|
+
}
|
|
9220
|
+
async function importGeometryOperatorsMultiPartToSinglePartOperator() {
|
|
9221
|
+
if (isAMD) {
|
|
9222
|
+
return await window.$arcgis.import("esri/geometry/operators/multiPartToSinglePartOperator");
|
|
9223
|
+
}
|
|
9224
|
+
const module = await import("@arcgis/core/geometry/operators/multiPartToSinglePartOperator.js");
|
|
9225
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9226
|
+
}
|
|
8659
9227
|
async function importGeometryOperatorsOffsetOperator() {
|
|
8660
9228
|
if (isAMD) {
|
|
8661
9229
|
return await window.$arcgis.import("esri/geometry/operators/offsetOperator");
|
|
@@ -8670,6 +9238,27 @@ async function importGeometryOperatorsOverlapsOperator() {
|
|
|
8670
9238
|
const module = await import("@arcgis/core/geometry/operators/overlapsOperator.js");
|
|
8671
9239
|
return isDefaultModule(module) ? module.default : module;
|
|
8672
9240
|
}
|
|
9241
|
+
async function importGeometryOperatorsPolygonOverlayOperator() {
|
|
9242
|
+
if (isAMD) {
|
|
9243
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonOverlayOperator");
|
|
9244
|
+
}
|
|
9245
|
+
const module = await import("@arcgis/core/geometry/operators/polygonOverlayOperator.js");
|
|
9246
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9247
|
+
}
|
|
9248
|
+
async function importGeometryOperatorsPolygonSlicerOperator() {
|
|
9249
|
+
if (isAMD) {
|
|
9250
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonSlicerOperator");
|
|
9251
|
+
}
|
|
9252
|
+
const module = await import("@arcgis/core/geometry/operators/polygonSlicerOperator.js");
|
|
9253
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9254
|
+
}
|
|
9255
|
+
async function importGeometryOperatorsProjectOperator() {
|
|
9256
|
+
if (isAMD) {
|
|
9257
|
+
return await window.$arcgis.import("esri/geometry/operators/projectOperator");
|
|
9258
|
+
}
|
|
9259
|
+
const module = await import("@arcgis/core/geometry/operators/projectOperator.js");
|
|
9260
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9261
|
+
}
|
|
8673
9262
|
async function importGeometryOperatorsProximityOperator() {
|
|
8674
9263
|
if (isAMD) {
|
|
8675
9264
|
return await window.$arcgis.import("esri/geometry/operators/proximityOperator");
|
|
@@ -8684,6 +9273,20 @@ async function importGeometryOperatorsRelateOperator() {
|
|
|
8684
9273
|
const module = await import("@arcgis/core/geometry/operators/relateOperator.js");
|
|
8685
9274
|
return isDefaultModule(module) ? module.default : module;
|
|
8686
9275
|
}
|
|
9276
|
+
async function importGeometryOperatorsReshapeOperator() {
|
|
9277
|
+
if (isAMD) {
|
|
9278
|
+
return await window.$arcgis.import("esri/geometry/operators/reshapeOperator");
|
|
9279
|
+
}
|
|
9280
|
+
const module = await import("@arcgis/core/geometry/operators/reshapeOperator.js");
|
|
9281
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9282
|
+
}
|
|
9283
|
+
async function importGeometryOperatorsShapePreservingProjectOperator() {
|
|
9284
|
+
if (isAMD) {
|
|
9285
|
+
return await window.$arcgis.import("esri/geometry/operators/shapePreservingProjectOperator");
|
|
9286
|
+
}
|
|
9287
|
+
const module = await import("@arcgis/core/geometry/operators/shapePreservingProjectOperator.js");
|
|
9288
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9289
|
+
}
|
|
8687
9290
|
async function importGeometryOperatorsSimplifyOperator() {
|
|
8688
9291
|
if (isAMD) {
|
|
8689
9292
|
return await window.$arcgis.import("esri/geometry/operators/simplifyOperator");
|
|
@@ -8719,6 +9322,13 @@ async function importGeometryOperatorsWithinOperator() {
|
|
|
8719
9322
|
const module = await import("@arcgis/core/geometry/operators/withinOperator.js");
|
|
8720
9323
|
return isDefaultModule(module) ? module.default : module;
|
|
8721
9324
|
}
|
|
9325
|
+
async function importGeometryOperatorsSupportGeographicTransformationUtils() {
|
|
9326
|
+
if (isAMD) {
|
|
9327
|
+
return await window.$arcgis.import("esri/geometry/operators/support/geographicTransformationUtils");
|
|
9328
|
+
}
|
|
9329
|
+
const module = await import("@arcgis/core/geometry/operators/support/geographicTransformationUtils.js");
|
|
9330
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9331
|
+
}
|
|
8722
9332
|
async function importGeometrySupportGeodesicUtils() {
|
|
8723
9333
|
if (isAMD) {
|
|
8724
9334
|
return await window.$arcgis.import("esri/geometry/support/geodesicUtils");
|
|
@@ -8775,6 +9385,20 @@ async function importLayersCatalogCatalogUtils() {
|
|
|
8775
9385
|
const module = await import("@arcgis/core/layers/catalog/catalogUtils.js");
|
|
8776
9386
|
return isDefaultModule(module) ? module.default : module;
|
|
8777
9387
|
}
|
|
9388
|
+
async function importLayersKnowledgeGraphCypherUtils() {
|
|
9389
|
+
if (isAMD) {
|
|
9390
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/cypherUtils");
|
|
9391
|
+
}
|
|
9392
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/cypherUtils.js");
|
|
9393
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9394
|
+
}
|
|
9395
|
+
async function importLayersKnowledgeGraphSupportUtils() {
|
|
9396
|
+
if (isAMD) {
|
|
9397
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/supportUtils");
|
|
9398
|
+
}
|
|
9399
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/supportUtils.js");
|
|
9400
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9401
|
+
}
|
|
8778
9402
|
async function importLayersOgcWfsUtils() {
|
|
8779
9403
|
if (isAMD) {
|
|
8780
9404
|
return await window.$arcgis.import("esri/layers/ogc/wfsUtils");
|
|
@@ -8789,6 +9413,20 @@ async function importLayersOgcWcsUtils() {
|
|
|
8789
9413
|
const module = await import("@arcgis/core/layers/ogc/wcsUtils.js");
|
|
8790
9414
|
return isDefaultModule(module) ? module.default : module;
|
|
8791
9415
|
}
|
|
9416
|
+
async function importLayersOrientedImageryTransformationsWorldToImage() {
|
|
9417
|
+
if (isAMD) {
|
|
9418
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/worldToImage");
|
|
9419
|
+
}
|
|
9420
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/worldToImage.js");
|
|
9421
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9422
|
+
}
|
|
9423
|
+
async function importLayersOrientedImageryTransformationsImageToWorld() {
|
|
9424
|
+
if (isAMD) {
|
|
9425
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/imageToWorld");
|
|
9426
|
+
}
|
|
9427
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/imageToWorld.js");
|
|
9428
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9429
|
+
}
|
|
8792
9430
|
async function importLayersSupportArcadeUtils() {
|
|
8793
9431
|
if (isAMD) {
|
|
8794
9432
|
return await window.$arcgis.import("esri/layers/support/arcadeUtils");
|
|
@@ -8796,6 +9434,13 @@ async function importLayersSupportArcadeUtils() {
|
|
|
8796
9434
|
const module = await import("@arcgis/core/layers/support/arcadeUtils.js");
|
|
8797
9435
|
return isDefaultModule(module) ? module.default : module;
|
|
8798
9436
|
}
|
|
9437
|
+
async function importLayersSupportCsvUtils() {
|
|
9438
|
+
if (isAMD) {
|
|
9439
|
+
return await window.$arcgis.import("esri/layers/support/csvUtils");
|
|
9440
|
+
}
|
|
9441
|
+
const module = await import("@arcgis/core/layers/support/csvUtils.js");
|
|
9442
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9443
|
+
}
|
|
8799
9444
|
async function importLayersSupportFieldUtils() {
|
|
8800
9445
|
if (isAMD) {
|
|
8801
9446
|
return await window.$arcgis.import("esri/layers/support/fieldUtils");
|
|
@@ -8852,13 +9497,6 @@ async function importPopupContent() {
|
|
|
8852
9497
|
const module = await import("@arcgis/core/popup/content.js");
|
|
8853
9498
|
return isDefaultModule(module) ? module.default : module;
|
|
8854
9499
|
}
|
|
8855
|
-
async function importPopupSupportUtilityNetworkAssociationType() {
|
|
8856
|
-
if (isAMD) {
|
|
8857
|
-
return await window.$arcgis.import("esri/popup/support/UtilityNetworkAssociationType");
|
|
8858
|
-
}
|
|
8859
|
-
const module = await import("@arcgis/core/popup/support/UtilityNetworkAssociationType.js");
|
|
8860
|
-
return isDefaultModule(module) ? module.default : module;
|
|
8861
|
-
}
|
|
8862
9500
|
async function importRasterRenderers() {
|
|
8863
9501
|
if (isAMD) {
|
|
8864
9502
|
return await window.$arcgis.import("esri/rasterRenderers");
|
|
@@ -9237,6 +9875,13 @@ async function importSmartMappingRenderersUnivariateColorSize() {
|
|
|
9237
9875
|
const module = await import("@arcgis/core/smartMapping/renderers/univariateColorSize.js");
|
|
9238
9876
|
return isDefaultModule(module) ? module.default : module;
|
|
9239
9877
|
}
|
|
9878
|
+
async function importSmartMappingRenderersSupportRendererUtils() {
|
|
9879
|
+
if (isAMD) {
|
|
9880
|
+
return await window.$arcgis.import("esri/smartMapping/renderers/support/rendererUtils");
|
|
9881
|
+
}
|
|
9882
|
+
const module = await import("@arcgis/core/smartMapping/renderers/support/rendererUtils.js");
|
|
9883
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9884
|
+
}
|
|
9240
9885
|
async function importSmartMappingStatisticsClassBreaks() {
|
|
9241
9886
|
if (isAMD) {
|
|
9242
9887
|
return await window.$arcgis.import("esri/smartMapping/statistics/classBreaks");
|
|
@@ -9426,11 +10071,11 @@ async function importSymbolsSupportSymbolUtils() {
|
|
|
9426
10071
|
const module = await import("@arcgis/core/symbols/support/symbolUtils.js");
|
|
9427
10072
|
return isDefaultModule(module) ? module.default : module;
|
|
9428
10073
|
}
|
|
9429
|
-
async function
|
|
10074
|
+
async function importTablesElements() {
|
|
9430
10075
|
if (isAMD) {
|
|
9431
|
-
return await window.$arcgis.import("esri/tables/
|
|
10076
|
+
return await window.$arcgis.import("esri/tables/elements");
|
|
9432
10077
|
}
|
|
9433
|
-
const module = await import("@arcgis/core/tables/
|
|
10078
|
+
const module = await import("@arcgis/core/tables/elements.js");
|
|
9434
10079
|
return isDefaultModule(module) ? module.default : module;
|
|
9435
10080
|
}
|
|
9436
10081
|
async function importVersionManagementUtils() {
|
|
@@ -9447,13 +10092,6 @@ async function importVersionManagementVersionAdaptersUtils() {
|
|
|
9447
10092
|
const module = await import("@arcgis/core/versionManagement/versionAdapters/utils.js");
|
|
9448
10093
|
return isDefaultModule(module) ? module.default : module;
|
|
9449
10094
|
}
|
|
9450
|
-
async function importViews3dExternalRenderers() {
|
|
9451
|
-
if (isAMD) {
|
|
9452
|
-
return await window.$arcgis.import("esri/views/3d/externalRenderers");
|
|
9453
|
-
}
|
|
9454
|
-
const module = await import("@arcgis/core/views/3d/externalRenderers.js");
|
|
9455
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9456
|
-
}
|
|
9457
10095
|
async function importViews3dWebglManagedFBO() {
|
|
9458
10096
|
if (isAMD) {
|
|
9459
10097
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -9503,6 +10141,13 @@ async function importViewsSupportColorUtils() {
|
|
|
9503
10141
|
const module = await import("@arcgis/core/views/support/colorUtils.js");
|
|
9504
10142
|
return isDefaultModule(module) ? module.default : module;
|
|
9505
10143
|
}
|
|
10144
|
+
async function importWebsceneSupportSlideElements() {
|
|
10145
|
+
if (isAMD) {
|
|
10146
|
+
return await window.$arcgis.import("esri/webscene/support/SlideElements");
|
|
10147
|
+
}
|
|
10148
|
+
const module = await import("@arcgis/core/webscene/support/SlideElements.js");
|
|
10149
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10150
|
+
}
|
|
9506
10151
|
async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
9507
10152
|
if (isAMD) {
|
|
9508
10153
|
return await window.$arcgis.import("esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel");
|
|
@@ -9517,6 +10162,13 @@ async function importWidgetsSmartMappingSupportUtils() {
|
|
|
9517
10162
|
const module = await import("@arcgis/core/widgets/smartMapping/support/utils.js");
|
|
9518
10163
|
return isDefaultModule(module) ? module.default : module;
|
|
9519
10164
|
}
|
|
10165
|
+
async function importWidgetsSupportUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel() {
|
|
10166
|
+
if (isAMD) {
|
|
10167
|
+
return await window.$arcgis.import("esri/widgets/support/UtilityNetworkAssociations/UtilityNetworkAssociationsViewModel");
|
|
10168
|
+
}
|
|
10169
|
+
const module = await import("@arcgis/core/widgets/support/UtilityNetworkAssociations/UtilityNetworkAssociationsViewModel.js");
|
|
10170
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10171
|
+
}
|
|
9520
10172
|
async function importWidgetsSupportWidget() {
|
|
9521
10173
|
if (isAMD) {
|
|
9522
10174
|
return await window.$arcgis.import("esri/widgets/support/widget");
|
|
@@ -9538,6 +10190,13 @@ async function importApplicationsComponentsDrawUtils() {
|
|
|
9538
10190
|
const module = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
9539
10191
|
return isDefaultModule(module) ? module.default : module;
|
|
9540
10192
|
}
|
|
10193
|
+
async function importApplicationsComponentsFontUtils() {
|
|
10194
|
+
if (isAMD) {
|
|
10195
|
+
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
10196
|
+
}
|
|
10197
|
+
const module = await import("@arcgis/core/applications/Components/fontUtils.js");
|
|
10198
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10199
|
+
}
|
|
9541
10200
|
async function importApplicationsComponentsGetDefaultUnits() {
|
|
9542
10201
|
if (isAMD) {
|
|
9543
10202
|
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
@@ -9573,6 +10232,27 @@ async function importApplicationsComponentsPreviewSymbol2D() {
|
|
|
9573
10232
|
const module = await import("@arcgis/core/applications/Components/previewSymbol2D.js");
|
|
9574
10233
|
return isDefaultModule(module) ? module.default : module;
|
|
9575
10234
|
}
|
|
10235
|
+
async function importApplicationsComponentsReactiveUtils() {
|
|
10236
|
+
if (isAMD) {
|
|
10237
|
+
return await window.$arcgis.import("esri/applications/Components/reactiveUtils");
|
|
10238
|
+
}
|
|
10239
|
+
const module = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
10240
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10241
|
+
}
|
|
10242
|
+
async function importApplicationsComponentsSelectionOperation() {
|
|
10243
|
+
if (isAMD) {
|
|
10244
|
+
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
10245
|
+
}
|
|
10246
|
+
const module = await import("@arcgis/core/applications/Components/SelectionOperation.js");
|
|
10247
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10248
|
+
}
|
|
10249
|
+
async function importApplicationsComponentsSketchTooltipControls() {
|
|
10250
|
+
if (isAMD) {
|
|
10251
|
+
return await window.$arcgis.import("esri/applications/Components/SketchTooltipControls");
|
|
10252
|
+
}
|
|
10253
|
+
const module = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
10254
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10255
|
+
}
|
|
9576
10256
|
async function importApplicationsComponentsStyleUtils() {
|
|
9577
10257
|
if (isAMD) {
|
|
9578
10258
|
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
@@ -9594,13 +10274,6 @@ async function importApplicationsComponentsWebStyleSymbolUtils() {
|
|
|
9594
10274
|
const module = await import("@arcgis/core/applications/Components/webStyleSymbolUtils.js");
|
|
9595
10275
|
return isDefaultModule(module) ? module.default : module;
|
|
9596
10276
|
}
|
|
9597
|
-
async function importApplicationsExcaliburVideoViewUtils() {
|
|
9598
|
-
if (isAMD) {
|
|
9599
|
-
return await window.$arcgis.import("esri/applications/Excalibur/videoViewUtils");
|
|
9600
|
-
}
|
|
9601
|
-
const module = await import("@arcgis/core/applications/Excalibur/videoViewUtils.js");
|
|
9602
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9603
|
-
}
|
|
9604
10277
|
async function importApplicationsExperienceBuilderSketchUtils() {
|
|
9605
10278
|
if (isAMD) {
|
|
9606
10279
|
return await window.$arcgis.import("esri/applications/ExperienceBuilder/sketchUtils");
|
|
@@ -9608,18 +10281,11 @@ async function importApplicationsExperienceBuilderSketchUtils() {
|
|
|
9608
10281
|
const module = await import("@arcgis/core/applications/ExperienceBuilder/sketchUtils.js");
|
|
9609
10282
|
return isDefaultModule(module) ? module.default : module;
|
|
9610
10283
|
}
|
|
9611
|
-
async function
|
|
9612
|
-
if (isAMD) {
|
|
9613
|
-
return await window.$arcgis.import("esri/applications/MapViewer/mediaUtils");
|
|
9614
|
-
}
|
|
9615
|
-
const module = await import("@arcgis/core/applications/MapViewer/mediaUtils.js");
|
|
9616
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9617
|
-
}
|
|
9618
|
-
async function importApplicationsSceneViewerColorUtils() {
|
|
10284
|
+
async function importApplicationsMapViewerTemplateUtils() {
|
|
9619
10285
|
if (isAMD) {
|
|
9620
|
-
return await window.$arcgis.import("esri/applications/
|
|
10286
|
+
return await window.$arcgis.import("esri/applications/MapViewer/templateUtils");
|
|
9621
10287
|
}
|
|
9622
|
-
const module = await import("@arcgis/core/applications/
|
|
10288
|
+
const module = await import("@arcgis/core/applications/MapViewer/templateUtils.js");
|
|
9623
10289
|
return isDefaultModule(module) ? module.default : module;
|
|
9624
10290
|
}
|
|
9625
10291
|
async function importApplicationsSceneViewerDevEnvironmentUtils() {
|
|
@@ -9629,34 +10295,6 @@ async function importApplicationsSceneViewerDevEnvironmentUtils() {
|
|
|
9629
10295
|
const module = await import("@arcgis/core/applications/SceneViewer/devEnvironmentUtils.js");
|
|
9630
10296
|
return isDefaultModule(module) ? module.default : module;
|
|
9631
10297
|
}
|
|
9632
|
-
async function importApplicationsSceneViewerLayerUtils() {
|
|
9633
|
-
if (isAMD) {
|
|
9634
|
-
return await window.$arcgis.import("esri/applications/SceneViewer/layerUtils");
|
|
9635
|
-
}
|
|
9636
|
-
const module = await import("@arcgis/core/applications/SceneViewer/layerUtils.js");
|
|
9637
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9638
|
-
}
|
|
9639
|
-
async function importApplicationsSceneViewerSceneViewerUtils() {
|
|
9640
|
-
if (isAMD) {
|
|
9641
|
-
return await window.$arcgis.import("esri/applications/SceneViewer/sceneViewerUtils");
|
|
9642
|
-
}
|
|
9643
|
-
const module = await import("@arcgis/core/applications/SceneViewer/sceneViewerUtils.js");
|
|
9644
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9645
|
-
}
|
|
9646
|
-
async function importApplicationsSceneViewerSymbolUtils() {
|
|
9647
|
-
if (isAMD) {
|
|
9648
|
-
return await window.$arcgis.import("esri/applications/SceneViewer/symbolUtils");
|
|
9649
|
-
}
|
|
9650
|
-
const module = await import("@arcgis/core/applications/SceneViewer/symbolUtils.js");
|
|
9651
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9652
|
-
}
|
|
9653
|
-
async function importApplicationsUrbanMeshUtils() {
|
|
9654
|
-
if (isAMD) {
|
|
9655
|
-
return await window.$arcgis.import("esri/applications/Urban/meshUtils");
|
|
9656
|
-
}
|
|
9657
|
-
const module = await import("@arcgis/core/applications/Urban/meshUtils.js");
|
|
9658
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9659
|
-
}
|
|
9660
10298
|
async function importApplicationsWebEditorSketchUtils() {
|
|
9661
10299
|
if (isAMD) {
|
|
9662
10300
|
return await window.$arcgis.import("esri/applications/WebEditor/sketchUtils");
|
|
@@ -9679,25 +10317,24 @@ export {
|
|
|
9679
10317
|
importAnalysisViewshedAnalysis,
|
|
9680
10318
|
importApplicationsComponentsBasemapUtils,
|
|
9681
10319
|
importApplicationsComponentsDrawUtils,
|
|
10320
|
+
importApplicationsComponentsFontUtils,
|
|
9682
10321
|
importApplicationsComponentsGetDefaultUnits,
|
|
9683
10322
|
importApplicationsComponentsGfxUtils,
|
|
9684
10323
|
importApplicationsComponentsLayerOriginUtils,
|
|
9685
10324
|
importApplicationsComponentsLayersEffectsJsonUtils,
|
|
9686
10325
|
importApplicationsComponentsPreviewSymbol2D,
|
|
10326
|
+
importApplicationsComponentsReactiveUtils,
|
|
10327
|
+
importApplicationsComponentsSelectionOperation,
|
|
10328
|
+
importApplicationsComponentsSketchTooltipControls,
|
|
9687
10329
|
importApplicationsComponentsStyleUtils,
|
|
9688
10330
|
importApplicationsComponentsSvgUtils,
|
|
9689
10331
|
importApplicationsComponentsWebStyleSymbolUtils,
|
|
9690
|
-
importApplicationsExcaliburVideoViewUtils,
|
|
9691
10332
|
importApplicationsExperienceBuilderSketchUtils,
|
|
9692
|
-
|
|
9693
|
-
importApplicationsSceneViewerColorUtils,
|
|
10333
|
+
importApplicationsMapViewerTemplateUtils,
|
|
9694
10334
|
importApplicationsSceneViewerDevEnvironmentUtils,
|
|
9695
|
-
importApplicationsSceneViewerLayerUtils,
|
|
9696
|
-
importApplicationsSceneViewerSceneViewerUtils,
|
|
9697
|
-
importApplicationsSceneViewerSymbolUtils,
|
|
9698
|
-
importApplicationsUrbanMeshUtils,
|
|
9699
10335
|
importApplicationsWebEditorSketchUtils,
|
|
9700
10336
|
importArcade,
|
|
10337
|
+
importAttributeBinsGraphic,
|
|
9701
10338
|
importBasemap,
|
|
9702
10339
|
importCamera,
|
|
9703
10340
|
importCameraLayout,
|
|
@@ -9717,16 +10354,18 @@ export {
|
|
|
9717
10354
|
importCoreUrlUtils,
|
|
9718
10355
|
importCoreWorkers,
|
|
9719
10356
|
importCoreWorkersConnection,
|
|
10357
|
+
importEditingSharedTemplatesSharedTemplateMetadata,
|
|
10358
|
+
importFormElements,
|
|
9720
10359
|
importFormElementsAttachmentElement,
|
|
9721
10360
|
importFormElementsElement,
|
|
9722
10361
|
importFormElementsFieldElement,
|
|
9723
10362
|
importFormElementsGroupElement,
|
|
10363
|
+
importFormElementsInputs,
|
|
9724
10364
|
importFormElementsInputsAttachmentsAttachmentInput,
|
|
9725
10365
|
importFormElementsInputsAttachmentsAudioInput,
|
|
9726
10366
|
importFormElementsInputsAttachmentsDocumentInput,
|
|
9727
10367
|
importFormElementsInputsAttachmentsImageInput,
|
|
9728
10368
|
importFormElementsInputsAttachmentsSignatureInput,
|
|
9729
|
-
importFormElementsInputsAttachmentsSupportInputs,
|
|
9730
10369
|
importFormElementsInputsAttachmentsVideoInput,
|
|
9731
10370
|
importFormElementsInputsBarcodeScannerInput,
|
|
9732
10371
|
importFormElementsInputsComboBoxInput,
|
|
@@ -9739,11 +10378,10 @@ export {
|
|
|
9739
10378
|
importFormElementsInputsTextBoxInput,
|
|
9740
10379
|
importFormElementsInputsTimePickerInput,
|
|
9741
10380
|
importFormElementsRelationshipElement,
|
|
9742
|
-
importFormElementsSupportInputs,
|
|
9743
10381
|
importFormElementsTextElement,
|
|
10382
|
+
importFormElementsUtilityNetworkAssociationsElement,
|
|
9744
10383
|
importFormExpressionInfo,
|
|
9745
10384
|
importFormFormTemplate,
|
|
9746
|
-
importFormSupportElements,
|
|
9747
10385
|
importGeometry,
|
|
9748
10386
|
importGeometryCircle,
|
|
9749
10387
|
importGeometryCoordinateFormatter,
|
|
@@ -9755,7 +10393,10 @@ export {
|
|
|
9755
10393
|
importGeometryMesh,
|
|
9756
10394
|
importGeometryMultipoint,
|
|
9757
10395
|
importGeometryOperatorsAffineTransformOperator,
|
|
10396
|
+
importGeometryOperatorsAlphaShapeOperator,
|
|
9758
10397
|
importGeometryOperatorsAreaOperator,
|
|
10398
|
+
importGeometryOperatorsAutoCompleteOperator,
|
|
10399
|
+
importGeometryOperatorsBoundaryOperator,
|
|
9759
10400
|
importGeometryOperatorsBufferOperator,
|
|
9760
10401
|
importGeometryOperatorsCentroidOperator,
|
|
9761
10402
|
importGeometryOperatorsClipOperator,
|
|
@@ -9768,21 +10409,38 @@ export {
|
|
|
9768
10409
|
importGeometryOperatorsDisjointOperator,
|
|
9769
10410
|
importGeometryOperatorsDistanceOperator,
|
|
9770
10411
|
importGeometryOperatorsEqualsOperator,
|
|
10412
|
+
importGeometryOperatorsExtendOperator,
|
|
9771
10413
|
importGeometryOperatorsGeneralizeOperator,
|
|
9772
10414
|
importGeometryOperatorsGeodesicBufferOperator,
|
|
10415
|
+
importGeometryOperatorsGeodesicProximityOperator,
|
|
9773
10416
|
importGeometryOperatorsGeodeticAreaOperator,
|
|
9774
10417
|
importGeometryOperatorsGeodeticDensifyOperator,
|
|
9775
10418
|
importGeometryOperatorsGeodeticDistanceOperator,
|
|
9776
10419
|
importGeometryOperatorsGeodeticLengthOperator,
|
|
9777
10420
|
importGeometryOperatorsGraphicBufferOperator,
|
|
10421
|
+
importGeometryOperatorsIntegrateOperator,
|
|
9778
10422
|
importGeometryOperatorsIntersectionOperator,
|
|
9779
10423
|
importGeometryOperatorsIntersectsOperator,
|
|
10424
|
+
importGeometryOperatorsIsNearOperator,
|
|
10425
|
+
importGeometryOperatorsLabelPointOperator,
|
|
9780
10426
|
importGeometryOperatorsLengthOperator,
|
|
10427
|
+
importGeometryOperatorsLinesToPolygonsOperator,
|
|
10428
|
+
importGeometryOperatorsLocateBetweenOperator,
|
|
10429
|
+
importGeometryOperatorsMinimumBoundingCircleOperator,
|
|
10430
|
+
importGeometryOperatorsMultiPartToSinglePartOperator,
|
|
9781
10431
|
importGeometryOperatorsOffsetOperator,
|
|
9782
10432
|
importGeometryOperatorsOverlapsOperator,
|
|
10433
|
+
importGeometryOperatorsPolygonOverlayOperator,
|
|
10434
|
+
importGeometryOperatorsPolygonSlicerOperator,
|
|
10435
|
+
importGeometryOperatorsProjectOperator,
|
|
9783
10436
|
importGeometryOperatorsProximityOperator,
|
|
9784
10437
|
importGeometryOperatorsRelateOperator,
|
|
10438
|
+
importGeometryOperatorsReshapeOperator,
|
|
10439
|
+
importGeometryOperatorsShapePreservingProjectOperator,
|
|
9785
10440
|
importGeometryOperatorsSimplifyOperator,
|
|
10441
|
+
importGeometryOperatorsSupportGeographicTransformation,
|
|
10442
|
+
importGeometryOperatorsSupportGeographicTransformationStep,
|
|
10443
|
+
importGeometryOperatorsSupportGeographicTransformationUtils,
|
|
9786
10444
|
importGeometryOperatorsSupportTransformation,
|
|
9787
10445
|
importGeometryOperatorsSymmetricDifferenceOperator,
|
|
9788
10446
|
importGeometryOperatorsTouchesOperator,
|
|
@@ -9841,10 +10499,13 @@ export {
|
|
|
9841
10499
|
importLayersIntegratedMesh3DTilesLayer,
|
|
9842
10500
|
importLayersIntegratedMeshLayer,
|
|
9843
10501
|
importLayersKMLLayer,
|
|
10502
|
+
importLayersKnowledgeGraphCypherUtils,
|
|
9844
10503
|
importLayersKnowledgeGraphKnowledgeGraphSublayer,
|
|
9845
10504
|
importLayersKnowledgeGraphLayer,
|
|
10505
|
+
importLayersKnowledgeGraphSupportUtils,
|
|
9846
10506
|
importLayersLayer,
|
|
9847
10507
|
importLayersLineOfSightLayer,
|
|
10508
|
+
importLayersLinkChartLayer,
|
|
9848
10509
|
importLayersMapImageLayer,
|
|
9849
10510
|
importLayersMapNotesLayer,
|
|
9850
10511
|
importLayersMediaLayer,
|
|
@@ -9853,6 +10514,8 @@ export {
|
|
|
9853
10514
|
importLayersOgcWfsUtils,
|
|
9854
10515
|
importLayersOpenStreetMapLayer,
|
|
9855
10516
|
importLayersOrientedImageryLayer,
|
|
10517
|
+
importLayersOrientedImageryTransformationsImageToWorld,
|
|
10518
|
+
importLayersOrientedImageryTransformationsWorldToImage,
|
|
9856
10519
|
importLayersPointCloudFiltersPointCloudBitfieldFilter,
|
|
9857
10520
|
importLayersPointCloudFiltersPointCloudFilter,
|
|
9858
10521
|
importLayersPointCloudFiltersPointCloudReturnFilter,
|
|
@@ -9869,7 +10532,10 @@ export {
|
|
|
9869
10532
|
importLayersSupportCodedValueDomain,
|
|
9870
10533
|
importLayersSupportControlPointsGeoreference,
|
|
9871
10534
|
importLayersSupportCornersGeoreference,
|
|
10535
|
+
importLayersSupportCsvUtils,
|
|
9872
10536
|
importLayersSupportDimensionalDefinition,
|
|
10537
|
+
importLayersSupportDisplayFilter,
|
|
10538
|
+
importLayersSupportDisplayFilterInfo,
|
|
9873
10539
|
importLayersSupportDomain,
|
|
9874
10540
|
importLayersSupportElevationSampler,
|
|
9875
10541
|
importLayersSupportExpressionInfo,
|
|
@@ -9897,6 +10563,7 @@ export {
|
|
|
9897
10563
|
importLayersSupportMapImage,
|
|
9898
10564
|
importLayersSupportMosaicRule,
|
|
9899
10565
|
importLayersSupportMultidimensionalSubset,
|
|
10566
|
+
importLayersSupportOrderByInfo,
|
|
9900
10567
|
importLayersSupportPixelBlock,
|
|
9901
10568
|
importLayersSupportPublishingInfo,
|
|
9902
10569
|
importLayersSupportRangeDomain,
|
|
@@ -9946,6 +10613,11 @@ export {
|
|
|
9946
10613
|
importLayersWMSLayer,
|
|
9947
10614
|
importLayersWMTSLayer,
|
|
9948
10615
|
importLayersWebTileLayer,
|
|
10616
|
+
importLinkChartChronologicalLayoutSettings,
|
|
10617
|
+
importLinkChartLayoutSettings,
|
|
10618
|
+
importLinkChartLinkChartProperties,
|
|
10619
|
+
importLinkChartNonspatialDataDisplay,
|
|
10620
|
+
importLinkChartOrganicLayoutSettings,
|
|
9949
10621
|
importMap,
|
|
9950
10622
|
importNetworksNetwork,
|
|
9951
10623
|
importNetworksSupportNamedTraceConfiguration,
|
|
@@ -10058,6 +10730,7 @@ export {
|
|
|
10058
10730
|
importRestKnowledgeGraphGraphProperty,
|
|
10059
10731
|
importRestKnowledgeGraphGraphQuery,
|
|
10060
10732
|
importRestKnowledgeGraphGraphQueryResult,
|
|
10733
|
+
importRestKnowledgeGraphGraphQueryResultHeader,
|
|
10061
10734
|
importRestKnowledgeGraphGraphQueryStreaming,
|
|
10062
10735
|
importRestKnowledgeGraphGraphQueryStreamingResult,
|
|
10063
10736
|
importRestKnowledgeGraphGraphSearch,
|
|
@@ -10071,6 +10744,12 @@ export {
|
|
|
10071
10744
|
importRestKnowledgeGraphSearchIndex,
|
|
10072
10745
|
importRestKnowledgeGraphService,
|
|
10073
10746
|
importRestKnowledgeGraphServiceDefinition,
|
|
10747
|
+
importRestKnowledgeGraphSourceTypeValueBehavior,
|
|
10748
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration,
|
|
10749
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity,
|
|
10750
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter,
|
|
10751
|
+
importRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection,
|
|
10752
|
+
importRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings,
|
|
10074
10753
|
importRestLocator,
|
|
10075
10754
|
importRestNetworkService,
|
|
10076
10755
|
importRestNetworksQueryAssociations,
|
|
@@ -10100,6 +10779,12 @@ export {
|
|
|
10100
10779
|
importRestSupportArealUnit,
|
|
10101
10780
|
importRestSupportAreasAndLengthsParameters,
|
|
10102
10781
|
importRestSupportAttachmentQuery,
|
|
10782
|
+
importRestSupportAttributeBinsFeatureSet,
|
|
10783
|
+
importRestSupportAttributeBinsGrouping,
|
|
10784
|
+
importRestSupportAttributeBinsQuery,
|
|
10785
|
+
importRestSupportAutoIntervalBinParameters,
|
|
10786
|
+
importRestSupportBaseImageMeasureParameters,
|
|
10787
|
+
importRestSupportBaseImageMeasureResult,
|
|
10103
10788
|
importRestSupportBufferParameters,
|
|
10104
10789
|
importRestSupportCameraInfo,
|
|
10105
10790
|
importRestSupportClosestFacilityParameters,
|
|
@@ -10107,6 +10792,8 @@ export {
|
|
|
10107
10792
|
importRestSupportColorRamp,
|
|
10108
10793
|
importRestSupportDataFile,
|
|
10109
10794
|
importRestSupportDataLayer,
|
|
10795
|
+
importRestSupportDateBinParameters,
|
|
10796
|
+
importRestSupportDateBinTimeInterval,
|
|
10110
10797
|
importRestSupportDensifyParameters,
|
|
10111
10798
|
importRestSupportDirectionLine,
|
|
10112
10799
|
importRestSupportDirectionPoint,
|
|
@@ -10120,6 +10807,8 @@ export {
|
|
|
10120
10807
|
importRestSupportFindImagesResult,
|
|
10121
10808
|
importRestSupportFindParameters,
|
|
10122
10809
|
importRestSupportFindResult,
|
|
10810
|
+
importRestSupportFixedBoundariesBinParameters,
|
|
10811
|
+
importRestSupportFixedIntervalBinParameters,
|
|
10123
10812
|
importRestSupportGPMessage,
|
|
10124
10813
|
importRestSupportGeneralizeParameters,
|
|
10125
10814
|
importRestSupportIdentifyParameters,
|
|
@@ -10153,6 +10842,9 @@ export {
|
|
|
10153
10842
|
importRestSupportImageToMapParameters,
|
|
10154
10843
|
importRestSupportImageUrlParameters,
|
|
10155
10844
|
importRestSupportImageUrlResult,
|
|
10845
|
+
importRestSupportImageVolume,
|
|
10846
|
+
importRestSupportImageVolumeParameters,
|
|
10847
|
+
importRestSupportImageVolumeResult,
|
|
10156
10848
|
importRestSupportJobInfo,
|
|
10157
10849
|
importRestSupportLegendLayer,
|
|
10158
10850
|
importRestSupportLengthsParameters,
|
|
@@ -10220,6 +10912,7 @@ export {
|
|
|
10220
10912
|
importSmartMappingRenderersPredominance,
|
|
10221
10913
|
importSmartMappingRenderersRelationship,
|
|
10222
10914
|
importSmartMappingRenderersSize,
|
|
10915
|
+
importSmartMappingRenderersSupportRendererUtils,
|
|
10223
10916
|
importSmartMappingRenderersType,
|
|
10224
10917
|
importSmartMappingRenderersUnivariateColorSize,
|
|
10225
10918
|
importSmartMappingStatisticsClassBreaks,
|
|
@@ -10294,12 +10987,12 @@ export {
|
|
|
10294
10987
|
importSymbolsWaterSymbol3DLayer,
|
|
10295
10988
|
importSymbolsWebStyleSymbol,
|
|
10296
10989
|
importTablesAttributeTableTemplate,
|
|
10990
|
+
importTablesElements,
|
|
10297
10991
|
importTablesElementsAttributeTableAttachmentElement,
|
|
10298
10992
|
importTablesElementsAttributeTableElement,
|
|
10299
10993
|
importTablesElementsAttributeTableFieldElement,
|
|
10300
10994
|
importTablesElementsAttributeTableGroupElement,
|
|
10301
10995
|
importTablesElementsAttributeTableRelationshipElement,
|
|
10302
|
-
importTablesSupportElements,
|
|
10303
10996
|
importTimeExtent,
|
|
10304
10997
|
importTimeInterval,
|
|
10305
10998
|
importTimeTimeExtent,
|
|
@@ -10325,7 +11018,6 @@ export {
|
|
|
10325
11018
|
importViews3dEnvironmentSunLighting,
|
|
10326
11019
|
importViews3dEnvironmentSunnyWeather,
|
|
10327
11020
|
importViews3dEnvironmentVirtualLighting,
|
|
10328
|
-
importViews3dExternalRenderers,
|
|
10329
11021
|
importViews3dSupportLayerPerformanceInfo,
|
|
10330
11022
|
importViews3dSupportSceneViewPerformanceInfo,
|
|
10331
11023
|
importViews3dWebgl,
|
|
@@ -10367,12 +11059,15 @@ export {
|
|
|
10367
11059
|
importViewsLayersSceneLayerView,
|
|
10368
11060
|
importViewsLayersStreamLayerView,
|
|
10369
11061
|
importViewsLayersViewshedLayerView,
|
|
11062
|
+
importViewsLinkChartView,
|
|
10370
11063
|
importViewsMagnifier,
|
|
10371
11064
|
importViewsMapView,
|
|
10372
11065
|
importViewsNavigationGamepadGamepadSettings,
|
|
10373
11066
|
importViewsNavigationNavigation,
|
|
11067
|
+
importViewsNavigationNavigationActionMap,
|
|
10374
11068
|
importViewsSceneView,
|
|
10375
11069
|
importViewsSupportColorUtils,
|
|
11070
|
+
importViewsSupportHighlightOptions,
|
|
10376
11071
|
importViewsTheme,
|
|
10377
11072
|
importViewsUiDefaultUI,
|
|
10378
11073
|
importViewsUiUI,
|
|
@@ -10380,6 +11075,7 @@ export {
|
|
|
10380
11075
|
importViewsView2D,
|
|
10381
11076
|
importViewsViewAnimation,
|
|
10382
11077
|
importWebDocument2D,
|
|
11078
|
+
importWebLinkChart,
|
|
10383
11079
|
importWebMap,
|
|
10384
11080
|
importWebScene,
|
|
10385
11081
|
importWebdocApplicationPropertiesSearch,
|
|
@@ -10411,7 +11107,9 @@ export {
|
|
|
10411
11107
|
importWebsceneInitialViewProperties,
|
|
10412
11108
|
importWebscenePresentation,
|
|
10413
11109
|
importWebsceneSlide,
|
|
11110
|
+
importWebsceneSlideLegendInfo,
|
|
10414
11111
|
importWebsceneSunLighting,
|
|
11112
|
+
importWebsceneSupportSlideElements,
|
|
10415
11113
|
importWebsceneVirtualLighting,
|
|
10416
11114
|
importWidgetsAreaMeasurement2D,
|
|
10417
11115
|
importWidgetsAreaMeasurement2DAreaMeasurement2DViewModel,
|
|
@@ -10481,6 +11179,8 @@ export {
|
|
|
10481
11179
|
importWidgetsFeatureFormFieldInput,
|
|
10482
11180
|
importWidgetsFeatureFormGroupInput,
|
|
10483
11181
|
importWidgetsFeatureFormRelationshipInput,
|
|
11182
|
+
importWidgetsFeatureFormTextElementInput,
|
|
11183
|
+
importWidgetsFeatureFormUtilityNetworkAssociationInput,
|
|
10484
11184
|
importWidgetsFeatureTable,
|
|
10485
11185
|
importWidgetsFeatureTableActionColumn,
|
|
10486
11186
|
importWidgetsFeatureTableAttachmentsColumn,
|
|
@@ -10492,10 +11192,12 @@ export {
|
|
|
10492
11192
|
importWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
10493
11193
|
importWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
10494
11194
|
importWidgetsFeatureTableRelationshipColumn,
|
|
11195
|
+
importWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
10495
11196
|
importWidgetsFeatureTableSupportColumnTemplate,
|
|
10496
11197
|
importWidgetsFeatureTableSupportColumnTemplateBase,
|
|
10497
11198
|
importWidgetsFeatureTableSupportFieldColumnTemplate,
|
|
10498
11199
|
importWidgetsFeatureTableSupportGroupColumnTemplate,
|
|
11200
|
+
importWidgetsFeatureTableSupportRelationshipColumnTemplate,
|
|
10499
11201
|
importWidgetsFeatureTableSupportTableTemplate,
|
|
10500
11202
|
importWidgetsFeatureTemplates,
|
|
10501
11203
|
importWidgetsFeatureTemplatesFeatureTemplatesViewModel,
|
|
@@ -10580,6 +11282,7 @@ export {
|
|
|
10580
11282
|
importWidgetsSupportGridControlsGridControlsViewModel,
|
|
10581
11283
|
importWidgetsSupportSnappingControls,
|
|
10582
11284
|
importWidgetsSupportSnappingControlsSnappingControlsViewModel,
|
|
11285
|
+
importWidgetsSupportUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
10583
11286
|
importWidgetsSupportWidget,
|
|
10584
11287
|
importWidgetsSwipe,
|
|
10585
11288
|
importWidgetsSwipeSwipeViewModel,
|
|
@@ -10595,6 +11298,7 @@ export {
|
|
|
10595
11298
|
importWidgetsUtilityNetworkAssociations,
|
|
10596
11299
|
importWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
10597
11300
|
importWidgetsUtilityNetworkTrace,
|
|
11301
|
+
importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel,
|
|
10598
11302
|
importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel,
|
|
10599
11303
|
importWidgetsUtilityNetworkValidateTopology,
|
|
10600
11304
|
importWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel,
|
|
@@ -10624,6 +11328,7 @@ export {
|
|
|
10624
11328
|
newAnalysisSlicePlane,
|
|
10625
11329
|
newAnalysisViewshed,
|
|
10626
11330
|
newAnalysisViewshedAnalysis,
|
|
11331
|
+
newAttributeBinsGraphic,
|
|
10627
11332
|
newBasemap,
|
|
10628
11333
|
newCamera,
|
|
10629
11334
|
newCameraLayout,
|
|
@@ -10655,6 +11360,7 @@ export {
|
|
|
10655
11360
|
newFormElementsInputsTimePickerInput,
|
|
10656
11361
|
newFormElementsRelationshipElement,
|
|
10657
11362
|
newFormElementsTextElement,
|
|
11363
|
+
newFormElementsUtilityNetworkAssociationsElement,
|
|
10658
11364
|
newFormExpressionInfo,
|
|
10659
11365
|
newFormFormTemplate,
|
|
10660
11366
|
newGeometryCircle,
|
|
@@ -10663,6 +11369,8 @@ export {
|
|
|
10663
11369
|
newGeometryHeightModelInfo,
|
|
10664
11370
|
newGeometryMesh,
|
|
10665
11371
|
newGeometryMultipoint,
|
|
11372
|
+
newGeometryOperatorsSupportGeographicTransformation,
|
|
11373
|
+
newGeometryOperatorsSupportGeographicTransformationStep,
|
|
10666
11374
|
newGeometryOperatorsSupportTransformation,
|
|
10667
11375
|
newGeometryPoint,
|
|
10668
11376
|
newGeometryPolygon,
|
|
@@ -10711,6 +11419,7 @@ export {
|
|
|
10711
11419
|
newLayersKnowledgeGraphLayer,
|
|
10712
11420
|
newLayersLayer,
|
|
10713
11421
|
newLayersLineOfSightLayer,
|
|
11422
|
+
newLayersLinkChartLayer,
|
|
10714
11423
|
newLayersMapImageLayer,
|
|
10715
11424
|
newLayersMapNotesLayer,
|
|
10716
11425
|
newLayersMediaLayer,
|
|
@@ -10733,6 +11442,8 @@ export {
|
|
|
10733
11442
|
newLayersSupportControlPointsGeoreference,
|
|
10734
11443
|
newLayersSupportCornersGeoreference,
|
|
10735
11444
|
newLayersSupportDimensionalDefinition,
|
|
11445
|
+
newLayersSupportDisplayFilter,
|
|
11446
|
+
newLayersSupportDisplayFilterInfo,
|
|
10736
11447
|
newLayersSupportDomain,
|
|
10737
11448
|
newLayersSupportElevationSampler,
|
|
10738
11449
|
newLayersSupportExpressionInfo,
|
|
@@ -10759,6 +11470,7 @@ export {
|
|
|
10759
11470
|
newLayersSupportMapImage,
|
|
10760
11471
|
newLayersSupportMosaicRule,
|
|
10761
11472
|
newLayersSupportMultidimensionalSubset,
|
|
11473
|
+
newLayersSupportOrderByInfo,
|
|
10762
11474
|
newLayersSupportPixelBlock,
|
|
10763
11475
|
newLayersSupportPublishingInfo,
|
|
10764
11476
|
newLayersSupportRangeDomain,
|
|
@@ -10803,6 +11515,11 @@ export {
|
|
|
10803
11515
|
newLayersWMSLayer,
|
|
10804
11516
|
newLayersWMTSLayer,
|
|
10805
11517
|
newLayersWebTileLayer,
|
|
11518
|
+
newLinkChartChronologicalLayoutSettings,
|
|
11519
|
+
newLinkChartLayoutSettings,
|
|
11520
|
+
newLinkChartLinkChartProperties,
|
|
11521
|
+
newLinkChartNonspatialDataDisplay,
|
|
11522
|
+
newLinkChartOrganicLayoutSettings,
|
|
10806
11523
|
newMap,
|
|
10807
11524
|
newNetworksNetwork,
|
|
10808
11525
|
newNetworksSupportNamedTraceConfiguration,
|
|
@@ -10838,6 +11555,7 @@ export {
|
|
|
10838
11555
|
newPopupRelatedRecordsInfo,
|
|
10839
11556
|
newPopupSupportFieldInfoFormat,
|
|
10840
11557
|
newPopupSupportRelatedRecordsInfoFieldOrder,
|
|
11558
|
+
newPopupSupportUtilityNetworkAssociationType,
|
|
10841
11559
|
newPopupTemplate,
|
|
10842
11560
|
newPortalPortal,
|
|
10843
11561
|
newPortalPortalFolder,
|
|
@@ -10899,6 +11617,7 @@ export {
|
|
|
10899
11617
|
newRestKnowledgeGraphGraphProperty,
|
|
10900
11618
|
newRestKnowledgeGraphGraphQuery,
|
|
10901
11619
|
newRestKnowledgeGraphGraphQueryResult,
|
|
11620
|
+
newRestKnowledgeGraphGraphQueryResultHeader,
|
|
10902
11621
|
newRestKnowledgeGraphGraphQueryStreaming,
|
|
10903
11622
|
newRestKnowledgeGraphGraphQueryStreamingResult,
|
|
10904
11623
|
newRestKnowledgeGraphGraphSearch,
|
|
@@ -10911,6 +11630,12 @@ export {
|
|
|
10911
11630
|
newRestKnowledgeGraphRelationshipType,
|
|
10912
11631
|
newRestKnowledgeGraphSearchIndex,
|
|
10913
11632
|
newRestKnowledgeGraphServiceDefinition,
|
|
11633
|
+
newRestKnowledgeGraphSourceTypeValueBehavior,
|
|
11634
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsConfiguration,
|
|
11635
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsEntity,
|
|
11636
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMFilteredFindPathsPathFilter,
|
|
11637
|
+
newRestKnowledgeGraphToolServiceFindPathsCIMKGTraversalDirection,
|
|
11638
|
+
newRestKnowledgeGraphToolServiceFindPathsFindPathsToolSettings,
|
|
10914
11639
|
newRestNetworksSupportAggregatedGeometry,
|
|
10915
11640
|
newRestNetworksSupportAssociation,
|
|
10916
11641
|
newRestNetworksSupportAssociationGeometriesResult,
|
|
@@ -10929,6 +11654,12 @@ export {
|
|
|
10929
11654
|
newRestSupportArealUnit,
|
|
10930
11655
|
newRestSupportAreasAndLengthsParameters,
|
|
10931
11656
|
newRestSupportAttachmentQuery,
|
|
11657
|
+
newRestSupportAttributeBinsFeatureSet,
|
|
11658
|
+
newRestSupportAttributeBinsGrouping,
|
|
11659
|
+
newRestSupportAttributeBinsQuery,
|
|
11660
|
+
newRestSupportAutoIntervalBinParameters,
|
|
11661
|
+
newRestSupportBaseImageMeasureParameters,
|
|
11662
|
+
newRestSupportBaseImageMeasureResult,
|
|
10932
11663
|
newRestSupportBufferParameters,
|
|
10933
11664
|
newRestSupportCameraInfo,
|
|
10934
11665
|
newRestSupportClosestFacilityParameters,
|
|
@@ -10936,6 +11667,8 @@ export {
|
|
|
10936
11667
|
newRestSupportColorRamp,
|
|
10937
11668
|
newRestSupportDataFile,
|
|
10938
11669
|
newRestSupportDataLayer,
|
|
11670
|
+
newRestSupportDateBinParameters,
|
|
11671
|
+
newRestSupportDateBinTimeInterval,
|
|
10939
11672
|
newRestSupportDensifyParameters,
|
|
10940
11673
|
newRestSupportDirectionLine,
|
|
10941
11674
|
newRestSupportDirectionPoint,
|
|
@@ -10949,6 +11682,8 @@ export {
|
|
|
10949
11682
|
newRestSupportFindImagesResult,
|
|
10950
11683
|
newRestSupportFindParameters,
|
|
10951
11684
|
newRestSupportFindResult,
|
|
11685
|
+
newRestSupportFixedBoundariesBinParameters,
|
|
11686
|
+
newRestSupportFixedIntervalBinParameters,
|
|
10952
11687
|
newRestSupportGPMessage,
|
|
10953
11688
|
newRestSupportGeneralizeParameters,
|
|
10954
11689
|
newRestSupportIdentifyParameters,
|
|
@@ -10982,6 +11717,9 @@ export {
|
|
|
10982
11717
|
newRestSupportImageToMapParameters,
|
|
10983
11718
|
newRestSupportImageUrlParameters,
|
|
10984
11719
|
newRestSupportImageUrlResult,
|
|
11720
|
+
newRestSupportImageVolume,
|
|
11721
|
+
newRestSupportImageVolumeParameters,
|
|
11722
|
+
newRestSupportImageVolumeResult,
|
|
10985
11723
|
newRestSupportJobInfo,
|
|
10986
11724
|
newRestSupportLegendLayer,
|
|
10987
11725
|
newRestSupportLengthsParameters,
|
|
@@ -11130,11 +11868,14 @@ export {
|
|
|
11130
11868
|
newViewsLayersSceneLayerView,
|
|
11131
11869
|
newViewsLayersStreamLayerView,
|
|
11132
11870
|
newViewsLayersViewshedLayerView,
|
|
11871
|
+
newViewsLinkChartView,
|
|
11133
11872
|
newViewsMagnifier,
|
|
11134
11873
|
newViewsMapView,
|
|
11135
11874
|
newViewsNavigationGamepadGamepadSettings,
|
|
11136
11875
|
newViewsNavigationNavigation,
|
|
11876
|
+
newViewsNavigationNavigationActionMap,
|
|
11137
11877
|
newViewsSceneView,
|
|
11878
|
+
newViewsSupportHighlightOptions,
|
|
11138
11879
|
newViewsTheme,
|
|
11139
11880
|
newViewsUiDefaultUI,
|
|
11140
11881
|
newViewsUiUI,
|
|
@@ -11142,6 +11883,7 @@ export {
|
|
|
11142
11883
|
newViewsView2D,
|
|
11143
11884
|
newViewsViewAnimation,
|
|
11144
11885
|
newWebDocument2D,
|
|
11886
|
+
newWebLinkChart,
|
|
11145
11887
|
newWebMap,
|
|
11146
11888
|
newWebScene,
|
|
11147
11889
|
newWebdocApplicationPropertiesSearch,
|
|
@@ -11173,6 +11915,7 @@ export {
|
|
|
11173
11915
|
newWebsceneInitialViewProperties,
|
|
11174
11916
|
newWebscenePresentation,
|
|
11175
11917
|
newWebsceneSlide,
|
|
11918
|
+
newWebsceneSlideLegendInfo,
|
|
11176
11919
|
newWebsceneSunLighting,
|
|
11177
11920
|
newWebsceneVirtualLighting,
|
|
11178
11921
|
newWidgetsAreaMeasurement2D,
|
|
@@ -11242,6 +11985,8 @@ export {
|
|
|
11242
11985
|
newWidgetsFeatureFormFieldInput,
|
|
11243
11986
|
newWidgetsFeatureFormGroupInput,
|
|
11244
11987
|
newWidgetsFeatureFormRelationshipInput,
|
|
11988
|
+
newWidgetsFeatureFormTextElementInput,
|
|
11989
|
+
newWidgetsFeatureFormUtilityNetworkAssociationInput,
|
|
11245
11990
|
newWidgetsFeatureTable,
|
|
11246
11991
|
newWidgetsFeatureTableActionColumn,
|
|
11247
11992
|
newWidgetsFeatureTableAttachmentsColumn,
|
|
@@ -11253,10 +11998,12 @@ export {
|
|
|
11253
11998
|
newWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
11254
11999
|
newWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
11255
12000
|
newWidgetsFeatureTableRelationshipColumn,
|
|
12001
|
+
newWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
11256
12002
|
newWidgetsFeatureTableSupportColumnTemplate,
|
|
11257
12003
|
newWidgetsFeatureTableSupportColumnTemplateBase,
|
|
11258
12004
|
newWidgetsFeatureTableSupportFieldColumnTemplate,
|
|
11259
12005
|
newWidgetsFeatureTableSupportGroupColumnTemplate,
|
|
12006
|
+
newWidgetsFeatureTableSupportRelationshipColumnTemplate,
|
|
11260
12007
|
newWidgetsFeatureTableSupportTableTemplate,
|
|
11261
12008
|
newWidgetsFeatureTemplates,
|
|
11262
12009
|
newWidgetsFeatureTemplatesFeatureTemplatesViewModel,
|
|
@@ -11354,6 +12101,7 @@ export {
|
|
|
11354
12101
|
newWidgetsUtilityNetworkAssociations,
|
|
11355
12102
|
newWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
11356
12103
|
newWidgetsUtilityNetworkTrace,
|
|
12104
|
+
newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel,
|
|
11357
12105
|
newWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel,
|
|
11358
12106
|
newWidgetsUtilityNetworkValidateTopology,
|
|
11359
12107
|
newWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel,
|