mirror of
https://github.com/hanzoai/dataroom.git
synced 2026-08-05 04:32:32 +00:00
Papermark dual-licenses: AGPL-3.0 for the tree, a separate commercial
licence for ee/. We hold the first and not the second, so none of the
second may live here.
ee/ was already absent from main, but it was never deleted. 48eecb248
("ci: amd64-only build") renamed 150 files out of ee/ byte-identical
into features/, lib/billing/legacy/ (ee/stripe), lib/billing/limits/
(ee/limits), and flattened app/(ee)/ into app/ — putting commercially
licensed code under our AGPL root LICENSE. A rename is not a deletion.
Every path that commit moved is now gone, edited-since or not.
Deleted, with their routes and UI entry points: features/ai and
app/api/ai, features/workflows and app/api/{workflows,workflow-entry},
features/conversations and the Q&A/FAQ surface, features/security/sso
with app/api/auth/saml + app/api/scim + lib/jackson.ts (we use Hanzo
IAM OIDC natively), features/dataroom-invitations, features/templates,
features/access-notifications, features/conversions, features/
permissions. Five of these were gated by lib/featureFlags, which reads
@vercel/edge-config and returns false for every flag when EDGE_CONFIG
is unset — every non-Vercel deployment we run. Those flags are gone too.
Deleted the commercial gating outright rather than reimplementing it:
lib/billing/legacy (ee/stripe) and lib/billing/limits (ee/limits), the
upgrade modals and banners, UpgradeButton, FeaturePreview, PlanBadge,
the trial and blocking modals, /settings/upgrade, /settings/billing and
the billing checkout/seat/pause/cancel API. usePlan() no longer returns
capability booleans — the plan tag describes provisioning, it is not a
permission — and useLimits() is gone with every quota check it fed.
Subscription pause went the same way. Also dropped the npm dependencies
that existed only for the removed features (@boxyhq/saml-jackson, the
@ai-sdk packages, openai, streamdown, use-stick-to-bottom,
@trigger.dev/python) and the Jackson-specific next.config webpack shims.
Rewritten as original Hanzo code where a capability was load-bearing:
- lib/utils/get-file-size-limits.ts — one UPLOAD_LIMITS set plus
getFileSizeLimit(contentType), env-overridable. Operational limits,
not commercial ones, so the tus and browser-upload paths still refuse
oversized files without consulting a plan matrix.
- components/links/link-sheet/permissions-sheet.tsx — a flat, depth
annotated item list with view/download switches over the same
/permission-groups API. Two states, not three. ItemPermission now has
a single definition in lib/types.ts.
- app/api/links/[id]/upload/route.ts — visitor uploads, built around one
authorize() helper shared by GET and POST, and a notification debounce
keyed per (link, viewer) instead of listing and cancelling runs.
There is now exactly one link sheet: the ee DataroomLinkSheet duplicated
the AGPL LinkSheet, which already handled DATAROOM_LINK. Replaced
upstream's Omit<LinkType, "WORKFLOW_LINK"> — Omit on a string union
yields an object type and never narrowed anything — with a real union.
Verified: the S3/tus upload+download harness passes 13/13 against MinIO
after the deletions, and tsc goes from 257 pre-existing errors on
origin/main to 192 with zero files worse than baseline.
Reasoning recorded in LLM.md. LICENSE untouched.
Co-authored-by: Hanzo Dev <dev@hanzo.ai>
299 lines
8.9 KiB
JavaScript
299 lines
8.9 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
import scrollbarHide from "tailwind-scrollbar-hide";
|
|
|
|
module.exports = {
|
|
darkMode: ["class"],
|
|
content: [
|
|
"./pages/**/*.{ts,tsx}",
|
|
"./components/**/*.{ts,tsx}",
|
|
"./app/**/*.{ts,tsx}",
|
|
"./src/**/*.{ts,tsx}",
|
|
"./node_modules/@tremor/**/*.{js,ts,jsx,tsx}", // TREMOR
|
|
],
|
|
theme: {
|
|
container: {
|
|
center: "true",
|
|
padding: "2rem",
|
|
screens: {
|
|
"2xl": "1400px",
|
|
},
|
|
},
|
|
extend: {
|
|
colors: {
|
|
border: "hsl(var(--border))",
|
|
input: "hsl(var(--input))",
|
|
ring: "hsl(var(--ring))",
|
|
background: "hsl(var(--background))",
|
|
foreground: "hsl(var(--foreground))",
|
|
primary: {
|
|
DEFAULT: "hsl(var(--primary))",
|
|
foreground: "hsl(var(--primary-foreground))",
|
|
},
|
|
secondary: {
|
|
DEFAULT: "hsl(var(--secondary))",
|
|
foreground: "hsl(var(--secondary-foreground))",
|
|
},
|
|
destructive: {
|
|
DEFAULT: "hsl(var(--destructive))",
|
|
foreground: "hsl(var(--destructive-foreground))",
|
|
},
|
|
warning: {
|
|
DEFAULT: "hsl(var(--warning))",
|
|
foreground: "hsl(var(--warning-foreground))",
|
|
},
|
|
muted: {
|
|
DEFAULT: "hsl(var(--muted))",
|
|
foreground: "hsl(var(--muted-foreground))",
|
|
},
|
|
accent: {
|
|
DEFAULT: "hsl(var(--accent))",
|
|
foreground: "hsl(var(--accent-foreground))",
|
|
},
|
|
popover: {
|
|
DEFAULT: "hsl(var(--popover))",
|
|
foreground: "hsl(var(--popover-foreground))",
|
|
},
|
|
card: {
|
|
DEFAULT: "hsl(var(--card))",
|
|
foreground: "hsl(var(--card-foreground))",
|
|
},
|
|
tremor: {
|
|
brand: {
|
|
faint: "#eff6ff",
|
|
muted: "#bfdbfe",
|
|
subtle: "#60a5fa",
|
|
DEFAULT: "#3b82f6",
|
|
emphasis: "#1d4ed8",
|
|
inverted: "#ffffff",
|
|
},
|
|
background: {
|
|
muted: "#f9fafb",
|
|
subtle: "#f3f4f6",
|
|
DEFAULT: "#ffffff",
|
|
emphasis: "#374151",
|
|
},
|
|
border: {
|
|
DEFAULT: "#e5e7eb",
|
|
},
|
|
ring: {
|
|
DEFAULT: "#e5e7eb",
|
|
},
|
|
content: {
|
|
subtle: "#9ca3af",
|
|
DEFAULT: "#6b7280",
|
|
emphasis: "#374151",
|
|
strong: "#111827",
|
|
inverted: "#ffffff",
|
|
},
|
|
},
|
|
"dark-tremor": {
|
|
brand: {
|
|
faint: "#0B1229",
|
|
muted: "#172554",
|
|
subtle: "#1e40af",
|
|
DEFAULT: "#3b82f6",
|
|
emphasis: "#60a5fa",
|
|
inverted: "#030712",
|
|
},
|
|
background: {
|
|
muted: "#131A2B",
|
|
subtle: "#1f2937",
|
|
DEFAULT: "#111827",
|
|
emphasis: "#d1d5db",
|
|
},
|
|
border: {
|
|
DEFAULT: "#1f2937",
|
|
},
|
|
ring: {
|
|
DEFAULT: "#1f2937",
|
|
},
|
|
content: {
|
|
subtle: "#4b5563",
|
|
DEFAULT: "#6b7280",
|
|
emphasis: "#e5e7eb",
|
|
strong: "#f9fafb",
|
|
inverted: "#000000",
|
|
},
|
|
},
|
|
sidebar: {
|
|
DEFAULT: "hsl(var(--sidebar-background))",
|
|
foreground: "hsl(var(--sidebar-foreground))",
|
|
primary: "hsl(var(--sidebar-primary))",
|
|
"primary-foreground": "hsl(var(--sidebar-primary-foreground))",
|
|
accent: "hsl(var(--sidebar-accent))",
|
|
"accent-foreground": "hsl(var(--sidebar-accent-foreground))",
|
|
border: "hsl(var(--sidebar-border))",
|
|
ring: "hsl(var(--sidebar-ring))",
|
|
},
|
|
},
|
|
boxShadow: {
|
|
"tremor-input": "0 1px 2px 0 rgb(0 0 0 / 0.05)",
|
|
"tremor-card":
|
|
"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
|
|
"tremor-dropdown":
|
|
"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
|
|
"dark-tremor-input": "0 1px 2px 0 rgb(0 0 0 / 0.05)",
|
|
"dark-tremor-card":
|
|
"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
|
|
"dark-tremor-dropdown":
|
|
"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
|
|
},
|
|
borderRadius: {
|
|
"tremor-small": "0.375rem",
|
|
"tremor-default": "0.5rem",
|
|
"tremor-full": "9999px",
|
|
lg: "var(--radius)",
|
|
md: "calc(var(--radius) - 2px)",
|
|
sm: "calc(var(--radius) - 4px)",
|
|
},
|
|
fontSize: {
|
|
"tremor-label": ["0.75rem"],
|
|
"tremor-default": ["0.875rem", { lineHeight: "1.25rem" }],
|
|
"tremor-title": ["1.125rem", { lineHeight: "1.75rem" }],
|
|
"tremor-metric": ["1.875rem", { lineHeight: "2.25rem" }],
|
|
},
|
|
keyframes: {
|
|
"scale-in": {
|
|
"0%": {
|
|
transform: "scale(0.95)",
|
|
},
|
|
"100%": {
|
|
transform: "scale(1)",
|
|
},
|
|
},
|
|
"fade-in": {
|
|
"0%": {
|
|
opacity: "0",
|
|
},
|
|
"100%": {
|
|
opacity: "1",
|
|
},
|
|
},
|
|
gauge_fadeIn: {
|
|
from: {
|
|
opacity: "0",
|
|
},
|
|
to: {
|
|
opacity: "1",
|
|
},
|
|
},
|
|
gauge_fill: {
|
|
from: {
|
|
"stroke-dashoffset": "332",
|
|
opacity: "0",
|
|
},
|
|
to: {
|
|
opacity: "1",
|
|
},
|
|
},
|
|
flyEmoji: {
|
|
"0%": {
|
|
transform: "translateY(0) scale(1)",
|
|
opacity: "0.7",
|
|
},
|
|
"100%": {
|
|
transform: "translateY(-150px) scale(2)",
|
|
opacity: "0",
|
|
},
|
|
},
|
|
"accordion-down": {
|
|
from: {
|
|
height: "0",
|
|
},
|
|
to: {
|
|
height: "var(--radix-accordion-content-height)",
|
|
},
|
|
},
|
|
"accordion-up": {
|
|
from: {
|
|
height: "var(--radix-accordion-content-height)",
|
|
},
|
|
to: {
|
|
height: "0",
|
|
},
|
|
},
|
|
"collapsible-down": {
|
|
from: {
|
|
height: "0",
|
|
opacity: "0",
|
|
},
|
|
to: {
|
|
height: "var(--radix-collapsible-content-height)",
|
|
opacity: "1",
|
|
},
|
|
},
|
|
"collapsible-up": {
|
|
from: {
|
|
height: "var(--radix-collapsible-content-height)",
|
|
opacity: "1",
|
|
},
|
|
to: {
|
|
height: "0",
|
|
opacity: "0",
|
|
},
|
|
},
|
|
"caret-blink": {
|
|
"0%,70%,100%": {
|
|
opacity: "1",
|
|
},
|
|
"20%,50%": {
|
|
opacity: "0",
|
|
},
|
|
},
|
|
},
|
|
gridTemplateColumns: {
|
|
16: "repeat(16, minmax(0, 1fr))",
|
|
},
|
|
animation: {
|
|
"scale-in": "scale-in 0.2s cubic-bezier(0.16, 1, 0.3, 1)",
|
|
"fade-in": "fade-in 0.2s ease-out forwards",
|
|
gauge_fadeIn: "gauge_fadeIn 1s ease forwards",
|
|
gauge_fill: "gauge_fill 1s ease forwards",
|
|
flyEmoji: "flyEmoji 1s forwards",
|
|
"accordion-down": "accordion-down 0.2s ease-out",
|
|
"accordion-up": "accordion-up 0.2s ease-out",
|
|
"collapsible-down": "collapsible-down 0.2s ease-out",
|
|
"collapsible-up": "collapsible-up 0.2s ease-out",
|
|
"caret-blink": "caret-blink 1.25s ease-out infinite",
|
|
},
|
|
},
|
|
},
|
|
//** START: TREMOR safelist **//
|
|
safelist: [
|
|
{
|
|
pattern:
|
|
/^(bg-(?:slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-(?:50|100|200|300|400|500|600|700|800|900|950))$/,
|
|
variants: ["hover", "ui-selected"],
|
|
},
|
|
{
|
|
pattern:
|
|
/^(text-(?:slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-(?:50|100|200|300|400|500|600|700|800|900|950))$/,
|
|
variants: ["hover", "ui-selected"],
|
|
},
|
|
{
|
|
pattern:
|
|
/^(border-(?:slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-(?:50|100|200|300|400|500|600|700|800|900|950))$/,
|
|
variants: ["hover", "ui-selected"],
|
|
},
|
|
{
|
|
pattern:
|
|
/^(ring-(?:slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-(?:50|100|200|300|400|500|600|700|800|900|950))$/,
|
|
},
|
|
{
|
|
pattern:
|
|
/^(stroke-(?:slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-(?:50|100|200|300|400|500|600|700|800|900|950))$/,
|
|
},
|
|
{
|
|
pattern:
|
|
/^(fill-(?:slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-(?:50|100|200|300|400|500|600|700|800|900|950))$/,
|
|
},
|
|
],
|
|
//** END: TREMOR safelist **//
|
|
plugins: [
|
|
require("@tailwindcss/forms"),
|
|
require("tailwindcss-animate"),
|
|
require("@tailwindcss/typography"),
|
|
scrollbarHide,
|
|
],
|
|
};
|