fcs-core-viewer 0.49.0 → 0.52.1
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/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/CreationToolsParentResolver.d.ts +1 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/Index.d.ts +75 -6
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveArcRadiusTwoVertices.d.ts +18 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveArcThreeVertices.d.ts +13 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveAtIntersection.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/{OpLineByPoints.d.ts → OpCurveByPoints.d.ts} +2 -2
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/{OpLineByXYZ.d.ts → OpCurveByXYZ.d.ts} +2 -2
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveCircleCenterVector.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveCircleThreeVertices.d.ts +13 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpExtractAndBuild.d.ts +16 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpFaceByRevolute.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointAtCOG.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointAtCenter.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointAtIntersection.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointByInterpolation.d.ts +1 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointByParameters.d.ts +18 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointByXYZ.d.ts +1 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointOnVertex.d.ts +1 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesBox.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesCone.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesCylinder.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesDisc.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesRectangle.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesSphere.d.ts +13 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesTorus.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidByBoundary.d.ts +13 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidByExtrusion.d.ts +16 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidByLoft.d.ts +13 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidByRevolute.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidBySweep.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/Index.d.ts +51 -4
- package/fcs-core-editor@types/Editor3D/Operations/CAD/InspectionTools/OpMeasureDistance.d.ts +2 -1
- package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/OpTranslate.d.ts +3 -6
- package/fcs-core-editor@types/Editor3D/Operations/Index.d.ts +51 -4
- package/fcs-core-editor@types/Editor3D/Operations/OperationCollection.d.ts +35 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/AuxiliaryTools/CSystem/UICSystemByPoints.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/AuxiliaryTools/Vector/UIVectorByPoints.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Curve/UICurveArcRadiusTwoVertices.d.ts +35 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineArcThreeVertices.d.ts → Curve/UICurveArcThreeVertices.d.ts} +12 -12
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Curve/UICurveAtIntersection.d.ts +26 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineAtIntersection.d.ts → Curve/UICurveByInterpolation.d.ts} +1 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByOffsetXYZ.d.ts → Curve/UICurveByOffsetXYZ.d.ts} +1 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByPoints.d.ts → Curve/UICurveByPoints.d.ts} +1 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByXYZ.d.ts → Curve/UICurveByXYZ.d.ts} +1 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineChamfer.d.ts → Curve/UICurveChamfer.d.ts} +1 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Curve/UICurveCircleCenterVector.d.ts +30 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByInterpolation.d.ts → Curve/UICurveCircleThreeVertices.d.ts} +12 -12
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineFillet.d.ts → Curve/UICurveFillet.d.ts} +1 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineTangentToLines.d.ts → Curve/UICurveTangentToLines.d.ts} +1 -11
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildBuildShell.d.ts +1 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildBuildSolid.d.ts +3 -8
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildBuildWire.d.ts +1 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractFace.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractLine.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractPoint.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractShell.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractSolid.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractWire.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByEdges.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByExtension.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByExtrusion.d.ts +0 -10
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByFilling.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByOffset.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByReconstruction.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByRevolute.d.ts +12 -41
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceBySweep.d.ts +0 -10
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceBySweepbiNormal.d.ts +0 -15
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceMidsurface.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFacebyLoft.d.ts +0 -15
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Index.d.ts +29 -45
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointAtCOG.d.ts +40 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointAtCenter.d.ts +9 -21
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointAtIntersection.d.ts +16 -15
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointByInterpolation.d.ts +0 -8
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointByParameters.d.ts +14 -11
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointOnVertex.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesBox.d.ts +12 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesCone.d.ts +12 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesCylinder.d.ts +10 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesDisc.d.ts +10 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesRectangle.d.ts +12 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesSphere.d.ts +8 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesTorus.d.ts +10 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByBoundary.d.ts +9 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByExtrusion.d.ts +15 -28
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByLoft.d.ts +9 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByRevolute.d.ts +12 -28
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidBySweep.d.ts +10 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/EditingTools/Delete/UIDeleteShape.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/EditingTools/UISplitFace.d.ts +0 -26
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/InspectionTools/UICheckNormals.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/InspectionTools/UIMeasureDistance.d.ts +1 -8
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/InspectionTools/UIPointCoordinates.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Index.d.ts +0 -2
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Location/UILocationByCoordinateTransformation.d.ts +0 -7
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Mirror/UIMirrorByVector.d.ts +0 -7
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Project/UIProjectOnFace.d.ts +0 -16
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Project/UIProjectOnLine.d.ts +0 -10
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Rotate/UIRotateByVectorAndAngle.d.ts +0 -9
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Scale/UIScaleByXYZ.d.ts +0 -9
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslate.d.ts +0 -62
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslateByVector.d.ts +15 -39
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslateByVectorAndLength.d.ts +16 -40
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIBeam.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIConcentratedLoad.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIContactPair.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UICustomMaterial.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIDashpot.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIDynamicHarmonic.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIDynamicImplicit.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UILinearStatic.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIMass.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIMembrane.d.ts +11 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIModal.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIMotionConstraint.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UINonlinearStatic.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIOutputControl.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIShell.d.ts +11 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UISolid.d.ts +2 -2
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UISpring.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Advanced/UIMeshLine.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Basic/UIRigidCoupling.d.ts +0 -7
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UICreateNode.d.ts +1 -15
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UIDistributingCoupling.d.ts +1 -9
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UIKinematicCoupling.d.ts +1 -9
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Advanced/UIMeshFace.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Advanced/UIMeshPatch.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Advanced/UIRemesh.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Basic/UIBoundary2D.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Basic/UIExtrude.d.ts +0 -9
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Manual/UICreateElement.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_3D/Advanced/UIMeshVolume.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/EditingTools/Merge/UIMergeByElements.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/EditingTools/Merge/UIMergeByNodes.d.ts +0 -7
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/InspectionTools/UICheckNormals.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/InspectionTools/UIFreeBorders.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/Topbar/Operations/FindByIdOperation.d.ts +1 -1
- package/fcs-core-editor@types/Viewer3D/Common/Diagnostics/StatusBar.d.ts +6 -0
- package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/Index.d.ts +140 -134
- package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/Items/Files/CSystem.d.ts +20 -0
- package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/Items/Files/Orientation.d.ts +20 -0
- package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/ModelData.d.ts +1 -1
- package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/Shapes/Geometry/MainshapeTypes/{TopoLine.d.ts → TopoCurve.d.ts} +1 -1
- package/fcs-core-editor@types/Viewer3D/DataStorage/SelectionData.d.ts +4 -0
- package/fcs-core-editor@types/Viewer3D/Loader/GEOMLoader/{LineLoader.d.ts → CurveLoader.d.ts} +3 -3
- package/fcs-core-editor@types/Viewer3D/Loader/GEOMLoader/GeomLoader.d.ts +1 -1
- package/fcs-core-editor@types/Viewer3D/SelectionTools/SelectionControls/SelectionControls.d.ts +2 -2
- package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/EntityButton.d.ts +8 -0
- package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/ModeSelector.d.ts +21 -3
- package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/SelectionInputField.d.ts +2 -0
- package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/StatusBar/LogMessageOperation.d.ts +2 -1
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Index.d.ts +4 -0
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Query/FindNodeElement.d.ts +22 -0
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Query/Index.d.ts +2 -0
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Visualization/Transparency.d.ts +1 -1
- package/package.json +5 -3
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineArcCenterVector.d.ts +0 -54
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineCircleCenterVector.d.ts +0 -55
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineCircleThreeVertices.d.ts +0 -41
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslateByDXDYXZ.d.ts +0 -41
|
@@ -15,7 +15,7 @@ import * as TopoFace from './Shapes/Geometry/SubshapeTypes/TopoFace';
|
|
|
15
15
|
import * as TopoEdge from './Shapes/Geometry/SubshapeTypes/TopoEdge';
|
|
16
16
|
import * as TopoVertex from './Shapes/Geometry/SubshapeTypes/TopoVertex';
|
|
17
17
|
import * as TopoPoint from './Shapes/Geometry/MainshapeTypes/TopoPoint';
|
|
18
|
-
import * as
|
|
18
|
+
import * as TopoCurve from './Shapes/Geometry/MainshapeTypes/TopoCurve';
|
|
19
19
|
import * as TopoSurface from './Shapes/Geometry/MainshapeTypes/TopoSurface';
|
|
20
20
|
import * as TopoWire from './Shapes/Geometry/MainshapeTypes/TopoWire';
|
|
21
21
|
import * as TopoShell from './Shapes/Geometry/MainshapeTypes/TopoShell';
|
|
@@ -40,6 +40,8 @@ import * as Hexa_8N from './Elements/ElementShapes/PermanentElementShapes/Hexa_8
|
|
|
40
40
|
import * as GeomPart from './Items/Files/Part';
|
|
41
41
|
import * as MeshPart from './Items/Files/Mesh';
|
|
42
42
|
import * as Thread from './Items/Files/Thread';
|
|
43
|
+
import * as Orientation from './Items/Files/Orientation';
|
|
44
|
+
import * as CSystem from './Items/Files/CSystem';
|
|
43
45
|
import * as Nodeset from './Items/Files/SetTypes/Nodeset';
|
|
44
46
|
import * as Elementset from './Items/Files/SetTypes/Elementset';
|
|
45
47
|
import * as LoadDefinition from './Items/Files/LoadDefinition';
|
|
@@ -267,7 +269,7 @@ export declare namespace ModelData {
|
|
|
267
269
|
uniqueID_To_Instance: {};
|
|
268
270
|
vectorVID_To_iVector: {};
|
|
269
271
|
faceVID_To_iFace: {};
|
|
270
|
-
|
|
272
|
+
curveVID_To_iCurve: {};
|
|
271
273
|
edgeVID_To_iEdge: {};
|
|
272
274
|
pointVID_To_iPoint: {};
|
|
273
275
|
vertexVID_To_iVertex: {};
|
|
@@ -297,7 +299,7 @@ export declare namespace ModelData {
|
|
|
297
299
|
TopoShell: typeof TopoShell.TopoShell;
|
|
298
300
|
TopoWire: typeof TopoWire.TopoWire;
|
|
299
301
|
TopoSurface: typeof TopoSurface.TopoSurface;
|
|
300
|
-
|
|
302
|
+
TopoCurve: typeof TopoCurve.TopoCurve;
|
|
301
303
|
TopoPoint: typeof TopoPoint.TopoPoint;
|
|
302
304
|
TopoVertex: typeof TopoVertex.TopoVertex;
|
|
303
305
|
TopoEdge: typeof TopoEdge.TopoEdge;
|
|
@@ -315,6 +317,8 @@ export declare namespace ModelData {
|
|
|
315
317
|
Elementset: typeof Elementset.Elementset;
|
|
316
318
|
Nodeset: typeof Nodeset.Nodeset;
|
|
317
319
|
Thread: typeof Thread.Thread;
|
|
320
|
+
CSystem: typeof CSystem.CSystem;
|
|
321
|
+
Orientation: typeof Orientation.Orientation;
|
|
318
322
|
MeshPart: typeof MeshPart.MeshPart;
|
|
319
323
|
GeomPart: typeof GeomPart.GeomPart;
|
|
320
324
|
};
|
|
@@ -341,7 +345,7 @@ export declare namespace ModelData {
|
|
|
341
345
|
TopoEdge = 1,
|
|
342
346
|
TopoVertex = 2,
|
|
343
347
|
TopoPoint = 3,
|
|
344
|
-
|
|
348
|
+
TopoCurve = 4,
|
|
345
349
|
TopoSurface = 5,
|
|
346
350
|
TopoWire = 6,
|
|
347
351
|
TopoShell = 7,
|
|
@@ -353,105 +357,107 @@ export declare namespace ModelData {
|
|
|
353
357
|
TopoMesh2D = 13,
|
|
354
358
|
TopoMesh3D = 14,
|
|
355
359
|
TopoMass = 15,
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
360
|
+
Vector = 16,
|
|
361
|
+
CoordinateSystem = 17,
|
|
362
|
+
GeomPart = 18,
|
|
363
|
+
Orientation = 19,
|
|
364
|
+
CSystem = 20,
|
|
365
|
+
Thread = 21,
|
|
366
|
+
MeshPart = 22,
|
|
367
|
+
Nodeset = 23,
|
|
368
|
+
Elementset = 24,
|
|
369
|
+
LoadDefinition = 25,
|
|
370
|
+
MaterialDefinition = 26,
|
|
371
|
+
PropertyDefinition = 27,
|
|
372
|
+
ContactDefinition = 28,
|
|
373
|
+
ConstraintDefinition = 29,
|
|
374
|
+
AnalysisStep = 30,
|
|
375
|
+
OutputDefinition = 31,
|
|
376
|
+
Assembly = 32,
|
|
377
|
+
GeometryContainer = 33,
|
|
378
|
+
MeshContainer = 34,
|
|
379
|
+
SystemContainer = 35,
|
|
380
|
+
Set = 36,
|
|
381
|
+
LoadContainer = 37,
|
|
382
|
+
MaterialContainer = 38,
|
|
383
|
+
PropertyContainer = 39,
|
|
384
|
+
ContactContainer = 40,
|
|
385
|
+
ConstraintContainer = 41,
|
|
386
|
+
AnalysisContainer = 42,
|
|
387
|
+
OutputContainer = 43,
|
|
388
|
+
CollaborationContainer = 44,
|
|
389
|
+
BoundaryCondition = 45,
|
|
390
|
+
ConcentratedForce = 46,
|
|
391
|
+
ConcentratedMoment = 47,
|
|
392
|
+
Pressure = 48,
|
|
393
|
+
Displacement = 49,
|
|
394
|
+
Velocity = 50,
|
|
395
|
+
Acceleration = 51,
|
|
396
|
+
Temperature = 52,
|
|
397
|
+
CustomMaterial = 53,
|
|
398
|
+
GeneralSolid = 54,
|
|
399
|
+
GeneralShell = 55,
|
|
400
|
+
GeneralBeam = 56,
|
|
401
|
+
Rectangle = 57,
|
|
402
|
+
Circle = 58,
|
|
403
|
+
GeneralBar = 59,
|
|
404
|
+
SpringNodeToGround = 60,
|
|
405
|
+
SpringNodeToNode = 61,
|
|
406
|
+
SpringElementBased = 62,
|
|
407
|
+
DashpotNodeToGround = 63,
|
|
408
|
+
DashpotNodeToNode = 64,
|
|
409
|
+
DashpotElementBased = 65,
|
|
410
|
+
ConcentratedMass = 66,
|
|
411
|
+
ArealDistributedMass = 67,
|
|
412
|
+
LinearDistributedMass = 68,
|
|
413
|
+
ContactPair = 69,
|
|
414
|
+
GlobalContact = 70,
|
|
415
|
+
TIEconstraint = 71,
|
|
416
|
+
MPCconstraint = 72,
|
|
417
|
+
LinearStatic = 73,
|
|
418
|
+
NonlinearStatic = 74,
|
|
419
|
+
LinearBuckling = 75,
|
|
420
|
+
Modal = 76,
|
|
421
|
+
DynamicImplicit = 77,
|
|
422
|
+
DynamicExplicit = 78,
|
|
423
|
+
DynamicHarmonic = 79,
|
|
424
|
+
AtNodes = 80,
|
|
425
|
+
AtCorners = 81,
|
|
426
|
+
AtIntegrationPoints = 82,
|
|
427
|
+
DisplacementComponents = 83,
|
|
428
|
+
VelocityComponents = 84,
|
|
429
|
+
AccelerationComponents = 85,
|
|
430
|
+
StrainComponents = 86,
|
|
431
|
+
StressComponents = 87,
|
|
432
|
+
EquivalentStresses = 88,
|
|
433
|
+
PrincipalStresses = 89,
|
|
434
|
+
EquivalentStrains = 90,
|
|
435
|
+
PrincipalStrains = 91,
|
|
436
|
+
ReactionForces = 92,
|
|
437
|
+
ElementForces = 93,
|
|
438
|
+
TotalStrainComponents = 94,
|
|
439
|
+
ElasticStrainComponents = 95,
|
|
440
|
+
PlasticStrainComponents = 96,
|
|
441
|
+
LogarithmicStrainComponents = 97,
|
|
442
|
+
EquivalentPlasticStrain = 98,
|
|
443
|
+
ContactPressure = 99,
|
|
444
|
+
ContactShearStresses = 100,
|
|
445
|
+
ContactState = 101,
|
|
446
|
+
ContactGap = 102,
|
|
447
|
+
ContactSlip = 103,
|
|
448
|
+
ContactForces = 104,
|
|
449
|
+
InternalEnergy = 105,
|
|
450
|
+
StrainEnergy = 106,
|
|
451
|
+
PlasticDissipation = 107,
|
|
452
|
+
ExternalWork = 108,
|
|
453
|
+
ContactDissipation = 109,
|
|
454
|
+
KineticEnergy = 110,
|
|
455
|
+
DampingEnergy = 111,
|
|
456
|
+
ModeShapes = 112,
|
|
457
|
+
LoadFactors = 113,
|
|
458
|
+
Eigenfrequencies = 114,
|
|
459
|
+
MassParticipationFactor = 115,
|
|
460
|
+
DirectionParticipationFactor = 116
|
|
455
461
|
}
|
|
456
462
|
enum elementTopologies {
|
|
457
463
|
Node_1N = 15,
|
|
@@ -502,13 +508,13 @@ export declare namespace ModelData {
|
|
|
502
508
|
1: typeof TopoEdge.TopoEdge;
|
|
503
509
|
2: typeof TopoVertex.TopoVertex;
|
|
504
510
|
3: typeof TopoPoint.TopoPoint;
|
|
505
|
-
4: typeof
|
|
511
|
+
4: typeof TopoCurve.TopoCurve;
|
|
506
512
|
5: typeof TopoSurface.TopoSurface;
|
|
507
513
|
6: typeof TopoWire.TopoWire;
|
|
508
514
|
7: typeof TopoShell.TopoShell;
|
|
509
515
|
8: typeof TopoSolid.TopoSolid;
|
|
510
|
-
|
|
511
|
-
|
|
516
|
+
16: typeof Vector.Vector;
|
|
517
|
+
17: typeof CoordinateSystem.CoordinateSystem;
|
|
512
518
|
9: typeof TopoElement.TopoElement;
|
|
513
519
|
10: typeof TopoNode.TopoNode;
|
|
514
520
|
11: typeof TopoMesh0D.TopoMesh0D;
|
|
@@ -517,35 +523,35 @@ export declare namespace ModelData {
|
|
|
517
523
|
14: typeof TopoMesh3D.TopoMesh3D;
|
|
518
524
|
};
|
|
519
525
|
itemTypes: {
|
|
520
|
-
16: typeof GeomPart.GeomPart;
|
|
521
|
-
17: typeof GeomPart.GeomPart;
|
|
522
526
|
18: typeof GeomPart.GeomPart;
|
|
523
|
-
19: typeof
|
|
524
|
-
20: typeof
|
|
525
|
-
21: typeof
|
|
526
|
-
22: typeof
|
|
527
|
-
23: typeof
|
|
528
|
-
24: typeof
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
27: typeof
|
|
533
|
-
28: typeof
|
|
534
|
-
29: typeof
|
|
535
|
-
30: typeof
|
|
536
|
-
31: typeof
|
|
537
|
-
32: typeof
|
|
538
|
-
33: typeof
|
|
539
|
-
34: typeof
|
|
540
|
-
35: typeof
|
|
541
|
-
36: typeof
|
|
542
|
-
37: typeof
|
|
543
|
-
38: typeof
|
|
544
|
-
39: typeof
|
|
545
|
-
40: typeof
|
|
546
|
-
41: typeof
|
|
547
|
-
|
|
548
|
-
|
|
527
|
+
19: typeof Orientation.Orientation;
|
|
528
|
+
20: typeof CSystem.CSystem;
|
|
529
|
+
21: typeof Thread.Thread;
|
|
530
|
+
22: typeof MeshPart.MeshPart;
|
|
531
|
+
23: typeof Nodeset.Nodeset;
|
|
532
|
+
24: typeof Elementset.Elementset;
|
|
533
|
+
25: typeof LoadDefinition.LoadDefinition;
|
|
534
|
+
26: typeof MaterialDefinition.MaterialDefinition;
|
|
535
|
+
53: typeof MaterialDefinition.MaterialDefinition;
|
|
536
|
+
27: typeof PropertyDefinition.PropertyDefinition;
|
|
537
|
+
28: typeof ContactDefinition.ContactDefinition;
|
|
538
|
+
29: typeof ConstraintDefinition.ConstraintDefinition;
|
|
539
|
+
30: typeof AnalysisStep.AnalysisStep;
|
|
540
|
+
31: typeof OutputDefinition.OutputDefinition;
|
|
541
|
+
32: typeof Assembly.Assembly;
|
|
542
|
+
33: typeof Geometry.Geometry;
|
|
543
|
+
34: typeof Mesh.Mesh;
|
|
544
|
+
35: typeof System.System;
|
|
545
|
+
36: typeof Set.Set;
|
|
546
|
+
37: typeof LoadContainer.Load;
|
|
547
|
+
38: typeof MaterialContainer.Material;
|
|
548
|
+
39: typeof PropertyContainer.Property;
|
|
549
|
+
40: typeof ContactContainer.Contact;
|
|
550
|
+
41: typeof ConstraintContainer.Constraint;
|
|
551
|
+
42: typeof AnalysisContainer.Analysis;
|
|
552
|
+
43: typeof OutputContainer.Output;
|
|
553
|
+
45: typeof LoadDefinition.LoadDefinition;
|
|
554
|
+
46: typeof LoadDefinition.LoadDefinition;
|
|
549
555
|
};
|
|
550
556
|
};
|
|
551
557
|
const dataTypesCollector: dataTypes[];
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { File } from "./File";
|
|
2
|
+
export declare class CSystem extends File {
|
|
3
|
+
static title: string;
|
|
4
|
+
private static csystemIDs_used;
|
|
5
|
+
private static csystemIDs_unused;
|
|
6
|
+
constructor(data: {});
|
|
7
|
+
private createVID;
|
|
8
|
+
/**
|
|
9
|
+
* Delete content from database and treeHTML
|
|
10
|
+
*/
|
|
11
|
+
delete(): void;
|
|
12
|
+
/**
|
|
13
|
+
* Select and highlight all shapes in a file
|
|
14
|
+
*/
|
|
15
|
+
select(): void;
|
|
16
|
+
highlight(colorData: any[]): void;
|
|
17
|
+
setColor(colorData: any[]): void;
|
|
18
|
+
setOpacity(): void;
|
|
19
|
+
setVisibility(): void;
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { File } from "./File";
|
|
2
|
+
export declare class Orientation extends File {
|
|
3
|
+
static title: string;
|
|
4
|
+
private static orientationIDs_used;
|
|
5
|
+
private static orientationIDs_unused;
|
|
6
|
+
constructor(data: {});
|
|
7
|
+
private createVID;
|
|
8
|
+
/**
|
|
9
|
+
* Delete content from database and treeHTML
|
|
10
|
+
*/
|
|
11
|
+
delete(): void;
|
|
12
|
+
/**
|
|
13
|
+
* Select and highlight all shapes in a file
|
|
14
|
+
*/
|
|
15
|
+
select(): void;
|
|
16
|
+
highlight(colorData: any[]): void;
|
|
17
|
+
setColor(colorData: any[]): void;
|
|
18
|
+
setOpacity(): void;
|
|
19
|
+
setVisibility(): void;
|
|
20
|
+
}
|
|
@@ -2,7 +2,7 @@ export declare namespace AssociativeArrays {
|
|
|
2
2
|
const uniqueID_To_Instance: {};
|
|
3
3
|
const vectorVID_To_iVector: {};
|
|
4
4
|
const faceVID_To_iFace: {};
|
|
5
|
-
const
|
|
5
|
+
const curveVID_To_iCurve: {};
|
|
6
6
|
const edgeVID_To_iEdge: {};
|
|
7
7
|
const pointVID_To_iPoint: {};
|
|
8
8
|
const vertexVID_To_iVertex: {};
|
|
@@ -2,7 +2,7 @@ import * as THREE from '../../../../../three/build/three.module';
|
|
|
2
2
|
import { ModelData } from "../../../Index";
|
|
3
3
|
import { Shape } from "../../TopoShape";
|
|
4
4
|
import { LineOctree } from '../../../OctreeDataStructure/Octree';
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class TopoCurve extends Shape {
|
|
6
6
|
static title: string;
|
|
7
7
|
type: ModelData.dataTypes;
|
|
8
8
|
itemVID: number;
|
|
@@ -28,6 +28,10 @@ export declare class SelectionData {
|
|
|
28
28
|
static instance: SelectionData;
|
|
29
29
|
static enabledEntity: ModelData.dataTypes;
|
|
30
30
|
static availableEntities: ModelData.dataTypes[];
|
|
31
|
+
private static readonly selectionChangedCallbacks;
|
|
32
|
+
static subscribeToSelectionChanged(cb: () => void): void;
|
|
33
|
+
static unsubscribeFromSelectionChanged(cb: () => void): void;
|
|
34
|
+
static notifySelectionChanged(): void;
|
|
31
35
|
static activeButton: any;
|
|
32
36
|
static currentItem: File;
|
|
33
37
|
static defualtButton: any;
|
package/fcs-core-editor@types/Viewer3D/Loader/GEOMLoader/{LineLoader.d.ts → CurveLoader.d.ts}
RENAMED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { ModelData } from "../../DataStorage/ModelData/Index";
|
|
2
2
|
import { GeomLoader } from "./GeomLoader";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class CurveLoader {
|
|
4
4
|
geomLoader: GeomLoader;
|
|
5
|
-
|
|
5
|
+
iCurve: InstanceType<typeof ModelData.Shapes.TopoCurve>;
|
|
6
6
|
constructor(geomLoader: GeomLoader);
|
|
7
7
|
loadVertex(iShape: any, line: string, itemVID: number, shapeVID: number): import("../../DataStorage/ModelData/Shapes/Geometry/SubshapeTypes/TopoVertex").TopoVertex;
|
|
8
|
-
|
|
8
|
+
loadCurve(iCurve: any, line: string, itemVID: number, shapeVID: number): import("../../DataStorage/ModelData/Shapes/Geometry/MainshapeTypes/TopoCurve").TopoCurve;
|
|
9
9
|
}
|
|
@@ -10,7 +10,7 @@ export declare class GeomLoader {
|
|
|
10
10
|
vertexMaterial: THREE.ShaderMaterial;
|
|
11
11
|
pointMaterial: THREE.ShaderMaterial;
|
|
12
12
|
iPoints: InstanceType<typeof ModelData.Shapes.TopoPoint>[];
|
|
13
|
-
|
|
13
|
+
iCurves: InstanceType<typeof ModelData.Shapes.TopoCurve>[];
|
|
14
14
|
iFaces: InstanceType<typeof ModelData.Shapes.TopoFace>[];
|
|
15
15
|
iEdges: InstanceType<typeof ModelData.Shapes.TopoEdge>[];
|
|
16
16
|
iVertices: InstanceType<typeof ModelData.Shapes.TopoVertex>[];
|
package/fcs-core-editor@types/Viewer3D/SelectionTools/SelectionControls/SelectionControls.d.ts
CHANGED
|
@@ -26,8 +26,8 @@ export declare namespace EntitySelector {
|
|
|
26
26
|
class Vertex {
|
|
27
27
|
constructor(button_vertex: any);
|
|
28
28
|
}
|
|
29
|
-
class
|
|
30
|
-
constructor(
|
|
29
|
+
class Curve {
|
|
30
|
+
constructor(button_curve: any);
|
|
31
31
|
}
|
|
32
32
|
class Edge {
|
|
33
33
|
constructor(button_edge: any);
|
|
@@ -14,6 +14,7 @@ export type EntityDropDownMenuType = {
|
|
|
14
14
|
items?: {
|
|
15
15
|
[key: string]: Button;
|
|
16
16
|
};
|
|
17
|
+
availableEntities?: ModelData.dataTypes[];
|
|
17
18
|
onClickHandler?: (entityButton: EntityButton) => void;
|
|
18
19
|
onChangeHandler?: (type: ModelData.dataTypes) => void;
|
|
19
20
|
};
|
|
@@ -28,6 +29,9 @@ export declare class EntityButton implements IViewerHtmlElement {
|
|
|
28
29
|
private readonly element;
|
|
29
30
|
private readonly label;
|
|
30
31
|
private contentContainer;
|
|
32
|
+
private countBadge;
|
|
33
|
+
private _countText;
|
|
34
|
+
private readonly _selectionCallback;
|
|
31
35
|
private isOpened;
|
|
32
36
|
name: string;
|
|
33
37
|
private readonly handleDocumentClick;
|
|
@@ -37,6 +41,7 @@ export declare class EntityButton implements IViewerHtmlElement {
|
|
|
37
41
|
private style;
|
|
38
42
|
constructor(config: EntityDropDownMenuType);
|
|
39
43
|
private initContentContainer;
|
|
44
|
+
private static buildItems;
|
|
40
45
|
private onDropdownButtonClick;
|
|
41
46
|
private handleOnChange;
|
|
42
47
|
private open;
|
|
@@ -46,7 +51,10 @@ export declare class EntityButton implements IViewerHtmlElement {
|
|
|
46
51
|
remove(): void;
|
|
47
52
|
setHtmlParent(parent: HTMLElement): void;
|
|
48
53
|
setParent(parent: IViewerHtmlElement): void;
|
|
54
|
+
private refreshCountBadge;
|
|
49
55
|
reset(): void;
|
|
50
56
|
init(): void;
|
|
51
57
|
getData(): any;
|
|
58
|
+
validate(limit: number): boolean;
|
|
59
|
+
setVisibility(isVisible: boolean): void;
|
|
52
60
|
}
|
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
import { DropdownList } from "./DropdownList";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
import { LabelConfig } from "./Label";
|
|
3
|
+
import { IViewerHtmlElement } from '../MainMenuComponents/HtmlElementInterface';
|
|
4
|
+
type ModeValueType = {
|
|
5
|
+
[key: number]: (() => void)[];
|
|
6
|
+
};
|
|
7
|
+
export type ModeOption = {
|
|
8
|
+
label: string;
|
|
9
|
+
value: ModeValueType;
|
|
10
|
+
isEnabled: boolean;
|
|
11
|
+
};
|
|
12
|
+
export type ModeSelectorConfig = {
|
|
13
|
+
id?: string;
|
|
14
|
+
options: ModeOption[];
|
|
15
|
+
dynamicComponents?: IViewerHtmlElement[];
|
|
16
|
+
labelConfig?: LabelConfig;
|
|
17
|
+
onMouseDownHandler?: () => void;
|
|
18
|
+
};
|
|
19
|
+
export declare class ModeSelector extends DropdownList<ModeValueType> {
|
|
20
|
+
constructor(config: ModeSelectorConfig);
|
|
21
|
+
validate(): boolean;
|
|
5
22
|
}
|
|
23
|
+
export {};
|
|
@@ -20,6 +20,7 @@ export declare class SelectionInputField {
|
|
|
20
20
|
private selectionLimit;
|
|
21
21
|
private div_treeHTML;
|
|
22
22
|
private labeledInputField;
|
|
23
|
+
private itemName;
|
|
23
24
|
constructor(config: LabeledInputConfig);
|
|
24
25
|
getLabeledInputField(): LabeledInputField;
|
|
25
26
|
getData(): number[];
|
|
@@ -28,5 +29,6 @@ export declare class SelectionInputField {
|
|
|
28
29
|
private focusIn;
|
|
29
30
|
private collectSelectedItems;
|
|
30
31
|
private pressEscapeButton;
|
|
32
|
+
validate(): boolean;
|
|
31
33
|
}
|
|
32
34
|
export {};
|
package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/StatusBar/LogMessageOperation.d.ts
CHANGED
|
@@ -7,7 +7,8 @@ export declare class LogMessageOperation implements IViewerHtmlElement {
|
|
|
7
7
|
private static _instance;
|
|
8
8
|
private readonly element;
|
|
9
9
|
private readonly diagnosticLogs;
|
|
10
|
-
|
|
10
|
+
private readonly operationFailureMessage;
|
|
11
|
+
constructor(diagnosticLog?: DiagnosticLog[], operationFailureMessage?: string);
|
|
11
12
|
/**
|
|
12
13
|
* Getter for singleton instance.
|
|
13
14
|
*/
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
declare const ViewerCommands: {
|
|
2
|
+
QueryCommands: {
|
|
3
|
+
FindNodeElement: typeof import("./Query/FindNodeElement").FindNodeElement;
|
|
4
|
+
Find: typeof import("./Query/Find").Find;
|
|
5
|
+
};
|
|
2
6
|
ViewCommands: {
|
|
3
7
|
Screenshot: typeof import("./View/Screenshot").Screenshot;
|
|
4
8
|
RepresentationOption: typeof import("./View/Representation").RepresentationOption;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Command to find and highlight nodes/elements by their shapeUID,
|
|
3
|
+
* and to retrieve shapeUIDs of currently selected shapes.
|
|
4
|
+
*/
|
|
5
|
+
export declare class FindNodeElement {
|
|
6
|
+
/**
|
|
7
|
+
* Finds a node or element by its shapeUID and highlights it.
|
|
8
|
+
* @param uid The shapeUID to look up
|
|
9
|
+
* @returns The found shape instance, or null if not found
|
|
10
|
+
*/
|
|
11
|
+
static findByUID(uid: number): any;
|
|
12
|
+
/**
|
|
13
|
+
* Clears highlight from a node or element by its shapeUID.
|
|
14
|
+
* @param uid The shapeUID to unhighlight
|
|
15
|
+
*/
|
|
16
|
+
static clearHighlightByUID(uid: number): void;
|
|
17
|
+
/**
|
|
18
|
+
* Gets the shapeUIDs of currently selected shapes.
|
|
19
|
+
* @returns Array of shapeUIDs
|
|
20
|
+
*/
|
|
21
|
+
static getSelectedShapeUIDs(): number[];
|
|
22
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fcs-core-viewer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.52.1",
|
|
4
4
|
"description": "3D Viewer in the Cloud",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Femsolve Kft."
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"vserver": "webpack serve --config webpack.viewer3d-server.js --mode development",
|
|
16
16
|
"build:edev": "webpack --progress --stats-error-details --config webpack.editor3d-dev.js",
|
|
17
17
|
"build:eprod": "webpack --progress --stats-error-details --config webpack.editor3d-prod.js",
|
|
18
|
-
"eserver": "webpack serve --config webpack.editor3d-server.js --mode development"
|
|
18
|
+
"eserver": "webpack serve --config webpack.editor3d-server.js --mode development",
|
|
19
|
+
"docs": "typedoc --options Documentation/typedoc.json"
|
|
19
20
|
},
|
|
20
21
|
"license": "ISC",
|
|
21
22
|
"devDependencies": {
|
|
@@ -35,6 +36,7 @@
|
|
|
35
36
|
"style-loader": "^3.3.2",
|
|
36
37
|
"tailwindcss": "^4.0.16",
|
|
37
38
|
"ts-loader": "^9.4.2",
|
|
39
|
+
"typedoc": "^0.25.0",
|
|
38
40
|
"typescript": "^4.9.5",
|
|
39
41
|
"webpack": "^5.89.0",
|
|
40
42
|
"webpack-cli": "^5.1.4",
|
|
@@ -47,7 +49,7 @@
|
|
|
47
49
|
"alpinejs": "^3.14.9",
|
|
48
50
|
"axios": "^1.5.1",
|
|
49
51
|
"dom-to-image": "^2.6.0",
|
|
50
|
-
"fcs-core-viewer": "
|
|
52
|
+
"fcs-core-viewer": "file:",
|
|
51
53
|
"nanostores": "^0.11.4",
|
|
52
54
|
"socket.io-client": "^4.7.2",
|
|
53
55
|
"uuid": "^9.0.1"
|