642 lines
20 KiB
JavaScript
642 lines
20 KiB
JavaScript
(() => {
|
|
var _window$dateFns;function ownKeys(e, r) {var t = Object.keys(e);if (Object.getOwnPropertySymbols) {var o = Object.getOwnPropertySymbols(e);r && (o = o.filter(function (r) {return Object.getOwnPropertyDescriptor(e, r).enumerable;})), t.push.apply(t, o);}return t;}function _objectSpread(e) {for (var r = 1; r < arguments.length; r++) {var t = null != arguments[r] ? arguments[r] : {};r % 2 ? ownKeys(Object(t), !0).forEach(function (r) {_defineProperty(e, r, t[r]);}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) {Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));});}return e;}function _defineProperty(obj, key, value) {key = _toPropertyKey(key);if (key in obj) {Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true });} else {obj[key] = value;}return obj;}function _toPropertyKey(t) {var i = _toPrimitive(t, "string");return "symbol" == _typeof(i) ? i : String(i);}function _toPrimitive(t, r) {if ("object" != _typeof(t) || !t) return t;var e = t[Symbol.toPrimitive];if (void 0 !== e) {var i = e.call(t, r || "default");if ("object" != _typeof(i)) return i;throw new TypeError("@@toPrimitive must return a primitive value.");}return ("string" === r ? String : Number)(t);}function _slicedToArray(arr, i) {return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();}function _nonIterableRest() {throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");}function _unsupportedIterableToArray(o, minLen) {if (!o) return;if (typeof o === "string") return _arrayLikeToArray(o, minLen);var n = Object.prototype.toString.call(o).slice(8, -1);if (n === "Object" && o.constructor) n = o.constructor.name;if (n === "Map" || n === "Set") return Array.from(o);if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);}function _arrayLikeToArray(arr, len) {if (len == null || len > arr.length) len = arr.length;for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];return arr2;}function _iterableToArrayLimit(r, l) {var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];if (null != t) {var e,n,i,u,a = [],f = !0,o = !1;try {if (i = (t = t.call(r)).next, 0 === l) {if (Object(t) !== t) return;f = !1;} else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0);} catch (r) {o = !0, n = r;} finally {try {if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return;} finally {if (o) throw n;}}return a;}}function _arrayWithHoles(arr) {if (Array.isArray(arr)) return arr;}function _typeof(o) {"@babel/helpers - typeof";return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {return typeof o;} : function (o) {return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;}, _typeof(o);}var __defProp = Object.defineProperty;
|
|
var __export = function __export(target, all) {
|
|
for (var name in all)
|
|
__defProp(target, name, {
|
|
get: all[name],
|
|
enumerable: true,
|
|
configurable: true,
|
|
set: function set(newValue) {return all[name] = function () {return newValue;};}
|
|
});
|
|
};
|
|
|
|
// lib/locale/it/_lib/formatDistance.js
|
|
var formatDistanceLocale = {
|
|
lessThanXSeconds: {
|
|
one: "meno di un secondo",
|
|
other: "meno di {{count}} secondi"
|
|
},
|
|
xSeconds: {
|
|
one: "un secondo",
|
|
other: "{{count}} secondi"
|
|
},
|
|
halfAMinute: "alcuni secondi",
|
|
lessThanXMinutes: {
|
|
one: "meno di un minuto",
|
|
other: "meno di {{count}} minuti"
|
|
},
|
|
xMinutes: {
|
|
one: "un minuto",
|
|
other: "{{count}} minuti"
|
|
},
|
|
aboutXHours: {
|
|
one: "circa un'ora",
|
|
other: "circa {{count}} ore"
|
|
},
|
|
xHours: {
|
|
one: "un'ora",
|
|
other: "{{count}} ore"
|
|
},
|
|
xDays: {
|
|
one: "un giorno",
|
|
other: "{{count}} giorni"
|
|
},
|
|
aboutXWeeks: {
|
|
one: "circa una settimana",
|
|
other: "circa {{count}} settimane"
|
|
},
|
|
xWeeks: {
|
|
one: "una settimana",
|
|
other: "{{count}} settimane"
|
|
},
|
|
aboutXMonths: {
|
|
one: "circa un mese",
|
|
other: "circa {{count}} mesi"
|
|
},
|
|
xMonths: {
|
|
one: "un mese",
|
|
other: "{{count}} mesi"
|
|
},
|
|
aboutXYears: {
|
|
one: "circa un anno",
|
|
other: "circa {{count}} anni"
|
|
},
|
|
xYears: {
|
|
one: "un anno",
|
|
other: "{{count}} anni"
|
|
},
|
|
overXYears: {
|
|
one: "pi\xF9 di un anno",
|
|
other: "pi\xF9 di {{count}} anni"
|
|
},
|
|
almostXYears: {
|
|
one: "quasi un anno",
|
|
other: "quasi {{count}} anni"
|
|
}
|
|
};
|
|
var formatDistance = function formatDistance(token, count, options) {
|
|
var result;
|
|
var tokenValue = formatDistanceLocale[token];
|
|
if (typeof tokenValue === "string") {
|
|
result = tokenValue;
|
|
} else if (count === 1) {
|
|
result = tokenValue.one;
|
|
} else {
|
|
result = tokenValue.other.replace("{{count}}", count.toString());
|
|
}
|
|
if (options !== null && options !== void 0 && options.addSuffix) {
|
|
if (options.comparison && options.comparison > 0) {
|
|
return "tra " + result;
|
|
} else {
|
|
return result + " fa";
|
|
}
|
|
}
|
|
return result;
|
|
};
|
|
|
|
// lib/locale/_lib/buildFormatLongFn.js
|
|
function buildFormatLongFn(args) {
|
|
return function () {var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
var width = options.width ? String(options.width) : args.defaultWidth;
|
|
var format = args.formats[width] || args.formats[args.defaultWidth];
|
|
return format;
|
|
};
|
|
}
|
|
|
|
// lib/locale/it/_lib/formatLong.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"
|
|
})
|
|
};
|
|
|
|
// lib/constants.js
|
|
var daysInWeek = 7;
|
|
var daysInYear = 365.2425;
|
|
var maxTime = Math.pow(10, 8) * 24 * 60 * 60 * 1000;
|
|
var minTime = -maxTime;
|
|
var millisecondsInWeek = 604800000;
|
|
var millisecondsInDay = 86400000;
|
|
var millisecondsInMinute = 60000;
|
|
var millisecondsInHour = 3600000;
|
|
var millisecondsInSecond = 1000;
|
|
var minutesInYear = 525600;
|
|
var minutesInMonth = 43200;
|
|
var minutesInDay = 1440;
|
|
var minutesInHour = 60;
|
|
var monthsInQuarter = 3;
|
|
var monthsInYear = 12;
|
|
var quartersInYear = 4;
|
|
var secondsInHour = 3600;
|
|
var secondsInMinute = 60;
|
|
var secondsInDay = secondsInHour * 24;
|
|
var secondsInWeek = secondsInDay * 7;
|
|
var secondsInYear = secondsInDay * daysInYear;
|
|
var secondsInMonth = secondsInYear / 12;
|
|
var secondsInQuarter = secondsInMonth * 3;
|
|
var constructFromSymbol = Symbol.for("constructDateFrom");
|
|
|
|
// lib/constructFrom.js
|
|
function constructFrom(date, value) {
|
|
if (typeof date === "function")
|
|
return date(value);
|
|
if (date && _typeof(date) === "object" && constructFromSymbol in date)
|
|
return date[constructFromSymbol](value);
|
|
if (date instanceof Date)
|
|
return new date.constructor(value);
|
|
return new Date(value);
|
|
}
|
|
|
|
// lib/_lib/normalizeDates.js
|
|
function normalizeDates(context) {for (var _len = arguments.length, dates = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {dates[_key - 1] = arguments[_key];}
|
|
var normalize = constructFrom.bind(null, context || dates.find(function (date) {return _typeof(date) === "object";}));
|
|
return dates.map(normalize);
|
|
}
|
|
|
|
// lib/_lib/defaultOptions.js
|
|
function getDefaultOptions() {
|
|
return defaultOptions;
|
|
}
|
|
function setDefaultOptions(newOptions) {
|
|
defaultOptions = newOptions;
|
|
}
|
|
var defaultOptions = {};
|
|
|
|
// lib/toDate.js
|
|
function toDate(argument, context) {
|
|
return constructFrom(context || argument, argument);
|
|
}
|
|
|
|
// lib/startOfWeek.js
|
|
function startOfWeek(date, options) {var _ref, _ref2, _ref3, _options$weekStartsOn, _options$locale, _defaultOptions3$loca;
|
|
var defaultOptions3 = getDefaultOptions();
|
|
var weekStartsOn = (_ref = (_ref2 = (_ref3 = (_options$weekStartsOn = options === null || options === void 0 ? void 0 : options.weekStartsOn) !== null && _options$weekStartsOn !== void 0 ? _options$weekStartsOn : options === null || options === void 0 || (_options$locale = options.locale) === null || _options$locale === void 0 || (_options$locale = _options$locale.options) === null || _options$locale === void 0 ? void 0 : _options$locale.weekStartsOn) !== null && _ref3 !== void 0 ? _ref3 : defaultOptions3.weekStartsOn) !== null && _ref2 !== void 0 ? _ref2 : (_defaultOptions3$loca = defaultOptions3.locale) === null || _defaultOptions3$loca === void 0 || (_defaultOptions3$loca = _defaultOptions3$loca.options) === null || _defaultOptions3$loca === void 0 ? void 0 : _defaultOptions3$loca.weekStartsOn) !== null && _ref !== void 0 ? _ref : 0;
|
|
var _date = toDate(date, options === null || options === void 0 ? void 0 : options.in);
|
|
var day = _date.getDay();
|
|
var diff = (day < weekStartsOn ? 7 : 0) + day - weekStartsOn;
|
|
_date.setDate(_date.getDate() - diff);
|
|
_date.setHours(0, 0, 0, 0);
|
|
return _date;
|
|
}
|
|
|
|
// lib/isSameWeek.js
|
|
function isSameWeek(laterDate, earlierDate, options) {
|
|
var _normalizeDates = normalizeDates(options === null || options === void 0 ? void 0 : options.in, laterDate, earlierDate),_normalizeDates2 = _slicedToArray(_normalizeDates, 2),laterDate_ = _normalizeDates2[0],earlierDate_ = _normalizeDates2[1];
|
|
return +startOfWeek(laterDate_, options) === +startOfWeek(earlierDate_, options);
|
|
}
|
|
|
|
// lib/locale/it/_lib/formatRelative.js
|
|
function _lastWeek(day) {
|
|
switch (day) {
|
|
case 0:
|
|
return "'domenica scorsa alle' p";
|
|
default:
|
|
return "'" + weekdays[day] + " scorso alle' p";
|
|
}
|
|
}
|
|
function thisWeek(day) {
|
|
return "'" + weekdays[day] + " alle' p";
|
|
}
|
|
function _nextWeek(day) {
|
|
switch (day) {
|
|
case 0:
|
|
return "'domenica prossima alle' p";
|
|
default:
|
|
return "'" + weekdays[day] + " prossimo alle' p";
|
|
}
|
|
}
|
|
var weekdays = [
|
|
"domenica",
|
|
"luned\xEC",
|
|
"marted\xEC",
|
|
"mercoled\xEC",
|
|
"gioved\xEC",
|
|
"venerd\xEC",
|
|
"sabato"];
|
|
|
|
var formatRelativeLocale = {
|
|
lastWeek: function lastWeek(date, baseDate, options) {
|
|
var day = date.getDay();
|
|
if (isSameWeek(date, baseDate, options)) {
|
|
return thisWeek(day);
|
|
} else {
|
|
return _lastWeek(day);
|
|
}
|
|
},
|
|
yesterday: "'ieri alle' p",
|
|
today: "'oggi alle' p",
|
|
tomorrow: "'domani alle' p",
|
|
nextWeek: function nextWeek(date, baseDate, options) {
|
|
var day = date.getDay();
|
|
if (isSameWeek(date, baseDate, options)) {
|
|
return thisWeek(day);
|
|
} else {
|
|
return _nextWeek(day);
|
|
}
|
|
},
|
|
other: "P"
|
|
};
|
|
var formatRelative = function formatRelative(token, date, baseDate, options) {
|
|
var format = formatRelativeLocale[token];
|
|
if (typeof format === "function") {
|
|
return format(date, baseDate, options);
|
|
}
|
|
return format;
|
|
};
|
|
|
|
// lib/locale/_lib/buildLocalizeFn.js
|
|
function buildLocalizeFn(args) {
|
|
return function (value, options) {
|
|
var context = options !== null && options !== void 0 && options.context ? String(options.context) : "standalone";
|
|
var valuesArray;
|
|
if (context === "formatting" && args.formattingValues) {
|
|
var defaultWidth = args.defaultFormattingWidth || args.defaultWidth;
|
|
var width = options !== null && options !== void 0 && options.width ? String(options.width) : defaultWidth;
|
|
valuesArray = args.formattingValues[width] || args.formattingValues[defaultWidth];
|
|
} else {
|
|
var _defaultWidth = args.defaultWidth;
|
|
var _width = options !== null && options !== void 0 && options.width ? String(options.width) : args.defaultWidth;
|
|
valuesArray = args.values[_width] || args.values[_defaultWidth];
|
|
}
|
|
var index = args.argumentCallback ? args.argumentCallback(value) : value;
|
|
return valuesArray[index];
|
|
};
|
|
}
|
|
|
|
// lib/locale/it/_lib/localize.js
|
|
var eraValues = {
|
|
narrow: ["aC", "dC"],
|
|
abbreviated: ["a.C.", "d.C."],
|
|
wide: ["avanti Cristo", "dopo Cristo"]
|
|
};
|
|
var quarterValues = {
|
|
narrow: ["1", "2", "3", "4"],
|
|
abbreviated: ["T1", "T2", "T3", "T4"],
|
|
wide: ["1\xBA trimestre", "2\xBA trimestre", "3\xBA trimestre", "4\xBA trimestre"]
|
|
};
|
|
var monthValues = {
|
|
narrow: ["G", "F", "M", "A", "M", "G", "L", "A", "S", "O", "N", "D"],
|
|
abbreviated: [
|
|
"gen",
|
|
"feb",
|
|
"mar",
|
|
"apr",
|
|
"mag",
|
|
"giu",
|
|
"lug",
|
|
"ago",
|
|
"set",
|
|
"ott",
|
|
"nov",
|
|
"dic"],
|
|
|
|
wide: [
|
|
"gennaio",
|
|
"febbraio",
|
|
"marzo",
|
|
"aprile",
|
|
"maggio",
|
|
"giugno",
|
|
"luglio",
|
|
"agosto",
|
|
"settembre",
|
|
"ottobre",
|
|
"novembre",
|
|
"dicembre"]
|
|
|
|
};
|
|
var dayValues = {
|
|
narrow: ["D", "L", "M", "M", "G", "V", "S"],
|
|
short: ["dom", "lun", "mar", "mer", "gio", "ven", "sab"],
|
|
abbreviated: ["dom", "lun", "mar", "mer", "gio", "ven", "sab"],
|
|
wide: [
|
|
"domenica",
|
|
"luned\xEC",
|
|
"marted\xEC",
|
|
"mercoled\xEC",
|
|
"gioved\xEC",
|
|
"venerd\xEC",
|
|
"sabato"]
|
|
|
|
};
|
|
var dayPeriodValues = {
|
|
narrow: {
|
|
am: "m.",
|
|
pm: "p.",
|
|
midnight: "mezzanotte",
|
|
noon: "mezzogiorno",
|
|
morning: "mattina",
|
|
afternoon: "pomeriggio",
|
|
evening: "sera",
|
|
night: "notte"
|
|
},
|
|
abbreviated: {
|
|
am: "AM",
|
|
pm: "PM",
|
|
midnight: "mezzanotte",
|
|
noon: "mezzogiorno",
|
|
morning: "mattina",
|
|
afternoon: "pomeriggio",
|
|
evening: "sera",
|
|
night: "notte"
|
|
},
|
|
wide: {
|
|
am: "AM",
|
|
pm: "PM",
|
|
midnight: "mezzanotte",
|
|
noon: "mezzogiorno",
|
|
morning: "mattina",
|
|
afternoon: "pomeriggio",
|
|
evening: "sera",
|
|
night: "notte"
|
|
}
|
|
};
|
|
var formattingDayPeriodValues = {
|
|
narrow: {
|
|
am: "m.",
|
|
pm: "p.",
|
|
midnight: "mezzanotte",
|
|
noon: "mezzogiorno",
|
|
morning: "di mattina",
|
|
afternoon: "del pomeriggio",
|
|
evening: "di sera",
|
|
night: "di notte"
|
|
},
|
|
abbreviated: {
|
|
am: "AM",
|
|
pm: "PM",
|
|
midnight: "mezzanotte",
|
|
noon: "mezzogiorno",
|
|
morning: "di mattina",
|
|
afternoon: "del pomeriggio",
|
|
evening: "di sera",
|
|
night: "di notte"
|
|
},
|
|
wide: {
|
|
am: "AM",
|
|
pm: "PM",
|
|
midnight: "mezzanotte",
|
|
noon: "mezzogiorno",
|
|
morning: "di mattina",
|
|
afternoon: "del pomeriggio",
|
|
evening: "di sera",
|
|
night: "di notte"
|
|
}
|
|
};
|
|
var ordinalNumber = function ordinalNumber(dirtyNumber, _options) {
|
|
var number = Number(dirtyNumber);
|
|
return String(number);
|
|
};
|
|
var localize = {
|
|
ordinalNumber: ordinalNumber,
|
|
era: buildLocalizeFn({
|
|
values: eraValues,
|
|
defaultWidth: "wide"
|
|
}),
|
|
quarter: buildLocalizeFn({
|
|
values: quarterValues,
|
|
defaultWidth: "wide",
|
|
argumentCallback: function argumentCallback(quarter) {return quarter - 1;}
|
|
}),
|
|
month: buildLocalizeFn({
|
|
values: monthValues,
|
|
defaultWidth: "wide"
|
|
}),
|
|
day: buildLocalizeFn({
|
|
values: dayValues,
|
|
defaultWidth: "wide"
|
|
}),
|
|
dayPeriod: buildLocalizeFn({
|
|
values: dayPeriodValues,
|
|
defaultWidth: "wide",
|
|
formattingValues: formattingDayPeriodValues,
|
|
defaultFormattingWidth: "wide"
|
|
})
|
|
};
|
|
|
|
// lib/locale/_lib/buildMatchFn.js
|
|
function buildMatchFn(args) {
|
|
return function (string) {var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
var width = options.width;
|
|
var matchPattern = width && args.matchPatterns[width] || args.matchPatterns[args.defaultMatchWidth];
|
|
var matchResult = string.match(matchPattern);
|
|
if (!matchResult) {
|
|
return null;
|
|
}
|
|
var matchedString = matchResult[0];
|
|
var parsePatterns = width && args.parsePatterns[width] || args.parsePatterns[args.defaultParseWidth];
|
|
var key = Array.isArray(parsePatterns) ? findIndex(parsePatterns, function (pattern) {return pattern.test(matchedString);}) : findKey(parsePatterns, function (pattern) {return pattern.test(matchedString);});
|
|
var value;
|
|
value = args.valueCallback ? args.valueCallback(key) : key;
|
|
value = options.valueCallback ? options.valueCallback(value) : value;
|
|
var rest = string.slice(matchedString.length);
|
|
return { value: value, rest: rest };
|
|
};
|
|
}
|
|
function findKey(object, predicate) {
|
|
for (var key in object) {
|
|
if (Object.prototype.hasOwnProperty.call(object, key) && predicate(object[key])) {
|
|
return key;
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
function findIndex(array, predicate) {
|
|
for (var key = 0; key < array.length; key++) {
|
|
if (predicate(array[key])) {
|
|
return key;
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
|
|
// lib/locale/_lib/buildMatchPatternFn.js
|
|
function buildMatchPatternFn(args) {
|
|
return function (string) {var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
var matchResult = string.match(args.matchPattern);
|
|
if (!matchResult)
|
|
return null;
|
|
var matchedString = matchResult[0];
|
|
var parseResult = string.match(args.parsePattern);
|
|
if (!parseResult)
|
|
return null;
|
|
var value = args.valueCallback ? args.valueCallback(parseResult[0]) : parseResult[0];
|
|
value = options.valueCallback ? options.valueCallback(value) : value;
|
|
var rest = string.slice(matchedString.length);
|
|
return { value: value, rest: rest };
|
|
};
|
|
}
|
|
|
|
// lib/locale/it/_lib/match.js
|
|
var matchOrdinalNumberPattern = /^(\d+)(º)?/i;
|
|
var parseOrdinalNumberPattern = /\d+/i;
|
|
var matchEraPatterns = {
|
|
narrow: /^(aC|dC)/i,
|
|
abbreviated: /^(a\.?\s?C\.?|a\.?\s?e\.?\s?v\.?|d\.?\s?C\.?|e\.?\s?v\.?)/i,
|
|
wide: /^(avanti Cristo|avanti Era Volgare|dopo Cristo|Era Volgare)/i
|
|
};
|
|
var parseEraPatterns = {
|
|
any: [/^a/i, /^(d|e)/i]
|
|
};
|
|
var matchQuarterPatterns = {
|
|
narrow: /^[1234]/i,
|
|
abbreviated: /^t[1234]/i,
|
|
wide: /^[1234](º)? trimestre/i
|
|
};
|
|
var parseQuarterPatterns = {
|
|
any: [/1/i, /2/i, /3/i, /4/i]
|
|
};
|
|
var matchMonthPatterns = {
|
|
narrow: /^[gfmalsond]/i,
|
|
abbreviated: /^(gen|feb|mar|apr|mag|giu|lug|ago|set|ott|nov|dic)/i,
|
|
wide: /^(gennaio|febbraio|marzo|aprile|maggio|giugno|luglio|agosto|settembre|ottobre|novembre|dicembre)/i
|
|
};
|
|
var parseMonthPatterns = {
|
|
narrow: [
|
|
/^g/i,
|
|
/^f/i,
|
|
/^m/i,
|
|
/^a/i,
|
|
/^m/i,
|
|
/^g/i,
|
|
/^l/i,
|
|
/^a/i,
|
|
/^s/i,
|
|
/^o/i,
|
|
/^n/i,
|
|
/^d/i],
|
|
|
|
any: [
|
|
/^ge/i,
|
|
/^f/i,
|
|
/^mar/i,
|
|
/^ap/i,
|
|
/^mag/i,
|
|
/^gi/i,
|
|
/^l/i,
|
|
/^ag/i,
|
|
/^s/i,
|
|
/^o/i,
|
|
/^n/i,
|
|
/^d/i]
|
|
|
|
};
|
|
var matchDayPatterns = {
|
|
narrow: /^[dlmgvs]/i,
|
|
short: /^(do|lu|ma|me|gi|ve|sa)/i,
|
|
abbreviated: /^(dom|lun|mar|mer|gio|ven|sab)/i,
|
|
wide: /^(domenica|luned[i|ì]|marted[i|ì]|mercoled[i|ì]|gioved[i|ì]|venerd[i|ì]|sabato)/i
|
|
};
|
|
var parseDayPatterns = {
|
|
narrow: [/^d/i, /^l/i, /^m/i, /^m/i, /^g/i, /^v/i, /^s/i],
|
|
any: [/^d/i, /^l/i, /^ma/i, /^me/i, /^g/i, /^v/i, /^s/i]
|
|
};
|
|
var matchDayPeriodPatterns = {
|
|
narrow: /^(a|m\.|p|mezzanotte|mezzogiorno|(di|del) (mattina|pomeriggio|sera|notte))/i,
|
|
any: /^([ap]\.?\s?m\.?|mezzanotte|mezzogiorno|(di|del) (mattina|pomeriggio|sera|notte))/i
|
|
};
|
|
var parseDayPeriodPatterns = {
|
|
any: {
|
|
am: /^a/i,
|
|
pm: /^p/i,
|
|
midnight: /^mezza/i,
|
|
noon: /^mezzo/i,
|
|
morning: /mattina/i,
|
|
afternoon: /pomeriggio/i,
|
|
evening: /sera/i,
|
|
night: /notte/i
|
|
}
|
|
};
|
|
var match = {
|
|
ordinalNumber: buildMatchPatternFn({
|
|
matchPattern: matchOrdinalNumberPattern,
|
|
parsePattern: parseOrdinalNumberPattern,
|
|
valueCallback: function valueCallback(value) {return parseInt(value, 10);}
|
|
}),
|
|
era: buildMatchFn({
|
|
matchPatterns: matchEraPatterns,
|
|
defaultMatchWidth: "wide",
|
|
parsePatterns: parseEraPatterns,
|
|
defaultParseWidth: "any"
|
|
}),
|
|
quarter: buildMatchFn({
|
|
matchPatterns: matchQuarterPatterns,
|
|
defaultMatchWidth: "wide",
|
|
parsePatterns: parseQuarterPatterns,
|
|
defaultParseWidth: "any",
|
|
valueCallback: function valueCallback(index) {return index + 1;}
|
|
}),
|
|
month: buildMatchFn({
|
|
matchPatterns: matchMonthPatterns,
|
|
defaultMatchWidth: "wide",
|
|
parsePatterns: parseMonthPatterns,
|
|
defaultParseWidth: "any"
|
|
}),
|
|
day: buildMatchFn({
|
|
matchPatterns: matchDayPatterns,
|
|
defaultMatchWidth: "wide",
|
|
parsePatterns: parseDayPatterns,
|
|
defaultParseWidth: "any"
|
|
}),
|
|
dayPeriod: buildMatchFn({
|
|
matchPatterns: matchDayPeriodPatterns,
|
|
defaultMatchWidth: "any",
|
|
parsePatterns: parseDayPeriodPatterns,
|
|
defaultParseWidth: "any"
|
|
})
|
|
};
|
|
|
|
// lib/locale/it.js
|
|
var it = {
|
|
code: "it",
|
|
formatDistance: formatDistance,
|
|
formatLong: formatLong,
|
|
formatRelative: formatRelative,
|
|
localize: localize,
|
|
match: match,
|
|
options: {
|
|
weekStartsOn: 1,
|
|
firstWeekContainsDate: 4
|
|
}
|
|
};
|
|
|
|
// lib/locale/it/cdn.js
|
|
window.dateFns = _objectSpread(_objectSpread({},
|
|
window.dateFns), {}, {
|
|
locale: _objectSpread(_objectSpread({}, (_window$dateFns =
|
|
window.dateFns) === null || _window$dateFns === void 0 ? void 0 : _window$dateFns.locale), {}, {
|
|
it: it }) });
|
|
|
|
|
|
|
|
//# debugId=81A22612D6569A7264756E2164756E21
|
|
|
|
//# sourceMappingURL=cdn.js.map
|
|
})(); |