@mlightcad/cad-viewer 1.5.5 → 1.5.7

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.
Files changed (47) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +3 -0
  3. package/dist/app/register.d.ts.map +1 -1
  4. package/dist/app/store.d.ts +0 -1
  5. package/dist/app/store.d.ts.map +1 -1
  6. package/dist/{index.css → cad-viewer.css} +1 -1
  7. package/dist/{index.d.ts → cad-viewer.d.ts} +1 -1
  8. package/dist/{index.js → cad-viewer.js} +10989 -10018
  9. package/dist/command/AcApHatchRibbonCmd.d.ts.map +1 -1
  10. package/dist/component/MlCadViewer.vue.d.ts +23 -1
  11. package/dist/component/MlCadViewer.vue.d.ts.map +1 -1
  12. package/dist/component/common/MlFontFileReader.vue.d.ts +3 -0
  13. package/dist/component/common/MlFontFileReader.vue.d.ts.map +1 -0
  14. package/dist/component/common/index.d.ts +1 -1
  15. package/dist/component/common/index.d.ts.map +1 -1
  16. package/dist/component/dialog/MlReplacementDlg.vue.d.ts.map +1 -1
  17. package/dist/component/layout/MlMainMenu.vue.d.ts.map +1 -1
  18. package/dist/component/layout/MlToolBars.vue.d.ts.map +1 -1
  19. package/dist/component/palette/MlLayerList.vue.d.ts.map +1 -1
  20. package/dist/component/ribbon/MlRibbonCommands.vue.d.ts.map +1 -1
  21. package/dist/component/ribbon/MlRibbonFileName.vue.d.ts +15 -0
  22. package/dist/component/ribbon/MlRibbonFileName.vue.d.ts.map +1 -0
  23. package/dist/composable/index.d.ts +2 -2
  24. package/dist/composable/index.d.ts.map +1 -1
  25. package/dist/composable/useDocument.d.ts +85 -0
  26. package/dist/composable/useDocument.d.ts.map +1 -0
  27. package/dist/composable/useHover.d.ts +720 -52
  28. package/dist/composable/useHover.d.ts.map +1 -1
  29. package/dist/composable/useLayers.d.ts +62 -11
  30. package/dist/composable/useLayers.d.ts.map +1 -1
  31. package/dist/composable/useUndoRedo.d.ts +19 -0
  32. package/dist/composable/useUndoRedo.d.ts.map +1 -0
  33. package/dist/locale/en/dialog.d.ts +1 -0
  34. package/dist/locale/en/dialog.d.ts.map +1 -1
  35. package/dist/locale/en/main.d.ts +7 -0
  36. package/dist/locale/en/main.d.ts.map +1 -1
  37. package/dist/locale/zh/dialog.d.ts +1 -0
  38. package/dist/locale/zh/dialog.d.ts.map +1 -1
  39. package/dist/locale/zh/main.d.ts +7 -0
  40. package/dist/locale/zh/main.d.ts.map +1 -1
  41. package/package.json +17 -17
  42. package/dist/component/common/MlFileReader.vue.d.ts +0 -7
  43. package/dist/component/common/MlFileReader.vue.d.ts.map +0 -1
  44. package/dist/composable/useDocOpenMode.d.ts +0 -19
  45. package/dist/composable/useDocOpenMode.d.ts.map +0 -1
  46. package/dist/composable/useDocumentOpening.d.ts +0 -9
  47. package/dist/composable/useDocumentOpening.d.ts.map +0 -1
@@ -120,7 +120,6 @@ export declare function useHover(): {
120
120
  equals: (other: import('@mlightcad/data-model').AcCmColor) => boolean;
121
121
  toString: () => string;
122
122
  };
123
- readonly rgbColor: number;
124
123
  lineType: string;
125
124
  lineWeight: import('@mlightcad/data-model').AcGiLineWeight;
126
125
  linetypeScale: number;
@@ -176,6 +175,7 @@ export declare function useHover(): {
176
175
  }[];
177
176
  };
178
177
  subGetGripPoints: () => import('@mlightcad/data-model').AcGePoint3d[];
178
+ subMoveGripPointsAt: (indices: number[], offset: import('@mlightcad/data-model').AcGeVector3dLike) => AcDbEntity;
179
179
  subGetOsnapPoints: (osnapMode: import('@mlightcad/data-model').AcDbOsnapMode, pickPoint: AcGePoint3dLike, lastPoint: AcGePoint3dLike, snapPoints: AcGePoint3dLike[], gsMark?: AcDbObjectId, insertionMat?: import('@mlightcad/data-model').AcGeMatrix3d) => void;
180
180
  transformBy: (matrix: import('@mlightcad/data-model').AcGeMatrix3d) => AcDbEntity;
