@agrotools1/at-components 0.6.16 → 0.6.17
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/dist/Map/Map.d.ts +27 -4
- package/dist/Map/Map.vue.js +1 -1
- package/dist/Map/Map.vue2.js +162 -121
- package/dist/Stepper/Stepper.vue.js +48 -35
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/analysis/SlicePlane.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/ImageMaterial.glsl.js +56 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/Laserlines.glsl.js +7 -7
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/LineCallout.glsl.js +138 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/LineMarker.glsl.js +200 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/NativeLine.glsl.js +40 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/Path.glsl.js +111 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/Pattern.glsl.js +185 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/SlicePlaneMaterial.glsl.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/WaterSurface.glsl.js +158 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/vec32.js +13 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/MapUtils.js +18 -11
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/PooledArray.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/accessorSupport/diffUtils.js +75 -48
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/arrayUtils.js +59 -53
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/asyncUtils.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/colorUtils.js +77 -59
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/fontUtils.js +22 -18
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/handleUtils.js +12 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/libs/gl-matrix-2/factories/mat2f64.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/libs/gl-matrix-2/math/mat2.js +104 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/libs/gl-matrix-2/math/mat4.js +12 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/mathUtils.js +29 -25
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/quantityFormatUtils.js +115 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/quantityUtils.js +38 -19
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/reactiveUtils.js +63 -49
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/scheduling.js +56 -48
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/time.js +9 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/unitFormatUtils.js +95 -41
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/unitUtils.js +130 -89
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/Circle.js +82 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/ellipsoidUtils.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectBoundingRect.js +11 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectPointToVector.js +16 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectPolygonToWGS84ComparableLonLat.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectPolylineToWGS84ComparableLonLat.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectVectorToPoint.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/spatialReferenceEllipsoidUtils.js +12 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/FloatArray.js +12 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/Indices.js +26 -22
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/aaBoundingBox.js +133 -74
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/aaBoundingRect.js +78 -49
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/axisAngleDegrees.js +13 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/buffer/BufferView.js +93 -93
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/coordsUtils.js +132 -68
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/geodesicUtils.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/heightModelInfoUtils.js +71 -19
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/lineSegment.js +12 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/meshUtils/External.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/plane.js +107 -89
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/ray.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/rotate.js +44 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/triangle.js +16 -11
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/vector.js +14 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/vectorStacks.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/graphics/data/QueryEngine.js +12 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/graphics/dehydratedFeatures.js +64 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/graphics/hydratedFeatures.js +54 -46
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/graphics/sources/support/uploadAssets.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/mixins/ArcGISMapService.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/mixins/PortalLayer.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/support/ElevationSampler.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/support/layerUtils.js +44 -24
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/support/vectorTileLayerLoader.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/libs/maquette/h.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/UniqueValueRenderer.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/support/AuthoringInfo.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/support/numberUtils.js +65 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/support/rendererConversion.js +55 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/support/renderingInfoUtils.js +115 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/visualVariables/support/visualVariableUtils.js +195 -149
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/support/actions/ActionSlider.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/support/basemapUtils.js +31 -26
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/support/elevationInfoUtils.js +77 -57
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/support/progressUtils.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/callouts/calloutUtils.js +20 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/cim/CIMSymbolRasterizer.js +80 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/cim/utils.js +100 -76
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/IconSymbol3DLayerResource.js +11 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/ObjectSymbol3DLayerResource.js +7 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/cimSymbolUtils.js +169 -16
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/defaults3D.js +31 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/defaultsJSON.js +8 -7
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/gfxUtils.js +89 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewCIMSymbol.js +47 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewSymbol2D.js +142 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewSymbol3D.js +288 -37
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewUtils.js +87 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewWebStyleSymbol.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/renderUtils.js +82 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/styleUtils.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/svgUtils.js +271 -7
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/symbolLayerUtils3D.js +34 -16
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/symbolUtils.js +147 -41
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/utils.js +169 -128
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/ControlPointsTransformTool.js +149 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/MediaTransformToolsWrapper.js +78 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/TransformTool.js +218 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/draw/DrawGraphicTool2D.js +70 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/draw/symbols.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/DragManipulation.js +50 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/Manipulation.js +28 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/RotateManipulation.js +50 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/ScaleManipulation.js +78 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/utils.js +54 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools.js +10 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/FeatureLayerView2D.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/ImageryLayerView2D.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/TileLayerView2D.js +8 -8
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/features/Processor.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/support/ExportStrategy.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/navigation/MapViewNavigation.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/ResizeManipulator.js +31 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/RotateManipulator.js +38 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/ShiftManipulator.js +88 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/sliceToolConfig.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/sliceToolUtils.js +129 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/images/Factory.js +11 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/images/generateTextures.js +27 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/images/heading-rotate-svg.js +4 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/environment/CloudsParameters.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/environment/weather.js +3 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/SegmentLabels3D.js +24 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/GrabbingState.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/ManipulatorState.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/ManipulatorType.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/dragEventPipeline3D.js +121 -67
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/draw/DrawGraphicTool3D.js +138 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/geometryUtils.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/isSupportedGraphicUtils.js +26 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/lineGraphicVisualElementUtils.js +74 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/Manipulation.js +53 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveManipulation.js +84 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveXYAxisManipulation.js +116 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveXYDiscManipulation.js +90 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveXYGraphicManipulation.js +36 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveZManipulation.js +96 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/config.js +29 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/moveUtils.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulatorUtils.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/meshFastUpdateUtils.js +34 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/moveGraphic/GraphicMoveTool.js +256 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/moveGraphic/isSupportedGraphic.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/originGraphicVisualElementUtils.js +94 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/reshapeGraphic/GraphicReshapeTool.js +93 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/reshapeGraphic/ReshapeOperation.js +738 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/reshapeGraphic/edgeOffsetUtils.js +39 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/reshapeGraphic/isSupportedGraphic.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/settings.js +124 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/snapping/SnapToScene.js +38 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ExtentMove.js +108 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ExtentRotate.js +96 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ExtentScale.js +138 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ExtentTransformTool.js +164 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/GraphicScaleRotateTransform.js +331 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/GraphicTransformTool.js +170 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/PreserveAspectRatio.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ScaleRotateMeshAdapter.js +96 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ScaleRotateObjectSymbol3DAdapter.js +142 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/extentUtils.js +71 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/isSupportedGraphic.js +27 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/undoRecords.js +37 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/visualElementUtils.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/manipulatorUtils.js +50 -38
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/measurementTools/areaMeasurement3D/AreaMeasurement3DTool.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/measurementTools/directLineMeasurement3D/DirectLineMeasurement3DTool.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/visualElements/OutlineVisualElement.js +196 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/visualElements/VerticesVisualElement.js +108 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/GraphicsLayerView3D.js +110 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/LayerView3D.js +42 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/DisplayFeatureLimit.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/ElevationAligners.js +87 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/ElevationQuery.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/ExtentSet.js +71 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/GraphicState.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/GraphicStateTracking.js +65 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DCalloutSymbolLayerFactory.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DCore.js +1110 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DDrapedGraphicLayer.js +84 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DElevationAlignment.js +93 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DExtrudeSymbolLayer.js +221 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DFeatureStore.js +43 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DFrustumVisibility.js +78 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DGraphic.js +164 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DGraphicCreationContext.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DIconSymbolLayer.js +367 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DLineCalloutSymbolLayer.js +115 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DLineSymbolLayer.js +226 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DLodInstanceGraphicLayer.js +96 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DMeshFillSymbolLayer.js +511 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DMeshObject3DGraphicLayer.js +91 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObject3DGraphicLayer.js +147 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObjectMetadata.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObjectStateSet.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObjectStates.js +69 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObjectSymbolLayer.js +347 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DPathSymbolLayer.js +240 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DPathSymbolLayerConstants.js +6 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DPointSymbol.js +51 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DPolygonFillSymbolLayer.js +203 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DScaleVisibility.js +145 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbol.js +158 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbolCreationContext.js +14 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbolFactory.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbolLayer.js +195 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbolLayerFactory.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DTextSymbolLayer.js +153 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DWaterSymbolLayer.js +151 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DWebStyleSymbol.js +57 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/GraphicsCorePerformanceInfo.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/GraphicsProcessor.js +192 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/LabelParameters.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Loadable.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/MeshFastUpdateProcessor.js +85 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/SpatialIndex2D.js +70 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/SymbolComplexity.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/constants.js +6 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/defaultSymbolComplexity.js +152 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/elevationAlignPointsInFeatures.js +35 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/elevationAlignmentUtils.js +107 -33
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/enums.js +10 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/featureExpressionInfoUtils.js +48 -25
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/graphicUtils.js +119 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/interfaces.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/lineUtils.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/lodResourceUtils.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/objectResourceUtils.js +15 -15
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/placementUtils.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/pointUtils.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/polygonUtils.js +60 -29
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/primitiveObjectSymbolUtils.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/queryForSymbologySnapping.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/symbolMemory.js +6 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/webStyleUtils.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/FastSymbolUpdates.js +323 -31
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/LayerViewPerformanceInfo.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/StageLayerElevationProvider.js +76 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/edgeUtils.js +37 -8
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/layerUtils.js +10 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/patternUtils.js +52 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/projectExtentUtils.js +14 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/symbolColorUtils.js +28 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/uvUtils.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/ElevationProvider.js +11 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/ElevationUpdateEvent.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/FrustumExtentIntersection.js +105 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/buffer/InterleavedLayout.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/engineContent/line.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/engineContent/marker.js +3 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/extentUtils.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/geometryUtils/ray.js +15 -11
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/intersectionUtils.js +33 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/mathUtils.js +13 -8
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/orientedBoundingBox.js +22 -22
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/renderInfoUtils/line.js +29 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/renderInfoUtils/point.js +13 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/renderInfoUtils/polygon.js +63 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/ShaderOutput.js +25 -17
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/attributes/PathVertexPosition.glsl.js +105 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/attributes/VertexNormal.glsl.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/attributes/VertexPosition.glsl.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/FoamRendering.glsl.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/Gamma.glsl.js +14 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/NormalUtils.glsl.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/PhysicallyBasedRendering.glsl.js +53 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/ScreenSpaceReflections.glsl.js +123 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/Water.glsl.js +85 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/WaterDistortion.glsl.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/util/CloudsParallaxShading.glsl.js +105 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderModules/TextureCubePassUniform.js +10 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/effects/RenderPlugin.js +5 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/AnimationTimer.js +15 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/BoundingInfo.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/FontMetrics.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/GeometryUtil.js +308 -73
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/GeometryWithMapPositions.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Intersector.js +14 -14
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Normals.js +16 -8
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Object3D.js +14 -14
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Object3DStateSet.js +57 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Octree.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Path.js +40 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathBuilder.js +62 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathCapBuilder.js +100 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathExtruder.js +53 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathGeometry.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathGeometryData.js +94 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathProfile.js +62 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathVertex.js +81 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextHelperCanvas.js +6 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextRenderParameters.js +46 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextRenderer.js +219 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextTextureAtlas.js +212 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextTextureFactory.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/edgeRendering/edgePreprocessing.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/BackedBufferObject.js +43 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/InstanceData.js +174 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/InstanceOctree.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/Intersector.js +13 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LevelSelector.js +15 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LodComponentData.js +43 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LodLevel.js +48 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LodRenderer.js +264 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LodResources.js +44 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/RenderInstanceData.js +110 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/pathGeometryUtils.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/DefaultLayouts.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/DefaultMaterial.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/ImageMaterial.js +66 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/LineCalloutMaterial.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/LineMarkerMaterial.js +104 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/NativeLineMaterial.js +106 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/PathMaterial.js +74 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/PathTechnique.js +49 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/PatternMaterial.js +86 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/PatternStyle.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/WaterGLMaterial.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/WaterMaterial.js +48 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/WaterTechnique.js +48 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/internal/bufferWriterUtils.js +122 -109
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/internal/waterMaterialUtils.js +4 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/lineStippleUtils.js +18 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/renderers/utils.js +15 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/DefaultMaterialTechnique.js +33 -27
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/ImageMaterial.glsl.js +15 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/ImageMaterialTechnique.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LaserlineTechnique.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineCallout.glsl.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineCalloutTechnique.js +27 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineCalloutTechniqueConfiguration.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineMarker.glsl.js +24 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineMarkerTechnique.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/NativeLine.glsl.js +15 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/NativeLineTechnique.js +28 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/NativeLineTechniqueConfiguration.js +13 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/Path.glsl.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/Pattern.glsl.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/PatternTechnique.js +46 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/RibbonLineTechnique.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/SlicePlaneMaterial.glsl.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/SlicePlaneMaterialTechnique.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/WaterSurface.glsl.js +29 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/DOMContainer.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/DrawGraphicTool.js +397 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/DrawOperation.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/DrawScreenTool.js +126 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/drawSurfaces.js +47 -21
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/Box.js +481 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/GraphicMover.js +211 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/HighlightHelper.js +38 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/Reshape.js +556 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/createUtils.js +118 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/drawUtils.js +117 -23
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/helpMessageUtils.js +26 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/helpMessageUtils3d.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/input/GraphicMoverEvents.js +65 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/layerUtils.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/settings.js +40 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/SegmentLabels.js +147 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/dragEventPipeline.js +165 -81
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/editGeometry/operations/OffsetEdgeVertex.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/editGeometry/support/editPlaneUtils.js +52 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/keybindings.js +3 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchOptions.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchTooltipElevationOptions.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchTooltipOptions.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchTooltipVisibleElements.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchValueOptions.js +26 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/constraints.js +25 -25
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/normalizedPoint.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/snapping/FeatureSnappingEngine.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/snapping/featureSources/FeatureCollectionSnappingSource.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/snapping/featureSources/FeatureServiceSnappingSource.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/snapping/featureSources/GraphicsSnappingSource.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/DrawTooltipInfos.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/ExtentTooltipInfos.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/ReshapeTooltipInfos.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/SketchTooltipInfo.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/Tooltip.js +80 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/TransformTooltipInfos.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/TranslateTooltipInfos.js +64 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/DrawHeaderActions.js +34 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/TooltipEditableField.js +117 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/TooltipField.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/ValueByValue.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/directionModeIcons.js +4 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/constraintUtils.js +90 -91
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/Fields.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContent.js +150 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawCircle.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawMesh.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawPoint.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawPolygon.js +24 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawPolyline.js +24 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawRectangle.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentExtentRotate.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentExtentScale.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentReshapeEdgeOffset.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTransformAbsolute.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTransformRotate.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTransformScale.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateGraphic.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateGraphicXY.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateGraphicZ.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateVertex.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateVertexXY.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateVertexZ.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/tooltipContentFactory.js +64 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/css.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/fields/TooltipField.js +29 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/fields/TooltipFieldElevation.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/fields/fields.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/layers/WMSLayerView.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/layers/support/popupUtils.js +17 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/overlay/OutlineOverlayItem.js +48 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/overlay/TextOverlayItem.js +76 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/DefaultsFromMap.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/angularMeasurementUtils.js +87 -48
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/automaticAreaMeasurementUtils.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/automaticLengthMeasurementUtils.js +18 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/euclideanAreaMeasurementUtils.js +67 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/euclideanLengthMeasurementUtils.js +92 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/extentUtils.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/geodesicAreaMeasurementUtils.js +28 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/geodesicLengthMeasurementUtils.js +57 -27
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/geometry2dUtils.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/hitTestSelectUtils.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/layerViewUtils.js +10 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/measurementUtils.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/webgl/Util.js +90 -70
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/webgl/testFloatBufferBlend.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Feature/FeatureRelationship.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Feature/support/featureUtils.js +54 -49
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/LayerList/LayerListViewModel.js +113 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/LayerList/ListItem.js +144 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/LayerList/ListItemPanel.js +98 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/LayerList/support/layerListUtils.js +64 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/LegendViewModel.js +190 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/Card.js +284 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/CardCSS.js +4 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/Classic.js +110 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/ClassicCSS.js +5 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/support/relationshipUtils.js +46 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/support/univariateUtils.js +64 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/ActiveLayerInfo.js +1053 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/clusterUtils.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/colorRampUtils.js +54 -19
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/relationshipRampUtils.js +59 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/sizeRampUtils.js +155 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/styleUtils.js +44 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/utils.js +75 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend.js +115 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch/SketchViewModel.js +886 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch/VisibleElements.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch/support/OperationHandle.js +81 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch.js +293 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/smartMapping/support/utils.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/Heading.js +13 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/LabeledSwitch.js +11 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SelectionToolbar/SelectionToolbarViewModel.js +74 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SelectionToolbar.js +138 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/Selector2D/SelectionOperation.js +95 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/Selector2D/selectorUtils.js +93 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SketchTooltipControls/VisibleElements.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SketchTooltipControls.js +66 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/SnappingControlsViewModel.js +79 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/SnappingLayerListViewModel.js +41 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/SnappingListItem.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/VisibleElements.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/snappingLayerListUtils.js +33 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls.js +141 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/widget.js +7 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/widgetUtils.js +19 -15
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-accordion-item.js +157 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-accordion.js +97 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-block.js +230 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-dropdown-group.js +97 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-dropdown-item.js +171 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-dropdown.js +11 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-radio-button-group.js +144 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-radio-button.js +11 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-switch.js +11 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-tooltip.js +290 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/dom.js +91 -79
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/dropdown.js +319 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/floating-ui.js +11 -10
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/radio-button.js +244 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/resources3.js +20 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/switch.js +123 -0
- package/dist/node_modules/.pnpm/@terraformer_arcgis@2.1.2/node_modules/@terraformer/arcgis/dist/t-arcgis.esm.js +124 -45
- package/dist/node_modules/.pnpm/@terraformer_wkt@2.2.1/node_modules/@terraformer/wkt/dist/t-wkt.esm.js +1287 -0
- package/dist/style.css +1 -1
- package/package.json +3 -1
- package/dist/_virtual/_commonjsHelpers.js +0 -8
- package/dist/_virtual/terraformer-wkt-parser.js +0 -4
- package/dist/_virtual/terraformer.js +0 -4
- package/dist/node_modules/.pnpm/terraformer-wkt-parser@1.2.1/node_modules/terraformer-wkt-parser/terraformer-wkt-parser.js +0 -469
- package/dist/node_modules/.pnpm/terraformer@1.0.12/node_modules/terraformer/terraformer.js +0 -637
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { _ as n } from "../../../../chunks/tslib.es6.js";
|
|
2
|
+
import { property as m } from "../../../../core/accessorSupport/decorators/property.js";
|
|
3
|
+
import "../../../../core/has.js";
|
|
4
|
+
import "../../../../core/Logger.js";
|
|
5
|
+
import "../../../../core/RandomLCG.js";
|
|
6
|
+
import { subclass as u } from "../../../../core/accessorSupport/decorators/subclass.js";
|
|
7
|
+
import { drawContentHeaderActions as v } from "../css.js";
|
|
8
|
+
import { directionModeIcons as d } from "./directionModeIcons.js";
|
|
9
|
+
import w from "../../../../widgets/Widget.js";
|
|
10
|
+
import { loadCalciteComponents as g } from "../../../../widgets/support/componentsUtils.js";
|
|
11
|
+
import "../../../../widgets/support/widgetUtils.js";
|
|
12
|
+
import { messageBundle as h } from "../../../../widgets/support/decorators/messageBundle.js";
|
|
13
|
+
import { tsx as t } from "../../../../widgets/support/jsxFactory.js";
|
|
14
|
+
let a = class extends w {
|
|
15
|
+
constructor(o) {
|
|
16
|
+
super(o), this._onDirectionModeChange = (e) => {
|
|
17
|
+
var i, r;
|
|
18
|
+
const s = (r = (i = e.target.selectedItems) == null ? void 0 : i[0]) == null ? void 0 : r.getAttribute("data-mode");
|
|
19
|
+
this.sketchOptions.values.directionMode = s ?? "absolute";
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
render() {
|
|
23
|
+
var r, c, l, p;
|
|
24
|
+
const { directionMode: o } = this.sketchOptions.values, e = (r = this.messages) == null ? void 0 : r.sketch, s = "absolute", i = "relative";
|
|
25
|
+
return t("div", { class: v }, t("calcite-dropdown", { key: "direction-mode", placement: "bottom-end", scale: "s", widthScale: "s", onCalciteDropdownSelect: this._onDirectionModeChange }, t("calcite-action", { alignment: "end", appearance: "transparent", icon: d[o], scale: "s", slot: "trigger", text: "", textEnabled: !1, title: (c = e == null ? void 0 : e.directionModeSelect) == null ? void 0 : c.title }), t("calcite-dropdown-group", { selectionMode: "single" }, t("calcite-dropdown-item", { "data-mode": i, "data-testid": "tooltip-direction-mode-relative", iconStart: d.relative, key: "relative", selected: o === i }, (l = e == null ? void 0 : e.directionModeSelect) == null ? void 0 : l.relative), t("calcite-dropdown-item", { "data-mode": s, "data-testid": "tooltip-direction-mode-absolute", iconStart: d.absolute, key: "absolute", selected: o === s }, (p = e == null ? void 0 : e.directionModeSelect) == null ? void 0 : p.absolute))));
|
|
26
|
+
}
|
|
27
|
+
loadDependencies() {
|
|
28
|
+
return g({ action: () => import("../../../../../../../../@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-action.js"), dropdown: () => import("../../../../../../../../@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-dropdown.js"), "dropdown-item": () => import("../../../../../../../../@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-dropdown-item.js"), "dropdown-group": () => import("../../../../../../../../@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-dropdown-group.js") });
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
n([h("esri/views/interactive/tooltip/t9n/Tooltip"), m()], a.prototype, "messages", void 0), n([m()], a.prototype, "sketchOptions", void 0), a = n([u("esri.views.interactive.tooltip.components.DrawHeaderActions")], a);
|
|
32
|
+
export {
|
|
33
|
+
a as DrawHeaderActions
|
|
34
|
+
};
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import { _ as u } from "../../../../chunks/tslib.es6.js";
|
|
2
|
+
import { watch as m } from "../../../../core/reactiveUtils.js";
|
|
3
|
+
import { waitAnimationFrame as h } from "../../../../core/scheduling.js";
|
|
4
|
+
import { property as r } from "../../../../core/accessorSupport/decorators/property.js";
|
|
5
|
+
import "../../../../core/has.js";
|
|
6
|
+
import "../../../../core/Logger.js";
|
|
7
|
+
import "../../../../core/RandomLCG.js";
|
|
8
|
+
import { subclass as f } from "../../../../core/accessorSupport/decorators/subclass.js";
|
|
9
|
+
import { tooltipKeys as d } from "../../keybindings.js";
|
|
10
|
+
import { base as y } from "../css.js";
|
|
11
|
+
import k from "../../../../widgets/Widget.js";
|
|
12
|
+
import { loadCalciteComponents as v } from "../../../../widgets/support/componentsUtils.js";
|
|
13
|
+
import "../../../../widgets/support/widgetUtils.js";
|
|
14
|
+
import { tsx as l } from "../../../../widgets/support/jsxFactory.js";
|
|
15
|
+
const o = `${y}-editable-field`, s = { base: o, inputMode: `${o}--input`, locked: `${o}--locked`, title: `${o}__title`, titleContent: `${o}__title__content`, value: `${o}__value`, valueContent: `${o}__value__content`, valueContentReadOnly: `${o}__value__content--read-only`, input: `${o}__input`, inputSuffix: `${o}__input-suffix`, button: `${o}__button` };
|
|
16
|
+
let a = class extends k {
|
|
17
|
+
constructor() {
|
|
18
|
+
super(...arguments), this._input = null, this._selectText = () => {
|
|
19
|
+
const t = () => {
|
|
20
|
+
var e;
|
|
21
|
+
this._input === document.activeElement && ((e = this._input) == null || e.selectText());
|
|
22
|
+
};
|
|
23
|
+
t(), h().then(t);
|
|
24
|
+
}, this._onKeyDown = (t) => {
|
|
25
|
+
t.key === d.discard && this._discard();
|
|
26
|
+
}, this._onInputKeyDown = (t) => {
|
|
27
|
+
switch (t.key) {
|
|
28
|
+
case d.commit:
|
|
29
|
+
return this._commit({ type: "commit-and-exit", allowLockingCurrentValue: !0 });
|
|
30
|
+
case d.next:
|
|
31
|
+
return t.preventDefault(), t.stopPropagation(), this._commit({ type: t.shiftKey ? "commit-and-previous" : "commit-and-next", allowLockingCurrentValue: !1 });
|
|
32
|
+
}
|
|
33
|
+
}, this._onInput = (t) => {
|
|
34
|
+
this.field.inputValue = t.target.value;
|
|
35
|
+
}, this._onLockClick = () => {
|
|
36
|
+
const { field: t } = this;
|
|
37
|
+
t.locked ? t.unlock() : this._lock();
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
initialize() {
|
|
41
|
+
this.addHandles(m(() => this._rawDisplayValue, () => {
|
|
42
|
+
const { committed: t, inputValue: e } = this.field;
|
|
43
|
+
t || e || this._input !== document.activeElement || this._selectText();
|
|
44
|
+
}));
|
|
45
|
+
}
|
|
46
|
+
loadDependencies() {
|
|
47
|
+
return v({ action: () => import("../../../../../../../../@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-action.js"), icon: () => import("../../../../../../../../@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-icon.js"), input: () => import("../../../../../../../../@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-input.js") });
|
|
48
|
+
}
|
|
49
|
+
render() {
|
|
50
|
+
const { mode: t, field: e } = this, i = t === "input", { locked: n } = e;
|
|
51
|
+
return l("div", { class: this.classes({ [s.base]: !0, [s.inputMode]: t === "input", [s.locked]: n }) }, l("div", { class: s.title, key: "title" }, l("div", { class: s.titleContent, key: "title-content" }, this._title, n && !i ? l("calcite-icon", { icon: "lock", key: "icon", scale: "s" }) : null)), l("div", { class: s.value, key: "value" }, i ? this._renderInputModeValue() : this._renderFeedbackModeValue()));
|
|
52
|
+
}
|
|
53
|
+
get _initialValue() {
|
|
54
|
+
const { field: t } = this;
|
|
55
|
+
return t.actual != null ? t.toInputUnits(t.actual, this.context).value : null;
|
|
56
|
+
}
|
|
57
|
+
get _formattedValue() {
|
|
58
|
+
const { context: t, field: e } = this, { actual: i, committed: n, format: c } = e;
|
|
59
|
+
return n != null ? c(n, t) : i != null ? c(i, t) : _;
|
|
60
|
+
}
|
|
61
|
+
get _rawDisplayValue() {
|
|
62
|
+
const { field: t } = this, { inputValue: e, committed: i } = t;
|
|
63
|
+
return e ?? this._toString(i != null ? t.toInputUnits(i, this.context).value : this._initialValue);
|
|
64
|
+
}
|
|
65
|
+
get _suffix() {
|
|
66
|
+
const { suffix: t } = this.field;
|
|
67
|
+
return typeof t == "string" ? t : t(this.context);
|
|
68
|
+
}
|
|
69
|
+
get _title() {
|
|
70
|
+
const { title: t } = this.field;
|
|
71
|
+
return typeof t == "string" ? t : t(this.context);
|
|
72
|
+
}
|
|
73
|
+
_renderFeedbackModeValue() {
|
|
74
|
+
return l("span", { key: "value-feedback" }, this._formattedValue);
|
|
75
|
+
}
|
|
76
|
+
_renderInputModeValue() {
|
|
77
|
+
return this.field.readOnly ? this._renderValueReadOnly() : this._renderValueWritable();
|
|
78
|
+
}
|
|
79
|
+
_renderValueReadOnly() {
|
|
80
|
+
return l("span", { class: s.valueContentReadOnly, key: "value-readonly" }, this._formattedValue);
|
|
81
|
+
}
|
|
82
|
+
_renderValueWritable() {
|
|
83
|
+
var c;
|
|
84
|
+
const { locked: t, name: e } = this.field, i = ((c = this.context) == null ? void 0 : c.messages.sketch) ?? {}, n = t ? i.unlockConstraint : i.lockConstraint;
|
|
85
|
+
return l("div", { class: s.valueContent, key: "value-writable", onkeydown: this._onKeyDown }, l("calcite-input", { afterCreate: (p) => {
|
|
86
|
+
this._input = p;
|
|
87
|
+
}, class: s.input, "data-field-name": e, onfocus: this._selectText, onkeydown: this._onInputKeyDown, scale: "s", type: "text", value: this._rawDisplayValue, onCalciteInputInput: this._onInput }), l("div", { class: s.inputSuffix, key: "suffix" }, this._suffix), l("calcite-action", { alignment: "center", appearance: "transparent", class: s.button, compact: !0, icon: t ? "lock" : "unlock", label: n, onclick: this._onLockClick, scale: "s", tabIndex: -1, text: "", title: n }));
|
|
88
|
+
}
|
|
89
|
+
_commit({ type: t, allowLockingCurrentValue: e }) {
|
|
90
|
+
const { _input: i, field: n } = this;
|
|
91
|
+
if (!i)
|
|
92
|
+
return;
|
|
93
|
+
const { locked: c, inputValue: p } = n;
|
|
94
|
+
c && p === "" ? n.unlock() : (e && !c || p != null) && this._lock(), this.context.onCommit(i, t);
|
|
95
|
+
}
|
|
96
|
+
_discard() {
|
|
97
|
+
this._input && (this.field.inputValue = null, this.context.onDiscard(this._input));
|
|
98
|
+
}
|
|
99
|
+
_lock() {
|
|
100
|
+
const { field: t } = this, e = this._parseNumber(t.inputValue), i = e != null ? t.createQuantity(e, this.context) : null;
|
|
101
|
+
t.lock(i);
|
|
102
|
+
}
|
|
103
|
+
_parseNumber(t) {
|
|
104
|
+
if (t == null)
|
|
105
|
+
return null;
|
|
106
|
+
const e = parseFloat(t);
|
|
107
|
+
return isNaN(e) || !isFinite(e) ? null : e;
|
|
108
|
+
}
|
|
109
|
+
_toString(t) {
|
|
110
|
+
return t != null ? t.toFixed(2) : _;
|
|
111
|
+
}
|
|
112
|
+
};
|
|
113
|
+
u([r()], a.prototype, "field", void 0), u([r()], a.prototype, "context", void 0), u([r()], a.prototype, "mode", void 0), u([r()], a.prototype, "_initialValue", null), u([r()], a.prototype, "_formattedValue", null), u([r()], a.prototype, "_input", void 0), u([r()], a.prototype, "_rawDisplayValue", null), u([r()], a.prototype, "_suffix", null), u([r()], a.prototype, "_title", null), a = u([f("esri.views.interactive.tooltip.components.TooltipEditableField")], a);
|
|
114
|
+
const _ = "—";
|
|
115
|
+
export {
|
|
116
|
+
a as TooltipEditableField
|
|
117
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { _ as e } from "../../../../chunks/tslib.es6.js";
|
|
2
|
+
import { property as o } from "../../../../core/accessorSupport/decorators/property.js";
|
|
3
|
+
import "../../../../core/has.js";
|
|
4
|
+
import "../../../../core/Logger.js";
|
|
5
|
+
import "../../../../core/RandomLCG.js";
|
|
6
|
+
import { subclass as p } from "../../../../core/accessorSupport/decorators/subclass.js";
|
|
7
|
+
import { base as a } from "../css.js";
|
|
8
|
+
import d from "../../../../widgets/Widget.js";
|
|
9
|
+
import "../../../../widgets/support/widgetUtils.js";
|
|
10
|
+
import { tsx as r } from "../../../../widgets/support/jsxFactory.js";
|
|
11
|
+
const i = `${a}-field`, s = { base: i, inputMode: `${i}--input`, title: `${i}__title`, value: `${i}__value` };
|
|
12
|
+
let t = class extends d {
|
|
13
|
+
constructor() {
|
|
14
|
+
super(...arguments), this.hidden = !1, this.mode = "feedback";
|
|
15
|
+
}
|
|
16
|
+
render() {
|
|
17
|
+
return r("div", { class: this.classes({ [s.base]: !0, [s.inputMode]: this.mode === "input" }) }, r("div", { class: s.title }, this.title), r("div", { class: s.value }, this.value));
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
e([o()], t.prototype, "hidden", void 0), e([o()], t.prototype, "mode", void 0), e([o()], t.prototype, "title", void 0), e([o()], t.prototype, "value", void 0), t = e([p("esri.views.interactive.tooltip.components.TooltipField")], t);
|
|
21
|
+
export {
|
|
22
|
+
t as TooltipField
|
|
23
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { _ as r } from "../../../../chunks/tslib.es6.js";
|
|
2
|
+
import { property as o } from "../../../../core/accessorSupport/decorators/property.js";
|
|
3
|
+
import "../../../../core/has.js";
|
|
4
|
+
import "../../../../core/Logger.js";
|
|
5
|
+
import "../../../../core/RandomLCG.js";
|
|
6
|
+
import { subclass as s } from "../../../../core/accessorSupport/decorators/subclass.js";
|
|
7
|
+
import { base as i } from "../css.js";
|
|
8
|
+
import p from "../../../../widgets/Widget.js";
|
|
9
|
+
import "../../../../widgets/support/widgetUtils.js";
|
|
10
|
+
import { tsx as e } from "../../../../widgets/support/jsxFactory.js";
|
|
11
|
+
const a = { base: `${i}-value-by-value` };
|
|
12
|
+
let t = class extends p {
|
|
13
|
+
constructor() {
|
|
14
|
+
super(...arguments), this.divider = "×";
|
|
15
|
+
}
|
|
16
|
+
render() {
|
|
17
|
+
return e("div", { class: a.base }, e("span", null, this.left), e("span", null, this.divider), e("span", null, this.right));
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
r([o()], t.prototype, "left", void 0), r([o()], t.prototype, "divider", void 0), r([o()], t.prototype, "right", void 0), t = r([s("esri.views.interactive.tooltip.components.ValueByValue")], t);
|
|
21
|
+
export {
|
|
22
|
+
t as ValueByValue
|
|
23
|
+
};
|
|
@@ -1,140 +1,139 @@
|
|
|
1
|
-
import { valueInUnit as
|
|
2
|
-
import { lengthUnitFromSpatialReference as
|
|
3
|
-
import { f as
|
|
4
|
-
import { create as
|
|
5
|
-
import { projectVectorToVector as
|
|
6
|
-
import "../../../geometry.js";
|
|
7
|
-
import "../../../core/Error.js";
|
|
8
|
-
import "../../../geometry/support/geodesicConstants.js";
|
|
9
|
-
import "../../../geometry/support/spatialReferenceUtils.js";
|
|
10
|
-
import "../../../geometry/Polyline.js";
|
|
11
|
-
import "../../../geometry/Polygon.js";
|
|
12
|
-
import "../../../geometry/Point.js";
|
|
13
|
-
import "../../../geometry/SpatialReference.js";
|
|
1
|
+
import { valueInUnit as C, createLength as B, createAngle as I } from "../../../core/quantityUtils.js";
|
|
2
|
+
import { lengthUnitFromSpatialReference as b, verticalLengthUnitFromSpatialReference as F } from "../../../core/unitUtils.js";
|
|
3
|
+
import { f as U, c as x, g as z } from "../../../chunks/vec32.js";
|
|
4
|
+
import { create as y } from "../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
5
|
+
import { projectVectorToVector as w } from "../../../geometry/projection/projectVectorToVector.js";
|
|
6
|
+
import { geodesicCompatibleSpatialReference as G } from "../../../geometry/support/geodesicUtils.js";
|
|
14
7
|
import { getConvertedElevationFromXYZ as j } from "../../../support/elevationInfoUtils.js";
|
|
15
|
-
import { VerticalCylinderConstraint as
|
|
16
|
-
import { fromPoint as
|
|
17
|
-
import { getDegreesGeographic as R, DirectionMode as m, pointFromDistanceAlongAzimuth as
|
|
18
|
-
function
|
|
19
|
-
|
|
8
|
+
import { VerticalCylinderConstraint as E, constraintOrSet as D, HorizontalPlaneConstraint as H, VerticalHalfPlaneConstraint as L, GeodesicConstraint as O, PointConstraint as k } from "../sketch/constraints.js";
|
|
9
|
+
import { fromPoint as h, toElevationAlignedDehydratedPoint as q, fromVec3 as X } from "../sketch/normalizedPoint.js";
|
|
10
|
+
import { getDegreesGeographic as R, DirectionMode as m, pointFromDistanceAlongAzimuth as Y, directionBetweenPoints as M } from "../../support/angularMeasurementUtils.js";
|
|
11
|
+
function ue(n, e, t, o, l, r) {
|
|
12
|
+
let u = "geodesic", i = G(t);
|
|
13
|
+
const s = h(n, e, o);
|
|
14
|
+
return s[2] = 0, i && w(s, t, s, i) || (u = "euclidean", i = t), { mode: u, view: e, elevationInfo: o, hasZ: l, directionMode: r, spatialReference: n.spatialReference, measurementSR: i, origin: s };
|
|
15
|
+
}
|
|
16
|
+
function J(n, e, t) {
|
|
17
|
+
if (e == null || n == null)
|
|
20
18
|
return;
|
|
21
|
-
const o =
|
|
19
|
+
const o = b(t.measurementSR);
|
|
22
20
|
if (o == null)
|
|
23
21
|
return;
|
|
24
|
-
const
|
|
25
|
-
if (
|
|
22
|
+
const l = V(n, t);
|
|
23
|
+
if (l == null)
|
|
26
24
|
return;
|
|
27
|
-
const r =
|
|
28
|
-
return new
|
|
25
|
+
const r = C(e, o);
|
|
26
|
+
return new E(X(l), r);
|
|
29
27
|
}
|
|
30
|
-
function
|
|
31
|
-
if (t == null ||
|
|
28
|
+
function K(n, e, t, o) {
|
|
29
|
+
if (t == null || n == null)
|
|
32
30
|
return;
|
|
33
|
-
const
|
|
34
|
-
if (
|
|
31
|
+
const l = V(n, o);
|
|
32
|
+
if (l == null)
|
|
35
33
|
return;
|
|
36
|
-
const r = R(t), u = 10,
|
|
37
|
-
if (
|
|
34
|
+
const r = R(t), u = 10, i = (a) => {
|
|
35
|
+
if (a == null)
|
|
38
36
|
return;
|
|
39
|
-
const f =
|
|
40
|
-
return
|
|
41
|
-
},
|
|
42
|
-
if (
|
|
43
|
-
return R(
|
|
37
|
+
const f = y(), g = I(a, "degrees", "geographic");
|
|
38
|
+
return Y(f, l, o.measurementSR, u, g, o.mode) ? new L(l, f) : void 0;
|
|
39
|
+
}, s = () => {
|
|
40
|
+
if (e != null && n != null)
|
|
41
|
+
return R(M(e, n));
|
|
44
42
|
};
|
|
45
43
|
switch (o.directionMode) {
|
|
46
44
|
case m.Absolute:
|
|
47
|
-
return
|
|
45
|
+
return i(r);
|
|
48
46
|
case m.Relative: {
|
|
49
|
-
const
|
|
50
|
-
return
|
|
47
|
+
const a = s();
|
|
48
|
+
return a == null ? void 0 : i(a + r);
|
|
51
49
|
}
|
|
52
50
|
case m.RelativeBilateral: {
|
|
53
|
-
const
|
|
54
|
-
return
|
|
51
|
+
const a = s();
|
|
52
|
+
return a == null ? void 0 : D([i(a + r), i(a - r)]);
|
|
55
53
|
}
|
|
56
54
|
}
|
|
57
55
|
}
|
|
58
|
-
function
|
|
59
|
-
const t =
|
|
60
|
-
return t != null ? new
|
|
56
|
+
function S(n, e) {
|
|
57
|
+
const t = Q(n, e);
|
|
58
|
+
return t != null ? new H(t) : void 0;
|
|
61
59
|
}
|
|
62
|
-
function
|
|
63
|
-
if (t == null && o == null &&
|
|
60
|
+
function T(n, e, t, o, l, r) {
|
|
61
|
+
if (t == null && o == null && l == null)
|
|
64
62
|
return;
|
|
65
|
-
if (
|
|
66
|
-
return
|
|
67
|
-
const { view: u, elevationInfo:
|
|
68
|
-
if (!
|
|
63
|
+
if (e == null)
|
|
64
|
+
return S(o, r);
|
|
65
|
+
const { view: u, elevationInfo: i, measurementSR: s } = r, a = h(e, u, i);
|
|
66
|
+
if (!s || !w(a, e.spatialReference, v, s))
|
|
69
67
|
return;
|
|
70
|
-
const f = [v[0], v[1]], g = t != null ?
|
|
71
|
-
const
|
|
72
|
-
return g == null || c == null || P == null && r.hasZ ?
|
|
68
|
+
const f = [v[0], v[1]], g = t != null ? C(t, "meters") : void 0, P = W(o, r), d = R(l), p = (c) => {
|
|
69
|
+
const $ = new O(f, s, g, P, c);
|
|
70
|
+
return g == null || c == null || P == null && r.hasZ ? $ : new k($.closestTo(a));
|
|
73
71
|
};
|
|
74
72
|
if (d == null)
|
|
75
73
|
return p(void 0);
|
|
76
|
-
const
|
|
77
|
-
if (
|
|
78
|
-
return R(
|
|
74
|
+
const A = () => {
|
|
75
|
+
if (n != null && e != null)
|
|
76
|
+
return R(M(n, e));
|
|
79
77
|
};
|
|
80
78
|
switch (r.directionMode) {
|
|
81
79
|
case m.Absolute:
|
|
82
80
|
return p(d);
|
|
83
81
|
case m.Relative: {
|
|
84
|
-
const c =
|
|
82
|
+
const c = A();
|
|
85
83
|
return c == null ? void 0 : p(c + d);
|
|
86
84
|
}
|
|
87
85
|
case m.RelativeBilateral: {
|
|
88
|
-
const c =
|
|
89
|
-
return c == null ? void 0 :
|
|
86
|
+
const c = A();
|
|
87
|
+
return c == null ? void 0 : D([p(c + d), p(c - d)]);
|
|
90
88
|
}
|
|
91
89
|
}
|
|
92
90
|
}
|
|
93
|
-
function
|
|
94
|
-
return
|
|
91
|
+
function ce(n, e) {
|
|
92
|
+
return e.mode === "geodesic" ? T(null, null, null, n, null, e) : S(n, e);
|
|
95
93
|
}
|
|
96
|
-
function
|
|
97
|
-
return r.mode === "geodesic" ?
|
|
94
|
+
function fe(n, e, t, o, l, r) {
|
|
95
|
+
return r.mode === "geodesic" ? T(e, n, t, l, o, r) : N([J(n, t, r), K(n, e, o, r), S(l, r)]);
|
|
98
96
|
}
|
|
99
|
-
function
|
|
100
|
-
let
|
|
101
|
-
for (const t of
|
|
102
|
-
t && (
|
|
103
|
-
return
|
|
97
|
+
function N(n) {
|
|
98
|
+
let e;
|
|
99
|
+
for (const t of n)
|
|
100
|
+
t && (e = (e == null ? void 0 : e.intersect(t)) ?? t);
|
|
101
|
+
return e;
|
|
104
102
|
}
|
|
105
|
-
function
|
|
106
|
-
const { view: t, elevationInfo: o, measurementSR:
|
|
107
|
-
if (
|
|
108
|
-
return u !== "geodesic" &&
|
|
103
|
+
function V(n, e) {
|
|
104
|
+
const { view: t, elevationInfo: o, measurementSR: l, origin: r, mode: u } = e, i = h(n, t, o);
|
|
105
|
+
if (w(i, n.spatialReference, i, l))
|
|
106
|
+
return u !== "geodesic" && U(i, i, r), i;
|
|
109
107
|
}
|
|
110
|
-
function
|
|
111
|
-
const { view: o, measurementSR:
|
|
112
|
-
if (
|
|
113
|
-
return
|
|
108
|
+
function me(n, e, t) {
|
|
109
|
+
const { view: o, measurementSR: l, spatialReference: r, origin: u, mode: i } = t, s = v;
|
|
110
|
+
if (i === "geodesic" ? x(s, n) : z(s, n, u), w(s, l, s, r))
|
|
111
|
+
return q(s, o, e, t);
|
|
114
112
|
}
|
|
115
|
-
function
|
|
113
|
+
function Q(n, e) {
|
|
116
114
|
var t;
|
|
117
|
-
return ((t = Z(
|
|
115
|
+
return ((t = Z(n, e)) == null ? void 0 : t.value) ?? void 0;
|
|
118
116
|
}
|
|
119
|
-
function
|
|
120
|
-
const t = Z(
|
|
121
|
-
return t != null ?
|
|
117
|
+
function W(n, e) {
|
|
118
|
+
const t = Z(n, e);
|
|
119
|
+
return t != null ? C(t, "meters") : void 0;
|
|
122
120
|
}
|
|
123
|
-
function Z(
|
|
124
|
-
if (
|
|
121
|
+
function Z(n, { view: e, origin: t, elevationInfo: o, hasZ: l, measurementSR: r }) {
|
|
122
|
+
if (n == null || !l)
|
|
125
123
|
return;
|
|
126
|
-
const u =
|
|
124
|
+
const u = F(r);
|
|
127
125
|
if (u == null)
|
|
128
126
|
return;
|
|
129
|
-
const [
|
|
130
|
-
return f != null ?
|
|
127
|
+
const [i, s] = t, a = C(n, u), f = (e == null ? void 0 : e.type) === "3d" ? j(e, i, s, a, r, o) : a;
|
|
128
|
+
return f != null ? B(f, u) : void 0;
|
|
131
129
|
}
|
|
132
|
-
const v =
|
|
130
|
+
const v = y();
|
|
133
131
|
export {
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
132
|
+
me as constraintSpaceToPoint,
|
|
133
|
+
ue as getConstraintContext,
|
|
134
|
+
T as getGeodesicConstraint,
|
|
135
|
+
ce as getPointConstraint,
|
|
136
|
+
fe as getPolylineOrPolygonConstraint,
|
|
137
|
+
N as intersectAll,
|
|
138
|
+
V as pointToConstraintSpace
|
|
140
139
|
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { TooltipEditableField as t } from "../components/TooltipEditableField.js";
|
|
2
|
+
import { tsx as o, tsxFragment as n } from "../../../../widgets/support/jsxFactory.js";
|
|
3
|
+
function r(l) {
|
|
4
|
+
const i = l.fields.filter((e) => (e == null ? void 0 : e.visible) === !0);
|
|
5
|
+
return i.length === 0 ? null : o(n, null, i.map((e) => o(t, { context: l.context, field: e, key: e.id, mode: l.mode })));
|
|
6
|
+
}
|
|
7
|
+
export {
|
|
8
|
+
r as Fields
|
|
9
|
+
};
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
import { _ as r } from "../../../../chunks/tslib.es6.js";
|
|
2
|
+
import "../../../../intl.js";
|
|
3
|
+
import { prefersReducedMotion as A } from "../../../../core/a11yUtils.js";
|
|
4
|
+
import { memoize as x } from "../../../../core/memoize.js";
|
|
5
|
+
import { throwIfNotAbortError as g, throwIfAborted as F, after as D } from "../../../../core/promiseUtils.js";
|
|
6
|
+
import { formatAngle as _, formatArea as T, formatLength as y, formatRelativeLength as k, formatVerticalLength as C, formatRelativeVerticalLength as I } from "../../../../core/quantityFormatUtils.js";
|
|
7
|
+
import { waitTick as $ } from "../../../../core/scheduling.js";
|
|
8
|
+
import { unitName as M } from "../../../../core/unitFormatUtils.js";
|
|
9
|
+
import { defaultLengthUnit as U, defaultVerticalLengthUnit as R, defaultAreaUnit as L } from "../../../../core/unitUtils.js";
|
|
10
|
+
import { property as a } from "../../../../core/accessorSupport/decorators/property.js";
|
|
11
|
+
import "../../../../core/has.js";
|
|
12
|
+
import "../../../../core/Logger.js";
|
|
13
|
+
import "../../../../core/RandomLCG.js";
|
|
14
|
+
import { subclass as E } from "../../../../core/accessorSupport/decorators/subclass.js";
|
|
15
|
+
import { getDefaultUnitForView as v } from "../../../../support/getDefaultUnitForView.js";
|
|
16
|
+
import { tooltipKeys as N } from "../../keybindings.js";
|
|
17
|
+
import { helpMessage as S, table as q, contentHeader as H, contentHeaderSpacer as V, contentHeaderActions as O, contentInputMode as B, content as K, drawContentHeaderActions as Z } from "../css.js";
|
|
18
|
+
import { getDegreesGeographic as z } from "../../../support/angularMeasurementUtils.js";
|
|
19
|
+
import G from "../../../../widgets/Widget.js";
|
|
20
|
+
import { loadCalciteComponents as j } from "../../../../widgets/support/componentsUtils.js";
|
|
21
|
+
import { classes as J } from "../../../../widgets/support/widgetUtils.js";
|
|
22
|
+
import { messageBundle as b } from "../../../../widgets/support/decorators/messageBundle.js";
|
|
23
|
+
import { tsx as m, tsxFragment as P } from "../../../../widgets/support/jsxFactory.js";
|
|
24
|
+
import { formatNumber as u } from "../../../../intl/number.js";
|
|
25
|
+
let s = class extends G {
|
|
26
|
+
constructor() {
|
|
27
|
+
super(...arguments), this._focusAbortController = new AbortController(), this._transition = null, this._mode = "feedback", this._getFormatters = x((t, i) => ({ angleRelative: (e) => u(e, { minimumFractionDigits: p, maximumFractionDigits: p, signDisplay: "exceptZero" }), direction: (e) => _(e, e.rotationType, p), directionRelative: (e) => {
|
|
28
|
+
const o = z(e);
|
|
29
|
+
return u(o, { style: "unit", unitDisplay: "narrow", unit: "degree", maximumFractionDigits: p, minimumFractionDigits: p, signDisplay: o > 0 ? "never" : "exceptZero" });
|
|
30
|
+
}, directionRelativeBilateral: (e) => _(e, e.rotationType, p), area: (e, o) => T(t, e, o ?? i.area), length: (e, o, n) => y(t, e, o ?? i.length, n), lengthRelative: (e, o) => k(t, e, o ?? i.length), totalLength: (e, o) => y(t, e, o ?? i.length), verticalLength: (e, o) => C(t, e, o ?? i.length), verticalLengthRelative: (e, o) => I(t, e, o ?? i.verticalLength), percentage: (e) => u(e.value, { style: "percent" }), scale: (e) => u(e, { style: "percent", maximumFractionDigits: 0 }) })), this._onDiscard = () => {
|
|
31
|
+
this.exitInputMode();
|
|
32
|
+
}, this._onCommit = (t, i) => {
|
|
33
|
+
if (i === "commit-and-exit")
|
|
34
|
+
return void this.exitInputMode();
|
|
35
|
+
const e = this._getFocusableElements(), o = e.length, n = e.indexOf(t);
|
|
36
|
+
if (n === -1)
|
|
37
|
+
return void this.exitInputMode();
|
|
38
|
+
const c = ((n + (i === "commit-and-next" ? 1 : -1)) % o + o) % o;
|
|
39
|
+
h(e.at(c));
|
|
40
|
+
}, this._handleTab = (t) => {
|
|
41
|
+
if (t.code !== N.next)
|
|
42
|
+
return;
|
|
43
|
+
const i = this._getFocusableElements(), e = i.at(0), o = i.at(-1);
|
|
44
|
+
e && o && (t.shiftKey ? document.activeElement === e && (t.preventDefault(), h(o)) : document.activeElement === o && (t.preventDefault(), h(e)));
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
get mode() {
|
|
48
|
+
return this._mode;
|
|
49
|
+
}
|
|
50
|
+
get _displayUnits() {
|
|
51
|
+
const t = v(this.tooltip.view);
|
|
52
|
+
return { length: t, verticalLength: t, area: t, angle: "degrees" };
|
|
53
|
+
}
|
|
54
|
+
get _inputUnitInfos() {
|
|
55
|
+
const t = this._messagesUnits, i = (d) => ({ unit: d, abbreviation: M(t, d, "abbr") }), e = v(this.tooltip.view), o = i(U(e)), n = i(R(e)), c = i(L(e)), l = i("degrees");
|
|
56
|
+
return { length: o, lengthRelative: o, verticalLength: n, verticalLengthRelative: n, area: c, direction: l, orientation: l, rotation: l };
|
|
57
|
+
}
|
|
58
|
+
get _formatters() {
|
|
59
|
+
return this._getFormatters(this._messagesUnits, this._displayUnits);
|
|
60
|
+
}
|
|
61
|
+
get fieldContext() {
|
|
62
|
+
return { formatters: this._formatters, inputUnitInfos: this._inputUnitInfos, messages: this._messagesTooltip, sketchOptions: this.info.sketchOptions, onCommit: this._onCommit, onDiscard: this._onDiscard };
|
|
63
|
+
}
|
|
64
|
+
render() {
|
|
65
|
+
const t = w(this._renderContent()), { visibleElements: i } = this.info.sketchOptions.tooltips, e = i.helpMessage ? this._getHelpMessage() : null, o = t.length > 0, n = o || !!e, c = this.mode === "input", l = w(this._renderActions());
|
|
66
|
+
return m("div", { class: J(K, c && B), onkeydown: this._handleTab }, c && n && i.header ? m("div", { class: H, key: "header" }, m("calcite-button", { appearance: "transparent", iconFlipRtl: "both", iconStart: "chevron-left", key: "discard-button", kind: "neutral", onclick: this._onDiscard, scale: "s", tabIndex: -1 }), l.length > 0 ? m(P, null, m("div", { class: V, key: "spacer" }), m("div", { class: O, key: "actions" }, l)) : null) : null, o ? m("div", { class: q, key: "content" }, ...t) : null, e ? m("div", { class: S, key: "help-message" }, e) : null);
|
|
67
|
+
}
|
|
68
|
+
_renderActions() {
|
|
69
|
+
return null;
|
|
70
|
+
}
|
|
71
|
+
loadDependencies() {
|
|
72
|
+
return j({ button: () => import("../../../../../../../../@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-button.js"), icon: () => import("../../../../../../../../@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-icon.js"), input: () => import("../../../../../../../../@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-input.js") });
|
|
73
|
+
}
|
|
74
|
+
async enterInputMode(t) {
|
|
75
|
+
try {
|
|
76
|
+
await this._transitionTo("input"), await this._focusField(t);
|
|
77
|
+
} catch (i) {
|
|
78
|
+
g(i);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
async exitInputMode() {
|
|
82
|
+
try {
|
|
83
|
+
await this._transitionTo("feedback"), document.querySelector(".esri-view-surface").focus();
|
|
84
|
+
} catch (t) {
|
|
85
|
+
g(t);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
_getHelpMessage(t) {
|
|
89
|
+
var l, d, f;
|
|
90
|
+
const { info: i } = this, { helpMessage: e, viewType: o } = i, n = t ?? e, c = o === "3d" ? "helpMessages3d" : "helpMessages2d";
|
|
91
|
+
return n ? (f = (d = (l = this._messagesTooltip) == null ? void 0 : l.sketch) == null ? void 0 : d[c]) == null ? void 0 : f[n] : void 0;
|
|
92
|
+
}
|
|
93
|
+
async _focusField(t) {
|
|
94
|
+
var o;
|
|
95
|
+
(o = this._focusAbortController) == null || o.abort(), this._focusAbortController = new AbortController();
|
|
96
|
+
const { signal: i } = this._focusAbortController;
|
|
97
|
+
await this._waitForInputs(), F(i);
|
|
98
|
+
const e = this._getFocusableInputs();
|
|
99
|
+
h(t ? e.find((n) => n.getAttribute("data-field-name") === t) : e.at(0));
|
|
100
|
+
}
|
|
101
|
+
async _transitionTo(t) {
|
|
102
|
+
var o, n;
|
|
103
|
+
if (this._mode === t)
|
|
104
|
+
return;
|
|
105
|
+
const i = () => {
|
|
106
|
+
this._mode = t, this.tooltip.positionMode = t === "input" ? "fixed" : "follow-cursor";
|
|
107
|
+
};
|
|
108
|
+
if (!((o = this.domNode) != null && o.firstChild) || !document.startViewTransition || A())
|
|
109
|
+
return void i();
|
|
110
|
+
this.autoRenderingEnabled = !1, (n = this._transition) == null || n.skipTransition();
|
|
111
|
+
const e = this._transition = document.startViewTransition(() => {
|
|
112
|
+
if (!this.destroyed)
|
|
113
|
+
return this.autoRenderingEnabled = !0, i(), this.renderNow(), $();
|
|
114
|
+
});
|
|
115
|
+
try {
|
|
116
|
+
await this._transition.finished;
|
|
117
|
+
} finally {
|
|
118
|
+
e === this._transition && (this._transition = null);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
async _waitForInputs() {
|
|
122
|
+
const t = Date.now(), i = () => {
|
|
123
|
+
var e;
|
|
124
|
+
return Array.from(((e = this.domNode) == null ? void 0 : e.querySelectorAll("calcite-input")) ?? []);
|
|
125
|
+
};
|
|
126
|
+
for (; i().length === 0; )
|
|
127
|
+
if (await D(Q), Date.now() - t > W)
|
|
128
|
+
return;
|
|
129
|
+
}
|
|
130
|
+
_getFocusableInputs() {
|
|
131
|
+
var t;
|
|
132
|
+
return Array.from(((t = this.domNode) == null ? void 0 : t.querySelectorAll("calcite-input:not([read-only]):not([disabled])")) ?? []);
|
|
133
|
+
}
|
|
134
|
+
_getFocusableElements() {
|
|
135
|
+
var i;
|
|
136
|
+
const t = (i = this.domNode) == null ? void 0 : i.querySelector(`.${Z}`);
|
|
137
|
+
return [...Array.from((t == null ? void 0 : t.querySelectorAll("calcite-action:not([disabled])")) ?? []), ...this._getFocusableInputs()];
|
|
138
|
+
}
|
|
139
|
+
};
|
|
140
|
+
function h(t) {
|
|
141
|
+
t == null || t.setFocus();
|
|
142
|
+
}
|
|
143
|
+
function w(t) {
|
|
144
|
+
return (Array.isArray(t) ? t : [t]).flat(10).filter((i) => !!i);
|
|
145
|
+
}
|
|
146
|
+
r([b("esri/core/t9n/Units"), a()], s.prototype, "_messagesUnits", void 0), r([b("esri/views/interactive/tooltip/t9n/Tooltip"), a()], s.prototype, "_messagesTooltip", void 0), r([a()], s.prototype, "info", void 0), r([a()], s.prototype, "tooltip", void 0), r([a()], s.prototype, "_mode", void 0), r([a()], s.prototype, "mode", null), r([a()], s.prototype, "_displayUnits", null), r([a()], s.prototype, "_inputUnitInfos", null), r([a()], s.prototype, "_formatters", null), r([a()], s.prototype, "fieldContext", null), s = r([E("esri.views.interactive.tooltip.content.TooltipContent")], s);
|
|
147
|
+
const p = 1, Q = 50, W = 1e3;
|
|
148
|
+
export {
|
|
149
|
+
s as TooltipContent
|
|
150
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { _ as p } from "../../../../chunks/tslib.es6.js";
|
|
2
|
+
import "../../../../core/Logger.js";
|
|
3
|
+
import "../../../../core/has.js";
|
|
4
|
+
import "../../../../core/RandomLCG.js";
|
|
5
|
+
import "../../../../core/Error.js";
|
|
6
|
+
import { subclass as u } from "../../../../core/accessorSupport/decorators/subclass.js";
|
|
7
|
+
import { TooltipField as r } from "../components/TooltipField.js";
|
|
8
|
+
import { ValueByValue as c } from "../components/ValueByValue.js";
|
|
9
|
+
import { TooltipContent as f } from "./TooltipContent.js";
|
|
10
|
+
import "../../../../widgets/support/widgetUtils.js";
|
|
11
|
+
import { tsx as t, tsxFragment as h } from "../../../../widgets/support/jsxFactory.js";
|
|
12
|
+
let n = class extends f {
|
|
13
|
+
_renderContent() {
|
|
14
|
+
const { area: m, radius: o, xSize: s, ySize: a, visibleElements: i } = this.info, l = this._messagesTooltip.sketch, e = this._formatters;
|
|
15
|
+
return t(h, null, i.radius && o != null ? t(r, { title: l.radius, value: e.length(o) }) : null, i.size && s != null && a != null ? t(r, { title: l.size, value: t(c, { left: e.length(s), right: e.length(a) }) }) : null, i.area ? t(r, { title: l.area, value: e.area(m) }) : null);
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
n = p([u("esri.views.interactive.tooltip.content.TooltipContentDrawCircle")], n);
|
|
19
|
+
export {
|
|
20
|
+
n as TooltipContentDrawCircle
|
|
21
|
+
};
|