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
|
@@ -1,54 +1,30 @@
|
|
|
1
1
|
import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
-
type OnPreviewHandler = (
|
|
3
|
-
type OnAcceptHandler = (
|
|
4
|
-
type OnRejectHandler = (
|
|
2
|
+
type OnPreviewHandler = (input: {}) => Promise<{}>;
|
|
3
|
+
type OnAcceptHandler = (input: {}) => Promise<{}>;
|
|
4
|
+
type OnRejectHandler = () => Promise<void>;
|
|
5
5
|
export declare class TranslateByVectorAndLength extends Operation {
|
|
6
|
-
private
|
|
7
|
-
private
|
|
6
|
+
private targetEntityButton;
|
|
7
|
+
private vectorEntityButton;
|
|
8
8
|
private lengthInput;
|
|
9
9
|
private readonly onPreviewHandler;
|
|
10
10
|
private readonly onAcceptHandler;
|
|
11
11
|
private readonly onRejectHandler;
|
|
12
12
|
private readonly buttonsContainer;
|
|
13
|
-
private
|
|
14
|
-
private availableEntities_2;
|
|
15
|
-
private entity_1;
|
|
16
|
-
private entity_2;
|
|
13
|
+
private affectedElementUIDs;
|
|
17
14
|
private length;
|
|
15
|
+
private dynamicComponents;
|
|
16
|
+
private selectionData;
|
|
18
17
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
19
|
-
private
|
|
20
|
-
private
|
|
21
|
-
private
|
|
22
|
-
private
|
|
23
|
-
/**
|
|
24
|
-
* Add entity button
|
|
25
|
-
*/
|
|
26
|
-
private addEntityButton_1;
|
|
27
|
-
private addEntityButton_2;
|
|
28
|
-
private addFields;
|
|
29
|
-
/**
|
|
30
|
-
* Add action buttons (-> Preview, Accept, Reject)
|
|
31
|
-
*/
|
|
18
|
+
private setEnabledEntity;
|
|
19
|
+
private setActiveButton;
|
|
20
|
+
private buttons;
|
|
21
|
+
private fields;
|
|
32
22
|
private addActionButtons;
|
|
33
|
-
/**
|
|
34
|
-
* Create dropdown list for entityButton_1
|
|
35
|
-
*/
|
|
36
|
-
private createDropdownListItems_1;
|
|
37
|
-
/**
|
|
38
|
-
* Create dropdown list for entityButton_2
|
|
39
|
-
*/
|
|
40
|
-
private createDropdownListItems_2;
|
|
41
|
-
/**
|
|
42
|
-
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
43
|
-
*/
|
|
44
|
-
private onAccept;
|
|
45
|
-
/**
|
|
46
|
-
* Initializes uiComponents on opening the operationUI
|
|
47
|
-
*/
|
|
48
23
|
init(): void;
|
|
49
|
-
|
|
50
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
51
|
-
*/
|
|
24
|
+
unselect(): void;
|
|
52
25
|
reset(): void;
|
|
26
|
+
private onPreview;
|
|
27
|
+
private onAccept;
|
|
28
|
+
private onReject;
|
|
53
29
|
}
|
|
54
30
|
export {};
|
|
@@ -33,7 +33,6 @@ export declare class ConcentratedLoad extends Operation {
|
|
|
33
33
|
constructor(onUpdate?: OnUpdateHandler, onAccept?: OnAcceptHandler, onAppend?: OnAppendHandler);
|
|
34
34
|
private setEnabledEntity;
|
|
35
35
|
private setActiveButton;
|
|
36
|
-
private changeMode;
|
|
37
36
|
/**
|
|
38
37
|
* Add dropdown list
|
|
39
38
|
*/
|
|
@@ -49,7 +49,6 @@ export declare class ContactPair extends Operation {
|
|
|
49
49
|
constructor(onUpdate?: OnUpdateHandler, onAccept?: OnAcceptHandler, onAppend?: OnAppendHandler);
|
|
50
50
|
private setEnabledEntity;
|
|
51
51
|
private setActiveButton;
|
|
52
|
-
private changeMode;
|
|
53
52
|
/**
|
|
54
53
|
* Add dropdown list
|
|
55
54
|
*/
|
|
@@ -35,7 +35,6 @@ export declare class Dashpot extends Operation {
|
|
|
35
35
|
constructor(onUpdate?: OnUpdateHandler, onAccept?: OnAcceptHandler, onAppend?: OnAppendHandler);
|
|
36
36
|
private setEnabledEntity;
|
|
37
37
|
private setActiveButton;
|
|
38
|
-
private changeMode;
|
|
39
38
|
/**
|
|
40
39
|
* Add dropdown list
|
|
41
40
|
*/
|
|
@@ -31,7 +31,6 @@ export declare class DynamicHarmonic extends Operation {
|
|
|
31
31
|
constructor(onUpdate?: OnUpdateHandler, onAccept?: OnAcceptHandler, onAppend?: OnAppendHandler);
|
|
32
32
|
private setEnabledEntity;
|
|
33
33
|
private setActiveButton;
|
|
34
|
-
private changeMode;
|
|
35
34
|
/**
|
|
36
35
|
* Add dropdown list
|
|
37
36
|
*/
|
|
@@ -49,7 +49,6 @@ export declare class DynamicImplicit extends Operation {
|
|
|
49
49
|
constructor(onUpdate?: OnUpdateHandler, onAccept?: OnAcceptHandler, onAppend?: OnAppendHandler);
|
|
50
50
|
private setEnabledEntity;
|
|
51
51
|
private setActiveButton;
|
|
52
|
-
private changeMode;
|
|
53
52
|
/**
|
|
54
53
|
* Add dropdown list
|
|
55
54
|
*/
|
|
@@ -19,7 +19,6 @@ export declare class LinearStatic extends Operation {
|
|
|
19
19
|
constructor(onUpdate?: OnUpdateHandler, onAccept?: OnAcceptHandler, onAppend?: OnAppendHandler);
|
|
20
20
|
private setEnabledEntity;
|
|
21
21
|
private setActiveButton;
|
|
22
|
-
private changeMode;
|
|
23
22
|
/**
|
|
24
23
|
* Add dropdown list
|
|
25
24
|
*/
|
|
@@ -13,11 +13,22 @@ export declare class Membrane extends Operation {
|
|
|
13
13
|
private csystemSelectionInput;
|
|
14
14
|
private materialItemUID;
|
|
15
15
|
private csystemItemUID;
|
|
16
|
+
private modeSelector;
|
|
17
|
+
private modeOptions;
|
|
18
|
+
private dynamicComponents;
|
|
16
19
|
private elementSetSelectionInput;
|
|
17
20
|
private elementSetUID;
|
|
21
|
+
static Modes: {
|
|
22
|
+
CSystemON: number;
|
|
23
|
+
CSystemOFF: number;
|
|
24
|
+
};
|
|
18
25
|
constructor(onUpdate?: OnUpdateHandler, onAccept?: OnAcceptHandler, onAppend?: OnAppendHandler);
|
|
19
26
|
private setEnabledEntity;
|
|
20
27
|
private setActiveButton;
|
|
28
|
+
/**
|
|
29
|
+
* Add dropdown list
|
|
30
|
+
*/
|
|
31
|
+
private addDropDownLists;
|
|
21
32
|
private fields;
|
|
22
33
|
private addActionButtons;
|
|
23
34
|
/**
|
|
@@ -33,7 +33,6 @@ export declare class Modal extends Operation {
|
|
|
33
33
|
constructor(onUpdate?: OnUpdateHandler, onAccept?: OnAcceptHandler, onAppend?: OnAppendHandler);
|
|
34
34
|
private setEnabledEntity;
|
|
35
35
|
private setActiveButton;
|
|
36
|
-
private changeMode;
|
|
37
36
|
/**
|
|
38
37
|
* Add dropdown list
|
|
39
38
|
*/
|
|
@@ -38,7 +38,6 @@ export declare class MotionConstraint extends Operation {
|
|
|
38
38
|
constructor(onUpdate?: OnUpdateHandler, onAccept?: OnAcceptHandler, onAppend?: OnAppendHandler);
|
|
39
39
|
private setEnabledEntity;
|
|
40
40
|
private setActiveButton;
|
|
41
|
-
private changeMode;
|
|
42
41
|
/**
|
|
43
42
|
* Add dropdown list
|
|
44
43
|
*/
|
|
@@ -68,7 +68,6 @@ export declare class NonlinearStatic extends Operation {
|
|
|
68
68
|
constructor(onUpdate?: OnUpdateHandler, onAccept?: OnAcceptHandler, onAppend?: OnAppendHandler);
|
|
69
69
|
private setEnabledEntity;
|
|
70
70
|
private setActiveButton;
|
|
71
|
-
private changeMode;
|
|
72
71
|
/**
|
|
73
72
|
* Add dropdown list
|
|
74
73
|
*/
|
|
@@ -17,11 +17,22 @@ export declare class Shell extends Operation {
|
|
|
17
17
|
private csystemSelectionInput;
|
|
18
18
|
private materialItemUID;
|
|
19
19
|
private csystemItemUID;
|
|
20
|
+
private modeSelector;
|
|
21
|
+
private modeOptions;
|
|
22
|
+
private dynamicComponents;
|
|
20
23
|
private elementSetSelectionInput;
|
|
21
24
|
private elementSetUID;
|
|
25
|
+
static Modes: {
|
|
26
|
+
CSystemON: number;
|
|
27
|
+
CSystemOFF: number;
|
|
28
|
+
};
|
|
22
29
|
constructor(onUpdate?: OnUpdateHandler, onAccept?: OnAcceptHandler, onAppend?: OnAppendHandler);
|
|
23
30
|
private setEnabledEntity;
|
|
24
31
|
private setActiveButton;
|
|
32
|
+
/**
|
|
33
|
+
* Add dropdown list
|
|
34
|
+
*/
|
|
35
|
+
private addDropDownLists;
|
|
25
36
|
private fields;
|
|
26
37
|
private addActionButtons;
|
|
27
38
|
/**
|
|
@@ -23,12 +23,12 @@ export declare class Solid extends Operation {
|
|
|
23
23
|
private elementSetSelectionInput;
|
|
24
24
|
private elementSetUID;
|
|
25
25
|
static Modes: {
|
|
26
|
-
|
|
26
|
+
CSystemON: number;
|
|
27
|
+
CSystemOFF: number;
|
|
27
28
|
};
|
|
28
29
|
constructor(onUpdate?: OnUpdateHandler, onAccept?: OnAcceptHandler, onAppend?: OnAppendHandler);
|
|
29
30
|
private setEnabledEntity;
|
|
30
31
|
private setActiveButton;
|
|
31
|
-
private changeMode;
|
|
32
32
|
/**
|
|
33
33
|
* Add dropdown list
|
|
34
34
|
*/
|
|
@@ -35,7 +35,6 @@ export declare class Spring extends Operation {
|
|
|
35
35
|
constructor(onUpdate?: OnUpdateHandler, onAccept?: OnAcceptHandler, onAppend?: OnAppendHandler);
|
|
36
36
|
private setEnabledEntity;
|
|
37
37
|
private setActiveButton;
|
|
38
|
-
private changeMode;
|
|
39
38
|
/**
|
|
40
39
|
* Add dropdown list
|
|
41
40
|
*/
|
|
@@ -16,7 +16,6 @@ export declare class MeshLine extends Operation {
|
|
|
16
16
|
private readonly inputContainer;
|
|
17
17
|
private elementOrderOptions;
|
|
18
18
|
private elementSize;
|
|
19
|
-
private readonly availableEntities;
|
|
20
19
|
private selectionData;
|
|
21
20
|
private element2DMaterial;
|
|
22
21
|
private uiComponents;
|
|
@@ -27,10 +26,6 @@ export declare class MeshLine extends Operation {
|
|
|
27
26
|
* Add entity button
|
|
28
27
|
*/
|
|
29
28
|
private addEntityButton;
|
|
30
|
-
/**
|
|
31
|
-
* Create dropdown list for entityButton
|
|
32
|
-
*/
|
|
33
|
-
private createDropdownListItems;
|
|
34
29
|
/**
|
|
35
30
|
* Add dropdown list
|
|
36
31
|
*/
|
|
@@ -9,8 +9,6 @@ export declare class BasicRigidCoupling extends Operation {
|
|
|
9
9
|
private readonly buttonsContainer;
|
|
10
10
|
private elementTypeSelect;
|
|
11
11
|
private elementTypeOptions;
|
|
12
|
-
private availableEntities_1;
|
|
13
|
-
private availableEntities_2;
|
|
14
12
|
private entityDropDownMenu_1;
|
|
15
13
|
private entityDropDownMenu_2;
|
|
16
14
|
private selectionData;
|
|
@@ -26,11 +24,6 @@ export declare class BasicRigidCoupling extends Operation {
|
|
|
26
24
|
*/
|
|
27
25
|
private addEntityButton_1;
|
|
28
26
|
private addEntityButton_2;
|
|
29
|
-
/**
|
|
30
|
-
* Create dropdown list for entityButton
|
|
31
|
-
*/
|
|
32
|
-
private createDropdownListItems_1;
|
|
33
|
-
private createDropdownListItems_2;
|
|
34
27
|
private addActionButtons;
|
|
35
28
|
/**
|
|
36
29
|
* Initializes uiComponents on opening the operationUI
|
|
@@ -16,16 +16,11 @@ export declare class CreateNode extends Operation {
|
|
|
16
16
|
private readonly onAcceptHandler;
|
|
17
17
|
private readonly onRejectHandler;
|
|
18
18
|
private readonly buttonsContainer;
|
|
19
|
-
private availableEntities_1;
|
|
20
|
-
private availableEntities_2;
|
|
21
|
-
private availableEntities_3;
|
|
22
|
-
private availableEntities_4;
|
|
23
|
-
private availableEntities_5;
|
|
24
19
|
private x;
|
|
25
20
|
private y;
|
|
26
21
|
private z;
|
|
27
22
|
private modeOptions;
|
|
28
|
-
private
|
|
23
|
+
private dynamicComponents;
|
|
29
24
|
private elementTypeSelect;
|
|
30
25
|
private selectionData;
|
|
31
26
|
static Modes: {
|
|
@@ -40,7 +35,6 @@ export declare class CreateNode extends Operation {
|
|
|
40
35
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
41
36
|
private setEnabledEntity;
|
|
42
37
|
private setActiveButton;
|
|
43
|
-
private changeMode;
|
|
44
38
|
/**
|
|
45
39
|
* Add ModeSelector
|
|
46
40
|
*/
|
|
@@ -49,14 +43,6 @@ export declare class CreateNode extends Operation {
|
|
|
49
43
|
* Add entity button
|
|
50
44
|
*/
|
|
51
45
|
private buttons;
|
|
52
|
-
/**
|
|
53
|
-
* Create dropdown list for entityButton
|
|
54
|
-
*/
|
|
55
|
-
private createDropdownListItems_1;
|
|
56
|
-
private createDropdownListItems_2;
|
|
57
|
-
private createDropdownListItems_3;
|
|
58
|
-
private createDropdownListItems_4;
|
|
59
|
-
private createDropdownListItems_5;
|
|
60
46
|
/**
|
|
61
47
|
* Add input field
|
|
62
48
|
*/
|
|
@@ -11,11 +11,9 @@ export declare class DistributingCoupling extends Operation {
|
|
|
11
11
|
private readonly onAcceptHandler;
|
|
12
12
|
private readonly onRejectHandler;
|
|
13
13
|
private readonly buttonsContainer;
|
|
14
|
-
private availableEntities_1;
|
|
15
|
-
private availableEntities_2;
|
|
16
14
|
private weight;
|
|
17
15
|
private modeOptions;
|
|
18
|
-
private
|
|
16
|
+
private dynamicComponents;
|
|
19
17
|
private elementTypeSelect;
|
|
20
18
|
private selectionData;
|
|
21
19
|
static Modes: {
|
|
@@ -25,7 +23,6 @@ export declare class DistributingCoupling extends Operation {
|
|
|
25
23
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
26
24
|
private setEnabledEntity;
|
|
27
25
|
private setActiveButton;
|
|
28
|
-
private changeMode;
|
|
29
26
|
/**
|
|
30
27
|
* Add ModeSelector
|
|
31
28
|
*/
|
|
@@ -34,11 +31,6 @@ export declare class DistributingCoupling extends Operation {
|
|
|
34
31
|
* Add entity button
|
|
35
32
|
*/
|
|
36
33
|
private buttons;
|
|
37
|
-
/**
|
|
38
|
-
* Create dropdown list for entityButton
|
|
39
|
-
*/
|
|
40
|
-
private createDropdownListItems_1;
|
|
41
|
-
private createDropdownListItems_2;
|
|
42
34
|
/**
|
|
43
35
|
* Add input field
|
|
44
36
|
*/
|
|
@@ -16,8 +16,6 @@ export declare class KinematicCoupling extends Operation {
|
|
|
16
16
|
private readonly onAcceptHandler;
|
|
17
17
|
private readonly onRejectHandler;
|
|
18
18
|
private readonly buttonsContainer;
|
|
19
|
-
private availableEntities_1;
|
|
20
|
-
private availableEntities_2;
|
|
21
19
|
private dof1;
|
|
22
20
|
private dof2;
|
|
23
21
|
private dof3;
|
|
@@ -25,7 +23,7 @@ export declare class KinematicCoupling extends Operation {
|
|
|
25
23
|
private dof5;
|
|
26
24
|
private dof6;
|
|
27
25
|
private modeOptions;
|
|
28
|
-
private
|
|
26
|
+
private dynamicComponents;
|
|
29
27
|
private elementTypeSelect;
|
|
30
28
|
private selectionData;
|
|
31
29
|
static Modes: {
|
|
@@ -35,7 +33,6 @@ export declare class KinematicCoupling extends Operation {
|
|
|
35
33
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
36
34
|
private setEnabledEntity;
|
|
37
35
|
private setActiveButton;
|
|
38
|
-
private changeMode;
|
|
39
36
|
/**
|
|
40
37
|
* Add ModeSelector
|
|
41
38
|
*/
|
|
@@ -44,11 +41,6 @@ export declare class KinematicCoupling extends Operation {
|
|
|
44
41
|
* Add entity button
|
|
45
42
|
*/
|
|
46
43
|
private buttons;
|
|
47
|
-
/**
|
|
48
|
-
* Create dropdown list for entityButton
|
|
49
|
-
*/
|
|
50
|
-
private createDropdownListItems_1;
|
|
51
|
-
private createDropdownListItems_2;
|
|
52
44
|
/**
|
|
53
45
|
* Add input field
|
|
54
46
|
*/
|
|
@@ -18,7 +18,6 @@ export declare class MeshFace extends Operation {
|
|
|
18
18
|
private meshTypeOptions;
|
|
19
19
|
private elementOrderOptions;
|
|
20
20
|
private elementSize;
|
|
21
|
-
private readonly availableEntities;
|
|
22
21
|
private selectionData;
|
|
23
22
|
private element2DMaterial;
|
|
24
23
|
private uiComponents;
|
|
@@ -29,10 +28,6 @@ export declare class MeshFace extends Operation {
|
|
|
29
28
|
* Add entity button
|
|
30
29
|
*/
|
|
31
30
|
private addEntityButton;
|
|
32
|
-
/**
|
|
33
|
-
* Create dropdown list for entityButton
|
|
34
|
-
*/
|
|
35
|
-
private createDropdownListItems;
|
|
36
31
|
/**
|
|
37
32
|
* Add dropdown list
|
|
38
33
|
*/
|
|
@@ -19,7 +19,6 @@ export declare class MeshPatch extends Operation {
|
|
|
19
19
|
private meshTypeOptions;
|
|
20
20
|
private elementOrderOptions;
|
|
21
21
|
private elementSize;
|
|
22
|
-
private readonly availableEntities;
|
|
23
22
|
private selectionData;
|
|
24
23
|
private element2DMaterial;
|
|
25
24
|
uiComponents: IViewerHtmlElement[];
|
|
@@ -30,10 +29,6 @@ export declare class MeshPatch extends Operation {
|
|
|
30
29
|
* Add entity button
|
|
31
30
|
*/
|
|
32
31
|
private addEntityButton;
|
|
33
|
-
/**
|
|
34
|
-
* Create dropdown list for entityButton
|
|
35
|
-
*/
|
|
36
|
-
private createDropdownListItems;
|
|
37
32
|
/**
|
|
38
33
|
* Add dropdown list
|
|
39
34
|
*/
|
|
@@ -19,7 +19,6 @@ export declare class Remesh extends Operation {
|
|
|
19
19
|
private meshTypeOptions;
|
|
20
20
|
private elementOrderOptions;
|
|
21
21
|
private elementSize;
|
|
22
|
-
private readonly availableEntities;
|
|
23
22
|
private selectionData;
|
|
24
23
|
private element2DMaterial;
|
|
25
24
|
uiComponents: IViewerHtmlElement[];
|
|
@@ -30,10 +29,6 @@ export declare class Remesh extends Operation {
|
|
|
30
29
|
* Add entity button
|
|
31
30
|
*/
|
|
32
31
|
private addEntityButton;
|
|
33
|
-
/**
|
|
34
|
-
* Create dropdown list for entityButton
|
|
35
|
-
*/
|
|
36
|
-
private createDropdownListItems;
|
|
37
32
|
/**
|
|
38
33
|
* Add dropdown list
|
|
39
34
|
*/
|
|
@@ -8,7 +8,6 @@ export declare class Boundary2D extends Operation {
|
|
|
8
8
|
private readonly onRejectHandler;
|
|
9
9
|
private readonly buttonsContainer;
|
|
10
10
|
private toleranceInput;
|
|
11
|
-
private availableEntities;
|
|
12
11
|
private entityDropDownMenu;
|
|
13
12
|
private entity;
|
|
14
13
|
private readonly inputsContainer;
|
|
@@ -22,10 +21,6 @@ export declare class Boundary2D extends Operation {
|
|
|
22
21
|
* Add entity button
|
|
23
22
|
*/
|
|
24
23
|
private addEntityButton;
|
|
25
|
-
/**
|
|
26
|
-
* Create dropdown list for entityButton
|
|
27
|
-
*/
|
|
28
|
-
private createDropdownListItems;
|
|
29
24
|
private addActionButtons;
|
|
30
25
|
/**
|
|
31
26
|
* Initializes uiComponents on opening the operationUI
|
|
@@ -8,9 +8,6 @@ export declare class Extrude extends Operation {
|
|
|
8
8
|
private readonly onRejectHandler;
|
|
9
9
|
private readonly buttonsContainer;
|
|
10
10
|
private numberInput;
|
|
11
|
-
private availableEntities_1;
|
|
12
|
-
private availableEntities_2;
|
|
13
|
-
private availableEntities_3;
|
|
14
11
|
private entityDropDownMenu_1;
|
|
15
12
|
private entityDropDownMenu_2;
|
|
16
13
|
private entityDropDownMenu_3;
|
|
@@ -28,12 +25,6 @@ export declare class Extrude extends Operation {
|
|
|
28
25
|
private addEntityButton_1;
|
|
29
26
|
private addEntityButton_2;
|
|
30
27
|
private addEntityButton_3;
|
|
31
|
-
/**
|
|
32
|
-
* Create dropdown list for entityButton
|
|
33
|
-
*/
|
|
34
|
-
private createDropdownListItems_1;
|
|
35
|
-
private createDropdownListItems_2;
|
|
36
|
-
private createDropdownListItems_3;
|
|
37
28
|
private addFields;
|
|
38
29
|
private addActionButtons;
|
|
39
30
|
/**
|
|
@@ -15,7 +15,6 @@ export declare class CreateElement extends Operation {
|
|
|
15
15
|
private elementShapeOptions;
|
|
16
16
|
private elementTypeOptions;
|
|
17
17
|
private elementOrderOptions;
|
|
18
|
-
private readonly availableEntities;
|
|
19
18
|
private selectionData;
|
|
20
19
|
private element2DMaterial;
|
|
21
20
|
uiComponents: IViewerHtmlElement[];
|
|
@@ -26,10 +25,6 @@ export declare class CreateElement extends Operation {
|
|
|
26
25
|
* Add entity button
|
|
27
26
|
*/
|
|
28
27
|
private addEntityButton;
|
|
29
|
-
/**
|
|
30
|
-
* Create dropdown list for entityButton
|
|
31
|
-
*/
|
|
32
|
-
private createDropdownListItems;
|
|
33
28
|
/**
|
|
34
29
|
* Add dropdown list
|
|
35
30
|
*/
|
|
@@ -13,7 +13,6 @@ export declare class MeshVolume extends Operation {
|
|
|
13
13
|
private readonly inputContainer;
|
|
14
14
|
private elementOrderOptions;
|
|
15
15
|
private elementSize;
|
|
16
|
-
private readonly availableEntities;
|
|
17
16
|
private selectionData;
|
|
18
17
|
private uiComponents;
|
|
19
18
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
@@ -23,10 +22,6 @@ export declare class MeshVolume extends Operation {
|
|
|
23
22
|
* Add entity button
|
|
24
23
|
*/
|
|
25
24
|
private addEntityButton;
|
|
26
|
-
/**
|
|
27
|
-
* Create dropdown list for entityButton
|
|
28
|
-
*/
|
|
29
|
-
private createDropdownListItems;
|
|
30
25
|
/**
|
|
31
26
|
* Add input field
|
|
32
27
|
*/
|
|
@@ -9,7 +9,6 @@ export declare class MergeByElements extends Operation {
|
|
|
9
9
|
private readonly buttonsContainer;
|
|
10
10
|
private affectedElementUIDs;
|
|
11
11
|
private toleranceInput;
|
|
12
|
-
private availableEntities;
|
|
13
12
|
private entityDropDownMenu;
|
|
14
13
|
private entity;
|
|
15
14
|
private tolerance;
|
|
@@ -24,10 +23,6 @@ export declare class MergeByElements extends Operation {
|
|
|
24
23
|
* Add entity button
|
|
25
24
|
*/
|
|
26
25
|
private addEntityButton;
|
|
27
|
-
/**
|
|
28
|
-
* Create dropdown list for entityButton
|
|
29
|
-
*/
|
|
30
|
-
private createDropdownListItems;
|
|
31
26
|
private addFields;
|
|
32
27
|
private addActionButtons;
|
|
33
28
|
/**
|
|
@@ -8,8 +8,6 @@ export declare class MergeByNodes extends Operation {
|
|
|
8
8
|
private readonly onRejectHandler;
|
|
9
9
|
private readonly buttonsContainer;
|
|
10
10
|
private affectedElementUIDs;
|
|
11
|
-
private availableEntities_1;
|
|
12
|
-
private availableEntities_2;
|
|
13
11
|
private entityDropDownMenu_1;
|
|
14
12
|
private entityDropDownMenu_2;
|
|
15
13
|
private selectionData;
|
|
@@ -23,11 +21,6 @@ export declare class MergeByNodes extends Operation {
|
|
|
23
21
|
*/
|
|
24
22
|
private addEntityButton_1;
|
|
25
23
|
private addEntityButton_2;
|
|
26
|
-
/**
|
|
27
|
-
* Create dropdown list for entityButton
|
|
28
|
-
*/
|
|
29
|
-
private createDropdownListItems_1;
|
|
30
|
-
private createDropdownListItems_2;
|
|
31
24
|
private addActionButtons;
|
|
32
25
|
/**
|
|
33
26
|
* Initializes uiComponents on opening the operationUI
|
|
@@ -15,7 +15,6 @@ export declare class CheckNormals extends Operation {
|
|
|
15
15
|
private readonly onReverseHandler;
|
|
16
16
|
private readonly onHideHandler;
|
|
17
17
|
private readonly buttonsContainer;
|
|
18
|
-
private availableEntities;
|
|
19
18
|
private entity;
|
|
20
19
|
private selectionData;
|
|
21
20
|
constructor(onShow?: OnShowHandler, onReverse?: OnReverseHandler, onHide?: OnHideHandler);
|
|
@@ -31,10 +30,6 @@ export declare class CheckNormals extends Operation {
|
|
|
31
30
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
32
31
|
*/
|
|
33
32
|
private addActionButtons;
|
|
34
|
-
/**
|
|
35
|
-
* Create dropdown list for entityButton
|
|
36
|
-
*/
|
|
37
|
-
private createDropdownListItems;
|
|
38
33
|
/**
|
|
39
34
|
* Initializes uiComponents on opening the operationUI
|
|
40
35
|
*/
|
|
@@ -8,7 +8,6 @@ export declare class FreeBorders extends Operation {
|
|
|
8
8
|
private readonly onAcceptHandler;
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
|
-
private availableEntities;
|
|
12
11
|
private entityDropDownMenu;
|
|
13
12
|
private entity;
|
|
14
13
|
private iBorders;
|
|
@@ -23,10 +22,6 @@ export declare class FreeBorders extends Operation {
|
|
|
23
22
|
* Add entity button
|
|
24
23
|
*/
|
|
25
24
|
private addEntityButton;
|
|
26
|
-
/**
|
|
27
|
-
* Create dropdown list for entityButton
|
|
28
|
-
*/
|
|
29
|
-
private createDropdownListItems;
|
|
30
25
|
private addActionButtons;
|
|
31
26
|
/**
|
|
32
27
|
* Initializes uiComponents on opening the operationUI
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Operation } from "../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
-
export type OnAcceptHandler = () => void;
|
|
2
|
+
export type OnAcceptHandler = (id: number) => void;
|
|
3
3
|
export type OnIdOnOffHandler = () => void;
|
|
4
4
|
export type OnSaveHandler = () => void;
|
|
5
5
|
export declare class FindByIdOperation extends Operation {
|
|
@@ -61,10 +61,16 @@ export declare class StatusBar {
|
|
|
61
61
|
*/
|
|
62
62
|
private copyLogsButton;
|
|
63
63
|
private closeLogsButton;
|
|
64
|
+
private versionBadge;
|
|
64
65
|
/**
|
|
65
66
|
* Private constructor.
|
|
66
67
|
*/
|
|
67
68
|
private constructor();
|
|
69
|
+
/**
|
|
70
|
+
* Fetches the service version from the backend and displays it
|
|
71
|
+
* as a badge on the right end of the status bar.
|
|
72
|
+
*/
|
|
73
|
+
private _fetchAndDisplayVersion;
|
|
68
74
|
/**
|
|
69
75
|
* Getter for singleton instance.
|
|
70
76
|
*/
|