torch-glare 2.4.1 → 2.4.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/apps/lib/components/Button.tsx +1 -1
- package/apps/lib/components/Card.tsx +47 -20
- package/apps/lib/components/ColorPicker.tsx +441 -0
- package/apps/lib/components/ConclusionHeader.tsx +148 -0
- package/apps/lib/components/DatePicker.tsx +2 -0
- package/apps/lib/components/Drawer.tsx +66 -24
- package/apps/lib/components/FormBuilder/DisplayField.tsx +40 -0
- package/apps/lib/components/FormBuilder/context.ts +71 -0
- package/apps/lib/components/FormBuilder/fields/ChoiceFields.tsx +65 -0
- package/apps/lib/components/FormBuilder/fields/ColorField.tsx +76 -0
- package/apps/lib/components/FormBuilder/fields/CustomField.tsx +16 -0
- package/apps/lib/components/FormBuilder/fields/DateField.tsx +34 -0
- package/apps/lib/components/FormBuilder/fields/FieldArray.tsx +79 -0
- package/apps/lib/components/FormBuilder/fields/FieldShell.tsx +174 -0
- package/apps/lib/components/FormBuilder/fields/FileField.tsx +40 -0
- package/apps/lib/components/FormBuilder/fields/OptionListFields.tsx +139 -0
- package/apps/lib/components/FormBuilder/fields/OtpField.tsx +32 -0
- package/apps/lib/components/FormBuilder/fields/PhoneField.tsx +82 -0
- package/apps/lib/components/FormBuilder/fields/RichTextEditorField.tsx +37 -0
- package/apps/lib/components/FormBuilder/fields/SelectField.tsx +101 -0
- package/apps/lib/components/FormBuilder/fields/SignatureField.tsx +175 -0
- package/apps/lib/components/FormBuilder/fields/SliderField.tsx +72 -0
- package/apps/lib/components/FormBuilder/fields/SwitchBoxField.tsx +42 -0
- package/apps/lib/components/FormBuilder/fields/TableField.tsx +312 -0
- package/apps/lib/components/FormBuilder/fields/TextField.tsx +222 -0
- package/apps/lib/components/FormBuilder/fields/TreeSelectField.tsx +49 -0
- package/apps/lib/components/FormBuilder/fields/countries.ts +303 -0
- package/apps/lib/components/FormBuilder/fields/index.ts +25 -0
- package/apps/lib/components/FormBuilder/form-builder.tsx +292 -0
- package/apps/lib/components/FormBuilder/header.tsx +105 -0
- package/apps/lib/components/FormBuilder/index.ts +37 -0
- package/apps/lib/components/FormBuilder/numberFormat.ts +16 -0
- package/apps/lib/components/FormBuilder/stepper.tsx +217 -0
- package/apps/lib/components/FormBuilder/submit.tsx +41 -0
- package/apps/lib/components/FormBuilder/types.ts +264 -0
- package/apps/lib/components/FormBuilder/viewFormat.tsx +137 -0
- package/apps/lib/components/FormRenderer/FormDrawer.tsx +121 -0
- package/apps/lib/components/FormRenderer/form-renderer.tsx +113 -0
- package/apps/lib/components/FormRenderer/index.ts +9 -0
- package/apps/lib/components/FormRenderer/types.ts +79 -0
- package/apps/lib/components/FormSummary.tsx +282 -0
- package/apps/lib/components/ImageAttachment.tsx +36 -61
- package/apps/lib/components/Label.tsx +49 -42
- package/apps/lib/components/RadioCard.tsx +2 -0
- package/apps/lib/components/SearchableSelect.tsx +9 -3
- package/apps/lib/components/SectionBlock.tsx +16 -8
- package/apps/lib/components/Select.tsx +41 -120
- package/apps/lib/components/TextEditor/RichTextField.tsx +46 -0
- package/apps/lib/components/{TextEditor.tsx → TextEditor/TextEditor.tsx} +63 -9
- package/apps/lib/components/TextEditor/TextEditorToolbar.tsx +429 -0
- package/apps/lib/components/TextEditor/editor-tools/AlignmentTune.ts +70 -0
- package/apps/lib/components/TextEditor/editor-tools/ColorInlineTool.ts +50 -0
- package/apps/lib/components/TextEditor/editor-tools/StrikethroughInlineTool.ts +48 -0
- package/apps/lib/components/TextEditor/editor-tools/inlineFormat.ts +98 -0
- package/apps/lib/{types → components/TextEditor}/editorjs.d.ts +19 -0
- package/apps/lib/components/TextEditor/index.ts +7 -0
- package/apps/lib/components/Textarea.tsx +1 -1
- package/apps/lib/registry.json +51 -58
- package/apps/lib/tsconfig.tsbuildinfo +1 -0
- package/apps/lib/utils/color.ts +175 -0
- package/docs/components/card.md +4 -2
- package/docs/components/chart-block-tool.md +5 -4
- package/docs/components/color-picker.md +101 -0
- package/docs/components/conclusion-header.md +80 -0
- package/docs/components/drawer.md +153 -102
- package/docs/components/form-builder.md +270 -0
- package/docs/components/form-renderer.md +228 -0
- package/docs/components/form-summary.md +123 -0
- package/docs/components/image-attachment.md +10 -4
- package/docs/components/table-dnd-wrapper.md +5 -3
- package/docs/components/text-editor.md +18 -0
- package/docs/how-to/form-and-list-recipes.md +26 -19
- package/docs/how-to/forms-with-form-builder.md +408 -0
- package/docs/how-to/guides.md +153 -179
- package/docs/tutorials/building-first-form.md +150 -159
- package/package.json +1 -1
- /package/apps/lib/components/{ChartBlockTool.ts → TextEditor/ChartBlockTool.ts} +0 -0
- /package/apps/lib/components/{TableDnDWrapper.ts → TextEditor/TableDnDWrapper.ts} +0 -0
- /package/apps/lib/{utils → components/TextEditor}/markdownParser.ts +0 -0
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
import type {
|
|
3
|
+
DefaultValues,
|
|
4
|
+
FieldErrors,
|
|
5
|
+
FieldValues,
|
|
6
|
+
Resolver,
|
|
7
|
+
UseFormReturn,
|
|
8
|
+
} from "react-hook-form";
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* FormRenderer — a thin wrapper around the compound `FormBuilder`. You author the
|
|
12
|
+
* fields as **JSX children** (`FormBuilder.Section`, `FormBuilder.Text`, …); the
|
|
13
|
+
* renderer owns the surrounding concerns: page-vs-drawer display, the absolute
|
|
14
|
+
* title header, vertical field layout inside a drawer, and an `actions` slot (the
|
|
15
|
+
* form's header / drawer action bar) where you place the Save.
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
export type FormRendererMode = "edit" | "view";
|
|
19
|
+
export type FormRendererDisplay = "page" | "drawer";
|
|
20
|
+
export type FieldDirection = "horizontal" | "vertical";
|
|
21
|
+
|
|
22
|
+
export interface FormRendererProps<T extends FieldValues = FieldValues> {
|
|
23
|
+
/** The form body — `FormBuilder.Section` / field / `FormBuilder.Stepper` JSX. */
|
|
24
|
+
children: ReactNode;
|
|
25
|
+
|
|
26
|
+
// --- react-hook-form root (forwarded to FormBuilder) ---
|
|
27
|
+
onSubmit: (values: T) => void | Promise<void>;
|
|
28
|
+
onInvalid?: (errors: FieldErrors<T>) => void;
|
|
29
|
+
resolver?: Resolver<T>;
|
|
30
|
+
defaultValues?: DefaultValues<T>;
|
|
31
|
+
values?: T;
|
|
32
|
+
mode?: FormRendererMode;
|
|
33
|
+
loading?: boolean;
|
|
34
|
+
resetOnSuccess?: boolean;
|
|
35
|
+
/** Row layout; defaults to vertical inside a drawer. */
|
|
36
|
+
fieldDirection?: FieldDirection;
|
|
37
|
+
/**
|
|
38
|
+
* A hoisted `useForm` instance to bind the form to. Pass this when something outside the
|
|
39
|
+
* form (e.g. a `summary` `FormSummary`) must read the same live values; the caller owns
|
|
40
|
+
* `resolver`/`defaultValues` on that instance. Omit to let FormRenderer create its own.
|
|
41
|
+
*/
|
|
42
|
+
form?: UseFormReturn<T>;
|
|
43
|
+
|
|
44
|
+
// --- display ---
|
|
45
|
+
display?: FormRendererDisplay;
|
|
46
|
+
/**
|
|
47
|
+
* A live panel rendered beside the form (page) or in the drawer tray (drawer) — typically a
|
|
48
|
+
* `FormSummary`. Give FormRenderer the same hoisted `form` so the panel reads live values.
|
|
49
|
+
*/
|
|
50
|
+
summary?: ReactNode;
|
|
51
|
+
/**
|
|
52
|
+
* Lands on the form's outermost element (page display). Use it to let the form fill its
|
|
53
|
+
* parent — e.g. `"flex-1 min-h-0"` inside a flex column that has a height.
|
|
54
|
+
*/
|
|
55
|
+
className?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Absolute title header + action bar. Used by **both** displays — the page and the
|
|
58
|
+
* drawer render the same `HeaderBar` title pill, so a form looks identical in either.
|
|
59
|
+
*/
|
|
60
|
+
header?: { title: string; label?: string; variant?: "new" | "edit" | "detail" };
|
|
61
|
+
/**
|
|
62
|
+
* The form's action bar — rendered in the header's right-hand action pill (page) or the drawer
|
|
63
|
+
* header (drawer). Put the Save here: `actions={<FormBuilder.Submit>Save</FormBuilder.Submit>}`.
|
|
64
|
+
* A bare `FormBuilder.Submit` auto-targets this form (see `FormBuilder`'s form-id context), so it
|
|
65
|
+
* submits even though the header sits outside the `<form>`.
|
|
66
|
+
*/
|
|
67
|
+
actions?: ReactNode;
|
|
68
|
+
/** `id` on the underlying `<form>`. Optional — FormRenderer generates and wires one otherwise. */
|
|
69
|
+
id?: string;
|
|
70
|
+
|
|
71
|
+
/** Drawer control (when `display === "drawer"`). */
|
|
72
|
+
open?: boolean;
|
|
73
|
+
onOpenChange?: (open: boolean) => void;
|
|
74
|
+
/** Overrides `header.title` for the drawer. Plain text — it renders via `HeaderBar`. */
|
|
75
|
+
title?: string;
|
|
76
|
+
/** Overrides `header.label` for the drawer. */
|
|
77
|
+
badge?: string;
|
|
78
|
+
onOpenInNewTab?: () => void;
|
|
79
|
+
}
|
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { Children, Fragment, createContext, useContext, useId, useState, ReactNode } from "react";
|
|
4
|
+
import { useWatch, type Control, type FieldValues, type UseFormReturn } from "react-hook-form";
|
|
5
|
+
|
|
6
|
+
import { cn } from "../utils/cn";
|
|
7
|
+
import { Group, Input, Trilling } from "./Input";
|
|
8
|
+
import { ConclusionHeader } from "./ConclusionHeader";
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* The form the rows read from. `undefined` means "fall back to the surrounding
|
|
12
|
+
* FormProvider" — which is what react-hook-form's `useWatch` does with no `control`.
|
|
13
|
+
*/
|
|
14
|
+
const ControlContext = createContext<Control | undefined>(undefined);
|
|
15
|
+
|
|
16
|
+
/** Format a computed amount with thousands separators and fixed decimals (2 → "1,299.00"). */
|
|
17
|
+
export function formatAmount(value: unknown, decimals = 2): string {
|
|
18
|
+
if (value == null || value === "") return "";
|
|
19
|
+
const n = typeof value === "number" ? value : Number(String(value).replace(/,/g, ""));
|
|
20
|
+
if (Number.isNaN(n)) return "";
|
|
21
|
+
return new Intl.NumberFormat("en-US", {
|
|
22
|
+
minimumFractionDigits: decimals,
|
|
23
|
+
maximumFractionDigits: decimals,
|
|
24
|
+
}).format(n);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/** Currency-code color. Maps to Glare's semantic state tokens. */
|
|
28
|
+
export type SummaryTone = "neutral" | "success" | "info";
|
|
29
|
+
|
|
30
|
+
const toneStyles: Record<SummaryTone, string> = {
|
|
31
|
+
neutral: "text-content-presentation-action-light-secondary",
|
|
32
|
+
success: "text-content-presentation-state-success",
|
|
33
|
+
info: "text-content-presentation-state-information",
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
export interface FormSummaryProps<T extends FieldValues = FieldValues> {
|
|
37
|
+
/** Panel title, e.g. "Invoice" (bold). */
|
|
38
|
+
title: ReactNode;
|
|
39
|
+
/** Muted text beside the title, e.g. "Summary". */
|
|
40
|
+
subtitle?: ReactNode;
|
|
41
|
+
/**
|
|
42
|
+
* The form to read values from. Required when the panel renders **outside** the
|
|
43
|
+
* `<FormBuilder>` (the usual case — the two sit side by side, so hoist `useForm`
|
|
44
|
+
* and hand the same instance to both). Omit it only when the panel is a child of
|
|
45
|
+
* the form, in which case it reads the surrounding context.
|
|
46
|
+
*/
|
|
47
|
+
form?: UseFormReturn<T>;
|
|
48
|
+
/** Panel width (default `228px`, matching the design). */
|
|
49
|
+
width?: number | string;
|
|
50
|
+
className?: string;
|
|
51
|
+
children: ReactNode;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* `FormSummary` — a read-only calculation panel displayed **beside a form**.
|
|
56
|
+
*
|
|
57
|
+
* Each `FormSummary.Row` declares a `compute(values)` that runs against the **live** form
|
|
58
|
+
* values (via react-hook-form `useWatch`), so every total recalculates as the user types.
|
|
59
|
+
*
|
|
60
|
+
* It renders *outside* the form, so hoist the form and share it:
|
|
61
|
+
*
|
|
62
|
+
* ```tsx
|
|
63
|
+
* const form = useForm({ resolver, defaultValues })
|
|
64
|
+
*
|
|
65
|
+
* <div className="flex items-start gap-4">
|
|
66
|
+
* <FormBuilder form={form} onSubmit={save} className="flex-1">…fields…</FormBuilder>
|
|
67
|
+
* <FormSummary form={form} title="Invoice" subtitle="Summary">…rows…</FormSummary>
|
|
68
|
+
* </div>
|
|
69
|
+
* ```
|
|
70
|
+
*/
|
|
71
|
+
function FormSummaryRoot<T extends FieldValues = FieldValues>({
|
|
72
|
+
title,
|
|
73
|
+
subtitle,
|
|
74
|
+
form,
|
|
75
|
+
width = 228,
|
|
76
|
+
className,
|
|
77
|
+
children,
|
|
78
|
+
}: FormSummaryProps<T>) {
|
|
79
|
+
// The design stacks the header and every group in ONE 12px-gap column, with the dividers
|
|
80
|
+
// as their own items — so they're interleaved here rather than drawn with `divide-y`,
|
|
81
|
+
// which can only sit flush against a child's edge and couldn't be centred in its block.
|
|
82
|
+
const groups = Children.toArray(children).filter(Boolean);
|
|
83
|
+
|
|
84
|
+
return (
|
|
85
|
+
<ControlContext.Provider value={form?.control as Control | undefined}>
|
|
86
|
+
<aside
|
|
87
|
+
data-theme="dark"
|
|
88
|
+
style={{ width: typeof width === "number" ? `${width}px` : width }}
|
|
89
|
+
className={cn(
|
|
90
|
+
"flex h-full flex-col gap-3 overflow-hidden rounded-[16px] bg-black text-white",
|
|
91
|
+
className,
|
|
92
|
+
)}
|
|
93
|
+
>
|
|
94
|
+
{/* 48px tall: 12 + 24 + 12, aligned with the groups at px-2. Pinned — only the
|
|
95
|
+
groups below it scroll. */}
|
|
96
|
+
<header className="flex shrink-0 items-baseline gap-1 px-2 py-3">
|
|
97
|
+
<span className="typography-body-large-medium text-white">{title}</span>
|
|
98
|
+
{subtitle && (
|
|
99
|
+
<span className="typography-body-medium-regular text-[#A0A0A0]">{subtitle}</span>
|
|
100
|
+
)}
|
|
101
|
+
</header>
|
|
102
|
+
|
|
103
|
+
{/* Takes the remaining height and scrolls when the groups outrun it, as in the
|
|
104
|
+
design (its group column is taller than the panel). `min-h-0` is required —
|
|
105
|
+
without it this flex child refuses to shrink below its content and the panel
|
|
106
|
+
grows instead of scrolling. */}
|
|
107
|
+
<div className="flex min-h-0 flex-1 flex-col gap-3 overflow-y-auto pb-3 scrollbar-hide">
|
|
108
|
+
{groups.map((group, i) => (
|
|
109
|
+
<Fragment key={i}>
|
|
110
|
+
{/* Full-bleed divider: a 16px block with the line at its centre, so the 12px
|
|
111
|
+
column gap either side lands the line 20px clear of both groups. */}
|
|
112
|
+
{i > 0 && (
|
|
113
|
+
<div className="flex h-4 items-center" aria-hidden>
|
|
114
|
+
<div className="h-px w-full bg-[#2C2D2E]" />
|
|
115
|
+
</div>
|
|
116
|
+
)}
|
|
117
|
+
{group}
|
|
118
|
+
</Fragment>
|
|
119
|
+
))}
|
|
120
|
+
</div>
|
|
121
|
+
</aside>
|
|
122
|
+
</ControlContext.Provider>
|
|
123
|
+
);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export interface FormSummaryGroupProps {
|
|
127
|
+
title?: ReactNode;
|
|
128
|
+
/** Make the group collapsible via a `ConclusionHeader` title (default `true` when titled). */
|
|
129
|
+
collapsible?: boolean;
|
|
130
|
+
/** Initial open state when collapsible (default `true`). */
|
|
131
|
+
defaultOpen?: boolean;
|
|
132
|
+
className?: string;
|
|
133
|
+
children: ReactNode;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* A titled group of summary rows. When it has a `title` it is **collapsible**: the title
|
|
138
|
+
* is a `ConclusionHeader` whose chevron opens/closes just this group's rows.
|
|
139
|
+
*/
|
|
140
|
+
function FormSummaryGroup({
|
|
141
|
+
title,
|
|
142
|
+
collapsible = true,
|
|
143
|
+
defaultOpen = true,
|
|
144
|
+
className,
|
|
145
|
+
children,
|
|
146
|
+
}: FormSummaryGroupProps) {
|
|
147
|
+
const [open, setOpen] = useState(defaultOpen);
|
|
148
|
+
const bodyId = useId();
|
|
149
|
+
const isCollapsible = collapsible && title != null;
|
|
150
|
+
const shown = !isCollapsible || open;
|
|
151
|
+
|
|
152
|
+
return (
|
|
153
|
+
// No `gap` here: the body collapses to zero height, and a flex gap would survive it as
|
|
154
|
+
// dead space. The 12px below the title is `pt-3` on the body — inside what collapses.
|
|
155
|
+
// No vertical padding either: the panel's 12px column gap is the only spacing between
|
|
156
|
+
// groups, and the dividers carry their own.
|
|
157
|
+
<section className={cn("flex flex-col px-2", className)}>
|
|
158
|
+
{title != null &&
|
|
159
|
+
(isCollapsible ? (
|
|
160
|
+
<ConclusionHeader
|
|
161
|
+
label={title}
|
|
162
|
+
open={open}
|
|
163
|
+
onOpenChange={setOpen}
|
|
164
|
+
aria-controls={bodyId}
|
|
165
|
+
/>
|
|
166
|
+
) : (
|
|
167
|
+
<h3 className="typography-body-large-medium text-white">{title}</h3>
|
|
168
|
+
))}
|
|
169
|
+
|
|
170
|
+
{/* Fold/unfold: `grid-rows-[0fr → 1fr]` animates to the rows' natural height without
|
|
171
|
+
measuring it, so the group stays a pure-CSS transition. The inner `overflow-hidden`
|
|
172
|
+
is what the 0fr track actually clips — it must stay a bare wrapper. */}
|
|
173
|
+
<div
|
|
174
|
+
id={bodyId}
|
|
175
|
+
// Collapsed rows keep their inputs in the DOM, so `inert` is what takes them out of
|
|
176
|
+
// the tab order and the a11y tree — `overflow-hidden` alone would still let focus in.
|
|
177
|
+
inert={!shown}
|
|
178
|
+
aria-hidden={!shown}
|
|
179
|
+
className={cn(
|
|
180
|
+
"grid transition-[grid-template-rows,opacity] duration-200 ease-in-out",
|
|
181
|
+
"motion-reduce:transition-none",
|
|
182
|
+
shown ? "grid-rows-[1fr] opacity-100" : "grid-rows-[0fr] opacity-0",
|
|
183
|
+
)}
|
|
184
|
+
>
|
|
185
|
+
<div className="overflow-hidden">
|
|
186
|
+
{/* Rows sit flush with the header (both at the section's px-2), 12px apart. */}
|
|
187
|
+
<div className={cn("flex flex-col gap-3", title != null && "pt-3")}>{children}</div>
|
|
188
|
+
</div>
|
|
189
|
+
</div>
|
|
190
|
+
</section>
|
|
191
|
+
);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
export interface FormSummaryRowProps<T extends FieldValues = FieldValues> {
|
|
195
|
+
label: ReactNode;
|
|
196
|
+
/**
|
|
197
|
+
* The calculation. Receives the **live** form values and returns the row's value.
|
|
198
|
+
* Omit it and pass `value` for a static row.
|
|
199
|
+
*/
|
|
200
|
+
compute?: (values: T) => number | string | undefined | null;
|
|
201
|
+
/** Static value (used when there's no `compute`). */
|
|
202
|
+
value?: number | string | null;
|
|
203
|
+
/** Currency code shown beside the label, e.g. "IQD" / "USD". */
|
|
204
|
+
currency?: ReactNode;
|
|
205
|
+
/** Color of the currency code. */
|
|
206
|
+
tone?: SummaryTone;
|
|
207
|
+
/** The primary result — renders with a lighter, emphasized border. */
|
|
208
|
+
emphasized?: boolean;
|
|
209
|
+
/** Decimal places (default 2 → `0.00`). */
|
|
210
|
+
decimals?: number;
|
|
211
|
+
/** Trailing slot inside the field, e.g. an `ActionButton`. */
|
|
212
|
+
action?: ReactNode;
|
|
213
|
+
/** Override the default number formatting. */
|
|
214
|
+
format?: (value: number | string | undefined | null) => string;
|
|
215
|
+
className?: string;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* One summary row: a label above a read-only, right-aligned value field.
|
|
220
|
+
*
|
|
221
|
+
* Uses the raw `Input` primitives (`Group`/`Input`/`Trilling`) rather than `InputField`,
|
|
222
|
+
* which always wraps in a Popover/Tooltip and whose `className` targets the wrapper —
|
|
223
|
+
* so it can't right-align the value text.
|
|
224
|
+
*/
|
|
225
|
+
function FormSummaryRow<T extends FieldValues = FieldValues>({
|
|
226
|
+
label,
|
|
227
|
+
compute,
|
|
228
|
+
value,
|
|
229
|
+
currency,
|
|
230
|
+
tone = "neutral",
|
|
231
|
+
emphasized,
|
|
232
|
+
decimals = 2,
|
|
233
|
+
action,
|
|
234
|
+
format,
|
|
235
|
+
className,
|
|
236
|
+
}: FormSummaryRowProps<T>) {
|
|
237
|
+
// Subscribes to the form's values — recomputes as the user types. `control` comes
|
|
238
|
+
// from the panel's `form` prop; with none, useWatch falls back to a surrounding
|
|
239
|
+
// FormProvider (so the panel still works as a child of the form).
|
|
240
|
+
const control = useContext(ControlContext);
|
|
241
|
+
const values = useWatch({ control }) as T;
|
|
242
|
+
const raw = compute ? compute(values) : value;
|
|
243
|
+
const text = format ? format(raw) : formatAmount(raw, decimals);
|
|
244
|
+
|
|
245
|
+
return (
|
|
246
|
+
// 18px label + 4px + 30px field = the design's 52px row.
|
|
247
|
+
<div className={cn("flex flex-col gap-1", className)}>
|
|
248
|
+
<span className="typography-body-small-regular text-[#E5E5E5]">{label}</span>
|
|
249
|
+
|
|
250
|
+
<Group
|
|
251
|
+
size="S"
|
|
252
|
+
variant="PresentationStyle"
|
|
253
|
+
className={cn("w-full", emphasized && "!border-black-400")}
|
|
254
|
+
>
|
|
255
|
+
{/* readOnly, not disabled — `disabled` triggers the greyed-out field styles.
|
|
256
|
+
`mask-image:none` cancels Input's fade-out-to-the-right gradient, which
|
|
257
|
+
would otherwise fade the tail of a right-aligned value. */}
|
|
258
|
+
<Input readOnly value={text} tabIndex={-1} className="cursor-default [mask-image:none]" />
|
|
259
|
+
|
|
260
|
+
{/* The currency code rides in the field's trailing slot, not the label — it shares
|
|
261
|
+
the slot with `action`, which is why both live in one `Trilling`. */}
|
|
262
|
+
{(currency || action) && (
|
|
263
|
+
<Trilling>
|
|
264
|
+
{currency && (
|
|
265
|
+
<span className={cn("pe-1 typography-body-small-medium", toneStyles[tone])}>
|
|
266
|
+
{currency}
|
|
267
|
+
</span>
|
|
268
|
+
)}
|
|
269
|
+
{action}
|
|
270
|
+
</Trilling>
|
|
271
|
+
)}
|
|
272
|
+
</Group>
|
|
273
|
+
</div>
|
|
274
|
+
);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
export const FormSummary = Object.assign(FormSummaryRoot, {
|
|
278
|
+
Group: FormSummaryGroup,
|
|
279
|
+
Row: FormSummaryRow,
|
|
280
|
+
});
|
|
281
|
+
|
|
282
|
+
FormSummaryRoot.displayName = "FormSummary";
|
|
@@ -1,11 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
forwardRef,
|
|
3
|
-
HTMLAttributes,
|
|
4
|
-
InputHTMLAttributes,
|
|
5
|
-
ReactNode,
|
|
6
|
-
useEffect,
|
|
7
|
-
useState,
|
|
8
|
-
} from "react";
|
|
1
|
+
import { forwardRef, HTMLAttributes, InputHTMLAttributes, ReactNode } from "react";
|
|
9
2
|
import { Button } from "./Button";
|
|
10
3
|
import { cva } from "class-variance-authority";
|
|
11
4
|
import { cn } from "../utils/cn";
|
|
@@ -19,14 +12,16 @@ import {
|
|
|
19
12
|
|
|
20
13
|
const dropZoneStyles = cva(
|
|
21
14
|
[
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
15
|
+
// Dashed drop zone that fills the field box (design: Attachment-Field-1.0 "Upload-Button").
|
|
16
|
+
// Transparent fill so the surrounding #f9f9f9 box shows through the dashed border.
|
|
17
|
+
"flex-1 h-[65px] flex flex-col rounded-[8px] border-dashed !border-2 transition-all duration-300 ease-in-out",
|
|
18
|
+
"!border-border-presentation-action-borderstyle bg-transparent",
|
|
19
|
+
"hover:bg-background-presentation-badge-gray-subtle",
|
|
25
20
|
],
|
|
26
21
|
{
|
|
27
22
|
variants: {
|
|
28
23
|
active: {
|
|
29
|
-
true: "bg-background-presentation-
|
|
24
|
+
true: "!bg-background-presentation-badge-gray-subtle !border-border-presentation-badge-gray",
|
|
30
25
|
},
|
|
31
26
|
},
|
|
32
27
|
},
|
|
@@ -37,7 +32,7 @@ interface Props extends InputHTMLAttributes<HTMLInputElement | HTMLDivElement> {
|
|
|
37
32
|
mainLabel: string;
|
|
38
33
|
secondaryLabel: string;
|
|
39
34
|
theme?: Themes;
|
|
40
|
-
expandLabel
|
|
35
|
+
expandLabel?: ReactNode;
|
|
41
36
|
children?: ReactNode;
|
|
42
37
|
getRootProps?: () => Record<string, unknown>;
|
|
43
38
|
}
|
|
@@ -52,12 +47,21 @@ const ImageAttachment = forwardRef<HTMLInputElement, Props>(
|
|
|
52
47
|
className,
|
|
53
48
|
getRootProps,
|
|
54
49
|
children,
|
|
50
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars -- excluded from {...props} so it isn't leaked onto the <input>
|
|
51
|
+
expandLabel,
|
|
55
52
|
...props
|
|
56
53
|
}: Props,
|
|
57
54
|
ref,
|
|
58
55
|
) => {
|
|
59
56
|
return (
|
|
60
|
-
|
|
57
|
+
// The #f9f9f9 field box (design: Attachment-Field-1.0). Holds an optional preview
|
|
58
|
+
// (children) on the leading side and the dashed drop zone filling the rest.
|
|
59
|
+
<section
|
|
60
|
+
className={cn(
|
|
61
|
+
"flex w-full items-center gap-[10px] rounded-[8px] bg-background-presentation-form-field-primary",
|
|
62
|
+
className,
|
|
63
|
+
)}
|
|
64
|
+
>
|
|
61
65
|
{children}
|
|
62
66
|
<Button
|
|
63
67
|
{...getRootProps?.()}
|
|
@@ -100,52 +104,25 @@ const ExpandableImage = ({
|
|
|
100
104
|
className,
|
|
101
105
|
...props
|
|
102
106
|
}: ExpandableImageProps) => {
|
|
103
|
-
// Calculate the aspect ratio of the image
|
|
104
|
-
const [aspectRatio, setAspectRatio] = useState<number | null>(null);
|
|
105
|
-
useEffect(() => {
|
|
106
|
-
if (!previewSrc) return;
|
|
107
|
-
const img = new Image();
|
|
108
|
-
img.onload = () => {
|
|
109
|
-
const width = img.naturalWidth;
|
|
110
|
-
const height = img.naturalHeight;
|
|
111
|
-
const ratio = width / height;
|
|
112
|
-
setAspectRatio(ratio);
|
|
113
|
-
};
|
|
114
|
-
img.src = previewSrc;
|
|
115
|
-
}, [previewSrc]);
|
|
116
|
-
|
|
117
107
|
return (
|
|
108
|
+
// Pic-Container-1.0: a 65×65 square thumbnail (or the placeholder), with an Expand
|
|
109
|
+
// overlay revealed on hover.
|
|
118
110
|
<section
|
|
119
111
|
style={props.style}
|
|
120
112
|
data-theme={theme}
|
|
121
113
|
className={cn(
|
|
122
|
-
"flex items-center justify-center
|
|
114
|
+
"group relative flex size-[65px] shrink-0 items-center justify-center overflow-hidden rounded-[8px] border-none",
|
|
123
115
|
className,
|
|
124
116
|
)}
|
|
125
117
|
>
|
|
126
|
-
{previewSrc ?
|
|
127
|
-
<SelectedImg aspectRatio={aspectRatio} src={previewSrc} />
|
|
128
|
-
) : (
|
|
129
|
-
<PlaceHolder label={placeholderLabel} />
|
|
130
|
-
)}
|
|
118
|
+
{previewSrc ? <SelectedImg src={previewSrc} /> : <PlaceHolder label={placeholderLabel} />}
|
|
131
119
|
|
|
132
120
|
{previewSrc && (
|
|
133
121
|
<AlertDialog>
|
|
134
122
|
<AlertDialogTrigger asChild>
|
|
135
|
-
<button className="flex
|
|
136
|
-
<
|
|
137
|
-
|
|
138
|
-
height="25"
|
|
139
|
-
viewBox="0 0 25 25"
|
|
140
|
-
fill="none"
|
|
141
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
142
|
-
>
|
|
143
|
-
<path
|
|
144
|
-
d="M15.5 3.5L17.8 5.8L14.91 8.67L16.33 10.09L19.2 7.2L21.5 9.5V3.5H15.5ZM3.5 9.5L5.8 7.2L8.67 10.09L10.09 8.67L7.2 5.8L9.5 3.5H3.5V9.5ZM9.5 21.5L7.2 19.2L10.09 16.33L8.67 14.91L5.8 17.8L3.5 15.5V21.5H9.5ZM21.5 15.5L19.2 17.8L16.33 14.91L14.91 16.33L17.8 19.2L15.5 21.5H21.5V15.5Z"
|
|
145
|
-
fill="#F9F9F9"
|
|
146
|
-
/>
|
|
147
|
-
</svg>
|
|
148
|
-
<p className="text-content-presentation-global-primary-inverse typography-labels-small-regular max-w-[50px] break-words m-0">
|
|
123
|
+
<button className="absolute z-10 flex h-full w-full flex-col items-center justify-center gap-[2px] bg-black/50 opacity-0 transition-all duration-200 ease-in-out hover:opacity-100">
|
|
124
|
+
<i className="ri-fullscreen-line text-content-presentation-global-hover text-[24px] leading-none" />
|
|
125
|
+
<p className="text-content-presentation-global-hover typography-labels-small-regular m-0 max-w-[50px] break-words text-center">
|
|
149
126
|
{expandLabel}
|
|
150
127
|
</p>
|
|
151
128
|
</button>
|
|
@@ -161,31 +138,29 @@ const ExpandableImage = ({
|
|
|
161
138
|
|
|
162
139
|
function PlaceHolder({ label }: { label: string }) {
|
|
163
140
|
return (
|
|
141
|
+
// Pic-Container-1.0 default: ocean fill + dashed blue-purple border; on hover it goes gray.
|
|
142
|
+
// (Was styled with a `badge-blue-purple` token that does not exist — a no-op until now.)
|
|
164
143
|
<section
|
|
165
144
|
className={cn([
|
|
166
|
-
"
|
|
167
|
-
" rounded-
|
|
168
|
-
" border-
|
|
169
|
-
" bg-background-presentation-badge-blue-purple",
|
|
145
|
+
"size-[65px] gap-[2px] flex flex-col justify-center items-center px-1",
|
|
146
|
+
" rounded-[8px] border-2 border-dashed",
|
|
147
|
+
" border-blue-purple-300 bg-background-presentation-badge-ocean-subtle",
|
|
170
148
|
" transition-all duration-300 ease-in-out",
|
|
171
|
-
" hover:bg-background-presentation-badge-gray hover:border-border-presentation-badge-gray",
|
|
149
|
+
" group-hover:bg-background-presentation-badge-gray-subtle group-hover:border-border-presentation-badge-gray",
|
|
172
150
|
])}
|
|
173
151
|
>
|
|
174
|
-
<i className="ri-attachment-line text-
|
|
175
|
-
<p className="text-
|
|
152
|
+
<i className="ri-attachment-line text-blue-purple-800 group-hover:text-content-presentation-badge-gray text-[24px] h-[24px]"></i>
|
|
153
|
+
<p className="text-blue-purple-800 typography-labels-small-regular group-hover:text-content-presentation-badge-gray px-1 py-[2px] text-center">
|
|
176
154
|
{label}
|
|
177
155
|
</p>
|
|
178
156
|
</section>
|
|
179
157
|
);
|
|
180
158
|
}
|
|
181
159
|
|
|
182
|
-
function SelectedImg({ src
|
|
160
|
+
function SelectedImg({ src }: { src: string }) {
|
|
183
161
|
return (
|
|
184
|
-
<section
|
|
185
|
-
|
|
186
|
-
className="bg-white w-full h-full rounded-md border border-border-presentation-global-primary shrink-0"
|
|
187
|
-
>
|
|
188
|
-
<img src={src} className="object-center object-cover h-full w-full" />
|
|
162
|
+
<section className="size-full shrink-0 overflow-hidden rounded-[8px] border border-border-presentation-global-primary bg-white">
|
|
163
|
+
<img alt="" src={src} className="h-full w-full object-cover object-center" />
|
|
189
164
|
</section>
|
|
190
165
|
);
|
|
191
166
|
}
|
|
@@ -56,6 +56,11 @@ export const Label = React.forwardRef<HTMLLabelElement, Props>(
|
|
|
56
56
|
) => {
|
|
57
57
|
const Component = Tag;
|
|
58
58
|
|
|
59
|
+
// When there's no label text at all, skip the label container entirely so its
|
|
60
|
+
// sibling `gap-[8px]` doesn't leave an empty gap above the children (e.g. a
|
|
61
|
+
// label-less Textarea/Input should sit flush).
|
|
62
|
+
const hasLabelContent = Boolean(label || secondaryLabel || requiredLabel);
|
|
63
|
+
|
|
59
64
|
return (
|
|
60
65
|
<Component
|
|
61
66
|
data-theme={theme}
|
|
@@ -72,48 +77,50 @@ export const Label = React.forwardRef<HTMLLabelElement, Props>(
|
|
|
72
77
|
)}
|
|
73
78
|
{...props}
|
|
74
79
|
>
|
|
75
|
-
|
|
76
|
-
{
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
"
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
"
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
80
|
+
{hasLabelContent && (
|
|
81
|
+
<div className={cn(labelComponentVariants({ labelDirections }), labelsClassName)}>
|
|
82
|
+
{label && (
|
|
83
|
+
<p
|
|
84
|
+
className={cn(
|
|
85
|
+
"text-start",
|
|
86
|
+
{
|
|
87
|
+
"typography-body-small-regular": size === "S",
|
|
88
|
+
"typography-body-medium-regular": size === "M",
|
|
89
|
+
"typography-body-large-regular": size === "L",
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"text-content-presentation-global-primary": variant === "PresentationStyle",
|
|
93
|
+
"text-[#E5E5E5]": variant === "SystemStyle",
|
|
94
|
+
},
|
|
95
|
+
)}
|
|
96
|
+
>
|
|
97
|
+
{label}
|
|
98
|
+
</p>
|
|
99
|
+
)}
|
|
100
|
+
{secondaryLabel && (
|
|
101
|
+
<p
|
|
102
|
+
className={cn("text-content-presentation-global-secondary text-start", {
|
|
103
|
+
"typography-labels-small-regular": size === "S",
|
|
104
|
+
"typography-labels-medium-regular": size === "M",
|
|
105
|
+
"typography-body-small-regular": size === "L",
|
|
106
|
+
})}
|
|
107
|
+
>
|
|
108
|
+
{secondaryLabel}
|
|
109
|
+
</p>
|
|
110
|
+
)}
|
|
111
|
+
{requiredLabel && (
|
|
112
|
+
<p
|
|
113
|
+
className={cn("text-content-presentation-state-negative text-start", {
|
|
114
|
+
"typography-labels-small-medium": size === "S",
|
|
115
|
+
"typography-labels-medium-medium": size === "M",
|
|
116
|
+
"typography-body-small-medium": size === "L",
|
|
117
|
+
})}
|
|
118
|
+
>
|
|
119
|
+
{requiredLabel}
|
|
120
|
+
</p>
|
|
121
|
+
)}
|
|
122
|
+
</div>
|
|
123
|
+
)}
|
|
117
124
|
{children}
|
|
118
125
|
</Component>
|
|
119
126
|
);
|
|
@@ -20,6 +20,8 @@ export const RadioCard = forwardRef<HTMLInputElement, Props>(
|
|
|
20
20
|
data-theme={theme}
|
|
21
21
|
htmlFor={id}
|
|
22
22
|
as="label"
|
|
23
|
+
// The whole card is the radio's label — an interactive target, so it keeps the hover.
|
|
24
|
+
variant="clickable"
|
|
23
25
|
className={cn(
|
|
24
26
|
"relative [&>button]:data-[state=checked]:!border-none",
|
|
25
27
|
'[&:has(button[data-state="checked"])]:border-border-presentation-state-focus',
|