181
181
  readonly geometricExtents: {
@@ -492,7 +492,6 @@ export declare function useHover(): {
492
492
  erase: () => boolean;
493
493
  subWorldDraw: (renderer: import('@mlightcad/data-model').AcGiRenderer, delay?: boolean) => import('@mlightcad/data-model').AcGiEntity | undefined;
494
494
  worldDraw: (renderer: import('@mlightcad/data-model').AcGiRenderer, delay?: boolean) => import('@mlightcad/data-model').AcGiEntity | undefined;
495
- triggerModifiedEvent: () => void;
496
495
  readonly lineStyle: {
497
496
  type: import('@mlightcad/data-model').AcGiStyleType;
498
497
  name: string;
@@ -558,6 +557,34 @@ export declare function useHover(): {
558
557
  ownerId: AcDbObjectId;
559
558
  extensionDictionary: AcDbObjectId | undefined;
560
559
  database: {
560
+ readonly transactionManager: {
561
+ strictMode: boolean;
562
+ startTransaction: () => import('@mlightcad/data-model').AcDbDatabaseTransaction;
563
+ currentTransaction: () => import('@mlightcad/data-model').AcDbDatabaseTransaction | undefined;
564
+ hasTransaction: () => boolean;
565
+ isRecording: () => boolean;
566
+ isApplyingUndoRedo: () => boolean;
567
+ isOpenedForWriteInTransaction: (objectId: string) => boolean;
568
+ commitTransaction: () => void;
569
+ abortTransaction: () => void;
570
+ startUndoMark: (label?: string) => void;
571
+ endUndoMark: () => void;
572
+ cancelUndoMark: () => void;
573
+ undo: () => boolean;
574
+ redo: () => boolean;
575
+ canUndo: () => boolean;
576
+ canRedo: () => boolean;
577
+ clearUndoStack: () => void;
578
+ recordAppend: (container: import('@mlightcad/data-model').AcDbChangeContainer, object: import('@mlightcad/data-model').AcDbObject) => void;
579
+ recordRemove: (container: import('@mlightcad/data-model').AcDbChangeContainer, object: import('@mlightcad/data-model').AcDbObject) => void;
580
+ recordSysvar: (name: string, before: unknown) => void;
581
+ resolveSymbolTableName: (table: {
582
+ objectId: string;
583
+ }) => string;
584
+ runUndoable: <T>(label: string, fn: (tr: import('@mlightcad/data-model').AcDbDatabaseTransaction) => T) => T;
585
+ flushPendingLayerModifiedEvents: () => void;
586
+ flushPendingEntityModifiedEvents: () => void;
587
+ };
561
588
  readonly events: {
562
589
  dictObjetSet: {
563
590
  addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbDictObjectEventArgs) => void) => void;
@@ -626,7 +653,7 @@ export declare function useHover(): {
626
653
  getAt: (name: string) => import('@mlightcad/data-model').AcDbRegAppTableRecord | undefined;
627
654
  getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRegAppTableRecord | undefined;
628
655
  getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRegAppTableRecord | undefined;
629
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbRegAppTableRecord>;
656
+ newIterator: (iterateById?: boolean) => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbRegAppTableRecord>;
630
657
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbRegAppTable;
631
658
  readonly attrs: {
632
659
  attributes: {
@@ -681,6 +708,8 @@ export declare function useHover(): {
681
708
  createExtensionDictionary: () => AcDbObjectId | undefined;
682
709
  close: () => void;
683
710
  clone: () => import('@mlightcad/data-model').AcDbRegAppTable;
711
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbRegAppTable;
712
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbRegAppTable) => void;
684
713
  dxfOut: (...args: unknown[]) => unknown;
685
714
  };
686
715
  readonly blockTable: {
@@ -772,9 +801,86 @@ export declare function useHover(): {
772
801
  dxfOutBlockEnd: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbBlockTableRecord;
773
802
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbBlockTableRecord;
774
803
  name: string;
804
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbBlockTableRecordAttrs[A] | undefined) => void;
775
805
  readonly attrs: {
776
806
  attributes: {
777
807
  [x: string]: any;
808
+ origin?: {
809
+ clone: () => import('@mlightcad/data-model').AcGePoint3d;
810
+ x: number;
811
+ y: number;
812
+ z: number;
813
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGePoint3d;
814
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
815
+ setX: (x: number) => import('@mlightcad/data-model').AcGePoint3d;
816
+ setY: (y: number) => import('@mlightcad/data-model').AcGePoint3d;
817
+ setZ: (z: number) => import('@mlightcad/data-model').AcGePoint3d;
818
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGePoint3d;
819
+ getComponent: (index: number) => number;
820
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
821
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
822
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
823
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
824
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGePoint3d;
825
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
826
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
827
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
828
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
829
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
830
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
831
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGePoint3d;
832
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGePoint3d;
833
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
834
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
835
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
836
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGePoint3d;
837
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
838
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
839
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
840
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
841
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
842
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
843
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGePoint3d;
844
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGePoint3d;
845
+ floor: () => import('@mlightcad/data-model').AcGePoint3d;
846
+ ceil: () => import('@mlightcad/data-model').AcGePoint3d;
847
+ round: () => import('@mlightcad/data-model').AcGePoint3d;
848
+ roundToZero: () => import('@mlightcad/data-model').AcGePoint3d;
849
+ negate: () => import('@mlightcad/data-model').AcGePoint3d;
850
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
851
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
852
+ lengthSq: () => number;
853
+ length: () => number;
854
+ manhattanLength: () => number;
855
+ normalize: () => import('@mlightcad/data-model').AcGePoint3d;
856
+ setLength: (l: number) => import('@mlightcad/data-model').AcGePoint3d;
857
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
858
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
859
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
860
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
861
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
862
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
863
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
864
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
865
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
866
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
867
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
868
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
869
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
870
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
871
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
872
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
873
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGePoint3d;
874
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
875
+ random: () => import('@mlightcad/data-model').AcGePoint3d;
876
+ randomDirection: () => import('@mlightcad/data-model').AcGePoint3d;
877
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
878
+ } | undefined;
879
+ layoutId?: string | undefined;
880
+ blockInsertUnits?: import('@mlightcad/data-model').AcDbUnitsValue | undefined;
881
+ explodability?: number | undefined;
882
+ blockScaling?: import('@mlightcad/data-model').AcDbBlockScaling | undefined;
883
+ bmpPreview?: string | undefined;
778
884
  name?: string | undefined;
779
885
  objectId?: AcDbObjectId | undefined;
780
886
  ownerId?: AcDbObjectId | undefined;
@@ -782,6 +888,82 @@ export declare function useHover(): {
782
888
  };
783
889
  changed: {
784
890
  [x: string]: any;
891
+ origin?: {
892
+ clone: () => import('@mlightcad/data-model').AcGePoint3d;
893
+ x: number;
894
+ y: number;
895
+ z: number;
896
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGePoint3d;
897
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
898
+ setX: (x: number) => import('@mlightcad/data-model').AcGePoint3d;
899
+ setY: (y: number) => import('@mlightcad/data-model').AcGePoint3d;
900
+ setZ: (z: number) => import('@mlightcad/data-model').AcGePoint3d;
901
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGePoint3d;
902
+ getComponent: (index: number) => number;
903
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
904
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
905
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
906
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
907
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGePoint3d;
908
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
909
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
910
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
911
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
912
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
913
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
914
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGePoint3d;
915
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGePoint3d;
916
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
917
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
918
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
919
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGePoint3d;
920
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
921
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
922
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
923
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
924
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
925
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
926
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGePoint3d;
927
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGePoint3d;
928
+ floor: () => import('@mlightcad/data-model').AcGePoint3d;
929
+ ceil: () => import('@mlightcad/data-model').AcGePoint3d;
930
+ round: () => import('@mlightcad/data-model').AcGePoint3d;
931
+ roundToZero: () => import('@mlightcad/data-model').AcGePoint3d;
932
+ negate: () => import('@mlightcad/data-model').AcGePoint3d;
933
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
934
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
935
+ lengthSq: () => number;
936
+ length: () => number;
937
+ manhattanLength: () => number;
938
+ normalize: () => import('@mlightcad/data-model').AcGePoint3d;
939
+ setLength: (l: number) => import('@mlightcad/data-model').AcGePoint3d;
940
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
941
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
942
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
943
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
944
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
945
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
946
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
947
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
948
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
949
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
950
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
951
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
952
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
953
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
954
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
955
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
956
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGePoint3d;
957
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
958
+ random: () => import('@mlightcad/data-model').AcGePoint3d;
959
+ randomDirection: () => import('@mlightcad/data-model').AcGePoint3d;
960
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
961
+ } | undefined;
962
+ layoutId?: string | undefined;
963
+ blockInsertUnits?: import('@mlightcad/data-model').AcDbUnitsValue | undefined;
964
+ explodability?: number | undefined;
965
+ blockScaling?: import('@mlightcad/data-model').AcDbBlockScaling | undefined;
966
+ bmpPreview?: string | undefined;
785
967
  name?: string | undefined;
786
968
  objectId?: AcDbObjectId | undefined;
787
969
  ownerId?: AcDbObjectId | undefined;
@@ -789,33 +971,32 @@ export declare function useHover(): {
789
971
  };
790
972
  readonly events: {
791
973
  attrChanged: {
792
- addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
793
- removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
794
- replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
795
- dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs> | undefined, ...args: unknown[]) => void;
974
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>) => void) => void;
975
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>) => void) => void;
976
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>) => void) => void;
977
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs> | undefined, ...args: unknown[]) => void;
796
978
  };
797
979
  modelChanged: {
798
- addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
799
- removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
800
- replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
801
- dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs> | undefined, ...args: unknown[]) => void;
980
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>) => void) => void;
981
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>) => void) => void;
982
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>) => void) => void;
983
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs> | undefined, ...args: unknown[]) => void;
802
984
  };
803
985
  };
804
- get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | undefined;
986
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbBlockTableRecordAttrs[A] | undefined;
805
987
  set: {
806
- <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
807
- (key: Partial<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
988
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbBlockTableRecordAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>;
989
+ (key: Partial<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>;
808
990
  };
809
991
  has: (key: string) => boolean;
810
992
  hasChanged: (key?: string | undefined) => boolean;
811
- changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
812
- previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | null | undefined;
813
- previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
814
- clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
993
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>;
994
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbBlockTableRecordAttrs[A] | null | undefined;
995
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>;
996
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>;
815
997
  };
816
998
  getAttr: (attrName: string) => any;
817
999
  getAttrWithoutException: (attrName: string) => any;
818
- setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | undefined) => void;
819
1000
  objectId: AcDbObjectId;
820
1001
  readonly isTemp: any;
821
1002
  ownerId: AcDbObjectId;
@@ -827,6 +1008,8 @@ export declare function useHover(): {
827
1008
  createExtensionDictionary: () => AcDbObjectId | undefined;
828
1009
  close: () => void;
829
1010
  clone: () => import('@mlightcad/data-model').AcDbBlockTableRecord;
1011
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbBlockTableRecord;
1012
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbBlockTableRecord) => void;
830
1013
  dxfOut: (...args: unknown[]) => unknown;
831
1014
  };
832
1015
  getEntityById: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbEntity | undefined;
