@classytic/stage 0.3.0 → 0.4.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 (431) hide show
  1. package/dist/_virtual/_rolldown/runtime.mjs +18 -0
  2. package/dist/atomic/aufbau.d.mts +144 -0
  3. package/dist/atomic/aufbau.mjs +384 -0
  4. package/dist/atomic/elements.d.mts +67 -0
  5. package/dist/atomic/elements.mjs +785 -0
  6. package/dist/atomic/emission.d.mts +112 -0
  7. package/dist/atomic/emission.mjs +179 -0
  8. package/dist/atomic/index.d.mts +8 -0
  9. package/dist/atomic/index.mjs +9 -0
  10. package/dist/atomic/periodic.d.mts +82 -0
  11. package/dist/atomic/periodic.mjs +231 -0
  12. package/dist/atomic/properties.d.mts +100 -0
  13. package/dist/atomic/properties.mjs +574 -0
  14. package/dist/atomic/shells.d.mts +137 -0
  15. package/dist/atomic/shells.mjs +170 -0
  16. package/dist/atomic/trends.d.mts +148 -0
  17. package/dist/atomic/trends.mjs +225 -0
  18. package/dist/chem/chromatography.d.mts +66 -0
  19. package/dist/chem/chromatography.mjs +63 -0
  20. package/dist/chem/complex.d.mts +114 -0
  21. package/dist/chem/complex.mjs +234 -0
  22. package/dist/chem/cycle.d.mts +75 -0
  23. package/dist/chem/cycle.mjs +145 -0
  24. package/dist/chem/equation.d.mts +86 -0
  25. package/dist/chem/equation.mjs +168 -0
  26. package/dist/chem/formula.d.mts +90 -0
  27. package/dist/chem/formula.mjs +201 -0
  28. package/dist/chem/functional-groups.d.mts +31 -0
  29. package/dist/chem/functional-groups.mjs +187 -0
  30. package/dist/chem/hazard.d.mts +94 -0
  31. package/dist/chem/hazard.mjs +329 -0
  32. package/dist/chem/index.d.mts +34 -33
  33. package/dist/chem/index.mjs +34 -28
  34. package/dist/chem/ionic.d.mts +98 -0
  35. package/dist/chem/ionic.mjs +156 -0
  36. package/dist/chem/layout.d.mts +46 -0
  37. package/dist/chem/layout.mjs +342 -0
  38. package/dist/chem/lewis.d.mts +79 -0
  39. package/dist/chem/lewis.mjs +163 -0
  40. package/dist/chem/molecular-orbital.d.mts +114 -0
  41. package/dist/chem/molecular-orbital.mjs +201 -0
  42. package/dist/chem/molecule.d.mts +154 -0
  43. package/dist/chem/molecule.mjs +282 -0
  44. package/dist/chem/nmr.d.mts +153 -0
  45. package/dist/chem/nmr.mjs +165 -0
  46. package/dist/chem/polymer.d.mts +65 -0
  47. package/dist/chem/polymer.mjs +179 -0
  48. package/dist/chem/redox.d.mts +138 -0
  49. package/dist/chem/redox.mjs +328 -0
  50. package/dist/chem/relations.d.mts +183 -0
  51. package/dist/chem/relations.mjs +299 -0
  52. package/dist/chem/skeleton.d.mts +51 -0
  53. package/dist/chem/skeleton.mjs +186 -0
  54. package/dist/chem/solution.d.mts +116 -0
  55. package/dist/chem/solution.mjs +186 -0
  56. package/dist/chem/species.d.mts +47 -0
  57. package/dist/chem/species.mjs +128 -0
  58. package/dist/chem/stereo.d.mts +108 -0
  59. package/dist/chem/stereo.mjs +286 -0
  60. package/dist/chem/stoichiometry.d.mts +95 -0
  61. package/dist/chem/stoichiometry.mjs +145 -0
  62. package/dist/chem/synthesis.d.mts +113 -0
  63. package/dist/chem/synthesis.mjs +281 -0
  64. package/dist/chem/vsepr.d.mts +80 -0
  65. package/dist/chem/vsepr.mjs +247 -0
  66. package/dist/circuit/ac.d.mts +163 -0
  67. package/dist/circuit/ac.mjs +452 -0
  68. package/dist/circuit/dc.d.mts +92 -0
  69. package/dist/circuit/dc.mjs +333 -0
  70. package/dist/circuit/index.d.mts +5 -92
  71. package/dist/circuit/index.mjs +5 -332
  72. package/dist/circuit/network.d.mts +99 -0
  73. package/dist/circuit/network.mjs +440 -0
  74. package/dist/circuit/topology.d.mts +102 -0
  75. package/dist/circuit/topology.mjs +143 -0
  76. package/dist/colour/absorption.d.mts +79 -0
  77. package/dist/colour/absorption.mjs +137 -0
  78. package/dist/colour/index.d.mts +6 -0
  79. package/dist/colour/index.mjs +7 -0
  80. package/dist/colour/name.d.mts +14 -0
  81. package/dist/colour/name.mjs +76 -0
  82. package/dist/colour/observer.d.mts +31 -0
  83. package/dist/colour/observer.mjs +46 -0
  84. package/dist/colour/spectrum.d.mts +61 -0
  85. package/dist/colour/spectrum.mjs +108 -0
  86. package/dist/colour/srgb.d.mts +49 -0
  87. package/dist/colour/srgb.mjs +108 -0
  88. package/dist/core/constants.d.mts +138 -0
  89. package/dist/core/constants.mjs +139 -0
  90. package/dist/core/index.d.mts +3 -1
  91. package/dist/core/index.mjs +3 -1
  92. package/dist/core/vec3.d.mts +94 -0
  93. package/dist/core/vec3.mjs +123 -0
  94. package/dist/core/worked.d.mts +35 -0
  95. package/dist/core/worked.mjs +44 -0
  96. package/dist/electro/cell.d.mts +102 -0
  97. package/dist/electro/cell.mjs +170 -0
  98. package/dist/electro/conductivity.d.mts +157 -0
  99. package/dist/electro/conductivity.mjs +156 -0
  100. package/dist/electro/couples.d.mts +114 -0
  101. package/dist/electro/couples.mjs +334 -0
  102. package/dist/electro/electrolysis.d.mts +96 -0
  103. package/dist/electro/electrolysis.mjs +274 -0
  104. package/dist/electro/faraday.d.mts +150 -0
  105. package/dist/electro/faraday.mjs +118 -0
  106. package/dist/electro/index.d.mts +6 -0
  107. package/dist/electro/index.mjs +7 -0
  108. package/dist/finance/accounting/adjustments.d.mts +17 -0
  109. package/dist/finance/accounting/adjustments.mjs +202 -0
  110. package/dist/finance/accounting/analysis.d.mts +8 -0
  111. package/dist/finance/accounting/analysis.mjs +205 -0
  112. package/dist/finance/accounting/clubs.d.mts +21 -0
  113. package/dist/finance/accounting/clubs.mjs +217 -0
  114. package/dist/finance/accounting/company-statements.d.mts +7 -0
  115. package/dist/finance/accounting/company-statements.mjs +150 -0
  116. package/dist/finance/accounting/harness.d.mts +7 -0
  117. package/dist/finance/accounting/harness.mjs +45 -0
  118. package/dist/finance/accounting/index.d.mts +18 -0
  119. package/dist/finance/accounting/index.mjs +18 -0
  120. package/dist/finance/accounting/journalize.d.mts +16 -0
  121. package/dist/finance/accounting/journalize.mjs +128 -0
  122. package/dist/finance/accounting/manufacturing.d.mts +8 -0
  123. package/dist/finance/accounting/manufacturing.mjs +236 -0
  124. package/dist/finance/accounting/partnership.d.mts +7 -0
  125. package/dist/finance/accounting/partnership.mjs +152 -0
  126. package/dist/finance/accounting/period-case.d.mts +6 -0
  127. package/dist/finance/accounting/period-case.mjs +71 -0
  128. package/dist/finance/accounting/post.d.mts +9 -0
  129. package/dist/finance/accounting/post.mjs +84 -0
  130. package/dist/finance/accounting/precision.d.mts +9 -0
  131. package/dist/finance/accounting/precision.mjs +15 -0
  132. package/dist/finance/accounting/rules.d.mts +21 -0
  133. package/dist/finance/accounting/rules.mjs +37 -0
  134. package/dist/finance/accounting/solve.d.mts +28 -0
  135. package/dist/finance/accounting/solve.mjs +92 -0
  136. package/dist/finance/accounting/statements.d.mts +7 -0
  137. package/dist/finance/accounting/statements.mjs +142 -0
  138. package/dist/finance/accounting/types.d.mts +649 -0
  139. package/dist/finance/accounting/validate.d.mts +7 -0
  140. package/dist/finance/accounting/validate.mjs +67 -0
  141. package/dist/finance/accounting/verification.d.mts +24 -0
  142. package/dist/finance/accounting/verification.mjs +386 -0
  143. package/dist/finance/bizsim.d.mts +21 -39
  144. package/dist/finance/bizsim.mjs +276 -97
  145. package/dist/finance/index.d.mts +20 -43
  146. package/dist/finance/index.mjs +19 -77
  147. package/dist/finance/investment-math.d.mts +7 -0
  148. package/dist/finance/investment-math.mjs +18 -0
  149. package/dist/finance/management-accounting/budgeting.d.mts +7 -0
  150. package/dist/finance/management-accounting/budgeting.mjs +189 -0
  151. package/dist/finance/management-accounting/cash-budget.d.mts +7 -0
  152. package/dist/finance/management-accounting/cash-budget.mjs +154 -0
  153. package/dist/finance/management-accounting/costing.d.mts +8 -0
  154. package/dist/finance/management-accounting/costing.mjs +175 -0
  155. package/dist/finance/management-accounting/decisions.d.mts +8 -0
  156. package/dist/finance/management-accounting/decisions.mjs +164 -0
  157. package/dist/finance/management-accounting/index.d.mts +13 -0
  158. package/dist/finance/management-accounting/index.mjs +13 -0
  159. package/dist/finance/management-accounting/integrated-budget.d.mts +8 -0
  160. package/dist/finance/management-accounting/integrated-budget.mjs +67 -0
  161. package/dist/finance/management-accounting/inventory-costing.d.mts +7 -0
  162. package/dist/finance/management-accounting/inventory-costing.mjs +173 -0
  163. package/dist/finance/management-accounting/investment-appraisal.d.mts +7 -0
  164. package/dist/finance/management-accounting/investment-appraisal.mjs +148 -0
  165. package/dist/finance/management-accounting/management-case.d.mts +8 -0
  166. package/dist/finance/management-accounting/management-case.mjs +91 -0
  167. package/dist/finance/management-accounting/master-budget.d.mts +7 -0
  168. package/dist/finance/management-accounting/master-budget.mjs +137 -0
  169. package/dist/finance/management-accounting/production-costing.d.mts +8 -0
  170. package/dist/finance/management-accounting/production-costing.mjs +214 -0
  171. package/dist/finance/management-accounting/types.d.mts +644 -0
  172. package/dist/finance/management-accounting/variances.d.mts +7 -0
  173. package/dist/finance/management-accounting/variances.mjs +150 -0
  174. package/dist/index.d.mts +6 -6
  175. package/dist/index.mjs +1 -1
  176. package/dist/math/analysis.d.mts +61 -0
  177. package/dist/math/analysis.mjs +187 -0
  178. package/dist/math/answer-check.d.mts +50 -0
  179. package/dist/math/answer-check.mjs +106 -0
  180. package/dist/math/calculus.d.mts +4 -9
  181. package/dist/math/calculus.mjs +216 -7
  182. package/dist/math/complex.d.mts +93 -0
  183. package/dist/math/complex.mjs +239 -0
  184. package/dist/math/expr.d.mts +23 -0
  185. package/dist/math/expr.mjs +36 -0
  186. package/dist/math/index.d.mts +8 -22
  187. package/dist/math/index.mjs +8 -37
  188. package/dist/math/latex.mjs +2 -1
  189. package/dist/math/parse.mjs +1 -1
  190. package/dist/math/poly.d.mts +55 -0
  191. package/dist/math/poly.mjs +273 -0
  192. package/dist/math/rearrange.d.mts +14 -0
  193. package/dist/math/rearrange.mjs +125 -0
  194. package/dist/math/solve.d.mts +21 -0
  195. package/dist/math/solve.mjs +75 -0
  196. package/dist/networking/addressing.d.mts +26 -0
  197. package/dist/networking/addressing.mjs +33 -0
  198. package/dist/networking/cloud/access.d.mts +36 -0
  199. package/dist/networking/cloud/access.mjs +95 -0
  200. package/dist/networking/cloud/containers.d.mts +43 -0
  201. package/dist/networking/cloud/containers.mjs +54 -0
  202. package/dist/networking/cloud/edge.d.mts +17 -0
  203. package/dist/networking/cloud/edge.mjs +31 -0
  204. package/dist/networking/cloud/failure-domains.d.mts +19 -0
  205. package/dist/networking/cloud/failure-domains.mjs +22 -0
  206. package/dist/networking/cloud/geo-routing.d.mts +22 -0
  207. package/dist/networking/cloud/geo-routing.mjs +64 -0
  208. package/dist/networking/cloud/index.d.mts +18 -0
  209. package/dist/networking/cloud/index.mjs +19 -0
  210. package/dist/networking/cloud/inference-reliability.d.mts +30 -0
  211. package/dist/networking/cloud/inference-reliability.mjs +76 -0
  212. package/dist/networking/cloud/inference.d.mts +118 -0
  213. package/dist/networking/cloud/inference.mjs +179 -0
  214. package/dist/networking/cloud/infrastructure.d.mts +45 -0
  215. package/dist/networking/cloud/infrastructure.mjs +96 -0
  216. package/dist/networking/cloud/observability.d.mts +24 -0
  217. package/dist/networking/cloud/observability.mjs +34 -0
  218. package/dist/networking/cloud/orchestration.d.mts +32 -0
  219. package/dist/networking/cloud/orchestration.mjs +38 -0
  220. package/dist/networking/cloud/recovery.d.mts +21 -0
  221. package/dist/networking/cloud/recovery.mjs +27 -0
  222. package/dist/networking/cloud/releases.d.mts +42 -0
  223. package/dist/networking/cloud/releases.mjs +135 -0
  224. package/dist/networking/cloud/scaling.d.mts +25 -0
  225. package/dist/networking/cloud/scaling.mjs +65 -0
  226. package/dist/networking/cloud/secrets.d.mts +39 -0
  227. package/dist/networking/cloud/secrets.mjs +68 -0
  228. package/dist/networking/cloud/server-deployment.d.mts +29 -0
  229. package/dist/networking/cloud/server-deployment.mjs +72 -0
  230. package/dist/networking/cloud/storage.d.mts +16 -0
  231. package/dist/networking/cloud/storage.mjs +58 -0
  232. package/dist/networking/cloud/vpc.d.mts +18 -0
  233. package/dist/networking/cloud/vpc.mjs +100 -0
  234. package/dist/networking/delivery.d.mts +34 -0
  235. package/dist/networking/delivery.mjs +52 -0
  236. package/dist/networking/index.d.mts +47 -0
  237. package/dist/networking/index.mjs +47 -0
  238. package/dist/networking/ipv6.d.mts +28 -0
  239. package/dist/networking/ipv6.mjs +17 -0
  240. package/dist/networking/journeys.d.mts +83 -0
  241. package/dist/networking/journeys.mjs +161 -0
  242. package/dist/networking/models/airtime.d.mts +87 -0
  243. package/dist/networking/models/airtime.mjs +130 -0
  244. package/dist/networking/models/cellular.d.mts +157 -0
  245. package/dist/networking/models/cellular.mjs +252 -0
  246. package/dist/networking/models/encapsulation.d.mts +98 -0
  247. package/dist/networking/models/encapsulation.mjs +132 -0
  248. package/dist/networking/models/handover.d.mts +116 -0
  249. package/dist/networking/models/handover.mjs +209 -0
  250. package/dist/networking/models/handshake.d.mts +90 -0
  251. package/dist/networking/models/handshake.mjs +122 -0
  252. package/dist/networking/models/index.d.mts +14 -0
  253. package/dist/networking/models/index.mjs +15 -0
  254. package/dist/networking/models/media.d.mts +82 -0
  255. package/dist/networking/models/media.mjs +188 -0
  256. package/dist/networking/models/satellite.d.mts +86 -0
  257. package/dist/networking/models/satellite.mjs +121 -0
  258. package/dist/networking/models/spectrum.d.mts +83 -0
  259. package/dist/networking/models/spectrum.mjs +235 -0
  260. package/dist/networking/models/switch.d.mts +80 -0
  261. package/dist/networking/models/switch.mjs +155 -0
  262. package/dist/networking/models/vlan.d.mts +62 -0
  263. package/dist/networking/models/vlan.mjs +100 -0
  264. package/dist/networking/models/vpn.d.mts +66 -0
  265. package/dist/networking/models/vpn.mjs +125 -0
  266. package/dist/networking/models/wifi-privacy.d.mts +82 -0
  267. package/dist/networking/models/wifi-privacy.mjs +130 -0
  268. package/dist/networking/models/wifi.d.mts +240 -0
  269. package/dist/networking/models/wifi.mjs +562 -0
  270. package/dist/networking/nat-traversal.d.mts +24 -0
  271. package/dist/networking/nat-traversal.mjs +38 -0
  272. package/dist/networking/protocols.d.mts +17 -0
  273. package/dist/networking/protocols.mjs +57 -0
  274. package/dist/networking/queue.d.mts +12 -0
  275. package/dist/networking/queue.mjs +18 -0
  276. package/dist/networking/route-learning.d.mts +23 -0
  277. package/dist/networking/route-learning.mjs +43 -0
  278. package/dist/networking/routing.d.mts +11 -0
  279. package/dist/networking/routing.mjs +25 -0
  280. package/dist/networking/signals.d.mts +26 -0
  281. package/dist/networking/signals.mjs +35 -0
  282. package/dist/networking/subnet.d.mts +49 -0
  283. package/dist/networking/subnet.mjs +89 -0
  284. package/dist/networking/tcp-reliability.d.mts +24 -0
  285. package/dist/networking/tcp-reliability.mjs +38 -0
  286. package/dist/networking/topology/contract.d.mts +123 -0
  287. package/dist/networking/topology/index.d.mts +4 -0
  288. package/dist/networking/topology/index.mjs +4 -0
  289. package/dist/networking/topology/presets.d.mts +7 -0
  290. package/dist/networking/topology/presets.mjs +302 -0
  291. package/dist/networking/topology/simulation.d.mts +8 -0
  292. package/dist/networking/topology/simulation.mjs +179 -0
  293. package/dist/networking/wireless.d.mts +11 -0
  294. package/dist/networking/wireless.mjs +17 -0
  295. package/dist/optics/imaging.d.mts +218 -0
  296. package/dist/optics/imaging.mjs +276 -0
  297. package/dist/optics/index.d.mts +7 -0
  298. package/dist/optics/index.mjs +8 -0
  299. package/dist/optics/laws.d.mts +70 -0
  300. package/dist/optics/laws.mjs +195 -0
  301. package/dist/optics/prism.d.mts +148 -0
  302. package/dist/optics/prism.mjs +197 -0
  303. package/dist/optics/refraction.d.mts +201 -0
  304. package/dist/optics/refraction.mjs +270 -0
  305. package/dist/optics/wave-optics.d.mts +171 -0
  306. package/dist/optics/wave-optics.mjs +259 -0
  307. package/dist/physics/ac/index.d.mts +183 -0
  308. package/dist/physics/ac/index.mjs +203 -0
  309. package/dist/physics/dynamics/forces.d.mts +98 -0
  310. package/dist/physics/dynamics/forces.mjs +153 -0
  311. package/dist/physics/dynamics/friction.d.mts +76 -0
  312. package/dist/physics/dynamics/friction.mjs +119 -0
  313. package/dist/physics/dynamics/system.d.mts +68 -0
  314. package/dist/physics/dynamics/system.mjs +125 -0
  315. package/dist/physics/electrostatics/index.d.mts +169 -0
  316. package/dist/physics/electrostatics/index.mjs +249 -0
  317. package/dist/physics/energy/centre-of-mass.d.mts +115 -0
  318. package/dist/physics/energy/centre-of-mass.mjs +180 -0
  319. package/dist/physics/energy/conservation.d.mts +81 -0
  320. package/dist/physics/energy/conservation.mjs +129 -0
  321. package/dist/physics/energy/power.d.mts +90 -0
  322. package/dist/physics/energy/power.mjs +167 -0
  323. package/dist/physics/energy/spring.d.mts +73 -0
  324. package/dist/physics/energy/spring.mjs +129 -0
  325. package/dist/physics/energy/store.d.mts +63 -0
  326. package/dist/physics/energy/store.mjs +108 -0
  327. package/dist/physics/energy/theorem.d.mts +65 -0
  328. package/dist/physics/energy/theorem.mjs +113 -0
  329. package/dist/physics/energy/work.d.mts +114 -0
  330. package/dist/physics/energy/work.mjs +219 -0
  331. package/dist/physics/gravitation/body.d.mts +85 -0
  332. package/dist/physics/gravitation/body.mjs +168 -0
  333. package/dist/physics/gravitation/kepler.d.mts +127 -0
  334. package/dist/physics/gravitation/kepler.mjs +216 -0
  335. package/dist/physics/gravitation/law.d.mts +117 -0
  336. package/dist/physics/gravitation/law.mjs +175 -0
  337. package/dist/physics/gravitation/orbit.d.mts +119 -0
  338. package/dist/physics/gravitation/orbit.mjs +202 -0
  339. package/dist/physics/gravitation/potential.d.mts +114 -0
  340. package/dist/physics/gravitation/potential.mjs +202 -0
  341. package/dist/physics/gravitation/variation.d.mts +97 -0
  342. package/dist/physics/gravitation/variation.mjs +175 -0
  343. package/dist/physics/index.d.mts +35 -0
  344. package/dist/physics/index.mjs +36 -0
  345. package/dist/physics/integral-sweep.d.mts +63 -0
  346. package/dist/physics/integral-sweep.mjs +126 -0
  347. package/dist/physics/kinematics/equations.d.mts +47 -0
  348. package/dist/physics/kinematics/equations.mjs +126 -0
  349. package/dist/physics/kinematics/free-fall.d.mts +53 -0
  350. package/dist/physics/kinematics/free-fall.mjs +71 -0
  351. package/dist/physics/kinematics/given.d.mts +16 -0
  352. package/dist/physics/kinematics/given.mjs +55 -0
  353. package/dist/physics/kinematics/roots.d.mts +41 -0
  354. package/dist/physics/kinematics/roots.mjs +72 -0
  355. package/dist/physics/kinematics/solve.d.mts +52 -0
  356. package/dist/physics/kinematics/solve.mjs +172 -0
  357. package/dist/physics/magnetism/biot-savart.d.mts +161 -0
  358. package/dist/physics/magnetism/biot-savart.mjs +353 -0
  359. package/dist/physics/magnetism/flux.d.mts +94 -0
  360. package/dist/physics/magnetism/flux.mjs +313 -0
  361. package/dist/physics/magnetism/geomagnetism.d.mts +151 -0
  362. package/dist/physics/magnetism/geomagnetism.mjs +184 -0
  363. package/dist/physics/magnetism/index.d.mts +12 -0
  364. package/dist/physics/magnetism/index.mjs +74 -0
  365. package/dist/physics/magnetism/lorentz.d.mts +28 -0
  366. package/dist/physics/magnetism/lorentz.mjs +88 -0
  367. package/dist/physics/magnetism/magnetic-force.d.mts +102 -0
  368. package/dist/physics/magnetism/magnetic-force.mjs +169 -0
  369. package/dist/physics/momentum/collide.d.mts +77 -0
  370. package/dist/physics/momentum/collide.mjs +115 -0
  371. package/dist/physics/momentum/impulse.d.mts +89 -0
  372. package/dist/physics/momentum/impulse.mjs +159 -0
  373. package/dist/physics/momentum/planar.d.mts +60 -0
  374. package/dist/physics/momentum/planar.mjs +110 -0
  375. package/dist/physics/projectile.d.mts +107 -0
  376. package/dist/physics/projectile.mjs +185 -0
  377. package/dist/physics/rotation/angular.d.mts +85 -0
  378. package/dist/physics/rotation/angular.mjs +130 -0
  379. package/dist/physics/rotation/circular.d.mts +79 -0
  380. package/dist/physics/rotation/circular.mjs +131 -0
  381. package/dist/physics/rotation/inertia.d.mts +164 -0
  382. package/dist/physics/rotation/inertia.mjs +332 -0
  383. package/dist/physics/rotation/torque.d.mts +65 -0
  384. package/dist/physics/rotation/torque.mjs +134 -0
  385. package/dist/physics/vectors.d.mts +64 -0
  386. package/dist/physics/vectors.mjs +114 -0
  387. package/dist/quantity/index.d.mts +119 -0
  388. package/dist/quantity/index.mjs +417 -0
  389. package/dist/relation/derive.d.mts +74 -0
  390. package/dist/relation/derive.mjs +73 -0
  391. package/dist/relation/index.d.mts +56 -0
  392. package/dist/relation/index.mjs +234 -0
  393. package/dist/scene/evaluators.mjs +1 -1
  394. package/dist/sim/thermal.mjs +45 -20
  395. package/dist/thermo/calorimetry.d.mts +207 -0
  396. package/dist/thermo/calorimetry.mjs +345 -0
  397. package/dist/thermo/cycles.d.mts +142 -0
  398. package/dist/thermo/cycles.mjs +256 -0
  399. package/dist/thermo/entropy.d.mts +87 -0
  400. package/dist/thermo/entropy.mjs +140 -0
  401. package/dist/thermo/expansion.d.mts +130 -0
  402. package/dist/thermo/expansion.mjs +178 -0
  403. package/dist/thermo/gas.d.mts +197 -0
  404. package/dist/thermo/gas.mjs +279 -0
  405. package/dist/thermo/heat-transfer.d.mts +164 -0
  406. package/dist/thermo/heat-transfer.mjs +217 -0
  407. package/dist/thermo/index.d.mts +9 -82
  408. package/dist/thermo/index.mjs +9 -132
  409. package/dist/thermo/processes.d.mts +95 -0
  410. package/dist/thermo/processes.mjs +154 -0
  411. package/dist/thermo/temperature.d.mts +174 -0
  412. package/dist/thermo/temperature.mjs +236 -0
  413. package/dist/waves/damping.d.mts +224 -0
  414. package/dist/waves/damping.mjs +317 -0
  415. package/dist/waves/doppler.d.mts +72 -0
  416. package/dist/waves/doppler.mjs +125 -0
  417. package/dist/waves/index.d.mts +10 -0
  418. package/dist/waves/index.mjs +10 -0
  419. package/dist/waves/pendulum.d.mts +130 -0
  420. package/dist/waves/pendulum.mjs +211 -0
  421. package/dist/waves/pitch.d.mts +125 -0
  422. package/dist/waves/pitch.mjs +158 -0
  423. package/dist/waves/shm.d.mts +170 -0
  424. package/dist/waves/shm.mjs +279 -0
  425. package/dist/waves/springs.d.mts +103 -0
  426. package/dist/waves/springs.mjs +176 -0
  427. package/dist/waves/superposition.d.mts +124 -0
  428. package/dist/waves/superposition.mjs +196 -0
  429. package/dist/waves/wave.d.mts +154 -0
  430. package/dist/waves/wave.mjs +178 -0
  431. package/package.json +74 -2
