@freshworks/crayons
Version:
Crayons Web Components library
64 lines (59 loc) • 1.4 kB
JavaScript
import { f as formatDistance, l as localize, m as match } from './index-e1f984e1.js';
import { b as buildFormatLongFn } from './index-dc611d24.js';
import { f as formatRelative } from './index-5f0fd88a.js';
var dateFormats = {
full: 'EEEE d MMMM y',
"long": 'd MMMM y',
medium: 'd MMM y',
"short": 'dd/MM/y'
};
var timeFormats = {
full: 'HH:mm:ss zzzz',
"long": 'HH:mm:ss z',
medium: 'HH:mm:ss',
"short": 'HH:mm'
};
var dateTimeFormats = {
full: "{{date}} 'à' {{time}}",
"long": "{{date}} 'à' {{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 French locale.
* @language French
* @iso-639-2 fra
* @author Jean Dupouy [@izeau]{@link https://github.com/izeau}
* @author François B [@fbonzon]{@link https://github.com/fbonzon}
*/
var locale = {
code: 'fr',
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1
/* Monday */
,
firstWeekContainsDate: 4
}
};
export default locale;