@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
|
@@ -0,0 +1,1251 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
arc: {
|
|
3
|
+
startPointOrCenter: string;
|
|
4
|
+
secondPointOrOptions: string;
|
|
5
|
+
secondPoint: string;
|
|
6
|
+
startPoint: string;
|
|
7
|
+
centerPoint: string;
|
|
8
|
+
endPoint: string;
|
|
9
|
+
endPointOrOptions: string;
|
|
10
|
+
centerPointOrOptions: string;
|
|
11
|
+
includedAngle: string;
|
|
12
|
+
chordLength: string;
|
|
13
|
+
tangentDirection: string;
|
|
14
|
+
radius: string;
|
|
15
|
+
invalid: {
|
|
16
|
+
threePoint: string;
|
|
17
|
+
center: string;
|
|
18
|
+
angle: string;
|
|
19
|
+
chordLength: string;
|
|
20
|
+
direction: string;
|
|
21
|
+
radius: string;
|
|
22
|
+
};
|
|
23
|
+
keywords: {
|
|
24
|
+
center: {
|
|
25
|
+
display: string;
|
|
26
|
+
local: string;
|
|
27
|
+
global: string;
|
|
28
|
+
};
|
|
29
|
+
end: {
|
|
30
|
+
display: string;
|
|
31
|
+
local: string;
|
|
32
|
+
global: string;
|
|
33
|
+
};
|
|
34
|
+
angle: {
|
|
35
|
+
display: string;
|
|
36
|
+
local: string;
|
|
37
|
+
global: string;
|
|
38
|
+
};
|
|
39
|
+
chordLength: {
|
|
40
|
+
display: string;
|
|
41
|
+
local: string;
|
|
42
|
+
global: string;
|
|
43
|
+
};
|
|
44
|
+
direction: {
|
|
45
|
+
display: string;
|
|
46
|
+
local: string;
|
|
47
|
+
global: string;
|
|
48
|
+
};
|
|
49
|
+
radius: {
|
|
50
|
+
display: string;
|
|
51
|
+
local: string;
|
|
52
|
+
global: string;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
circle: {
|
|
57
|
+
center: string;
|
|
58
|
+
centerOrOptions: string;
|
|
59
|
+
radius: string;
|
|
60
|
+
radiusOrDiameter: string;
|
|
61
|
+
diameter: string;
|
|
62
|
+
twoPointFirst: string;
|
|
63
|
+
twoPointSecond: string;
|
|
64
|
+
threePointFirst: string;
|
|
65
|
+
threePointSecond: string;
|
|
66
|
+
threePointThird: string;
|
|
67
|
+
keywords: {
|
|
68
|
+
threeP: {
|
|
69
|
+
display: string;
|
|
70
|
+
local: string;
|
|
71
|
+
global: string;
|
|
72
|
+
};
|
|
73
|
+
twoP: {
|
|
74
|
+
display: string;
|
|
75
|
+
local: string;
|
|
76
|
+
global: string;
|
|
77
|
+
};
|
|
78
|
+
diameter: {
|
|
79
|
+
display: string;
|
|
80
|
+
local: string;
|
|
81
|
+
global: string;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
copy: {
|
|
86
|
+
basePointOrOptions: string;
|
|
87
|
+
displacementOrArray: string;
|
|
88
|
+
secondPointOrArray: string;
|
|
89
|
+
modePrompt: string;
|
|
90
|
+
arrayItemCount: string;
|
|
91
|
+
arraySecondPointOrFit: string;
|
|
92
|
+
arrayFitSecondPoint: string;
|
|
93
|
+
keywords: {
|
|
94
|
+
displacement: {
|
|
95
|
+
display: string;
|
|
96
|
+
local: string;
|
|
97
|
+
global: string;
|
|
98
|
+
};
|
|
99
|
+
mode: {
|
|
100
|
+
display: string;
|
|
101
|
+
local: string;
|
|
102
|
+
global: string;
|
|
103
|
+
};
|
|
104
|
+
multiple: {
|
|
105
|
+
display: string;
|
|
106
|
+
local: string;
|
|
107
|
+
global: string;
|
|
108
|
+
};
|
|
109
|
+
single: {
|
|
110
|
+
display: string;
|
|
111
|
+
local: string;
|
|
112
|
+
global: string;
|
|
113
|
+
};
|
|
114
|
+
array: {
|
|
115
|
+
display: string;
|
|
116
|
+
local: string;
|
|
117
|
+
global: string;
|
|
118
|
+
};
|
|
119
|
+
fit: {
|
|
120
|
+
display: string;
|
|
121
|
+
local: string;
|
|
122
|
+
global: string;
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
dimlinear: {
|
|
127
|
+
xLine1Point: string;
|
|
128
|
+
xLine2Point: string;
|
|
129
|
+
dimLinePoint: string;
|
|
130
|
+
};
|
|
131
|
+
ellipse: {
|
|
132
|
+
axisEndpointOrOptions: string;
|
|
133
|
+
arcAxisEndpointOrCenter: string;
|
|
134
|
+
center: string;
|
|
135
|
+
firstAxisEndpoint: string;
|
|
136
|
+
secondAxisEndpoint: string;
|
|
137
|
+
otherAxisOrRotation: string;
|
|
138
|
+
rotationAngle: string;
|
|
139
|
+
arcStartAngle: string;
|
|
140
|
+
arcEndAngle: string;
|
|
141
|
+
invalid: {
|
|
142
|
+
axis: string;
|
|
143
|
+
otherAxis: string;
|
|
144
|
+
rotation: string;
|
|
145
|
+
};
|
|
146
|
+
keywords: {
|
|
147
|
+
arc: {
|
|
148
|
+
display: string;
|
|
149
|
+
local: string;
|
|
150
|
+
global: string;
|
|
151
|
+
};
|
|
152
|
+
center: {
|
|
153
|
+
display: string;
|
|
154
|
+
local: string;
|
|
155
|
+
global: string;
|
|
156
|
+
};
|
|
157
|
+
rotation: {
|
|
158
|
+
display: string;
|
|
159
|
+
local: string;
|
|
160
|
+
global: string;
|
|
161
|
+
};
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
hatch: {
|
|
165
|
+
prompt: string;
|
|
166
|
+
pickPoint: string;
|
|
167
|
+
select: string;
|
|
168
|
+
patternName: string;
|
|
169
|
+
scale: string;
|
|
170
|
+
angle: string;
|
|
171
|
+
style: string;
|
|
172
|
+
associative: string;
|
|
173
|
+
invalidBoundary: string;
|
|
174
|
+
keywords: {
|
|
175
|
+
pick: {
|
|
176
|
+
display: string;
|
|
177
|
+
local: string;
|
|
178
|
+
global: string;
|
|
179
|
+
};
|
|
180
|
+
select: {
|
|
181
|
+
display: string;
|
|
182
|
+
local: string;
|
|
183
|
+
global: string;
|
|
184
|
+
};
|
|
185
|
+
cancel: {
|
|
186
|
+
display: string;
|
|
187
|
+
local: string;
|
|
188
|
+
global: string;
|
|
189
|
+
};
|
|
190
|
+
pattern: {
|
|
191
|
+
display: string;
|
|
192
|
+
local: string;
|
|
193
|
+
global: string;
|
|
194
|
+
};
|
|
195
|
+
scale: {
|
|
196
|
+
display: string;
|
|
197
|
+
local: string;
|
|
198
|
+
global: string;
|
|
199
|
+
};
|
|
200
|
+
angle: {
|
|
201
|
+
display: string;
|
|
202
|
+
local: string;
|
|
203
|
+
global: string;
|
|
204
|
+
};
|
|
205
|
+
style: {
|
|
206
|
+
display: string;
|
|
207
|
+
local: string;
|
|
208
|
+
global: string;
|
|
209
|
+
};
|
|
210
|
+
associative: {
|
|
211
|
+
display: string;
|
|
212
|
+
local: string;
|
|
213
|
+
global: string;
|
|
214
|
+
};
|
|
215
|
+
normal: {
|
|
216
|
+
display: string;
|
|
217
|
+
local: string;
|
|
218
|
+
global: string;
|
|
219
|
+
};
|
|
220
|
+
outer: {
|
|
221
|
+
display: string;
|
|
222
|
+
local: string;
|
|
223
|
+
global: string;
|
|
224
|
+
};
|
|
225
|
+
ignore: {
|
|
226
|
+
display: string;
|
|
227
|
+
local: string;
|
|
228
|
+
global: string;
|
|
229
|
+
};
|
|
230
|
+
yes: {
|
|
231
|
+
display: string;
|
|
232
|
+
local: string;
|
|
233
|
+
global: string;
|
|
234
|
+
};
|
|
235
|
+
no: {
|
|
236
|
+
display: string;
|
|
237
|
+
local: string;
|
|
238
|
+
global: string;
|
|
239
|
+
};
|
|
240
|
+
};
|
|
241
|
+
};
|
|
242
|
+
line: {
|
|
243
|
+
firstPoint: string;
|
|
244
|
+
firstPointOrContinue: string;
|
|
245
|
+
nextPoint: string;
|
|
246
|
+
nextPointWithOptions: string;
|
|
247
|
+
keywords: {
|
|
248
|
+
continue: {
|
|
249
|
+
display: string;
|
|
250
|
+
local: string;
|
|
251
|
+
global: string;
|
|
252
|
+
};
|
|
253
|
+
undo: {
|
|
254
|
+
display: string;
|
|
255
|
+
local: string;
|
|
256
|
+
global: string;
|
|
257
|
+
};
|
|
258
|
+
close: {
|
|
259
|
+
display: string;
|
|
260
|
+
local: string;
|
|
261
|
+
global: string;
|
|
262
|
+
};
|
|
263
|
+
};
|
|
264
|
+
};
|
|
265
|
+
xline: {
|
|
266
|
+
firstPointOrOptions: string;
|
|
267
|
+
secondPoint: string;
|
|
268
|
+
throughPoint: string;
|
|
269
|
+
angle: string;
|
|
270
|
+
invalidDirection: string;
|
|
271
|
+
keywords: {
|
|
272
|
+
hor: {
|
|
273
|
+
display: string;
|
|
274
|
+
local: string;
|
|
275
|
+
global: string;
|
|
276
|
+
};
|
|
277
|
+
ver: {
|
|
278
|
+
display: string;
|
|
279
|
+
local: string;
|
|
280
|
+
global: string;
|
|
281
|
+
};
|
|
282
|
+
ang: {
|
|
283
|
+
display: string;
|
|
284
|
+
local: string;
|
|
285
|
+
global: string;
|
|
286
|
+
};
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
ray: {
|
|
290
|
+
startPoint: string;
|
|
291
|
+
throughPoint: string;
|
|
292
|
+
};
|
|
293
|
+
move: {
|
|
294
|
+
basePointOrDisplacement: string;
|
|
295
|
+
secondPointOrDisplacement: string;
|
|
296
|
+
displacement: string;
|
|
297
|
+
keywords: {
|
|
298
|
+
displacement: {
|
|
299
|
+
display: string;
|
|
300
|
+
local: string;
|
|
301
|
+
global: string;
|
|
302
|
+
};
|
|
303
|
+
};
|
|
304
|
+
};
|
|
305
|
+
offset: {
|
|
306
|
+
distance: string;
|
|
307
|
+
selectObject: string;
|
|
308
|
+
sidePoint: string;
|
|
309
|
+
invalidDistance: string;
|
|
310
|
+
invalidSelection: string;
|
|
311
|
+
offsetFailed: string;
|
|
312
|
+
};
|
|
313
|
+
mtext: {
|
|
314
|
+
point: string;
|
|
315
|
+
};
|
|
316
|
+
point: {
|
|
317
|
+
point: string;
|
|
318
|
+
};
|
|
319
|
+
polygon: {
|
|
320
|
+
numberOfSides: string;
|
|
321
|
+
centerOrEdge: string;
|
|
322
|
+
radiusOrType: string;
|
|
323
|
+
edgeStart: string;
|
|
324
|
+
edgeEnd: string;
|
|
325
|
+
invalid: {
|
|
326
|
+
sides: string;
|
|
327
|
+
radius: string;
|
|
328
|
+
edge: string;
|
|
329
|
+
};
|
|
330
|
+
keywords: {
|
|
331
|
+
edge: {
|
|
332
|
+
display: string;
|
|
333
|
+
local: string;
|
|
334
|
+
global: string;
|
|
335
|
+
};
|
|
336
|
+
inscribed: {
|
|
337
|
+
display: string;
|
|
338
|
+
local: string;
|
|
339
|
+
global: string;
|
|
340
|
+
};
|
|
341
|
+
circumscribed: {
|
|
342
|
+
display: string;
|
|
343
|
+
local: string;
|
|
344
|
+
global: string;
|
|
345
|
+
};
|
|
346
|
+
};
|
|
347
|
+
};
|
|
348
|
+
polyline: {
|
|
349
|
+
firstPoint: string;
|
|
350
|
+
nextPoint: string;
|
|
351
|
+
nextPointWithOptions: string;
|
|
352
|
+
nextPointWithArcOptions: string;
|
|
353
|
+
arcAngle: string;
|
|
354
|
+
arcCenter: string;
|
|
355
|
+
arcSecondPoint: string;
|
|
356
|
+
arcEndPoint: string;
|
|
357
|
+
arcRadius: string;
|
|
358
|
+
keywords: {
|
|
359
|
+
arc: {
|
|
360
|
+
display: string;
|
|
361
|
+
local: string;
|
|
362
|
+
global: string;
|
|
363
|
+
};
|
|
364
|
+
undo: {
|
|
365
|
+
display: string;
|
|
366
|
+
local: string;
|
|
367
|
+
global: string;
|
|
368
|
+
};
|
|
369
|
+
close: {
|
|
370
|
+
display: string;
|
|
371
|
+
local: string;
|
|
372
|
+
global: string;
|
|
373
|
+
};
|
|
374
|
+
line: {
|
|
375
|
+
display: string;
|
|
376
|
+
local: string;
|
|
377
|
+
global: string;
|
|
378
|
+
};
|
|
379
|
+
angle: {
|
|
380
|
+
display: string;
|
|
381
|
+
local: string;
|
|
382
|
+
global: string;
|
|
383
|
+
};
|
|
384
|
+
center: {
|
|
385
|
+
display: string;
|
|
386
|
+
local: string;
|
|
387
|
+
global: string;
|
|
388
|
+
};
|
|
389
|
+
secondPoint: {
|
|
390
|
+
display: string;
|
|
391
|
+
local: string;
|
|
392
|
+
global: string;
|
|
393
|
+
};
|
|
394
|
+
radius: {
|
|
395
|
+
display: string;
|
|
396
|
+
local: string;
|
|
397
|
+
global: string;
|
|
398
|
+
};
|
|
399
|
+
};
|
|
400
|
+
};
|
|
401
|
+
rect: {
|
|
402
|
+
firstPoint: string;
|
|
403
|
+
nextPoint: string;
|
|
404
|
+
firstPointWithOptions: string;
|
|
405
|
+
otherCornerWithOptions: string;
|
|
406
|
+
chamferFirst: string;
|
|
407
|
+
chamferSecond: string;
|
|
408
|
+
filletRadius: string;
|
|
409
|
+
segmentWidth: string;
|
|
410
|
+
elevationValue: string;
|
|
411
|
+
thicknessValue: string;
|
|
412
|
+
rotationAngle: string;
|
|
413
|
+
dimensionLength: string;
|
|
414
|
+
dimensionWidth: string;
|
|
415
|
+
areaValue: string;
|
|
416
|
+
areaLengthOrWidth: string;
|
|
417
|
+
areaSpecifyWidth: string;
|
|
418
|
+
invalidPositive: string;
|
|
419
|
+
invalidRect: string;
|
|
420
|
+
thicknessNotSupported: string;
|
|
421
|
+
keywords: {
|
|
422
|
+
chamfer: {
|
|
423
|
+
display: string;
|
|
424
|
+
local: string;
|
|
425
|
+
global: string;
|
|
426
|
+
};
|
|
427
|
+
elevation: {
|
|
428
|
+
display: string;
|
|
429
|
+
local: string;
|
|
430
|
+
global: string;
|
|
431
|
+
};
|
|
432
|
+
fillet: {
|
|
433
|
+
display: string;
|
|
434
|
+
local: string;
|
|
435
|
+
global: string;
|
|
436
|
+
};
|
|
437
|
+
thickness: {
|
|
438
|
+
display: string;
|
|
439
|
+
local: string;
|
|
440
|
+
global: string;
|
|
441
|
+
};
|
|
442
|
+
width: {
|
|
443
|
+
display: string;
|
|
444
|
+
local: string;
|
|
445
|
+
global: string;
|
|
446
|
+
};
|
|
447
|
+
area: {
|
|
448
|
+
display: string;
|
|
449
|
+
local: string;
|
|
450
|
+
global: string;
|
|
451
|
+
};
|
|
452
|
+
dimensions: {
|
|
453
|
+
display: string;
|
|
454
|
+
local: string;
|
|
455
|
+
global: string;
|
|
456
|
+
};
|
|
457
|
+
rotation: {
|
|
458
|
+
display: string;
|
|
459
|
+
local: string;
|
|
460
|
+
global: string;
|
|
461
|
+
};
|
|
462
|
+
length: {
|
|
463
|
+
display: string;
|
|
464
|
+
local: string;
|
|
465
|
+
global: string;
|
|
466
|
+
};
|
|
467
|
+
rectWidth: {
|
|
468
|
+
display: string;
|
|
469
|
+
local: string;
|
|
470
|
+
global: string;
|
|
471
|
+
};
|
|
472
|
+
};
|
|
473
|
+
};
|
|
474
|
+
rotate: {
|
|
475
|
+
basePoint: string;
|
|
476
|
+
rotationAngleOrOptions: string;
|
|
477
|
+
referenceAngleOrPoints: string;
|
|
478
|
+
firstReferencePoint: string;
|
|
479
|
+
secondReferencePoint: string;
|
|
480
|
+
newAngle: string;
|
|
481
|
+
invalid: {
|
|
482
|
+
referencePoints: string;
|
|
483
|
+
};
|
|
484
|
+
keywords: {
|
|
485
|
+
copy: {
|
|
486
|
+
display: string;
|
|
487
|
+
local: string;
|
|
488
|
+
global: string;
|
|
489
|
+
};
|
|
490
|
+
reference: {
|
|
491
|
+
display: string;
|
|
492
|
+
local: string;
|
|
493
|
+
global: string;
|
|
494
|
+
};
|
|
495
|
+
points: {
|
|
496
|
+
display: string;
|
|
497
|
+
local: string;
|
|
498
|
+
global: string;
|
|
499
|
+
};
|
|
500
|
+
};
|
|
501
|
+
};
|
|
502
|
+
spline: {
|
|
503
|
+
firstPoint: string;
|
|
504
|
+
nextPoint: string;
|
|
505
|
+
firstPointWithOptions: string;
|
|
506
|
+
nextPointWithFitOptions: string;
|
|
507
|
+
nextPointWithCvOptions: string;
|
|
508
|
+
methodPrompt: string;
|
|
509
|
+
knotsPrompt: string;
|
|
510
|
+
degreePrompt: string;
|
|
511
|
+
keywords: {
|
|
512
|
+
method: {
|
|
513
|
+
display: string;
|
|
514
|
+
local: string;
|
|
515
|
+
global: string;
|
|
516
|
+
};
|
|
517
|
+
fit: {
|
|
518
|
+
display: string;
|
|
519
|
+
local: string;
|
|
520
|
+
global: string;
|
|
521
|
+
};
|
|
522
|
+
cv: {
|
|
523
|
+
display: string;
|
|
524
|
+
local: string;
|
|
525
|
+
global: string;
|
|
526
|
+
};
|
|
527
|
+
knots: {
|
|
528
|
+
display: string;
|
|
529
|
+
local: string;
|
|
530
|
+
global: string;
|
|
531
|
+
};
|
|
532
|
+
degree: {
|
|
533
|
+
display: string;
|
|
534
|
+
local: string;
|
|
535
|
+
global: string;
|
|
536
|
+
};
|
|
537
|
+
undo: {
|
|
538
|
+
display: string;
|
|
539
|
+
local: string;
|
|
540
|
+
global: string;
|
|
541
|
+
};
|
|
542
|
+
close: {
|
|
543
|
+
display: string;
|
|
544
|
+
local: string;
|
|
545
|
+
global: string;
|
|
546
|
+
};
|
|
547
|
+
chord: {
|
|
548
|
+
display: string;
|
|
549
|
+
local: string;
|
|
550
|
+
global: string;
|
|
551
|
+
};
|
|
552
|
+
sqrtChord: {
|
|
553
|
+
display: string;
|
|
554
|
+
local: string;
|
|
555
|
+
global: string;
|
|
556
|
+
};
|
|
557
|
+
uniform: {
|
|
558
|
+
display: string;
|
|
559
|
+
local: string;
|
|
560
|
+
global: string;
|
|
561
|
+
};
|
|
562
|
+
};
|
|
563
|
+
};
|
|
564
|
+
zoom: {
|
|
565
|
+
mainPrompt: string;
|
|
566
|
+
firstCorner: string;
|
|
567
|
+
secondCorner: string;
|
|
568
|
+
centerPoint: string;
|
|
569
|
+
heightOrScale: string;
|
|
570
|
+
scaleFactor: string;
|
|
571
|
+
keywords: {
|
|
572
|
+
all: {
|
|
573
|
+
display: string;
|
|
574
|
+
local: string;
|
|
575
|
+
global: string;
|
|
576
|
+
};
|
|
577
|
+
center: {
|
|
578
|
+
display: string;
|
|
579
|
+
local: string;
|
|
580
|
+
global: string;
|
|
581
|
+
};
|
|
582
|
+
extents: {
|
|
583
|
+
display: string;
|
|
584
|
+
local: string;
|
|
585
|
+
global: string;
|
|
586
|
+
};
|
|
587
|
+
previous: {
|
|
588
|
+
display: string;
|
|
589
|
+
local: string;
|
|
590
|
+
global: string;
|
|
591
|
+
};
|
|
592
|
+
original: {
|
|
593
|
+
display: string;
|
|
594
|
+
local: string;
|
|
595
|
+
global: string;
|
|
596
|
+
};
|
|
597
|
+
scale: {
|
|
598
|
+
display: string;
|
|
599
|
+
local: string;
|
|
600
|
+
global: string;
|
|
601
|
+
};
|
|
602
|
+
window: {
|
|
603
|
+
display: string;
|
|
604
|
+
local: string;
|
|
605
|
+
global: string;
|
|
606
|
+
};
|
|
607
|
+
};
|
|
608
|
+
};
|
|
609
|
+
hideobjects: {
|
|
610
|
+
hidden: string;
|
|
611
|
+
restored: string;
|
|
612
|
+
nothingToRestore: string;
|
|
613
|
+
};
|
|
614
|
+
entout: {
|
|
615
|
+
longSidePrompt: string;
|
|
616
|
+
exported: string;
|
|
617
|
+
skipped: string;
|
|
618
|
+
failed: {
|
|
619
|
+
'no-preview-root': string;
|
|
620
|
+
'no-bounds': string;
|
|
621
|
+
'capture-failed': string;
|
|
622
|
+
'download-failed': string;
|
|
623
|
+
};
|
|
624
|
+
};
|
|
625
|
+
layer: {
|
|
626
|
+
main: string;
|
|
627
|
+
listSummary: string;
|
|
628
|
+
emptyInput: string;
|
|
629
|
+
newPrompt: string;
|
|
630
|
+
makePrompt: string;
|
|
631
|
+
setPrompt: string;
|
|
632
|
+
onPrompt: string;
|
|
633
|
+
offPrompt: string;
|
|
634
|
+
freezePrompt: string;
|
|
635
|
+
thawPrompt: string;
|
|
636
|
+
lockPrompt: string;
|
|
637
|
+
unlockPrompt: string;
|
|
638
|
+
colorLayerPrompt: string;
|
|
639
|
+
colorValuePrompt: string;
|
|
640
|
+
invalidColor: string;
|
|
641
|
+
descriptionLayerPrompt: string;
|
|
642
|
+
descriptionValuePrompt: string;
|
|
643
|
+
created: string;
|
|
644
|
+
alreadyExists: string;
|
|
645
|
+
notFound: string;
|
|
646
|
+
cannotChangeCurrent: string;
|
|
647
|
+
keywords: {
|
|
648
|
+
list: {
|
|
649
|
+
display: string;
|
|
650
|
+
local: string;
|
|
651
|
+
global: string;
|
|
652
|
+
};
|
|
653
|
+
make: {
|
|
654
|
+
display: string;
|
|
655
|
+
local: string;
|
|
656
|
+
global: string;
|
|
657
|
+
};
|
|
658
|
+
set: {
|
|
659
|
+
display: string;
|
|
660
|
+
local: string;
|
|
661
|
+
global: string;
|
|
662
|
+
};
|
|
663
|
+
new: {
|
|
664
|
+
display: string;
|
|
665
|
+
local: string;
|
|
666
|
+
global: string;
|
|
667
|
+
};
|
|
668
|
+
on: {
|
|
669
|
+
display: string;
|
|
670
|
+
local: string;
|
|
671
|
+
global: string;
|
|
672
|
+
};
|
|
673
|
+
off: {
|
|
674
|
+
display: string;
|
|
675
|
+
local: string;
|
|
676
|
+
global: string;
|
|
677
|
+
};
|
|
678
|
+
color: {
|
|
679
|
+
display: string;
|
|
680
|
+
local: string;
|
|
681
|
+
global: string;
|
|
682
|
+
};
|
|
683
|
+
freeze: {
|
|
684
|
+
display: string;
|
|
685
|
+
local: string;
|
|
686
|
+
global: string;
|
|
687
|
+
};
|
|
688
|
+
thaw: {
|
|
689
|
+
display: string;
|
|
690
|
+
local: string;
|
|
691
|
+
global: string;
|
|
692
|
+
};
|
|
693
|
+
lock: {
|
|
694
|
+
display: string;
|
|
695
|
+
local: string;
|
|
696
|
+
global: string;
|
|
697
|
+
};
|
|
698
|
+
unlock: {
|
|
699
|
+
display: string;
|
|
700
|
+
local: string;
|
|
701
|
+
global: string;
|
|
702
|
+
};
|
|
703
|
+
description: {
|
|
704
|
+
display: string;
|
|
705
|
+
local: string;
|
|
706
|
+
global: string;
|
|
707
|
+
};
|
|
708
|
+
};
|
|
709
|
+
};
|
|
710
|
+
layon: {
|
|
711
|
+
alreadyOn: string;
|
|
712
|
+
turnedOn: string;
|
|
713
|
+
};
|
|
714
|
+
laycur: {
|
|
715
|
+
prompt: string;
|
|
716
|
+
currentLayerNotFound: string;
|
|
717
|
+
noObjects: string;
|
|
718
|
+
alreadyCurrent: string;
|
|
719
|
+
changed: string;
|
|
720
|
+
};
|
|
721
|
+
layfrz: {
|
|
722
|
+
prompt: string;
|
|
723
|
+
invalidSelection: string;
|
|
724
|
+
settingsPrompt: string;
|
|
725
|
+
viewportPrompt: string;
|
|
726
|
+
blockSelectionPrompt: string;
|
|
727
|
+
vpfreezeFallback: string;
|
|
728
|
+
nestedSelectionLimited: string;
|
|
729
|
+
layerNotFound: string;
|
|
730
|
+
cannotFreezeCurrent: string;
|
|
731
|
+
alreadyFrozen: string;
|
|
732
|
+
frozen: string;
|
|
733
|
+
restored: string;
|
|
734
|
+
nothingToUndo: string;
|
|
735
|
+
keywords: {
|
|
736
|
+
settings: {
|
|
737
|
+
display: string;
|
|
738
|
+
local: string;
|
|
739
|
+
global: string;
|
|
740
|
+
};
|
|
741
|
+
undo: {
|
|
742
|
+
display: string;
|
|
743
|
+
local: string;
|
|
744
|
+
global: string;
|
|
745
|
+
};
|
|
746
|
+
viewports: {
|
|
747
|
+
display: string;
|
|
748
|
+
local: string;
|
|
749
|
+
global: string;
|
|
750
|
+
};
|
|
751
|
+
blockSelection: {
|
|
752
|
+
display: string;
|
|
753
|
+
local: string;
|
|
754
|
+
global: string;
|
|
755
|
+
};
|
|
756
|
+
freeze: {
|
|
757
|
+
display: string;
|
|
758
|
+
local: string;
|
|
759
|
+
global: string;
|
|
760
|
+
};
|
|
761
|
+
vpfreeze: {
|
|
762
|
+
display: string;
|
|
763
|
+
local: string;
|
|
764
|
+
global: string;
|
|
765
|
+
};
|
|
766
|
+
block: {
|
|
767
|
+
display: string;
|
|
768
|
+
local: string;
|
|
769
|
+
global: string;
|
|
770
|
+
};
|
|
771
|
+
entity: {
|
|
772
|
+
display: string;
|
|
773
|
+
local: string;
|
|
774
|
+
global: string;
|
|
775
|
+
};
|
|
776
|
+
none: {
|
|
777
|
+
display: string;
|
|
778
|
+
local: string;
|
|
779
|
+
global: string;
|
|
780
|
+
};
|
|
781
|
+
};
|
|
782
|
+
};
|
|
783
|
+
layiso: {
|
|
784
|
+
prompt: string;
|
|
785
|
+
settingsPrompt: string;
|
|
786
|
+
offModePrompt: string;
|
|
787
|
+
noLayers: string;
|
|
788
|
+
layerNotFound: string;
|
|
789
|
+
isolated: string;
|
|
790
|
+
affectedLayers: string;
|
|
791
|
+
vpfreezeFallback: string;
|
|
792
|
+
lockFadeFallback: string;
|
|
793
|
+
keywords: {
|
|
794
|
+
settings: {
|
|
795
|
+
display: string;
|
|
796
|
+
local: string;
|
|
797
|
+
global: string;
|
|
798
|
+
};
|
|
799
|
+
off: {
|
|
800
|
+
display: string;
|
|
801
|
+
local: string;
|
|
802
|
+
global: string;
|
|
803
|
+
};
|
|
804
|
+
lockAndFade: {
|
|
805
|
+
display: string;
|
|
806
|
+
local: string;
|
|
807
|
+
global: string;
|
|
808
|
+
};
|
|
809
|
+
vpfreeze: {
|
|
810
|
+
display: string;
|
|
811
|
+
local: string;
|
|
812
|
+
global: string;
|
|
813
|
+
};
|
|
814
|
+
};
|
|
815
|
+
};
|
|
816
|
+
layuniso: {
|
|
817
|
+
noPrevious: string;
|
|
818
|
+
layerNotFound: string;
|
|
819
|
+
nothingRestored: string;
|
|
820
|
+
restored: string;
|
|
821
|
+
};
|
|
822
|
+
laythw: {
|
|
823
|
+
alreadyThawed: string;
|
|
824
|
+
thawed: string;
|
|
825
|
+
};
|
|
826
|
+
laylck: {
|
|
827
|
+
prompt: string;
|
|
828
|
+
invalidSelection: string;
|
|
829
|
+
layerNotFound: string;
|
|
830
|
+
alreadyLocked: string;
|
|
831
|
+
locked: string;
|
|
832
|
+
};
|
|
833
|
+
layulk: {
|
|
834
|
+
prompt: string;
|
|
835
|
+
invalidSelection: string;
|
|
836
|
+
layerNotFound: string;
|
|
837
|
+
alreadyUnlocked: string;
|
|
838
|
+
unlocked: string;
|
|
839
|
+
};
|
|
840
|
+
layoff: {
|
|
841
|
+
prompt: string;
|
|
842
|
+
invalidSelection: string;
|
|
843
|
+
settingsPrompt: string;
|
|
844
|
+
viewportPrompt: string;
|
|
845
|
+
blockSelectionPrompt: string;
|
|
846
|
+
vpfreezeFallback: string;
|
|
847
|
+
nestedSelectionLimited: string;
|
|
848
|
+
layerNotFound: string;
|
|
849
|
+
cannotTurnOffCurrent: string;
|
|
850
|
+
alreadyOff: string;
|
|
851
|
+
turnedOff: string;
|
|
852
|
+
restored: string;
|
|
853
|
+
nothingToUndo: string;
|
|
854
|
+
keywords: {
|
|
855
|
+
settings: {
|
|
856
|
+
display: string;
|
|
857
|
+
local: string;
|
|
858
|
+
global: string;
|
|
859
|
+
};
|
|
860
|
+
undo: {
|
|
861
|
+
display: string;
|
|
862
|
+
local: string;
|
|
863
|
+
global: string;
|
|
864
|
+
};
|
|
865
|
+
viewports: {
|
|
866
|
+
display: string;
|
|
867
|
+
local: string;
|
|
868
|
+
global: string;
|
|
869
|
+
};
|
|
870
|
+
blockSelection: {
|
|
871
|
+
display: string;
|
|
872
|
+
local: string;
|
|
873
|
+
global: string;
|
|
874
|
+
};
|
|
875
|
+
off: {
|
|
876
|
+
display: string;
|
|
877
|
+
local: string;
|
|
878
|
+
global: string;
|
|
879
|
+
};
|
|
880
|
+
vpfreeze: {
|
|
881
|
+
display: string;
|
|
882
|
+
local: string;
|
|
883
|
+
global: string;
|
|
884
|
+
};
|
|
885
|
+
block: {
|
|
886
|
+
display: string;
|
|
887
|
+
local: string;
|
|
888
|
+
global: string;
|
|
889
|
+
};
|
|
890
|
+
entity: {
|
|
891
|
+
display: string;
|
|
892
|
+
local: string;
|
|
893
|
+
global: string;
|
|
894
|
+
};
|
|
895
|
+
none: {
|
|
896
|
+
display: string;
|
|
897
|
+
local: string;
|
|
898
|
+
global: string;
|
|
899
|
+
};
|
|
900
|
+
};
|
|
901
|
+
};
|
|
902
|
+
layerp: {
|
|
903
|
+
restored: string;
|
|
904
|
+
noPreviousState: string;
|
|
905
|
+
};
|
|
906
|
+
mline: {
|
|
907
|
+
startPointWithOptions: string;
|
|
908
|
+
nextPointWithOptions: string;
|
|
909
|
+
justificationPrompt: string;
|
|
910
|
+
scalePrompt: string;
|
|
911
|
+
stylePrompt: string;
|
|
912
|
+
styleNotFound: string;
|
|
913
|
+
styleListHeader: string;
|
|
914
|
+
styleListEmpty: string;
|
|
915
|
+
keywords: {
|
|
916
|
+
justification: {
|
|
917
|
+
display: string;
|
|
918
|
+
local: string;
|
|
919
|
+
global: string;
|
|
920
|
+
};
|
|
921
|
+
scale: {
|
|
922
|
+
display: string;
|
|
923
|
+
local: string;
|
|
924
|
+
global: string;
|
|
925
|
+
};
|
|
926
|
+
style: {
|
|
927
|
+
display: string;
|
|
928
|
+
local: string;
|
|
929
|
+
global: string;
|
|
930
|
+
};
|
|
931
|
+
undo: {
|
|
932
|
+
display: string;
|
|
933
|
+
local: string;
|
|
934
|
+
global: string;
|
|
935
|
+
};
|
|
936
|
+
close: {
|
|
937
|
+
display: string;
|
|
938
|
+
local: string;
|
|
939
|
+
global: string;
|
|
940
|
+
};
|
|
941
|
+
top: {
|
|
942
|
+
display: string;
|
|
943
|
+
local: string;
|
|
944
|
+
global: string;
|
|
945
|
+
};
|
|
946
|
+
zero: {
|
|
947
|
+
display: string;
|
|
948
|
+
local: string;
|
|
949
|
+
global: string;
|
|
950
|
+
};
|
|
951
|
+
bottom: {
|
|
952
|
+
display: string;
|
|
953
|
+
local: string;
|
|
954
|
+
global: string;
|
|
955
|
+
};
|
|
956
|
+
};
|
|
957
|
+
};
|
|
958
|
+
measureAngle: {
|
|
959
|
+
vertex: string;
|
|
960
|
+
arm1: string;
|
|
961
|
+
arm2: string;
|
|
962
|
+
};
|
|
963
|
+
measureArc: {
|
|
964
|
+
startPoint: string;
|
|
965
|
+
throughPoint: string;
|
|
966
|
+
endPoint: string;
|
|
967
|
+
lockedEndPoint: string;
|
|
968
|
+
invalidPoints: string;
|
|
969
|
+
};
|
|
970
|
+
measureArea: {
|
|
971
|
+
firstPoint: string;
|
|
972
|
+
nextPoint: string;
|
|
973
|
+
};
|
|
974
|
+
measureDistance: {
|
|
975
|
+
firstPoint: string;
|
|
976
|
+
secondPoint: string;
|
|
977
|
+
};
|
|
978
|
+
measureContinuous: {
|
|
979
|
+
firstPoint: string;
|
|
980
|
+
nextPoint: string;
|
|
981
|
+
};
|
|
982
|
+
measurePoint: {
|
|
983
|
+
point: string;
|
|
984
|
+
};
|
|
985
|
+
measurement: {
|
|
986
|
+
import: {
|
|
987
|
+
chooseFile: string;
|
|
988
|
+
};
|
|
989
|
+
};
|
|
990
|
+
markup: {
|
|
991
|
+
author: string;
|
|
992
|
+
text: {
|
|
993
|
+
point: string;
|
|
994
|
+
content: string;
|
|
995
|
+
};
|
|
996
|
+
line: {
|
|
997
|
+
firstPoint: string;
|
|
998
|
+
secondPoint: string;
|
|
999
|
+
};
|
|
1000
|
+
arrow: {
|
|
1001
|
+
firstPoint: string;
|
|
1002
|
+
secondPoint: string;
|
|
1003
|
+
};
|
|
1004
|
+
cloud: {
|
|
1005
|
+
firstCorner: string;
|
|
1006
|
+
secondCorner: string;
|
|
1007
|
+
};
|
|
1008
|
+
rect: {
|
|
1009
|
+
firstCorner: string;
|
|
1010
|
+
secondCorner: string;
|
|
1011
|
+
};
|
|
1012
|
+
circle: {
|
|
1013
|
+
center: string;
|
|
1014
|
+
radius: string;
|
|
1015
|
+
};
|
|
1016
|
+
shape: {
|
|
1017
|
+
calloutOn: string;
|
|
1018
|
+
calloutOff: string;
|
|
1019
|
+
calloutAnchor: string;
|
|
1020
|
+
keywords: {
|
|
1021
|
+
callout: {
|
|
1022
|
+
display: string;
|
|
1023
|
+
local: string;
|
|
1024
|
+
global: string;
|
|
1025
|
+
};
|
|
1026
|
+
noCallout: {
|
|
1027
|
+
display: string;
|
|
1028
|
+
local: string;
|
|
1029
|
+
global: string;
|
|
1030
|
+
};
|
|
1031
|
+
};
|
|
1032
|
+
};
|
|
1033
|
+
highlight: {
|
|
1034
|
+
firstCorner: string;
|
|
1035
|
+
secondCorner: string;
|
|
1036
|
+
};
|
|
1037
|
+
callout: {
|
|
1038
|
+
tip: string;
|
|
1039
|
+
anchor: string;
|
|
1040
|
+
content: string;
|
|
1041
|
+
};
|
|
1042
|
+
stamp: {
|
|
1043
|
+
kind: string;
|
|
1044
|
+
imageUrl: string;
|
|
1045
|
+
caption: string;
|
|
1046
|
+
point: string;
|
|
1047
|
+
};
|
|
1048
|
+
import: {
|
|
1049
|
+
chooseFile: string;
|
|
1050
|
+
};
|
|
1051
|
+
};
|
|
1052
|
+
pngout: {
|
|
1053
|
+
boundsFirstCorner: string;
|
|
1054
|
+
boundsSecondCorner: string;
|
|
1055
|
+
longSidePrompt: string;
|
|
1056
|
+
};
|
|
1057
|
+
imageattach: {
|
|
1058
|
+
insertionPoint: string;
|
|
1059
|
+
scale: string;
|
|
1060
|
+
rotation: string;
|
|
1061
|
+
invalidScale: string;
|
|
1062
|
+
decodeFailed: string;
|
|
1063
|
+
};
|
|
1064
|
+
insert: {
|
|
1065
|
+
blockName: string;
|
|
1066
|
+
insertionPoint: string;
|
|
1067
|
+
scale: string;
|
|
1068
|
+
rotation: string;
|
|
1069
|
+
invalidScale: string;
|
|
1070
|
+
invalidBlockName: string;
|
|
1071
|
+
blockNotFound: string;
|
|
1072
|
+
xrefNotAllowed: string;
|
|
1073
|
+
};
|
|
1074
|
+
xattach: {
|
|
1075
|
+
insertionPoint: string;
|
|
1076
|
+
scale: string;
|
|
1077
|
+
rotation: string;
|
|
1078
|
+
invalidScale: string;
|
|
1079
|
+
unsupportedFile: string;
|
|
1080
|
+
loading: string;
|
|
1081
|
+
loadFailed: string;
|
|
1082
|
+
};
|
|
1083
|
+
revcloud: {
|
|
1084
|
+
firstCornerOrOptions: string;
|
|
1085
|
+
firstCorner: string;
|
|
1086
|
+
oppositeCorner: string;
|
|
1087
|
+
startPoint: string;
|
|
1088
|
+
nextPoint: string;
|
|
1089
|
+
nextPointOrUndo: string;
|
|
1090
|
+
firstPoint: string;
|
|
1091
|
+
guideCursor: string;
|
|
1092
|
+
arcLength: string;
|
|
1093
|
+
selectObject: string;
|
|
1094
|
+
style: string;
|
|
1095
|
+
reverseDirection: string;
|
|
1096
|
+
invalidArcLength: string;
|
|
1097
|
+
invalidObject: string;
|
|
1098
|
+
keywords: {
|
|
1099
|
+
arcLength: {
|
|
1100
|
+
display: string;
|
|
1101
|
+
local: string;
|
|
1102
|
+
global: string;
|
|
1103
|
+
};
|
|
1104
|
+
object: {
|
|
1105
|
+
display: string;
|
|
1106
|
+
local: string;
|
|
1107
|
+
global: string;
|
|
1108
|
+
};
|
|
1109
|
+
rectangular: {
|
|
1110
|
+
display: string;
|
|
1111
|
+
local: string;
|
|
1112
|
+
global: string;
|
|
1113
|
+
};
|
|
1114
|
+
polygonal: {
|
|
1115
|
+
display: string;
|
|
1116
|
+
local: string;
|
|
1117
|
+
global: string;
|
|
1118
|
+
};
|
|
1119
|
+
freehand: {
|
|
1120
|
+
display: string;
|
|
1121
|
+
local: string;
|
|
1122
|
+
global: string;
|
|
1123
|
+
};
|
|
1124
|
+
style: {
|
|
1125
|
+
display: string;
|
|
1126
|
+
local: string;
|
|
1127
|
+
global: string;
|
|
1128
|
+
};
|
|
1129
|
+
normal: {
|
|
1130
|
+
display: string;
|
|
1131
|
+
local: string;
|
|
1132
|
+
global: string;
|
|
1133
|
+
};
|
|
1134
|
+
calligraphy: {
|
|
1135
|
+
display: string;
|
|
1136
|
+
local: string;
|
|
1137
|
+
global: string;
|
|
1138
|
+
};
|
|
1139
|
+
undo: {
|
|
1140
|
+
display: string;
|
|
1141
|
+
local: string;
|
|
1142
|
+
global: string;
|
|
1143
|
+
};
|
|
1144
|
+
yes: {
|
|
1145
|
+
display: string;
|
|
1146
|
+
local: string;
|
|
1147
|
+
global: string;
|
|
1148
|
+
};
|
|
1149
|
+
no: {
|
|
1150
|
+
display: string;
|
|
1151
|
+
local: string;
|
|
1152
|
+
global: string;
|
|
1153
|
+
};
|
|
1154
|
+
};
|
|
1155
|
+
};
|
|
1156
|
+
sketch: {
|
|
1157
|
+
specifySketch: string;
|
|
1158
|
+
sketching: string;
|
|
1159
|
+
type: string;
|
|
1160
|
+
increment: string;
|
|
1161
|
+
tolerance: string;
|
|
1162
|
+
firstPoint: string;
|
|
1163
|
+
nextPoint: string;
|
|
1164
|
+
keywords: {
|
|
1165
|
+
type: {
|
|
1166
|
+
display: string;
|
|
1167
|
+
local: string;
|
|
1168
|
+
global: string;
|
|
1169
|
+
};
|
|
1170
|
+
increment: {
|
|
1171
|
+
display: string;
|
|
1172
|
+
local: string;
|
|
1173
|
+
global: string;
|
|
1174
|
+
};
|
|
1175
|
+
tolerance: {
|
|
1176
|
+
display: string;
|
|
1177
|
+
local: string;
|
|
1178
|
+
global: string;
|
|
1179
|
+
};
|
|
1180
|
+
line: {
|
|
1181
|
+
display: string;
|
|
1182
|
+
local: string;
|
|
1183
|
+
global: string;
|
|
1184
|
+
};
|
|
1185
|
+
polyline: {
|
|
1186
|
+
display: string;
|
|
1187
|
+
local: string;
|
|
1188
|
+
global: string;
|
|
1189
|
+
};
|
|
1190
|
+
spline: {
|
|
1191
|
+
display: string;
|
|
1192
|
+
local: string;
|
|
1193
|
+
global: string;
|
|
1194
|
+
};
|
|
1195
|
+
};
|
|
1196
|
+
};
|
|
1197
|
+
sysvar: {
|
|
1198
|
+
prompt: string;
|
|
1199
|
+
};
|
|
1200
|
+
chtml: {
|
|
1201
|
+
exportFormat: string;
|
|
1202
|
+
exportInvisibleLayers: string;
|
|
1203
|
+
exportLayouts: string;
|
|
1204
|
+
initialView: string;
|
|
1205
|
+
viewerMode: string;
|
|
1206
|
+
keywords: {
|
|
1207
|
+
single: {
|
|
1208
|
+
display: string;
|
|
1209
|
+
local: string;
|
|
1210
|
+
global: string;
|
|
1211
|
+
};
|
|
1212
|
+
multi: {
|
|
1213
|
+
display: string;
|
|
1214
|
+
local: string;
|
|
1215
|
+
global: string;
|
|
1216
|
+
};
|
|
1217
|
+
yes: {
|
|
1218
|
+
display: string;
|
|
1219
|
+
local: string;
|
|
1220
|
+
global: string;
|
|
1221
|
+
};
|
|
1222
|
+
no: {
|
|
1223
|
+
display: string;
|
|
1224
|
+
local: string;
|
|
1225
|
+
global: string;
|
|
1226
|
+
};
|
|
1227
|
+
extents: {
|
|
1228
|
+
display: string;
|
|
1229
|
+
local: string;
|
|
1230
|
+
global: string;
|
|
1231
|
+
};
|
|
1232
|
+
current: {
|
|
1233
|
+
display: string;
|
|
1234
|
+
local: string;
|
|
1235
|
+
global: string;
|
|
1236
|
+
};
|
|
1237
|
+
view: {
|
|
1238
|
+
display: string;
|
|
1239
|
+
local: string;
|
|
1240
|
+
global: string;
|
|
1241
|
+
};
|
|
1242
|
+
measure: {
|
|
1243
|
+
display: string;
|
|
1244
|
+
local: string;
|
|
1245
|
+
global: string;
|
|
1246
|
+
};
|
|
1247
|
+
};
|
|
1248
|
+
};
|
|
1249
|
+
};
|
|
1250
|
+
export default _default;
|
|
1251
|
+
//# sourceMappingURL=jig.d.ts.map
|