@mlightcad/cad-viewer 1.4.7 → 1.4.9

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 (43) hide show
  1. package/README.md +1 -1
  2. package/dist/command/AcApLayerStateCmd.d.ts +1 -1
  3. package/dist/command/AcApLayerStateCmd.d.ts.map +1 -1
  4. package/dist/command/AcApMissedDataCmd.d.ts +1 -1
  5. package/dist/command/AcApMissedDataCmd.d.ts.map +1 -1
  6. package/dist/command/AcApPointStyleCmd.d.ts +1 -1
  7. package/dist/command/AcApPointStyleCmd.d.ts.map +1 -1
  8. package/dist/component/MlCadViewer.vue.d.ts +11 -0
  9. package/dist/component/MlCadViewer.vue.d.ts.map +1 -1
  10. package/dist/component/common/MlBaseDrawStyleToolbar.vue.d.ts +60 -0
  11. package/dist/component/common/MlBaseDrawStyleToolbar.vue.d.ts.map +1 -0
  12. package/dist/component/common/MlColorIndexPicker.vue.d.ts.map +1 -1
  13. package/dist/component/common/MlLineWeightSelect.vue.d.ts +22 -0
  14. package/dist/component/common/MlLineWeightSelect.vue.d.ts.map +1 -0
  15. package/dist/component/common/index.d.ts +2 -0
  16. package/dist/component/common/index.d.ts.map +1 -1
  17. package/dist/component/layout/MlEntityDrawStyleToolbar.vue.d.ts +43 -0
  18. package/dist/component/layout/MlEntityDrawStyleToolbar.vue.d.ts.map +1 -0
  19. package/dist/component/layout/MlLayerDrawStyleToolbar.vue.d.ts +36 -0
  20. package/dist/component/layout/MlLayerDrawStyleToolbar.vue.d.ts.map +1 -0
  21. package/dist/component/layout/MlToolBars.vue.d.ts.map +1 -1
  22. package/dist/component/layout/index.d.ts +2 -0
  23. package/dist/component/layout/index.d.ts.map +1 -1
  24. package/dist/component/palette/MlLayerList.vue.d.ts.map +1 -1
  25. package/dist/composable/index.d.ts +2 -0
  26. package/dist/composable/index.d.ts.map +1 -1
  27. package/dist/composable/useDocOpenMode.d.ts +3 -0
  28. package/dist/composable/useDocOpenMode.d.ts.map +1 -0
  29. package/dist/composable/useEntityDrawStyle.d.ts +32 -0
  30. package/dist/composable/useEntityDrawStyle.d.ts.map +1 -0
  31. package/dist/composable/useHover.d.ts +554 -14
  32. package/dist/composable/useHover.d.ts.map +1 -1
  33. package/dist/composable/useLayers.d.ts +8 -1
  34. package/dist/composable/useLayers.d.ts.map +1 -1
  35. package/dist/index.css +1 -1
  36. package/dist/index.js +2912 -2123
  37. package/dist/locale/en/main.d.ts +40 -4
  38. package/dist/locale/en/main.d.ts.map +1 -1
  39. package/dist/locale/zh/main.d.ts +40 -4
  40. package/dist/locale/zh/main.d.ts.map +1 -1
  41. package/dist/svg/index.d.ts +8 -0
  42. package/dist/svg/index.d.ts.map +1 -1
  43. package/package.json +6 -6
@@ -108,6 +108,7 @@ export declare function useHover(): {
108
108
  equals: (other: import('@mlightcad/data-model').AcCmTransparency) => boolean;
109
109
  toString: () => string;
110
110
  };
