superdesk-ui-framework 2.4.20 → 2.4.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -78,7 +78,7 @@ return /******/ (function(modules) { // webpackBootstrap
78
78
  /***/ (function(module, exports, __webpack_require__) {
79
79
 
80
80
  /* WEBPACK VAR INJECTION */(function(module) {var require;//! moment.js
81
- //! version : 2.29.1
81
+ //! version : 2.29.3
82
82
  //! authors : Tim Wood, Iskren Chernev, Moment.js contributors
83
83
  //! license : MIT
84
84
  //! momentjs.com
@@ -155,8 +155,9 @@ return /******/ (function(modules) { // webpackBootstrap
155
155
 
156
156
  function map(arr, fn) {
157
157
  var res = [],
158
- i;
159
- for (i = 0; i < arr.length; ++i) {
158
+ i,
159
+ arrLen = arr.length;
160
+ for (i = 0; i < arrLen; ++i) {
160
161
  res.push(fn(arr[i], i));
161
162
  }
162
163
  return res;
@@ -285,7 +286,10 @@ return /******/ (function(modules) { // webpackBootstrap
285
286
  updateInProgress = false;
286
287
 
287
288
  function copyConfig(to, from) {
288
- var i, prop, val;
289
+ var i,
290
+ prop,
291
+ val,
292
+ momentPropertiesLen = momentProperties.length;
289
293
 
290
294
  if (!isUndefined(from._isAMomentObject)) {
291
295
  to._isAMomentObject = from._isAMomentObject;
@@ -318,8 +322,8 @@ return /******/ (function(modules) { // webpackBootstrap
318
322
  to._locale = from._locale;
319
323
  }
320
324
 
321
- if (momentProperties.length > 0) {
322
- for (i = 0; i < momentProperties.length; i++) {
325
+ if (momentPropertiesLen > 0) {
326
+ for (i = 0; i < momentPropertiesLen; i++) {
323
327
  prop = momentProperties[i];
324
328
  val = from[prop];
325
329
  if (!isUndefined(val)) {
@@ -374,8 +378,9 @@ return /******/ (function(modules) { // webpackBootstrap
374
378
  var args = [],
375
379
  arg,
376
380
  i,
377
- key;
378
- for (i = 0; i < arguments.length; i++) {
381
+ key,
382
+ argLen = arguments.length;
383
+ for (i = 0; i < argLen; i++) {
379
384
  arg = '';
380
385
  if (typeof arguments[i] === 'object') {
381
386
  arg += '\n[' + i + '] ';
@@ -525,7 +530,8 @@ return /******/ (function(modules) { // webpackBootstrap
525
530
  );
526
531
  }
527
532
 
528
- var formattingTokens = /(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,
533
+ var formattingTokens =
534
+ /(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,
529
535
  localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,
530
536
  formatFunctions = {},
531
537
  formatTokenFunctions = {};
@@ -829,8 +835,9 @@ return /******/ (function(modules) { // webpackBootstrap
829
835
  if (typeof units === 'object') {
830
836
  units = normalizeObjectUnits(units);
831
837
  var prioritized = getPrioritizedUnits(units),
832
- i;
833
- for (i = 0; i < prioritized.length; i++) {
838
+ i,
839
+ prioritizedLen = prioritized.length;
840
+ for (i = 0; i < prioritizedLen; i++) {
834
841
  this[prioritized[i].unit](units[prioritized[i].unit]);
835
842
  }
836
843
  } else {
@@ -860,7 +867,8 @@ return /******/ (function(modules) { // webpackBootstrap
860
867
  matchTimestamp = /[+-]?\d+(\.\d{1,3})?/, // 123456789 123456789.123
861
868
  // any word (or two) characters or numbers including two/three word month in arabic.
862
869
  // includes scottish gaelic two word and hyphenated months
863
- matchWord = /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,
870
+ matchWord =
871
+ /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,
864
872
  regexes;
865
873
 
866
874
  regexes = {};
@@ -886,15 +894,12 @@ return /******/ (function(modules) { // webpackBootstrap
886
894
  return regexEscape(
887
895
  s
888
896
  .replace('\\', '')
889
- .replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (
890
- matched,
891
- p1,
892
- p2,
893
- p3,
894
- p4
895
- ) {
896
- return p1 || p2 || p3 || p4;
897
- })
897
+ .replace(
898
+ /\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,
899
+ function (matched, p1, p2, p3, p4) {
900
+ return p1 || p2 || p3 || p4;
901
+ }
902
+ )
898
903
  );
899
904
  }
900
905
 
@@ -906,7 +911,8 @@ return /******/ (function(modules) { // webpackBootstrap
906
911
 
907
912
  function addParseToken(token, callback) {
908
913
  var i,
909
- func = callback;
914
+ func = callback,
915
+ tokenLen;
910
916
  if (typeof token === 'string') {
911
917
  token = [token];
912
918
  }
@@ -915,7 +921,8 @@ return /******/ (function(modules) { // webpackBootstrap
915
921
  array[callback] = toInt(input);
916
922
  };
917
923
  }
918
- for (i = 0; i < token.length; i++) {
924
+ tokenLen = token.length;
925
+ for (i = 0; i < tokenLen; i++) {
919
926
  tokens[token[i]] = func;
920
927
  }
921
928
  }
@@ -1026,12 +1033,12 @@ return /******/ (function(modules) { // webpackBootstrap
1026
1033
 
1027
1034
  // LOCALES
1028
1035
 
1029
- var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
1030
- '_'
1031
- ),
1032
- defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split(
1033
- '_'
1034
- ),
1036
+ var defaultLocaleMonths =
1037
+ 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
1038
+ '_'
1039
+ ),
1040
+ defaultLocaleMonthsShort =
1041
+ 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
1035
1042
  MONTHS_IN_FORMAT = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,
1036
1043
  defaultMonthsShortRegex = matchWord,
1037
1044
  defaultMonthsRegex = matchWord;
@@ -1473,14 +1480,12 @@ return /******/ (function(modules) { // webpackBootstrap
1473
1480
  addRegexToken('W', match1to2);
1474
1481
  addRegexToken('WW', match1to2, match2);
1475
1482
 
1476
- addWeekParseToken(['w', 'ww', 'W', 'WW'], function (
1477
- input,
1478
- week,
1479
- config,
1480
- token
1481
- ) {
1482
- week[token.substr(0, 1)] = toInt(input);
1483
- });
1483
+ addWeekParseToken(
1484
+ ['w', 'ww', 'W', 'WW'],
1485
+ function (input, week, config, token) {
1486
+ week[token.substr(0, 1)] = toInt(input);
1487
+ }
1488
+ );
1484
1489
 
1485
1490
  // HELPERS
1486
1491
 
@@ -1605,9 +1610,8 @@ return /******/ (function(modules) { // webpackBootstrap
1605
1610
  return ws.slice(n, 7).concat(ws.slice(0, n));
1606
1611
  }
1607
1612
 
1608
- var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
1609
- '_'
1610
- ),
1613
+ var defaultLocaleWeekdays =
1614
+ 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
1611
1615
  defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
1612
1616
  defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
1613
1617
  defaultWeekdaysRegex = matchWord,
@@ -2155,6 +2159,11 @@ return /******/ (function(modules) { // webpackBootstrap
2155
2159
  return globalLocale;
2156
2160
  }
2157
2161
 
2162
+ function isLocaleNameSane(name) {
2163
+ // Prevent names that look like filesystem paths, i.e contain '/' or '\'
2164
+ return name.match('^[^/\\\\]*$') != null;
2165
+ }
2166
+
2158
2167
  function loadLocale(name) {
2159
2168
  var oldLocale = null,
2160
2169
  aliasedRequire;
@@ -2163,7 +2172,8 @@ return /******/ (function(modules) { // webpackBootstrap
2163
2172
  locales[name] === undefined &&
2164
2173
  typeof module !== 'undefined' &&
2165
2174
  module &&
2166
- module.exports
2175
+ module.exports &&
2176
+ isLocaleNameSane(name)
2167
2177
  ) {
2168
2178
  try {
2169
2179
  oldLocale = globalLocale._abbr;
@@ -2380,8 +2390,10 @@ return /******/ (function(modules) { // webpackBootstrap
2380
2390
 
2381
2391
  // iso 8601 regex
2382
2392
  // 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00)
2383
- var extendedIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
2384
- basicIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
2393
+ var extendedIsoRegex =
2394
+ /^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
2395
+ basicIsoRegex =
2396
+ /^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
2385
2397
  tzRegex = /Z|[+-]\d\d(?::?\d\d)?/,
2386
2398
  isoDates = [
2387
2399
  ['YYYYYY-MM-DD', /[+-]\d{6}-\d\d-\d\d/],
@@ -2412,7 +2424,8 @@ return /******/ (function(modules) { // webpackBootstrap
2412
2424
  ],
2413
2425
  aspNetJsonRegex = /^\/?Date\((-?\d+)/i,
2414
2426
  // RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3
2415
- rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,
2427
+ rfc2822 =
2428
+ /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,
2416
2429
  obsOffsets = {
2417
2430
  UT: 0,
2418
2431
  GMT: 0,
@@ -2435,12 +2448,13 @@ return /******/ (function(modules) { // webpackBootstrap
2435
2448
  allowTime,
2436
2449
  dateFormat,
2437
2450
  timeFormat,
2438
- tzFormat;
2451
+ tzFormat,
2452
+ isoDatesLen = isoDates.length,
2453
+ isoTimesLen = isoTimes.length;
2439
2454
 
2440
2455
  if (match) {
2441
2456
  getParsingFlags(config).iso = true;
2442
-
2443
- for (i = 0, l = isoDates.length; i < l; i++) {
2457
+ for (i = 0, l = isoDatesLen; i < l; i++) {
2444
2458
  if (isoDates[i][1].exec(match[1])) {
2445
2459
  dateFormat = isoDates[i][0];
2446
2460
  allowTime = isoDates[i][2] !== false;
@@ -2452,7 +2466,7 @@ return /******/ (function(modules) { // webpackBootstrap
2452
2466
  return;
2453
2467
  }
2454
2468
  if (match[3]) {
2455
- for (i = 0, l = isoTimes.length; i < l; i++) {
2469
+ for (i = 0, l = isoTimesLen; i < l; i++) {
2456
2470
  if (isoTimes[i][1].exec(match[3])) {
2457
2471
  // match[2] should be 'T' or space
2458
2472
  timeFormat = (match[2] || ' ') + isoTimes[i][0];
@@ -2832,12 +2846,13 @@ return /******/ (function(modules) { // webpackBootstrap
2832
2846
  skipped,
2833
2847
  stringLength = string.length,
2834
2848
  totalParsedInputLength = 0,
2835
- era;
2849
+ era,
2850
+ tokenLen;
2836
2851
 
2837
2852
  tokens =
2838
2853
  expandFormat(config._f, config._locale).match(formattingTokens) || [];
2839
-
2840
- for (i = 0; i < tokens.length; i++) {
2854
+ tokenLen = tokens.length;
2855
+ for (i = 0; i < tokenLen; i++) {
2841
2856
  token = tokens[i];
2842
2857
  parsedInput = (string.match(getParseRegexForToken(token, config)) ||
2843
2858
  [])[0];
@@ -2932,15 +2947,16 @@ return /******/ (function(modules) { // webpackBootstrap
2932
2947
  i,
2933
2948
  currentScore,
2934
2949
  validFormatFound,
2935
- bestFormatIsValid = false;
2950
+ bestFormatIsValid = false,
2951
+ configfLen = config._f.length;
2936
2952
 
2937
- if (config._f.length === 0) {
2953
+ if (configfLen === 0) {
2938
2954
  getParsingFlags(config).invalidFormat = true;
2939
2955
  config._d = new Date(NaN);
2940
2956
  return;
2941
2957
  }
2942
2958
 
2943
- for (i = 0; i < config._f.length; i++) {
2959
+ for (i = 0; i < configfLen; i++) {
2944
2960
  currentScore = 0;
2945
2961
  validFormatFound = false;
2946
2962
  tempConfig = copyConfig({}, config);
@@ -3181,7 +3197,8 @@ return /******/ (function(modules) { // webpackBootstrap
3181
3197
  function isDurationValid(m) {
3182
3198
  var key,
3183
3199
  unitHasDecimal = false,
3184
- i;
3200
+ i,
3201
+ orderLen = ordering.length;
3185
3202
  for (key in m) {
3186
3203
  if (
3187
3204
  hasOwnProp(m, key) &&
@@ -3194,7 +3211,7 @@ return /******/ (function(modules) { // webpackBootstrap
3194
3211
  }
3195
3212
  }
3196
3213
 
3197
- for (i = 0; i < ordering.length; ++i) {
3214
+ for (i = 0; i < orderLen; ++i) {
3198
3215
  if (m[ordering[i]]) {
3199
3216
  if (unitHasDecimal) {
3200
3217
  return false; // only allow non-integers for smallest unit
@@ -3519,7 +3536,8 @@ return /******/ (function(modules) { // webpackBootstrap
3519
3536
  // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html
3520
3537
  // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere
3521
3538
  // and further modified to allow for strings containing both week and day
3522
- isoRegex = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;
3539
+ isoRegex =
3540
+ /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;
3523
3541
 
3524
3542
  function createDuration(input, key) {
3525
3543
  var duration = input,
@@ -3740,9 +3758,10 @@ return /******/ (function(modules) { // webpackBootstrap
3740
3758
  'ms',
3741
3759
  ],
3742
3760
  i,
3743
- property;
3761
+ property,
3762
+ propertyLen = properties.length;
3744
3763
 
3745
- for (i = 0; i < properties.length; i += 1) {
3764
+ for (i = 0; i < propertyLen; i += 1) {
3746
3765
  property = properties[i];
3747
3766
  propertyTest = propertyTest || hasOwnProp(input, property);
3748
3767
  }
@@ -4365,19 +4384,17 @@ return /******/ (function(modules) { // webpackBootstrap
4365
4384
  addRegexToken('NNNN', matchEraName);
4366
4385
  addRegexToken('NNNNN', matchEraNarrow);
4367
4386
 
4368
- addParseToken(['N', 'NN', 'NNN', 'NNNN', 'NNNNN'], function (
4369
- input,
4370
- array,
4371
- config,
4372
- token
4373
- ) {
4374
- var era = config._locale.erasParse(input, token, config._strict);
4375
- if (era) {
4376
- getParsingFlags(config).era = era;
4377
- } else {
4378
- getParsingFlags(config).invalidEra = input;
4387
+ addParseToken(
4388
+ ['N', 'NN', 'NNN', 'NNNN', 'NNNNN'],
4389
+ function (input, array, config, token) {
4390
+ var era = config._locale.erasParse(input, token, config._strict);
4391
+ if (era) {
4392
+ getParsingFlags(config).era = era;
4393
+ } else {
4394
+ getParsingFlags(config).invalidEra = input;
4395
+ }
4379
4396
  }
4380
- });
4397
+ );
4381
4398
 
4382
4399
  addRegexToken('y', matchUnsigned);
4383
4400
  addRegexToken('yy', matchUnsigned);
@@ -4669,14 +4686,12 @@ return /******/ (function(modules) { // webpackBootstrap
4669
4686
  addRegexToken('GGGGG', match1to6, match6);
4670
4687
  addRegexToken('ggggg', match1to6, match6);
4671
4688
 
4672
- addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (
4673
- input,
4674
- week,
4675
- config,
4676
- token
4677
- ) {
4678
- week[token.substr(0, 2)] = toInt(input);
4679
- });
4689
+ addWeekParseToken(
4690
+ ['gggg', 'ggggg', 'GGGG', 'GGGGG'],
4691
+ function (input, week, config, token) {
4692
+ week[token.substr(0, 2)] = toInt(input);
4693
+ }
4694
+ );
4680
4695
 
4681
4696
  addWeekParseToken(['gg', 'GG'], function (input, week, config, token) {
4682
4697
  week[token] = hooks.parseTwoDigitYear(input);
@@ -5699,7 +5714,7 @@ return /******/ (function(modules) { // webpackBootstrap
5699
5714
 
5700
5715
  //! moment.js
5701
5716
 
5702
- hooks.version = '2.29.1';
5717
+ hooks.version = '2.29.3';
5703
5718
 
5704
5719
  setHookCallback(createLocal);
5705
5720
 
@@ -41543,9 +41558,10 @@ module.exports = __webpack_require__(348);
41543
41558
  months: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
41544
41559
  '_'
41545
41560
  ),
41546
- monthsShort: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
41547
- '_'
41548
- ),
41561
+ monthsShort:
41562
+ 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
41563
+ '_'
41564
+ ),
41549
41565
  weekdays: 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
41550
41566
  weekdaysShort: 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),
41551
41567
  weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
@@ -41598,7 +41614,7 @@ module.exports = __webpack_require__(348);
41598
41614
  /***/ (function(module, exports, __webpack_require__) {
41599
41615
 
41600
41616
  //! moment.js locale configuration
41601
- //! locale : Arabic (Lybia) [ar-ly]
41617
+ //! locale : Arabic (Libya) [ar-ly]
41602
41618
  //! author : Ali Hmer: https://github.com/kikoanis
41603
41619
 
41604
41620
  ;(function (global, factory) {
@@ -41801,9 +41817,10 @@ module.exports = __webpack_require__(348);
41801
41817
  months: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
41802
41818
  '_'
41803
41819
  ),
41804
- monthsShort: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
41805
- '_'
41806
- ),
41820
+ monthsShort:
41821
+ 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
41822
+ '_'
41823
+ ),
41807
41824
  weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
41808
41825
  weekdaysShort: 'احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),
41809
41826
  weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
@@ -41896,9 +41913,10 @@ module.exports = __webpack_require__(348);
41896
41913
  months: 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
41897
41914
  '_'
41898
41915
  ),
41899
- monthsShort: 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
41900
- '_'
41901
- ),
41916
+ monthsShort:
41917
+ 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
41918
+ '_'
41919
+ ),
41902
41920
  weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
41903
41921
  weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
41904
41922
  weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
@@ -41991,9 +42009,10 @@ module.exports = __webpack_require__(348);
41991
42009
  months: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
41992
42010
  '_'
41993
42011
  ),
41994
- monthsShort: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
41995
- '_'
41996
- ),
42012
+ monthsShort:
42013
+ 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
42014
+ '_'
42015
+ ),
41997
42016
  weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
41998
42017
  weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
41999
42018
  weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
@@ -42083,9 +42102,10 @@ module.exports = __webpack_require__(348);
42083
42102
  '_'
42084
42103
  ),
42085
42104
  monthsShort: 'yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek'.split('_'),
42086
- weekdays: 'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə'.split(
42087
- '_'
42088
- ),
42105
+ weekdays:
42106
+ 'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə'.split(
42107
+ '_'
42108
+ ),
42089
42109
  weekdaysShort: 'Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən'.split('_'),
42090
42110
  weekdaysMin: 'Bz_BE_ÇA_Çə_CA_Cü_Şə'.split('_'),
42091
42111
  weekdaysParseExact: true,
@@ -42207,20 +42227,21 @@ module.exports = __webpack_require__(348);
42207
42227
  format: 'студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня'.split(
42208
42228
  '_'
42209
42229
  ),
42210
- standalone: 'студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань'.split(
42211
- '_'
42212
- ),
42230
+ standalone:
42231
+ 'студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань'.split(
42232
+ '_'
42233
+ ),
42213
42234
  },
42214
- monthsShort: 'студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж'.split(
42215
- '_'
42216
- ),
42235
+ monthsShort:
42236
+ 'студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж'.split('_'),
42217
42237
  weekdays: {
42218
42238
  format: 'нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу'.split(
42219
42239
  '_'
42220
42240
  ),
42221
- standalone: 'нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота'.split(
42222
- '_'
42223
- ),
42241
+ standalone:
42242
+ 'нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота'.split(
42243
+ '_'
42244
+ ),
42224
42245
  isFormat: /\[ ?[Ууў] ?(?:мінулую|наступную)? ?\] ?dddd/,
42225
42246
  },
42226
42247
  weekdaysShort: 'нд_пн_ат_ср_чц_пт_сб'.split('_'),
@@ -42530,9 +42551,10 @@ module.exports = __webpack_require__(348);
42530
42551
  months: 'জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split(
42531
42552
  '_'
42532
42553
  ),
42533
- monthsShort: 'জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে'.split(
42534
- '_'
42535
- ),
42554
+ monthsShort:
42555
+ 'জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে'.split(
42556
+ '_'
42557
+ ),
42536
42558
  weekdays: 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split(
42537
42559
  '_'
42538
42560
  ),
@@ -42664,9 +42686,10 @@ module.exports = __webpack_require__(348);
42664
42686
  months: 'জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split(
42665
42687
  '_'
42666
42688
  ),
42667
- monthsShort: 'জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে'.split(
42668
- '_'
42669
- ),
42689
+ monthsShort:
42690
+ 'জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে'.split(
42691
+ '_'
42692
+ ),
42670
42693
  weekdays: 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split(
42671
42694
  '_'
42672
42695
  ),
@@ -42808,14 +42831,16 @@ module.exports = __webpack_require__(348);
42808
42831
  months: 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split(
42809
42832
  '_'
42810
42833
  ),
42811
- monthsShort: 'ཟླ་1_ཟླ་2_ཟླ་3_ཟླ་4_ཟླ་5_ཟླ་6_ཟླ་7_ཟླ་8_ཟླ་9_ཟླ་10_ཟླ་11_ཟླ་12'.split(
42812
- '_'
42813
- ),
42834
+ monthsShort:
42835
+ 'ཟླ་1_ཟླ་2_ཟླ་3_ཟླ་4_ཟླ་5_ཟླ་6_ཟླ་7_ཟླ་8_ཟླ་9_ཟླ་10_ཟླ་11_ཟླ་12'.split(
42836
+ '_'
42837
+ ),
42814
42838
  monthsShortRegex: /^(ཟླ་\d{1,2})/,
42815
42839
  monthsParseExact: true,
42816
- weekdays: 'གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་'.split(
42817
- '_'
42818
- ),
42840
+ weekdays:
42841
+ 'གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་'.split(
42842
+ '_'
42843
+ ),
42819
42844
  weekdaysShort: 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split(
42820
42845
  '_'
42821
42846
  ),
@@ -42975,9 +43000,12 @@ module.exports = __webpack_require__(348);
42975
43000
  /^du/i,
42976
43001
  /^ker/i,
42977
43002
  ],
42978
- monthsRegex = /^(genver|c[ʼ\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu|gen|c[ʼ\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,
42979
- monthsStrictRegex = /^(genver|c[ʼ\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu)/i,
42980
- monthsShortStrictRegex = /^(gen|c[ʼ\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,
43003
+ monthsRegex =
43004
+ /^(genver|c[ʼ\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu|gen|c[ʼ\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,
43005
+ monthsStrictRegex =
43006
+ /^(genver|c[ʼ\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu)/i,
43007
+ monthsShortStrictRegex =
43008
+ /^(gen|c[ʼ\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,
42981
43009
  fullWeekdaysParse = [
42982
43010
  /^sul/i,
42983
43011
  /^lun/i,
@@ -43165,9 +43193,10 @@ module.exports = __webpack_require__(348);
43165
43193
  months: 'januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar'.split(
43166
43194
  '_'
43167
43195
  ),
43168
- monthsShort: 'jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.'.split(
43169
- '_'
43170
- ),
43196
+ monthsShort:
43197
+ 'jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.'.split(
43198
+ '_'
43199
+ ),
43171
43200
  monthsParseExact: true,
43172
43201
  weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split(
43173
43202
  '_'
@@ -43265,21 +43294,24 @@ module.exports = __webpack_require__(348);
43265
43294
 
43266
43295
  var ca = moment.defineLocale('ca', {
43267
43296
  months: {
43268
- standalone: 'gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre'.split(
43269
- '_'
43270
- ),
43297
+ standalone:
43298
+ 'gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre'.split(
43299
+ '_'
43300
+ ),
43271
43301
  format: "de gener_de febrer_de març_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre".split(
43272
43302
  '_'
43273
43303
  ),
43274
43304
  isFormat: /D[oD]?(\s)+MMMM/,
43275
43305
  },
43276
- monthsShort: 'gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.'.split(
43277
- '_'
43278
- ),
43306
+ monthsShort:
43307
+ 'gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.'.split(
43308
+ '_'
43309
+ ),
43279
43310
  monthsParseExact: true,
43280
- weekdays: 'diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte'.split(
43281
- '_'
43282
- ),
43311
+ weekdays:
43312
+ 'diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte'.split(
43313
+ '_'
43314
+ ),
43283
43315
  weekdaysShort: 'dg._dl._dt._dc._dj._dv._ds.'.split('_'),
43284
43316
  weekdaysMin: 'dg_dl_dt_dc_dj_dv_ds'.split('_'),
43285
43317
  weekdaysParseExact: true,
@@ -43376,9 +43408,15 @@ module.exports = __webpack_require__(348);
43376
43408
 
43377
43409
  //! moment.js locale configuration
43378
43410
 
43379
- var months = 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split(
43380
- '_'
43381
- ),
43411
+ var months = {
43412
+ format: 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split(
43413
+ '_'
43414
+ ),
43415
+ standalone:
43416
+ 'ledna_února_března_dubna_května_června_července_srpna_září_října_listopadu_prosince'.split(
43417
+ '_'
43418
+ ),
43419
+ },
43382
43420
  monthsShort = 'led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro'.split('_'),
43383
43421
  monthsParse = [
43384
43422
  /^led/i,
@@ -43396,7 +43434,8 @@ module.exports = __webpack_require__(348);
43396
43434
  ],
43397
43435
  // NOTE: 'červen' is substring of 'červenec'; therefore 'červenec' must precede 'červen' in the regex to be fully matched.
43398
43436
  // Otherwise parser matches '1. červenec' as '1. červen' + 'ec'.
43399
- monthsRegex = /^(leden|únor|březen|duben|květen|červenec|července|červen|června|srpen|září|říjen|listopad|prosinec|led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i;
43437
+ monthsRegex =
43438
+ /^(leden|únor|březen|duben|květen|červenec|července|červen|června|srpen|září|říjen|listopad|prosinec|led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i;
43400
43439
 
43401
43440
  function plural(n) {
43402
43441
  return n > 1 && n < 5 && ~~(n / 10) !== 1;
@@ -43462,8 +43501,10 @@ module.exports = __webpack_require__(348);
43462
43501
  monthsShortRegex: monthsRegex,
43463
43502
  // NOTE: 'červen' is substring of 'červenec'; therefore 'červenec' must precede 'červen' in the regex to be fully matched.
43464
43503
  // Otherwise parser matches '1. červenec' as '1. červen' + 'ec'.
43465
- monthsStrictRegex: /^(leden|ledna|února|únor|březen|března|duben|dubna|květen|května|červenec|července|červen|června|srpen|srpna|září|říjen|října|listopadu|listopad|prosinec|prosince)/i,
43466
- monthsShortStrictRegex: /^(ledno|bře|dub|kvě|čvnvc|srp|zář|říj|lis|pro)/i,
43504
+ monthsStrictRegex:
43505
+ /^(leden|lednanora|únor|březen|března|duben|dubna|květen|květnaervenec|července|červen|června|srpen|srpna|září|říjen|října|listopadu|listopad|prosinec|prosince)/i,
43506
+ monthsShortStrictRegex:
43507
+ /^(led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i,
43467
43508
  monthsParse: monthsParse,
43468
43509
  longMonthsParse: monthsParse,
43469
43510
  shortMonthsParse: monthsParse,
@@ -43568,9 +43609,10 @@ module.exports = __webpack_require__(348);
43568
43609
  '_'
43569
43610
  ),
43570
43611
  monthsShort: 'кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш'.split('_'),
43571
- weekdays: 'вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун'.split(
43572
- '_'
43573
- ),
43612
+ weekdays:
43613
+ 'вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун'.split(
43614
+ '_'
43615
+ ),
43574
43616
  weekdaysShort: 'выр_тун_ытл_юн_кӗҫ_эрн_шӑм'.split('_'),
43575
43617
  weekdaysMin: 'вр_тн_ыт_юн_кҫ_эр_шм'.split('_'),
43576
43618
  longDateFormat: {
@@ -43649,9 +43691,10 @@ module.exports = __webpack_require__(348);
43649
43691
  monthsShort: 'Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag'.split(
43650
43692
  '_'
43651
43693
  ),
43652
- weekdays: 'Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn'.split(
43653
- '_'
43654
- ),
43694
+ weekdays:
43695
+ 'Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn'.split(
43696
+ '_'
43697
+ ),
43655
43698
  weekdaysShort: 'Sul_Llun_Maw_Mer_Iau_Gwe_Sad'.split('_'),
43656
43699
  weekdaysMin: 'Su_Ll_Ma_Me_Ia_Gw_Sa'.split('_'),
43657
43700
  weekdaysParseExact: true,
@@ -43844,13 +43887,13 @@ module.exports = __webpack_require__(348);
43844
43887
  months: 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split(
43845
43888
  '_'
43846
43889
  ),
43847
- monthsShort: 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split(
43848
- '_'
43849
- ),
43890
+ monthsShort:
43891
+ 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split('_'),
43850
43892
  monthsParseExact: true,
43851
- weekdays: 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
43852
- '_'
43853
- ),
43893
+ weekdays:
43894
+ 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
43895
+ '_'
43896
+ ),
43854
43897
  weekdaysShort: 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),
43855
43898
  weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
43856
43899
  weekdaysParseExact: true,
@@ -43939,13 +43982,13 @@ module.exports = __webpack_require__(348);
43939
43982
  months: 'Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split(
43940
43983
  '_'
43941
43984
  ),
43942
- monthsShort: 'Jän._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split(
43943
- '_'
43944
- ),
43985
+ monthsShort:
43986
+ 'Jän._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split('_'),
43945
43987
  monthsParseExact: true,
43946
- weekdays: 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
43947
- '_'
43948
- ),
43988
+ weekdays:
43989
+ 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
43990
+ '_'
43991
+ ),
43949
43992
  weekdaysShort: 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),
43950
43993
  weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
43951
43994
  weekdaysParseExact: true,
@@ -44031,13 +44074,13 @@ module.exports = __webpack_require__(348);
44031
44074
  months: 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split(
44032
44075
  '_'
44033
44076
  ),
44034
- monthsShort: 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split(
44035
- '_'
44036
- ),
44077
+ monthsShort:
44078
+ 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split('_'),
44037
44079
  monthsParseExact: true,
44038
- weekdays: 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
44039
- '_'
44040
- ),
44080
+ weekdays:
44081
+ 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
44082
+ '_'
44083
+ ),
44041
44084
  weekdaysShort: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
44042
44085
  weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
44043
44086
  weekdaysParseExact: true,
@@ -44218,12 +44261,14 @@ module.exports = __webpack_require__(348);
44218
44261
  }
44219
44262
 
44220
44263
  var el = moment.defineLocale('el', {
44221
- monthsNominativeEl: 'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος'.split(
44222
- '_'
44223
- ),
44224
- monthsGenitiveEl: 'Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου'.split(
44225
- '_'
44226
- ),
44264
+ monthsNominativeEl:
44265
+ 'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος'.split(
44266
+ '_'
44267
+ ),
44268
+ monthsGenitiveEl:
44269
+ 'Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου'.split(
44270
+ '_'
44271
+ ),
44227
44272
  months: function (momentToFormat, format) {
44228
44273
  if (!momentToFormat) {
44229
44274
  return this._monthsNominativeEl;
@@ -45078,9 +45123,10 @@ module.exports = __webpack_require__(348);
45078
45123
 
45079
45124
  //! moment.js locale configuration
45080
45125
 
45081
- var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
45082
- '_'
45083
- ),
45126
+ var monthsShortDot =
45127
+ 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
45128
+ '_'
45129
+ ),
45084
45130
  monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
45085
45131
  monthsParse = [
45086
45132
  /^ene/i,
@@ -45096,7 +45142,8 @@ module.exports = __webpack_require__(348);
45096
45142
  /^nov/i,
45097
45143
  /^dic/i,
45098
45144
  ],
45099
- monthsRegex = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
45145
+ monthsRegex =
45146
+ /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
45100
45147
 
45101
45148
  var es = moment.defineLocale('es', {
45102
45149
  months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
@@ -45113,8 +45160,10 @@ module.exports = __webpack_require__(348);
45113
45160
  },
45114
45161
  monthsRegex: monthsRegex,
45115
45162
  monthsShortRegex: monthsRegex,
45116
- monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
45117
- monthsShortStrictRegex: /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
45163
+ monthsStrictRegex:
45164
+ /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
45165
+ monthsShortStrictRegex:
45166
+ /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
45118
45167
  monthsParse: monthsParse,
45119
45168
  longMonthsParse: monthsParse,
45120
45169
  shortMonthsParse: monthsParse,
@@ -45199,9 +45248,10 @@ module.exports = __webpack_require__(348);
45199
45248
 
45200
45249
  //! moment.js locale configuration
45201
45250
 
45202
- var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
45203
- '_'
45204
- ),
45251
+ var monthsShortDot =
45252
+ 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
45253
+ '_'
45254
+ ),
45205
45255
  monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
45206
45256
  monthsParse = [
45207
45257
  /^ene/i,
@@ -45217,7 +45267,8 @@ module.exports = __webpack_require__(348);
45217
45267
  /^nov/i,
45218
45268
  /^dic/i,
45219
45269
  ],
45220
- monthsRegex = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
45270
+ monthsRegex =
45271
+ /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
45221
45272
 
45222
45273
  var esDo = moment.defineLocale('es-do', {
45223
45274
  months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
@@ -45234,8 +45285,10 @@ module.exports = __webpack_require__(348);
45234
45285
  },
45235
45286
  monthsRegex: monthsRegex,
45236
45287
  monthsShortRegex: monthsRegex,
45237
- monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
45238
- monthsShortStrictRegex: /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
45288
+ monthsStrictRegex:
45289
+ /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
45290
+ monthsShortStrictRegex:
45291
+ /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
45239
45292
  monthsParse: monthsParse,
45240
45293
  longMonthsParse: monthsParse,
45241
45294
  shortMonthsParse: monthsParse,
@@ -45320,9 +45373,10 @@ module.exports = __webpack_require__(348);
45320
45373
 
45321
45374
  //! moment.js locale configuration
45322
45375
 
45323
- var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
45324
- '_'
45325
- ),
45376
+ var monthsShortDot =
45377
+ 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
45378
+ '_'
45379
+ ),
45326
45380
  monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
45327
45381
  monthsParse = [
45328
45382
  /^ene/i,
@@ -45338,7 +45392,8 @@ module.exports = __webpack_require__(348);
45338
45392
  /^nov/i,
45339
45393
  /^dic/i,
45340
45394
  ],
45341
- monthsRegex = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
45395
+ monthsRegex =
45396
+ /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
45342
45397
 
45343
45398
  var esMx = moment.defineLocale('es-mx', {
45344
45399
  months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
@@ -45355,8 +45410,10 @@ module.exports = __webpack_require__(348);
45355
45410
  },
45356
45411
  monthsRegex: monthsRegex,
45357
45412
  monthsShortRegex: monthsRegex,
45358
- monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
45359
- monthsShortStrictRegex: /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
45413
+ monthsStrictRegex:
45414
+ /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
45415
+ monthsShortStrictRegex:
45416
+ /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
45360
45417
  monthsParse: monthsParse,
45361
45418
  longMonthsParse: monthsParse,
45362
45419
  shortMonthsParse: monthsParse,
@@ -45443,9 +45500,10 @@ module.exports = __webpack_require__(348);
45443
45500
 
45444
45501
  //! moment.js locale configuration
45445
45502
 
45446
- var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
45447
- '_'
45448
- ),
45503
+ var monthsShortDot =
45504
+ 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
45505
+ '_'
45506
+ ),
45449
45507
  monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
45450
45508
  monthsParse = [
45451
45509
  /^ene/i,
@@ -45461,7 +45519,8 @@ module.exports = __webpack_require__(348);
45461
45519
  /^nov/i,
45462
45520
  /^dic/i,
45463
45521
  ],
45464
- monthsRegex = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
45522
+ monthsRegex =
45523
+ /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
45465
45524
 
45466
45525
  var esUs = moment.defineLocale('es-us', {
45467
45526
  months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
@@ -45478,8 +45537,10 @@ module.exports = __webpack_require__(348);
45478
45537
  },
45479
45538
  monthsRegex: monthsRegex,
45480
45539
  monthsShortRegex: monthsRegex,
45481
- monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
45482
- monthsShortStrictRegex: /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
45540
+ monthsStrictRegex:
45541
+ /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
45542
+ monthsShortStrictRegex:
45543
+ /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
45483
45544
  monthsParse: monthsParse,
45484
45545
  longMonthsParse: monthsParse,
45485
45546
  shortMonthsParse: monthsParse,
@@ -45589,12 +45650,12 @@ module.exports = __webpack_require__(348);
45589
45650
  months: 'jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember'.split(
45590
45651
  '_'
45591
45652
  ),
45592
- monthsShort: 'jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets'.split(
45593
- '_'
45594
- ),
45595
- weekdays: 'pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev'.split(
45596
- '_'
45597
- ),
45653
+ monthsShort:
45654
+ 'jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets'.split('_'),
45655
+ weekdays:
45656
+ 'pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev'.split(
45657
+ '_'
45658
+ ),
45598
45659
  weekdaysShort: 'P_E_T_K_N_R_L'.split('_'),
45599
45660
  weekdaysMin: 'P_E_T_K_N_R_L'.split('_'),
45600
45661
  longDateFormat: {
@@ -45662,13 +45723,15 @@ module.exports = __webpack_require__(348);
45662
45723
  months: 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split(
45663
45724
  '_'
45664
45725
  ),
45665
- monthsShort: 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split(
45666
- '_'
45667
- ),
45726
+ monthsShort:
45727
+ 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split(
45728
+ '_'
45729
+ ),
45668
45730
  monthsParseExact: true,
45669
- weekdays: 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split(
45670
- '_'
45671
- ),
45731
+ weekdays:
45732
+ 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split(
45733
+ '_'
45734
+ ),
45672
45735
  weekdaysShort: 'ig._al._ar._az._og._ol._lr.'.split('_'),
45673
45736
  weekdaysMin: 'ig_al_ar_az_og_ol_lr'.split('_'),
45674
45737
  weekdaysParseExact: true,
@@ -45766,15 +45829,18 @@ module.exports = __webpack_require__(348);
45766
45829
  months: 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split(
45767
45830
  '_'
45768
45831
  ),
45769
- monthsShort: 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split(
45770
- '_'
45771
- ),
45772
- weekdays: 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split(
45773
- '_'
45774
- ),
45775
- weekdaysShort: 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split(
45776
- '_'
45777
- ),
45832
+ monthsShort:
45833
+ 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split(
45834
+ '_'
45835
+ ),
45836
+ weekdays:
45837
+ 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split(
45838
+ '_'
45839
+ ),
45840
+ weekdaysShort:
45841
+ 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split(
45842
+ '_'
45843
+ ),
45778
45844
  weekdaysMin: 'ی_د_س_چ_پ_ج_ش'.split('_'),
45779
45845
  weekdaysParseExact: true,
45780
45846
  longDateFormat: {
@@ -45863,9 +45929,10 @@ module.exports = __webpack_require__(348);
45863
45929
 
45864
45930
  //! moment.js locale configuration
45865
45931
 
45866
- var numbersPast = 'nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän'.split(
45867
- ' '
45868
- ),
45932
+ var numbersPast =
45933
+ 'nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän'.split(
45934
+ ' '
45935
+ ),
45869
45936
  numbersFuture = [
45870
45937
  'nolla',
45871
45938
  'yhden',
@@ -45927,12 +45994,14 @@ module.exports = __webpack_require__(348);
45927
45994
  months: 'tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu'.split(
45928
45995
  '_'
45929
45996
  ),
45930
- monthsShort: 'tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu'.split(
45931
- '_'
45932
- ),
45933
- weekdays: 'sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai'.split(
45934
- '_'
45935
- ),
45997
+ monthsShort:
45998
+ 'tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu'.split(
45999
+ '_'
46000
+ ),
46001
+ weekdays:
46002
+ 'sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai'.split(
46003
+ '_'
46004
+ ),
45936
46005
  weekdaysShort: 'su_ma_ti_ke_to_pe_la'.split('_'),
45937
46006
  weekdaysMin: 'su_ma_ti_ke_to_pe_la'.split('_'),
45938
46007
  longDateFormat: {
@@ -46080,9 +46149,10 @@ module.exports = __webpack_require__(348);
46080
46149
  '_'
46081
46150
  ),
46082
46151
  monthsShort: 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
46083
- weekdays: 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split(
46084
- '_'
46085
- ),
46152
+ weekdays:
46153
+ 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split(
46154
+ '_'
46155
+ ),
46086
46156
  weekdaysShort: 'sun_mán_týs_mik_hós_frí_ley'.split('_'),
46087
46157
  weekdaysMin: 'su_má_tý_mi_hó_fr_le'.split('_'),
46088
46158
  longDateFormat: {
@@ -46146,9 +46216,12 @@ module.exports = __webpack_require__(348);
46146
46216
 
46147
46217
  //! moment.js locale configuration
46148
46218
 
46149
- var monthsStrictRegex = /^(janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,
46150
- monthsShortStrictRegex = /(janv\.?|févr\.?|mars|avr\.?|mai|juin|juil\.?|août|sept\.?|oct\.?|nov\.?|déc\.?)/i,
46151
- monthsRegex = /(janv\.?|févr\.?|mars|avr\.?|mai|juin|juil\.?|août|sept\.?|oct\.?|nov\.?|déc\.?|janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,
46219
+ var monthsStrictRegex =
46220
+ /^(janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,
46221
+ monthsShortStrictRegex =
46222
+ /(janv\.?|févr\.?|mars|avr\.?|mai|juin|juil\.?|août|sept\.?|oct\.?|nov\.?|déc\.?)/i,
46223
+ monthsRegex =
46224
+ /(janv\.?|févr\.?|mars|avr\.?|mai|juin|juil\.?|août|sept\.?|oct\.?|nov\.?|déc\.?|janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,
46152
46225
  monthsParse = [
46153
46226
  /^janv/i,
46154
46227
  /^févr/i,
@@ -46168,9 +46241,10 @@ module.exports = __webpack_require__(348);
46168
46241
  months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(
46169
46242
  '_'
46170
46243
  ),
46171
- monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
46172
- '_'
46173
- ),
46244
+ monthsShort:
46245
+ 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
46246
+ '_'
46247
+ ),
46174
46248
  monthsRegex: monthsRegex,
46175
46249
  monthsShortRegex: monthsRegex,
46176
46250
  monthsStrictRegex: monthsStrictRegex,
@@ -46270,9 +46344,10 @@ module.exports = __webpack_require__(348);
46270
46344
  months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(
46271
46345
  '_'
46272
46346
  ),
46273
- monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
46274
- '_'
46275
- ),
46347
+ monthsShort:
46348
+ 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
46349
+ '_'
46350
+ ),
46276
46351
  monthsParseExact: true,
46277
46352
  weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
46278
46353
  weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
@@ -46355,9 +46430,10 @@ module.exports = __webpack_require__(348);
46355
46430
  months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(
46356
46431
  '_'
46357
46432
  ),
46358
- monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
46359
- '_'
46360
- ),
46433
+ monthsShort:
46434
+ 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
46435
+ '_'
46436
+ ),
46361
46437
  monthsParseExact: true,
46362
46438
  weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
46363
46439
  weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
@@ -46440,12 +46516,10 @@ module.exports = __webpack_require__(348);
46440
46516
 
46441
46517
  //! moment.js locale configuration
46442
46518
 
46443
- var monthsShortWithDots = 'jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.'.split(
46444
- '_'
46445
- ),
46446
- monthsShortWithoutDots = 'jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des'.split(
46447
- '_'
46448
- );
46519
+ var monthsShortWithDots =
46520
+ 'jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.'.split('_'),
46521
+ monthsShortWithoutDots =
46522
+ 'jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_');
46449
46523
 
46450
46524
  var fy = moment.defineLocale('fy', {
46451
46525
  months: 'jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber'.split(
@@ -46759,9 +46833,10 @@ module.exports = __webpack_require__(348);
46759
46833
  months: 'xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro'.split(
46760
46834
  '_'
46761
46835
  ),
46762
- monthsShort: 'xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.'.split(
46763
- '_'
46764
- ),
46836
+ monthsShort:
46837
+ 'xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.'.split(
46838
+ '_'
46839
+ ),
46765
46840
  monthsParseExact: true,
46766
46841
  weekdays: 'domingo_luns_martes_mércores_xoves_venres_sábado'.split('_'),
46767
46842
  weekdaysShort: 'dom._lun._mar._mér._xov._ven._sáb.'.split('_'),
@@ -46865,17 +46940,19 @@ module.exports = __webpack_require__(348);
46865
46940
 
46866
46941
  var gomDeva = moment.defineLocale('gom-deva', {
46867
46942
  months: {
46868
- standalone: 'जानेवारी_फेब्रुवारी_मार्च_एप्रील_मे_जून_जुलय_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split(
46869
- '_'
46870
- ),
46943
+ standalone:
46944
+ 'जानेवारी_फेब्रुवारी_मार्च_एप्रील_मे_जून_जुलय_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split(
46945
+ '_'
46946
+ ),
46871
46947
  format: 'जानेवारीच्या_फेब्रुवारीच्या_मार्चाच्या_एप्रीलाच्या_मेयाच्या_जूनाच्या_जुलयाच्या_ऑगस्टाच्या_सप्टेंबराच्या_ऑक्टोबराच्या_नोव्हेंबराच्या_डिसेंबराच्या'.split(
46872
46948
  '_'
46873
46949
  ),
46874
46950
  isFormat: /MMMM(\s)+D[oD]?/,
46875
46951
  },
46876
- monthsShort: 'जाने._फेब्रु._मार्च_एप्री._मे_जून_जुल._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split(
46877
- '_'
46878
- ),
46952
+ monthsShort:
46953
+ 'जाने._फेब्रु._मार्च_एप्री._मे_जून_जुल._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split(
46954
+ '_'
46955
+ ),
46879
46956
  monthsParseExact: true,
46880
46957
  weekdays: 'आयतार_सोमार_मंगळार_बुधवार_बिरेस्तार_सुक्रार_शेनवार'.split('_'),
46881
46958
  weekdaysShort: 'आयत._सोम._मंगळ._बुध._ब्रेस्त._सुक्र._शेन.'.split('_'),
@@ -47005,17 +47082,17 @@ module.exports = __webpack_require__(348);
47005
47082
 
47006
47083
  var gomLatn = moment.defineLocale('gom-latn', {
47007
47084
  months: {
47008
- standalone: 'Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr'.split(
47009
- '_'
47010
- ),
47085
+ standalone:
47086
+ 'Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr'.split(
47087
+ '_'
47088
+ ),
47011
47089
  format: 'Janerachea_Febrerachea_Marsachea_Abrilachea_Maiachea_Junachea_Julaiachea_Agostachea_Setembrachea_Otubrachea_Novembrachea_Dezembrachea'.split(
47012
47090
  '_'
47013
47091
  ),
47014
47092
  isFormat: /MMMM(\s)+D[oD]?/,
47015
47093
  },
47016
- monthsShort: 'Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.'.split(
47017
- '_'
47018
- ),
47094
+ monthsShort:
47095
+ 'Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.'.split('_'),
47019
47096
  monthsParseExact: true,
47020
47097
  weekdays: "Aitar_Somar_Mongllar_Budhvar_Birestar_Sukrar_Son'var".split('_'),
47021
47098
  weekdaysShort: 'Ait._Som._Mon._Bud._Bre._Suk._Son.'.split('_'),
@@ -47154,9 +47231,10 @@ module.exports = __webpack_require__(348);
47154
47231
  months: 'જાન્યુઆરી_ફેબ્રુઆરી_માર્ચ_એપ્રિલ_મે_જૂન_જુલાઈ_ઑગસ્ટ_સપ્ટેમ્બર_ઑક્ટ્બર_નવેમ્બર_ડિસેમ્બર'.split(
47155
47232
  '_'
47156
47233
  ),
47157
- monthsShort: 'જાન્યુ._ફેબ્રુ._માર્ચ_એપ્રિ._મે_જૂન_જુલા._ઑગ._સપ્ટે._ઑક્ટ્._નવે._ડિસે.'.split(
47158
- '_'
47159
- ),
47234
+ monthsShort:
47235
+ 'જાન્યુ._ફેબ્રુ._માર્ચ_એપ્રિ._મે_જૂન_જુલા._ઑગ._સપ્ટે._ઑક્ટ્._નવે._ડિસે.'.split(
47236
+ '_'
47237
+ ),
47160
47238
  monthsParseExact: true,
47161
47239
  weekdays: 'રવિવાર_સોમવાર_મંગળવાર_બુધ્વાર_ગુરુવાર_શુક્રવાર_શનિવાર'.split(
47162
47240
  '_'
@@ -47268,9 +47346,8 @@ module.exports = __webpack_require__(348);
47268
47346
  months: 'ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר'.split(
47269
47347
  '_'
47270
47348
  ),
47271
- monthsShort: 'ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳'.split(
47272
- '_'
47273
- ),
47349
+ monthsShort:
47350
+ 'ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳'.split('_'),
47274
47351
  weekdays: 'ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת'.split('_'),
47275
47352
  weekdaysShort: 'א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳'.split('_'),
47276
47353
  weekdaysMin: 'א_ב_ג_ד_ה_ו_ש'.split('_'),
@@ -47332,7 +47409,8 @@ module.exports = __webpack_require__(348);
47332
47409
  return number + ' שנים';
47333
47410
  },
47334
47411
  },
47335
- meridiemParse: /אחה"צ|לפנה"צ|אחרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,
47412
+ meridiemParse:
47413
+ /אחה"צ|לפנה"צ|אחרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,
47336
47414
  isPM: function (input) {
47337
47415
  return /^(אחה"צ|אחרי הצהריים|בערב)$/.test(input);
47338
47416
  },
@@ -47430,13 +47508,13 @@ module.exports = __webpack_require__(348);
47430
47508
  format: 'जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर'.split(
47431
47509
  '_'
47432
47510
  ),
47433
- standalone: 'जनवरी_फरवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितंबर_अक्टूबर_नवंबर_दिसंबर'.split(
47434
- '_'
47435
- ),
47511
+ standalone:
47512
+ 'जनवरी_फरवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितंबर_अक्टूबर_नवंबर_दिसंबर'.split(
47513
+ '_'
47514
+ ),
47436
47515
  },
47437
- monthsShort: 'जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.'.split(
47438
- '_'
47439
- ),
47516
+ monthsShort:
47517
+ 'जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.'.split('_'),
47440
47518
  weekdays: 'रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),
47441
47519
  weekdaysShort: 'रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि'.split('_'),
47442
47520
  weekdaysMin: 'र_सो_मं_बु_गु_शु_श'.split('_'),
@@ -47453,13 +47531,17 @@ module.exports = __webpack_require__(348);
47453
47531
  longMonthsParse: monthsParse,
47454
47532
  shortMonthsParse: shortMonthsParse,
47455
47533
 
47456
- monthsRegex: /^(जनवरी|जन\.?|फ़रवरी|फरवरी|फ़र\.?|मार्च?|अप्रैल|अप्रै\.?|मई?|जून?|जुलाई|जुल\.?|अगस्त|अग\.?|सितम्बर|सितंबर|सित\.?|अक्टूबर|अक्टू\.?|नवम्बर|नवंबर|नव\.?|दिसम्बर|दिसंबर|दिस\.?)/i,
47534
+ monthsRegex:
47535
+ /^(जनवरी|जन\.?|फ़रवरी|फरवरी|फ़र\.?|मार्च?|अप्रैल|अप्रै\.?|मई?|जून?|जुलाई|जुल\.?|अगस्त|अग\.?|सितम्बर|सितंबर|सित\.?|अक्टूबर|अक्टू\.?|नवम्बर|नवंबर|नव\.?|दिसम्बर|दिसंबर|दिस\.?)/i,
47457
47536
 
47458
- monthsShortRegex: /^(जनवरी|जन\.?|फ़रवरी|फरवरी|फ़र\.?|मार्च?|अप्रैल|अप्रै\.?|मई?|जून?|जुलाई|जुल\.?|अगस्त|अग\.?|सितम्बर|सितंबर|सित\.?|अक्टूबर|अक्टू\.?|नवम्बर|नवंबर|नव\.?|दिसम्बर|दिसंबर|दिस\.?)/i,
47537
+ monthsShortRegex:
47538
+ /^(जनवरी|जन\.?|फ़रवरी|फरवरी|फ़र\.?|मार्च?|अप्रैल|अप्रै\.?|मई?|जून?|जुलाई|जुल\.?|अगस्त|अग\.?|सितम्बर|सितंबर|सित\.?|अक्टूबर|अक्टू\.?|नवम्बर|नवंबर|नव\.?|दिसम्बर|दिसंबर|दिस\.?)/i,
47459
47539
 
47460
- monthsStrictRegex: /^(जनवरी?|फ़रवरी|फरवरी?|मार्च?|अप्रैल?|मई?|जून?|जुलाई?|अगस्त?|सितम्बर|सितंबर|सित?\.?|अक्टूबर|अक्टू\.?|नवम्बर|नवंबर?|दिसम्बर|दिसंबर?)/i,
47540
+ monthsStrictRegex:
47541
+ /^(जनवरी?|फ़रवरी|फरवरी?|मार्च?|अप्रैल?|मई?|जून?|जुलाई?|अगस्त?|सितम्बर|सितंबर|सित?\.?|अक्टूबर|अक्टू\.?|नवम्बर|नवंबर?|दिसम्बर|दिसंबर?)/i,
47461
47542
 
47462
- monthsShortStrictRegex: /^(जन\.?|फ़र\.?|मार्च?|अप्रै\.?|मई?|जून?|जुल\.?|अग\.?|सित\.?|अक्टू\.?|नव\.?|दिस\.?)/i,
47543
+ monthsShortStrictRegex:
47544
+ /^(जन\.?|फ़र\.?|मार्च?|अप्रै\.?|मई?|जून?|जुल\.?|अग\.?|सित\.?|अक्टू\.?|नव\.?|दिस\.?)/i,
47463
47545
 
47464
47546
  calendar: {
47465
47547
  sameDay: '[आज] LT',
@@ -47619,13 +47701,15 @@ module.exports = __webpack_require__(348);
47619
47701
  format: 'siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca'.split(
47620
47702
  '_'
47621
47703
  ),
47622
- standalone: 'siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac'.split(
47704
+ standalone:
47705
+ 'siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac'.split(
47706
+ '_'
47707
+ ),
47708
+ },
47709
+ monthsShort:
47710
+ 'sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.'.split(
47623
47711
  '_'
47624
47712
  ),
47625
- },
47626
- monthsShort: 'sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.'.split(
47627
- '_'
47628
- ),
47629
47713
  monthsParseExact: true,
47630
47714
  weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split(
47631
47715
  '_'
@@ -47723,9 +47807,8 @@ module.exports = __webpack_require__(348);
47723
47807
 
47724
47808
  //! moment.js locale configuration
47725
47809
 
47726
- var weekEndings = 'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(
47727
- ' '
47728
- );
47810
+ var weekEndings =
47811
+ 'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(' ');
47729
47812
  function translate(number, withoutSuffix, key, isFuture) {
47730
47813
  var num = number;
47731
47814
  switch (key) {
@@ -47773,9 +47856,10 @@ module.exports = __webpack_require__(348);
47773
47856
  months: 'január_február_március_április_május_június_július_augusztus_szeptember_október_november_december'.split(
47774
47857
  '_'
47775
47858
  ),
47776
- monthsShort: 'jan._feb._márc._ápr._máj._jún._júl._aug._szept._okt._nov._dec.'.split(
47777
- '_'
47778
- ),
47859
+ monthsShort:
47860
+ 'jan._feb._márc._ápr._máj._jún._júl._aug._szept._okt._nov._dec.'.split(
47861
+ '_'
47862
+ ),
47779
47863
  monthsParseExact: true,
47780
47864
  weekdays: 'vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat'.split('_'),
47781
47865
  weekdaysShort: 'vas_hét_kedd_sze_csüt_pén_szo'.split('_'),
@@ -47861,14 +47945,16 @@ module.exports = __webpack_require__(348);
47861
47945
  format: 'հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի'.split(
47862
47946
  '_'
47863
47947
  ),
47864
- standalone: 'հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր'.split(
47865
- '_'
47866
- ),
47948
+ standalone:
47949
+ 'հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր'.split(
47950
+ '_'
47951
+ ),
47867
47952
  },
47868
47953
  monthsShort: 'հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ'.split('_'),
47869
- weekdays: 'կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ'.split(
47870
- '_'
47871
- ),
47954
+ weekdays:
47955
+ 'կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ'.split(
47956
+ '_'
47957
+ ),
47872
47958
  weekdaysShort: 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),
47873
47959
  weekdaysMin: 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),
47874
47960
  longDateFormat: {
@@ -48145,9 +48231,10 @@ module.exports = __webpack_require__(348);
48145
48231
  '_'
48146
48232
  ),
48147
48233
  monthsShort: 'jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des'.split('_'),
48148
- weekdays: 'sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur'.split(
48149
- '_'
48150
- ),
48234
+ weekdays:
48235
+ 'sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur'.split(
48236
+ '_'
48237
+ ),
48151
48238
  weekdaysShort: 'sun_mán_þri_mið_fim_fös_lau'.split('_'),
48152
48239
  weekdaysMin: 'Su_Má_Þr_Mi_Fi_Fö_La'.split('_'),
48153
48240
  longDateFormat: {
@@ -48675,9 +48762,10 @@ module.exports = __webpack_require__(348);
48675
48762
  ),
48676
48763
  monthsShort: 'იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ'.split('_'),
48677
48764
  weekdays: {
48678
- standalone: 'კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი'.split(
48679
- '_'
48680
- ),
48765
+ standalone:
48766
+ 'კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი'.split(
48767
+ '_'
48768
+ ),
48681
48769
  format: 'კვირას_ორშაბათს_სამშაბათს_ოთხშაბათს_ხუთშაბათს_პარასკევს_შაბათს'.split(
48682
48770
  '_'
48683
48771
  ),
@@ -48703,13 +48791,12 @@ module.exports = __webpack_require__(348);
48703
48791
  },
48704
48792
  relativeTime: {
48705
48793
  future: function (s) {
48706
- return s.replace(/(წამ|წუთ|საათ|წელ|დღ|თვ)(ი|ე)/, function (
48707
- $0,
48708
- $1,
48709
- $2
48710
- ) {
48711
- return $2 === 'ი' ? $1 + 'ში' : $1 + $2 + 'ში';
48712
- });
48794
+ return s.replace(
48795
+ /(წამ|წუთ|საათ|წელ|დღ|თვ)(ი|ე)/,
48796
+ function ($0, $1, $2) {
48797
+ return $2 === 'ი' ? $1 + 'ში' : $1 + $2 + 'ში';
48798
+ }
48799
+ );
48713
48800
  },
48714
48801
  past: function (s) {
48715
48802
  if (/(წამი|წუთი|საათი|დღე|თვე)/.test(s)) {
@@ -48904,9 +48991,10 @@ module.exports = __webpack_require__(348);
48904
48991
  months: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split(
48905
48992
  '_'
48906
48993
  ),
48907
- monthsShort: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split(
48908
- '_'
48909
- ),
48994
+ monthsShort:
48995
+ 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split(
48996
+ '_'
48997
+ ),
48910
48998
  weekdays: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'),
48911
48999
  weekdaysShort: 'អា_ច_អ_ព_ព្រ_សុ_ស'.split('_'),
48912
49000
  weekdaysMin: 'អា_ច_អ_ព_ព្រ_សុ_ស'.split('_'),
@@ -49022,9 +49110,10 @@ module.exports = __webpack_require__(348);
49022
49110
  months: 'ಜನವರಿ_ಫೆಬ್ರವರಿ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬರ್_ಅಕ್ಟೋಬರ್_ನವೆಂಬರ್_ಡಿಸೆಂಬರ್'.split(
49023
49111
  '_'
49024
49112
  ),
49025
- monthsShort: 'ಜನ_ಫೆಬ್ರ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂ_ಅಕ್ಟೋ_ನವೆಂ_ಡಿಸೆಂ'.split(
49026
- '_'
49027
- ),
49113
+ monthsShort:
49114
+ 'ಜನ_ಫೆಬ್ರ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂ_ಅಕ್ಟೋ_ನವೆಂ_ಡಿಸೆಂ'.split(
49115
+ '_'
49116
+ ),
49028
49117
  monthsParseExact: true,
49029
49118
  weekdays: 'ಭಾನುವಾರ_ಸೋಮವಾರ_ಮಂಗಳವಾರ_ಬುಧವಾರ_ಗುರುವಾರ_ಶುಕ್ರವಾರ_ಶನಿವಾರ'.split(
49030
49119
  '_'
@@ -49265,12 +49354,12 @@ module.exports = __webpack_require__(348);
49265
49354
  var ku = moment.defineLocale('ku', {
49266
49355
  months: months,
49267
49356
  monthsShort: months,
49268
- weekdays: 'یه‌كشه‌ممه‌_دووشه‌ممه‌_سێشه‌ممه‌_چوارشه‌ممه‌_پێنجشه‌ممه‌_هه‌ینی_شه‌ممه‌'.split(
49269
- '_'
49270
- ),
49271
- weekdaysShort: 'یه‌كشه‌م_دووشه‌م_سێشه‌م_چوارشه‌م_پێنجشه‌م_هه‌ینی_شه‌ممه‌'.split(
49272
- '_'
49273
- ),
49357
+ weekdays:
49358
+ 'یه‌كشه‌ممه‌_دووشه‌ممه‌_سێشه‌ممه‌_چوارشه‌ممه‌_پێنجشه‌ممه‌_هه‌ینی_شه‌ممه‌'.split(
49359
+ '_'
49360
+ ),
49361
+ weekdaysShort:
49362
+ 'یه‌كشه‌م_دووشه‌م_سێشه‌م_چوارشه‌م_پێنجشه‌م_هه‌ینی_شه‌ممه‌'.split('_'),
49274
49363
  weekdaysMin: 'ی_د_س_چ_پ_ه_ش'.split('_'),
49275
49364
  weekdaysParseExact: true,
49276
49365
  longDateFormat: {
@@ -49528,13 +49617,15 @@ module.exports = __webpack_require__(348);
49528
49617
  months: 'Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember'.split(
49529
49618
  '_'
49530
49619
  ),
49531
- monthsShort: 'Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split(
49532
- '_'
49533
- ),
49620
+ monthsShort:
49621
+ 'Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split(
49622
+ '_'
49623
+ ),
49534
49624
  monthsParseExact: true,
49535
- weekdays: 'Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg'.split(
49536
- '_'
49537
- ),
49625
+ weekdays:
49626
+ 'Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg'.split(
49627
+ '_'
49628
+ ),
49538
49629
  weekdaysShort: 'So._Mé._Dë._Më._Do._Fr._Sa.'.split('_'),
49539
49630
  weekdaysMin: 'So_Mé_Dë_Më_Do_Fr_Sa'.split('_'),
49540
49631
  weekdaysParseExact: true,
@@ -49612,9 +49703,10 @@ module.exports = __webpack_require__(348);
49612
49703
  months: 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split(
49613
49704
  '_'
49614
49705
  ),
49615
- monthsShort: 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split(
49616
- '_'
49617
- ),
49706
+ monthsShort:
49707
+ 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split(
49708
+ '_'
49709
+ ),
49618
49710
  weekdays: 'ອາທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'),
49619
49711
  weekdaysShort: 'ທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'),
49620
49712
  weekdaysMin: 'ທ_ຈ_ອຄ_ພ_ພຫ_ສກ_ສ'.split('_'),
@@ -49743,9 +49835,10 @@ module.exports = __webpack_require__(348);
49743
49835
  format: 'sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio'.split(
49744
49836
  '_'
49745
49837
  ),
49746
- standalone: 'sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis'.split(
49747
- '_'
49748
- ),
49838
+ standalone:
49839
+ 'sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis'.split(
49840
+ '_'
49841
+ ),
49749
49842
  isFormat: /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/,
49750
49843
  },
49751
49844
  monthsShort: 'sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd'.split('_'),
@@ -49753,9 +49846,10 @@ module.exports = __webpack_require__(348);
49753
49846
  format: 'sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį'.split(
49754
49847
  '_'
49755
49848
  ),
49756
- standalone: 'sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis'.split(
49757
- '_'
49758
- ),
49849
+ standalone:
49850
+ 'sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis'.split(
49851
+ '_'
49852
+ ),
49759
49853
  isFormat: /dddd HH:mm/,
49760
49854
  },
49761
49855
  weekdaysShort: 'Sek_Pir_Ant_Tre_Ket_Pen_Šeš'.split('_'),
@@ -49870,9 +49964,10 @@ module.exports = __webpack_require__(348);
49870
49964
  '_'
49871
49965
  ),
49872
49966
  monthsShort: 'jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec'.split('_'),
49873
- weekdays: 'svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena'.split(
49874
- '_'
49875
- ),
49967
+ weekdays:
49968
+ 'svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena'.split(
49969
+ '_'
49970
+ ),
49876
49971
  weekdaysShort: 'Sv_P_O_T_C_Pk_S'.split('_'),
49877
49972
  weekdaysMin: 'Sv_P_O_T_C_Pk_S'.split('_'),
49878
49973
  weekdaysParseExact: true,
@@ -49974,9 +50069,8 @@ module.exports = __webpack_require__(348);
49974
50069
  months: 'januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar'.split(
49975
50070
  '_'
49976
50071
  ),
49977
- monthsShort: 'jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.'.split(
49978
- '_'
49979
- ),
50072
+ monthsShort:
50073
+ 'jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.'.split('_'),
49980
50074
  monthsParseExact: true,
49981
50075
  weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split(
49982
50076
  '_'
@@ -50075,9 +50169,10 @@ module.exports = __webpack_require__(348);
50075
50169
  months: 'Kohi-tāte_Hui-tanguru_Poutū-te-rangi_Paenga-whāwhā_Haratua_Pipiri_Hōngoingoi_Here-turi-kōkā_Mahuru_Whiringa-ā-nuku_Whiringa-ā-rangi_Hakihea'.split(
50076
50170
  '_'
50077
50171
  ),
50078
- monthsShort: 'Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki'.split(
50079
- '_'
50080
- ),
50172
+ monthsShort:
50173
+ 'Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki'.split(
50174
+ '_'
50175
+ ),
50081
50176
  monthsRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
50082
50177
  monthsStrictRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
50083
50178
  monthsShortRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
@@ -50252,13 +50347,15 @@ module.exports = __webpack_require__(348);
50252
50347
  months: 'ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ'.split(
50253
50348
  '_'
50254
50349
  ),
50255
- monthsShort: 'ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.'.split(
50256
- '_'
50257
- ),
50350
+ monthsShort:
50351
+ 'ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.'.split(
50352
+ '_'
50353
+ ),
50258
50354
  monthsParseExact: true,
50259
- weekdays: 'ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച'.split(
50260
- '_'
50261
- ),
50355
+ weekdays:
50356
+ 'ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച'.split(
50357
+ '_'
50358
+ ),
50262
50359
  weekdaysShort: 'ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി'.split('_'),
50263
50360
  weekdaysMin: 'ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ'.split('_'),
50264
50361
  longDateFormat: {
@@ -50374,9 +50471,10 @@ module.exports = __webpack_require__(348);
50374
50471
  months: 'Нэгдүгээр сар_Хоёрдугаар сар_Гуравдугаар сар_Дөрөвдүгээр сар_Тавдугаар сар_Зургадугаар сар_Долдугаар сар_Наймдугаар сар_Есдүгээр сар_Аравдугаар сар_Арван нэгдүгээр сар_Арван хоёрдугаар сар'.split(
50375
50472
  '_'
50376
50473
  ),
50377
- monthsShort: '1 сар_2 сар_3 сар_4 сар_5 сар_6 сар_7 сар_8 сар_9 сар_10 сар_11 сар_12 сар'.split(
50378
- '_'
50379
- ),
50474
+ monthsShort:
50475
+ '1 сар_2 сар_3 сар_4 сар_5 сар_6 сар_7 сар_8 сар_9 сар_10 сар_11 сар_12 сар'.split(
50476
+ '_'
50477
+ ),
50380
50478
  monthsParseExact: true,
50381
50479
  weekdays: 'Ням_Даваа_Мягмар_Лхагва_Пүрэв_Баасан_Бямба'.split('_'),
50382
50480
  weekdaysShort: 'Ням_Дав_Мяг_Лха_Пүр_Баа_Бям'.split('_'),
@@ -50573,9 +50671,10 @@ module.exports = __webpack_require__(348);
50573
50671
  months: 'जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split(
50574
50672
  '_'
50575
50673
  ),
50576
- monthsShort: 'जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split(
50577
- '_'
50578
- ),
50674
+ monthsShort:
50675
+ 'जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split(
50676
+ '_'
50677
+ ),
50579
50678
  monthsParseExact: true,
50580
50679
  weekdays: 'रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),
50581
50680
  weekdaysShort: 'रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि'.split('_'),
@@ -50865,9 +50964,10 @@ module.exports = __webpack_require__(348);
50865
50964
  '_'
50866
50965
  ),
50867
50966
  monthsShort: 'Jan_Fra_Mar_Apr_Mej_Ġun_Lul_Aww_Set_Ott_Nov_Diċ'.split('_'),
50868
- weekdays: 'Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt'.split(
50869
- '_'
50870
- ),
50967
+ weekdays:
50968
+ 'Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt'.split(
50969
+ '_'
50970
+ ),
50871
50971
  weekdaysShort: 'Ħad_Tne_Tli_Erb_Ħam_Ġim_Sib'.split('_'),
50872
50972
  weekdaysMin: 'Ħa_Tn_Tl_Er_Ħa_Ġi_Si'.split('_'),
50873
50973
  longDateFormat: {
@@ -51044,9 +51144,8 @@ module.exports = __webpack_require__(348);
51044
51144
  months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split(
51045
51145
  '_'
51046
51146
  ),
51047
- monthsShort: 'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split(
51048
- '_'
51049
- ),
51147
+ monthsShort:
51148
+ 'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split('_'),
51050
51149
  monthsParseExact: true,
51051
51150
  weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
51052
51151
  weekdaysShort: 'sø._ma._ti._on._to._fr._lø.'.split('_'),
@@ -51144,9 +51243,10 @@ module.exports = __webpack_require__(348);
51144
51243
  months: 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split(
51145
51244
  '_'
51146
51245
  ),
51147
- monthsShort: 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split(
51148
- '_'
51149
- ),
51246
+ monthsShort:
51247
+ 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split(
51248
+ '_'
51249
+ ),
51150
51250
  monthsParseExact: true,
51151
51251
  weekdays: 'आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार'.split(
51152
51252
  '_'
@@ -51252,12 +51352,10 @@ module.exports = __webpack_require__(348);
51252
51352
 
51253
51353
  //! moment.js locale configuration
51254
51354
 
51255
- var monthsShortWithDots = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split(
51256
- '_'
51257
- ),
51258
- monthsShortWithoutDots = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split(
51259
- '_'
51260
- ),
51355
+ var monthsShortWithDots =
51356
+ 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_'),
51357
+ monthsShortWithoutDots =
51358
+ 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_'),
51261
51359
  monthsParse = [
51262
51360
  /^jan/i,
51263
51361
  /^feb/i,
@@ -51272,7 +51370,8 @@ module.exports = __webpack_require__(348);
51272
51370
  /^nov/i,
51273
51371
  /^dec/i,
51274
51372
  ],
51275
- monthsRegex = /^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;
51373
+ monthsRegex =
51374
+ /^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;
51276
51375
 
51277
51376
  var nl = moment.defineLocale('nl', {
51278
51377
  months: 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split(
@@ -51290,16 +51389,17 @@ module.exports = __webpack_require__(348);
51290
51389
 
51291
51390
  monthsRegex: monthsRegex,
51292
51391
  monthsShortRegex: monthsRegex,
51293
- monthsStrictRegex: /^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,
51294
- monthsShortStrictRegex: /^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,
51392
+ monthsStrictRegex:
51393
+ /^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,
51394
+ monthsShortStrictRegex:
51395
+ /^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,
51295
51396
 
51296
51397
  monthsParse: monthsParse,
51297
51398
  longMonthsParse: monthsParse,
51298
51399
  shortMonthsParse: monthsParse,
51299
51400
 
51300
- weekdays: 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split(
51301
- '_'
51302
- ),
51401
+ weekdays:
51402
+ 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split('_'),
51303
51403
  weekdaysShort: 'zo._ma._di._wo._do._vr._za.'.split('_'),
51304
51404
  weekdaysMin: 'zo_ma_di_wo_do_vr_za'.split('_'),
51305
51405
  weekdaysParseExact: true,
@@ -51372,12 +51472,10 @@ module.exports = __webpack_require__(348);
51372
51472
 
51373
51473
  //! moment.js locale configuration
51374
51474
 
51375
- var monthsShortWithDots = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split(
51376
- '_'
51377
- ),
51378
- monthsShortWithoutDots = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split(
51379
- '_'
51380
- ),
51475
+ var monthsShortWithDots =
51476
+ 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_'),
51477
+ monthsShortWithoutDots =
51478
+ 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_'),
51381
51479
  monthsParse = [
51382
51480
  /^jan/i,
51383
51481
  /^feb/i,
@@ -51392,7 +51490,8 @@ module.exports = __webpack_require__(348);
51392
51490
  /^nov/i,
51393
51491
  /^dec/i,
51394
51492
  ],
51395
- monthsRegex = /^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;
51493
+ monthsRegex =
51494
+ /^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;
51396
51495
 
51397
51496
  var nlBe = moment.defineLocale('nl-be', {
51398
51497
  months: 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split(
@@ -51410,16 +51509,17 @@ module.exports = __webpack_require__(348);
51410
51509
 
51411
51510
  monthsRegex: monthsRegex,
51412
51511
  monthsShortRegex: monthsRegex,
51413
- monthsStrictRegex: /^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,
51414
- monthsShortStrictRegex: /^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,
51512
+ monthsStrictRegex:
51513
+ /^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,
51514
+ monthsShortStrictRegex:
51515
+ /^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,
51415
51516
 
51416
51517
  monthsParse: monthsParse,
51417
51518
  longMonthsParse: monthsParse,
51418
51519
  shortMonthsParse: monthsParse,
51419
51520
 
51420
- weekdays: 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split(
51421
- '_'
51422
- ),
51521
+ weekdays:
51522
+ 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split('_'),
51423
51523
  weekdaysShort: 'zo._ma._di._wo._do._vr._za.'.split('_'),
51424
51524
  weekdaysMin: 'zo_ma_di_wo_do_vr_za'.split('_'),
51425
51525
  weekdaysParseExact: true,
@@ -51494,9 +51594,8 @@ module.exports = __webpack_require__(348);
51494
51594
  months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split(
51495
51595
  '_'
51496
51596
  ),
51497
- monthsShort: 'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split(
51498
- '_'
51499
- ),
51597
+ monthsShort:
51598
+ 'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split('_'),
51500
51599
  monthsParseExact: true,
51501
51600
  weekdays: 'sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag'.split('_'),
51502
51601
  weekdaysShort: 'su._må._ty._on._to._fr._lau.'.split('_'),
@@ -51567,17 +51666,19 @@ module.exports = __webpack_require__(348);
51567
51666
 
51568
51667
  var ocLnc = moment.defineLocale('oc-lnc', {
51569
51668
  months: {
51570
- standalone: 'genièr_febrièr_març_abril_mai_junh_julhet_agost_setembre_octòbre_novembre_decembre'.split(
51571
- '_'
51572
- ),
51669
+ standalone:
51670
+ 'genièr_febrièr_març_abril_mai_junh_julhet_agost_setembre_octòbre_novembre_decembre'.split(
51671
+ '_'
51672
+ ),
51573
51673
  format: "de genièr_de febrièr_de març_d'abril_de mai_de junh_de julhet_d'agost_de setembre_d'octòbre_de novembre_de decembre".split(
51574
51674
  '_'
51575
51675
  ),
51576
51676
  isFormat: /D[oD]?(\s)+MMMM/,
51577
51677
  },
51578
- monthsShort: 'gen._febr._març_abr._mai_junh_julh._ago._set._oct._nov._dec.'.split(
51579
- '_'
51580
- ),
51678
+ monthsShort:
51679
+ 'gen._febr._març_abr._mai_junh_julh._ago._set._oct._nov._dec.'.split(
51680
+ '_'
51681
+ ),
51581
51682
  monthsParseExact: true,
51582
51683
  weekdays: 'dimenge_diluns_dimars_dimècres_dijòus_divendres_dissabte'.split(
51583
51684
  '_'
@@ -51694,9 +51795,10 @@ module.exports = __webpack_require__(348);
51694
51795
  months: 'ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ'.split(
51695
51796
  '_'
51696
51797
  ),
51697
- monthsShort: 'ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ'.split(
51698
- '_'
51699
- ),
51798
+ monthsShort:
51799
+ 'ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ'.split(
51800
+ '_'
51801
+ ),
51700
51802
  weekdays: 'ਐਤਵਾਰ_ਸੋਮਵਾਰ_ਮੰਗਲਵਾਰ_ਬੁਧਵਾਰ_ਵੀਰਵਾਰ_ਸ਼ੁੱਕਰਵਾਰ_ਸ਼ਨੀਚਰਵਾਰ'.split(
51701
51803
  '_'
51702
51804
  ),
@@ -51801,12 +51903,14 @@ module.exports = __webpack_require__(348);
51801
51903
 
51802
51904
  //! moment.js locale configuration
51803
51905
 
51804
- var monthsNominative = 'styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień'.split(
51805
- '_'
51806
- ),
51807
- monthsSubjective = 'stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia'.split(
51808
- '_'
51809
- ),
51906
+ var monthsNominative =
51907
+ 'styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień'.split(
51908
+ '_'
51909
+ ),
51910
+ monthsSubjective =
51911
+ 'stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia'.split(
51912
+ '_'
51913
+ ),
51810
51914
  monthsParse = [
51811
51915
  /^sty/i,
51812
51916
  /^lut/i,
@@ -51860,9 +51964,8 @@ module.exports = __webpack_require__(348);
51860
51964
  monthsParse: monthsParse,
51861
51965
  longMonthsParse: monthsParse,
51862
51966
  shortMonthsParse: monthsParse,
51863
- weekdays: 'niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota'.split(
51864
- '_'
51865
- ),
51967
+ weekdays:
51968
+ 'niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota'.split('_'),
51866
51969
  weekdaysShort: 'ndz_pon_wt_śr_czw_pt_sob'.split('_'),
51867
51970
  weekdaysMin: 'Nd_Pn_Wt_Śr_Cz_Pt_So'.split('_'),
51868
51971
  longDateFormat: {
@@ -51961,9 +52064,10 @@ module.exports = __webpack_require__(348);
51961
52064
  '_'
51962
52065
  ),
51963
52066
  monthsShort: 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'),
51964
- weekdays: 'Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado'.split(
51965
- '_'
51966
- ),
52067
+ weekdays:
52068
+ 'Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado'.split(
52069
+ '_'
52070
+ ),
51967
52071
  weekdaysShort: 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'),
51968
52072
  weekdaysMin: 'Do_2ª_3ª_4ª_5ª_6ª_Sá'.split('_'),
51969
52073
  weekdaysParseExact: true,
@@ -52039,9 +52143,10 @@ module.exports = __webpack_require__(348);
52039
52143
  '_'
52040
52144
  ),
52041
52145
  monthsShort: 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'),
52042
- weekdays: 'domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado'.split(
52043
- '_'
52044
- ),
52146
+ weekdays:
52147
+ 'domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado'.split(
52148
+ '_'
52149
+ ),
52045
52150
  weekdaysShort: 'dom_seg_ter_qua_qui_sex_sáb'.split('_'),
52046
52151
  weekdaysMin: 'do_2ª_3ª_4ª_5ª_6ª_sá'.split('_'),
52047
52152
  weekdaysParseExact: true,
@@ -52130,9 +52235,10 @@ module.exports = __webpack_require__(348);
52130
52235
  months: 'ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie'.split(
52131
52236
  '_'
52132
52237
  ),
52133
- monthsShort: 'ian._feb._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.'.split(
52134
- '_'
52135
- ),
52238
+ monthsShort:
52239
+ 'ian._feb._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.'.split(
52240
+ '_'
52241
+ ),
52136
52242
  monthsParseExact: true,
52137
52243
  weekdays: 'duminică_luni_marți_miercuri_joi_vineri_sâmbătă'.split('_'),
52138
52244
  weekdaysShort: 'Dum_Lun_Mar_Mie_Joi_Vin_Sâm'.split('_'),
@@ -52247,23 +52353,26 @@ module.exports = __webpack_require__(348);
52247
52353
  format: 'января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря'.split(
52248
52354
  '_'
52249
52355
  ),
52250
- standalone: 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split(
52251
- '_'
52252
- ),
52356
+ standalone:
52357
+ 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split(
52358
+ '_'
52359
+ ),
52253
52360
  },
52254
52361
  monthsShort: {
52255
52362
  // по CLDR именно "июл." и "июн.", но какой смысл менять букву на точку?
52256
52363
  format: 'янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.'.split(
52257
52364
  '_'
52258
52365
  ),
52259
- standalone: 'янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.'.split(
52260
- '_'
52261
- ),
52366
+ standalone:
52367
+ 'янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.'.split(
52368
+ '_'
52369
+ ),
52262
52370
  },
52263
52371
  weekdays: {
52264
- standalone: 'воскресенье_понедельник_вторник_среда_четверг_пятница_суббота'.split(
52265
- '_'
52266
- ),
52372
+ standalone:
52373
+ 'воскресенье_понедельник_вторник_среда_четверг_пятница_суббота'.split(
52374
+ '_'
52375
+ ),
52267
52376
  format: 'воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу'.split(
52268
52377
  '_'
52269
52378
  ),
@@ -52276,16 +52385,20 @@ module.exports = __webpack_require__(348);
52276
52385
  shortMonthsParse: monthsParse,
52277
52386
 
52278
52387
  // полные названия с падежами, по три буквы, для некоторых, по 4 буквы, сокращения с точкой и без точки
52279
- monthsRegex: /^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,
52388
+ monthsRegex:
52389
+ /^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,
52280
52390
 
52281
52391
  // копия предыдущего
52282
- monthsShortRegex: /^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,
52392
+ monthsShortRegex:
52393
+ /^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,
52283
52394
 
52284
52395
  // полные названия с падежами
52285
- monthsStrictRegex: /^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i,
52396
+ monthsStrictRegex:
52397
+ /^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i,
52286
52398
 
52287
52399
  // Выражение, которое соответствует только сокращённым формам
52288
- monthsShortStrictRegex: /^(янв\.|февр?\.|мар[т.]|апр\.|ма[яй]|июн[ья.]|июл[ья.]|авг\.|сент?\.|окт\.|нояб?\.|дек\.)/i,
52400
+ monthsShortStrictRegex:
52401
+ /^(янв\.|февр?\.|мар[т.]|апр\.|ма[яй]|июн[ья.]|июл[ья.]|авг\.|сент?\.|окт\.|нояб?\.|дек\.)/i,
52289
52402
  longDateFormat: {
52290
52403
  LT: 'H:mm',
52291
52404
  LTS: 'H:mm:ss',
@@ -52521,12 +52634,12 @@ module.exports = __webpack_require__(348);
52521
52634
  months: 'ođđajagemánnu_guovvamánnu_njukčamánnu_cuoŋománnu_miessemánnu_geassemánnu_suoidnemánnu_borgemánnu_čakčamánnu_golggotmánnu_skábmamánnu_juovlamánnu'.split(
52522
52635
  '_'
52523
52636
  ),
52524
- monthsShort: 'ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov'.split(
52525
- '_'
52526
- ),
52527
- weekdays: 'sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat'.split(
52528
- '_'
52529
- ),
52637
+ monthsShort:
52638
+ 'ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov'.split('_'),
52639
+ weekdays:
52640
+ 'sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat'.split(
52641
+ '_'
52642
+ ),
52530
52643
  weekdaysShort: 'sotn_vuos_maŋ_gask_duor_bear_láv'.split('_'),
52531
52644
  weekdaysMin: 's_v_m_g_d_b_L'.split('_'),
52532
52645
  longDateFormat: {
@@ -52598,9 +52711,10 @@ module.exports = __webpack_require__(348);
52598
52711
  monthsShort: 'ජන_පෙබ_මාර්_අප්_මැයි_ජූනි_ජූලි_අගෝ_සැප්_ඔක්_නොවැ_දෙසැ'.split(
52599
52712
  '_'
52600
52713
  ),
52601
- weekdays: 'ඉරිදා_සඳුදා_අඟහරුවාදා_බදාදා_බ්‍රහස්පතින්දා_සිකුරාදා_සෙනසුරාදා'.split(
52602
- '_'
52603
- ),
52714
+ weekdays:
52715
+ 'ඉරිදා_සඳුදා_අඟහරුවාදා_බදාදා_බ්‍රහස්පතින්දා_සිකුරාදා_සෙනසුරාදා'.split(
52716
+ '_'
52717
+ ),
52604
52718
  weekdaysShort: 'ඉරි_සඳු_අඟ_බදා_බ්‍රහ_සිකු_සෙන'.split('_'),
52605
52719
  weekdaysMin: 'ඉ_ස_අ_බ_බ්‍ර_සි_සෙ'.split('_'),
52606
52720
  weekdaysParseExact: true,
@@ -52675,9 +52789,10 @@ module.exports = __webpack_require__(348);
52675
52789
 
52676
52790
  //! moment.js locale configuration
52677
52791
 
52678
- var months = 'január_február_marec_apríl_máj_jún_júl_august_september_október_november_december'.split(
52679
- '_'
52680
- ),
52792
+ var months =
52793
+ 'január_február_marec_apríl_máj_jún_júl_august_september_október_november_december'.split(
52794
+ '_'
52795
+ ),
52681
52796
  monthsShort = 'jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec'.split('_');
52682
52797
  function plural(n) {
52683
52798
  return n > 1 && n < 5;
@@ -52922,9 +53037,10 @@ module.exports = __webpack_require__(348);
52922
53037
  months: 'januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december'.split(
52923
53038
  '_'
52924
53039
  ),
52925
- monthsShort: 'jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.'.split(
52926
- '_'
52927
- ),
53040
+ monthsShort:
53041
+ 'jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.'.split(
53042
+ '_'
53043
+ ),
52928
53044
  monthsParseExact: true,
52929
53045
  weekdays: 'nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota'.split('_'),
52930
53046
  weekdaysShort: 'ned._pon._tor._sre._čet._pet._sob.'.split('_'),
@@ -53106,32 +53222,44 @@ module.exports = __webpack_require__(348);
53106
53222
  words: {
53107
53223
  //Different grammatical cases
53108
53224
  ss: ['sekunda', 'sekunde', 'sekundi'],
53109
- m: ['jedan minut', 'jedne minute'],
53110
- mm: ['minut', 'minute', 'minuta'],
53225
+ m: ['jedan minut', 'jednog minuta'],
53226
+ mm: ['minut', 'minuta', 'minuta'],
53111
53227
  h: ['jedan sat', 'jednog sata'],
53112
53228
  hh: ['sat', 'sata', 'sati'],
53229
+ d: ['jedan dan', 'jednog dana'],
53113
53230
  dd: ['dan', 'dana', 'dana'],
53231
+ M: ['jedan mesec', 'jednog meseca'],
53114
53232
  MM: ['mesec', 'meseca', 'meseci'],
53115
- yy: ['godina', 'godine', 'godina'],
53233
+ y: ['jednu godinu', 'jedne godine'],
53234
+ yy: ['godinu', 'godine', 'godina'],
53116
53235
  },
53117
53236
  correctGrammaticalCase: function (number, wordKey) {
53118
- return number === 1
53119
- ? wordKey[0]
53120
- : number >= 2 && number <= 4
53121
- ? wordKey[1]
53122
- : wordKey[2];
53237
+ if (
53238
+ number % 10 >= 1 &&
53239
+ number % 10 <= 4 &&
53240
+ (number % 100 < 10 || number % 100 >= 20)
53241
+ ) {
53242
+ return number % 10 === 1 ? wordKey[0] : wordKey[1];
53243
+ }
53244
+ return wordKey[2];
53123
53245
  },
53124
- translate: function (number, withoutSuffix, key) {
53125
- var wordKey = translator.words[key];
53246
+ translate: function (number, withoutSuffix, key, isFuture) {
53247
+ var wordKey = translator.words[key],
53248
+ word;
53249
+
53126
53250
  if (key.length === 1) {
53127
- return withoutSuffix ? wordKey[0] : wordKey[1];
53128
- } else {
53129
- return (
53130
- number +
53131
- ' ' +
53132
- translator.correctGrammaticalCase(number, wordKey)
53133
- );
53251
+ // Nominativ
53252
+ if (key === 'y' && withoutSuffix) return 'jedna godina';
53253
+ return isFuture || withoutSuffix ? wordKey[0] : wordKey[1];
53254
+ }
53255
+
53256
+ word = translator.correctGrammaticalCase(number, wordKey);
53257
+ // Nominativ
53258
+ if (key === 'yy' && withoutSuffix && word === 'godinu') {
53259
+ return number + ' godina';
53134
53260
  }
53261
+
53262
+ return number + ' ' + word;
53135
53263
  },
53136
53264
  };
53137
53265
 
@@ -53139,9 +53267,8 @@ module.exports = __webpack_require__(348);
53139
53267
  months: 'januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar'.split(
53140
53268
  '_'
53141
53269
  ),
53142
- monthsShort: 'jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.'.split(
53143
- '_'
53144
- ),
53270
+ monthsShort:
53271
+ 'jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.'.split('_'),
53145
53272
  monthsParseExact: true,
53146
53273
  weekdays: 'nedelja_ponedeljak_utorak_sreda_četvrtak_petak_subota'.split(
53147
53274
  '_'
@@ -53199,11 +53326,11 @@ module.exports = __webpack_require__(348);
53199
53326
  mm: translator.translate,
53200
53327
  h: translator.translate,
53201
53328
  hh: translator.translate,
53202
- d: 'dan',
53329
+ d: translator.translate,
53203
53330
  dd: translator.translate,
53204
- M: 'mesec',
53331
+ M: translator.translate,
53205
53332
  MM: translator.translate,
53206
- y: 'godinu',
53333
+ y: translator.translate,
53207
53334
  yy: translator.translate,
53208
53335
  },
53209
53336
  dayOfMonthOrdinalParse: /\d{1,2}\./,
@@ -53240,32 +53367,44 @@ module.exports = __webpack_require__(348);
53240
53367
  words: {
53241
53368
  //Different grammatical cases
53242
53369
  ss: ['секунда', 'секунде', 'секунди'],
53243
- m: ['један минут', 'једне минуте'],
53244
- mm: ['минут', 'минуте', 'минута'],
53370
+ m: ['један минут', 'једног минута'],
53371
+ mm: ['минут', 'минута', 'минута'],
53245
53372
  h: ['један сат', 'једног сата'],
53246
53373
  hh: ['сат', 'сата', 'сати'],
53374
+ d: ['један дан', 'једног дана'],
53247
53375
  dd: ['дан', 'дана', 'дана'],
53376
+ M: ['један месец', 'једног месеца'],
53248
53377
  MM: ['месец', 'месеца', 'месеци'],
53249
- yy: ['година', 'године', 'година'],
53378
+ y: ['једну годину', 'једне године'],
53379
+ yy: ['годину', 'године', 'година'],
53250
53380
  },
53251
53381
  correctGrammaticalCase: function (number, wordKey) {
53252
- return number === 1
53253
- ? wordKey[0]
53254
- : number >= 2 && number <= 4
53255
- ? wordKey[1]
53256
- : wordKey[2];
53382
+ if (
53383
+ number % 10 >= 1 &&
53384
+ number % 10 <= 4 &&
53385
+ (number % 100 < 10 || number % 100 >= 20)
53386
+ ) {
53387
+ return number % 10 === 1 ? wordKey[0] : wordKey[1];
53388
+ }
53389
+ return wordKey[2];
53257
53390
  },
53258
- translate: function (number, withoutSuffix, key) {
53259
- var wordKey = translator.words[key];
53391
+ translate: function (number, withoutSuffix, key, isFuture) {
53392
+ var wordKey = translator.words[key],
53393
+ word;
53394
+
53260
53395
  if (key.length === 1) {
53261
- return withoutSuffix ? wordKey[0] : wordKey[1];
53262
- } else {
53263
- return (
53264
- number +
53265
- ' ' +
53266
- translator.correctGrammaticalCase(number, wordKey)
53267
- );
53396
+ // Nominativ
53397
+ if (key === 'y' && withoutSuffix) return 'једна година';
53398
+ return isFuture || withoutSuffix ? wordKey[0] : wordKey[1];
53399
+ }
53400
+
53401
+ word = translator.correctGrammaticalCase(number, wordKey);
53402
+ // Nominativ
53403
+ if (key === 'yy' && withoutSuffix && word === 'годину') {
53404
+ return number + ' година';
53268
53405
  }
53406
+
53407
+ return number + ' ' + word;
53269
53408
  },
53270
53409
  };
53271
53410
 
@@ -53273,9 +53412,8 @@ module.exports = __webpack_require__(348);
53273
53412
  months: 'јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар'.split(
53274
53413
  '_'
53275
53414
  ),
53276
- monthsShort: 'јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.'.split(
53277
- '_'
53278
- ),
53415
+ monthsShort:
53416
+ 'јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.'.split('_'),
53279
53417
  monthsParseExact: true,
53280
53418
  weekdays: 'недеља_понедељак_уторак_среда_четвртак_петак_субота'.split('_'),
53281
53419
  weekdaysShort: 'нед._пон._уто._сре._чет._пет._суб.'.split('_'),
@@ -53331,11 +53469,11 @@ module.exports = __webpack_require__(348);
53331
53469
  mm: translator.translate,
53332
53470
  h: translator.translate,
53333
53471
  hh: translator.translate,
53334
- d: 'дан',
53472
+ d: translator.translate,
53335
53473
  dd: translator.translate,
53336
- M: 'месец',
53474
+ M: translator.translate,
53337
53475
  MM: translator.translate,
53338
- y: 'годину',
53476
+ y: translator.translate,
53339
53477
  yy: translator.translate,
53340
53478
  },
53341
53479
  dayOfMonthOrdinalParse: /\d{1,2}\./,
@@ -53372,9 +53510,10 @@ module.exports = __webpack_require__(348);
53372
53510
  '_'
53373
53511
  ),
53374
53512
  monthsShort: 'Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo'.split('_'),
53375
- weekdays: 'Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo'.split(
53376
- '_'
53377
- ),
53513
+ weekdays:
53514
+ 'Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo'.split(
53515
+ '_'
53516
+ ),
53378
53517
  weekdaysShort: 'Lis_Umb_Lsb_Les_Lsi_Lsh_Umg'.split('_'),
53379
53518
  weekdaysMin: 'Li_Us_Lb_Lt_Ls_Lh_Ug'.split('_'),
53380
53519
  weekdaysParseExact: true,
@@ -53555,9 +53694,10 @@ module.exports = __webpack_require__(348);
53555
53694
  '_'
53556
53695
  ),
53557
53696
  monthsShort: 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des'.split('_'),
53558
- weekdays: 'Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi'.split(
53559
- '_'
53560
- ),
53697
+ weekdays:
53698
+ 'Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi'.split(
53699
+ '_'
53700
+ ),
53561
53701
  weekdaysShort: 'Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos'.split('_'),
53562
53702
  weekdaysMin: 'J2_J3_J4_J5_Al_Ij_J1'.split('_'),
53563
53703
  weekdaysParseExact: true,
@@ -53649,12 +53789,14 @@ module.exports = __webpack_require__(348);
53649
53789
  months: 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split(
53650
53790
  '_'
53651
53791
  ),
53652
- monthsShort: 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split(
53653
- '_'
53654
- ),
53655
- weekdays: 'ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை'.split(
53656
- '_'
53657
- ),
53792
+ monthsShort:
53793
+ 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split(
53794
+ '_'
53795
+ ),
53796
+ weekdays:
53797
+ 'ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை'.split(
53798
+ '_'
53799
+ ),
53658
53800
  weekdaysShort: 'ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி'.split(
53659
53801
  '_'
53660
53802
  ),
@@ -53769,13 +53911,15 @@ module.exports = __webpack_require__(348);
53769
53911
  months: 'జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జులై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్'.split(
53770
53912
  '_'
53771
53913
  ),
53772
- monthsShort: 'జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.'.split(
53773
- '_'
53774
- ),
53914
+ monthsShort:
53915
+ 'జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.'.split(
53916
+ '_'
53917
+ ),
53775
53918
  monthsParseExact: true,
53776
- weekdays: 'ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం'.split(
53777
- '_'
53778
- ),
53919
+ weekdays:
53920
+ 'ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం'.split(
53921
+ '_'
53922
+ ),
53779
53923
  weekdaysShort: 'ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని'.split('_'),
53780
53924
  weekdaysMin: 'ఆ_సో_మం_బు_గు_శు_శ'.split('_'),
53781
53925
  longDateFormat: {
@@ -53981,9 +54125,10 @@ module.exports = __webpack_require__(348);
53981
54125
  format: 'январи_феврали_марти_апрели_майи_июни_июли_августи_сентябри_октябри_ноябри_декабри'.split(
53982
54126
  '_'
53983
54127
  ),
53984
- standalone: 'январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр'.split(
53985
- '_'
53986
- ),
54128
+ standalone:
54129
+ 'январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр'.split(
54130
+ '_'
54131
+ ),
53987
54132
  },
53988
54133
  monthsShort: 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек'.split('_'),
53989
54134
  weekdays: 'якшанбе_душанбе_сешанбе_чоршанбе_панҷшанбе_ҷумъа_шанбе'.split(
@@ -54087,9 +54232,10 @@ module.exports = __webpack_require__(348);
54087
54232
  months: 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'.split(
54088
54233
  '_'
54089
54234
  ),
54090
- monthsShort: 'ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'.split(
54091
- '_'
54092
- ),
54235
+ monthsShort:
54236
+ 'ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'.split(
54237
+ '_'
54238
+ ),
54093
54239
  monthsParseExact: true,
54094
54240
  weekdays: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'),
54095
54241
  weekdaysShort: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'), // yes, three characters difference
@@ -54410,19 +54556,18 @@ module.exports = __webpack_require__(348);
54410
54556
  months: 'tera’ jar wa’_tera’ jar cha’_tera’ jar wej_tera’ jar loS_tera’ jar vagh_tera’ jar jav_tera’ jar Soch_tera’ jar chorgh_tera’ jar Hut_tera’ jar wa’maH_tera’ jar wa’maH wa’_tera’ jar wa’maH cha’'.split(
54411
54557
  '_'
54412
54558
  ),
54413
- monthsShort: 'jar wa’_jar cha’_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa’maH_jar wa’maH wa’_jar wa’maH cha’'.split(
54414
- '_'
54415
- ),
54559
+ monthsShort:
54560
+ 'jar wa’_jar cha’_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa’maH_jar wa’maH wa’_jar wa’maH cha’'.split(
54561
+ '_'
54562
+ ),
54416
54563
  monthsParseExact: true,
54417
54564
  weekdays: 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split(
54418
54565
  '_'
54419
54566
  ),
54420
- weekdaysShort: 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split(
54421
- '_'
54422
- ),
54423
- weekdaysMin: 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split(
54424
- '_'
54425
- ),
54567
+ weekdaysShort:
54568
+ 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split('_'),
54569
+ weekdaysMin:
54570
+ 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split('_'),
54426
54571
  longDateFormat: {
54427
54572
  LT: 'HH:mm',
54428
54573
  LTS: 'HH:mm:ss',
@@ -54514,7 +54659,7 @@ module.exports = __webpack_require__(348);
54514
54659
  weekdays: 'Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi'.split(
54515
54660
  '_'
54516
54661
  ),
54517
- weekdaysShort: 'Paz_Pts_Sal_Çar_Per_Cum_Cts'.split('_'),
54662
+ weekdaysShort: 'Paz_Pzt_Sal_Çar_Per_Cum_Cmt'.split('_'),
54518
54663
  weekdaysMin: 'Pz_Pt_Sa_Ça_Pe_Cu_Ct'.split('_'),
54519
54664
  meridiem: function (hours, minutes, isLower) {
54520
54665
  if (hours < 12) {
@@ -54715,9 +54860,10 @@ module.exports = __webpack_require__(348);
54715
54860
  months: 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split(
54716
54861
  '_'
54717
54862
  ),
54718
- monthsShort: 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split(
54719
- '_'
54720
- ),
54863
+ monthsShort:
54864
+ 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split(
54865
+ '_'
54866
+ ),
54721
54867
  weekdays: 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),
54722
54868
  weekdaysShort: 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),
54723
54869
  weekdaysMin: 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),
@@ -54784,9 +54930,10 @@ module.exports = __webpack_require__(348);
54784
54930
  months: 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split(
54785
54931
  '_'
54786
54932
  ),
54787
- monthsShort: 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split(
54788
- '_'
54789
- ),
54933
+ monthsShort:
54934
+ 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split(
54935
+ '_'
54936
+ ),
54790
54937
  weekdays: 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),
54791
54938
  weekdaysShort: 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),
54792
54939
  weekdaysMin: 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),
@@ -54853,9 +55000,10 @@ module.exports = __webpack_require__(348);
54853
55000
  months: 'يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر'.split(
54854
55001
  '_'
54855
55002
  ),
54856
- monthsShort: 'يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر'.split(
54857
- '_'
54858
- ),
55003
+ monthsShort:
55004
+ 'يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر'.split(
55005
+ '_'
55006
+ ),
54859
55007
  weekdays: 'يەكشەنبە_دۈشەنبە_سەيشەنبە_چارشەنبە_پەيشەنبە_جۈمە_شەنبە'.split(
54860
55008
  '_'
54861
55009
  ),
@@ -55003,15 +55151,18 @@ module.exports = __webpack_require__(348);
55003
55151
  }
55004
55152
  function weekdaysCaseReplace(m, format) {
55005
55153
  var weekdays = {
55006
- nominative: 'неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота'.split(
55007
- '_'
55008
- ),
55009
- accusative: 'неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу'.split(
55010
- '_'
55011
- ),
55012
- genitive: 'неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи'.split(
55013
- '_'
55014
- ),
55154
+ nominative:
55155
+ 'неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота'.split(
55156
+ '_'
55157
+ ),
55158
+ accusative:
55159
+ 'неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу'.split(
55160
+ '_'
55161
+ ),
55162
+ genitive:
55163
+ 'неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи'.split(
55164
+ '_'
55165
+ ),
55015
55166
  },
55016
55167
  nounCase;
55017
55168
 
@@ -55042,9 +55193,10 @@ module.exports = __webpack_require__(348);
55042
55193
  format: 'січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня'.split(
55043
55194
  '_'
55044
55195
  ),
55045
- standalone: 'січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень'.split(
55046
- '_'
55047
- ),
55196
+ standalone:
55197
+ 'січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень'.split(
55198
+ '_'
55199
+ ),
55048
55200
  },
55049
55201
  monthsShort: 'січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд'.split(
55050
55202
  '_'
@@ -55324,9 +55476,10 @@ module.exports = __webpack_require__(348);
55324
55476
  '_'
55325
55477
  ),
55326
55478
  monthsShort: 'Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek'.split('_'),
55327
- weekdays: 'Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba'.split(
55328
- '_'
55329
- ),
55479
+ weekdays:
55480
+ 'Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba'.split(
55481
+ '_'
55482
+ ),
55330
55483
  weekdaysShort: 'Yak_Dush_Sesh_Chor_Pay_Jum_Shan'.split('_'),
55331
55484
  weekdaysMin: 'Ya_Du_Se_Cho_Pa_Ju_Sha'.split('_'),
55332
55485
  longDateFormat: {
@@ -55393,9 +55546,10 @@ module.exports = __webpack_require__(348);
55393
55546
  months: 'tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12'.split(
55394
55547
  '_'
55395
55548
  ),
55396
- monthsShort: 'Thg 01_Thg 02_Thg 03_Thg 04_Thg 05_Thg 06_Thg 07_Thg 08_Thg 09_Thg 10_Thg 11_Thg 12'.split(
55397
- '_'
55398
- ),
55549
+ monthsShort:
55550
+ 'Thg 01_Thg 02_Thg 03_Thg 04_Thg 05_Thg 06_Thg 07_Thg 08_Thg 09_Thg 10_Thg 11_Thg 12'.split(
55551
+ '_'
55552
+ ),
55399
55553
  monthsParseExact: true,
55400
55554
  weekdays: 'chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy'.split(
55401
55555
  '_'
@@ -55487,13 +55641,15 @@ module.exports = __webpack_require__(348);
55487
55641
  months: 'J~áñúá~rý_F~ébrú~árý_~Márc~h_Áp~ríl_~Máý_~Júñé~_Júl~ý_Áú~gúst~_Sép~témb~ér_Ó~ctób~ér_Ñ~óvém~bér_~Décé~mbér'.split(
55488
55642
  '_'
55489
55643
  ),
55490
- monthsShort: 'J~áñ_~Féb_~Már_~Ápr_~Máý_~Júñ_~Júl_~Áúg_~Sép_~Óct_~Ñóv_~Déc'.split(
55491
- '_'
55492
- ),
55644
+ monthsShort:
55645
+ 'J~áñ_~Féb_~Már_~Ápr_~Máý_~Júñ_~Júl_~Áúg_~Sép_~Óct_~Ñóv_~Déc'.split(
55646
+ '_'
55647
+ ),
55493
55648
  monthsParseExact: true,
55494
- weekdays: 'S~úñdá~ý_Mó~ñdáý~_Túé~sdáý~_Wéd~ñésd~áý_T~húrs~dáý_~Fríd~áý_S~átúr~dáý'.split(
55495
- '_'
55496
- ),
55649
+ weekdays:
55650
+ 'S~úñdá~ý_Mó~ñdáý~_Túé~sdáý~_Wéd~ñésd~áý_T~húrs~dáý_~Fríd~áý_S~átúr~dáý'.split(
55651
+ '_'
55652
+ ),
55497
55653
  weekdaysShort: 'S~úñ_~Móñ_~Túé_~Wéd_~Thú_~Frí_~Sát'.split('_'),
55498
55654
  weekdaysMin: 'S~ú_Mó~_Tú_~Wé_T~h_Fr~_Sá'.split('_'),
55499
55655
  weekdaysParseExact: true,
@@ -61133,6 +61289,7 @@ var Input = /** @class */ (function (_super) {
61133
61289
  }
61134
61290
  };
61135
61291
  Input.prototype.render = function () {
61292
+ var _a;
61136
61293
  var classes = classnames_1.default('sd-input', {
61137
61294
  'sd-input--inline-label': this.props.inlineLabel,
61138
61295
  'sd-input--required': this.props.required,
@@ -61144,7 +61301,7 @@ var Input = /** @class */ (function (_super) {
61144
61301
  });
61145
61302
  return (React.createElement("div", { className: classes },
61146
61303
  React.createElement("label", { className: labelClasses, htmlFor: this.htmlId, id: this.htmlId + 'label' }, this.props.label),
61147
- React.createElement("input", { className: 'sd-input__input', type: 'text', id: this.htmlId, value: this.state.value, "aria-label": this.props.label, "aria-describedby": this.htmlId + 'label', onChange: this.handleChange, disabled: this.props.disabled }),
61304
+ React.createElement("input", { className: 'sd-input__input', type: (_a = this.props.type) !== null && _a !== void 0 ? _a : 'text', id: this.htmlId, value: this.state.value, "aria-label": this.props.label, "aria-describedby": this.htmlId + 'label', onChange: this.handleChange, disabled: this.props.disabled }),
61148
61305
  this.props.maxLength ?
61149
61306
  React.createElement("div", { className: 'sd-input__char-count' },
61150
61307
  this.state.value.length,
@@ -72952,14 +73109,14 @@ var React = __importStar(__webpack_require__(1));
72952
73109
  var classnames_1 = __importDefault(__webpack_require__(2));
72953
73110
  exports.Tag = function (_a) {
72954
73111
  var _b;
72955
- var text = _a.text, keyValue = _a.keyValue, shade = _a.shade, shape = _a.shape, readOnly = _a.readOnly, onClick = _a.onClick;
73112
+ var text = _a.text, keyValue = _a.keyValue, shade = _a.shade, shape = _a.shape, readOnly = _a.readOnly, onRemove = _a.onRemove;
72956
73113
  var classes = classnames_1.default('tag-label', (_b = {},
72957
73114
  _b["tag-label--" + shade] = shade && shade !== 'light',
72958
73115
  _b['tag-label--square'] = shape === 'square',
72959
73116
  _b));
72960
73117
  return (React.createElement("span", { className: classes, key: keyValue },
72961
73118
  text,
72962
- !readOnly ? React.createElement("button", { className: 'tag-label__remove', onClick: onClick },
73119
+ !readOnly ? React.createElement("button", { className: 'tag-label__remove', onClick: onRemove },
72963
73120
  React.createElement("i", { className: 'icon-close-small' })) : null));
72964
73121
  };
72965
73122
 
@@ -95156,13 +95313,7 @@ var Router = /*#__PURE__*/function (_React$Component) {
95156
95313
 
95157
95314
  if (!props.staticContext) {
95158
95315
  _this.unlisten = props.history.listen(function (location) {
95159
- if (_this._isMounted) {
95160
- _this.setState({
95161
- location: location
95162
- });
95163
- } else {
95164
- _this._pendingLocation = location;
95165
- }
95316
+ _this._pendingLocation = location;
95166
95317
  });
95167
95318
  }
95168
95319
 
@@ -95172,8 +95323,26 @@ var Router = /*#__PURE__*/function (_React$Component) {
95172
95323
  var _proto = Router.prototype;
95173
95324
 
95174
95325
  _proto.componentDidMount = function componentDidMount() {
95326
+ var _this2 = this;
95327
+
95175
95328
  this._isMounted = true;
95176
95329
 
95330
+ if (this.unlisten) {
95331
+ // Any pre-mount location changes have been captured at
95332
+ // this point, so unregister the listener.
95333
+ this.unlisten();
95334
+ }
95335
+
95336
+ if (!this.props.staticContext) {
95337
+ this.unlisten = this.props.history.listen(function (location) {
95338
+ if (_this2._isMounted) {
95339
+ _this2.setState({
95340
+ location: location
95341
+ });
95342
+ }
95343
+ });
95344
+ }
95345
+
95177
95346
  if (this._pendingLocation) {
95178
95347
  this.setState({
95179
95348
  location: this._pendingLocation
@@ -97260,7 +97429,7 @@ module.exports = 'ngRoute';
97260
97429
  /***/ (function(module, exports) {
97261
97430
 
97262
97431
  /**
97263
- * @license AngularJS v1.8.2
97432
+ * @license AngularJS v1.8.3
97264
97433
  * (c) 2010-2020 Google LLC. http://angularjs.org
97265
97434
  * License: MIT
97266
97435
  */
@@ -97362,7 +97531,7 @@ var noop;
97362
97531
  /* global -ngRouteModule */
97363
97532
  var ngRouteModule = angular.
97364
97533
  module('ngRoute', []).
97365
- info({ angularVersion: '1.8.2' }).
97534
+ info({ angularVersion: '1.8.3' }).
97366
97535
  provider('$route', $RouteProvider).
97367
97536
  // Ensure `$route` will be instantiated in time to capture the initial `$locationChangeSuccess`
97368
97537
  // event (unless explicitly disabled). This is necessary in case `ngView` is included in an
@@ -102455,8 +102624,24 @@ Prism.languages.javascript['class-name'][0].pattern = /(\b(?:class|extends|imple
102455
102624
 
102456
102625
  Prism.languages.insertBefore('javascript', 'keyword', {
102457
102626
  'regex': {
102458
- // eslint-disable-next-line regexp/no-dupe-characters-character-class
102459
- pattern: /((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)\/(?:\[(?:[^\]\\\r\n]|\\.)*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/,
102627
+ pattern: RegExp(
102628
+ // lookbehind
102629
+ // eslint-disable-next-line regexp/no-dupe-characters-character-class
102630
+ /((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)/.source +
102631
+ // Regex pattern:
102632
+ // There are 2 regex patterns here. The RegExp set notation proposal added support for nested character
102633
+ // classes if the `v` flag is present. Unfortunately, nested CCs are both context-free and incompatible
102634
+ // with the only syntax, so we have to define 2 different regex patterns.
102635
+ /\//.source +
102636
+ '(?:' +
102637
+ /(?:\[(?:[^\]\\\r\n]|\\.)*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}/.source +
102638
+ '|' +
102639
+ // `v` flag syntax. This supports 3 levels of nested character classes.
102640
+ /(?:\[(?:[^[\]\\\r\n]|\\.|\[(?:[^[\]\\\r\n]|\\.|\[(?:[^[\]\\\r\n]|\\.)*\])*\])*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}v[dgimyus]{0,7}/.source +
102641
+ ')' +
102642
+ // lookahead
102643
+ /(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/.source
102644
+ ),
102460
102645
  lookbehind: true,
102461
102646
  greedy: true,
102462
102647
  inside: {
@@ -105187,7 +105372,7 @@ var InputsDoc = /** @class */ (function (_super) {
105187
105372
  React.createElement("div", { className: 'docs-page__content-row docs-page__content-row--no-margin' },
105188
105373
  React.createElement("p", { className: "docs-page__paragraph" }, "// Hidden label"),
105189
105374
  React.createElement("div", { className: 'form__row' },
105190
- React.createElement(app_typescript_1.Input, { label: 'Hidden input label', value: 'Lorem ipsum input', maxLength: 30, error: 'This is an error message', info: 'This is a hint message', inlineLabel: true, labelHidden: true, required: false, disabled: false, invalid: false, onChange: function (value) { } })))),
105375
+ React.createElement(app_typescript_1.Input, { label: 'Hidden input label', type: 'number', value: 'Lorem ipsum input', maxLength: 30, error: 'This is an error message', info: 'This is a hint message', inlineLabel: true, labelHidden: true, required: false, disabled: false, invalid: false, onChange: function (value) { } })))),
105191
105376
  React.createElement(Markup.ReactMarkupCode, null, "\n <Input label='Input label'\n value='This is some value'\n maxLength={30}\n error='This is error message'\n info='This is some hint message'\n inlineLabel={false}\n required={true}\n disabled={false}\n invalid={false}\n onChange={(value) => {}} />\n ")),
105192
105377
  React.createElement("h3", { className: 'docs-page__h3' }, "Props"),
105193
105378
  React.createElement(app_typescript_1.PropsList, null,
@@ -109888,20 +110073,22 @@ var TagDoc = /** @class */ (function (_super) {
109888
110073
  var _this = this;
109889
110074
  return (React.createElement("section", { className: "docs-page__container" },
109890
110075
  React.createElement("h2", { className: "docs-page__h2" }, "Tag"),
109891
- React.createElement(Markup.ReactMarkupCodePreview, null, "\n <Tag text='This is a tag' onClick={()=>false}/>\n "),
110076
+ React.createElement(Markup.ReactMarkupCodePreview, null, "\n <Tag text='This is a tag' onRemove={()=>false}/>\n "),
109892
110077
  React.createElement(Markup.ReactMarkup, null,
109893
110078
  React.createElement(Markup.ReactMarkupPreview, null,
109894
110079
  React.createElement("div", { className: 'docs-page__content-row' }, this.state.tags.map(function (tag, index) {
109895
110080
  return (React.createElement(React.Fragment, { key: index },
109896
- React.createElement(app_typescript_1.Tag, { keyValue: index, text: tag.text, shade: tag.shade, shape: tag.shape, readOnly: tag.readOnly, onClick: function () { return _this.handleClick(index); } })));
110081
+ React.createElement(app_typescript_1.Tag, { keyValue: index, text: tag.text, shade: tag.shade, shape: tag.shape, readOnly: tag.readOnly, onRemove: function () { return _this.handleClick(index); } })));
109897
110082
  }))),
109898
- React.createElement(Markup.ReactMarkupCode, null, "\n <Tag text='This is a tag' onClick={()=>false}/>\n <Tag text='This is a another tag' shade='darker' onClick={()=>false}/>\n <Tag text='Lorem ipsum' shade='highlight1' onClick={()=>false}/>\n <Tag text='Dolor amet' shade='highlight2' shape='square' onClick={()=>false}/>\n \n ")),
110083
+ React.createElement(Markup.ReactMarkupCode, null, "\n <Tag text='This is a tag' onRemove={()=>false}/>\n <Tag text='This is a another tag' shade='darker' onRemove={()=>false}/>\n <Tag text='Lorem ipsum' shade='highlight1' onRemove={()=>false}/>\n <Tag text='Dolor amet' shade='highlight2' shape='square' onRemove={()=>false}/>\n <Tag text='Read only tag' readOnly={true} onRemove={()=>false}/>\n ")),
109899
110084
  React.createElement("h3", { className: "docs-page__h3" }, "Props"),
109900
110085
  React.createElement(app_typescript_1.PropsList, null,
109901
110086
  React.createElement(app_typescript_1.Prop, { name: 'text', isRequired: true, type: 'string', default: '/', description: 'Tag text value.' }),
109902
110087
  React.createElement(app_typescript_1.Prop, { name: 'shade', isRequired: false, type: 'light | darker | highlight1 | highlight2', default: 'light', description: 'Shade colour of tag' }),
109903
110088
  React.createElement(app_typescript_1.Prop, { name: 'shape', isRequired: false, type: 'round | square', default: 'round', description: 'Make shape of tag square or default round.' }),
109904
- React.createElement(app_typescript_1.Prop, { name: 'keyValue', isRequired: false, type: 'number', default: '/', description: 'Value of tag key' }))));
110089
+ React.createElement(app_typescript_1.Prop, { name: 'keyValue', isRequired: false, type: 'number', default: '/', description: 'Value of tag key' }),
110090
+ React.createElement(app_typescript_1.Prop, { name: 'readOnly', isRequired: false, type: 'boolean', default: '/', description: 'Read only tag. Dont have option to close/remove tag.' }),
110091
+ React.createElement(app_typescript_1.Prop, { name: 'onRemove', isRequired: false, type: 'function', default: '/', description: 'Callback function' }))));
109905
110092
  };
109906
110093
  return TagDoc;
109907
110094
  }(React.Component));
@@ -111793,7 +111980,7 @@ exports.MenuDocs = MenuDocs;
111793
111980
  /* 482 */
111794
111981
  /***/ (function(module, exports) {
111795
111982
 
111796
- module.exports = {"name":"superdesk-ui-framework","version":"2.4.20","license":"AGPL-3.0","repository":{"type":"git","url":"https://github.com/superdesk/superdesk-ui-framework.git"},"main":"dist/superdesk-ui.bundle.js","types":"react/index.d.ts","contributors":["Nemanja Pavlovic","Vladimir Stefanovic","Darko Tomic","Aleksandar Jelicic","Tomas Kikutis","Dragana Zivkovic"],"scripts":{"start":"webpack-dev-server --config tasks/webpack.dev.js","server":"webpack --watch --config tasks/webpack.prod.js && tsc-watch","build":"webpack --config tasks/webpack.prod.js && tsc && npm run lint","build-ui":"webpack && tsc && npm run lint","lint":"eslint app && tslint -c tslint.json 'app-typescript/**/*.{ts,tsx}'","prepublishOnly":"npm run build","prepublish":"patch-package"},"devDependencies":{"@types/chart.js":"^2.9.24","@types/classnames":"^2.2.9","@types/lodash":"^4.14.161","@types/react":"16.8.23","@types/react-dom":"16.8.0","@types/react-router-dom":"^5.1.2","angular":"^1.7.9","angular-animate":"^1.7.9","angular-route":"^1.7.9","babel-core":"^6.26.0","babel-loader":"^7.1.2","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","classnames":"^2.2.5","clean-webpack-plugin":"^1.0.0","code-prettify":"^0.1.0","copy-webpack-plugin":"^4.6.0","css-loader":"^2.1.1","eslint":"^4.6.1","eslint-loader":"^1.9.0","eslint-plugin-angular":"^3.1.1","eslint-plugin-react":"^7.3.0","extract-text-webpack-plugin":"^3.0.2","file-loader":"^0.11.2","html-loader":"^0.5.1","html-webpack-plugin":"^2.30.1","jquery":"^3.1.1","jquery-ui":"^1.12.1","lodash":"4.17.21","node-sass":"^4.5.3","patch-package":"6.2.0","prismjs":"^1.17.1","prop-types":"^15.6.0","react":"16.8.6","react-bootstrap":"^0.31.2","react-dom":"16.8.6","react-redux":"^5.0.6","react-router-dom":"^5.1.2","redux":"^3.7.2","redux-form":"^7.0.4","sass-loader":"^6.0.6","style-loader":"^0.18.2","superdesk-code-style":"^1.1.2","ts-loader":"^6.0.2","tslint":"^5.18.0","typescript":"^3.5.1","url-loader":"^1.1.2","webpack":"^3.5.5","webpack-cli":"3.3.10","webpack-dev-server":"2.11.1","webpack-merge":"^4.2.1"},"dependencies":{"@material-ui/lab":"^4.0.0-alpha.56","@popperjs/core":"^2.4.0","@superdesk/primereact":"^5.0.2-4","@types/node":"^14.10.2","chart.js":"^2.9.3","date-fns":"2.7.0","popper.js":"1.14.4","primeicons":"2.0.0","react-id-generator":"^3.0.2","react-popper":"^2.2.3"}}
111983
+ module.exports = {"name":"superdesk-ui-framework","version":"2.4.21","license":"AGPL-3.0","repository":{"type":"git","url":"https://github.com/superdesk/superdesk-ui-framework.git"},"main":"dist/superdesk-ui.bundle.js","types":"react/index.d.ts","contributors":["Nemanja Pavlovic","Vladimir Stefanovic","Darko Tomic","Aleksandar Jelicic","Tomas Kikutis","Dragana Zivkovic"],"scripts":{"start":"webpack-dev-server --config tasks/webpack.dev.js","server":"webpack --watch --config tasks/webpack.prod.js && tsc-watch","build":"webpack --config tasks/webpack.prod.js && tsc && npm run lint","build-ui":"webpack && tsc && npm run lint","lint":"eslint app && tslint -c tslint.json 'app-typescript/**/*.{ts,tsx}'","prepublishOnly":"npm run build","prepublish":"patch-package"},"devDependencies":{"@types/chart.js":"^2.9.24","@types/classnames":"^2.2.9","@types/lodash":"^4.14.161","@types/react":"16.8.23","@types/react-dom":"16.8.0","@types/react-router-dom":"^5.1.2","angular":"^1.7.9","angular-animate":"^1.7.9","angular-route":"^1.7.9","babel-core":"^6.26.0","babel-loader":"^7.1.2","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","classnames":"^2.2.5","clean-webpack-plugin":"^1.0.0","code-prettify":"^0.1.0","copy-webpack-plugin":"^4.6.0","css-loader":"^2.1.1","eslint":"^4.6.1","eslint-loader":"^1.9.0","eslint-plugin-angular":"^3.1.1","eslint-plugin-react":"^7.3.0","extract-text-webpack-plugin":"^3.0.2","file-loader":"^0.11.2","html-loader":"^0.5.1","html-webpack-plugin":"^2.30.1","jquery":"^3.1.1","jquery-ui":"^1.12.1","lodash":"4.17.21","node-sass":"^4.5.3","patch-package":"6.2.0","prismjs":"^1.17.1","prop-types":"^15.6.0","react":"16.8.6","react-bootstrap":"^0.31.2","react-dom":"16.8.6","react-redux":"^5.0.6","react-router-dom":"^5.1.2","redux":"^3.7.2","redux-form":"^7.0.4","sass-loader":"^6.0.6","style-loader":"^0.18.2","superdesk-code-style":"^1.1.2","ts-loader":"^6.0.2","tslint":"^5.18.0","typescript":"^3.5.1","url-loader":"^1.1.2","webpack":"^3.5.5","webpack-cli":"3.3.10","webpack-dev-server":"2.11.1","webpack-merge":"^4.2.1"},"dependencies":{"@material-ui/lab":"^4.0.0-alpha.56","@popperjs/core":"^2.4.0","@superdesk/primereact":"^5.0.2-4","@types/node":"^14.10.2","chart.js":"^2.9.3","date-fns":"2.7.0","popper.js":"1.14.4","primeicons":"2.0.0","react-id-generator":"^3.0.2","react-popper":"^2.2.3"}}
111797
111984
 
111798
111985
  /***/ }),
111799
111986
  /* 483 */