@wavemaker/app-runtime-wm-build 11.13.0-rc.6255 → 11.14.0-rc.232

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.
Files changed (43) hide show
  1. package/npm-shrinkwrap.json +2 -2
  2. package/package-lock.json +2 -2
  3. package/package.json +1 -1
  4. package/wmapp/locales/moment/ar-dz.js +8 -8
  5. package/wmapp/locales/moment/ar-ly.js +8 -8
  6. package/wmapp/locales/moment/ar-ps.js +123 -0
  7. package/wmapp/locales/moment/ar.js +8 -8
  8. package/wmapp/locales/moment/be.js +2 -2
  9. package/wmapp/locales/moment/bs.js +14 -4
  10. package/wmapp/locales/moment/ca.js +6 -6
  11. package/wmapp/locales/moment/cs.js +5 -4
  12. package/wmapp/locales/moment/cv.js +2 -2
  13. package/wmapp/locales/moment/en-au.js +6 -6
  14. package/wmapp/locales/moment/en-ca.js +6 -6
  15. package/wmapp/locales/moment/en-gb.js +6 -6
  16. package/wmapp/locales/moment/en-ie.js +6 -6
  17. package/wmapp/locales/moment/en-il.js +6 -6
  18. package/wmapp/locales/moment/en-in.js +6 -6
  19. package/wmapp/locales/moment/en-nz.js +6 -6
  20. package/wmapp/locales/moment/en-sg.js +6 -6
  21. package/wmapp/locales/moment/it.js +4 -4
  22. package/wmapp/locales/moment/ku-kmr.js +125 -0
  23. package/wmapp/locales/moment/lt.js +2 -2
  24. package/wmapp/locales/moment/me.js +2 -2
  25. package/wmapp/locales/moment/nb.js +4 -4
  26. package/wmapp/locales/moment/nl-be.js +1 -1
  27. package/wmapp/locales/moment/nl.js +1 -1
  28. package/wmapp/locales/moment/oc-lnc.js +6 -6
  29. package/wmapp/locales/moment/ru.js +2 -2
  30. package/wmapp/locales/moment/sv.js +6 -6
  31. package/wmapp/locales/moment/tet.js +6 -6
  32. package/wmapp/locales/moment/tlh.js +8 -8
  33. package/wmapp/locales/moment/tzl.js +2 -2
  34. package/wmapp/locales/moment/uk.js +4 -4
  35. package/wmapp/locales/moment/x-pseudo.js +6 -6
  36. package/wmapp/locales/moment-timezone/moment-timezone-with-data.js +2 -2
  37. package/wmapp/scripts/wm-libs.js +50 -64
  38. package/wmapp/scripts/wm-libs.min.js +94 -108
  39. package/wmapp/scripts/wm-loader.js +2 -2
  40. package/wmapp/scripts/wm-loader.min.js +2 -2
  41. package/wmapp/styles/foundation/foundation.css +11730 -10119
  42. package/wmapp/styles/foundation/foundation.min.css +1 -1
  43. package/wmapp/styles/foundation/icon-fonts.min.css +1 -1
@@ -35,8 +35,8 @@
35
35
  return withoutSuffix
36
36
  ? forms(key)[0]
37
37
  : isFuture
38
- ? forms(key)[1]
39
- : forms(key)[2];
38
+ ? forms(key)[1]
39
+ : forms(key)[2];
40
40
  }
41
41
  function special(number) {
42
42
  return number % 10 === 0 || (number > 10 && number < 20);
@@ -27,8 +27,8 @@
27
27
  return number === 1
28
28
  ? wordKey[0]
29
29
  : number >= 2 && number <= 4
30
- ? wordKey[1]
31
- : wordKey[2];
30
+ ? wordKey[1]
31
+ : wordKey[2];
32
32
  },
