@pascal-app/core 0.8.0 → 0.9.2

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 (471) hide show
  1. package/dist/events/bus.d.ts +67 -13
  2. package/dist/events/bus.d.ts.map +1 -1
  3. package/dist/hooks/scene-registry/item-clip-registry.d.ts +18 -0
  4. package/dist/hooks/scene-registry/item-clip-registry.d.ts.map +1 -0
  5. package/dist/hooks/scene-registry/item-clip-registry.js +10 -0
  6. package/dist/hooks/scene-registry/scene-registry.d.ts +14 -23
  7. package/dist/hooks/scene-registry/scene-registry.d.ts.map +1 -1
  8. package/dist/hooks/scene-registry/scene-registry.js +59 -26
  9. package/dist/hooks/scene-registry/scene-registry.test.d.ts +2 -0
  10. package/dist/hooks/scene-registry/scene-registry.test.d.ts.map +1 -0
  11. package/dist/hooks/scene-registry/scene-registry.test.js +26 -0
  12. package/dist/hooks/spatial-grid/floor-placed-elevation.d.ts +14 -0
  13. package/dist/hooks/spatial-grid/floor-placed-elevation.d.ts.map +1 -0
  14. package/dist/hooks/spatial-grid/floor-placed-elevation.js +51 -0
  15. package/dist/hooks/spatial-grid/floor-placed-elevation.test.d.ts +2 -0
  16. package/dist/hooks/spatial-grid/floor-placed-elevation.test.d.ts.map +1 -0
  17. package/dist/hooks/spatial-grid/floor-placed-elevation.test.js +366 -0
  18. package/dist/hooks/spatial-grid/spatial-grid-manager.d.ts +79 -11
  19. package/dist/hooks/spatial-grid/spatial-grid-manager.d.ts.map +1 -1
  20. package/dist/hooks/spatial-grid/spatial-grid-manager.js +508 -141
  21. package/dist/hooks/spatial-grid/spatial-grid-sync.d.ts +28 -1
  22. package/dist/hooks/spatial-grid/spatial-grid-sync.d.ts.map +1 -1
  23. package/dist/hooks/spatial-grid/spatial-grid-sync.js +109 -18
  24. package/dist/hooks/spatial-grid/wall-slab-overlap.test.d.ts +2 -0
  25. package/dist/hooks/spatial-grid/wall-slab-overlap.test.d.ts.map +1 -0
  26. package/dist/hooks/spatial-grid/wall-slab-overlap.test.js +363 -0
  27. package/dist/index.d.ts +36 -8
  28. package/dist/index.d.ts.map +1 -1
  29. package/dist/index.js +33 -6
  30. package/dist/lib/level-name.d.ts +4 -0
  31. package/dist/lib/level-name.d.ts.map +1 -0
  32. package/dist/lib/level-name.js +10 -0
  33. package/dist/lib/measurement-geometry.d.ts +19 -0
  34. package/dist/lib/measurement-geometry.d.ts.map +1 -0
  35. package/dist/lib/measurement-geometry.js +232 -0
  36. package/dist/lib/measurement-geometry.test.d.ts +2 -0
  37. package/dist/lib/measurement-geometry.test.d.ts.map +1 -0
  38. package/dist/lib/measurement-geometry.test.js +102 -0
  39. package/dist/lib/polygon-geometry.d.ts +0 -1
  40. package/dist/lib/polygon-geometry.d.ts.map +1 -1
  41. package/dist/lib/polygon-geometry.js +0 -18
  42. package/dist/lib/polygon-relations.d.ts +10 -0
  43. package/dist/lib/polygon-relations.d.ts.map +1 -0
  44. package/dist/lib/polygon-relations.js +73 -0
  45. package/dist/lib/selection-proxy.d.ts +4 -0
  46. package/dist/lib/selection-proxy.d.ts.map +1 -0
  47. package/dist/lib/selection-proxy.js +12 -0
  48. package/dist/lib/slab-polygon.d.ts +31 -2
  49. package/dist/lib/slab-polygon.d.ts.map +1 -1
  50. package/dist/lib/slab-polygon.js +525 -31
  51. package/dist/lib/slab-polygon.test.d.ts +2 -0
  52. package/dist/lib/slab-polygon.test.d.ts.map +1 -0
  53. package/dist/lib/slab-polygon.test.js +635 -0
  54. package/dist/lib/slots.d.ts +14 -0
  55. package/dist/lib/slots.d.ts.map +1 -0
  56. package/dist/lib/slots.js +26 -0
  57. package/dist/lib/space-detection-pause.test.d.ts +2 -0
  58. package/dist/lib/space-detection-pause.test.d.ts.map +1 -0
  59. package/dist/lib/space-detection-pause.test.js +42 -0
  60. package/dist/lib/space-detection.d.ts +54 -2
  61. package/dist/lib/space-detection.d.ts.map +1 -1
  62. package/dist/lib/space-detection.js +599 -124
  63. package/dist/lib/space-detection.test.d.ts +2 -0
  64. package/dist/lib/space-detection.test.d.ts.map +1 -0
  65. package/dist/lib/space-detection.test.js +376 -0
  66. package/dist/lib/wall-distance.d.ts +60 -0
  67. package/dist/lib/wall-distance.d.ts.map +1 -0
  68. package/dist/lib/wall-distance.js +85 -0
  69. package/dist/lib/zone-quantities.d.ts +21 -0
  70. package/dist/lib/zone-quantities.d.ts.map +1 -0
  71. package/dist/lib/zone-quantities.js +183 -0
  72. package/dist/lib/zone-quantities.test.d.ts +2 -0
  73. package/dist/lib/zone-quantities.test.d.ts.map +1 -0
  74. package/dist/lib/zone-quantities.test.js +82 -0
  75. package/dist/material-library.d.ts +20 -1
  76. package/dist/material-library.d.ts.map +1 -1
  77. package/dist/material-library.js +3737 -200
  78. package/dist/registry/__bench__/relations-resolver.bench.d.ts +15 -0
  79. package/dist/registry/__bench__/relations-resolver.bench.d.ts.map +1 -0
  80. package/dist/registry/__bench__/relations-resolver.bench.js +170 -0
  81. package/dist/registry/handles.d.ts +394 -0
  82. package/dist/registry/handles.d.ts.map +1 -0
  83. package/dist/registry/handles.js +24 -0
  84. package/dist/registry/index.d.ts +7 -0
  85. package/dist/registry/index.d.ts.map +1 -0
  86. package/dist/registry/index.js +4 -0
  87. package/dist/registry/registry.d.ts +136 -0
  88. package/dist/registry/registry.d.ts.map +1 -0
  89. package/dist/registry/registry.js +282 -0
  90. package/dist/registry/registry.test.d.ts +2 -0
  91. package/dist/registry/registry.test.d.ts.map +1 -0
  92. package/dist/registry/registry.test.js +196 -0
  93. package/dist/registry/relations-resolver.d.ts +42 -0
  94. package/dist/registry/relations-resolver.d.ts.map +1 -0
  95. package/dist/registry/relations-resolver.js +77 -0
  96. package/dist/registry/relations-resolver.test.d.ts +2 -0
  97. package/dist/registry/relations-resolver.test.d.ts.map +1 -0
  98. package/dist/registry/relations-resolver.test.js +183 -0
  99. package/dist/registry/scene-api.d.ts +44 -0
  100. package/dist/registry/scene-api.d.ts.map +1 -0
  101. package/dist/registry/scene-api.js +111 -0
  102. package/dist/registry/scene-api.test.d.ts +2 -0
  103. package/dist/registry/scene-api.test.d.ts.map +1 -0
  104. package/dist/registry/scene-api.test.js +183 -0
  105. package/dist/registry/subtree.d.ts +67 -0
  106. package/dist/registry/subtree.d.ts.map +1 -0
  107. package/dist/registry/subtree.js +123 -0
  108. package/dist/registry/subtree.test.d.ts +2 -0
  109. package/dist/registry/subtree.test.d.ts.map +1 -0
  110. package/dist/registry/subtree.test.js +163 -0
  111. package/dist/registry/types.d.ts +2099 -0
  112. package/dist/registry/types.d.ts.map +1 -0
  113. package/dist/registry/types.js +1 -0
  114. package/dist/schema/index.d.ts +35 -4
  115. package/dist/schema/index.d.ts.map +1 -1
  116. package/dist/schema/index.js +32 -4
  117. package/dist/schema/material.d.ts +13 -2
  118. package/dist/schema/material.d.ts.map +1 -1
  119. package/dist/schema/material.js +17 -5
  120. package/dist/schema/material.test.d.ts +2 -0
  121. package/dist/schema/material.test.d.ts.map +1 -0
  122. package/dist/schema/material.test.js +43 -0
  123. package/dist/schema/nodes/box-vent.d.ts +74 -0
  124. package/dist/schema/nodes/box-vent.d.ts.map +1 -0
  125. package/dist/schema/nodes/box-vent.js +63 -0
  126. package/dist/schema/nodes/building.d.ts +1 -1
  127. package/dist/schema/nodes/building.d.ts.map +1 -1
  128. package/dist/schema/nodes/building.js +3 -2
  129. package/dist/schema/nodes/cabinet.d.ts +534 -0
  130. package/dist/schema/nodes/cabinet.d.ts.map +1 -0
  131. package/dist/schema/nodes/cabinet.js +137 -0
  132. package/dist/schema/nodes/ceiling.d.ts +5 -2
  133. package/dist/schema/nodes/ceiling.d.ts.map +1 -1
  134. package/dist/schema/nodes/ceiling.js +5 -1
  135. package/dist/schema/nodes/chimney.d.ts +158 -0
  136. package/dist/schema/nodes/chimney.d.ts.map +1 -0
  137. package/dist/schema/nodes/chimney.js +67 -0
  138. package/dist/schema/nodes/column.d.ts +600 -7
  139. package/dist/schema/nodes/column.d.ts.map +1 -1
  140. package/dist/schema/nodes/column.js +589 -6
  141. package/dist/schema/nodes/cupola.d.ts +66 -0
  142. package/dist/schema/nodes/cupola.d.ts.map +1 -0
  143. package/dist/schema/nodes/cupola.js +28 -0
  144. package/dist/schema/nodes/door.d.ts +13 -5
  145. package/dist/schema/nodes/door.d.ts.map +1 -1
  146. package/dist/schema/nodes/door.js +12 -0
  147. package/dist/schema/nodes/dormer.d.ts +228 -0
  148. package/dist/schema/nodes/dormer.d.ts.map +1 -0
  149. package/dist/schema/nodes/dormer.js +119 -0
  150. package/dist/schema/nodes/downspout.d.ts +75 -0
  151. package/dist/schema/nodes/downspout.d.ts.map +1 -0
  152. package/dist/schema/nodes/downspout.js +63 -0
  153. package/dist/schema/nodes/duct-fitting.d.ts +91 -0
  154. package/dist/schema/nodes/duct-fitting.d.ts.map +1 -0
  155. package/dist/schema/nodes/duct-fitting.js +92 -0
  156. package/dist/schema/nodes/duct-segment.d.ts +61 -0
  157. package/dist/schema/nodes/duct-segment.d.ts.map +1 -0
  158. package/dist/schema/nodes/duct-segment.js +73 -0
  159. package/dist/schema/nodes/duct-terminal.d.ts +57 -0
  160. package/dist/schema/nodes/duct-terminal.d.ts.map +1 -0
  161. package/dist/schema/nodes/duct-terminal.js +51 -0
  162. package/dist/schema/nodes/elevator.d.ts +106 -0
  163. package/dist/schema/nodes/elevator.d.ts.map +1 -0
  164. package/dist/schema/nodes/elevator.js +57 -0
  165. package/dist/schema/nodes/eyebrow-vent.d.ts +68 -0
  166. package/dist/schema/nodes/eyebrow-vent.d.ts.map +1 -0
  167. package/dist/schema/nodes/eyebrow-vent.js +40 -0
  168. package/dist/schema/nodes/fence.d.ts +19 -2
  169. package/dist/schema/nodes/fence.d.ts.map +1 -1
  170. package/dist/schema/nodes/fence.js +27 -2
  171. package/dist/schema/nodes/gutter.d.ts +84 -0
  172. package/dist/schema/nodes/gutter.d.ts.map +1 -0
  173. package/dist/schema/nodes/gutter.js +76 -0
  174. package/dist/schema/nodes/hvac-equipment.d.ts +63 -0
  175. package/dist/schema/nodes/hvac-equipment.d.ts.map +1 -0
  176. package/dist/schema/nodes/hvac-equipment.js +55 -0
  177. package/dist/schema/nodes/item.d.ts +12 -0
  178. package/dist/schema/nodes/item.d.ts.map +1 -1
  179. package/dist/schema/nodes/item.js +20 -0
  180. package/dist/schema/nodes/level.d.ts +1 -1
  181. package/dist/schema/nodes/level.d.ts.map +1 -1
  182. package/dist/schema/nodes/level.js +4 -0
  183. package/dist/schema/nodes/lineset.d.ts +42 -0
  184. package/dist/schema/nodes/lineset.d.ts.map +1 -0
  185. package/dist/schema/nodes/lineset.js +38 -0
  186. package/dist/schema/nodes/liquid-line.d.ts +34 -0
  187. package/dist/schema/nodes/liquid-line.d.ts.map +1 -0
  188. package/dist/schema/nodes/liquid-line.js +24 -0
  189. package/dist/schema/nodes/measurement.d.ts +306 -0
  190. package/dist/schema/nodes/measurement.d.ts.map +1 -0
  191. package/dist/schema/nodes/measurement.js +87 -0
  192. package/dist/schema/nodes/measurement.test.d.ts +2 -0
  193. package/dist/schema/nodes/measurement.test.d.ts.map +1 -0
  194. package/dist/schema/nodes/measurement.test.js +139 -0
  195. package/dist/schema/nodes/pipe-fitting.d.ts +56 -0
  196. package/dist/schema/nodes/pipe-fitting.d.ts.map +1 -0
  197. package/dist/schema/nodes/pipe-fitting.js +45 -0
  198. package/dist/schema/nodes/pipe-segment.d.ts +48 -0
  199. package/dist/schema/nodes/pipe-segment.d.ts.map +1 -0
  200. package/dist/schema/nodes/pipe-segment.js +36 -0
  201. package/dist/schema/nodes/pipe-trap.d.ts +43 -0
  202. package/dist/schema/nodes/pipe-trap.d.ts.map +1 -0
  203. package/dist/schema/nodes/pipe-trap.js +36 -0
  204. package/dist/schema/nodes/ridge-vent-defaults.test.d.ts +2 -0
  205. package/dist/schema/nodes/ridge-vent-defaults.test.d.ts.map +1 -0
  206. package/dist/schema/nodes/ridge-vent-defaults.test.js +205 -0
  207. package/dist/schema/nodes/ridge-vent.d.ts +82 -0
  208. package/dist/schema/nodes/ridge-vent.d.ts.map +1 -0
  209. package/dist/schema/nodes/ridge-vent.js +248 -0
  210. package/dist/schema/nodes/roof-segment-shape.d.ts +90 -0
  211. package/dist/schema/nodes/roof-segment-shape.d.ts.map +1 -0
  212. package/dist/schema/nodes/roof-segment-shape.js +318 -0
  213. package/dist/schema/nodes/roof-segment-shape.test.d.ts +2 -0
  214. package/dist/schema/nodes/roof-segment-shape.test.d.ts.map +1 -0
  215. package/dist/schema/nodes/roof-segment-shape.test.js +175 -0
  216. package/dist/schema/nodes/roof-segment-surface.test.d.ts +2 -0
  217. package/dist/schema/nodes/roof-segment-surface.test.d.ts.map +1 -0
  218. package/dist/schema/nodes/roof-segment-surface.test.js +48 -0
  219. package/dist/schema/nodes/roof-segment-trim.test.d.ts +2 -0
  220. package/dist/schema/nodes/roof-segment-trim.test.d.ts.map +1 -0
  221. package/dist/schema/nodes/roof-segment-trim.test.js +107 -0
  222. package/dist/schema/nodes/roof-segment-walls.d.ts +101 -0
  223. package/dist/schema/nodes/roof-segment-walls.d.ts.map +1 -0
  224. package/dist/schema/nodes/roof-segment-walls.js +330 -0
  225. package/dist/schema/nodes/roof-segment-walls.test.d.ts +2 -0
  226. package/dist/schema/nodes/roof-segment-walls.test.d.ts.map +1 -0
  227. package/dist/schema/nodes/roof-segment-walls.test.js +92 -0
  228. package/dist/schema/nodes/roof-segment.d.ts +273 -3
  229. package/dist/schema/nodes/roof-segment.d.ts.map +1 -1
  230. package/dist/schema/nodes/roof-segment.js +539 -3
  231. package/dist/schema/nodes/roof.d.ts +8 -8
  232. package/dist/schema/nodes/roof.d.ts.map +1 -1
  233. package/dist/schema/nodes/roof.js +4 -16
  234. package/dist/schema/nodes/shelf.d.ts +106 -0
  235. package/dist/schema/nodes/shelf.d.ts.map +1 -0
  236. package/dist/schema/nodes/shelf.js +90 -0
  237. package/dist/schema/nodes/site.d.ts +1 -122
  238. package/dist/schema/nodes/site.d.ts.map +1 -1
  239. package/dist/schema/nodes/site.js +2 -6
  240. package/dist/schema/nodes/skylight.d.ts +279 -0
  241. package/dist/schema/nodes/skylight.d.ts.map +1 -0
  242. package/dist/schema/nodes/skylight.js +152 -0
  243. package/dist/schema/nodes/slab.d.ts +5 -2
  244. package/dist/schema/nodes/slab.d.ts.map +1 -1
  245. package/dist/schema/nodes/slab.js +5 -1
  246. package/dist/schema/nodes/solar-panel.d.ts +117 -0
  247. package/dist/schema/nodes/solar-panel.d.ts.map +1 -0
  248. package/dist/schema/nodes/solar-panel.js +47 -0
  249. package/dist/schema/nodes/stair-segment.d.ts +4 -4
  250. package/dist/schema/nodes/stair.d.ts +13 -12
  251. package/dist/schema/nodes/stair.d.ts.map +1 -1
  252. package/dist/schema/nodes/stair.js +3 -0
  253. package/dist/schema/nodes/surface-hole-metadata.d.ts +2 -0
  254. package/dist/schema/nodes/surface-hole-metadata.d.ts.map +1 -1
  255. package/dist/schema/nodes/surface-hole-metadata.js +3 -1
  256. package/dist/schema/nodes/turbine-vent.d.ts +68 -0
  257. package/dist/schema/nodes/turbine-vent.d.ts.map +1 -0
  258. package/dist/schema/nodes/turbine-vent.js +41 -0
  259. package/dist/schema/nodes/wall.d.ts +245 -6
  260. package/dist/schema/nodes/wall.d.ts.map +1 -1
  261. package/dist/schema/nodes/wall.js +257 -0
  262. package/dist/schema/nodes/wall.test.d.ts +2 -0
  263. package/dist/schema/nodes/wall.test.d.ts.map +1 -0
  264. package/dist/schema/nodes/wall.test.js +208 -0
  265. package/dist/schema/nodes/window.d.ts +11 -3
  266. package/dist/schema/nodes/window.d.ts.map +1 -1
  267. package/dist/schema/nodes/window.js +12 -0
  268. package/dist/schema/nodes/zone.d.ts +2 -0
  269. package/dist/schema/nodes/zone.d.ts.map +1 -1
  270. package/dist/schema/nodes/zone.js +6 -0
  271. package/dist/schema/scene-material.d.ts +41 -0
  272. package/dist/schema/scene-material.d.ts.map +1 -0
  273. package/dist/schema/scene-material.js +9 -0
  274. package/dist/schema/types.d.ts +2850 -655
  275. package/dist/schema/types.d.ts.map +1 -1
  276. package/dist/schema/types.js +49 -0
  277. package/dist/services/alignment-anchors.d.ts +100 -0
  278. package/dist/services/alignment-anchors.d.ts.map +1 -0
  279. package/dist/services/alignment-anchors.js +312 -0
  280. package/dist/services/alignment-anchors.test.d.ts +2 -0
  281. package/dist/services/alignment-anchors.test.d.ts.map +1 -0
  282. package/dist/services/alignment-anchors.test.js +383 -0
  283. package/dist/services/alignment.d.ts +131 -0
  284. package/dist/services/alignment.d.ts.map +1 -0
  285. package/dist/services/alignment.js +171 -0
  286. package/dist/services/alignment.test.d.ts +2 -0
  287. package/dist/services/alignment.test.d.ts.map +1 -0
  288. package/dist/services/alignment.test.js +92 -0
  289. package/dist/services/drag-session.d.ts +47 -0
  290. package/dist/services/drag-session.d.ts.map +1 -0
  291. package/dist/services/drag-session.js +100 -0
  292. package/dist/services/drag-session.test.d.ts +2 -0
  293. package/dist/services/drag-session.test.d.ts.map +1 -0
  294. package/dist/services/drag-session.test.js +219 -0
  295. package/dist/services/hosting.d.ts +88 -0
  296. package/dist/services/hosting.d.ts.map +1 -0
  297. package/dist/services/hosting.js +131 -0
  298. package/dist/services/hosting.test.d.ts +2 -0
  299. package/dist/services/hosting.test.d.ts.map +1 -0
  300. package/dist/services/hosting.test.js +230 -0
  301. package/dist/services/index.d.ts +13 -0
  302. package/dist/services/index.d.ts.map +1 -0
  303. package/dist/services/index.js +12 -0
  304. package/dist/services/level-height.d.ts +28 -0
  305. package/dist/services/level-height.d.ts.map +1 -0
  306. package/dist/services/level-height.js +62 -0
  307. package/dist/services/movement.d.ts +48 -0
  308. package/dist/services/movement.d.ts.map +1 -0
  309. package/dist/services/movement.js +65 -0
  310. package/dist/services/movement.test.d.ts +2 -0
  311. package/dist/services/movement.test.d.ts.map +1 -0
  312. package/dist/services/movement.test.js +133 -0
  313. package/dist/services/opening-guides.d.ts +141 -0
  314. package/dist/services/opening-guides.d.ts.map +1 -0
  315. package/dist/services/opening-guides.js +267 -0
  316. package/dist/services/opening-guides.test.d.ts +2 -0
  317. package/dist/services/opening-guides.test.d.ts.map +1 -0
  318. package/dist/services/opening-guides.test.js +208 -0
  319. package/dist/services/port-connectivity.d.ts +115 -0
  320. package/dist/services/port-connectivity.d.ts.map +1 -0
  321. package/dist/services/port-connectivity.js +300 -0
  322. package/dist/services/port-connectivity.test.d.ts +2 -0
  323. package/dist/services/port-connectivity.test.d.ts.map +1 -0
  324. package/dist/services/port-connectivity.test.js +297 -0
  325. package/dist/services/riser-diagram.d.ts +40 -0
  326. package/dist/services/riser-diagram.d.ts.map +1 -0
  327. package/dist/services/riser-diagram.js +110 -0
  328. package/dist/services/riser-diagram.test.d.ts +2 -0
  329. package/dist/services/riser-diagram.test.d.ts.map +1 -0
  330. package/dist/services/riser-diagram.test.js +66 -0
  331. package/dist/services/single-undo-dance.test.d.ts +2 -0
  332. package/dist/services/single-undo-dance.test.d.ts.map +1 -0
  333. package/dist/services/single-undo-dance.test.js +210 -0
  334. package/dist/services/snap.d.ts +80 -0
  335. package/dist/services/snap.d.ts.map +1 -0
  336. package/dist/services/snap.js +140 -0
  337. package/dist/services/snap.test.d.ts +2 -0
  338. package/dist/services/snap.test.d.ts.map +1 -0
  339. package/dist/services/snap.test.js +137 -0
  340. package/dist/services/system-graph.d.ts +30 -0
  341. package/dist/services/system-graph.d.ts.map +1 -0
  342. package/dist/services/system-graph.js +164 -0
  343. package/dist/services/system-graph.test.d.ts +2 -0
  344. package/dist/services/system-graph.test.d.ts.map +1 -0
  345. package/dist/services/system-graph.test.js +138 -0
  346. package/dist/services/validate-dwv.d.ts +32 -0
  347. package/dist/services/validate-dwv.d.ts.map +1 -0
  348. package/dist/services/validate-dwv.js +118 -0
  349. package/dist/services/validate-dwv.test.d.ts +2 -0
  350. package/dist/services/validate-dwv.test.d.ts.map +1 -0
  351. package/dist/services/validate-dwv.test.js +109 -0
  352. package/dist/solar-panel-presets.d.ts +17 -0
  353. package/dist/solar-panel-presets.d.ts.map +1 -0
  354. package/dist/solar-panel-presets.js +43 -0
  355. package/dist/store/actions/node-actions.d.ts +14 -2
  356. package/dist/store/actions/node-actions.d.ts.map +1 -1
  357. package/dist/store/actions/node-actions.js +585 -15
  358. package/dist/store/actions/node-mutation-sanitize.test.d.ts +2 -0
  359. package/dist/store/actions/node-mutation-sanitize.test.d.ts.map +1 -0
  360. package/dist/store/actions/node-mutation-sanitize.test.js +147 -0
  361. package/dist/store/actions/reparent.test.d.ts +2 -0
  362. package/dist/store/actions/reparent.test.d.ts.map +1 -0
  363. package/dist/store/actions/reparent.test.js +212 -0
  364. package/dist/store/actions/ridge-vent-update.test.d.ts +2 -0
  365. package/dist/store/actions/ridge-vent-update.test.d.ts.map +1 -0
  366. package/dist/store/actions/ridge-vent-update.test.js +264 -0
  367. package/dist/store/history-control.d.ts +11 -0
  368. package/dist/store/history-control.d.ts.map +1 -1
  369. package/dist/store/history-control.js +33 -0
  370. package/dist/store/use-interactive.d.ts +39 -0
  371. package/dist/store/use-interactive.d.ts.map +1 -1
  372. package/dist/store/use-interactive.js +75 -0
  373. package/dist/store/use-live-node-overrides.d.ts +22 -0
  374. package/dist/store/use-live-node-overrides.d.ts.map +1 -0
  375. package/dist/store/use-live-node-overrides.js +59 -0
  376. package/dist/store/use-scene-dirty-tracking.test.d.ts +2 -0
  377. package/dist/store/use-scene-dirty-tracking.test.d.ts.map +1 -0
  378. package/dist/store/use-scene-dirty-tracking.test.js +68 -0
  379. package/dist/store/use-scene-elevator-migration.test.d.ts +2 -0
  380. package/dist/store/use-scene-elevator-migration.test.d.ts.map +1 -0
  381. package/dist/store/use-scene-elevator-migration.test.js +109 -0
  382. package/dist/store/use-scene-measurement-roundtrip.test.d.ts +2 -0
  383. package/dist/store/use-scene-measurement-roundtrip.test.d.ts.map +1 -0
  384. package/dist/store/use-scene-measurement-roundtrip.test.js +97 -0
  385. package/dist/store/use-scene-plugins.test.d.ts +2 -0
  386. package/dist/store/use-scene-plugins.test.d.ts.map +1 -0
  387. package/dist/store/use-scene-plugins.test.js +51 -0
  388. package/dist/store/use-scene-wall-slot-migration.test.d.ts +2 -0
  389. package/dist/store/use-scene-wall-slot-migration.test.d.ts.map +1 -0
  390. package/dist/store/use-scene-wall-slot-migration.test.js +210 -0
  391. package/dist/store/use-scene-window-migration.test.d.ts +2 -0
  392. package/dist/store/use-scene-window-migration.test.d.ts.map +1 -0
  393. package/dist/store/use-scene-window-migration.test.js +85 -0
  394. package/dist/store/use-scene.d.ts +28 -2
  395. package/dist/store/use-scene.d.ts.map +1 -1
  396. package/dist/store/use-scene.js +546 -49
  397. package/dist/systems/elevator/elevator-dispatch.d.ts +12 -0
  398. package/dist/systems/elevator/elevator-dispatch.d.ts.map +1 -0
  399. package/dist/systems/elevator/elevator-dispatch.js +57 -0
  400. package/dist/systems/elevator/elevator-geometry.d.ts +15 -0
  401. package/dist/systems/elevator/elevator-geometry.d.ts.map +1 -0
  402. package/dist/systems/elevator/elevator-geometry.js +50 -0
  403. package/dist/systems/elevator/elevator-opening-sync.d.ts +6 -0
  404. package/dist/systems/elevator/elevator-opening-sync.d.ts.map +1 -0
  405. package/dist/systems/elevator/elevator-opening-sync.js +218 -0
  406. package/dist/systems/elevator/elevator-opening-sync.test.d.ts +2 -0
  407. package/dist/systems/elevator/elevator-opening-sync.test.d.ts.map +1 -0
  408. package/dist/systems/elevator/elevator-opening-sync.test.js +146 -0
  409. package/dist/systems/elevator/elevator-opening-system.d.ts +2 -0
  410. package/dist/systems/elevator/elevator-opening-system.d.ts.map +1 -0
  411. package/dist/systems/elevator/elevator-opening-system.js +48 -0
  412. package/dist/systems/elevator/elevator-runtime-system.d.ts +2 -0
  413. package/dist/systems/elevator/elevator-runtime-system.d.ts.map +1 -0
  414. package/dist/systems/elevator/elevator-runtime-system.js +8 -0
  415. package/dist/systems/elevator/elevator-runtime.d.ts +18 -0
  416. package/dist/systems/elevator/elevator-runtime.d.ts.map +1 -0
  417. package/dist/systems/elevator/elevator-runtime.js +225 -0
  418. package/dist/systems/elevator/elevator-runtime.test.d.ts +2 -0
  419. package/dist/systems/elevator/elevator-runtime.test.d.ts.map +1 -0
  420. package/dist/systems/elevator/elevator-runtime.test.js +64 -0
  421. package/dist/systems/elevator/elevator-service.d.ts +19 -0
  422. package/dist/systems/elevator/elevator-service.d.ts.map +1 -0
  423. package/dist/systems/elevator/elevator-service.js +111 -0
  424. package/dist/systems/fence/fence-centerline.d.ts +12 -0
  425. package/dist/systems/fence/fence-centerline.d.ts.map +1 -0
  426. package/dist/systems/fence/fence-centerline.js +37 -0
  427. package/dist/systems/fence/fence-spline.d.ts +39 -0
  428. package/dist/systems/fence/fence-spline.d.ts.map +1 -0
  429. package/dist/systems/fence/fence-spline.js +196 -0
  430. package/dist/systems/fence/fence-spline.test.d.ts +2 -0
  431. package/dist/systems/fence/fence-spline.test.d.ts.map +1 -0
  432. package/dist/systems/fence/fence-spline.test.js +136 -0
  433. package/dist/systems/stair/stair-footprint.d.ts +44 -0
  434. package/dist/systems/stair/stair-footprint.d.ts.map +1 -0
  435. package/dist/systems/stair/stair-footprint.js +178 -0
  436. package/dist/systems/stair/stair-opening-preview.d.ts +2447 -0
  437. package/dist/systems/stair/stair-opening-preview.d.ts.map +1 -0
  438. package/dist/systems/stair/stair-opening-preview.js +93 -0
  439. package/dist/systems/stair/stair-opening-preview.test.d.ts +2 -0
  440. package/dist/systems/stair/stair-opening-preview.test.d.ts.map +1 -0
  441. package/dist/systems/stair/stair-opening-preview.test.js +80 -0
  442. package/dist/systems/stair/stair-opening-sync.d.ts.map +1 -1
  443. package/dist/systems/stair/stair-opening-sync.js +155 -147
  444. package/dist/systems/stair/stair-opening-sync.test.js +424 -2
  445. package/dist/systems/stair/stair-opening-system.d.ts +2 -0
  446. package/dist/systems/stair/stair-opening-system.d.ts.map +1 -0
  447. package/dist/systems/stair/stair-opening-system.js +104 -0
  448. package/dist/systems/wall/wall-mitering.d.ts.map +1 -1
  449. package/dist/systems/wall/wall-mitering.js +38 -2
  450. package/dist/systems/wall/wall-mitering.test.d.ts +2 -0
  451. package/dist/systems/wall/wall-mitering.test.d.ts.map +1 -0
  452. package/dist/systems/wall/wall-mitering.test.js +63 -0
  453. package/dist/systems/wall/wall-move.d.ts +48 -0
  454. package/dist/systems/wall/wall-move.d.ts.map +1 -0
  455. package/dist/systems/wall/wall-move.js +193 -0
  456. package/dist/utils/clone-scene-graph.d.ts +7 -4
  457. package/dist/utils/clone-scene-graph.d.ts.map +1 -1
  458. package/dist/utils/clone-scene-graph.js +29 -7
  459. package/dist/utils/clone-scene-graph.test.d.ts +2 -0
  460. package/dist/utils/clone-scene-graph.test.d.ts.map +1 -0
  461. package/dist/utils/clone-scene-graph.test.js +62 -0
  462. package/dist/utils/heal-scene-graph.d.ts +18 -0
  463. package/dist/utils/heal-scene-graph.d.ts.map +1 -0
  464. package/dist/utils/heal-scene-graph.js +90 -0
  465. package/dist/utils/heal-scene-graph.test.d.ts +2 -0
  466. package/dist/utils/heal-scene-graph.test.d.ts.map +1 -0
  467. package/dist/utils/heal-scene-graph.test.js +88 -0
  468. package/dist/validation/validate-build-json.d.ts +44 -0
  469. package/dist/validation/validate-build-json.d.ts.map +1 -0
  470. package/dist/validation/validate-build-json.js +256 -0
  471. package/package.json +11 -4
