UNPKG

@fifteen/design-system-vue

Version:

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

34 lines (33 loc) 649 B
import { buildFormatLongFn as t } from "../../_lib/buildFormatLongFn.js"; const m = { full: "EEEE do MMMM y", long: "do MMMM y", medium: "d MMM y", short: "dd/MM/yyyy" }, o = { full: "h:mm:ss a", long: "h:mm:ss a", medium: "h:mm:ss a", short: "h:mm a" }, a = { full: "{{date}} 'ម៉ោង' {{time}}", long: "{{date}} 'ម៉ោង' {{time}}", medium: "{{date}}, {{time}}", short: "{{date}}, {{time}}" }, e = { date: t({ formats: m, defaultWidth: "full" }), time: t({ formats: o, defaultWidth: "full" }), dateTime: t({ formats: a, defaultWidth: "full" }) }; export { e as formatLong };