33
33
  translate: function (number, withoutSuffix, key) {
34
34
  var wordKey = translator.words[key];
@@ -47,13 +47,13 @@
47
47
  ss: '%d sekunder',
48
48
  m: 'ett minutt',
49
49
  mm: '%d minutter',
50
- h: 'en time',
50
+ h: 'én time',
51
51
  hh: '%d timer',
52
- d: 'en dag',
52
+ d: 'én dag',
53
53
  dd: '%d dager',
54
- w: 'en uke',
54
+ w: 'én uke',
55
55
  ww: '%d uker',
56
- M: 'en måned',
56
+ M: 'én måned',
57
57
  MM: '%d måneder',
58
58
  y: 'ett år',
59
59
  yy: '%d år',
@@ -19,7 +19,7 @@
19
19
  monthsParse = [
20
20
  /^jan/i,
21
21
  /^feb/i,
22
- /^maart|mrt.?$/i,
22
+ /^(maart|mrt\.?)$/i,
23
23
  /^apr/i,
24
24
  /^mei$/i,
25
25
  /^jun[i.]?$/i,
@@ -19,7 +19,7 @@
19
19
  monthsParse = [
20
20
  /^jan/i,
21
21
  /^feb/i,
22
- /^maart|mrt.?$/i,
22
+ /^(maart|mrt\.?)$/i,
23
23
  /^apr/i,
24
24
  /^mei$/i,
25
25
  /^jun[i.]?$/i,
@@ -74,12 +74,12 @@
74
74
  number === 1
75
75
  ? 'r'
76
76
  : number === 2
77
- ? 'n'
78
- : number === 3
79
- ? 'r'
80
- : number === 4
81
- ? 't'
82
- : 'è';
77
+ ? 'n'
78
+ : number === 3
79
+ ? 'r'
80
+ : number === 4
81
+ ? 't'
82
+ : 'è';
83
83
  if (period === 'w' || period === 'W') {
84
84
  output = 'a';
85
85
  }
@@ -18,8 +18,8 @@
18
18
  return num % 10 === 1 && num % 100 !== 11
19
19
  ? forms[0]
20
20
  : num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20)
21
- ? forms[1]
22
- : forms[2];
21
+ ? forms[1]
22
+ : forms[2];
23
23
  }
24
24
  function relativeTimeWithPlural(number, withoutSuffix, key) {
25
25
  var format = {
@@ -60,12 +60,12 @@
60
60
  ~~((number % 100) / 10) === 1
61
61
  ? ':e'
62
62
  : b === 1
63
- ? ':a'
64
- : b === 2
65
- ? ':a'
66
- : b === 3
67
- ? ':e'
68
- : ':e';
63
+ ? ':a'
64
+ : b === 2
65
+ ? ':a'
66
+ : b === 3
67
+ ? ':e'
68
+ : ':e';
69
69
  return number + output;
70
70
  },
71
71
  week: {
@@ -60,12 +60,12 @@
60
60
  ~~((number % 100) / 10) === 1
61
61
  ? 'th'
62
62
  : b === 1
63
- ? 'st'
64
- : b === 2
65
- ? 'nd'
66
- : b === 3
67
- ? 'rd'
68
- : 'th';
63
+ ? 'st'
64
+ : b === 2
65
+ ? 'nd'
66
+ : b === 3
67
+ ? 'rd'
68
+ : 'th';
69
69
  return number + output;
70
70
  },
71
71
  week: {
@@ -19,10 +19,10 @@
19
19
  output.indexOf('jaj') !== -1
20
20
  ? time.slice(0, -3) + 'leS'
21
21
  : output.indexOf('jar') !== -1
22
- ? time.slice(0, -3) + 'waQ'
23
- : output.indexOf('DIS') !== -1
24
- ? time.slice(0, -3) + 'nem'
25
- : time + ' pIq';
22
+ ? time.slice(0, -3) + 'waQ'
23
+ : output.indexOf('DIS') !== -1
24
+ ? time.slice(0, -3) + 'nem'
25
+ : time + ' pIq';
26
26
  return time;
27
27
  }
28
28
 
@@ -32,10 +32,10 @@
32
32
  output.indexOf('jaj') !== -1
33
33
  ? time.slice(0, -3) + 'Hu’'
34
34
  : output.indexOf('jar') !== -1
35
- ? time.slice(0, -3) + 'wen'
36
- : output.indexOf('DIS') !== -1
37
- ? time.slice(0, -3) + 'ben'
38
- : time + ' ret';
35
+ ? time.slice(0, -3) + 'wen'
36
+ : output.indexOf('DIS') !== -1
37
+ ? time.slice(0, -3) + 'ben'
38
+ : time + ' ret';
39
39
  return time;
40
40
  }
41
41
 
@@ -91,8 +91,8 @@
91
91
  return isFuture
92
92
  ? format[key][0]
93
93
  : withoutSuffix
94
- ? format[key][0]
95
- : format[key][1];
94
+ ? format[key][0]
95
+ : format[key][1];
96
96
  }
97
97
 
98
98
  return tzl;
@@ -17,8 +17,8 @@
17
17
  return num % 10 === 1 && num % 100 !== 11
18
18
  ? forms[0]
19
19
  : num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20)
20
- ? forms[1]
21
- : forms[2];
20
+ ? forms[1]
21
+ : forms[2];
22
22
  }
23
23
  function relativeTimeWithPlural(number, withoutSuffix, key) {
24
24
  var format = {
@@ -66,8 +66,8 @@
66
66
  nounCase = /(\[[ВвУу]\]) ?dddd/.test(format)
67
67
  ? 'accusative'
68
68
  : /\[?(?:минулої|наступної)? ?\] ?dddd/.test(format)
69
- ? 'genitive'
70
- : 'nominative';
69
+ ? 'genitive'
70
+ : 'nominative';
71
71
  return weekdays[nounCase][m.day()];
72
72
  }
73
73
  function processHoursFunction(str) {
@@ -65,12 +65,12 @@
65
65
  ~~((number % 100) / 10) === 1
66
66
  ? 'th'
67
67
  : b === 1
68
- ? 'st'
69
- : b === 2
70
- ? 'nd'
71
- : b === 3
72
- ? 'rd'
73
- : 'th';
68
+ ? 'st'
69
+ : b === 2
70
+ ? 'nd'
71
+ : b === 3
72
+ ? 'rd'
73
+ : 'th';
74
74
  return number + output;
75
75
  },
76
76
  week: {
@@ -1,5 +1,5 @@
1
1
  //! moment-timezone.js
2
- //! version : 0.5.48
2
+ //! version : 0.6.0
3
3
  //! Copyright (c) JS Foundation and other contributors
4
4
  //! license : MIT
5
5
  //! github.com/moment/moment-timezone
@@ -29,7 +29,7 @@
29
29
  // return moment;
30
30
  // }
31
31
 
32
- var VERSION = "0.5.48",
32
+ var VERSION = "0.6.0",
33
33
  zones = {},
34
34
  links = {},
35
35
  countries = {},