| 123456789101112131415161718192021222324252627282930313233343536373839 |
- import { buildFormatLongFn } from "../../_lib/buildFormatLongFn.mjs";
- const dateFormats = {
- full: "y 'm'. MMMM d 'd'., EEEE",
- long: "y 'm'. MMMM d 'd'.",
- medium: "y-MM-dd",
- short: "y-MM-dd",
- };
- const timeFormats = {
- full: "HH:mm:ss zzzz",
- long: "HH:mm:ss z",
- medium: "HH:mm:ss",
- short: "HH:mm",
- };
- const dateTimeFormats = {
- full: "{{date}} {{time}}",
- long: "{{date}} {{time}}",
- medium: "{{date}} {{time}}",
- short: "{{date}} {{time}}",
- };
- export const formatLong = {
- date: buildFormatLongFn({
- formats: dateFormats,
- defaultWidth: "full",
- }),
- time: buildFormatLongFn({
- formats: timeFormats,
- defaultWidth: "full",
- }),
- dateTime: buildFormatLongFn({
- formats: dateTimeFormats,
- defaultWidth: "full",
- }),
- };
|