@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,30 @@
|
|
|
1
|
+
import { _ as o } from "../../chunks/tslib.es6.js";
|
|
2
|
+
import s from "../../core/Accessor.js";
|
|
3
|
+
import { property as e } from "../../core/accessorSupport/decorators/property.js";
|
|
4
|
+
import "../../core/has.js";
|
|
5
|
+
import "../../core/Logger.js";
|
|
6
|
+
import "../../core/RandomLCG.js";
|
|
7
|
+
import { subclass as p } from "../../core/accessorSupport/decorators/subclass.js";
|
|
8
|
+
import r from "../support/SnappingControls/VisibleElements.js";
|
|
9
|
+
let l = class extends s {
|
|
10
|
+
constructor(i) {
|
|
11
|
+
super(i), this.point = !0, this.polyline = !0, this.polygon = !0, this.rectangle = !0, this.circle = !0, this.multipoint = !0, this.mesh = !0;
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
o([e({ type: Boolean, nonNullable: !0 })], l.prototype, "point", void 0), o([e({ type: Boolean, nonNullable: !0 })], l.prototype, "polyline", void 0), o([e({ type: Boolean, nonNullable: !0 })], l.prototype, "polygon", void 0), o([e({ type: Boolean, nonNullable: !0 })], l.prototype, "rectangle", void 0), o([e({ type: Boolean, nonNullable: !0 })], l.prototype, "circle", void 0), o([e({ type: Boolean, nonNullable: !0 })], l.prototype, "multipoint", void 0), o([e({ type: Boolean, nonNullable: !0 })], l.prototype, "mesh", void 0), l = o([p("esri.widgets.Sketch.VisibleElements.CreateToolVisibilityMap")], l);
|
|
15
|
+
let n = class extends s {
|
|
16
|
+
constructor(i) {
|
|
17
|
+
super(i), this["rectangle-selection"] = !0, this["lasso-selection"] = !0, this["custom-selection"] = !0;
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
o([e({ nonNullable: !0 })], n.prototype, "rectangle-selection", void 0), o([e({ nonNullable: !0 })], n.prototype, "lasso-selection", void 0), o([e({ nonNullable: !0 })], n.prototype, "custom-selection", void 0), n = o([p("esri.widgets.Sketch.VisibleElements.SelectionToolVisibilityMap")], n);
|
|
21
|
+
let t = class extends s {
|
|
22
|
+
constructor(i) {
|
|
23
|
+
super(i), this.createTools = new l(), this.directionModePicker = !1, this.duplicateButton = !0, this.labelsToggle = !0, this.selectionTools = new n(), this.settingsMenu = !0, this.snappingControls = !0, this.snappingControlsElements = new r(), this.tooltipsToggle = !0, this.undoRedoMenu = !0;
|
|
24
|
+
}
|
|
25
|
+
};
|
|
26
|
+
o([e({ type: l, nonNullable: !0 })], t.prototype, "createTools", void 0), o([e({ type: Boolean, nonNullable: !0 })], t.prototype, "directionModePicker", void 0), o([e({ type: Boolean, nonNullable: !0 })], t.prototype, "duplicateButton", void 0), o([e({ type: Boolean, nonNullable: !0 })], t.prototype, "labelsToggle", void 0), o([e({ type: n, nonNullable: !0 })], t.prototype, "selectionTools", void 0), o([e({ type: Boolean, nonNullable: !0 })], t.prototype, "settingsMenu", void 0), o([e({ type: Boolean, nonNullable: !0 })], t.prototype, "snappingControls", void 0), o([e({ type: r, nonNullable: !0 })], t.prototype, "snappingControlsElements", void 0), o([e({ type: Boolean, nonNullable: !0 })], t.prototype, "tooltipsToggle", void 0), o([e({ type: Boolean, nonNullable: !0 })], t.prototype, "undoRedoMenu", void 0), t = o([p("esri.widgets.Sketch.VisibleElements")], t);
|
|
27
|
+
const g = t;
|
|
28
|
+
export {
|
|
29
|
+
g as default
|
|
30
|
+
};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { _ as e } from "../../../chunks/tslib.es6.js";
|
|
2
|
+
import { neverReached as i } from "../../../core/compilerUtils.js";
|
|
3
|
+
import a from "../../../core/Evented.js";
|
|
4
|
+
import { property as r } from "../../../core/accessorSupport/decorators/property.js";
|
|
5
|
+
import "../../../core/Logger.js";
|
|
6
|
+
import "../../../core/RandomLCG.js";
|
|
7
|
+
import { subclass as p } from "../../../core/accessorSupport/decorators/subclass.js";
|
|
8
|
+
let t = class extends a.EventedAccessor {
|
|
9
|
+
constructor(o) {
|
|
10
|
+
super(o), this.cancelled = !1, this.history = { undo: [], redo: [] }, this.type = null;
|
|
11
|
+
}
|
|
12
|
+
get tool() {
|
|
13
|
+
if (!this.activeComponent)
|
|
14
|
+
return null;
|
|
15
|
+
switch (this.activeComponent.type) {
|
|
16
|
+
case "graphic-mover":
|
|
17
|
+
case "move-3d":
|
|
18
|
+
return "move";
|
|
19
|
+
case "box":
|
|
20
|
+
case "transform-3d":
|
|
21
|
+
return "transform";
|
|
22
|
+
case "reshape":
|
|
23
|
+
case "reshape-3d":
|
|
24
|
+
return "reshape";
|
|
25
|
+
case "draw-2d":
|
|
26
|
+
case "draw-3d":
|
|
27
|
+
return this.activeComponent.geometryType;
|
|
28
|
+
default:
|
|
29
|
+
i(this.activeComponent);
|
|
30
|
+
}
|
|
31
|
+
return null;
|
|
32
|
+
}
|
|
33
|
+
addToHistory(o) {
|
|
34
|
+
this.history.redo = [], this.history.undo.push(o);
|
|
35
|
+
}
|
|
36
|
+
resetHistory() {
|
|
37
|
+
this.history.redo = [], this.history.undo = [];
|
|
38
|
+
}
|
|
39
|
+
canUndo() {
|
|
40
|
+
return this.history.undo.length > 0;
|
|
41
|
+
}
|
|
42
|
+
canRedo() {
|
|
43
|
+
return this.history.redo.length > 0;
|
|
44
|
+
}
|
|
45
|
+
complete() {
|
|
46
|
+
this._reset(), this.onEnd(), this.emit("complete");
|
|
47
|
+
}
|
|
48
|
+
cancel() {
|
|
49
|
+
this.cancelled = !0, this.complete();
|
|
50
|
+
}
|
|
51
|
+
_reset() {
|
|
52
|
+
var o;
|
|
53
|
+
(o = this.activeComponent) == null || o.reset();
|
|
54
|
+
}
|
|
55
|
+
refreshComponent() {
|
|
56
|
+
const o = this.activeComponent;
|
|
57
|
+
o && (o.type !== "box" && o.type !== "reshape" && o.type !== "graphic-mover" || o.refresh());
|
|
58
|
+
}
|
|
59
|
+
set undo(o) {
|
|
60
|
+
this._set("undo", () => {
|
|
61
|
+
this.canUndo() && o();
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
set redo(o) {
|
|
65
|
+
this._set("redo", () => {
|
|
66
|
+
this.canRedo() && o();
|
|
67
|
+
});
|
|
68
|
+
}
|
|
69
|
+
};
|
|
70
|
+
e([r()], t.prototype, "activeComponent", void 0), e([r()], t.prototype, "cancelled", void 0), e([r()], t.prototype, "history", void 0), e([r()], t.prototype, "tool", null), e([r()], t.prototype, "type", void 0), e([r()], t.prototype, "canUndo", null), e([r()], t.prototype, "canRedo", null), e([r()], t.prototype, "onEnd", void 0), e([r()], t.prototype, "undo", null), e([r()], t.prototype, "redo", null), e([r()], t.prototype, "toggleTool", void 0), e([r()], t.prototype, "addToSelection", void 0), e([r()], t.prototype, "removeFromSelection", void 0), t = e([p("esri.widgets.Sketch.support.OperationHandle")], t);
|
|
71
|
+
let s = class extends t {
|
|
72
|
+
};
|
|
73
|
+
e([r()], s.prototype, "activeComponent", void 0), s = e([p("esri.widgets.Sketch.support.CreateOperationHandle")], s);
|
|
74
|
+
let n = class extends t {
|
|
75
|
+
};
|
|
76
|
+
e([r()], n.prototype, "activeComponent", void 0), n = e([p("esri.widgets.Sketch.support.UpdateOperationHandle")], n);
|
|
77
|
+
export {
|
|
78
|
+
s as CreateOperationHandle,
|
|
79
|
+
t as OperationHandle,
|
|
80
|
+
n as UpdateOperationHandle
|
|
81
|
+
};
|
package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch.js
ADDED
|
@@ -0,0 +1,293 @@
|
|
|
1
|
+
import { _ as a } from "../chunks/tslib.es6.js";
|
|
2
|
+
import "../intl.js";
|
|
3
|
+
import { handlesGroup as f } from "../core/handleUtils.js";
|
|
4
|
+
import { removeMaybe as h, destroyMaybe as w } from "../core/maybe.js";
|
|
5
|
+
import { watch as u, syncAndInitial as v, when as y } from "../core/reactiveUtils.js";
|
|
6
|
+
import { property as r } from "../core/accessorSupport/decorators/property.js";
|
|
7
|
+
import "../core/has.js";
|
|
8
|
+
import "../core/Logger.js";
|
|
9
|
+
import "../core/RandomLCG.js";
|
|
10
|
+
import { subclass as M } from "../core/accessorSupport/decorators/subclass.js";
|
|
11
|
+
import C from "../views/interactive/sketch/SketchValueOptions.js";
|
|
12
|
+
import T from "./Widget.js";
|
|
13
|
+
import O from "./Sketch/SketchViewModel.js";
|
|
14
|
+
import b from "./Sketch/VisibleElements.js";
|
|
15
|
+
import { loadCalciteComponents as $ } from "./support/componentsUtils.js";
|
|
16
|
+
import { globalCss as m } from "./support/globalCss.js";
|
|
17
|
+
import { legacyIcon as S } from "./support/legacyIcon.js";
|
|
18
|
+
import k from "./support/SelectionToolbar.js";
|
|
19
|
+
import G from "./support/SketchTooltipControls.js";
|
|
20
|
+
import B from "./support/SnappingControls.js";
|
|
21
|
+
import { someElementsAreVisible as A, isRTL as _ } from "./support/widgetUtils.js";
|
|
22
|
+
import { messageBundle as g } from "./support/decorators/messageBundle.js";
|
|
23
|
+
import { vmEvent as D } from "./support/decorators/vmEvent.js";
|
|
24
|
+
import { tsx as s } from "./support/jsxFactory.js";
|
|
25
|
+
import { substitute as E } from "../intl/substitute.js";
|
|
26
|
+
const d = "esri-sketch", c = { base: d, widgetIcon: S.edit, verticalLayout: `${d}--vertical`, panel: `${d}__panel`, infoPanel: `${d}__info-panel`, section: `${d}__section`, toolSection: `${d}__tool-section`, infoSection: `${d}__info-section`, infoCountSection: `${d}__info-count-section`, menuContainer: `${d}__menu-container`, menuHeader: `${d}__menu-header`, menuTitle: `${d}__menu-title`, featureCountBadge: `${d}__feature-count-badge`, featureCountText: `${d}__feature-count-text`, featureCountNumber: `${d}__feature-count-number`, actionToggle: `${d}__action-toggle`, actionToggleOn: `${d}__action-toggle--on`, actionTitle: `${d}__item-action-title`, actionIcon: `${d}__item-action-icon` };
|
|
27
|
+
let n = class extends T {
|
|
28
|
+
constructor(e, t) {
|
|
29
|
+
super(e, t), this._activeCreateOptions = null, this._menuOpen = !1, this._selectionToolbar = null, this._viewModelHandlesGroup = null, this.availableCreateTools = ["point", "polyline", "polygon", "rectangle", "circle"], this.creationMode = "continuous", this.iconClass = c.widgetIcon, this.icon = null, this.layout = "horizontal", this.messages = null, this.messagesCommon = null, this.visibleElements = new b(), this._activateCreateTool = this._activateCreateTool.bind(this), this.viewModel = (e == null ? void 0 : e.viewModel) || new O();
|
|
30
|
+
}
|
|
31
|
+
initialize() {
|
|
32
|
+
const { layer: e, view: t } = this, i = new k({ view: (t == null ? void 0 : t.type) === "2d" ? t : null, sources: e ? [e] : null });
|
|
33
|
+
this.addHandles([u(() => this.viewModel, (o) => {
|
|
34
|
+
this._viewModelHandlesGroup = h(this._viewModelHandlesGroup), o && (this._viewModelHandlesGroup = f([o.on("create", (l) => {
|
|
35
|
+
this.scheduleRender(), this._onCreateOperation(l);
|
|
36
|
+
}), o.on("update", () => this.scheduleRender()), o.on("delete", (l) => this.emit("delete", l)), o.on("undo", () => this.scheduleRender()), o.on("redo", () => this.scheduleRender()), u(() => o.layer, (l) => {
|
|
37
|
+
this._selectionToolbar && (this._selectionToolbar.sources = l ? [l] : null);
|
|
38
|
+
}), u(() => o.view, (l) => {
|
|
39
|
+
this._selectionToolbar && (this._selectionToolbar.view = (l == null ? void 0 : l.type) === "2d" ? l : null);
|
|
40
|
+
}), u(() => o.state, () => this.notifyChange("state"))]));
|
|
41
|
+
}, v), y(() => i.activeToolInfo, () => this.viewModel.cancel()), i.on("complete", (o) => this._onSelectionOperationComplete(o)), u(() => {
|
|
42
|
+
const { selectionTools: o } = this.visibleElements;
|
|
43
|
+
return { lassoTool: !!(o != null && o["lasso-selection"]), rectangleTool: !!(o != null && o["rectangle-selection"]) };
|
|
44
|
+
}, (o) => {
|
|
45
|
+
Object.assign(i.visibleElements, o);
|
|
46
|
+
}, v)]), this._selectionToolbar = i;
|
|
47
|
+
}
|
|
48
|
+
loadDependencies() {
|
|
49
|
+
return $({ 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") });
|
|
50
|
+
}
|
|
51
|
+
destroy() {
|
|
52
|
+
var e;
|
|
53
|
+
(e = this._selectionToolbar) == null || e.destroy(), this._viewModelHandlesGroup = h(this._viewModelHandlesGroup);
|
|
54
|
+
}
|
|
55
|
+
get activeTool() {
|
|
56
|
+
var t;
|
|
57
|
+
const e = (t = this._selectionToolbar) == null ? void 0 : t.activeToolInfo;
|
|
58
|
+
if (e)
|
|
59
|
+
switch (e.toolName) {
|
|
60
|
+
case "lasso":
|
|
61
|
+
return "lasso-selection";
|
|
62
|
+
case "rectangle":
|
|
63
|
+
return "rectangle-selection";
|
|
64
|
+
case "default":
|
|
65
|
+
return "custom-selection";
|
|
66
|
+
}
|
|
67
|
+
return this.viewModel.activeTool;
|
|
68
|
+
}
|
|
69
|
+
get createGraphic() {
|
|
70
|
+
return this.viewModel.createGraphic;
|
|
71
|
+
}
|
|
72
|
+
get defaultCreateOptions() {
|
|
73
|
+
return this.viewModel.defaultCreateOptions;
|
|
74
|
+
}
|
|
75
|
+
set defaultCreateOptions(e) {
|
|
76
|
+
this.viewModel.defaultCreateOptions = e;
|
|
77
|
+
}
|
|
78
|
+
get defaultUpdateOptions() {
|
|
79
|
+
return this.viewModel.defaultUpdateOptions;
|
|
80
|
+
}
|
|
81
|
+
set defaultUpdateOptions(e) {
|
|
82
|
+
this.viewModel.defaultUpdateOptions = e;
|
|
83
|
+
}
|
|
84
|
+
get label() {
|
|
85
|
+
var e;
|
|
86
|
+
return ((e = this.messages) == null ? void 0 : e.widgetLabel) ?? "";
|
|
87
|
+
}
|
|
88
|
+
set label(e) {
|
|
89
|
+
this._overrideIfSome("label", e);
|
|
90
|
+
}
|
|
91
|
+
get labelOptions() {
|
|
92
|
+
return this.viewModel.labelOptions;
|
|
93
|
+
}
|
|
94
|
+
set labelOptions(e) {
|
|
95
|
+
this.viewModel.labelOptions = e;
|
|
96
|
+
}
|
|
97
|
+
get layer() {
|
|
98
|
+
return this.viewModel.layer;
|
|
99
|
+
}
|
|
100
|
+
set layer(e) {
|
|
101
|
+
this.viewModel.layer = e;
|
|
102
|
+
}
|
|
103
|
+
get snappingOptions() {
|
|
104
|
+
return this.viewModel.snappingOptions;
|
|
105
|
+
}
|
|
106
|
+
set snappingOptions(e) {
|
|
107
|
+
this.viewModel.snappingOptions = e;
|
|
108
|
+
}
|
|
109
|
+
get state() {
|
|
110
|
+
var e;
|
|
111
|
+
return (e = this._selectionToolbar) != null && e.activeToolInfo ? "active" : this.viewModel.state;
|
|
112
|
+
}
|
|
113
|
+
get tooltipOptions() {
|
|
114
|
+
return this.viewModel.tooltipOptions;
|
|
115
|
+
}
|
|
116
|
+
set tooltipOptions(e) {
|
|
117
|
+
this.viewModel.tooltipOptions = e;
|
|
118
|
+
}
|
|
119
|
+
get updateGraphics() {
|
|
120
|
+
return this.viewModel.updateGraphics;
|
|
121
|
+
}
|
|
122
|
+
get valueOptions() {
|
|
123
|
+
return this.viewModel.valueOptions;
|
|
124
|
+
}
|
|
125
|
+
set valueOptions(e) {
|
|
126
|
+
this.viewModel.valueOptions = e;
|
|
127
|
+
}
|
|
128
|
+
get view() {
|
|
129
|
+
return this.viewModel.view;
|
|
130
|
+
}
|
|
131
|
+
set view(e) {
|
|
132
|
+
this.viewModel.view = e;
|
|
133
|
+
}
|
|
134
|
+
set viewModel(e) {
|
|
135
|
+
const t = this._get("viewModel");
|
|
136
|
+
e !== t && (t && w(t), this._set("viewModel", e));
|
|
137
|
+
}
|
|
138
|
+
get _effectiveAvailableCreateTools() {
|
|
139
|
+
const { availableCreateTools: e, visibleElements: t } = this;
|
|
140
|
+
return e == null ? void 0 : e.filter((i) => {
|
|
141
|
+
var o;
|
|
142
|
+
return !!((o = t.createTools) != null && o[i]);
|
|
143
|
+
});
|
|
144
|
+
}
|
|
145
|
+
create(e, t) {
|
|
146
|
+
this._activeCreateOptions = t || null, this.viewModel.create(e, t);
|
|
147
|
+
}
|
|
148
|
+
update(e, t) {
|
|
149
|
+
return this.viewModel.update(e, t);
|
|
150
|
+
}
|
|
151
|
+
complete() {
|
|
152
|
+
this.viewModel.complete();
|
|
153
|
+
}
|
|
154
|
+
cancel() {
|
|
155
|
+
var e;
|
|
156
|
+
(e = this._selectionToolbar) == null || e.cancel(), this.viewModel.cancel();
|
|
157
|
+
}
|
|
158
|
+
undo() {
|
|
159
|
+
var e;
|
|
160
|
+
this.viewModel.undo(), (e = this.view) == null || e.focus();
|
|
161
|
+
}
|
|
162
|
+
redo() {
|
|
163
|
+
var e;
|
|
164
|
+
this.viewModel.redo(), (e = this.view) == null || e.focus();
|
|
165
|
+
}
|
|
166
|
+
delete() {
|
|
167
|
+
this.viewModel.delete();
|
|
168
|
+
}
|
|
169
|
+
duplicate() {
|
|
170
|
+
return this.viewModel.duplicate();
|
|
171
|
+
}
|
|
172
|
+
render() {
|
|
173
|
+
const { label: e, layout: t, viewModel: { state: i } } = this;
|
|
174
|
+
return s("div", { "aria-label": e, class: this.classes(c.base, m.widget, { [m.disabled]: i === "disabled", [c.verticalLayout]: t === "vertical" }) }, s("div", { class: c.panel, role: "toolbar" }, this._renderTopPanelContents()), s("div", { class: this.classes(c.panel, c.infoPanel) }, this._renderInfoPanelContents()));
|
|
175
|
+
}
|
|
176
|
+
_renderTopPanelContents() {
|
|
177
|
+
var l;
|
|
178
|
+
const e = this.classes(c.section, c.toolSection), { _effectiveAvailableCreateTools: t, visibleElements: i, viewModel: o } = this;
|
|
179
|
+
return [o.updateOnGraphicClick || (l = this._selectionToolbar) != null && l.visibleToolCount ? s("div", { class: e, key: "selection-button-container", role: "menu" }, this._renderDefaultSelectionButton(), this._renderSelectionToolbar()) : null, t != null && t.length ? s("div", { class: e, role: "menu" }, this._renderDrawActions()) : null, i.undoRedoMenu ? s("div", { class: e, key: "undo-redo-menu-button-container", role: "menu" }, this._renderUndoRedoMenuButtons()) : null, i.settingsMenu ? s("div", { class: c.section, key: "settings-menu-button-container" }, this._renderSettingsMenuButton()) : null];
|
|
180
|
+
}
|
|
181
|
+
_renderInfoPanelContents() {
|
|
182
|
+
return this._menuOpen ? this._renderSettingsMenu() : this.updateGraphics.length ? [s("div", { class: this.classes(c.section, c.infoSection, c.infoCountSection), key: "feature-count-container" }, this._renderFeatureCount()), s("div", { class: this.classes(c.section, c.infoSection), key: "delete-button-container" }, this._renderDuplicateButton(), this._renderDeleteButton())] : void 0;
|
|
183
|
+
}
|
|
184
|
+
_renderSettingsMenu() {
|
|
185
|
+
const { messagesCommon: e, snappingOptions: t, view: i, viewModel: o, visibleElements: l } = this, p = { directionModePicker: l.directionModePicker, labelsToggle: l.labelsToggle, tooltipsToggle: l.tooltipsToggle };
|
|
186
|
+
return s("div", { class: c.menuContainer, "data-testid": "menu", key: "settings-menu-container", role: "menu" }, s("header", { class: c.menuHeader, key: "settings-menu-header" }, s("span", { class: c.menuTitle }, e.settings)), A(p) ? s(G, { sketchOptions: o.sketchOptions, viewType: i == null ? void 0 : i.type, visibleElements: p }) : void 0, l.snappingControls && i && t ? s(B, { snappingOptions: t, view: i, visibleElements: l.snappingControlsElements }) : void 0);
|
|
187
|
+
}
|
|
188
|
+
_renderFeatureCount() {
|
|
189
|
+
const { layout: e, messages: t, updateGraphics: { length: i } } = this, o = E(t.selectedCount, { count: i });
|
|
190
|
+
return s("div", { "aria-label": o, class: c.featureCountBadge }, s("span", { class: c.featureCountNumber }, e === "vertical" ? i : o));
|
|
191
|
+
}
|
|
192
|
+
_renderDuplicateButton() {
|
|
193
|
+
if (!this.visibleElements.duplicateButton)
|
|
194
|
+
return;
|
|
195
|
+
const e = this.messages, t = this.updateGraphics.length > 1 ? e.duplicateFeatures : e.duplicateFeature;
|
|
196
|
+
return s("calcite-action", { bind: this, onclick: this._onDuplicateSelect, scale: "s", text: t, title: t }, s("calcite-icon", { icon: "copy", scale: "s" }));
|
|
197
|
+
}
|
|
198
|
+
_renderDeleteButton() {
|
|
199
|
+
const e = this.messages, t = this.updateGraphics.length > 1 ? e.deleteFeatures : e.deleteFeature;
|
|
200
|
+
return s("calcite-action", { bind: this, onclick: this.delete, scale: "s", text: t, title: t }, s("calcite-icon", { icon: "trash", scale: "s" }));
|
|
201
|
+
}
|
|
202
|
+
_renderDefaultSelectionButton() {
|
|
203
|
+
if (!this.viewModel.updateOnGraphicClick)
|
|
204
|
+
return;
|
|
205
|
+
const { messages: { selectFeature: e }, state: t } = this;
|
|
206
|
+
return s("calcite-action", { active: t === "ready", bind: this, disabled: t === "disabled", onclick: this._activateDefaultSelectTool, scale: "s", text: e, title: e }, s("calcite-icon", { icon: "cursor", scale: "s" }));
|
|
207
|
+
}
|
|
208
|
+
_renderSelectionToolbar() {
|
|
209
|
+
var e;
|
|
210
|
+
if (((e = this.view) == null ? void 0 : e.type) === "2d" && this._selectionToolbar)
|
|
211
|
+
return this._selectionToolbar.render();
|
|
212
|
+
}
|
|
213
|
+
_renderDrawActions() {
|
|
214
|
+
var t;
|
|
215
|
+
const { messages: e } = this;
|
|
216
|
+
return (t = this._effectiveAvailableCreateTools) == null ? void 0 : t.map((i) => {
|
|
217
|
+
switch (i) {
|
|
218
|
+
case "point":
|
|
219
|
+
return this._renderAction(i, e.drawPoint, "pin");
|
|
220
|
+
case "polyline":
|
|
221
|
+
return this._renderAction(i, e.drawPolyline, "line");
|
|
222
|
+
case "polygon":
|
|
223
|
+
return this._renderAction(i, e.drawPolygon, "polygon");
|
|
224
|
+
case "rectangle":
|
|
225
|
+
return this._renderAction(i, e.drawRectangle, "rectangle");
|
|
226
|
+
case "circle":
|
|
227
|
+
return this._renderAction(i, e.drawCircle, "circle");
|
|
228
|
+
default:
|
|
229
|
+
return;
|
|
230
|
+
}
|
|
231
|
+
});
|
|
232
|
+
}
|
|
233
|
+
_renderAction(e, t, i) {
|
|
234
|
+
return s("calcite-action", { active: this.activeTool === e, bind: this, disabled: this.state === "disabled", onclick: () => this._activateCreateTool(e), scale: "s", text: t, title: t }, s("calcite-icon", { icon: i, scale: "s" }));
|
|
235
|
+
}
|
|
236
|
+
_renderUndoRedoMenuButtons() {
|
|
237
|
+
return [this._renderUndoButton(), this._renderRedoButton()];
|
|
238
|
+
}
|
|
239
|
+
_renderUndoButton() {
|
|
240
|
+
const e = this.messages.undo;
|
|
241
|
+
return s("calcite-action", { bind: this, disabled: !this.viewModel.canUndo() || this.state === "disabled", onclick: this.undo, scale: "s", text: e, title: e }, s("calcite-icon", { icon: _(this.container) ? "redo" : "undo", scale: "s" }));
|
|
242
|
+
}
|
|
243
|
+
_renderRedoButton() {
|
|
244
|
+
const e = this.messages.redo;
|
|
245
|
+
return s("calcite-action", { bind: this, disabled: !this.viewModel.canRedo() || this.state === "disabled", onclick: this.redo, scale: "s", text: e, title: e }, s("calcite-icon", { icon: _(this.container) ? "undo" : "redo", scale: "s" }));
|
|
246
|
+
}
|
|
247
|
+
_renderSettingsMenuButton() {
|
|
248
|
+
const e = this.messagesCommon.settings;
|
|
249
|
+
return s("calcite-action", { active: this._menuOpen, bind: this, "data-testid": "settings-menu-action", disabled: this.state === "disabled", onclick: this._toggleMenu, scale: "s", text: e, title: e }, s("calcite-icon", { icon: "gear", scale: "s" }));
|
|
250
|
+
}
|
|
251
|
+
_activateCreateTool(e) {
|
|
252
|
+
var t;
|
|
253
|
+
this.activeTool !== e ? ((t = this._selectionToolbar) == null || t.cancel(), this.create(e)) : this.cancel();
|
|
254
|
+
}
|
|
255
|
+
_onCreateOperation(e) {
|
|
256
|
+
if (e.state !== "complete")
|
|
257
|
+
return;
|
|
258
|
+
const { creationMode: t } = this, { type: i } = e;
|
|
259
|
+
if (i === "create") {
|
|
260
|
+
const { tool: o, graphic: l } = e, p = this._activeCreateOptions;
|
|
261
|
+
this._activeCreateOptions = null, t === "continuous" ? this.create(o, p) : t === "update" && this.update([l]);
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
_toggleMenu() {
|
|
265
|
+
this._menuOpen = !this._menuOpen, this.scheduleRender();
|
|
266
|
+
}
|
|
267
|
+
_onDuplicateSelect() {
|
|
268
|
+
const e = this.duplicate(), t = this.viewModel.activeTool;
|
|
269
|
+
t !== "transform" && t !== "reshape" || this.update(e, { tool: t });
|
|
270
|
+
}
|
|
271
|
+
_onSelectionOperationComplete(e) {
|
|
272
|
+
const { viewModel: { defaultUpdateOptions: t } } = this, { selection: i } = e;
|
|
273
|
+
if (!e.aborted && i.length) {
|
|
274
|
+
const o = t.tool, l = i.length > 1 && o === "reshape" ? "transform" : o;
|
|
275
|
+
this.update(i, { ...t, tool: l });
|
|
276
|
+
}
|
|
277
|
+
this.notifyChange("state");
|
|
278
|
+
}
|
|
279
|
+
_activateDefaultSelectTool() {
|
|
280
|
+
var e;
|
|
281
|
+
this.cancel(), (e = this.view) == null || e.focus();
|
|
282
|
+
}
|
|
283
|
+
};
|
|
284
|
+
a([r()], n.prototype, "activeTool", null), a([r({ cast: (e) => {
|
|
285
|
+
if (!(e != null && e.length))
|
|
286
|
+
return null;
|
|
287
|
+
const t = /* @__PURE__ */ new Set(["point", "polyline", "polygon", "rectangle", "circle"]);
|
|
288
|
+
return e.filter((i) => t.has(i));
|
|
289
|
+
} })], n.prototype, "availableCreateTools", void 0), a([r({ readOnly: !0 })], n.prototype, "createGraphic", null), a([r()], n.prototype, "creationMode", void 0), a([r()], n.prototype, "defaultCreateOptions", null), a([r()], n.prototype, "defaultUpdateOptions", null), a([r()], n.prototype, "iconClass", void 0), a([r()], n.prototype, "icon", void 0), a([r()], n.prototype, "label", null), a([r()], n.prototype, "labelOptions", null), a([r()], n.prototype, "layer", null), a([r({ type: ["horizontal", "vertical"] })], n.prototype, "layout", void 0), a([r(), g("esri/widgets/Sketch/t9n/Sketch")], n.prototype, "messages", void 0), a([r(), g("esri/t9n/common")], n.prototype, "messagesCommon", void 0), a([r()], n.prototype, "snappingOptions", null), a([r()], n.prototype, "state", null), a([r()], n.prototype, "tooltipOptions", null), a([r({ readOnly: !0 })], n.prototype, "updateGraphics", null), a([r({ type: C, nonNullable: !0 })], n.prototype, "valueOptions", null), a([r()], n.prototype, "view", null), a([r(), D(["create", "update", "undo", "redo"])], n.prototype, "viewModel", null), a([r({ type: b, nonNullable: !0 })], n.prototype, "visibleElements", void 0), a([r()], n.prototype, "_effectiveAvailableCreateTools", null), n = a([M("esri.widgets.Sketch")], n);
|
|
290
|
+
const ne = n;
|
|
291
|
+
export {
|
|
292
|
+
ne as default
|
|
293
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import "../../../Color.js";
|
|
2
|
+
import "../../../intl/date.js";
|
|
3
|
+
import { formatNumber as p } from "../../../intl/number.js";
|
|
4
|
+
import "../../../core/RandomLCG.js";
|
|
5
|
+
import "../../../core/Logger.js";
|
|
6
|
+
import "../../../layers/support/fieldUtils.js";
|
|
7
|
+
import "../../../intl.js";
|
|
8
|
+
import "../../../renderers/visualVariables/support/ColorStop.js";
|
|
9
|
+
import "../../../geometry.js";
|
|
10
|
+
import "../../../core/Error.js";
|
|
11
|
+
import "../../../geometry/SpatialReference.js";
|
|
12
|
+
import "../../../Basemap.js";
|
|
13
|
+
import "../../../config.js";
|
|
14
|
+
import "../../../core/Collection.js";
|
|
15
|
+
import "../../../core/urlUtils.js";
|
|
16
|
+
import "../../../core/has.js";
|
|
17
|
+
import "../../../core/libs/gl-matrix-2/factories/mat4f32.js";
|
|
18
|
+
import "../../../core/libs/gl-matrix-2/math/mat4.js";
|
|
19
|
+
import "../../../request.js";
|
|
20
|
+
import "../../../intl/messages.js";
|
|
21
|
+
import "../../../time/timeZoneUtils.js";
|
|
22
|
+
import "../../../symbols/support/utils.js";
|
|
23
|
+
import "../../Legend/support/colorRampUtils.js";
|
|
24
|
+
import "../../../renderers/support/HeatmapColorStop.js";
|
|
25
|
+
import "../../../renderers/visualVariables/SizeVariable.js";
|
|
26
|
+
function B(t) {
|
|
27
|
+
const i = Math.floor(Math.log10(Math.abs(t))) + 1, o = i < 4 || i > 6 ? 4 : i, m = 1e6, r = Math.abs(t) >= m ? "compact" : "standard";
|
|
28
|
+
return p(t, { notation: r, minimumSignificantDigits: 2, maximumSignificantDigits: o });
|
|
29
|
+
}
|
|
30
|
+
export {
|
|
31
|
+
B as formatNumberLabel
|
|
32
|
+
};
|
|
@@ -1,14 +1,18 @@
|
|
|
1
|
-
import { clamp as
|
|
2
|
-
import { globalCss as
|
|
1
|
+
import { clamp as i } from "../../core/mathUtils.js";
|
|
2
|
+
import { globalCss as o } from "./globalCss.js";
|
|
3
3
|
import { classes as l } from "./widgetUtils.js";
|
|
4
|
-
import { tsx as
|
|
5
|
-
function
|
|
6
|
-
const
|
|
7
|
-
return
|
|
4
|
+
import { tsx as c } from "./jsxFactory.js";
|
|
5
|
+
function u({ level: e, class: a, ...s }, t) {
|
|
6
|
+
const n = r(e);
|
|
7
|
+
return c(`h${n}`, { ...s, "aria-level": String(n), class: l(o.heading, a), role: "heading" }, t);
|
|
8
8
|
}
|
|
9
|
-
function
|
|
10
|
-
return
|
|
9
|
+
function r(e) {
|
|
10
|
+
return i(Math.ceil(e), 1, 6);
|
|
11
|
+
}
|
|
12
|
+
function d(e, a = 1) {
|
|
13
|
+
return r(e + a);
|
|
11
14
|
}
|
|
12
15
|
export {
|
|
13
|
-
|
|
16
|
+
u as Heading,
|
|
17
|
+
d as incrementHeadingLevel
|
|
14
18
|
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { loadCalciteComponents as b } from "./componentsUtils.js";
|
|
2
|
+
import "./widgetUtils.js";
|
|
3
|
+
import { tsx as e, tsxFragment as d } from "./jsxFactory.js";
|
|
4
|
+
const C = () => Promise.all([b({ icon: () => import("../../../../../../@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-icon.js"), label: () => import("../../../../../../@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-label.js"), switch: () => import("../../../../../../@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-switch.js"), tooltip: () => import("../../../../../../@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-tooltip.js") })]), l = "esri-labeled-switch", t = { label: `${l}__label`, labelContent: `${l}__label-content`, icon: `${l}__icon`, tooltip: `${l}__tooltip` };
|
|
5
|
+
function _({ checked: n, disabled: o, hint: a, key: i, label: c, onChange: s }) {
|
|
6
|
+
return e("calcite-label", { class: t.label, disabled: o, key: i, layout: "inline-space-between", scale: "s" }, e("div", { class: t.labelContent, key: "label-content" }, a ? e(d, null, e("div", null, c), e("calcite-icon", { class: t.icon, icon: "information", id: i, scale: "s" }), e("calcite-tooltip", { class: t.tooltip, referenceElement: i }, a)) : c), e("calcite-switch", { checked: n, disabled: o, scale: "s", onCalciteSwitchChange: (r) => s(r.target.checked) }));
|
|
7
|
+
}
|
|
8
|
+
export {
|
|
9
|
+
_ as LabeledSwitch,
|
|
10
|
+
C as loadLabeledSwitchComponents
|
|
11
|
+
};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { _ as i } from "../../../chunks/tslib.es6.js";
|
|
2
|
+
import { deprecatedProperty as h } from "../../../core/deprecate.js";
|
|
3
|
+
import y from "../../../core/Evented.js";
|
|
4
|
+
import { handlesGroup as g } from "../../../core/handleUtils.js";
|
|
5
|
+
import m from "../../../core/Logger.js";
|
|
6
|
+
import { removeMaybe as d } from "../../../core/maybe.js";
|
|
7
|
+
import { watch as f } from "../../../core/reactiveUtils.js";
|
|
8
|
+
import { property as l } from "../../../core/accessorSupport/decorators/property.js";
|
|
9
|
+
import "../../../core/has.js";
|
|
10
|
+
import "../../../core/RandomLCG.js";
|
|
11
|
+
import { subclass as _ } from "../../../core/accessorSupport/decorators/subclass.js";
|
|
12
|
+
import { isKnowledgeGraphLayer as w, isLinkChartLayer as O } from "../../../layers/support/layerUtils.js";
|
|
13
|
+
import { findLayerView as v } from "../../../views/draw/support/layerUtils.js";
|
|
14
|
+
import { isSelectableLayerView2D as c } from "../../../views/support/layerViewUtils.js";
|
|
15
|
+
import b from "../Selector2D/SelectionOperation.js";
|
|
16
|
+
let r = class extends y.EventedAccessor {
|
|
17
|
+
constructor(e) {
|
|
18
|
+
super(e), this._operationHandlesGroup = null, this.activeOperation = null, this.sources = null;
|
|
19
|
+
}
|
|
20
|
+
initialize() {
|
|
21
|
+
this.addHandles([f(() => this._sources, (e) => {
|
|
22
|
+
this.activeOperation && (this.activeOperation.sources = e);
|
|
23
|
+
})]);
|
|
24
|
+
}
|
|
25
|
+
destroy() {
|
|
26
|
+
this._operationHandlesGroup = d(this._operationHandlesGroup);
|
|
27
|
+
}
|
|
28
|
+
get _sources() {
|
|
29
|
+
const { sources: e, view: t } = this;
|
|
30
|
+
return t && (e != null && e.length) ? e.flatMap((o) => {
|
|
31
|
+
if (c(o))
|
|
32
|
+
return o;
|
|
33
|
+
if (w(o) || O(o)) {
|
|
34
|
+
const p = o.layers || [], s = p.map((n) => {
|
|
35
|
+
const u = v(t, n) || void 0;
|
|
36
|
+
return c(u) ? u : n;
|
|
37
|
+
});
|
|
38
|
+
return s.length ? s.toArray() : p.length ? p.toArray() : o;
|
|
39
|
+
}
|
|
40
|
+
const a = v(t, o) || void 0;
|
|
41
|
+
return c(a) ? a : o;
|
|
42
|
+
}) : [];
|
|
43
|
+
}
|
|
44
|
+
get layers() {
|
|
45
|
+
return h(m.getLogger(this), "layers", { replacement: "Use SelectionToolbar.sources instead." }), this.sources;
|
|
46
|
+
}
|
|
47
|
+
set layers(e) {
|
|
48
|
+
h(m.getLogger(this), "layers", { replacement: "Use SelectionToolbar.sources instead." }), this.sources = e;
|
|
49
|
+
}
|
|
50
|
+
get state() {
|
|
51
|
+
const { _sources: e, view: t } = this, o = !(e != null && e.length) && !(t != null && t.selectionManager.sources.length);
|
|
52
|
+
return this.activeOperation ? "active" : t != null && t.ready && !o ? "ready" : "disabled";
|
|
53
|
+
}
|
|
54
|
+
cancel() {
|
|
55
|
+
var e;
|
|
56
|
+
this.state === "active" && ((e = this.activeOperation) == null || e.cancel(), this._set("activeOperation", null));
|
|
57
|
+
}
|
|
58
|
+
activate(e) {
|
|
59
|
+
const { _sources: t, state: o, view: a } = this, p = !(t != null && t.length) && !(a != null && a.selectionManager.sources.length);
|
|
60
|
+
if (o === "disabled" || p || !this.view)
|
|
61
|
+
return;
|
|
62
|
+
o === "active" && this.cancel();
|
|
63
|
+
const s = new b({ view: this.view, sources: t, options: e });
|
|
64
|
+
return this._operationHandlesGroup = g([s.selection.on("change", (n) => this.emit("selection-change", n)), s.once("complete", (n) => this._onOperationComplete(n))]), this._set("activeOperation", s), s;
|
|
65
|
+
}
|
|
66
|
+
_onOperationComplete(e) {
|
|
67
|
+
this._operationHandlesGroup = d(this._operationHandlesGroup), this._set("activeOperation", null), this.emit("complete", e);
|
|
68
|
+
}
|
|
69
|
+
};
|
|
70
|
+
i([l()], r.prototype, "_sources", null), i([l({ readOnly: !0 })], r.prototype, "activeOperation", void 0), i([l()], r.prototype, "layers", null), i([l()], r.prototype, "sources", void 0), i([l({ readOnly: !0 })], r.prototype, "state", null), i([l()], r.prototype, "view", void 0), r = i([_("esri.widgets.support.SelectionToolbar.SelectionToolbarViewModel")], r);
|
|
71
|
+
const E = r;
|
|
72
|
+
export {
|
|
73
|
+
E as default
|
|
74
|
+
};
|