@mlightcad/cad-simple-viewer 1.6.1 → 1.6.3

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