@arcgis/core-adapter 4.32.0-next.5 → 4.32.0-next.8
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 +225 -54
- package/dist/index.d.cts +38 -18
- package/dist/index.d.ts +38 -18
- package/dist/index.js +205 -54
- package/package.json +4 -28
- package/src/index.ts +205 -54
- package/support/api-reference-esm-imports.json +16 -1
- package/support/arcgis.d.ts +2705 -413
package/dist/index.js
CHANGED
|
@@ -622,6 +622,17 @@ async function newGeometrySpatialReference(properties) {
|
|
|
622
622
|
const ModConstructor = await importGeometrySpatialReference();
|
|
623
623
|
return new ModConstructor(properties);
|
|
624
624
|
}
|
|
625
|
+
async function importGeometryOperatorsSupportTransformation() {
|
|
626
|
+
if (isAMD) {
|
|
627
|
+
return await window.$arcgis.import("esri/geometry/operators/support/Transformation");
|
|
628
|
+
}
|
|
629
|
+
const module = await import("@arcgis/core/geometry/operators/support/Transformation.js");
|
|
630
|
+
return isDefaultModule(module) ? module.default : module;
|
|
631
|
+
}
|
|
632
|
+
async function newGeometryOperatorsSupportTransformation() {
|
|
633
|
+
const ModConstructor = await importGeometryOperatorsSupportTransformation();
|
|
634
|
+
return new ModConstructor();
|
|
635
|
+
}
|
|
625
636
|
async function importGeometrySupportGeographicTransformation() {
|
|
626
637
|
if (isAMD) {
|
|
627
638
|
return await window.$arcgis.import("esri/geometry/support/GeographicTransformation");
|
|
@@ -2734,6 +2745,17 @@ async function newRenderersRasterColormapRenderer(properties) {
|
|
|
2734
2745
|
const ModConstructor = await importRenderersRasterColormapRenderer();
|
|
2735
2746
|
return new ModConstructor(properties);
|
|
2736
2747
|
}
|
|
2748
|
+
async function importRenderersSupportRasterPresetRenderer() {
|
|
2749
|
+
if (isAMD) {
|
|
2750
|
+
return await window.$arcgis.import("esri/renderers/support/RasterPresetRenderer");
|
|
2751
|
+
}
|
|
2752
|
+
const module = await import("@arcgis/core/renderers/support/RasterPresetRenderer.js");
|
|
2753
|
+
return isDefaultModule(module) ? module.default : module;
|
|
2754
|
+
}
|
|
2755
|
+
async function newRenderersSupportRasterPresetRenderer(properties) {
|
|
2756
|
+
const ModConstructor = await importRenderersSupportRasterPresetRenderer();
|
|
2757
|
+
return new ModConstructor(properties);
|
|
2758
|
+
}
|
|
2737
2759
|
async function importRenderersRasterShadedReliefRenderer() {
|
|
2738
2760
|
if (isAMD) {
|
|
2739
2761
|
return await window.$arcgis.import("esri/renderers/RasterShadedReliefRenderer");
|
|
@@ -5605,6 +5627,17 @@ async function newViewsLayersFeatureLayerView(properties) {
|
|
|
5605
5627
|
const ModConstructor = await importViewsLayersFeatureLayerView();
|
|
5606
5628
|
return new ModConstructor(properties);
|
|
5607
5629
|
}
|
|
5630
|
+
async function importViewsLayersGroupLayerView() {
|
|
5631
|
+
if (isAMD) {
|
|
5632
|
+
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
5633
|
+
}
|
|
5634
|
+
const module = await import("@arcgis/core/views/layers/GroupLayerView.js");
|
|
5635
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5636
|
+
}
|
|
5637
|
+
async function newViewsLayersGroupLayerView(properties) {
|
|
5638
|
+
const ModConstructor = await importViewsLayersGroupLayerView();
|
|
5639
|
+
return new ModConstructor(properties);
|
|
5640
|
+
}
|
|
5608
5641
|
async function importViewsLayersImageryLayerView() {
|
|
5609
5642
|
if (isAMD) {
|
|
5610
5643
|
return await window.$arcgis.import("esri/views/layers/ImageryLayerView");
|
|
@@ -8455,6 +8488,27 @@ async function importGeometryProjection() {
|
|
|
8455
8488
|
const module = await import("@arcgis/core/geometry/projection.js");
|
|
8456
8489
|
return isDefaultModule(module) ? module.default : module;
|
|
8457
8490
|
}
|
|
8491
|
+
async function importGeometryOperatorsAffineTransformOperator() {
|
|
8492
|
+
if (isAMD) {
|
|
8493
|
+
return await window.$arcgis.import("esri/geometry/operators/affineTransformOperator");
|
|
8494
|
+
}
|
|
8495
|
+
const module = await import("@arcgis/core/geometry/operators/affineTransformOperator.js");
|
|
8496
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8497
|
+
}
|
|
8498
|
+
async function importGeometryOperatorsAreaOperator() {
|
|
8499
|
+
if (isAMD) {
|
|
8500
|
+
return await window.$arcgis.import("esri/geometry/operators/areaOperator");
|
|
8501
|
+
}
|
|
8502
|
+
const module = await import("@arcgis/core/geometry/operators/areaOperator.js");
|
|
8503
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8504
|
+
}
|
|
8505
|
+
async function importGeometryOperatorsBufferOperator() {
|
|
8506
|
+
if (isAMD) {
|
|
8507
|
+
return await window.$arcgis.import("esri/geometry/operators/bufferOperator");
|
|
8508
|
+
}
|
|
8509
|
+
const module = await import("@arcgis/core/geometry/operators/bufferOperator.js");
|
|
8510
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8511
|
+
}
|
|
8458
8512
|
async function importGeometryOperatorsCentroidOperator() {
|
|
8459
8513
|
if (isAMD) {
|
|
8460
8514
|
return await window.$arcgis.import("esri/geometry/operators/centroidOperator");
|
|
@@ -8469,18 +8523,18 @@ async function importGeometryOperatorsClipOperator() {
|
|
|
8469
8523
|
const module = await import("@arcgis/core/geometry/operators/clipOperator.js");
|
|
8470
8524
|
return isDefaultModule(module) ? module.default : module;
|
|
8471
8525
|
}
|
|
8472
|
-
async function
|
|
8526
|
+
async function importGeometryOperatorsContainsOperator() {
|
|
8473
8527
|
if (isAMD) {
|
|
8474
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
8528
|
+
return await window.$arcgis.import("esri/geometry/operators/containsOperator");
|
|
8475
8529
|
}
|
|
8476
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
8530
|
+
const module = await import("@arcgis/core/geometry/operators/containsOperator.js");
|
|
8477
8531
|
return isDefaultModule(module) ? module.default : module;
|
|
8478
8532
|
}
|
|
8479
|
-
async function
|
|
8533
|
+
async function importGeometryOperatorsConvexHullOperator() {
|
|
8480
8534
|
if (isAMD) {
|
|
8481
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
8535
|
+
return await window.$arcgis.import("esri/geometry/operators/convexHullOperator");
|
|
8482
8536
|
}
|
|
8483
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
8537
|
+
const module = await import("@arcgis/core/geometry/operators/convexHullOperator.js");
|
|
8484
8538
|
return isDefaultModule(module) ? module.default : module;
|
|
8485
8539
|
}
|
|
8486
8540
|
async function importGeometryOperatorsCrossesOperator() {
|
|
@@ -8490,6 +8544,13 @@ async function importGeometryOperatorsCrossesOperator() {
|
|
|
8490
8544
|
const module = await import("@arcgis/core/geometry/operators/crossesOperator.js");
|
|
8491
8545
|
return isDefaultModule(module) ? module.default : module;
|
|
8492
8546
|
}
|
|
8547
|
+
async function importGeometryOperatorsCutOperator() {
|
|
8548
|
+
if (isAMD) {
|
|
8549
|
+
return await window.$arcgis.import("esri/geometry/operators/cutOperator");
|
|
8550
|
+
}
|
|
8551
|
+
const module = await import("@arcgis/core/geometry/operators/cutOperator.js");
|
|
8552
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8553
|
+
}
|
|
8493
8554
|
async function importGeometryOperatorsDensifyOperator() {
|
|
8494
8555
|
if (isAMD) {
|
|
8495
8556
|
return await window.$arcgis.import("esri/geometry/operators/densifyOperator");
|
|
@@ -8532,6 +8593,13 @@ async function importGeometryOperatorsGeodesicBufferOperator() {
|
|
|
8532
8593
|
const module = await import("@arcgis/core/geometry/operators/geodesicBufferOperator.js");
|
|
8533
8594
|
return isDefaultModule(module) ? module.default : module;
|
|
8534
8595
|
}
|
|
8596
|
+
async function importGeometryOperatorsGeodeticAreaOperator() {
|
|
8597
|
+
if (isAMD) {
|
|
8598
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticAreaOperator");
|
|
8599
|
+
}
|
|
8600
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticAreaOperator.js");
|
|
8601
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8602
|
+
}
|
|
8535
8603
|
async function importGeometryOperatorsGeodeticDensifyOperator() {
|
|
8536
8604
|
if (isAMD) {
|
|
8537
8605
|
return await window.$arcgis.import("esri/geometry/operators/geodeticDensifyOperator");
|
|
@@ -8546,6 +8614,13 @@ async function importGeometryOperatorsGeodeticDistanceOperator() {
|
|
|
8546
8614
|
const module = await import("@arcgis/core/geometry/operators/geodeticDistanceOperator.js");
|
|
8547
8615
|
return isDefaultModule(module) ? module.default : module;
|
|
8548
8616
|
}
|
|
8617
|
+
async function importGeometryOperatorsGeodeticLengthOperator() {
|
|
8618
|
+
if (isAMD) {
|
|
8619
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticLengthOperator");
|
|
8620
|
+
}
|
|
8621
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticLengthOperator.js");
|
|
8622
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8623
|
+
}
|
|
8549
8624
|
async function importGeometryOperatorsGeneralizeOperator() {
|
|
8550
8625
|
if (isAMD) {
|
|
8551
8626
|
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
@@ -8553,6 +8628,13 @@ async function importGeometryOperatorsGeneralizeOperator() {
|
|
|
8553
8628
|
const module = await import("@arcgis/core/geometry/operators/generalizeOperator.js");
|
|
8554
8629
|
return isDefaultModule(module) ? module.default : module;
|
|
8555
8630
|
}
|
|
8631
|
+
async function importGeometryOperatorsGraphicBufferOperator() {
|
|
8632
|
+
if (isAMD) {
|
|
8633
|
+
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
8634
|
+
}
|
|
8635
|
+
const module = await import("@arcgis/core/geometry/operators/graphicBufferOperator.js");
|
|
8636
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8637
|
+
}
|
|
8556
8638
|
async function importGeometryOperatorsIntersectionOperator() {
|
|
8557
8639
|
if (isAMD) {
|
|
8558
8640
|
return await window.$arcgis.import("esri/geometry/operators/intersectionOperator");
|
|
@@ -8567,6 +8649,20 @@ async function importGeometryOperatorsIntersectsOperator() {
|
|
|
8567
8649
|
const module = await import("@arcgis/core/geometry/operators/intersectsOperator.js");
|
|
8568
8650
|
return isDefaultModule(module) ? module.default : module;
|
|
8569
8651
|
}
|
|
8652
|
+
async function importGeometryOperatorsLengthOperator() {
|
|
8653
|
+
if (isAMD) {
|
|
8654
|
+
return await window.$arcgis.import("esri/geometry/operators/lengthOperator");
|
|
8655
|
+
}
|
|
8656
|
+
const module = await import("@arcgis/core/geometry/operators/lengthOperator.js");
|
|
8657
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8658
|
+
}
|
|
8659
|
+
async function importGeometryOperatorsOffsetOperator() {
|
|
8660
|
+
if (isAMD) {
|
|
8661
|
+
return await window.$arcgis.import("esri/geometry/operators/offsetOperator");
|
|
8662
|
+
}
|
|
8663
|
+
const module = await import("@arcgis/core/geometry/operators/offsetOperator.js");
|
|
8664
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8665
|
+
}
|
|
8570
8666
|
async function importGeometryOperatorsOverlapsOperator() {
|
|
8571
8667
|
if (isAMD) {
|
|
8572
8668
|
return await window.$arcgis.import("esri/geometry/operators/overlapsOperator");
|
|
@@ -8595,6 +8691,13 @@ async function importGeometryOperatorsSimplifyOperator() {
|
|
|
8595
8691
|
const module = await import("@arcgis/core/geometry/operators/simplifyOperator.js");
|
|
8596
8692
|
return isDefaultModule(module) ? module.default : module;
|
|
8597
8693
|
}
|
|
8694
|
+
async function importGeometryOperatorsSymmetricDifferenceOperator() {
|
|
8695
|
+
if (isAMD) {
|
|
8696
|
+
return await window.$arcgis.import("esri/geometry/operators/symmetricDifferenceOperator");
|
|
8697
|
+
}
|
|
8698
|
+
const module = await import("@arcgis/core/geometry/operators/symmetricDifferenceOperator.js");
|
|
8699
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8700
|
+
}
|
|
8598
8701
|
async function importGeometryOperatorsTouchesOperator() {
|
|
8599
8702
|
if (isAMD) {
|
|
8600
8703
|
return await window.$arcgis.import("esri/geometry/operators/touchesOperator");
|
|
@@ -8679,6 +8782,13 @@ async function importLayersOgcWfsUtils() {
|
|
|
8679
8782
|
const module = await import("@arcgis/core/layers/ogc/wfsUtils.js");
|
|
8680
8783
|
return isDefaultModule(module) ? module.default : module;
|
|
8681
8784
|
}
|
|
8785
|
+
async function importLayersOgcWcsUtils() {
|
|
8786
|
+
if (isAMD) {
|
|
8787
|
+
return await window.$arcgis.import("esri/layers/ogc/wcsUtils");
|
|
8788
|
+
}
|
|
8789
|
+
const module = await import("@arcgis/core/layers/ogc/wcsUtils.js");
|
|
8790
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8791
|
+
}
|
|
8682
8792
|
async function importLayersSupportArcadeUtils() {
|
|
8683
8793
|
if (isAMD) {
|
|
8684
8794
|
return await window.$arcgis.import("esri/layers/support/arcadeUtils");
|
|
@@ -9414,60 +9524,67 @@ async function importWidgetsSupportWidget() {
|
|
|
9414
9524
|
const module = await import("@arcgis/core/widgets/support/widget.js");
|
|
9415
9525
|
return isDefaultModule(module) ? module.default : module;
|
|
9416
9526
|
}
|
|
9417
|
-
async function
|
|
9527
|
+
async function importApplicationsComponentsBasemapUtils() {
|
|
9418
9528
|
if (isAMD) {
|
|
9419
|
-
return await window.$arcgis.import("esri/applications/
|
|
9529
|
+
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
9420
9530
|
}
|
|
9421
|
-
const module = await import("@arcgis/core/applications/
|
|
9531
|
+
const module = await import("@arcgis/core/applications/Components/basemapUtils.js");
|
|
9422
9532
|
return isDefaultModule(module) ? module.default : module;
|
|
9423
9533
|
}
|
|
9424
|
-
async function
|
|
9534
|
+
async function importApplicationsComponentsDrawUtils() {
|
|
9425
9535
|
if (isAMD) {
|
|
9426
|
-
return await window.$arcgis.import("esri/applications/
|
|
9536
|
+
return await window.$arcgis.import("esri/applications/Components/drawUtils");
|
|
9427
9537
|
}
|
|
9428
|
-
const module = await import("@arcgis/core/applications/
|
|
9538
|
+
const module = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
9429
9539
|
return isDefaultModule(module) ? module.default : module;
|
|
9430
9540
|
}
|
|
9431
|
-
async function
|
|
9541
|
+
async function importApplicationsComponentsGetDefaultUnits() {
|
|
9432
9542
|
if (isAMD) {
|
|
9433
|
-
return await window.$arcgis.import("esri/applications/
|
|
9543
|
+
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
9434
9544
|
}
|
|
9435
|
-
const module = await import("@arcgis/core/applications/
|
|
9545
|
+
const module = await import("@arcgis/core/applications/Components/getDefaultUnits.js");
|
|
9436
9546
|
return isDefaultModule(module) ? module.default : module;
|
|
9437
9547
|
}
|
|
9438
|
-
async function
|
|
9548
|
+
async function importApplicationsComponentsGfxUtils() {
|
|
9439
9549
|
if (isAMD) {
|
|
9440
|
-
return await window.$arcgis.import("esri/applications/
|
|
9550
|
+
return await window.$arcgis.import("esri/applications/Components/gfxUtils");
|
|
9441
9551
|
}
|
|
9442
|
-
const module = await import("@arcgis/core/applications/
|
|
9552
|
+
const module = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
9443
9553
|
return isDefaultModule(module) ? module.default : module;
|
|
9444
9554
|
}
|
|
9445
|
-
async function
|
|
9555
|
+
async function importApplicationsComponentsLayerOriginUtils() {
|
|
9446
9556
|
if (isAMD) {
|
|
9447
|
-
return await window.$arcgis.import("esri/applications/
|
|
9557
|
+
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
9448
9558
|
}
|
|
9449
|
-
const module = await import("@arcgis/core/applications/
|
|
9559
|
+
const module = await import("@arcgis/core/applications/Components/layerOriginUtils.js");
|
|
9450
9560
|
return isDefaultModule(module) ? module.default : module;
|
|
9451
9561
|
}
|
|
9452
|
-
async function
|
|
9562
|
+
async function importApplicationsComponentsLayersEffectsJsonUtils() {
|
|
9453
9563
|
if (isAMD) {
|
|
9454
|
-
return await window.$arcgis.import("esri/applications/
|
|
9564
|
+
return await window.$arcgis.import("esri/applications/Components/layersEffectsJsonUtils");
|
|
9455
9565
|
}
|
|
9456
|
-
const module = await import("@arcgis/core/applications/
|
|
9566
|
+
const module = await import("@arcgis/core/applications/Components/layersEffectsJsonUtils.js");
|
|
9457
9567
|
return isDefaultModule(module) ? module.default : module;
|
|
9458
9568
|
}
|
|
9459
|
-
async function
|
|
9569
|
+
async function importApplicationsComponentsPreviewSymbol2D() {
|
|
9460
9570
|
if (isAMD) {
|
|
9461
|
-
return await window.$arcgis.import("esri/applications/
|
|
9571
|
+
return await window.$arcgis.import("esri/applications/Components/previewSymbol2D");
|
|
9462
9572
|
}
|
|
9463
|
-
const module = await import("@arcgis/core/applications/
|
|
9573
|
+
const module = await import("@arcgis/core/applications/Components/previewSymbol2D.js");
|
|
9464
9574
|
return isDefaultModule(module) ? module.default : module;
|
|
9465
9575
|
}
|
|
9466
|
-
async function
|
|
9576
|
+
async function importApplicationsComponentsStyleUtils() {
|
|
9467
9577
|
if (isAMD) {
|
|
9468
|
-
return await window.$arcgis.import("esri/applications/
|
|
9578
|
+
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
9469
9579
|
}
|
|
9470
|
-
const module = await import("@arcgis/core/applications/
|
|
9580
|
+
const module = await import("@arcgis/core/applications/Components/styleUtils.js");
|
|
9581
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9582
|
+
}
|
|
9583
|
+
async function importApplicationsComponentsSvgUtils() {
|
|
9584
|
+
if (isAMD) {
|
|
9585
|
+
return await window.$arcgis.import("esri/applications/Components/svgUtils");
|
|
9586
|
+
}
|
|
9587
|
+
const module = await import("@arcgis/core/applications/Components/svgUtils.js");
|
|
9471
9588
|
return isDefaultModule(module) ? module.default : module;
|
|
9472
9589
|
}
|
|
9473
9590
|
async function importApplicationsComponentsWebStyleSymbolUtils() {
|
|
@@ -9477,60 +9594,74 @@ async function importApplicationsComponentsWebStyleSymbolUtils() {
|
|
|
9477
9594
|
const module = await import("@arcgis/core/applications/Components/webStyleSymbolUtils.js");
|
|
9478
9595
|
return isDefaultModule(module) ? module.default : module;
|
|
9479
9596
|
}
|
|
9480
|
-
async function
|
|
9597
|
+
async function importApplicationsExcaliburVideoViewUtils() {
|
|
9481
9598
|
if (isAMD) {
|
|
9482
|
-
return await window.$arcgis.import("esri/applications/
|
|
9599
|
+
return await window.$arcgis.import("esri/applications/Excalibur/videoViewUtils");
|
|
9483
9600
|
}
|
|
9484
|
-
const module = await import("@arcgis/core/applications/
|
|
9601
|
+
const module = await import("@arcgis/core/applications/Excalibur/videoViewUtils.js");
|
|
9485
9602
|
return isDefaultModule(module) ? module.default : module;
|
|
9486
9603
|
}
|
|
9487
|
-
async function
|
|
9604
|
+
async function importApplicationsExperienceBuilderSketchUtils() {
|
|
9488
9605
|
if (isAMD) {
|
|
9489
|
-
return await window.$arcgis.import("esri/applications/
|
|
9606
|
+
return await window.$arcgis.import("esri/applications/ExperienceBuilder/sketchUtils");
|
|
9490
9607
|
}
|
|
9491
|
-
const module = await import("@arcgis/core/applications/
|
|
9608
|
+
const module = await import("@arcgis/core/applications/ExperienceBuilder/sketchUtils.js");
|
|
9492
9609
|
return isDefaultModule(module) ? module.default : module;
|
|
9493
9610
|
}
|
|
9494
|
-
async function
|
|
9611
|
+
async function importApplicationsMapViewerMediaUtils() {
|
|
9495
9612
|
if (isAMD) {
|
|
9496
|
-
return await window.$arcgis.import("esri/applications/
|
|
9613
|
+
return await window.$arcgis.import("esri/applications/MapViewer/mediaUtils");
|
|
9497
9614
|
}
|
|
9498
|
-
const module = await import("@arcgis/core/applications/
|
|
9615
|
+
const module = await import("@arcgis/core/applications/MapViewer/mediaUtils.js");
|
|
9499
9616
|
return isDefaultModule(module) ? module.default : module;
|
|
9500
9617
|
}
|
|
9501
|
-
async function
|
|
9618
|
+
async function importApplicationsSceneViewerColorUtils() {
|
|
9502
9619
|
if (isAMD) {
|
|
9503
|
-
return await window.$arcgis.import("esri/applications/
|
|
9620
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/colorUtils");
|
|
9504
9621
|
}
|
|
9505
|
-
const module = await import("@arcgis/core/applications/
|
|
9622
|
+
const module = await import("@arcgis/core/applications/SceneViewer/colorUtils.js");
|
|
9506
9623
|
return isDefaultModule(module) ? module.default : module;
|
|
9507
9624
|
}
|
|
9508
|
-
async function
|
|
9625
|
+
async function importApplicationsSceneViewerDevEnvironmentUtils() {
|
|
9509
9626
|
if (isAMD) {
|
|
9510
|
-
return await window.$arcgis.import("esri/applications/
|
|
9627
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/devEnvironmentUtils");
|
|
9511
9628
|
}
|
|
9512
|
-
const module = await import("@arcgis/core/applications/
|
|
9629
|
+
const module = await import("@arcgis/core/applications/SceneViewer/devEnvironmentUtils.js");
|
|
9513
9630
|
return isDefaultModule(module) ? module.default : module;
|
|
9514
9631
|
}
|
|
9515
|
-
async function
|
|
9632
|
+
async function importApplicationsSceneViewerLayerUtils() {
|
|
9516
9633
|
if (isAMD) {
|
|
9517
|
-
return await window.$arcgis.import("esri/applications/
|
|
9634
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/layerUtils");
|
|
9518
9635
|
}
|
|
9519
|
-
const module = await import("@arcgis/core/applications/
|
|
9636
|
+
const module = await import("@arcgis/core/applications/SceneViewer/layerUtils.js");
|
|
9520
9637
|
return isDefaultModule(module) ? module.default : module;
|
|
9521
9638
|
}
|
|
9522
|
-
async function
|
|
9639
|
+
async function importApplicationsSceneViewerSceneViewerUtils() {
|
|
9523
9640
|
if (isAMD) {
|
|
9524
|
-
return await window.$arcgis.import("esri/applications/
|
|
9641
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/sceneViewerUtils");
|
|
9525
9642
|
}
|
|
9526
|
-
const module = await import("@arcgis/core/applications/
|
|
9643
|
+
const module = await import("@arcgis/core/applications/SceneViewer/sceneViewerUtils.js");
|
|
9527
9644
|
return isDefaultModule(module) ? module.default : module;
|
|
9528
9645
|
}
|
|
9529
|
-
async function
|
|
9646
|
+
async function importApplicationsSceneViewerSymbolUtils() {
|
|
9530
9647
|
if (isAMD) {
|
|
9531
|
-
return await window.$arcgis.import("esri/applications/
|
|
9648
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/symbolUtils");
|
|
9532
9649
|
}
|
|
9533
|
-
const module = await import("@arcgis/core/applications/
|
|
9650
|
+
const module = await import("@arcgis/core/applications/SceneViewer/symbolUtils.js");
|
|
9651
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9652
|
+
}
|
|
9653
|
+
async function importApplicationsUrbanMeshUtils() {
|
|
9654
|
+
if (isAMD) {
|
|
9655
|
+
return await window.$arcgis.import("esri/applications/Urban/meshUtils");
|
|
9656
|
+
}
|
|
9657
|
+
const module = await import("@arcgis/core/applications/Urban/meshUtils.js");
|
|
9658
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9659
|
+
}
|
|
9660
|
+
async function importApplicationsWebEditorSketchUtils() {
|
|
9661
|
+
if (isAMD) {
|
|
9662
|
+
return await window.$arcgis.import("esri/applications/WebEditor/sketchUtils");
|
|
9663
|
+
}
|
|
9664
|
+
const module = await import("@arcgis/core/applications/WebEditor/sketchUtils.js");
|
|
9534
9665
|
return isDefaultModule(module) ? module.default : module;
|
|
9535
9666
|
}
|
|
9536
9667
|
export {
|
|
@@ -9551,17 +9682,20 @@ export {
|
|
|
9551
9682
|
importApplicationsComponentsGetDefaultUnits,
|
|
9552
9683
|
importApplicationsComponentsGfxUtils,
|
|
9553
9684
|
importApplicationsComponentsLayerOriginUtils,
|
|
9685
|
+
importApplicationsComponentsLayersEffectsJsonUtils,
|
|
9554
9686
|
importApplicationsComponentsPreviewSymbol2D,
|
|
9555
9687
|
importApplicationsComponentsStyleUtils,
|
|
9556
9688
|
importApplicationsComponentsSvgUtils,
|
|
9557
9689
|
importApplicationsComponentsWebStyleSymbolUtils,
|
|
9558
9690
|
importApplicationsExcaliburVideoViewUtils,
|
|
9691
|
+
importApplicationsExperienceBuilderSketchUtils,
|
|
9559
9692
|
importApplicationsMapViewerMediaUtils,
|
|
9560
9693
|
importApplicationsSceneViewerColorUtils,
|
|
9561
9694
|
importApplicationsSceneViewerDevEnvironmentUtils,
|
|
9562
9695
|
importApplicationsSceneViewerLayerUtils,
|
|
9563
9696
|
importApplicationsSceneViewerSceneViewerUtils,
|
|
9564
9697
|
importApplicationsSceneViewerSymbolUtils,
|
|
9698
|
+
importApplicationsUrbanMeshUtils,
|
|
9565
9699
|
importApplicationsWebEditorSketchUtils,
|
|
9566
9700
|
importArcade,
|
|
9567
9701
|
importBasemap,
|
|
@@ -9620,9 +9754,13 @@ export {
|
|
|
9620
9754
|
importGeometryHeightModelInfo,
|
|
9621
9755
|
importGeometryMesh,
|
|
9622
9756
|
importGeometryMultipoint,
|
|
9757
|
+
importGeometryOperatorsAffineTransformOperator,
|
|
9758
|
+
importGeometryOperatorsAreaOperator,
|
|
9759
|
+
importGeometryOperatorsBufferOperator,
|
|
9623
9760
|
importGeometryOperatorsCentroidOperator,
|
|
9624
9761
|
importGeometryOperatorsClipOperator,
|
|
9625
9762
|
importGeometryOperatorsContainsOperator,
|
|
9763
|
+
importGeometryOperatorsConvexHullOperator,
|
|
9626
9764
|
importGeometryOperatorsCrossesOperator,
|
|
9627
9765
|
importGeometryOperatorsCutOperator,
|
|
9628
9766
|
importGeometryOperatorsDensifyOperator,
|
|
@@ -9632,14 +9770,21 @@ export {
|
|
|
9632
9770
|
importGeometryOperatorsEqualsOperator,
|
|
9633
9771
|
importGeometryOperatorsGeneralizeOperator,
|
|
9634
9772
|
importGeometryOperatorsGeodesicBufferOperator,
|
|
9773
|
+
importGeometryOperatorsGeodeticAreaOperator,
|
|
9635
9774
|
importGeometryOperatorsGeodeticDensifyOperator,
|
|
9636
9775
|
importGeometryOperatorsGeodeticDistanceOperator,
|
|
9776
|
+
importGeometryOperatorsGeodeticLengthOperator,
|
|
9777
|
+
importGeometryOperatorsGraphicBufferOperator,
|
|
9637
9778
|
importGeometryOperatorsIntersectionOperator,
|
|
9638
9779
|
importGeometryOperatorsIntersectsOperator,
|
|
9780
|
+
importGeometryOperatorsLengthOperator,
|
|
9781
|
+
importGeometryOperatorsOffsetOperator,
|
|
9639
9782
|
importGeometryOperatorsOverlapsOperator,
|
|
9640
9783
|
importGeometryOperatorsProximityOperator,
|
|
9641
9784
|
importGeometryOperatorsRelateOperator,
|
|
9642
9785
|
importGeometryOperatorsSimplifyOperator,
|
|
9786
|
+
importGeometryOperatorsSupportTransformation,
|
|
9787
|
+
importGeometryOperatorsSymmetricDifferenceOperator,
|
|
9643
9788
|
importGeometryOperatorsTouchesOperator,
|
|
9644
9789
|
importGeometryOperatorsUnionOperator,
|
|
9645
9790
|
importGeometryOperatorsWithinOperator,
|
|
@@ -9704,6 +9849,7 @@ export {
|
|
|
9704
9849
|
importLayersMapNotesLayer,
|
|
9705
9850
|
importLayersMediaLayer,
|
|
9706
9851
|
importLayersOGCFeatureLayer,
|
|
9852
|
+
importLayersOgcWcsUtils,
|
|
9707
9853
|
importLayersOgcWfsUtils,
|
|
9708
9854
|
importLayersOpenStreetMapLayer,
|
|
9709
9855
|
importLayersOrientedImageryLayer,
|
|
@@ -9873,6 +10019,7 @@ export {
|
|
|
9873
10019
|
importRenderersSupportColormapInfo,
|
|
9874
10020
|
importRenderersSupportHeatmapColorStop,
|
|
9875
10021
|
importRenderersSupportJsonUtils,
|
|
10022
|
+
importRenderersSupportRasterPresetRenderer,
|
|
9876
10023
|
importRenderersSupportUniqueValue,
|
|
9877
10024
|
importRenderersSupportUniqueValueClass,
|
|
9878
10025
|
importRenderersSupportUniqueValueGroup,
|
|
@@ -10212,6 +10359,7 @@ export {
|
|
|
10212
10359
|
importViewsLayersCatalogLayerView,
|
|
10213
10360
|
importViewsLayersDimensionLayerView,
|
|
10214
10361
|
importViewsLayersFeatureLayerView,
|
|
10362
|
+
importViewsLayersGroupLayerView,
|
|
10215
10363
|
importViewsLayersImageryLayerView,
|
|
10216
10364
|
importViewsLayersLayerView,
|
|
10217
10365
|
importViewsLayersMediaLayerView,
|
|
@@ -10515,6 +10663,7 @@ export {
|
|
|
10515
10663
|
newGeometryHeightModelInfo,
|
|
10516
10664
|
newGeometryMesh,
|
|
10517
10665
|
newGeometryMultipoint,
|
|
10666
|
+
newGeometryOperatorsSupportTransformation,
|
|
10518
10667
|
newGeometryPoint,
|
|
10519
10668
|
newGeometryPolygon,
|
|
10520
10669
|
newGeometryPolyline,
|
|
@@ -10721,6 +10870,7 @@ export {
|
|
|
10721
10870
|
newRenderersSupportClassBreakInfo,
|
|
10722
10871
|
newRenderersSupportColormapInfo,
|
|
10723
10872
|
newRenderersSupportHeatmapColorStop,
|
|
10873
|
+
newRenderersSupportRasterPresetRenderer,
|
|
10724
10874
|
newRenderersSupportUniqueValue,
|
|
10725
10875
|
newRenderersSupportUniqueValueClass,
|
|
10726
10876
|
newRenderersSupportUniqueValueGroup,
|
|
@@ -10972,6 +11122,7 @@ export {
|
|
|
10972
11122
|
newViewsLayersCatalogLayerView,
|
|
10973
11123
|
newViewsLayersDimensionLayerView,
|
|
10974
11124
|
newViewsLayersFeatureLayerView,
|
|
11125
|
+
newViewsLayersGroupLayerView,
|
|
10975
11126
|
newViewsLayersImageryLayerView,
|
|
10976
11127
|
newViewsLayersLayerView,
|
|
10977
11128
|
newViewsLayersMediaLayerView,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/core-adapter",
|
|
3
|
-
"version": "4.32.0-next.
|
|
3
|
+
"version": "4.32.0-next.8",
|
|
4
4
|
"description": "ArcGIS Core Adapter",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -13,35 +13,11 @@
|
|
|
13
13
|
"require": "./dist/index.cjs"
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
|
-
"publishConfig": {
|
|
17
|
-
"registry": "https://registry.npmjs.org/",
|
|
18
|
-
"access": "public"
|
|
19
|
-
},
|
|
20
16
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
21
|
-
"scripts": {
|
|
22
|
-
"build": "yarn pre:build && yarn build:generate && yarn build:tsup",
|
|
23
|
-
"build:dev": "yarn build",
|
|
24
|
-
"build:generate": "tsx ./scripts/generator.ts",
|
|
25
|
-
"build:tsup": "tsup --silent",
|
|
26
|
-
"pre:build": "rimraf ./src/index.ts",
|
|
27
|
-
"clean": "rimraf .turbo ./dist",
|
|
28
|
-
"update-types": "tsx ./scripts/update-adapter-typings"
|
|
29
|
-
},
|
|
30
17
|
"dependencies": {
|
|
31
18
|
"tslib": "^2.7.0"
|
|
32
19
|
},
|
|
33
|
-
"devDependencies": {
|
|
34
|
-
"@arcgis/typescript-config": "4.32.0-next.5",
|
|
35
|
-
"@types/node": "^20.2.5",
|
|
36
|
-
"resolve-pkg": "^2.0.0",
|
|
37
|
-
"rimraf": "^5.0.0",
|
|
38
|
-
"ts-morph": "^22.0.0",
|
|
39
|
-
"tsup": "^8.3.0",
|
|
40
|
-
"tsx": "^4.19.0",
|
|
41
|
-
"typescript": "~5.4.0"
|
|
42
|
-
},
|
|
43
20
|
"peerDependencies": {
|
|
44
|
-
"@arcgis/core": ">=4.
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
}
|
|
21
|
+
"@arcgis/core": ">=4.32.0-next <4.33"
|
|
22
|
+
}
|
|
23
|
+
}
|