@freshworks/crayons
Version:
Crayons Web Components library
63 lines (57 loc) • 1.47 kB
JavaScript
import { f as formatDistance } from './index-f5fe0470.js';
import { f as formatRelative, l as localize, m as match } from './index-3a85bc08.js';
import { b as buildFormatLongFn } from './index-dc611d24.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 (India).
* @language English
* @iso-639-2 eng
* @author Galeel Bhasha Satthar [@gbhasha]{@link https://github.com/gbhasha}
*/
var locale = {
code: 'en-IN',
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1,
// Monday is the first day of the week.
firstWeekContainsDate: 4 // The week that contains Jan 4th is the first week of the year.
}
};
export default locale;