@freshworks/crayons
Version:
Crayons Web Components library
63 lines (58 loc) • 1.38 kB
JavaScript
import { f as formatDistance } from './index-f5fe0470.js';
import { b as buildFormatLongFn } from './index-dc611d24.js';
import { f as formatRelative, l as localize, m as match } from './index-3a85bc08.js';
var dateFormats = {
full: 'EEEE, d MMMM yyyy',
"long": 'd MMMM yyyy',
medium: 'd MMM yyyy',
"short": 'dd/MM/yyyy'
};
var timeFormats = {
full: 'h:mm:ss a zzzz',
"long": 'h:mm:ss a z',
medium: 'h:mm:ss a',
"short": 'h:mm a'
};
var dateTimeFormats = {
full: "{{date}} 'at' {{time}}",
"long": "{{date}} 'at' {{time}}",
medium: '{{date}}, {{time}}',
"short": '{{date}}, {{time}}'
};
var formatLong = {
date: buildFormatLongFn({
formats: dateFormats,
defaultWidth: 'full'
}),
time: buildFormatLongFn({
formats: timeFormats,
defaultWidth: 'full'
}),
dateTime: buildFormatLongFn({
formats: dateTimeFormats,
defaultWidth: 'full'
})
};
/**
* @type {Locale}
* @category Locales
* @summary English locale (Australia).
* @language English
* @iso-639-2 eng
* @author Julien Malige [@JulienMalige]{@link https://github.com/JulienMalige}
*/
var locale = {
code: 'en-AU',
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1
/* Monday */
,
firstWeekContainsDate: 4
}
};
export default locale;