nodes: restore floorPlaced imports stripped by the formatter

The previous commit's `floorPlaced` capability used `getScaledDimensions`
in `item/definition.ts` and `ColumnNodeType` in `column/definition.ts`,
but the editor's auto-format hook ran between the import edit and the
body edit and removed both as "unused" — breaking `bun dev`.

Re-add the imports.
This commit is contained in:
Wassim SAMAD
2026-05-19 19:49:09 -04:00
parent 9a481f2511
commit e3f2343456
2 changed files with 10 additions and 2 deletions
+5 -1
View File
@@ -1,4 +1,8 @@
import type { ItemNode as ItemNodeType, NodeDefinition } from '@pascal-app/core'
import {
getScaledDimensions,
type ItemNode as ItemNodeType,
type NodeDefinition,
} from '@pascal-app/core'
import { buildItemFloorplan } from './floorplan'
import { itemFloorplanMoveTarget } from './floorplan-move'
import { itemParametrics } from './parametrics'