documents.js 1.57.1 → 1.58.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (454) hide show
  1. package/README.md +9 -0
  2. package/dist/blr-types-CYYC3yYU.d.cts +35 -0
  3. package/dist/blr-types-CYYC3yYU.d.ts +35 -0
  4. package/dist/cell-CNHPsDEk.d.cts +17 -0
  5. package/dist/cell-CNHPsDEk.d.ts +17 -0
  6. package/dist/color-71eoF1Up.d.cts +2 -0
  7. package/dist/color-Bo228AY2.d.ts +2 -0
  8. package/dist/convert/codec.cjs +51 -0
  9. package/dist/convert/codec.d.cts +13 -0
  10. package/dist/convert/codec.d.ts +13 -0
  11. package/dist/convert/codec.js +42 -0
  12. package/dist/convert/convert.cjs +443 -0
  13. package/dist/convert/convert.d.cts +55 -0
  14. package/dist/convert/convert.d.ts +55 -0
  15. package/dist/convert/convert.js +419 -0
  16. package/dist/convert/local.cjs +393 -0
  17. package/dist/convert/local.d.cts +5 -0
  18. package/dist/convert/local.d.ts +5 -0
  19. package/dist/convert/local.js +392 -0
  20. package/dist/convert/port.cjs +0 -0
  21. package/dist/convert/port.d.cts +34 -0
  22. package/dist/convert/port.d.ts +34 -0
  23. package/dist/convert/port.js +0 -0
  24. package/dist/edit/docx/content.cjs +71 -0
  25. package/dist/edit/docx/content.d.cts +6 -0
  26. package/dist/edit/docx/content.d.ts +6 -0
  27. package/dist/edit/docx/content.js +70 -0
  28. package/dist/edit/docx/editor.cjs +116 -0
  29. package/dist/edit/docx/editor.d.cts +23 -0
  30. package/dist/edit/docx/editor.d.ts +23 -0
  31. package/dist/edit/docx/editor.js +113 -0
  32. package/dist/edit/docx/image.cjs +74 -0
  33. package/dist/edit/docx/image.d.cts +2 -0
  34. package/dist/edit/docx/image.d.ts +2 -0
  35. package/dist/edit/docx/image.js +72 -0
  36. package/dist/edit/docx/paragraph.cjs +132 -0
  37. package/dist/edit/docx/paragraph.d.cts +40 -0
  38. package/dist/edit/docx/paragraph.d.ts +40 -0
  39. package/dist/edit/docx/paragraph.js +130 -0
  40. package/dist/edit/docx/props.cjs +132 -0
  41. package/dist/edit/docx/props.d.cts +20 -0
  42. package/dist/edit/docx/props.d.ts +20 -0
  43. package/dist/edit/docx/props.js +117 -0
  44. package/dist/edit/docx/run.cjs +143 -0
  45. package/dist/edit/docx/run.d.cts +2 -0
  46. package/dist/edit/docx/run.d.ts +2 -0
  47. package/dist/edit/docx/run.js +141 -0
  48. package/dist/edit/docx/scaffold.cjs +97 -0
  49. package/dist/edit/docx/scaffold.d.cts +5 -0
  50. package/dist/edit/docx/scaffold.d.ts +5 -0
  51. package/dist/edit/docx/scaffold.js +96 -0
  52. package/dist/edit/docx/table.cjs +99 -0
  53. package/dist/edit/docx/table.d.cts +34 -0
  54. package/dist/edit/docx/table.d.ts +34 -0
  55. package/dist/edit/docx/table.js +95 -0
  56. package/dist/edit/odg/content.cjs +65 -0
  57. package/dist/edit/odg/content.d.cts +6 -0
  58. package/dist/edit/odg/content.d.ts +6 -0
  59. package/dist/edit/odg/content.js +64 -0
  60. package/dist/edit/odg/editor.cjs +96 -0
  61. package/dist/edit/odg/editor.d.cts +19 -0
  62. package/dist/edit/odg/editor.d.ts +19 -0
  63. package/dist/edit/odg/editor.js +93 -0
  64. package/dist/edit/odg/page.cjs +70 -0
  65. package/dist/edit/odg/page.d.cts +34 -0
  66. package/dist/edit/odg/page.d.ts +34 -0
  67. package/dist/edit/odg/page.js +69 -0
  68. package/dist/edit/odg/scaffold.cjs +106 -0
  69. package/dist/edit/odg/scaffold.d.cts +7 -0
  70. package/dist/edit/odg/scaffold.d.ts +7 -0
  71. package/dist/edit/odg/scaffold.js +103 -0
  72. package/dist/edit/odg/style.cjs +83 -0
  73. package/dist/edit/odg/style.d.cts +14 -0
  74. package/dist/edit/odg/style.d.ts +14 -0
  75. package/dist/edit/odg/style.js +78 -0
  76. package/dist/edit/odg/svg-path.cjs +30 -0
  77. package/dist/edit/odg/svg-path.d.cts +7 -0
  78. package/dist/edit/odg/svg-path.d.ts +7 -0
  79. package/dist/edit/odg/svg-path.js +27 -0
  80. package/dist/edit/odg/vector.cjs +208 -0
  81. package/dist/edit/odg/vector.d.cts +2 -0
  82. package/dist/edit/odg/vector.d.ts +2 -0
  83. package/dist/edit/odg/vector.js +201 -0
  84. package/dist/edit/odp/content.cjs +42 -0
  85. package/dist/edit/odp/content.d.cts +6 -0
  86. package/dist/edit/odp/content.d.ts +6 -0
  87. package/dist/edit/odp/content.js +41 -0
  88. package/dist/edit/odp/editor.cjs +113 -0
  89. package/dist/edit/odp/editor.d.cts +20 -0
  90. package/dist/edit/odp/editor.d.ts +20 -0
  91. package/dist/edit/odp/editor.js +110 -0
  92. package/dist/edit/odp/image.cjs +10 -0
  93. package/dist/edit/odp/image.d.cts +2 -0
  94. package/dist/edit/odp/image.d.ts +2 -0
  95. package/dist/edit/odp/image.js +9 -0
  96. package/dist/edit/odp/scaffold.cjs +108 -0
  97. package/dist/edit/odp/scaffold.d.cts +7 -0
  98. package/dist/edit/odp/scaffold.d.ts +7 -0
  99. package/dist/edit/odp/scaffold.js +105 -0
  100. package/dist/edit/odp/shape.cjs +133 -0
  101. package/dist/edit/odp/shape.d.cts +2 -0
  102. package/dist/edit/odp/shape.d.ts +2 -0
  103. package/dist/edit/odp/shape.js +130 -0
  104. package/dist/edit/odp/slide.cjs +80 -0
  105. package/dist/edit/odp/slide.d.cts +31 -0
  106. package/dist/edit/odp/slide.d.ts +31 -0
  107. package/dist/edit/odp/slide.js +79 -0
  108. package/dist/edit/ods/address.cjs +108 -0
  109. package/dist/edit/ods/address.d.cts +15 -0
  110. package/dist/edit/ods/address.d.ts +15 -0
  111. package/dist/edit/ods/address.js +97 -0
  112. package/dist/edit/ods/cell.cjs +177 -0
  113. package/dist/edit/ods/cell.d.cts +2 -0
  114. package/dist/edit/ods/cell.d.ts +2 -0
  115. package/dist/edit/ods/cell.js +176 -0
  116. package/dist/edit/ods/content.cjs +26 -0
  117. package/dist/edit/ods/content.d.cts +6 -0
  118. package/dist/edit/ods/content.d.ts +6 -0
  119. package/dist/edit/ods/content.js +25 -0
  120. package/dist/edit/ods/editor.cjs +84 -0
  121. package/dist/edit/ods/editor.d.cts +17 -0
  122. package/dist/edit/ods/editor.d.ts +17 -0
  123. package/dist/edit/ods/editor.js +81 -0
  124. package/dist/edit/ods/print-settings.cjs +90 -0
  125. package/dist/edit/ods/print-settings.d.cts +7 -0
  126. package/dist/edit/ods/print-settings.d.ts +7 -0
  127. package/dist/edit/ods/print-settings.js +88 -0
  128. package/dist/edit/ods/scaffold.cjs +129 -0
  129. package/dist/edit/ods/scaffold.d.cts +9 -0
  130. package/dist/edit/ods/scaffold.d.ts +9 -0
  131. package/dist/edit/ods/scaffold.js +124 -0
  132. package/dist/edit/ods/sheet.cjs +70 -0
  133. package/dist/edit/ods/sheet.d.cts +22 -0
  134. package/dist/edit/ods/sheet.d.ts +22 -0
  135. package/dist/edit/ods/sheet.js +69 -0
  136. package/dist/edit/odt/automatic-styles.cjs +49 -0
  137. package/dist/edit/odt/automatic-styles.d.cts +8 -0
  138. package/dist/edit/odt/automatic-styles.d.ts +8 -0
  139. package/dist/edit/odt/automatic-styles.js +45 -0
  140. package/dist/edit/odt/content.cjs +110 -0
  141. package/dist/edit/odt/content.d.cts +9 -0
  142. package/dist/edit/odt/content.d.ts +9 -0
  143. package/dist/edit/odt/content.js +108 -0
  144. package/dist/edit/odt/editor.cjs +98 -0
  145. package/dist/edit/odt/editor.d.cts +25 -0
  146. package/dist/edit/odt/editor.d.ts +25 -0
  147. package/dist/edit/odt/editor.js +95 -0
  148. package/dist/edit/odt/list.cjs +82 -0
  149. package/dist/edit/odt/list.d.cts +2 -0
  150. package/dist/edit/odt/list.d.ts +2 -0
  151. package/dist/edit/odt/list.js +79 -0
  152. package/dist/edit/odt/paragraph.cjs +84 -0
  153. package/dist/edit/odt/paragraph.d.cts +2 -0
  154. package/dist/edit/odt/paragraph.d.ts +2 -0
  155. package/dist/edit/odt/paragraph.js +82 -0
  156. package/dist/edit/odt/props.cjs +26 -0
  157. package/dist/edit/odt/props.d.cts +7 -0
  158. package/dist/edit/odt/props.d.ts +7 -0
  159. package/dist/edit/odt/props.js +23 -0
  160. package/dist/edit/odt/run.cjs +82 -0
  161. package/dist/edit/odt/run.d.cts +2 -0
  162. package/dist/edit/odt/run.d.ts +2 -0
  163. package/dist/edit/odt/run.js +80 -0
  164. package/dist/edit/odt/scaffold.cjs +109 -0
  165. package/dist/edit/odt/scaffold.d.cts +5 -0
  166. package/dist/edit/odt/scaffold.d.ts +5 -0
  167. package/dist/edit/odt/scaffold.js +108 -0
  168. package/dist/edit/odt/table.cjs +123 -0
  169. package/dist/edit/odt/table.d.cts +37 -0
  170. package/dist/edit/odt/table.d.ts +37 -0
  171. package/dist/edit/odt/table.js +119 -0
  172. package/dist/edit/pptx/content.cjs +49 -0
  173. package/dist/edit/pptx/content.d.cts +6 -0
  174. package/dist/edit/pptx/content.d.ts +6 -0
  175. package/dist/edit/pptx/content.js +48 -0
  176. package/dist/edit/pptx/editor.cjs +187 -0
  177. package/dist/edit/pptx/editor.d.cts +20 -0
  178. package/dist/edit/pptx/editor.d.ts +20 -0
  179. package/dist/edit/pptx/editor.js +184 -0
  180. package/dist/edit/pptx/image.cjs +27 -0
  181. package/dist/edit/pptx/image.d.cts +2 -0
  182. package/dist/edit/pptx/image.d.ts +2 -0
  183. package/dist/edit/pptx/image.js +26 -0
  184. package/dist/edit/pptx/scaffold.cjs +292 -0
  185. package/dist/edit/pptx/scaffold.d.cts +13 -0
  186. package/dist/edit/pptx/scaffold.d.ts +13 -0
  187. package/dist/edit/pptx/scaffold.js +283 -0
  188. package/dist/edit/pptx/shape.cjs +182 -0
  189. package/dist/edit/pptx/shape.d.cts +2 -0
  190. package/dist/edit/pptx/shape.d.ts +2 -0
  191. package/dist/edit/pptx/shape.js +179 -0
  192. package/dist/edit/pptx/slide.cjs +146 -0
  193. package/dist/edit/pptx/slide.d.cts +33 -0
  194. package/dist/edit/pptx/slide.d.ts +33 -0
  195. package/dist/edit/pptx/slide.js +145 -0
  196. package/dist/firebird/backup.cjs +150 -0
  197. package/dist/firebird/backup.d.cts +21 -0
  198. package/dist/firebird/backup.d.ts +21 -0
  199. package/dist/firebird/backup.js +145 -0
  200. package/dist/firebird/blr-types.cjs +118 -0
  201. package/dist/firebird/blr-types.d.cts +2 -0
  202. package/dist/firebird/blr-types.d.ts +2 -0
  203. package/dist/firebird/blr-types.js +90 -0
  204. package/dist/firebird/data.cjs +231 -0
  205. package/dist/firebird/data.d.cts +17 -0
  206. package/dist/firebird/data.d.ts +17 -0
  207. package/dist/firebird/data.js +228 -0
  208. package/dist/firebird/date.cjs +63 -0
  209. package/dist/firebird/date.d.cts +17 -0
  210. package/dist/firebird/date.d.ts +17 -0
  211. package/dist/firebird/date.js +58 -0
  212. package/dist/firebird/reader.cjs +157 -0
  213. package/dist/firebird/reader.d.cts +2 -0
  214. package/dist/firebird/reader.d.ts +2 -0
  215. package/dist/firebird/reader.js +154 -0
  216. package/dist/firebird/schema.cjs +91 -0
  217. package/dist/firebird/schema.d.cts +2 -0
  218. package/dist/firebird/schema.d.ts +2 -0
  219. package/dist/firebird/schema.js +89 -0
  220. package/dist/geometry-DvwdrIij.d.cts +5 -0
  221. package/dist/geometry-DvwdrIij.d.ts +5 -0
  222. package/dist/hsqldb/cache.cjs +88 -0
  223. package/dist/hsqldb/cache.d.cts +13 -0
  224. package/dist/hsqldb/cache.d.ts +13 -0
  225. package/dist/hsqldb/cache.js +84 -0
  226. package/dist/hsqldb/rowformat.cjs +222 -0
  227. package/dist/hsqldb/rowformat.d.cts +21 -0
  228. package/dist/hsqldb/rowformat.d.ts +21 -0
  229. package/dist/hsqldb/rowformat.js +218 -0
  230. package/dist/hsqldb/script.cjs +450 -0
  231. package/dist/hsqldb/script.d.cts +19 -0
  232. package/dist/hsqldb/script.d.ts +19 -0
  233. package/dist/hsqldb/script.js +447 -0
  234. package/dist/image-B-xQWYYS.d.ts +16 -0
  235. package/dist/image-BZDy72Jb.d.cts +16 -0
  236. package/dist/image-BfRLAD9B.d.cts +18 -0
  237. package/dist/image-BfRLAD9B.d.ts +18 -0
  238. package/dist/image-CeqwL-Qs.d.ts +14 -0
  239. package/dist/image-DWX6cNOD.d.cts +14 -0
  240. package/dist/index.cjs +201 -10863
  241. package/dist/index.d.cts +71 -1406
  242. package/dist/index.d.ts +71 -1406
  243. package/dist/index.js +67 -10727
  244. package/dist/layout/drawing.cjs +117 -0
  245. package/dist/layout/drawing.d.cts +13 -0
  246. package/dist/layout/drawing.d.ts +13 -0
  247. package/dist/layout/drawing.js +116 -0
  248. package/dist/layout/engine.cjs +216 -0
  249. package/dist/layout/engine.d.cts +19 -0
  250. package/dist/layout/engine.d.ts +19 -0
  251. package/dist/layout/engine.js +215 -0
  252. package/dist/layout/reconstruct.cjs +809 -0
  253. package/dist/layout/reconstruct.d.cts +12 -0
  254. package/dist/layout/reconstruct.d.ts +12 -0
  255. package/dist/layout/reconstruct.js +805 -0
  256. package/dist/layout/shared.cjs +104 -0
  257. package/dist/layout/shared.d.cts +15 -0
  258. package/dist/layout/shared.d.ts +15 -0
  259. package/dist/layout/shared.js +96 -0
  260. package/dist/layout/sheets.cjs +413 -0
  261. package/dist/layout/sheets.d.cts +14 -0
  262. package/dist/layout/sheets.d.ts +14 -0
  263. package/dist/layout/sheets.js +414 -0
  264. package/dist/layout/slides.cjs +194 -0
  265. package/dist/layout/slides.d.cts +25 -0
  266. package/dist/layout/slides.d.ts +25 -0
  267. package/dist/layout/slides.js +192 -0
  268. package/dist/list-BuBM9rwQ.d.cts +24 -0
  269. package/dist/list-CvKxhy3y.d.ts +24 -0
  270. package/dist/mathml/compose.cjs +53 -0
  271. package/dist/mathml/compose.d.cts +8 -0
  272. package/dist/mathml/compose.d.ts +8 -0
  273. package/dist/mathml/compose.js +49 -0
  274. package/dist/mathml/layout-types.cjs +0 -0
  275. package/dist/mathml/layout-types.d.cts +50 -0
  276. package/dist/mathml/layout-types.d.ts +50 -0
  277. package/dist/mathml/layout-types.js +0 -0
  278. package/dist/mathml/layout.cjs +373 -0
  279. package/dist/mathml/layout.d.cts +24 -0
  280. package/dist/mathml/layout.d.ts +24 -0
  281. package/dist/mathml/layout.js +371 -0
  282. package/dist/mathml/length.cjs +41 -0
  283. package/dist/mathml/length.d.cts +4 -0
  284. package/dist/mathml/length.d.ts +4 -0
  285. package/dist/mathml/length.js +40 -0
  286. package/dist/mathml/metrics.cjs +0 -0
  287. package/dist/mathml/metrics.d.cts +44 -0
  288. package/dist/mathml/metrics.d.ts +44 -0
  289. package/dist/mathml/metrics.js +0 -0
  290. package/dist/mathml/nodes.cjs +39 -0
  291. package/dist/mathml/nodes.d.cts +2 -0
  292. package/dist/mathml/nodes.d.ts +2 -0
  293. package/dist/mathml/nodes.js +32 -0
  294. package/dist/mathml/operators.cjs +189 -0
  295. package/dist/mathml/operators.d.cts +13 -0
  296. package/dist/mathml/operators.d.ts +13 -0
  297. package/dist/mathml/operators.js +188 -0
  298. package/dist/mathml/radical.cjs +46 -0
  299. package/dist/mathml/radical.d.cts +10 -0
  300. package/dist/mathml/radical.d.ts +10 -0
  301. package/dist/mathml/radical.js +45 -0
  302. package/dist/mathml/variant.cjs +1160 -0
  303. package/dist/mathml/variant.d.cts +7 -0
  304. package/dist/mathml/variant.d.ts +7 -0
  305. package/dist/mathml/variant.js +1157 -0
  306. package/dist/model/bytes.cjs +88 -0
  307. package/dist/model/bytes.d.cts +12 -0
  308. package/dist/model/bytes.d.ts +12 -0
  309. package/dist/model/bytes.js +80 -0
  310. package/dist/model/color.cjs +26 -0
  311. package/dist/model/color.d.cts +2 -0
  312. package/dist/model/color.d.ts +2 -0
  313. package/dist/model/color.js +2 -0
  314. package/dist/model/content.cjs +34 -0
  315. package/dist/model/content.d.cts +362 -0
  316. package/dist/model/content.d.ts +362 -0
  317. package/dist/model/content.js +32 -0
  318. package/dist/model/formula.cjs +0 -0
  319. package/dist/model/formula.d.cts +8 -0
  320. package/dist/model/formula.d.ts +8 -0
  321. package/dist/model/formula.js +0 -0
  322. package/dist/model/geometry.cjs +55 -0
  323. package/dist/model/geometry.d.cts +2 -0
  324. package/dist/model/geometry.d.ts +2 -0
  325. package/dist/model/geometry.js +12 -0
  326. package/dist/model/style.cjs +20 -0
  327. package/dist/model/style.d.cts +2 -0
  328. package/dist/model/style.d.ts +2 -0
  329. package/dist/model/style.js +2 -0
  330. package/dist/model/units.cjs +55 -0
  331. package/dist/model/units.d.cts +20 -0
  332. package/dist/model/units.d.ts +20 -0
  333. package/dist/model/units.js +38 -0
  334. package/dist/nodes-pArN9ilm.d.cts +27 -0
  335. package/dist/nodes-pArN9ilm.d.ts +27 -0
  336. package/dist/odb/csv.cjs +48 -0
  337. package/dist/odb/csv.d.cts +14 -0
  338. package/dist/odb/csv.d.ts +14 -0
  339. package/dist/odb/csv.js +45 -0
  340. package/dist/odb/read.cjs +87 -0
  341. package/dist/odb/read.d.cts +15 -0
  342. package/dist/odb/read.d.ts +15 -0
  343. package/dist/odb/read.js +85 -0
  344. package/dist/odb/spreadsheet.cjs +68 -0
  345. package/dist/odb/spreadsheet.d.cts +6 -0
  346. package/dist/odb/spreadsheet.d.ts +6 -0
  347. package/dist/odb/spreadsheet.js +67 -0
  348. package/dist/odf/formula/detect.cjs +29 -0
  349. package/dist/odf/formula/detect.d.cts +12 -0
  350. package/dist/odf/formula/detect.d.ts +12 -0
  351. package/dist/odf/formula/detect.js +28 -0
  352. package/dist/odf/formula/placeholder.cjs +37 -0
  353. package/dist/odf/formula/placeholder.d.cts +14 -0
  354. package/dist/odf/formula/placeholder.d.ts +14 -0
  355. package/dist/odf/formula/placeholder.js +36 -0
  356. package/dist/odf/formula/read.cjs +32 -0
  357. package/dist/odf/formula/read.d.cts +11 -0
  358. package/dist/odf/formula/read.d.ts +11 -0
  359. package/dist/odf/formula/read.js +30 -0
  360. package/dist/odf/odg/read.cjs +15 -0
  361. package/dist/odf/odg/read.d.cts +6 -0
  362. package/dist/odf/odg/read.d.ts +6 -0
  363. package/dist/odf/odg/read.js +14 -0
  364. package/dist/odf/odp/read.cjs +45 -0
  365. package/dist/odf/odp/read.d.cts +11 -0
  366. package/dist/odf/odp/read.d.ts +11 -0
  367. package/dist/odf/odp/read.js +44 -0
  368. package/dist/odf/ods/read.cjs +15 -0
  369. package/dist/odf/ods/read.d.cts +6 -0
  370. package/dist/odf/ods/read.d.ts +6 -0
  371. package/dist/odf/ods/read.js +14 -0
  372. package/dist/odf/odt/read.cjs +43 -0
  373. package/dist/odf/odt/read.d.cts +11 -0
  374. package/dist/odf/odt/read.d.ts +11 -0
  375. package/dist/odf/odt/read.js +42 -0
  376. package/dist/odf-package/manifest.cjs +62 -0
  377. package/dist/odf-package/manifest.d.cts +2 -0
  378. package/dist/odf-package/manifest.d.ts +2 -0
  379. package/dist/odf-package/manifest.js +2 -0
  380. package/dist/odf-package/media.cjs +34 -0
  381. package/dist/odf-package/media.d.cts +8 -0
  382. package/dist/odf-package/media.d.ts +8 -0
  383. package/dist/odf-package/media.js +34 -0
  384. package/dist/ooxml/docx/read.cjs +15 -0
  385. package/dist/ooxml/docx/read.d.cts +6 -0
  386. package/dist/ooxml/docx/read.d.ts +6 -0
  387. package/dist/ooxml/docx/read.js +14 -0
  388. package/dist/ooxml/pptx/read.cjs +15 -0
  389. package/dist/ooxml/pptx/read.d.cts +6 -0
  390. package/dist/ooxml/pptx/read.d.ts +6 -0
  391. package/dist/ooxml/pptx/read.js +14 -0
  392. package/dist/opc/content-types.cjs +47 -0
  393. package/dist/opc/content-types.d.cts +7 -0
  394. package/dist/opc/content-types.d.ts +7 -0
  395. package/dist/opc/content-types.js +44 -0
  396. package/dist/opc/media.cjs +45 -0
  397. package/dist/opc/media.d.cts +10 -0
  398. package/dist/opc/media.d.ts +10 -0
  399. package/dist/opc/media.js +44 -0
  400. package/dist/opc/paths.cjs +28 -0
  401. package/dist/opc/paths.d.cts +5 -0
  402. package/dist/opc/paths.d.ts +5 -0
  403. package/dist/opc/paths.js +26 -0
  404. package/dist/opc/rels.cjs +47 -0
  405. package/dist/opc/rels.d.cts +10 -0
  406. package/dist/opc/rels.d.ts +10 -0
  407. package/dist/opc/rels.js +46 -0
  408. package/dist/paragraph-BXbXKPy3.d.cts +30 -0
  409. package/dist/paragraph-CoUi_88j.d.ts +30 -0
  410. package/dist/ports/abort.cjs +7 -0
  411. package/dist/ports/abort.d.cts +4 -0
  412. package/dist/ports/abort.d.ts +4 -0
  413. package/dist/ports/abort.js +6 -0
  414. package/dist/ports/clock.cjs +9 -0
  415. package/dist/ports/clock.d.cts +8 -0
  416. package/dist/ports/clock.d.ts +8 -0
  417. package/dist/ports/clock.js +7 -0
  418. package/dist/reader-DP0Mbaj4.d.cts +41 -0
  419. package/dist/reader-DP0Mbaj4.d.ts +41 -0
  420. package/dist/run-B3GNScJH.d.cts +38 -0
  421. package/dist/run-CJfh8rv3.d.ts +38 -0
  422. package/dist/run-D2rTWHbt.d.ts +38 -0
  423. package/dist/run-F8JN7Vy4.d.cts +38 -0
  424. package/dist/schema-Acco3Ezi.d.cts +22 -0
  425. package/dist/schema-VkAA6pF5.d.ts +22 -0
  426. package/dist/shape-BUfjw5eZ.d.cts +35 -0
  427. package/dist/shape-BfN3m52m.d.ts +30 -0
  428. package/dist/shape-CN2ycxOo.d.cts +30 -0
  429. package/dist/shape-CTkl6kt8.d.ts +35 -0
  430. package/dist/style-DkamR3aY.d.cts +2 -0
  431. package/dist/style-DkamR3aY.d.ts +2 -0
  432. package/dist/vector-ClohqsOe.d.cts +76 -0
  433. package/dist/vector-ClohqsOe.d.ts +76 -0
  434. package/dist/xml/edit.cjs +65 -0
  435. package/dist/xml/edit.d.cts +12 -0
  436. package/dist/xml/edit.d.ts +12 -0
  437. package/dist/xml/edit.js +57 -0
  438. package/dist/xml/entities.cjs +12 -0
  439. package/dist/xml/entities.d.cts +5 -0
  440. package/dist/xml/entities.d.ts +5 -0
  441. package/dist/xml/entities.js +10 -0
  442. package/dist/xml/fragment.cjs +22 -0
  443. package/dist/xml/fragment.d.cts +6 -0
  444. package/dist/xml/fragment.d.ts +6 -0
  445. package/dist/xml/fragment.js +20 -0
  446. package/dist/xml/odf-text.cjs +53 -0
  447. package/dist/xml/odf-text.d.cts +6 -0
  448. package/dist/xml/odf-text.d.ts +6 -0
  449. package/dist/xml/odf-text.js +51 -0
  450. package/dist/xml/query.cjs +33 -0
  451. package/dist/xml/query.d.cts +12 -0
  452. package/dist/xml/query.d.ts +12 -0
  453. package/dist/xml/query.js +29 -0
  454. package/package.json +9 -1