@@ -0,0 +1,154 @@
1
+ //#region src/waves/wave.d.ts
2
+ /**
3
+ * The travelling wave, as the one equation everything else in this module is a
4
+ * special case of:
5
+ *
6
+ * y(x, t) = A·sin(kx − ωt + φ)
7
+ *
8
+ * with k = 2π/λ the wave number (radians per metre, the spatial rate) and
9
+ * ω = 2πf the angular frequency (radians per second, the temporal rate). The
10
+ * two rates are the whole content of the formula: a wave is something periodic
11
+ * in space AND in time, and v = fλ is the statement that the two periodicities
12
+ * have to keep step.
13
+ *
14
+ * ## The sign inside the bracket is the direction of travel
15
+ *
16
+ * `kx − ωt` moves in the +x direction and `kx + ωt` moves in −x, because a
17
+ * point of constant phase needs x to grow with t in the first and shrink in the
18
+ * second. Getting it backwards is silent: the wave still looks like a wave, it
19
+ * just goes the wrong way, and a standing-wave lab built on two of them will
20
+ * produce a travelling wave instead of nodes. `direction` is therefore an
21
+ * explicit field rather than a sign a caller is trusted to embed.
22
+ *
23
+ * ## Why velocity and acceleration are here
24
+ *
25
+ * A particle in the wave oscillates; the wave profile translates. Those are
26
+ * different motions with different speeds, and conflating them is the standard
27
+ * misconception. `waveSpeed` is how fast the PATTERN moves (v = fλ);
28
+ * `particleVelocity` is how fast a bit of the medium moves (∂y/∂t), which is
29
+ * zero at the crests and maximum at zero displacement. Both are exported, named
30
+ * so they cannot be mistaken for one another.
31
+ *
32
+ * Units: SI. Amplitude and displacement in metres, wavelength in metres,
33
+ * frequency in hertz, time in seconds, angles in radians.
34
+ */
35
+ type Direction = 'forward' | 'backward';
36
+ interface Wave {
37
+ /** Peak displacement from equilibrium, m. */
38
+ amplitude: number;
39
+ /** Distance between repeats, m. */
40
+ wavelength: number;
41
+ /** Repeats per second, Hz. */
42
+ frequency: number;
43
+ /** Phase offset at x = 0, t = 0, radians. */
44
+ phase?: number;
45
+ /** '+x' when omitted: the `kx − ωt` form. */
46
+ direction?: Direction;
47
+ }
48
+ /** Wave number k = 2π/λ, radians per metre. */
49
+ declare const waveNumber: (wavelength: number) => number;
50
+ /** Angular frequency ω = 2πf, radians per second. */
51
+ declare const angularFrequency: (frequency: number) => number;
52
+ /** Frequency from angular frequency, Hz. */
53
+ declare const frequencyFromAngular: (omega: number) => number;
54
+ /** Wavelength from a wave number, m. */
55
+ declare const wavelengthFromWaveNumber: (k: number) => number;
56
+ /** Period T = 1/f, seconds. */
57
+ declare const period: (frequency: number) => number;
58
+ /** Frequency from a period, Hz. */
59
+ declare const frequencyFromPeriod: (periodSeconds: number) => number;
60
+ /**
61
+ * Wave speed v = fλ, m/s: how fast the PATTERN travels.
62
+ *
63
+ * Not the speed of the medium. A water wave can carry a crest across a pond at
64
+ * a metre a second while every drop merely bobs up and down; `particleVelocity`
65
+ * is the other number.
66
+ */
67
+ declare const waveSpeed: (frequency: number, wavelength: number) => number;
68
+ /** Wavelength from speed and frequency: λ = v/f, m. */
69
+ declare const wavelengthFromSpeed: (speed: number, frequency: number) => number;
70
+ /** Frequency from speed and wavelength: f = v/λ, Hz. */
71
+ declare const frequencyFromSpeed: (speed: number, wavelength: number) => number;
72
+ /** The speed of this particular wave, m/s. */
73
+ declare const speedOf: (wave: Wave) => number;
74
+ /** The total phase kx − ωt + φ at a point and time, radians. */
75
+ declare function phaseAt(wave: Wave, x: number, t: number): number;
76
+ /** Displacement y = A·sin(kx − ωt + φ), m. */
77
+ declare function displacement(wave: Wave, x: number, t: number): number;
78
+ /**
79
+ * Velocity of the MEDIUM at a point, m/s: ∂y/∂t = −ωA·cos(kx − ωt + φ).
80
+ *
81
+ * Zero at the crests and troughs, largest as the particle passes through zero.
82
+ * That is the opposite of where the displacement is largest, and it is the
83
+ * whole reason the energy of an oscillation keeps sloshing between kinetic and
84
+ * potential rather than sitting still.
85
+ */
86
+ declare function particleVelocity(wave: Wave, x: number, t: number): number;
87
+ /**
88
+ * Acceleration of the medium, m/s²: ∂²y/∂t² = −ω²y.
89
+ *
90
+ * Proportional to the displacement and opposite to it, which is the definition
91
+ * of simple harmonic motion. Every particle in a sinusoidal wave is an
92
+ * oscillator, and `shm.ts` is that statement followed through.
93
+ */
94
+ declare function particleAcceleration(wave: Wave, x: number, t: number): number;
95
+ /**
96
+ * Largest speed any particle reaches, m/s: ωA.
97
+ *
98
+ * Unpacks the wave and hands off to `shm.maxSpeed`, because a particle in a
99
+ * wave is an oscillator and ωA is that oscillator's top speed, not a separate
100
+ * fact about waves. It was written out here as well until the two were noticed
101
+ * to be the same line.
102
+ *
103
+ * Note this is the speed of the MEDIUM, not of the wave. The two are unrelated
104
+ * and routinely confused: a ripple crossing a tank at 0.3 m/s is made of water
105
+ * moving at a few millimetres per second.
106
+ */
107
+ declare const maxParticleSpeed: (wave: Wave) => number;
108
+ /**
109
+ * Phase difference from a path difference, radians: Δφ = 2π·Δx/λ.
110
+ *
111
+ * The bridge between the geometric picture (one route is longer) and the
112
+ * algebraic one (the waves arrive out of step), and the single most useful
113
+ * conversion in interference.
114
+ */
115
+ declare const phaseFromPath: (pathDifference: number, wavelength: number) => number;
116
+ /** Path difference from a phase difference, m: Δx = λ·Δφ/2π. */
117
+ declare const pathFromPhase: (phase: number, wavelength: number) => number;
118
+ /**
119
+ * Whether two waves arriving with this path difference reinforce or cancel.
120
+ *
121
+ * A whole number of wavelengths is constructive, a half-odd number is
122
+ * destructive, and anything else is in between. Returned as a fraction of a
123
+ * cycle rather than a boolean, because the in-between case is most of the
124
+ * pattern and calling it "neither" throws away the part that varies.
125
+ */
126
+ declare function interferenceAt(pathDifference: number, wavelength: number): {
127
+ /** Path difference in wavelengths. */orders: number; /** How far through a cycle out of step, 0 to 1. */
128
+ cycleFraction: number; /** Resultant amplitude as a fraction of the maximum, for equal sources. */
129
+ amplitudeFraction: number;
130
+ constructive: boolean;
131
+ destructive: boolean;
132
+ };
133
+ /**
134
+ * Sample one wave across a span, for drawing.
135
+ *
136
+ * Returns `samples + 1` points so both ends are included, which is what makes a
137
+ * polyline close on a full wavelength instead of stopping a step short.
138
+ */
139
+ declare function sampleWave(wave: Wave, from: number, to: number, t: number, samples?: number): {
140
+ x: number;
141
+ y: number;
142
+ }[];
143
+ /**
144
+ * Intensity relative to a reference amplitude.
145
+ *
146
+ * Intensity goes as the SQUARE of amplitude, which is why halving the amplitude
147
+ * quarters the brightness or the loudness, and why a decibel scale exists at
148
+ * all. Kept as a ratio rather than absolute watts, because the constant of
149
+ * proportionality depends on the medium and cancels in every question that asks
150
+ * this.
151
+ */
152
+ declare const intensityRatio: (amplitude: number, referenceAmplitude: number) => number;
153
+ //#endregion
154
+ export { Direction, Wave, angularFrequency, displacement, frequencyFromAngular, frequencyFromPeriod, frequencyFromSpeed, intensityRatio, interferenceAt, maxParticleSpeed, particleAcceleration, particleVelocity, pathFromPhase, period, phaseAt, phaseFromPath, sampleWave, speedOf, waveNumber, waveSpeed, wavelengthFromSpeed, wavelengthFromWaveNumber };
@@ -0,0 +1,178 @@
1
+ import { maxSpeed } from "./shm.mjs";
2
+
3
+ //#region src/waves/wave.ts
4
+ /**
5
+ * The travelling wave, as the one equation everything else in this module is a
6
+ * special case of:
7
+ *
8
+ * y(x, t) = A·sin(kx − ωt + φ)
9
+ *
10
+ * with k = 2π/λ the wave number (radians per metre, the spatial rate) and
11
+ * ω = 2πf the angular frequency (radians per second, the temporal rate). The
12
+ * two rates are the whole content of the formula: a wave is something periodic
13
+ * in space AND in time, and v = fλ is the statement that the two periodicities
14
+ * have to keep step.
15
+ *
16
+ * ## The sign inside the bracket is the direction of travel
17
+ *
18
+ * `kx − ωt` moves in the +x direction and `kx + ωt` moves in −x, because a
19
+ * point of constant phase needs x to grow with t in the first and shrink in the
20
+ * second. Getting it backwards is silent: the wave still looks like a wave, it
21
+ * just goes the wrong way, and a standing-wave lab built on two of them will
22
+ * produce a travelling wave instead of nodes. `direction` is therefore an
23
+ * explicit field rather than a sign a caller is trusted to embed.
24
+ *
25
+ * ## Why velocity and acceleration are here
26
+ *
27
+ * A particle in the wave oscillates; the wave profile translates. Those are
28
+ * different motions with different speeds, and conflating them is the standard
29
+ * misconception. `waveSpeed` is how fast the PATTERN moves (v = fλ);
30
+ * `particleVelocity` is how fast a bit of the medium moves (∂y/∂t), which is
31
+ * zero at the crests and maximum at zero displacement. Both are exported, named
32
+ * so they cannot be mistaken for one another.
33
+ *
34
+ * Units: SI. Amplitude and displacement in metres, wavelength in metres,
35
+ * frequency in hertz, time in seconds, angles in radians.
36
+ */
37
+ const finite = (value, what) => {
38
+ if (!Number.isFinite(value)) throw new RangeError(`${what} must be a finite number.`);
39
+ return value;
40
+ };
41
+ const positive = (value, what) => {
42
+ if (!Number.isFinite(value) || value <= 0) throw new RangeError(`${what} must be positive.`);
43
+ return value;
44
+ };
45
+ /** Wave number k = 2π/λ, radians per metre. */
46
+ const waveNumber = (wavelength) => 2 * Math.PI / positive(wavelength, "A wavelength");
47
+ /** Angular frequency ω = 2πf, radians per second. */
48
+ const angularFrequency = (frequency) => 2 * Math.PI * positive(frequency, "A frequency");
49
+ /** Frequency from angular frequency, Hz. */
50
+ const frequencyFromAngular = (omega) => positive(omega, "An angular frequency") / (2 * Math.PI);
51
+ /** Wavelength from a wave number, m. */
52
+ const wavelengthFromWaveNumber = (k) => 2 * Math.PI / positive(k, "A wave number");
53
+ /** Period T = 1/f, seconds. */
54
+ const period = (frequency) => 1 / positive(frequency, "A frequency");
55
+ /** Frequency from a period, Hz. */
56
+ const frequencyFromPeriod = (periodSeconds) => 1 / positive(periodSeconds, "A period");
57
+ /**
58
+ * Wave speed v = fλ, m/s: how fast the PATTERN travels.
59
+ *
60
+ * Not the speed of the medium. A water wave can carry a crest across a pond at
61
+ * a metre a second while every drop merely bobs up and down; `particleVelocity`
62
+ * is the other number.
63
+ */
64
+ const waveSpeed = (frequency, wavelength) => positive(frequency, "A frequency") * positive(wavelength, "A wavelength");
65
+ /** Wavelength from speed and frequency: λ = v/f, m. */
66
+ const wavelengthFromSpeed = (speed, frequency) => positive(speed, "A wave speed") / positive(frequency, "A frequency");
67
+ /** Frequency from speed and wavelength: f = v/λ, Hz. */
68
+ const frequencyFromSpeed = (speed, wavelength) => positive(speed, "A wave speed") / positive(wavelength, "A wavelength");
69
+ /** The speed of this particular wave, m/s. */
70
+ const speedOf = (wave) => waveSpeed(wave.frequency, wave.wavelength);
71
+ /** The total phase kx − ωt + φ at a point and time, radians. */
72
+ function phaseAt(wave, x, t) {
73
+ const k = waveNumber(wave.wavelength);
74
+ const omega = angularFrequency(wave.frequency);
75
+ const travel = wave.direction === "backward" ? 1 : -1;
76
+ return k * finite(x, "A position") + travel * omega * finite(t, "A time") + (wave.phase ?? 0);
77
+ }
78
+ /** Displacement y = A·sin(kx − ωt + φ), m. */
79
+ function displacement(wave, x, t) {
80
+ return positive(wave.amplitude, "An amplitude") * Math.sin(phaseAt(wave, x, t));
81
+ }
82
+ /**
83
+ * Velocity of the MEDIUM at a point, m/s: ∂y/∂t = −ωA·cos(kx − ωt + φ).
84
+ *
85
+ * Zero at the crests and troughs, largest as the particle passes through zero.
86
+ * That is the opposite of where the displacement is largest, and it is the
87
+ * whole reason the energy of an oscillation keeps sloshing between kinetic and
88
+ * potential rather than sitting still.
89
+ */
90
+ function particleVelocity(wave, x, t) {
91
+ const omega = angularFrequency(wave.frequency);
92
+ return (wave.direction === "backward" ? 1 : -1) * -omega * positive(wave.amplitude, "An amplitude") * Math.cos(phaseAt(wave, x, t));
93
+ }
94
+ /**
95
+ * Acceleration of the medium, m/s²: ∂²y/∂t² = −ω²y.
96
+ *
97
+ * Proportional to the displacement and opposite to it, which is the definition
98
+ * of simple harmonic motion. Every particle in a sinusoidal wave is an
99
+ * oscillator, and `shm.ts` is that statement followed through.
100
+ */
101
+ function particleAcceleration(wave, x, t) {
102
+ const omega = angularFrequency(wave.frequency);
103
+ return -(omega * omega) * displacement(wave, x, t);
104
+ }
105
+ /**
106
+ * Largest speed any particle reaches, m/s: ωA.
107
+ *
108
+ * Unpacks the wave and hands off to `shm.maxSpeed`, because a particle in a
109
+ * wave is an oscillator and ωA is that oscillator's top speed, not a separate
110
+ * fact about waves. It was written out here as well until the two were noticed
111
+ * to be the same line.
112
+ *
113
+ * Note this is the speed of the MEDIUM, not of the wave. The two are unrelated
114
+ * and routinely confused: a ripple crossing a tank at 0.3 m/s is made of water
115
+ * moving at a few millimetres per second.
116
+ */
117
+ const maxParticleSpeed = (wave) => maxSpeed(wave.amplitude, angularFrequency(wave.frequency));
118
+ /**
119
+ * Phase difference from a path difference, radians: Δφ = 2π·Δx/λ.
120
+ *
121
+ * The bridge between the geometric picture (one route is longer) and the
122
+ * algebraic one (the waves arrive out of step), and the single most useful
123
+ * conversion in interference.
124
+ */
125
+ const phaseFromPath = (pathDifference, wavelength) => 2 * Math.PI * finite(pathDifference, "A path difference") / positive(wavelength, "A wavelength");
126
+ /** Path difference from a phase difference, m: Δx = λ·Δφ/2π. */
127
+ const pathFromPhase = (phase, wavelength) => finite(phase, "A phase difference") * positive(wavelength, "A wavelength") / (2 * Math.PI);
128
+ /**
129
+ * Whether two waves arriving with this path difference reinforce or cancel.
130
+ *
131
+ * A whole number of wavelengths is constructive, a half-odd number is
132
+ * destructive, and anything else is in between. Returned as a fraction of a
133
+ * cycle rather than a boolean, because the in-between case is most of the
134
+ * pattern and calling it "neither" throws away the part that varies.
135
+ */
136
+ function interferenceAt(pathDifference, wavelength) {
137
+ const orders = finite(pathDifference, "A path difference") / positive(wavelength, "A wavelength");
138
+ const cycleFraction = (orders % 1 + 1) % 1;
139
+ const amplitudeFraction = Math.abs(Math.cos(Math.PI * orders));
140
+ const TOL = 1e-9;
141
+ return {
142
+ orders,
143
+ cycleFraction,
144
+ amplitudeFraction,
145
+ constructive: Math.min(cycleFraction, 1 - cycleFraction) < TOL,
146
+ destructive: Math.abs(cycleFraction - .5) < TOL
147
+ };
148
+ }
149
+ /**
150
+ * Sample one wave across a span, for drawing.
151
+ *
152
+ * Returns `samples + 1` points so both ends are included, which is what makes a
153
+ * polyline close on a full wavelength instead of stopping a step short.
154
+ */
155
+ function sampleWave(wave, from, to, t, samples = 200) {
156
+ if (!Number.isInteger(samples) || samples < 1) throw new RangeError("A wave needs at least one sample interval to be drawn.");
157
+ const span = finite(to, "The end of the span") - finite(from, "The start of the span");
158
+ return Array.from({ length: samples + 1 }, (_, i) => {
159
+ const x = from + span * i / samples;
160
+ return {
161
+ x,
162
+ y: displacement(wave, x, t)
163
+ };
164
+ });
165
+ }
166
+ /**
167
+ * Intensity relative to a reference amplitude.
168
+ *
169
+ * Intensity goes as the SQUARE of amplitude, which is why halving the amplitude
170
+ * quarters the brightness or the loudness, and why a decibel scale exists at
171
+ * all. Kept as a ratio rather than absolute watts, because the constant of
172
+ * proportionality depends on the medium and cancels in every question that asks
173
+ * this.
174
+ */
175
+ const intensityRatio = (amplitude, referenceAmplitude) => (finite(amplitude, "An amplitude") / positive(referenceAmplitude, "A reference amplitude")) ** 2;
176
+
177
+ //#endregion
178
+ export { angularFrequency, displacement, frequencyFromAngular, frequencyFromPeriod, frequencyFromSpeed, intensityRatio, interferenceAt, maxParticleSpeed, particleAcceleration, particleVelocity, pathFromPhase, period, phaseAt, phaseFromPath, sampleWave, speedOf, waveNumber, waveSpeed, wavelengthFromSpeed, wavelengthFromWaveNumber };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@classytic/stage",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Domain-neutral visual primitive engine for the web. Declarative SVG diagram/math primitives, draggable handles, a math↔pixel coordinate system, a motion core + energy effect defs, theming, pure sim cores, and a small kit of neutral glyph primitives. Reactive, web-native, agent-drivable. The render foundation under @classytic/labs (subject-matter glyphs live there); canvas + 3D subpaths later.",
5
5
  "author": "Classytic",
