prlg-ui 1.8.312 → 1.8.313

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.
@@ -0,0 +1,639 @@
1
+ function R(_) {
2
+ return _ && _.__esModule && Object.prototype.hasOwnProperty.call(_, "default") ? _.default : _;
3
+ }
4
+ var J = { exports: {} }, gt = J.exports, ft;
5
+ function _t() {
6
+ return ft || (ft = 1, (function(_, q) {
7
+ (function(h, n) {
8
+ _.exports = n();
9
+ })(gt, function() {
10
+ var h = "millisecond", n = "second", v = "minute", D = "hour", O = "day", y = "week", p = "month", l = "quarter", x = "year", S = "date", a = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[^0-9]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?.?(\d+)?$/, e = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, Y = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_") }, t = function(c, o, r) {
11
+ var u = String(c);
12
+ return !u || u.length >= o ? c : "" + Array(o + 1 - u.length).join(r) + c;
13
+ }, s = { s: t, z: function(c) {
14
+ var o = -c.utcOffset(), r = Math.abs(o), u = Math.floor(r / 60), i = r % 60;
15
+ return (o <= 0 ? "+" : "-") + t(u, 2, "0") + ":" + t(i, 2, "0");
16
+ }, m: function c(o, r) {
17
+ if (o.date() < r.date()) return -c(r, o);
18
+ var u = 12 * (r.year() - o.year()) + (r.month() - o.month()), i = o.clone().add(u, p), $ = r - i < 0, d = o.clone().add(u + ($ ? -1 : 1), p);
19
+ return +(-(u + (r - i) / ($ ? i - d : d - i)) || 0);
20
+ }, a: function(c) {
21
+ return c < 0 ? Math.ceil(c) || 0 : Math.floor(c);
22
+ }, p: function(c) {
23
+ return { M: p, y: x, w: y, d: O, D: S, h: D, m: v, s: n, ms: h, Q: l }[c] || String(c || "").toLowerCase().replace(/s$/, "");
24
+ }, u: function(c) {
25
+ return c === void 0;
26
+ } }, f = "en", m = {};
27
+ m[f] = Y;
28
+ var w = function(c) {
29
+ return c instanceof H;
30
+ }, T = function(c, o, r) {
31
+ var u;
32
+ if (!c) return f;
33
+ if (typeof c == "string") m[c] && (u = c), o && (m[c] = o, u = c);
34
+ else {
35
+ var i = c.name;
36
+ m[i] = c, u = i;
37
+ }
38
+ return !r && u && (f = u), u || !r && f;
39
+ }, g = function(c, o) {
40
+ if (w(c)) return c.clone();
41
+ var r = typeof o == "object" ? o : {};
42
+ return r.date = c, r.args = arguments, new H(r);
43
+ }, M = s;
44
+ M.l = T, M.i = w, M.w = function(c, o) {
45
+ return g(c, { locale: o.$L, utc: o.$u, x: o.$x, $offset: o.$offset });
46
+ };
47
+ var H = (function() {
48
+ function c(r) {
49
+ this.$L = T(r.locale, null, !0), this.parse(r);
50
+ }
51
+ var o = c.prototype;
52
+ return o.parse = function(r) {
53
+ this.$d = (function(u) {
54
+ var i = u.date, $ = u.utc;
55
+ if (i === null) return /* @__PURE__ */ new Date(NaN);
56
+ if (M.u(i)) return /* @__PURE__ */ new Date();
57
+ if (i instanceof Date) return new Date(i);
58
+ if (typeof i == "string" && !/Z$/i.test(i)) {
59
+ var d = i.match(a);
60
+ if (d) {
61
+ var L = d[2] - 1 || 0, A = (d[7] || "0").substring(0, 3);
62
+ return $ ? new Date(Date.UTC(d[1], L, d[3] || 1, d[4] || 0, d[5] || 0, d[6] || 0, A)) : new Date(d[1], L, d[3] || 1, d[4] || 0, d[5] || 0, d[6] || 0, A);
63
+ }
64
+ }
65
+ return new Date(i);
66
+ })(r), this.$x = r.x || {}, this.init();
67
+ }, o.init = function() {
68
+ var r = this.$d;
69
+ this.$y = r.getFullYear(), this.$M = r.getMonth(), this.$D = r.getDate(), this.$W = r.getDay(), this.$H = r.getHours(), this.$m = r.getMinutes(), this.$s = r.getSeconds(), this.$ms = r.getMilliseconds();
70
+ }, o.$utils = function() {
71
+ return M;
72
+ }, o.isValid = function() {
73
+ return this.$d.toString() !== "Invalid Date";
74
+ }, o.isSame = function(r, u) {
75
+ var i = g(r);
76
+ return this.startOf(u) <= i && i <= this.endOf(u);
77
+ }, o.isAfter = function(r, u) {
78
+ return g(r) < this.startOf(u);
79
+ }, o.isBefore = function(r, u) {
80
+ return this.endOf(u) < g(r);
81
+ }, o.$g = function(r, u, i) {
82
+ return M.u(r) ? this[u] : this.set(i, r);
83
+ }, o.unix = function() {
84
+ return Math.floor(this.valueOf() / 1e3);
85
+ }, o.valueOf = function() {
86
+ return this.$d.getTime();
87
+ }, o.startOf = function(r, u) {
88
+ var i = this, $ = !!M.u(u) || u, d = M.p(r), L = function(C, F) {
89
+ var E = M.w(i.$u ? Date.UTC(i.$y, F, C) : new Date(i.$y, F, C), i);
90
+ return $ ? E : E.endOf(O);
91
+ }, A = function(C, F) {
92
+ return M.w(i.toDate()[C].apply(i.toDate("s"), ($ ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(F)), i);
93
+ }, b = this.$W, k = this.$M, B = this.$D, I = "set" + (this.$u ? "UTC" : "");
94
+ switch (d) {
95
+ case x:
96
+ return $ ? L(1, 0) : L(31, 11);
97
+ case p:
98
+ return $ ? L(1, k) : L(0, k + 1);
99
+ case y:
100
+ var P = this.$locale().weekStart || 0, j = (b < P ? b + 7 : b) - P;
101
+ return L($ ? B - j : B + (6 - j), k);
102
+ case O:
103
+ case S:
104
+ return A(I + "Hours", 0);
105
+ case D:
106
+ return A(I + "Minutes", 1);
107
+ case v:
108
+ return A(I + "Seconds", 2);
109
+ case n:
110
+ return A(I + "Milliseconds", 3);
111
+ default:
112
+ return this.clone();
113
+ }
114
+ }, o.endOf = function(r) {
115
+ return this.startOf(r, !1);
116
+ }, o.$set = function(r, u) {
117
+ var i, $ = M.p(r), d = "set" + (this.$u ? "UTC" : ""), L = (i = {}, i[O] = d + "Date", i[S] = d + "Date", i[p] = d + "Month", i[x] = d + "FullYear", i[D] = d + "Hours", i[v] = d + "Minutes", i[n] = d + "Seconds", i[h] = d + "Milliseconds", i)[$], A = $ === O ? this.$D + (u - this.$W) : u;
118
+ if ($ === p || $ === x) {
119
+ var b = this.clone().set(S, 1);
120
+ b.$d[L](A), b.init(), this.$d = b.set(S, Math.min(this.$D, b.daysInMonth())).$d;
121
+ } else L && this.$d[L](A);
122
+ return this.init(), this;
123
+ }, o.set = function(r, u) {
124
+ return this.clone().$set(r, u);
125
+ }, o.get = function(r) {
126
+ return this[M.p(r)]();
127
+ }, o.add = function(r, u) {
128
+ var i, $ = this;
129
+ r = Number(r);
130
+ var d = M.p(u), L = function(k) {
131
+ var B = g($);
132
+ return M.w(B.date(B.date() + Math.round(k * r)), $);
133
+ };
134
+ if (d === p) return this.set(p, this.$M + r);
135
+ if (d === x) return this.set(x, this.$y + r);
136
+ if (d === O) return L(1);
137
+ if (d === y) return L(7);
138
+ var A = (i = {}, i[v] = 6e4, i[D] = 36e5, i[n] = 1e3, i)[d] || 1, b = this.$d.getTime() + r * A;
139
+ return M.w(b, this);
140
+ }, o.subtract = function(r, u) {
141
+ return this.add(-1 * r, u);
142
+ }, o.format = function(r) {
143
+ var u = this;
144
+ if (!this.isValid()) return "Invalid Date";
145
+ var i = r || "YYYY-MM-DDTHH:mm:ssZ", $ = M.z(this), d = this.$locale(), L = this.$H, A = this.$m, b = this.$M, k = d.weekdays, B = d.months, I = function(F, E, N, Z) {
146
+ return F && (F[E] || F(u, i)) || N[E].substr(0, Z);
147
+ }, P = function(F) {
148
+ return M.s(L % 12 || 12, F, "0");
149
+ }, j = d.meridiem || function(F, E, N) {
150
+ var Z = F < 12 ? "AM" : "PM";
151
+ return N ? Z.toLowerCase() : Z;
152
+ }, C = { YY: String(this.$y).slice(-2), YYYY: this.$y, M: b + 1, MM: M.s(b + 1, 2, "0"), MMM: I(d.monthsShort, b, B, 3), MMMM: I(B, b), D: this.$D, DD: M.s(this.$D, 2, "0"), d: String(this.$W), dd: I(d.weekdaysMin, this.$W, k, 2), ddd: I(d.weekdaysShort, this.$W, k, 3), dddd: k[this.$W], H: String(L), HH: M.s(L, 2, "0"), h: P(1), hh: P(2), a: j(L, A, !0), A: j(L, A, !1), m: String(A), mm: M.s(A, 2, "0"), s: String(this.$s), ss: M.s(this.$s, 2, "0"), SSS: M.s(this.$ms, 3, "0"), Z: $ };
153
+ return i.replace(e, function(F, E) {
154
+ return E || C[F] || $.replace(":", "");
155
+ });
156
+ }, o.utcOffset = function() {
157
+ return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
158
+ }, o.diff = function(r, u, i) {
159
+ var $, d = M.p(u), L = g(r), A = 6e4 * (L.utcOffset() - this.utcOffset()), b = this - L, k = M.m(this, L);
160
+ return k = ($ = {}, $[x] = k / 12, $[p] = k, $[l] = k / 3, $[y] = (b - A) / 6048e5, $[O] = (b - A) / 864e5, $[D] = b / 36e5, $[v] = b / 6e4, $[n] = b / 1e3, $)[d] || b, i ? k : M.a(k);
161
+ }, o.daysInMonth = function() {
162
+ return this.endOf(p).$D;
163
+ }, o.$locale = function() {
164
+ return m[this.$L];
165
+ }, o.locale = function(r, u) {
166
+ if (!r) return this.$L;
167
+ var i = this.clone(), $ = T(r, u, !0);
168
+ return $ && (i.$L = $), i;
169
+ }, o.clone = function() {
170
+ return M.w(this.$d, this);
171
+ }, o.toDate = function() {
172
+ return new Date(this.valueOf());
173
+ }, o.toJSON = function() {
174
+ return this.isValid() ? this.toISOString() : null;
175
+ }, o.toISOString = function() {
176
+ return this.$d.toISOString();
177
+ }, o.toString = function() {
178
+ return this.$d.toUTCString();
179
+ }, c;
180
+ })(), z = H.prototype;
181
+ return g.prototype = z, [["$ms", h], ["$s", n], ["$m", v], ["$H", D], ["$W", O], ["$M", p], ["$y", x], ["$D", S]].forEach(function(c) {
182
+ z[c[1]] = function(o) {
183
+ return this.$g(o, c[0], c[1]);
184
+ };
185
+ }), g.extend = function(c, o) {
186
+ return c.$i || (c(o, H, g), c.$i = !0), g;
187
+ }, g.locale = T, g.isDayjs = w, g.unix = function(c) {
188
+ return g(1e3 * c);
189
+ }, g.en = m[f], g.Ls = m, g.p = {}, g;
190
+ });
191
+ })(J)), J.exports;
192
+ }
193
+ var wt = _t();
194
+ const er = /* @__PURE__ */ R(wt);
195
+ var V = { exports: {} }, Ot = V.exports, ct;
196
+ function Lt() {
197
+ return ct || (ct = 1, (function(_, q) {
198
+ (function(h, n) {
199
+ _.exports = n();
200
+ })(Ot, function() {
201
+ var h = { LTS: "h:mm:ss A", LT: "h:mm A", L: "MM/DD/YYYY", LL: "MMMM D, YYYY", LLL: "MMMM D, YYYY h:mm A", LLLL: "dddd, MMMM D, YYYY h:mm A" };
202
+ return function(n, v, D) {
203
+ var O = v.prototype, y = O.format;
204
+ D.en.formats = h, O.format = function(p) {
205
+ p === void 0 && (p = "YYYY-MM-DDTHH:mm:ssZ");
206
+ var l = this.$locale().formats, x = (function(S, a) {
207
+ return S.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g, function(e, Y, t) {
208
+ var s = t && t.toUpperCase();
209
+ return Y || a[t] || h[t] || a[s].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g, function(f, m, w) {
210
+ return m || w.slice(1);
211
+ });
212
+ });
213
+ })(p, l === void 0 ? {} : l);
214
+ return y.call(this, x);
215
+ };
216
+ };
217
+ });
218
+ })(V)), V.exports;
219
+ }
220
+ var Tt = Lt();
221
+ const nr = /* @__PURE__ */ R(Tt);
222
+ var Q = { exports: {} }, bt = Q.exports, dt;
223
+ function At() {
224
+ return dt || (dt = 1, (function(_, q) {
225
+ (function(h, n) {
226
+ _.exports = n();
227
+ })(bt, function() {
228
+ return function(h, n, v) {
229
+ h = h || {};
230
+ var D = n.prototype, O = { future: "in %s", past: "%s ago", s: "a few seconds", m: "a minute", mm: "%d minutes", h: "an hour", hh: "%d hours", d: "a day", dd: "%d days", M: "a month", MM: "%d months", y: "a year", yy: "%d years" };
231
+ v.en.relativeTime = O;
232
+ var y = function(l, x, S, a) {
233
+ for (var e, Y, t, s = S.$locale().relativeTime || O, f = h.thresholds || [{ l: "s", r: 44, d: "second" }, { l: "m", r: 89 }, { l: "mm", r: 44, d: "minute" }, { l: "h", r: 89 }, { l: "hh", r: 21, d: "hour" }, { l: "d", r: 35 }, { l: "dd", r: 25, d: "day" }, { l: "M", r: 45 }, { l: "MM", r: 10, d: "month" }, { l: "y", r: 17 }, { l: "yy", d: "year" }], m = f.length, w = 0; w < m; w += 1) {
234
+ var T = f[w];
235
+ T.d && (e = a ? v(l).diff(S, T.d, !0) : S.diff(l, T.d, !0));
236
+ var g = (h.rounding || Math.round)(Math.abs(e));
237
+ if (t = e > 0, g <= T.r || !T.r) {
238
+ g <= 1 && w > 0 && (T = f[w - 1]);
239
+ var M = s[T.l];
240
+ Y = typeof M == "string" ? M.replace("%d", g) : M(g, x, T.l, t);
241
+ break;
242
+ }
243
+ }
244
+ if (x) return Y;
245
+ var H = t ? s.future : s.past;
246
+ return typeof H == "function" ? H(Y) : H.replace("%s", Y);
247
+ };
248
+ D.to = function(l, x) {
249
+ return y(l, x, this, !0);
250
+ }, D.from = function(l, x) {
251
+ return y(l, x, this);
252
+ };
253
+ var p = function(l) {
254
+ return l.$u ? v.utc() : v();
255
+ };
256
+ D.toNow = function(l) {
257
+ return this.to(p(this), l);
258
+ }, D.fromNow = function(l) {
259
+ return this.from(p(this), l);
260
+ };
261
+ };
262
+ });
263
+ })(Q)), Q.exports;
264
+ }
265
+ var Ht = At();
266
+ const sr = /* @__PURE__ */ R(Ht);
267
+ var G = { exports: {} }, kt = G.exports, lt;
268
+ function Ft() {
269
+ return lt || (lt = 1, (function(_, q) {
270
+ (function(h, n) {
271
+ _.exports = n();
272
+ })(kt, function() {
273
+ return function(h, n, v) {
274
+ n.prototype.isToday = function() {
275
+ var D = v();
276
+ return this.format("YYYY-MM-DD") === D.format("YYYY-MM-DD");
277
+ };
278
+ };
279
+ });
280
+ })(G)), G.exports;
281
+ }
282
+ var qt = Ft();
283
+ const ir = /* @__PURE__ */ R(qt);
284
+ var K = { exports: {} }, Bt = K.exports, mt;
285
+ function It() {
286
+ return mt || (mt = 1, (function(_, q) {
287
+ (function(h, n) {
288
+ _.exports = n();
289
+ })(Bt, function() {
290
+ return function(h, n, v) {
291
+ n.prototype.isBetween = function(D, O, y, p) {
292
+ var l = v(D), x = v(O), S = (p = p || "()")[0] === "(", a = p[1] === ")";
293
+ return (S ? this.isAfter(l, y) : !this.isBefore(l, y)) && (a ? this.isBefore(x, y) : !this.isAfter(x, y)) || (S ? this.isBefore(l, y) : !this.isAfter(l, y)) && (a ? this.isAfter(x, y) : !this.isBefore(x, y));
294
+ };
295
+ };
296
+ });
297
+ })(K)), K.exports;
298
+ }
299
+ var zt = It();
300
+ const or = /* @__PURE__ */ R(zt);
301
+ var X = { exports: {} }, Ct = X.exports, $t;
302
+ function Et() {
303
+ return $t || ($t = 1, (function(_, q) {
304
+ (function(h, n) {
305
+ _.exports = n();
306
+ })(Ct, function() {
307
+ return function(h, n) {
308
+ n.prototype.isSameOrBefore = function(v, D) {
309
+ return this.isSame(v, D) || this.isBefore(v, D);
310
+ };
311
+ };
312
+ });
313
+ })(X)), X.exports;
314
+ }
315
+ var Pt = Et();
316
+ const ar = /* @__PURE__ */ R(Pt);
317
+ var tt = { exports: {} }, Rt = tt.exports, pt;
318
+ function jt() {
319
+ return pt || (pt = 1, (function(_, q) {
320
+ (function(h, n) {
321
+ _.exports = n();
322
+ })(Rt, function() {
323
+ return function(h, n) {
324
+ n.prototype.isSameOrAfter = function(v, D) {
325
+ return this.isSame(v, D) || this.isAfter(v, D);
326
+ };
327
+ };
328
+ });
329
+ })(tt)), tt.exports;
330
+ }
331
+ var Zt = jt();
332
+ const ur = /* @__PURE__ */ R(Zt);
333
+ var rt = { exports: {} }, Nt = rt.exports, Mt;
334
+ function Wt() {
335
+ return Mt || (Mt = 1, (function(_, q) {
336
+ (function(h, n) {
337
+ _.exports = n();
338
+ })(Nt, function() {
339
+ var h, n, v = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, D = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/, O = { years: 31536e6, months: 2592e6, days: 864e5, hours: 36e5, minutes: 6e4, seconds: 1e3, milliseconds: 1, weeks: 6048e5 }, y = function(S) {
340
+ return S instanceof x;
341
+ }, p = function(S, a, e) {
342
+ return new x(S, e, a.$l);
343
+ }, l = function(S) {
344
+ return n.p(S) + "s";
345
+ }, x = (function() {
346
+ function S(e, Y, t) {
347
+ var s = this;
348
+ if (this.$d = {}, this.$l = t, Y) return p(e * O[l(Y)], this);
349
+ if (typeof e == "number") return this.$ms = e, this.parseFromMilliseconds(), this;
350
+ if (typeof e == "object") return Object.keys(e).forEach(function(m) {
351
+ s.$d[l(m)] = e[m];
352
+ }), this.calMilliseconds(), this;
353
+ if (typeof e == "string") {
354
+ var f = e.match(D);
355
+ if (f) return this.$d.years = f[2], this.$d.months = f[3], this.$d.weeks = f[4], this.$d.days = f[5], this.$d.hours = f[6], this.$d.minutes = f[7], this.$d.seconds = f[8], this.calMilliseconds(), this;
356
+ }
357
+ return this;
358
+ }
359
+ var a = S.prototype;
360
+ return a.calMilliseconds = function() {
361
+ var e = this;
362
+ this.$ms = Object.keys(this.$d).reduce(function(Y, t) {
363
+ return Y + (e.$d[t] || 0) * O[t];
364
+ }, 0);
365
+ }, a.parseFromMilliseconds = function() {
366
+ var e = this.$ms;
367
+ this.$d.years = Math.floor(e / 31536e6), e %= 31536e6, this.$d.months = Math.floor(e / 2592e6), e %= 2592e6, this.$d.days = Math.floor(e / 864e5), e %= 864e5, this.$d.hours = Math.floor(e / 36e5), e %= 36e5, this.$d.minutes = Math.floor(e / 6e4), e %= 6e4, this.$d.seconds = Math.floor(e / 1e3), e %= 1e3, this.$d.milliseconds = e;
368
+ }, a.toISOString = function() {
369
+ var e = this.$d.years ? this.$d.years + "Y" : "", Y = this.$d.months ? this.$d.months + "M" : "", t = +this.$d.days || 0;
370
+ this.$d.weeks && (t += 7 * this.$d.weeks);
371
+ var s = t ? t + "D" : "", f = this.$d.hours ? this.$d.hours + "H" : "", m = this.$d.minutes ? this.$d.minutes + "M" : "", w = this.$d.seconds || 0;
372
+ this.$d.milliseconds && (w += this.$d.milliseconds / 1e3);
373
+ var T = w ? w + "S" : "", g = "P" + e + Y + s + (f || m || T ? "T" : "") + f + m + T;
374
+ return g === "P" ? "P0D" : g;
375
+ }, a.toJSON = function() {
376
+ return this.toISOString();
377
+ }, a.format = function(e) {
378
+ var Y = e || "YYYY-MM-DDTHH:mm:ss", t = { Y: this.$d.years, YY: n.s(this.$d.years, 2, "0"), YYYY: n.s(this.$d.years, 4, "0"), M: this.$d.months, MM: n.s(this.$d.months, 2, "0"), D: this.$d.days, DD: n.s(this.$d.days, 2, "0"), H: this.$d.hours, HH: n.s(this.$d.hours, 2, "0"), m: this.$d.minutes, mm: n.s(this.$d.minutes, 2, "0"), s: this.$d.seconds, ss: n.s(this.$d.seconds, 2, "0"), SSS: n.s(this.$d.milliseconds, 3, "0") };
379
+ return Y.replace(v, function(s, f) {
380
+ return f || String(t[s]);
381
+ });
382
+ }, a.as = function(e) {
383
+ return this.$ms / O[l(e)];
384
+ }, a.get = function(e) {
385
+ var Y = this.$ms, t = l(e);
386
+ return t === "milliseconds" ? Y %= 1e3 : Y = t === "weeks" ? Math.floor(Y / O[t]) : this.$d[t], Y;
387
+ }, a.add = function(e, Y, t) {
388
+ var s;
389
+ return s = Y ? e * O[l(Y)] : y(e) ? e.$ms : p(e, this).$ms, p(this.$ms + s * (t ? -1 : 1), this);
390
+ }, a.subtract = function(e, Y) {
391
+ return this.add(e, Y, !0);
392
+ }, a.locale = function(e) {
393
+ var Y = this.clone();
394
+ return Y.$l = e, Y;
395
+ }, a.clone = function() {
396
+ return p(this.$ms, this);
397
+ }, a.humanize = function(e) {
398
+ return h().add(this.$ms, "ms").locale(this.$l).fromNow(!e);
399
+ }, a.milliseconds = function() {
400
+ return this.get("milliseconds");
401
+ }, a.asMilliseconds = function() {
402
+ return this.as("milliseconds");
403
+ }, a.seconds = function() {
404
+ return this.get("seconds");
405
+ }, a.asSeconds = function() {
406
+ return this.as("seconds");
407
+ }, a.minutes = function() {
408
+ return this.get("minutes");
409
+ }, a.asMinutes = function() {
410
+ return this.as("minutes");
411
+ }, a.hours = function() {
412
+ return this.get("hours");
413
+ }, a.asHours = function() {
414
+ return this.as("hours");
415
+ }, a.days = function() {
416
+ return this.get("days");
417
+ }, a.asDays = function() {
418
+ return this.as("days");
419
+ }, a.weeks = function() {
420
+ return this.get("weeks");
421
+ }, a.asWeeks = function() {
422
+ return this.as("weeks");
423
+ }, a.months = function() {
424
+ return this.get("months");
425
+ }, a.asMonths = function() {
426
+ return this.as("months");
427
+ }, a.years = function() {
428
+ return this.get("years");
429
+ }, a.asYears = function() {
430
+ return this.as("years");
431
+ }, S;
432
+ })();
433
+ return function(S, a, e) {
434
+ h = e, n = e().$utils(), e.duration = function(s, f) {
435
+ var m = e.locale();
436
+ return p(s, { $l: m }, f);
437
+ }, e.isDuration = y;
438
+ var Y = a.prototype.add, t = a.prototype.subtract;
439
+ a.prototype.add = function(s, f) {
440
+ return y(s) && (s = s.asMilliseconds()), Y.bind(this)(s, f);
441
+ }, a.prototype.subtract = function(s, f) {
442
+ return y(s) && (s = s.asMilliseconds()), t.bind(this)(s, f);
443
+ };
444
+ };
445
+ });
446
+ })(rt)), rt.exports;
447
+ }
448
+ var Ut = Wt();
449
+ const hr = /* @__PURE__ */ R(Ut);
450
+ var et = { exports: {} }, Jt = et.exports, vt;
451
+ function Vt() {
452
+ return vt || (vt = 1, (function(_, q) {
453
+ (function(h, n) {
454
+ _.exports = n();
455
+ })(Jt, function() {
456
+ var h, n = { LTS: "h:mm:ss A", LT: "h:mm A", L: "MM/DD/YYYY", LL: "MMMM D, YYYY", LLL: "MMMM D, YYYY h:mm A", LLLL: "dddd, MMMM D, YYYY h:mm A" }, v = function(t, s) {
457
+ return t.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g, function(f, m, w) {
458
+ var T = w && w.toUpperCase();
459
+ return m || s[w] || n[w] || s[T].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g, function(g, M, H) {
460
+ return M || H.slice(1);
461
+ });
462
+ });
463
+ }, D = /(\[[^[]*\])|([-:/.()\s]+)|(A|a|YYYY|YY?|MM?M?M?|Do|DD?|hh?|HH?|mm?|ss?|S{1,3}|z|ZZ?)/g, O = /\d\d/, y = /\d\d?/, p = /\d*[^\s\d-:/()]+/, l = function(t) {
464
+ return function(s) {
465
+ this[t] = +s;
466
+ };
467
+ }, x = [/[+-]\d\d:?(\d\d)?/, function(t) {
468
+ (this.zone || (this.zone = {})).offset = (function(s) {
469
+ if (!s) return 0;
470
+ var f = s.match(/([+-]|\d\d)/g), m = 60 * f[1] + (+f[2] || 0);
471
+ return m === 0 ? 0 : f[0] === "+" ? -m : m;
472
+ })(t);
473
+ }], S = function(t) {
474
+ var s = h[t];
475
+ return s && (s.indexOf ? s : s.s.concat(s.f));
476
+ }, a = function(t, s) {
477
+ var f, m = h.meridiem;
478
+ if (m) {
479
+ for (var w = 1; w <= 24; w += 1) if (t.indexOf(m(w, 0, s)) > -1) {
480
+ f = w > 12;
481
+ break;
482
+ }
483
+ } else f = t === (s ? "pm" : "PM");
484
+ return f;
485
+ }, e = { A: [p, function(t) {
486
+ this.afternoon = a(t, !1);
487
+ }], a: [p, function(t) {
488
+ this.afternoon = a(t, !0);
489
+ }], S: [/\d/, function(t) {
490
+ this.milliseconds = 100 * +t;
491
+ }], SS: [O, function(t) {
492
+ this.milliseconds = 10 * +t;
493
+ }], SSS: [/\d{3}/, function(t) {
494
+ this.milliseconds = +t;
495
+ }], s: [y, l("seconds")], ss: [y, l("seconds")], m: [y, l("minutes")], mm: [y, l("minutes")], H: [y, l("hours")], h: [y, l("hours")], HH: [y, l("hours")], hh: [y, l("hours")], D: [y, l("day")], DD: [O, l("day")], Do: [p, function(t) {
496
+ var s = h.ordinal, f = t.match(/\d+/);
497
+ if (this.day = f[0], s) for (var m = 1; m <= 31; m += 1) s(m).replace(/\[|\]/g, "") === t && (this.day = m);
498
+ }], M: [y, l("month")], MM: [O, l("month")], MMM: [p, function(t) {
499
+ var s = S("months"), f = (S("monthsShort") || s.map(function(m) {
500
+ return m.substr(0, 3);
501
+ })).indexOf(t) + 1;
502
+ if (f < 1) throw new Error();
503
+ this.month = f % 12 || f;
504
+ }], MMMM: [p, function(t) {
505
+ var s = S("months").indexOf(t) + 1;
506
+ if (s < 1) throw new Error();
507
+ this.month = s % 12 || s;
508
+ }], Y: [/[+-]?\d+/, l("year")], YY: [O, function(t) {
509
+ t = +t, this.year = t + (t > 68 ? 1900 : 2e3);
510
+ }], YYYY: [/\d{4}/, l("year")], Z: x, ZZ: x }, Y = function(t, s, f) {
511
+ try {
512
+ var m = (function(k) {
513
+ for (var B = (k = v(k, h && h.formats)).match(D), I = B.length, P = 0; P < I; P += 1) {
514
+ var j = B[P], C = e[j], F = C && C[0], E = C && C[1];
515
+ B[P] = E ? { regex: F, parser: E } : j.replace(/^\[|\]$/g, "");
516
+ }
517
+ return function(N) {
518
+ for (var Z = {}, it = 0, ot = 0; it < I; it += 1) {
519
+ var U = B[it];
520
+ if (typeof U == "string") ot += U.length;
521
+ else {
522
+ var Dt = U.regex, xt = U.parser, St = N.substr(ot), at = Dt.exec(St)[0];
523
+ xt.call(Z, at), N = N.replace(at, "");
524
+ }
525
+ }
526
+ return (function(W) {
527
+ var ut = W.afternoon;
528
+ if (ut !== void 0) {
529
+ var ht = W.hours;
530
+ ut ? ht < 12 && (W.hours += 12) : ht === 12 && (W.hours = 0), delete W.afternoon;
531
+ }
532
+ })(Z), Z;
533
+ };
534
+ })(s)(t), w = m.year, T = m.month, g = m.day, M = m.hours, H = m.minutes, z = m.seconds, c = m.milliseconds, o = m.zone, r = /* @__PURE__ */ new Date(), u = g || (w || T ? 1 : r.getDate()), i = w || r.getFullYear(), $ = 0;
535
+ w && !T || ($ = T > 0 ? T - 1 : r.getMonth());
536
+ var d = M || 0, L = H || 0, A = z || 0, b = c || 0;
537
+ return o ? new Date(Date.UTC(i, $, u, d, L, A, b + 60 * o.offset * 1e3)) : f ? new Date(Date.UTC(i, $, u, d, L, A, b)) : new Date(i, $, u, d, L, A, b);
538
+ } catch {
539
+ return /* @__PURE__ */ new Date("");
540
+ }
541
+ };
542
+ return function(t, s, f) {
543
+ f.p.customParseFormat = !0;
544
+ var m = s.prototype, w = m.parse;
545
+ m.parse = function(T) {
546
+ var g = T.date, M = T.utc, H = T.args;
547
+ this.$u = M;
548
+ var z = H[1];
549
+ if (typeof z == "string") {
550
+ var c = H[2] === !0, o = H[3] === !0, r = c || o, u = H[2];
551
+ o && (u = H[2]), c || (h = u ? f.Ls[u] : this.$locale()), this.$d = Y(g, z, M), this.init(), u && u !== !0 && (this.$L = this.locale(u).$L), r && g !== this.format(z) && (this.$d = /* @__PURE__ */ new Date("")), h = void 0;
552
+ } else if (z instanceof Array) for (var i = z.length, $ = 1; $ <= i; $ += 1) {
553
+ H[1] = z[$ - 1];
554
+ var d = f.apply(this, H);
555
+ if (d.isValid()) {
556
+ this.$d = d.$d, this.$L = d.$L, this.init();
557
+ break;
558
+ }
559
+ $ === i && (this.$d = /* @__PURE__ */ new Date(""));
560
+ }
561
+ else w.call(this, T);
562
+ };
563
+ };
564
+ });
565
+ })(et)), et.exports;
566
+ }
567
+ var Qt = Vt();
568
+ const fr = /* @__PURE__ */ R(Qt);
569
+ var nt = { exports: {} }, Gt = nt.exports, yt;
570
+ function Kt() {
571
+ return yt || (yt = 1, (function(_, q) {
572
+ (function(h, n) {
573
+ _.exports = n();
574
+ })(Gt, function() {
575
+ return function(h, n) {
576
+ n.prototype.dayOfYear = function(v) {
577
+ var D = Math.round((this.startOf("day") - this.startOf("year")) / 864e5) + 1;
578
+ return v == null ? D : this.add(v - D, "day");
579
+ };
580
+ };
581
+ });
582
+ })(nt)), nt.exports;
583
+ }
584
+ var Xt = Kt();
585
+ const cr = /* @__PURE__ */ R(Xt);
586
+ var st = { exports: {} }, tr = st.exports, Yt;
587
+ function rr() {
588
+ return Yt || (Yt = 1, (function(_, q) {
589
+ (function(h, n) {
590
+ _.exports = n(_t());
591
+ })(tr, function(h) {
592
+ h = h && h.hasOwnProperty("default") ? h.default : h;
593
+ var n = "января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_"), v = "январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_"), D = "янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.".split("_"), O = "янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.".split("_"), y = /D[oD]?(\[[^[\]]*\]|\s)+MMMM?/;
594
+ function p(a, e, Y) {
595
+ var t, s;
596
+ return Y === "m" ? e ? "минута" : "минуту" : a + " " + (t = +a, s = { mm: e ? "минута_минуты_минут" : "минуту_минуты_минут", hh: "час_часа_часов", dd: "день_дня_дней", MM: "месяц_месяца_месяцев", yy: "год_года_лет" }[Y].split("_"), t % 10 == 1 && t % 100 != 11 ? s[0] : t % 10 >= 2 && t % 10 <= 4 && (t % 100 < 10 || t % 100 >= 20) ? s[1] : s[2]);
597
+ }
598
+ var l = function(a, e) {
599
+ return y.test(e) ? n[a.month()] : v[a.month()];
600
+ };
601
+ l.s = v, l.f = n;
602
+ var x = function(a, e) {
603
+ return y.test(e) ? D[a.month()] : O[a.month()];
604
+ };
605
+ x.s = O, x.f = D;
606
+ var S = { name: "ru", weekdays: "воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"), weekdaysShort: "вск_пнд_втр_срд_чтв_птн_сбт".split("_"), weekdaysMin: "вс_пн_вт_ср_чт_пт_сб".split("_"), months: l, monthsShort: x, weekStart: 1, formats: { LT: "H:mm", LTS: "H:mm:ss", L: "DD.MM.YYYY", LL: "D MMMM YYYY г.", LLL: "D MMMM YYYY г., H:mm", LLLL: "dddd, D MMMM YYYY г., H:mm" }, relativeTime: { future: "через %s", past: "%s назад", s: "несколько секунд", m: p, mm: p, h: "час", hh: p, d: "день", dd: p, M: "месяц", MM: p, y: "год", yy: p }, ordinal: function(a) {
607
+ return a;
608
+ } };
609
+ return h.locale(S, null, !0), S;
610
+ });
611
+ })(st)), st.exports;
612
+ }
613
+ rr();
614
+ const dr = (_) => {
615
+ const q = ["b", "kb", "mb", "gb", "tb"], h = _.match(/[a-zA-Z]+/)?.[0] || "b", n = parseFloat(_.replace(h, "")), v = q.indexOf(h.toLowerCase());
616
+ return n * Math.pow(1024, v);
617
+ };
618
+ function lr(_) {
619
+ if (isNaN(_) || _ < 0) return "0 Б";
620
+ const q = ["Б", "КБ", "МБ", "ГБ", "ТБ"];
621
+ let h = 0, n = _;
622
+ for (; n >= 1024 && h < q.length - 1; )
623
+ n = n / 1024, h++;
624
+ return `${n % 1 === 0 ? n : n.toFixed(0)} ${q[h]}`;
625
+ }
626
+ export {
627
+ or as a,
628
+ ar as b,
629
+ ur as c,
630
+ er as d,
631
+ hr as e,
632
+ fr as f,
633
+ cr as g,
634
+ lr as h,
635
+ ir as i,
636
+ nr as l,
637
+ dr as p,
638
+ sr as r
639
+ };