@arcgis/core-adapter 4.32.0-next.4 → 4.32.0-next.7
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 +192 -54
- package/dist/index.d.cts +34 -18
- package/dist/index.d.ts +34 -18
- package/dist/index.js +176 -54
- package/package.json +3 -27
- package/src/index.ts +176 -54
- package/support/api-reference-esm-imports.json +14 -1
- package/support/arcgis.d.ts +1153 -273
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");
|
|
@@ -5605,6 +5616,17 @@ async function newViewsLayersFeatureLayerView(properties) {
|
|
|
5605
5616
|
const ModConstructor = await importViewsLayersFeatureLayerView();
|
|
5606
5617
|
return new ModConstructor(properties);
|
|
5607
5618
|
}
|
|
5619
|
+
async function importViewsLayersGroupLayerView() {
|
|
5620
|
+
if (isAMD) {
|
|
5621
|
+
return await window.$arcgis.import("esri/views/layers/GroupLayerView");
|
|
5622
|
+
}
|
|
5623
|
+
const module = await import("@arcgis/core/views/layers/GroupLayerView.js");
|
|
5624
|
+
return isDefaultModule(module) ? module.default : module;
|
|
5625
|
+
}
|
|
5626
|
+
async function newViewsLayersGroupLayerView(properties) {
|
|
5627
|
+
const ModConstructor = await importViewsLayersGroupLayerView();
|
|
5628
|
+
return new ModConstructor(properties);
|
|
5629
|
+
}
|
|
5608
5630
|
async function importViewsLayersImageryLayerView() {
|
|
5609
5631
|
if (isAMD) {
|
|
5610
5632
|
return await window.$arcgis.import("esri/views/layers/ImageryLayerView");
|
|
@@ -8455,6 +8477,27 @@ async function importGeometryProjection() {
|
|
|
8455
8477
|
const module = await import("@arcgis/core/geometry/projection.js");
|
|
8456
8478
|
return isDefaultModule(module) ? module.default : module;
|
|
8457
8479
|
}
|
|
8480
|
+
async function importGeometryOperatorsAffineTransformOperator() {
|
|
8481
|
+
if (isAMD) {
|
|
8482
|
+
return await window.$arcgis.import("esri/geometry/operators/affineTransformOperator");
|
|
8483
|
+
}
|
|
8484
|
+
const module = await import("@arcgis/core/geometry/operators/affineTransformOperator.js");
|
|
8485
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8486
|
+
}
|
|
8487
|
+
async function importGeometryOperatorsAreaOperator() {
|
|
8488
|
+
if (isAMD) {
|
|
8489
|
+
return await window.$arcgis.import("esri/geometry/operators/areaOperator");
|
|
8490
|
+
}
|
|
8491
|
+
const module = await import("@arcgis/core/geometry/operators/areaOperator.js");
|
|
8492
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8493
|
+
}
|
|
8494
|
+
async function importGeometryOperatorsBufferOperator() {
|
|
8495
|
+
if (isAMD) {
|
|
8496
|
+
return await window.$arcgis.import("esri/geometry/operators/bufferOperator");
|
|
8497
|
+
}
|
|
8498
|
+
const module = await import("@arcgis/core/geometry/operators/bufferOperator.js");
|
|
8499
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8500
|
+
}
|
|
8458
8501
|
async function importGeometryOperatorsCentroidOperator() {
|
|
8459
8502
|
if (isAMD) {
|
|
8460
8503
|
return await window.$arcgis.import("esri/geometry/operators/centroidOperator");
|
|
@@ -8469,18 +8512,18 @@ async function importGeometryOperatorsClipOperator() {
|
|
|
8469
8512
|
const module = await import("@arcgis/core/geometry/operators/clipOperator.js");
|
|
8470
8513
|
return isDefaultModule(module) ? module.default : module;
|
|
8471
8514
|
}
|
|
8472
|
-
async function
|
|
8515
|
+
async function importGeometryOperatorsContainsOperator() {
|
|
8473
8516
|
if (isAMD) {
|
|
8474
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
8517
|
+
return await window.$arcgis.import("esri/geometry/operators/containsOperator");
|
|
8475
8518
|
}
|
|
8476
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
8519
|
+
const module = await import("@arcgis/core/geometry/operators/containsOperator.js");
|
|
8477
8520
|
return isDefaultModule(module) ? module.default : module;
|
|
8478
8521
|
}
|
|
8479
|
-
async function
|
|
8522
|
+
async function importGeometryOperatorsConvexHullOperator() {
|
|
8480
8523
|
if (isAMD) {
|
|
8481
|
-
return await window.$arcgis.import("esri/geometry/operators/
|
|
8524
|
+
return await window.$arcgis.import("esri/geometry/operators/convexHullOperator");
|
|
8482
8525
|
}
|
|
8483
|
-
const module = await import("@arcgis/core/geometry/operators/
|
|
8526
|
+
const module = await import("@arcgis/core/geometry/operators/convexHullOperator.js");
|
|
8484
8527
|
return isDefaultModule(module) ? module.default : module;
|
|
8485
8528
|
}
|
|
8486
8529
|
async function importGeometryOperatorsCrossesOperator() {
|
|
@@ -8490,6 +8533,13 @@ async function importGeometryOperatorsCrossesOperator() {
|
|
|
8490
8533
|
const module = await import("@arcgis/core/geometry/operators/crossesOperator.js");
|
|
8491
8534
|
return isDefaultModule(module) ? module.default : module;
|
|
8492
8535
|
}
|
|
8536
|
+
async function importGeometryOperatorsCutOperator() {
|
|
8537
|
+
if (isAMD) {
|
|
8538
|
+
return await window.$arcgis.import("esri/geometry/operators/cutOperator");
|
|
8539
|
+
}
|
|
8540
|
+
const module = await import("@arcgis/core/geometry/operators/cutOperator.js");
|
|
8541
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8542
|
+
}
|
|
8493
8543
|
async function importGeometryOperatorsDensifyOperator() {
|
|
8494
8544
|
if (isAMD) {
|
|
8495
8545
|
return await window.$arcgis.import("esri/geometry/operators/densifyOperator");
|
|
@@ -8532,6 +8582,13 @@ async function importGeometryOperatorsGeodesicBufferOperator() {
|
|
|
8532
8582
|
const module = await import("@arcgis/core/geometry/operators/geodesicBufferOperator.js");
|
|
8533
8583
|
return isDefaultModule(module) ? module.default : module;
|
|
8534
8584
|
}
|
|
8585
|
+
async function importGeometryOperatorsGeodeticAreaOperator() {
|
|
8586
|
+
if (isAMD) {
|
|
8587
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticAreaOperator");
|
|
8588
|
+
}
|
|
8589
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticAreaOperator.js");
|
|
8590
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8591
|
+
}
|
|
8535
8592
|
async function importGeometryOperatorsGeodeticDensifyOperator() {
|
|
8536
8593
|
if (isAMD) {
|
|
8537
8594
|
return await window.$arcgis.import("esri/geometry/operators/geodeticDensifyOperator");
|
|
@@ -8546,6 +8603,13 @@ async function importGeometryOperatorsGeodeticDistanceOperator() {
|
|
|
8546
8603
|
const module = await import("@arcgis/core/geometry/operators/geodeticDistanceOperator.js");
|
|
8547
8604
|
return isDefaultModule(module) ? module.default : module;
|
|
8548
8605
|
}
|
|
8606
|
+
async function importGeometryOperatorsGeodeticLengthOperator() {
|
|
8607
|
+
if (isAMD) {
|
|
8608
|
+
return await window.$arcgis.import("esri/geometry/operators/geodeticLengthOperator");
|
|
8609
|
+
}
|
|
8610
|
+
const module = await import("@arcgis/core/geometry/operators/geodeticLengthOperator.js");
|
|
8611
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8612
|
+
}
|
|
8549
8613
|
async function importGeometryOperatorsGeneralizeOperator() {
|
|
8550
8614
|
if (isAMD) {
|
|
8551
8615
|
return await window.$arcgis.import("esri/geometry/operators/generalizeOperator");
|
|
@@ -8553,6 +8617,13 @@ async function importGeometryOperatorsGeneralizeOperator() {
|
|
|
8553
8617
|
const module = await import("@arcgis/core/geometry/operators/generalizeOperator.js");
|
|
8554
8618
|
return isDefaultModule(module) ? module.default : module;
|
|
8555
8619
|
}
|
|
8620
|
+
async function importGeometryOperatorsGraphicBufferOperator() {
|
|
8621
|
+
if (isAMD) {
|
|
8622
|
+
return await window.$arcgis.import("esri/geometry/operators/graphicBufferOperator");
|
|
8623
|
+
}
|
|
8624
|
+
const module = await import("@arcgis/core/geometry/operators/graphicBufferOperator.js");
|
|
8625
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8626
|
+
}
|
|
8556
8627
|
async function importGeometryOperatorsIntersectionOperator() {
|
|
8557
8628
|
if (isAMD) {
|
|
8558
8629
|
return await window.$arcgis.import("esri/geometry/operators/intersectionOperator");
|
|
@@ -8567,6 +8638,20 @@ async function importGeometryOperatorsIntersectsOperator() {
|
|
|
8567
8638
|
const module = await import("@arcgis/core/geometry/operators/intersectsOperator.js");
|
|
8568
8639
|
return isDefaultModule(module) ? module.default : module;
|
|
8569
8640
|
}
|
|
8641
|
+
async function importGeometryOperatorsLengthOperator() {
|
|
8642
|
+
if (isAMD) {
|
|
8643
|
+
return await window.$arcgis.import("esri/geometry/operators/lengthOperator");
|
|
8644
|
+
}
|
|
8645
|
+
const module = await import("@arcgis/core/geometry/operators/lengthOperator.js");
|
|
8646
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8647
|
+
}
|
|
8648
|
+
async function importGeometryOperatorsOffsetOperator() {
|
|
8649
|
+
if (isAMD) {
|
|
8650
|
+
return await window.$arcgis.import("esri/geometry/operators/offsetOperator");
|
|
8651
|
+
}
|
|
8652
|
+
const module = await import("@arcgis/core/geometry/operators/offsetOperator.js");
|
|
8653
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8654
|
+
}
|
|
8570
8655
|
async function importGeometryOperatorsOverlapsOperator() {
|
|
8571
8656
|
if (isAMD) {
|
|
8572
8657
|
return await window.$arcgis.import("esri/geometry/operators/overlapsOperator");
|
|
@@ -8595,6 +8680,13 @@ async function importGeometryOperatorsSimplifyOperator() {
|
|
|
8595
8680
|
const module = await import("@arcgis/core/geometry/operators/simplifyOperator.js");
|
|
8596
8681
|
return isDefaultModule(module) ? module.default : module;
|
|
8597
8682
|
}
|
|
8683
|
+
async function importGeometryOperatorsSymmetricDifferenceOperator() {
|
|
8684
|
+
if (isAMD) {
|
|
8685
|
+
return await window.$arcgis.import("esri/geometry/operators/symmetricDifferenceOperator");
|
|
8686
|
+
}
|
|
8687
|
+
const module = await import("@arcgis/core/geometry/operators/symmetricDifferenceOperator.js");
|
|
8688
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8689
|
+
}
|
|
8598
8690
|
async function importGeometryOperatorsTouchesOperator() {
|
|
8599
8691
|
if (isAMD) {
|
|
8600
8692
|
return await window.$arcgis.import("esri/geometry/operators/touchesOperator");
|
|
@@ -8679,6 +8771,13 @@ async function importLayersOgcWfsUtils() {
|
|
|
8679
8771
|
const module = await import("@arcgis/core/layers/ogc/wfsUtils.js");
|
|
8680
8772
|
return isDefaultModule(module) ? module.default : module;
|
|
8681
8773
|
}
|
|
8774
|
+
async function importLayersOgcWcsUtils() {
|
|
8775
|
+
if (isAMD) {
|
|
8776
|
+
return await window.$arcgis.import("esri/layers/ogc/wcsUtils");
|
|
8777
|
+
}
|
|
8778
|
+
const module = await import("@arcgis/core/layers/ogc/wcsUtils.js");
|
|
8779
|
+
return isDefaultModule(module) ? module.default : module;
|
|
8780
|
+
}
|
|
8682
8781
|
async function importLayersSupportArcadeUtils() {
|
|
8683
8782
|
if (isAMD) {
|
|
8684
8783
|
return await window.$arcgis.import("esri/layers/support/arcadeUtils");
|
|
@@ -9414,60 +9513,60 @@ async function importWidgetsSupportWidget() {
|
|
|
9414
9513
|
const module = await import("@arcgis/core/widgets/support/widget.js");
|
|
9415
9514
|
return isDefaultModule(module) ? module.default : module;
|
|
9416
9515
|
}
|
|
9417
|
-
async function
|
|
9516
|
+
async function importApplicationsComponentsBasemapUtils() {
|
|
9418
9517
|
if (isAMD) {
|
|
9419
|
-
return await window.$arcgis.import("esri/applications/
|
|
9518
|
+
return await window.$arcgis.import("esri/applications/Components/basemapUtils");
|
|
9420
9519
|
}
|
|
9421
|
-
const module = await import("@arcgis/core/applications/
|
|
9520
|
+
const module = await import("@arcgis/core/applications/Components/basemapUtils.js");
|
|
9422
9521
|
return isDefaultModule(module) ? module.default : module;
|
|
9423
9522
|
}
|
|
9424
|
-
async function
|
|
9523
|
+
async function importApplicationsComponentsDrawUtils() {
|
|
9425
9524
|
if (isAMD) {
|
|
9426
|
-
return await window.$arcgis.import("esri/applications/
|
|
9525
|
+
return await window.$arcgis.import("esri/applications/Components/drawUtils");
|
|
9427
9526
|
}
|
|
9428
|
-
const module = await import("@arcgis/core/applications/
|
|
9527
|
+
const module = await import("@arcgis/core/applications/Components/drawUtils.js");
|
|
9429
9528
|
return isDefaultModule(module) ? module.default : module;
|
|
9430
9529
|
}
|
|
9431
|
-
async function
|
|
9530
|
+
async function importApplicationsComponentsGetDefaultUnits() {
|
|
9432
9531
|
if (isAMD) {
|
|
9433
|
-
return await window.$arcgis.import("esri/applications/
|
|
9532
|
+
return await window.$arcgis.import("esri/applications/Components/getDefaultUnits");
|
|
9434
9533
|
}
|
|
9435
|
-
const module = await import("@arcgis/core/applications/
|
|
9534
|
+
const module = await import("@arcgis/core/applications/Components/getDefaultUnits.js");
|
|
9436
9535
|
return isDefaultModule(module) ? module.default : module;
|
|
9437
9536
|
}
|
|
9438
|
-
async function
|
|
9537
|
+
async function importApplicationsComponentsGfxUtils() {
|
|
9439
9538
|
if (isAMD) {
|
|
9440
|
-
return await window.$arcgis.import("esri/applications/
|
|
9539
|
+
return await window.$arcgis.import("esri/applications/Components/gfxUtils");
|
|
9441
9540
|
}
|
|
9442
|
-
const module = await import("@arcgis/core/applications/
|
|
9541
|
+
const module = await import("@arcgis/core/applications/Components/gfxUtils.js");
|
|
9443
9542
|
return isDefaultModule(module) ? module.default : module;
|
|
9444
9543
|
}
|
|
9445
|
-
async function
|
|
9544
|
+
async function importApplicationsComponentsLayerOriginUtils() {
|
|
9446
9545
|
if (isAMD) {
|
|
9447
|
-
return await window.$arcgis.import("esri/applications/
|
|
9546
|
+
return await window.$arcgis.import("esri/applications/Components/layerOriginUtils");
|
|
9448
9547
|
}
|
|
9449
|
-
const module = await import("@arcgis/core/applications/
|
|
9548
|
+
const module = await import("@arcgis/core/applications/Components/layerOriginUtils.js");
|
|
9450
9549
|
return isDefaultModule(module) ? module.default : module;
|
|
9451
9550
|
}
|
|
9452
|
-
async function
|
|
9551
|
+
async function importApplicationsComponentsPreviewSymbol2D() {
|
|
9453
9552
|
if (isAMD) {
|
|
9454
|
-
return await window.$arcgis.import("esri/applications/
|
|
9553
|
+
return await window.$arcgis.import("esri/applications/Components/previewSymbol2D");
|
|
9455
9554
|
}
|
|
9456
|
-
const module = await import("@arcgis/core/applications/
|
|
9555
|
+
const module = await import("@arcgis/core/applications/Components/previewSymbol2D.js");
|
|
9457
9556
|
return isDefaultModule(module) ? module.default : module;
|
|
9458
9557
|
}
|
|
9459
|
-
async function
|
|
9558
|
+
async function importApplicationsComponentsStyleUtils() {
|
|
9460
9559
|
if (isAMD) {
|
|
9461
|
-
return await window.$arcgis.import("esri/applications/
|
|
9560
|
+
return await window.$arcgis.import("esri/applications/Components/styleUtils");
|
|
9462
9561
|
}
|
|
9463
|
-
const module = await import("@arcgis/core/applications/
|
|
9562
|
+
const module = await import("@arcgis/core/applications/Components/styleUtils.js");
|
|
9464
9563
|
return isDefaultModule(module) ? module.default : module;
|
|
9465
9564
|
}
|
|
9466
|
-
async function
|
|
9565
|
+
async function importApplicationsComponentsSvgUtils() {
|
|
9467
9566
|
if (isAMD) {
|
|
9468
|
-
return await window.$arcgis.import("esri/applications/
|
|
9567
|
+
return await window.$arcgis.import("esri/applications/Components/svgUtils");
|
|
9469
9568
|
}
|
|
9470
|
-
const module = await import("@arcgis/core/applications/
|
|
9569
|
+
const module = await import("@arcgis/core/applications/Components/svgUtils.js");
|
|
9471
9570
|
return isDefaultModule(module) ? module.default : module;
|
|
9472
9571
|
}
|
|
9473
9572
|
async function importApplicationsComponentsWebStyleSymbolUtils() {
|
|
@@ -9477,60 +9576,67 @@ async function importApplicationsComponentsWebStyleSymbolUtils() {
|
|
|
9477
9576
|
const module = await import("@arcgis/core/applications/Components/webStyleSymbolUtils.js");
|
|
9478
9577
|
return isDefaultModule(module) ? module.default : module;
|
|
9479
9578
|
}
|
|
9480
|
-
async function
|
|
9579
|
+
async function importApplicationsExcaliburVideoViewUtils() {
|
|
9481
9580
|
if (isAMD) {
|
|
9482
|
-
return await window.$arcgis.import("esri/applications/
|
|
9581
|
+
return await window.$arcgis.import("esri/applications/Excalibur/videoViewUtils");
|
|
9483
9582
|
}
|
|
9484
|
-
const module = await import("@arcgis/core/applications/
|
|
9583
|
+
const module = await import("@arcgis/core/applications/Excalibur/videoViewUtils.js");
|
|
9485
9584
|
return isDefaultModule(module) ? module.default : module;
|
|
9486
9585
|
}
|
|
9487
|
-
async function
|
|
9586
|
+
async function importApplicationsMapViewerMediaUtils() {
|
|
9488
9587
|
if (isAMD) {
|
|
9489
|
-
return await window.$arcgis.import("esri/applications/
|
|
9588
|
+
return await window.$arcgis.import("esri/applications/MapViewer/mediaUtils");
|
|
9490
9589
|
}
|
|
9491
|
-
const module = await import("@arcgis/core/applications/
|
|
9590
|
+
const module = await import("@arcgis/core/applications/MapViewer/mediaUtils.js");
|
|
9492
9591
|
return isDefaultModule(module) ? module.default : module;
|
|
9493
9592
|
}
|
|
9494
|
-
async function
|
|
9593
|
+
async function importApplicationsSceneViewerColorUtils() {
|
|
9495
9594
|
if (isAMD) {
|
|
9496
|
-
return await window.$arcgis.import("esri/applications/
|
|
9595
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/colorUtils");
|
|
9497
9596
|
}
|
|
9498
|
-
const module = await import("@arcgis/core/applications/
|
|
9597
|
+
const module = await import("@arcgis/core/applications/SceneViewer/colorUtils.js");
|
|
9499
9598
|
return isDefaultModule(module) ? module.default : module;
|
|
9500
9599
|
}
|
|
9501
|
-
async function
|
|
9600
|
+
async function importApplicationsSceneViewerDevEnvironmentUtils() {
|
|
9502
9601
|
if (isAMD) {
|
|
9503
|
-
return await window.$arcgis.import("esri/applications/
|
|
9602
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/devEnvironmentUtils");
|
|
9504
9603
|
}
|
|
9505
|
-
const module = await import("@arcgis/core/applications/
|
|
9604
|
+
const module = await import("@arcgis/core/applications/SceneViewer/devEnvironmentUtils.js");
|
|
9506
9605
|
return isDefaultModule(module) ? module.default : module;
|
|
9507
9606
|
}
|
|
9508
|
-
async function
|
|
9607
|
+
async function importApplicationsSceneViewerLayerUtils() {
|
|
9509
9608
|
if (isAMD) {
|
|
9510
|
-
return await window.$arcgis.import("esri/applications/
|
|
9609
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/layerUtils");
|
|
9511
9610
|
}
|
|
9512
|
-
const module = await import("@arcgis/core/applications/
|
|
9611
|
+
const module = await import("@arcgis/core/applications/SceneViewer/layerUtils.js");
|
|
9513
9612
|
return isDefaultModule(module) ? module.default : module;
|
|
9514
9613
|
}
|
|
9515
|
-
async function
|
|
9614
|
+
async function importApplicationsSceneViewerSceneViewerUtils() {
|
|
9516
9615
|
if (isAMD) {
|
|
9517
|
-
return await window.$arcgis.import("esri/applications/
|
|
9616
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/sceneViewerUtils");
|
|
9518
9617
|
}
|
|
9519
|
-
const module = await import("@arcgis/core/applications/
|
|
9618
|
+
const module = await import("@arcgis/core/applications/SceneViewer/sceneViewerUtils.js");
|
|
9520
9619
|
return isDefaultModule(module) ? module.default : module;
|
|
9521
9620
|
}
|
|
9522
|
-
async function
|
|
9621
|
+
async function importApplicationsSceneViewerSymbolUtils() {
|
|
9523
9622
|
if (isAMD) {
|
|
9524
|
-
return await window.$arcgis.import("esri/applications/
|
|
9623
|
+
return await window.$arcgis.import("esri/applications/SceneViewer/symbolUtils");
|
|
9525
9624
|
}
|
|
9526
|
-
const module = await import("@arcgis/core/applications/
|
|
9625
|
+
const module = await import("@arcgis/core/applications/SceneViewer/symbolUtils.js");
|
|
9527
9626
|
return isDefaultModule(module) ? module.default : module;
|
|
9528
9627
|
}
|
|
9529
|
-
async function
|
|
9628
|
+
async function importApplicationsUrbanMeshUtils() {
|
|
9530
9629
|
if (isAMD) {
|
|
9531
|
-
return await window.$arcgis.import("esri/applications/
|
|
9630
|
+
return await window.$arcgis.import("esri/applications/Urban/meshUtils");
|
|
9532
9631
|
}
|
|
9533
|
-
const module = await import("@arcgis/core/applications/
|
|
9632
|
+
const module = await import("@arcgis/core/applications/Urban/meshUtils.js");
|
|
9633
|
+
return isDefaultModule(module) ? module.default : module;
|
|
9634
|
+
}
|
|
9635
|
+
async function importApplicationsWebEditorSketchUtils() {
|
|
9636
|
+
if (isAMD) {
|
|
9637
|
+
return await window.$arcgis.import("esri/applications/WebEditor/sketchUtils");
|
|
9638
|
+
}
|
|
9639
|
+
const module = await import("@arcgis/core/applications/WebEditor/sketchUtils.js");
|
|
9534
9640
|
return isDefaultModule(module) ? module.default : module;
|
|
9535
9641
|
}
|
|
9536
9642
|
export {
|
|
@@ -9562,6 +9668,7 @@ export {
|
|
|
9562
9668
|
importApplicationsSceneViewerLayerUtils,
|
|
9563
9669
|
importApplicationsSceneViewerSceneViewerUtils,
|
|
9564
9670
|
importApplicationsSceneViewerSymbolUtils,
|
|
9671
|
+
importApplicationsUrbanMeshUtils,
|
|
9565
9672
|
importApplicationsWebEditorSketchUtils,
|
|
9566
9673
|
importArcade,
|
|
9567
9674
|
importBasemap,
|
|
@@ -9620,9 +9727,13 @@ export {
|
|
|
9620
9727
|
importGeometryHeightModelInfo,
|
|
9621
9728
|
importGeometryMesh,
|
|
9622
9729
|
importGeometryMultipoint,
|
|
9730
|
+
importGeometryOperatorsAffineTransformOperator,
|
|
9731
|
+
importGeometryOperatorsAreaOperator,
|
|
9732
|
+
importGeometryOperatorsBufferOperator,
|
|
9623
9733
|
importGeometryOperatorsCentroidOperator,
|
|
9624
9734
|
importGeometryOperatorsClipOperator,
|
|
9625
9735
|
importGeometryOperatorsContainsOperator,
|
|
9736
|
+
importGeometryOperatorsConvexHullOperator,
|
|
9626
9737
|
importGeometryOperatorsCrossesOperator,
|
|
9627
9738
|
importGeometryOperatorsCutOperator,
|
|
9628
9739
|
importGeometryOperatorsDensifyOperator,
|
|
@@ -9632,14 +9743,21 @@ export {
|
|
|
9632
9743
|
importGeometryOperatorsEqualsOperator,
|
|
9633
9744
|
importGeometryOperatorsGeneralizeOperator,
|
|
9634
9745
|
importGeometryOperatorsGeodesicBufferOperator,
|
|
9746
|
+
importGeometryOperatorsGeodeticAreaOperator,
|
|
9635
9747
|
importGeometryOperatorsGeodeticDensifyOperator,
|
|
9636
9748
|
importGeometryOperatorsGeodeticDistanceOperator,
|
|
9749
|
+
importGeometryOperatorsGeodeticLengthOperator,
|
|
9750
|
+
importGeometryOperatorsGraphicBufferOperator,
|
|
9637
9751
|
importGeometryOperatorsIntersectionOperator,
|
|
9638
9752
|
importGeometryOperatorsIntersectsOperator,
|
|
9753
|
+
importGeometryOperatorsLengthOperator,
|
|
9754
|
+
importGeometryOperatorsOffsetOperator,
|
|
9639
9755
|
importGeometryOperatorsOverlapsOperator,
|
|
9640
9756
|
importGeometryOperatorsProximityOperator,
|
|
9641
9757
|
importGeometryOperatorsRelateOperator,
|
|
9642
9758
|
importGeometryOperatorsSimplifyOperator,
|
|
9759
|
+
importGeometryOperatorsSupportTransformation,
|
|
9760
|
+
importGeometryOperatorsSymmetricDifferenceOperator,
|
|
9643
9761
|
importGeometryOperatorsTouchesOperator,
|
|
9644
9762
|
importGeometryOperatorsUnionOperator,
|
|
9645
9763
|
importGeometryOperatorsWithinOperator,
|
|
@@ -9704,6 +9822,7 @@ export {
|
|
|
9704
9822
|
importLayersMapNotesLayer,
|
|
9705
9823
|
importLayersMediaLayer,
|
|
9706
9824
|
importLayersOGCFeatureLayer,
|
|
9825
|
+
importLayersOgcWcsUtils,
|
|
9707
9826
|
importLayersOgcWfsUtils,
|
|
9708
9827
|
importLayersOpenStreetMapLayer,
|
|
9709
9828
|
importLayersOrientedImageryLayer,
|
|
@@ -10212,6 +10331,7 @@ export {
|
|
|
10212
10331
|
importViewsLayersCatalogLayerView,
|
|
10213
10332
|
importViewsLayersDimensionLayerView,
|
|
10214
10333
|
importViewsLayersFeatureLayerView,
|
|
10334
|
+
importViewsLayersGroupLayerView,
|
|
10215
10335
|
importViewsLayersImageryLayerView,
|
|
10216
10336
|
importViewsLayersLayerView,
|
|
10217
10337
|
importViewsLayersMediaLayerView,
|
|
@@ -10515,6 +10635,7 @@ export {
|
|
|
10515
10635
|
newGeometryHeightModelInfo,
|
|
10516
10636
|
newGeometryMesh,
|
|
10517
10637
|
newGeometryMultipoint,
|
|
10638
|
+
newGeometryOperatorsSupportTransformation,
|
|
10518
10639
|
newGeometryPoint,
|
|
10519
10640
|
newGeometryPolygon,
|
|
10520
10641
|
newGeometryPolyline,
|
|
@@ -10972,6 +11093,7 @@ export {
|
|
|
10972
11093
|
newViewsLayersCatalogLayerView,
|
|
10973
11094
|
newViewsLayersDimensionLayerView,
|
|
10974
11095
|
newViewsLayersFeatureLayerView,
|
|
11096
|
+
newViewsLayersGroupLayerView,
|
|
10975
11097
|
newViewsLayersImageryLayerView,
|
|
10976
11098
|
newViewsLayersLayerView,
|
|
10977
11099
|
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.7",
|
|
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.4",
|
|
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
21
|
"@arcgis/core": ">=4.31.0-next <4.32"
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
}
|
|
22
|
+
}
|
|
23
|
+
}
|