@arcgis/core-adapter 4.32.0-next.11 → 4.32.0-next.13
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 +1 -1
- package/dist/index.cjs +125 -98
- package/dist/index.d.cts +22 -19
- package/dist/index.d.ts +22 -19
- package/dist/index.js +122 -98
- package/package.json +1 -1
- package/src/index.ts +133 -109
- package/support/arcgis.d.ts +2120 -368
package/src/index.ts
CHANGED
|
@@ -1978,19 +1978,6 @@ export async function newLayersSupportPublishingInfo(properties: __esri.Publishi
|
|
|
1978
1978
|
return new ModConstructor(properties);
|
|
1979
1979
|
}
|
|
1980
1980
|
|
|
1981
|
-
export async function importLayersSupportSceneFilter(): Promise<typeof __esri.SceneFilter> {
|
|
1982
|
-
if (isAMD) {
|
|
1983
|
-
return await window.$arcgis.import("esri/layers/support/SceneFilter");
|
|
1984
|
-
}
|
|
1985
|
-
const module = await import("@arcgis/core/layers/support/SceneFilter.js");
|
|
1986
|
-
return isDefaultModule(module) ? module.default : module;
|
|
1987
|
-
}
|
|
1988
|
-
|
|
1989
|
-
export async function newLayersSupportSceneFilter(properties: __esri.SceneFilterProperties): Promise<__esri.SceneFilter> {
|
|
1990
|
-
const ModConstructor = await importLayersSupportSceneFilter();
|
|
1991
|
-
return new ModConstructor(properties);
|
|
1992
|
-
}
|
|
1993
|
-
|
|
1994
1981
|
export async function importLayersSupportRangeDomain(): Promise<typeof __esri.RangeDomain> {
|
|
1995
1982
|
if (isAMD) {
|
|
1996
1983
|
return await window.$arcgis.import("esri/layers/support/RangeDomain");
|
|
@@ -2095,6 +2082,19 @@ export async function newLayersSupportRouteSymbols(properties: __esri.RouteSymbo
|
|
|
2095
2082
|
return new ModConstructor(properties);
|
|
2096
2083
|
}
|
|
2097
2084
|
|
|
2085
|
+
export async function importLayersSupportSceneFilter(): Promise<typeof __esri.SceneFilter> {
|
|
2086
|
+
if (isAMD) {
|
|
2087
|
+
return await window.$arcgis.import("esri/layers/support/SceneFilter");
|
|
2088
|
+
}
|
|
2089
|
+
const module = await import("@arcgis/core/layers/support/SceneFilter.js");
|
|
2090
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2091
|
+
}
|
|
2092
|
+
|
|
2093
|
+
export async function newLayersSupportSceneFilter(properties: __esri.SceneFilterProperties): Promise<__esri.SceneFilter> {
|
|
2094
|
+
const ModConstructor = await importLayersSupportSceneFilter();
|
|
2095
|
+
return new ModConstructor(properties);
|
|
2096
|
+
}
|
|
2097
|
+
|
|
2098
2098
|
export async function importLayersSupportSceneModification(): Promise<typeof __esri.SceneModification> {
|
|
2099
2099
|
if (isAMD) {
|
|
2100
2100
|
return await window.$arcgis.import("esri/layers/support/SceneModification");
|
|
@@ -2420,29 +2420,29 @@ export async function newLayersUnsupportedLayer(properties: __esri.UnsupportedLa
|
|
|
2420
2420
|
return new ModConstructor(properties);
|
|
2421
2421
|
}
|
|
2422
2422
|
|
|
2423
|
-
export async function
|
|
2423
|
+
export async function importLayersVectorTileLayer(): Promise<typeof __esri.VectorTileLayer> {
|
|
2424
2424
|
if (isAMD) {
|
|
2425
|
-
return await window.$arcgis.import("esri/layers/
|
|
2425
|
+
return await window.$arcgis.import("esri/layers/VectorTileLayer");
|
|
2426
2426
|
}
|
|
2427
|
-
const module = await import("@arcgis/core/layers/
|
|
2427
|
+
const module = await import("@arcgis/core/layers/VectorTileLayer.js");
|
|
2428
2428
|
return isDefaultModule(module) ? module.default : module;
|
|
2429
2429
|
}
|
|
2430
2430
|
|
|
2431
|
-
export async function
|
|
2432
|
-
const ModConstructor = await
|
|
2431
|
+
export async function newLayersVectorTileLayer(properties: __esri.VectorTileLayerProperties): Promise<__esri.VectorTileLayer> {
|
|
2432
|
+
const ModConstructor = await importLayersVectorTileLayer();
|
|
2433
2433
|
return new ModConstructor(properties);
|
|
2434
2434
|
}
|
|
2435
2435
|
|
|
2436
|
-
export async function
|
|
2436
|
+
export async function importLayersVideoLayer(): Promise<typeof __esri.VideoLayer> {
|
|
2437
2437
|
if (isAMD) {
|
|
2438
|
-
return await window.$arcgis.import("esri/layers/
|
|
2438
|
+
return await window.$arcgis.import("esri/layers/VideoLayer");
|
|
2439
2439
|
}
|
|
2440
|
-
const module = await import("@arcgis/core/layers/
|
|
2440
|
+
const module = await import("@arcgis/core/layers/VideoLayer.js");
|
|
2441
2441
|
return isDefaultModule(module) ? module.default : module;
|
|
2442
2442
|
}
|
|
2443
2443
|
|
|
2444
|
-
export async function
|
|
2445
|
-
const ModConstructor = await
|
|
2444
|
+
export async function newLayersVideoLayer(properties: __esri.VideoLayerProperties): Promise<__esri.VideoLayer> {
|
|
2445
|
+
const ModConstructor = await importLayersVideoLayer();
|
|
2446
2446
|
return new ModConstructor(properties);
|
|
2447
2447
|
}
|
|
2448
2448
|
|
|
@@ -4552,58 +4552,6 @@ export async function newRestSupportImageBoundaryResult(properties: __esri.Image
|
|
|
4552
4552
|
return new ModConstructor(properties);
|
|
4553
4553
|
}
|
|
4554
4554
|
|
|
4555
|
-
export async function importRestSupportImageHistogramParameters(): Promise<typeof __esri.ImageHistogramParameters> {
|
|
4556
|
-
if (isAMD) {
|
|
4557
|
-
return await window.$arcgis.import("esri/rest/support/ImageHistogramParameters");
|
|
4558
|
-
}
|
|
4559
|
-
const module = await import("@arcgis/core/rest/support/ImageHistogramParameters.js");
|
|
4560
|
-
return isDefaultModule(module) ? module.default : module;
|
|
4561
|
-
}
|
|
4562
|
-
|
|
4563
|
-
export async function newRestSupportImageHistogramParameters(properties: __esri.ImageHistogramParametersProperties): Promise<__esri.ImageHistogramParameters> {
|
|
4564
|
-
const ModConstructor = await importRestSupportImageHistogramParameters();
|
|
4565
|
-
return new ModConstructor(properties);
|
|
4566
|
-
}
|
|
4567
|
-
|
|
4568
|
-
export async function importRestSupportImageIdentifyParameters(): Promise<typeof __esri.ImageIdentifyParameters> {
|
|
4569
|
-
if (isAMD) {
|
|
4570
|
-
return await window.$arcgis.import("esri/rest/support/ImageIdentifyParameters");
|
|
4571
|
-
}
|
|
4572
|
-
const module = await import("@arcgis/core/rest/support/ImageIdentifyParameters.js");
|
|
4573
|
-
return isDefaultModule(module) ? module.default : module;
|
|
4574
|
-
}
|
|
4575
|
-
|
|
4576
|
-
export async function newRestSupportImageIdentifyParameters(properties: __esri.ImageIdentifyParametersProperties): Promise<__esri.ImageIdentifyParameters> {
|
|
4577
|
-
const ModConstructor = await importRestSupportImageIdentifyParameters();
|
|
4578
|
-
return new ModConstructor(properties);
|
|
4579
|
-
}
|
|
4580
|
-
|
|
4581
|
-
export async function importRestSupportImageIdentifyResult(): Promise<typeof __esri.ImageIdentifyResult> {
|
|
4582
|
-
if (isAMD) {
|
|
4583
|
-
return await window.$arcgis.import("esri/rest/support/ImageIdentifyResult");
|
|
4584
|
-
}
|
|
4585
|
-
const module = await import("@arcgis/core/rest/support/ImageIdentifyResult.js");
|
|
4586
|
-
return isDefaultModule(module) ? module.default : module;
|
|
4587
|
-
}
|
|
4588
|
-
|
|
4589
|
-
export async function newRestSupportImageIdentifyResult(properties: __esri.ImageIdentifyResultProperties): Promise<__esri.ImageIdentifyResult> {
|
|
4590
|
-
const ModConstructor = await importRestSupportImageIdentifyResult();
|
|
4591
|
-
return new ModConstructor(properties);
|
|
4592
|
-
}
|
|
4593
|
-
|
|
4594
|
-
export async function importRestSupportImageInspectionInfo(): Promise<typeof __esri.ImageInspectionInfo> {
|
|
4595
|
-
if (isAMD) {
|
|
4596
|
-
return await window.$arcgis.import("esri/rest/support/ImageInspectionInfo");
|
|
4597
|
-
}
|
|
4598
|
-
const module = await import("@arcgis/core/rest/support/ImageInspectionInfo.js");
|
|
4599
|
-
return isDefaultModule(module) ? module.default : module;
|
|
4600
|
-
}
|
|
4601
|
-
|
|
4602
|
-
export async function newRestSupportImageInspectionInfo(properties: __esri.ImageInspectionInfoProperties): Promise<__esri.ImageInspectionInfo> {
|
|
4603
|
-
const ModConstructor = await importRestSupportImageInspectionInfo();
|
|
4604
|
-
return new ModConstructor(properties);
|
|
4605
|
-
}
|
|
4606
|
-
|
|
4607
4555
|
export async function importRestSupportImageDistanceParameters(): Promise<typeof __esri.ImageDistanceParameters> {
|
|
4608
4556
|
if (isAMD) {
|
|
4609
4557
|
return await window.$arcgis.import("esri/rest/support/ImageDistanceParameters");
|
|
@@ -4695,6 +4643,58 @@ export async function newRestSupportImageHeightResult(properties: __esri.ImageHe
|
|
|
4695
4643
|
return new ModConstructor(properties);
|
|
4696
4644
|
}
|
|
4697
4645
|
|
|
4646
|
+
export async function importRestSupportImageHistogramParameters(): Promise<typeof __esri.ImageHistogramParameters> {
|
|
4647
|
+
if (isAMD) {
|
|
4648
|
+
return await window.$arcgis.import("esri/rest/support/ImageHistogramParameters");
|
|
4649
|
+
}
|
|
4650
|
+
const module = await import("@arcgis/core/rest/support/ImageHistogramParameters.js");
|
|
4651
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4652
|
+
}
|
|
4653
|
+
|
|
4654
|
+
export async function newRestSupportImageHistogramParameters(properties: __esri.ImageHistogramParametersProperties): Promise<__esri.ImageHistogramParameters> {
|
|
4655
|
+
const ModConstructor = await importRestSupportImageHistogramParameters();
|
|
4656
|
+
return new ModConstructor(properties);
|
|
4657
|
+
}
|
|
4658
|
+
|
|
4659
|
+
export async function importRestSupportImageIdentifyParameters(): Promise<typeof __esri.ImageIdentifyParameters> {
|
|
4660
|
+
if (isAMD) {
|
|
4661
|
+
return await window.$arcgis.import("esri/rest/support/ImageIdentifyParameters");
|
|
4662
|
+
}
|
|
4663
|
+
const module = await import("@arcgis/core/rest/support/ImageIdentifyParameters.js");
|
|
4664
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4665
|
+
}
|
|
4666
|
+
|
|
4667
|
+
export async function newRestSupportImageIdentifyParameters(properties: __esri.ImageIdentifyParametersProperties): Promise<__esri.ImageIdentifyParameters> {
|
|
4668
|
+
const ModConstructor = await importRestSupportImageIdentifyParameters();
|
|
4669
|
+
return new ModConstructor(properties);
|
|
4670
|
+
}
|
|
4671
|
+
|
|
4672
|
+
export async function importRestSupportImageIdentifyResult(): Promise<typeof __esri.ImageIdentifyResult> {
|
|
4673
|
+
if (isAMD) {
|
|
4674
|
+
return await window.$arcgis.import("esri/rest/support/ImageIdentifyResult");
|
|
4675
|
+
}
|
|
4676
|
+
const module = await import("@arcgis/core/rest/support/ImageIdentifyResult.js");
|
|
4677
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4678
|
+
}
|
|
4679
|
+
|
|
4680
|
+
export async function newRestSupportImageIdentifyResult(properties: __esri.ImageIdentifyResultProperties): Promise<__esri.ImageIdentifyResult> {
|
|
4681
|
+
const ModConstructor = await importRestSupportImageIdentifyResult();
|
|
4682
|
+
return new ModConstructor(properties);
|
|
4683
|
+
}
|
|
4684
|
+
|
|
4685
|
+
export async function importRestSupportImageInspectionInfo(): Promise<typeof __esri.ImageInspectionInfo> {
|
|
4686
|
+
if (isAMD) {
|
|
4687
|
+
return await window.$arcgis.import("esri/rest/support/ImageInspectionInfo");
|
|
4688
|
+
}
|
|
4689
|
+
const module = await import("@arcgis/core/rest/support/ImageInspectionInfo.js");
|
|
4690
|
+
return isDefaultModule(module) ? module.default : module;
|
|
4691
|
+
}
|
|
4692
|
+
|
|
4693
|
+
export async function newRestSupportImageInspectionInfo(properties: __esri.ImageInspectionInfoProperties): Promise<__esri.ImageInspectionInfo> {
|
|
4694
|
+
const ModConstructor = await importRestSupportImageInspectionInfo();
|
|
4695
|
+
return new ModConstructor(properties);
|
|
4696
|
+
}
|
|
4697
|
+
|
|
4698
4698
|
export async function importRestSupportImageParameters(): Promise<typeof __esri.ImageParameters> {
|
|
4699
4699
|
if (isAMD) {
|
|
4700
4700
|
return await window.$arcgis.import("esri/rest/support/ImageParameters");
|
|
@@ -4799,29 +4799,29 @@ export async function newRestSupportImageSampleResult(properties: __esri.ImageSa
|
|
|
4799
4799
|
return new ModConstructor(properties);
|
|
4800
4800
|
}
|
|
4801
4801
|
|
|
4802
|
-
export async function
|
|
4802
|
+
export async function importRestSupportImageToMapMultirayParameters(): Promise<typeof __esri.ImageToMapMultirayParameters> {
|
|
4803
4803
|
if (isAMD) {
|
|
4804
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4804
|
+
return await window.$arcgis.import("esri/rest/support/ImageToMapMultirayParameters");
|
|
4805
4805
|
}
|
|
4806
|
-
const module = await import("@arcgis/core/rest/support/
|
|
4806
|
+
const module = await import("@arcgis/core/rest/support/ImageToMapMultirayParameters.js");
|
|
4807
4807
|
return isDefaultModule(module) ? module.default : module;
|
|
4808
4808
|
}
|
|
4809
4809
|
|
|
4810
|
-
export async function
|
|
4811
|
-
const ModConstructor = await
|
|
4810
|
+
export async function newRestSupportImageToMapMultirayParameters(properties: __esri.ImageToMapMultirayParametersProperties): Promise<__esri.ImageToMapMultirayParameters> {
|
|
4811
|
+
const ModConstructor = await importRestSupportImageToMapMultirayParameters();
|
|
4812
4812
|
return new ModConstructor(properties);
|
|
4813
4813
|
}
|
|
4814
4814
|
|
|
4815
|
-
export async function
|
|
4815
|
+
export async function importRestSupportImageToMapParameters(): Promise<typeof __esri.ImageToMapParameters> {
|
|
4816
4816
|
if (isAMD) {
|
|
4817
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4817
|
+
return await window.$arcgis.import("esri/rest/support/ImageToMapParameters");
|
|
4818
4818
|
}
|
|
4819
|
-
const module = await import("@arcgis/core/rest/support/
|
|
4819
|
+
const module = await import("@arcgis/core/rest/support/ImageToMapParameters.js");
|
|
4820
4820
|
return isDefaultModule(module) ? module.default : module;
|
|
4821
4821
|
}
|
|
4822
4822
|
|
|
4823
|
-
export async function
|
|
4824
|
-
const ModConstructor = await
|
|
4823
|
+
export async function newRestSupportImageToMapParameters(properties: __esri.ImageToMapParametersProperties): Promise<__esri.ImageToMapParameters> {
|
|
4824
|
+
const ModConstructor = await importRestSupportImageToMapParameters();
|
|
4825
4825
|
return new ModConstructor(properties);
|
|
4826
4826
|
}
|
|
4827
4827
|
|
|
@@ -4929,29 +4929,29 @@ export async function newRestSupportMeasureAreaFromImageResult(properties: __esr
|
|
|
4929
4929
|
return new ModConstructor(properties);
|
|
4930
4930
|
}
|
|
4931
4931
|
|
|
4932
|
-
export async function
|
|
4932
|
+
export async function importRestSupportMeasureFromImageParameters(): Promise<typeof __esri.MeasureFromImageParameters> {
|
|
4933
4933
|
if (isAMD) {
|
|
4934
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4934
|
+
return await window.$arcgis.import("esri/rest/support/MeasureFromImageParameters");
|
|
4935
4935
|
}
|
|
4936
|
-
const module = await import("@arcgis/core/rest/support/
|
|
4936
|
+
const module = await import("@arcgis/core/rest/support/MeasureFromImageParameters.js");
|
|
4937
4937
|
return isDefaultModule(module) ? module.default : module;
|
|
4938
4938
|
}
|
|
4939
4939
|
|
|
4940
|
-
export async function
|
|
4941
|
-
const ModConstructor = await
|
|
4940
|
+
export async function newRestSupportMeasureFromImageParameters(properties: __esri.MeasureFromImageParametersProperties): Promise<__esri.MeasureFromImageParameters> {
|
|
4941
|
+
const ModConstructor = await importRestSupportMeasureFromImageParameters();
|
|
4942
4942
|
return new ModConstructor(properties);
|
|
4943
4943
|
}
|
|
4944
4944
|
|
|
4945
|
-
export async function
|
|
4945
|
+
export async function importRestSupportMeasureLengthFromImageResult(): Promise<typeof __esri.MeasureLengthFromImageResult> {
|
|
4946
4946
|
if (isAMD) {
|
|
4947
|
-
return await window.$arcgis.import("esri/rest/support/
|
|
4947
|
+
return await window.$arcgis.import("esri/rest/support/MeasureLengthFromImageResult");
|
|
4948
4948
|
}
|
|
4949
|
-
const module = await import("@arcgis/core/rest/support/
|
|
4949
|
+
const module = await import("@arcgis/core/rest/support/MeasureLengthFromImageResult.js");
|
|
4950
4950
|
return isDefaultModule(module) ? module.default : module;
|
|
4951
4951
|
}
|
|
4952
4952
|
|
|
4953
|
-
export async function
|
|
4954
|
-
const ModConstructor = await
|
|
4953
|
+
export async function newRestSupportMeasureLengthFromImageResult(properties: __esri.MeasureLengthFromImageResultProperties): Promise<__esri.MeasureLengthFromImageResult> {
|
|
4954
|
+
const ModConstructor = await importRestSupportMeasureLengthFromImageResult();
|
|
4955
4955
|
return new ModConstructor(properties);
|
|
4956
4956
|
}
|
|
4957
4957
|
|
|
@@ -10135,19 +10135,19 @@ export async function importGeometryOperatorsDifferenceOperator(): Promise<typeo
|
|
|
10135
10135
|
return isDefaultModule(module) ? module.default : module;
|
|
10136
10136
|
}
|
|
10137
10137
|
|
|
10138
|
-
export async function
|
|
10138
|
+
export async function importGeometryOperatorsDisjointOperator(): Promise<typeof __esri.disjointOperator> {
|
|
10139
10139
|
if (isAMD) {
|
|
10140
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10140
|
+
return await window.$arcgis.import("esri/geometry/operators/disjointOperator");
|
|
10141
10141
|
}
|
|
10142
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
10142
|
+
const module = await import("@arcgis/core/geometry/operators/disjointOperator.js");
|
|
10143
10143
|
return isDefaultModule(module) ? module.default : module;
|
|
10144
10144
|
}
|
|
10145
10145
|
|
|
10146
|
-
export async function
|
|
10146
|
+
export async function importGeometryOperatorsDistanceOperator(): Promise<typeof __esri.distanceOperator> {
|
|
10147
10147
|
if (isAMD) {
|
|
10148
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
10148
|
+
return await window.$arcgis.import("esri/geometry/operators/distanceOperator");
|
|
10149
10149
|
}
|
|
10150
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
10150
|
+
const module = await import("@arcgis/core/geometry/operators/distanceOperator.js");
|
|
10151
10151
|
return isDefaultModule(module) ? module.default : module;
|
|
10152
10152
|
}
|
|
10153
10153
|
|
|
@@ -10159,6 +10159,14 @@ export async function importGeometryOperatorsEqualsOperator(): Promise<typeof __
|
|
|
10159
10159
|
return isDefaultModule(module) ? module.default : module;
|
|
10160
10160
|
}
|
|
10161
10161
|
|
|
10162
|
+
export async function importGeometryOperatorsGeneralizeOperator(): Promise<typeof __esri.generalizeOperator> {
|
|
10163
|
+
if (isAMD) {
|
|
10164
|
+
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
10165
|
+
}
|
|
10166
|
+
const module = await import("@arcgis/core/geometry/operators/generalizeOperator.js");
|
|
10167
|
+
return isDefaultModule(module) ? module.default : module;
|
|
10168
|
+
}
|
|
10169
|
+
|
|
10162
10170
|
export async function importGeometryOperatorsGeodesicBufferOperator(): Promise<typeof __esri.geodesicBufferOperator> {
|
|
10163
10171
|
if (isAMD) {
|
|
10164
10172
|
return await window.$arcgis.import("esri/geometry/operators/geodesicBufferOperator");
|
|
@@ -10199,14 +10207,6 @@ export async function importGeometryOperatorsGeodeticLengthOperator(): Promise<t
|
|
|
10199
10207
|
return isDefaultModule(module) ? module.default : module;
|
|
10200
10208
|
}
|
|
10201
10209
|
|
|
10202
|
-
export async function importGeometryOperatorsGeneralizeOperator(): Promise<typeof __esri.generalizeOperator> {
|
|
10203
|
-
if (isAMD) {
|
|
10204
|
-
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
10205
|
-
}
|
|
10206
|
-
const module = await import("@arcgis/core/geometry/operators/generalizeOperator.js");
|
|
10207
|
-
return isDefaultModule(module) ? module.default : module;
|
|
10208
|
-
}
|
|
10209
|
-
|
|
10210
10210
|
export async function importGeometryOperatorsGraphicBufferOperator(): Promise<typeof __esri.graphicBufferOperator> {
|
|
10211
10211
|
if (isAMD) {
|
|
10212
10212
|
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
@@ -11239,6 +11239,14 @@ export async function importApplicationsComponentsBasemapUtils(): Promise<typeof
|
|
|
11239
11239
|
return isDefaultModule(module) ? module.default : module;
|
|
11240
11240
|
}
|
|
11241
11241
|
|
|
11242
|
+
export async function importApplicationsComponentsCollectionFlattener(): Promise<typeof __esri.CollectionFlattener> {
|
|
11243
|
+
if (isAMD) {
|
|
11244
|
+
return await window.$arcgis.import("esri/applications/Components/CollectionFlattener");
|
|
11245
|
+
}
|
|
11246
|
+
const module = await import("@arcgis/core/applications/Components/CollectionFlattener.js");
|
|
11247
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11248
|
+
}
|
|
11249
|
+
|
|
11242
11250
|
export async function importApplicationsComponentsDrawUtils(): Promise<typeof __esri.drawUtils> {
|
|
11243
11251
|
if (isAMD) {
|
|
11244
11252
|
return await window.$arcgis.import("esri/applications/Components/drawUtils");
|
|
@@ -11247,6 +11255,14 @@ export async function importApplicationsComponentsDrawUtils(): Promise<typeof __
|
|
|
11247
11255
|
return isDefaultModule(module) ? module.default : module;
|
|
11248
11256
|
}
|
|
11249
11257
|
|
|
11258
|
+
export async function importApplicationsComponentsFontUtils(): Promise<typeof __esri.fontUtils> {
|
|
11259
|
+
if (isAMD) {
|
|
11260
|
+
return await window.$arcgis.import("esri/applications/Components/fontUtils");
|
|
11261
|
+
}
|
|
11262
|
+
const module = await import("@arcgis/core/applications/Components/fontUtils.js");
|
|
11263
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11264
|
+
}
|
|
11265
|
+
|
|
11250
11266
|
export async function importApplicationsComponentsGetDefaultUnits(): Promise<typeof __esri.getDefaultUnits> {
|
|
11251
11267
|
if (isAMD) {
|
|
11252
11268
|
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
@@ -11335,6 +11351,14 @@ export async function importApplicationsMapViewerMediaUtils(): Promise<typeof __
|
|
|
11335
11351
|
return isDefaultModule(module) ? module.default : module;
|
|
11336
11352
|
}
|
|
11337
11353
|
|
|
11354
|
+
export async function importApplicationsMapViewerTemplateUtils(): Promise<typeof __esri.templateUtils> {
|
|
11355
|
+
if (isAMD) {
|
|
11356
|
+
return await window.$arcgis.import("esri/applications/MapViewer/templateUtils");
|
|
11357
|
+
}
|
|
11358
|
+
const module = await import("@arcgis/core/applications/MapViewer/templateUtils.js");
|
|
11359
|
+
return isDefaultModule(module) ? module.default : module;
|
|
11360
|
+
}
|
|
11361
|
+
|
|
11338
11362
|
export async function importApplicationsSceneViewerColorUtils(): Promise<typeof __esri.SceneViewerColorUtils> {
|
|
11339
11363
|
if (isAMD) {
|
|
11340
11364
|
return await window.$arcgis.import("esri/applications/SceneViewer/colorUtils");
|