@mlightcad/cad-viewer 1.4.11 → 1.4.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/component/common/MlSysVarToggleButton.vue.d.ts +45 -0
- package/dist/component/common/MlSysVarToggleButton.vue.d.ts.map +1 -0
- package/dist/component/common/MlToggleButton.vue.d.ts +9 -1
- package/dist/component/common/MlToggleButton.vue.d.ts.map +1 -1
- package/dist/component/common/index.d.ts +1 -0
- package/dist/component/common/index.d.ts.map +1 -1
- package/dist/component/layout/MlMainMenu.vue.d.ts.map +1 -1
- package/dist/component/layout/MlToolBars.vue.d.ts.map +1 -1
- package/dist/component/statusBar/MlOsnapButton.vue.d.ts.map +1 -1
- package/dist/component/statusBar/MlStatusBar.vue.d.ts.map +1 -1
- package/dist/composable/useHover.d.ts +256 -2
- package/dist/composable/useHover.d.ts.map +1 -1
- package/dist/composable/useSystemVars.d.ts +8 -0
- package/dist/composable/useSystemVars.d.ts.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +5039 -4346
- package/dist/locale/en/main.d.ts +9 -0
- package/dist/locale/en/main.d.ts.map +1 -1
- package/dist/locale/zh/main.d.ts +9 -0
- package/dist/locale/zh/main.d.ts.map +1 -1
- package/dist/svg/index.d.ts +3 -1
- package/dist/svg/index.d.ts.map +1 -1
- package/package.json +9 -9
|
@@ -62,6 +62,7 @@ export declare function useHover(): {
|
|
|
62
62
|
hovered: import('vue').Ref<boolean, boolean>;
|
|
63
63
|
entity: import('vue').Ref<{
|
|
64
64
|
readonly type: string;
|
|
65
|
+
readonly dxfTypeName: string;
|
|
65
66
|
layer: string;
|
|
66
67
|
color: {
|
|
67
68
|
colorMethod: import('@mlightcad/data-model').AcCmColorMethod;
|
|
@@ -75,6 +76,7 @@ export declare function useHover(): {
|
|
|
75
76
|
setScalar: (scalar: number) => import('@mlightcad/data-model').AcCmColor;
|
|
76
77
|
readonly hexColor: string | undefined;
|
|
77
78
|
readonly cssColor: string | undefined;
|
|
79
|
+
cssColorAlpha: (alpha: number) => string | undefined;
|
|
78
80
|
colorIndex: number | undefined;
|
|
79
81
|
readonly isByColor: boolean;
|
|
80
82
|
readonly isByACI: boolean;
|
|
@@ -102,6 +104,7 @@ export declare function useHover(): {
|
|
|
102
104
|
setScalar: (scalar: number) => import('@mlightcad/data-model').AcCmColor;
|
|
103
105
|
readonly hexColor: string | undefined;
|
|
104
106
|
readonly cssColor: string | undefined;
|
|
107
|
+
cssColorAlpha: (alpha: number) => string | undefined;
|
|
105
108
|
colorIndex: number | undefined;
|
|
106
109
|
readonly isByColor: boolean;
|
|
107
110
|
readonly isByACI: boolean;
|
|
@@ -137,6 +140,7 @@ export declare function useHover(): {
|
|
|
137
140
|
equals: (other: import('@mlightcad/data-model').AcCmTransparency) => boolean;
|
|
138
141
|
toString: () => string;
|
|
139
142
|
};
|
|
143
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => AcDbEntity;
|
|
140
144
|
resolveEffectiveProperties: () => void;
|
|
141
145
|
readonly properties: {
|
|
142
146
|
type: string;
|
|
@@ -490,7 +494,7 @@ export declare function useHover(): {
|
|
|
490
494
|
worldDraw: (renderer: import('@mlightcad/data-model').AcGiRenderer, delay?: boolean) => import('@mlightcad/data-model').AcGiEntity | undefined;
|
|
491
495
|
triggerModifiedEvent: () => void;
|
|
492
496
|
readonly lineStyle: {
|
|
493
|
-
type: AcGiStyleType;
|
|
497
|
+
type: import('@mlightcad/data-model').AcGiStyleType;
|
|
494
498
|
arrows?: {
|
|
495
499
|
firstArrow?: {
|
|
496
500
|
type: import('@mlightcad/data-model').AcGiArrowType;
|
|
@@ -566,6 +570,7 @@ export declare function useHover(): {
|
|
|
566
570
|
getAttrWithoutException: (attrName: string) => any;
|
|
567
571
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
568
572
|
objectId: AcDbObjectId;
|
|
573
|
+
readonly isTemp: any;
|
|
569
574
|
ownerId: AcDbObjectId;
|
|
570
575
|
extensionDictionary: AcDbObjectId | undefined;
|
|
571
576
|
database: {
|
|
@@ -638,6 +643,7 @@ export declare function useHover(): {
|
|
|
638
643
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRegAppTableRecord | undefined;
|
|
639
644
|
getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRegAppTableRecord | undefined;
|
|
640
645
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbRegAppTableRecord>;
|
|
646
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbRegAppTable;
|
|
641
647
|
readonly attrs: {
|
|
642
648
|
attributes: {
|
|
643
649
|
[x: string]: any;
|
|
@@ -681,6 +687,7 @@ export declare function useHover(): {
|
|
|
681
687
|
getAttrWithoutException: (attrName: string) => any;
|
|
682
688
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
683
689
|
objectId: AcDbObjectId;
|
|
690
|
+
readonly isTemp: any;
|
|
684
691
|
ownerId: AcDbObjectId;
|
|
685
692
|
extensionDictionary: AcDbObjectId | undefined;
|
|
686
693
|
database: /*elided*/ any;
|
|
@@ -689,6 +696,7 @@ export declare function useHover(): {
|
|
|
689
696
|
removeXData: (appId: string) => void;
|
|
690
697
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
691
698
|
close: () => void;
|
|
699
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
692
700
|
};
|
|
693
701
|
readonly blockTable: {
|
|
694
702
|
readonly modelSpace: {
|
|
@@ -766,10 +774,18 @@ export declare function useHover(): {
|
|
|
766
774
|
[Symbol.iterator]: () => Generator<number, void, unknown>;
|
|
767
775
|
};
|
|
768
776
|
layoutId: AcDbObjectId;
|
|
777
|
+
blockInsertUnits: import('@mlightcad/data-model').AcDbUnitsValue;
|
|
778
|
+
explodability: number;
|
|
779
|
+
blockScaling: import('@mlightcad/data-model').AcDbBlockScaling;
|
|
780
|
+
bmpPreview: string | undefined;
|
|
769
781
|
appendEntity: (entity: AcDbEntity | AcDbEntity[]) => void;
|
|
770
782
|
removeEntity: (objectId: AcDbObjectId | AcDbObjectId[]) => boolean;
|
|
771
783
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<AcDbEntity>;
|
|
772
784
|
getIdAt: (id: AcDbObjectId) => AcDbEntity | undefined;
|
|
785
|
+
dxfOutBlockRecord: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbBlockTableRecord;
|
|
786
|
+
dxfOutBlockBegin: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbBlockTableRecord;
|
|
787
|
+
dxfOutBlockEnd: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbBlockTableRecord;
|
|
788
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbBlockTableRecord;
|
|
773
789
|
name: string;
|
|
774
790
|
readonly attrs: {
|
|
775
791
|
attributes: {
|
|
@@ -816,6 +832,7 @@ export declare function useHover(): {
|
|
|
816
832
|
getAttrWithoutException: (attrName: string) => any;
|
|
817
833
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | undefined) => void;
|
|
818
834
|
objectId: AcDbObjectId;
|
|
835
|
+
readonly isTemp: any;
|
|
819
836
|
ownerId: AcDbObjectId;
|
|
820
837
|
extensionDictionary: AcDbObjectId | undefined;
|
|
821
838
|
database: /*elided*/ any;
|
|
@@ -824,6 +841,7 @@ export declare function useHover(): {
|
|
|
824
841
|
removeXData: (appId: string) => void;
|
|
825
842
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
826
843
|
close: () => void;
|
|
844
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
827
845
|
};
|
|
828
846
|
getEntityById: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbEntity | undefined;
|
|
829
847
|
removeEntity: (objectId: AcDbObjectId | AcDbObjectId[]) => boolean;
|
|
@@ -838,6 +856,7 @@ export declare function useHover(): {
|
|
|
838
856
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbBlockTableRecord | undefined;
|
|
839
857
|
getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbBlockTableRecord | undefined;
|
|
840
858
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbBlockTableRecord>;
|
|
859
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbBlockTable;
|
|
841
860
|
readonly attrs: {
|
|
842
861
|
attributes: {
|
|
843
862
|
[x: string]: any;
|
|
@@ -881,6 +900,7 @@ export declare function useHover(): {
|
|
|
881
900
|
getAttrWithoutException: (attrName: string) => any;
|
|
882
901
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
883
902
|
objectId: AcDbObjectId;
|
|
903
|
+
readonly isTemp: any;
|
|
884
904
|
ownerId: AcDbObjectId;
|
|
885
905
|
extensionDictionary: AcDbObjectId | undefined;
|
|
886
906
|
database: /*elided*/ any;
|
|
@@ -889,6 +909,7 @@ export declare function useHover(): {
|
|
|
889
909
|
removeXData: (appId: string) => void;
|
|
890
910
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
891
911
|
close: () => void;
|
|
912
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
892
913
|
};
|
|
893
914
|
readonly dimStyleTable: {
|
|
894
915
|
readonly numEntries: number;
|
|
@@ -902,6 +923,7 @@ export declare function useHover(): {
|
|
|
902
923
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbDimStyleTableRecord | undefined;
|
|
903
924
|
getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbDimStyleTableRecord | undefined;
|
|
904
925
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbDimStyleTableRecord>;
|
|
926
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbDimStyleTable;
|
|
905
927
|
readonly attrs: {
|
|
906
928
|
attributes: {
|
|
907
929
|
[x: string]: any;
|
|
@@ -945,6 +967,7 @@ export declare function useHover(): {
|
|
|
945
967
|
getAttrWithoutException: (attrName: string) => any;
|
|
946
968
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
947
969
|
objectId: AcDbObjectId;
|
|
970
|
+
readonly isTemp: any;
|
|
948
971
|
ownerId: AcDbObjectId;
|
|
949
972
|
extensionDictionary: AcDbObjectId | undefined;
|
|
950
973
|
database: /*elided*/ any;
|
|
@@ -953,6 +976,7 @@ export declare function useHover(): {
|
|
|
953
976
|
removeXData: (appId: string) => void;
|
|
954
977
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
955
978
|
close: () => void;
|
|
979
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
956
980
|
};
|
|
957
981
|
readonly linetypeTable: {
|
|
958
982
|
readonly numEntries: number;
|
|
@@ -966,6 +990,7 @@ export declare function useHover(): {
|
|
|
966
990
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLinetypeTableRecord | undefined;
|
|
967
991
|
getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLinetypeTableRecord | undefined;
|
|
968
992
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLinetypeTableRecord>;
|
|
993
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbLinetypeTable;
|
|
969
994
|
readonly attrs: {
|
|
970
995
|
attributes: {
|
|
971
996
|
[x: string]: any;
|
|
@@ -1009,6 +1034,7 @@ export declare function useHover(): {
|
|
|
1009
1034
|
getAttrWithoutException: (attrName: string) => any;
|
|
1010
1035
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
1011
1036
|
objectId: AcDbObjectId;
|
|
1037
|
+
readonly isTemp: any;
|
|
1012
1038
|
ownerId: AcDbObjectId;
|
|
1013
1039
|
extensionDictionary: AcDbObjectId | undefined;
|
|
1014
1040
|
database: /*elided*/ any;
|
|
@@ -1017,6 +1043,7 @@ export declare function useHover(): {
|
|
|
1017
1043
|
removeXData: (appId: string) => void;
|
|
1018
1044
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
1019
1045
|
close: () => void;
|
|
1046
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
1020
1047
|
};
|
|
1021
1048
|
readonly textStyleTable: {
|
|
1022
1049
|
readonly fonts: string[];
|
|
@@ -1031,6 +1058,7 @@ export declare function useHover(): {
|
|
|
1031
1058
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
|
|
1032
1059
|
getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
|
|
1033
1060
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbTextStyleTableRecord>;
|
|
1061
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbTextStyleTable;
|
|
1034
1062
|
readonly attrs: {
|
|
1035
1063
|
attributes: {
|
|
1036
1064
|
[x: string]: any;
|
|
@@ -1074,6 +1102,7 @@ export declare function useHover(): {
|
|
|
1074
1102
|
getAttrWithoutException: (attrName: string) => any;
|
|
1075
1103
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
1076
1104
|
objectId: AcDbObjectId;
|
|
1105
|
+
readonly isTemp: any;
|
|
1077
1106
|
ownerId: AcDbObjectId;
|
|
1078
1107
|
extensionDictionary: AcDbObjectId | undefined;
|
|
1079
1108
|
database: /*elided*/ any;
|
|
@@ -1082,6 +1111,74 @@ export declare function useHover(): {
|
|
|
1082
1111
|
removeXData: (appId: string) => void;
|
|
1083
1112
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
1084
1113
|
close: () => void;
|
|
1114
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
1115
|
+
};
|
|
1116
|
+
readonly viewTable: {
|
|
1117
|
+
readonly numEntries: number;
|
|
1118
|
+
add: (record: import('@mlightcad/data-model').AcDbViewTableRecord) => void;
|
|
1119
|
+
remove: (name: string) => boolean;
|
|
1120
|
+
removeId: (id: AcDbObjectId) => boolean;
|
|
1121
|
+
removeAll: () => void;
|
|
1122
|
+
has: (name: string) => boolean;
|
|
1123
|
+
hasId: (id: string) => boolean;
|
|
1124
|
+
getAt: (name: string) => import('@mlightcad/data-model').AcDbViewTableRecord | undefined;
|
|
1125
|
+
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewTableRecord | undefined;
|
|
1126
|
+
getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewTableRecord | undefined;
|
|
1127
|
+
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbViewTableRecord>;
|
|
1128
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbViewTable;
|
|
1129
|
+
readonly attrs: {
|
|
1130
|
+
attributes: {
|
|
1131
|
+
[x: string]: any;
|
|
1132
|
+
objectId?: AcDbObjectId | undefined;
|
|
1133
|
+
ownerId?: AcDbObjectId | undefined;
|
|
1134
|
+
extensionDictionary?: AcDbObjectId | undefined;
|
|
1135
|
+
};
|
|
1136
|
+
changed: {
|
|
1137
|
+
[x: string]: any;
|
|
1138
|
+
objectId?: AcDbObjectId | undefined;
|
|
1139
|
+
ownerId?: AcDbObjectId | undefined;
|
|
1140
|
+
extensionDictionary?: AcDbObjectId | undefined;
|
|
1141
|
+
};
|
|
1142
|
+
readonly events: {
|
|
1143
|
+
attrChanged: {
|
|
1144
|
+
addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
|
|
1145
|
+
removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
|
|
1146
|
+
replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
|
|
1147
|
+
dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
|
|
1148
|
+
};
|
|
1149
|
+
modelChanged: {
|
|
1150
|
+
addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
|
|
1151
|
+
removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
|
|
1152
|
+
replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
|
|
1153
|
+
dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
|
|
1154
|
+
};
|
|
1155
|
+
};
|
|
1156
|
+
get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
|
|
1157
|
+
set: {
|
|
1158
|
+
<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>;
|
|
1159
|
+
(key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
|
|
1160
|
+
};
|
|
1161
|
+
has: (key: string) => boolean;
|
|
1162
|
+
hasChanged: (key?: string | undefined) => boolean;
|
|
1163
|
+
changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
|
|
1164
|
+
previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
|
|
1165
|
+
previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
|
|
1166
|
+
clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
|
|
1167
|
+
};
|
|
1168
|
+
getAttr: (attrName: string) => any;
|
|
1169
|
+
getAttrWithoutException: (attrName: string) => any;
|
|
1170
|
+
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
1171
|
+
objectId: AcDbObjectId;
|
|
1172
|
+
readonly isTemp: any;
|
|
1173
|
+
ownerId: AcDbObjectId;
|
|
1174
|
+
extensionDictionary: AcDbObjectId | undefined;
|
|
1175
|
+
database: /*elided*/ any;
|
|
1176
|
+
getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
|
|
1177
|
+
setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
|
|
1178
|
+
removeXData: (appId: string) => void;
|
|
1179
|
+
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
1180
|
+
close: () => void;
|
|
1181
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
1085
1182
|
};
|
|
1086
1183
|
readonly layerTable: {
|
|
1087
1184
|
add: (record: import('@mlightcad/data-model').AcDbLayerTableRecord) => void;
|
|
@@ -1095,6 +1192,7 @@ export declare function useHover(): {
|
|
|
1095
1192
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayerTableRecord | undefined;
|
|
1096
1193
|
getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayerTableRecord | undefined;
|
|
1097
1194
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLayerTableRecord>;
|
|
1195
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbLayerTable;
|
|
1098
1196
|
readonly attrs: {
|
|
1099
1197
|
attributes: {
|
|
1100
1198
|
[x: string]: any;
|
|
@@ -1138,6 +1236,7 @@ export declare function useHover(): {
|
|
|
1138
1236
|
getAttrWithoutException: (attrName: string) => any;
|
|
1139
1237
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
1140
1238
|
objectId: AcDbObjectId;
|
|
1239
|
+
readonly isTemp: any;
|
|
1141
1240
|
ownerId: AcDbObjectId;
|
|
1142
1241
|
extensionDictionary: AcDbObjectId | undefined;
|
|
1143
1242
|
database: /*elided*/ any;
|
|
@@ -1146,6 +1245,7 @@ export declare function useHover(): {
|
|
|
1146
1245
|
removeXData: (appId: string) => void;
|
|
1147
1246
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
1148
1247
|
close: () => void;
|
|
1248
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
1149
1249
|
};
|
|
1150
1250
|
readonly viewportTable: {
|
|
1151
1251
|
readonly numEntries: number;
|
|
@@ -1159,6 +1259,7 @@ export declare function useHover(): {
|
|
|
1159
1259
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
|
|
1160
1260
|
getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
|
|
1161
1261
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbViewportTableRecord>;
|
|
1262
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbViewportTable;
|
|
1162
1263
|
readonly attrs: {
|
|
1163
1264
|
attributes: {
|
|
1164
1265
|
[x: string]: any;
|
|
@@ -1202,6 +1303,7 @@ export declare function useHover(): {
|
|
|
1202
1303
|
getAttrWithoutException: (attrName: string) => any;
|
|
1203
1304
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
1204
1305
|
objectId: AcDbObjectId;
|
|
1306
|
+
readonly isTemp: any;
|
|
1205
1307
|
ownerId: AcDbObjectId;
|
|
1206
1308
|
extensionDictionary: AcDbObjectId | undefined;
|
|
1207
1309
|
database: /*elided*/ any;
|
|
@@ -1210,6 +1312,7 @@ export declare function useHover(): {
|
|
|
1210
1312
|
removeXData: (appId: string) => void;
|
|
1211
1313
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
1212
1314
|
close: () => void;
|
|
1315
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
1213
1316
|
};
|
|
1214
1317
|
};
|
|
1215
1318
|
readonly objects: {
|
|
@@ -1224,6 +1327,8 @@ export declare function useHover(): {
|
|
|
1224
1327
|
getAt: (name: string) => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>> | undefined;
|
|
1225
1328
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>> | undefined;
|
|
1226
1329
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>>>;
|
|
1330
|
+
entries: () => IterableIterator<[string, import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>>]>;
|
|
1331
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>>>;
|
|
1227
1332
|
readonly attrs: {
|
|
1228
1333
|
attributes: {
|
|
1229
1334
|
[x: string]: any;
|
|
@@ -1267,6 +1372,7 @@ export declare function useHover(): {
|
|
|
1267
1372
|
getAttrWithoutException: (attrName: string) => any;
|
|
1268
1373
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
1269
1374
|
objectId: AcDbObjectId;
|
|
1375
|
+
readonly isTemp: any;
|
|
1270
1376
|
ownerId: AcDbObjectId;
|
|
1271
1377
|
extensionDictionary: AcDbObjectId | undefined;
|
|
1272
1378
|
database: /*elided*/ any;
|
|
@@ -1275,6 +1381,7 @@ export declare function useHover(): {
|
|
|
1275
1381
|
removeXData: (appId: string) => void;
|
|
1276
1382
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
1277
1383
|
close: () => void;
|
|
1384
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
1278
1385
|
};
|
|
1279
1386
|
readonly imageDefinition: {
|
|
1280
1387
|
readonly numEntries: number;
|
|
@@ -1287,6 +1394,8 @@ export declare function useHover(): {
|
|
|
1287
1394
|
getAt: (name: string) => import('@mlightcad/data-model').AcDbRasterImageDef | undefined;
|
|
1288
1395
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRasterImageDef | undefined;
|
|
1289
1396
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbRasterImageDef>;
|
|
1397
|
+
entries: () => IterableIterator<[string, import('@mlightcad/data-model').AcDbRasterImageDef]>;
|
|
1398
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbRasterImageDef>;
|
|
1290
1399
|
readonly attrs: {
|
|
1291
1400
|
attributes: {
|
|
1292
1401
|
[x: string]: any;
|
|
@@ -1330,6 +1439,7 @@ export declare function useHover(): {
|
|
|
1330
1439
|
getAttrWithoutException: (attrName: string) => any;
|
|
1331
1440
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
1332
1441
|
objectId: AcDbObjectId;
|
|
1442
|
+
readonly isTemp: any;
|
|
1333
1443
|
ownerId: AcDbObjectId;
|
|
1334
1444
|
extensionDictionary: AcDbObjectId | undefined;
|
|
1335
1445
|
database: /*elided*/ any;
|
|
@@ -1338,6 +1448,7 @@ export declare function useHover(): {
|
|
|
1338
1448
|
removeXData: (appId: string) => void;
|
|
1339
1449
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
1340
1450
|
close: () => void;
|
|
1451
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
1341
1452
|
};
|
|
1342
1453
|
readonly layout: {
|
|
1343
1454
|
getBtrIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayout | undefined;
|
|
@@ -1352,6 +1463,8 @@ export declare function useHover(): {
|
|
|
1352
1463
|
getAt: (name: string) => import('@mlightcad/data-model').AcDbLayout | undefined;
|
|
1353
1464
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayout | undefined;
|
|
1354
1465
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLayout>;
|
|
1466
|
+
entries: () => IterableIterator<[string, import('@mlightcad/data-model').AcDbLayout]>;
|
|
1467
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbLayoutDictionary;
|
|
1355
1468
|
readonly attrs: {
|
|
1356
1469
|
attributes: {
|
|
1357
1470
|
[x: string]: any;
|
|
@@ -1395,6 +1508,7 @@ export declare function useHover(): {
|
|
|
1395
1508
|
getAttrWithoutException: (attrName: string) => any;
|
|
1396
1509
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
1397
1510
|
objectId: AcDbObjectId;
|
|
1511
|
+
readonly isTemp: any;
|
|
1398
1512
|
ownerId: AcDbObjectId;
|
|
1399
1513
|
extensionDictionary: AcDbObjectId | undefined;
|
|
1400
1514
|
database: /*elided*/ any;
|
|
@@ -1403,6 +1517,7 @@ export declare function useHover(): {
|
|
|
1403
1517
|
removeXData: (appId: string) => void;
|
|
1404
1518
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
1405
1519
|
close: () => void;
|
|
1520
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
1406
1521
|
};
|
|
1407
1522
|
readonly xrecord: {
|
|
1408
1523
|
readonly numEntries: number;
|
|
@@ -1415,6 +1530,8 @@ export declare function useHover(): {
|
|
|
1415
1530
|
getAt: (name: string) => import('@mlightcad/data-model').AcDbXrecord | undefined;
|
|
1416
1531
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbXrecord | undefined;
|
|
1417
1532
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbXrecord>;
|
|
1533
|
+
entries: () => IterableIterator<[string, import('@mlightcad/data-model').AcDbXrecord]>;
|
|
1534
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbXrecord>;
|
|
1418
1535
|
readonly attrs: {
|
|
1419
1536
|
attributes: {
|
|
1420
1537
|
[x: string]: any;
|
|
@@ -1458,6 +1575,7 @@ export declare function useHover(): {
|
|
|
1458
1575
|
getAttrWithoutException: (attrName: string) => any;
|
|
1459
1576
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
1460
1577
|
objectId: AcDbObjectId;
|
|
1578
|
+
readonly isTemp: any;
|
|
1461
1579
|
ownerId: AcDbObjectId;
|
|
1462
1580
|
extensionDictionary: AcDbObjectId | undefined;
|
|
1463
1581
|
database: /*elided*/ any;
|
|
@@ -1466,8 +1584,12 @@ export declare function useHover(): {
|
|
|
1466
1584
|
removeXData: (appId: string) => void;
|
|
1467
1585
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
1468
1586
|
close: () => void;
|
|
1587
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
1469
1588
|
};
|
|
1470
1589
|
};
|
|
1590
|
+
generateHandle: () => AcDbObjectId;
|
|
1591
|
+
updateMaxHandle: (handle: string) => void;
|
|
1592
|
+
commitObjectHandle: (object: import('@mlightcad/data-model').AcDbObject, hasId?: (id: AcDbObjectId) => boolean) => void;
|
|
1471
1593
|
currentSpaceId: AcDbObjectId;
|
|
1472
1594
|
aunits: number;
|
|
1473
1595
|
version: {
|
|
@@ -1489,6 +1611,7 @@ export declare function useHover(): {
|
|
|
1489
1611
|
setScalar: (scalar: number) => import('@mlightcad/data-model').AcCmColor;
|
|
1490
1612
|
readonly hexColor: string | undefined;
|
|
1491
1613
|
readonly cssColor: string | undefined;
|
|
1614
|
+
cssColorAlpha: (alpha: number) => string | undefined;
|
|
1492
1615
|
colorIndex: number | undefined;
|
|
1493
1616
|
readonly isByColor: boolean;
|
|
1494
1617
|
readonly isByACI: boolean;
|
|
@@ -1968,6 +2091,7 @@ export declare function useHover(): {
|
|
|
1968
2091
|
osmode: number;
|
|
1969
2092
|
read: (data: ArrayBuffer, options: import('@mlightcad/data-model').AcDbOpenDatabaseOptions, fileType?: import('@mlightcad/data-model').AcDbConverterType) => Promise<void>;
|
|
1970
2093
|
openUri: (url: string, options: import('@mlightcad/data-model').AcDbOpenDatabaseOptions) => Promise<void>;
|
|
2094
|
+
dxfOut: (_fileName?: string, precision?: number, version?: import('@mlightcad/data-model').AcDbDwgVersion | string | number, _saveThumbnailImage?: boolean) => string;
|
|
1971
2095
|
regen: () => Promise<void>;
|
|
1972
2096
|
createDefaultData: (options?: import('@mlightcad/data-model').AcDbCreateDefaultDataOptions) => void;
|
|
1973
2097
|
readonly attrs: {
|
|
@@ -2013,6 +2137,7 @@ export declare function useHover(): {
|
|
|
2013
2137
|
getAttrWithoutException: (attrName: string) => any;
|
|
2014
2138
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
2015
2139
|
objectId: AcDbObjectId;
|
|
2140
|
+
readonly isTemp: any;
|
|
2016
2141
|
ownerId: AcDbObjectId;
|
|
2017
2142
|
extensionDictionary: AcDbObjectId | undefined;
|
|
2018
2143
|
database: /*elided*/ any;
|
|
@@ -2021,14 +2146,17 @@ export declare function useHover(): {
|
|
|
2021
2146
|
removeXData: (appId: string) => void;
|
|
2022
2147
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
2023
2148
|
close: () => void;
|
|
2149
|
+
dxfOutFields: (_filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbDatabase;
|
|
2024
2150
|
};
|
|
2025
2151
|
getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
|
|
2026
2152
|
setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
|
|
2027
2153
|
removeXData: (appId: string) => void;
|
|
2028
2154
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
2029
2155
|
close: () => void;
|
|
2156
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
2030
2157
|
} | null, AcDbEntity | {
|
|
2031
2158
|
readonly type: string;
|
|
2159
|
+
readonly dxfTypeName: string;
|
|
2032
2160
|
layer: string;
|
|
2033
2161
|
color: {
|
|
2034
2162
|
colorMethod: import('@mlightcad/data-model').AcCmColorMethod;
|
|
@@ -2042,6 +2170,7 @@ export declare function useHover(): {
|
|
|
2042
2170
|
setScalar: (scalar: number) => import('@mlightcad/data-model').AcCmColor;
|
|
2043
2171
|
readonly hexColor: string | undefined;
|
|
2044
2172
|
readonly cssColor: string | undefined;
|
|
2173
|
+
cssColorAlpha: (alpha: number) => string | undefined;
|
|
2045
2174
|
colorIndex: number | undefined;
|
|
2046
2175
|
readonly isByColor: boolean;
|
|
2047
2176
|
readonly isByACI: boolean;
|
|
@@ -2069,6 +2198,7 @@ export declare function useHover(): {
|
|
|
2069
2198
|
setScalar: (scalar: number) => import('@mlightcad/data-model').AcCmColor;
|
|
2070
2199
|
readonly hexColor: string | undefined;
|
|
2071
2200
|
readonly cssColor: string | undefined;
|
|
2201
|
+
cssColorAlpha: (alpha: number) => string | undefined;
|
|
2072
2202
|
colorIndex: number | undefined;
|
|
2073
2203
|
readonly isByColor: boolean;
|
|
2074
2204
|
readonly isByACI: boolean;
|
|
@@ -2104,6 +2234,7 @@ export declare function useHover(): {
|
|
|
2104
2234
|
equals: (other: import('@mlightcad/data-model').AcCmTransparency) => boolean;
|
|
2105
2235
|
toString: () => string;
|
|
2106
2236
|
};
|
|
2237
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => AcDbEntity;
|
|
2107
2238
|
resolveEffectiveProperties: () => void;
|
|
2108
2239
|
readonly properties: {
|
|
2109
2240
|
type: string;
|
|
@@ -2457,7 +2588,7 @@ export declare function useHover(): {
|
|
|
2457
2588
|
worldDraw: (renderer: import('@mlightcad/data-model').AcGiRenderer, delay?: boolean) => import('@mlightcad/data-model').AcGiEntity | undefined;
|
|
2458
2589
|
triggerModifiedEvent: () => void;
|
|
2459
2590
|
readonly lineStyle: {
|
|
2460
|
-
type: AcGiStyleType;
|
|
2591
|
+
type: import('@mlightcad/data-model').AcGiStyleType;
|
|
2461
2592
|
arrows?: {
|
|
2462
2593
|
firstArrow?: {
|
|
2463
2594
|
type: import('@mlightcad/data-model').AcGiArrowType;
|
|
@@ -2533,6 +2664,7 @@ export declare function useHover(): {
|
|
|
2533
2664
|
getAttrWithoutException: (attrName: string) => any;
|
|
2534
2665
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
2535
2666
|
objectId: AcDbObjectId;
|
|
2667
|
+
readonly isTemp: any;
|
|
2536
2668
|
ownerId: AcDbObjectId;
|
|
2537
2669
|
extensionDictionary: AcDbObjectId | undefined;
|
|
2538
2670
|
database: {
|
|
@@ -2605,6 +2737,7 @@ export declare function useHover(): {
|
|
|
2605
2737
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRegAppTableRecord | undefined;
|
|
2606
2738
|
getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRegAppTableRecord | undefined;
|
|
2607
2739
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbRegAppTableRecord>;
|
|
2740
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbRegAppTable;
|
|
2608
2741
|
readonly attrs: {
|
|
2609
2742
|
attributes: {
|
|
2610
2743
|
[x: string]: any;
|
|
@@ -2648,6 +2781,7 @@ export declare function useHover(): {
|
|
|
2648
2781
|
getAttrWithoutException: (attrName: string) => any;
|
|
2649
2782
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
2650
2783
|
objectId: AcDbObjectId;
|
|
2784
|
+
readonly isTemp: any;
|
|
2651
2785
|
ownerId: AcDbObjectId;
|
|
2652
2786
|
extensionDictionary: AcDbObjectId | undefined;
|
|
2653
2787
|
database: /*elided*/ any;
|
|
@@ -2656,6 +2790,7 @@ export declare function useHover(): {
|
|
|
2656
2790
|
removeXData: (appId: string) => void;
|
|
2657
2791
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
2658
2792
|
close: () => void;
|
|
2793
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
2659
2794
|
};
|
|
2660
2795
|
readonly blockTable: {
|
|
2661
2796
|
readonly modelSpace: {
|
|
@@ -2733,10 +2868,18 @@ export declare function useHover(): {
|
|
|
2733
2868
|
[Symbol.iterator]: () => Generator<number, void, unknown>;
|
|
2734
2869
|
};
|
|
2735
2870
|
layoutId: AcDbObjectId;
|
|
2871
|
+
blockInsertUnits: import('@mlightcad/data-model').AcDbUnitsValue;
|
|
2872
|
+
explodability: number;
|
|
2873
|
+
blockScaling: import('@mlightcad/data-model').AcDbBlockScaling;
|
|
2874
|
+
bmpPreview: string | undefined;
|
|
2736
2875
|
appendEntity: (entity: AcDbEntity | AcDbEntity[]) => void;
|
|
2737
2876
|
removeEntity: (objectId: AcDbObjectId | AcDbObjectId[]) => boolean;
|
|
2738
2877
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<AcDbEntity>;
|
|
2739
2878
|
getIdAt: (id: AcDbObjectId) => AcDbEntity | undefined;
|
|
2879
|
+
dxfOutBlockRecord: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbBlockTableRecord;
|
|
2880
|
+
dxfOutBlockBegin: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbBlockTableRecord;
|
|
2881
|
+
dxfOutBlockEnd: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbBlockTableRecord;
|
|
2882
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbBlockTableRecord;
|
|
2740
2883
|
name: string;
|
|
2741
2884
|
readonly attrs: {
|
|
2742
2885
|
attributes: {
|
|
@@ -2783,6 +2926,7 @@ export declare function useHover(): {
|
|
|
2783
2926
|
getAttrWithoutException: (attrName: string) => any;
|
|
2784
2927
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | undefined) => void;
|
|
2785
2928
|
objectId: AcDbObjectId;
|
|
2929
|
+
readonly isTemp: any;
|
|
2786
2930
|
ownerId: AcDbObjectId;
|
|
2787
2931
|
extensionDictionary: AcDbObjectId | undefined;
|
|
2788
2932
|
database: /*elided*/ any;
|
|
@@ -2791,6 +2935,7 @@ export declare function useHover(): {
|
|
|
2791
2935
|
removeXData: (appId: string) => void;
|
|
2792
2936
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
2793
2937
|
close: () => void;
|
|
2938
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
2794
2939
|
};
|
|
2795
2940
|
getEntityById: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbEntity | undefined;
|
|
2796
2941
|
removeEntity: (objectId: AcDbObjectId | AcDbObjectId[]) => boolean;
|
|
@@ -2805,6 +2950,7 @@ export declare function useHover(): {
|
|
|
2805
2950
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbBlockTableRecord | undefined;
|
|
2806
2951
|
getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbBlockTableRecord | undefined;
|
|
2807
2952
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbBlockTableRecord>;
|
|
2953
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbBlockTable;
|
|
2808
2954
|
readonly attrs: {
|
|
2809
2955
|
attributes: {
|
|
2810
2956
|
[x: string]: any;
|
|
@@ -2848,6 +2994,7 @@ export declare function useHover(): {
|
|
|
2848
2994
|
getAttrWithoutException: (attrName: string) => any;
|
|
2849
2995
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
2850
2996
|
objectId: AcDbObjectId;
|
|
2997
|
+
readonly isTemp: any;
|
|
2851
2998
|
ownerId: AcDbObjectId;
|
|
2852
2999
|
extensionDictionary: AcDbObjectId | undefined;
|
|
2853
3000
|
database: /*elided*/ any;
|
|
@@ -2856,6 +3003,7 @@ export declare function useHover(): {
|
|
|
2856
3003
|
removeXData: (appId: string) => void;
|
|
2857
3004
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
2858
3005
|
close: () => void;
|
|
3006
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
2859
3007
|
};
|
|
2860
3008
|
readonly dimStyleTable: {
|
|
2861
3009
|
readonly numEntries: number;
|
|
@@ -2869,6 +3017,7 @@ export declare function useHover(): {
|
|
|
2869
3017
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbDimStyleTableRecord | undefined;
|
|
2870
3018
|
getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbDimStyleTableRecord | undefined;
|
|
2871
3019
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbDimStyleTableRecord>;
|
|
3020
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbDimStyleTable;
|
|
2872
3021
|
readonly attrs: {
|
|
2873
3022
|
attributes: {
|
|
2874
3023
|
[x: string]: any;
|
|
@@ -2912,6 +3061,7 @@ export declare function useHover(): {
|
|
|
2912
3061
|
getAttrWithoutException: (attrName: string) => any;
|
|
2913
3062
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
2914
3063
|
objectId: AcDbObjectId;
|
|
3064
|
+
readonly isTemp: any;
|
|
2915
3065
|
ownerId: AcDbObjectId;
|
|
2916
3066
|
extensionDictionary: AcDbObjectId | undefined;
|
|
2917
3067
|
database: /*elided*/ any;
|
|
@@ -2920,6 +3070,7 @@ export declare function useHover(): {
|
|
|
2920
3070
|
removeXData: (appId: string) => void;
|
|
2921
3071
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
2922
3072
|
close: () => void;
|
|
3073
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
2923
3074
|
};
|
|
2924
3075
|
readonly linetypeTable: {
|
|
2925
3076
|
readonly numEntries: number;
|
|
@@ -2933,6 +3084,7 @@ export declare function useHover(): {
|
|
|
2933
3084
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLinetypeTableRecord | undefined;
|
|
2934
3085
|
getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLinetypeTableRecord | undefined;
|
|
2935
3086
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLinetypeTableRecord>;
|
|
3087
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbLinetypeTable;
|
|
2936
3088
|
readonly attrs: {
|
|
2937
3089
|
attributes: {
|
|
2938
3090
|
[x: string]: any;
|
|
@@ -2976,6 +3128,7 @@ export declare function useHover(): {
|
|
|
2976
3128
|
getAttrWithoutException: (attrName: string) => any;
|
|
2977
3129
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
2978
3130
|
objectId: AcDbObjectId;
|
|
3131
|
+
readonly isTemp: any;
|
|
2979
3132
|
ownerId: AcDbObjectId;
|
|
2980
3133
|
extensionDictionary: AcDbObjectId | undefined;
|
|
2981
3134
|
database: /*elided*/ any;
|
|
@@ -2984,6 +3137,7 @@ export declare function useHover(): {
|
|
|
2984
3137
|
removeXData: (appId: string) => void;
|
|
2985
3138
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
2986
3139
|
close: () => void;
|
|
3140
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
2987
3141
|
};
|
|
2988
3142
|
readonly textStyleTable: {
|
|
2989
3143
|
readonly fonts: string[];
|
|
@@ -2998,6 +3152,74 @@ export declare function useHover(): {
|
|
|
2998
3152
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
|
|
2999
3153
|
getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
|
|
3000
3154
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbTextStyleTableRecord>;
|
|
3155
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbTextStyleTable;
|
|
3156
|
+
readonly attrs: {
|
|
3157
|
+
attributes: {
|
|
3158
|
+
[x: string]: any;
|
|
3159
|
+
objectId?: AcDbObjectId | undefined;
|
|
3160
|
+
ownerId?: AcDbObjectId | undefined;
|
|
3161
|
+
extensionDictionary?: AcDbObjectId | undefined;
|
|
3162
|
+
};
|
|
3163
|
+
changed: {
|
|
3164
|
+
[x: string]: any;
|
|
3165
|
+
objectId?: AcDbObjectId | undefined;
|
|
3166
|
+
ownerId?: AcDbObjectId | undefined;
|
|
3167
|
+
extensionDictionary?: AcDbObjectId | undefined;
|
|
3168
|
+
};
|
|
3169
|
+
readonly events: {
|
|
3170
|
+
attrChanged: {
|
|
3171
|
+
addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
|
|
3172
|
+
removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
|
|
3173
|
+
replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
|
|
3174
|
+
dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
|
|
3175
|
+
};
|
|
3176
|
+
modelChanged: {
|
|
3177
|
+
addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
|
|
3178
|
+
removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
|
|
3179
|
+
replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
|
|
3180
|
+
dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
|
|
3181
|
+
};
|
|
3182
|
+
};
|
|
3183
|
+
get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
|
|
3184
|
+
set: {
|
|
3185
|
+
<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>;
|
|
3186
|
+
(key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
|
|
3187
|
+
};
|
|
3188
|
+
has: (key: string) => boolean;
|
|
3189
|
+
hasChanged: (key?: string | undefined) => boolean;
|
|
3190
|
+
changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
|
|
3191
|
+
previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
|
|
3192
|
+
previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
|
|
3193
|
+
clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
|
|
3194
|
+
};
|
|
3195
|
+
getAttr: (attrName: string) => any;
|
|
3196
|
+
getAttrWithoutException: (attrName: string) => any;
|
|
3197
|
+
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
3198
|
+
objectId: AcDbObjectId;
|
|
3199
|
+
readonly isTemp: any;
|
|
3200
|
+
ownerId: AcDbObjectId;
|
|
3201
|
+
extensionDictionary: AcDbObjectId | undefined;
|
|
3202
|
+
database: /*elided*/ any;
|
|
3203
|
+
getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
|
|
3204
|
+
setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
|
|
3205
|
+
removeXData: (appId: string) => void;
|
|
3206
|
+
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
3207
|
+
close: () => void;
|
|
3208
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
3209
|
+
};
|
|
3210
|
+
readonly viewTable: {
|
|
3211
|
+
readonly numEntries: number;
|
|
3212
|
+
add: (record: import('@mlightcad/data-model').AcDbViewTableRecord) => void;
|
|
3213
|
+
remove: (name: string) => boolean;
|
|
3214
|
+
removeId: (id: AcDbObjectId) => boolean;
|
|
3215
|
+
removeAll: () => void;
|
|
3216
|
+
has: (name: string) => boolean;
|
|
3217
|
+
hasId: (id: string) => boolean;
|
|
3218
|
+
getAt: (name: string) => import('@mlightcad/data-model').AcDbViewTableRecord | undefined;
|
|
3219
|
+
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewTableRecord | undefined;
|
|
3220
|
+
getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewTableRecord | undefined;
|
|
3221
|
+
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbViewTableRecord>;
|
|
3222
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbViewTable;
|
|
3001
3223
|
readonly attrs: {
|
|
3002
3224
|
attributes: {
|
|
3003
3225
|
[x: string]: any;
|
|
@@ -3041,6 +3263,7 @@ export declare function useHover(): {
|
|
|
3041
3263
|
getAttrWithoutException: (attrName: string) => any;
|
|
3042
3264
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
3043
3265
|
objectId: AcDbObjectId;
|
|
3266
|
+
readonly isTemp: any;
|
|
3044
3267
|
ownerId: AcDbObjectId;
|
|
3045
3268
|
extensionDictionary: AcDbObjectId | undefined;
|
|
3046
3269
|
database: /*elided*/ any;
|
|
@@ -3049,6 +3272,7 @@ export declare function useHover(): {
|
|
|
3049
3272
|
removeXData: (appId: string) => void;
|
|
3050
3273
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
3051
3274
|
close: () => void;
|
|
3275
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
3052
3276
|
};
|
|
3053
3277
|
readonly layerTable: {
|
|
3054
3278
|
add: (record: import('@mlightcad/data-model').AcDbLayerTableRecord) => void;
|
|
@@ -3062,6 +3286,7 @@ export declare function useHover(): {
|
|
|
3062
3286
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayerTableRecord | undefined;
|
|
3063
3287
|
getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayerTableRecord | undefined;
|
|
3064
3288
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLayerTableRecord>;
|
|
3289
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbLayerTable;
|
|
3065
3290
|
readonly attrs: {
|
|
3066
3291
|
attributes: {
|
|
3067
3292
|
[x: string]: any;
|
|
@@ -3105,6 +3330,7 @@ export declare function useHover(): {
|
|
|
3105
3330
|
getAttrWithoutException: (attrName: string) => any;
|
|
3106
3331
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
3107
3332
|
objectId: AcDbObjectId;
|
|
3333
|
+
readonly isTemp: any;
|
|
3108
3334
|
ownerId: AcDbObjectId;
|
|
3109
3335
|
extensionDictionary: AcDbObjectId | undefined;
|
|
3110
3336
|
database: /*elided*/ any;
|
|
@@ -3113,6 +3339,7 @@ export declare function useHover(): {
|
|
|
3113
3339
|
removeXData: (appId: string) => void;
|
|
3114
3340
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
3115
3341
|
close: () => void;
|
|
3342
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
3116
3343
|
};
|
|
3117
3344
|
readonly viewportTable: {
|
|
3118
3345
|
readonly numEntries: number;
|
|
@@ -3126,6 +3353,7 @@ export declare function useHover(): {
|
|
|
3126
3353
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
|
|
3127
3354
|
getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
|
|
3128
3355
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbViewportTableRecord>;
|
|
3356
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbViewportTable;
|
|
3129
3357
|
readonly attrs: {
|
|
3130
3358
|
attributes: {
|
|
3131
3359
|
[x: string]: any;
|
|
@@ -3169,6 +3397,7 @@ export declare function useHover(): {
|
|
|
3169
3397
|
getAttrWithoutException: (attrName: string) => any;
|
|
3170
3398
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
3171
3399
|
objectId: AcDbObjectId;
|
|
3400
|
+
readonly isTemp: any;
|
|
3172
3401
|
ownerId: AcDbObjectId;
|
|
3173
3402
|
extensionDictionary: AcDbObjectId | undefined;
|
|
3174
3403
|
database: /*elided*/ any;
|
|
@@ -3177,6 +3406,7 @@ export declare function useHover(): {
|
|
|
3177
3406
|
removeXData: (appId: string) => void;
|
|
3178
3407
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
3179
3408
|
close: () => void;
|
|
3409
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
3180
3410
|
};
|
|
3181
3411
|
};
|
|
3182
3412
|
readonly objects: {
|
|
@@ -3191,6 +3421,8 @@ export declare function useHover(): {
|
|
|
3191
3421
|
getAt: (name: string) => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>> | undefined;
|
|
3192
3422
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>> | undefined;
|
|
3193
3423
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>>>;
|
|
3424
|
+
entries: () => IterableIterator<[string, import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>>]>;
|
|
3425
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbObject<import('@mlightcad/data-model').AcDbObjectAttrs>>>;
|
|
3194
3426
|
readonly attrs: {
|
|
3195
3427
|
attributes: {
|
|
3196
3428
|
[x: string]: any;
|
|
@@ -3234,6 +3466,7 @@ export declare function useHover(): {
|
|
|
3234
3466
|
getAttrWithoutException: (attrName: string) => any;
|
|
3235
3467
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
3236
3468
|
objectId: AcDbObjectId;
|
|
3469
|
+
readonly isTemp: any;
|
|
3237
3470
|
ownerId: AcDbObjectId;
|
|
3238
3471
|
extensionDictionary: AcDbObjectId | undefined;
|
|
3239
3472
|
database: /*elided*/ any;
|
|
@@ -3242,6 +3475,7 @@ export declare function useHover(): {
|
|
|
3242
3475
|
removeXData: (appId: string) => void;
|
|
3243
3476
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
3244
3477
|
close: () => void;
|
|
3478
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
3245
3479
|
};
|
|
3246
3480
|
readonly imageDefinition: {
|
|
3247
3481
|
readonly numEntries: number;
|
|
@@ -3254,6 +3488,8 @@ export declare function useHover(): {
|
|
|
3254
3488
|
getAt: (name: string) => import('@mlightcad/data-model').AcDbRasterImageDef | undefined;
|
|
3255
3489
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRasterImageDef | undefined;
|
|
3256
3490
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbRasterImageDef>;
|
|
3491
|
+
entries: () => IterableIterator<[string, import('@mlightcad/data-model').AcDbRasterImageDef]>;
|
|
3492
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbRasterImageDef>;
|
|
3257
3493
|
readonly attrs: {
|
|
3258
3494
|
attributes: {
|
|
3259
3495
|
[x: string]: any;
|
|
@@ -3297,6 +3533,7 @@ export declare function useHover(): {
|
|
|
3297
3533
|
getAttrWithoutException: (attrName: string) => any;
|
|
3298
3534
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
3299
3535
|
objectId: AcDbObjectId;
|
|
3536
|
+
readonly isTemp: any;
|
|
3300
3537
|
ownerId: AcDbObjectId;
|
|
3301
3538
|
extensionDictionary: AcDbObjectId | undefined;
|
|
3302
3539
|
database: /*elided*/ any;
|
|
@@ -3305,6 +3542,7 @@ export declare function useHover(): {
|
|
|
3305
3542
|
removeXData: (appId: string) => void;
|
|
3306
3543
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
3307
3544
|
close: () => void;
|
|
3545
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
3308
3546
|
};
|
|
3309
3547
|
readonly layout: {
|
|
3310
3548
|
getBtrIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayout | undefined;
|
|
@@ -3319,6 +3557,8 @@ export declare function useHover(): {
|
|
|
3319
3557
|
getAt: (name: string) => import('@mlightcad/data-model').AcDbLayout | undefined;
|
|
3320
3558
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayout | undefined;
|
|
3321
3559
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLayout>;
|
|
3560
|
+
entries: () => IterableIterator<[string, import('@mlightcad/data-model').AcDbLayout]>;
|
|
3561
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbLayoutDictionary;
|
|
3322
3562
|
readonly attrs: {
|
|
3323
3563
|
attributes: {
|
|
3324
3564
|
[x: string]: any;
|
|
@@ -3362,6 +3602,7 @@ export declare function useHover(): {
|
|
|
3362
3602
|
getAttrWithoutException: (attrName: string) => any;
|
|
3363
3603
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
3364
3604
|
objectId: AcDbObjectId;
|
|
3605
|
+
readonly isTemp: any;
|
|
3365
3606
|
ownerId: AcDbObjectId;
|
|
3366
3607
|
extensionDictionary: AcDbObjectId | undefined;
|
|
3367
3608
|
database: /*elided*/ any;
|
|
@@ -3370,6 +3611,7 @@ export declare function useHover(): {
|
|
|
3370
3611
|
removeXData: (appId: string) => void;
|
|
3371
3612
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
3372
3613
|
close: () => void;
|
|
3614
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
3373
3615
|
};
|
|
3374
3616
|
readonly xrecord: {
|
|
3375
3617
|
readonly numEntries: number;
|
|
@@ -3382,6 +3624,8 @@ export declare function useHover(): {
|
|
|
3382
3624
|
getAt: (name: string) => import('@mlightcad/data-model').AcDbXrecord | undefined;
|
|
3383
3625
|
getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbXrecord | undefined;
|
|
3384
3626
|
newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbXrecord>;
|
|
3627
|
+
entries: () => IterableIterator<[string, import('@mlightcad/data-model').AcDbXrecord]>;
|
|
3628
|
+
dxfOutFields: (filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbDictionary<import('@mlightcad/data-model').AcDbXrecord>;
|
|
3385
3629
|
readonly attrs: {
|
|
3386
3630
|
attributes: {
|
|
3387
3631
|
[x: string]: any;
|
|
@@ -3425,6 +3669,7 @@ export declare function useHover(): {
|
|
|
3425
3669
|
getAttrWithoutException: (attrName: string) => any;
|
|
3426
3670
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
3427
3671
|
objectId: AcDbObjectId;
|
|
3672
|
+
readonly isTemp: any;
|
|
3428
3673
|
ownerId: AcDbObjectId;
|
|
3429
3674
|
extensionDictionary: AcDbObjectId | undefined;
|
|
3430
3675
|
database: /*elided*/ any;
|
|
@@ -3433,8 +3678,12 @@ export declare function useHover(): {
|
|
|
3433
3678
|
removeXData: (appId: string) => void;
|
|
3434
3679
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
3435
3680
|
close: () => void;
|
|
3681
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
3436
3682
|
};
|
|
3437
3683
|
};
|
|
3684
|
+
generateHandle: () => AcDbObjectId;
|
|
3685
|
+
updateMaxHandle: (handle: string) => void;
|
|
3686
|
+
commitObjectHandle: (object: import('@mlightcad/data-model').AcDbObject, hasId?: (id: AcDbObjectId) => boolean) => void;
|
|
3438
3687
|
currentSpaceId: AcDbObjectId;
|
|
3439
3688
|
aunits: number;
|
|
3440
3689
|
version: {
|
|
@@ -3456,6 +3705,7 @@ export declare function useHover(): {
|
|
|
3456
3705
|
setScalar: (scalar: number) => import('@mlightcad/data-model').AcCmColor;
|
|
3457
3706
|
readonly hexColor: string | undefined;
|
|
3458
3707
|
readonly cssColor: string | undefined;
|
|
3708
|
+
cssColorAlpha: (alpha: number) => string | undefined;
|
|
3459
3709
|
colorIndex: number | undefined;
|
|
3460
3710
|
readonly isByColor: boolean;
|
|
3461
3711
|
readonly isByACI: boolean;
|
|
@@ -3935,6 +4185,7 @@ export declare function useHover(): {
|
|
|
3935
4185
|
osmode: number;
|
|
3936
4186
|
read: (data: ArrayBuffer, options: import('@mlightcad/data-model').AcDbOpenDatabaseOptions, fileType?: import('@mlightcad/data-model').AcDbConverterType) => Promise<void>;
|
|
3937
4187
|
openUri: (url: string, options: import('@mlightcad/data-model').AcDbOpenDatabaseOptions) => Promise<void>;
|
|
4188
|
+
dxfOut: (_fileName?: string, precision?: number, version?: import('@mlightcad/data-model').AcDbDwgVersion | string | number, _saveThumbnailImage?: boolean) => string;
|
|
3938
4189
|
regen: () => Promise<void>;
|
|
3939
4190
|
createDefaultData: (options?: import('@mlightcad/data-model').AcDbCreateDefaultDataOptions) => void;
|
|
3940
4191
|
readonly attrs: {
|
|
@@ -3980,6 +4231,7 @@ export declare function useHover(): {
|
|
|
3980
4231
|
getAttrWithoutException: (attrName: string) => any;
|
|
3981
4232
|
setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
|
|
3982
4233
|
objectId: AcDbObjectId;
|
|
4234
|
+
readonly isTemp: any;
|
|
3983
4235
|
ownerId: AcDbObjectId;
|
|
3984
4236
|
extensionDictionary: AcDbObjectId | undefined;
|
|
3985
4237
|
database: /*elided*/ any;
|
|
@@ -3988,12 +4240,14 @@ export declare function useHover(): {
|
|
|
3988
4240
|
removeXData: (appId: string) => void;
|
|
3989
4241
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
3990
4242
|
close: () => void;
|
|
4243
|
+
dxfOutFields: (_filer: import('@mlightcad/data-model').AcDbDxfFiler) => import('@mlightcad/data-model').AcDbDatabase;
|
|
3991
4244
|
};
|
|
3992
4245
|
getXData: (appId: string) => import('@mlightcad/data-model').AcDbResultBuffer | undefined;
|
|
3993
4246
|
setXData: (resbuf: import('@mlightcad/data-model').AcDbResultBuffer) => void;
|
|
3994
4247
|
removeXData: (appId: string) => void;
|
|
3995
4248
|
createExtensionDictionary: () => AcDbObjectId | undefined;
|
|
3996
4249
|
close: () => void;
|
|
4250
|
+
dxfOut: (...args: unknown[]) => unknown;
|
|
3997
4251
|
} | null>;
|
|
3998
4252
|
id: import('vue').Ref<string | null, string | null>;
|
|
3999
4253
|
mouse: import('vue').Ref<{
|