6
6
  "license": "MIT",
@@ -23,6 +23,10 @@
23
23
  "types": "./dist/core/index.d.mts",
24
24
  "default": "./dist/core/index.mjs"
25
25
  },
26
+ "./constants": {
27
+ "types": "./dist/core/constants.d.mts",
28
+ "default": "./dist/core/constants.mjs"
29
+ },
26
30
  "./primitives": {
27
31
  "types": "./dist/primitives/index.d.mts",
28
32
  "default": "./dist/primitives/index.mjs"
@@ -71,20 +75,88 @@
71
75
  "types": "./dist/thermo/index.d.mts",
72
76
  "default": "./dist/thermo/index.mjs"
73
77
  },
78
+ "./optics": {
79
+ "types": "./dist/optics/index.d.mts",
80
+ "default": "./dist/optics/index.mjs"
81
+ },
82
+ "./waves": {
83
+ "types": "./dist/waves/index.d.mts",
84
+ "default": "./dist/waves/index.mjs"
85
+ },
86
+ "./atomic": {
87
+ "types": "./dist/atomic/index.d.mts",
88
+ "default": "./dist/atomic/index.mjs"
89
+ },
74
90
  "./chem": {
75
91
  "types": "./dist/chem/index.d.mts",
76
92
  "default": "./dist/chem/index.mjs"
77
93
  },
