UNPKG

@fifteen/design-system-vue

Version:

Vue 3 (Composition API + Typescript) implementation of the Fifteen Design System

31 lines (30 loc) 539 B
import { buildFormatLongFn as t } from "../../_lib/buildFormatLongFn.js"; const m = { full: "EEEE, d MMMM y 'г.'", long: "d MMMM y 'г.'", medium: "d MMM y 'г.'", short: "dd.MM.y" }, o = { full: "H:mm:ss zzzz", long: "H:mm:ss z", medium: "H:mm:ss", short: "H:mm" }, d = { any: "{{date}}, {{time}}" }, s = { date: t({ formats: m, defaultWidth: "full" }), time: t({ formats: o, defaultWidth: "full" }), dateTime: t({ formats: d, defaultWidth: "any" }) }; export { s as formatLong };