* sync: port 2D editing features from monorepo (v0.3.0) ## New Features ### Floorplan Panel (7.5K LOC) - Full 2D editing interface with wall drawing, measurement, and unit display - Interactive floorplan view with pan/zoom, grid snapping - Wall thickness visualization, door/window placement - Zone and slab polygon editing - Guide image overlay support - Metric/imperial unit toggle ### Command Palette Overhaul - Complete rewrite with new command registry system - Keyboard shortcuts UI with ShortcutToken component - Editor-specific commands (floorplan, measurements, camera focus) - Improved search and action organization ### Wall Measurements - Real-time wall length labels in 3D view - Metric/imperial conversion - Wall measurement UI component ### Enhanced Tools - Wall drafting utilities (grid snapping, validation) - Node action menu for quick operations - Improved polygon editing for zones/slabs/sites - Roof segment panel for granular roof control ## Package Changes ### @pascal-app/core@0.3.0 - New wall-footprint.ts: 2D wall footprint calculation - Wall mitering exports for floorplan view - camera-controls:focus event - Space detection undo pause/resume - Mark sibling nodes dirty on deletion (miter recalc) ### @pascal-app/viewer@0.3.0 - ErrorBoundary component for robust item rendering - Broken item fallback UI - Wall renderer: mark dirty on mount - Ground occluder: only lowest level punches through - Unit state (metric/imperial) in viewer store ### @pascal-app/editor@0.1.0 - 48 file changes (16 new, 32 modified) - New stores: useCommandRegistry, usePaletteViewRegistry - Tree node drag-and-drop system - Level selection utilities - Enhanced scene graph operations ## Apps/Editor - GeistPixelSquare font for pixel-perfect UI - Blueprint icon asset - Updated layout and globals for font support ## Security - Zero AI imports or internal package refs - All monorepo-specific code excluded - Clean audit: no API keys or secrets ## Testing - Security audit passed ✅ - All AI/internal code excluded ✅ - Version bumps applied ✅ 79 files modified, 16 files added ~2600 insertions, ~1400 deletions * fix: lint cleanup — suppress intentional dep warnings, fix missing dep, remove stale ignores - Add biome-ignore for 3 intentional useEffect reset patterns (levelId, selectedGuide, selectedId) - Fix actual missing dependency: currentBuildingId in handleSiteEditShortcutSelect callback - Remove 3 stale biome-ignore comments in r3f.d.ts (rule not active) Build and lint pass clean. * fix: type errors — polygon area guards, selection cast, readonly keywords, door guard - ceiling-panel, slab-panel, ceiling-tree-node, slab-tree-node, zone-tree-node: guard polygon[i]/polygon[j] array access before arithmetic (TS2532) - scene.ts: introduce toViewerSelection() helper to cast persisted string IDs to branded template literal types expected by useViewer.setSelection (TS2345) - door-panel: guard early return when node is undefined in setSegmentHeightRatio (TS18048) - editor-commands: remove 'as const' from inline command object, keywords is mutable string[] (TS2322) All type checks pass. Build and lint clean. --------- Co-authored-by: Anton Pascal <anton-pascal@users.noreply.github.com>
369 lines
8.4 KiB
CSS
369 lines
8.4 KiB
CSS
@import "tailwindcss";
|
|
@import "tw-animate-css";
|
|
@source "../../../packages/editor/src";
|
|
|
|
@custom-variant dark (&:is(.dark *));
|
|
|
|
@theme {
|
|
--font-sans:
|
|
var(--font-barlow), var(--font-geist-sans), ui-sans-serif, system-ui,
|
|
sans-serif;
|
|
--font-mono:
|
|
var(--font-geist-mono), ui-monospace, SFMono-Regular, Menlo, Monaco,
|
|
Consolas, monospace;
|
|
--font-pixel:
|
|
var(--font-geist-pixel-square), var(--font-geist-mono), ui-monospace,
|
|
SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
--font-barlow:
|
|
var(--font-barlow), var(--font-geist-sans), ui-sans-serif, system-ui,
|
|
sans-serif;
|
|
}
|
|
|
|
@theme inline {
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--font-sans: var(--font-barlow), sans-serif;
|
|
--font-mono: var(--font-geist-mono), monospace;
|
|
--font-pixel:
|
|
var(--font-geist-pixel-square), var(--font-geist-mono), monospace;
|
|
--font-barlow: var(--font-barlow), sans-serif;
|
|
--color-sidebar-border: var(--sidebar-border);
|
|
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
--color-sidebar-accent: var(--sidebar-accent);
|
|
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
|
--color-sidebar-primary: var(--sidebar-primary);
|
|
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
--color-sidebar: var(--sidebar);
|
|
--color-chart-5: var(--chart-5);
|
|
--color-chart-4: var(--chart-4);
|
|
--color-chart-3: var(--chart-3);
|
|
--color-chart-2: var(--chart-2);
|
|
--color-chart-1: var(--chart-1);
|
|
--color-ring: var(--ring);
|
|
--color-input: var(--input);
|
|
--color-border: var(--border);
|
|
--color-destructive: var(--destructive);
|
|
--color-accent-foreground: var(--accent-foreground);
|
|
--color-accent: var(--accent);
|
|
--color-muted-foreground: var(--muted-foreground);
|
|
--color-muted: var(--muted);
|
|
--color-secondary-foreground: var(--secondary-foreground);
|
|
--color-secondary: var(--secondary);
|
|
--color-primary-foreground: var(--primary-foreground);
|
|
--color-primary: var(--primary);
|
|
--color-popover-foreground: var(--popover-foreground);
|
|
--color-popover: var(--popover);
|
|
--color-card-foreground: var(--card-foreground);
|
|
--color-card: var(--card);
|
|
--radius-sm: calc(var(--radius) - 4px);
|
|
--radius-md: calc(var(--radius) - 2px);
|
|
--radius-lg: var(--radius);
|
|
--radius-xl: calc(var(--radius) + 4px);
|
|
}
|
|
|
|
:root {
|
|
--radius: 0.625rem;
|
|
--background: oklch(0.998 0 0);
|
|
--foreground: oklch(0.145 0 0);
|
|
--card: oklch(0.998 0 0);
|
|
--card-foreground: oklch(0.145 0 0);
|
|
--popover: oklch(0.998 0 0);
|
|
--popover-foreground: oklch(0.145 0 0);
|
|
--primary: oklch(0.205 0 0);
|
|
--primary-foreground: oklch(0.985 0 0);
|
|
--secondary: oklch(0.97 0 0);
|
|
--secondary-foreground: oklch(0.205 0 0);
|
|
--muted: oklch(0.97 0 0);
|
|
--muted-foreground: oklch(0.556 0 0);
|
|
--accent: oklch(0.97 0 0);
|
|
--accent-foreground: oklch(0.205 0 0);
|
|
--destructive: oklch(0.577 0.245 27.325);
|
|
--border: oklch(0.922 0 0);
|
|
--input: oklch(0.922 0 0);
|
|
--ring: oklch(0.708 0 0);
|
|
--chart-1: oklch(0.646 0.222 41.116);
|
|
--chart-2: oklch(0.6 0.118 184.704);
|
|
--chart-3: oklch(0.398 0.07 227.392);
|
|
--chart-4: oklch(0.828 0.189 84.429);
|
|
--chart-5: oklch(0.769 0.188 70.08);
|
|
--sidebar: oklch(0.985 0 0);
|
|
--sidebar-foreground: oklch(0.145 0 0);
|
|
--sidebar-primary: oklch(0.205 0 0);
|
|
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
--sidebar-accent: oklch(0.97 0 0);
|
|
--sidebar-accent-foreground: oklch(0.205 0 0);
|
|
--sidebar-border: oklch(0.922 0 0);
|
|
--sidebar-ring: oklch(0.708 0 0);
|
|
}
|
|
|
|
.dark {
|
|
--background: oklch(0.205 0 0); /* ~171717 */
|
|
--foreground: oklch(0.985 0 0);
|
|
--card: oklch(0.205 0 0);
|
|
--card-foreground: oklch(0.985 0 0);
|
|
--popover: oklch(0.205 0 0);
|
|
--popover-foreground: oklch(0.985 0 0);
|
|
--primary: oklch(0.922 0 0);
|
|
--primary-foreground: oklch(0.205 0 0);
|
|
--secondary: oklch(0.269 0 0);
|
|
--secondary-foreground: oklch(0.985 0 0);
|
|
--muted: oklch(0.269 0 0);
|
|
--muted-foreground: oklch(0.708 0 0);
|
|
--accent: oklch(
|
|
0.235 0 0
|
|
); /* slightly lighter than background (0.205) but darker than previous (0.269) */
|
|
--accent-foreground: oklch(0.985 0 0);
|
|
--destructive: oklch(0.704 0.191 22.216);
|
|
--border: oklch(1 0 0 / 10%);
|
|
--input: oklch(1 0 0 / 15%);
|
|
--ring: oklch(0.556 0 0);
|
|
--chart-1: oklch(0.488 0.243 264.376);
|
|
--chart-2: oklch(0.696 0.17 162.48);
|
|
--chart-3: oklch(0.769 0.188 70.08);
|
|
--chart-4: oklch(0.627 0.265 303.9);
|
|
--chart-5: oklch(0.645 0.246 16.439);
|
|
--sidebar: oklch(0.205 0 0);
|
|
--sidebar-foreground: oklch(0.985 0 0);
|
|
--sidebar-primary: oklch(0.488 0.243 264.376);
|
|
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
--sidebar-accent: oklch(0.235 0 0); /* matching accent */
|
|
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
--sidebar-border: oklch(1 0 0 / 10%);
|
|
--sidebar-ring: oklch(0.556 0 0);
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border outline-ring/50;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
}
|
|
button,
|
|
[role="button"],
|
|
a {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
/* Apple-style smooth corners (squircle) — progressive enhancement */
|
|
.rounded-smooth {
|
|
border-radius: var(--radius-lg);
|
|
corner-shape: squircle;
|
|
}
|
|
.rounded-smooth-xl {
|
|
border-radius: var(--radius-xl);
|
|
corner-shape: squircle;
|
|
}
|
|
|
|
.no-scrollbar::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.no-scrollbar {
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
scrollbar-width: none; /* Firefox */
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
animation-duration: 0.01ms !important;
|
|
animation-iteration-count: 1 !important;
|
|
transition-duration: 0.01ms !important;
|
|
scroll-behavior: auto !important;
|
|
}
|
|
}
|
|
|
|
/* Loaders */
|
|
.pascal-loader-1 {
|
|
width: 45px;
|
|
aspect-ratio: 1;
|
|
--c: no-repeat linear-gradient(currentColor 0 0);
|
|
background: var(--c), var(--c), var(--c);
|
|
animation:
|
|
pascal-l1-1 1s infinite,
|
|
pascal-l1-2 1s infinite;
|
|
}
|
|
@keyframes pascal-l1-1 {
|
|
0%,
|
|
100% {
|
|
background-size: 20% 100%;
|
|
}
|
|
33%,
|
|
66% {
|
|
background-size: 20% 20%;
|
|
}
|
|
}
|
|
@keyframes pascal-l1-2 {
|
|
0%,
|
|
33% {
|
|
background-position:
|
|
0 0,
|
|
50% 50%,
|
|
100% 100%;
|
|
}
|
|
66%,
|
|
100% {
|
|
background-position:
|
|
100% 0,
|
|
50% 50%,
|
|
0 100%;
|
|
}
|
|
}
|
|
|
|
.pascal-loader-2 {
|
|
width: 45px;
|
|
aspect-ratio: 0.75;
|
|
--c: no-repeat linear-gradient(currentColor 0 0);
|
|
background:
|
|
var(--c) 0% 50%,
|
|
var(--c) 50% 50%,
|
|
var(--c) 100% 50%;
|
|
background-size: 20% 50%;
|
|
animation: pascal-l2 1s infinite linear;
|
|
}
|
|
@keyframes pascal-l2 {
|
|
20% {
|
|
background-position:
|
|
0% 0%,
|
|
50% 50%,
|
|
100% 50%;
|
|
}
|
|
40% {
|
|
background-position:
|
|
0% 100%,
|
|
50% 0%,
|
|
100% 50%;
|
|
}
|
|
60% {
|
|
background-position:
|
|
0% 50%,
|
|
50% 100%,
|
|
100% 0%;
|
|
}
|
|
80% {
|
|
background-position:
|
|
0% 50%,
|
|
50% 50%,
|
|
100% 100%;
|
|
}
|
|
}
|
|
|
|
.pascal-loader-3 {
|
|
width: 45px;
|
|
aspect-ratio: 0.75;
|
|
--c: no-repeat linear-gradient(currentColor 0 0);
|
|
background:
|
|
var(--c) 0% 100%,
|
|
var(--c) 50% 100%,
|
|
var(--c) 100% 100%;
|
|
background-size: 20% 65%;
|
|
animation: pascal-l3 1s infinite linear;
|
|
}
|
|
@keyframes pascal-l3 {
|
|
16.67% {
|
|
background-position:
|
|
0% 0%,
|
|
50% 100%,
|
|
100% 100%;
|
|
}
|
|
33.33% {
|
|
background-position:
|
|
0% 0%,
|
|
50% 0%,
|
|
100% 100%;
|
|
}
|
|
50% {
|
|
background-position:
|
|
0% 0%,
|
|
50% 0%,
|
|
100% 0%;
|
|
}
|
|
66.67% {
|
|
background-position:
|
|
0% 100%,
|
|
50% 0%,
|
|
100% 0%;
|
|
}
|
|
83.33% {
|
|
background-position:
|
|
0% 100%,
|
|
50% 100%,
|
|
100% 0%;
|
|
}
|
|
}
|
|
|
|
.pascal-loader-4 {
|
|
width: 45px;
|
|
aspect-ratio: 1;
|
|
--c: no-repeat linear-gradient(currentColor 0 0);
|
|
background: var(--c), var(--c), var(--c);
|
|
animation:
|
|
pascal-l4-1 1s infinite,
|
|
pascal-l4-2 1s infinite;
|
|
}
|
|
@keyframes pascal-l4-1 {
|
|
0%,
|
|
100% {
|
|
background-size: 20% 100%;
|
|
}
|
|
33%,
|
|
66% {
|
|
background-size: 20% 40%;
|
|
}
|
|
}
|
|
@keyframes pascal-l4-2 {
|
|
0%,
|
|
33% {
|
|
background-position:
|
|
0 0,
|
|
50% 100%,
|
|
100% 100%;
|
|
}
|
|
66%,
|
|
100% {
|
|
background-position:
|
|
100% 0,
|
|
0 100%,
|
|
50% 100%;
|
|
}
|
|
}
|
|
|
|
.pascal-loader-5 {
|
|
width: 45px;
|
|
aspect-ratio: 1;
|
|
--c: no-repeat linear-gradient(currentColor 0 0);
|
|
background: var(--c), var(--c), var(--c);
|
|
animation:
|
|
pascal-l5-1 1s infinite,
|
|
pascal-l5-2 1s infinite;
|
|
}
|
|
@keyframes pascal-l5-1 {
|
|
0%,
|
|
100% {
|
|
background-size: 20% 100%;
|
|
}
|
|
33%,
|
|
66% {
|
|
background-size: 20% 40%;
|
|
}
|
|
}
|
|
@keyframes pascal-l5-2 {
|
|
0%,
|
|
33% {
|
|
background-position:
|
|
0 0,
|
|
50% 100%,
|
|
100% 0;
|
|
}
|
|
66%,
|
|
100% {
|
|
background-position:
|
|
0 100%,
|
|
50% 0,
|
|
100% 100%;
|
|
}
|
|
}
|