@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.
- package/dist/events/bus.d.ts +67 -13
- package/dist/events/bus.d.ts.map +1 -1
- package/dist/hooks/scene-registry/item-clip-registry.d.ts +18 -0
- package/dist/hooks/scene-registry/item-clip-registry.d.ts.map +1 -0
- package/dist/hooks/scene-registry/item-clip-registry.js +10 -0
- package/dist/hooks/scene-registry/scene-registry.d.ts +14 -23
- package/dist/hooks/scene-registry/scene-registry.d.ts.map +1 -1
- package/dist/hooks/scene-registry/scene-registry.js +59 -26
- package/dist/hooks/scene-registry/scene-registry.test.d.ts +2 -0
- package/dist/hooks/scene-registry/scene-registry.test.d.ts.map +1 -0
- package/dist/hooks/scene-registry/scene-registry.test.js +26 -0
- package/dist/hooks/spatial-grid/floor-placed-elevation.d.ts +14 -0
- package/dist/hooks/spatial-grid/floor-placed-elevation.d.ts.map +1 -0
- package/dist/hooks/spatial-grid/floor-placed-elevation.js +51 -0
- package/dist/hooks/spatial-grid/floor-placed-elevation.test.d.ts +2 -0
- package/dist/hooks/spatial-grid/floor-placed-elevation.test.d.ts.map +1 -0
- package/dist/hooks/spatial-grid/floor-placed-elevation.test.js +366 -0
- package/dist/hooks/spatial-grid/spatial-grid-manager.d.ts +79 -11
- package/dist/hooks/spatial-grid/spatial-grid-manager.d.ts.map +1 -1
- package/dist/hooks/spatial-grid/spatial-grid-manager.js +508 -141
- package/dist/hooks/spatial-grid/spatial-grid-sync.d.ts +28 -1
- package/dist/hooks/spatial-grid/spatial-grid-sync.d.ts.map +1 -1
- package/dist/hooks/spatial-grid/spatial-grid-sync.js +109 -18
- package/dist/hooks/spatial-grid/wall-slab-overlap.test.d.ts +2 -0
- package/dist/hooks/spatial-grid/wall-slab-overlap.test.d.ts.map +1 -0
- package/dist/hooks/spatial-grid/wall-slab-overlap.test.js +363 -0
- package/dist/index.d.ts +36 -8
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +33 -6
- package/dist/lib/level-name.d.ts +4 -0
- package/dist/lib/level-name.d.ts.map +1 -0
- package/dist/lib/level-name.js +10 -0
- package/dist/lib/measurement-geometry.d.ts +19 -0
- package/dist/lib/measurement-geometry.d.ts.map +1 -0
- package/dist/lib/measurement-geometry.js +232 -0
- package/dist/lib/measurement-geometry.test.d.ts +2 -0
- package/dist/lib/measurement-geometry.test.d.ts.map +1 -0
- package/dist/lib/measurement-geometry.test.js +102 -0
- package/dist/lib/polygon-geometry.d.ts +0 -1
- package/dist/lib/polygon-geometry.d.ts.map +1 -1
- package/dist/lib/polygon-geometry.js +0 -18
- package/dist/lib/polygon-relations.d.ts +10 -0
- package/dist/lib/polygon-relations.d.ts.map +1 -0
- package/dist/lib/polygon-relations.js +73 -0
- package/dist/lib/selection-proxy.d.ts +4 -0
- package/dist/lib/selection-proxy.d.ts.map +1 -0
- package/dist/lib/selection-proxy.js +12 -0
- package/dist/lib/slab-polygon.d.ts +31 -2
- package/dist/lib/slab-polygon.d.ts.map +1 -1
- package/dist/lib/slab-polygon.js +525 -31
- package/dist/lib/slab-polygon.test.d.ts +2 -0
- package/dist/lib/slab-polygon.test.d.ts.map +1 -0
- package/dist/lib/slab-polygon.test.js +635 -0
- package/dist/lib/slots.d.ts +14 -0
- package/dist/lib/slots.d.ts.map +1 -0
- package/dist/lib/slots.js +26 -0
- package/dist/lib/space-detection-pause.test.d.ts +2 -0
- package/dist/lib/space-detection-pause.test.d.ts.map +1 -0
- package/dist/lib/space-detection-pause.test.js +42 -0
- package/dist/lib/space-detection.d.ts +54 -2
- package/dist/lib/space-detection.d.ts.map +1 -1
- package/dist/lib/space-detection.js +599 -124
- package/dist/lib/space-detection.test.d.ts +2 -0
- package/dist/lib/space-detection.test.d.ts.map +1 -0
- package/dist/lib/space-detection.test.js +376 -0
- package/dist/lib/wall-distance.d.ts +60 -0
- package/dist/lib/wall-distance.d.ts.map +1 -0
- package/dist/lib/wall-distance.js +85 -0
- package/dist/lib/zone-quantities.d.ts +21 -0
- package/dist/lib/zone-quantities.d.ts.map +1 -0
- package/dist/lib/zone-quantities.js +183 -0
- package/dist/lib/zone-quantities.test.d.ts +2 -0
- package/dist/lib/zone-quantities.test.d.ts.map +1 -0
- package/dist/lib/zone-quantities.test.js +82 -0
- package/dist/material-library.d.ts +20 -1
- package/dist/material-library.d.ts.map +1 -1
- package/dist/material-library.js +3737 -200
- package/dist/registry/__bench__/relations-resolver.bench.d.ts +15 -0
- package/dist/registry/__bench__/relations-resolver.bench.d.ts.map +1 -0
- package/dist/registry/__bench__/relations-resolver.bench.js +170 -0
- package/dist/registry/handles.d.ts +394 -0
- package/dist/registry/handles.d.ts.map +1 -0
- package/dist/registry/handles.js +24 -0
- package/dist/registry/index.d.ts +7 -0
- package/dist/registry/index.d.ts.map +1 -0
- package/dist/registry/index.js +4 -0
- package/dist/registry/registry.d.ts +136 -0
- package/dist/registry/registry.d.ts.map +1 -0
- package/dist/registry/registry.js +282 -0
- package/dist/registry/registry.test.d.ts +2 -0
- package/dist/registry/registry.test.d.ts.map +1 -0
- package/dist/registry/registry.test.js +196 -0
- package/dist/registry/relations-resolver.d.ts +42 -0
- package/dist/registry/relations-resolver.d.ts.map +1 -0
- package/dist/registry/relations-resolver.js +77 -0
- package/dist/registry/relations-resolver.test.d.ts +2 -0
- package/dist/registry/relations-resolver.test.d.ts.map +1 -0
- package/dist/registry/relations-resolver.test.js +183 -0
- package/dist/registry/scene-api.d.ts +44 -0
- package/dist/registry/scene-api.d.ts.map +1 -0
- package/dist/registry/scene-api.js +111 -0
- package/dist/registry/scene-api.test.d.ts +2 -0
- package/dist/registry/scene-api.test.d.ts.map +1 -0
- package/dist/registry/scene-api.test.js +183 -0
- package/dist/registry/subtree.d.ts +67 -0
- package/dist/registry/subtree.d.ts.map +1 -0
- package/dist/registry/subtree.js +123 -0
- package/dist/registry/subtree.test.d.ts +2 -0
- package/dist/registry/subtree.test.d.ts.map +1 -0
- package/dist/registry/subtree.test.js +163 -0
- package/dist/registry/types.d.ts +2099 -0
- package/dist/registry/types.d.ts.map +1 -0
- package/dist/registry/types.js +1 -0
- package/dist/schema/index.d.ts +35 -4
- package/dist/schema/index.d.ts.map +1 -1
- package/dist/schema/index.js +32 -4
- package/dist/schema/material.d.ts +13 -2
- package/dist/schema/material.d.ts.map +1 -1
- package/dist/schema/material.js +17 -5
- package/dist/schema/material.test.d.ts +2 -0
- package/dist/schema/material.test.d.ts.map +1 -0
- package/dist/schema/material.test.js +43 -0
- package/dist/schema/nodes/box-vent.d.ts +74 -0
- package/dist/schema/nodes/box-vent.d.ts.map +1 -0
- package/dist/schema/nodes/box-vent.js +63 -0
- package/dist/schema/nodes/building.d.ts +1 -1
- package/dist/schema/nodes/building.d.ts.map +1 -1
- package/dist/schema/nodes/building.js +3 -2
- package/dist/schema/nodes/cabinet.d.ts +534 -0
- package/dist/schema/nodes/cabinet.d.ts.map +1 -0
- package/dist/schema/nodes/cabinet.js +137 -0
- package/dist/schema/nodes/ceiling.d.ts +5 -2
- package/dist/schema/nodes/ceiling.d.ts.map +1 -1
- package/dist/schema/nodes/ceiling.js +5 -1
- package/dist/schema/nodes/chimney.d.ts +158 -0
- package/dist/schema/nodes/chimney.d.ts.map +1 -0
- package/dist/schema/nodes/chimney.js +67 -0
- package/dist/schema/nodes/column.d.ts +600 -7
- package/dist/schema/nodes/column.d.ts.map +1 -1
- package/dist/schema/nodes/column.js +589 -6
- package/dist/schema/nodes/cupola.d.ts +66 -0
- package/dist/schema/nodes/cupola.d.ts.map +1 -0
- package/dist/schema/nodes/cupola.js +28 -0
- package/dist/schema/nodes/door.d.ts +13 -5
- package/dist/schema/nodes/door.d.ts.map +1 -1
- package/dist/schema/nodes/door.js +12 -0
- package/dist/schema/nodes/dormer.d.ts +228 -0
- package/dist/schema/nodes/dormer.d.ts.map +1 -0
- package/dist/schema/nodes/dormer.js +119 -0
- package/dist/schema/nodes/downspout.d.ts +75 -0
- package/dist/schema/nodes/downspout.d.ts.map +1 -0
- package/dist/schema/nodes/downspout.js +63 -0
- package/dist/schema/nodes/duct-fitting.d.ts +91 -0
- package/dist/schema/nodes/duct-fitting.d.ts.map +1 -0
- package/dist/schema/nodes/duct-fitting.js +92 -0
- package/dist/schema/nodes/duct-segment.d.ts +61 -0
- package/dist/schema/nodes/duct-segment.d.ts.map +1 -0
- package/dist/schema/nodes/duct-segment.js +73 -0
- package/dist/schema/nodes/duct-terminal.d.ts +57 -0
- package/dist/schema/nodes/duct-terminal.d.ts.map +1 -0
- package/dist/schema/nodes/duct-terminal.js +51 -0
- package/dist/schema/nodes/elevator.d.ts +106 -0
- package/dist/schema/nodes/elevator.d.ts.map +1 -0
- package/dist/schema/nodes/elevator.js +57 -0
- package/dist/schema/nodes/eyebrow-vent.d.ts +68 -0
- package/dist/schema/nodes/eyebrow-vent.d.ts.map +1 -0
- package/dist/schema/nodes/eyebrow-vent.js +40 -0
- package/dist/schema/nodes/fence.d.ts +19 -2
- package/dist/schema/nodes/fence.d.ts.map +1 -1
- package/dist/schema/nodes/fence.js +27 -2
- package/dist/schema/nodes/gutter.d.ts +84 -0
- package/dist/schema/nodes/gutter.d.ts.map +1 -0
- package/dist/schema/nodes/gutter.js +76 -0
- package/dist/schema/nodes/hvac-equipment.d.ts +63 -0
- package/dist/schema/nodes/hvac-equipment.d.ts.map +1 -0
- package/dist/schema/nodes/hvac-equipment.js +55 -0
- package/dist/schema/nodes/item.d.ts +12 -0
- package/dist/schema/nodes/item.d.ts.map +1 -1
- package/dist/schema/nodes/item.js +20 -0
- package/dist/schema/nodes/level.d.ts +1 -1
- package/dist/schema/nodes/level.d.ts.map +1 -1
- package/dist/schema/nodes/level.js +4 -0
- package/dist/schema/nodes/lineset.d.ts +42 -0
- package/dist/schema/nodes/lineset.d.ts.map +1 -0
- package/dist/schema/nodes/lineset.js +38 -0
- package/dist/schema/nodes/liquid-line.d.ts +34 -0
- package/dist/schema/nodes/liquid-line.d.ts.map +1 -0
- package/dist/schema/nodes/liquid-line.js +24 -0
- package/dist/schema/nodes/measurement.d.ts +306 -0
- package/dist/schema/nodes/measurement.d.ts.map +1 -0
- package/dist/schema/nodes/measurement.js +87 -0
- package/dist/schema/nodes/measurement.test.d.ts +2 -0
- package/dist/schema/nodes/measurement.test.d.ts.map +1 -0
- package/dist/schema/nodes/measurement.test.js +139 -0
- package/dist/schema/nodes/pipe-fitting.d.ts +56 -0
- package/dist/schema/nodes/pipe-fitting.d.ts.map +1 -0
- package/dist/schema/nodes/pipe-fitting.js +45 -0
- package/dist/schema/nodes/pipe-segment.d.ts +48 -0
- package/dist/schema/nodes/pipe-segment.d.ts.map +1 -0
- package/dist/schema/nodes/pipe-segment.js +36 -0
- package/dist/schema/nodes/pipe-trap.d.ts +43 -0
- package/dist/schema/nodes/pipe-trap.d.ts.map +1 -0
- package/dist/schema/nodes/pipe-trap.js +36 -0
- package/dist/schema/nodes/ridge-vent-defaults.test.d.ts +2 -0
- package/dist/schema/nodes/ridge-vent-defaults.test.d.ts.map +1 -0
- package/dist/schema/nodes/ridge-vent-defaults.test.js +205 -0
- package/dist/schema/nodes/ridge-vent.d.ts +82 -0
- package/dist/schema/nodes/ridge-vent.d.ts.map +1 -0
- package/dist/schema/nodes/ridge-vent.js +248 -0
- package/dist/schema/nodes/roof-segment-shape.d.ts +90 -0
- package/dist/schema/nodes/roof-segment-shape.d.ts.map +1 -0
- package/dist/schema/nodes/roof-segment-shape.js +318 -0
- package/dist/schema/nodes/roof-segment-shape.test.d.ts +2 -0
- package/dist/schema/nodes/roof-segment-shape.test.d.ts.map +1 -0
- package/dist/schema/nodes/roof-segment-shape.test.js +175 -0
- package/dist/schema/nodes/roof-segment-surface.test.d.ts +2 -0
- package/dist/schema/nodes/roof-segment-surface.test.d.ts.map +1 -0
- package/dist/schema/nodes/roof-segment-surface.test.js +48 -0
- package/dist/schema/nodes/roof-segment-trim.test.d.ts +2 -0
- package/dist/schema/nodes/roof-segment-trim.test.d.ts.map +1 -0
- package/dist/schema/nodes/roof-segment-trim.test.js +107 -0
- package/dist/schema/nodes/roof-segment-walls.d.ts +101 -0
- package/dist/schema/nodes/roof-segment-walls.d.ts.map +1 -0
- package/dist/schema/nodes/roof-segment-walls.js +330 -0
- package/dist/schema/nodes/roof-segment-walls.test.d.ts +2 -0
- package/dist/schema/nodes/roof-segment-walls.test.d.ts.map +1 -0
- package/dist/schema/nodes/roof-segment-walls.test.js +92 -0
- package/dist/schema/nodes/roof-segment.d.ts +273 -3
- package/dist/schema/nodes/roof-segment.d.ts.map +1 -1
- package/dist/schema/nodes/roof-segment.js +539 -3
- package/dist/schema/nodes/roof.d.ts +8 -8
- package/dist/schema/nodes/roof.d.ts.map +1 -1
- package/dist/schema/nodes/roof.js +4 -16
- package/dist/schema/nodes/shelf.d.ts +106 -0
- package/dist/schema/nodes/shelf.d.ts.map +1 -0
- package/dist/schema/nodes/shelf.js +90 -0
- package/dist/schema/nodes/site.d.ts +1 -122
- package/dist/schema/nodes/site.d.ts.map +1 -1
- package/dist/schema/nodes/site.js +2 -6
- package/dist/schema/nodes/skylight.d.ts +279 -0
- package/dist/schema/nodes/skylight.d.ts.map +1 -0
- package/dist/schema/nodes/skylight.js +152 -0
- package/dist/schema/nodes/slab.d.ts +5 -2
- package/dist/schema/nodes/slab.d.ts.map +1 -1
- package/dist/schema/nodes/slab.js +5 -1
- package/dist/schema/nodes/solar-panel.d.ts +117 -0
- package/dist/schema/nodes/solar-panel.d.ts.map +1 -0
- package/dist/schema/nodes/solar-panel.js +47 -0
- package/dist/schema/nodes/stair-segment.d.ts +4 -4
- package/dist/schema/nodes/stair.d.ts +13 -12
- package/dist/schema/nodes/stair.d.ts.map +1 -1
- package/dist/schema/nodes/stair.js +3 -0
- package/dist/schema/nodes/surface-hole-metadata.d.ts +2 -0
- package/dist/schema/nodes/surface-hole-metadata.d.ts.map +1 -1
- package/dist/schema/nodes/surface-hole-metadata.js +3 -1
- package/dist/schema/nodes/turbine-vent.d.ts +68 -0
- package/dist/schema/nodes/turbine-vent.d.ts.map +1 -0
- package/dist/schema/nodes/turbine-vent.js +41 -0
- package/dist/schema/nodes/wall.d.ts +245 -6
- package/dist/schema/nodes/wall.d.ts.map +1 -1
- package/dist/schema/nodes/wall.js +257 -0
- package/dist/schema/nodes/wall.test.d.ts +2 -0
- package/dist/schema/nodes/wall.test.d.ts.map +1 -0
- package/dist/schema/nodes/wall.test.js +208 -0
- package/dist/schema/nodes/window.d.ts +11 -3
- package/dist/schema/nodes/window.d.ts.map +1 -1
- package/dist/schema/nodes/window.js +12 -0
- package/dist/schema/nodes/zone.d.ts +2 -0
- package/dist/schema/nodes/zone.d.ts.map +1 -1
- package/dist/schema/nodes/zone.js +6 -0
- package/dist/schema/scene-material.d.ts +41 -0
- package/dist/schema/scene-material.d.ts.map +1 -0
- package/dist/schema/scene-material.js +9 -0
- package/dist/schema/types.d.ts +2850 -655
- package/dist/schema/types.d.ts.map +1 -1
- package/dist/schema/types.js +49 -0
- package/dist/services/alignment-anchors.d.ts +100 -0
- package/dist/services/alignment-anchors.d.ts.map +1 -0
- package/dist/services/alignment-anchors.js +312 -0
- package/dist/services/alignment-anchors.test.d.ts +2 -0
- package/dist/services/alignment-anchors.test.d.ts.map +1 -0
- package/dist/services/alignment-anchors.test.js +383 -0
- package/dist/services/alignment.d.ts +131 -0
- package/dist/services/alignment.d.ts.map +1 -0
- package/dist/services/alignment.js +171 -0
- package/dist/services/alignment.test.d.ts +2 -0
- package/dist/services/alignment.test.d.ts.map +1 -0
- package/dist/services/alignment.test.js +92 -0
- package/dist/services/drag-session.d.ts +47 -0
- package/dist/services/drag-session.d.ts.map +1 -0
- package/dist/services/drag-session.js +100 -0
- package/dist/services/drag-session.test.d.ts +2 -0
- package/dist/services/drag-session.test.d.ts.map +1 -0
- package/dist/services/drag-session.test.js +219 -0
- package/dist/services/hosting.d.ts +88 -0
- package/dist/services/hosting.d.ts.map +1 -0
- package/dist/services/hosting.js +131 -0
- package/dist/services/hosting.test.d.ts +2 -0
- package/dist/services/hosting.test.d.ts.map +1 -0
- package/dist/services/hosting.test.js +230 -0
- package/dist/services/index.d.ts +13 -0
- package/dist/services/index.d.ts.map +1 -0
- package/dist/services/index.js +12 -0
- package/dist/services/level-height.d.ts +28 -0
- package/dist/services/level-height.d.ts.map +1 -0
- package/dist/services/level-height.js +62 -0
- package/dist/services/movement.d.ts +48 -0
- package/dist/services/movement.d.ts.map +1 -0
- package/dist/services/movement.js +65 -0
- package/dist/services/movement.test.d.ts +2 -0
- package/dist/services/movement.test.d.ts.map +1 -0
- package/dist/services/movement.test.js +133 -0
- package/dist/services/opening-guides.d.ts +141 -0
- package/dist/services/opening-guides.d.ts.map +1 -0
- package/dist/services/opening-guides.js +267 -0
- package/dist/services/opening-guides.test.d.ts +2 -0
- package/dist/services/opening-guides.test.d.ts.map +1 -0
- package/dist/services/opening-guides.test.js +208 -0
- package/dist/services/port-connectivity.d.ts +115 -0
- package/dist/services/port-connectivity.d.ts.map +1 -0
- package/dist/services/port-connectivity.js +300 -0
- package/dist/services/port-connectivity.test.d.ts +2 -0
- package/dist/services/port-connectivity.test.d.ts.map +1 -0
- package/dist/services/port-connectivity.test.js +297 -0
- package/dist/services/riser-diagram.d.ts +40 -0
- package/dist/services/riser-diagram.d.ts.map +1 -0
- package/dist/services/riser-diagram.js +110 -0
- package/dist/services/riser-diagram.test.d.ts +2 -0
- package/dist/services/riser-diagram.test.d.ts.map +1 -0
- package/dist/services/riser-diagram.test.js +66 -0
- package/dist/services/single-undo-dance.test.d.ts +2 -0
- package/dist/services/single-undo-dance.test.d.ts.map +1 -0
- package/dist/services/single-undo-dance.test.js +210 -0
- package/dist/services/snap.d.ts +80 -0
- package/dist/services/snap.d.ts.map +1 -0
- package/dist/services/snap.js +140 -0
- package/dist/services/snap.test.d.ts +2 -0
- package/dist/services/snap.test.d.ts.map +1 -0
- package/dist/services/snap.test.js +137 -0
- package/dist/services/system-graph.d.ts +30 -0
- package/dist/services/system-graph.d.ts.map +1 -0
- package/dist/services/system-graph.js +164 -0
- package/dist/services/system-graph.test.d.ts +2 -0
- package/dist/services/system-graph.test.d.ts.map +1 -0
- package/dist/services/system-graph.test.js +138 -0
- package/dist/services/validate-dwv.d.ts +32 -0
- package/dist/services/validate-dwv.d.ts.map +1 -0
- package/dist/services/validate-dwv.js +118 -0
- package/dist/services/validate-dwv.test.d.ts +2 -0
- package/dist/services/validate-dwv.test.d.ts.map +1 -0
- package/dist/services/validate-dwv.test.js +109 -0
- package/dist/solar-panel-presets.d.ts +17 -0
- package/dist/solar-panel-presets.d.ts.map +1 -0
- package/dist/solar-panel-presets.js +43 -0
- package/dist/store/actions/node-actions.d.ts +14 -2
- package/dist/store/actions/node-actions.d.ts.map +1 -1
- package/dist/store/actions/node-actions.js +585 -15
- package/dist/store/actions/node-mutation-sanitize.test.d.ts +2 -0
- package/dist/store/actions/node-mutation-sanitize.test.d.ts.map +1 -0
- package/dist/store/actions/node-mutation-sanitize.test.js +147 -0
- package/dist/store/actions/reparent.test.d.ts +2 -0
- package/dist/store/actions/reparent.test.d.ts.map +1 -0
- package/dist/store/actions/reparent.test.js +212 -0
- package/dist/store/actions/ridge-vent-update.test.d.ts +2 -0
- package/dist/store/actions/ridge-vent-update.test.d.ts.map +1 -0
- package/dist/store/actions/ridge-vent-update.test.js +264 -0
- package/dist/store/history-control.d.ts +11 -0
- package/dist/store/history-control.d.ts.map +1 -1
- package/dist/store/history-control.js +33 -0
- package/dist/store/use-interactive.d.ts +39 -0
- package/dist/store/use-interactive.d.ts.map +1 -1
- package/dist/store/use-interactive.js +75 -0
- package/dist/store/use-live-node-overrides.d.ts +22 -0
- package/dist/store/use-live-node-overrides.d.ts.map +1 -0
- package/dist/store/use-live-node-overrides.js +59 -0
- package/dist/store/use-scene-dirty-tracking.test.d.ts +2 -0
- package/dist/store/use-scene-dirty-tracking.test.d.ts.map +1 -0
- package/dist/store/use-scene-dirty-tracking.test.js +68 -0
- package/dist/store/use-scene-elevator-migration.test.d.ts +2 -0
- package/dist/store/use-scene-elevator-migration.test.d.ts.map +1 -0
- package/dist/store/use-scene-elevator-migration.test.js +109 -0
- package/dist/store/use-scene-measurement-roundtrip.test.d.ts +2 -0
- package/dist/store/use-scene-measurement-roundtrip.test.d.ts.map +1 -0
- package/dist/store/use-scene-measurement-roundtrip.test.js +97 -0
- package/dist/store/use-scene-plugins.test.d.ts +2 -0
- package/dist/store/use-scene-plugins.test.d.ts.map +1 -0
- package/dist/store/use-scene-plugins.test.js +51 -0
- package/dist/store/use-scene-wall-slot-migration.test.d.ts +2 -0
- package/dist/store/use-scene-wall-slot-migration.test.d.ts.map +1 -0
- package/dist/store/use-scene-wall-slot-migration.test.js +210 -0
- package/dist/store/use-scene-window-migration.test.d.ts +2 -0
- package/dist/store/use-scene-window-migration.test.d.ts.map +1 -0
- package/dist/store/use-scene-window-migration.test.js +85 -0
- package/dist/store/use-scene.d.ts +28 -2
- package/dist/store/use-scene.d.ts.map +1 -1
- package/dist/store/use-scene.js +546 -49
- package/dist/systems/elevator/elevator-dispatch.d.ts +12 -0
- package/dist/systems/elevator/elevator-dispatch.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-dispatch.js +57 -0
- package/dist/systems/elevator/elevator-geometry.d.ts +15 -0
- package/dist/systems/elevator/elevator-geometry.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-geometry.js +50 -0
- package/dist/systems/elevator/elevator-opening-sync.d.ts +6 -0
- package/dist/systems/elevator/elevator-opening-sync.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-opening-sync.js +218 -0
- package/dist/systems/elevator/elevator-opening-sync.test.d.ts +2 -0
- package/dist/systems/elevator/elevator-opening-sync.test.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-opening-sync.test.js +146 -0
- package/dist/systems/elevator/elevator-opening-system.d.ts +2 -0
- package/dist/systems/elevator/elevator-opening-system.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-opening-system.js +48 -0
- package/dist/systems/elevator/elevator-runtime-system.d.ts +2 -0
- package/dist/systems/elevator/elevator-runtime-system.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-runtime-system.js +8 -0
- package/dist/systems/elevator/elevator-runtime.d.ts +18 -0
- package/dist/systems/elevator/elevator-runtime.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-runtime.js +225 -0
- package/dist/systems/elevator/elevator-runtime.test.d.ts +2 -0
- package/dist/systems/elevator/elevator-runtime.test.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-runtime.test.js +64 -0
- package/dist/systems/elevator/elevator-service.d.ts +19 -0
- package/dist/systems/elevator/elevator-service.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-service.js +111 -0
- package/dist/systems/fence/fence-centerline.d.ts +12 -0
- package/dist/systems/fence/fence-centerline.d.ts.map +1 -0
- package/dist/systems/fence/fence-centerline.js +37 -0
- package/dist/systems/fence/fence-spline.d.ts +39 -0
- package/dist/systems/fence/fence-spline.d.ts.map +1 -0
- package/dist/systems/fence/fence-spline.js +196 -0
- package/dist/systems/fence/fence-spline.test.d.ts +2 -0
- package/dist/systems/fence/fence-spline.test.d.ts.map +1 -0
- package/dist/systems/fence/fence-spline.test.js +136 -0
- package/dist/systems/stair/stair-footprint.d.ts +44 -0
- package/dist/systems/stair/stair-footprint.d.ts.map +1 -0
- package/dist/systems/stair/stair-footprint.js +178 -0
- package/dist/systems/stair/stair-opening-preview.d.ts +2447 -0
- package/dist/systems/stair/stair-opening-preview.d.ts.map +1 -0
- package/dist/systems/stair/stair-opening-preview.js +93 -0
- package/dist/systems/stair/stair-opening-preview.test.d.ts +2 -0
- package/dist/systems/stair/stair-opening-preview.test.d.ts.map +1 -0
- package/dist/systems/stair/stair-opening-preview.test.js +80 -0
- package/dist/systems/stair/stair-opening-sync.d.ts.map +1 -1
- package/dist/systems/stair/stair-opening-sync.js +155 -147
- package/dist/systems/stair/stair-opening-sync.test.js +424 -2
- package/dist/systems/stair/stair-opening-system.d.ts +2 -0
- package/dist/systems/stair/stair-opening-system.d.ts.map +1 -0
- package/dist/systems/stair/stair-opening-system.js +104 -0
- package/dist/systems/wall/wall-mitering.d.ts.map +1 -1
- package/dist/systems/wall/wall-mitering.js +38 -2
- package/dist/systems/wall/wall-mitering.test.d.ts +2 -0
- package/dist/systems/wall/wall-mitering.test.d.ts.map +1 -0
- package/dist/systems/wall/wall-mitering.test.js +63 -0
- package/dist/systems/wall/wall-move.d.ts +48 -0
- package/dist/systems/wall/wall-move.d.ts.map +1 -0
- package/dist/systems/wall/wall-move.js +193 -0
- package/dist/utils/clone-scene-graph.d.ts +7 -4
- package/dist/utils/clone-scene-graph.d.ts.map +1 -1
- package/dist/utils/clone-scene-graph.js +29 -7
- package/dist/utils/clone-scene-graph.test.d.ts +2 -0
- package/dist/utils/clone-scene-graph.test.d.ts.map +1 -0
- package/dist/utils/clone-scene-graph.test.js +62 -0
- package/dist/utils/heal-scene-graph.d.ts +18 -0
- package/dist/utils/heal-scene-graph.d.ts.map +1 -0
- package/dist/utils/heal-scene-graph.js +90 -0
- package/dist/utils/heal-scene-graph.test.d.ts +2 -0
- package/dist/utils/heal-scene-graph.test.d.ts.map +1 -0
- package/dist/utils/heal-scene-graph.test.js +88 -0
- package/dist/validation/validate-build-json.d.ts +44 -0
- package/dist/validation/validate-build-json.d.ts.map +1 -0
- package/dist/validation/validate-build-json.js +256 -0
- 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.
|
|
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.
|
|
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:
|
|
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.
|
|
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.
|
|
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;
|
|
1
|
+
{"version":3,"file":"column.d.ts","sourceRoot":"","sources":["../../../src/schema/nodes/column.ts"],"names":[],"mappings":"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"}
|