@@ -841,7 +1024,7 @@ export declare function useHover(): {
841
1024
  getAt: (name: string) => import('@mlightcad/data-model').AcDbBlockTableRecord | undefined;
842
1025
  getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbBlockTableRecord | undefined;
843
1026
  getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbBlockTableRecord | undefined;
844
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbBlockTableRecord>;
1027
+ newIterator: (iterateById?: boolean) => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbBlockTableRecord>;
845
1028
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbBlockTable;
846
1029
  readonly attrs: {
847
1030
  attributes: {
@@ -896,6 +1079,8 @@ export declare function useHover(): {
896
1079
  createExtensionDictionary: () => AcDbObjectId | undefined;
897
1080
  close: () => void;
898
1081
  clone: () => import('@mlightcad/data-model').AcDbBlockTable;
1082
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbBlockTable;
1083
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbBlockTable) => void;
899
1084
  dxfOut: (...args: unknown[]) => unknown;
900
1085
  };
901
1086
  readonly dimStyleTable: {
@@ -909,7 +1094,7 @@ export declare function useHover(): {
909
1094
  getAt: (name: string) => import('@mlightcad/data-model').AcDbDimStyleTableRecord | undefined;
910
1095
  getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbDimStyleTableRecord | undefined;
911
1096
  getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbDimStyleTableRecord | undefined;
912
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbDimStyleTableRecord>;
1097
+ newIterator: (iterateById?: boolean) => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbDimStyleTableRecord>;
913
1098
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbDimStyleTable;
914
1099
  readonly attrs: {
915
1100
  attributes: {
@@ -964,6 +1149,8 @@ export declare function useHover(): {
964
1149
  createExtensionDictionary: () => AcDbObjectId | undefined;
965
1150
  close: () => void;
966
1151
  clone: () => import('@mlightcad/data-model').AcDbDimStyleTable;
1152
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbDimStyleTable;
1153
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbDimStyleTable) => void;
967
1154
  dxfOut: (...args: unknown[]) => unknown;
968
1155
  };
969
1156
  readonly linetypeTable: {
@@ -977,7 +1164,7 @@ export declare function useHover(): {
977
1164
  getAt: (name: string) => import('@mlightcad/data-model').AcDbLinetypeTableRecord | undefined;
978
1165
  getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLinetypeTableRecord | undefined;
979
1166
  getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLinetypeTableRecord | undefined;
980
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLinetypeTableRecord>;
1167
+ newIterator: (iterateById?: boolean) => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLinetypeTableRecord>;
981
1168
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbLinetypeTable;
982
1169
  readonly attrs: {
983
1170
  attributes: {
@@ -1032,10 +1219,112 @@ export declare function useHover(): {
1032
1219
  createExtensionDictionary: () => AcDbObjectId | undefined;
1033
1220
  close: () => void;
1034
1221
  clone: () => import('@mlightcad/data-model').AcDbLinetypeTable;
1222
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbLinetypeTable;
1223
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbLinetypeTable) => void;
1035
1224
  dxfOut: (...args: unknown[]) => unknown;
1036
1225
  };
1037
1226
  readonly textStyleTable: {
1038
1227
  resolveAt: (name?: string) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
1228
+ readonly shapeFiles: {
1229
+ obliquingAngle: number;
1230
+ priorSize: number;
1231
+ textSize: number;
1232
+ xScale: number;
1233
+ isVertical: boolean;
1234
+ isShapeFile: boolean;
1235
+ fileName: string;
1236
+ bigFontFileName: string;
1237
+ readonly textStyle: {
1238
+ name: string;
1239
+ standardFlag: number;
1240
+ fixedTextHeight: number;
1241
+ widthFactor: number;
1242
+ obliqueAngle: number;
1243
+ textGenerationFlag: number;
1244
+ lastHeight: number;
1245
+ font: string;
1246
+ bigFont: string;
1247
+ extendedFont?: string | undefined;
1248
+ };
1249
+ dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbTextStyleTableRecord;
1250
+ name: string;
1251
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs[A] | undefined) => void;
1252
+ readonly attrs: {
1253
+ attributes: {
1254
+ [x: string]: any;
1255
+ name?: string | undefined;
1256
+ objectId?: AcDbObjectId | undefined;
1257
+ ownerId?: AcDbObjectId | undefined;
1258
+ extensionDictionary?: AcDbObjectId | undefined;
1259
+ font?: string | undefined;
1260
+ obliqueAngle?: number | undefined;
1261
+ widthFactor?: number | undefined;
1262
+ standardFlag?: number | undefined;
1263
+ fixedTextHeight?: number | undefined;
1264
+ textGenerationFlag?: number | undefined;
1265
+ lastHeight?: number | undefined;
1266
+ bigFont?: string | undefined;
1267
+ extendedFont?: string | undefined;
1268
+ };
1269
+ changed: {
1270
+ [x: string]: any;
1271
+ name?: string | undefined;
1272
+ objectId?: AcDbObjectId | undefined;
1273
+ ownerId?: AcDbObjectId | undefined;
1274
+ extensionDictionary?: AcDbObjectId | undefined;
1275
+ font?: string | undefined;
1276
+ obliqueAngle?: number | undefined;
1277
+ widthFactor?: number | undefined;
1278
+ standardFlag?: number | undefined;
1279
+ fixedTextHeight?: number | undefined;
1280
+ textGenerationFlag?: number | undefined;
1281
+ lastHeight?: number | undefined;
1282
+ bigFont?: string | undefined;
1283
+ extendedFont?: string | undefined;
1284
+ };
1285
+ readonly events: {
1286
+ attrChanged: {
1287
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>) => void) => void;
1288
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>) => void) => void;
1289
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>) => void) => void;
1290
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs> | undefined, ...args: unknown[]) => void;
1291
+ };
1292
+ modelChanged: {
1293
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>) => void) => void;
1294
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>) => void) => void;
1295
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>) => void) => void;
1296
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs> | undefined, ...args: unknown[]) => void;
1297
+ };
1298
+ };
1299
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs[A] | undefined;
1300
+ set: {
1301
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>;
1302
+ (key: Partial<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>;
1303
+ };
1304
+ has: (key: string) => boolean;
1305
+ hasChanged: (key?: string | undefined) => boolean;
1306
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>;
1307
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs[A] | null | undefined;
1308
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>;
1309
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>;
1310
+ };
1311
+ getAttr: (attrName: string) => any;
1312
+ getAttrWithoutException: (attrName: string) => any;
1313
+ objectId: AcDbObjectId;
1314
+ readonly isTemp: any;
1315
+ ownerId: AcDbObjectId;
1316
+ extensionDictionary: AcDbObjectId | undefined;
1317
+ database: /*elided*/ any;
1318
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
1319
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
1320
+ removeXData: (appId: string) => void;
1321
+ createExtensionDictionary: () => AcDbObjectId | undefined;
1322
+ close: () => void;
1323
+ clone: () => import('@mlightcad/data-model').AcDbTextStyleTableRecord;
1324
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbTextStyleTableRecord;
1325
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbTextStyleTableRecord) => void;
1326
+ dxfOut: (...args: unknown[]) => unknown;
1327
+ }[];
1039
1328
  readonly fonts: string[];
1040
1329
  readonly numEntries: number;
1041
1330
  add: (record: import('@mlightcad/data-model').AcDbTextStyleTableRecord) => void;