111
+ resolveEffectiveProperties: () => void;
111
112
  readonly properties: {
112
113
  type: string;
113
114
  groups: {
@@ -498,11 +499,13 @@ export declare function useHover(): {
498
499
  [x: string]: any;
499
500
  objectId?: AcDbObjectId | undefined;
500
501
  ownerId?: AcDbObjectId | undefined;
502
+ extensionDictionary?: AcDbObjectId | undefined;
501
503
  };
502
504
  changed: {
503
505
  [x: string]: any;
504
506
  objectId?: AcDbObjectId | undefined;
505
507
  ownerId?: AcDbObjectId | undefined;
508
+ extensionDictionary?: AcDbObjectId | undefined;
506
509
  };
507
510
  readonly events: {
508
511
  attrChanged: {
@@ -535,6 +538,7 @@ export declare function useHover(): {
535
538
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
536
539
  objectId: AcDbObjectId;
537
540
  ownerId: AcDbObjectId;
541
+ extensionDictionary: AcDbObjectId | undefined;
538
542
  database: {
539
543
  readonly events: {
540
544
  dictObjetSet: {
@@ -599,6 +603,70 @@ export declare function useHover(): {
599
603
  };
600
604
  };
601
605
  readonly tables: {
606
+ readonly appIdTable: {
607
+ readonly numEntries: number;
608
+ add: (record: import('@mlightcad/data-model').AcDbRegAppTableRecord) => void;
609
+ remove: (name: string) => boolean;
610
+ removeId: (id: AcDbObjectId) => boolean;
611
+ removeAll: () => void;
612
+ has: (name: string) => boolean;
613
+ hasId: (id: string) => boolean;
614
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbRegAppTableRecord | undefined;
615
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRegAppTableRecord | undefined;
616
+ getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRegAppTableRecord | undefined;
617
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbRegAppTableRecord>;
618
+ readonly attrs: {
619
+ attributes: {
620
+ [x: string]: any;
621
+ objectId?: AcDbObjectId | undefined;
622
+ ownerId?: AcDbObjectId | undefined;
623
+ extensionDictionary?: AcDbObjectId | undefined;
624
+ };
625
+ changed: {
626
+ [x: string]: any;
627
+ objectId?: AcDbObjectId | undefined;
628
+ ownerId?: AcDbObjectId | undefined;
629
+ extensionDictionary?: AcDbObjectId | undefined;
630
+ };
631
+ readonly events: {
632
+ attrChanged: {
633
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
634
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
635
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
636
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
637
+ };
638
+ modelChanged: {
639
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
640
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
641
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
642
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
643
+ };
644
+ };
645
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
646
+ set: {
647
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
648
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
649
+ };
650
+ has: (key: string) => boolean;
651
+ hasChanged: (key?: string | undefined) => boolean;
652
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
653
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
654
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
655
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
656
+ };
657
+ getAttr: (attrName: string) => any;
658
+ getAttrWithoutException: (attrName: string) => any;
659
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
660
+ objectId: AcDbObjectId;
661
+ ownerId: AcDbObjectId;
662
+ extensionDictionary: AcDbObjectId | undefined;
663
+ database: /*elided*/ any;
664
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
665
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
666
+ removeXData: (appId: string) => void;
667
+ createExtensionDictionary: () => AcDbObjectId | undefined;
668
+ close: () => void;
669
+ };
602
670
  readonly blockTable: {
603
671
  readonly modelSpace: {
604
672
  readonly isModelSapce: boolean;
@@ -686,12 +754,14 @@ export declare function useHover(): {
686
754
  name?: string | undefined;
687
755
  objectId?: AcDbObjectId | undefined;
688
756
  ownerId?: AcDbObjectId | undefined;
757
+ extensionDictionary?: AcDbObjectId | undefined;
689
758
  };
690
759
  changed: {
691
760
  [x: string]: any;
692
761
  name?: string | undefined;
693
762
  objectId?: AcDbObjectId | undefined;
694
763
  ownerId?: AcDbObjectId | undefined;
764
+ extensionDictionary?: AcDbObjectId | undefined;
695
765
  };
696
766
  readonly events: {
697
767
  attrChanged: {
@@ -724,7 +794,12 @@ export declare function useHover(): {
724
794
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | undefined) => void;
725
795
  objectId: AcDbObjectId;
726
796
  ownerId: AcDbObjectId;
797
+ extensionDictionary: AcDbObjectId | undefined;
727
798
  database: /*elided*/ any;
799
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
800
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
801
+ removeXData: (appId: string) => void;
802
+ createExtensionDictionary: () => AcDbObjectId | undefined;
728
803
  close: () => void;
729
804
  };
730
805
  getEntityById: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbEntity | undefined;
@@ -745,11 +820,13 @@ export declare function useHover(): {
745
820
  [x: string]: any;
746
821
  objectId?: AcDbObjectId | undefined;
747
822
  ownerId?: AcDbObjectId | undefined;
823
+ extensionDictionary?: AcDbObjectId | undefined;
748
824
  };
749
825
  changed: {
750
826
  [x: string]: any;
751
827
  objectId?: AcDbObjectId | undefined;
752
828
  ownerId?: AcDbObjectId | undefined;
829
+ extensionDictionary?: AcDbObjectId | undefined;
753
830
  };
754
831
  readonly events: {
755
832
  attrChanged: {
@@ -782,7 +859,12 @@ export declare function useHover(): {
782
859
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
783
860
  objectId: AcDbObjectId;
784
861
  ownerId: AcDbObjectId;
862
+ extensionDictionary: AcDbObjectId | undefined;
785
863
  database: /*elided*/ any;
864
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
865
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
866
+ removeXData: (appId: string) => void;
867
+ createExtensionDictionary: () => AcDbObjectId | undefined;
786
868
  close: () => void;
787
869
  };
788
870
  readonly dimStyleTable: {
@@ -802,11 +884,13 @@ export declare function useHover(): {
802
884
  [x: string]: any;
803
885
  objectId?: AcDbObjectId | undefined;
804
886
  ownerId?: AcDbObjectId | undefined;
887
+ extensionDictionary?: AcDbObjectId | undefined;
805
888
  };
806
889
  changed: {
807
890
  [x: string]: any;
808
891
  objectId?: AcDbObjectId | undefined;
809
892
  ownerId?: AcDbObjectId | undefined;
893
+ extensionDictionary?: AcDbObjectId | undefined;
810
894
  };
811
895
  readonly events: {
812
896
  attrChanged: {
@@ -839,7 +923,12 @@ export declare function useHover(): {
839
923
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
840
924
  objectId: AcDbObjectId;
841
925
  ownerId: AcDbObjectId;
926
+ extensionDictionary: AcDbObjectId | undefined;
842
927
  database: /*elided*/ any;
928
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
929
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
930
+ removeXData: (appId: string) => void;
931
+ createExtensionDictionary: () => AcDbObjectId | undefined;
843
932
  close: () => void;
844
933
  };
845
934
  readonly linetypeTable: {
@@ -859,11 +948,13 @@ export declare function useHover(): {
859
948
  [x: string]: any;
860
949
  objectId?: AcDbObjectId | undefined;
861
950
  ownerId?: AcDbObjectId | undefined;
951
+ extensionDictionary?: AcDbObjectId | undefined;
862
952
  };
863
953
  changed: {
864
954
  [x: string]: any;
865
955
  objectId?: AcDbObjectId | undefined;
866
956
  ownerId?: AcDbObjectId | undefined;
957
+ extensionDictionary?: AcDbObjectId | undefined;
867
958
  };
868
959
  readonly events: {
869
960
  attrChanged: {
@@ -896,7 +987,12 @@ export declare function useHover(): {
896
987
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
897
988
  objectId: AcDbObjectId;
898
989
  ownerId: AcDbObjectId;
990
+ extensionDictionary: AcDbObjectId | undefined;
899
991
  database: /*elided*/ any;
992
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
993
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
994
+ removeXData: (appId: string) => void;
995
+ createExtensionDictionary: () => AcDbObjectId | undefined;
900
996
  close: () => void;
901
997
  };
902
998
  readonly textStyleTable: {
@@ -917,11 +1013,13 @@ export declare function useHover(): {
917
1013
  [x: string]: any;
918
1014
  objectId?: AcDbObjectId | undefined;
919
1015
  ownerId?: AcDbObjectId | undefined;
1016
+ extensionDictionary?: AcDbObjectId | undefined;
920
1017
  };
921
1018
  changed: {
922
1019
  [x: string]: any;
923
1020
  objectId?: AcDbObjectId | undefined;
924
1021
  ownerId?: AcDbObjectId | undefined;
1022
+ extensionDictionary?: AcDbObjectId | undefined;
925
1023
  };
926
1024
  readonly events: {
927
1025
  attrChanged: {
@@ -954,7 +1052,12 @@ export declare function useHover(): {
954
1052
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
955
1053
  objectId: AcDbObjectId;
956
1054
  ownerId: AcDbObjectId;
1055
+ extensionDictionary: AcDbObjectId | undefined;
957
1056
  database: /*elided*/ any;
1057
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
1058
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
1059
+ removeXData: (appId: string) => void;
1060
+ createExtensionDictionary: () => AcDbObjectId | undefined;
958
1061
  close: () => void;
959
1062
  };
960
1063
  readonly layerTable: {
@@ -974,11 +1077,13 @@ export declare function useHover(): {
974
1077
  [x: string]: any;
975
1078
  objectId?: AcDbObjectId | undefined;
976
1079
  ownerId?: AcDbObjectId | undefined;
1080
+ extensionDictionary?: AcDbObjectId | undefined;
977
1081
  };
978
1082
  changed: {
979
1083
  [x: string]: any;
980
1084
  objectId?: AcDbObjectId | undefined;
981
1085
  ownerId?: AcDbObjectId | undefined;
1086
+ extensionDictionary?: AcDbObjectId | undefined;
982
1087
  };
983
1088
  readonly events: {
984
1089
  attrChanged: {
@@ -1011,7 +1116,12 @@ export declare function useHover(): {
1011
1116
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
1012
1117
  objectId: AcDbObjectId;
1013
1118
  ownerId: AcDbObjectId;
1119
+ extensionDictionary: AcDbObjectId | undefined;
1014
1120
  database: /*elided*/ any;
1121
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
1122
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
1123
+ removeXData: (appId: string) => void;
1124
+ createExtensionDictionary: () => AcDbObjectId | undefined;
1015
1125
  close: () => void;
1016
1126
  };
1017
1127
  readonly viewportTable: {
@@ -1031,11 +1141,13 @@ export declare function useHover(): {
1031
1141
  [x: string]: any;
1032
1142
  objectId?: AcDbObjectId | undefined;
1033
1143
  ownerId?: AcDbObjectId | undefined;
1144
+ extensionDictionary?: AcDbObjectId | undefined;
1034
1145
  };
1035
1146
  changed: {
1036
1147
  [x: string]: any;
1037
1148
  objectId?: AcDbObjectId | undefined;
1038
1149
  ownerId?: AcDbObjectId | undefined;
1150
+ extensionDictionary?: AcDbObjectId | undefined;
1039
1151
  };
1040
1152
  readonly events: {
1041
1153
  attrChanged: {
@@ -1068,12 +1180,143 @@ export declare function useHover(): {
1068
1180
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
1069
1181
  objectId: AcDbObjectId;
1070
1182
  ownerId: AcDbObjectId;
1183
+ extensionDictionary: AcDbObjectId | undefined;
1071
1184
  database: /*elided*/ any;
1185
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
1186
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
1187
+ removeXData: (appId: string) => void;
1188
+ createExtensionDictionary: () => AcDbObjectId | undefined;
1072
1189
  close: () => void;
1073
1190
  };
1074
1191
  };
1075
- readonly dictionaries: {
1076
- readonly layouts: {
1192
+ readonly objects: {
1193
+ readonly dictionary: {
1194
+ readonly numEntries: number;
1195
+ setAt: (key: string, value: import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>>) => void;
1196
+ remove: (name: string) => boolean;
1197
+ removeId: (id: string) => boolean;
1198
+ removeAll: () => void;
1199
+ has: (name: string) => boolean;
1200
+ hasId: (id: string) => boolean;
1201
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>> | undefined;
1202
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>> | undefined;
1203
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>>>;
1204
+ readonly attrs: {
1205
+ attributes: {
1206
+ [x: string]: any;
1207
+ objectId?: AcDbObjectId | undefined;
1208
+ ownerId?: AcDbObjectId | undefined;
1209
+ extensionDictionary?: AcDbObjectId | undefined;
1210
+ };
1211
+ changed: {
1212
+ [x: string]: any;
1213
+ objectId?: AcDbObjectId | undefined;
1214
+ ownerId?: AcDbObjectId | undefined;
1215
+ extensionDictionary?: AcDbObjectId | undefined;
1216
+ };
1217
+ readonly events: {
1218
+ attrChanged: {
1219
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1220
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1221
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1222
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
1223
+ };
1224
+ modelChanged: {
1225
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1226
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1227
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1228
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
1229
+ };
1230
+ };
1231
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
1232
+ set: {
1233
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
1234
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
1235
+ };
1236
+ has: (key: string) => boolean;
1237
+ hasChanged: (key?: string | undefined) => boolean;
1238
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
1239
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
1240
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
1241
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
1242
+ };
1243
+ getAttr: (attrName: string) => any;
1244
+ getAttrWithoutException: (attrName: string) => any;
1245
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
1246
+ objectId: AcDbObjectId;
1247
+ ownerId: AcDbObjectId;
1248
+ extensionDictionary: AcDbObjectId | undefined;
1249
+ database: /*elided*/ any;
1250
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
1251
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
1252
+ removeXData: (appId: string) => void;
1253
+ createExtensionDictionary: () => AcDbObjectId | undefined;
1254
+ close: () => void;
1255
+ };
1256
+ readonly imageDefinition: {
1257
+ readonly numEntries: number;
1258
+ setAt: (key: string, value: import('@mlightcad/data-model').AcDbRasterImageDef) => void;
1259
+ remove: (name: string) => boolean;
1260
+ removeId: (id: string) => boolean;
1261
+ removeAll: () => void;
1262
+ has: (name: string) => boolean;
1263
+ hasId: (id: string) => boolean;
1264
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbRasterImageDef | undefined;
1265
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRasterImageDef | undefined;
1266
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbRasterImageDef>;
1267
+ readonly attrs: {
1268
+ attributes: {
1269
+ [x: string]: any;
1270
+ objectId?: AcDbObjectId | undefined;
1271
+ ownerId?: AcDbObjectId | undefined;
1272
+ extensionDictionary?: AcDbObjectId | undefined;
1273
+ };
1274
+ changed: {
1275
+ [x: string]: any;
1276
+ objectId?: AcDbObjectId | undefined;
1277
+ ownerId?: AcDbObjectId | undefined;
1278
+ extensionDictionary?: AcDbObjectId | undefined;
1279
+ };
1280
+ readonly events: {
1281
+ attrChanged: {
1282
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1283
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1284
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1285
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
1286
+ };
1287
+ modelChanged: {
1288
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1289
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1290
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1291
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
1292
+ };
1293
+ };
1294
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
1295
+ set: {
1296
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
1297
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
1298
+ };
1299
+ has: (key: string) => boolean;
1300
+ hasChanged: (key?: string | undefined) => boolean;
1301
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
1302
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
1303
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
1304
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
1305
+ };
1306
+ getAttr: (attrName: string) => any;
1307
+ getAttrWithoutException: (attrName: string) => any;
1308
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
1309
+ objectId: AcDbObjectId;
1310
+ ownerId: AcDbObjectId;
1311
+ extensionDictionary: AcDbObjectId | undefined;
1312
+ database: /*elided*/ any;
1313
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
1314
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
1315
+ removeXData: (appId: string) => void;
1316
+ createExtensionDictionary: () => AcDbObjectId | undefined;
1317
+ close: () => void;
1318
+ };
1319
+ readonly layout: {
1077
1320
  getBtrIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayout | undefined;
1078
1321
  readonly maxTabOrder: number;
1079
1322
  readonly numEntries: number;
@@ -1091,11 +1334,13 @@ export declare function useHover(): {
1091
1334
  [x: string]: any;
1092
1335
  objectId?: AcDbObjectId | undefined;
1093
1336
  ownerId?: AcDbObjectId | undefined;
1337
+ extensionDictionary?: AcDbObjectId | undefined;
1094
1338
  };
1095
1339
  changed: {
1096
1340
  [x: string]: any;
1097
1341
  objectId?: AcDbObjectId | undefined;
1098
1342
  ownerId?: AcDbObjectId | undefined;
1343
+ extensionDictionary?: AcDbObjectId | undefined;
1099
1344
  };
1100
1345
  readonly events: {
1101
1346
  attrChanged: {
@@ -1128,30 +1373,37 @@ export declare function useHover(): {
1128
1373
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
1129
1374
  objectId: AcDbObjectId;
1130
1375
  ownerId: AcDbObjectId;
1376
+ extensionDictionary: AcDbObjectId | undefined;
1131
1377
  database: /*elided*/ any;
1378
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
1379
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
1380
+ removeXData: (appId: string) => void;
1381
+ createExtensionDictionary: () => AcDbObjectId | undefined;
1132
1382
  close: () => void;
1133
1383
  };
1134
- readonly imageDefs: {
1384
+ readonly xrecord: {
1135
1385
  readonly numEntries: number;
1136
- setAt: (key: string, value: import('@mlightcad/data-model').AcDbRasterImageDef) => void;
1386
+ setAt: (key: string, value: import('@mlightcad/data-model').AcDbXrecord) => void;
1137
1387
  remove: (name: string) => boolean;
1138
1388
  removeId: (id: string) => boolean;
1139
1389
  removeAll: () => void;
1140
1390
  has: (name: string) => boolean;
1141
1391
  hasId: (id: string) => boolean;
1142
- getAt: (name: string) => import('@mlightcad/data-model').AcDbRasterImageDef | undefined;
1143
- getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRasterImageDef | undefined;
1144
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbRasterImageDef>;
1392
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbXrecord | undefined;
1393
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbXrecord | undefined;
1394
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbXrecord>;
1145
1395
  readonly attrs: {
1146
1396
  attributes: {
1147
1397
  [x: string]: any;
1148
1398
  objectId?: AcDbObjectId | undefined;
1149
1399
  ownerId?: AcDbObjectId | undefined;
1400
+ extensionDictionary?: AcDbObjectId | undefined;
1150
1401
  };
1151
1402
  changed: {
1152
1403
  [x: string]: any;
1153
1404
  objectId?: AcDbObjectId | undefined;
1154
1405
  ownerId?: AcDbObjectId | undefined;
1406
+ extensionDictionary?: AcDbObjectId | undefined;
1155
1407
  };
1156
1408
  readonly events: {
1157
1409
  attrChanged: {
@@ -1184,7 +1436,12 @@ export declare function useHover(): {
1184
1436
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
1185
1437
  objectId: AcDbObjectId;
1186
1438
  ownerId: AcDbObjectId;
1439
+ extensionDictionary: AcDbObjectId | undefined;
1187
1440
  database: /*elided*/ any;
1441
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
1442
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
1443
+ removeXData: (appId: string) => void;
1444
+ createExtensionDictionary: () => AcDbObjectId | undefined;
1188
1445
  close: () => void;
1189
1446
  };
1190
1447
  };
@@ -1222,6 +1479,8 @@ export declare function useHover(): {
1222
1479
  toString: () => string;
1223
1480
  };
1224
1481
  celtscale: number;
1482
+ celweight: import('@mlightcad/data-model').AcGiLineWeight;
1483
+ clayer: string;
1225
1484
  angBase: number;
1226
1485
  angDir: number;
1227
1486
  extmax: {
@@ -1688,11 +1947,13 @@ export declare function useHover(): {
1688
1947
  [x: string]: any;
1689
1948
  objectId?: AcDbObjectId | undefined;
1690
1949
  ownerId?: AcDbObjectId | undefined;
1950
+ extensionDictionary?: AcDbObjectId | undefined;
1691
1951
  };
1692
1952
  changed: {
1693
1953
  [x: string]: any;
1694
1954
  objectId?: AcDbObjectId | undefined;
1695
1955
  ownerId?: AcDbObjectId | undefined;
1956
+ extensionDictionary?: AcDbObjectId | undefined;
1696
1957
  };
1697
1958
  readonly events: {
1698
1959
  attrChanged: {
@@ -1725,9 +1986,18 @@ export declare function useHover(): {
1725
1986
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
1726
1987
  objectId: AcDbObjectId;
1727
1988
  ownerId: AcDbObjectId;
1989
+ extensionDictionary: AcDbObjectId | undefined;
1728
1990
  database: /*elided*/ any;
1991
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
1992
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
1993
+ removeXData: (appId: string) => void;
1994
+ createExtensionDictionary: () => AcDbObjectId | undefined;
1729
1995
  close: () => void;
1730
1996
  };
1997
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
1998
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
1999
+ removeXData: (appId: string) => void;
2000
+ createExtensionDictionary: () => AcDbObjectId | undefined;
1731
2001
  close: () => void;
1732
2002
  } | null, AcDbEntity | {
1733
2003
  readonly type: string;
@@ -1777,6 +2047,7 @@ export declare function useHover(): {
1777
2047
  equals: (other: import('@mlightcad/data-model').AcCmTransparency) => boolean;
1778
2048
  toString: () => string;
1779
2049
  };
2050
+ resolveEffectiveProperties: () => void;
1780
2051
  readonly properties: {
1781
2052
  type: string;
1782
2053
  groups: {
@@ -2167,11 +2438,13 @@ export declare function useHover(): {
2167
2438
  [x: string]: any;
2168
2439
  objectId?: AcDbObjectId | undefined;
2169
2440
  ownerId?: AcDbObjectId | undefined;
2441
+ extensionDictionary?: AcDbObjectId | undefined;
2170
2442
  };
2171
2443
  changed: {
2172
2444
  [x: string]: any;
2173
2445
  objectId?: AcDbObjectId | undefined;
2174
2446
  ownerId?: AcDbObjectId | undefined;
2447
+ extensionDictionary?: AcDbObjectId | undefined;
2175
2448
  };
2176
2449
  readonly events: {
2177
2450
  attrChanged: {
@@ -2204,6 +2477,7 @@ export declare function useHover(): {
2204
2477
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2205
2478
  objectId: AcDbObjectId;
2206
2479
  ownerId: AcDbObjectId;
2480
+ extensionDictionary: AcDbObjectId | undefined;
2207
2481
  database: {
2208
2482
  readonly events: {
2209
2483
  dictObjetSet: {
@@ -2268,6 +2542,70 @@ export declare function useHover(): {
2268
2542
  };
2269
2543
  };
2270
2544
  readonly tables: {
2545
+ readonly appIdTable: {
2546
+ readonly numEntries: number;
2547
+ add: (record: import('@mlightcad/data-model').AcDbRegAppTableRecord) => void;
2548
+ remove: (name: string) => boolean;
2549
+ removeId: (id: AcDbObjectId) => boolean;
2550
+ removeAll: () => void;
2551
+ has: (name: string) => boolean;
2552
+ hasId: (id: string) => boolean;
2553
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbRegAppTableRecord | undefined;
2554
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRegAppTableRecord | undefined;
2555
+ getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRegAppTableRecord | undefined;
2556
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbRegAppTableRecord>;
2557
+ readonly attrs: {
2558
+ attributes: {
2559
+ [x: string]: any;
2560
+ objectId?: AcDbObjectId | undefined;
2561
+ ownerId?: AcDbObjectId | undefined;
2562
+ extensionDictionary?: AcDbObjectId | undefined;
2563
+ };
2564
+ changed: {
2565
+ [x: string]: any;
2566
+ objectId?: AcDbObjectId | undefined;
2567
+ ownerId?: AcDbObjectId | undefined;
2568
+ extensionDictionary?: AcDbObjectId | undefined;
2569
+ };
2570
+ readonly events: {
2571
+ attrChanged: {
2572
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2573
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2574
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2575
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2576
+ };
2577
+ modelChanged: {
2578
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2579
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2580
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2581
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2582
+ };
2583
+ };
2584
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
2585
+ set: {
2586
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2587
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2588
+ };
2589
+ has: (key: string) => boolean;
2590
+ hasChanged: (key?: string | undefined) => boolean;
2591
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2592
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
2593
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2594
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2595
+ };
2596
+ getAttr: (attrName: string) => any;
2597
+ getAttrWithoutException: (attrName: string) => any;
2598
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2599
+ objectId: AcDbObjectId;
2600
+ ownerId: AcDbObjectId;
2601
+ extensionDictionary: AcDbObjectId | undefined;
2602
+ database: /*elided*/ any;
2603
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
2604
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
2605
+ removeXData: (appId: string) => void;
2606
+ createExtensionDictionary: () => AcDbObjectId | undefined;
2607
+ close: () => void;
2608
+ };
2271
2609
  readonly blockTable: {
2272
2610
  readonly modelSpace: {
2273
2611
  readonly isModelSapce: boolean;
@@ -2355,12 +2693,14 @@ export declare function useHover(): {
2355
2693
  name?: string | undefined;
2356
2694
  objectId?: AcDbObjectId | undefined;
2357
2695
  ownerId?: AcDbObjectId | undefined;
2696
+ extensionDictionary?: AcDbObjectId | undefined;
2358
2697
  };
2359
2698
  changed: {
2360
2699
  [x: string]: any;
2361
2700
  name?: string | undefined;
2362
2701
  objectId?: AcDbObjectId | undefined;
2363
2702
  ownerId?: AcDbObjectId | undefined;
2703
+ extensionDictionary?: AcDbObjectId | undefined;
2364
2704
  };
2365
2705
  readonly events: {
2366
2706
  attrChanged: {
@@ -2393,7 +2733,12 @@ export declare function useHover(): {
2393
2733
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | undefined) => void;
2394
2734
  objectId: AcDbObjectId;
2395
2735
  ownerId: AcDbObjectId;
2736
+ extensionDictionary: AcDbObjectId | undefined;
2396
2737
  database: /*elided*/ any;
2738
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
2739
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
2740
+ removeXData: (appId: string) => void;
2741
+ createExtensionDictionary: () => AcDbObjectId | undefined;
2397
2742
  close: () => void;
2398
2743
  };
2399
2744
  getEntityById: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbEntity | undefined;
@@ -2414,11 +2759,13 @@ export declare function useHover(): {
2414
2759
  [x: string]: any;
2415
2760
  objectId?: AcDbObjectId | undefined;
2416
2761
  ownerId?: AcDbObjectId | undefined;
2762
+ extensionDictionary?: AcDbObjectId | undefined;
2417
2763
  };
2418
2764
  changed: {
2419
2765
  [x: string]: any;
2420
2766
  objectId?: AcDbObjectId | undefined;
2421
2767
  ownerId?: AcDbObjectId | undefined;
2768
+ extensionDictionary?: AcDbObjectId | undefined;
2422
2769
  };
2423
2770
  readonly events: {
2424
2771
  attrChanged: {
@@ -2451,7 +2798,12 @@ export declare function useHover(): {
2451
2798
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2452
2799
  objectId: AcDbObjectId;
2453
2800
  ownerId: AcDbObjectId;
2801
+ extensionDictionary: AcDbObjectId | undefined;
2454
2802
  database: /*elided*/ any;
2803
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
2804
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
2805
+ removeXData: (appId: string) => void;
2806
+ createExtensionDictionary: () => AcDbObjectId | undefined;
2455
2807
  close: () => void;
2456
2808
  };
2457
2809
  readonly dimStyleTable: {
@@ -2471,11 +2823,13 @@ export declare function useHover(): {
2471
2823
  [x: string]: any;
2472
2824
  objectId?: AcDbObjectId | undefined;
2473
2825
  ownerId?: AcDbObjectId | undefined;
2826
+ extensionDictionary?: AcDbObjectId | undefined;
2474
2827
  };
2475
2828
  changed: {
2476
2829
  [x: string]: any;
2477
2830
  objectId?: AcDbObjectId | undefined;
2478
2831
  ownerId?: AcDbObjectId | undefined;
2832
+ extensionDictionary?: AcDbObjectId | undefined;
2479
2833
  };
2480
2834
  readonly events: {
2481
2835
  attrChanged: {
@@ -2508,7 +2862,12 @@ export declare function useHover(): {
2508
2862
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2509
2863
  objectId: AcDbObjectId;
2510
2864
  ownerId: AcDbObjectId;
2865
+ extensionDictionary: AcDbObjectId | undefined;
2511
2866
  database: /*elided*/ any;
2867
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
2868
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
2869
+ removeXData: (appId: string) => void;
2870
+ createExtensionDictionary: () => AcDbObjectId | undefined;
2512
2871
  close: () => void;
2513
2872
  };
2514
2873
  readonly linetypeTable: {
@@ -2528,11 +2887,13 @@ export declare function useHover(): {
2528
2887
  [x: string]: any;
2529
2888
  objectId?: AcDbObjectId | undefined;
2530
2889
  ownerId?: AcDbObjectId | undefined;
2890
+ extensionDictionary?: AcDbObjectId | undefined;
2531
2891
  };
2532
2892
  changed: {
2533
2893
  [x: string]: any;
2534
2894
  objectId?: AcDbObjectId | undefined;
2535
2895
  ownerId?: AcDbObjectId | undefined;
2896
+ extensionDictionary?: AcDbObjectId | undefined;
2536
2897
  };
2537
2898
  readonly events: {
2538
2899
  attrChanged: {
@@ -2565,7 +2926,12 @@ export declare function useHover(): {
2565
2926
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2566
2927
  objectId: AcDbObjectId;
2567
2928
  ownerId: AcDbObjectId;
2929
+ extensionDictionary: AcDbObjectId | undefined;
2568
2930
  database: /*elided*/ any;
2931
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
2932
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
2933
+ removeXData: (appId: string) => void;
2934
+ createExtensionDictionary: () => AcDbObjectId | undefined;
2569
2935
  close: () => void;
2570
2936
  };
2571
2937
  readonly textStyleTable: {
@@ -2586,11 +2952,13 @@ export declare function useHover(): {
2586
2952
  [x: string]: any;
2587
2953
  objectId?: AcDbObjectId | undefined;
2588
2954
  ownerId?: AcDbObjectId | undefined;
2955
+ extensionDictionary?: AcDbObjectId | undefined;
2589
2956
  };
2590
2957
  changed: {
2591
2958
  [x: string]: any;
2592
2959
  objectId?: AcDbObjectId | undefined;
2593
2960
  ownerId?: AcDbObjectId | undefined;
2961
+ extensionDictionary?: AcDbObjectId | undefined;
2594
2962
  };
2595
2963
  readonly events: {
2596
2964
  attrChanged: {
@@ -2623,7 +2991,12 @@ export declare function useHover(): {
2623
2991
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2624
2992
  objectId: AcDbObjectId;
2625
2993
  ownerId: AcDbObjectId;
2994
+ extensionDictionary: AcDbObjectId | undefined;
2626
2995
  database: /*elided*/ any;
2996
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
2997
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
2998
+ removeXData: (appId: string) => void;
2999
+ createExtensionDictionary: () => AcDbObjectId | undefined;
2627
3000
  close: () => void;
2628
3001
  };
2629
3002
  readonly layerTable: {
@@ -2643,11 +3016,13 @@ export declare function useHover(): {
2643
3016
  [x: string]: any;
2644
3017
  objectId?: AcDbObjectId | undefined;
2645
3018
  ownerId?: AcDbObjectId | undefined;
3019
+ extensionDictionary?: AcDbObjectId | undefined;
2646
3020
  };
2647
3021
  changed: {
2648
3022
  [x: string]: any;
2649
3023
  objectId?: AcDbObjectId | undefined;
2650
3024
  ownerId?: AcDbObjectId | undefined;
3025
+ extensionDictionary?: AcDbObjectId | undefined;
2651
3026
  };
2652
3027
  readonly events: {
2653
3028
  attrChanged: {
@@ -2680,7 +3055,12 @@ export declare function useHover(): {
2680
3055
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2681
3056
  objectId: AcDbObjectId;
2682
3057
  ownerId: AcDbObjectId;
3058
+ extensionDictionary: AcDbObjectId | undefined;
2683
3059
  database: /*elided*/ any;
3060
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
3061
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
3062
+ removeXData: (appId: string) => void;
3063
+ createExtensionDictionary: () => AcDbObjectId | undefined;
2684
3064
  close: () => void;
2685
3065
  };
2686
3066
  readonly viewportTable: {
@@ -2700,11 +3080,13 @@ export declare function useHover(): {
2700
3080
  [x: string]: any;
2701
3081
  objectId?: AcDbObjectId | undefined;
2702
3082
  ownerId?: AcDbObjectId | undefined;
3083
+ extensionDictionary?: AcDbObjectId | undefined;
2703
3084
  };
2704
3085
  changed: {
2705
3086
  [x: string]: any;
2706
3087
  objectId?: AcDbObjectId | undefined;
2707
3088
  ownerId?: AcDbObjectId | undefined;
3089
+ extensionDictionary?: AcDbObjectId | undefined;
2708
3090
  };
2709
3091
  readonly events: {
2710
3092
  attrChanged: {
@@ -2737,12 +3119,143 @@ export declare function useHover(): {
2737
3119
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2738
3120
  objectId: AcDbObjectId;
2739
3121
  ownerId: AcDbObjectId;
3122
+ extensionDictionary: AcDbObjectId | undefined;
2740
3123
  database: /*elided*/ any;
3124
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
3125
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
3126
+ removeXData: (appId: string) => void;
3127
+ createExtensionDictionary: () => AcDbObjectId | undefined;
2741
3128
  close: () => void;
2742
3129
  };
2743
3130
  };
2744
- readonly dictionaries: {
2745
- readonly layouts: {
3131
+ readonly objects: {
3132
+ readonly dictionary: {
3133
+ readonly numEntries: number;
3134
+ setAt: (key: string, value: import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>>) => void;
3135
+ remove: (name: string) => boolean;
3136
+ removeId: (id: string) => boolean;
3137
+ removeAll: () => void;
3138
+ has: (name: string) => boolean;
3139
+ hasId: (id: string) => boolean;
3140
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>> | undefined;
3141
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>> | undefined;
3142
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>>>;
3143
+ readonly attrs: {
3144
+ attributes: {
3145
+ [x: string]: any;
3146
+ objectId?: AcDbObjectId | undefined;
3147
+ ownerId?: AcDbObjectId | undefined;
3148
+ extensionDictionary?: AcDbObjectId | undefined;
3149
+ };
3150
+ changed: {
3151
+ [x: string]: any;
3152
+ objectId?: AcDbObjectId | undefined;
3153
+ ownerId?: AcDbObjectId | undefined;
3154
+ extensionDictionary?: AcDbObjectId | undefined;
3155
+ };
3156
+ readonly events: {
3157
+ attrChanged: {
3158
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3159
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3160
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3161
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
3162
+ };
3163
+ modelChanged: {
3164
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3165
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3166
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3167
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
3168
+ };
3169
+ };
3170
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
3171
+ set: {
3172
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
3173
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
3174
+ };
3175
+ has: (key: string) => boolean;
3176
+ hasChanged: (key?: string | undefined) => boolean;
3177
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
3178
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
3179
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
3180
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
3181
+ };
3182
+ getAttr: (attrName: string) => any;
3183
+ getAttrWithoutException: (attrName: string) => any;
3184
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
3185
+ objectId: AcDbObjectId;
3186
+ ownerId: AcDbObjectId;
3187
+ extensionDictionary: AcDbObjectId | undefined;
3188
+ database: /*elided*/ any;
3189
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
3190
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
3191
+ removeXData: (appId: string) => void;
3192
+ createExtensionDictionary: () => AcDbObjectId | undefined;
3193
+ close: () => void;
3194
+ };
3195
+ readonly imageDefinition: {
3196
+ readonly numEntries: number;
3197
+ setAt: (key: string, value: import('@mlightcad/data-model').AcDbRasterImageDef) => void;
3198
+ remove: (name: string) => boolean;
3199
+ removeId: (id: string) => boolean;
3200
+ removeAll: () => void;
3201
+ has: (name: string) => boolean;
3202
+ hasId: (id: string) => boolean;
3203
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbRasterImageDef | undefined;
3204
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRasterImageDef | undefined;
3205
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbRasterImageDef>;
3206
+ readonly attrs: {
3207
+ attributes: {
3208
+ [x: string]: any;
3209
+ objectId?: AcDbObjectId | undefined;
3210
+ ownerId?: AcDbObjectId | undefined;
3211
+ extensionDictionary?: AcDbObjectId | undefined;
3212
+ };
3213
+ changed: {
3214
+ [x: string]: any;
3215
+ objectId?: AcDbObjectId | undefined;
3216
+ ownerId?: AcDbObjectId | undefined;
3217
+ extensionDictionary?: AcDbObjectId | undefined;
3218
+ };
3219
+ readonly events: {
3220
+ attrChanged: {
3221
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3222
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3223
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3224
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
3225
+ };
3226
+ modelChanged: {
3227
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3228
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3229
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3230
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
3231
+ };
3232
+ };
3233
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
3234
+ set: {
3235
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
3236
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
3237
+ };
3238
+ has: (key: string) => boolean;
3239
+ hasChanged: (key?: string | undefined) => boolean;
3240
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
3241
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
3242
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
3243
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
3244
+ };
3245
+ getAttr: (attrName: string) => any;
3246
+ getAttrWithoutException: (attrName: string) => any;
3247
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
3248
+ objectId: AcDbObjectId;
3249
+ ownerId: AcDbObjectId;
3250
+ extensionDictionary: AcDbObjectId | undefined;
3251
+ database: /*elided*/ any;
3252
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
3253
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
3254
+ removeXData: (appId: string) => void;
3255
+ createExtensionDictionary: () => AcDbObjectId | undefined;
3256
+ close: () => void;
3257
+ };
3258
+ readonly layout: {
2746
3259
  getBtrIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayout | undefined;
2747
3260
  readonly maxTabOrder: number;
2748
3261
  readonly numEntries: number;
@@ -2760,11 +3273,13 @@ export declare function useHover(): {
2760
3273
  [x: string]: any;
2761
3274
  objectId?: AcDbObjectId | undefined;
2762
3275
  ownerId?: AcDbObjectId | undefined;
3276
+ extensionDictionary?: AcDbObjectId | undefined;
2763
3277
  };
2764
3278
  changed: {
2765
3279
  [x: string]: any;
2766
3280
  objectId?: AcDbObjectId | undefined;
2767
3281
  ownerId?: AcDbObjectId | undefined;
3282
+ extensionDictionary?: AcDbObjectId | undefined;
2768
3283
  };
2769
3284
  readonly events: {
2770
3285
  attrChanged: {
@@ -2797,30 +3312,37 @@ export declare function useHover(): {
2797
3312
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2798
3313
  objectId: AcDbObjectId;
2799
3314
  ownerId: AcDbObjectId;
3315
+ extensionDictionary: AcDbObjectId | undefined;
2800
3316
  database: /*elided*/ any;
3317
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
3318
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
3319
+ removeXData: (appId: string) => void;
3320
+ createExtensionDictionary: () => AcDbObjectId | undefined;
2801
3321
  close: () => void;
2802
3322
  };
2803
- readonly imageDefs: {
3323
+ readonly xrecord: {
2804
3324
  readonly numEntries: number;
2805
- setAt: (key: string, value: import('@mlightcad/data-model').AcDbRasterImageDef) => void;
3325
+ setAt: (key: string, value: import('@mlightcad/data-model').AcDbXrecord) => void;
2806
3326
  remove: (name: string) => boolean;
2807
3327
  removeId: (id: string) => boolean;
2808
3328
  removeAll: () => void;
2809
3329
  has: (name: string) => boolean;
2810
3330
  hasId: (id: string) => boolean;
2811
- getAt: (name: string) => import('@mlightcad/data-model').AcDbRasterImageDef | undefined;
2812
- getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRasterImageDef | undefined;
2813
- newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbRasterImageDef>;
3331
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbXrecord | undefined;
3332
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbXrecord | undefined;
3333
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbXrecord>;
2814
3334
  readonly attrs: {
2815
3335
  attributes: {
2816
3336
  [x: string]: any;
2817
3337
  objectId?: AcDbObjectId | undefined;
2818
3338
  ownerId?: AcDbObjectId | undefined;
3339
+ extensionDictionary?: AcDbObjectId | undefined;
2819
3340
  };
2820
3341
  changed: {
2821
3342
  [x: string]: any;
2822
3343
  objectId?: AcDbObjectId | undefined;
2823
3344
  ownerId?: AcDbObjectId | undefined;
3345
+ extensionDictionary?: AcDbObjectId | undefined;
2824
3346
  };
2825
3347
  readonly events: {
2826
3348
  attrChanged: {
@@ -2853,7 +3375,12 @@ export declare function useHover(): {
2853
3375
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2854
3376
  objectId: AcDbObjectId;
2855
3377
  ownerId: AcDbObjectId;
3378
+ extensionDictionary: AcDbObjectId | undefined;
2856
3379
  database: /*elided*/ any;
3380
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
3381
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
3382
+ removeXData: (appId: string) => void;
3383
+ createExtensionDictionary: () => AcDbObjectId | undefined;
2857
3384
  close: () => void;
2858
3385
  };
2859
3386
  };
@@ -2891,6 +3418,8 @@ export declare function useHover(): {
2891
3418
  toString: () => string;
2892
3419
  };
2893
3420
  celtscale: number;
3421
+ celweight: import('@mlightcad/data-model').AcGiLineWeight;
3422
+ clayer: string;
2894
3423
  angBase: number;
2895
3424
  angDir: number;
2896
3425
  extmax: {
@@ -3357,11 +3886,13 @@ export declare function useHover(): {
3357
3886
  [x: string]: any;
3358
3887
  objectId?: AcDbObjectId | undefined;
3359
3888
  ownerId?: AcDbObjectId | undefined;
3889
+ extensionDictionary?: AcDbObjectId | undefined;
3360
3890
  };
3361
3891
  changed: {
3362
3892
  [x: string]: any;
3363
3893
  objectId?: AcDbObjectId | undefined;
3364
3894
  ownerId?: AcDbObjectId | undefined;
3895
+ extensionDictionary?: AcDbObjectId | undefined;
3365
3896
  };
3366
3897
  readonly events: {
3367
3898
  attrChanged: {
@@ -3394,9 +3925,18 @@ export declare function useHover(): {
3394
3925
  setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
3395
3926
  objectId: AcDbObjectId;
3396
3927
  ownerId: AcDbObjectId;
3928
+ extensionDictionary: AcDbObjectId | undefined;
3397
3929
  database: /*elided*/ any;
3930
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
3931
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
3932
+ removeXData: (appId: string) => void;
3933
+ createExtensionDictionary: () => AcDbObjectId | undefined;
3398
3934
  close: () => void;
3399
3935
  };
3936
+ getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
3937
+ setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
3938
+ removeXData: (appId: string) => void;
3939
+ createExtensionDictionary: () => AcDbObjectId | undefined;
3400
3940
  close: () => void;
3401
3941
  } | null>;
3402
3942
  id: import('vue').Ref<string | null, string | null>;