@@ -0,0 +1,1157 @@
1
+ //#region src/mathml/variant.ts
2
+ const LATIN_VARIANTS = {
3
+ bold: [[
4
+ 119808,
5
+ 119809,
6
+ 119810,
7
+ 119811,
8
+ 119812,
9
+ 119813,
10
+ 119814,
11
+ 119815,
12
+ 119816,
13
+ 119817,
14
+ 119818,
15
+ 119819,
16
+ 119820,
17
+ 119821,
18
+ 119822,
19
+ 119823,
20
+ 119824,
21
+ 119825,
22
+ 119826,
23
+ 119827,
24
+ 119828,
25
+ 119829,
26
+ 119830,
27
+ 119831,
28
+ 119832,
29
+ 119833
30
+ ], [
31
+ 119834,
32
+ 119835,
33
+ 119836,
34
+ 119837,
35
+ 119838,
36
+ 119839,
37
+ 119840,
38
+ 119841,
39
+ 119842,
40
+ 119843,
41
+ 119844,
42
+ 119845,
43
+ 119846,
44
+ 119847,
45
+ 119848,
46
+ 119849,
47
+ 119850,
48
+ 119851,
49
+ 119852,
50
+ 119853,
51
+ 119854,
52
+ 119855,
53
+ 119856,
54
+ 119857,
55
+ 119858,
56
+ 119859
57
+ ]],
58
+ italic: [[
59
+ 119860,
60
+ 119861,
61
+ 119862,
62
+ 119863,
63
+ 119864,
64
+ 119865,
65
+ 119866,
66
+ 119867,
67
+ 119868,
68
+ 119869,
69
+ 119870,
70
+ 119871,
71
+ 119872,
72
+ 119873,
73
+ 119874,
74
+ 119875,
75
+ 119876,
76
+ 119877,
77
+ 119878,
78
+ 119879,
79
+ 119880,
80
+ 119881,
81
+ 119882,
82
+ 119883,
83
+ 119884,
84
+ 119885
85
+ ], [
86
+ 119886,
87
+ 119887,
88
+ 119888,
89
+ 119889,
90
+ 119890,
91
+ 119891,
92
+ 119892,
93
+ 8462,
94
+ 119894,
95
+ 119895,
96
+ 119896,
97
+ 119897,
98
+ 119898,
99
+ 119899,
100
+ 119900,
101
+ 119901,
102
+ 119902,
103
+ 119903,
104
+ 119904,
105
+ 119905,
106
+ 119906,
107
+ 119907,
108
+ 119908,
109
+ 119909,
110
+ 119910,
111
+ 119911
112
+ ]],
113
+ "bold-italic": [[
114
+ 119912,
115
+ 119913,
116
+ 119914,
117
+ 119915,
118
+ 119916,
119
+ 119917,
120
+ 119918,
121
+ 119919,
122
+ 119920,
123
+ 119921,
124
+ 119922,
125
+ 119923,
126
+ 119924,
127
+ 119925,
128
+ 119926,
129
+ 119927,
130
+ 119928,
131
+ 119929,
132
+ 119930,
133
+ 119931,
134
+ 119932,
135
+ 119933,
136
+ 119934,
137
+ 119935,
138
+ 119936,
139
+ 119937
140
+ ], [
141
+ 119938,
142
+ 119939,
143
+ 119940,
144
+ 119941,
145
+ 119942,
146
+ 119943,
147
+ 119944,
148
+ 119945,
149
+ 119946,
150
+ 119947,
151
+ 119948,
152
+ 119949,
153
+ 119950,
154
+ 119951,
155
+ 119952,
156
+ 119953,
157
+ 119954,
158
+ 119955,
159
+ 119956,
160
+ 119957,
161
+ 119958,
162
+ 119959,
163
+ 119960,
164
+ 119961,
165
+ 119962,
166
+ 119963
167
+ ]],
168
+ script: [[
169
+ 119964,
170
+ 8492,
171
+ 119966,
172
+ 119967,
173
+ 8496,
174
+ 8497,
175
+ 119970,
176
+ 8459,
177
+ 8464,
178
+ 119973,
179
+ 119974,
180
+ 8466,
181
+ 8499,
182
+ 119977,
183
+ 119978,
184
+ 119979,
185
+ 119980,
186
+ 8475,
187
+ 119982,
188
+ 119983,
189
+ 119984,
190
+ 119985,
191
+ 119986,
192
+ 119987,
193
+ 119988,
194
+ 119989
195
+ ], [
196
+ 119990,
197
+ 119991,
198
+ 119992,
199
+ 119993,
200
+ 8495,
201
+ 119995,
202
+ 8458,
203
+ 119997,
204
+ 119998,
205
+ 119999,
206
+ 12e4,
207
+ 120001,
208
+ 120002,
209
+ 120003,
210
+ 8500,
211
+ 120005,
212
+ 120006,
213
+ 120007,
214
+ 120008,
215
+ 120009,
216
+ 120010,
217
+ 120011,
218
+ 120012,
219
+ 120013,
220
+ 120014,
221
+ 120015
222
+ ]],
223
+ "bold-script": [[
224
+ 120016,
225
+ 120017,
226
+ 120018,
227
+ 120019,
228
+ 120020,
229
+ 120021,
230
+ 120022,
231
+ 120023,
232
+ 120024,
233
+ 120025,
234
+ 120026,
235
+ 120027,
236
+ 120028,
237
+ 120029,
238
+ 120030,
239
+ 120031,
240
+ 120032,
241
+ 120033,
242
+ 120034,
243
+ 120035,
244
+ 120036,
245
+ 120037,
246
+ 120038,
247
+ 120039,
248
+ 120040,
249
+ 120041
250
+ ], [
251
+ 120042,
252
+ 120043,
253
+ 120044,
254
+ 120045,
255
+ 120046,
256
+ 120047,
257
+ 120048,
258
+ 120049,
259
+ 120050,
260
+ 120051,
261
+ 120052,
262
+ 120053,
263
+ 120054,
264
+ 120055,
265
+ 120056,
266
+ 120057,
267
+ 120058,
268
+ 120059,
269
+ 120060,
270
+ 120061,
271
+ 120062,
272
+ 120063,
273
+ 120064,
274
+ 120065,
275
+ 120066,
276
+ 120067
277
+ ]],
278
+ fraktur: [[
279
+ 120068,
280
+ 120069,
281
+ 8493,
282
+ 120071,
283
+ 120072,
284
+ 120073,
285
+ 120074,
286
+ 8460,
287
+ 8465,
288
+ 120077,
289
+ 120078,
290
+ 120079,
291
+ 120080,
292
+ 120081,
293
+ 120082,
294
+ 120083,
295
+ 120084,
296
+ 8476,
297
+ 120086,
298
+ 120087,
299
+ 120088,
300
+ 120089,
301
+ 120090,
302
+ 120091,
303
+ 120092,
304
+ 8488
305
+ ], [
306
+ 120094,
307
+ 120095,
308
+ 120096,
309
+ 120097,
310
+ 120098,
311
+ 120099,
312
+ 120100,
313
+ 120101,
314
+ 120102,
315
+ 120103,
316
+ 120104,
317
+ 120105,
318
+ 120106,
319
+ 120107,
320
+ 120108,
321
+ 120109,
322
+ 120110,
323
+ 120111,
324
+ 120112,
325
+ 120113,
326
+ 120114,
327
+ 120115,
328
+ 120116,
329
+ 120117,
330
+ 120118,
331
+ 120119
332
+ ]],
333
+ "double-struck": [[
334
+ 120120,
335
+ 120121,
336
+ 8450,
337
+ 120123,
338
+ 120124,
339
+ 120125,
340
+ 120126,
341
+ 8461,
342
+ 120128,
343
+ 120129,
344
+ 120130,
345
+ 120131,
346
+ 120132,
347
+ 8469,
348
+ 120134,
349
+ 8473,
350
+ 8474,
351
+ 8477,
352
+ 120138,
353
+ 120139,
354
+ 120140,
355
+ 120141,
356
+ 120142,
357
+ 120143,
358
+ 120144,
359
+ 8484
360
+ ], [
361
+ 120146,
362
+ 120147,
363
+ 120148,
364
+ 120149,
365
+ 120150,
366
+ 120151,
367
+ 120152,
368
+ 120153,
369
+ 120154,
370
+ 120155,
371
+ 120156,
372
+ 120157,
373
+ 120158,
374
+ 120159,
375
+ 120160,
376
+ 120161,
377
+ 120162,
378
+ 120163,
379
+ 120164,
380
+ 120165,
381
+ 120166,
382
+ 120167,
383
+ 120168,
384
+ 120169,
385
+ 120170,
386
+ 120171
387
+ ]],
388
+ "bold-fraktur": [[
389
+ 120172,
390
+ 120173,
391
+ 120174,
392
+ 120175,
393
+ 120176,
394
+ 120177,
395
+ 120178,
396
+ 120179,
397
+ 120180,
398
+ 120181,
399
+ 120182,
400
+ 120183,
401
+ 120184,
402
+ 120185,
403
+ 120186,
404
+ 120187,
405
+ 120188,
406
+ 120189,
407
+ 120190,
408
+ 120191,
409
+ 120192,
410
+ 120193,
411
+ 120194,
412
+ 120195,
413
+ 120196,
414
+ 120197
415
+ ], [
416
+ 120198,
417
+ 120199,
418
+ 120200,
419
+ 120201,
420
+ 120202,
421
+ 120203,
422
+ 120204,
423
+ 120205,
424
+ 120206,
425
+ 120207,
426
+ 120208,
427
+ 120209,
428
+ 120210,
429
+ 120211,
430
+ 120212,
431
+ 120213,
432
+ 120214,
433
+ 120215,
434
+ 120216,
435
+ 120217,
436
+ 120218,
437
+ 120219,
438
+ 120220,
439
+ 120221,
440
+ 120222,
441
+ 120223
442
+ ]],
443
+ "sans-serif": [[
444
+ 120224,
445
+ 120225,
446
+ 120226,
447
+ 120227,
448
+ 120228,
449
+ 120229,
450
+ 120230,
451
+ 120231,
452
+ 120232,
453
+ 120233,
454
+ 120234,
455
+ 120235,
456
+ 120236,
457
+ 120237,
458
+ 120238,
459
+ 120239,
460
+ 120240,
461
+ 120241,
462
+ 120242,
463
+ 120243,
464
+ 120244,
465
+ 120245,
466
+ 120246,
467
+ 120247,
468
+ 120248,
469
+ 120249
470
+ ], [
471
+ 120250,
472
+ 120251,
473
+ 120252,
474
+ 120253,
475
+ 120254,
476
+ 120255,
477
+ 120256,
478
+ 120257,
479
+ 120258,
480
+ 120259,
481
+ 120260,
482
+ 120261,
483
+ 120262,
484
+ 120263,
485
+ 120264,
486
+ 120265,
487
+ 120266,
488
+ 120267,
489
+ 120268,
490
+ 120269,
491
+ 120270,
492
+ 120271,
493
+ 120272,
494
+ 120273,
495
+ 120274,
496
+ 120275
497
+ ]],
498
+ "bold-sans-serif": [[
499
+ 120276,
500
+ 120277,
501
+ 120278,
502
+ 120279,
503
+ 120280,
504
+ 120281,
505
+ 120282,
506
+ 120283,
507
+ 120284,
508
+ 120285,
509
+ 120286,
510
+ 120287,
511
+ 120288,
512
+ 120289,
513
+ 120290,
514
+ 120291,
515
+ 120292,
516
+ 120293,
517
+ 120294,
518
+ 120295,
519
+ 120296,
520
+ 120297,
521
+ 120298,
522
+ 120299,
523
+ 120300,
524
+ 120301
525
+ ], [
526
+ 120302,
527
+ 120303,
528
+ 120304,
529
+ 120305,
530
+ 120306,
531
+ 120307,
532
+ 120308,
533
+ 120309,
534
+ 120310,
535
+ 120311,
536
+ 120312,
537
+ 120313,
538
+ 120314,
539
+ 120315,
540
+ 120316,
541
+ 120317,
542
+ 120318,
543
+ 120319,
544
+ 120320,
545
+ 120321,
546
+ 120322,
547
+ 120323,
548
+ 120324,
549
+ 120325,
550
+ 120326,
551
+ 120327
552
+ ]],
553
+ "sans-serif-italic": [[
554
+ 120328,
555
+ 120329,
556
+ 120330,
557
+ 120331,
558
+ 120332,
559
+ 120333,
560
+ 120334,
561
+ 120335,
562
+ 120336,
563
+ 120337,
564
+ 120338,
565
+ 120339,
566
+ 120340,
567
+ 120341,
568
+ 120342,
569
+ 120343,
570
+ 120344,
571
+ 120345,
572
+ 120346,
573
+ 120347,
574
+ 120348,
575
+ 120349,
576
+ 120350,
577
+ 120351,
578
+ 120352,
579
+ 120353
580
+ ], [
581
+ 120354,
582
+ 120355,
583
+ 120356,
584
+ 120357,
585
+ 120358,
586
+ 120359,
587
+ 120360,
588
+ 120361,
589
+ 120362,
590
+ 120363,
591
+ 120364,
592
+ 120365,
593
+ 120366,
594
+ 120367,
595
+ 120368,
596
+ 120369,
597
+ 120370,
598
+ 120371,
599
+ 120372,
600
+ 120373,
601
+ 120374,
602
+ 120375,
603
+ 120376,
604
+ 120377,
605
+ 120378,
606
+ 120379
607
+ ]],
608
+ "sans-serif-bold-italic": [[
609
+ 120380,
610
+ 120381,
611
+ 120382,
612
+ 120383,
613
+ 120384,
614
+ 120385,
615
+ 120386,
616
+ 120387,
617
+ 120388,
618
+ 120389,
619
+ 120390,
620
+ 120391,
621
+ 120392,
622
+ 120393,
623
+ 120394,
624
+ 120395,
625
+ 120396,
626
+ 120397,
627
+ 120398,
628
+ 120399,
629
+ 120400,
630
+ 120401,
631
+ 120402,
632
+ 120403,
633
+ 120404,
634
+ 120405
635
+ ], [
636
+ 120406,
637
+ 120407,
638
+ 120408,
639
+ 120409,
640
+ 120410,
641
+ 120411,
642
+ 120412,
643
+ 120413,
644
+ 120414,
645
+ 120415,
646
+ 120416,
647
+ 120417,
648
+ 120418,
649
+ 120419,
650
+ 120420,
651
+ 120421,
652
+ 120422,
653
+ 120423,
654
+ 120424,
655
+ 120425,
656
+ 120426,
657
+ 120427,
658
+ 120428,
659
+ 120429,
660
+ 120430,
661
+ 120431
662
+ ]],
663
+ monospace: [[
664
+ 120432,
665
+ 120433,
666
+ 120434,
667
+ 120435,
668
+ 120436,
669
+ 120437,
670
+ 120438,
671
+ 120439,
672
+ 120440,
673
+ 120441,
674
+ 120442,
675
+ 120443,
676
+ 120444,
677
+ 120445,
678
+ 120446,
679
+ 120447,
680
+ 120448,
681
+ 120449,
682
+ 120450,
683
+ 120451,
684
+ 120452,
685
+ 120453,
686
+ 120454,
687
+ 120455,
688
+ 120456,
689
+ 120457
690
+ ], [
691
+ 120458,
692
+ 120459,
693
+ 120460,
694
+ 120461,
695
+ 120462,
696
+ 120463,
697
+ 120464,
698
+ 120465,
699
+ 120466,
700
+ 120467,
701
+ 120468,
702
+ 120469,
703
+ 120470,
704
+ 120471,
705
+ 120472,
706
+ 120473,
707
+ 120474,
708
+ 120475,
709
+ 120476,
710
+ 120477,
711
+ 120478,
712
+ 120479,
713
+ 120480,
714
+ 120481,
715
+ 120482,
716
+ 120483
717
+ ]]
718
+ };
719
+ const GREEK_UPPER_BASE = [
720
+ 913,
721
+ 914,
722
+ 915,
723
+ 916,
724
+ 917,
725
+ 918,
726
+ 919,
727
+ 920,
728
+ 921,
729
+ 922,
730
+ 923,
731
+ 924,
732
+ 925,
733
+ 926,
734
+ 927,
735
+ 928,
736
+ 929,
737
+ 931,
738
+ 932,
739
+ 933,
740
+ 934,
741
+ 935,
742
+ 936,
743
+ 937
744
+ ];
745
+ const GREEK_LOWER_BASE = [
746
+ 945,
747
+ 946,
748
+ 947,
749
+ 948,
750
+ 949,
751
+ 950,
752
+ 951,
753
+ 952,
754
+ 953,
755
+ 954,
756
+ 955,
757
+ 956,
758
+ 957,
759
+ 958,
760
+ 959,
761
+ 960,
762
+ 961,
763
+ 963,
764
+ 964,
765
+ 965,
766
+ 966,
767
+ 967,
768
+ 968,
769
+ 969
770
+ ];
771
+ const GREEK_VARIANTS = {
772
+ bold: {
773
+ upper: [
774
+ 120488,
775
+ 120489,
776
+ 120490,
777
+ 120491,
778
+ 120492,
779
+ 120493,
780
+ 120494,
781
+ 120495,
782
+ 120496,
783
+ 120497,
784
+ 120498,
785
+ 120499,
786
+ 120500,
787
+ 120501,
788
+ 120502,
789
+ 120503,
790
+ 120504,
791
+ 120506,
792
+ 120507,
793
+ 120508,
794
+ 120509,
795
+ 120510,
796
+ 120511,
797
+ 120512
798
+ ],
799
+ lower: [
800
+ 120514,
801
+ 120515,
802
+ 120516,
803
+ 120517,
804
+ 120518,
805
+ 120519,
806
+ 120520,
807
+ 120521,
808
+ 120522,
809
+ 120523,
810
+ 120524,
811
+ 120525,
812
+ 120526,
813
+ 120527,
814
+ 120528,
815
+ 120529,
816
+ 120530,
817
+ 120532,
818
+ 120533,
819
+ 120534,
820
+ 120535,
821
+ 120536,
822
+ 120537,
823
+ 120538
824
+ ],
825
+ nabla: 120513,
826
+ partial: 120539
827
+ },
828
+ italic: {
829
+ upper: [
830
+ 120546,
831
+ 120547,
832
+ 120548,
833
+ 120549,
834
+ 120550,
835
+ 120551,
836
+ 120552,
837
+ 120553,
838
+ 120554,
839
+ 120555,
840
+ 120556,
841
+ 120557,
842
+ 120558,
843
+ 120559,
844
+ 120560,
845
+ 120561,
846
+ 120562,
847
+ 120564,
848
+ 120565,
849
+ 120566,
850
+ 120567,
851
+ 120568,
852
+ 120569,
853
+ 120570
854
+ ],
855
+ lower: [
856
+ 120572,
857
+ 120573,
858
+ 120574,
859
+ 120575,
860
+ 120576,
861
+ 120577,
862
+ 120578,
863
+ 120579,
864
+ 120580,
865
+ 120581,
866
+ 120582,
867
+ 120583,
868
+ 120584,
869
+ 120585,
870
+ 120586,
871
+ 120587,
872
+ 120588,
873
+ 120590,
874
+ 120591,
875
+ 120592,
876
+ 120593,
877
+ 120594,
878
+ 120595,
879
+ 120596
880
+ ],
881
+ nabla: 120571,
882
+ partial: 120597
883
+ },
884
+ "bold-italic": {
885
+ upper: [
886
+ 120604,
887
+ 120605,
888
+ 120606,
889
+ 120607,
890
+ 120608,
891
+ 120609,
892
+ 120610,
893
+ 120611,
894
+ 120612,
895
+ 120613,
896
+ 120614,
897
+ 120615,
898
+ 120616,
899
+ 120617,
900
+ 120618,
901
+ 120619,
902
+ 120620,
903
+ 120622,
904
+ 120623,
905
+ 120624,
906
+ 120625,
907
+ 120626,
908
+ 120627,
909
+ 120628
910
+ ],
911
+ lower: [
912
+ 120630,
913
+ 120631,
914
+ 120632,
915
+ 120633,
916
+ 120634,
917
+ 120635,
918
+ 120636,
919
+ 120637,
920
+ 120638,
921
+ 120639,
922
+ 120640,
923
+ 120641,
924
+ 120642,
925
+ 120643,
926
+ 120644,
927
+ 120645,
928
+ 120646,
929
+ 120648,
930
+ 120649,
931
+ 120650,
932
+ 120651,
933
+ 120652,
934
+ 120653,
935
+ 120654
936
+ ],
937
+ nabla: 120629,
938
+ partial: 120655
939
+ },
940
+ "bold-sans-serif": {
941
+ upper: [
942
+ 120662,
943
+ 120663,
944
+ 120664,
945
+ 120665,
946
+ 120666,
947
+ 120667,
948
+ 120668,
949
+ 120669,
950
+ 120670,
951
+ 120671,
952
+ 120672,
953
+ 120673,
954
+ 120674,
955
+ 120675,
956
+ 120676,
957
+ 120677,
958
+ 120678,
959
+ 120680,
960
+ 120681,
961
+ 120682,
962
+ 120683,
963
+ 120684,
964
+ 120685,
965
+ 120686
966
+ ],
967
+ lower: [
968
+ 120688,
969
+ 120689,
970
+ 120690,
971
+ 120691,
972
+ 120692,
973
+ 120693,
974
+ 120694,
975
+ 120695,
976
+ 120696,
977
+ 120697,
978
+ 120698,
979
+ 120699,
980
+ 120700,
981
+ 120701,
982
+ 120702,
983
+ 120703,
984
+ 120704,
985
+ 120706,
986
+ 120707,
987
+ 120708,
988
+ 120709,
989
+ 120710,
990
+ 120711,
991
+ 120712
992
+ ],
993
+ nabla: 120687,
994
+ partial: 120713
995
+ },
996
+ "sans-serif-bold-italic": {
997
+ upper: [
998
+ 120720,
999
+ 120721,
1000
+ 120722,
1001
+ 120723,
1002
+ 120724,
1003
+ 120725,
1004
+ 120726,
1005
+ 120727,
1006
+ 120728,
1007
+ 120729,
1008
+ 120730,
1009
+ 120731,
1010
+ 120732,
1011
+ 120733,
1012
+ 120734,
1013
+ 120735,
1014
+ 120736,
1015
+ 120738,
1016
+ 120739,
1017
+ 120740,
1018
+ 120741,
1019
+ 120742,
1020
+ 120743,
1021
+ 120744
1022
+ ],
1023
+ lower: [
1024
+ 120746,
1025
+ 120747,
1026
+ 120748,
1027
+ 120749,
1028
+ 120750,
1029
+ 120751,
1030
+ 120752,
1031
+ 120753,
1032
+ 120754,
1033
+ 120755,
1034
+ 120756,
1035
+ 120757,
1036
+ 120758,
1037
+ 120759,
1038
+ 120760,
1039
+ 120761,
1040
+ 120762,
1041
+ 120764,
1042
+ 120765,
1043
+ 120766,
1044
+ 120767,
1045
+ 120768,
1046
+ 120769,
1047
+ 120770
1048
+ ],
1049
+ nabla: 120745,
1050
+ partial: 120771
1051
+ }
1052
+ };
1053
+ const DIGIT_VARIANTS = {
1054
+ bold: [
1055
+ 120782,
1056
+ 120783,
1057
+ 120784,
1058
+ 120785,
1059
+ 120786,
1060
+ 120787,
1061
+ 120788,
1062
+ 120789,
1063
+ 120790,
1064
+ 120791
1065
+ ],
1066
+ "double-struck": [
1067
+ 120792,
1068
+ 120793,
1069
+ 120794,
1070
+ 120795,
1071
+ 120796,
1072
+ 120797,
1073
+ 120798,
1074
+ 120799,
1075
+ 120800,
1076
+ 120801
1077
+ ],
1078
+ "sans-serif": [
1079
+ 120802,
1080
+ 120803,
1081
+ 120804,
1082
+ 120805,
1083
+ 120806,
1084
+ 120807,
1085
+ 120808,
1086
+ 120809,
1087
+ 120810,
1088
+ 120811
1089
+ ],
1090
+ "bold-sans-serif": [
1091
+ 120812,
1092
+ 120813,
1093
+ 120814,
1094
+ 120815,
1095
+ 120816,
1096
+ 120817,
1097
+ 120818,
1098
+ 120819,
1099
+ 120820,
1100
+ 120821
1101
+ ],
1102
+ monospace: [
1103
+ 120822,
1104
+ 120823,
1105
+ 120824,
1106
+ 120825,
1107
+ 120826,
1108
+ 120827,
1109
+ 120828,
1110
+ 120829,
1111
+ 120830,
1112
+ 120831
1113
+ ]
1114
+ };
1115
+ function mapMathVariant(codePoint, variant) {
1116
+ if (variant === "normal") return codePoint;
1117
+ if (codePoint >= 65 && codePoint <= 90) return LATIN_VARIANTS[variant]?.[0][codePoint - 65] ?? codePoint;
1118
+ if (codePoint >= 97 && codePoint <= 122) return LATIN_VARIANTS[variant]?.[1][codePoint - 97] ?? codePoint;
1119
+ if (codePoint >= 48 && codePoint <= 57) return DIGIT_VARIANTS[variant]?.[codePoint - 48] ?? codePoint;
1120
+ const greekUpperIndex = GREEK_UPPER_BASE.indexOf(codePoint);
1121
+ if (greekUpperIndex !== -1) return GREEK_VARIANTS[variant]?.upper[greekUpperIndex] ?? codePoint;
1122
+ const greekLowerIndex = GREEK_LOWER_BASE.indexOf(codePoint);
1123
+ if (greekLowerIndex !== -1) return GREEK_VARIANTS[variant]?.lower[greekLowerIndex] ?? codePoint;
1124
+ if (codePoint === 8711) return GREEK_VARIANTS[variant]?.nabla ?? codePoint;
1125
+ if (codePoint === 8706) return GREEK_VARIANTS[variant]?.partial ?? codePoint;
1126
+ return codePoint;
1127
+ }
1128
+ function applyMathVariant(text, variant) {
1129
+ if (variant === "normal") return text;
1130
+ let out = "";
1131
+ for (const ch of text) {
1132
+ const codePoint = ch.codePointAt(0);
1133
+ out += codePoint === void 0 ? ch : String.fromCodePoint(mapMathVariant(codePoint, variant));
1134
+ }
1135
+ return out;
1136
+ }
1137
+ const MATHVARIANT_ATTRIBUTE_VALUES = /* @__PURE__ */ new Set([
1138
+ "normal",
1139
+ "bold",
1140
+ "italic",
1141
+ "bold-italic",
1142
+ "double-struck",
1143
+ "bold-fraktur",
1144
+ "script",
1145
+ "bold-script",
1146
+ "fraktur",
1147
+ "sans-serif",
1148
+ "bold-sans-serif",
1149
+ "sans-serif-italic",
1150
+ "sans-serif-bold-italic",
1151
+ "monospace"
1152
+ ]);
1153
+ function isMathVariant(value) {
1154
+ return MATHVARIANT_ATTRIBUTE_VALUES.has(value);
1155
+ }
1156
+ //#endregion
1157
+ export { applyMathVariant, isMathVariant, mapMathVariant };