@@ -1047,7 +1336,7 @@ export declare function useHover(): {
1047
1336
  getAt: (name: string) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
1048
1337
  getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
1049
1338
  getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
1050
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbTextStyleTableRecord>;
1339
+ newIterator: (iterateById?: boolean) => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbTextStyleTableRecord>;
1051
1340
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbTextStyleTable;
1052
1341
  readonly attrs: {
1053
1342
  attributes: {
@@ -1102,6 +1391,8 @@ export declare function useHover(): {
1102
1391
  createExtensionDictionary: () => AcDbObjectId | undefined;
1103
1392
  close: () => void;
1104
1393
  clone: () => import('@mlightcad/data-model').AcDbTextStyleTable;
1394
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbTextStyleTable;
1395
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbTextStyleTable) => void;
1105
1396
  dxfOut: (...args: unknown[]) => unknown;
1106
1397
  };
1107
1398
  readonly viewTable: {
@@ -1115,7 +1406,7 @@ export declare function useHover(): {
1115
1406
  getAt: (name: string) => import('@mlightcad/data-model').AcDbViewTableRecord | undefined;
1116
1407
  getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewTableRecord | undefined;
1117
1408
  getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewTableRecord | undefined;
1118
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbViewTableRecord>;
1409
+ newIterator: (iterateById?: boolean) => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbViewTableRecord>;
1119
1410
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbViewTable;
1120
1411
  readonly attrs: {
1121
1412
  attributes: {
@@ -1170,6 +1461,8 @@ export declare function useHover(): {
1170
1461
  createExtensionDictionary: () => AcDbObjectId | undefined;
1171
1462
  close: () => void;
1172
1463
  clone: () => import('@mlightcad/data-model').AcDbViewTable;
1464
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbViewTable;
1465
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbViewTable) => void;
1173
1466
  dxfOut: (...args: unknown[]) => unknown;
1174
1467
  };
1175
1468
  readonly layerTable: {
@@ -1183,7 +1476,7 @@ export declare function useHover(): {
1183
1476
  getAt: (name: string) => import('@mlightcad/data-model').AcDbLayerTableRecord | undefined;
1184
1477
  getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayerTableRecord | undefined;
1185
1478
  getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayerTableRecord | undefined;
1186
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLayerTableRecord>;
1479
+ newIterator: (iterateById?: boolean) => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLayerTableRecord>;
1187
1480
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbLayerTable;
1188
1481
  readonly attrs: {
1189
1482
  attributes: {
@@ -1238,9 +1531,13 @@ export declare function useHover(): {
1238
1531
  createExtensionDictionary: () => AcDbObjectId | undefined;
1239
1532
  close: () => void;
1240
1533
  clone: () => import('@mlightcad/data-model').AcDbLayerTable;
1534
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbLayerTable;
1535
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbLayerTable) => void;
1241
1536
  dxfOut: (...args: unknown[]) => unknown;
1242
1537
  };
1243
1538
  readonly viewportTable: {
1539
+ getActiveVport: () => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
1540
+ getActiveVportBox: (canvasAspectRatio: number, drawingExtents?: import('@mlightcad/data-model').AcGeBox2d) => import('@mlightcad/data-model').AcGeBox2d | undefined;
1244
1541
  readonly numEntries: number;
1245
1542
  add: (record: import('@mlightcad/data-model').AcDbViewportTableRecord) => void;
1246
1543
  remove: (name: string) => boolean;
@@ -1251,7 +1548,7 @@ export declare function useHover(): {
1251
1548
  getAt: (name: string) => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
1252
1549
  getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
1253
1550
  getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
1254
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbViewportTableRecord>;
1551
+ newIterator: (iterateById?: boolean) => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbViewportTableRecord>;
1255
1552
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbViewportTable;
1256
1553
  readonly attrs: {
1257
1554
  attributes: {
@@ -1306,6 +1603,8 @@ export declare function useHover(): {
1306
1603
  createExtensionDictionary: () => AcDbObjectId | undefined;
1307
1604
  close: () => void;
1308
1605
  clone: () => import('@mlightcad/data-model').AcDbViewportTable;
1606
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbViewportTable;
1607
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbViewportTable) => void;
1309
1608
  dxfOut: (...args: unknown[]) => unknown;
1310
1609
  };
1311
1610
  };
@@ -1376,6 +1675,8 @@ export declare function useHover(): {
1376
1675
  createExtensionDictionary: () => AcDbObjectId | undefined;
1377
1676
  close: () => void;
1378
1677
  clone: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>>>;
1678
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>>>;
1679
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>>>) => void;
1379
1680
  dxfOut: (...args: unknown[]) => unknown;
1380
1681
  };
1381
1682
  readonly imageDefinition: {
@@ -1444,6 +1745,8 @@ export declare function useHover(): {
1444
1745
  createExtensionDictionary: () => AcDbObjectId | undefined;
1445
1746
  close: () => void;
1446
1747
  clone: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbRasterImageDef>;
1748
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbRasterImageDef>;
1749
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbRasterImageDef>) => void;
1447
1750
  dxfOut: (...args: unknown[]) => unknown;
1448
1751
  };
1449
1752
  readonly layout: {
@@ -1514,6 +1817,8 @@ export declare function useHover(): {
1514
1817
  createExtensionDictionary: () => AcDbObjectId | undefined;
1515
1818
  close: () => void;
1516
1819
  clone: () => import('@mlightcad/data-model').AcDbLayoutDictionary;
1820
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbLayoutDictionary;
1821
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbLayoutDictionary) => void;
1517
1822
  dxfOut: (...args: unknown[]) => unknown;
1518
1823
  };
1519
1824
  readonly mleaderStyle: {
@@ -1582,6 +1887,8 @@ export declare function useHover(): {
1582
1887
  createExtensionDictionary: () => AcDbObjectId | undefined;
1583
1888
  close: () => void;
1584
1889
  clone: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbMLeaderStyle>;
1890
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbMLeaderStyle>;
1891
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbMLeaderStyle>) => void;
1585
1892
  dxfOut: (...args: unknown[]) => unknown;
1586
1893
  };
1587
1894
  readonly mlineStyle: {
@@ -1650,6 +1957,8 @@ export declare function useHover(): {
1650
1957
  createExtensionDictionary: () => AcDbObjectId | undefined;
1651
1958
  close: () => void;
1652
1959
  clone: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbMlineStyle>;
1960
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbMlineStyle>;
1961
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbMlineStyle>) => void;
1653
1962
  dxfOut: (...args: unknown[]) => unknown;
1654
1963
  };
1655
1964
  readonly xrecord: {
@@ -1718,9 +2027,26 @@ export declare function useHover(): {
1718
2027
  createExtensionDictionary: () => AcDbObjectId | undefined;
1719
2028
  close: () => void;
1720
2029
  clone: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbXrecord>;
2030
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbXrecord>;
2031
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbXrecord>) => void;
1721
2032
  dxfOut: (...args: unknown[]) => unknown;
1722
2033
  };
1723
2034
  };
2035
+ getObjectById: (id: AcDbObjectId, _openErased?: boolean) => import('@mlightcad/data-model').AcDbObject | undefined;
2036
+ isUndoRecording: () => boolean;
2037
+ openObjectForRead: <T extends import('@mlightcad/data-model').AcDbObject>(objectId: AcDbObjectId) => T | undefined;
2038
+ openObjectForWrite: <T extends import('@mlightcad/data-model').AcDbObject>(objectId: AcDbObjectId) => T | undefined;
2039
+ openEntityForRead: (entityOrId: AcDbObjectId | AcDbEntity) => AcDbEntity | undefined;
2040
+ openEntityForWrite: (entityOrId: AcDbObjectId | AcDbEntity) => AcDbEntity | undefined;
2041
+ runDatabaseEdit: (label: string, fn: () => void) => void;
2042
+ getRootDictionaries: () => import('@mlightcad/data-model').AcDbDictionary[];
2043
+ beginEventBatch: () => void;
2044
+ endEventBatch: () => void;
2045
+ isEventBatched: () => boolean;
2046
+ notifyEntityAppended: (entity: AcDbEntity | AcDbEntity[]) => void;
2047
+ notifyEntityErased: (entity: AcDbEntity | AcDbEntity[]) => void;
2048
+ notifyDictObjectSet: (object: import('@mlightcad/data-model').AcDbObject, key: string) => void;
2049
+ notifyDictObjectErased: (object: import('@mlightcad/data-model').AcDbObject, key: string) => void;
1724
2050
  readonly formatter: {
1725
2051
  formatLength: (value: number, options?: import('@mlightcad/data-model').AcDbFormatterOptions) => string;
1726
2052
  formatPoint2d: (point: import('@mlightcad/data-model').AcGePoint2d, options?: import('@mlightcad/data-model').AcDbFormatterOptions) => string;
@@ -1744,6 +2070,10 @@ export declare function useHover(): {
1744
2070
  measurement: number;
1745
2071
  ltscale: number;
1746
2072
  lwdisplay: boolean;
2073
+ readonly drawNoPlotLayers: boolean;
2074
+ readonly dwgname: string;
2075
+ setDwgName: (value: string) => void;
2076
+ isLayerDrawable: (layerName: string) => boolean;
1747
2077
  cecolor: {
1748
2078
  colorMethod: import('@mlightcad/data-model').AcCmColorMethod;
1749
2079
  readonly red: number | undefined;
@@ -2386,6 +2716,8 @@ export declare function useHover(): {
2386
2716
  createExtensionDictionary: () => AcDbObjectId | undefined;
2387
2717
  close: () => void;
2388
2718
  clone: () => import('@mlightcad/data-model').AcDbDatabase;
2719
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbDatabase;
2720
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbDatabase) => void;
2389
2721
  dxfOutFields: (_filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbDatabase;
2390
2722
  };
2391
2723
  getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
@@ -2394,6 +2726,8 @@ export declare function useHover(): {
2394
2726
  createExtensionDictionary: () => AcDbObjectId | undefined;
2395
2727
  close: () => void;
2396
2728
  clone: () => AcDbEntity;
2729
+ clonePreservingIdentity: () => AcDbEntity;
2730
+ restoreFrom: (snapshot: AcDbEntity) => void;
2397
2731
  dxfOut: (...args: unknown[]) => unknown;
2398
2732
  } | null, AcDbEntity | {
2399
2733
  readonly type: string;
@@ -2455,7 +2789,6 @@ export declare function useHover(): {
2455
2789
  equals: (other: import('@mlightcad/data-model').AcCmColor) => boolean;
2456
2790
  toString: () => string;
2457
2791
  };
2458
- readonly rgbColor: number;
2459
2792
  lineType: string;
2460
2793
  lineWeight: import('@mlightcad/data-model').AcGiLineWeight;
2461
2794
  linetypeScale: number;
@@ -2511,6 +2844,7 @@ export declare function useHover(): {
2511
2844
  }[];
2512
2845
  };
2513
2846
  subGetGripPoints: () => import('@mlightcad/data-model').AcGePoint3d[];
2847
+ subMoveGripPointsAt: (indices: number[], offset: import('@mlightcad/data-model').AcGeVector3dLike) => AcDbEntity;
2514
2848
  subGetOsnapPoints: (osnapMode: import('@mlightcad/data-model').AcDbOsnapMode, pickPoint: AcGePoint3dLike, lastPoint: AcGePoint3dLike, snapPoints: AcGePoint3dLike[], gsMark?: AcDbObjectId, insertionMat?: import('@mlightcad/data-model').AcGeMatrix3d) => void;
2515
2849
  transformBy: (matrix: import('@mlightcad/data-model').AcGeMatrix3d) => AcDbEntity;
2516
2850
  readonly geometricExtents: {
@@ -2827,7 +3161,6 @@ export declare function useHover(): {
2827
3161
  erase: () => boolean;
2828
3162
  subWorldDraw: (renderer: import('@mlightcad/data-model').AcGiRenderer, delay?: boolean) => import('@mlightcad/data-model').AcGiEntity | undefined;
2829
3163
  worldDraw: (renderer: import('@mlightcad/data-model').AcGiRenderer, delay?: boolean) => import('@mlightcad/data-model').AcGiEntity | undefined;
2830
- triggerModifiedEvent: () => void;
2831
3164
  readonly lineStyle: {
2832
3165
  type: import('@mlightcad/data-model').AcGiStyleType;
2833
3166
  name: string;
@@ -2893,6 +3226,34 @@ export declare function useHover(): {
2893
3226
  ownerId: AcDbObjectId;
2894
3227
  extensionDictionary: AcDbObjectId | undefined;
2895
3228
  database: {
3229
+ readonly transactionManager: {
3230
+ strictMode: boolean;
3231
+ startTransaction: () => import('@mlightcad/data-model').AcDbDatabaseTransaction;
3232
+ currentTransaction: () => import('@mlightcad/data-model').AcDbDatabaseTransaction | undefined;
3233
+ hasTransaction: () => boolean;
3234
+ isRecording: () => boolean;
3235
+ isApplyingUndoRedo: () => boolean;
3236
+ isOpenedForWriteInTransaction: (objectId: string) => boolean;
3237
+ commitTransaction: () => void;
3238
+ abortTransaction: () => void;
3239
+ startUndoMark: (label?: string) => void;
3240
+ endUndoMark: () => void;
3241
+ cancelUndoMark: () => void;
3242
+ undo: () => boolean;
3243
+ redo: () => boolean;
3244
+ canUndo: () => boolean;
3245
+ canRedo: () => boolean;
3246
+ clearUndoStack: () => void;
3247
+ recordAppend: (container: import('@mlightcad/data-model').AcDbChangeContainer, object: import('@mlightcad/data-model').AcDbObject) => void;
3248
+ recordRemove: (container: import('@mlightcad/data-model').AcDbChangeContainer, object: import('@mlightcad/data-model').AcDbObject) => void;
3249
+ recordSysvar: (name: string, before: unknown) => void;
3250
+ resolveSymbolTableName: (table: {
3251
+ objectId: string;
3252
+ }) => string;
3253
+ runUndoable: <T>(label: string, fn: (tr: import('@mlightcad/data-model').AcDbDatabaseTransaction) => T) => T;
3254
+ flushPendingLayerModifiedEvents: () => void;
3255
+ flushPendingEntityModifiedEvents: () => void;
3256
+ };
2896
3257
  readonly events: {
2897
3258
  dictObjetSet: {
2898
3259
  addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbDictObjectEventArgs) => void) => void;
@@ -2961,7 +3322,7 @@ export declare function useHover(): {
2961
3322
  getAt: (name: string) => import('@mlightcad/data-model').AcDbRegAppTableRecord | undefined;
2962
3323
  getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRegAppTableRecord | undefined;
2963
3324
  getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRegAppTableRecord | undefined;
2964
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbRegAppTableRecord>;
3325
+ newIterator: (iterateById?: boolean) => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbRegAppTableRecord>;
2965
3326
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbRegAppTable;
2966
3327
  readonly attrs: {
2967
3328
  attributes: {
@@ -3016,6 +3377,8 @@ export declare function useHover(): {
3016
3377
  createExtensionDictionary: () => AcDbObjectId | undefined;
3017
3378
  close: () => void;
3018
3379
  clone: () => import('@mlightcad/data-model').AcDbRegAppTable;
3380
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbRegAppTable;
3381
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbRegAppTable) => void;
3019
3382
  dxfOut: (...args: unknown[]) => unknown;
3020
3383
  };
3021
3384
  readonly blockTable: {
@@ -3107,9 +3470,86 @@ export declare function useHover(): {
3107
3470
  dxfOutBlockEnd: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbBlockTableRecord;
3108
3471
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbBlockTableRecord;
3109
3472
  name: string;
3473
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbBlockTableRecordAttrs[A] | undefined) => void;
3110
3474
  readonly attrs: {
3111
3475
  attributes: {
3112
3476
  [x: string]: any;
3477
+ origin?: {
3478
+ clone: () => import('@mlightcad/data-model').AcGePoint3d;
3479
+ x: number;
3480
+ y: number;
3481
+ z: number;
3482
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGePoint3d;
3483
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
3484
+ setX: (x: number) => import('@mlightcad/data-model').AcGePoint3d;
3485
+ setY: (y: number) => import('@mlightcad/data-model').AcGePoint3d;
3486
+ setZ: (z: number) => import('@mlightcad/data-model').AcGePoint3d;
3487
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGePoint3d;
3488
+ getComponent: (index: number) => number;
3489
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
3490
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
3491
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
3492
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3493
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGePoint3d;
3494
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3495
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
3496
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3497
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3498
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
3499
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3500
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGePoint3d;
3501
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGePoint3d;
3502
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
3503
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
3504
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
3505
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGePoint3d;
3506
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
3507
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3508
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
3509
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3510
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3511
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3512
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGePoint3d;
3513
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGePoint3d;
3514
+ floor: () => import('@mlightcad/data-model').AcGePoint3d;
3515
+ ceil: () => import('@mlightcad/data-model').AcGePoint3d;
3516
+ round: () => import('@mlightcad/data-model').AcGePoint3d;
3517
+ roundToZero: () => import('@mlightcad/data-model').AcGePoint3d;
3518
+ negate: () => import('@mlightcad/data-model').AcGePoint3d;
3519
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3520
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
3521
+ lengthSq: () => number;
3522
+ length: () => number;
3523
+ manhattanLength: () => number;
3524
+ normalize: () => import('@mlightcad/data-model').AcGePoint3d;
3525
+ setLength: (l: number) => import('@mlightcad/data-model').AcGePoint3d;
3526
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
3527
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
3528
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3529
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3530
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
3531
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
3532
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3533
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
3534
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3535
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3536
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3537
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
3538
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
3539
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
3540
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
3541
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
3542
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGePoint3d;
3543
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
3544
+ random: () => import('@mlightcad/data-model').AcGePoint3d;
3545
+ randomDirection: () => import('@mlightcad/data-model').AcGePoint3d;
3546
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
3547
+ } | undefined;
3548
+ layoutId?: string | undefined;
3549
+ blockInsertUnits?: import('@mlightcad/data-model').AcDbUnitsValue | undefined;
3550
+ explodability?: number | undefined;
3551
+ blockScaling?: import('@mlightcad/data-model').AcDbBlockScaling | undefined;
3552
+ bmpPreview?: string | undefined;
3113
3553
  name?: string | undefined;
3114
3554
  objectId?: AcDbObjectId | undefined;
3115
3555
  ownerId?: AcDbObjectId | undefined;
@@ -3117,6 +3557,82 @@ export declare function useHover(): {
3117
3557
  };
3118
3558
  changed: {
3119
3559
  [x: string]: any;
3560
+ origin?: {
3561
+ clone: () => import('@mlightcad/data-model').AcGePoint3d;
3562
+ x: number;
3563
+ y: number;
3564
+ z: number;
3565
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGePoint3d;
3566
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
3567
+ setX: (x: number) => import('@mlightcad/data-model').AcGePoint3d;
3568
+ setY: (y: number) => import('@mlightcad/data-model').AcGePoint3d;
3569
+ setZ: (z: number) => import('@mlightcad/data-model').AcGePoint3d;
3570
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGePoint3d;
3571
+ getComponent: (index: number) => number;
3572
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
3573
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
3574
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
3575
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3576
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGePoint3d;
3577
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3578
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
3579
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3580
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3581
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
3582
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3583
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGePoint3d;
3584
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGePoint3d;
3585
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
3586
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
3587
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
3588
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGePoint3d;
3589
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
3590
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3591
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
3592
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3593
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3594
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3595
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGePoint3d;
3596
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGePoint3d;
3597
+ floor: () => import('@mlightcad/data-model').AcGePoint3d;
3598
+ ceil: () => import('@mlightcad/data-model').AcGePoint3d;
3599
+ round: () => import('@mlightcad/data-model').AcGePoint3d;
3600
+ roundToZero: () => import('@mlightcad/data-model').AcGePoint3d;
3601
+ negate: () => import('@mlightcad/data-model').AcGePoint3d;
3602
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3603
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
3604
+ lengthSq: () => number;
3605
+ length: () => number;
3606
+ manhattanLength: () => number;
3607
+ normalize: () => import('@mlightcad/data-model').AcGePoint3d;
3608
+ setLength: (l: number) => import('@mlightcad/data-model').AcGePoint3d;
3609
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
3610
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
3611
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3612
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3613
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
3614
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
3615
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
3616
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
3617
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3618
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3619
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3620
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
3621
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
3622
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
3623
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
3624
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
3625
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGePoint3d;
3626
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
3627
+ random: () => import('@mlightcad/data-model').AcGePoint3d;
3628
+ randomDirection: () => import('@mlightcad/data-model').AcGePoint3d;
3629
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
3630
+ } | undefined;
3631
+ layoutId?: string | undefined;
3632
+ blockInsertUnits?: import('@mlightcad/data-model').AcDbUnitsValue | undefined;
3633
+ explodability?: number | undefined;
3634
+ blockScaling?: import('@mlightcad/data-model').AcDbBlockScaling | undefined;
3635
+ bmpPreview?: string | undefined;
3120
3636
  name?: string | undefined;
3121
3637
  objectId?: AcDbObjectId | undefined;
3122
3638
  ownerId?: AcDbObjectId | undefined;
@@ -3124,33 +3640,32 @@ export declare function useHover(): {
3124
3640
  };
3125
3641
  readonly events: {
3126
3642
  attrChanged: {
3127
- addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
3128
- removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
3129
- replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
3130
- dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs> | undefined, ...args: unknown[]) => void;
3643
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>) => void) => void;
3644
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>) => void) => void;
3645
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>) => void) => void;
3646
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs> | undefined, ...args: unknown[]) => void;
3131
3647
  };
3132
3648
  modelChanged: {
3133
- addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
3134
- removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
3135
- replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
3136
- dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs> | undefined, ...args: unknown[]) => void;
3649
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>) => void) => void;
3650
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>) => void) => void;
3651
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>) => void) => void;
3652
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs> | undefined, ...args: unknown[]) => void;
3137
3653
  };
3138
3654
  };
3139
- get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | undefined;
3655
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbBlockTableRecordAttrs[A] | undefined;
3140
3656
  set: {
3141
- <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
3142
- (key: Partial<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
3657
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbBlockTableRecordAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>;
3658
+ (key: Partial<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>;
3143
3659
  };
3144
3660
  has: (key: string) => boolean;
3145
3661
  hasChanged: (key?: string | undefined) => boolean;
3146
- changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
3147
- previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | null | undefined;
3148
- previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
3149
- clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
3662
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>;
3663
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbBlockTableRecordAttrs[A] | null | undefined;
3664
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>;
3665
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbBlockTableRecordAttrs>;
3150
3666
  };
3151
3667
  getAttr: (attrName: string) => any;
3152
3668
  getAttrWithoutException: (attrName: string) => any;
3153
- setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | undefined) => void;
3154
3669
  objectId: AcDbObjectId;
3155
3670
  readonly isTemp: any;
3156
3671
  ownerId: AcDbObjectId;
@@ -3162,6 +3677,8 @@ export declare function useHover(): {
3162
3677
  createExtensionDictionary: () => AcDbObjectId | undefined;
3163
3678
  close: () => void;
3164
3679
  clone: () => import('@mlightcad/data-model').AcDbBlockTableRecord;
3680
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbBlockTableRecord;
3681
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbBlockTableRecord) => void;
3165
3682
  dxfOut: (...args: unknown[]) => unknown;
3166
3683
  };
3167
3684
  getEntityById: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbEntity | undefined;
@@ -3176,7 +3693,7 @@ export declare function useHover(): {
3176
3693
  getAt: (name: string) => import('@mlightcad/data-model').AcDbBlockTableRecord | undefined;
3177
3694
  getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbBlockTableRecord | undefined;
3178
3695
  getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbBlockTableRecord | undefined;
3179
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbBlockTableRecord>;
3696
+ newIterator: (iterateById?: boolean) => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbBlockTableRecord>;
3180
3697
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbBlockTable;
3181
3698
  readonly attrs: {
3182
3699
  attributes: {
@@ -3231,6 +3748,8 @@ export declare function useHover(): {
3231
3748
  createExtensionDictionary: () => AcDbObjectId | undefined;
3232
3749
  close: () => void;
3233
3750
  clone: () => import('@mlightcad/data-model').AcDbBlockTable;
3751
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbBlockTable;
3752
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbBlockTable) => void;
3234
3753
  dxfOut: (...args: unknown[]) => unknown;
3235
3754
  };
3236
3755
  readonly dimStyleTable: {
@@ -3244,7 +3763,7 @@ export declare function useHover(): {
3244
3763
  getAt: (name: string) => import('@mlightcad/data-model').AcDbDimStyleTableRecord | undefined;
3245
3764
  getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbDimStyleTableRecord | undefined;
3246
3765
  getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbDimStyleTableRecord | undefined;
3247
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbDimStyleTableRecord>;
3766
+ newIterator: (iterateById?: boolean) => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbDimStyleTableRecord>;
3248
3767
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbDimStyleTable;
3249
3768
  readonly attrs: {
3250
3769
  attributes: {
@@ -3299,6 +3818,8 @@ export declare function useHover(): {
3299
3818
  createExtensionDictionary: () => AcDbObjectId | undefined;
3300
3819
  close: () => void;
3301
3820
  clone: () => import('@mlightcad/data-model').AcDbDimStyleTable;
3821
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbDimStyleTable;
3822
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbDimStyleTable) => void;
3302
3823
  dxfOut: (...args: unknown[]) => unknown;
3303
3824
  };
3304
3825
  readonly linetypeTable: {
@@ -3312,7 +3833,7 @@ export declare function useHover(): {
3312
3833
  getAt: (name: string) => import('@mlightcad/data-model').AcDbLinetypeTableRecord | undefined;
3313
3834
  getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLinetypeTableRecord | undefined;
3314
3835
  getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLinetypeTableRecord | undefined;
3315
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLinetypeTableRecord>;
3836
+ newIterator: (iterateById?: boolean) => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLinetypeTableRecord>;
3316
3837
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbLinetypeTable;
3317
3838
  readonly attrs: {
3318
3839
  attributes: {
@@ -3367,10 +3888,112 @@ export declare function useHover(): {
3367
3888
  createExtensionDictionary: () => AcDbObjectId | undefined;
3368
3889
  close: () => void;
3369
3890
  clone: () => import('@mlightcad/data-model').AcDbLinetypeTable;
3891
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbLinetypeTable;
3892
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbLinetypeTable) => void;
3370
3893
  dxfOut: (...args: unknown[]) => unknown;
3371
3894
  };
3372
3895
  readonly textStyleTable: {
3373
3896
  resolveAt: (name?: string) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
3897
+ readonly shapeFiles: {
3898
+ obliquingAngle: number;
3899
+ priorSize: number;
3900
+ textSize: number;
3901
+ xScale: number;
3902
+ isVertical: boolean;
3903
+ isShapeFile: boolean;
3904
+ fileName: string;
3905
+ bigFontFileName: string;
3906
+ readonly textStyle: {
3907
+ name: string;
3908
+ standardFlag: number;
3909
+ fixedTextHeight: number;
3910
+ widthFactor: number;
3911
+ obliqueAngle: number;
3912
+ textGenerationFlag: number;
3913
+ lastHeight: number;
3914
+ font: string;
3915
+ bigFont: string;
3916
+ extendedFont?: string | undefined;
3917
+ };
3918
+ dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbTextStyleTableRecord;
3919
+ name: string;
3920
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs[A] | undefined) => void;
3921
+ readonly attrs: {
3922
+ attributes: {
3923
+ [x: string]: any;
3924
+ name?: string | undefined;
3925
+ objectId?: AcDbObjectId | undefined;
3926
+ ownerId?: AcDbObjectId | undefined;
3927
+ extensionDictionary?: AcDbObjectId | undefined;
3928
+ font?: string | undefined;
3929
+ obliqueAngle?: number | undefined;
3930
+ widthFactor?: number | undefined;
3931
+ standardFlag?: number | undefined;
3932
+ fixedTextHeight?: number | undefined;
3933
+ textGenerationFlag?: number | undefined;
3934
+ lastHeight?: number | undefined;
3935
+ bigFont?: string | undefined;
3936
+ extendedFont?: string | undefined;
3937
+ };
3938
+ changed: {
3939
+ [x: string]: any;
3940
+ name?: string | undefined;
3941
+ objectId?: AcDbObjectId | undefined;
3942
+ ownerId?: AcDbObjectId | undefined;
3943
+ extensionDictionary?: AcDbObjectId | undefined;
3944
+ font?: string | undefined;
3945
+ obliqueAngle?: number | undefined;
3946
+ widthFactor?: number | undefined;
3947
+ standardFlag?: number | undefined;
3948
+ fixedTextHeight?: number | undefined;
3949
+ textGenerationFlag?: number | undefined;
3950
+ lastHeight?: number | undefined;
3951
+ bigFont?: string | undefined;
3952
+ extendedFont?: string | undefined;
3953
+ };
3954
+ readonly events: {
3955
+ attrChanged: {
3956
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>) => void) => void;
3957
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>) => void) => void;
3958
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>) => void) => void;
3959
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs> | undefined, ...args: unknown[]) => void;
3960
+ };
3961
+ modelChanged: {
3962
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>) => void) => void;
3963
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>) => void) => void;
3964
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>) => void) => void;
3965
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs> | undefined, ...args: unknown[]) => void;
3966
+ };
3967
+ };
3968
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs[A] | undefined;
3969
+ set: {
3970
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>;
3971
+ (key: Partial<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>;
3972
+ };
3973
+ has: (key: string) => boolean;
3974
+ hasChanged: (key?: string | undefined) => boolean;
3975
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>;
3976
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs[A] | null | undefined;
3977
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>;
3978
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbTextStyleTableRecordAttrs>;
3979
+ };
3980
+ getAttr: (attrName: string) => any;
3981
+ getAttrWithoutException: (attrName: string) => any;
3982
+ objectId: AcDbObjectId;
3983
+ readonly isTemp: any;
3984
+ ownerId: AcDbObjectId;
3985
+ extensionDictionary: AcDbObjectId | undefined;
3986
+ database: /*elided*/ any;
3987
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
3988
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
3989
+ removeXData: (appId: string) => void;
3990
+ createExtensionDictionary: () => AcDbObjectId | undefined;
3991
+ close: () => void;
3992
+ clone: () => import('@mlightcad/data-model').AcDbTextStyleTableRecord;
3993
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbTextStyleTableRecord;
3994
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbTextStyleTableRecord) => void;
3995
+ dxfOut: (...args: unknown[]) => unknown;
3996
+ }[];
3374
3997
  readonly fonts: string[];
