@mlightcad/cad-simple-viewer 1.6.2 → 1.7.0
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/cad-simple-viewer.js +28736 -18706
- package/dist/cad-simple-viewer.umd.cjs +1639 -308
- package/dist/mtext-renderer-worker.js +14590 -14441
- package/icons.ts +7 -0
- package/lib/app/AcApBrand.d.ts +2 -2
- package/lib/app/AcApBrand.d.ts.map +1 -1
- package/lib/app/AcApBrand.js +2 -2
- package/lib/app/AcApBrand.js.map +1 -1
- package/lib/app/AcApBusyIndicator.d.ts +6 -0
- package/lib/app/AcApBusyIndicator.d.ts.map +1 -1
- package/lib/app/AcApBusyIndicator.js +8 -0
- package/lib/app/AcApBusyIndicator.js.map +1 -1
- package/lib/app/AcApContext.d.ts +24 -0
- package/lib/app/AcApContext.d.ts.map +1 -1
- package/lib/app/AcApContext.js +103 -18
- package/lib/app/AcApContext.js.map +1 -1
- package/lib/app/AcApDocManager.d.ts +293 -31
- package/lib/app/AcApDocManager.d.ts.map +1 -1
- package/lib/app/AcApDocManager.js +972 -184
- package/lib/app/AcApDocManager.js.map +1 -1
- package/lib/app/AcApDocSession.d.ts +41 -0
- package/lib/app/AcApDocSession.d.ts.map +1 -0
- package/lib/app/AcApDocSession.js +29 -0
- package/lib/app/AcApDocSession.js.map +1 -0
- package/lib/app/AcApDocsUrl.d.ts +57 -0
- package/lib/app/AcApDocsUrl.d.ts.map +1 -0
- package/lib/app/AcApDocsUrl.js +76 -0
- package/lib/app/AcApDocsUrl.js.map +1 -0
- package/lib/app/AcApDocument.d.ts +6 -1
- package/lib/app/AcApDocument.d.ts.map +1 -1
- package/lib/app/AcApDocument.js +21 -0
- package/lib/app/AcApDocument.js.map +1 -1
- package/lib/app/AcApFontLoader.d.ts +6 -0
- package/lib/app/AcApFontLoader.d.ts.map +1 -1
- package/lib/app/AcApFontLoader.js +11 -0
- package/lib/app/AcApFontLoader.js.map +1 -1
- package/lib/app/{AcDbOpenDatabaseOptions.d.ts → AcApOpenDatabaseOptions.d.ts} +35 -8
- package/lib/app/AcApOpenDatabaseOptions.d.ts.map +1 -0
- package/lib/app/{AcDbOpenDatabaseOptions.js → AcApOpenDatabaseOptions.js} +1 -1
- package/lib/app/AcApOpenDatabaseOptions.js.map +1 -0
- package/lib/app/AcApOpenFileDialog.d.ts +1 -1
- package/lib/app/AcApOpenFileProgressController.d.ts +14 -0
- package/lib/app/AcApOpenFileProgressController.d.ts.map +1 -1
- package/lib/app/AcApOpenFileProgressController.js +18 -0
- package/lib/app/AcApOpenFileProgressController.js.map +1 -1
- package/lib/app/AcApProgress.d.ts +6 -0
- package/lib/app/AcApProgress.d.ts.map +1 -1
- package/lib/app/AcApProgress.js +17 -0
- package/lib/app/AcApProgress.js.map +1 -1
- package/lib/app/AcApSettingManager.d.ts +156 -43
- package/lib/app/AcApSettingManager.d.ts.map +1 -1
- package/lib/app/AcApSettingManager.js +216 -66
- package/lib/app/AcApSettingManager.js.map +1 -1
- package/lib/app/index.d.ts +4 -2
- package/lib/app/index.d.ts.map +1 -1
- package/lib/app/index.js +3 -1
- package/lib/app/index.js.map +1 -1
- package/lib/command/AcApCloseCmd.d.ts +15 -0
- package/lib/command/AcApCloseCmd.d.ts.map +1 -0
- package/lib/command/AcApCloseCmd.js +83 -0
- package/lib/command/AcApCloseCmd.js.map +1 -0
- package/lib/command/AcApDrawOverlayInput.d.ts +6 -0
- package/lib/command/AcApDrawOverlayInput.d.ts.map +1 -0
- package/lib/command/AcApDrawOverlayInput.js +64 -0
- package/lib/command/AcApDrawOverlayInput.js.map +1 -0
- package/lib/command/AcApDrawStyleDrawCmd.d.ts +9 -0
- package/lib/command/AcApDrawStyleDrawCmd.d.ts.map +1 -0
- package/lib/command/AcApDrawStyleDrawCmd.js +32 -0
- package/lib/command/AcApDrawStyleDrawCmd.js.map +1 -0
- package/lib/command/AcApDrawStyleSession.d.ts +20 -0
- package/lib/command/AcApDrawStyleSession.d.ts.map +1 -0
- package/lib/command/AcApDrawStyleSession.js +2 -0
- package/lib/command/AcApDrawStyleSession.js.map +1 -0
- package/lib/command/AcApInstallDrawStyleSessionAccessory.d.ts +28 -0
- package/lib/command/AcApInstallDrawStyleSessionAccessory.d.ts.map +1 -0
- package/lib/command/AcApInstallDrawStyleSessionAccessory.js +174 -0
- package/lib/command/AcApInstallDrawStyleSessionAccessory.js.map +1 -0
- package/lib/command/AcApReadingModeCmd.d.ts +17 -0
- package/lib/command/AcApReadingModeCmd.d.ts.map +1 -0
- package/lib/command/AcApReadingModeCmd.js +82 -0
- package/lib/command/AcApReadingModeCmd.js.map +1 -0
- package/lib/command/AcApShortCutSelectionAccessory.d.ts +14 -0
- package/lib/command/AcApShortCutSelectionAccessory.d.ts.map +1 -0
- package/lib/command/AcApShortCutSelectionAccessory.js +266 -0
- package/lib/command/AcApShortCutSelectionAccessory.js.map +1 -0
- package/lib/command/AcApShortCutToolbarDocBind.d.ts +20 -0
- package/lib/command/AcApShortCutToolbarDocBind.d.ts.map +1 -0
- package/lib/command/AcApShortCutToolbarDocBind.js +155 -0
- package/lib/command/AcApShortCutToolbarDocBind.js.map +1 -0
- package/lib/command/AcApZoomCmd.d.ts +39 -1
- package/lib/command/AcApZoomCmd.d.ts.map +1 -1
- package/lib/command/AcApZoomCmd.js +70 -6
- package/lib/command/AcApZoomCmd.js.map +1 -1
- package/lib/command/draw/AcApHatchCmd.js +1 -1
- package/lib/command/draw/AcApHatchCmd.js.map +1 -1
- package/lib/command/draw/AcApMTextCmd.d.ts.map +1 -1
- package/lib/command/draw/AcApMTextCmd.js +11 -7
- package/lib/command/draw/AcApMTextCmd.js.map +1 -1
- package/lib/command/index.d.ts +4 -0
- package/lib/command/index.d.ts.map +1 -1
- package/lib/command/index.js +4 -0
- package/lib/command/index.js.map +1 -1
- package/lib/command/markup/AcApMarkupArrowCmd.d.ts +2 -3
- package/lib/command/markup/AcApMarkupArrowCmd.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupArrowCmd.js +8 -9
- package/lib/command/markup/AcApMarkupArrowCmd.js.map +1 -1
- package/lib/command/markup/AcApMarkupCalloutCmd.d.ts +2 -3
- package/lib/command/markup/AcApMarkupCalloutCmd.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupCalloutCmd.js +47 -22
- package/lib/command/markup/AcApMarkupCalloutCmd.js.map +1 -1
- package/lib/command/markup/AcApMarkupCircleCmd.d.ts +2 -3
- package/lib/command/markup/AcApMarkupCircleCmd.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupCircleCmd.js +8 -9
- package/lib/command/markup/AcApMarkupCircleCmd.js.map +1 -1
- package/lib/command/markup/AcApMarkupCloudCmd.d.ts +2 -3
- package/lib/command/markup/AcApMarkupCloudCmd.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupCloudCmd.js +8 -9
- package/lib/command/markup/AcApMarkupCloudCmd.js.map +1 -1
- package/lib/command/markup/AcApMarkupCmdUtil.d.ts +7 -1
- package/lib/command/markup/AcApMarkupCmdUtil.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupCmdUtil.js +10 -0
- package/lib/command/markup/AcApMarkupCmdUtil.js.map +1 -1
- package/lib/command/markup/AcApMarkupDrawCmd.d.ts +19 -0
- package/lib/command/markup/AcApMarkupDrawCmd.d.ts.map +1 -0
- package/lib/command/markup/AcApMarkupDrawCmd.js +47 -0
- package/lib/command/markup/AcApMarkupDrawCmd.js.map +1 -0
- package/lib/command/markup/AcApMarkupGeometry.d.ts +39 -3
- package/lib/command/markup/AcApMarkupGeometry.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupGeometry.js +127 -26
- package/lib/command/markup/AcApMarkupGeometry.js.map +1 -1
- package/lib/command/markup/AcApMarkupHighlightCmd.d.ts +2 -3
- package/lib/command/markup/AcApMarkupHighlightCmd.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupHighlightCmd.js +9 -10
- package/lib/command/markup/AcApMarkupHighlightCmd.js.map +1 -1
- package/lib/command/markup/AcApMarkupHistory.d.ts +1 -1
- package/lib/command/markup/AcApMarkupHistory.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupHistory.js +4 -11
- package/lib/command/markup/AcApMarkupHistory.js.map +1 -1
- package/lib/command/markup/AcApMarkupLineCmd.d.ts +2 -3
- package/lib/command/markup/AcApMarkupLineCmd.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupLineCmd.js +18 -11
- package/lib/command/markup/AcApMarkupLineCmd.js.map +1 -1
- package/lib/command/markup/AcApMarkupPresenter.d.ts +24 -4
- package/lib/command/markup/AcApMarkupPresenter.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupPresenter.js +100 -18
- package/lib/command/markup/AcApMarkupPresenter.js.map +1 -1
- package/lib/command/markup/AcApMarkupRectCmd.d.ts +2 -3
- package/lib/command/markup/AcApMarkupRectCmd.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupRectCmd.js +8 -9
- package/lib/command/markup/AcApMarkupRectCmd.js.map +1 -1
- package/lib/command/markup/AcApMarkupSession.d.ts +54 -0
- package/lib/command/markup/AcApMarkupSession.d.ts.map +1 -0
- package/lib/command/markup/AcApMarkupSession.js +85 -0
- package/lib/command/markup/AcApMarkupSession.js.map +1 -0
- package/lib/command/markup/AcApMarkupSessionBootstrap.d.ts +2 -0
- package/lib/command/markup/AcApMarkupSessionBootstrap.d.ts.map +1 -0
- package/lib/command/markup/AcApMarkupSessionBootstrap.js +12 -0
- package/lib/command/markup/AcApMarkupSessionBootstrap.js.map +1 -0
- package/lib/command/markup/AcApMarkupShapeBuilder.d.ts +7 -4
- package/lib/command/markup/AcApMarkupShapeBuilder.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupShapeBuilder.js +24 -11
- package/lib/command/markup/AcApMarkupShapeBuilder.js.map +1 -1
- package/lib/command/markup/AcApMarkupShapeCallout.d.ts +21 -1
- package/lib/command/markup/AcApMarkupShapeCallout.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupShapeCallout.js +41 -25
- package/lib/command/markup/AcApMarkupShapeCallout.js.map +1 -1
- package/lib/command/markup/AcApMarkupSidecar.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupSidecar.js +39 -5
- package/lib/command/markup/AcApMarkupSidecar.js.map +1 -1
- package/lib/command/markup/AcApMarkupStampCmd.d.ts +2 -3
- package/lib/command/markup/AcApMarkupStampCmd.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupStampCmd.js +6 -7
- package/lib/command/markup/AcApMarkupStampCmd.js.map +1 -1
- package/lib/command/markup/AcApMarkupStore.d.ts +1 -1
- package/lib/command/markup/AcApMarkupStore.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupStore.js +3 -6
- package/lib/command/markup/AcApMarkupStore.js.map +1 -1
- package/lib/command/markup/AcApMarkupTextCmd.d.ts +2 -3
- package/lib/command/markup/AcApMarkupTextCmd.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupTextCmd.js +13 -9
- package/lib/command/markup/AcApMarkupTextCmd.js.map +1 -1
- package/lib/command/markup/AcApMarkupTypes.d.ts +18 -2
- package/lib/command/markup/AcApMarkupTypes.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupUtil.d.ts +36 -7
- package/lib/command/markup/AcApMarkupUtil.d.ts.map +1 -1
- package/lib/command/markup/AcApMarkupUtil.js +149 -34
- package/lib/command/markup/AcApMarkupUtil.js.map +1 -1
- package/lib/command/markup/AcApRegisterMarkupCommands.d.ts +8 -0
- package/lib/command/markup/AcApRegisterMarkupCommands.d.ts.map +1 -0
- package/lib/command/markup/AcApRegisterMarkupCommands.js +35 -0
- package/lib/command/markup/AcApRegisterMarkupCommands.js.map +1 -0
- package/lib/command/markup/entity/AcApMarkupCalloutEntity.d.ts.map +1 -1
- package/lib/command/markup/entity/AcApMarkupCalloutEntity.js +16 -15
- package/lib/command/markup/entity/AcApMarkupCalloutEntity.js.map +1 -1
- package/lib/command/markup/entity/AcApMarkupEntity.d.ts +5 -1
- package/lib/command/markup/entity/AcApMarkupEntity.d.ts.map +1 -1
- package/lib/command/markup/entity/AcApMarkupEntity.js +19 -5
- package/lib/command/markup/entity/AcApMarkupEntity.js.map +1 -1
- package/lib/command/markup/entity/AcApMarkupEntityGrips.d.ts +8 -3
- package/lib/command/markup/entity/AcApMarkupEntityGrips.d.ts.map +1 -1
- package/lib/command/markup/entity/AcApMarkupEntityGrips.js +15 -7
- package/lib/command/markup/entity/AcApMarkupEntityGrips.js.map +1 -1
- package/lib/command/markup/entity/AcApMarkupHighlightEntity.d.ts.map +1 -1
- package/lib/command/markup/entity/AcApMarkupHighlightEntity.js +14 -12
- package/lib/command/markup/entity/AcApMarkupHighlightEntity.js.map +1 -1
- package/lib/command/markup/entity/AcApMarkupSegmentEntity.d.ts.map +1 -1
- package/lib/command/markup/entity/AcApMarkupSegmentEntity.js +8 -6
- package/lib/command/markup/entity/AcApMarkupSegmentEntity.js.map +1 -1
- package/lib/command/markup/entity/AcApMarkupShapeEntity.d.ts.map +1 -1
- package/lib/command/markup/entity/AcApMarkupShapeEntity.js +23 -21
- package/lib/command/markup/entity/AcApMarkupShapeEntity.js.map +1 -1
- package/lib/command/markup/entity/AcApMarkupStampEntity.d.ts.map +1 -1
- package/lib/command/markup/entity/AcApMarkupStampEntity.js +1 -0
- package/lib/command/markup/entity/AcApMarkupStampEntity.js.map +1 -1
- package/lib/command/markup/entity/AcApMarkupTextEntity.d.ts.map +1 -1
- package/lib/command/markup/entity/AcApMarkupTextEntity.js +1 -0
- package/lib/command/markup/entity/AcApMarkupTextEntity.js.map +1 -1
- package/lib/command/markup/index.d.ts +4 -0
- package/lib/command/markup/index.d.ts.map +1 -1
- package/lib/command/markup/index.js +5 -0
- package/lib/command/markup/index.js.map +1 -1
- package/lib/command/measure/AcApMeasureAngleArc.d.ts +27 -0
- package/lib/command/measure/AcApMeasureAngleArc.d.ts.map +1 -0
- package/lib/command/measure/AcApMeasureAngleArc.js +22 -0
- package/lib/command/measure/AcApMeasureAngleArc.js.map +1 -0
- package/lib/command/measure/AcApMeasureAngleCmd.d.ts +2 -3
- package/lib/command/measure/AcApMeasureAngleCmd.d.ts.map +1 -1
- package/lib/command/measure/AcApMeasureAngleCmd.js +46 -45
- package/lib/command/measure/AcApMeasureAngleCmd.js.map +1 -1
- package/lib/command/measure/AcApMeasureArcCmd.d.ts +2 -3
- package/lib/command/measure/AcApMeasureArcCmd.d.ts.map +1 -1
- package/lib/command/measure/AcApMeasureArcCmd.js +71 -67
- package/lib/command/measure/AcApMeasureArcCmd.js.map +1 -1
- package/lib/command/measure/AcApMeasureAreaCmd.d.ts +2 -3
- package/lib/command/measure/AcApMeasureAreaCmd.d.ts.map +1 -1
- package/lib/command/measure/AcApMeasureAreaCmd.js +102 -99
- package/lib/command/measure/AcApMeasureAreaCmd.js.map +1 -1
- package/lib/command/measure/AcApMeasureContinuousCmd.d.ts +44 -0
- package/lib/command/measure/AcApMeasureContinuousCmd.d.ts.map +1 -0
- package/lib/command/measure/AcApMeasureContinuousCmd.js +317 -0
- package/lib/command/measure/AcApMeasureContinuousCmd.js.map +1 -0
- package/lib/command/measure/AcApMeasureDistanceCmd.d.ts +3 -3
- package/lib/command/measure/AcApMeasureDistanceCmd.d.ts.map +1 -1
- package/lib/command/measure/AcApMeasureDistanceCmd.js +41 -37
- package/lib/command/measure/AcApMeasureDistanceCmd.js.map +1 -1
- package/lib/command/measure/AcApMeasureDrawCmd.d.ts +32 -0
- package/lib/command/measure/AcApMeasureDrawCmd.d.ts.map +1 -0
- package/lib/command/measure/AcApMeasureDrawCmd.js +56 -0
- package/lib/command/measure/AcApMeasureDrawCmd.js.map +1 -0
- package/lib/command/measure/AcApMeasurePointCmd.d.ts +2 -3
- package/lib/command/measure/AcApMeasurePointCmd.d.ts.map +1 -1
- package/lib/command/measure/AcApMeasurePointCmd.js +20 -23
- package/lib/command/measure/AcApMeasurePointCmd.js.map +1 -1
- package/lib/command/measure/AcApMeasurementGeometry.d.ts +19 -0
- package/lib/command/measure/AcApMeasurementGeometry.d.ts.map +1 -1
- package/lib/command/measure/AcApMeasurementGeometry.js +53 -3
- package/lib/command/measure/AcApMeasurementGeometry.js.map +1 -1
- package/lib/command/measure/AcApMeasurementHistory.d.ts.map +1 -1
- package/lib/command/measure/AcApMeasurementHistory.js +3 -1
- package/lib/command/measure/AcApMeasurementHistory.js.map +1 -1
- package/lib/command/measure/AcApMeasurementPlace.d.ts.map +1 -1
- package/lib/command/measure/AcApMeasurementPlace.js +22 -5
- package/lib/command/measure/AcApMeasurementPlace.js.map +1 -1
- package/lib/command/measure/AcApMeasurementRepublish.d.ts +35 -0
- package/lib/command/measure/AcApMeasurementRepublish.d.ts.map +1 -0
- package/lib/command/measure/AcApMeasurementRepublish.js +31 -0
- package/lib/command/measure/AcApMeasurementRepublish.js.map +1 -0
- package/lib/command/measure/AcApMeasurementSidecar.d.ts +2 -1
- package/lib/command/measure/AcApMeasurementSidecar.d.ts.map +1 -1
- package/lib/command/measure/AcApMeasurementSidecar.js +55 -10
- package/lib/command/measure/AcApMeasurementSidecar.js.map +1 -1
- package/lib/command/measure/AcApMeasurementStore.d.ts +45 -2
- package/lib/command/measure/AcApMeasurementStore.d.ts.map +1 -1
- package/lib/command/measure/AcApMeasurementStore.js +277 -33
- package/lib/command/measure/AcApMeasurementStore.js.map +1 -1
- package/lib/command/measure/AcApMeasurementTypes.d.ts +17 -1
- package/lib/command/measure/AcApMeasurementTypes.d.ts.map +1 -1
- package/lib/command/measure/AcApRegisterMeasureCommands.d.ts +8 -0
- package/lib/command/measure/AcApRegisterMeasureCommands.d.ts.map +1 -0
- package/lib/command/measure/AcApRegisterMeasureCommands.js +29 -0
- package/lib/command/measure/AcApRegisterMeasureCommands.js.map +1 -0
- package/lib/command/measure/entity/AcApMeasureAngleEntity.d.ts +3 -5
- package/lib/command/measure/entity/AcApMeasureAngleEntity.d.ts.map +1 -1
- package/lib/command/measure/entity/AcApMeasureAngleEntity.js +165 -56
- package/lib/command/measure/entity/AcApMeasureAngleEntity.js.map +1 -1
- package/lib/command/measure/entity/AcApMeasureArcEntity.d.ts +5 -8
- package/lib/command/measure/entity/AcApMeasureArcEntity.d.ts.map +1 -1
- package/lib/command/measure/entity/AcApMeasureArcEntity.js +251 -53
- package/lib/command/measure/entity/AcApMeasureArcEntity.js.map +1 -1
- package/lib/command/measure/entity/AcApMeasureAreaEntity.d.ts +4 -3
- package/lib/command/measure/entity/AcApMeasureAreaEntity.d.ts.map +1 -1
- package/lib/command/measure/entity/AcApMeasureAreaEntity.js +154 -28
- package/lib/command/measure/entity/AcApMeasureAreaEntity.js.map +1 -1
- package/lib/command/measure/entity/AcApMeasureDistanceEntity.d.ts +5 -3
- package/lib/command/measure/entity/AcApMeasureDistanceEntity.d.ts.map +1 -1
- package/lib/command/measure/entity/AcApMeasureDistanceEntity.js +180 -28
- package/lib/command/measure/entity/AcApMeasureDistanceEntity.js.map +1 -1
- package/lib/command/measure/entity/AcApMeasureDrawUtil.d.ts +20 -8
- package/lib/command/measure/entity/AcApMeasureDrawUtil.d.ts.map +1 -1
- package/lib/command/measure/entity/AcApMeasureDrawUtil.js +45 -19
- package/lib/command/measure/entity/AcApMeasureDrawUtil.js.map +1 -1
- package/lib/command/measure/entity/AcApMeasureEntity.d.ts +41 -6
- package/lib/command/measure/entity/AcApMeasureEntity.d.ts.map +1 -1
- package/lib/command/measure/entity/AcApMeasureEntity.js +48 -2
- package/lib/command/measure/entity/AcApMeasureEntity.js.map +1 -1
- package/lib/command/measure/entity/AcApMeasureEntityFactory.d.ts +2 -2
- package/lib/command/measure/entity/AcApMeasureEntityFactory.d.ts.map +1 -1
- package/lib/command/measure/entity/AcApMeasureEntityFactory.js +10 -3
- package/lib/command/measure/entity/AcApMeasureEntityFactory.js.map +1 -1
- package/lib/command/measure/entity/AcApMeasureEntityGrips.d.ts +33 -0
- package/lib/command/measure/entity/AcApMeasureEntityGrips.d.ts.map +1 -0
- package/lib/command/measure/entity/AcApMeasureEntityGrips.js +49 -0
- package/lib/command/measure/entity/AcApMeasureEntityGrips.js.map +1 -0
- package/lib/command/measure/entity/AcApMeasurePointEntity.d.ts +3 -2
- package/lib/command/measure/entity/AcApMeasurePointEntity.d.ts.map +1 -1
- package/lib/command/measure/entity/AcApMeasurePointEntity.js +130 -16
- package/lib/command/measure/entity/AcApMeasurePointEntity.js.map +1 -1
- package/lib/command/measure/entity/index.d.ts +1 -0
- package/lib/command/measure/entity/index.d.ts.map +1 -1
- package/lib/command/measure/entity/index.js +1 -0
- package/lib/command/measure/entity/index.js.map +1 -1
- package/lib/command/measure/index.d.ts +4 -0
- package/lib/command/measure/index.d.ts.map +1 -1
- package/lib/command/measure/index.js +4 -0
- package/lib/command/measure/index.js.map +1 -1
- package/lib/command/overlay/AcApHtmlLivePreview.d.ts +16 -4
- package/lib/command/overlay/AcApHtmlLivePreview.d.ts.map +1 -1
- package/lib/command/overlay/AcApHtmlLivePreview.js +42 -12
- package/lib/command/overlay/AcApHtmlLivePreview.js.map +1 -1
- package/lib/command/overlay/AcApOverlayDrawUtil.d.ts +113 -3
- package/lib/command/overlay/AcApOverlayDrawUtil.d.ts.map +1 -1
- package/lib/command/overlay/AcApOverlayDrawUtil.js +341 -7
- package/lib/command/overlay/AcApOverlayDrawUtil.js.map +1 -1
- package/lib/command/overlay/AcApOverlayGripHost.d.ts +19 -0
- package/lib/command/overlay/AcApOverlayGripHost.d.ts.map +1 -1
- package/lib/command/overlay/AcApOverlayGripHost.js +124 -6
- package/lib/command/overlay/AcApOverlayGripHost.js.map +1 -1
- package/lib/editor/command/AcEdCommand.d.ts +17 -0
- package/lib/editor/command/AcEdCommand.d.ts.map +1 -1
- package/lib/editor/command/AcEdCommand.js +81 -1
- package/lib/editor/command/AcEdCommand.js.map +1 -1
- package/lib/editor/command/AcEdCommandStack.d.ts +14 -3
- package/lib/editor/command/AcEdCommandStack.d.ts.map +1 -1
- package/lib/editor/command/AcEdCommandStack.js +39 -3
- package/lib/editor/command/AcEdCommandStack.js.map +1 -1
- package/lib/editor/command/AcEdSessionAccessory.d.ts +82 -0
- package/lib/editor/command/AcEdSessionAccessory.d.ts.map +1 -0
- package/lib/editor/command/AcEdSessionAccessory.js +15 -0
- package/lib/editor/command/AcEdSessionAccessory.js.map +1 -0
- package/lib/editor/command/AcEdSessionProviderRegistry.d.ts +42 -0
- package/lib/editor/command/AcEdSessionProviderRegistry.d.ts.map +1 -0
- package/lib/editor/command/AcEdSessionProviderRegistry.js +54 -0
- package/lib/editor/command/AcEdSessionProviderRegistry.js.map +1 -0
- package/lib/editor/command/index.d.ts +4 -0
- package/lib/editor/command/index.d.ts.map +1 -1
- package/lib/editor/command/index.js +3 -0
- package/lib/editor/command/index.js.map +1 -1
- package/lib/editor/global/AcEdUiColor.d.ts +10 -0
- package/lib/editor/global/AcEdUiColor.d.ts.map +1 -1
- package/lib/editor/global/AcEdUiColor.js +14 -0
- package/lib/editor/global/AcEdUiColor.js.map +1 -1
- package/lib/editor/global/AcEdUiLayout.d.ts +102 -0
- package/lib/editor/global/AcEdUiLayout.d.ts.map +1 -1
- package/lib/editor/global/AcEdUiLayout.js +137 -0
- package/lib/editor/global/AcEdUiLayout.js.map +1 -1
- package/lib/editor/global/AcEdUiTheme.d.ts +15 -3
- package/lib/editor/global/AcEdUiTheme.d.ts.map +1 -1
- package/lib/editor/global/AcEdUiTheme.js +113 -6
- package/lib/editor/global/AcEdUiTheme.js.map +1 -1
- package/lib/editor/grip/AcEdGripAppearance.d.ts +18 -0
- package/lib/editor/grip/AcEdGripAppearance.d.ts.map +1 -1
- package/lib/editor/grip/AcEdGripAppearance.js +23 -1
- package/lib/editor/grip/AcEdGripAppearance.js.map +1 -1
- package/lib/editor/grip/AcEdGripEditSession.js +2 -2
- package/lib/editor/grip/AcEdGripEditSession.js.map +1 -1
- package/lib/editor/grip/AcEdGripHandle.d.ts +1 -2
- package/lib/editor/grip/AcEdGripHandle.d.ts.map +1 -1
- package/lib/editor/grip/AcEdGripHandle.js +4 -13
- package/lib/editor/grip/AcEdGripHandle.js.map +1 -1
- package/lib/editor/grip/AcEdGripManager.d.ts +3 -1
- package/lib/editor/grip/AcEdGripManager.d.ts.map +1 -1
- package/lib/editor/grip/AcEdGripManager.js +30 -14
- package/lib/editor/grip/AcEdGripManager.js.map +1 -1
- package/lib/editor/grip/index.d.ts +1 -0
- package/lib/editor/grip/index.d.ts.map +1 -1
- package/lib/editor/grip/index.js +1 -0
- package/lib/editor/grip/index.js.map +1 -1
- package/lib/editor/input/AcEdDynamicInput.d.ts +15 -0
- package/lib/editor/input/AcEdDynamicInput.d.ts.map +1 -0
- package/lib/editor/input/AcEdDynamicInput.js +22 -0
- package/lib/editor/input/AcEdDynamicInput.js.map +1 -0
- package/lib/editor/input/AcEdOsnapCenterMarks.d.ts +19 -1
- package/lib/editor/input/AcEdOsnapCenterMarks.d.ts.map +1 -1
- package/lib/editor/input/AcEdOsnapCenterMarks.js +53 -9
- package/lib/editor/input/AcEdOsnapCenterMarks.js.map +1 -1
- package/lib/editor/input/AcEdOsnapResolver.d.ts.map +1 -1
- package/lib/editor/input/AcEdOsnapResolver.js +216 -35
- package/lib/editor/input/AcEdOsnapResolver.js.map +1 -1
- package/lib/editor/input/AcEditor.d.ts +14 -1
- package/lib/editor/input/AcEditor.d.ts.map +1 -1
- package/lib/editor/input/AcEditor.js +18 -2
- package/lib/editor/input/AcEditor.js.map +1 -1
- package/lib/editor/input/index.d.ts +1 -0
- package/lib/editor/input/index.d.ts.map +1 -1
- package/lib/editor/input/index.js +1 -0
- package/lib/editor/input/index.js.map +1 -1
- package/lib/editor/input/marker/AcEdOSnapMarkerManager.d.ts +12 -0
- package/lib/editor/input/marker/AcEdOSnapMarkerManager.d.ts.map +1 -1
- package/lib/editor/input/marker/AcEdOSnapMarkerManager.js +53 -18
- package/lib/editor/input/marker/AcEdOSnapMarkerManager.js.map +1 -1
- package/lib/editor/input/prompt/AcEdPromptPointOptions.d.ts +15 -0
- package/lib/editor/input/prompt/AcEdPromptPointOptions.d.ts.map +1 -1
- package/lib/editor/input/prompt/AcEdPromptPointOptions.js +24 -0
- package/lib/editor/input/prompt/AcEdPromptPointOptions.js.map +1 -1
- package/lib/editor/input/ui/AcEdDesktopSessionAccessoryChrome.d.ts +33 -0
- package/lib/editor/input/ui/AcEdDesktopSessionAccessoryChrome.d.ts.map +1 -0
- package/lib/editor/input/ui/AcEdDesktopSessionAccessoryChrome.js +85 -0
- package/lib/editor/input/ui/AcEdDesktopSessionAccessoryChrome.js.map +1 -0
- package/lib/editor/input/ui/AcEdEntityPickCancelChrome.d.ts +57 -0
- package/lib/editor/input/ui/AcEdEntityPickCancelChrome.d.ts.map +1 -0
- package/lib/editor/input/ui/AcEdEntityPickCancelChrome.js +104 -0
- package/lib/editor/input/ui/AcEdEntityPickCancelChrome.js.map +1 -0
- package/lib/editor/input/ui/AcEdFloatingInput.d.ts +144 -0
- package/lib/editor/input/ui/AcEdFloatingInput.d.ts.map +1 -1
- package/lib/editor/input/ui/AcEdFloatingInput.js +412 -13
- package/lib/editor/input/ui/AcEdFloatingInput.js.map +1 -1
- package/lib/editor/input/ui/AcEdFloatingInputTypes.d.ts +2 -1
- package/lib/editor/input/ui/AcEdFloatingInputTypes.d.ts.map +1 -1
- package/lib/editor/input/ui/AcEdFloatingMessage.d.ts.map +1 -1
- package/lib/editor/input/ui/AcEdFloatingMessage.js +2 -2
- package/lib/editor/input/ui/AcEdFloatingMessage.js.map +1 -1
- package/lib/editor/input/ui/AcEdInputManager.d.ts +100 -7
- package/lib/editor/input/ui/AcEdInputManager.d.ts.map +1 -1
- package/lib/editor/input/ui/AcEdInputManager.js +805 -164
- package/lib/editor/input/ui/AcEdInputManager.js.map +1 -1
- package/lib/editor/input/ui/AcEdInteractionStrategy.d.ts +94 -0
- package/lib/editor/input/ui/AcEdInteractionStrategy.d.ts.map +1 -0
- package/lib/editor/input/ui/AcEdInteractionStrategy.js +60 -0
- package/lib/editor/input/ui/AcEdInteractionStrategy.js.map +1 -0
- package/lib/editor/input/ui/AcEdMobileBoxGesture.d.ts +52 -0
- package/lib/editor/input/ui/AcEdMobileBoxGesture.d.ts.map +1 -0
- package/lib/editor/input/ui/AcEdMobileBoxGesture.js +201 -0
- package/lib/editor/input/ui/AcEdMobileBoxGesture.js.map +1 -0
- package/lib/editor/input/ui/AcEdMobileCommandChrome.d.ts +89 -0
- package/lib/editor/input/ui/AcEdMobileCommandChrome.d.ts.map +1 -0
- package/lib/editor/input/ui/AcEdMobileCommandChrome.js +143 -0
- package/lib/editor/input/ui/AcEdMobileCommandChrome.js.map +1 -0
- package/lib/editor/input/ui/AcEdMobileSessionMetrics.d.ts +29 -0
- package/lib/editor/input/ui/AcEdMobileSessionMetrics.d.ts.map +1 -0
- package/lib/editor/input/ui/AcEdMobileSessionMetrics.js +37 -0
- package/lib/editor/input/ui/AcEdMobileSessionMetrics.js.map +1 -0
- package/lib/editor/input/ui/AcEdMobileSnapLoupe.d.ts +45 -0
- package/lib/editor/input/ui/AcEdMobileSnapLoupe.d.ts.map +1 -0
- package/lib/editor/input/ui/AcEdMobileSnapLoupe.js +63 -0
- package/lib/editor/input/ui/AcEdMobileSnapLoupe.js.map +1 -0
- package/lib/editor/input/ui/AcEdSessionAccessoryController.d.ts +113 -0
- package/lib/editor/input/ui/AcEdSessionAccessoryController.d.ts.map +1 -0
- package/lib/editor/input/ui/AcEdSessionAccessoryController.js +295 -0
- package/lib/editor/input/ui/AcEdSessionAccessoryController.js.map +1 -0
- package/lib/editor/input/ui/AcEdSimulatedMouseCursor.d.ts +28 -0
- package/lib/editor/input/ui/AcEdSimulatedMouseCursor.d.ts.map +1 -0
- package/lib/editor/input/ui/AcEdSimulatedMouseCursor.js +86 -0
- package/lib/editor/input/ui/AcEdSimulatedMouseCursor.js.map +1 -0
- package/lib/editor/input/ui/AcEdSnapLoupe.d.ts +60 -0
- package/lib/editor/input/ui/AcEdSnapLoupe.d.ts.map +1 -0
- package/lib/editor/input/ui/AcEdSnapLoupe.js +109 -0
- package/lib/editor/input/ui/AcEdSnapLoupe.js.map +1 -0
- package/lib/editor/input/ui/AcEdSnapLoupeMath.d.ts +47 -0
- package/lib/editor/input/ui/AcEdSnapLoupeMath.d.ts.map +1 -0
- package/lib/editor/input/ui/AcEdSnapLoupeMath.js +50 -0
- package/lib/editor/input/ui/AcEdSnapLoupeMath.js.map +1 -0
- package/lib/editor/input/ui/AcEdTouchPickStrategy.d.ts +97 -0
- package/lib/editor/input/ui/AcEdTouchPickStrategy.d.ts.map +1 -0
- package/lib/editor/input/ui/AcEdTouchPickStrategy.js +74 -0
- package/lib/editor/input/ui/AcEdTouchPickStrategy.js.map +1 -0
- package/lib/editor/input/ui/AcEdTouchPointSession.d.ts +198 -0
- package/lib/editor/input/ui/AcEdTouchPointSession.d.ts.map +1 -0
- package/lib/editor/input/ui/AcEdTouchPointSession.js +329 -0
- package/lib/editor/input/ui/AcEdTouchPointSession.js.map +1 -0
- package/lib/editor/input/ui/AcEdTouchPointTiming.d.ts +18 -0
- package/lib/editor/input/ui/AcEdTouchPointTiming.d.ts.map +1 -0
- package/lib/editor/input/ui/AcEdTouchPointTiming.js +18 -0
- package/lib/editor/input/ui/AcEdTouchPointTiming.js.map +1 -0
- package/lib/editor/input/ui/index.d.ts +13 -0
- package/lib/editor/input/ui/index.d.ts.map +1 -1
- package/lib/editor/input/ui/index.js +13 -0
- package/lib/editor/input/ui/index.js.map +1 -1
- package/lib/editor/view/AcEdBaseView.d.ts +144 -39
- package/lib/editor/view/AcEdBaseView.d.ts.map +1 -1
- package/lib/editor/view/AcEdBaseView.js +210 -41
- package/lib/editor/view/AcEdBaseView.js.map +1 -1
- package/lib/editor/view/AcEdViewMode.d.ts +34 -0
- package/lib/editor/view/AcEdViewMode.d.ts.map +1 -0
- package/lib/editor/view/AcEdViewMode.js +35 -0
- package/lib/editor/view/AcEdViewMode.js.map +1 -0
- package/lib/editor/view/index.d.ts +1 -0
- package/lib/editor/view/index.d.ts.map +1 -1
- package/lib/editor/view/index.js +1 -0
- package/lib/editor/view/index.js.map +1 -1
- package/lib/i18n/AcApI18n.d.ts +1 -1
- package/lib/i18n/AcApI18n.d.ts.map +1 -1
- package/lib/i18n/AcApI18n.js +3 -2
- package/lib/i18n/AcApI18n.js.map +1 -1
- package/lib/i18n/ar/command.d.ts +465 -0
- package/lib/i18n/ar/command.d.ts.map +1 -0
- package/lib/i18n/ar/command.js +14 -0
- package/lib/i18n/ar/command.js.map +1 -0
- package/lib/i18n/ar/jig.d.ts +1251 -0
- package/lib/i18n/ar/jig.d.ts.map +1 -0
- package/lib/i18n/ar/jig.js +606 -0
- package/lib/i18n/ar/jig.js.map +1 -0
- package/lib/i18n/ar/main.d.ts +133 -0
- package/lib/i18n/ar/main.d.ts.map +1 -0
- package/lib/i18n/ar/main.js +132 -0
- package/lib/i18n/ar/main.js.map +1 -0
- package/lib/i18n/cs/command.d.ts +9 -0
- package/lib/i18n/cs/command.d.ts.map +1 -1
- package/lib/i18n/cs/command.js +9 -0
- package/lib/i18n/cs/command.js.map +1 -1
- package/lib/i18n/cs/jig.d.ts +20 -0
- package/lib/i18n/cs/jig.d.ts.map +1 -1
- package/lib/i18n/cs/jig.js +21 -1
- package/lib/i18n/cs/jig.js.map +1 -1
- package/lib/i18n/cs/main.d.ts +70 -1
- package/lib/i18n/cs/main.d.ts.map +1 -1
- package/lib/i18n/cs/main.js +71 -2
- package/lib/i18n/cs/main.js.map +1 -1
- package/lib/i18n/en/command.d.ts +12 -0
- package/lib/i18n/en/command.d.ts.map +1 -1
- package/lib/i18n/en/command.js +12 -0
- package/lib/i18n/en/command.js.map +1 -1
- package/lib/i18n/en/jig.d.ts +20 -0
- package/lib/i18n/en/jig.d.ts.map +1 -1
- package/lib/i18n/en/jig.js +21 -1
- package/lib/i18n/en/jig.js.map +1 -1
- package/lib/i18n/en/main.d.ts +70 -1
- package/lib/i18n/en/main.d.ts.map +1 -1
- package/lib/i18n/en/main.js +71 -2
- package/lib/i18n/en/main.js.map +1 -1
- package/lib/i18n/index.d.ts.map +1 -1
- package/lib/i18n/index.js +8 -0
- package/lib/i18n/index.js.map +1 -1
- package/lib/i18n/tr/command.d.ts +9 -0
- package/lib/i18n/tr/command.d.ts.map +1 -1
- package/lib/i18n/tr/command.js +9 -0
- package/lib/i18n/tr/command.js.map +1 -1
- package/lib/i18n/tr/jig.d.ts +20 -0
- package/lib/i18n/tr/jig.d.ts.map +1 -1
- package/lib/i18n/tr/jig.js +21 -1
- package/lib/i18n/tr/jig.js.map +1 -1
- package/lib/i18n/tr/main.d.ts +70 -1
- package/lib/i18n/tr/main.d.ts.map +1 -1
- package/lib/i18n/tr/main.js +71 -2
- package/lib/i18n/tr/main.js.map +1 -1
- package/lib/i18n/zh/command.d.ts +12 -0
- package/lib/i18n/zh/command.d.ts.map +1 -1
- package/lib/i18n/zh/command.js +12 -0
- package/lib/i18n/zh/command.js.map +1 -1
- package/lib/i18n/zh/jig.d.ts +20 -0
- package/lib/i18n/zh/jig.d.ts.map +1 -1
- package/lib/i18n/zh/jig.js +21 -1
- package/lib/i18n/zh/jig.js.map +1 -1
- package/lib/i18n/zh/main.d.ts +70 -1
- package/lib/i18n/zh/main.d.ts.map +1 -1
- package/lib/i18n/zh/main.js +72 -3
- package/lib/i18n/zh/main.js.map +1 -1
- package/lib/plugin/AcApPluginManager.d.ts +10 -0
- package/lib/plugin/AcApPluginManager.d.ts.map +1 -1
- package/lib/plugin/AcApPluginManager.js +18 -0
- package/lib/plugin/AcApPluginManager.js.map +1 -1
- package/lib/spatialIndex/AcTrRBushSpatialIndex.d.ts.map +1 -1
- package/lib/spatialIndex/AcTrRBushSpatialIndex.js +11 -4
- package/lib/spatialIndex/AcTrRBushSpatialIndex.js.map +1 -1
- package/lib/ui/AcUiAciColorDialog.d.ts +57 -0
- package/lib/ui/AcUiAciColorDialog.d.ts.map +1 -0
- package/lib/ui/AcUiAciColorDialog.js +91 -0
- package/lib/ui/AcUiAciColorDialog.js.map +1 -0
- package/lib/ui/AcUiAciPaletteUi.d.ts +118 -0
- package/lib/ui/AcUiAciPaletteUi.d.ts.map +1 -0
- package/lib/ui/AcUiAciPaletteUi.js +521 -0
- package/lib/ui/AcUiAciPaletteUi.js.map +1 -0
- package/lib/ui/AcUiDialog.d.ts +38 -2
- package/lib/ui/AcUiDialog.d.ts.map +1 -1
- package/lib/ui/AcUiDialog.js +45 -16
- package/lib/ui/AcUiDialog.js.map +1 -1
- package/lib/ui/AcUiDrawStyle.d.ts +59 -0
- package/lib/ui/AcUiDrawStyle.d.ts.map +1 -0
- package/lib/ui/AcUiDrawStyle.js +94 -0
- package/lib/ui/AcUiDrawStyle.js.map +1 -0
- package/lib/ui/AcUiDrawStyleSessionAccessory.d.ts +108 -0
- package/lib/ui/AcUiDrawStyleSessionAccessory.d.ts.map +1 -0
- package/lib/ui/AcUiDrawStyleSessionAccessory.js +455 -0
- package/lib/ui/AcUiDrawStyleSessionAccessory.js.map +1 -0
- package/lib/ui/AcUiFullscreenPanel.d.ts +89 -0
- package/lib/ui/AcUiFullscreenPanel.d.ts.map +1 -0
- package/lib/ui/AcUiFullscreenPanel.js +224 -0
- package/lib/ui/AcUiFullscreenPanel.js.map +1 -0
- package/lib/ui/AcUiHelpPanel.d.ts +49 -0
- package/lib/ui/AcUiHelpPanel.d.ts.map +1 -0
- package/lib/ui/AcUiHelpPanel.js +124 -0
- package/lib/ui/AcUiHelpPanel.js.map +1 -0
- package/lib/ui/AcUiMobileSessionPanel.d.ts +174 -0
- package/lib/ui/AcUiMobileSessionPanel.d.ts.map +1 -0
- package/lib/ui/AcUiMobileSessionPanel.js +557 -0
- package/lib/ui/AcUiMobileSessionPanel.js.map +1 -0
- package/lib/ui/AcUiShortCutToolbar.d.ts +136 -0
- package/lib/ui/AcUiShortCutToolbar.d.ts.map +1 -0
- package/lib/ui/AcUiShortCutToolbar.js +250 -0
- package/lib/ui/AcUiShortCutToolbar.js.map +1 -0
- package/lib/ui/AcUiSimpleToolbar.d.ts +110 -0
- package/lib/ui/AcUiSimpleToolbar.d.ts.map +1 -0
- package/lib/ui/AcUiSimpleToolbar.js +431 -0
- package/lib/ui/AcUiSimpleToolbar.js.map +1 -0
- package/lib/ui/AcUiTextHeightDialog.d.ts +85 -0
- package/lib/ui/AcUiTextHeightDialog.d.ts.map +1 -0
- package/lib/ui/AcUiTextHeightDialog.js +205 -0
- package/lib/ui/AcUiTextHeightDialog.js.map +1 -0
- package/lib/ui/AcUiTextHeightDialogHelpers.d.ts +54 -0
- package/lib/ui/AcUiTextHeightDialogHelpers.d.ts.map +1 -0
- package/lib/ui/AcUiTextHeightDialogHelpers.js +128 -0
- package/lib/ui/AcUiTextHeightDialogHelpers.js.map +1 -0
- package/lib/ui/AcUiTouchPointTutorialDialog.d.ts +18 -0
- package/lib/ui/AcUiTouchPointTutorialDialog.d.ts.map +1 -0
- package/lib/ui/AcUiTouchPointTutorialDialog.js +58 -0
- package/lib/ui/AcUiTouchPointTutorialDialog.js.map +1 -0
- package/lib/ui/icons.d.ts +175 -0
- package/lib/ui/icons.d.ts.map +1 -0
- package/lib/ui/icons.js +227 -0
- package/lib/ui/icons.js.map +1 -0
- package/lib/ui/index.d.ts +14 -2
- package/lib/ui/index.d.ts.map +1 -1
- package/lib/ui/index.js +14 -2
- package/lib/ui/index.js.map +1 -1
- package/lib/ui/touch-point-tutorial.d.ts +64 -0
- package/lib/ui/touch-point-tutorial.d.ts.map +1 -0
- package/lib/ui/touch-point-tutorial.js +271 -0
- package/lib/ui/touch-point-tutorial.js.map +1 -0
- package/lib/ui-html-entry.d.ts +31 -0
- package/lib/ui-html-entry.d.ts.map +1 -0
- package/lib/ui-html-entry.js +23 -0
- package/lib/ui-html-entry.js.map +1 -0
- package/lib/util/AcApAciPalette.d.ts +7 -0
- package/lib/util/AcApAciPalette.d.ts.map +1 -0
- package/lib/util/AcApAciPalette.js +51 -0
- package/lib/util/AcApAciPalette.js.map +1 -0
- package/lib/util/AcApCommandUtil.d.ts +15 -0
- package/lib/util/AcApCommandUtil.d.ts.map +1 -0
- package/lib/util/AcApCommandUtil.js +38 -0
- package/lib/util/AcApCommandUtil.js.map +1 -0
- package/lib/util/AcApCssColor.d.ts +10 -0
- package/lib/util/AcApCssColor.d.ts.map +1 -1
- package/lib/util/AcApCssColor.js +52 -0
- package/lib/util/AcApCssColor.js.map +1 -1
- package/lib/util/AcApMeasurementUnits.d.ts +13 -1
- package/lib/util/AcApMeasurementUnits.d.ts.map +1 -1
- package/lib/util/AcApMeasurementUnits.js +144 -10
- package/lib/util/AcApMeasurementUnits.js.map +1 -1
- package/lib/util/AcApMeasurementUtil.d.ts +30 -9
- package/lib/util/AcApMeasurementUtil.d.ts.map +1 -1
- package/lib/util/AcApMeasurementUtil.js +70 -40
- package/lib/util/AcApMeasurementUtil.js.map +1 -1
- package/lib/util/AcApOpenFileErrorMessage.d.ts +25 -0
- package/lib/util/AcApOpenFileErrorMessage.d.ts.map +1 -0
- package/lib/util/AcApOpenFileErrorMessage.js +121 -0
- package/lib/util/AcApOpenFileErrorMessage.js.map +1 -0
- package/lib/util/index.d.ts +3 -0
- package/lib/util/index.d.ts.map +1 -1
- package/lib/util/index.js +3 -0
- package/lib/util/index.js.map +1 -1
- package/lib/view/AcApCompareDisplay.d.ts +37 -0
- package/lib/view/AcApCompareDisplay.d.ts.map +1 -0
- package/lib/view/AcApCompareDisplay.js +8 -0
- package/lib/view/AcApCompareDisplay.js.map +1 -0
- package/lib/view/AcApReadingMode.d.ts +52 -0
- package/lib/view/AcApReadingMode.d.ts.map +1 -0
- package/lib/view/AcApReadingMode.js +81 -0
- package/lib/view/AcApReadingMode.js.map +1 -0
- package/lib/view/AcEdReviewOverlayPick.d.ts +9 -0
- package/lib/view/AcEdReviewOverlayPick.d.ts.map +1 -1
- package/lib/view/AcEdReviewOverlayPick.js +30 -1
- package/lib/view/AcEdReviewOverlayPick.js.map +1 -1
- package/lib/view/AcEdViewKeyHandler.d.ts.map +1 -1
- package/lib/view/AcEdViewKeyHandler.js +6 -1
- package/lib/view/AcEdViewKeyHandler.js.map +1 -1
- package/lib/view/AcTrInheritedLayerMaterialMapper.d.ts +6 -1
- package/lib/view/AcTrInheritedLayerMaterialMapper.d.ts.map +1 -1
- package/lib/view/AcTrInheritedLayerMaterialMapper.js +9 -1
- package/lib/view/AcTrInheritedLayerMaterialMapper.js.map +1 -1
- package/lib/view/AcTrLayer.d.ts +6 -0
- package/lib/view/AcTrLayer.d.ts.map +1 -1
- package/lib/view/AcTrLayer.js +8 -0
- package/lib/view/AcTrLayer.js.map +1 -1
- package/lib/view/AcTrLayout.d.ts +12 -0
- package/lib/view/AcTrLayout.d.ts.map +1 -1
- package/lib/view/AcTrLayout.js +35 -12
- package/lib/view/AcTrLayout.js.map +1 -1
- package/lib/view/AcTrLayoutView.d.ts +25 -1
- package/lib/view/AcTrLayoutView.d.ts.map +1 -1
- package/lib/view/AcTrLayoutView.js +62 -1
- package/lib/view/AcTrLayoutView.js.map +1 -1
- package/lib/view/AcTrScene.d.ts +7 -0
- package/lib/view/AcTrScene.d.ts.map +1 -1
- package/lib/view/AcTrScene.js +13 -0
- package/lib/view/AcTrScene.js.map +1 -1
- package/lib/view/AcTrView2d.d.ts +79 -2
- package/lib/view/AcTrView2d.d.ts.map +1 -1
- package/lib/view/AcTrView2d.js +407 -57
- package/lib/view/AcTrView2d.js.map +1 -1
- package/lib/view/AcTrViewSessionState.d.ts +32 -0
- package/lib/view/AcTrViewSessionState.d.ts.map +1 -0
- package/lib/view/AcTrViewSessionState.js +2 -0
- package/lib/view/AcTrViewSessionState.js.map +1 -0
- package/lib/view/index.d.ts +3 -0
- package/lib/view/index.d.ts.map +1 -1
- package/lib/view/index.js +3 -0
- package/lib/view/index.js.map +1 -1
- package/package.json +15 -8
- package/src/ui/icons.ts +387 -0
- package/lib/app/AcDbOpenDatabaseOptions.d.ts.map +0 -1
- package/lib/app/AcDbOpenDatabaseOptions.js.map +0 -1
- package/lib/ui/AcApDrawStyle.d.ts +0 -81
- package/lib/ui/AcApDrawStyle.d.ts.map +0 -1
- package/lib/ui/AcApDrawStyle.js +0 -170
- package/lib/ui/AcApDrawStyle.js.map +0 -1
- package/lib/ui/AcApDrawStyleToolbar.d.ts +0 -129
- package/lib/ui/AcApDrawStyleToolbar.d.ts.map +0 -1
- package/lib/ui/AcApDrawStyleToolbar.js +0 -607
- package/lib/ui/AcApDrawStyleToolbar.js.map +0 -1
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { AcCmEventManager, AcDbDatabase, AcDbOpenDatabaseOptions } from '@mlightcad/data-model';
|
|
2
2
|
import { AcEdCommand, AcEdCommandStack, AcEdOpenMode } from '../editor';
|
|
3
3
|
import { AcApPluginManager } from '../plugin/AcApPluginManager';
|
|
4
|
-
import { AcApDrawStyleToolbar } from '../ui/AcApDrawStyleToolbar';
|
|
5
4
|
import { AcTrView2d } from '../view';
|
|
5
|
+
import type { AcApCompareDisplayOptions } from '../view/AcApCompareDisplay';
|
|
6
6
|
import type { AcTrLayout } from '../view/AcTrLayout';
|
|
7
7
|
import { AcApContext } from './AcApContext';
|
|
8
|
+
import { AcApDocSession } from './AcApDocSession';
|
|
8
9
|
import { AcApDocument } from './AcApDocument';
|
|
10
|
+
import { AcApOpenDatabaseOptions } from './AcApOpenDatabaseOptions';
|
|
9
11
|
import { type AcApOpenDocumentDefaultsResolver } from './AcApOpenFileDialog';
|
|
10
|
-
import { AcApOpenDatabaseOptions } from './AcDbOpenDatabaseOptions';
|
|
11
12
|
/**
|
|
12
13
|
* Event arguments for document-related events.
|
|
13
14
|
*/
|
|
@@ -144,6 +145,19 @@ export interface AcApDocManagerOptions {
|
|
|
144
145
|
continueOnError?: boolean;
|
|
145
146
|
};
|
|
146
147
|
};
|
|
148
|
+
/**
|
|
149
|
+
* Absolute root URL for localized user-guide pages (trailing slash optional).
|
|
150
|
+
* Used by {@link acapDocsUrl} for in-app help links (e.g. mobile magnifier).
|
|
151
|
+
* Defaults to {@link ACAP_DEFAULT_DOCS_BASE_URL} when omitted.
|
|
152
|
+
*
|
|
153
|
+
* @example
|
|
154
|
+
* ```typescript
|
|
155
|
+
* AcApDocManager.createInstance({
|
|
156
|
+
* docsBaseUrl: 'https://example.com/my-product/docs/'
|
|
157
|
+
* })
|
|
158
|
+
* ```
|
|
159
|
+
*/
|
|
160
|
+
docsBaseUrl?: string;
|
|
147
161
|
/**
|
|
148
162
|
* Optional command alias overrides.
|
|
149
163
|
*
|
|
@@ -164,6 +178,15 @@ export interface AcApDocManagerOptions {
|
|
|
164
178
|
* Defaults to true.
|
|
165
179
|
*/
|
|
166
180
|
builtinOpenFileDialog?: boolean;
|
|
181
|
+
/**
|
|
182
|
+
* When true, drawing export commands are not registered (`cdxf`, `pngout`,
|
|
183
|
+
* and host UI / lazy plugins for HTML, PDF, SVG export). Defaults to false
|
|
184
|
+
* (export remains enabled).
|
|
185
|
+
*
|
|
186
|
+
* Useful for deployments that must hide export entry points. This is a
|
|
187
|
+
* product/UX gate, not a DRM boundary: drawing data still exists in memory.
|
|
188
|
+
*/
|
|
189
|
+
disableExport?: boolean;
|
|
167
190
|
/**
|
|
168
191
|
* Default options for files opened through the built-in OPEN command dialog.
|
|
169
192
|
*
|
|
@@ -184,12 +207,27 @@ export interface AcApDocManagerOptions {
|
|
|
184
207
|
* The manager follows a singleton pattern to ensure only one instance manages the application state.
|
|
185
208
|
*/
|
|
186
209
|
export declare class AcApDocManager {
|
|
187
|
-
/**
|
|
188
|
-
private
|
|
210
|
+
/** Open document sessions (MDI). The shared view shows {@link _activeSession}. */
|
|
211
|
+
private _sessions;
|
|
212
|
+
/** Session currently bound to the shared view and working database. */
|
|
213
|
+
private _activeSession;
|
|
214
|
+
/** View created at construct time (left pane in split layout). */
|
|
215
|
+
private _mainView;
|
|
216
|
+
/**
|
|
217
|
+
* Optional second canvas for split comparison. Each document keeps its
|
|
218
|
+
* scene on its own renderer — scenes are never moved between views.
|
|
219
|
+
*/
|
|
220
|
+
private _splitView?;
|
|
221
|
+
/** Session whose canvas currently owns the open-file overlay. */
|
|
222
|
+
private _openingSession?;
|
|
223
|
+
/** Monotonic id suffix for {@link AcApDocSession.id}. */
|
|
224
|
+
private _nextSessionId;
|
|
189
225
|
/** Font loader for managing CAD text fonts */
|
|
190
226
|
private _fontLoader;
|
|
191
227
|
/** Base URL to get fonts, templates, and example files */
|
|
192
228
|
private _baseUrl;
|
|
229
|
+
/** Host element for the busy overlay (e.g. HTML export spinner). */
|
|
230
|
+
private _busyIndicatorHost;
|
|
193
231
|
/** Busy overlay for long-running command operations */
|
|
194
232
|
private _busyIndicator;
|
|
195
233
|
/** Open-file progress overlay and event normalization */
|
|
@@ -200,8 +238,6 @@ export declare class AcApDocManager {
|
|
|
200
238
|
private _commandManager;
|
|
201
239
|
/** Plugin manager */
|
|
202
240
|
private _pluginManager;
|
|
203
|
-
/** Overlay for measurement / markup draw color, lineweight, and font size */
|
|
204
|
-
private readonly _drawStyleToolbar;
|
|
205
241
|
/**
|
|
206
242
|
* Alias overrides provided by caller options.
|
|
207
243
|
*
|
|
@@ -215,6 +251,8 @@ export declare class AcApDocManager {
|
|
|
215
251
|
private _commandAliasOverrides;
|
|
216
252
|
/** Default options for the built-in OPEN file dialog */
|
|
217
253
|
private _openDocumentDefaults?;
|
|
254
|
+
/** Whether drawing export commands and related UI entry points are disabled */
|
|
255
|
+
private _disableExport;
|
|
218
256
|
/** Singleton instance */
|
|
219
257
|
private static _instance?;
|
|
220
258
|
/** Worker URLs configured at initialization */
|
|
@@ -223,8 +261,6 @@ export declare class AcApDocManager {
|
|
|
223
261
|
private _workersReady;
|
|
224
262
|
/** In-flight worker readiness check */
|
|
225
263
|
private _workersReadyCheckPromise?;
|
|
226
|
-
/** Loaded overlay (reference/base drawing) state, keyed by overlay id */
|
|
227
|
-
private _overlays;
|
|
228
264
|
/** Monotonically increasing counter used to generate overlay ids */
|
|
229
265
|
private _nextOverlayId;
|
|
230
266
|
/** Events fired during document lifecycle */
|
|
@@ -235,6 +271,12 @@ export declare class AcApDocManager {
|
|
|
235
271
|
documentCreated: AcCmEventManager<AcDbDocumentEventArgs>;
|
|
236
272
|
/** Fired when a document becomes active */
|
|
237
273
|
documentActivated: AcCmEventManager<AcDbDocumentEventArgs>;
|
|
274
|
+
/** Fired before a document is activated */
|
|
275
|
+
documentToBeActivated: AcCmEventManager<AcDbDocumentEventArgs>;
|
|
276
|
+
/** Fired before a document is closed and destroyed */
|
|
277
|
+
documentToBeDestroyed: AcCmEventManager<AcDbDocumentEventArgs>;
|
|
278
|
+
/** Fired after a document has been closed */
|
|
279
|
+
documentDestroyed: AcCmEventManager<AcDbDocumentEventArgs>;
|
|
238
280
|
/** Fired when a worker readiness check completes */
|
|
239
281
|
workersReady: AcCmEventManager<{
|
|
240
282
|
ready: boolean;
|
|
@@ -272,6 +314,11 @@ export declare class AcApDocManager {
|
|
|
272
314
|
* @returns The singleton document manager instance
|
|
273
315
|
*/
|
|
274
316
|
static get instance(): AcApDocManager;
|
|
317
|
+
/**
|
|
318
|
+
* Returns the singleton when {@link createInstance} has finished, otherwise
|
|
319
|
+
* `undefined`. Safe to call while the constructor is still running.
|
|
320
|
+
*/
|
|
321
|
+
static tryGetInstance(): AcApDocManager | undefined;
|
|
275
322
|
/**
|
|
276
323
|
* Destroy the view and unload all plugins
|
|
277
324
|
*/
|
|
@@ -297,21 +344,96 @@ export declare class AcApDocManager {
|
|
|
297
344
|
* @returns The current application context
|
|
298
345
|
*/
|
|
299
346
|
get context(): AcApContext;
|
|
347
|
+
/**
|
|
348
|
+
* Open document sessions in tab order.
|
|
349
|
+
*/
|
|
350
|
+
get documents(): AcApDocument[];
|
|
351
|
+
/**
|
|
352
|
+
* Number of open documents.
|
|
353
|
+
*/
|
|
354
|
+
get documentCount(): number;
|
|
355
|
+
/**
|
|
356
|
+
* Session id of the active document, for host UI tabs.
|
|
357
|
+
*/
|
|
358
|
+
get activeSessionId(): string;
|
|
359
|
+
/**
|
|
360
|
+
* Returns the document at `index`, or undefined when out of range.
|
|
361
|
+
*
|
|
362
|
+
* @param index - Zero-based tab order.
|
|
363
|
+
*/
|
|
364
|
+
document(index: number): AcApDocument | undefined;
|
|
365
|
+
/**
|
|
366
|
+
* Finds the session that owns `doc`.
|
|
367
|
+
*
|
|
368
|
+
* @param doc - Document to look up.
|
|
369
|
+
*/
|
|
370
|
+
sessionFor(doc: AcApDocument): AcApDocSession | undefined;
|
|
300
371
|
/**
|
|
301
372
|
* Gets the currently open CAD document.
|
|
302
373
|
*
|
|
374
|
+
* Same as {@link mdiActiveDocument} — the document bound to the shared view.
|
|
375
|
+
*
|
|
303
376
|
* @returns The current document instance
|
|
304
377
|
*/
|
|
305
378
|
get curDocument(): AcApDocument;
|
|
306
379
|
/**
|
|
307
380
|
* Gets the currently active document.
|
|
308
381
|
*
|
|
309
|
-
* For now, this is the same as `curDocument` since only one document
|
|
310
|
-
* can be active at a time.
|
|
311
|
-
*
|
|
312
382
|
* @returns The current active document
|
|
313
383
|
*/
|
|
314
384
|
get mdiActiveDocument(): AcApDocument;
|
|
385
|
+
/**
|
|
386
|
+
* Makes `doc` the command target.
|
|
387
|
+
*
|
|
388
|
+
* When both documents already have their own canvas (split view), scenes
|
|
389
|
+
* stay in place. When they share one canvas (tab MDI), the current scene is
|
|
390
|
+
* parked and the target is restored.
|
|
391
|
+
*
|
|
392
|
+
* @param doc - Document to activate.
|
|
393
|
+
* @returns `false` when `doc` is not an open session.
|
|
394
|
+
*/
|
|
395
|
+
activateDocument(doc: AcApDocument): Promise<boolean>;
|
|
396
|
+
/**
|
|
397
|
+
* Canvas created with {@link createInstance} (left pane in a split layout).
|
|
398
|
+
*/
|
|
399
|
+
get mainView(): AcTrView2d;
|
|
400
|
+
/**
|
|
401
|
+
* Second canvas created by {@link ensureSplitView}, if any.
|
|
402
|
+
*/
|
|
403
|
+
get splitView(): AcTrView2d | undefined;
|
|
404
|
+
/**
|
|
405
|
+
* Creates a second WebGL view in `container` for side-by-side comparison.
|
|
406
|
+
*
|
|
407
|
+
* Each document is converted into one view and stays there. Use
|
|
408
|
+
* {@link openDocument}'s `view` argument to open a file into this canvas,
|
|
409
|
+
* and {@link activateDocument} to choose which side receives commands.
|
|
410
|
+
*
|
|
411
|
+
* @param container - Host element for the second canvas.
|
|
412
|
+
*/
|
|
413
|
+
ensureSplitView(container: HTMLElement): AcTrView2d;
|
|
414
|
+
/**
|
|
415
|
+
* @deprecated Use {@link ensureSplitView} and open each file into its own view.
|
|
416
|
+
*
|
|
417
|
+
* @param container - Host element for the second canvas.
|
|
418
|
+
*/
|
|
419
|
+
attachSatelliteView(container: HTMLElement, _doc?: AcApDocument): boolean;
|
|
420
|
+
/**
|
|
421
|
+
* @deprecated Split canvases keep rendering; there is nothing to detach.
|
|
422
|
+
*/
|
|
423
|
+
detachSatelliteView(): void;
|
|
424
|
+
/**
|
|
425
|
+
* Document currently shown on the split canvas, if a session is bound to it.
|
|
426
|
+
*/
|
|
427
|
+
get satelliteDocument(): AcApDocument | undefined;
|
|
428
|
+
/**
|
|
429
|
+
* Closes `doc`, or the active document when omitted.
|
|
430
|
+
*
|
|
431
|
+
* Closing the last document replaces it with a new untitled drawing.
|
|
432
|
+
*
|
|
433
|
+
* @param doc - Document to close; defaults to {@link curDocument}.
|
|
434
|
+
* @returns `false` when `doc` is not an open session.
|
|
435
|
+
*/
|
|
436
|
+
closeDocument(doc?: AcApDocument): Promise<boolean>;
|
|
315
437
|
/**
|
|
316
438
|
* Gets the current 2D view used to display the drawing.
|
|
317
439
|
*
|
|
@@ -337,14 +459,18 @@ export declare class AcApDocManager {
|
|
|
337
459
|
*/
|
|
338
460
|
get pluginManager(): AcApPluginManager;
|
|
339
461
|
/**
|
|
340
|
-
*
|
|
341
|
-
* drawing command is active.
|
|
462
|
+
* Color / font-size session accessory for measurement and markup drawing.
|
|
342
463
|
*/
|
|
343
|
-
get
|
|
464
|
+
get drawStyleSessionAccessory(): import("..").AcUiDrawStyleSessionAccessory | undefined;
|
|
344
465
|
/**
|
|
345
466
|
* Base URL to load fonts
|
|
346
467
|
*/
|
|
347
468
|
get baseUrl(): string;
|
|
469
|
+
/**
|
|
470
|
+
* Whether drawing export commands (and host export UI) are disabled.
|
|
471
|
+
* Set via {@link AcApDocManagerOptions.disableExport}; defaults to false.
|
|
472
|
+
*/
|
|
473
|
+
get disableExport(): boolean;
|
|
348
474
|
/**
|
|
349
475
|
* Resolves colors for creating new entities.
|
|
350
476
|
*
|
|
@@ -371,10 +497,18 @@ export declare class AcApDocManager {
|
|
|
371
497
|
* Gets the list of available fonts that can be loaded.
|
|
372
498
|
*
|
|
373
499
|
* Note: These fonts are available for loading but may not be loaded yet.
|
|
500
|
+
* Prefer {@link getAvaiableFonts} when the catalog may not have been fetched yet
|
|
501
|
+
* (lazy font loading no longer preloads metadata at viewer init).
|
|
374
502
|
*
|
|
375
503
|
* @returns Array of available font names
|
|
376
504
|
*/
|
|
377
505
|
get avaiableFonts(): import("@mlightcad/mtext-renderer").FontInfo[];
|
|
506
|
+
/**
|
|
507
|
+
* Fetches font repository metadata (`fonts.json`) if not already cached.
|
|
508
|
+
* Emits `failed-to-get-avaiable-fonts` and returns `[]` when the catalog cannot
|
|
509
|
+
* be retrieved.
|
|
510
|
+
*/
|
|
511
|
+
getAvaiableFonts(): Promise<import("@mlightcad/mtext-renderer").FontInfo[]>;
|
|
378
512
|
/**
|
|
379
513
|
* Loads the specified fonts for text rendering.
|
|
380
514
|
*
|
|
@@ -392,7 +526,7 @@ export declare class AcApDocManager {
|
|
|
392
526
|
*
|
|
393
527
|
* This method loads either the specified fonts or the configured default font
|
|
394
528
|
* fallback chains ({@link DEFAULT_FONTS_PRESET}, currently `modern`: text
|
|
395
|
-
* `
|
|
529
|
+
* `simsun` → `hztxt`, symbol `amgdt`) if no fonts are provided. The loaded
|
|
396
530
|
* fonts are used for rendering CAD text entities like MText and Text in the viewer.
|
|
397
531
|
*
|
|
398
532
|
* It is better to load default fonts when viewer is initialized so that the viewer can
|
|
@@ -421,8 +555,9 @@ export declare class AcApDocManager {
|
|
|
421
555
|
/**
|
|
422
556
|
* Opens a CAD document from a URL.
|
|
423
557
|
*
|
|
424
|
-
* This method loads a document from the specified URL
|
|
425
|
-
*
|
|
558
|
+
* This method loads a document from the specified URL. When the current
|
|
559
|
+
* drawing is a reusable Untitled, it is replaced; otherwise a new document
|
|
560
|
+
* session is created and activated.
|
|
426
561
|
*
|
|
427
562
|
* @param url - The URL of the CAD file to open
|
|
428
563
|
* @param options - Optional database opening options. If not provided, default options with font loader will be used
|
|
@@ -440,13 +575,14 @@ export declare class AcApDocManager {
|
|
|
440
575
|
/**
|
|
441
576
|
* Opens a CAD document from file content.
|
|
442
577
|
*
|
|
443
|
-
* This method loads a document from the provided file content (binary data)
|
|
444
|
-
*
|
|
445
|
-
*
|
|
578
|
+
* This method loads a document from the provided file content (binary data).
|
|
579
|
+
* When the current drawing is a reusable Untitled, it is replaced; otherwise
|
|
580
|
+
* a new document session is created and activated.
|
|
446
581
|
*
|
|
447
582
|
* @param fileName - The name of the file being opened (used for format detection)
|
|
448
583
|
* @param content - The file content
|
|
449
584
|
* @param options - Database opening options including font loader settings
|
|
585
|
+
* @param view - Optional canvas to convert into (split view). Defaults to the active view.
|
|
450
586
|
* @returns Promise that resolves to true if the document was successfully opened, false otherwise
|
|
451
587
|
*
|
|
452
588
|
* @example
|
|
@@ -455,7 +591,7 @@ export declare class AcApDocManager {
|
|
|
455
591
|
* const success = await docManager.openDocument('drawing.dwg', fileContent, options);
|
|
456
592
|
* ```
|
|
457
593
|
*/
|
|
458
|
-
openDocument(fileName: string, content: ArrayBuffer, options: AcApOpenDatabaseOptions): Promise<boolean>;
|
|
594
|
+
openDocument(fileName: string, content: ArrayBuffer, options: AcApOpenDatabaseOptions, view?: AcTrView2d): Promise<boolean>;
|
|
459
595
|
/**
|
|
460
596
|
* Loads a DWG/DXF file as a read-only overlay (base drawing/reference)
|
|
461
597
|
* rendered alongside the currently open document in the same WCS
|
|
@@ -482,14 +618,22 @@ export declare class AcApDocManager {
|
|
|
482
618
|
* docManager.removeOverlay(overlayId); // or remove it entirely
|
|
483
619
|
* ```
|
|
484
620
|
*/
|
|
485
|
-
loadOverlay(fileName: string, content: ArrayBuffer, options?: AcDbOpenDatabaseOptions
|
|
621
|
+
loadOverlay(fileName: string, content: ArrayBuffer, options?: AcDbOpenDatabaseOptions & {
|
|
622
|
+
targetView?: AcTrView2d;
|
|
623
|
+
}): Promise<string>;
|
|
486
624
|
/**
|
|
487
625
|
* Registers an already-parsed read-only database as an overlay.
|
|
488
626
|
*
|
|
489
627
|
* Prefer this when the caller already loaded the secondary database (e.g.
|
|
490
628
|
* XATTACH extents preview) to avoid reading the same file twice.
|
|
629
|
+
*
|
|
630
|
+
* @param db - Secondary database to draw into the target view.
|
|
631
|
+
* @param options.targetView - Canvas that receives the overlay (defaults to
|
|
632
|
+
* the active view). Used by side-by-side → overlay compare without moving scenes.
|
|
491
633
|
*/
|
|
492
|
-
registerOverlayDatabase(db: AcDbDatabase
|
|
634
|
+
registerOverlayDatabase(db: AcDbDatabase, options?: {
|
|
635
|
+
targetView?: AcTrView2d;
|
|
636
|
+
}): Promise<string>;
|
|
493
637
|
/**
|
|
494
638
|
* Removes a previously loaded overlay and disposes its rendered geometry.
|
|
495
639
|
*
|
|
@@ -507,12 +651,60 @@ export declare class AcApDocManager {
|
|
|
507
651
|
setOverlayVisible(overlayId: string, visible: boolean): boolean;
|
|
508
652
|
/**
|
|
509
653
|
* Removes all loaded overlays and disposes their geometry.
|
|
654
|
+
*
|
|
655
|
+
* @param view - When set, only overlays on sessions bound to this canvas are cleared.
|
|
510
656
|
*/
|
|
511
|
-
clearOverlays(): void;
|
|
657
|
+
clearOverlays(view?: AcTrView2d): void;
|
|
512
658
|
/**
|
|
513
|
-
* Ids of all currently loaded overlays.
|
|
659
|
+
* Ids of all currently loaded overlays on the active session (or a view).
|
|
660
|
+
*
|
|
661
|
+
* @param view - Optional canvas whose session overlays are listed.
|
|
514
662
|
*/
|
|
663
|
+
getOverlayIds(view?: AcTrView2d): string[];
|
|
664
|
+
/** @deprecated Prefer {@link getOverlayIds}. */
|
|
515
665
|
get overlayIds(): string[];
|
|
666
|
+
/**
|
|
667
|
+
* Enables compare-display mode on a view (default: current view).
|
|
668
|
+
* Does not automatically color overlay layouts — use
|
|
669
|
+
* {@link setOverlayCompareDisplay} for those.
|
|
670
|
+
*
|
|
671
|
+
* @param options - Compare colors and per-entity role overrides.
|
|
672
|
+
* @param view - Target canvas; defaults to {@link curView}.
|
|
673
|
+
*/
|
|
674
|
+
setCompareDisplay(options: AcApCompareDisplayOptions, view?: AcTrView2d): void;
|
|
675
|
+
/**
|
|
676
|
+
* Whether transient reading mode is active on a view (default: current view).
|
|
677
|
+
*
|
|
678
|
+
* @param view - Target canvas; defaults to {@link curView}.
|
|
679
|
+
*/
|
|
680
|
+
isReadingModeEnabled(view?: AcTrView2d): boolean;
|
|
681
|
+
/**
|
|
682
|
+
* Enables or disables transient reading mode on a view (default: current view).
|
|
683
|
+
*
|
|
684
|
+
* Reading mode forces black linework on a white canvas without modifying the
|
|
685
|
+
* drawing database. It shares the compare-display colour path, so it is
|
|
686
|
+
* mutually exclusive with active compare display on that view.
|
|
687
|
+
*
|
|
688
|
+
* @param enabled - When true, enables reading mode; when false, restores the
|
|
689
|
+
* previous canvas background and entity colours.
|
|
690
|
+
* @param view - Target canvas; defaults to {@link curView}.
|
|
691
|
+
*/
|
|
692
|
+
setReadingMode(enabled: boolean, view?: AcTrView2d): void;
|
|
693
|
+
/**
|
|
694
|
+
* Toggles transient reading mode on a view (default: current view).
|
|
695
|
+
*
|
|
696
|
+
* @param view - Target canvas; defaults to {@link curView}.
|
|
697
|
+
*/
|
|
698
|
+
toggleReadingMode(view?: AcTrView2d): void;
|
|
699
|
+
/**
|
|
700
|
+
* Applies compare-display coloring to one overlay layout.
|
|
701
|
+
*
|
|
702
|
+
* @param overlayId - Id returned by {@link loadOverlay} / {@link registerOverlayDatabase}.
|
|
703
|
+
* @param options - Compare colors and per-entity role overrides.
|
|
704
|
+
* @param view - Canvas that owns the overlay; omitted to search all sessions.
|
|
705
|
+
* @returns `true` when the overlay id was found.
|
|
706
|
+
*/
|
|
707
|
+
setOverlayCompareDisplay(overlayId: string, options: AcApCompareDisplayOptions, view?: AcTrView2d): boolean;
|
|
516
708
|
/**
|
|
517
709
|
* Returns the rendered layout for a loaded overlay, if any.
|
|
518
710
|
*
|
|
@@ -523,8 +715,8 @@ export declare class AcApDocManager {
|
|
|
523
715
|
/**
|
|
524
716
|
* Creates a new CAD document from the default ISO drawing template.
|
|
525
717
|
*
|
|
526
|
-
*
|
|
527
|
-
*
|
|
718
|
+
* Loads `acadiso.dxf` into a new document session (or reuses the current
|
|
719
|
+
* unused Untitled). The new drawing is presented as unsaved.
|
|
528
720
|
*
|
|
529
721
|
* @param options - Optional database opening options merged with write mode
|
|
530
722
|
* @returns Promise that resolves to true if the document was successfully created
|
|
@@ -597,8 +789,8 @@ export declare class AcApDocManager {
|
|
|
597
789
|
* Registers all default commands available in the CAD viewer.
|
|
598
790
|
*
|
|
599
791
|
* This method sets up the command system by registering built-in commands including:
|
|
600
|
-
* - cdxf: Convert to DXF
|
|
601
|
-
* - pngout: Export to PNG
|
|
792
|
+
* - cdxf: Convert to DXF (when {@link AcApDocManagerOptions.disableExport} is false)
|
|
793
|
+
* - pngout: Export to PNG (when {@link AcApDocManagerOptions.disableExport} is false)
|
|
602
794
|
* - log: Output debug information in console
|
|
603
795
|
* - open: Open document
|
|
604
796
|
* - qnew: Quick new document
|
|
@@ -707,7 +899,7 @@ export declare class AcApDocManager {
|
|
|
707
899
|
* Sets up the active layout block table record ID and model space block table
|
|
708
900
|
* record ID based on the current document's space configuration.
|
|
709
901
|
*/
|
|
710
|
-
setActiveLayout(): void;
|
|
902
|
+
setActiveLayout(view?: AcTrView2d, database?: AcDbDatabase): void;
|
|
711
903
|
/**
|
|
712
904
|
* Performs cleanup operations before opening a new document.
|
|
713
905
|
*
|
|
@@ -716,7 +908,7 @@ export declare class AcApDocManager {
|
|
|
716
908
|
*
|
|
717
909
|
* @protected
|
|
718
910
|
*/
|
|
719
|
-
protected onBeforeOpenDocument(options?: AcApOpenDatabaseOptions): void;
|
|
911
|
+
protected onBeforeOpenDocument(options?: AcApOpenDatabaseOptions, replaceCurrent?: boolean): void;
|
|
720
912
|
/**
|
|
721
913
|
* Performs setup operations after a document opening attempt.
|
|
722
914
|
*
|
|
@@ -794,6 +986,33 @@ export declare class AcApDocManager {
|
|
|
794
986
|
* visible until the outermost matching {@link hideBusyIndicator} runs.
|
|
795
987
|
*/
|
|
796
988
|
showBusyIndicator(message?: string): void;
|
|
989
|
+
/**
|
|
990
|
+
* Moves busy/open-file overlays onto `host`.
|
|
991
|
+
*
|
|
992
|
+
* In split view the host is overridden to the canvas being opened or focused.
|
|
993
|
+
*
|
|
994
|
+
* @param host - Default overlay parent when not in split view.
|
|
995
|
+
*/
|
|
996
|
+
setBusyIndicatorHost(host: HTMLElement): void;
|
|
997
|
+
/**
|
|
998
|
+
* Pins progress overlays to the canvas being opened, or the active canvas
|
|
999
|
+
* when a split view exists.
|
|
1000
|
+
*/
|
|
1001
|
+
private get openProgressView();
|
|
1002
|
+
/**
|
|
1003
|
+
* Pins the open-file overlay to the session that is currently reading a file.
|
|
1004
|
+
*/
|
|
1005
|
+
private beginOpenProgress;
|
|
1006
|
+
/**
|
|
1007
|
+
* Releases the open-file overlay pin after the spinner hides.
|
|
1008
|
+
*/
|
|
1009
|
+
private onOpenProgressHidden;
|
|
1010
|
+
/**
|
|
1011
|
+
* Pins progress overlays to the canvas being opened when a split view exists.
|
|
1012
|
+
*
|
|
1013
|
+
* @param view - Canvas whose container receives the overlay.
|
|
1014
|
+
*/
|
|
1015
|
+
private syncProgressOverlayHost;
|
|
797
1016
|
/**
|
|
798
1017
|
* Hides the spinner overlay shown by {@link showBusyIndicator}.
|
|
799
1018
|
*
|
|
@@ -833,5 +1052,48 @@ export declare class AcApDocManager {
|
|
|
833
1052
|
* @private
|
|
834
1053
|
*/
|
|
835
1054
|
private loadPlugins;
|
|
1055
|
+
/**
|
|
1056
|
+
* Forwards database open-progress events to the overlay and header sysvars.
|
|
1057
|
+
*
|
|
1058
|
+
* @param doc - Document whose `openProgress` events should drive the overlay.
|
|
1059
|
+
*/
|
|
1060
|
+
private bindOpenProgress;
|
|
1061
|
+
/**
|
|
1062
|
+
* Parks the live view onto the active session so another document can take the canvas.
|
|
1063
|
+
*/
|
|
1064
|
+
private parkActiveSession;
|
|
1065
|
+
/**
|
|
1066
|
+
* Reuses an Untitled on `targetView` when it has no file identity and no
|
|
1067
|
+
* entities; otherwise creates a new session on that view.
|
|
1068
|
+
*
|
|
1069
|
+
* When `targetView` is a different canvas (split comparison), the current
|
|
1070
|
+
* view keeps rendering — GPU scenes are never moved between renderers.
|
|
1071
|
+
*
|
|
1072
|
+
* @param targetView - Canvas that will receive the open; defaults to {@link curView}.
|
|
1073
|
+
* @returns True when a new session was created.
|
|
1074
|
+
*/
|
|
1075
|
+
private ensureOpenSession;
|
|
1076
|
+
/**
|
|
1077
|
+
* Drops a session created for an open that failed before activation completed.
|
|
1078
|
+
*/
|
|
1079
|
+
private closeFailedOpenSession;
|
|
1080
|
+
/**
|
|
1081
|
+
* Replaces the last remaining session with a fresh Untitled drawing.
|
|
1082
|
+
*
|
|
1083
|
+
* @param session - The only remaining session to recycle.
|
|
1084
|
+
*/
|
|
1085
|
+
private resetActiveSessionToUntitled;
|
|
1086
|
+
/**
|
|
1087
|
+
* Removes overlay layouts belonging to a session being closed.
|
|
1088
|
+
*
|
|
1089
|
+
* @param session - Session whose overlays should be disposed.
|
|
1090
|
+
*/
|
|
1091
|
+
private clearSessionOverlays;
|
|
1092
|
+
/**
|
|
1093
|
+
* Scene that currently owns `session`'s overlay layouts.
|
|
1094
|
+
* Parked sessions keep overlays on {@link AcApDocSession.viewState}; live
|
|
1095
|
+
* split-view sessions keep them on their own canvas, not {@link curView}.
|
|
1096
|
+
*/
|
|
1097
|
+
private sessionCadScene;
|
|
836
1098
|
}
|
|
837
1099
|
//# sourceMappingURL=AcApDocManager.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AcApDocManager.d.ts","sourceRoot":"","sources":["../../src/app/AcApDocManager.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,gBAAgB,EAChB,YAAY,EAGZ,uBAAuB,EAIxB,MAAM,uBAAuB,CAAA;
|
|
1
|
+
{"version":3,"file":"AcApDocManager.d.ts","sourceRoot":"","sources":["../../src/app/AcApDocManager.ts"],"names":[],"mappings":"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"}
|