@arcgis/core-adapter 4.32.0-next.5 → 4.32.0-next.50
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 +891 -198
- package/dist/index.d.cts +128 -42
- package/dist/index.d.ts +128 -42
- package/dist/index.js +794 -187
- package/package.json +4 -28
- package/scripts/generator.ts +37 -5
- package/scripts/update-adapter-typings.ts +49 -15
- package/src/index.ts +798 -191
- package/support/api-reference-esm-imports.json +74 -17
- package/support/arcgis.d.ts +48626 -51251
- package/support/publicModules.ts +26 -0
package/src/index.ts
CHANGED
|
@@ -756,6 +756,19 @@ export async function newGeometrySpatialReference(properties: __esri.SpatialRefe
|
|
|
756
756
|
return new ModConstructor(properties);
|
|
757
757
|
}
|
|
758
758
|
|
|
759
|
+
export async function importGeometryOperatorsSupportTransformation(): Promise<typeof __esri.Transformation> {
|
|
760
|
+
if (isAMD) {
|
|
761
|
+
return await window.$arcgis.import("esri/geometry/operators/support/Transformation");
|
|
762
|
+
}
|
|
763
|
+
const module = await import("@arcgis/core/geometry/operators/support/Transformation.js");
|
|
764
|
+
return isDefaultModule(module) ? module.default : module;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
export async function newGeometryOperatorsSupportTransformation(): Promise<__esri.Transformation> {
|
|
768
|
+
const ModConstructor = await importGeometryOperatorsSupportTransformation();
|
|
769
|
+
return new ModConstructor();
|
|
770
|
+
}
|
|
771
|
+
|
|
759
772
|
export async function importGeometrySupportGeographicTransformation(): Promise<typeof __esri.GeographicTransformation> {
|
|
760
773
|
if (isAMD) {
|
|
761
774
|
return await window.$arcgis.import("esri/geometry/support/GeographicTransformation");
|
|
@@ -1315,6 +1328,19 @@ export async function newLayersLineOfSightLayer(properties: __esri.LineOfSightLa
|
|
|
1315
1328
|
return new ModConstructor(properties);
|
|
1316
1329
|
}
|
|
1317
1330
|
|
|
1331
|
+
export async function importLayersLinkChartLayer(): Promise<typeof __esri.LinkChartLayer> {
|
|
1332
|
+
if (isAMD) {
|
|
1333
|
+
return await window.$arcgis.import("esri/layers/LinkChartLayer");
|
|
1334
|
+
}
|
|
1335
|
+
const module = await import("@arcgis/core/layers/LinkChartLayer.js");
|
|
1336
|
+
return isDefaultModule(module) ? module.default : module;
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
export async function newLayersLinkChartLayer(properties: __esri.LinkChartLayerProperties): Promise<__esri.LinkChartLayer> {
|
|
1340
|
+
const ModConstructor = await importLayersLinkChartLayer();
|
|
1341
|
+
return new ModConstructor(properties);
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1318
1344
|
export async function importLayersMapImageLayer(): Promise<typeof __esri.MapImageLayer> {
|
|
1319
1345
|
if (isAMD) {
|
|
1320
1346
|
return await window.$arcgis.import("esri/layers/MapImageLayer");
|
|
@@ -1965,19 +1991,6 @@ export async function newLayersSupportPublishingInfo(properties: __esri.Publishi
|
|
|
1965
1991
|
return new ModConstructor(properties);
|
|
1966
1992
|
}
|
|
1967
1993
|
|
|
1968
|
-
export async function importLayersSupportSceneFilter(): Promise<typeof __esri.SceneFilter> {
|
|
1969
|
-
if (isAMD) {
|
|
1970
|
-
return await window.$arcgis.import("esri/layers/support/SceneFilter");
|
|
1971
|
-
}
|
|
1972
|
-
const module = await import("@arcgis/core/layers/support/SceneFilter.js");
|
|
1973
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1974
|
-
}
|
|
1975
|
-
|
|
1976
|
-
export async function newLayersSupportSceneFilter(properties: __esri.SceneFilterProperties): Promise<__esri.SceneFilter> {
|
|
1977
|
-
const ModConstructor = await importLayersSupportSceneFilter();
|
|
1978
|
-
return new ModConstructor(properties);
|
|
1979
|
-
}
|
|
1980
|
-
|
|
1981
1994
|
export async function importLayersSupportRangeDomain(): Promise<typeof __esri.RangeDomain> {
|
|
1982
1995
|
if (isAMD) {
|
|
1983
1996
|
return await window.$arcgis.import("esri/layers/support/RangeDomain");
|
|
@@ -2082,6 +2095,19 @@ export async function newLayersSupportRouteSymbols(properties: __esri.RouteSymbo
|
|
|
2082
2095
|
return new ModConstructor(properties);
|
|
2083
2096
|
}
|
|
2084
2097
|
|
|
2098
|
+
export async function importLayersSupportSceneFilter(): Promise<typeof __esri.SceneFilter> {
|
|
2099
|
+
if (isAMD) {
|
|
2100
|
+
return await window.$arcgis.import("esri/layers/support/SceneFilter");
|
|
2101
|
+
}
|
|
2102
|
+
const module = await import("@arcgis/core/layers/support/SceneFilter.js");
|
|
2103
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2104
|
+
}
|
|
2105
|
+
|
|
2106
|
+
export async function newLayersSupportSceneFilter(properties: __esri.SceneFilterProperties): Promise<__esri.SceneFilter> {
|
|
2107
|
+
const ModConstructor = await importLayersSupportSceneFilter();
|
|
2108
|
+
return new ModConstructor(properties);
|
|
2109
|
+
}
|
|
2110
|
+
|
|
2085
2111
|
export async function importLayersSupportSceneModification(): Promise<typeof __esri.SceneModification> {
|
|
2086
2112
|
if (isAMD) {
|
|
2087
2113
|
return await window.$arcgis.import("esri/layers/support/SceneModification");
|
|
@@ -2407,29 +2433,29 @@ export async function newLayersUnsupportedLayer(properties: __esri.UnsupportedLa
|
|
|
2407
2433
|
return new ModConstructor(properties);
|
|
2408
2434
|
}
|
|
2409
2435
|
|
|
2410
|
-
export async function
|
|
2436
|
+
export async function importLayersVectorTileLayer(): Promise<typeof __esri.VectorTileLayer> {
|
|
2411
2437
|
if (isAMD) {
|
|
2412
|
-
return await window.$arcgis.import("esri/layers/
|
|
2438
|
+
return await window.$arcgis.import("esri/layers/VectorTileLayer");
|
|
2413
2439
|
}
|
|
2414
|
-
const module = await import("@arcgis/core/layers/
|
|
2440
|
+
const module = await import("@arcgis/core/layers/VectorTileLayer.js");
|
|
2415
2441
|
return isDefaultModule(module) ? module.default : module;
|
|
2416
2442
|
}
|
|
2417
2443
|
|
|
2418
|
-
export async function
|
|
2419
|
-
const ModConstructor = await
|
|
2444
|
+
export async function newLayersVectorTileLayer(properties: __esri.VectorTileLayerProperties): Promise<__esri.VectorTileLayer> {
|
|
2445
|
+
const ModConstructor = await importLayersVectorTileLayer();
|
|
2420
2446
|
return new ModConstructor(properties);
|
|
2421
2447
|
}
|
|
2422
2448
|
|
|
2423
|
-
export async function
|
|
2449
|
+
export async function importLayersVideoLayer(): Promise<typeof __esri.VideoLayer> {
|
|
2424
2450
|
if (isAMD) {
|
|
2425
|
-
return await window.$arcgis.import("esri/layers/
|
|
2451
|
+
return await window.$arcgis.import("esri/layers/VideoLayer");
|
|
2426
2452
|
}
|
|
2427
|
-
const module = await import("@arcgis/core/layers/
|
|
2453
|
+
const module = await import("@arcgis/core/layers/VideoLayer.js");
|
|
2428
2454
|
return isDefaultModule(module) ? module.default : module;
|
|
2429
2455
|
}
|
|
2430
2456
|
|
|
2431
|
-
export async function
|
|
2432
|
-
const ModConstructor = await
|
|
2457
|
+
export async function newLayersVideoLayer(properties: __esri.VideoLayerProperties): Promise<__esri.VideoLayer> {
|
|
2458
|
+
const ModConstructor = await importLayersVideoLayer();
|
|
2433
2459
|
return new ModConstructor(properties);
|
|
2434
2460
|
}
|
|
2435
2461
|
|
|
@@ -2511,6 +2537,71 @@ export async function newLayersWMTSLayer(properties: __esri.WMTSLayerProperties)
|
|
|
2511
2537
|
return new ModConstructor(properties);
|
|
2512
2538
|
}
|
|
2513
2539
|
|
|
2540
|
+
export async function importLinkChartChronologicalLayoutSettings(): Promise<typeof __esri.ChronologicalLayoutSettings> {
|
|
2541
|
+
if (isAMD) {
|
|
2542
|
+
return await window.$arcgis.import("esri/linkChart/ChronologicalLayoutSettings");
|
|
2543
|
+
}
|
|
2544
|
+
const module = await import("@arcgis/core/linkChart/ChronologicalLayoutSettings.js");
|
|
2545
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2548
|
+
export async function newLinkChartChronologicalLayoutSettings(properties: __esri.ChronologicalLayoutSettingsProperties): Promise<__esri.ChronologicalLayoutSettings> {
|
|
2549
|
+
const ModConstructor = await importLinkChartChronologicalLayoutSettings();
|
|
2550
|
+
return new ModConstructor(properties);
|
|
2551
|
+
}
|
|
2552
|
+
|
|
2553
|
+
export async function importLinkChartLayoutSettings(): Promise<typeof __esri.LayoutSettings> {
|
|
2554
|
+
if (isAMD) {
|
|
2555
|
+
return await window.$arcgis.import("esri/linkChart/LayoutSettings");
|
|
2556
|
+
}
|
|
2557
|
+
const module = await import("@arcgis/core/linkChart/LayoutSettings.js");
|
|
2558
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2559
|
+
}
|
|
2560
|
+
|
|
2561
|
+
export async function newLinkChartLayoutSettings(properties: __esri.LayoutSettingsProperties): Promise<__esri.LayoutSettings> {
|
|
2562
|
+
const ModConstructor = await importLinkChartLayoutSettings();
|
|
2563
|
+
return new ModConstructor(properties);
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2566
|
+
export async function importLinkChartLinkChartProperties(): Promise<typeof __esri.LinkChartProperties> {
|
|
2567
|
+
if (isAMD) {
|
|
2568
|
+
return await window.$arcgis.import("esri/linkChart/LinkChartProperties");
|
|
2569
|
+
}
|
|
2570
|
+
const module = await import("@arcgis/core/linkChart/LinkChartProperties.js");
|
|
2571
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2574
|
+
export async function newLinkChartLinkChartProperties(properties: __esri.LinkChartPropertiesProperties): Promise<__esri.LinkChartProperties> {
|
|
2575
|
+
const ModConstructor = await importLinkChartLinkChartProperties();
|
|
2576
|
+
return new ModConstructor(properties);
|
|
2577
|
+
}
|
|
2578
|
+
|
|
2579
|
+
export async function importLinkChartNonspatialDataDisplay(): Promise<typeof __esri.NonspatialDataDisplay> {
|
|
2580
|
+
if (isAMD) {
|
|
2581
|
+
return await window.$arcgis.import("esri/linkChart/NonspatialDataDisplay");
|
|
2582
|
+
}
|
|
2583
|
+
const module = await import("@arcgis/core/linkChart/NonspatialDataDisplay.js");
|
|
2584
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
export async function newLinkChartNonspatialDataDisplay(properties: __esri.NonspatialDataDisplayProperties): Promise<__esri.NonspatialDataDisplay> {
|
|
2588
|
+
const ModConstructor = await importLinkChartNonspatialDataDisplay();
|
|
2589
|
+
return new ModConstructor(properties);
|
|
2590
|
+
}
|
|
2591
|
+
|
|
2592
|
+
export async function importLinkChartOrganicLayoutSettings(): Promise<typeof __esri.OrganicLayoutSettings> {
|
|
2593
|
+
if (isAMD) {
|
|
2594
|
+
return await window.$arcgis.import("esri/linkChart/OrganicLayoutSettings");
|
|
2595
|
+
}
|
|
2596
|
+
const module = await import("@arcgis/core/linkChart/OrganicLayoutSettings.js");
|
|
2597
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2598
|
+
}
|
|
2599
|
+
|
|
2600
|
+
export async function newLinkChartOrganicLayoutSettings(properties: __esri.OrganicLayoutSettingsProperties): Promise<__esri.OrganicLayoutSettings> {
|
|
2601
|
+
const ModConstructor = await importLinkChartOrganicLayoutSettings();
|
|
2602
|
+
return new ModConstructor(properties);
|
|
2603
|
+
}
|
|
2604
|
+
|
|
2514
2605
|
export async function importMap(): Promise<typeof __esri.Map> {
|
|
2515
2606
|
if (isAMD) {
|
|
2516
2607
|
return await window.$arcgis.import("esri/Map");
|
|
@@ -3252,6 +3343,19 @@ export async function newRenderersRasterColormapRenderer(properties: __esri.Rast
|
|
|
3252
3343
|
return new ModConstructor(properties);
|
|
3253
3344
|
}
|
|
3254
3345
|
|
|
3346
|
+
export async function importRenderersSupportRasterPresetRenderer(): Promise<typeof __esri.RasterPresetRenderer> {
|
|
3347
|
+
if (isAMD) {
|
|
3348
|
+
return await window.$arcgis.import("esri/renderers/support/RasterPresetRenderer");
|
|
3349
|
+
}
|
|
3350
|
+
const module = await import("@arcgis/core/renderers/support/RasterPresetRenderer.js");
|
|
3351
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3352
|
+
}
|
|
3353
|
+
|
|
3354
|
+
export async function newRenderersSupportRasterPresetRenderer(properties: __esri.RasterPresetRendererProperties): Promise<__esri.RasterPresetRenderer> {
|
|
3355
|
+
const ModConstructor = await importRenderersSupportRasterPresetRenderer();
|
|
3356
|
+
return new ModConstructor(properties);
|
|
3357
|
+
}
|
|
3358
|
+
|
|
3255
3359
|
export async function importRenderersRasterShadedReliefRenderer(): Promise<typeof __esri.RasterShadedReliefRenderer> {
|
|
3256
3360
|
if (isAMD) {
|
|
3257
3361
|
return await window.$arcgis.import("esri/renderers/RasterShadedReliefRenderer");
|
|
@@ -3746,6 +3850,19 @@ export async function newRestKnowledgeGraphGraphQueryResult(properties: __esri.G
|
|
|
3746
3850
|
return new ModConstructor(properties);
|
|
3747
3851
|
}
|
|
3748
3852
|
|
|
3853
|
+
export async function importRestKnowledgeGraphGraphQueryResultHeader(): Promise<typeof __esri.GraphQueryResultHeader> {
|
|
3854
|
+
if (isAMD) {
|
|
3855
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryResultHeader");
|
|
3856
|
+
}
|
|
3857
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/GraphQueryResultHeader.js");
|
|
3858
|
+
return isDefaultModule(module) ? module.default : module;
|
|
3859
|
+
}
|
|
3860
|
+
|
|
3861
|
+
export async function newRestKnowledgeGraphGraphQueryResultHeader(properties: __esri.GraphQueryResultHeaderProperties): Promise<__esri.GraphQueryResultHeader> {
|
|
3862
|
+
const ModConstructor = await importRestKnowledgeGraphGraphQueryResultHeader();
|
|
3863
|
+
return new ModConstructor(properties);
|
|
3864
|
+
}
|
|
3865
|
+
|
|
3749
3866
|
export async function importRestKnowledgeGraphGraphQueryStreaming(): Promise<typeof __esri.GraphQueryStreaming> {
|
|
3750
3867
|
if (isAMD) {
|
|
3751
3868
|
return await window.$arcgis.import("esri/rest/knowledgeGraph/GraphQueryStreaming");
|
|
@@ -3902,6 +4019,19 @@ export async function newRestKnowledgeGraphServiceDefinition(properties: __esri.
|
|
|
3902
4019
|
return new ModConstructor(properties);
|
|
3903
4020
|
}
|
|
3904
4021
|
|
|
4022
|
+
export async function importRestKnowledgeGraphSourceTypeValueBehavior(): Promise<typeof __esri.SourceTypeValueBehavior> {
|
|
4023
|
+
if (isAMD) {
|
|
4024
|
+
return await window.$arcgis.import("esri/rest/knowledgeGraph/SourceTypeValueBehavior");
|
|
4025
|
+
}
|
|
4026
|
+
const module = await import("@arcgis/core/rest/knowledgeGraph/SourceTypeValueBehavior.js");
|
|
4027
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4028
|
+
}
|
|
4029
|
+
|
|
4030
|
+
export async function newRestKnowledgeGraphSourceTypeValueBehavior(properties: __esri.SourceTypeValueBehaviorProperties): Promise<__esri.SourceTypeValueBehavior> {
|
|
4031
|
+
const ModConstructor = await importRestKnowledgeGraphSourceTypeValueBehavior();
|
|
4032
|
+
return new ModConstructor(properties);
|
|
4033
|
+
}
|
|
4034
|
+
|
|
3905
4035
|
export async function importRestNetworksSupportAggregatedGeometry(): Promise<typeof __esri.AggregatedGeometry> {
|
|
3906
4036
|
if (isAMD) {
|
|
3907
4037
|
return await window.$arcgis.import("esri/rest/networks/support/AggregatedGeometry");
|
|
@@ -4084,6 +4214,84 @@ export async function newRestSupportAddressCandidate(properties: __esri.AddressC
|
|
|
4084
4214
|
return new ModConstructor(properties);
|
|
4085
4215
|
}
|
|
4086
4216
|
|
|
4217
|
+
export async function importRestSupportAttributeBinsQuery(): Promise<typeof __esri.AttributeBinsQuery> {
|
|
4218
|
+
if (isAMD) {
|
|
4219
|
+
return await window.$arcgis.import("esri/rest/support/AttributeBinsQuery");
|
|
4220
|
+
}
|
|
4221
|
+
const module = await import("@arcgis/core/rest/support/AttributeBinsQuery.js");
|
|
4222
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4223
|
+
}
|
|
4224
|
+
|
|
4225
|
+
export async function newRestSupportAttributeBinsQuery(properties: __esri.AttributeBinsQueryProperties): Promise<__esri.AttributeBinsQuery> {
|
|
4226
|
+
const ModConstructor = await importRestSupportAttributeBinsQuery();
|
|
4227
|
+
return new ModConstructor(properties);
|
|
4228
|
+
}
|
|
4229
|
+
|
|
4230
|
+
export async function importRestSupportAutoIntervalBinParameters(): Promise<typeof __esri.AutoIntervalBinParameters> {
|
|
4231
|
+
if (isAMD) {
|
|
4232
|
+
return await window.$arcgis.import("esri/rest/support/AutoIntervalBinParameters");
|
|
4233
|
+
}
|
|
4234
|
+
const module = await import("@arcgis/core/rest/support/AutoIntervalBinParameters.js");
|
|
4235
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4236
|
+
}
|
|
4237
|
+
|
|
4238
|
+
export async function newRestSupportAutoIntervalBinParameters(properties: __esri.AutoIntervalBinParametersProperties): Promise<__esri.AutoIntervalBinParameters> {
|
|
4239
|
+
const ModConstructor = await importRestSupportAutoIntervalBinParameters();
|
|
4240
|
+
return new ModConstructor(properties);
|
|
4241
|
+
}
|
|
4242
|
+
|
|
4243
|
+
export async function importRestSupportFixedBoundariesBinParameters(): Promise<typeof __esri.FixedBoundariesBinParameters> {
|
|
4244
|
+
if (isAMD) {
|
|
4245
|
+
return await window.$arcgis.import("esri/rest/support/FixedBoundariesBinParameters");
|
|
4246
|
+
}
|
|
4247
|
+
const module = await import("@arcgis/core/rest/support/FixedBoundariesBinParameters.js");
|
|
4248
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4249
|
+
}
|
|
4250
|
+
|
|
4251
|
+
export async function newRestSupportFixedBoundariesBinParameters(properties: __esri.FixedBoundariesBinParametersProperties): Promise<__esri.FixedBoundariesBinParameters> {
|
|
4252
|
+
const ModConstructor = await importRestSupportFixedBoundariesBinParameters();
|
|
4253
|
+
return new ModConstructor(properties);
|
|
4254
|
+
}
|
|
4255
|
+
|
|
4256
|
+
export async function importRestSupportFixedIntervalBinParameters(): Promise<typeof __esri.FixedIntervalBinParameters> {
|
|
4257
|
+
if (isAMD) {
|
|
4258
|
+
return await window.$arcgis.import("esri/rest/support/FixedIntervalBinParameters");
|
|
4259
|
+
}
|
|
4260
|
+
const module = await import("@arcgis/core/rest/support/FixedIntervalBinParameters.js");
|
|
4261
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4262
|
+
}
|
|
4263
|
+
|
|
4264
|
+
export async function newRestSupportFixedIntervalBinParameters(properties: __esri.FixedIntervalBinParametersProperties): Promise<__esri.FixedIntervalBinParameters> {
|
|
4265
|
+
const ModConstructor = await importRestSupportFixedIntervalBinParameters();
|
|
4266
|
+
return new ModConstructor(properties);
|
|
4267
|
+
}
|
|
4268
|
+
|
|
4269
|
+
export async function importRestSupportDateBinParameters(): Promise<typeof __esri.DateBinParameters> {
|
|
4270
|
+
if (isAMD) {
|
|
4271
|
+
return await window.$arcgis.import("esri/rest/support/DateBinParameters");
|
|
4272
|
+
}
|
|
4273
|
+
const module = await import("@arcgis/core/rest/support/DateBinParameters.js");
|
|
4274
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4275
|
+
}
|
|
4276
|
+
|
|
4277
|
+
export async function newRestSupportDateBinParameters(properties: __esri.DateBinParametersProperties): Promise<__esri.DateBinParameters> {
|
|
4278
|
+
const ModConstructor = await importRestSupportDateBinParameters();
|
|
4279
|
+
return new ModConstructor(properties);
|
|
4280
|
+
}
|
|
4281
|
+
|
|
4282
|
+
export async function importRestSupportDateBinTimeInterval(): Promise<typeof __esri.DateBinTimeInterval> {
|
|
4283
|
+
if (isAMD) {
|
|
4284
|
+
return await window.$arcgis.import("esri/rest/support/DateBinTimeInterval");
|
|
4285
|
+
}
|
|
4286
|
+
const module = await import("@arcgis/core/rest/support/DateBinTimeInterval.js");
|
|
4287
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4288
|
+
}
|
|
4289
|
+
|
|
4290
|
+
export async function newRestSupportDateBinTimeInterval(properties: __esri.DateBinTimeIntervalProperties): Promise<__esri.DateBinTimeInterval> {
|
|
4291
|
+
const ModConstructor = await importRestSupportDateBinTimeInterval();
|
|
4292
|
+
return new ModConstructor(properties);
|
|
4293
|
+
}
|
|
4294
|
+
|
|
4087
4295
|
export async function importRestSupportAlgorithmicColorRamp(): Promise<typeof __esri.AlgorithmicColorRamp> {
|
|
4088
4296
|
if (isAMD) {
|
|
4089
4297
|
return await window.$arcgis.import("esri/rest/support/AlgorithmicColorRamp");
|
|
@@ -4136,6 +4344,32 @@ export async function newRestSupportAttachmentQuery(properties: __esri.Attachmen
|
|
|
4136
4344
|
return new ModConstructor(properties);
|
|
4137
4345
|
}
|
|
4138
4346
|
|
|
4347
|
+
export async function importRestSupportBaseImageMeasureParameters(): Promise<typeof __esri.BaseImageMeasureParameters> {
|
|
4348
|
+
if (isAMD) {
|
|
4349
|
+
return await window.$arcgis.import("esri/rest/support/BaseImageMeasureParameters");
|
|
4350
|
+
}
|
|
4351
|
+
const module = await import("@arcgis/core/rest/support/BaseImageMeasureParameters.js");
|
|
4352
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4353
|
+
}
|
|
4354
|
+
|
|
4355
|
+
export async function newRestSupportBaseImageMeasureParameters(properties: __esri.BaseImageMeasureParametersProperties): Promise<__esri.BaseImageMeasureParameters> {
|
|
4356
|
+
const ModConstructor = await importRestSupportBaseImageMeasureParameters();
|
|
4357
|
+
return new ModConstructor(properties);
|
|
4358
|
+
}
|
|
4359
|
+
|
|
4360
|
+
export async function importRestSupportBaseImageMeasureResult(): Promise<typeof __esri.BaseImageMeasureResult> {
|
|
4361
|
+
if (isAMD) {
|
|
4362
|
+
return await window.$arcgis.import("esri/rest/support/BaseImageMeasureResult");
|
|
4363
|
+
}
|
|
4364
|
+
const module = await import("@arcgis/core/rest/support/BaseImageMeasureResult.js");
|
|
4365
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4366
|
+
}
|
|
4367
|
+
|
|
4368
|
+
export async function newRestSupportBaseImageMeasureResult(properties: __esri.BaseImageMeasureResultProperties): Promise<__esri.BaseImageMeasureResult> {
|
|
4369
|
+
const ModConstructor = await importRestSupportBaseImageMeasureResult();
|
|
4370
|
+
return new ModConstructor(properties);
|
|
4371
|
+
}
|
|
4372
|
+
|
|
4139
4373
|
export async function importRestSupportBufferParameters(): Promise<typeof __esri.BufferParameters> {
|
|
4140
4374
|
if (isAMD) {
|
|
4141
4375
|
return await window.$arcgis.import("esri/rest/support/BufferParameters");
|
|
@@ -4526,58 +4760,6 @@ export async function newRestSupportImageBoundaryResult(properties: __esri.Image
|
|
|
4526
4760
|
return new ModConstructor(properties);
|
|
4527
4761
|
}
|
|
4528
4762
|
|
|
4529
|
-
export async function importRestSupportImageHistogramParameters(): Promise<typeof __esri.ImageHistogramParameters> {
|
|
4530
|
-
if (isAMD) {
|
|
4531
|
-
return await window.$arcgis.import("esri/rest/support/ImageHistogramParameters");
|
|
4532
|
-
}
|
|
4533
|
-
const module = await import("@arcgis/core/rest/support/ImageHistogramParameters.js");
|
|
4534
|
-
return isDefaultModule(module) ? module.default : module;
|
|
4535
|
-
}
|
|
4536
|
-
|
|
4537
|
-
export async function newRestSupportImageHistogramParameters(properties: __esri.ImageHistogramParametersProperties): Promise<__esri.ImageHistogramParameters> {
|
|
4538
|
-
const ModConstructor = await importRestSupportImageHistogramParameters();
|
|
4539
|
-
return new ModConstructor(properties);
|
|
4540
|
-
}
|
|
4541
|
-
|
|
4542
|
-
export async function importRestSupportImageIdentifyParameters(): Promise<typeof __esri.ImageIdentifyParameters> {
|
|
4543
|
-
if (isAMD) {
|
|
4544
|
-
return await window.$arcgis.import("esri/rest/support/ImageIdentifyParameters");
|
|
4545
|
-
}
|
|
4546
|
-
const module = await import("@arcgis/core/rest/support/ImageIdentifyParameters.js");
|
|
4547
|
-
return isDefaultModule(module) ? module.default : module;
|
|
4548
|
-
}
|
|
4549
|
-
|
|
4550
|
-
export async function newRestSupportImageIdentifyParameters(properties: __esri.ImageIdentifyParametersProperties): Promise<__esri.ImageIdentifyParameters> {
|
|
4551
|
-
const ModConstructor = await importRestSupportImageIdentifyParameters();
|
|
4552
|
-
return new ModConstructor(properties);
|
|
4553
|
-
}
|
|
4554
|
-
|
|
4555
|
-
export async function importRestSupportImageIdentifyResult(): Promise<typeof __esri.ImageIdentifyResult> {
|
|
4556
|
-
if (isAMD) {
|
|
4557
|
-
return await window.$arcgis.import("esri/rest/support/ImageIdentifyResult");
|
|
4558
|
-
}
|
|
4559
|
-
const module = await import("@arcgis/core/rest/support/ImageIdentifyResult.js");
|
|
4560
|
-
return isDefaultModule(module) ? module.default : module;
|
|
4561
|
-
}
|
|
4562
|
-
|
|
4563
|
-
export async function newRestSupportImageIdentifyResult(properties: __esri.ImageIdentifyResultProperties): Promise<__esri.ImageIdentifyResult> {
|
|
4564
|
-
const ModConstructor = await importRestSupportImageIdentifyResult();
|
|
4565
|
-
return new ModConstructor(properties);
|
|
4566
|
-
}
|
|
4567
|
-
|
|
4568
|
-
export async function importRestSupportImageInspectionInfo(): Promise<typeof __esri.ImageInspectionInfo> {
|
|
4569
|
-
if (isAMD) {
|
|
4570
|
-
return await window.$arcgis.import("esri/rest/support/ImageInspectionInfo");
|
|
4571
|
-
}
|
|
4572
|
-
const module = await import("@arcgis/core/rest/support/ImageInspectionInfo.js");
|
|
4573
|
-
return isDefaultModule(module) ? module.default : module;
|
|
4574
|
-
}
|
|
4575
|
-
|
|
4576
|
-
export async function newRestSupportImageInspectionInfo(properties: __esri.ImageInspectionInfoProperties): Promise<__esri.ImageInspectionInfo> {
|
|
4577
|
-
const ModConstructor = await importRestSupportImageInspectionInfo();
|
|
4578
|
-
return new ModConstructor(properties);
|
|
4579
|
-
}
|
|
4580
|
-
|
|
4581
4763
|
export async function importRestSupportImageDistanceParameters(): Promise<typeof __esri.ImageDistanceParameters> {
|
|
4582
4764
|
if (isAMD) {
|
|
4583
4765
|
return await window.$arcgis.import("esri/rest/support/ImageDistanceParameters");
|
|
@@ -4669,22 +4851,74 @@ export async function newRestSupportImageHeightResult(properties: __esri.ImageHe
|
|
|
4669
4851
|
return new ModConstructor(properties);
|
|
4670
4852
|
}
|
|
4671
4853
|
|
|
4672
|
-
export async function
|
|
4854
|
+
export async function importRestSupportImageHistogramParameters(): Promise<typeof __esri.ImageHistogramParameters> {
|
|
4673
4855
|
if (isAMD) {
|
|
4674
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4856
|
+
return await window.$arcgis.import("esri/rest/support/ImageHistogramParameters");
|
|
4675
4857
|
}
|
|
4676
|
-
const module = await import("@arcgis/core/rest/support/
|
|
4858
|
+
const module = await import("@arcgis/core/rest/support/ImageHistogramParameters.js");
|
|
4677
4859
|
return isDefaultModule(module) ? module.default : module;
|
|
4678
4860
|
}
|
|
4679
4861
|
|
|
4680
|
-
export async function
|
|
4681
|
-
const ModConstructor = await
|
|
4862
|
+
export async function newRestSupportImageHistogramParameters(properties: __esri.ImageHistogramParametersProperties): Promise<__esri.ImageHistogramParameters> {
|
|
4863
|
+
const ModConstructor = await importRestSupportImageHistogramParameters();
|
|
4682
4864
|
return new ModConstructor(properties);
|
|
4683
4865
|
}
|
|
4684
4866
|
|
|
4685
|
-
export async function
|
|
4867
|
+
export async function importRestSupportImageIdentifyParameters(): Promise<typeof __esri.ImageIdentifyParameters> {
|
|
4686
4868
|
if (isAMD) {
|
|
4687
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4869
|
+
return await window.$arcgis.import("esri/rest/support/ImageIdentifyParameters");
|
|
4870
|
+
}
|
|
4871
|
+
const module = await import("@arcgis/core/rest/support/ImageIdentifyParameters.js");
|
|
4872
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4873
|
+
}
|
|
4874
|
+
|
|
4875
|
+
export async function newRestSupportImageIdentifyParameters(properties: __esri.ImageIdentifyParametersProperties): Promise<__esri.ImageIdentifyParameters> {
|
|
4876
|
+
const ModConstructor = await importRestSupportImageIdentifyParameters();
|
|
4877
|
+
return new ModConstructor(properties);
|
|
4878
|
+
}
|
|
4879
|
+
|
|
4880
|
+
export async function importRestSupportImageIdentifyResult(): Promise<typeof __esri.ImageIdentifyResult> {
|
|
4881
|
+
if (isAMD) {
|
|
4882
|
+
return await window.$arcgis.import("esri/rest/support/ImageIdentifyResult");
|
|
4883
|
+
}
|
|
4884
|
+
const module = await import("@arcgis/core/rest/support/ImageIdentifyResult.js");
|
|
4885
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4886
|
+
}
|
|
4887
|
+
|
|
4888
|
+
export async function newRestSupportImageIdentifyResult(properties: __esri.ImageIdentifyResultProperties): Promise<__esri.ImageIdentifyResult> {
|
|
4889
|
+
const ModConstructor = await importRestSupportImageIdentifyResult();
|
|
4890
|
+
return new ModConstructor(properties);
|
|
4891
|
+
}
|
|
4892
|
+
|
|
4893
|
+
export async function importRestSupportImageInspectionInfo(): Promise<typeof __esri.ImageInspectionInfo> {
|
|
4894
|
+
if (isAMD) {
|
|
4895
|
+
return await window.$arcgis.import("esri/rest/support/ImageInspectionInfo");
|
|
4896
|
+
}
|
|
4897
|
+
const module = await import("@arcgis/core/rest/support/ImageInspectionInfo.js");
|
|
4898
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4899
|
+
}
|
|
4900
|
+
|
|
4901
|
+
export async function newRestSupportImageInspectionInfo(properties: __esri.ImageInspectionInfoProperties): Promise<__esri.ImageInspectionInfo> {
|
|
4902
|
+
const ModConstructor = await importRestSupportImageInspectionInfo();
|
|
4903
|
+
return new ModConstructor(properties);
|
|
4904
|
+
}
|
|
4905
|
+
|
|
4906
|
+
export async function importRestSupportImageParameters(): Promise<typeof __esri.ImageParameters> {
|
|
4907
|
+
if (isAMD) {
|
|
4908
|
+
return await window.$arcgis.import("esri/rest/support/ImageParameters");
|
|
4909
|
+
}
|
|
4910
|
+
const module = await import("@arcgis/core/rest/support/ImageParameters.js");
|
|
4911
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4912
|
+
}
|
|
4913
|
+
|
|
4914
|
+
export async function newRestSupportImageParameters(properties: __esri.ImageParametersProperties): Promise<__esri.ImageParameters> {
|
|
4915
|
+
const ModConstructor = await importRestSupportImageParameters();
|
|
4916
|
+
return new ModConstructor(properties);
|
|
4917
|
+
}
|
|
4918
|
+
|
|
4919
|
+
export async function importRestSupportImagePixelLocationParameters(): Promise<typeof __esri.ImagePixelLocationParameters> {
|
|
4920
|
+
if (isAMD) {
|
|
4921
|
+
return await window.$arcgis.import("esri/rest/support/ImagePixelLocationParameters");
|
|
4688
4922
|
}
|
|
4689
4923
|
const module = await import("@arcgis/core/rest/support/ImagePixelLocationParameters.js");
|
|
4690
4924
|
return isDefaultModule(module) ? module.default : module;
|
|
@@ -4773,29 +5007,29 @@ export async function newRestSupportImageSampleResult(properties: __esri.ImageSa
|
|
|
4773
5007
|
return new ModConstructor(properties);
|
|
4774
5008
|
}
|
|
4775
5009
|
|
|
4776
|
-
export async function
|
|
5010
|
+
export async function importRestSupportImageToMapMultirayParameters(): Promise<typeof __esri.ImageToMapMultirayParameters> {
|
|
4777
5011
|
if (isAMD) {
|
|
4778
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
5012
|
+
return await window.$arcgis.import("esri/rest/support/ImageToMapMultirayParameters");
|
|
4779
5013
|
}
|
|
4780
|
-
const module = await import("@arcgis/core/rest/support/
|
|
5014
|
+
const module = await import("@arcgis/core/rest/support/ImageToMapMultirayParameters.js");
|
|
4781
5015
|
return isDefaultModule(module) ? module.default : module;
|
|
4782
5016
|
}
|
|
4783
5017
|
|
|
4784
|
-
export async function
|
|
4785
|
-
const ModConstructor = await
|
|
5018
|
+
export async function newRestSupportImageToMapMultirayParameters(properties: __esri.ImageToMapMultirayParametersProperties): Promise<__esri.ImageToMapMultirayParameters> {
|
|
5019
|
+
const ModConstructor = await importRestSupportImageToMapMultirayParameters();
|
|
4786
5020
|
return new ModConstructor(properties);
|
|
4787
5021
|
}
|
|
4788
5022
|
|
|
4789
|
-
export async function
|
|
5023
|
+
export async function importRestSupportImageToMapParameters(): Promise<typeof __esri.ImageToMapParameters> {
|
|
4790
5024
|
if (isAMD) {
|
|
4791
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
5025
|
+
return await window.$arcgis.import("esri/rest/support/ImageToMapParameters");
|
|
4792
5026
|
}
|
|
4793
|
-
const module = await import("@arcgis/core/rest/support/
|
|
5027
|
+
const module = await import("@arcgis/core/rest/support/ImageToMapParameters.js");
|
|
4794
5028
|
return isDefaultModule(module) ? module.default : module;
|
|
4795
5029
|
}
|
|
4796
5030
|
|
|
4797
|
-
export async function
|
|
4798
|
-
const ModConstructor = await
|
|
5031
|
+
export async function newRestSupportImageToMapParameters(properties: __esri.ImageToMapParametersProperties): Promise<__esri.ImageToMapParameters> {
|
|
5032
|
+
const ModConstructor = await importRestSupportImageToMapParameters();
|
|
4799
5033
|
return new ModConstructor(properties);
|
|
4800
5034
|
}
|
|
4801
5035
|
|
|
@@ -4903,29 +5137,29 @@ export async function newRestSupportMeasureAreaFromImageResult(properties: __esr
|
|
|
4903
5137
|
return new ModConstructor(properties);
|
|
4904
5138
|
}
|
|
4905
5139
|
|
|
4906
|
-
export async function
|
|
5140
|
+
export async function importRestSupportMeasureFromImageParameters(): Promise<typeof __esri.MeasureFromImageParameters> {
|
|
4907
5141
|
if (isAMD) {
|
|
4908
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
5142
|
+
return await window.$arcgis.import("esri/rest/support/MeasureFromImageParameters");
|
|
4909
5143
|
}
|
|
4910
|
-
const module = await import("@arcgis/core/rest/support/
|
|
5144
|
+
const module = await import("@arcgis/core/rest/support/MeasureFromImageParameters.js");
|
|
4911
5145
|
return isDefaultModule(module) ? module.default : module;
|
|
4912
5146
|
}
|
|
4913
5147
|
|
|
4914
|
-
export async function
|
|
4915
|
-
const ModConstructor = await
|
|
5148
|
+
export async function newRestSupportMeasureFromImageParameters(properties: __esri.MeasureFromImageParametersProperties): Promise<__esri.MeasureFromImageParameters> {
|
|
5149
|
+
const ModConstructor = await importRestSupportMeasureFromImageParameters();
|
|
4916
5150
|
return new ModConstructor(properties);
|
|
4917
5151
|
}
|
|
4918
5152
|
|
|
4919
|
-
export async function
|
|
5153
|
+
export async function importRestSupportMeasureLengthFromImageResult(): Promise<typeof __esri.MeasureLengthFromImageResult> {
|
|
4920
5154
|
if (isAMD) {
|
|
4921
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
5155
|
+
return await window.$arcgis.import("esri/rest/support/MeasureLengthFromImageResult");
|
|
4922
5156
|
}
|
|
4923
|
-
const module = await import("@arcgis/core/rest/support/
|
|
5157
|
+
const module = await import("@arcgis/core/rest/support/MeasureLengthFromImageResult.js");
|
|
4924
5158
|
return isDefaultModule(module) ? module.default : module;
|
|
4925
5159
|
}
|
|
4926
5160
|
|
|
4927
|
-
export async function
|
|
4928
|
-
const ModConstructor = await
|
|
5161
|
+
export async function newRestSupportMeasureLengthFromImageResult(properties: __esri.MeasureLengthFromImageResultProperties): Promise<__esri.MeasureLengthFromImageResult> {
|
|
5162
|
+
const ModConstructor = await importRestSupportMeasureLengthFromImageResult();
|
|
4929
5163
|
return new ModConstructor(properties);
|
|
4930
5164
|
}
|
|
4931
5165
|
|
|
@@ -6125,6 +6359,19 @@ export async function newViews2dViewState(properties: __esri.ViewStateProperties
|
|
|
6125
6359
|
return new ModConstructor(properties);
|
|
6126
6360
|
}
|
|
6127
6361
|
|
|
6362
|
+
export async function importViews2dSupportHighlightGroup(): Promise<typeof __esri.HighlightGroup> {
|
|
6363
|
+
if (isAMD) {
|
|
6364
|
+
return await window.$arcgis.import("esri/views/2d/support/HighlightGroup");
|
|
6365
|
+
}
|
|
6366
|
+
const module = await import("@arcgis/core/views/2d/support/HighlightGroup.js");
|
|
6367
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6368
|
+
}
|
|
6369
|
+
|
|
6370
|
+
export async function newViews2dSupportHighlightGroup(properties: __esri.HighlightGroupProperties): Promise<__esri.HighlightGroup> {
|
|
6371
|
+
const ModConstructor = await importViews2dSupportHighlightGroup();
|
|
6372
|
+
return new ModConstructor(properties);
|
|
6373
|
+
}
|
|
6374
|
+
|
|
6128
6375
|
export async function importViews3dAnalysisAreaMeasurementAnalysisView3D(): Promise<typeof __esri.AreaMeasurementAnalysisView3D> {
|
|
6129
6376
|
if (isAMD) {
|
|
6130
6377
|
return await window.$arcgis.import("esri/views/3d/analysis/AreaMeasurementAnalysisView3D");
|
|
@@ -6645,6 +6892,19 @@ export async function newViewsLayersFeatureLayerView(properties: __esri.FeatureL
|
|
|
6645
6892
|
return new ModConstructor(properties);
|
|
6646
6893
|
}
|
|
6647
6894
|
|
|
6895
|
+
export async function importViewsLayersGroupLayerView(): Promise<typeof __esri.GroupLayerView> {
|
|
6896
|
+
if (isAMD) {
|
|
6897
|
+
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
6898
|
+
}
|
|
6899
|
+
const module = await import("@arcgis/core/views/layers/GroupLayerView.js");
|
|
6900
|
+
return isDefaultModule(module) ? module.default : module;
|
|
6901
|
+
}
|
|
6902
|
+
|
|
6903
|
+
export async function newViewsLayersGroupLayerView(properties: __esri.GroupLayerViewProperties): Promise<__esri.GroupLayerView> {
|
|
6904
|
+
const ModConstructor = await importViewsLayersGroupLayerView();
|
|
6905
|
+
return new ModConstructor(properties);
|
|
6906
|
+
}
|
|
6907
|
+
|
|
6648
6908
|
export async function importViewsLayersImageryLayerView(): Promise<typeof __esri.ImageryLayerView> {
|
|
6649
6909
|
if (isAMD) {
|
|
6650
6910
|
return await window.$arcgis.import("esri/views/layers/ImageryLayerView");
|
|
@@ -6736,6 +6996,19 @@ export async function newViewsLayersViewshedLayerView(properties: __esri.Viewshe
|
|
|
6736
6996
|
return new ModConstructor(properties);
|
|
6737
6997
|
}
|
|
6738
6998
|
|
|
6999
|
+
export async function importViewsLinkChartView(): Promise<typeof __esri.LinkChartView> {
|
|
7000
|
+
if (isAMD) {
|
|
7001
|
+
return await window.$arcgis.import("esri/views/LinkChartView");
|
|
7002
|
+
}
|
|
7003
|
+
const module = await import("@arcgis/core/views/LinkChartView.js");
|
|
7004
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7005
|
+
}
|
|
7006
|
+
|
|
7007
|
+
export async function newViewsLinkChartView(properties: __esri.LinkChartViewProperties): Promise<__esri.LinkChartView> {
|
|
7008
|
+
const ModConstructor = await importViewsLinkChartView();
|
|
7009
|
+
return new ModConstructor(properties);
|
|
7010
|
+
}
|
|
7011
|
+
|
|
6739
7012
|
export async function importViewsMagnifier(): Promise<typeof __esri.Magnifier> {
|
|
6740
7013
|
if (isAMD) {
|
|
6741
7014
|
return await window.$arcgis.import("esri/views/Magnifier");
|
|
@@ -7126,6 +7399,19 @@ export async function newWebDocument2D(properties: __esri.WebDocument2DPropertie
|
|
|
7126
7399
|
return new ModConstructor(properties);
|
|
7127
7400
|
}
|
|
7128
7401
|
|
|
7402
|
+
export async function importWebLinkChart(): Promise<typeof __esri.WebLinkChart> {
|
|
7403
|
+
if (isAMD) {
|
|
7404
|
+
return await window.$arcgis.import("esri/WebLinkChart");
|
|
7405
|
+
}
|
|
7406
|
+
const module = await import("@arcgis/core/WebLinkChart.js");
|
|
7407
|
+
return isDefaultModule(module) ? module.default : module;
|
|
7408
|
+
}
|
|
7409
|
+
|
|
7410
|
+
export async function newWebLinkChart(properties: __esri.WebLinkChartProperties): Promise<__esri.WebLinkChart> {
|
|
7411
|
+
const ModConstructor = await importWebLinkChart();
|
|
7412
|
+
return new ModConstructor(properties);
|
|
7413
|
+
}
|
|
7414
|
+
|
|
7129
7415
|
export async function importWebMap(): Promise<typeof __esri.WebMap> {
|
|
7130
7416
|
if (isAMD) {
|
|
7131
7417
|
return await window.$arcgis.import("esri/WebMap");
|
|
@@ -8192,6 +8478,32 @@ export async function newWidgetsFeatureFormRelationshipInput(properties: __esri.
|
|
|
8192
8478
|
return new ModConstructor(properties);
|
|
8193
8479
|
}
|
|
8194
8480
|
|
|
8481
|
+
export async function importWidgetsFeatureFormTextElementInput(): Promise<typeof __esri.TextElementInput> {
|
|
8482
|
+
if (isAMD) {
|
|
8483
|
+
return await window.$arcgis.import("esri/widgets/FeatureForm/TextElementInput");
|
|
8484
|
+
}
|
|
8485
|
+
const module = await import("@arcgis/core/widgets/FeatureForm/TextElementInput.js");
|
|
8486
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8487
|
+
}
|
|
8488
|
+
|
|
8489
|
+
export async function newWidgetsFeatureFormTextElementInput(properties: __esri.TextElementInputProperties): Promise<__esri.TextElementInput> {
|
|
8490
|
+
const ModConstructor = await importWidgetsFeatureFormTextElementInput();
|
|
8491
|
+
return new ModConstructor(properties);
|
|
8492
|
+
}
|
|
8493
|
+
|
|
8494
|
+
export async function importWidgetsFeatureFormUtilityNetworkAssociationInput(): Promise<typeof __esri.UtilityNetworkAssociationInput> {
|
|
8495
|
+
if (isAMD) {
|
|
8496
|
+
return await window.$arcgis.import("esri/widgets/FeatureForm/UtilityNetworkAssociationInput");
|
|
8497
|
+
}
|
|
8498
|
+
const module = await import("@arcgis/core/widgets/FeatureForm/UtilityNetworkAssociationInput.js");
|
|
8499
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8500
|
+
}
|
|
8501
|
+
|
|
8502
|
+
export async function newWidgetsFeatureFormUtilityNetworkAssociationInput(properties: __esri.UtilityNetworkAssociationInputProperties): Promise<__esri.UtilityNetworkAssociationInput> {
|
|
8503
|
+
const ModConstructor = await importWidgetsFeatureFormUtilityNetworkAssociationInput();
|
|
8504
|
+
return new ModConstructor(properties);
|
|
8505
|
+
}
|
|
8506
|
+
|
|
8195
8507
|
export async function importWidgetsFeatures(): Promise<typeof __esri.Features> {
|
|
8196
8508
|
if (isAMD) {
|
|
8197
8509
|
return await window.$arcgis.import("esri/widgets/Features");
|
|
@@ -8400,6 +8712,32 @@ export async function newWidgetsFeatureTableSupportFieldColumnTemplate(propertie
|
|
|
8400
8712
|
return new ModConstructor(properties);
|
|
8401
8713
|
}
|
|
8402
8714
|
|
|
8715
|
+
export async function importWidgetsFeatureTableSupportAttachmentsColumnTemplate(): Promise<typeof __esri.AttachmentsColumnTemplate> {
|
|
8716
|
+
if (isAMD) {
|
|
8717
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/AttachmentsColumnTemplate");
|
|
8718
|
+
}
|
|
8719
|
+
const module = await import("@arcgis/core/widgets/FeatureTable/support/AttachmentsColumnTemplate.js");
|
|
8720
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8721
|
+
}
|
|
8722
|
+
|
|
8723
|
+
export async function newWidgetsFeatureTableSupportAttachmentsColumnTemplate(properties: __esri.AttachmentsColumnTemplateProperties): Promise<__esri.AttachmentsColumnTemplate> {
|
|
8724
|
+
const ModConstructor = await importWidgetsFeatureTableSupportAttachmentsColumnTemplate();
|
|
8725
|
+
return new ModConstructor(properties);
|
|
8726
|
+
}
|
|
8727
|
+
|
|
8728
|
+
export async function importWidgetsFeatureTableSupportRelationshipColumnTemplate(): Promise<typeof __esri.RelationshipColumnTemplate> {
|
|
8729
|
+
if (isAMD) {
|
|
8730
|
+
return await window.$arcgis.import("esri/widgets/FeatureTable/support/RelationshipColumnTemplate");
|
|
8731
|
+
}
|
|
8732
|
+
const module = await import("@arcgis/core/widgets/FeatureTable/support/RelationshipColumnTemplate.js");
|
|
8733
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8734
|
+
}
|
|
8735
|
+
|
|
8736
|
+
export async function newWidgetsFeatureTableSupportRelationshipColumnTemplate(properties: __esri.RelationshipColumnTemplateProperties): Promise<__esri.RelationshipColumnTemplate> {
|
|
8737
|
+
const ModConstructor = await importWidgetsFeatureTableSupportRelationshipColumnTemplate();
|
|
8738
|
+
return new ModConstructor(properties);
|
|
8739
|
+
}
|
|
8740
|
+
|
|
8403
8741
|
export async function importWidgetsFeatureTableSupportGroupColumnTemplate(): Promise<typeof __esri.GroupColumnTemplate> {
|
|
8404
8742
|
if (isAMD) {
|
|
8405
8743
|
return await window.$arcgis.import("esri/widgets/FeatureTable/support/GroupColumnTemplate");
|
|
@@ -9648,6 +9986,19 @@ export async function newWidgetsUtilityNetworkTrace(properties: __esri.UtilityNe
|
|
|
9648
9986
|
return new ModConstructor(properties);
|
|
9649
9987
|
}
|
|
9650
9988
|
|
|
9989
|
+
export async function importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel(): Promise<typeof __esri.UtilityNetworkTraceAnalysisViewModel> {
|
|
9990
|
+
if (isAMD) {
|
|
9991
|
+
return await window.$arcgis.import("esri/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel");
|
|
9992
|
+
}
|
|
9993
|
+
const module = await import("@arcgis/core/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel.js");
|
|
9994
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9995
|
+
}
|
|
9996
|
+
|
|
9997
|
+
export async function newWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel(properties: any): Promise<__esri.UtilityNetworkTraceAnalysisViewModel> {
|
|
9998
|
+
const ModConstructor = await importWidgetsUtilityNetworkTraceAnalysisUtilityNetworkTraceAnalysisViewModel();
|
|
9999
|
+
return new ModConstructor(properties);
|
|
10000
|
+
}
|
|
10001
|
+
|
|
9651
10002
|
export async function importWidgetsUtilityNetworkTraceUtilityNetworkTraceViewModel(): Promise<typeof __esri.UtilityNetworkTraceViewModel> {
|
|
9652
10003
|
if (isAMD) {
|
|
9653
10004
|
return await window.$arcgis.import("esri/widgets/UtilityNetworkTrace/UtilityNetworkTraceViewModel");
|
|
@@ -9944,27 +10295,19 @@ export async function importCoreWorkers(): Promise<typeof __esri.workers> {
|
|
|
9944
10295
|
return isDefaultModule(module) ? module.default : module;
|
|
9945
10296
|
}
|
|
9946
10297
|
|
|
9947
|
-
export async function
|
|
9948
|
-
if (isAMD) {
|
|
9949
|
-
return await window.$arcgis.import("esri/form/elements/inputs/attachments/support/inputs");
|
|
9950
|
-
}
|
|
9951
|
-
const module = await import("@arcgis/core/form/elements/inputs/attachments/support/inputs.js");
|
|
9952
|
-
return isDefaultModule(module) ? module.default : module;
|
|
9953
|
-
}
|
|
9954
|
-
|
|
9955
|
-
export async function importFormElementsSupportInputs(): Promise<typeof __esri.supportInputs> {
|
|
10298
|
+
export async function importFormElementsInputs(): Promise<typeof __esri.inputs> {
|
|
9956
10299
|
if (isAMD) {
|
|
9957
|
-
return await window.$arcgis.import("esri/form/elements/
|
|
10300
|
+
return await window.$arcgis.import("esri/form/elements/inputs");
|
|
9958
10301
|
}
|
|
9959
|
-
const module = await import("@arcgis/core/form/elements/
|
|
10302
|
+
const module = await import("@arcgis/core/form/elements/inputs.js");
|
|
9960
10303
|
return isDefaultModule(module) ? module.default : module;
|
|
9961
10304
|
}
|
|
9962
10305
|
|
|
9963
|
-
export async function
|
|
10306
|
+
export async function importFormElements(): Promise<typeof __esri.elements> {
|
|
9964
10307
|
if (isAMD) {
|
|
9965
|
-
return await window.$arcgis.import("esri/form/
|
|
10308
|
+
return await window.$arcgis.import("esri/form/elements");
|
|
9966
10309
|
}
|
|
9967
|
-
const module = await import("@arcgis/core/form/
|
|
10310
|
+
const module = await import("@arcgis/core/form/elements.js");
|
|
9968
10311
|
return isDefaultModule(module) ? module.default : module;
|
|
9969
10312
|
}
|
|
9970
10313
|
|
|
@@ -10008,6 +10351,54 @@ export async function importGeometryProjection(): Promise<typeof __esri.projecti
|
|
|
10008
10351
|
return isDefaultModule(module) ? module.default : module;
|
|
10009
10352
|
}
|
|
10010
10353
|
|
|
10354
|
+
export async function importGeometryOperatorsAffineTransformOperator(): Promise<typeof __esri.affineTransformOperator> {
|
|
10355
|
+
if (isAMD) {
|
|
10356
|
+
return await window.$arcgis.import("esri/geometry/operators/affineTransformOperator");
|
|
10357
|
+
}
|
|
10358
|
+
const module = await import("@arcgis/core/geometry/operators/affineTransformOperator.js");
|
|
10359
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10360
|
+
}
|
|
10361
|
+
|
|
10362
|
+
export async function importGeometryOperatorsAlphaShapeOperator(): Promise<typeof __esri.alphaShapeOperator> {
|
|
10363
|
+
if (isAMD) {
|
|
10364
|
+
return await window.$arcgis.import("esri/geometry/operators/alphaShapeOperator");
|
|
10365
|
+
}
|
|
10366
|
+
const module = await import("@arcgis/core/geometry/operators/alphaShapeOperator.js");
|
|
10367
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10368
|
+
}
|
|
10369
|
+
|
|
10370
|
+
export async function importGeometryOperatorsAreaOperator(): Promise<typeof __esri.areaOperator> {
|
|
10371
|
+
if (isAMD) {
|
|
10372
|
+
return await window.$arcgis.import("esri/geometry/operators/areaOperator");
|
|
10373
|
+
}
|
|
10374
|
+
const module = await import("@arcgis/core/geometry/operators/areaOperator.js");
|
|
10375
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10376
|
+
}
|
|
10377
|
+
|
|
10378
|
+
export async function importGeometryOperatorsAutoCompleteOperator(): Promise<typeof __esri.autoCompleteOperator> {
|
|
10379
|
+
if (isAMD) {
|
|
10380
|
+
return await window.$arcgis.import("esri/geometry/operators/autoCompleteOperator");
|
|
10381
|
+
}
|
|
10382
|
+
const module = await import("@arcgis/core/geometry/operators/autoCompleteOperator.js");
|
|
10383
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10384
|
+
}
|
|
10385
|
+
|
|
10386
|
+
export async function importGeometryOperatorsBoundaryOperator(): Promise<typeof __esri.boundaryOperator> {
|
|
10387
|
+
if (isAMD) {
|
|
10388
|
+
return await window.$arcgis.import("esri/geometry/operators/boundaryOperator");
|
|
10389
|
+
}
|
|
10390
|
+
const module = await import("@arcgis/core/geometry/operators/boundaryOperator.js");
|
|
10391
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10392
|
+
}
|
|
10393
|
+
|
|
10394
|
+
export async function importGeometryOperatorsBufferOperator(): Promise<typeof __esri.bufferOperator> {
|
|
10395
|
+
if (isAMD) {
|
|
10396
|
+
return await window.$arcgis.import("esri/geometry/operators/bufferOperator");
|
|
10397
|
+
}
|
|
10398
|
+
const module = await import("@arcgis/core/geometry/operators/bufferOperator.js");
|
|
10399
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10400
|
+
}
|
|
10401
|
+
|
|
10011
10402
|
export async function importGeometryOperatorsCentroidOperator(): Promise<typeof __esri.centroidOperator> {
|
|
10012
10403
|
if (isAMD) {
|
|
10013
10404
|
return await window.$arcgis.import("esri/geometry/operators/centroidOperator");
|
|
@@ -10024,19 +10415,19 @@ export async function importGeometryOperatorsClipOperator(): Promise<typeof __es
|
|
|
10024
10415
|
return isDefaultModule(module) ? module.default : module;
|
|
10025
10416
|
}
|
|
10026
10417
|
|
|
10027
|
-
export async function
|
|
10418
|
+
export async function importGeometryOperatorsContainsOperator(): Promise<typeof __esri.containsOperator> {
|
|
10028
10419
|
if (isAMD) {
|
|
10029
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10420
|
+
return await window.$arcgis.import("esri/geometry/operators/containsOperator");
|
|
10030
10421
|
}
|
|
10031
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
10422
|
+
const module = await import("@arcgis/core/geometry/operators/containsOperator.js");
|
|
10032
10423
|
return isDefaultModule(module) ? module.default : module;
|
|
10033
10424
|
}
|
|
10034
10425
|
|
|
10035
|
-
export async function
|
|
10426
|
+
export async function importGeometryOperatorsConvexHullOperator(): Promise<typeof __esri.convexHullOperator> {
|
|
10036
10427
|
if (isAMD) {
|
|
10037
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10428
|
+
return await window.$arcgis.import("esri/geometry/operators/convexHullOperator");
|
|
10038
10429
|
}
|
|
10039
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
10430
|
+
const module = await import("@arcgis/core/geometry/operators/convexHullOperator.js");
|
|
10040
10431
|
return isDefaultModule(module) ? module.default : module;
|
|
10041
10432
|
}
|
|
10042
10433
|
|
|
@@ -10048,6 +10439,14 @@ export async function importGeometryOperatorsCrossesOperator(): Promise<typeof _
|
|
|
10048
10439
|
return isDefaultModule(module) ? module.default : module;
|
|
10049
10440
|
}
|
|
10050
10441
|
|
|
10442
|
+
export async function importGeometryOperatorsCutOperator(): Promise<typeof __esri.cutOperator> {
|
|
10443
|
+
if (isAMD) {
|
|
10444
|
+
return await window.$arcgis.import("esri/geometry/operators/cutOperator");
|
|
10445
|
+
}
|
|
10446
|
+
const module = await import("@arcgis/core/geometry/operators/cutOperator.js");
|
|
10447
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10448
|
+
}
|
|
10449
|
+
|
|
10051
10450
|
export async function importGeometryOperatorsDensifyOperator(): Promise<typeof __esri.densifyOperator> {
|
|
10052
10451
|
if (isAMD) {
|
|
10053
10452
|
return await window.$arcgis.import("esri/geometry/operators/densifyOperator");
|
|
@@ -10064,19 +10463,19 @@ export async function importGeometryOperatorsDifferenceOperator(): Promise<typeo
|
|
|
10064
10463
|
return isDefaultModule(module) ? module.default : module;
|
|
10065
10464
|
}
|
|
10066
10465
|
|
|
10067
|
-
export async function
|
|
10466
|
+
export async function importGeometryOperatorsDisjointOperator(): Promise<typeof __esri.disjointOperator> {
|
|
10068
10467
|
if (isAMD) {
|
|
10069
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10468
|
+
return await window.$arcgis.import("esri/geometry/operators/disjointOperator");
|
|
10070
10469
|
}
|
|
10071
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
10470
|
+
const module = await import("@arcgis/core/geometry/operators/disjointOperator.js");
|
|
10072
10471
|
return isDefaultModule(module) ? module.default : module;
|
|
10073
10472
|
}
|
|
10074
10473
|
|
|
10075
|
-
export async function
|
|
10474
|
+
export async function importGeometryOperatorsDistanceOperator(): Promise<typeof __esri.distanceOperator> {
|
|
10076
10475
|
if (isAMD) {
|
|
10077
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10476
|
+
return await window.$arcgis.import("esri/geometry/operators/distanceOperator");
|
|
10078
10477
|
}
|
|
10079
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
10478
|
+
const module = await import("@arcgis/core/geometry/operators/distanceOperator.js");
|
|
10080
10479
|
return isDefaultModule(module) ? module.default : module;
|
|
10081
10480
|
}
|
|
10082
10481
|
|
|
@@ -10088,6 +10487,22 @@ export async function importGeometryOperatorsEqualsOperator(): Promise<typeof __
|
|
|
10088
10487
|
return isDefaultModule(module) ? module.default : module;
|
|
10089
10488
|
}
|
|
10090
10489
|
|
|
10490
|
+
export async function importGeometryOperatorsExtendOperator(): Promise<typeof __esri.extendOperator> {
|
|
10491
|
+
if (isAMD) {
|
|
10492
|
+
return await window.$arcgis.import("esri/geometry/operators/extendOperator");
|
|
10493
|
+
}
|
|
10494
|
+
const module = await import("@arcgis/core/geometry/operators/extendOperator.js");
|
|
10495
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10496
|
+
}
|
|
10497
|
+
|
|
10498
|
+
export async function importGeometryOperatorsGeneralizeOperator(): Promise<typeof __esri.generalizeOperator> {
|
|
10499
|
+
if (isAMD) {
|
|
10500
|
+
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
10501
|
+
}
|
|
10502
|
+
const module = await import("@arcgis/core/geometry/operators/generalizeOperator.js");
|
|
10503
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10504
|
+
}
|
|
10505
|
+
|
|
10091
10506
|
export async function importGeometryOperatorsGeodesicBufferOperator(): Promise<typeof __esri.geodesicBufferOperator> {
|
|
10092
10507
|
if (isAMD) {
|
|
10093
10508
|
return await window.$arcgis.import("esri/geometry/operators/geodesicBufferOperator");
|
|
@@ -10096,6 +10511,22 @@ export async function importGeometryOperatorsGeodesicBufferOperator(): Promise<t
|
|
|
10096
10511
|
return isDefaultModule(module) ? module.default : module;
|
|
10097
10512
|
}
|
|
10098
10513
|
|
|
10514
|
+
export async function importGeometryOperatorsGeodesicProximityOperator(): Promise<typeof __esri.geodesicProximityOperator> {
|
|
10515
|
+
if (isAMD) {
|
|
10516
|
+
return await window.$arcgis.import("esri/geometry/operators/geodesicProximityOperator");
|
|
10517
|
+
}
|
|
10518
|
+
const module = await import("@arcgis/core/geometry/operators/geodesicProximityOperator.js");
|
|
10519
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10520
|
+
}
|
|
10521
|
+
|
|
10522
|
+
export async function importGeometryOperatorsGeodeticAreaOperator(): Promise<typeof __esri.geodeticAreaOperator> {
|
|
10523
|
+
if (isAMD) {
|
|
10524
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticAreaOperator");
|
|
10525
|
+
}
|
|
10526
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticAreaOperator.js");
|
|
10527
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10528
|
+
}
|
|
10529
|
+
|
|
10099
10530
|
export async function importGeometryOperatorsGeodeticDensifyOperator(): Promise<typeof __esri.geodeticDensifyOperator> {
|
|
10100
10531
|
if (isAMD) {
|
|
10101
10532
|
return await window.$arcgis.import("esri/geometry/operators/geodeticDensifyOperator");
|
|
@@ -10112,11 +10543,27 @@ export async function importGeometryOperatorsGeodeticDistanceOperator(): Promise
|
|
|
10112
10543
|
return isDefaultModule(module) ? module.default : module;
|
|
10113
10544
|
}
|
|
10114
10545
|
|
|
10115
|
-
export async function
|
|
10546
|
+
export async function importGeometryOperatorsGeodeticLengthOperator(): Promise<typeof __esri.geodeticLengthOperator> {
|
|
10116
10547
|
if (isAMD) {
|
|
10117
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10548
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticLengthOperator");
|
|
10118
10549
|
}
|
|
10119
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
10550
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticLengthOperator.js");
|
|
10551
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10552
|
+
}
|
|
10553
|
+
|
|
10554
|
+
export async function importGeometryOperatorsGraphicBufferOperator(): Promise<typeof __esri.graphicBufferOperator> {
|
|
10555
|
+
if (isAMD) {
|
|
10556
|
+
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
10557
|
+
}
|
|
10558
|
+
const module = await import("@arcgis/core/geometry/operators/graphicBufferOperator.js");
|
|
10559
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10560
|
+
}
|
|
10561
|
+
|
|
10562
|
+
export async function importGeometryOperatorsIntegrateOperator(): Promise<typeof __esri.integrateOperator> {
|
|
10563
|
+
if (isAMD) {
|
|
10564
|
+
return await window.$arcgis.import("esri/geometry/operators/integrateOperator");
|
|
10565
|
+
}
|
|
10566
|
+
const module = await import("@arcgis/core/geometry/operators/integrateOperator.js");
|
|
10120
10567
|
return isDefaultModule(module) ? module.default : module;
|
|
10121
10568
|
}
|
|
10122
10569
|
|
|
@@ -10136,6 +10583,70 @@ export async function importGeometryOperatorsIntersectsOperator(): Promise<typeo
|
|
|
10136
10583
|
return isDefaultModule(module) ? module.default : module;
|
|
10137
10584
|
}
|
|
10138
10585
|
|
|
10586
|
+
export async function importGeometryOperatorsIsNearOperator(): Promise<typeof __esri.isNearOperator> {
|
|
10587
|
+
if (isAMD) {
|
|
10588
|
+
return await window.$arcgis.import("esri/geometry/operators/isNearOperator");
|
|
10589
|
+
}
|
|
10590
|
+
const module = await import("@arcgis/core/geometry/operators/isNearOperator.js");
|
|
10591
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10592
|
+
}
|
|
10593
|
+
|
|
10594
|
+
export async function importGeometryOperatorsLabelPointOperator(): Promise<typeof __esri.labelPointOperator> {
|
|
10595
|
+
if (isAMD) {
|
|
10596
|
+
return await window.$arcgis.import("esri/geometry/operators/labelPointOperator");
|
|
10597
|
+
}
|
|
10598
|
+
const module = await import("@arcgis/core/geometry/operators/labelPointOperator.js");
|
|
10599
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10600
|
+
}
|
|
10601
|
+
|
|
10602
|
+
export async function importGeometryOperatorsLengthOperator(): Promise<typeof __esri.lengthOperator> {
|
|
10603
|
+
if (isAMD) {
|
|
10604
|
+
return await window.$arcgis.import("esri/geometry/operators/lengthOperator");
|
|
10605
|
+
}
|
|
10606
|
+
const module = await import("@arcgis/core/geometry/operators/lengthOperator.js");
|
|
10607
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10608
|
+
}
|
|
10609
|
+
|
|
10610
|
+
export async function importGeometryOperatorsLinesToPolygonsOperator(): Promise<typeof __esri.linesToPolygonsOperator> {
|
|
10611
|
+
if (isAMD) {
|
|
10612
|
+
return await window.$arcgis.import("esri/geometry/operators/linesToPolygonsOperator");
|
|
10613
|
+
}
|
|
10614
|
+
const module = await import("@arcgis/core/geometry/operators/linesToPolygonsOperator.js");
|
|
10615
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10616
|
+
}
|
|
10617
|
+
|
|
10618
|
+
export async function importGeometryOperatorsLocateBetweenOperator(): Promise<typeof __esri.locateBetweenOperator> {
|
|
10619
|
+
if (isAMD) {
|
|
10620
|
+
return await window.$arcgis.import("esri/geometry/operators/locateBetweenOperator");
|
|
10621
|
+
}
|
|
10622
|
+
const module = await import("@arcgis/core/geometry/operators/locateBetweenOperator.js");
|
|
10623
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10624
|
+
}
|
|
10625
|
+
|
|
10626
|
+
export async function importGeometryOperatorsMinimumBoundingCircleOperator(): Promise<typeof __esri.minimumBoundingCircleOperator> {
|
|
10627
|
+
if (isAMD) {
|
|
10628
|
+
return await window.$arcgis.import("esri/geometry/operators/minimumBoundingCircleOperator");
|
|
10629
|
+
}
|
|
10630
|
+
const module = await import("@arcgis/core/geometry/operators/minimumBoundingCircleOperator.js");
|
|
10631
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10632
|
+
}
|
|
10633
|
+
|
|
10634
|
+
export async function importGeometryOperatorsMultiPartToSinglePartOperator(): Promise<typeof __esri.multiPartToSinglePartOperator> {
|
|
10635
|
+
if (isAMD) {
|
|
10636
|
+
return await window.$arcgis.import("esri/geometry/operators/multiPartToSinglePartOperator");
|
|
10637
|
+
}
|
|
10638
|
+
const module = await import("@arcgis/core/geometry/operators/multiPartToSinglePartOperator.js");
|
|
10639
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10640
|
+
}
|
|
10641
|
+
|
|
10642
|
+
export async function importGeometryOperatorsOffsetOperator(): Promise<typeof __esri.offsetOperator> {
|
|
10643
|
+
if (isAMD) {
|
|
10644
|
+
return await window.$arcgis.import("esri/geometry/operators/offsetOperator");
|
|
10645
|
+
}
|
|
10646
|
+
const module = await import("@arcgis/core/geometry/operators/offsetOperator.js");
|
|
10647
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10648
|
+
}
|
|
10649
|
+
|
|
10139
10650
|
export async function importGeometryOperatorsOverlapsOperator(): Promise<typeof __esri.overlapsOperator> {
|
|
10140
10651
|
if (isAMD) {
|
|
10141
10652
|
return await window.$arcgis.import("esri/geometry/operators/overlapsOperator");
|
|
@@ -10144,6 +10655,22 @@ export async function importGeometryOperatorsOverlapsOperator(): Promise<typeof
|
|
|
10144
10655
|
return isDefaultModule(module) ? module.default : module;
|
|
10145
10656
|
}
|
|
10146
10657
|
|
|
10658
|
+
export async function importGeometryOperatorsPolygonOverlayOperator(): Promise<typeof __esri.polygonOverlayOperator> {
|
|
10659
|
+
if (isAMD) {
|
|
10660
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonOverlayOperator");
|
|
10661
|
+
}
|
|
10662
|
+
const module = await import("@arcgis/core/geometry/operators/polygonOverlayOperator.js");
|
|
10663
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10664
|
+
}
|
|
10665
|
+
|
|
10666
|
+
export async function importGeometryOperatorsPolygonSlicerOperator(): Promise<typeof __esri.polygonSlicerOperator> {
|
|
10667
|
+
if (isAMD) {
|
|
10668
|
+
return await window.$arcgis.import("esri/geometry/operators/polygonSlicerOperator");
|
|
10669
|
+
}
|
|
10670
|
+
const module = await import("@arcgis/core/geometry/operators/polygonSlicerOperator.js");
|
|
10671
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10672
|
+
}
|
|
10673
|
+
|
|
10147
10674
|
export async function importGeometryOperatorsProximityOperator(): Promise<typeof __esri.proximityOperator> {
|
|
10148
10675
|
if (isAMD) {
|
|
10149
10676
|
return await window.$arcgis.import("esri/geometry/operators/proximityOperator");
|
|
@@ -10160,6 +10687,14 @@ export async function importGeometryOperatorsRelateOperator(): Promise<typeof __
|
|
|
10160
10687
|
return isDefaultModule(module) ? module.default : module;
|
|
10161
10688
|
}
|
|
10162
10689
|
|
|
10690
|
+
export async function importGeometryOperatorsReshapeOperator(): Promise<typeof __esri.reshapeOperator> {
|
|
10691
|
+
if (isAMD) {
|
|
10692
|
+
return await window.$arcgis.import("esri/geometry/operators/reshapeOperator");
|
|
10693
|
+
}
|
|
10694
|
+
const module = await import("@arcgis/core/geometry/operators/reshapeOperator.js");
|
|
10695
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10696
|
+
}
|
|
10697
|
+
|
|
10163
10698
|
export async function importGeometryOperatorsSimplifyOperator(): Promise<typeof __esri.simplifyOperator> {
|
|
10164
10699
|
if (isAMD) {
|
|
10165
10700
|
return await window.$arcgis.import("esri/geometry/operators/simplifyOperator");
|
|
@@ -10168,6 +10703,14 @@ export async function importGeometryOperatorsSimplifyOperator(): Promise<typeof
|
|
|
10168
10703
|
return isDefaultModule(module) ? module.default : module;
|
|
10169
10704
|
}
|
|
10170
10705
|
|
|
10706
|
+
export async function importGeometryOperatorsSymmetricDifferenceOperator(): Promise<typeof __esri.symmetricDifferenceOperator> {
|
|
10707
|
+
if (isAMD) {
|
|
10708
|
+
return await window.$arcgis.import("esri/geometry/operators/symmetricDifferenceOperator");
|
|
10709
|
+
}
|
|
10710
|
+
const module = await import("@arcgis/core/geometry/operators/symmetricDifferenceOperator.js");
|
|
10711
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10712
|
+
}
|
|
10713
|
+
|
|
10171
10714
|
export async function importGeometryOperatorsTouchesOperator(): Promise<typeof __esri.touchesOperator> {
|
|
10172
10715
|
if (isAMD) {
|
|
10173
10716
|
return await window.$arcgis.import("esri/geometry/operators/touchesOperator");
|
|
@@ -10256,6 +10799,22 @@ export async function importLayersCatalogCatalogUtils(): Promise<typeof __esri.c
|
|
|
10256
10799
|
return isDefaultModule(module) ? module.default : module;
|
|
10257
10800
|
}
|
|
10258
10801
|
|
|
10802
|
+
export async function importLayersKnowledgeGraphCypherUtils(): Promise<typeof __esri.cypherUtils> {
|
|
10803
|
+
if (isAMD) {
|
|
10804
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/cypherUtils");
|
|
10805
|
+
}
|
|
10806
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/cypherUtils.js");
|
|
10807
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10808
|
+
}
|
|
10809
|
+
|
|
10810
|
+
export async function importLayersKnowledgeGraphSupportUtils(): Promise<typeof __esri.supportUtils> {
|
|
10811
|
+
if (isAMD) {
|
|
10812
|
+
return await window.$arcgis.import("esri/layers/knowledgeGraph/supportUtils");
|
|
10813
|
+
}
|
|
10814
|
+
const module = await import("@arcgis/core/layers/knowledgeGraph/supportUtils.js");
|
|
10815
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10816
|
+
}
|
|
10817
|
+
|
|
10259
10818
|
export async function importLayersOgcWfsUtils(): Promise<typeof __esri.wfsUtils> {
|
|
10260
10819
|
if (isAMD) {
|
|
10261
10820
|
return await window.$arcgis.import("esri/layers/ogc/wfsUtils");
|
|
@@ -10264,6 +10823,30 @@ export async function importLayersOgcWfsUtils(): Promise<typeof __esri.wfsUtils>
|
|
|
10264
10823
|
return isDefaultModule(module) ? module.default : module;
|
|
10265
10824
|
}
|
|
10266
10825
|
|
|
10826
|
+
export async function importLayersOgcWcsUtils(): Promise<typeof __esri.wcsUtils> {
|
|
10827
|
+
if (isAMD) {
|
|
10828
|
+
return await window.$arcgis.import("esri/layers/ogc/wcsUtils");
|
|
10829
|
+
}
|
|
10830
|
+
const module = await import("@arcgis/core/layers/ogc/wcsUtils.js");
|
|
10831
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10832
|
+
}
|
|
10833
|
+
|
|
10834
|
+
export async function importLayersOrientedImageryTransformationsWorldToImage(): Promise<typeof __esri.worldToImage> {
|
|
10835
|
+
if (isAMD) {
|
|
10836
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/worldToImage");
|
|
10837
|
+
}
|
|
10838
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/worldToImage.js");
|
|
10839
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10840
|
+
}
|
|
10841
|
+
|
|
10842
|
+
export async function importLayersOrientedImageryTransformationsImageToWorld(): Promise<typeof __esri.imageToWorld> {
|
|
10843
|
+
if (isAMD) {
|
|
10844
|
+
return await window.$arcgis.import("esri/layers/orientedImagery/transformations/imageToWorld");
|
|
10845
|
+
}
|
|
10846
|
+
const module = await import("@arcgis/core/layers/orientedImagery/transformations/imageToWorld.js");
|
|
10847
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10848
|
+
}
|
|
10849
|
+
|
|
10267
10850
|
export async function importLayersSupportArcadeUtils(): Promise<typeof __esri.arcadeUtils> {
|
|
10268
10851
|
if (isAMD) {
|
|
10269
10852
|
return await window.$arcgis.import("esri/layers/support/arcadeUtils");
|
|
@@ -10680,7 +11263,7 @@ export async function importSmartMappingRasterSupportColorRamps(): Promise<typeo
|
|
|
10680
11263
|
return isDefaultModule(module) ? module.default : module;
|
|
10681
11264
|
}
|
|
10682
11265
|
|
|
10683
|
-
export async function importSmartMappingRasterSupportUtils(): Promise<typeof __esri.
|
|
11266
|
+
export async function importSmartMappingRasterSupportUtils(): Promise<typeof __esri.rasterSupportUtils> {
|
|
10684
11267
|
if (isAMD) {
|
|
10685
11268
|
return await window.$arcgis.import("esri/smartMapping/raster/support/utils");
|
|
10686
11269
|
}
|
|
@@ -10776,6 +11359,14 @@ export async function importSmartMappingRenderersUnivariateColorSize(): Promise<
|
|
|
10776
11359
|
return isDefaultModule(module) ? module.default : module;
|
|
10777
11360
|
}
|
|
10778
11361
|
|
|
11362
|
+
export async function importSmartMappingRenderersSupportRendererUtils(): Promise<typeof __esri.rendererUtils> {
|
|
11363
|
+
if (isAMD) {
|
|
11364
|
+
return await window.$arcgis.import("esri/smartMapping/renderers/support/rendererUtils");
|
|
11365
|
+
}
|
|
11366
|
+
const module = await import("@arcgis/core/smartMapping/renderers/support/rendererUtils.js");
|
|
11367
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11368
|
+
}
|
|
11369
|
+
|
|
10779
11370
|
export async function importSmartMappingStatisticsClassBreaks(): Promise<typeof __esri.statisticsClassBreaks> {
|
|
10780
11371
|
if (isAMD) {
|
|
10781
11372
|
return await window.$arcgis.import("esri/smartMapping/statistics/classBreaks");
|
|
@@ -10992,11 +11583,11 @@ export async function importSymbolsSupportSymbolUtils(): Promise<typeof __esri.s
|
|
|
10992
11583
|
return isDefaultModule(module) ? module.default : module;
|
|
10993
11584
|
}
|
|
10994
11585
|
|
|
10995
|
-
export async function
|
|
11586
|
+
export async function importTablesElements(): Promise<typeof __esri.tablesElements> {
|
|
10996
11587
|
if (isAMD) {
|
|
10997
|
-
return await window.$arcgis.import("esri/tables/
|
|
11588
|
+
return await window.$arcgis.import("esri/tables/elements");
|
|
10998
11589
|
}
|
|
10999
|
-
const module = await import("@arcgis/core/tables/
|
|
11590
|
+
const module = await import("@arcgis/core/tables/elements.js");
|
|
11000
11591
|
return isDefaultModule(module) ? module.default : module;
|
|
11001
11592
|
}
|
|
11002
11593
|
|
|
@@ -11016,14 +11607,6 @@ export async function importVersionManagementVersionAdaptersUtils(): Promise<typ
|
|
|
11016
11607
|
return isDefaultModule(module) ? module.default : module;
|
|
11017
11608
|
}
|
|
11018
11609
|
|
|
11019
|
-
export async function importViews3dExternalRenderers(): Promise<typeof __esri.externalRenderers> {
|
|
11020
|
-
if (isAMD) {
|
|
11021
|
-
return await window.$arcgis.import("esri/views/3d/externalRenderers");
|
|
11022
|
-
}
|
|
11023
|
-
const module = await import("@arcgis/core/views/3d/externalRenderers.js");
|
|
11024
|
-
return isDefaultModule(module) ? module.default : module;
|
|
11025
|
-
}
|
|
11026
|
-
|
|
11027
11610
|
export async function importViews3dWebglManagedFBO(): Promise<typeof __esri.ManagedFBO> {
|
|
11028
11611
|
if (isAMD) {
|
|
11029
11612
|
return await window.$arcgis.import("esri/views/3d/webgl/ManagedFBO");
|
|
@@ -11088,6 +11671,14 @@ export async function importWidgetsBatchAttributeFormBatchAttributeFormViewModel
|
|
|
11088
11671
|
return isDefaultModule(module) ? module.default : module;
|
|
11089
11672
|
}
|
|
11090
11673
|
|
|
11674
|
+
export async function importWidgetsFeatureFeatureUtilityNetworkAssociationsFeatureUtilityNetworkAssociationsViewModel(): Promise<typeof __esri.FeatureUtilityNetworkAssociationsViewModel> {
|
|
11675
|
+
if (isAMD) {
|
|
11676
|
+
return await window.$arcgis.import("esri/widgets/Feature/FeatureUtilityNetworkAssociations/FeatureUtilityNetworkAssociationsViewModel");
|
|
11677
|
+
}
|
|
11678
|
+
const module = await import("@arcgis/core/widgets/Feature/FeatureUtilityNetworkAssociations/FeatureUtilityNetworkAssociationsViewModel.js");
|
|
11679
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11680
|
+
}
|
|
11681
|
+
|
|
11091
11682
|
export async function importWidgetsSmartMappingSupportUtils(): Promise<typeof __esri.smartMappingSupportUtils> {
|
|
11092
11683
|
if (isAMD) {
|
|
11093
11684
|
return await window.$arcgis.import("esri/widgets/smartMapping/support/utils");
|
|
@@ -11104,83 +11695,99 @@ export async function importWidgetsSupportWidget(): Promise<typeof __esri.widget
|
|
|
11104
11695
|
return isDefaultModule(module) ? module.default : module;
|
|
11105
11696
|
}
|
|
11106
11697
|
|
|
11107
|
-
export async function
|
|
11698
|
+
export async function importApplicationsComponentsBasemapUtils(): Promise<typeof __esri.basemapUtils> {
|
|
11108
11699
|
if (isAMD) {
|
|
11109
|
-
return await window.$arcgis.import("esri/applications/
|
|
11700
|
+
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
11110
11701
|
}
|
|
11111
|
-
const module = await import("@arcgis/core/applications/
|
|
11702
|
+
const module = await import("@arcgis/core/applications/Components/basemapUtils.js");
|
|
11112
11703
|
return isDefaultModule(module) ? module.default : module;
|
|
11113
11704
|
}
|
|
11114
11705
|
|
|
11115
|
-
export async function
|
|
11706
|
+
export async function importApplicationsComponentsCollectionFlattener(): Promise<any> {
|
|
11116
11707
|
if (isAMD) {
|
|
11117
|
-
return await window.$arcgis.import("esri/applications/
|
|
11708
|
+
return await window.$arcgis.import("esri/applications/Components/CollectionFlattener");
|
|
11118
11709
|
}
|
|
11119
|
-
const module = await import("@arcgis/core/applications/
|
|
11710
|
+
const module = await import("@arcgis/core/applications/Components/CollectionFlattener.js");
|
|
11120
11711
|
return isDefaultModule(module) ? module.default : module;
|
|
11121
11712
|
}
|
|
11122
11713
|
|
|
11123
|
-
export async function
|
|
11714
|
+
export async function importApplicationsComponentsDrawUtils(): Promise<typeof __esri.drawUtils> {
|
|
11124
11715
|
if (isAMD) {
|
|
11125
|
-
return await window.$arcgis.import("esri/applications/
|
|
11716
|
+
return await window.$arcgis.import("esri/applications/Components/drawUtils");
|
|
11126
11717
|
}
|
|
11127
|
-
const module = await import("@arcgis/core/applications/
|
|
11718
|
+
const module = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
11128
11719
|
return isDefaultModule(module) ? module.default : module;
|
|
11129
11720
|
}
|
|
11130
11721
|
|
|
11131
|
-
export async function
|
|
11722
|
+
export async function importApplicationsComponentsFontUtils(): Promise<typeof __esri.fontUtils> {
|
|
11132
11723
|
if (isAMD) {
|
|
11133
|
-
return await window.$arcgis.import("esri/applications/
|
|
11724
|
+
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
11134
11725
|
}
|
|
11135
|
-
const module = await import("@arcgis/core/applications/
|
|
11726
|
+
const module = await import("@arcgis/core/applications/Components/fontUtils.js");
|
|
11136
11727
|
return isDefaultModule(module) ? module.default : module;
|
|
11137
11728
|
}
|
|
11138
11729
|
|
|
11139
|
-
export async function
|
|
11730
|
+
export async function importApplicationsComponentsGetDefaultUnits(): Promise<typeof __esri.getDefaultUnits> {
|
|
11140
11731
|
if (isAMD) {
|
|
11141
|
-
return await window.$arcgis.import("esri/applications/
|
|
11732
|
+
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
11142
11733
|
}
|
|
11143
|
-
const module = await import("@arcgis/core/applications/
|
|
11734
|
+
const module = await import("@arcgis/core/applications/Components/getDefaultUnits.js");
|
|
11144
11735
|
return isDefaultModule(module) ? module.default : module;
|
|
11145
11736
|
}
|
|
11146
11737
|
|
|
11147
|
-
export async function
|
|
11738
|
+
export async function importApplicationsComponentsGfxUtils(): Promise<typeof __esri.gfxUtils> {
|
|
11148
11739
|
if (isAMD) {
|
|
11149
|
-
return await window.$arcgis.import("esri/applications/
|
|
11740
|
+
return await window.$arcgis.import("esri/applications/Components/gfxUtils");
|
|
11150
11741
|
}
|
|
11151
|
-
const module = await import("@arcgis/core/applications/
|
|
11742
|
+
const module = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
11152
11743
|
return isDefaultModule(module) ? module.default : module;
|
|
11153
11744
|
}
|
|
11154
11745
|
|
|
11155
|
-
export async function
|
|
11746
|
+
export async function importApplicationsComponentsLayerOriginUtils(): Promise<typeof __esri.layerOriginUtils> {
|
|
11156
11747
|
if (isAMD) {
|
|
11157
|
-
return await window.$arcgis.import("esri/applications/
|
|
11748
|
+
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
11158
11749
|
}
|
|
11159
|
-
const module = await import("@arcgis/core/applications/
|
|
11750
|
+
const module = await import("@arcgis/core/applications/Components/layerOriginUtils.js");
|
|
11160
11751
|
return isDefaultModule(module) ? module.default : module;
|
|
11161
11752
|
}
|
|
11162
11753
|
|
|
11163
|
-
export async function
|
|
11754
|
+
export async function importApplicationsComponentsLayersEffectsJsonUtils(): Promise<typeof __esri.layersEffectsJsonUtils> {
|
|
11164
11755
|
if (isAMD) {
|
|
11165
|
-
return await window.$arcgis.import("esri/applications/
|
|
11756
|
+
return await window.$arcgis.import("esri/applications/Components/layersEffectsJsonUtils");
|
|
11166
11757
|
}
|
|
11167
|
-
const module = await import("@arcgis/core/applications/
|
|
11758
|
+
const module = await import("@arcgis/core/applications/Components/layersEffectsJsonUtils.js");
|
|
11168
11759
|
return isDefaultModule(module) ? module.default : module;
|
|
11169
11760
|
}
|
|
11170
11761
|
|
|
11171
|
-
export async function
|
|
11762
|
+
export async function importApplicationsComponentsPreviewSymbol2D(): Promise<typeof __esri.previewSymbol2D> {
|
|
11172
11763
|
if (isAMD) {
|
|
11173
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
11764
|
+
return await window.$arcgis.import("esri/applications/Components/previewSymbol2D");
|
|
11174
11765
|
}
|
|
11175
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
11766
|
+
const module = await import("@arcgis/core/applications/Components/previewSymbol2D.js");
|
|
11176
11767
|
return isDefaultModule(module) ? module.default : module;
|
|
11177
11768
|
}
|
|
11178
11769
|
|
|
11179
|
-
export async function
|
|
11770
|
+
export async function importApplicationsComponentsReactiveUtils(): Promise<typeof __esri.ComponentsReactiveUtils> {
|
|
11180
11771
|
if (isAMD) {
|
|
11181
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
11772
|
+
return await window.$arcgis.import("esri/applications/Components/reactiveUtils");
|
|
11182
11773
|
}
|
|
11183
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
11774
|
+
const module = await import("@arcgis/core/applications/Components/reactiveUtils.js");
|
|
11775
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11776
|
+
}
|
|
11777
|
+
|
|
11778
|
+
export async function importApplicationsComponentsSelectionOperation(): Promise<any> {
|
|
11779
|
+
if (isAMD) {
|
|
11780
|
+
return await window.$arcgis.import("esri/applications/Components/SelectionOperation");
|
|
11781
|
+
}
|
|
11782
|
+
const module = await import("@arcgis/core/applications/Components/SelectionOperation.js");
|
|
11783
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11784
|
+
}
|
|
11785
|
+
|
|
11786
|
+
export async function importApplicationsComponentsSketchTooltipControls(): Promise<any> {
|
|
11787
|
+
if (isAMD) {
|
|
11788
|
+
return await window.$arcgis.import("esri/applications/Components/SketchTooltipControls");
|
|
11789
|
+
}
|
|
11790
|
+
const module = await import("@arcgis/core/applications/Components/SketchTooltipControls.js");
|
|
11184
11791
|
return isDefaultModule(module) ? module.default : module;
|
|
11185
11792
|
}
|
|
11186
11793
|
|
|
@@ -11192,50 +11799,50 @@ export async function importApplicationsComponentsStyleUtils(): Promise<typeof _
|
|
|
11192
11799
|
return isDefaultModule(module) ? module.default : module;
|
|
11193
11800
|
}
|
|
11194
11801
|
|
|
11195
|
-
export async function
|
|
11802
|
+
export async function importApplicationsComponentsSvgUtils(): Promise<typeof __esri.svgUtils> {
|
|
11196
11803
|
if (isAMD) {
|
|
11197
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
11804
|
+
return await window.$arcgis.import("esri/applications/Components/svgUtils");
|
|
11198
11805
|
}
|
|
11199
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
11806
|
+
const module = await import("@arcgis/core/applications/Components/svgUtils.js");
|
|
11200
11807
|
return isDefaultModule(module) ? module.default : module;
|
|
11201
11808
|
}
|
|
11202
11809
|
|
|
11203
|
-
export async function
|
|
11810
|
+
export async function importApplicationsComponentsWebStyleSymbolUtils(): Promise<typeof __esri.webStyleSymbolUtils> {
|
|
11204
11811
|
if (isAMD) {
|
|
11205
|
-
return await window.$arcgis.import("esri/applications/Components/
|
|
11812
|
+
return await window.$arcgis.import("esri/applications/Components/webStyleSymbolUtils");
|
|
11206
11813
|
}
|
|
11207
|
-
const module = await import("@arcgis/core/applications/Components/
|
|
11814
|
+
const module = await import("@arcgis/core/applications/Components/webStyleSymbolUtils.js");
|
|
11208
11815
|
return isDefaultModule(module) ? module.default : module;
|
|
11209
11816
|
}
|
|
11210
11817
|
|
|
11211
|
-
export async function
|
|
11818
|
+
export async function importApplicationsExperienceBuilderSketchUtils(): Promise<typeof __esri.sketchUtils> {
|
|
11212
11819
|
if (isAMD) {
|
|
11213
|
-
return await window.$arcgis.import("esri/applications/
|
|
11820
|
+
return await window.$arcgis.import("esri/applications/ExperienceBuilder/sketchUtils");
|
|
11214
11821
|
}
|
|
11215
|
-
const module = await import("@arcgis/core/applications/
|
|
11822
|
+
const module = await import("@arcgis/core/applications/ExperienceBuilder/sketchUtils.js");
|
|
11216
11823
|
return isDefaultModule(module) ? module.default : module;
|
|
11217
11824
|
}
|
|
11218
11825
|
|
|
11219
|
-
export async function
|
|
11826
|
+
export async function importApplicationsMapViewerTemplateUtils(): Promise<typeof __esri.templateUtils> {
|
|
11220
11827
|
if (isAMD) {
|
|
11221
|
-
return await window.$arcgis.import("esri/applications/
|
|
11828
|
+
return await window.$arcgis.import("esri/applications/MapViewer/templateUtils");
|
|
11222
11829
|
}
|
|
11223
|
-
const module = await import("@arcgis/core/applications/
|
|
11830
|
+
const module = await import("@arcgis/core/applications/MapViewer/templateUtils.js");
|
|
11224
11831
|
return isDefaultModule(module) ? module.default : module;
|
|
11225
11832
|
}
|
|
11226
11833
|
|
|
11227
|
-
export async function
|
|
11834
|
+
export async function importApplicationsSceneViewerDevEnvironmentUtils(): Promise<typeof __esri.devEnvironmentUtils> {
|
|
11228
11835
|
if (isAMD) {
|
|
11229
|
-
return await window.$arcgis.import("esri/applications/
|
|
11836
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/devEnvironmentUtils");
|
|
11230
11837
|
}
|
|
11231
|
-
const module = await import("@arcgis/core/applications/
|
|
11838
|
+
const module = await import("@arcgis/core/applications/SceneViewer/devEnvironmentUtils.js");
|
|
11232
11839
|
return isDefaultModule(module) ? module.default : module;
|
|
11233
11840
|
}
|
|
11234
11841
|
|
|
11235
|
-
export async function
|
|
11842
|
+
export async function importApplicationsWebEditorSketchUtils(): Promise<typeof __esri.WebEditorSketchUtils> {
|
|
11236
11843
|
if (isAMD) {
|
|
11237
|
-
return await window.$arcgis.import("esri/applications/
|
|
11844
|
+
return await window.$arcgis.import("esri/applications/WebEditor/sketchUtils");
|
|
11238
11845
|
}
|
|
11239
|
-
const module = await import("@arcgis/core/applications/
|
|
11846
|
+
const module = await import("@arcgis/core/applications/WebEditor/sketchUtils.js");
|
|
11240
11847
|
return isDefaultModule(module) ? module.default : module;
|
|
11241
11848
|
}
|