@freshworks/crayons
Version:
Crayons Web Components library
79 lines (72 loc) • 1.87 kB
JavaScript
import { f as formatDistance, l as localize, m as match } from './index-e1f984e1.js';
import { b as buildFormatLongFn } from './index-dc611d24.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'
})
};
var formatRelativeLocale = {
lastWeek: "eeee 'la semaine dernière à' p",
yesterday: "'hier à' p",
today: "'aujourd’hui à' p",
tomorrow: "'demain à' p'",
nextWeek: "eeee 'la semaine prochaine à' p",
other: 'P'
};
var formatRelative = function formatRelative(token, _date, _baseDate, _options) {
return formatRelativeLocale[token];
};
// Same as fr
/**
* @type {Locale}
* @category Locales
* @summary French locale (Switzerland).
* @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}
* @author Van Vuong Ngo [@vanvuongngo]{@link https://github.com/vanvuongngo}
* @author Alex Hoeing [@dcbn]{@link https://github.com/dcbn}
*/
var locale = {
code: 'fr-CH',
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1
/* Monday */
,
firstWeekContainsDate: 4
}
};
export default locale;