3375
3998
  readonly numEntries: number;
3376
3999
  add: (record: import('@mlightcad/data-model').AcDbTextStyleTableRecord) => void;
@@ -3382,7 +4005,7 @@ export declare function useHover(): {
3382
4005
  getAt: (name: string) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
3383
4006
  getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
3384
4007
  getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
3385
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbTextStyleTableRecord>;
4008
+ newIterator: (iterateById?: boolean) => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbTextStyleTableRecord>;
3386
4009
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbTextStyleTable;
3387
4010
  readonly attrs: {
3388
4011
  attributes: {
@@ -3437,6 +4060,8 @@ export declare function useHover(): {
3437
4060
  createExtensionDictionary: () => AcDbObjectId | undefined;
3438
4061
  close: () => void;
3439
4062
  clone: () => import('@mlightcad/data-model').AcDbTextStyleTable;
4063
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbTextStyleTable;
4064
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbTextStyleTable) => void;
3440
4065
  dxfOut: (...args: unknown[]) => unknown;
3441
4066
  };
3442
4067
  readonly viewTable: {
@@ -3450,7 +4075,7 @@ export declare function useHover(): {
3450
4075
  getAt: (name: string) => import('@mlightcad/data-model').AcDbViewTableRecord | undefined;
3451
4076
  getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewTableRecord | undefined;
3452
4077
  getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewTableRecord | undefined;
3453
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbViewTableRecord>;
4078
+ newIterator: (iterateById?: boolean) => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbViewTableRecord>;
3454
4079
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbViewTable;
3455
4080
  readonly attrs: {
3456
4081
  attributes: {
@@ -3505,6 +4130,8 @@ export declare function useHover(): {
3505
4130
  createExtensionDictionary: () => AcDbObjectId | undefined;
3506
4131
  close: () => void;
3507
4132
  clone: () => import('@mlightcad/data-model').AcDbViewTable;
4133
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbViewTable;
4134
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbViewTable) => void;
3508
4135
  dxfOut: (...args: unknown[]) => unknown;
3509
4136
  };
3510
4137
  readonly layerTable: {
@@ -3518,7 +4145,7 @@ export declare function useHover(): {
3518
4145
  getAt: (name: string) => import('@mlightcad/data-model').AcDbLayerTableRecord | undefined;
3519
4146
  getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayerTableRecord | undefined;
3520
4147
  getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayerTableRecord | undefined;
3521
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLayerTableRecord>;
4148
+ newIterator: (iterateById?: boolean) => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLayerTableRecord>;
3522
4149
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbLayerTable;
3523
4150
  readonly attrs: {
3524
4151
  attributes: {
@@ -3573,9 +4200,13 @@ export declare function useHover(): {
3573
4200
  createExtensionDictionary: () => AcDbObjectId | undefined;
3574
4201
  close: () => void;
3575
4202
  clone: () => import('@mlightcad/data-model').AcDbLayerTable;
4203
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbLayerTable;
4204
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbLayerTable) => void;
3576
4205
  dxfOut: (...args: unknown[]) => unknown;
3577
4206
  };
3578
4207
  readonly viewportTable: {
4208
+ getActiveVport: () => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
4209
+ getActiveVportBox: (canvasAspectRatio: number, drawingExtents?: import('@mlightcad/data-model').AcGeBox2d) => import('@mlightcad/data-model').AcGeBox2d | undefined;
3579
4210
  readonly numEntries: number;
3580
4211
  add: (record: import('@mlightcad/data-model').AcDbViewportTableRecord) => void;
3581
4212
  remove: (name: string) => boolean;
@@ -3586,7 +4217,7 @@ export declare function useHover(): {
3586
4217
  getAt: (name: string) => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
3587
4218
  getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
3588
4219
  getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
3589
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbViewportTableRecord>;
4220
+ newIterator: (iterateById?: boolean) => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbViewportTableRecord>;
3590
4221
  dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbViewportTable;
3591
4222
  readonly attrs: {
3592
4223
  attributes: {
@@ -3641,6 +4272,8 @@ export declare function useHover(): {
3641
4272
  createExtensionDictionary: () => AcDbObjectId | undefined;
3642
4273
  close: () => void;
3643
4274
  clone: () => import('@mlightcad/data-model').AcDbViewportTable;
4275
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbViewportTable;
4276
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbViewportTable) => void;
3644
4277
  dxfOut: (...args: unknown[]) => unknown;
3645
4278
  };
3646
4279
  };
@@ -3711,6 +4344,8 @@ export declare function useHover(): {
3711
4344
  createExtensionDictionary: () => AcDbObjectId | undefined;
3712
4345
  close: () => void;
3713
4346
  clone: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>>>;
4347
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>>>;
4348
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>>>) => void;
3714
4349
  dxfOut: (...args: unknown[]) => unknown;
3715
4350
  };
3716
4351
  readonly imageDefinition: {
@@ -3779,6 +4414,8 @@ export declare function useHover(): {
3779
4414
  createExtensionDictionary: () => AcDbObjectId | undefined;
3780
4415
  close: () => void;
3781
4416
  clone: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbRasterImageDef>;
4417
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbRasterImageDef>;
4418
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbRasterImageDef>) => void;
3782
4419
  dxfOut: (...args: unknown[]) => unknown;
3783
4420
  };
3784
4421
  readonly layout: {
@@ -3849,6 +4486,8 @@ export declare function useHover(): {
3849
4486
  createExtensionDictionary: () => AcDbObjectId | undefined;
3850
4487
  close: () => void;
3851
4488
  clone: () => import('@mlightcad/data-model').AcDbLayoutDictionary;
4489
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbLayoutDictionary;
4490
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbLayoutDictionary) => void;
3852
4491
  dxfOut: (...args: unknown[]) => unknown;
3853
4492
  };
3854
4493
  readonly mleaderStyle: {
@@ -3917,6 +4556,8 @@ export declare function useHover(): {
3917
4556
  createExtensionDictionary: () => AcDbObjectId | undefined;
3918
4557
  close: () => void;
3919
4558
  clone: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbMLeaderStyle>;
4559
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbMLeaderStyle>;
4560
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbMLeaderStyle>) => void;
3920
4561
  dxfOut: (...args: unknown[]) => unknown;
3921
4562
  };
3922
4563
  readonly mlineStyle: {
@@ -3985,6 +4626,8 @@ export declare function useHover(): {
3985
4626
  createExtensionDictionary: () => AcDbObjectId | undefined;
3986
4627
  close: () => void;
3987
4628
  clone: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbMlineStyle>;
4629
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbMlineStyle>;
4630
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbMlineStyle>) => void;
3988
4631
  dxfOut: (...args: unknown[]) => unknown;
3989
4632
  };
3990
4633
  readonly xrecord: {
@@ -4053,9 +4696,26 @@ export declare function useHover(): {
4053
4696
  createExtensionDictionary: () => AcDbObjectId | undefined;
4054
4697
  close: () => void;
4055
4698
  clone: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbXrecord>;
4699
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbXrecord>;
4700
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbXrecord>) => void;
4056
4701
  dxfOut: (...args: unknown[]) => unknown;
4057
4702
  };
4058
4703
  };
4704
+ getObjectById: (id: AcDbObjectId, _openErased?: boolean) => import('@mlightcad/data-model').AcDbObject | undefined;
4705
+ isUndoRecording: () => boolean;
4706
+ openObjectForRead: <T extends import('@mlightcad/data-model').AcDbObject>(objectId: AcDbObjectId) => T | undefined;
4707
+ openObjectForWrite: <T extends import('@mlightcad/data-model').AcDbObject>(objectId: AcDbObjectId) => T | undefined;
4708
+ openEntityForRead: (entityOrId: AcDbObjectId | AcDbEntity) => AcDbEntity | undefined;
4709
+ openEntityForWrite: (entityOrId: AcDbObjectId | AcDbEntity) => AcDbEntity | undefined;
4710
+ runDatabaseEdit: (label: string, fn: () => void) => void;
4711
+ getRootDictionaries: () => import('@mlightcad/data-model').AcDbDictionary[];
4712
+ beginEventBatch: () => void;
4713
+ endEventBatch: () => void;
4714
+ isEventBatched: () => boolean;
4715
+ notifyEntityAppended: (entity: AcDbEntity | AcDbEntity[]) => void;
4716
+ notifyEntityErased: (entity: AcDbEntity | AcDbEntity[]) => void;
4717
+ notifyDictObjectSet: (object: import('@mlightcad/data-model').AcDbObject, key: string) => void;
4718
+ notifyDictObjectErased: (object: import('@mlightcad/data-model').AcDbObject, key: string) => void;
4059
4719
  readonly formatter: {
4060
4720
  formatLength: (value: number, options?: import('@mlightcad/data-model').AcDbFormatterOptions) => string;
4061
4721
  formatPoint2d: (point: import('@mlightcad/data-model').AcGePoint2d, options?: import('@mlightcad/data-model').AcDbFormatterOptions) => string;
@@ -4079,6 +4739,10 @@ export declare function useHover(): {
4079
4739
  measurement: number;
4080
4740
  ltscale: number;
4081
4741
  lwdisplay: boolean;
4742
+ readonly drawNoPlotLayers: boolean;
4743
+ readonly dwgname: string;
4744
+ setDwgName: (value: string) => void;
4745
+ isLayerDrawable: (layerName: string) => boolean;
4082
4746
  cecolor: {
4083
4747
  colorMethod: import('@mlightcad/data-model').AcCmColorMethod;
4084
4748
  readonly red: number | undefined;
@@ -4721,6 +5385,8 @@ export declare function useHover(): {
4721
5385
  createExtensionDictionary: () => AcDbObjectId | undefined;
4722
5386
  close: () => void;
4723
5387
  clone: () => import('@mlightcad/data-model').AcDbDatabase;
5388
+ clonePreservingIdentity: () => import('@mlightcad/data-model').AcDbDatabase;
5389
+ restoreFrom: (snapshot: import('@mlightcad/data-model').AcDbDatabase) => void;
4724
5390
  dxfOutFields: (_filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbDatabase;
4725
5391
  };
4726
5392
  getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
@@ -4729,6 +5395,8 @@ export declare function useHover(): {
4729
5395
  createExtensionDictionary: () => AcDbObjectId | undefined;
4730
5396
  close: () => void;
4731
5397
  clone: () => AcDbEntity;
5398
+ clonePreservingIdentity: () => AcDbEntity;
5399
+ restoreFrom: (snapshot: AcDbEntity) => void;
4732
5400
  dxfOut: (...args: unknown[]) => unknown;
4733
5401
  } | null>;
4734
5402
  id: import('vue').Ref<string | null, string | null>;