@arcgis/core 5.2.0-next.68 → 5.2.0-next.69

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.
Files changed (96) hide show
  1. package/arcgisGlobal.d.ts +2 -0
  2. package/assets/esri/core/workers/RemoteClient.js +1 -1
  3. package/assets/esri/core/workers/chunks/7dd672c25beb8813cc75.js +2 -0
  4. package/assets/esri/core/workers/chunks/{d7267f429a051943187b.js → 873d8332e2149eb1b36a.js} +1 -1
  5. package/assets/esri/core/workers/chunks/b526055794e64b0227ca.js +256 -0
  6. package/assets/esri/core/workers/chunks/be291d920ebc68fde02b.js +2 -0
  7. package/assets/esri/core/workers/chunks/c10a0eebd935472d8fae.js +1 -0
  8. package/assets/esri/core/workers/chunks/d198ecb1fe3690d6092f.js +2 -0
  9. package/assets/esri/core/workers/chunks/d303621c902330be5035.js +1 -0
  10. package/assets/esri/core/workers/chunks/f4e813ead56d963b16b8.js +1 -0
  11. package/assets/esri/core/workers/chunks/{8a12bb50b3ac9e651625.js → f6f1122bed931f1d960b.js} +1 -1
  12. package/assets/esri/core/workers/chunks/f82cd34a79c8aa58d40c.js +2 -0
  13. package/chunks/GaussianSplat.glsl.js +10 -9
  14. package/chunks/GaussianSplatDepth.glsl.js +11 -0
  15. package/chunks/GaussianSplatShadow.glsl.js +7 -16
  16. package/config.js +1 -1
  17. package/kernel.js +1 -1
  18. package/layers/graphics/controllers/I3SOnDemandController.js +1 -1
  19. package/networks/RulesTable.js +1 -1
  20. package/networks/UtilityNetwork.js +1 -1
  21. package/networks/support/utils.js +1 -1
  22. package/package.json +2 -2
  23. package/support/revision.js +1 -1
  24. package/views/2d/engine/imagery/RasterVFDisplayObject.js +1 -1
  25. package/views/2d/interactive/editingTools/ControlPointsTransformTool.js +1 -1
  26. package/views/2d/layers/support/MediaLayerInteraction.js +1 -1
  27. package/views/2d/layers/support/MediaLayerInteractionOptions.d.ts +46 -0
  28. package/views/2d/layers/support/MediaLayerInteractionOptions.js +1 -1
  29. package/views/2d/layers/support/MediaLayerInteractionReshapeOptions.d.ts +22 -0
  30. package/views/2d/layers/support/MediaLayerInteractionReshapeOptions.js +2 -0
  31. package/views/3d/analysis/ShadowCastAnalysisView3D.js +1 -1
  32. package/views/3d/analysis/Viewshed/ViewshedEditTool.js +1 -1
  33. package/views/3d/analysis/Viewshed/ViewshedPlacementController.js +1 -1
  34. package/views/3d/analysis/Viewshed/ViewshedSnappingController.js +1 -1
  35. package/views/3d/analysis/Viewshed/ViewshedTool.js +1 -1
  36. package/views/3d/analysis/Viewshed/placementUtils.js +1 -1
  37. package/views/3d/layers/GaussianSplatLayerView3D.js +1 -1
  38. package/views/3d/layers/I3SMeshView3D.js +1 -1
  39. package/views/3d/layers/i3s/I3SIntersectionHandler.js +1 -1
  40. package/views/3d/layers/i3s/I3SViewportQueries.js +1 -1
  41. package/views/3d/layers/i3s/PointCloudRenderer.js +1 -1
  42. package/views/3d/layers/i3s/SweptSphereVolume.js +2 -0
  43. package/views/3d/layers/support/MediaLayerInteractionReshapeOptions.d.ts +0 -1
  44. package/views/3d/state/helpers/SceneIntersectionHelper.js +1 -1
  45. package/views/3d/support/hitTest.js +1 -1
  46. package/views/3d/webgl/RenderCamera.js +1 -1
  47. package/views/3d/webgl-engine/collections/Component/ComponentObjectCollection.js +1 -1
  48. package/views/3d/webgl-engine/collections/Component/ComponentObjectElevationAgnosticBVH.js +1 -1
  49. package/views/3d/webgl-engine/collections/Component/ComponentObjectFixedBVH.js +1 -1
  50. package/views/3d/webgl-engine/collections/Component/ElevationAgnosticBVH.js +1 -1
  51. package/views/3d/webgl-engine/collections/Component/IntersectionGeometry.js +1 -1
  52. package/views/3d/webgl-engine/lib/BindParameters.js +1 -1
  53. package/views/3d/webgl-engine/lib/GaussianSplatDepthRenderer.js +2 -0
  54. package/views/3d/webgl-engine/lib/GaussianSplatRenderer.js +1 -1
  55. package/views/3d/webgl-engine/lib/GaussianSplatShadows.js +1 -1
  56. package/views/3d/webgl-engine/lib/Renderer.js +1 -1
  57. package/views/3d/webgl-engine/lib/ShadowAccumulator.js +1 -1
  58. package/views/3d/webgl-engine/lib/screenPolygonOverlapUtils.js +1 -1
  59. package/views/3d/webgl-engine/shaders/GaussianSplat.glsl.js +1 -1
  60. package/views/3d/webgl-engine/shaders/GaussianSplatDepth.glsl.js +2 -0
  61. package/views/3d/webgl-engine/shaders/GaussianSplatDepthPolicy.js +2 -0
  62. package/views/3d/webgl-engine/shaders/GaussianSplatDepthTechnique.js +2 -0
  63. package/views/3d/webgl-engine/shaders/GaussianSplatPass.glsl.js +97 -0
  64. package/views/3d/webgl-engine/shaders/GaussianSplatShadow.glsl.js +1 -1
  65. package/views/3d/webgl-engine/shaders/GaussianSplatShadowTechnique.js +1 -1
  66. package/views/3d/webgl-engine/shaders/GaussianSplatTechniqueConfiguration.js +1 -1
  67. package/views/3d/webgl.js +1 -1
  68. package/widgets/Editor/AddAssociationWorkflow.js +1 -1
  69. package/widgets/Editor/AddAssociationWorkflowData.js +1 -1
  70. package/widgets/Editor/legacy/AddAssociationWorkflow.js +1 -1
  71. package/widgets/Editor/legacy/AddAssociationWorkflowData.js +1 -1
  72. package/widgets/FeatureForm/FeatureFormUtilityNetworkAssociations/AssociationDetails.js +1 -1
  73. package/widgets/FeatureForm/FeatureFormUtilityNetworkAssociations/UtilityNetworkAssociationItemList.js +1 -1
  74. package/widgets/FeatureForm/UtilityNetworkAssociationAddAssociationViewModel.js +1 -1
  75. package/widgets/OrientedImageryViewer/components/ImageViewerViewModel.js +1 -1
  76. package/widgets/OrientedImageryViewer/support/panConstraint.js +1 -1
  77. package/widgets/Search/support/locatorUtils.js +1 -1
  78. package/widgets/UtilityNetworkTrace/UtilityNetworkTraceFeature.js +1 -1
  79. package/widgets/UtilityNetworkTrace/UtilityNetworkTraceFeaturesDrillIn.js +1 -1
  80. package/widgets/UtilityNetworkTrace/UtilityNetworkTraceViewModel.js +1 -1
  81. package/widgets/support/UtilityNetworkAssociations/FeatureUtilityNetworkAssociationsViewModel.js +1 -1
  82. package/widgets/support/UtilityNetworkAssociations/utils/createAssociation.js +1 -1
  83. package/widgets/support/UtilityNetworkAssociations/utils/isFromElement.js +1 -1
  84. package/assets/esri/core/workers/chunks/2426601b8cae7f06af4d.js +0 -256
  85. package/assets/esri/core/workers/chunks/45de90b78485d9326791.js +0 -1
  86. package/assets/esri/core/workers/chunks/581318d4d3b3152fd93f.js +0 -2
  87. package/assets/esri/core/workers/chunks/7bd3a11d3ade0b948db7.js +0 -1
  88. package/assets/esri/core/workers/chunks/8a9d782aee5ab47ba07f.js +0 -2
  89. package/assets/esri/core/workers/chunks/c270b29307e04c4dafae.js +0 -2
  90. package/assets/esri/core/workers/chunks/f276c6f5cbc1aaec0403.js +0 -1
  91. package/assets/esri/core/workers/chunks/fac8add42aa317f8f514.js +0 -2
  92. package/views/3d/layers/i3s/SphereCone.js +0 -2
  93. /package/assets/esri/core/workers/chunks/{8a9d782aee5ab47ba07f.js.LICENSE.txt → 7dd672c25beb8813cc75.js.LICENSE.txt} +0 -0
  94. /package/assets/esri/core/workers/chunks/{fac8add42aa317f8f514.js.LICENSE.txt → be291d920ebc68fde02b.js.LICENSE.txt} +0 -0
  95. /package/assets/esri/core/workers/chunks/{c270b29307e04c4dafae.js.LICENSE.txt → d198ecb1fe3690d6092f.js.LICENSE.txt} +0 -0
  96. /package/assets/esri/core/workers/chunks/{581318d4d3b3152fd93f.js.LICENSE.txt → f82cd34a79c8aa58d40c.js.LICENSE.txt} +0 -0