@weni/unnnic-system 2.19.1-alpha.2 → 2.19.1-alpha.3
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.
- package/dist/es-b0e8655e.mjs +93 -0
- package/dist/index-ab5ed53a.mjs +74844 -0
- package/dist/pt-br-25900db4.mjs +54 -0
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +3 -74807
- package/dist/unnnic.umd.js +35 -29
- package/package.json +1 -1
- package/src/components/ChatsContact/ChatsContact.vue +84 -11
- package/src/components/ChatsUserAvatar/ChatsUserAvatar.vue +5 -4
- package/src/stories/ChatsContact.stories.js +1 -1
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { h as n } from "./index-ab5ed53a.mjs";
|
|
2
|
+
import "vue";
|
|
3
|
+
//! moment.js locale configuration
|
|
4
|
+
//! locale : Spanish [es]
|
|
5
|
+
//! author : Julio Napurí : https://github.com/julionc
|
|
6
|
+
var a = "ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split(
|
|
7
|
+
"_"
|
|
8
|
+
), t = "ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"), o = [
|
|
9
|
+
/^ene/i,
|
|
10
|
+
/^feb/i,
|
|
11
|
+
/^mar/i,
|
|
12
|
+
/^abr/i,
|
|
13
|
+
/^may/i,
|
|
14
|
+
/^jun/i,
|
|
15
|
+
/^jul/i,
|
|
16
|
+
/^ago/i,
|
|
17
|
+
/^sep/i,
|
|
18
|
+
/^oct/i,
|
|
19
|
+
/^nov/i,
|
|
20
|
+
/^dic/i
|
|
21
|
+
], s = /^(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;
|
|
22
|
+
n.defineLocale("es", {
|
|
23
|
+
months: "enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split(
|
|
24
|
+
"_"
|
|
25
|
+
),
|
|
26
|
+
monthsShort: function(e, r) {
|
|
27
|
+
return e ? /-MMM-/.test(r) ? t[e.month()] : a[e.month()] : a;
|
|
28
|
+
},
|
|
29
|
+
monthsRegex: s,
|
|
30
|
+
monthsShortRegex: s,
|
|
31
|
+
monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
|
|
32
|
+
monthsShortStrictRegex: /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
|
|
33
|
+
monthsParse: o,
|
|
34
|
+
longMonthsParse: o,
|
|
35
|
+
shortMonthsParse: o,
|
|
36
|
+
weekdays: "domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),
|
|
37
|
+
weekdaysShort: "dom._lun._mar._mié._jue._vie._sáb.".split("_"),
|
|
38
|
+
weekdaysMin: "do_lu_ma_mi_ju_vi_sá".split("_"),
|
|
39
|
+
weekdaysParseExact: !0,
|
|
40
|
+
longDateFormat: {
|
|
41
|
+
LT: "H:mm",
|
|
42
|
+
LTS: "H:mm:ss",
|
|
43
|
+
L: "DD/MM/YYYY",
|
|
44
|
+
LL: "D [de] MMMM [de] YYYY",
|
|
45
|
+
LLL: "D [de] MMMM [de] YYYY H:mm",
|
|
46
|
+
LLLL: "dddd, D [de] MMMM [de] YYYY H:mm"
|
|
47
|
+
},
|
|
48
|
+
calendar: {
|
|
49
|
+
sameDay: function() {
|
|
50
|
+
return "[hoy a la" + (this.hours() !== 1 ? "s" : "") + "] LT";
|
|
51
|
+
},
|
|
52
|
+
nextDay: function() {
|
|
53
|
+
return "[mañana a la" + (this.hours() !== 1 ? "s" : "") + "] LT";
|
|
54
|
+
},
|
|
55
|
+
nextWeek: function() {
|
|
56
|
+
return "dddd [a la" + (this.hours() !== 1 ? "s" : "") + "] LT";
|
|
57
|
+
},
|
|
58
|
+
lastDay: function() {
|
|
59
|
+
return "[ayer a la" + (this.hours() !== 1 ? "s" : "") + "] LT";
|
|
60
|
+
},
|
|
61
|
+
lastWeek: function() {
|
|
62
|
+
return "[el] dddd [pasado a la" + (this.hours() !== 1 ? "s" : "") + "] LT";
|
|
63
|
+
},
|
|
64
|
+
sameElse: "L"
|
|
65
|
+
},
|
|
66
|
+
relativeTime: {
|
|
67
|
+
future: "en %s",
|
|
68
|
+
past: "hace %s",
|
|
69
|
+
s: "unos segundos",
|
|
70
|
+
ss: "%d segundos",
|
|
71
|
+
m: "un minuto",
|
|
72
|
+
mm: "%d minutos",
|
|
73
|
+
h: "una hora",
|
|
74
|
+
hh: "%d horas",
|
|
75
|
+
d: "un día",
|
|
76
|
+
dd: "%d días",
|
|
77
|
+
w: "una semana",
|
|
78
|
+
ww: "%d semanas",
|
|
79
|
+
M: "un mes",
|
|
80
|
+
MM: "%d meses",
|
|
81
|
+
y: "un año",
|
|
82
|
+
yy: "%d años"
|
|
83
|
+
},
|
|
84
|
+
dayOfMonthOrdinalParse: /\d{1,2}º/,
|
|
85
|
+
ordinal: "%dº",
|
|
86
|
+
week: {
|
|
87
|
+
dow: 1,
|
|
88
|
+
// Monday is the first day of the week.
|
|
89
|
+
doy: 4
|
|
90
|
+
// The week that contains Jan 4th is the first week of the year.
|
|
91
|
+
},
|
|
92
|
+
invalidDate: "Fecha inválida"
|
|
93
|
+
});
|