@@ -69,6 +69,19 @@ export declare const ColumnCarvingPlacement: z.ZodEnum<{
69
69
  capital: "capital";
70
70
  all: "all";
71
71
  }>;
72
+ export declare const ColumnSupportStyle: z.ZodEnum<{
73
+ vertical: "vertical";
74
+ "a-frame": "a-frame";
75
+ "y-frame": "y-frame";
76
+ "v-frame": "v-frame";
77
+ "x-brace": "x-brace";
78
+ "k-brace": "k-brace";
79
+ "single-strut": "single-strut";
80
+ tripod: "tripod";
81
+ trestle: "trestle";
82
+ "portal-frame": "portal-frame";
83
+ "box-frame": "box-frame";
84
+ }>;
72
85
  export type ColumnStyle = z.infer<typeof ColumnStyle>;
73
86
  export type ColumnCrossSection = z.infer<typeof ColumnCrossSection>;
74
87
  export type ColumnShaftProfile = z.infer<typeof ColumnShaftProfile>;
@@ -78,6 +91,7 @@ export type ColumnBaseStyle = z.infer<typeof ColumnBaseStyle>;
78
91
  export type ColumnCapitalStyle = z.infer<typeof ColumnCapitalStyle>;
79
92
  export type ColumnRingPlacement = z.infer<typeof ColumnRingPlacement>;
