Wholesale swap of packages/{core,viewer,editor,mcp} and apps/editor with the
versions from the private editor repo, which is the production source of truth.
Setup changes:
- packages/{core,viewer,editor} versions held at 0.7.0 baseline (matching
the most recent published release) so a bump=minor publishes 0.8.0
- packages/mcp held at 0.1.1 (never published; first publish will go through
the new release.yml flow)
- peerDependencies and devDependencies for inter-package @pascal-app/*
references pinned to ^0.7.0 instead of '*' / 'workspace:*' so they are
valid for npm consumers
- Root package.json: TypeScript bumped to 6.0.2, added overrides for
@types/react, @types/react-dom, @types/three to prevent JSX namespace
fragmentation across the workspace
- release.yml extended to also publish editor and mcp; 'both' option renamed
to 'all'; added a sync step that updates inter-package peerDeps/devDeps to
match the new versions on every bump (so viewer/editor/mcp tarballs always
reference the version of core they were built against)
- Root scripts gained release:editor and release:mcp shortcuts
Verification:
- bun install --frozen-lockfile is consistent
- packages/{core,viewer,mcp} build cleanly, dist/index.d.ts emitted
- packages/editor check-types reports 21 pre-existing errors, identical to
what private-editor currently reports
Open PRs against editor-v2 will need rebasing/conflict resolution.
370 lines
8.5 KiB
CSS
370 lines
8.5 KiB
CSS
@import "tailwindcss";
|
|
@import "tw-animate-css";
|
|
@import "../../../styles/elevation.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%;
|
|
}
|
|
}
|