@arcgis/core-adapter 4.32.0-next.4 → 4.32.0-next.41
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/.turbo/turbo-build.log +16 -3
- package/dist/index.cjs +747 -174
- package/dist/index.d.cts +108 -38
- package/dist/index.d.ts +108 -38
- package/dist/index.js +670 -167
- package/package.json +4 -28
- package/scripts/generator.ts +18 -1
- package/scripts/update-adapter-typings.ts +49 -15
- package/src/index.ts +673 -170
- package/support/api-reference-esm-imports.json +63 -13
- package/support/arcgis.d.ts +47376 -51136
- package/support/publicModules.ts +25 -0
package/dist/index.js
CHANGED
|
@@ -622,6 +622,17 @@ async function newGeometrySpatialReference(properties) {
|
|
|
622
622
|
const ModConstructor = await importGeometrySpatialReference();
|
|
623
623
|
return new ModConstructor(properties);
|
|
624
624
|
}
|
|
625
|
+
async function importGeometryOperatorsSupportTransformation() {
|
|
626
|
+
if (isAMD) {
|
|
627
|
+
return await window.$arcgis.import("esri/geometry/operators/support/Transformation");
|
|
628
|
+
}
|
|
629
|
+
const module = await import("@arcgis/core/geometry/operators/support/Transformation.js");
|
|
630
|
+
return isDefaultModule(module) ? module.default : module;
|
|
631
|
+
}
|
|
632
|
+
async function newGeometryOperatorsSupportTransformation() {
|
|
633
|
+
const ModConstructor = await importGeometryOperatorsSupportTransformation();
|
|
634
|
+
return new ModConstructor();
|
|
635
|
+
}
|
|
625
636
|
async function importGeometrySupportGeographicTransformation() {
|
|
626
637
|
if (isAMD) {
|
|
627
638
|
return await window.$arcgis.import("esri/geometry/support/GeographicTransformation");
|
|
@@ -1095,6 +1106,17 @@ async function newLayersLineOfSightLayer(properties) {
|
|
|
1095
1106
|
const ModConstructor = await importLayersLineOfSightLayer();
|
|
1096
1107
|
return new ModConstructor(properties);
|
|
1097
1108
|
}
|
|
1109
|
+
async function importLayersLinkChartLayer() {
|
|
1110
|
+
if (isAMD) {
|
|
1111
|
+
return await window.$arcgis.import("esri/layers/LinkChartLayer");
|
|
1112
|
+
}
|
|
1113
|
+
const module = await import("@arcgis/core/layers/LinkChartLayer.js");
|
|
1114
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1115
|
+
}
|
|
1116
|
+
async function newLayersLinkChartLayer(properties) {
|
|
1117
|
+
const ModConstructor = await importLayersLinkChartLayer();
|
|
1118
|
+
return new ModConstructor(properties);
|
|
1119
|
+
}
|
|
1098
1120
|
async function importLayersMapImageLayer() {
|
|
1099
1121
|
if (isAMD) {
|
|
1100
1122
|
return await window.$arcgis.import("esri/layers/MapImageLayer");
|
|
@@ -1645,17 +1667,6 @@ async function newLayersSupportPublishingInfo(properties) {
|
|
|
1645
1667
|
const ModConstructor = await importLayersSupportPublishingInfo();
|
|
1646
1668
|
return new ModConstructor(properties);
|
|
1647
1669
|
}
|
|
1648
|
-
async function importLayersSupportSceneFilter() {
|
|
1649
|
-
if (isAMD) {
|
|
1650
|
-
return await window.$arcgis.import("esri/layers/support/SceneFilter");
|
|
1651
|
-
}
|
|
1652
|
-
const module = await import("@arcgis/core/layers/support/SceneFilter.js");
|
|
1653
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1654
|
-
}
|
|
1655
|
-
async function newLayersSupportSceneFilter(properties) {
|
|
1656
|
-
const ModConstructor = await importLayersSupportSceneFilter();
|
|
1657
|
-
return new ModConstructor(properties);
|
|
1658
|
-
}
|
|
1659
1670
|
async function importLayersSupportRangeDomain() {
|
|
1660
1671
|
if (isAMD) {
|
|
1661
1672
|
return await window.$arcgis.import("esri/layers/support/RangeDomain");
|
|
@@ -1744,6 +1755,17 @@ async function newLayersSupportRouteSymbols(properties) {
|
|
|
1744
1755
|
const ModConstructor = await importLayersSupportRouteSymbols();
|
|
1745
1756
|
return new ModConstructor(properties);
|
|
1746
1757
|
}
|
|
1758
|
+
async function importLayersSupportSceneFilter() {
|
|
1759
|
+
if (isAMD) {
|
|
1760
|
+
return await window.$arcgis.import("esri/layers/support/SceneFilter");
|
|
1761
|
+
}
|
|
1762
|
+
const module = await import("@arcgis/core/layers/support/SceneFilter.js");
|
|
1763
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1764
|
+
}
|
|
1765
|
+
async function newLayersSupportSceneFilter(properties) {
|
|
1766
|
+
const ModConstructor = await importLayersSupportSceneFilter();
|
|
1767
|
+
return new ModConstructor(properties);
|
|
1768
|
+
}
|
|
1747
1769
|
async function importLayersSupportSceneModification() {
|
|
1748
1770
|
if (isAMD) {
|
|
1749
1771
|
return await window.$arcgis.import("esri/layers/support/SceneModification");
|
|
@@ -2019,26 +2041,26 @@ async function newLayersUnsupportedLayer(properties) {
|
|
|
2019
2041
|
const ModConstructor = await importLayersUnsupportedLayer();
|
|
2020
2042
|
return new ModConstructor(properties);
|
|
2021
2043
|
}
|
|
2022
|
-
async function
|
|
2044
|
+
async function importLayersVectorTileLayer() {
|
|
2023
2045
|
if (isAMD) {
|
|
2024
|
-
return await window.$arcgis.import("esri/layers/
|
|
2046
|
+
return await window.$arcgis.import("esri/layers/VectorTileLayer");
|
|
2025
2047
|
}
|
|
2026
|
-
const module = await import("@arcgis/core/layers/
|
|
2048
|
+
const module = await import("@arcgis/core/layers/VectorTileLayer.js");
|
|
2027
2049
|
return isDefaultModule(module) ? module.default : module;
|
|
2028
2050
|
}
|
|
2029
|
-
async function
|
|
2030
|
-
const ModConstructor = await
|
|
2051
|
+
async function newLayersVectorTileLayer(properties) {
|
|
2052
|
+
const ModConstructor = await importLayersVectorTileLayer();
|
|
2031
2053
|
return new ModConstructor(properties);
|
|
2032
2054
|
}
|
|
2033
|
-
async function
|
|
2055
|
+
async function importLayersVideoLayer() {
|
|
2034
2056
|
if (isAMD) {
|
|
2035
|
-
return await window.$arcgis.import("esri/layers/
|
|
2057
|
+
return await window.$arcgis.import("esri/layers/VideoLayer");
|
|
2036
2058
|
}
|
|
2037
|
-
const module = await import("@arcgis/core/layers/
|
|
2059
|
+
const module = await import("@arcgis/core/layers/VideoLayer.js");
|
|
2038
2060
|
return isDefaultModule(module) ? module.default : module;
|
|
2039
2061
|
}
|
|
2040
|
-
async function
|
|
2041
|
-
const ModConstructor = await
|
|
2062
|
+
async function newLayersVideoLayer(properties) {
|
|
2063
|
+
const ModConstructor = await importLayersVideoLayer();
|
|
2042
2064
|
return new ModConstructor(properties);
|
|
2043
2065
|
}
|
|
2044
2066
|
async function importLayersVoxelLayer() {
|
|
@@ -2107,6 +2129,61 @@ async function newLayersWMTSLayer(properties) {
|
|
|
2107
2129
|
const ModConstructor = await importLayersWMTSLayer();
|
|
2108
2130
|
return new ModConstructor(properties);
|
|
2109
2131
|
}
|
|
2132
|
+
async function importLinkChartChronologicalLayoutSettings() {
|
|
2133
|
+
if (isAMD) {
|
|
2134
|
+
return await window.$arcgis.import("esri/linkChart/ChronologicalLayoutSettings");
|
|
2135
|
+
}
|
|
2136
|
+
const module = await import("@arcgis/core/linkChart/ChronologicalLayoutSettings.js");
|
|
2137
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2138
|
+
}
|
|
2139
|
+
async function newLinkChartChronologicalLayoutSettings(properties) {
|
|
2140
|
+
const ModConstructor = await importLinkChartChronologicalLayoutSettings();
|
|
2141
|
+
return new ModConstructor(properties);
|
|
2142
|
+
}
|
|
2143
|
+
async function importLinkChartLayoutSettings() {
|
|
2144
|
+
if (isAMD) {
|
|
2145
|
+
return await window.$arcgis.import("esri/linkChart/LayoutSettings");
|
|
2146
|
+
}
|
|
2147
|
+
const module = await import("@arcgis/core/linkChart/LayoutSettings.js");
|
|
2148
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2149
|
+
}
|
|
2150
|
+
async function newLinkChartLayoutSettings(properties) {
|
|
2151
|
+
const ModConstructor = await importLinkChartLayoutSettings();
|
|
2152
|
+
return new ModConstructor(properties);
|
|
2153
|
+
}
|
|
2154
|
+
async function importLinkChartLinkChartProperties() {
|
|
2155
|
+
if (isAMD) {
|
|
2156
|
+
return await window.$arcgis.import("esri/linkChart/LinkChartProperties");
|
|
2157
|
+
}
|
|
2158
|
+
const module = await import("@arcgis/core/linkChart/LinkChartProperties.js");
|
|
2159
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2160
|
+
}
|
|
2161
|
+
async function newLinkChartLinkChartProperties(properties) {
|
|
2162
|
+
const ModConstructor = await importLinkChartLinkChartProperties();
|
|
2163
|
+
return new ModConstructor(properties);
|
|
2164
|
+
}
|
|
2165
|
+
async function importLinkChartNonspatialDataDisplay() {
|
|
2166
|
+
if (isAMD) {
|
|
2167
|
+
return await window.$arcgis.import("esri/linkChart/NonspatialDataDisplay");
|
|
2168
|
+
}
|
|
2169
|
+
const module = await import("@arcgis/core/linkChart/NonspatialDataDisplay.js");
|
|
2170
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2171
|
+
}
|
|
2172
|
+
async function newLinkChartNonspatialDataDisplay(properties) {
|
|
2173
|
+
const ModConstructor = await importLinkChartNonspatialDataDisplay();
|
|
2174
|
+
return new ModConstructor(properties);
|
|
2175
|
+
}
|
|
2176
|
+
async function importLinkChartOrganicLayoutSettings() {
|
|
2177
|
+
if (isAMD) {
|
|
2178
|
+
return await window.$arcgis.import("esri/linkChart/OrganicLayoutSettings");
|
|
2179
|
+
}
|
|
2180
|
+
const module = await import("@arcgis/core/linkChart/OrganicLayoutSettings.js");
|
|
2181
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2182
|
+
}
|
|
2183
|
+
async function newLinkChartOrganicLayoutSettings(properties) {
|
|
2184
|
+
const ModConstructor = await importLinkChartOrganicLayoutSettings();
|
|
2185
|
+
return new ModConstructor(properties);
|
|
2186
|
+
}
|
|
2110
2187
|
async function importMap() {
|
|
2111
2188
|
if (isAMD) {
|
|
2112
2189
|
return await window.$arcgis.import("esri/Map");
|
|
@@ -2734,6 +2811,17 @@ async function newRenderersRasterColormapRenderer(properties) {
|
|
|
2734
2811
|
const ModConstructor = await importRenderersRasterColormapRenderer();
|
|
2735
2812
|
return new ModConstructor(properties);
|
|
2736
2813
|
}
|
|
2814
|
+
async function importRenderersSupportRasterPresetRenderer() {
|
|
2815
|
+
if (isAMD) {
|
|
2816
|
+
return await window.$arcgis.import("esri/renderers/support/RasterPresetRenderer");
|
|
2817
|
+
}
|
|
2818
|
+
const module = await import("@arcgis/core/renderers/support/RasterPresetRenderer.js");
|
|
2819
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2820
|
+
}
|
|
2821
|
+
async function newRenderersSupportRasterPresetRenderer(properties) {
|
|
2822
|
+
const ModConstructor = await importRenderersSupportRasterPresetRenderer();
|
|
2823
|
+
return new ModConstructor(properties);
|
|
2824
|
+
}
|
|
2737
2825
|
async function importRenderersRasterShadedReliefRenderer() {
|
|
2738
2826
|
if (isAMD) {
|
|
2739
2827
|
return await window.$arcgis.import("esri/renderers/RasterShadedReliefRenderer");
|
|
@@ -3152,6 +3240,17 @@ async function newRestKnowledgeGraphGraphQueryResult(properties) {
|
|
|
3152
3240
|
const ModConstructor = await importRestKnowledgeGraphGraphQueryResult();
|
|
3153
3241
|
return new ModConstructor(properties);
|
|
3154
3242
|
}
|
|
3243
|
+
async function importRestKnowledgeGraphGraphQueryResultHeader() {
|
|
3244
|
+
if (isAMD) {
|
|
3245
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryResultHeader");
|
|
3246
|
+
}
|
|
3247
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphQueryResultHeader.js");
|
|
3248
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3249
|
+
}
|
|
3250
|
+
async function newRestKnowledgeGraphGraphQueryResultHeader(properties) {
|
|
3251
|
+
const ModConstructor = await importRestKnowledgeGraphGraphQueryResultHeader();
|
|
3252
|
+
return new ModConstructor(properties);
|
|
3253
|
+
}
|
|
3155
3254
|
async function importRestKnowledgeGraphGraphQueryStreaming() {
|
|
3156
3255
|
if (isAMD) {
|
|
3157
3256
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryStreaming");
|
|
@@ -3284,6 +3383,17 @@ async function newRestKnowledgeGraphServiceDefinition(properties) {
|
|
|
3284
3383
|
const ModConstructor = await importRestKnowledgeGraphServiceDefinition();
|
|
3285
3384
|
return new ModConstructor(properties);
|
|
3286
3385
|
}
|
|
3386
|
+
async function importRestKnowledgeGraphSourceTypeValueBehavior() {
|
|
3387
|
+
if (isAMD) {
|
|
3388
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/SourceTypeValueBehavior");
|
|
3389
|
+
}
|
|
3390
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/SourceTypeValueBehavior.js");
|
|
3391
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3392
|
+
}
|
|
3393
|
+
async function newRestKnowledgeGraphSourceTypeValueBehavior(properties) {
|
|
3394
|
+
const ModConstructor = await importRestKnowledgeGraphSourceTypeValueBehavior();
|
|
3395
|
+
return new ModConstructor(properties);
|
|
3396
|
+
}
|
|
3287
3397
|
async function importRestNetworksSupportAggregatedGeometry() {
|
|
3288
3398
|
if (isAMD) {
|
|
3289
3399
|
return await window.$arcgis.import("esri/rest/networks/support/AggregatedGeometry");
|
|
@@ -3812,50 +3922,6 @@ async function newRestSupportImageBoundaryResult(properties) {
|
|
|
3812
3922
|
const ModConstructor = await importRestSupportImageBoundaryResult();
|
|
3813
3923
|
return new ModConstructor(properties);
|
|
3814
3924
|
}
|
|
3815
|
-
async function importRestSupportImageHistogramParameters() {
|
|
3816
|
-
if (isAMD) {
|
|
3817
|
-
return await window.$arcgis.import("esri/rest/support/ImageHistogramParameters");
|
|
3818
|
-
}
|
|
3819
|
-
const module = await import("@arcgis/core/rest/support/ImageHistogramParameters.js");
|
|
3820
|
-
return isDefaultModule(module) ? module.default : module;
|
|
3821
|
-
}
|
|
3822
|
-
async function newRestSupportImageHistogramParameters(properties) {
|
|
3823
|
-
const ModConstructor = await importRestSupportImageHistogramParameters();
|
|
3824
|
-
return new ModConstructor(properties);
|
|
3825
|
-
}
|
|
3826
|
-
async function importRestSupportImageIdentifyParameters() {
|
|
3827
|
-
if (isAMD) {
|
|
3828
|
-
return await window.$arcgis.import("esri/rest/support/ImageIdentifyParameters");
|
|
3829
|
-
}
|
|
3830
|
-
const module = await import("@arcgis/core/rest/support/ImageIdentifyParameters.js");
|
|
3831
|
-
return isDefaultModule(module) ? module.default : module;
|
|
3832
|
-
}
|
|
3833
|
-
async function newRestSupportImageIdentifyParameters(properties) {
|
|
3834
|
-
const ModConstructor = await importRestSupportImageIdentifyParameters();
|
|
3835
|
-
return new ModConstructor(properties);
|
|
3836
|
-
}
|
|
3837
|
-
async function importRestSupportImageIdentifyResult() {
|
|
3838
|
-
if (isAMD) {
|
|
3839
|
-
return await window.$arcgis.import("esri/rest/support/ImageIdentifyResult");
|
|
3840
|
-
}
|
|
3841
|
-
const module = await import("@arcgis/core/rest/support/ImageIdentifyResult.js");
|
|
3842
|
-
return isDefaultModule(module) ? module.default : module;
|
|
3843
|
-
}
|
|
3844
|
-
async function newRestSupportImageIdentifyResult(properties) {
|
|
3845
|
-
const ModConstructor = await importRestSupportImageIdentifyResult();
|
|
3846
|
-
return new ModConstructor(properties);
|
|
3847
|
-
}
|
|
3848
|
-
async function importRestSupportImageInspectionInfo() {
|
|
3849
|
-
if (isAMD) {
|
|
3850
|
-
return await window.$arcgis.import("esri/rest/support/ImageInspectionInfo");
|
|
3851
|
-
}
|
|
3852
|
-
const module = await import("@arcgis/core/rest/support/ImageInspectionInfo.js");
|
|
3853
|
-
return isDefaultModule(module) ? module.default : module;
|
|
3854
|
-
}
|
|
3855
|
-
async function newRestSupportImageInspectionInfo(properties) {
|
|
3856
|
-
const ModConstructor = await importRestSupportImageInspectionInfo();
|
|
3857
|
-
return new ModConstructor(properties);
|
|
3858
|
-
}
|
|
3859
3925
|
async function importRestSupportImageDistanceParameters() {
|
|
3860
3926
|
if (isAMD) {
|
|
3861
3927
|
return await window.$arcgis.import("esri/rest/support/ImageDistanceParameters");
|
|
@@ -3933,6 +3999,50 @@ async function newRestSupportImageHeightResult(properties) {
|
|
|
3933
3999
|
const ModConstructor = await importRestSupportImageHeightResult();
|
|
3934
4000
|
return new ModConstructor(properties);
|
|
3935
4001
|
}
|
|
4002
|
+
async function importRestSupportImageHistogramParameters() {
|
|
4003
|
+
if (isAMD) {
|
|
4004
|
+
return await window.$arcgis.import("esri/rest/support/ImageHistogramParameters");
|
|
4005
|
+
}
|
|
4006
|
+
const module = await import("@arcgis/core/rest/support/ImageHistogramParameters.js");
|
|
4007
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4008
|
+
}
|
|
4009
|
+
async function newRestSupportImageHistogramParameters(properties) {
|
|
4010
|
+
const ModConstructor = await importRestSupportImageHistogramParameters();
|
|
4011
|
+
return new ModConstructor(properties);
|
|
4012
|
+
}
|
|
4013
|
+
async function importRestSupportImageIdentifyParameters() {
|
|
4014
|
+
if (isAMD) {
|
|
4015
|
+
return await window.$arcgis.import("esri/rest/support/ImageIdentifyParameters");
|
|
4016
|
+
}
|
|
4017
|
+
const module = await import("@arcgis/core/rest/support/ImageIdentifyParameters.js");
|
|
4018
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4019
|
+
}
|
|
4020
|
+
async function newRestSupportImageIdentifyParameters(properties) {
|
|
4021
|
+
const ModConstructor = await importRestSupportImageIdentifyParameters();
|
|
4022
|
+
return new ModConstructor(properties);
|
|
4023
|
+
}
|
|
4024
|
+
async function importRestSupportImageIdentifyResult() {
|
|
4025
|
+
if (isAMD) {
|
|
4026
|
+
return await window.$arcgis.import("esri/rest/support/ImageIdentifyResult");
|
|
4027
|
+
}
|
|
4028
|
+
const module = await import("@arcgis/core/rest/support/ImageIdentifyResult.js");
|
|
4029
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4030
|
+
}
|
|
4031
|
+
async function newRestSupportImageIdentifyResult(properties) {
|
|
4032
|
+
const ModConstructor = await importRestSupportImageIdentifyResult();
|
|
4033
|
+
return new ModConstructor(properties);
|
|
4034
|
+
}
|
|
4035
|
+
async function importRestSupportImageInspectionInfo() {
|
|
4036
|
+
if (isAMD) {
|
|
4037
|
+
return await window.$arcgis.import("esri/rest/support/ImageInspectionInfo");
|
|
4038
|
+
}
|
|
4039
|
+
const module = await import("@arcgis/core/rest/support/ImageInspectionInfo.js");
|
|
4040
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4041
|
+
}
|
|
4042
|
+
async function newRestSupportImageInspectionInfo(properties) {
|
|
4043
|
+
const ModConstructor = await importRestSupportImageInspectionInfo();
|
|
4044
|
+
return new ModConstructor(properties);
|
|
4045
|
+
}
|
|
3936
4046
|
async function importRestSupportImageParameters() {
|
|
3937
4047
|
if (isAMD) {
|
|
3938
4048
|
return await window.$arcgis.import("esri/rest/support/ImageParameters");
|
|
@@ -4021,26 +4131,26 @@ async function newRestSupportImageSampleResult(properties) {
|
|
|
4021
4131
|
const ModConstructor = await importRestSupportImageSampleResult();
|
|
4022
4132
|
return new ModConstructor(properties);
|
|
4023
4133
|
}
|
|
4024
|
-
async function
|
|
4134
|
+
async function importRestSupportImageToMapMultirayParameters() {
|
|
4025
4135
|
if (isAMD) {
|
|
4026
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4136
|
+
return await window.$arcgis.import("esri/rest/support/ImageToMapMultirayParameters");
|
|
4027
4137
|
}
|
|
4028
|
-
const module = await import("@arcgis/core/rest/support/
|
|
4138
|
+
const module = await import("@arcgis/core/rest/support/ImageToMapMultirayParameters.js");
|
|
4029
4139
|
return isDefaultModule(module) ? module.default : module;
|
|
4030
4140
|
}
|
|
4031
|
-
async function
|
|
4032
|
-
const ModConstructor = await
|
|
4141
|
+
async function newRestSupportImageToMapMultirayParameters(properties) {
|
|
4142
|
+
const ModConstructor = await importRestSupportImageToMapMultirayParameters();
|
|
4033
4143
|
return new ModConstructor(properties);
|
|
4034
4144
|
}
|
|
4035
|
-
async function
|
|
4145
|
+
async function importRestSupportImageToMapParameters() {
|
|
4036
4146
|
if (isAMD) {
|
|
4037
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4147
|
+
return await window.$arcgis.import("esri/rest/support/ImageToMapParameters");
|
|
4038
4148
|
}
|
|
4039
|
-
const module = await import("@arcgis/core/rest/support/
|
|
4149
|
+
const module = await import("@arcgis/core/rest/support/ImageToMapParameters.js");
|
|
4040
4150
|
return isDefaultModule(module) ? module.default : module;
|
|
4041
4151
|
}
|
|
4042
|
-
async function
|
|
4043
|
-
const ModConstructor = await
|
|
4152
|
+
async function newRestSupportImageToMapParameters(properties) {
|
|
4153
|
+
const ModConstructor = await importRestSupportImageToMapParameters();
|
|
4044
4154
|
return new ModConstructor(properties);
|
|
4045
4155
|
}
|
|
4046
4156
|
async function importRestSupportImageUrlParameters() {
|
|
@@ -4131,26 +4241,26 @@ async function newRestSupportMeasureAreaFromImageResult(properties) {
|
|
|
4131
4241
|
const ModConstructor = await importRestSupportMeasureAreaFromImageResult();
|
|
4132
4242
|
return new ModConstructor(properties);
|
|
4133
4243
|
}
|
|
4134
|
-
async function
|
|
4244
|
+
async function importRestSupportMeasureFromImageParameters() {
|
|
4135
4245
|
if (isAMD) {
|
|
4136
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4246
|
+
return await window.$arcgis.import("esri/rest/support/MeasureFromImageParameters");
|
|
4137
4247
|
}
|
|
4138
|
-
const module = await import("@arcgis/core/rest/support/
|
|
4248
|
+
const module = await import("@arcgis/core/rest/support/MeasureFromImageParameters.js");
|
|
4139
4249
|
return isDefaultModule(module) ? module.default : module;
|
|
4140
4250
|
}
|
|
4141
|
-
async function
|
|
4142
|
-
const ModConstructor = await
|
|
4251
|
+
async function newRestSupportMeasureFromImageParameters(properties) {
|
|
4252
|
+
const ModConstructor = await importRestSupportMeasureFromImageParameters();
|
|
4143
4253
|
return new ModConstructor(properties);
|
|
4144
4254
|
}
|
|
4145
|
-
async function
|
|
4255
|
+
async function importRestSupportMeasureLengthFromImageResult() {
|
|
4146
4256
|
if (isAMD) {
|
|
4147
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4257
|
+
return await window.$arcgis.import("esri/rest/support/MeasureLengthFromImageResult");
|
|
4148
4258
|
}
|
|
4149
|
-
const module = await import("@arcgis/core/rest/support/
|
|
4259
|
+
const module = await import("@arcgis/core/rest/support/MeasureLengthFromImageResult.js");
|
|
4150
4260
|
return isDefaultModule(module) ? module.default : module;
|
|
4151
4261
|
}
|
|
4152
|
-
async function
|
|
4153
|
-
const ModConstructor = await
|
|
4262
|
+
async function newRestSupportMeasureLengthFromImageResult(properties) {
|
|
4263
|
+
const ModConstructor = await importRestSupportMeasureLengthFromImageResult();
|
|
4154
4264
|
return new ModConstructor(properties);
|
|
4155
4265
|
}
|
|
4156
4266
|
async function importRestSupportMultipartColorRamp() {
|
|
@@ -5165,6 +5275,17 @@ async function newViews2dViewState(properties) {
|
|
|
5165
5275
|
const ModConstructor = await importViews2dViewState();
|
|
5166
5276
|
return new ModConstructor(properties);
|
|
5167
5277
|
}
|
|
5278
|
+
async function importViews2dSupportHighlightGroup() {
|
|
5279
|
+
if (isAMD) {
|
|
5280
|
+
return await window.$arcgis.import("esri/views/2d/support/HighlightGroup");
|
|
5281
|
+
}
|
|
5282
|
+
const module = await import("@arcgis/core/views/2d/support/HighlightGroup.js");
|
|
5283
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5284
|
+
}
|
|
5285
|
+
async function newViews2dSupportHighlightGroup(properties) {
|
|
5286
|
+
const ModConstructor = await importViews2dSupportHighlightGroup();
|
|
5287
|
+
return new ModConstructor(properties);
|
|
5288
|
+
}
|
|
5168
5289
|
async function importViews3dAnalysisAreaMeasurementAnalysisView3D() {
|
|
5169
5290
|
if (isAMD) {
|
|
5170
5291
|
return await window.$arcgis.import("esri/views/3d/analysis/AreaMeasurementAnalysisView3D");
|
|
@@ -5605,6 +5726,17 @@ async function newViewsLayersFeatureLayerView(properties) {
|
|
|
5605
5726
|
const ModConstructor = await importViewsLayersFeatureLayerView();
|
|
5606
5727
|
return new ModConstructor(properties);
|
|
5607
5728
|
}
|
|
5729
|
+
async function importViewsLayersGroupLayerView() {
|
|
5730
|
+
if (isAMD) {
|
|
5731
|
+
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
5732
|
+
}
|
|
5733
|
+
const module = await import("@arcgis/core/views/layers/GroupLayerView.js");
|
|
5734
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5735
|
+
}
|
|
5736
|
+
async function newViewsLayersGroupLayerView(properties) {
|
|
5737
|
+
const ModConstructor = await importViewsLayersGroupLayerView();
|
|
5738
|
+
return new ModConstructor(properties);
|
|
5739
|
+
}
|
|
5608
5740
|
async function importViewsLayersImageryLayerView() {
|
|
5609
5741
|
if (isAMD) {
|
|
5610
5742
|
return await window.$arcgis.import("esri/views/layers/ImageryLayerView");
|
|
@@ -5682,6 +5814,17 @@ async function newViewsLayersViewshedLayerView(properties) {
|
|
|
5682
5814
|
const ModConstructor = await importViewsLayersViewshedLayerView();
|
|
5683
5815
|
return new ModConstructor(properties);
|
|
5684
5816
|
}
|
|
5817
|
+
async function importViewsLinkChartView() {
|
|
5818
|
+
if (isAMD) {
|
|
5819
|
+
return await window.$arcgis.import("esri/views/LinkChartView");
|
|
5820
|
+
}
|
|
5821
|
+
const module = await import("@arcgis/core/views/LinkChartView.js");
|
|
5822
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5823
|
+
}
|
|
5824
|
+
async function newViewsLinkChartView(properties) {
|
|
5825
|
+
const ModConstructor = await importViewsLinkChartView();
|
|
5826
|
+
return new ModConstructor(properties);
|
|
5827
|
+
}
|
|
5685
5828
|
async function importViewsMagnifier() {
|
|
5686
5829
|
if (isAMD) {
|
|
5687
5830
|
return await window.$arcgis.import("esri/views/Magnifier");
|
|
@@ -6012,6 +6155,17 @@ async function newWebDocument2D(properties) {
|
|
|
6012
6155
|
const ModConstructor = await importWebDocument2D();
|
|
6013
6156
|
return new ModConstructor(properties);
|
|
6014
6157
|
}
|
|
6158
|
+
async function importWebLinkChart() {
|
|
6159
|
+
if (isAMD) {
|
|
6160
|
+
return await window.$arcgis.import("esri/WebLinkChart");
|
|
6161
|
+
}
|
|
6162
|
+
const module = await import("@arcgis/core/WebLinkChart.js");
|
|
6163
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6164
|
+
}
|
|
6165
|
+
async function newWebLinkChart(properties) {
|
|
6166
|
+
const ModConstructor = await importWebLinkChart();
|
|
6167
|
+
return new ModConstructor(properties);
|
|
6168
|
+
}
|
|
6015
6169
|
async function importWebMap() {
|
|
6016
6170
|
if (isAMD) {
|
|
6017
6171
|
return await window.$arcgis.import("esri/WebMap");
|
|
@@ -6914,9 +7068,31 @@ async function newWidgetsFeatureFormRelationshipInput(properties) {
|
|
|
6914
7068
|
const ModConstructor = await importWidgetsFeatureFormRelationshipInput();
|
|
6915
7069
|
return new ModConstructor(properties);
|
|
6916
7070
|
}
|
|
6917
|
-
async function
|
|
7071
|
+
async function importWidgetsFeatureFormTextElementInput() {
|
|
6918
7072
|
if (isAMD) {
|
|
6919
|
-
return await window.$arcgis.import("esri/widgets/
|
|
7073
|
+
return await window.$arcgis.import("esri/widgets/FeatureForm/TextElementInput");
|
|
7074
|
+
}
|
|
7075
|
+
const module = await import("@arcgis/core/widgets/FeatureForm/TextElementInput.js");
|
|
7076
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7077
|
+
}
|
|
7078
|
+
async function newWidgetsFeatureFormTextElementInput(properties) {
|
|
7079
|
+
const ModConstructor = await importWidgetsFeatureFormTextElementInput();
|
|
7080
|
+
return new ModConstructor(properties);
|
|
7081
|
+
}
|
|
7082
|
+
async function importWidgetsFeatureFormUtilityNetworkAssociationInput() {
|
|
7083
|
+
if (isAMD) {
|
|
7084
|
+
return await window.$arcgis.import("esri/widgets/FeatureForm/UtilityNetworkAssociationInput");
|
|
7085
|
+
}
|
|
7086
|
+
const module = await import("@arcgis/core/widgets/FeatureForm/UtilityNetworkAssociationInput.js");
|
|
7087
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7088
|
+
}
|
|
7089
|
+
async function newWidgetsFeatureFormUtilityNetworkAssociationInput(properties) {
|
|
7090
|
+
const ModConstructor = await importWidgetsFeatureFormUtilityNetworkAssociationInput();
|
|
7091
|
+
return new ModConstructor(properties);
|
|
7092
|
+
}
|
|
7093
|
+
async function importWidgetsFeatures() {
|
|
7094
|
+
if (isAMD) {
|
|
7095
|
+
return await window.$arcgis.import("esri/widgets/Features");
|
|
6920
7096
|
}
|
|
6921
7097
|
const module = await import("@arcgis/core/widgets/Features.js");
|
|
6922
7098
|
return isDefaultModule(module) ? module.default : module;
|
|
@@ -7090,6 +7266,28 @@ async function newWidgetsFeatureTableSupportFieldColumnTemplate(properties) {
|
|
|
7090
7266
|
const ModConstructor = await importWidgetsFeatureTableSupportFieldColumnTemplate();
|
|
7091
7267
|
return new ModConstructor(properties);
|
|
7092
7268
|
}
|
|
7269
|
+
async function importWidgetsFeatureTableSupportAttachmentsColumnTemplate() {
|
|
7270
|
+
if (isAMD) {
|
|
7271
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/AttachmentsColumnTemplate");
|
|
7272
|
+
}
|
|
7273
|
+
const module = await import("@arcgis/core/widgets/FeatureTable/support/AttachmentsColumnTemplate.js");
|
|
7274
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7275
|
+
}
|
|
7276
|
+
async function newWidgetsFeatureTableSupportAttachmentsColumnTemplate(properties) {
|
|
7277
|
+
const ModConstructor = await importWidgetsFeatureTableSupportAttachmentsColumnTemplate();
|
|
7278
|
+
return new ModConstructor(properties);
|
|
7279
|
+
}
|
|
7280
|
+
async function importWidgetsFeatureTableSupportRelationshipColumnTemplate() {
|
|
7281
|
+
if (isAMD) {
|
|
7282
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/RelationshipColumnTemplate");
|
|
7283
|
+
}
|
|
7284
|
+
const module = await import("@arcgis/core/widgets/FeatureTable/support/RelationshipColumnTemplate.js");
|
|
7285
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7286
|
+
}
|
|
7287
|
+
async function newWidgetsFeatureTableSupportRelationshipColumnTemplate(properties) {
|
|
7288
|
+
const ModConstructor = await importWidgetsFeatureTableSupportRelationshipColumnTemplate();
|
|
7289
|
+
return new ModConstructor(properties);
|
|
7290
|
+
}
|
|
7093
7291
|
async function importWidgetsFeatureTableSupportGroupColumnTemplate() {
|
|
7094
7292
|
if (isAMD) {
|
|
7095
7293
|
return await window.$arcgis.import("esri/widgets/FeatureTable/support/GroupColumnTemplate");
|
|
@@ -8146,6 +8344,17 @@ async function newWidgetsUtilityNetworkTrace(properties) {
|
|
|
8146
8344
|
const ModConstructor = await importWidgetsUtilityNetworkTrace();
|
|
8147
8345
|
return new ModConstructor(properties);
|
|
8148
8346
|
}
|
|
8347
|
+
async function importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel() {
|
|
8348
|
+
if (isAMD) {
|
|
8349
|
+
return await window.$arcgis.import("esri/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel");
|
|
8350
|
+
}
|
|
8351
|
+
const module = await import("@arcgis/core/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel.js");
|
|
8352
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8353
|
+
}
|
|
8354
|
+
async function newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel(properties) {
|
|
8355
|
+
const ModConstructor = await importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel();
|
|
8356
|
+
return new ModConstructor(properties);
|
|
8357
|
+
}
|
|
8149
8358
|
async function importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel() {
|
|
8150
8359
|
if (isAMD) {
|
|
8151
8360
|
return await window.$arcgis.import("esri/widgets/UtilityNetworkTrace/UtilityNetworkTraceViewModel");
|
|
@@ -8455,6 +8664,48 @@ async function importGeometryProjection() {
|
|
|
8455
8664
|
const module = await import("@arcgis/core/geometry/projection.js");
|
|
8456
8665
|
return isDefaultModule(module) ? module.default : module;
|
|
8457
8666
|
}
|
|
8667
|
+
async function importGeometryOperatorsAffineTransformOperator() {
|
|
8668
|
+
if (isAMD) {
|
|
8669
|
+
return await window.$arcgis.import("esri/geometry/operators/affineTransformOperator");
|
|
8670
|
+
}
|
|
8671
|
+
const module = await import("@arcgis/core/geometry/operators/affineTransformOperator.js");
|
|
8672
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8673
|
+
}
|
|
8674
|
+
async function importGeometryOperatorsAlphaShapeOperator() {
|
|
8675
|
+
if (isAMD) {
|
|
8676
|
+
return await window.$arcgis.import("esri/geometry/operators/alphaShapeOperator");
|
|
8677
|
+
}
|
|
8678
|
+
const module = await import("@arcgis/core/geometry/operators/alphaShapeOperator.js");
|
|
8679
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8680
|
+
}
|
|
8681
|
+
async function importGeometryOperatorsAreaOperator() {
|
|
8682
|
+
if (isAMD) {
|
|
8683
|
+
return await window.$arcgis.import("esri/geometry/operators/areaOperator");
|
|
8684
|
+
}
|
|
8685
|
+
const module = await import("@arcgis/core/geometry/operators/areaOperator.js");
|
|
8686
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8687
|
+
}
|
|
8688
|
+
async function importGeometryOperatorsAutoCompleteOperator() {
|
|
8689
|
+
if (isAMD) {
|
|
8690
|
+
return await window.$arcgis.import("esri/geometry/operators/autoCompleteOperator");
|
|
8691
|
+
}
|
|
8692
|
+
const module = await import("@arcgis/core/geometry/operators/autoCompleteOperator.js");
|
|
8693
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8694
|
+
}
|
|
8695
|
+
async function importGeometryOperatorsBoundaryOperator() {
|
|
8696
|
+
if (isAMD) {
|
|
8697
|
+
return await window.$arcgis.import("esri/geometry/operators/boundaryOperator");
|
|
8698
|
+
}
|
|
8699
|
+
const module = await import("@arcgis/core/geometry/operators/boundaryOperator.js");
|
|
8700
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8701
|
+
}
|
|
8702
|
+
async function importGeometryOperatorsBufferOperator() {
|
|
8703
|
+
if (isAMD) {
|
|
8704
|
+
return await window.$arcgis.import("esri/geometry/operators/bufferOperator");
|
|
8705
|
+
}
|
|
8706
|
+
const module = await import("@arcgis/core/geometry/operators/bufferOperator.js");
|
|
8707
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8708
|
+
}
|
|
8458
8709
|
async function importGeometryOperatorsCentroidOperator() {
|
|
8459
8710
|
if (isAMD) {
|
|
8460
8711
|
return await window.$arcgis.import("esri/geometry/operators/centroidOperator");
|
|
@@ -8469,18 +8720,18 @@ async function importGeometryOperatorsClipOperator() {
|
|
|
8469
8720
|
const module = await import("@arcgis/core/geometry/operators/clipOperator.js");
|
|
8470
8721
|
return isDefaultModule(module) ? module.default : module;
|
|
8471
8722
|
}
|
|
8472
|
-
async function
|
|
8723
|
+
async function importGeometryOperatorsContainsOperator() {
|
|
8473
8724
|
if (isAMD) {
|
|
8474
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
8725
|
+
return await window.$arcgis.import("esri/geometry/operators/containsOperator");
|
|
8475
8726
|
}
|
|
8476
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
8727
|
+
const module = await import("@arcgis/core/geometry/operators/containsOperator.js");
|
|
8477
8728
|
return isDefaultModule(module) ? module.default : module;
|
|
8478
8729
|
}
|
|
8479
|
-
async function
|
|
8730
|
+
async function importGeometryOperatorsConvexHullOperator() {
|
|
8480
8731
|
if (isAMD) {
|
|
8481
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
8732
|
+
return await window.$arcgis.import("esri/geometry/operators/convexHullOperator");
|
|
8482
8733
|
}
|
|
8483
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
8734
|
+
const module = await import("@arcgis/core/geometry/operators/convexHullOperator.js");
|
|
8484
8735
|
return isDefaultModule(module) ? module.default : module;
|
|
8485
8736
|
}
|
|
8486
8737
|
async function importGeometryOperatorsCrossesOperator() {
|
|
@@ -8490,6 +8741,13 @@ async function importGeometryOperatorsCrossesOperator() {
|
|
|
8490
8741
|
const module = await import("@arcgis/core/geometry/operators/crossesOperator.js");
|
|
8491
8742
|
return isDefaultModule(module) ? module.default : module;
|
|
8492
8743
|
}
|
|
8744
|
+
async function importGeometryOperatorsCutOperator() {
|
|
8745
|
+
if (isAMD) {
|
|
8746
|
+
return await window.$arcgis.import("esri/geometry/operators/cutOperator");
|
|
8747
|
+
}
|
|
8748
|
+
const module = await import("@arcgis/core/geometry/operators/cutOperator.js");
|
|
8749
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8750
|
+
}
|
|
8493
8751
|
async function importGeometryOperatorsDensifyOperator() {
|
|
8494
8752
|
if (isAMD) {
|
|
8495
8753
|
return await window.$arcgis.import("esri/geometry/operators/densifyOperator");
|
|
@@ -8504,18 +8762,18 @@ async function importGeometryOperatorsDifferenceOperator() {
|
|
|
8504
8762
|
const module = await import("@arcgis/core/geometry/operators/differenceOperator.js");
|
|
8505
8763
|
return isDefaultModule(module) ? module.default : module;
|
|
8506
8764
|
}
|
|
8507
|
-
async function
|
|
8765
|
+
async function importGeometryOperatorsDisjointOperator() {
|
|
8508
8766
|
if (isAMD) {
|
|
8509
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
8767
|
+
return await window.$arcgis.import("esri/geometry/operators/disjointOperator");
|
|
8510
8768
|
}
|
|
8511
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
8769
|
+
const module = await import("@arcgis/core/geometry/operators/disjointOperator.js");
|
|
8512
8770
|
return isDefaultModule(module) ? module.default : module;
|
|
8513
8771
|
}
|
|
8514
|
-
async function
|
|
8772
|
+
async function importGeometryOperatorsDistanceOperator() {
|
|
8515
8773
|
if (isAMD) {
|
|
8516
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
8774
|
+
return await window.$arcgis.import("esri/geometry/operators/distanceOperator");
|
|
8517
8775
|
}
|
|
8518
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
8776
|
+
const module = await import("@arcgis/core/geometry/operators/distanceOperator.js");
|
|
8519
8777
|
return isDefaultModule(module) ? module.default : module;
|
|
8520
8778
|
}
|
|
8521
8779
|
async function importGeometryOperatorsEqualsOperator() {
|
|
@@ -8525,6 +8783,20 @@ async function importGeometryOperatorsEqualsOperator() {
|
|
|
8525
8783
|
const module = await import("@arcgis/core/geometry/operators/equalsOperator.js");
|
|
8526
8784
|
return isDefaultModule(module) ? module.default : module;
|
|
8527
8785
|
}
|
|
8786
|
+
async function importGeometryOperatorsExtendOperator() {
|
|
8787
|
+
if (isAMD) {
|
|
8788
|
+
return await window.$arcgis.import("esri/geometry/operators/extendOperator");
|
|
8789
|
+
}
|
|
8790
|
+
const module = await import("@arcgis/core/geometry/operators/extendOperator.js");
|
|
8791
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8792
|
+
}
|
|
8793
|
+
async function importGeometryOperatorsGeneralizeOperator() {
|
|
8794
|
+
if (isAMD) {
|
|
8795
|
+
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
8796
|
+
}
|
|
8797
|
+
const module = await import("@arcgis/core/geometry/operators/generalizeOperator.js");
|
|
8798
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8799
|
+
}
|
|
8528
8800
|
async function importGeometryOperatorsGeodesicBufferOperator() {
|
|
8529
8801
|
if (isAMD) {
|
|
8530
8802
|
return await window.$arcgis.import("esri/geometry/operators/geodesicBufferOperator");
|
|
@@ -8532,6 +8804,20 @@ async function importGeometryOperatorsGeodesicBufferOperator() {
|
|
|
8532
8804
|
const module = await import("@arcgis/core/geometry/operators/geodesicBufferOperator.js");
|
|
8533
8805
|
return isDefaultModule(module) ? module.default : module;
|
|
8534
8806
|
}
|
|
8807
|
+
async function importGeometryOperatorsGeodesicProximityOperator() {
|
|
8808
|
+
if (isAMD) {
|
|
8809
|
+
return await window.$arcgis.import("esri/geometry/operators/geodesicProximityOperator");
|
|
8810
|
+
}
|
|
8811
|
+
const module = await import("@arcgis/core/geometry/operators/geodesicProximityOperator.js");
|
|
8812
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8813
|
+
}
|
|
8814
|
+
async function importGeometryOperatorsGeodeticAreaOperator() {
|
|
8815
|
+
if (isAMD) {
|
|
8816
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticAreaOperator");
|
|
8817
|
+
}
|
|
8818
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticAreaOperator.js");
|
|
8819
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8820
|
+
}
|
|
8535
8821
|
async function importGeometryOperatorsGeodeticDensifyOperator() {
|
|
8536
8822
|
if (isAMD) {
|
|
8537
8823
|
return await window.$arcgis.import("esri/geometry/operators/geodeticDensifyOperator");
|
|
@@ -8546,11 +8832,25 @@ async function importGeometryOperatorsGeodeticDistanceOperator() {
|
|
|
8546
8832
|
const module = await import("@arcgis/core/geometry/operators/geodeticDistanceOperator.js");
|
|
8547
8833
|
return isDefaultModule(module) ? module.default : module;
|
|
8548
8834
|
}
|
|
8549
|
-
async function
|
|
8835
|
+
async function importGeometryOperatorsGeodeticLengthOperator() {
|
|
8550
8836
|
if (isAMD) {
|
|
8551
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
8837
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticLengthOperator");
|
|
8552
8838
|
}
|
|
8553
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
8839
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticLengthOperator.js");
|
|
8840
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8841
|
+
}
|
|
8842
|
+
async function importGeometryOperatorsGraphicBufferOperator() {
|
|
8843
|
+
if (isAMD) {
|
|
8844
|
+
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
8845
|
+
}
|
|
8846
|
+
const module = await import("@arcgis/core/geometry/operators/graphicBufferOperator.js");
|
|
8847
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8848
|
+
}
|
|
8849
|
+
async function importGeometryOperatorsIntegrateOperator() {
|
|
8850
|
+
if (isAMD) {
|
|
8851
|
+
return await window.$arcgis.import("esri/geometry/operators/integrateOperator");
|
|
8852
|
+
}
|
|
8853
|
+
const module = await import("@arcgis/core/geometry/operators/integrateOperator.js");
|
|
8554
8854
|
return isDefaultModule(module) ? module.default : module;
|
|
8555
8855
|
}
|
|
8556
8856
|
async function importGeometryOperatorsIntersectionOperator() {
|
|
@@ -8567,6 +8867,62 @@ async function importGeometryOperatorsIntersectsOperator() {
|
|
|
8567
8867
|
const module = await import("@arcgis/core/geometry/operators/intersectsOperator.js");
|
|
8568
8868
|
return isDefaultModule(module) ? module.default : module;
|
|
8569
8869
|
}
|
|
8870
|
+
async function importGeometryOperatorsIsNearOperator() {
|
|
8871
|
+
if (isAMD) {
|
|
8872
|
+
return await window.$arcgis.import("esri/geometry/operators/isNearOperator");
|
|
8873
|
+
}
|
|
8874
|
+
const module = await import("@arcgis/core/geometry/operators/isNearOperator.js");
|
|
8875
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8876
|
+
}
|
|
8877
|
+
async function importGeometryOperatorsLabelPointOperator() {
|
|
8878
|
+
if (isAMD) {
|
|
8879
|
+
return await window.$arcgis.import("esri/geometry/operators/labelPointOperator");
|
|
8880
|
+
}
|
|
8881
|
+
const module = await import("@arcgis/core/geometry/operators/labelPointOperator.js");
|
|
8882
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8883
|
+
}
|
|
8884
|
+
async function importGeometryOperatorsLengthOperator() {
|
|
8885
|
+
if (isAMD) {
|
|
8886
|
+
return await window.$arcgis.import("esri/geometry/operators/lengthOperator");
|
|
8887
|
+
}
|
|
8888
|
+
const module = await import("@arcgis/core/geometry/operators/lengthOperator.js");
|
|
8889
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8890
|
+
}
|
|
8891
|
+
async function importGeometryOperatorsLinesToPolygonsOperator() {
|
|
8892
|
+
if (isAMD) {
|
|
8893
|
+
return await window.$arcgis.import("esri/geometry/operators/linesToPolygonsOperator");
|
|
8894
|
+
}
|
|
8895
|
+
const module = await import("@arcgis/core/geometry/operators/linesToPolygonsOperator.js");
|
|
8896
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8897
|
+
}
|
|
8898
|
+
async function importGeometryOperatorsLocateBetweenOperator() {
|
|
8899
|
+
if (isAMD) {
|
|
8900
|
+
return await window.$arcgis.import("esri/geometry/operators/locateBetweenOperator");
|
|
8901
|
+
}
|
|
8902
|
+
const module = await import("@arcgis/core/geometry/operators/locateBetweenOperator.js");
|
|
8903
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8904
|
+
}
|
|
8905
|
+
async function importGeometryOperatorsMinimumBoundingCircleOperator() {
|
|
8906
|
+
if (isAMD) {
|
|
8907
|
+
return await window.$arcgis.import("esri/geometry/operators/minimumBoundingCircleOperator");
|
|
8908
|
+
}
|
|
8909
|
+
const module = await import("@arcgis/core/geometry/operators/minimumBoundingCircleOperator.js");
|
|
8910
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8911
|
+
}
|
|
8912
|
+
async function importGeometryOperatorsMultiPartToSinglePartOperator() {
|
|
8913
|
+
if (isAMD) {
|
|
8914
|
+
return await window.$arcgis.import("esri/geometry/operators/multiPartToSinglePartOperator");
|
|
8915
|
+
}
|
|
8916
|
+
const module = await import("@arcgis/core/geometry/operators/multiPartToSinglePartOperator.js");
|
|
8917
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8918
|
+
}
|
|
8919
|
+
async function importGeometryOperatorsOffsetOperator() {
|
|
8920
|
+
if (isAMD) {
|
|
8921
|
+
return await window.$arcgis.import("esri/geometry/operators/offsetOperator");
|
|
8922
|
+
}
|
|
8923
|
+
const module = await import("@arcgis/core/geometry/operators/offsetOperator.js");
|
|
8924
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8925
|
+
}
|
|
8570
8926
|
async function importGeometryOperatorsOverlapsOperator() {
|
|
8571
8927
|
if (isAMD) {
|
|
8572
8928
|
return await window.$arcgis.import("esri/geometry/operators/overlapsOperator");
|
|
@@ -8574,6 +8930,20 @@ async function importGeometryOperatorsOverlapsOperator() {
|
|
|
8574
8930
|
const module = await import("@arcgis/core/geometry/operators/overlapsOperator.js");
|
|
8575
8931
|
return isDefaultModule(module) ? module.default : module;
|
|
8576
8932
|
}
|
|
8933
|
+
async function importGeometryOperatorsPolygonOverlayOperator() {
|
|
8934
|
+
if (isAMD) {
|
|
8935
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonOverlayOperator");
|
|
8936
|
+
}
|
|
8937
|
+
const module = await import("@arcgis/core/geometry/operators/polygonOverlayOperator.js");
|
|
8938
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8939
|
+
}
|
|
8940
|
+
async function importGeometryOperatorsPolygonSlicerOperator() {
|
|
8941
|
+
if (isAMD) {
|
|
8942
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonSlicerOperator");
|
|
8943
|
+
}
|
|
8944
|
+
const module = await import("@arcgis/core/geometry/operators/polygonSlicerOperator.js");
|
|
8945
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8946
|
+
}
|
|
8577
8947
|
async function importGeometryOperatorsProximityOperator() {
|
|
8578
8948
|
if (isAMD) {
|
|
8579
8949
|
return await window.$arcgis.import("esri/geometry/operators/proximityOperator");
|
|
@@ -8588,6 +8958,13 @@ async function importGeometryOperatorsRelateOperator() {
|
|
|
8588
8958
|
const module = await import("@arcgis/core/geometry/operators/relateOperator.js");
|
|
8589
8959
|
return isDefaultModule(module) ? module.default : module;
|
|
8590
8960
|
}
|
|
8961
|
+
async function importGeometryOperatorsReshapeOperator() {
|
|
8962
|
+
if (isAMD) {
|
|
8963
|
+
return await window.$arcgis.import("esri/geometry/operators/reshapeOperator");
|
|
8964
|
+
}
|
|
8965
|
+
const module = await import("@arcgis/core/geometry/operators/reshapeOperator.js");
|
|
8966
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8967
|
+
}
|
|
8591
8968
|
async function importGeometryOperatorsSimplifyOperator() {
|
|
8592
8969
|
if (isAMD) {
|
|
8593
8970
|
return await window.$arcgis.import("esri/geometry/operators/simplifyOperator");
|
|
@@ -8595,6 +8972,13 @@ async function importGeometryOperatorsSimplifyOperator() {
|
|
|
8595
8972
|
const module = await import("@arcgis/core/geometry/operators/simplifyOperator.js");
|
|
8596
8973
|
return isDefaultModule(module) ? module.default : module;
|
|
8597
8974
|
}
|
|
8975
|
+
async function importGeometryOperatorsSymmetricDifferenceOperator() {
|
|
8976
|
+
if (isAMD) {
|
|
8977
|
+
return await window.$arcgis.import("esri/geometry/operators/symmetricDifferenceOperator");
|
|
8978
|
+
}
|
|
8979
|
+
const module = await import("@arcgis/core/geometry/operators/symmetricDifferenceOperator.js");
|
|
8980
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8981
|
+
}
|
|
8598
8982
|
async function importGeometryOperatorsTouchesOperator() {
|
|
8599
8983
|
if (isAMD) {
|
|
8600
8984
|
return await window.$arcgis.import("esri/geometry/operators/touchesOperator");
|
|
@@ -8672,6 +9056,20 @@ async function importLayersCatalogCatalogUtils() {
|
|
|
8672
9056
|
const module = await import("@arcgis/core/layers/catalog/catalogUtils.js");
|
|
8673
9057
|
return isDefaultModule(module) ? module.default : module;
|
|
8674
9058
|
}
|
|
9059
|
+
async function importLayersKnowledgeGraphCypherUtils() {
|
|
9060
|
+
if (isAMD) {
|
|
9061
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/cypherUtils");
|
|
9062
|
+
}
|
|
9063
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/cypherUtils.js");
|
|
9064
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9065
|
+
}
|
|
9066
|
+
async function importLayersKnowledgeGraphSupportUtils() {
|
|
9067
|
+
if (isAMD) {
|
|
9068
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/supportUtils");
|
|
9069
|
+
}
|
|
9070
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/supportUtils.js");
|
|
9071
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9072
|
+
}
|
|
8675
9073
|
async function importLayersOgcWfsUtils() {
|
|
8676
9074
|
if (isAMD) {
|
|
8677
9075
|
return await window.$arcgis.import("esri/layers/ogc/wfsUtils");
|
|
@@ -8679,6 +9077,27 @@ async function importLayersOgcWfsUtils() {
|
|
|
8679
9077
|
const module = await import("@arcgis/core/layers/ogc/wfsUtils.js");
|
|
8680
9078
|
return isDefaultModule(module) ? module.default : module;
|
|
8681
9079
|
}
|
|
9080
|
+
async function importLayersOgcWcsUtils() {
|
|
9081
|
+
if (isAMD) {
|
|
9082
|
+
return await window.$arcgis.import("esri/layers/ogc/wcsUtils");
|
|
9083
|
+
}
|
|
9084
|
+
const module = await import("@arcgis/core/layers/ogc/wcsUtils.js");
|
|
9085
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9086
|
+
}
|
|
9087
|
+
async function importLayersOrientedImageryTransformationsWorldToImage() {
|
|
9088
|
+
if (isAMD) {
|
|
9089
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/worldToImage");
|
|
9090
|
+
}
|
|
9091
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/worldToImage.js");
|
|
9092
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9093
|
+
}
|
|
9094
|
+
async function importLayersOrientedImageryTransformationsImageToWorld() {
|
|
9095
|
+
if (isAMD) {
|
|
9096
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/imageToWorld");
|
|
9097
|
+
}
|
|
9098
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/imageToWorld.js");
|
|
9099
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9100
|
+
}
|
|
8682
9101
|
async function importLayersSupportArcadeUtils() {
|
|
8683
9102
|
if (isAMD) {
|
|
8684
9103
|
return await window.$arcgis.import("esri/layers/support/arcadeUtils");
|
|
@@ -9127,6 +9546,13 @@ async function importSmartMappingRenderersUnivariateColorSize() {
|
|
|
9127
9546
|
const module = await import("@arcgis/core/smartMapping/renderers/univariateColorSize.js");
|
|
9128
9547
|
return isDefaultModule(module) ? module.default : module;
|
|
9129
9548
|
}
|
|
9549
|
+
async function importSmartMappingRenderersSupportRendererUtils() {
|
|
9550
|
+
if (isAMD) {
|
|
9551
|
+
return await window.$arcgis.import("esri/smartMapping/renderers/support/rendererUtils");
|
|
9552
|
+
}
|
|
9553
|
+
const module = await import("@arcgis/core/smartMapping/renderers/support/rendererUtils.js");
|
|
9554
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9555
|
+
}
|
|
9130
9556
|
async function importSmartMappingStatisticsClassBreaks() {
|
|
9131
9557
|
if (isAMD) {
|
|
9132
9558
|
return await window.$arcgis.import("esri/smartMapping/statistics/classBreaks");
|
|
@@ -9337,13 +9763,6 @@ async function importVersionManagementVersionAdaptersUtils() {
|
|
|
9337
9763
|
const module = await import("@arcgis/core/versionManagement/versionAdapters/utils.js");
|
|
9338
9764
|
return isDefaultModule(module) ? module.default : module;
|
|
9339
9765
|
}
|
|
9340
|
-
async function importViews3dExternalRenderers() {
|
|
9341
|
-
if (isAMD) {
|
|
9342
|
-
return await window.$arcgis.import("esri/views/3d/externalRenderers");
|
|
9343
|
-
}
|
|
9344
|
-
const module = await import("@arcgis/core/views/3d/externalRenderers.js");
|
|
9345
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9346
|
-
}
|
|
9347
9766
|
async function importViews3dWebglManagedFBO() {
|
|
9348
9767
|
if (isAMD) {
|
|
9349
9768
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -9400,6 +9819,13 @@ async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel() {
|
|
|
9400
9819
|
const module = await import("@arcgis/core/widgets/BatchAttributeForm/BatchAttributeFormViewModel.js");
|
|
9401
9820
|
return isDefaultModule(module) ? module.default : module;
|
|
9402
9821
|
}
|
|
9822
|
+
async function importWidgetsFeatureFeatureUtilityNetworkAssociationsFeatureUtilityNetworkAssociationsViewModel() {
|
|
9823
|
+
if (isAMD) {
|
|
9824
|
+
return await window.$arcgis.import("esri/widgets/Feature/FeatureUtilityNetworkAssociations/FeatureUtilityNetworkAssociationsViewModel");
|
|
9825
|
+
}
|
|
9826
|
+
const module = await import("@arcgis/core/widgets/Feature/FeatureUtilityNetworkAssociations/FeatureUtilityNetworkAssociationsViewModel.js");
|
|
9827
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9828
|
+
}
|
|
9403
9829
|
async function importWidgetsSmartMappingSupportUtils() {
|
|
9404
9830
|
if (isAMD) {
|
|
9405
9831
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -9414,123 +9840,130 @@ async function importWidgetsSupportWidget() {
|
|
|
9414
9840
|
const module = await import("@arcgis/core/widgets/support/widget.js");
|
|
9415
9841
|
return isDefaultModule(module) ? module.default : module;
|
|
9416
9842
|
}
|
|
9417
|
-
async function
|
|
9843
|
+
async function importApplicationsComponentsBasemapUtils() {
|
|
9418
9844
|
if (isAMD) {
|
|
9419
|
-
return await window.$arcgis.import("esri/applications/
|
|
9845
|
+
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
9420
9846
|
}
|
|
9421
|
-
const module = await import("@arcgis/core/applications/
|
|
9847
|
+
const module = await import("@arcgis/core/applications/Components/basemapUtils.js");
|
|
9422
9848
|
return isDefaultModule(module) ? module.default : module;
|
|
9423
9849
|
}
|
|
9424
|
-
async function
|
|
9850
|
+
async function importApplicationsComponentsCollectionFlattener() {
|
|
9425
9851
|
if (isAMD) {
|
|
9426
|
-
return await window.$arcgis.import("esri/applications/
|
|
9852
|
+
return await window.$arcgis.import("esri/applications/Components/CollectionFlattener");
|
|
9427
9853
|
}
|
|
9428
|
-
const module = await import("@arcgis/core/applications/
|
|
9854
|
+
const module = await import("@arcgis/core/applications/Components/CollectionFlattener.js");
|
|
9429
9855
|
return isDefaultModule(module) ? module.default : module;
|
|
9430
9856
|
}
|
|
9431
|
-
async function
|
|
9857
|
+
async function importApplicationsComponentsDrawUtils() {
|
|
9432
9858
|
if (isAMD) {
|
|
9433
|
-
return await window.$arcgis.import("esri/applications/
|
|
9859
|
+
return await window.$arcgis.import("esri/applications/Components/drawUtils");
|
|
9434
9860
|
}
|
|
9435
|
-
const module = await import("@arcgis/core/applications/
|
|
9861
|
+
const module = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
9436
9862
|
return isDefaultModule(module) ? module.default : module;
|
|
9437
9863
|
}
|
|
9438
|
-
async function
|
|
9864
|
+
async function importApplicationsComponentsFontUtils() {
|
|
9439
9865
|
if (isAMD) {
|
|
9440
|
-
return await window.$arcgis.import("esri/applications/
|
|
9866
|
+
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
9441
9867
|
}
|
|
9442
|
-
const module = await import("@arcgis/core/applications/
|
|
9868
|
+
const module = await import("@arcgis/core/applications/Components/fontUtils.js");
|
|
9443
9869
|
return isDefaultModule(module) ? module.default : module;
|
|
9444
9870
|
}
|
|
9445
|
-
async function
|
|
9871
|
+
async function importApplicationsComponentsGetDefaultUnits() {
|
|
9446
9872
|
if (isAMD) {
|
|
9447
|
-
return await window.$arcgis.import("esri/applications/
|
|
9873
|
+
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
9448
9874
|
}
|
|
9449
|
-
const module = await import("@arcgis/core/applications/
|
|
9875
|
+
const module = await import("@arcgis/core/applications/Components/getDefaultUnits.js");
|
|
9450
9876
|
return isDefaultModule(module) ? module.default : module;
|
|
9451
9877
|
}
|
|
9452
|
-
async function
|
|
9878
|
+
async function importApplicationsComponentsGfxUtils() {
|
|
9453
9879
|
if (isAMD) {
|
|
9454
|
-
return await window.$arcgis.import("esri/applications/
|
|
9880
|
+
return await window.$arcgis.import("esri/applications/Components/gfxUtils");
|
|
9455
9881
|
}
|
|
9456
|
-
const module = await import("@arcgis/core/applications/
|
|
9882
|
+
const module = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
9457
9883
|
return isDefaultModule(module) ? module.default : module;
|
|
9458
9884
|
}
|
|
9459
|
-
async function
|
|
9885
|
+
async function importApplicationsComponentsLayerOriginUtils() {
|
|
9460
9886
|
if (isAMD) {
|
|
9461
|
-
return await window.$arcgis.import("esri/applications/
|
|
9887
|
+
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
9462
9888
|
}
|
|
9463
|
-
const module = await import("@arcgis/core/applications/
|
|
9889
|
+
const module = await import("@arcgis/core/applications/Components/layerOriginUtils.js");
|
|
9464
9890
|
return isDefaultModule(module) ? module.default : module;
|
|
9465
9891
|
}
|
|
9466
|
-
async function
|
|
9892
|
+
async function importApplicationsComponentsLayersEffectsJsonUtils() {
|
|
9467
9893
|
if (isAMD) {
|
|
9468
|
-
return await window.$arcgis.import("esri/applications/
|
|
9894
|
+
return await window.$arcgis.import("esri/applications/Components/layersEffectsJsonUtils");
|
|
9469
9895
|
}
|
|
9470
|
-
const module = await import("@arcgis/core/applications/
|
|
9896
|
+
const module = await import("@arcgis/core/applications/Components/layersEffectsJsonUtils.js");
|
|
9471
9897
|
return isDefaultModule(module) ? module.default : module;
|
|
9472
9898
|
}
|
|
9473
|
-
async function
|
|
9899
|
+
async function importApplicationsComponentsPreviewSymbol2D() {
|
|
9474
9900
|
if (isAMD) {
|
|
9475
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
9901
|
+
return await window.$arcgis.import("esri/applications/Components/previewSymbol2D");
|
|
9476
9902
|
}
|
|
9477
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
9903
|
+
const module = await import("@arcgis/core/applications/Components/previewSymbol2D.js");
|
|
9478
9904
|
return isDefaultModule(module) ? module.default : module;
|
|
9479
9905
|
}
|
|
9480
|
-
async function
|
|
9906
|
+
async function importApplicationsComponentsReactiveUtils() {
|
|
9481
9907
|
if (isAMD) {
|
|
9482
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
9908
|
+
return await window.$arcgis.import("esri/applications/Components/reactiveUtils");
|
|
9483
9909
|
}
|
|
9484
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
9910
|
+
const module = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
9485
9911
|
return isDefaultModule(module) ? module.default : module;
|
|
9486
9912
|
}
|
|
9487
|
-
async function
|
|
9913
|
+
async function importApplicationsComponentsSelectionOperation() {
|
|
9488
9914
|
if (isAMD) {
|
|
9489
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
9915
|
+
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
9490
9916
|
}
|
|
9491
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
9917
|
+
const module = await import("@arcgis/core/applications/Components/SelectionOperation.js");
|
|
9492
9918
|
return isDefaultModule(module) ? module.default : module;
|
|
9493
9919
|
}
|
|
9494
|
-
async function
|
|
9920
|
+
async function importApplicationsComponentsSketchTooltipControls() {
|
|
9495
9921
|
if (isAMD) {
|
|
9496
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
9922
|
+
return await window.$arcgis.import("esri/applications/Components/SketchTooltipControls");
|
|
9497
9923
|
}
|
|
9498
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
9924
|
+
const module = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
9499
9925
|
return isDefaultModule(module) ? module.default : module;
|
|
9500
9926
|
}
|
|
9501
|
-
async function
|
|
9927
|
+
async function importApplicationsComponentsStyleUtils() {
|
|
9502
9928
|
if (isAMD) {
|
|
9503
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
9929
|
+
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
9504
9930
|
}
|
|
9505
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
9931
|
+
const module = await import("@arcgis/core/applications/Components/styleUtils.js");
|
|
9506
9932
|
return isDefaultModule(module) ? module.default : module;
|
|
9507
9933
|
}
|
|
9508
|
-
async function
|
|
9934
|
+
async function importApplicationsComponentsSvgUtils() {
|
|
9509
9935
|
if (isAMD) {
|
|
9510
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
9936
|
+
return await window.$arcgis.import("esri/applications/Components/svgUtils");
|
|
9511
9937
|
}
|
|
9512
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
9938
|
+
const module = await import("@arcgis/core/applications/Components/svgUtils.js");
|
|
9513
9939
|
return isDefaultModule(module) ? module.default : module;
|
|
9514
9940
|
}
|
|
9515
|
-
async function
|
|
9941
|
+
async function importApplicationsComponentsWebStyleSymbolUtils() {
|
|
9516
9942
|
if (isAMD) {
|
|
9517
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
9943
|
+
return await window.$arcgis.import("esri/applications/Components/webStyleSymbolUtils");
|
|
9518
9944
|
}
|
|
9519
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
9945
|
+
const module = await import("@arcgis/core/applications/Components/webStyleSymbolUtils.js");
|
|
9520
9946
|
return isDefaultModule(module) ? module.default : module;
|
|
9521
9947
|
}
|
|
9522
|
-
async function
|
|
9948
|
+
async function importApplicationsExperienceBuilderSketchUtils() {
|
|
9523
9949
|
if (isAMD) {
|
|
9524
|
-
return await window.$arcgis.import("esri/applications/
|
|
9950
|
+
return await window.$arcgis.import("esri/applications/ExperienceBuilder/sketchUtils");
|
|
9525
9951
|
}
|
|
9526
|
-
const module = await import("@arcgis/core/applications/
|
|
9952
|
+
const module = await import("@arcgis/core/applications/ExperienceBuilder/sketchUtils.js");
|
|
9527
9953
|
return isDefaultModule(module) ? module.default : module;
|
|
9528
9954
|
}
|
|
9529
|
-
async function
|
|
9955
|
+
async function importApplicationsSceneViewerDevEnvironmentUtils() {
|
|
9530
9956
|
if (isAMD) {
|
|
9531
|
-
return await window.$arcgis.import("esri/applications/
|
|
9957
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/devEnvironmentUtils");
|
|
9532
9958
|
}
|
|
9533
|
-
const module = await import("@arcgis/core/applications/
|
|
9959
|
+
const module = await import("@arcgis/core/applications/SceneViewer/devEnvironmentUtils.js");
|
|
9960
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9961
|
+
}
|
|
9962
|
+
async function importApplicationsWebEditorSketchUtils() {
|
|
9963
|
+
if (isAMD) {
|
|
9964
|
+
return await window.$arcgis.import("esri/applications/WebEditor/sketchUtils");
|
|
9965
|
+
}
|
|
9966
|
+
const module = await import("@arcgis/core/applications/WebEditor/sketchUtils.js");
|
|
9534
9967
|
return isDefaultModule(module) ? module.default : module;
|
|
9535
9968
|
}
|
|
9536
9969
|
export {
|
|
@@ -9547,21 +9980,22 @@ export {
|
|
|
9547
9980
|
importAnalysisViewshed,
|
|
9548
9981
|
importAnalysisViewshedAnalysis,
|
|
9549
9982
|
importApplicationsComponentsBasemapUtils,
|
|
9983
|
+
importApplicationsComponentsCollectionFlattener,
|
|
9550
9984
|
importApplicationsComponentsDrawUtils,
|
|
9985
|
+
importApplicationsComponentsFontUtils,
|
|
9551
9986
|
importApplicationsComponentsGetDefaultUnits,
|
|
9552
9987
|
importApplicationsComponentsGfxUtils,
|
|
9553
9988
|
importApplicationsComponentsLayerOriginUtils,
|
|
9989
|
+
importApplicationsComponentsLayersEffectsJsonUtils,
|
|
9554
9990
|
importApplicationsComponentsPreviewSymbol2D,
|
|
9991
|
+
importApplicationsComponentsReactiveUtils,
|
|
9992
|
+
importApplicationsComponentsSelectionOperation,
|
|
9993
|
+
importApplicationsComponentsSketchTooltipControls,
|
|
9555
9994
|
importApplicationsComponentsStyleUtils,
|
|
9556
9995
|
importApplicationsComponentsSvgUtils,
|
|
9557
9996
|
importApplicationsComponentsWebStyleSymbolUtils,
|
|
9558
|
-
|
|
9559
|
-
importApplicationsMapViewerMediaUtils,
|
|
9560
|
-
importApplicationsSceneViewerColorUtils,
|
|
9997
|
+
importApplicationsExperienceBuilderSketchUtils,
|
|
9561
9998
|
importApplicationsSceneViewerDevEnvironmentUtils,
|
|
9562
|
-
importApplicationsSceneViewerLayerUtils,
|
|
9563
|
-
importApplicationsSceneViewerSceneViewerUtils,
|
|
9564
|
-
importApplicationsSceneViewerSymbolUtils,
|
|
9565
9999
|
importApplicationsWebEditorSketchUtils,
|
|
9566
10000
|
importArcade,
|
|
9567
10001
|
importBasemap,
|
|
@@ -9620,9 +10054,16 @@ export {
|
|
|
9620
10054
|
importGeometryHeightModelInfo,
|
|
9621
10055
|
importGeometryMesh,
|
|
9622
10056
|
importGeometryMultipoint,
|
|
10057
|
+
importGeometryOperatorsAffineTransformOperator,
|
|
10058
|
+
importGeometryOperatorsAlphaShapeOperator,
|
|
10059
|
+
importGeometryOperatorsAreaOperator,
|
|
10060
|
+
importGeometryOperatorsAutoCompleteOperator,
|
|
10061
|
+
importGeometryOperatorsBoundaryOperator,
|
|
10062
|
+
importGeometryOperatorsBufferOperator,
|
|
9623
10063
|
importGeometryOperatorsCentroidOperator,
|
|
9624
10064
|
importGeometryOperatorsClipOperator,
|
|
9625
10065
|
importGeometryOperatorsContainsOperator,
|
|
10066
|
+
importGeometryOperatorsConvexHullOperator,
|
|
9626
10067
|
importGeometryOperatorsCrossesOperator,
|
|
9627
10068
|
importGeometryOperatorsCutOperator,
|
|
9628
10069
|
importGeometryOperatorsDensifyOperator,
|
|
@@ -9630,16 +10071,35 @@ export {
|
|
|
9630
10071
|
importGeometryOperatorsDisjointOperator,
|
|
9631
10072
|
importGeometryOperatorsDistanceOperator,
|
|
9632
10073
|
importGeometryOperatorsEqualsOperator,
|
|
10074
|
+
importGeometryOperatorsExtendOperator,
|
|
9633
10075
|
importGeometryOperatorsGeneralizeOperator,
|
|
9634
10076
|
importGeometryOperatorsGeodesicBufferOperator,
|
|
10077
|
+
importGeometryOperatorsGeodesicProximityOperator,
|
|
10078
|
+
importGeometryOperatorsGeodeticAreaOperator,
|
|
9635
10079
|
importGeometryOperatorsGeodeticDensifyOperator,
|
|
9636
10080
|
importGeometryOperatorsGeodeticDistanceOperator,
|
|
10081
|
+
importGeometryOperatorsGeodeticLengthOperator,
|
|
10082
|
+
importGeometryOperatorsGraphicBufferOperator,
|
|
10083
|
+
importGeometryOperatorsIntegrateOperator,
|
|
9637
10084
|
importGeometryOperatorsIntersectionOperator,
|
|
9638
10085
|
importGeometryOperatorsIntersectsOperator,
|
|
10086
|
+
importGeometryOperatorsIsNearOperator,
|
|
10087
|
+
importGeometryOperatorsLabelPointOperator,
|
|
10088
|
+
importGeometryOperatorsLengthOperator,
|
|
10089
|
+
importGeometryOperatorsLinesToPolygonsOperator,
|
|
10090
|
+
importGeometryOperatorsLocateBetweenOperator,
|
|
10091
|
+
importGeometryOperatorsMinimumBoundingCircleOperator,
|
|
10092
|
+
importGeometryOperatorsMultiPartToSinglePartOperator,
|
|
10093
|
+
importGeometryOperatorsOffsetOperator,
|
|
9639
10094
|
importGeometryOperatorsOverlapsOperator,
|
|
10095
|
+
importGeometryOperatorsPolygonOverlayOperator,
|
|
10096
|
+
importGeometryOperatorsPolygonSlicerOperator,
|
|
9640
10097
|
importGeometryOperatorsProximityOperator,
|
|
9641
10098
|
importGeometryOperatorsRelateOperator,
|
|
10099
|
+
importGeometryOperatorsReshapeOperator,
|
|
9642
10100
|
importGeometryOperatorsSimplifyOperator,
|
|
10101
|
+
importGeometryOperatorsSupportTransformation,
|
|
10102
|
+
importGeometryOperatorsSymmetricDifferenceOperator,
|
|
9643
10103
|
importGeometryOperatorsTouchesOperator,
|
|
9644
10104
|
importGeometryOperatorsUnionOperator,
|
|
9645
10105
|
importGeometryOperatorsWithinOperator,
|
|
@@ -9696,17 +10156,23 @@ export {
|
|
|
9696
10156
|
importLayersIntegratedMesh3DTilesLayer,
|
|
9697
10157
|
importLayersIntegratedMeshLayer,
|
|
9698
10158
|
importLayersKMLLayer,
|
|
10159
|
+
importLayersKnowledgeGraphCypherUtils,
|
|
9699
10160
|
importLayersKnowledgeGraphKnowledgeGraphSublayer,
|
|
9700
10161
|
importLayersKnowledgeGraphLayer,
|
|
10162
|
+
importLayersKnowledgeGraphSupportUtils,
|
|
9701
10163
|
importLayersLayer,
|
|
9702
10164
|
importLayersLineOfSightLayer,
|
|
10165
|
+
importLayersLinkChartLayer,
|
|
9703
10166
|
importLayersMapImageLayer,
|
|
9704
10167
|
importLayersMapNotesLayer,
|
|
9705
10168
|
importLayersMediaLayer,
|
|
9706
10169
|
importLayersOGCFeatureLayer,
|
|
10170
|
+
importLayersOgcWcsUtils,
|
|
9707
10171
|
importLayersOgcWfsUtils,
|
|
9708
10172
|
importLayersOpenStreetMapLayer,
|
|
9709
10173
|
importLayersOrientedImageryLayer,
|
|
10174
|
+
importLayersOrientedImageryTransformationsImageToWorld,
|
|
10175
|
+
importLayersOrientedImageryTransformationsWorldToImage,
|
|
9710
10176
|
importLayersPointCloudFiltersPointCloudBitfieldFilter,
|
|
9711
10177
|
importLayersPointCloudFiltersPointCloudFilter,
|
|
9712
10178
|
importLayersPointCloudFiltersPointCloudReturnFilter,
|
|
@@ -9800,6 +10266,11 @@ export {
|
|
|
9800
10266
|
importLayersWMSLayer,
|
|
9801
10267
|
importLayersWMTSLayer,
|
|
9802
10268
|
importLayersWebTileLayer,
|
|
10269
|
+
importLinkChartChronologicalLayoutSettings,
|
|
10270
|
+
importLinkChartLayoutSettings,
|
|
10271
|
+
importLinkChartLinkChartProperties,
|
|
10272
|
+
importLinkChartNonspatialDataDisplay,
|
|
10273
|
+
importLinkChartOrganicLayoutSettings,
|
|
9803
10274
|
importMap,
|
|
9804
10275
|
importNetworksNetwork,
|
|
9805
10276
|
importNetworksSupportNamedTraceConfiguration,
|
|
@@ -9873,6 +10344,7 @@ export {
|
|
|
9873
10344
|
importRenderersSupportColormapInfo,
|
|
9874
10345
|
importRenderersSupportHeatmapColorStop,
|
|
9875
10346
|
importRenderersSupportJsonUtils,
|
|
10347
|
+
importRenderersSupportRasterPresetRenderer,
|
|
9876
10348
|
importRenderersSupportUniqueValue,
|
|
9877
10349
|
importRenderersSupportUniqueValueClass,
|
|
9878
10350
|
importRenderersSupportUniqueValueGroup,
|
|
@@ -9911,6 +10383,7 @@ export {
|
|
|
9911
10383
|
importRestKnowledgeGraphGraphProperty,
|
|
9912
10384
|
importRestKnowledgeGraphGraphQuery,
|
|
9913
10385
|
importRestKnowledgeGraphGraphQueryResult,
|
|
10386
|
+
importRestKnowledgeGraphGraphQueryResultHeader,
|
|
9914
10387
|
importRestKnowledgeGraphGraphQueryStreaming,
|
|
9915
10388
|
importRestKnowledgeGraphGraphQueryStreamingResult,
|
|
9916
10389
|
importRestKnowledgeGraphGraphSearch,
|
|
@@ -9924,6 +10397,7 @@ export {
|
|
|
9924
10397
|
importRestKnowledgeGraphSearchIndex,
|
|
9925
10398
|
importRestKnowledgeGraphService,
|
|
9926
10399
|
importRestKnowledgeGraphServiceDefinition,
|
|
10400
|
+
importRestKnowledgeGraphSourceTypeValueBehavior,
|
|
9927
10401
|
importRestLocator,
|
|
9928
10402
|
importRestNetworkService,
|
|
9929
10403
|
importRestNetworksQueryAssociations,
|
|
@@ -10073,6 +10547,7 @@ export {
|
|
|
10073
10547
|
importSmartMappingRenderersPredominance,
|
|
10074
10548
|
importSmartMappingRenderersRelationship,
|
|
10075
10549
|
importSmartMappingRenderersSize,
|
|
10550
|
+
importSmartMappingRenderersSupportRendererUtils,
|
|
10076
10551
|
importSmartMappingRenderersType,
|
|
10077
10552
|
importSmartMappingRenderersUnivariateColorSize,
|
|
10078
10553
|
importSmartMappingStatisticsClassBreaks,
|
|
@@ -10164,6 +10639,7 @@ export {
|
|
|
10164
10639
|
importViewpoint,
|
|
10165
10640
|
importViews2dLayersBaseLayerView2D,
|
|
10166
10641
|
importViews2dLayersBaseLayerViewGL2D,
|
|
10642
|
+
importViews2dSupportHighlightGroup,
|
|
10167
10643
|
importViews2dViewState,
|
|
10168
10644
|
importViews3dAnalysisAreaMeasurementAnalysisView3D,
|
|
10169
10645
|
importViews3dAnalysisDirectLineMeasurementAnalysisView3D,
|
|
@@ -10178,7 +10654,6 @@ export {
|
|
|
10178
10654
|
importViews3dEnvironmentSunLighting,
|
|
10179
10655
|
importViews3dEnvironmentSunnyWeather,
|
|
10180
10656
|
importViews3dEnvironmentVirtualLighting,
|
|
10181
|
-
importViews3dExternalRenderers,
|
|
10182
10657
|
importViews3dSupportLayerPerformanceInfo,
|
|
10183
10658
|
importViews3dSupportSceneViewPerformanceInfo,
|
|
10184
10659
|
importViews3dWebgl,
|
|
@@ -10212,6 +10687,7 @@ export {
|
|
|
10212
10687
|
importViewsLayersCatalogLayerView,
|
|
10213
10688
|
importViewsLayersDimensionLayerView,
|
|
10214
10689
|
importViewsLayersFeatureLayerView,
|
|
10690
|
+
importViewsLayersGroupLayerView,
|
|
10215
10691
|
importViewsLayersImageryLayerView,
|
|
10216
10692
|
importViewsLayersLayerView,
|
|
10217
10693
|
importViewsLayersMediaLayerView,
|
|
@@ -10219,6 +10695,7 @@ export {
|
|
|
10219
10695
|
importViewsLayersSceneLayerView,
|
|
10220
10696
|
importViewsLayersStreamLayerView,
|
|
10221
10697
|
importViewsLayersViewshedLayerView,
|
|
10698
|
+
importViewsLinkChartView,
|
|
10222
10699
|
importViewsMagnifier,
|
|
10223
10700
|
importViewsMapView,
|
|
10224
10701
|
importViewsNavigationGamepadGamepadSettings,
|
|
@@ -10232,6 +10709,7 @@ export {
|
|
|
10232
10709
|
importViewsView2D,
|
|
10233
10710
|
importViewsViewAnimation,
|
|
10234
10711
|
importWebDocument2D,
|
|
10712
|
+
importWebLinkChart,
|
|
10235
10713
|
importWebMap,
|
|
10236
10714
|
importWebScene,
|
|
10237
10715
|
importWebdocApplicationPropertiesSearch,
|
|
@@ -10327,12 +10805,15 @@ export {
|
|
|
10327
10805
|
importWidgetsExpand,
|
|
10328
10806
|
importWidgetsExpandExpandViewModel,
|
|
10329
10807
|
importWidgetsFeature,
|
|
10808
|
+
importWidgetsFeatureFeatureUtilityNetworkAssociationsFeatureUtilityNetworkAssociationsViewModel,
|
|
10330
10809
|
importWidgetsFeatureFeatureViewModel,
|
|
10331
10810
|
importWidgetsFeatureForm,
|
|
10332
10811
|
importWidgetsFeatureFormFeatureFormViewModel,
|
|
10333
10812
|
importWidgetsFeatureFormFieldInput,
|
|
10334
10813
|
importWidgetsFeatureFormGroupInput,
|
|
10335
10814
|
importWidgetsFeatureFormRelationshipInput,
|
|
10815
|
+
importWidgetsFeatureFormTextElementInput,
|
|
10816
|
+
importWidgetsFeatureFormUtilityNetworkAssociationInput,
|
|
10336
10817
|
importWidgetsFeatureTable,
|
|
10337
10818
|
importWidgetsFeatureTableActionColumn,
|
|
10338
10819
|
importWidgetsFeatureTableAttachmentsColumn,
|
|
@@ -10344,10 +10825,12 @@ export {
|
|
|
10344
10825
|
importWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
10345
10826
|
importWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
10346
10827
|
importWidgetsFeatureTableRelationshipColumn,
|
|
10828
|
+
importWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
10347
10829
|
importWidgetsFeatureTableSupportColumnTemplate,
|
|
10348
10830
|
importWidgetsFeatureTableSupportColumnTemplateBase,
|
|
10349
10831
|
importWidgetsFeatureTableSupportFieldColumnTemplate,
|
|
10350
10832
|
importWidgetsFeatureTableSupportGroupColumnTemplate,
|
|
10833
|
+
importWidgetsFeatureTableSupportRelationshipColumnTemplate,
|
|
10351
10834
|
importWidgetsFeatureTableSupportTableTemplate,
|
|
10352
10835
|
importWidgetsFeatureTemplates,
|
|
10353
10836
|
importWidgetsFeatureTemplatesFeatureTemplatesViewModel,
|
|
@@ -10447,6 +10930,7 @@ export {
|
|
|
10447
10930
|
importWidgetsUtilityNetworkAssociations,
|
|
10448
10931
|
importWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
10449
10932
|
importWidgetsUtilityNetworkTrace,
|
|
10933
|
+
importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel,
|
|
10450
10934
|
importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel,
|
|
10451
10935
|
importWidgetsUtilityNetworkValidateTopology,
|
|
10452
10936
|
importWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel,
|
|
@@ -10515,6 +10999,7 @@ export {
|
|
|
10515
10999
|
newGeometryHeightModelInfo,
|
|
10516
11000
|
newGeometryMesh,
|
|
10517
11001
|
newGeometryMultipoint,
|
|
11002
|
+
newGeometryOperatorsSupportTransformation,
|
|
10518
11003
|
newGeometryPoint,
|
|
10519
11004
|
newGeometryPolygon,
|
|
10520
11005
|
newGeometryPolyline,
|
|
@@ -10562,6 +11047,7 @@ export {
|
|
|
10562
11047
|
newLayersKnowledgeGraphLayer,
|
|
10563
11048
|
newLayersLayer,
|
|
10564
11049
|
newLayersLineOfSightLayer,
|
|
11050
|
+
newLayersLinkChartLayer,
|
|
10565
11051
|
newLayersMapImageLayer,
|
|
10566
11052
|
newLayersMapNotesLayer,
|
|
10567
11053
|
newLayersMediaLayer,
|
|
@@ -10654,6 +11140,11 @@ export {
|
|
|
10654
11140
|
newLayersWMSLayer,
|
|
10655
11141
|
newLayersWMTSLayer,
|
|
10656
11142
|
newLayersWebTileLayer,
|
|
11143
|
+
newLinkChartChronologicalLayoutSettings,
|
|
11144
|
+
newLinkChartLayoutSettings,
|
|
11145
|
+
newLinkChartLinkChartProperties,
|
|
11146
|
+
newLinkChartNonspatialDataDisplay,
|
|
11147
|
+
newLinkChartOrganicLayoutSettings,
|
|
10657
11148
|
newMap,
|
|
10658
11149
|
newNetworksNetwork,
|
|
10659
11150
|
newNetworksSupportNamedTraceConfiguration,
|
|
@@ -10721,6 +11212,7 @@ export {
|
|
|
10721
11212
|
newRenderersSupportClassBreakInfo,
|
|
10722
11213
|
newRenderersSupportColormapInfo,
|
|
10723
11214
|
newRenderersSupportHeatmapColorStop,
|
|
11215
|
+
newRenderersSupportRasterPresetRenderer,
|
|
10724
11216
|
newRenderersSupportUniqueValue,
|
|
10725
11217
|
newRenderersSupportUniqueValueClass,
|
|
10726
11218
|
newRenderersSupportUniqueValueGroup,
|
|
@@ -10749,6 +11241,7 @@ export {
|
|
|
10749
11241
|
newRestKnowledgeGraphGraphProperty,
|
|
10750
11242
|
newRestKnowledgeGraphGraphQuery,
|
|
10751
11243
|
newRestKnowledgeGraphGraphQueryResult,
|
|
11244
|
+
newRestKnowledgeGraphGraphQueryResultHeader,
|
|
10752
11245
|
newRestKnowledgeGraphGraphQueryStreaming,
|
|
10753
11246
|
newRestKnowledgeGraphGraphQueryStreamingResult,
|
|
10754
11247
|
newRestKnowledgeGraphGraphSearch,
|
|
@@ -10761,6 +11254,7 @@ export {
|
|
|
10761
11254
|
newRestKnowledgeGraphRelationshipType,
|
|
10762
11255
|
newRestKnowledgeGraphSearchIndex,
|
|
10763
11256
|
newRestKnowledgeGraphServiceDefinition,
|
|
11257
|
+
newRestKnowledgeGraphSourceTypeValueBehavior,
|
|
10764
11258
|
newRestNetworksSupportAggregatedGeometry,
|
|
10765
11259
|
newRestNetworksSupportAssociation,
|
|
10766
11260
|
newRestNetworksSupportAssociationGeometriesResult,
|
|
@@ -10931,6 +11425,7 @@ export {
|
|
|
10931
11425
|
newViewpoint,
|
|
10932
11426
|
newViews2dLayersBaseLayerView2D,
|
|
10933
11427
|
newViews2dLayersBaseLayerViewGL2D,
|
|
11428
|
+
newViews2dSupportHighlightGroup,
|
|
10934
11429
|
newViews2dViewState,
|
|
10935
11430
|
newViews3dAnalysisAreaMeasurementAnalysisView3D,
|
|
10936
11431
|
newViews3dAnalysisDirectLineMeasurementAnalysisView3D,
|
|
@@ -10972,6 +11467,7 @@ export {
|
|
|
10972
11467
|
newViewsLayersCatalogLayerView,
|
|
10973
11468
|
newViewsLayersDimensionLayerView,
|
|
10974
11469
|
newViewsLayersFeatureLayerView,
|
|
11470
|
+
newViewsLayersGroupLayerView,
|
|
10975
11471
|
newViewsLayersImageryLayerView,
|
|
10976
11472
|
newViewsLayersLayerView,
|
|
10977
11473
|
newViewsLayersMediaLayerView,
|
|
@@ -10979,6 +11475,7 @@ export {
|
|
|
10979
11475
|
newViewsLayersSceneLayerView,
|
|
10980
11476
|
newViewsLayersStreamLayerView,
|
|
10981
11477
|
newViewsLayersViewshedLayerView,
|
|
11478
|
+
newViewsLinkChartView,
|
|
10982
11479
|
newViewsMagnifier,
|
|
10983
11480
|
newViewsMapView,
|
|
10984
11481
|
newViewsNavigationGamepadGamepadSettings,
|
|
@@ -10991,6 +11488,7 @@ export {
|
|
|
10991
11488
|
newViewsView2D,
|
|
10992
11489
|
newViewsViewAnimation,
|
|
10993
11490
|
newWebDocument2D,
|
|
11491
|
+
newWebLinkChart,
|
|
10994
11492
|
newWebMap,
|
|
10995
11493
|
newWebScene,
|
|
10996
11494
|
newWebdocApplicationPropertiesSearch,
|
|
@@ -11091,6 +11589,8 @@ export {
|
|
|
11091
11589
|
newWidgetsFeatureFormFieldInput,
|
|
11092
11590
|
newWidgetsFeatureFormGroupInput,
|
|
11093
11591
|
newWidgetsFeatureFormRelationshipInput,
|
|
11592
|
+
newWidgetsFeatureFormTextElementInput,
|
|
11593
|
+
newWidgetsFeatureFormUtilityNetworkAssociationInput,
|
|
11094
11594
|
newWidgetsFeatureTable,
|
|
11095
11595
|
newWidgetsFeatureTableActionColumn,
|
|
11096
11596
|
newWidgetsFeatureTableAttachmentsColumn,
|
|
@@ -11102,10 +11602,12 @@ export {
|
|
|
11102
11602
|
newWidgetsFeatureTableGridSupportButtonMenuItem,
|
|
11103
11603
|
newWidgetsFeatureTableGridSupportButtonMenuViewModel,
|
|
11104
11604
|
newWidgetsFeatureTableRelationshipColumn,
|
|
11605
|
+
newWidgetsFeatureTableSupportAttachmentsColumnTemplate,
|
|
11105
11606
|
newWidgetsFeatureTableSupportColumnTemplate,
|
|
11106
11607
|
newWidgetsFeatureTableSupportColumnTemplateBase,
|
|
11107
11608
|
newWidgetsFeatureTableSupportFieldColumnTemplate,
|
|
11108
11609
|
newWidgetsFeatureTableSupportGroupColumnTemplate,
|
|
11610
|
+
newWidgetsFeatureTableSupportRelationshipColumnTemplate,
|
|
11109
11611
|
newWidgetsFeatureTableSupportTableTemplate,
|
|
11110
11612
|
newWidgetsFeatureTemplates,
|
|
11111
11613
|
newWidgetsFeatureTemplatesFeatureTemplatesViewModel,
|
|
@@ -11203,6 +11705,7 @@ export {
|
|
|
11203
11705
|
newWidgetsUtilityNetworkAssociations,
|
|
11204
11706
|
newWidgetsUtilityNetworkAssociationsUtilityNetworkAssociationsViewModel,
|
|
11205
11707
|
newWidgetsUtilityNetworkTrace,
|
|
11708
|
+
newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel,
|
|
11206
11709
|
newWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel,
|
|
11207
11710
|
newWidgetsUtilityNetworkValidateTopology,
|
|
11208
11711
|
newWidgetsUtilityNetworkValidateTopologyUtilityNetworkValidateTopologyViewModel,
|