94
+ "./electro": {
95
+ "types": "./dist/electro/index.d.mts",
96
+ "default": "./dist/electro/index.mjs"
97
+ },
98
+ "./colour": {
99
+ "types": "./dist/colour/index.d.mts",
100
+ "default": "./dist/colour/index.mjs"
101
+ },
102
+ "./physics": {
103
+ "types": "./dist/physics/index.d.mts",
104
+ "default": "./dist/physics/index.mjs"
105
+ },
106
+ "./physics/magnetism": {
107
+ "types": "./dist/physics/magnetism/index.d.mts",
108
+ "default": "./dist/physics/magnetism/index.mjs"
109
+ },
110
+ "./physics/electrostatics": {
111
+ "types": "./dist/physics/electrostatics/index.d.mts",
112
+ "default": "./dist/physics/electrostatics/index.mjs"
113
+ },
114
+ "./physics/ac": {
115
+ "types": "./dist/physics/ac/index.d.mts",
116
+ "default": "./dist/physics/ac/index.mjs"
117
+ },
78
118
  "./finance": {
79
119
  "types": "./dist/finance/index.d.mts",
80
120
  "default": "./dist/finance/index.mjs"
81
121
  },
122
+ "./finance/accounting": {
123
+ "types": "./dist/finance/accounting/index.d.mts",
124
+ "default": "./dist/finance/accounting/index.mjs"
125
+ },
126
+ "./finance/management-accounting": {
127
+ "types": "./dist/finance/management-accounting/index.d.mts",
128
+ "default": "./dist/finance/management-accounting/index.mjs"
129
+ },
130
+ "./networking": {
131
+ "types": "./dist/networking/index.d.mts",
132
+ "default": "./dist/networking/index.mjs"
133
+ },
134
+ "./networking/models": {
135
+ "types": "./dist/networking/models/index.d.mts",
136
+ "default": "./dist/networking/models/index.mjs"
137
+ },
138
+ "./networking/cloud": {
139
+ "types": "./dist/networking/cloud/index.d.mts",
140
+ "default": "./dist/networking/cloud/index.mjs"
141
+ },
142
+ "./networking/topology": {
143
+ "types": "./dist/networking/topology/index.d.mts",
144
+ "default": "./dist/networking/topology/index.mjs"
145
+ },
82
146
  "./steps": {
83
147
  "types": "./dist/steps/index.d.mts",
84
148
  "default": "./dist/steps/index.mjs"
85
149
  },
86
150
  "./styles.css": "./styles.css",
87
- "./package.json": "./package.json"
151
+ "./package.json": "./package.json",
152
+ "./quantity": {
153
+ "types": "./dist/quantity/index.d.mts",
154
+ "default": "./dist/quantity/index.mjs"
155
+ },
156
+ "./relation": {
157
+ "types": "./dist/relation/index.d.mts",
158
+ "default": "./dist/relation/index.mjs"
159
+ }
88
160
  },
89
161
  "main": "./dist/index.mjs",
90
162
  "module": "./dist/index.mjs",