Inputs
Amount Field
An amount field: thousands separators appear on blur rather than under the caret, with common amounts beside it.
- input
- currency
- money
- format
Preview
1440pxHost theme
Use it with AI
- 1. Copy the link.
- 2. Write to your agent in your own words and drop the link into the sentence.
- 3. The agent opens the link and installs the component from the registry.
put this in the header: https://vibeui.ru/c/currency-001?lang=en
$
Minimum $5, credited within a minuteShow the full instructions
What the link says, spelled out. Use it when your agent cannot open links — paste this text instead.
# Install and place "currency-001" (Amount Field) from VibeUI
## 1. Install first — do not skip, do not recreate
Run this exact command before writing any code:
npx shadcn@latest add https://vibeui.ru/r/currency-001.json
Registry item: https://vibeui.ru/r/currency-001.json
Installs to: components/vibeui/currency-001.tsx (the exact path follows this project's components.json aliases).
npm dependencies: none.
Registry dependencies: none.
Install it from the registry. Do not recreate it from the description,
do not substitute a similar component from another library, and do not
rewrite it to match the project's existing style.
## 2. What it is
An amount field: thousands separators appear on blur rather than under the caret, with common amounts beside it.
An amount field: a large right-aligned value, the currency sign beside it, grouping applied on blur and quick-amount buttons. Zero dependencies, one file.
## 3. How to use it
import { Currency001 } from "@/components/vibeui/currency-001"
<Currency001 currency="$" presets={[10, 50]} onChange={setAmount} />
Read the installed file for the full prop list.
## 4. Where to place it
This is a small inline component. Put it exactly where the user asked,
inside the existing markup. Do not create a new page, section or
wrapper for it. If a similar control already sits in that spot,
replace it instead of adding a second one.
Placement: ___
(The user fills this line in. If it is still blank, ask where to put it
instead of guessing.)
## 5. Keep exactly as installed
- the local --vibeui-currency-001-* palette — do not swap it for your theme tokens
- formatting on blur: separators under the caret jump and fight editing
- the numeric keypad through inputMode
- right alignment and tabular figures — that is how amounts get compared
- the quick amounts beside the field: people usually pick a round number
- the currency sign outside the input so it cannot be deleted
## 6. You may change
- currency — the sign
- presets — the common amounts
- label and hint
- the accent through the accent prop
## 7. Rules
- Decimals are unsupported: they need a separator and different parsing.
- The formatting locale is hardcoded to ru-RU: change it with the currency.
- The minimum is enforced by the form: the hint guarantees nothing.
- Do not lift the CSS variables into globals.css: the component has to stay a single file.
## 8. Verify
- it renders with no console errors;
- it looks like the preview on the VibeUI page you copied this from;
- if it does not, you changed something listed in section 5 — put it back.For developers
npx shadcn@latest add https://vibeui.ru/r/currency-001.jsonhttps://vibeui.ru/r/currency-001.jsonКомпонент самодостаточен: один файл, без зависимостей, собственная палитра в локальных переменных --vibeui-currency-001-*. Клиентский: "use client". Во время ввода в поле остаются только цифры, форматирование через toLocaleString происходит на blur. Кнопки быстрых сумм объявлены aria-pressed. Значение выравнено по правому краю табличными цифрами.
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
"use client"
import { useId, useState } from "react"
import type { ComponentPropsWithoutRef, CSSProperties } from "react"
export type Currency001Props = Omit<
ComponentPropsWithoutRef<"div">,
"children" | "onChange"
> & {
label?: string
currency?: string
hint?: string
presets?: number[]
onChange?: (value: number) => void
accent?: string
}
// Идея компонента: сумма, которая форматируется по уходу из поля, а не на
// каждой букве. Разряды, расставляемые прямо во время ввода, прыгают под
// курсором и мешают править число; по blur они появляются один раз и остаются.
// Быстрые суммы рядом: чаще всего вводят одно из нескольких круглых значений.
const STYLES = `
:where([data-vibeui-block="currency-001"]){
--vibeui-currency-001-bg:oklch(1 0 0);
--vibeui-currency-001-fg:oklch(0.22 0.014 265);
--vibeui-currency-001-muted:oklch(0.56 0.014 265);
--vibeui-currency-001-border:oklch(0.9 0.006 265);
--vibeui-currency-001-field:oklch(0.985 0.002 265);
--vibeui-currency-001-accent:oklch(0.55 0.17 265);
--vibeui-currency-001-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="currency-001"]{
display:flex;flex-direction:column;gap:0.5rem;
width:100%;max-width:20rem;box-sizing:border-box;padding:0.875rem;
background:var(--vibeui-currency-001-bg);
border:1px solid var(--vibeui-currency-001-border);border-radius:0.875rem;
font-family:var(--vibeui-currency-001-font);color:var(--vibeui-currency-001-fg);
}
[data-vibeui-block="currency-001"] label{font-size:0.8125rem;font-weight:600}
[data-vibeui-block="currency-001"] [data-part="row"]{
display:flex;align-items:center;gap:0.5rem;
box-sizing:border-box;height:3rem;padding:0 0.875rem;
border:1px solid var(--vibeui-currency-001-border);border-radius:0.75rem;
background:var(--vibeui-currency-001-field);
}
[data-vibeui-block="currency-001"] [data-part="row"]:focus-within{
outline:2px solid var(--vibeui-currency-001-accent);outline-offset:1px;border-color:transparent;
}
[data-vibeui-block="currency-001"] input{
flex:1;min-width:0;height:100%;border:0;background:transparent;color:inherit;
font:inherit;font-size:1.25rem;font-weight:680;
font-variant-numeric:tabular-nums;text-align:right;
}
[data-vibeui-block="currency-001"] input:focus{outline:none}
[data-vibeui-block="currency-001"] [data-part="currency"]{
flex:none;font-size:1.125rem;font-weight:650;color:var(--vibeui-currency-001-muted);
}
/* Быстрые суммы: обычно вводят одно из нескольких круглых значений. */
[data-vibeui-block="currency-001"] [data-part="presets"]{display:flex;gap:0.375rem;flex-wrap:wrap}
[data-vibeui-block="currency-001"] button{
appearance:none;cursor:pointer;
height:1.875rem;padding:0 0.625rem;
border:1px solid var(--vibeui-currency-001-border);border-radius:9999px;
background:transparent;color:inherit;
font:inherit;font-size:0.75rem;font-weight:600;font-variant-numeric:tabular-nums;
}
[data-vibeui-block="currency-001"] button:hover{background:oklch(0.96 0.004 265)}
[data-vibeui-block="currency-001"] button:focus-visible{outline:2px solid var(--vibeui-currency-001-accent);outline-offset:2px}
[data-vibeui-block="currency-001"] [data-part="hint"]{font-size:0.75rem;line-height:1.4;color:var(--vibeui-currency-001-muted)}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="currency-001"] *{animation:none!important;transition:none!important}}
`
const DEFAULT_PRESETS = [1000, 2500, 5000, 10000]
// Разряды ставятся по уходу из поля: во время ввода они прыгают под курсором.
function pretty(value: number) {
return value ? value.toLocaleString("ru-RU") : ""
}
/**
* Поле суммы: разряды появляются по уходу из поля, рядом быстрые значения.
* Один файл, ноль зависимостей, собственная палитра.
*/
export function Currency001({
label = "Сумма пополнения",
currency = "₽",
hint = "Минимум 100 ₽, зачислится в течение минуты",
presets = DEFAULT_PRESETS,
onChange,
accent,
className,
style,
...props
}: Currency001Props) {
const id = useId()
const [amount, setAmount] = useState(2500)
const [text, setText] = useState(pretty(2500))
const palette = {
...(accent ? { "--vibeui-currency-001-accent": accent } : null),
...style,
} as CSSProperties
const apply = (value: number) => {
setAmount(value)
setText(pretty(value))
onChange?.(value)
}
return (
<>
<style href="vibeui-currency-001" precedence="medium">
{STYLES}
</style>
<div
{...props}
data-vibeui-block="currency-001"
className={className}
style={palette}
>
<label htmlFor={id}>{label}</label>
<div data-part="row">
<input
id={id}
type="text"
inputMode="numeric"
value={text}
aria-describedby={hint ? `${id}-hint` : undefined}
onChange={(event) => {
const digits = event.target.value.replace(/\D/g, "")
setText(digits)
setAmount(Number(digits) || 0)
}}
onBlur={() => apply(Number(text.replace(/\D/g, "")) || 0)}
/>
<span data-part="currency">{currency}</span>
</div>
<div data-part="presets">
{presets.map((preset) => (
<button
key={preset}
type="button"
aria-pressed={amount === preset}
onClick={() => apply(preset)}
>
{pretty(preset)} {currency}
</button>
))}
</div>
{hint ? (
<span data-part="hint" id={`${id}-hint`}>
{hint}
</span>
) : null}
</div>
</>
)
}