persian-date-kit 0.0.12 → 1.0.0

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.
@@ -1,1174 +0,0 @@
1
- import { jsxs as mt, jsx as T } from "react/jsx-runtime";
2
- import * as b from "react";
3
- import { createPortal as re } from "react-dom";
4
- function Ht(t) {
5
- return t && t.__esModule && Object.prototype.hasOwnProperty.call(t, "default") ? t.default : t;
6
- }
7
- var vt = { exports: {} }, se = vt.exports, It;
8
- function Rt() {
9
- return It || (It = 1, (function(t, i) {
10
- (function(a, e) {
11
- t.exports = e();
12
- })(se, (function() {
13
- var a = 1e3, e = 6e4, p = 36e5, l = "millisecond", v = "second", S = "minute", L = "hour", D = "day", U = "week", M = "month", Q = "quarter", A = "year", x = "date", N = "Invalid Date", W = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, C = /\[([^\]]+)]|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, J = { 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("_"), ordinal: function(r) {
14
- var n = ["th", "st", "nd", "rd"], o = r % 100;
15
- return "[" + r + (n[(o - 20) % 10] || n[o] || n[0]) + "]";
16
- } }, Y = function(r, n, o) {
17
- var h = String(r);
18
- return !h || h.length >= n ? r : "" + Array(n + 1 - h.length).join(o) + r;
19
- }, st = { s: Y, z: function(r) {
20
- var n = -r.utcOffset(), o = Math.abs(n), h = Math.floor(o / 60), u = o % 60;
21
- return (n <= 0 ? "+" : "-") + Y(h, 2, "0") + ":" + Y(u, 2, "0");
22
- }, m: function r(n, o) {
23
- if (n.date() < o.date()) return -r(o, n);
24
- var h = 12 * (o.year() - n.year()) + (o.month() - n.month()), u = n.clone().add(h, M), g = o - u < 0, y = n.clone().add(h + (g ? -1 : 1), M);
25
- return +(-(h + (o - u) / (g ? u - y : y - u)) || 0);
26
- }, a: function(r) {
27
- return r < 0 ? Math.ceil(r) || 0 : Math.floor(r);
28
- }, p: function(r) {
29
- return { M, y: A, w: U, d: D, D: x, h: L, m: S, s: v, ms: l, Q }[r] || String(r || "").toLowerCase().replace(/s$/, "");
30
- }, u: function(r) {
31
- return r === void 0;
32
- } }, B = "en", R = {};
33
- R[B] = J;
34
- var tt = "$isDayjsObject", G = function(r) {
35
- return r instanceof w || !(!r || !r[tt]);
36
- }, d = function r(n, o, h) {
37
- var u;
38
- if (!n) return B;
39
- if (typeof n == "string") {
40
- var g = n.toLowerCase();
41
- R[g] && (u = g), o && (R[g] = o, u = g);
42
- var y = n.split("-");
43
- if (!u && y.length > 1) return r(y[0]);
44
- } else {
45
- var _ = n.name;
46
- R[_] = n, u = _;
47
- }
48
- return !h && u && (B = u), u || !h && B;
49
- }, c = function(r, n) {
50
- if (G(r)) return r.clone();
51
- var o = typeof n == "object" ? n : {};
52
- return o.date = r, o.args = arguments, new w(o);
53
- }, f = st;
54
- f.l = d, f.i = G, f.w = function(r, n) {
55
- return c(r, { locale: n.$L, utc: n.$u, x: n.$x, $offset: n.$offset });
56
- };
57
- var w = (function() {
58
- function r(o) {
59
- this.$L = d(o.locale, null, !0), this.parse(o), this.$x = this.$x || o.x || {}, this[tt] = !0;
60
- }
61
- var n = r.prototype;
62
- return n.parse = function(o) {
63
- this.$d = (function(h) {
64
- var u = h.date, g = h.utc;
65
- if (u === null) return /* @__PURE__ */ new Date(NaN);
66
- if (f.u(u)) return /* @__PURE__ */ new Date();
67
- if (u instanceof Date) return new Date(u);
68
- if (typeof u == "string" && !/Z$/i.test(u)) {
69
- var y = u.match(W);
70
- if (y) {
71
- var _ = y[2] - 1 || 0, k = (y[7] || "0").substring(0, 3);
72
- return g ? new Date(Date.UTC(y[1], _, y[3] || 1, y[4] || 0, y[5] || 0, y[6] || 0, k)) : new Date(y[1], _, y[3] || 1, y[4] || 0, y[5] || 0, y[6] || 0, k);
73
- }
74
- }
75
- return new Date(u);
76
- })(o), this.init();
77
- }, n.init = function() {
78
- var o = this.$d;
79
- this.$y = o.getFullYear(), this.$M = o.getMonth(), this.$D = o.getDate(), this.$W = o.getDay(), this.$H = o.getHours(), this.$m = o.getMinutes(), this.$s = o.getSeconds(), this.$ms = o.getMilliseconds();
80
- }, n.$utils = function() {
81
- return f;
82
- }, n.isValid = function() {
83
- return this.$d.toString() !== N;
84
- }, n.isSame = function(o, h) {
85
- var u = c(o);
86
- return this.startOf(h) <= u && u <= this.endOf(h);
87
- }, n.isAfter = function(o, h) {
88
- return c(o) < this.startOf(h);
89
- }, n.isBefore = function(o, h) {
90
- return this.endOf(h) < c(o);
91
- }, n.$g = function(o, h, u) {
92
- return f.u(o) ? this[h] : this.set(u, o);
93
- }, n.unix = function() {
94
- return Math.floor(this.valueOf() / 1e3);
95
- }, n.valueOf = function() {
96
- return this.$d.getTime();
97
- }, n.startOf = function(o, h) {
98
- var u = this, g = !!f.u(h) || h, y = f.p(o), _ = function(et, V) {
99
- var nt = f.w(u.$u ? Date.UTC(u.$y, V, et) : new Date(u.$y, V, et), u);
100
- return g ? nt : nt.endOf(D);
101
- }, k = function(et, V) {
102
- return f.w(u.toDate()[et].apply(u.toDate("s"), (g ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(V)), u);
103
- }, I = this.$W, O = this.$M, H = this.$D, K = "set" + (this.$u ? "UTC" : "");
104
- switch (y) {
105
- case A:
106
- return g ? _(1, 0) : _(31, 11);
107
- case M:
108
- return g ? _(1, O) : _(0, O + 1);
109
- case U:
110
- var z = this.$locale().weekStart || 0, it = (I < z ? I + 7 : I) - z;
111
- return _(g ? H - it : H + (6 - it), O);
112
- case D:
113
- case x:
114
- return k(K + "Hours", 0);
115
- case L:
116
- return k(K + "Minutes", 1);
117
- case S:
118
- return k(K + "Seconds", 2);
119
- case v:
120
- return k(K + "Milliseconds", 3);
121
- default:
122
- return this.clone();
123
- }
124
- }, n.endOf = function(o) {
125
- return this.startOf(o, !1);
126
- }, n.$set = function(o, h) {
127
- var u, g = f.p(o), y = "set" + (this.$u ? "UTC" : ""), _ = (u = {}, u[D] = y + "Date", u[x] = y + "Date", u[M] = y + "Month", u[A] = y + "FullYear", u[L] = y + "Hours", u[S] = y + "Minutes", u[v] = y + "Seconds", u[l] = y + "Milliseconds", u)[g], k = g === D ? this.$D + (h - this.$W) : h;
128
- if (g === M || g === A) {
129
- var I = this.clone().set(x, 1);
130
- I.$d[_](k), I.init(), this.$d = I.set(x, Math.min(this.$D, I.daysInMonth())).$d;
131
- } else _ && this.$d[_](k);
132
- return this.init(), this;
133
- }, n.set = function(o, h) {
134
- return this.clone().$set(o, h);
135
- }, n.get = function(o) {
136
- return this[f.p(o)]();
137
- }, n.add = function(o, h) {
138
- var u, g = this;
139
- o = Number(o);
140
- var y = f.p(h), _ = function(O) {
141
- var H = c(g);
142
- return f.w(H.date(H.date() + Math.round(O * o)), g);
143
- };
144
- if (y === M) return this.set(M, this.$M + o);
145
- if (y === A) return this.set(A, this.$y + o);
146
- if (y === D) return _(1);
147
- if (y === U) return _(7);
148
- var k = (u = {}, u[S] = e, u[L] = p, u[v] = a, u)[y] || 1, I = this.$d.getTime() + o * k;
149
- return f.w(I, this);
150
- }, n.subtract = function(o, h) {
151
- return this.add(-1 * o, h);
152
- }, n.format = function(o) {
153
- var h = this, u = this.$locale();
154
- if (!this.isValid()) return u.invalidDate || N;
155
- var g = o || "YYYY-MM-DDTHH:mm:ssZ", y = f.z(this), _ = this.$H, k = this.$m, I = this.$M, O = u.weekdays, H = u.months, K = u.meridiem, z = function(V, nt, ot, q) {
156
- return V && (V[nt] || V(h, g)) || ot[nt].slice(0, q);
157
- }, it = function(V) {
158
- return f.s(_ % 12 || 12, V, "0");
159
- }, et = K || function(V, nt, ot) {
160
- var q = V < 12 ? "AM" : "PM";
161
- return ot ? q.toLowerCase() : q;
162
- };
163
- return g.replace(C, (function(V, nt) {
164
- return nt || (function(ot) {
165
- switch (ot) {
166
- case "YY":
167
- return String(h.$y).slice(-2);
168
- case "YYYY":
169
- return f.s(h.$y, 4, "0");
170
- case "M":
171
- return I + 1;
172
- case "MM":
173
- return f.s(I + 1, 2, "0");
174
- case "MMM":
175
- return z(u.monthsShort, I, H, 3);
176
- case "MMMM":
177
- return z(H, I);
178
- case "D":
179
- return h.$D;
180
- case "DD":
181
- return f.s(h.$D, 2, "0");
182
- case "d":
183
- return String(h.$W);
184
- case "dd":
185
- return z(u.weekdaysMin, h.$W, O, 2);
186
- case "ddd":
187
- return z(u.weekdaysShort, h.$W, O, 3);
188
- case "dddd":
189
- return O[h.$W];
190
- case "H":
191
- return String(_);
192
- case "HH":
193
- return f.s(_, 2, "0");
194
- case "h":
195
- return it(1);
196
- case "hh":
197
- return it(2);
198
- case "a":
199
- return et(_, k, !0);
200
- case "A":
201
- return et(_, k, !1);
202
- case "m":
203
- return String(k);
204
- case "mm":
205
- return f.s(k, 2, "0");
206
- case "s":
207
- return String(h.$s);
208
- case "ss":
209
- return f.s(h.$s, 2, "0");
210
- case "SSS":
211
- return f.s(h.$ms, 3, "0");
212
- case "Z":
213
- return y;
214
- }
215
- return null;
216
- })(V) || y.replace(":", "");
217
- }));
218
- }, n.utcOffset = function() {
219
- return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
220
- }, n.diff = function(o, h, u) {
221
- var g, y = this, _ = f.p(h), k = c(o), I = (k.utcOffset() - this.utcOffset()) * e, O = this - k, H = function() {
222
- return f.m(y, k);
223
- };
224
- switch (_) {
225
- case A:
226
- g = H() / 12;
227
- break;
228
- case M:
229
- g = H();
230
- break;
231
- case Q:
232
- g = H() / 3;
233
- break;
234
- case U:
235
- g = (O - I) / 6048e5;
236
- break;
237
- case D:
238
- g = (O - I) / 864e5;
239
- break;
240
- case L:
241
- g = O / p;
242
- break;
243
- case S:
244
- g = O / e;
245
- break;
246
- case v:
247
- g = O / a;
248
- break;
249
- default:
250
- g = O;
251
- }
252
- return u ? g : f.a(g);
253
- }, n.daysInMonth = function() {
254
- return this.endOf(M).$D;
255
- }, n.$locale = function() {
256
- return R[this.$L];
257
- }, n.locale = function(o, h) {
258
- if (!o) return this.$L;
259
- var u = this.clone(), g = d(o, h, !0);
260
- return g && (u.$L = g), u;
261
- }, n.clone = function() {
262
- return f.w(this.$d, this);
263
- }, n.toDate = function() {
264
- return new Date(this.valueOf());
265
- }, n.toJSON = function() {
266
- return this.isValid() ? this.toISOString() : null;
267
- }, n.toISOString = function() {
268
- return this.$d.toISOString();
269
- }, n.toString = function() {
270
- return this.$d.toUTCString();
271
- }, r;
272
- })(), m = w.prototype;
273
- return c.prototype = m, [["$ms", l], ["$s", v], ["$m", S], ["$H", L], ["$W", D], ["$M", M], ["$y", A], ["$D", x]].forEach((function(r) {
274
- m[r[1]] = function(n) {
275
- return this.$g(n, r[0], r[1]);
276
- };
277
- })), c.extend = function(r, n) {
278
- return r.$i || (r(n, w, c), r.$i = !0), c;
279
- }, c.locale = d, c.isDayjs = G, c.unix = function(r) {
280
- return c(1e3 * r);
281
- }, c.en = R[B], c.Ls = R, c.p = {}, c;
282
- }));
283
- })(vt)), vt.exports;
284
- }
285
- var ie = Rt();
286
- const Lt = /* @__PURE__ */ Ht(ie);
287
- var _t = { exports: {} }, ae = _t.exports, Tt;
288
- function oe() {
289
- return Tt || (Tt = 1, (function(t, i) {
290
- (function(a, e) {
291
- t.exports = e(Rt());
292
- })(ae, (function(a) {
293
- function e(v) {
294
- return v && typeof v == "object" && "default" in v ? v : { default: v };
295
- }
296
- var p = e(a), l = { name: "fa", weekdays: "یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"), weekdaysShort: "یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"), weekdaysMin: "ی_د_س_چ_پ_ج_ش".split("_"), weekStart: 6, months: "ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"), monthsShort: "ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"), ordinal: function(v) {
297
- return v;
298
- }, formats: { LT: "HH:mm", LTS: "HH:mm:ss", L: "DD/MM/YYYY", LL: "D MMMM YYYY", LLL: "D MMMM YYYY HH:mm", LLLL: "dddd, D MMMM YYYY HH:mm" }, relativeTime: { future: "در %s", past: "%s پیش", s: "چند ثانیه", m: "یک دقیقه", mm: "%d دقیقه", h: "یک ساعت", hh: "%d ساعت", d: "یک روز", dd: "%d روز", M: "یک ماه", MM: "%d ماه", y: "یک سال", yy: "%d سال" } };
299
- return p.default.locale(l, null, !0), l;
300
- }));
301
- })(_t)), _t.exports;
302
- }
303
- var ue = oe();
304
- const ce = /* @__PURE__ */ Ht(ue);
305
- function de(t, i, a) {
306
- let e = E((t + E(i - 8, 6) + 100100) * 1461, 4) + E(153 * dt(i + 9, 12) + 2, 5) + a - 34840408;
307
- return e = e - E(E(t + 100100 + E(i - 8, 6), 100) * 3, 4) + 752, e;
308
- }
309
- const gt = [
310
- -61,
311
- 9,
312
- 38,
313
- 199,
314
- 426,
315
- 686,
316
- 756,
317
- 818,
318
- 1111,
319
- 1181,
320
- 1210,
321
- 1635,
322
- 2060,
323
- 2097,
324
- 2192,
325
- 2262,
326
- 2324,
327
- 2394,
328
- 2456,
329
- 3178
330
- ], at = Math.floor;
331
- function dt(t, i) {
332
- return t - ~~(t / i) * i;
333
- }
334
- function E(t, i) {
335
- return ~~(t / i);
336
- }
337
- function le(t, i) {
338
- const a = gt.length, e = t + 621;
339
- let p = -14, l = gt[0], v, S, L;
340
- if (t < l || t >= gt[a - 1]) throw new Error(`Invalid Jalaali year ${t}`);
341
- for (let M = 1; M < a && (v = gt[M], S = v - l, !(t < v)); M += 1)
342
- p = p + E(S, 33) * 8 + E(dt(S, 33), 4), l = v;
343
- L = t - l, p = p + E(L, 33) * 8 + E(dt(L, 33) + 3, 4), dt(S, 33) === 4 && S - L === 4 && (p += 1);
344
- const D = E(e, 4) - E((E(e, 100) + 1) * 3, 4) - 150, U = 20 + p - D;
345
- return {
346
- gy: e,
347
- march: U
348
- };
349
- }
350
- function fe(t, i, a) {
351
- const e = le(t);
352
- return de(e.gy, 3, e.march) + (i - 1) * 31 - E(i, 7) * (i - 7) + a - 1;
353
- }
354
- function he(t) {
355
- let i = 4 * t + 139361631;
356
- i = i + E(E(4 * t + 183187720, 146097) * 3, 4) * 4 - 3908;
357
- const a = E(dt(i, 1461), 4) * 5 + 308, e = E(dt(a, 153), 5) + 1, p = dt(E(a, 153), 12) + 1;
358
- return [
359
- E(i, 1461) - 100100 + E(8 - p, 6),
360
- p,
361
- e
362
- ];
363
- }
364
- function pe(t, i, a) {
365
- return he(fe(t, i, a));
366
- }
367
- function me(t, i, a) {
368
- const e = {
369
- year: t,
370
- month: i,
371
- day: a
372
- }, p = [
373
- 0,
374
- 31,
375
- 59,
376
- 90,
377
- 120,
378
- 151,
379
- 181,
380
- 212,
381
- 243,
382
- 273,
383
- 304,
384
- 334
385
- ];
386
- let l;
387
- t <= 1600 ? (t -= 621, e.year = 0) : (t -= 1600, e.year = 979);
388
- const v = t > 2 ? t + 1 : t;
389
- return l = at((v + 3) / 4) + 365 * t - at((v + 99) / 100) - 80 + p[i - 1] + at((v + 399) / 400) + a, e.year += 33 * at(l / 12053), l %= 12053, e.year += 4 * at(l / 1461), l %= 1461, l > 365 && (e.year += at((l - 1) / 365), l = (l - 1) % 365), e.month = l < 186 ? 1 + at(l / 31) : 7 + at((l - 186) / 30), e.day = 1 + (l < 186 ? l % 31 : (l - 186) % 30), [
390
- e.year,
391
- e.month,
392
- e.day
393
- ];
394
- }
395
- var jt = {
396
- J: (t, i, a) => me(t, i, a),
397
- G: (t, i, a) => pe(t, i, a)
398
- };
399
- const ye = /^(\d{4})[-/]?(\d{1,2})[-/]?(\d{0,2})(.*)$/, $e = /\[.*?\]|jY{2,4}|jM{1,4}|jD{1,2}|Y{2,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, kt = "date", ht = "day", ut = "month", ct = "year", Pt = "week", ge = "YYYY-MM-DDTHH:mm:ssZ", je = { jmonths: "فروردین_اردیبهشت_خرداد_تیر_مرداد_شهریور_مهر_آبان_آذر_دی_بهمن_اسفند".split("_") }, ve = (t, i, a) => {
400
- const e = i.prototype, p = e.$utils(), l = (d) => d.$C === "jalali", v = p.prettyUnit || p.p, S = p.isUndefined || p.u, L = p.padStart || p.s, D = p.monthDiff || p.m, U = p.absFloor || p.a, M = (d) => function(...c) {
401
- const f = d.bind(this)(...c);
402
- return f.$C = this.$C, f.isJalali() && f.InitJalali(), f;
403
- };
404
- e.startOf = M(e.startOf), e.endOf = M(e.endOf), e.add = M(e.add), e.subtract = M(e.subtract), e.set = M(e.set);
405
- const Q = e.parse, A = e.init, x = e.startOf, N = e.$set, W = e.add, C = e.format, J = e.diff, Y = e.year, st = e.month, B = e.date, R = e.daysInMonth, tt = e.toArray;
406
- a.$C = "gregory", a.$fdow = 6, a.calendar = function(d) {
407
- return a.$C = d, a;
408
- }, e.calendar = function(d) {
409
- const c = this.clone();
410
- return c.$C = d, c.isJalali() && c.InitJalali(), c;
411
- }, e.isJalali = function() {
412
- return l(this);
413
- }, a.en.jmonths = "Farvardin_Ordibehesht_Khordaad_Tir_Mordaad_Shahrivar_Mehr_Aabaan_Aazar_Dey_Bahman_Esfand".split("_"), a.locale("fa", {
414
- ...ce,
415
- ...je
416
- }, !0);
417
- const G = function(d, c) {
418
- return a(d, {
419
- locale: c.$L,
420
- utc: c.$u,
421
- calendar: c.$C
422
- });
423
- };
424
- e.init = function(d = {}) {
425
- A.bind(this)(d), this.isJalali() && this.InitJalali();
426
- }, e.parse = function(d) {
427
- if (this.$C = d.calendar || this.$C || a.$C, d.jalali && typeof d.date == "string" && /.*[^Z]$/i.test(d.date)) {
428
- const c = d.date.match(ye);
429
- if (c) {
430
- const [f, w, m] = jt.G(Number.parseInt(c[1], 10), Number.parseInt(c[2], 10), Number.parseInt(c[3] || 1, 10));
431
- d.date = `${f}-${w}-${m}${c[4] || ""}`;
432
- }
433
- }
434
- return Q.bind(this)(d);
435
- }, e.InitJalali = function() {
436
- const [d, c, f] = jt.J(this.$y, this.$M + 1, this.$D);
437
- this.$jy = d, this.$jM = c - 1, this.$jD = f;
438
- }, e.startOf = function(d, c) {
439
- if (!l(this)) return x.bind(this)(d, c);
440
- const f = S(c) ? !0 : c, w = v(d), m = (n, o, h = this.$jy) => {
441
- const [u, g, y] = jt.G(h, o + 1, n), _ = G(new Date(u, g - 1, y), this);
442
- return (f ? _ : _.endOf(ht)).$set("hour", 1);
443
- }, r = (this.$W + (7 - a.$fdow)) % 7;
444
- switch (w) {
445
- case ct:
446
- return f ? m(1, 0) : m(0, 0, this.$jy + 1);
447
- case ut:
448
- return f ? m(1, this.$jM) : m(0, (this.$jM + 1) % 12, this.$jy + Math.floor((this.$jM + 1) / 12));
449
- case Pt:
450
- return f ? m(this.$jD - r, this.$jM) : m(this.$jD + (6 - r), this.$jM);
451
- default:
452
- return x.bind(this)(d, c);
453
- }
454
- }, e.$set = function(d, c) {
455
- if (!l(this)) return N.bind(this)(d, c);
456
- const f = v(d), w = (m, r, n = this.$jy) => {
457
- const [o, h, u] = jt.G(n, r + 1, m);
458
- return this.$d.setFullYear(o), this.$d.setMonth(h - 1), this.$d.setDate(u), this;
459
- };
460
- switch (f) {
461
- case kt:
462
- case ht:
463
- w(c, this.$jM);
464
- break;
465
- case ut:
466
- w(this.$jD, c);
467
- break;
468
- case ct:
469
- w(this.$jD, this.$jM, c);
470
- break;
471
- default:
472
- return N.bind(this)(d, c);
473
- }
474
- return this.init(), this;
475
- }, e.add = function(d, c) {
476
- if (!l(this)) return W.bind(this)(d, c);
477
- d = Number(d);
478
- const f = c && (c.length === 1 || c === "ms") ? c : v(c), w = (m, r) => {
479
- const n = this.set(kt, 1).set(m, r + d);
480
- return n.set(kt, Math.min(this.$jD, n.daysInMonth()));
481
- };
482
- if (["M", ut].includes(f)) {
483
- const m = this.$jM + d, r = m < 0 ? -Math.ceil(-m / 12) : Math.floor(m / 12), n = this.$jD, o = this.set(ht, 1).add(r, ct).set(ut, m - r * 12);
484
- return o.set(ht, Math.min(o.daysInMonth(), n));
485
- }
486
- if (["y", ct].includes(f)) return w(ct, this.$jy);
487
- if (["d", ht].includes(f)) {
488
- const m = new Date(this.$d);
489
- return m.setDate(m.getDate() + d), G(m, this);
490
- }
491
- if (["w", Pt].includes(f)) {
492
- const m = new Date(this.$d);
493
- return m.setDate(m.getDate() + d * 7), G(m, this);
494
- }
495
- return W.bind(this)(d, c);
496
- }, e.format = function(d, c) {
497
- if (!l(this)) return C.bind(this)(d, c);
498
- const f = d || ge, w = c || this.$locale(), { jmonths: m } = w;
499
- return f.replace($e, (r) => {
500
- if (r.includes("[")) return r.replace(/\[|\]/g, "");
501
- switch (r) {
502
- case "YY":
503
- return String(this.$jy).slice(-2);
504
- case "YYYY":
505
- return String(this.$jy);
506
- case "M":
507
- return String(this.$jM + 1);
508
- case "MM":
509
- return L(this.$jM + 1, 2, "0");
510
- case "MMM":
511
- return m[this.$jM].slice(0, 3);
512
- case "MMMM":
513
- return m[this.$jM];
514
- case "D":
515
- return String(this.$jD);
516
- case "DD":
517
- return L(this.$jD, 2, "0");
518
- default:
519
- return C.bind(this)(r, c);
520
- }
521
- });
522
- }, e.diff = function(d, c, f) {
523
- if (!l(this)) return J.bind(this)(d, c, f);
524
- const w = v(c), m = a(d);
525
- let r = D(this, m);
526
- switch (w) {
527
- case ct:
528
- r /= 12;
529
- break;
530
- case ut:
531
- break;
532
- default:
533
- return J.bind(this)(d, c, f);
534
- }
535
- return f ? r : U(r);
536
- }, e.$g = function(d, c, f) {
537
- return S(d) ? this[c] : this.set(f, d);
538
- }, e.year = function(d) {
539
- return l(this) ? this.$g(d, "$jy", ct) : Y.bind(this)(d);
540
- }, e.month = function(d) {
541
- return l(this) ? this.$g(d, "$jM", ut) : st.bind(this)(d);
542
- }, e.date = function(d) {
543
- return l(this) ? this.$g(d, "$jD", ht) : B.bind(this)(d);
544
- }, e.daysInMonth = function() {
545
- return l(this) ? this.endOf(ut).$jD : R.bind(this)();
546
- }, tt && (e.toArray = function() {
547
- return l(this) ? [
548
- this.$jy,
549
- this.$jM,
550
- this.$jD,
551
- this.$H,
552
- this.$m,
553
- this.$s,
554
- this.$ms
555
- ] : tt.bind(this)();
556
- }), e.clone = function() {
557
- return G(this.toDate(), this);
558
- };
559
- };
560
- var _e = ve;
561
- Lt.extend(_e);
562
- function Dt(t) {
563
- return String(t).padStart(2, "0");
564
- }
565
- function Vt(t) {
566
- return String(t).padStart(4, "0");
567
- }
568
- function rt(t) {
569
- const i = Lt(t).calendar("jalali");
570
- return { jy: i.year(), jm: i.month() + 1, jd: i.date() };
571
- }
572
- function Z(t) {
573
- const { jy: i, jm: a, jd: e } = t, p = `${Vt(i)}-${Dt(a)}-${Dt(e)}`, l = Lt(p, { jalali: !0 }).calendar("gregory").startOf("day");
574
- if (!l.isValid())
575
- throw new Error(`Invalid Jalali date parts: ${p}`);
576
- return l.toDate();
577
- }
578
- function Me(t, i = {}) {
579
- const a = i.separator ?? "/";
580
- return `${Vt(t.jy)}${a}${Dt(t.jm)}${a}${Dt(t.jd)}`;
581
- }
582
- function De(t) {
583
- const i = rt(t);
584
- return { ...i, formatted: Me(i) };
585
- }
586
- function we(t) {
587
- return t.replace(/[^\d]+/g, "-");
588
- }
589
- function Te(t) {
590
- return Z(t);
591
- }
592
- function be(t, i = {}) {
593
- const a = t.trim();
594
- if (!a) return null;
595
- const p = (i.allowLooseSeparators ? we(a) : a).match(/^(\d{4})[-/](\d{1,2})[-/](\d{1,2})$/);
596
- if (!p) return null;
597
- const l = Number(p[1]), v = Number(p[2]), S = Number(p[3]);
598
- try {
599
- return Z({ jy: l, jm: v, jd: S });
600
- } catch {
601
- return null;
602
- }
603
- }
604
- const Se = 1440 * 60 * 1e3;
605
- function wt(t) {
606
- return Date.UTC(t.getFullYear(), t.getMonth(), t.getDate());
607
- }
608
- function lt(t, i) {
609
- const a = wt(t), e = wt(i);
610
- return a === e ? 0 : a < e ? -1 : 1;
611
- }
612
- function Yt(t, i) {
613
- return lt(t, i) === 0;
614
- }
615
- function pt(t, i) {
616
- const a = new Date(t);
617
- return a.setDate(a.getDate() + i), a;
618
- }
619
- function Mt(t, i, a) {
620
- return !(i && lt(t, i) < 0 || a && lt(t, a) > 0);
621
- }
622
- function Pe(t, i, a) {
623
- return i && lt(t, i) < 0 ? new Date(i) : a && lt(t, a) > 0 ? new Date(a) : new Date(t);
624
- }
625
- function Ut(t, i) {
626
- const a = t.jy * 12 + (t.jm - 1) + i, e = Math.floor(a / 12), p = (a % 12 + 12) % 12 + 1;
627
- return { jy: e, jm: p };
628
- }
629
- function xe(t, i) {
630
- const a = Z({ jy: t, jm: i, jd: 1 }), e = Ut({ jy: t, jm: i }, 1), p = Z({ jy: e.jy, jm: e.jm, jd: 1 });
631
- return Math.round((wt(p) - wt(a)) / Se);
632
- }
633
- function Ft(t, i) {
634
- const a = rt(t), e = Ut({ jy: a.jy, jm: a.jm }, i), p = xe(e.jy, e.jm), l = Math.min(a.jd, p);
635
- return Z({ jy: e.jy, jm: e.jm, jd: l });
636
- }
637
- function ke(t) {
638
- const { jy: i, jm: a } = t, e = t.weekStartsOn ?? 6, p = Z({ jy: i, jm: a, jd: 1 }), v = (p.getDay() - e + 7) % 7, S = pt(p, -v), L = [];
639
- for (let D = 0; D < 6; D++) {
640
- const U = [];
641
- for (let M = 0; M < 7; M++) {
642
- const Q = D * 7 + M, A = pt(S, Q), x = rt(A);
643
- U.push({
644
- gregorian: A,
645
- jalali: x,
646
- inCurrentMonth: x.jy === i && x.jm === a
647
- });
648
- }
649
- L.push(U);
650
- }
651
- return L;
652
- }
653
- const Ye = [
654
- "bottom",
655
- "top",
656
- "left",
657
- "right"
658
- ];
659
- function Jt(t, i, a) {
660
- return Math.min(Math.max(t, i), a);
661
- }
662
- const Ce = typeof window < "u" ? b.useLayoutEffect : b.useEffect;
663
- function Le(t, i, a, e = {}) {
664
- const p = e.gutter ?? 8, l = e.padding ?? 8, v = e.strategy ?? "fixed", S = e.align ?? "end", L = e.placements?.join("|") ?? "", D = b.useMemo(
665
- () => e.placements && e.placements.length ? e.placements : Ye,
666
- [L]
667
- ), [U, M] = b.useState("bottom"), [Q, A] = b.useState(() => ({
668
- position: v,
669
- top: 0,
670
- left: 0
671
- })), x = b.useCallback(() => {
672
- const N = i.current, W = a.current;
673
- if (!N || !W) return;
674
- const C = N.getBoundingClientRect(), J = W.getBoundingClientRect(), Y = window.innerWidth, st = window.innerHeight, B = st - C.bottom - l, R = C.top - l, tt = C.left - l, G = Y - C.right - l;
675
- function d(r) {
676
- return r === "bottom" ? B : r === "top" ? R : r === "left" ? tt : G;
677
- }
678
- function c(r) {
679
- return r === "bottom" || r === "top" ? J.height + p <= d(r) : J.width + p <= d(r);
680
- }
681
- let f = D.find(c) ?? D.reduce(
682
- (r, n) => d(n) > d(r) ? n : r,
683
- D[0]
684
- ), w = 0, m = 0;
685
- f === "bottom" || f === "top" ? (w = f === "bottom" ? C.bottom + p : C.top - p - J.height, S === "start" ? m = C.left : S === "center" ? m = C.left + (C.width - J.width) / 2 : m = C.right - J.width) : (m = f === "right" ? C.right + p : C.left - p - J.width, S === "start" ? w = C.top : S === "center" ? w = C.top + (C.height - J.height) / 2 : w = C.bottom - J.height), w = Jt(w, l, st - l - J.height), m = Jt(m, l, Y - l - J.width), v === "absolute" && (w += window.scrollY, m += window.scrollX), M((r) => r === f ? r : f), A((r) => r.position === v && r.top === w && r.left === m ? r : { position: v, top: w, left: m });
686
- }, [S, i, p, l, a, v, D]);
687
- return Ce(() => {
688
- if (!t) return;
689
- x();
690
- const N = window.requestAnimationFrame(x);
691
- return () => window.cancelAnimationFrame(N);
692
- }, [t, x]), b.useEffect(() => {
693
- if (!t) return;
694
- let N = 0;
695
- const W = () => {
696
- N || (N = window.requestAnimationFrame(() => {
697
- N = 0, x();
698
- }));
699
- };
700
- return window.addEventListener("resize", W), document.addEventListener("scroll", W, !0), () => {
701
- window.removeEventListener("resize", W), document.removeEventListener("scroll", W, !0), N && window.cancelAnimationFrame(N);
702
- };
703
- }, [t, x]), { style: Q, placement: U, update: x };
704
- }
705
- function F(...t) {
706
- return t.filter(Boolean).join(" ");
707
- }
708
- function Oe(t) {
709
- return De(t).formatted;
710
- }
711
- function Ee(t) {
712
- return be(t, { allowLooseSeparators: !0 });
713
- }
714
- function Ae(t, i, a) {
715
- return Mt(t, i, a) ? t : null;
716
- }
717
- function yt(t) {
718
- const a = rt(t ?? /* @__PURE__ */ new Date());
719
- return { jy: a.jy, jm: a.jm };
720
- }
721
- function Ct() {
722
- const t = /* @__PURE__ */ new Date();
723
- return t.setHours(0, 0, 0, 0), t;
724
- }
725
- function Fe(t) {
726
- const {
727
- value: i,
728
- onChange: a,
729
- minDate: e,
730
- maxDate: p,
731
- disabled: l,
732
- placeholder: v,
733
- open: S,
734
- onOpenChange: L,
735
- mode: D = "popover",
736
- popover: U,
737
- formatValue: M = Oe,
738
- parseValue: Q = Ee,
739
- weekdays: A,
740
- monthLabels: x,
741
- renderMonthLabel: N,
742
- prevIcon: W,
743
- nextIcon: C,
744
- className: J,
745
- classes: Y
746
- } = t, st = b.useRef(null), B = b.useRef(null), R = b.useRef(null), tt = b.useRef(null), G = b.useRef(!1), [d, c] = b.useState(!1), [f, w] = b.useState(!1), m = D === "inline" ? !0 : S ?? f, r = b.useCallback(
747
- (s) => {
748
- L?.(s), D !== "inline" && S === void 0 && w(s);
749
- },
750
- [D, L, S]
751
- );
752
- b.useEffect(() => {
753
- c(!0);
754
- }, []);
755
- const [n, o] = b.useState(
756
- () => yt(i)
757
- ), [h, u] = b.useState(() => i ?? Ct()), [g, y] = b.useState(
758
- () => i ? M(i) : ""
759
- ), [_, k] = b.useState("days"), [I, O] = b.useState(() => {
760
- const s = yt(i).jy;
761
- return s - s % 12;
762
- }), [H, K] = b.useState(
763
- () => yt(i).jy
764
- );
765
- b.useEffect(() => {
766
- if (G.current) return;
767
- y(i ? M(i) : ""), o(yt(i)), u(i ?? Ct());
768
- const s = yt(i).jy;
769
- K(s), O(s - s % 12);
770
- }, [i, M]), b.useEffect(() => {
771
- if (D !== "popover" || !m) return;
772
- const s = ($) => {
773
- const j = st.current;
774
- if (!j) return;
775
- const P = B.current;
776
- $.target instanceof Node && !j.contains($.target) && !(P && P.contains($.target)) && r(!1);
777
- };
778
- return document.addEventListener("pointerdown", s), () => document.removeEventListener("pointerdown", s);
779
- }, [D, m, r]), b.useEffect(() => {
780
- m && tt.current?.focus();
781
- }, [m]);
782
- const z = U ?? {}, it = z.portal ?? !0, { style: et } = Le(
783
- D === "popover" && m,
784
- R,
785
- B,
786
- {
787
- gutter: z.gutter,
788
- padding: z.padding,
789
- // If we're not using a portal, `absolute` would require offset-parent math.
790
- // Force `fixed` so we can clamp reliably to the viewport.
791
- strategy: it ? z.strategy : "fixed",
792
- placements: z.placements,
793
- align: z.align ?? "end"
794
- }
795
- ), V = b.useMemo(() => N ? N(n.jy, n.jm) : x && x.length === 12 ? `${x[n.jm - 1] ?? String(n.jm)} ${n.jy}` : `${n.jy} / ${n.jm}`, [x, N, n.jm, n.jy]), nt = b.useMemo(() => A && A.length === 7 ? A : ["1", "2", "3", "4", "5", "6", "7"], [A]), ot = b.useMemo(
796
- () => ke({ jy: n.jy, jm: n.jm }),
797
- [n.jm, n.jy]
798
- ), q = i ?? null, Ot = b.useMemo(() => Ct(), []);
799
- function Wt(s) {
800
- const $ = rt(s);
801
- o({ jy: $.jy, jm: $.jm });
802
- }
803
- function bt() {
804
- if (l) return;
805
- r(!0);
806
- const s = q ?? h ?? Ot;
807
- Wt(s), k("days");
808
- const $ = rt(s).jy;
809
- K($), O($ - $ % 12);
810
- }
811
- function St() {
812
- r(!1), k("days"), R.current?.focus();
813
- }
814
- function Et(s) {
815
- const $ = s.trim();
816
- if (!$) {
817
- a(null);
818
- return;
819
- }
820
- const j = Q($);
821
- if (!j) {
822
- y(q ? M(q) : $);
823
- return;
824
- }
825
- const P = Ae(j, e, p);
826
- if (!P) {
827
- y(q ? M(q) : $);
828
- return;
829
- }
830
- a(P);
831
- }
832
- function Bt(s) {
833
- if (!l) {
834
- if (s.key === "ArrowDown") {
835
- s.preventDefault(), bt();
836
- return;
837
- }
838
- if (s.key === "Escape") {
839
- m && (s.preventDefault(), St());
840
- return;
841
- }
842
- if (s.key === "Enter") {
843
- s.preventDefault(), Et(g);
844
- return;
845
- }
846
- }
847
- }
848
- function Gt(s) {
849
- if (m && !l) {
850
- if (s.key === "Escape") {
851
- s.preventDefault(), St();
852
- return;
853
- }
854
- if (_ === "days") {
855
- if (s.key === "ArrowLeft") {
856
- s.preventDefault(), u(($) => pt($, -1));
857
- return;
858
- }
859
- if (s.key === "ArrowRight") {
860
- s.preventDefault(), u(($) => pt($, 1));
861
- return;
862
- }
863
- if (s.key === "ArrowUp") {
864
- s.preventDefault(), u(($) => pt($, -7));
865
- return;
866
- }
867
- if (s.key === "ArrowDown") {
868
- s.preventDefault(), u(($) => pt($, 7));
869
- return;
870
- }
871
- if (s.key === "PageUp") {
872
- s.preventDefault(), $t(-1);
873
- return;
874
- }
875
- if (s.key === "PageDown") {
876
- s.preventDefault(), $t(1);
877
- return;
878
- }
879
- if (s.key === "Enter") {
880
- if (s.preventDefault(), !Mt(h, e, p)) return;
881
- a(h), y(M(h)), St();
882
- }
883
- }
884
- }
885
- }
886
- b.useEffect(() => {
887
- if (!m) return;
888
- const s = rt(h);
889
- o(
890
- ($) => $.jy === s.jy && $.jm === s.jm ? $ : { jy: s.jy, jm: s.jm }
891
- );
892
- }, [h, m]);
893
- function zt(s) {
894
- l || Mt(s.gregorian, e, p) && (a(s.gregorian), y(M(s.gregorian)), u(s.gregorian), r(!1), R.current?.focus());
895
- }
896
- function Zt(s) {
897
- return l ? !0 : !Mt(s.gregorian, e, p);
898
- }
899
- function $t(s) {
900
- const $ = Z({
901
- jy: n.jy,
902
- jm: n.jm,
903
- jd: 1
904
- }), j = Ft($, s), P = rt(j);
905
- o({ jy: P.jy, jm: P.jm }), u((X) => {
906
- const ft = rt(X);
907
- return ft.jy === n.jy && ft.jm === n.jm ? Ft(X, s) : j;
908
- });
909
- }
910
- function qt() {
911
- $t(-1);
912
- }
913
- function Kt() {
914
- $t(1);
915
- }
916
- function Xt(s) {
917
- const $ = Z({ jy: s, jm: 1, jd: 1 }), j = Z({ jy: s + 1, jm: 1, jd: 1 });
918
- return { start: $, endExclusive: j };
919
- }
920
- function Qt(s, $) {
921
- const j = Z({ jy: s, jm: $, jd: 1 }), P = $ === 12 ? { jy: s + 1, jm: 1 } : { jy: s, jm: $ + 1 }, X = Z({ jy: P.jy, jm: P.jm, jd: 1 });
922
- return { start: j, endExclusive: X };
923
- }
924
- function At(s) {
925
- return !(e && lt(s.endExclusive, e) <= 0 || p && lt(s.start, p) > 0);
926
- }
927
- function te() {
928
- if (_ === "days") {
929
- k("years");
930
- const s = n.jy;
931
- K(s), O(s - s % 12);
932
- } else
933
- k("days");
934
- }
935
- function ee(s) {
936
- K(s), k("months");
937
- }
938
- function ne(s) {
939
- const $ = { jy: H, jm: s };
940
- o($), u(() => {
941
- const j = rt(h).jd;
942
- try {
943
- return Z({
944
- jy: $.jy,
945
- jm: $.jm,
946
- jd: j
947
- });
948
- } catch {
949
- return Z({ jy: $.jy, jm: $.jm, jd: 1 });
950
- }
951
- }), k("days");
952
- }
953
- const xt = /* @__PURE__ */ mt(
954
- "div",
955
- {
956
- ref: tt,
957
- tabIndex: -1,
958
- className: "dvx-pdp__calendar",
959
- onKeyDown: Gt,
960
- children: [
961
- /* @__PURE__ */ mt("div", { className: F("dvx-pdp__header", Y?.header), children: [
962
- /* @__PURE__ */ T(
963
- "button",
964
- {
965
- type: "button",
966
- className: F("dvx-pdp__nav", Y?.navButton),
967
- onClick: _ === "days" ? qt : () => O((s) => s - 12),
968
- "aria-label": "Previous month",
969
- children: W ?? "‹"
970
- }
971
- ),
972
- /* @__PURE__ */ T(
973
- "button",
974
- {
975
- type: "button",
976
- className: F("dvx-pdp__monthLabel", Y?.monthLabel),
977
- onClick: te,
978
- "aria-label": "Choose month and year",
979
- children: _ === "days" ? V : H
980
- }
981
- ),
982
- /* @__PURE__ */ T(
983
- "button",
984
- {
985
- type: "button",
986
- className: F("dvx-pdp__nav", Y?.navButton),
987
- onClick: _ === "days" ? Kt : () => O((s) => s + 12),
988
- "aria-label": "Next month",
989
- children: C ?? "›"
990
- }
991
- )
992
- ] }),
993
- _ === "days" ? /* @__PURE__ */ mt("div", { className: F("dvx-pdp__grid", Y?.grid), children: [
994
- /* @__PURE__ */ T("div", { className: "dvx-pdp__weekdays", "aria-hidden": "true", children: nt.map((s, $) => /* @__PURE__ */ T(
995
- "div",
996
- {
997
- className: F("dvx-pdp__weekday", Y?.weekday),
998
- children: s
999
- },
1000
- $
1001
- )) }),
1002
- /* @__PURE__ */ T("div", { className: "dvx-pdp__days", children: ot.map((s, $) => /* @__PURE__ */ T("div", { className: "dvx-pdp__row", children: s.map((j) => {
1003
- const P = Zt(j), X = q ? Yt(j.gregorian, q) : !1, ft = Yt(j.gregorian, Ot), Nt = Yt(j.gregorian, h);
1004
- return /* @__PURE__ */ T(
1005
- "button",
1006
- {
1007
- type: "button",
1008
- className: F(
1009
- "dvx-pdp__day",
1010
- Y?.day,
1011
- !j.inCurrentMonth && F("dvx-pdp__day--outside", Y?.dayOutside),
1012
- P && F("dvx-pdp__day--disabled", Y?.dayDisabled),
1013
- X && F("dvx-pdp__day--selected", Y?.daySelected),
1014
- ft && F("dvx-pdp__day--today", Y?.dayToday),
1015
- Nt && "dvx-pdp__day--focused"
1016
- ),
1017
- disabled: P,
1018
- onClick: () => zt(j),
1019
- onMouseEnter: () => {
1020
- j.inCurrentMonth && u(j.gregorian);
1021
- },
1022
- "aria-pressed": X,
1023
- children: j.jalali.jd
1024
- },
1025
- `${j.jalali.jy}-${j.jalali.jm}-${j.jalali.jd}`
1026
- );
1027
- }) }, $)) })
1028
- ] }) : _ === "years" ? /* @__PURE__ */ T("div", { className: "dvx-pdp__panel", children: /* @__PURE__ */ T("div", { className: "dvx-pdp__panelGrid", children: Array.from({ length: 12 }).map((s, $) => {
1029
- const j = I + $, P = At(
1030
- Xt(j)
1031
- ), X = j === n.jy;
1032
- return /* @__PURE__ */ T(
1033
- "button",
1034
- {
1035
- type: "button",
1036
- className: F(
1037
- "dvx-pdp__cell",
1038
- X && "dvx-pdp__cell--active"
1039
- ),
1040
- disabled: !P,
1041
- onClick: () => ee(j),
1042
- children: j
1043
- },
1044
- j
1045
- );
1046
- }) }) }) : /* @__PURE__ */ T("div", { className: "dvx-pdp__panel", children: /* @__PURE__ */ T("div", { className: "dvx-pdp__panelGrid", children: Array.from({ length: 12 }).map((s, $) => {
1047
- const j = $ + 1, P = At(
1048
- Qt(H, j)
1049
- ), X = H === n.jy && j === n.jm, ft = x && x.length === 12 ? x[j - 1] ?? String(j) : String(j);
1050
- return /* @__PURE__ */ T(
1051
- "button",
1052
- {
1053
- type: "button",
1054
- className: F(
1055
- "dvx-pdp__cell",
1056
- X && "dvx-pdp__cell--active"
1057
- ),
1058
- disabled: !P,
1059
- onClick: () => ne(j),
1060
- children: ft
1061
- },
1062
- j
1063
- );
1064
- }) }) })
1065
- ]
1066
- }
1067
- );
1068
- return /* @__PURE__ */ mt(
1069
- "div",
1070
- {
1071
- ref: st,
1072
- className: F(
1073
- "dvx-pdp",
1074
- D === "inline" && "dvx-pdp--inline",
1075
- J,
1076
- Y?.root
1077
- ),
1078
- dir: "rtl",
1079
- children: [
1080
- D === "inline" ? null : /* @__PURE__ */ mt("div", { className: "dvx-pdp__control", children: [
1081
- /* @__PURE__ */ T(
1082
- "input",
1083
- {
1084
- ref: R,
1085
- className: F("dvx-pdp__input", Y?.input),
1086
- disabled: l,
1087
- placeholder: v,
1088
- inputMode: "numeric",
1089
- autoComplete: "off",
1090
- value: g,
1091
- onChange: (s) => y(s.target.value),
1092
- onClick: () => {
1093
- m || bt();
1094
- },
1095
- onFocus: () => {
1096
- G.current = !0;
1097
- },
1098
- onBlur: () => {
1099
- G.current = !1, Et(g);
1100
- },
1101
- onKeyDown: Bt,
1102
- "aria-haspopup": "dialog",
1103
- "aria-expanded": m
1104
- }
1105
- ),
1106
- /* @__PURE__ */ T(
1107
- "button",
1108
- {
1109
- type: "button",
1110
- className: F("dvx-pdp__button", Y?.button),
1111
- onClick: () => m ? r(!1) : bt(),
1112
- disabled: l,
1113
- "aria-label": "Open calendar",
1114
- children: /* @__PURE__ */ T("svg", { viewBox: "0 0 24 24", width: "18", height: "18", "aria-hidden": "true", children: /* @__PURE__ */ T(
1115
- "path",
1116
- {
1117
- fill: "currentColor",
1118
- d: "M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1.5A2.5 2.5 0 0 1 22 6.5v13A2.5 2.5 0 0 1 19.5 22h-15A2.5 2.5 0 0 1 2 19.5v-13A2.5 2.5 0 0 1 4.5 4H6V3a1 1 0 0 1 1-1Zm0 6H4v11.5c0 .276.224.5.5.5h15c.276 0 .5-.224.5-.5V8H7Zm-2.5-2c-.276 0-.5.224-.5.5V6h16v.5c0-.276-.224-.5-.5-.5H4.5Z"
1119
- }
1120
- ) })
1121
- }
1122
- )
1123
- ] }),
1124
- D === "inline" ? xt : m ? it && d ? re(
1125
- /* @__PURE__ */ T(
1126
- "div",
1127
- {
1128
- ref: B,
1129
- className: F(
1130
- "dvx-pdp__popover",
1131
- "dvx-pdp__popover--portal",
1132
- Y?.popover
1133
- ),
1134
- dir: "rtl",
1135
- style: { ...et, right: "auto", bottom: "auto" },
1136
- role: "dialog",
1137
- "aria-modal": "false",
1138
- children: xt
1139
- }
1140
- ),
1141
- document.body
1142
- ) : /* @__PURE__ */ T(
1143
- "div",
1144
- {
1145
- ref: B,
1146
- className: F("dvx-pdp__popover", Y?.popover),
1147
- style: { ...et, right: "auto", bottom: "auto" },
1148
- role: "dialog",
1149
- "aria-modal": "false",
1150
- children: xt
1151
- }
1152
- ) : null
1153
- ]
1154
- }
1155
- );
1156
- }
1157
- export {
1158
- Fe as P,
1159
- De as a,
1160
- ke as b,
1161
- pt as c,
1162
- Mt as d,
1163
- Ft as e,
1164
- Z as f,
1165
- lt as g,
1166
- Me as h,
1167
- Yt as i,
1168
- Te as j,
1169
- Pe as k,
1170
- xe as l,
1171
- be as p,
1172
- rt as t,
1173
- Le as u
1174
- };