80
93
  export type ColumnCarvingPlacement = z.infer<typeof ColumnCarvingPlacement>;
94
+ export type ColumnSupportStyle = z.infer<typeof ColumnSupportStyle>;
81
95
  export declare const ColumnNode: z.ZodObject<{
82
96
  object: z.ZodDefault<z.ZodLiteral<"node">>;
83
97
  name: z.ZodOptional<z.ZodString>;
@@ -229,9 +243,27 @@ export declare const ColumnNode: z.ZodObject<{
229
243
  lowerBandCarvingLevel: z.ZodDefault<z.ZodNumber>;
230
244
  dentilCount: z.ZodDefault<z.ZodNumber>;
231
245
  beadCount: z.ZodDefault<z.ZodNumber>;
246
+ supportStyle: z.ZodDefault<z.ZodEnum<{
247
+ vertical: "vertical";
248
+ "a-frame": "a-frame";
249
+ "y-frame": "y-frame";
250
+ "v-frame": "v-frame";
251
+ "x-brace": "x-brace";
252
+ "k-brace": "k-brace";
253
+ "single-strut": "single-strut";
254
+ tripod: "tripod";
255
+ trestle: "trestle";
256
+ "portal-frame": "portal-frame";
257
+ "box-frame": "box-frame";
258
+ }>>;
259
+ braceWidth: z.ZodDefault<z.ZodNumber>;
260
+ braceDepth: z.ZodDefault<z.ZodNumber>;
261
+ braceBottomSpread: z.ZodDefault<z.ZodNumber>;
262
+ braceTopSpread: z.ZodDefault<z.ZodNumber>;
263
+ bracePlateEnabled: z.ZodDefault<z.ZodBoolean>;
232
264
  material: z.ZodOptional<z.ZodObject<{
233
265
  id: z.ZodOptional<z.ZodString>;
234
- preset: z.ZodOptional<z.ZodEnum<{
266
+ preset: z.ZodOptional<z.ZodCatch<z.ZodEnum<{
235
267
  custom: "custom";
236
268
  white: "white";
237
269
  brick: "brick";
@@ -242,7 +274,7 @@ export declare const ColumnNode: z.ZodObject<{
242
274
  plaster: "plaster";
243
275
  tile: "tile";
244
276
  marble: "marble";
245
- }>>;
277
+ }>>>;
246
278
  properties: z.ZodOptional<z.ZodObject<{
247
279
  color: z.ZodDefault<z.ZodString>;
248
280
  roughness: z.ZodDefault<z.ZodNumber>;
@@ -262,13 +294,14 @@ export declare const ColumnNode: z.ZodObject<{
262
294
  }, z.core.$strip>>;
263
295
  }, z.core.$strip>>;
264
296
  materialPreset: z.ZodOptional<z.ZodString>;
297
+ slots: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
265
298
  }, z.core.$strip>;
266
299
  export declare const COLUMN_PRESETS: {
267
300
  readonly basicPillar: {
268
301
  readonly label: "Straight Round";
269
302
  readonly style: "plain";
270
303
  readonly crossSection: "round";
271
- readonly height: 2.9;
304
+ readonly height: 2.5;
272
305
  readonly radius: 0.22;
273
306
  readonly width: 0.44;
274
307
  readonly depth: 0.44;
@@ -318,7 +351,7 @@ export declare const COLUMN_PRESETS: {
318
351
  readonly label: "Square Block";
319
352
  readonly style: "faceted";
320
353
  readonly crossSection: "square";
321
- readonly height: 2.9;
354
+ readonly height: 2.5;
322
355
  readonly radius: 0.24;
323
356
  readonly width: 0.48;
324
357
  readonly depth: 0.48;
@@ -368,7 +401,7 @@ export declare const COLUMN_PRESETS: {
368
401
  readonly label: "Tapered Round";
369
402
  readonly style: "plain";
370
403
  readonly crossSection: "round";
371
- readonly height: 3;
404
+ readonly height: 2.5;
372
405
  readonly radius: 0.23;
373
406
  readonly width: 0.46;
374
407
  readonly depth: 0.46;
@@ -418,7 +451,7 @@ export declare const COLUMN_PRESETS: {
418
451
  readonly label: "Soft Bulged";
419
452
  readonly style: "plain";
420
453
  readonly crossSection: "round";
421
- readonly height: 2.9;
454
+ readonly height: 2.5;
422
455
  readonly radius: 0.22;
423
456
  readonly width: 0.44;
424
457
  readonly depth: 0.44;
@@ -468,7 +501,7 @@ export declare const COLUMN_PRESETS: {
468
501
  readonly label: "Hourglass";
469
502
  readonly style: "plain";
470
503
  readonly crossSection: "round";
471
- readonly height: 2.9;
504
+ readonly height: 2.5;
472
505
  readonly radius: 0.22;
473
506
  readonly width: 0.44;
474
507
  readonly depth: 0.44;
@@ -514,6 +547,566 @@ export declare const COLUMN_PRESETS: {
514
547
  readonly dentilCount: 0;
515
548
  readonly beadCount: 0;
516
549
  };
550
+ readonly aFrameSupport: {
551
+ readonly label: "A-Frame Support";
552
+ readonly supportStyle: "a-frame";
553
+ readonly style: "faceted";
554
+ readonly crossSection: "rectangular";
555
+ readonly height: 2.5;
556
+ readonly radius: 0.08;
557
+ readonly width: 0.16;
558
+ readonly depth: 0.16;
559
+ readonly edgeSoftness: 0.012;
560
+ readonly baseHeight: 0;
561
+ readonly capitalHeight: 0;
562
+ readonly shaftProfile: "straight";
563
+ readonly shaftTaper: 0;
564
+ readonly shaftBulge: 0;
565
+ readonly shaftStartScale: 1;
566
+ readonly shaftEndScale: 1;
567
+ readonly shaftSegmentCount: 1;
568
+ readonly shaftTwistStep: 0;
569
+ readonly shaftCornerRadius: 0.012;
570
+ readonly shaftDetail: "none";
571
+ readonly baseStyle: "none";
572
+ readonly baseWidthScale: 1;
573
+ readonly baseDepthScale: 1;
574
+ readonly baseTierCount: 1;
575
+ readonly baseStepSpread: 0.34;
576
+ readonly basePlinthHeightRatio: 0.44;
577
+ readonly baseRoundBandScale: 0.92;
578
+ readonly baseNeckScale: 0.72;
579
+ readonly baseRoundBandCount: 0;
580
+ readonly baseRibCount: 0;
581
+ readonly baseCarvingLevel: 0;
582
+ readonly capitalStyle: "none";
583
+ readonly capitalWidthScale: 1;
584
+ readonly capitalDepthScale: 1;
585
+ readonly capitalTierCount: 1;
586
+ readonly capitalStepSpread: 0.34;
587
+ readonly capitalBandCount: 0;
588
+ readonly capitalCarvingLevel: 0;
589
+ readonly ringCount: 0;
590
+ readonly ringSpread: 0.16;
591
+ readonly fluteCount: 0;
592
+ readonly spiralTwist: 0;
593
+ readonly spiralRibCount: 0;
594
+ readonly panelCount: 0;
595
+ readonly latheRingCount: 0;
596
+ readonly carvingLevel: 0;
597
+ readonly lowerBandEnabled: false;
598
+ readonly dentilCount: 0;
599
+ readonly beadCount: 0;
600
+ readonly braceWidth: 0.16;
601
+ readonly braceDepth: 0.16;
602
+ readonly braceBottomSpread: 1.2;
603
+ readonly braceTopSpread: 0.06;
604
+ readonly bracePlateEnabled: false;
605
+ };
606
+ readonly yFrameSupport: {
607
+ readonly label: "Y Support";
608
+ readonly supportStyle: "y-frame";
609
+ readonly style: "faceted";
610
+ readonly crossSection: "rectangular";
611
+ readonly height: 2.5;
612
+ readonly radius: 0.08;
613
+ readonly width: 0.16;
614
+ readonly depth: 0.16;
615
+ readonly edgeSoftness: 0.012;
616
+ readonly baseHeight: 0;
617
+ readonly capitalHeight: 0;
618
+ readonly shaftProfile: "straight";
619
+ readonly shaftTaper: 0;
620
+ readonly shaftBulge: 0;
621
+ readonly shaftStartScale: 1;
622
+ readonly shaftEndScale: 1;
623
+ readonly shaftSegmentCount: 1;
624
+ readonly shaftTwistStep: 0;
625
+ readonly shaftCornerRadius: 0.012;
626
+ readonly shaftDetail: "none";
627
+ readonly baseStyle: "none";
628
+ readonly baseWidthScale: 1;
629
+ readonly baseDepthScale: 1;
630
+ readonly baseTierCount: 1;
631
+ readonly baseStepSpread: 0.34;
632
+ readonly basePlinthHeightRatio: 0.44;
633
+ readonly baseRoundBandScale: 0.92;
634
+ readonly baseNeckScale: 0.72;
635
+ readonly baseRoundBandCount: 0;
636
+ readonly baseRibCount: 0;
637
+ readonly baseCarvingLevel: 0;
638
+ readonly capitalStyle: "none";
639
+ readonly capitalWidthScale: 1;
640
+ readonly capitalDepthScale: 1;
641
+ readonly capitalTierCount: 1;
642
+ readonly capitalStepSpread: 0.34;
643
+ readonly capitalBandCount: 0;
644
+ readonly capitalCarvingLevel: 0;
645
+ readonly ringCount: 0;
646
+ readonly ringSpread: 0.16;
647
+ readonly fluteCount: 0;
648
+ readonly spiralTwist: 0;
649
+ readonly spiralRibCount: 0;
650
+ readonly panelCount: 0;
651
+ readonly latheRingCount: 0;
652
+ readonly carvingLevel: 0;
653
+ readonly lowerBandEnabled: false;
654
+ readonly dentilCount: 0;
655
+ readonly beadCount: 0;
656
+ readonly braceWidth: 0.16;
657
+ readonly braceDepth: 0.16;
658
+ readonly braceBottomSpread: 0.2;
659
+ readonly braceTopSpread: 1;
660
+ readonly bracePlateEnabled: false;
661
+ };
662
+ readonly vFrameSupport: {
663
+ readonly label: "V Support";
664
+ readonly supportStyle: "v-frame";
665
+ readonly style: "faceted";
666
+ readonly crossSection: "rectangular";
667
+ readonly height: 2.5;
668
+ readonly radius: 0.08;
669
+ readonly width: 0.16;
670
+ readonly depth: 0.16;
671
+ readonly edgeSoftness: 0.012;
672
+ readonly baseHeight: 0;
673
+ readonly capitalHeight: 0;
674
+ readonly shaftProfile: "straight";
675
+ readonly shaftTaper: 0;
676
+ readonly shaftBulge: 0;
677
+ readonly shaftStartScale: 1;
678
+ readonly shaftEndScale: 1;
679
+ readonly shaftSegmentCount: 1;
680
+ readonly shaftTwistStep: 0;
681
+ readonly shaftCornerRadius: 0.012;
682
+ readonly shaftDetail: "none";
683
+ readonly baseStyle: "none";
684
+ readonly baseWidthScale: 1;
685
+ readonly baseDepthScale: 1;
686
+ readonly baseTierCount: 1;
687
+ readonly baseStepSpread: 0.34;
688
+ readonly basePlinthHeightRatio: 0.44;
689
+ readonly baseRoundBandScale: 0.92;
690
+ readonly baseNeckScale: 0.72;
691
+ readonly baseRoundBandCount: 0;
692
+ readonly baseRibCount: 0;
693
+ readonly baseCarvingLevel: 0;
694
+ readonly capitalStyle: "none";
695
+ readonly capitalWidthScale: 1;
696
+ readonly capitalDepthScale: 1;
697
+ readonly capitalTierCount: 1;
698
+ readonly capitalStepSpread: 0.34;
699
+ readonly capitalBandCount: 0;
700
+ readonly capitalCarvingLevel: 0;
701
+ readonly ringCount: 0;
702
+ readonly ringSpread: 0.16;
703
+ readonly fluteCount: 0;
704
+ readonly spiralTwist: 0;
705
+ readonly spiralRibCount: 0;
706
+ readonly panelCount: 0;
707
+ readonly latheRingCount: 0;
708
+ readonly carvingLevel: 0;
709
+ readonly lowerBandEnabled: false;
710
+ readonly dentilCount: 0;
711
+ readonly beadCount: 0;
712
+ readonly braceWidth: 0.16;
713
+ readonly braceDepth: 0.16;
714
+ readonly braceBottomSpread: 0.2;
715
+ readonly braceTopSpread: 1;
716
+ readonly bracePlateEnabled: false;
717
+ };
718
+ readonly xBraceSupport: {
719
+ readonly label: "X Brace";
720
+ readonly supportStyle: "x-brace";
721
+ readonly style: "faceted";
722
+ readonly crossSection: "rectangular";
723
+ readonly height: 2.5;
724
+ readonly radius: 0.07;
725
+ readonly width: 0.14;
726
+ readonly depth: 0.14;
727
+ readonly edgeSoftness: 0.01;
728
+ readonly baseHeight: 0;
729
+ readonly capitalHeight: 0;
730
+ readonly shaftProfile: "straight";
731
+ readonly shaftTaper: 0;
732
+ readonly shaftBulge: 0;
733
+ readonly shaftStartScale: 1;
734
+ readonly shaftEndScale: 1;
735
+ readonly shaftSegmentCount: 1;
736
+ readonly shaftTwistStep: 0;
737
+ readonly shaftCornerRadius: 0.01;
738
+ readonly shaftDetail: "none";
739
+ readonly baseStyle: "none";
740
+ readonly baseWidthScale: 1;
741
+ readonly baseDepthScale: 1;
742
+ readonly baseTierCount: 1;
743
+ readonly baseStepSpread: 0.34;
744
+ readonly basePlinthHeightRatio: 0.44;
745
+ readonly baseRoundBandScale: 0.92;
746
+ readonly baseNeckScale: 0.72;
747
+ readonly baseRoundBandCount: 0;
748
+ readonly baseRibCount: 0;
749
+ readonly baseCarvingLevel: 0;
750
+ readonly capitalStyle: "none";
751
+ readonly capitalWidthScale: 1;
752
+ readonly capitalDepthScale: 1;
753
+ readonly capitalTierCount: 1;
754
+ readonly capitalStepSpread: 0.34;
755
+ readonly capitalBandCount: 0;
756
+ readonly capitalCarvingLevel: 0;
757
+ readonly ringCount: 0;
758
+ readonly ringSpread: 0.16;
759
+ readonly fluteCount: 0;
760
+ readonly spiralTwist: 0;
761
+ readonly spiralRibCount: 0;
762
+ readonly panelCount: 0;
763
+ readonly latheRingCount: 0;
764
+ readonly carvingLevel: 0;
765
+ readonly lowerBandEnabled: false;
766
+ readonly dentilCount: 0;
767
+ readonly beadCount: 0;
768
+ readonly braceWidth: 0.14;
769
+ readonly braceDepth: 0.14;
770
+ readonly braceBottomSpread: 1;
771
+ readonly braceTopSpread: 1;
772
+ readonly bracePlateEnabled: false;
773
+ };
774
+ readonly kBraceSupport: {
775
+ readonly label: "K Brace";
776
+ readonly supportStyle: "k-brace";
777
+ readonly style: "faceted";
778
+ readonly crossSection: "rectangular";
779
+ readonly height: 2.5;
780
+ readonly radius: 0.07;
781
+ readonly width: 0.14;
782
+ readonly depth: 0.14;
783
+ readonly edgeSoftness: 0.01;
784
+ readonly baseHeight: 0;
785
+ readonly capitalHeight: 0;
786
+ readonly shaftProfile: "straight";
787
+ readonly shaftTaper: 0;
788
+ readonly shaftBulge: 0;
789
+ readonly shaftStartScale: 1;
790
+ readonly shaftEndScale: 1;
791
+ readonly shaftSegmentCount: 1;
792
+ readonly shaftTwistStep: 0;
793
+ readonly shaftCornerRadius: 0.01;
794
+ readonly shaftDetail: "none";
795
+ readonly baseStyle: "none";
796
+ readonly baseWidthScale: 1;
797
+ readonly baseDepthScale: 1;
798
+ readonly baseTierCount: 1;
799
+ readonly baseStepSpread: 0.34;
800
+ readonly basePlinthHeightRatio: 0.44;
801
+ readonly baseRoundBandScale: 0.92;
802
+ readonly baseNeckScale: 0.72;
803
+ readonly baseRoundBandCount: 0;
804
+ readonly baseRibCount: 0;
805
+ readonly baseCarvingLevel: 0;
806
+ readonly capitalStyle: "none";
807
+ readonly capitalWidthScale: 1;
808
+ readonly capitalDepthScale: 1;
809
+ readonly capitalTierCount: 1;
810
+ readonly capitalStepSpread: 0.34;
811
+ readonly capitalBandCount: 0;
812
+ readonly capitalCarvingLevel: 0;
813
+ readonly ringCount: 0;
814
+ readonly ringSpread: 0.16;
815
+ readonly fluteCount: 0;
816
+ readonly spiralTwist: 0;
817
+ readonly spiralRibCount: 0;
818
+ readonly panelCount: 0;
819
+ readonly latheRingCount: 0;
820
+ readonly carvingLevel: 0;
821
+ readonly lowerBandEnabled: false;
822
+ readonly dentilCount: 0;
823
+ readonly beadCount: 0;
824
+ readonly braceWidth: 0.14;
825
+ readonly braceDepth: 0.14;
826
+ readonly braceBottomSpread: 1;
827
+ readonly braceTopSpread: 1;
828
+ readonly bracePlateEnabled: false;
829
+ };
830
+ readonly singleStrutSupport: {
831
+ readonly label: "Single Strut";
832
+ readonly supportStyle: "single-strut";
833
+ readonly style: "faceted";
834
+ readonly crossSection: "rectangular";
835
+ readonly height: 2.5;
836
+ readonly radius: 0.07;
837
+ readonly width: 0.14;
838
+ readonly depth: 0.14;
839
+ readonly edgeSoftness: 0.01;
840
+ readonly baseHeight: 0;
841
+ readonly capitalHeight: 0;
842
+ readonly shaftProfile: "straight";
843
+ readonly shaftTaper: 0;
844
+ readonly shaftBulge: 0;
845
+ readonly shaftStartScale: 1;
846
+ readonly shaftEndScale: 1;
847
+ readonly shaftSegmentCount: 1;
848
+ readonly shaftTwistStep: 0;
849
+ readonly shaftCornerRadius: 0.01;
850
+ readonly shaftDetail: "none";
851
+ readonly baseStyle: "none";
852
+ readonly baseWidthScale: 1;
853
+ readonly baseDepthScale: 1;
854
+ readonly baseTierCount: 1;
855
+ readonly baseStepSpread: 0.34;
856
+ readonly basePlinthHeightRatio: 0.44;
857
+ readonly baseRoundBandScale: 0.92;
858
+ readonly baseNeckScale: 0.72;
859
+ readonly baseRoundBandCount: 0;
860
+ readonly baseRibCount: 0;
861
+ readonly baseCarvingLevel: 0;
862
+ readonly capitalStyle: "none";
863
+ readonly capitalWidthScale: 1;
864
+ readonly capitalDepthScale: 1;
865
+ readonly capitalTierCount: 1;
866
+ readonly capitalStepSpread: 0.34;
867
+ readonly capitalBandCount: 0;
868
+ readonly capitalCarvingLevel: 0;
869
+ readonly ringCount: 0;
870
+ readonly ringSpread: 0.16;
871
+ readonly fluteCount: 0;
872
+ readonly spiralTwist: 0;
873
+ readonly spiralRibCount: 0;
874
+ readonly panelCount: 0;
875
+ readonly latheRingCount: 0;
876
+ readonly carvingLevel: 0;
877
+ readonly lowerBandEnabled: false;
878
+ readonly dentilCount: 0;
879
+ readonly beadCount: 0;
880
+ readonly braceWidth: 0.14;
881
+ readonly braceDepth: 0.14;
882
+ readonly braceBottomSpread: 1;
883
+ readonly braceTopSpread: 1;
884
+ readonly bracePlateEnabled: false;
885
+ };
886
+ readonly tripodSupport: {
887
+ readonly label: "Tripod Support";
888
+ readonly supportStyle: "tripod";
889
+ readonly style: "faceted";
890
+ readonly crossSection: "rectangular";
891
+ readonly height: 2.5;
892
+ readonly radius: 0.07;
893
+ readonly width: 0.14;
894
+ readonly depth: 0.14;
895
+ readonly edgeSoftness: 0.01;
896
+ readonly baseHeight: 0;
897
+ readonly capitalHeight: 0;
898
+ readonly shaftProfile: "straight";
899
+ readonly shaftTaper: 0;
900
+ readonly shaftBulge: 0;
901
+ readonly shaftStartScale: 1;
902
+ readonly shaftEndScale: 1;
903
+ readonly shaftSegmentCount: 1;
904
+ readonly shaftTwistStep: 0;
905
+ readonly shaftCornerRadius: 0.01;
906
+ readonly shaftDetail: "none";
907
+ readonly baseStyle: "none";
908
+ readonly baseWidthScale: 1;
909
+ readonly baseDepthScale: 1;
910
+ readonly baseTierCount: 1;
911
+ readonly baseStepSpread: 0.34;
912
+ readonly basePlinthHeightRatio: 0.44;
913
+ readonly baseRoundBandScale: 0.92;
914
+ readonly baseNeckScale: 0.72;
915
+ readonly baseRoundBandCount: 0;
916
+ readonly baseRibCount: 0;
917
+ readonly baseCarvingLevel: 0;
918
+ readonly capitalStyle: "none";
919
+ readonly capitalWidthScale: 1;
920
+ readonly capitalDepthScale: 1;
921
+ readonly capitalTierCount: 1;
922
+ readonly capitalStepSpread: 0.34;
923
+ readonly capitalBandCount: 0;
924
+ readonly capitalCarvingLevel: 0;
925
+ readonly ringCount: 0;
926
+ readonly ringSpread: 0.16;
927
+ readonly fluteCount: 0;
928
+ readonly spiralTwist: 0;
929
+ readonly spiralRibCount: 0;
930
+ readonly panelCount: 0;
931
+ readonly latheRingCount: 0;
932
+ readonly carvingLevel: 0;
933
+ readonly lowerBandEnabled: false;
934
+ readonly dentilCount: 0;
935
+ readonly beadCount: 0;
936
+ readonly braceWidth: 0.14;
937
+ readonly braceDepth: 0.14;
938
+ readonly braceBottomSpread: 1.1;
939
+ readonly braceTopSpread: 1.1;
940
+ readonly bracePlateEnabled: false;
941
+ };
942
+ readonly trestleSupport: {
943
+ readonly label: "Trestle Frame";
944
+ readonly supportStyle: "trestle";
945
+ readonly style: "faceted";
946
+ readonly crossSection: "rectangular";
947
+ readonly height: 2.5;
948
+ readonly radius: 0.07;
949
+ readonly width: 0.14;
950
+ readonly depth: 0.14;
951
+ readonly edgeSoftness: 0.01;
952
+ readonly baseHeight: 0;
953
+ readonly capitalHeight: 0;
954
+ readonly shaftProfile: "straight";
955
+ readonly shaftTaper: 0;
956
+ readonly shaftBulge: 0;
957
+ readonly shaftStartScale: 1;
958
+ readonly shaftEndScale: 1;
959
+ readonly shaftSegmentCount: 1;
960
+ readonly shaftTwistStep: 0;
961
+ readonly shaftCornerRadius: 0.01;
962
+ readonly shaftDetail: "none";
963
+ readonly baseStyle: "none";
964
+ readonly baseWidthScale: 1;
965
+ readonly baseDepthScale: 1;
966
+ readonly baseTierCount: 1;
967
+ readonly baseStepSpread: 0.34;
968
+ readonly basePlinthHeightRatio: 0.44;
969
+ readonly baseRoundBandScale: 0.92;
970
+ readonly baseNeckScale: 0.72;
971
+ readonly baseRoundBandCount: 0;
972
+ readonly baseRibCount: 0;
973
+ readonly baseCarvingLevel: 0;
974
+ readonly capitalStyle: "none";
975
+ readonly capitalWidthScale: 1;
976
+ readonly capitalDepthScale: 1;
977
+ readonly capitalTierCount: 1;
978
+ readonly capitalStepSpread: 0.34;
979
+ readonly capitalBandCount: 0;
980
+ readonly capitalCarvingLevel: 0;
981
+ readonly ringCount: 0;
982
+ readonly ringSpread: 0.16;
983
+ readonly fluteCount: 0;
984
+ readonly spiralTwist: 0;
985
+ readonly spiralRibCount: 0;
986
+ readonly panelCount: 0;
987
+ readonly latheRingCount: 0;
988
+ readonly carvingLevel: 0;
989
+ readonly lowerBandEnabled: false;
990
+ readonly dentilCount: 0;
991
+ readonly beadCount: 0;
992
+ readonly braceWidth: 0.14;
993
+ readonly braceDepth: 0.14;
994
+ readonly braceBottomSpread: 1.2;
995
+ readonly braceTopSpread: 1;
996
+ readonly bracePlateEnabled: false;
997
+ };
998
+ readonly portalFrameSupport: {
999
+ readonly label: "Portal Frame";
1000
+ readonly supportStyle: "portal-frame";
1001
+ readonly style: "faceted";
1002
+ readonly crossSection: "rectangular";
1003
+ readonly height: 2.5;
1004
+ readonly radius: 0.08;
1005
+ readonly width: 0.16;
1006
+ readonly depth: 0.16;
1007
+ readonly edgeSoftness: 0.012;
1008
+ readonly baseHeight: 0;
1009
+ readonly capitalHeight: 0;
1010
+ readonly shaftProfile: "straight";
1011
+ readonly shaftTaper: 0;
1012
+ readonly shaftBulge: 0;
1013
+ readonly shaftStartScale: 1;
1014
+ readonly shaftEndScale: 1;
1015
+ readonly shaftSegmentCount: 1;
1016
+ readonly shaftTwistStep: 0;
1017
+ readonly shaftCornerRadius: 0.012;
1018
+ readonly shaftDetail: "none";
1019
+ readonly baseStyle: "none";
1020
+ readonly baseWidthScale: 1;
1021
+ readonly baseDepthScale: 1;
1022
+ readonly baseTierCount: 1;
1023
+ readonly baseStepSpread: 0.34;
1024
+ readonly basePlinthHeightRatio: 0.44;
1025
+ readonly baseRoundBandScale: 0.92;
1026
+ readonly baseNeckScale: 0.72;
1027
+ readonly baseRoundBandCount: 0;
1028
+ readonly baseRibCount: 0;
1029
+ readonly baseCarvingLevel: 0;
1030
+ readonly capitalStyle: "none";
1031
+ readonly capitalWidthScale: 1;
1032
+ readonly capitalDepthScale: 1;
1033
+ readonly capitalTierCount: 1;
1034
+ readonly capitalStepSpread: 0.34;
1035
+ readonly capitalBandCount: 0;
1036
+ readonly capitalCarvingLevel: 0;
1037
+ readonly ringCount: 0;
1038
+ readonly ringSpread: 0.16;
1039
+ readonly fluteCount: 0;
1040
+ readonly spiralTwist: 0;
1041
+ readonly spiralRibCount: 0;
1042
+ readonly panelCount: 0;
1043
+ readonly latheRingCount: 0;
1044
+ readonly carvingLevel: 0;
1045
+ readonly lowerBandEnabled: false;
1046
+ readonly dentilCount: 0;
1047
+ readonly beadCount: 0;
1048
+ readonly braceWidth: 0.16;
1049
+ readonly braceDepth: 0.16;
1050
+ readonly braceBottomSpread: 1.4;
1051
+ readonly braceTopSpread: 0.2;
1052
+ readonly bracePlateEnabled: false;
1053
+ };
1054
+ readonly boxFrameSupport: {
1055
+ readonly label: "Box Frame";
1056
+ readonly supportStyle: "box-frame";
1057
+ readonly style: "faceted";
1058
+ readonly crossSection: "rectangular";
1059
+ readonly height: 2.5;
1060
+ readonly radius: 0.07;
1061
+ readonly width: 0.14;
1062
+ readonly depth: 0.14;
1063
+ readonly edgeSoftness: 0.01;
1064
+ readonly baseHeight: 0;
1065
+ readonly capitalHeight: 0;
1066
+ readonly shaftProfile: "straight";
1067
+ readonly shaftTaper: 0;
1068
+ readonly shaftBulge: 0;
1069
+ readonly shaftStartScale: 1;
1070
+ readonly shaftEndScale: 1;
1071
+ readonly shaftSegmentCount: 1;
1072
+ readonly shaftTwistStep: 0;
1073
+ readonly shaftCornerRadius: 0.01;
1074
+ readonly shaftDetail: "none";
1075
+ readonly baseStyle: "none";
1076
+ readonly baseWidthScale: 1;
1077
+ readonly baseDepthScale: 1;
1078
+ readonly baseTierCount: 1;
1079
+ readonly baseStepSpread: 0.34;
1080
+ readonly basePlinthHeightRatio: 0.44;
1081
+ readonly baseRoundBandScale: 0.92;
1082
+ readonly baseNeckScale: 0.72;
1083
+ readonly baseRoundBandCount: 0;
1084
+ readonly baseRibCount: 0;
1085
+ readonly baseCarvingLevel: 0;
1086
+ readonly capitalStyle: "none";
1087
+ readonly capitalWidthScale: 1;
1088
+ readonly capitalDepthScale: 1;
1089
+ readonly capitalTierCount: 1;
1090
+ readonly capitalStepSpread: 0.34;
1091
+ readonly capitalBandCount: 0;
1092
+ readonly capitalCarvingLevel: 0;
1093
+ readonly ringCount: 0;
1094
+ readonly ringSpread: 0.16;
1095
+ readonly fluteCount: 0;
1096
+ readonly spiralTwist: 0;
1097
+ readonly spiralRibCount: 0;
1098
+ readonly panelCount: 0;
1099
+ readonly latheRingCount: 0;
1100
+ readonly carvingLevel: 0;
1101
+ readonly lowerBandEnabled: false;
1102
+ readonly dentilCount: 0;
1103
+ readonly beadCount: 0;
1104
+ readonly braceWidth: 0.14;
1105
+ readonly braceDepth: 0.14;
1106
+ readonly braceBottomSpread: 1.4;
1107
+ readonly braceTopSpread: 1;
1108
+ readonly bracePlateEnabled: false;
1109
+ };
517
1110
  };
518
1111
  export type ColumnPresetId = keyof typeof COLUMN_PRESETS;
519
1112
  export type ColumnNode = z.infer<typeof ColumnNode>;
@@ -1 +1 @@
1
- {"version":3,"file":"column.d.ts","sourceRoot":"","sources":["../../../src/schema/nodes/column.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAIvB,eAAO,MAAM,WAAW;;;;;;;EAOtB,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;EAM7B,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;EAAqE,CAAA;AAEpG,eAAO,MAAM,iBAAiB;;;;;;EAAmE,CAAA;AAEjG,eAAO,MAAM,gBAAgB;;;;EAA6C,CAAA;AAE1E,eAAO,MAAM,eAAe;;;;;;;;;EAS1B,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;EAa7B,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;EAA4C,CAAA;AAE5E,eAAO,MAAM,sBAAsB;;;;;EAA8C,CAAA;AAEjF,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAA;AACrD,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AACnE,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AACnE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAA;AACjE,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAA;AAC/D,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAA;AAC7D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AACnE,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAA;AACrE,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAE3E,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAoFrB,CAAA;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2PiE,CAAA;AAE5F,MAAM,MAAM,cAAc,GAAG,MAAM,OAAO,cAAc,CAAA;AAExD,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAA"}
1
+ {"version":3,"file":"column.d.ts","sourceRoot":"","sources":["../../../src/schema/nodes/column.ts"],"names":[],"mappings":"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"}