Theme
FormatDate
Formats dates with Intl.DateTimeFormat
Start Here
Start from the smallest working snippet, then move to interactive examples and the full API contract below.
Styled quick start
Copy this entrypoint first. It includes the imports required to get the component on screen.
svelte
<script lang="ts">
import '@dryui/ui/themes/default.css';
import '@dryui/ui/themes/dark.css';
import { FormatDate } from '@dryui/ui';
</script>
<FormatDate>Content</FormatDate>Import options
Root package
ts
import { FormatDate } from '@dryui/ui'Per-component subpath
ts
import { FormatDate } from '@dryui/ui/format-date'Customize
Use the interactive examples to see common variants, states, and composition patterns before building your own.
Default
svelte
<FormatDate date={new Date()} />Date Styles
svelte
<FormatDate date={new Date()} dateStyle="full" />
<FormatDate date={new Date()} dateStyle="long" />
<FormatDate date={new Date()} dateStyle="medium" />
<FormatDate date={new Date()} dateStyle="short" />Custom Format
svelte
<FormatDate date={new Date()} year="numeric" month="long" day="numeric" />Date and Time
svelte
<FormatDate date={new Date()} dateStyle="medium" timeStyle="short" />Compose
The full API contract lives here: props, CSS variables, and the public data attributes you can target when styling.
| Prop | Type | Default | Required | Bindable |
|---|---|---|---|---|
date | Date | string | number | — | ✓ | — |
locale | string | — | — | — |
weekday | longshortnarrow | — | — | — |
era | longshortnarrow | — | — | — |
year | numeric2-digit | — | — | — |
month | numeric2-digitlongshortnarrow | — | — | — |
day | numeric2-digit | — | — | — |
hour | numeric2-digit | — | — | — |
minute | numeric2-digit | — | — | — |
second | numeric2-digit | — | — | — |
timeZoneName | longshort | — | — | — |
timeZone | string | — | — | — |
hourCycle | h11h12h23h24 | — | — | — |
dateStyle | fulllongmediumshort | — | — | — |
timeStyle | fulllongmediumshort | — | — | — |
Forwards <time> attributes via rest props. Common examples: datetime, id, aria-label.