@banzamel/mineralui 0.1.0 → 0.2.1

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/index.js CHANGED
@@ -1,6 +1,7 @@
1
- import { jsx as s, jsxs as d } from "react/jsx-runtime";
2
- import { useRef as P, useEffect as ar, useContext as cr, createContext as ir, forwardRef as lr, useState as q, useCallback as g } from "react";
3
- const B = ir({}), dr = {
1
+ import { useRef as pt, useEffect as gt, useContext as Ht, createContext as Gt, useState as P, useCallback as b, forwardRef as bt, useMemo as mt } from "react";
2
+ import { jsx as o, jsxs as D, Fragment as ce } from "react/jsx-runtime";
3
+ import { createPortal as le } from "react-dom";
4
+ const Qt = Gt({}), ie = {
4
5
  primary: "--mineral-primary",
5
6
  primaryDark: "--mineral-primary-dark",
6
7
  primaryLight: "--mineral-primary-light",
@@ -22,202 +23,961 @@ const B = ir({}), dr = {
22
23
  radiusMd: "--mineral-radius-md",
23
24
  radiusLg: "--mineral-radius-lg"
24
25
  };
25
- function Gr({ theme: o, children: y }) {
26
- const n = P(null);
27
- return ar(() => {
28
- if (!n.current) return;
29
- const a = n.current;
30
- for (const [I, e] of Object.entries(o)) {
31
- const p = dr[I];
32
- p && e && a.style.setProperty(p, e);
33
- }
34
- }, [o]), /* @__PURE__ */ s(B.Provider, { value: o, children: /* @__PURE__ */ s("div", { ref: n, children: y }) });
35
- }
36
- function Jr() {
37
- return cr(B);
38
- }
39
- function _(...o) {
40
- return o.filter(Boolean).join(" ");
41
- }
42
- const _r = "_wrapper_1tprv_2", pr = "_fullWidth_1tprv_10", ur = "_label_1tprv_15", mr = "_focused_1tprv_22", fr = "_labelError_1tprv_26", vr = "_labelSuccess_1tprv_30", hr = "_required_1tprv_34", br = "_inputContainer_1tprv_40", gr = "_outlined_1tprv_50", yr = "_disabled_1tprv_56", Ir = "_filled_1tprv_66", Nr = "_underlined_1tprv_82", Sr = "_inputError_1tprv_98", wr = "_inputSuccess_1tprv_106", xr = "_colorWarning_1tprv_115", Cr = "_colorInfo_1tprv_120", Er = "_sm_1tprv_126", kr = "_md_1tprv_132", Wr = "_lg_1tprv_138", Mr = "_rounded_1tprv_145", Rr = "_input_1tprv_40", Or = "_startIcon_1tprv_178", jr = "_endIcon_1tprv_186", Tr = "_clearBtn_1tprv_195", $r = "_spinner_1tprv_214", qr = "_spin_1tprv_214", Pr = "_helperText_1tprv_232", Br = "_errorTextMsg_1tprv_238", Hr = "_charCount_1tprv_245", Dr = "_charCountOver_1tprv_252", Fr = "_bottomRow_1tprv_257", r = {
43
- wrapper: _r,
44
- fullWidth: pr,
45
- label: ur,
46
- focused: mr,
47
- labelError: fr,
48
- labelSuccess: vr,
49
- required: hr,
50
- inputContainer: br,
51
- outlined: gr,
52
- disabled: yr,
53
- filled: Ir,
54
- underlined: Nr,
55
- inputError: Sr,
56
- inputSuccess: wr,
57
- colorWarning: xr,
58
- colorInfo: Cr,
59
- sm: Er,
60
- md: kr,
61
- lg: Wr,
62
- rounded: Mr,
63
- input: Rr,
64
- startIcon: Or,
65
- endIcon: jr,
66
- clearBtn: Tr,
67
- spinner: $r,
68
- spin: qr,
69
- helperText: Pr,
70
- errorTextMsg: Br,
71
- charCount: Hr,
72
- charCountOver: Dr,
73
- bottomRow: Fr
74
- }, Kr = lr(function({
75
- type: y = "text",
76
- value: n,
77
- defaultValue: a,
78
- name: I,
79
- id: e,
80
- placeholder: p,
81
- disabled: N = !1,
82
- readOnly: H = !1,
83
- required: x = !1,
84
- autoFocus: D = !1,
85
- autoComplete: F,
86
- variant: z = "outlined",
87
- size: A = "md",
88
- color: C,
89
- fullWidth: G = !1,
90
- rounded: J = !1,
91
- label: E,
92
- helperText: u,
93
- errorText: c,
94
- startIcon: k,
95
- endIcon: W,
96
- clearable: K = !1,
97
- error: L = !1,
98
- success: M = !1,
99
- maxLength: m,
100
- showCharCount: R = !1,
101
- onChange: f,
26
+ function Hc({ theme: r, children: t }) {
27
+ const e = pt(null);
28
+ return gt(() => {
29
+ if (!e.current) return;
30
+ const n = e.current;
31
+ for (const [s, c] of Object.entries(r)) {
32
+ const l = ie[s];
33
+ l && c && n.style.setProperty(l, c);
34
+ }
35
+ }, [r]), /* @__PURE__ */ o(Qt.Provider, { value: r, children: /* @__PURE__ */ o("div", { ref: e, children: t }) });
36
+ }
37
+ function Gc() {
38
+ return Ht(Qt);
39
+ }
40
+ function B(...r) {
41
+ return r.filter(Boolean).join(" ");
42
+ }
43
+ const at = { valid: !0 }, et = (r) => ({ valid: !1, error: r });
44
+ function ae(r) {
45
+ return r.trim().length > 0 ? at : et("This field is required");
46
+ }
47
+ function Oc(r) {
48
+ return (t) => t.length >= r ? at : et(`Minimum ${r} characters`);
49
+ }
50
+ function qc(r) {
51
+ return (t) => t.length <= r ? at : et(`Maximum ${r} characters`);
52
+ }
53
+ function Uc(r, t) {
54
+ return (e) => r.test(e) ? at : et(t ?? "Invalid format");
55
+ }
56
+ function Yc(r, t) {
57
+ return (e) => {
58
+ const n = parseFloat(e);
59
+ return isNaN(n) ? et("Must be a number") : r !== void 0 && n < r ? et(`Minimum value is ${r}`) : t !== void 0 && n > t ? et(`Maximum value is ${t}`) : at;
60
+ };
61
+ }
62
+ const de = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;
63
+ function _e(r) {
64
+ return r ? de.test(r) ? at : et("Invalid email address") : at;
65
+ }
66
+ const ue = {
67
+ PL: 9,
68
+ DE: 10,
69
+ US: 10,
70
+ GB: 10,
71
+ FR: 9,
72
+ CZ: 9,
73
+ SK: 9
74
+ };
75
+ function pe(r, t) {
76
+ if (!r) return at;
77
+ const e = r.replace(/\D/g, "");
78
+ if (e.length < 7) return et("Phone number too short");
79
+ if (e.length > 15) return et("Phone number too long");
80
+ if (t) {
81
+ const n = ue[t.toUpperCase()];
82
+ if (n && e.length !== n)
83
+ return et(`Phone number should have ${n} digits`);
84
+ }
85
+ return at;
86
+ }
87
+ const fe = {
88
+ AL: 28,
89
+ AD: 24,
90
+ AT: 20,
91
+ AZ: 28,
92
+ BH: 22,
93
+ BY: 28,
94
+ BE: 16,
95
+ BA: 20,
96
+ BR: 29,
97
+ BG: 22,
98
+ CR: 22,
99
+ HR: 21,
100
+ CY: 28,
101
+ CZ: 24,
102
+ DK: 18,
103
+ DO: 28,
104
+ EG: 29,
105
+ SV: 28,
106
+ EE: 20,
107
+ FO: 18,
108
+ FI: 18,
109
+ FR: 27,
110
+ GE: 22,
111
+ DE: 22,
112
+ GI: 23,
113
+ GR: 27,
114
+ GL: 18,
115
+ GT: 28,
116
+ HU: 28,
117
+ IS: 26,
118
+ IQ: 23,
119
+ IE: 22,
120
+ IL: 23,
121
+ IT: 27,
122
+ JO: 30,
123
+ KZ: 20,
124
+ XK: 20,
125
+ KW: 30,
126
+ LV: 21,
127
+ LB: 28,
128
+ LI: 21,
129
+ LT: 20,
130
+ LU: 20,
131
+ MT: 31,
132
+ MR: 27,
133
+ MU: 30,
134
+ MD: 24,
135
+ MC: 27,
136
+ ME: 22,
137
+ NL: 18,
138
+ MK: 19,
139
+ NO: 15,
140
+ PK: 24,
141
+ PS: 29,
142
+ PL: 28,
143
+ PT: 25,
144
+ QA: 29,
145
+ RO: 24,
146
+ LC: 32,
147
+ SM: 27,
148
+ SA: 24,
149
+ RS: 22,
150
+ SC: 31,
151
+ SK: 24,
152
+ SI: 19,
153
+ ES: 24,
154
+ SE: 24,
155
+ CH: 21,
156
+ TL: 23,
157
+ TN: 24,
158
+ TR: 26,
159
+ UA: 29,
160
+ AE: 23,
161
+ GB: 22,
162
+ VA: 22,
163
+ VG: 24
164
+ };
165
+ function he(r) {
166
+ let t = 0;
167
+ for (let e = 0; e < r.length; e++)
168
+ t = (t * 10 + parseInt(r[e], 10)) % 97;
169
+ return t;
170
+ }
171
+ function me(r) {
172
+ if (!r) return at;
173
+ const t = r.replace(/\s/g, "").toUpperCase();
174
+ if (t.length < 2) return et("IBAN too short");
175
+ const e = t.slice(0, 2), n = fe[e];
176
+ if (!n) return et("Unknown IBAN country code");
177
+ if (t.length !== n)
178
+ return et(`IBAN for ${e} should have ${n} characters`);
179
+ const c = (t.slice(4) + t.slice(0, 4)).replace(/[A-Z]/g, (l) => String(l.charCodeAt(0) - 55));
180
+ return he(c) === 1 ? at : et("Invalid IBAN checksum");
181
+ }
182
+ const be = [6, 5, 7, 2, 3, 4, 5, 6, 7];
183
+ function ve(r) {
184
+ if (!r) return at;
185
+ const t = r.replace(/\D/g, "");
186
+ if (t.length !== 10) return et("NIP must have 10 digits");
187
+ let e = 0;
188
+ for (let s = 0; s < 9; s++)
189
+ e += parseInt(t[s], 10) * be[s];
190
+ const n = e % 11;
191
+ return n === 10 ? et("Invalid NIP") : n === parseInt(t[9], 10) ? at : et("Invalid NIP checksum");
192
+ }
193
+ const ge = [1, 3, 7, 9, 1, 3, 7, 9, 1, 3];
194
+ function ye(r) {
195
+ if (!r) return at;
196
+ const t = r.replace(/\D/g, "");
197
+ if (t.length !== 11) return et("PESEL must have 11 digits");
198
+ let e = 0;
199
+ for (let s = 0; s < 10; s++)
200
+ e += parseInt(t[s], 10) * ge[s];
201
+ return (10 - e % 10) % 10 === parseInt(t[10], 10) ? at : et("Invalid PESEL checksum");
202
+ }
203
+ const xe = [8, 9, 2, 3, 4, 5, 6, 7], we = [2, 4, 8, 5, 0, 9, 7, 3, 6, 1, 2, 4, 8];
204
+ function Ne(r) {
205
+ if (!r) return at;
206
+ const t = r.replace(/\D/g, "");
207
+ if (t.length !== 9 && t.length !== 14)
208
+ return et("REGON must have 9 or 14 digits");
209
+ const e = t.length === 9 ? xe : we;
210
+ let n = 0;
211
+ for (let l = 0; l < e.length; l++)
212
+ n += parseInt(t[l], 10) * e[l];
213
+ const s = n % 11 === 10 ? 0 : n % 11, c = parseInt(t[t.length - 1], 10);
214
+ return s === c ? at : et("Invalid REGON checksum");
215
+ }
216
+ function Zc(...r) {
217
+ return (t) => {
218
+ for (const e of r) {
219
+ const n = e(t);
220
+ if (!n.valid) return n;
221
+ }
222
+ return at;
223
+ };
224
+ }
225
+ function zt(r) {
226
+ return r.replace(/\D/g, "");
227
+ }
228
+ function jc(r) {
229
+ return r.replace(/[^a-zA-Z0-9]/g, "");
230
+ }
231
+ function $e(r) {
232
+ return r.replace(/\b\w/g, (t) => t.toUpperCase());
233
+ }
234
+ function Ie(r) {
235
+ return r.replace(/\s/g, "").toUpperCase().replace(/(.{4})/g, "$1 ").trim();
236
+ }
237
+ function Ee(r) {
238
+ return r.replace(/\s/g, "").toUpperCase();
239
+ }
240
+ const qt = {
241
+ PL: [3, 3, 3],
242
+ DE: [3, 4, 3],
243
+ US: [3, 3, 4],
244
+ GB: [4, 3, 3],
245
+ FR: [2, 2, 2, 2, 2],
246
+ DEFAULT: [3, 3, 3]
247
+ };
248
+ function ke(r, t = {}) {
249
+ var l;
250
+ const e = zt(r);
251
+ if (!e) return "";
252
+ const n = t.groupPattern ?? qt[((l = t.countryCode) == null ? void 0 : l.toUpperCase()) ?? ""] ?? qt.DEFAULT, s = [];
253
+ let c = 0;
254
+ for (const i of n) {
255
+ if (c >= e.length) break;
256
+ s.push(e.slice(c, c + i)), c += i;
257
+ }
258
+ return c < e.length && s.push(e.slice(c)), s.join(" ");
259
+ }
260
+ function Me(r) {
261
+ const t = zt(r);
262
+ return t.length <= 3 ? t : t.length <= 6 ? `${t.slice(0, 3)}-${t.slice(3)}` : t.length <= 8 ? `${t.slice(0, 3)}-${t.slice(3, 6)}-${t.slice(6)}` : `${t.slice(0, 3)}-${t.slice(3, 6)}-${t.slice(6, 8)}-${t.slice(8, 10)}`;
263
+ }
264
+ function Ut(r, t = {}) {
265
+ const {
266
+ decimalSeparator: e = ",",
267
+ thousandSeparator: n = " ",
268
+ precision: s = 2
269
+ } = t;
270
+ let c = r.replace(/[^\d.,-]/g, "");
271
+ c = c.replace(",", ".");
272
+ const l = c.split(".");
273
+ let i = l[0] || "0", h = l.length > 1 ? l[1] : "";
274
+ const _ = i.startsWith("-");
275
+ _ && (i = i.slice(1)), i = i.replace(/^0+/, "") || "0", n && (i = i.replace(/\B(?=(\d{3})+(?!\d))/g, n)), h = h.slice(0, s);
276
+ const p = h ? `${i}${e}${h}` : i;
277
+ return _ ? `-${p}` : p;
278
+ }
279
+ function Yt(r, t = " ", e = ",") {
280
+ let n = r;
281
+ t && (n = n.split(t).join("")), n = n.replace(e, "."), n = n.replace(/[^\d.-]/g, "");
282
+ const s = parseFloat(n);
283
+ return isNaN(s) ? null : s;
284
+ }
285
+ function Kc(r, t, e) {
286
+ let n = 0;
287
+ for (let c = 0; c < e && c < r.length; c++)
288
+ r[c] !== " " && r[c] !== "-" && n++;
289
+ let s = 0;
290
+ for (let c = 0; c < t.length; c++)
291
+ if (t[c] !== " " && t[c] !== "-" && s++, s === n)
292
+ return c + 1;
293
+ return t.length;
294
+ }
295
+ function Wt(r, t) {
296
+ return new Date(r, t + 1, 0).getDate();
297
+ }
298
+ function ze(r, t) {
299
+ return new Date(r, t, 1).getDay();
300
+ }
301
+ function Ft(r, t) {
302
+ return r.getFullYear() === t.getFullYear() && r.getMonth() === t.getMonth() && r.getDate() === t.getDate();
303
+ }
304
+ function Te(r, t, e) {
305
+ return !(t && r < St(t) || e && r > St(e));
306
+ }
307
+ function St(r) {
308
+ return new Date(r.getFullYear(), r.getMonth(), r.getDate());
309
+ }
310
+ function Zt(r, t) {
311
+ const e = new Date(r);
312
+ return e.setMonth(e.getMonth() + t), e;
313
+ }
314
+ function Jc(r, t) {
315
+ const e = new Date(r);
316
+ return e.setFullYear(e.getFullYear() + t), e;
317
+ }
318
+ const Lt = (r) => r.toString().padStart(2, "0");
319
+ function Le(r, t = "dd.MM.yyyy") {
320
+ const e = Lt(r.getDate()), n = Lt(r.getMonth() + 1), s = r.getFullYear().toString();
321
+ return t.replace("dd", e).replace("MM", n).replace("yyyy", s);
322
+ }
323
+ function Se(r, t = "dd.MM.yyyy") {
324
+ const e = t.indexOf("dd"), n = t.indexOf("MM"), s = t.indexOf("yyyy");
325
+ if (e === -1 || n === -1 || s === -1) return null;
326
+ const c = parseInt(r.slice(e, e + 2), 10), l = parseInt(r.slice(n, n + 2), 10), i = parseInt(r.slice(s, s + 4), 10);
327
+ return isNaN(c) || isNaN(l) || isNaN(i) || l < 1 || l > 12 || c < 1 || c > Wt(i, l - 1) ? null : new Date(i, l - 1, c);
328
+ }
329
+ const De = ["Pn", "Wt", "Śr", "Cz", "Pt", "So", "Nd"], Ae = ["Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"], Fe = [
330
+ "Styczeń",
331
+ "Luty",
332
+ "Marzec",
333
+ "Kwiecień",
334
+ "Maj",
335
+ "Czerwiec",
336
+ "Lipiec",
337
+ "Sierpień",
338
+ "Wrzesień",
339
+ "Październik",
340
+ "Listopad",
341
+ "Grudzień"
342
+ ], Re = [
343
+ "January",
344
+ "February",
345
+ "March",
346
+ "April",
347
+ "May",
348
+ "June",
349
+ "July",
350
+ "August",
351
+ "September",
352
+ "October",
353
+ "November",
354
+ "December"
355
+ ];
356
+ function Pe(r = "pl") {
357
+ return r === "pl" ? De : Ae;
358
+ }
359
+ function Be(r = "pl") {
360
+ return r === "pl" ? Fe : Re;
361
+ }
362
+ function jt(r) {
363
+ const t = r.split(":");
364
+ if (t.length < 2) return null;
365
+ const e = parseInt(t[0], 10), n = parseInt(t[1], 10), s = t.length > 2 ? parseInt(t[2], 10) : 0;
366
+ return isNaN(e) || isNaN(n) || isNaN(s) || e < 0 || e > 23 || n < 0 || n > 59 || s < 0 || s > 59 ? null : { hours: e, minutes: n, seconds: s };
367
+ }
368
+ function Kt(r, t, e, n = !1) {
369
+ const s = `${Lt(r)}:${Lt(t)}`;
370
+ return n ? `${s}:${Lt(e ?? 0)}` : s;
371
+ }
372
+ function Xc(r, t) {
373
+ const [e, n] = P(r);
374
+ return gt(() => {
375
+ const s = setTimeout(() => n(r), t);
376
+ return () => clearTimeout(s);
377
+ }, [r, t]), e;
378
+ }
379
+ function Vt(r, t) {
380
+ const e = pt(r);
381
+ e.current = r;
382
+ const n = pt();
383
+ return b(
384
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
385
+ ((...s) => {
386
+ n.current && clearTimeout(n.current), n.current = setTimeout(() => e.current(...s), t);
387
+ }),
388
+ [t]
389
+ );
390
+ }
391
+ function Qc(r, t) {
392
+ gt(() => {
393
+ const e = (n) => {
394
+ !r.current || r.current.contains(n.target) || t();
395
+ };
396
+ return document.addEventListener("mousedown", e), document.addEventListener("touchstart", e), () => {
397
+ document.removeEventListener("mousedown", e), document.removeEventListener("touchstart", e);
398
+ };
399
+ }, [r, t]);
400
+ }
401
+ function Ct({
402
+ itemCount: r,
403
+ onSelect: t,
404
+ onClose: e,
405
+ isOpen: n,
406
+ loop: s = !0
407
+ }) {
408
+ const [c, l] = P(-1), i = b(() => l(-1), []), h = b(
409
+ (_) => {
410
+ if (!(!n || r === 0))
411
+ switch (_.key) {
412
+ case "ArrowDown": {
413
+ _.preventDefault(), l((p) => p >= r - 1 ? s ? 0 : p : p + 1);
414
+ break;
415
+ }
416
+ case "ArrowUp": {
417
+ _.preventDefault(), l((p) => p <= 0 ? s ? r - 1 : 0 : p - 1);
418
+ break;
419
+ }
420
+ case "Enter": {
421
+ _.preventDefault(), c >= 0 && c < r && t(c);
422
+ break;
423
+ }
424
+ case "Escape": {
425
+ _.preventDefault(), e();
426
+ break;
427
+ }
428
+ case "Home": {
429
+ _.preventDefault(), l(0);
430
+ break;
431
+ }
432
+ case "End": {
433
+ _.preventDefault(), l(r - 1);
434
+ break;
435
+ }
436
+ }
437
+ },
438
+ [n, r, c, t, e, s]
439
+ );
440
+ return { activeIndex: c, setActiveIndex: l, resetIndex: i, onKeyDown: h };
441
+ }
442
+ function We({ children: r, container: t }) {
443
+ const e = t ?? (typeof document < "u" ? document.body : null);
444
+ return e ? le(r, e) : null;
445
+ }
446
+ const He = "_popover_6bjrn_2", Ge = "_normal_6bjrn_17", Oe = "_flipped_6bjrn_22", Rt = {
447
+ popover: He,
448
+ normal: Ge,
449
+ flipped: Oe
450
+ };
451
+ function Dt({
452
+ open: r,
453
+ anchorRef: t,
454
+ onClose: e,
455
+ placement: n = "bottom-start",
456
+ matchWidth: s = !1,
457
+ offset: c = 4,
458
+ children: l,
459
+ className: i,
460
+ style: h
461
+ }) {
462
+ const _ = pt(null), [p, g] = P({
463
+ top: 0,
464
+ left: 0
465
+ }), [$, E] = P(!1), w = b(() => {
466
+ if (!t.current || !_.current) return;
467
+ const f = t.current.getBoundingClientRect(), x = _.current.getBoundingClientRect(), N = {
468
+ width: window.innerWidth,
469
+ height: window.innerHeight
470
+ }, k = n.startsWith("top"), y = n.endsWith("end"), m = N.height - f.bottom - c, T = f.top - c, I = k ? T < x.height && m > T : m < x.height && T > m;
471
+ E(I);
472
+ const L = k ? !I : I;
473
+ let O;
474
+ L ? O = f.top - x.height - c + window.scrollY : O = f.bottom + c + window.scrollY;
475
+ let H;
476
+ y ? H = f.right - x.width + window.scrollX : H = f.left + window.scrollX, H = Math.max(8, Math.min(H, N.width - x.width - 8)), O = Math.max(8 + window.scrollY, O), g({
477
+ top: O,
478
+ left: H,
479
+ width: s ? f.width : void 0
480
+ });
481
+ }, [t, n, c, s]);
482
+ return gt(() => {
483
+ if (r)
484
+ return requestAnimationFrame(w), window.addEventListener("scroll", w, { passive: !0 }), window.addEventListener("resize", w, { passive: !0 }), () => {
485
+ window.removeEventListener("scroll", w), window.removeEventListener("resize", w);
486
+ };
487
+ }, [r, w]), gt(() => {
488
+ if (!r) return;
489
+ const f = (x) => {
490
+ x.key === "Escape" && e();
491
+ };
492
+ return document.addEventListener("keydown", f), () => document.removeEventListener("keydown", f);
493
+ }, [r, e]), gt(() => {
494
+ if (!r) return;
495
+ const f = (x) => {
496
+ _.current && !_.current.contains(x.target) && t.current && !t.current.contains(x.target) && e();
497
+ };
498
+ return document.addEventListener("mousedown", f), () => document.removeEventListener("mousedown", f);
499
+ }, [r, e, t]), r ? /* @__PURE__ */ o(We, { children: /* @__PURE__ */ o(
500
+ "div",
501
+ {
502
+ ref: _,
503
+ className: B(
504
+ Rt.popover,
505
+ $ ? Rt.flipped : Rt.normal,
506
+ i
507
+ ),
508
+ style: {
509
+ position: "absolute",
510
+ top: p.top,
511
+ left: p.left,
512
+ width: p.width,
513
+ ...h
514
+ },
515
+ role: "listbox",
516
+ children: l
517
+ }
518
+ ) }) : null;
519
+ }
520
+ const qe = "_wrapper_veyo2_1", Ue = "_label_veyo2_8", Ye = "_labelLeft_veyo2_16", Ze = "_disabled_veyo2_20", je = "_sm_veyo2_26", Ke = "_box_veyo2_26", Je = "_md_veyo2_32", Xe = "_lg_veyo2_38", Qe = "_labelText_veyo2_44", Ve = "_boxError_veyo2_66", Ce = "_input_veyo2_71", tr = "_checkmark_veyo2_81", er = "_checkPath_veyo2_88", rr = "_indeterminateMark_veyo2_93", nr = "_errorText_veyo2_181", ft = {
521
+ wrapper: qe,
522
+ label: Ue,
523
+ labelLeft: Ye,
524
+ disabled: Ze,
525
+ sm: je,
526
+ box: Ke,
527
+ md: Je,
528
+ lg: Xe,
529
+ labelText: Qe,
530
+ boxError: Ve,
531
+ input: Ce,
532
+ checkmark: tr,
533
+ checkPath: er,
534
+ indeterminateMark: rr,
535
+ "color-primary": "_color-primary_veyo2_122",
536
+ "color-success": "_color-success_veyo2_142",
537
+ "color-error": "_color-error_veyo2_148",
538
+ "color-warning": "_color-warning_veyo2_154",
539
+ "color-info": "_color-info_veyo2_160",
540
+ errorText: nr
541
+ }, Vc = bt(function({
542
+ checked: t,
543
+ defaultChecked: e,
544
+ indeterminate: n = !1,
545
+ name: s,
546
+ id: c,
547
+ value: l,
548
+ disabled: i = !1,
549
+ size: h = "md",
550
+ color: _ = "primary",
551
+ label: p,
552
+ labelPosition: g = "right",
553
+ error: $ = !1,
554
+ errorText: E,
555
+ onChange: w,
556
+ className: f,
557
+ style: x
558
+ }, N) {
559
+ const k = pt(null), y = N ?? k;
560
+ gt(() => {
561
+ y.current && (y.current.indeterminate = n);
562
+ }, [n, y]);
563
+ const m = $ || !!E;
564
+ return /* @__PURE__ */ D("div", { className: B(ft.wrapper, f), style: x, children: [
565
+ /* @__PURE__ */ D(
566
+ "label",
567
+ {
568
+ className: B(
569
+ ft.label,
570
+ ft[h],
571
+ g === "left" && ft.labelLeft,
572
+ i && ft.disabled
573
+ ),
574
+ children: [
575
+ /* @__PURE__ */ D("span", { className: B(
576
+ ft.box,
577
+ ft[`color-${_}`],
578
+ m && ft.boxError
579
+ ), children: [
580
+ /* @__PURE__ */ o(
581
+ "input",
582
+ {
583
+ ref: y,
584
+ type: "checkbox",
585
+ checked: t,
586
+ defaultChecked: e,
587
+ name: s,
588
+ id: c,
589
+ value: l,
590
+ disabled: i,
591
+ onChange: w,
592
+ className: ft.input,
593
+ "aria-invalid": m || void 0
594
+ }
595
+ ),
596
+ /* @__PURE__ */ o("svg", { className: ft.checkmark, viewBox: "0 0 16 16", fill: "none", children: /* @__PURE__ */ o(
597
+ "path",
598
+ {
599
+ className: ft.checkPath,
600
+ d: "M3.5 8L6.5 11L12.5 5",
601
+ strokeWidth: "2",
602
+ strokeLinecap: "round",
603
+ strokeLinejoin: "round"
604
+ }
605
+ ) }),
606
+ /* @__PURE__ */ o("span", { className: ft.indeterminateMark })
607
+ ] }),
608
+ p && /* @__PURE__ */ o("span", { className: ft.labelText, children: p })
609
+ ]
610
+ }
611
+ ),
612
+ E && /* @__PURE__ */ o("span", { className: ft.errorText, role: "alert", children: E })
613
+ ] });
614
+ }), te = Gt(null);
615
+ function sr() {
616
+ return Ht(te);
617
+ }
618
+ const or = "_label_1h6wb_2", cr = "_labelLeft_1h6wb_11", lr = "_disabled_1h6wb_15", ir = "_sm_1h6wb_21", ar = "_circle_1h6wb_21", dr = "_md_1h6wb_22", _r = "_lg_1h6wb_23", ur = "_labelText_1h6wb_25", pr = "_dot_1h6wb_29", fr = "_input_1h6wb_53", hr = "_group_1h6wb_94", mr = "_vertical_1h6wb_101", br = "_horizontal_1h6wb_106", vr = "_groupLabel_1h6wb_111", gr = "_groupLabelError_1h6wb_118", yr = "_errorText_1h6wb_122", ht = {
619
+ label: or,
620
+ labelLeft: cr,
621
+ disabled: lr,
622
+ sm: ir,
623
+ circle: ar,
624
+ md: dr,
625
+ lg: _r,
626
+ labelText: ur,
627
+ dot: pr,
628
+ input: fr,
629
+ "color-primary": "_color-primary_1h6wb_77",
630
+ "color-success": "_color-success_1h6wb_78",
631
+ "color-error": "_color-error_1h6wb_79",
632
+ "color-warning": "_color-warning_1h6wb_80",
633
+ "color-info": "_color-info_1h6wb_81",
634
+ group: hr,
635
+ vertical: mr,
636
+ horizontal: br,
637
+ groupLabel: vr,
638
+ groupLabelError: gr,
639
+ errorText: yr
640
+ }, Cc = bt(function({
641
+ checked: t,
642
+ defaultChecked: e,
643
+ name: n,
644
+ id: s,
645
+ value: c,
646
+ disabled: l = !1,
647
+ size: i = "md",
648
+ color: h = "primary",
649
+ label: _,
650
+ labelPosition: p = "right",
651
+ onChange: g,
652
+ className: $,
653
+ style: E
654
+ }, w) {
655
+ const f = sr(), x = (f == null ? void 0 : f.name) ?? n, N = (f == null ? void 0 : f.disabled) ?? l, k = (f == null ? void 0 : f.size) ?? i, y = (f == null ? void 0 : f.color) ?? h, m = f ? f.value === c : t, T = b(
656
+ (I) => {
657
+ g == null || g(I), f != null && f.onChange && c && f.onChange(c);
658
+ },
659
+ [g, f, c]
660
+ );
661
+ return /* @__PURE__ */ D(
662
+ "label",
663
+ {
664
+ className: B(
665
+ ht.label,
666
+ ht[k],
667
+ p === "left" && ht.labelLeft,
668
+ N && ht.disabled,
669
+ $
670
+ ),
671
+ style: E,
672
+ children: [
673
+ /* @__PURE__ */ D("span", { className: B(ht.circle, ht[`color-${y}`]), children: [
674
+ /* @__PURE__ */ o(
675
+ "input",
676
+ {
677
+ ref: w,
678
+ type: "radio",
679
+ name: x,
680
+ id: s,
681
+ value: c,
682
+ checked: m,
683
+ defaultChecked: f ? void 0 : e,
684
+ disabled: N,
685
+ onChange: T,
686
+ className: ht.input
687
+ }
688
+ ),
689
+ /* @__PURE__ */ o("span", { className: ht.dot })
690
+ ] }),
691
+ _ && /* @__PURE__ */ o("span", { className: ht.labelText, children: _ })
692
+ ]
693
+ }
694
+ );
695
+ });
696
+ function tl({
697
+ name: r,
698
+ value: t,
699
+ defaultValue: e,
700
+ onChange: n,
701
+ direction: s = "vertical",
702
+ children: c,
703
+ disabled: l = !1,
704
+ size: i = "md",
705
+ color: h = "primary",
706
+ error: _ = !1,
707
+ errorText: p,
708
+ label: g,
709
+ className: $,
710
+ style: E
711
+ }) {
712
+ const [w, f] = P(e), x = t !== void 0 ? t : w, N = b(
713
+ (y) => {
714
+ t === void 0 && f(y), n == null || n(y);
715
+ },
716
+ [n, t]
717
+ ), k = mt(
718
+ () => ({ name: r, value: x, disabled: l, size: i, color: h, onChange: N }),
719
+ [r, x, l, i, h, N]
720
+ );
721
+ return /* @__PURE__ */ o(te.Provider, { value: k, children: /* @__PURE__ */ D(
722
+ "fieldset",
723
+ {
724
+ className: B(ht.group, ht[s], $),
725
+ style: E,
726
+ role: "radiogroup",
727
+ children: [
728
+ g && /* @__PURE__ */ o("legend", { className: B(ht.groupLabel, _ && ht.groupLabelError), children: g }),
729
+ c,
730
+ p && /* @__PURE__ */ o("span", { className: ht.errorText, role: "alert", children: p })
731
+ ]
732
+ }
733
+ ) });
734
+ }
735
+ const xr = "_label_1g70g_1", wr = "_labelLeft_1g70g_10", Nr = "_disabled_1g70g_14", $r = "_track_1g70g_20", Ir = "_sm_1g70g_32", Er = "_md_1g70g_33", kr = "_lg_1g70g_34", Mr = "_knob_1g70g_36", zr = "_labelText_1g70g_40", Tr = "_input_1g70g_45", Nt = {
736
+ label: xr,
737
+ labelLeft: wr,
738
+ disabled: Nr,
739
+ track: $r,
740
+ sm: Ir,
741
+ md: Er,
742
+ lg: kr,
743
+ knob: Mr,
744
+ labelText: zr,
745
+ input: Tr,
746
+ "color-primary": "_color-primary_1g70g_70",
747
+ "color-success": "_color-success_1g70g_71",
748
+ "color-error": "_color-error_1g70g_72",
749
+ "color-warning": "_color-warning_1g70g_73",
750
+ "color-info": "_color-info_1g70g_74"
751
+ }, el = bt(function({
752
+ checked: t,
753
+ defaultChecked: e,
754
+ name: n,
755
+ id: s,
756
+ disabled: c = !1,
757
+ size: l = "md",
758
+ color: i = "primary",
759
+ label: h,
760
+ labelPosition: _ = "right",
761
+ onChange: p,
762
+ className: g,
763
+ style: $
764
+ }, E) {
765
+ return /* @__PURE__ */ D(
766
+ "label",
767
+ {
768
+ className: B(
769
+ Nt.label,
770
+ Nt[l],
771
+ _ === "left" && Nt.labelLeft,
772
+ c && Nt.disabled,
773
+ g
774
+ ),
775
+ style: $,
776
+ children: [
777
+ /* @__PURE__ */ D("span", { className: B(Nt.track, Nt[`color-${i}`]), children: [
778
+ /* @__PURE__ */ o(
779
+ "input",
780
+ {
781
+ ref: E,
782
+ type: "checkbox",
783
+ checked: t,
784
+ defaultChecked: e,
785
+ name: n,
786
+ id: s,
787
+ disabled: c,
788
+ onChange: p,
789
+ className: Nt.input,
790
+ role: "switch",
791
+ "aria-checked": t
792
+ }
793
+ ),
794
+ /* @__PURE__ */ o("span", { className: Nt.knob })
795
+ ] }),
796
+ h && /* @__PURE__ */ o("span", { className: Nt.labelText, children: h })
797
+ ]
798
+ }
799
+ );
800
+ }), Lr = "_wrapper_1tprv_2", Sr = "_fullWidth_1tprv_10", Dr = "_label_1tprv_15", Ar = "_focused_1tprv_22", Fr = "_labelError_1tprv_26", Rr = "_labelSuccess_1tprv_30", Pr = "_required_1tprv_34", Br = "_inputContainer_1tprv_40", Wr = "_outlined_1tprv_50", Hr = "_disabled_1tprv_56", Gr = "_filled_1tprv_66", Or = "_underlined_1tprv_82", qr = "_inputError_1tprv_98", Ur = "_inputSuccess_1tprv_106", Yr = "_colorWarning_1tprv_115", Zr = "_colorInfo_1tprv_120", jr = "_sm_1tprv_126", Kr = "_md_1tprv_132", Jr = "_lg_1tprv_138", Xr = "_rounded_1tprv_145", Qr = "_input_1tprv_40", Vr = "_startIcon_1tprv_178", Cr = "_endIcon_1tprv_186", tn = "_clearBtn_1tprv_195", en = "_spinner_1tprv_214", rn = "_spin_1tprv_214", nn = "_helperText_1tprv_232", sn = "_errorTextMsg_1tprv_238", on = "_charCount_1tprv_245", cn = "_charCountOver_1tprv_252", ln = "_bottomRow_1tprv_257", Q = {
801
+ wrapper: Lr,
802
+ fullWidth: Sr,
803
+ label: Dr,
804
+ focused: Ar,
805
+ labelError: Fr,
806
+ labelSuccess: Rr,
807
+ required: Pr,
808
+ inputContainer: Br,
809
+ outlined: Wr,
810
+ disabled: Hr,
811
+ filled: Gr,
812
+ underlined: Or,
813
+ inputError: qr,
814
+ inputSuccess: Ur,
815
+ colorWarning: Yr,
816
+ colorInfo: Zr,
817
+ sm: jr,
818
+ md: Kr,
819
+ lg: Jr,
820
+ rounded: Xr,
821
+ input: Qr,
822
+ startIcon: Vr,
823
+ endIcon: Cr,
824
+ clearBtn: tn,
825
+ spinner: en,
826
+ spin: rn,
827
+ helperText: nn,
828
+ errorTextMsg: sn,
829
+ charCount: on,
830
+ charCountOver: cn,
831
+ bottomRow: ln
832
+ }, $t = bt(function({
833
+ type: t = "text",
834
+ value: e,
835
+ defaultValue: n,
836
+ name: s,
837
+ id: c,
838
+ placeholder: l,
839
+ disabled: i = !1,
840
+ readOnly: h = !1,
841
+ required: _ = !1,
842
+ autoFocus: p = !1,
843
+ autoComplete: g,
844
+ inputMode: $,
845
+ variant: E = "outlined",
846
+ size: w = "md",
847
+ color: f,
848
+ fullWidth: x = !1,
849
+ rounded: N = !1,
850
+ label: k,
851
+ helperText: y,
852
+ errorText: m,
853
+ startIcon: T,
854
+ endIcon: I,
855
+ clearable: L = !1,
856
+ error: O = !1,
857
+ success: H = !1,
858
+ maxLength: U,
859
+ showCharCount: S = !1,
860
+ onChange: d,
102
861
  onFocus: v,
103
- onBlur: h,
104
- onKeyDown: Q,
105
- onClear: b,
106
- loading: S = !1,
107
- className: U,
108
- style: V,
109
- inputClassName: X,
110
- labelClassName: Y
111
- }, i) {
112
- const [O, j] = q(!1), [Z, T] = q((a == null ? void 0 : a.toString()) ?? ""), $ = P(null), w = n !== void 0 ? n.toString() : Z, l = L || !!c, rr = w.length > 0, nr = g(
113
- (t) => {
114
- j(!0), v == null || v(t);
862
+ onBlur: u,
863
+ onKeyDown: a,
864
+ onClear: A,
865
+ loading: M = !1,
866
+ className: j,
867
+ style: ot,
868
+ inputClassName: ct,
869
+ labelClassName: rt
870
+ }, q) {
871
+ const [st, F] = P(!1), [Y, dt] = P((n == null ? void 0 : n.toString()) ?? ""), nt = pt(null), _t = e !== void 0 ? e.toString() : Y, lt = O || !!m, vt = _t.length > 0, C = b(
872
+ (X) => {
873
+ F(!0), v == null || v(X);
115
874
  },
116
875
  [v]
117
- ), er = g(
118
- (t) => {
119
- j(!1), h == null || h(t);
876
+ ), wt = b(
877
+ (X) => {
878
+ F(!1), u == null || u(X);
120
879
  },
121
- [h]
122
- ), tr = g(
123
- (t) => {
124
- n === void 0 && T(t.target.value), f == null || f(t);
125
- },
126
- [f, n]
127
- ), sr = g(() => {
128
- n === void 0 && T(""), b == null || b();
129
- const t = (i == null ? void 0 : i.current) ?? $.current;
130
- t == null || t.focus();
131
- }, [b, i]), or = _(
132
- r.inputContainer,
133
- r[z],
134
- r[A],
135
- O && r.focused,
136
- l && r.inputError,
137
- M && !l && r.inputSuccess,
138
- C === "warning" && r.colorWarning,
139
- C === "info" && r.colorInfo,
140
- N && r.disabled,
141
- J && r.rounded
142
- );
143
- return /* @__PURE__ */ d(
880
+ [u]
881
+ ), K = b(
882
+ (X) => {
883
+ e === void 0 && dt(X.target.value), d == null || d(X);
884
+ },
885
+ [d, e]
886
+ ), z = b(() => {
887
+ e === void 0 && dt(""), A == null || A();
888
+ const X = (q == null ? void 0 : q.current) ?? nt.current;
889
+ X == null || X.focus();
890
+ }, [A, q]), W = B(
891
+ Q.inputContainer,
892
+ Q[E],
893
+ Q[w],
894
+ st && Q.focused,
895
+ lt && Q.inputError,
896
+ H && !lt && Q.inputSuccess,
897
+ f === "warning" && Q.colorWarning,
898
+ f === "info" && Q.colorInfo,
899
+ i && Q.disabled,
900
+ N && Q.rounded
901
+ );
902
+ return /* @__PURE__ */ D(
144
903
  "div",
145
904
  {
146
- className: _(r.wrapper, G && r.fullWidth, U),
147
- style: V,
905
+ className: B(Q.wrapper, x && Q.fullWidth, j),
906
+ style: ot,
148
907
  children: [
149
- E && /* @__PURE__ */ s(
908
+ k && /* @__PURE__ */ o(
150
909
  "label",
151
910
  {
152
- htmlFor: e,
153
- className: _(
154
- r.label,
155
- O && r.focused,
156
- l && r.labelError,
157
- M && !l && r.labelSuccess,
158
- x && r.required,
159
- Y
911
+ htmlFor: c,
912
+ className: B(
913
+ Q.label,
914
+ st && Q.focused,
915
+ lt && Q.labelError,
916
+ H && !lt && Q.labelSuccess,
917
+ _ && Q.required,
918
+ rt
160
919
  ),
161
- children: E
920
+ children: k
162
921
  }
163
922
  ),
164
- /* @__PURE__ */ d("div", { className: or, children: [
165
- k && /* @__PURE__ */ s("span", { className: r.startIcon, children: k }),
166
- /* @__PURE__ */ s(
923
+ /* @__PURE__ */ D("div", { className: W, children: [
924
+ T && /* @__PURE__ */ o("span", { className: Q.startIcon, children: T }),
925
+ /* @__PURE__ */ o(
167
926
  "input",
168
927
  {
169
- ref: i ?? $,
170
- type: y,
171
- value: n,
172
- defaultValue: n === void 0 ? a : void 0,
173
- name: I,
174
- id: e,
175
- placeholder: p,
176
- disabled: N,
177
- readOnly: H,
178
- required: x,
179
- autoFocus: D,
180
- autoComplete: F,
181
- maxLength: m,
182
- className: _(r.input, X),
183
- onChange: tr,
184
- onFocus: nr,
185
- onBlur: er,
186
- onKeyDown: Q,
187
- "aria-invalid": l || void 0,
188
- "aria-describedby": c ? `${e}-error` : u ? `${e}-helper` : void 0
928
+ ref: q ?? nt,
929
+ type: t,
930
+ value: e,
931
+ defaultValue: e === void 0 ? n : void 0,
932
+ name: s,
933
+ id: c,
934
+ placeholder: l,
935
+ disabled: i,
936
+ readOnly: h,
937
+ required: _,
938
+ autoFocus: p,
939
+ autoComplete: g,
940
+ inputMode: $,
941
+ maxLength: U,
942
+ className: B(Q.input, ct),
943
+ onChange: K,
944
+ onFocus: C,
945
+ onBlur: wt,
946
+ onKeyDown: a,
947
+ "aria-invalid": lt || void 0,
948
+ "aria-describedby": m ? `${c}-error` : y ? `${c}-helper` : void 0
189
949
  }
190
950
  ),
191
- S && /* @__PURE__ */ s("span", { className: r.spinner }),
192
- K && rr && !S && !N && /* @__PURE__ */ s(
951
+ M && /* @__PURE__ */ o("span", { className: Q.spinner }),
952
+ L && vt && !M && !i && /* @__PURE__ */ o(
193
953
  "button",
194
954
  {
195
955
  type: "button",
196
- className: r.clearBtn,
197
- onClick: sr,
956
+ className: Q.clearBtn,
957
+ onClick: z,
198
958
  tabIndex: -1,
199
959
  "aria-label": "Clear input",
200
960
  children: "✕"
201
961
  }
202
962
  ),
203
- W && !S && /* @__PURE__ */ s("span", { className: r.endIcon, children: W })
963
+ I && !M && /* @__PURE__ */ o("span", { className: Q.endIcon, children: I })
204
964
  ] }),
205
- (c || u || R) && /* @__PURE__ */ d("div", { className: r.bottomRow, children: [
206
- /* @__PURE__ */ d("span", { children: [
207
- c && /* @__PURE__ */ s("span", { id: e ? `${e}-error` : void 0, className: r.errorTextMsg, role: "alert", children: c }),
208
- !c && u && /* @__PURE__ */ s("span", { id: e ? `${e}-helper` : void 0, className: r.helperText, children: u })
965
+ (m || y || S) && /* @__PURE__ */ D("div", { className: Q.bottomRow, children: [
966
+ /* @__PURE__ */ D("span", { children: [
967
+ m && /* @__PURE__ */ o("span", { id: c ? `${c}-error` : void 0, className: Q.errorTextMsg, role: "alert", children: m }),
968
+ !m && y && /* @__PURE__ */ o("span", { id: c ? `${c}-helper` : void 0, className: Q.helperText, children: y })
209
969
  ] }),
210
- R && m && /* @__PURE__ */ d(
970
+ S && U && /* @__PURE__ */ D(
211
971
  "span",
212
972
  {
213
- className: _(
214
- r.charCount,
215
- w.length > m && r.charCountOver
973
+ className: B(
974
+ Q.charCount,
975
+ _t.length > U && Q.charCountOver
216
976
  ),
217
977
  children: [
218
- w.length,
978
+ _t.length,
219
979
  "/",
220
- m
980
+ U
221
981
  ]
222
982
  }
223
983
  )
@@ -225,11 +985,1982 @@ const _r = "_wrapper_1tprv_2", pr = "_fullWidth_1tprv_10", ur = "_label_1tprv_15
225
985
  ]
226
986
  }
227
987
  );
228
- });
988
+ }), an = "_wrapper_1bxd6_2", dn = "_fullWidth_1bxd6_10", _n = "_label_1bxd6_15", un = "_labelFocused_1bxd6_22", pn = "_labelError_1bxd6_26", fn = "_labelSuccess_1bxd6_30", hn = "_required_1bxd6_34", mn = "_container_1bxd6_40", bn = "_outlined_1bxd6_49", vn = "_disabled_1bxd6_55", gn = "_focused_1bxd6_59", yn = "_filled_1bxd6_65", xn = "_underlined_1bxd6_81", wn = "_containerError_1bxd6_97", Nn = "_containerSuccess_1bxd6_105", $n = "_colorWarning_1bxd6_113", In = "_colorInfo_1bxd6_118", En = "_sm_1bxd6_124", kn = "_textarea_1bxd6_128", Mn = "_md_1bxd6_132", zn = "_lg_1bxd6_140", Tn = "_spinner_1bxd6_180", Ln = "_spin_1bxd6_180", Sn = "_bottomRow_1bxd6_200", Dn = "_helperText_1bxd6_207", An = "_errorTextMsg_1bxd6_213", Fn = "_charCount_1bxd6_219", Rn = "_charCountOver_1bxd6_226", tt = {
989
+ wrapper: an,
990
+ fullWidth: dn,
991
+ label: _n,
992
+ labelFocused: un,
993
+ labelError: pn,
994
+ labelSuccess: fn,
995
+ required: hn,
996
+ container: mn,
997
+ outlined: bn,
998
+ disabled: vn,
999
+ focused: gn,
1000
+ filled: yn,
1001
+ underlined: xn,
1002
+ containerError: wn,
1003
+ containerSuccess: Nn,
1004
+ colorWarning: $n,
1005
+ colorInfo: In,
1006
+ sm: En,
1007
+ textarea: kn,
1008
+ md: Mn,
1009
+ lg: zn,
1010
+ spinner: Tn,
1011
+ spin: Ln,
1012
+ bottomRow: Sn,
1013
+ helperText: Dn,
1014
+ errorTextMsg: An,
1015
+ charCount: Fn,
1016
+ charCountOver: Rn
1017
+ }, rl = bt(function({
1018
+ value: t,
1019
+ defaultValue: e,
1020
+ name: n,
1021
+ id: s,
1022
+ placeholder: c,
1023
+ disabled: l = !1,
1024
+ readOnly: i = !1,
1025
+ required: h = !1,
1026
+ autoFocus: _ = !1,
1027
+ rows: p = 3,
1028
+ autoResize: g = !1,
1029
+ minRows: $,
1030
+ maxRows: E,
1031
+ variant: w = "outlined",
1032
+ size: f = "md",
1033
+ color: x,
1034
+ fullWidth: N = !1,
1035
+ label: k,
1036
+ helperText: y,
1037
+ errorText: m,
1038
+ error: T = !1,
1039
+ success: I = !1,
1040
+ maxLength: L,
1041
+ showCharCount: O = !1,
1042
+ loading: H = !1,
1043
+ onChange: U,
1044
+ onFocus: S,
1045
+ onBlur: d,
1046
+ className: v,
1047
+ style: u,
1048
+ textareaClassName: a,
1049
+ labelClassName: A
1050
+ }, M) {
1051
+ const [j, ot] = P(!1), [ct, rt] = P(e ?? ""), q = pt(null), st = t !== void 0 ? t : ct, F = T || !!m, Y = M ?? q, dt = b(() => {
1052
+ const C = typeof Y == "function" ? null : Y == null ? void 0 : Y.current;
1053
+ if (!C || !g) return;
1054
+ C.style.height = "auto";
1055
+ const wt = parseFloat(getComputedStyle(C).lineHeight) || 20, K = $ ? $ * wt : 0, z = E ? E * wt : 1 / 0, W = Math.min(Math.max(C.scrollHeight, K), z);
1056
+ C.style.height = `${W}px`, C.style.overflowY = C.scrollHeight > W ? "auto" : "hidden";
1057
+ }, [g, $, E, Y]);
1058
+ gt(() => {
1059
+ dt();
1060
+ }, [st, dt]);
1061
+ const nt = b(
1062
+ (C) => {
1063
+ ot(!0), S == null || S(C);
1064
+ },
1065
+ [S]
1066
+ ), _t = b(
1067
+ (C) => {
1068
+ ot(!1), d == null || d(C);
1069
+ },
1070
+ [d]
1071
+ ), lt = b(
1072
+ (C) => {
1073
+ t === void 0 && rt(C.target.value), U == null || U(C);
1074
+ },
1075
+ [U, t]
1076
+ ), vt = B(
1077
+ tt.container,
1078
+ tt[w],
1079
+ tt[f],
1080
+ j && tt.focused,
1081
+ F && tt.containerError,
1082
+ I && !F && tt.containerSuccess,
1083
+ x === "warning" && tt.colorWarning,
1084
+ x === "info" && tt.colorInfo,
1085
+ l && tt.disabled
1086
+ );
1087
+ return /* @__PURE__ */ D(
1088
+ "div",
1089
+ {
1090
+ className: B(tt.wrapper, N && tt.fullWidth, v),
1091
+ style: u,
1092
+ children: [
1093
+ k && /* @__PURE__ */ o(
1094
+ "label",
1095
+ {
1096
+ htmlFor: s,
1097
+ className: B(
1098
+ tt.label,
1099
+ j && tt.labelFocused,
1100
+ F && tt.labelError,
1101
+ I && !F && tt.labelSuccess,
1102
+ h && tt.required,
1103
+ A
1104
+ ),
1105
+ children: k
1106
+ }
1107
+ ),
1108
+ /* @__PURE__ */ D("div", { className: vt, children: [
1109
+ /* @__PURE__ */ o(
1110
+ "textarea",
1111
+ {
1112
+ ref: Y,
1113
+ name: n,
1114
+ id: s,
1115
+ placeholder: c,
1116
+ disabled: l,
1117
+ readOnly: i,
1118
+ required: h,
1119
+ autoFocus: _,
1120
+ rows: g ? $ ?? p : p,
1121
+ maxLength: L,
1122
+ value: t,
1123
+ defaultValue: t === void 0 ? e : void 0,
1124
+ className: B(tt.textarea, a),
1125
+ onChange: lt,
1126
+ onFocus: nt,
1127
+ onBlur: _t,
1128
+ "aria-invalid": F || void 0,
1129
+ "aria-describedby": m ? `${s}-error` : y ? `${s}-helper` : void 0
1130
+ }
1131
+ ),
1132
+ H && /* @__PURE__ */ o("span", { className: tt.spinner })
1133
+ ] }),
1134
+ (m || y || O) && /* @__PURE__ */ D("div", { className: tt.bottomRow, children: [
1135
+ /* @__PURE__ */ D("span", { children: [
1136
+ m && /* @__PURE__ */ o("span", { id: s ? `${s}-error` : void 0, className: tt.errorTextMsg, role: "alert", children: m }),
1137
+ !m && y && /* @__PURE__ */ o("span", { id: s ? `${s}-helper` : void 0, className: tt.helperText, children: y })
1138
+ ] }),
1139
+ O && L && /* @__PURE__ */ D(
1140
+ "span",
1141
+ {
1142
+ className: B(
1143
+ tt.charCount,
1144
+ st.length > L && tt.charCountOver
1145
+ ),
1146
+ children: [
1147
+ st.length,
1148
+ "/",
1149
+ L
1150
+ ]
1151
+ }
1152
+ )
1153
+ ] })
1154
+ ]
1155
+ }
1156
+ );
1157
+ }), Pn = "_wrapper_128h5_1", Bn = "_toggleBtn_128h5_7", Wn = "_strengthRow_128h5_26", Hn = "_strengthBar_128h5_32", Gn = "_strengthSegment_128h5_39", On = "_strengthLabel_128h5_47", It = {
1158
+ wrapper: Pn,
1159
+ toggleBtn: Bn,
1160
+ strengthRow: Wn,
1161
+ strengthBar: Hn,
1162
+ strengthSegment: Gn,
1163
+ strengthLabel: On,
1164
+ "strength-weak": "_strength-weak_128h5_53",
1165
+ "strength-fair": "_strength-fair_128h5_54",
1166
+ "strength-good": "_strength-good_128h5_55",
1167
+ "strength-strong": "_strength-strong_128h5_56"
1168
+ };
1169
+ function qn(r) {
1170
+ let t = 0;
1171
+ return r.length >= 8 && t++, r.length >= 12 && t++, /[a-z]/.test(r) && /[A-Z]/.test(r) && t++, /\d/.test(r) && t++, /[^a-zA-Z0-9]/.test(r) && t++, t <= 1 ? "weak" : t <= 2 ? "fair" : t <= 3 ? "good" : "strong";
1172
+ }
1173
+ const Un = {
1174
+ weak: "Weak",
1175
+ fair: "Fair",
1176
+ good: "Good",
1177
+ strong: "Strong"
1178
+ }, nl = bt(function({
1179
+ showToggle: t = !0,
1180
+ showStrength: e = !1,
1181
+ onStrengthChange: n,
1182
+ value: s,
1183
+ defaultValue: c,
1184
+ onChange: l,
1185
+ ...i
1186
+ }, h) {
1187
+ const [_, p] = P(!1), [g, $] = P((c == null ? void 0 : c.toString()) ?? ""), E = s !== void 0 ? s.toString() : g, w = qn(E);
1188
+ gt(() => {
1189
+ n == null || n(w);
1190
+ }, [w, n]);
1191
+ const f = b(
1192
+ (N) => {
1193
+ s === void 0 && $(N.target.value), l == null || l(N);
1194
+ },
1195
+ [l, s]
1196
+ ), x = t ? /* @__PURE__ */ o(
1197
+ "button",
1198
+ {
1199
+ type: "button",
1200
+ className: It.toggleBtn,
1201
+ onClick: () => p((N) => !N),
1202
+ tabIndex: -1,
1203
+ "aria-label": _ ? "Hide password" : "Show password",
1204
+ children: _ ? "◠" : "◉"
1205
+ }
1206
+ ) : void 0;
1207
+ return /* @__PURE__ */ D("div", { className: It.wrapper, children: [
1208
+ /* @__PURE__ */ o(
1209
+ $t,
1210
+ {
1211
+ ...i,
1212
+ ref: h,
1213
+ type: _ ? "text" : "password",
1214
+ value: s,
1215
+ defaultValue: c,
1216
+ onChange: f,
1217
+ endIcon: x
1218
+ }
1219
+ ),
1220
+ e && E.length > 0 && /* @__PURE__ */ D("div", { className: It.strengthRow, children: [
1221
+ /* @__PURE__ */ o("div", { className: It.strengthBar, children: [0, 1, 2, 3].map((N) => /* @__PURE__ */ o(
1222
+ "div",
1223
+ {
1224
+ className: B(
1225
+ It.strengthSegment,
1226
+ N < ["weak", "fair", "good", "strong"].indexOf(w) + 1 && It[`strength-${w}`]
1227
+ )
1228
+ },
1229
+ N
1230
+ )) }),
1231
+ /* @__PURE__ */ o("span", { className: B(It.strengthLabel, It[`strength-${w}`]), children: Un[w] })
1232
+ ] })
1233
+ ] });
1234
+ }), Yn = "_stepper_sau6l_1", Zn = "_stepBtn_sau6l_8", Pt = {
1235
+ stepper: Yn,
1236
+ stepBtn: Zn
1237
+ };
1238
+ function Jt(r, t, e) {
1239
+ return t !== void 0 && r < t ? t : e !== void 0 && r > e ? e : r;
1240
+ }
1241
+ function Xt(r, t) {
1242
+ const e = Math.pow(10, t);
1243
+ return Math.round(r * e) / e;
1244
+ }
1245
+ const sl = bt(function({
1246
+ min: t,
1247
+ max: e,
1248
+ step: n = 1,
1249
+ showStepper: s = !0,
1250
+ precision: c = 0,
1251
+ allowNegative: l = !0,
1252
+ onValueChange: i,
1253
+ value: h,
1254
+ defaultValue: _,
1255
+ onChange: p,
1256
+ onKeyDown: g,
1257
+ onBlur: $,
1258
+ disabled: E = !1,
1259
+ ...w
1260
+ }, f) {
1261
+ const [x, N] = P((_ == null ? void 0 : _.toString()) ?? ""), k = h !== void 0 ? h.toString() : x, y = pt(), m = b(
1262
+ (d) => {
1263
+ h === void 0 && N(d);
1264
+ const v = parseFloat(d);
1265
+ i == null || i(isNaN(v) ? null : v);
1266
+ },
1267
+ [h, i]
1268
+ ), T = b(
1269
+ (d) => {
1270
+ const v = parseFloat(k) || 0, u = Xt(Jt(v + n * d, t, e), c);
1271
+ m(u.toString());
1272
+ },
1273
+ [k, n, t, e, c, m]
1274
+ ), I = b(
1275
+ (d) => {
1276
+ T(d), y.current = setInterval(() => T(d), 150);
1277
+ },
1278
+ [T]
1279
+ ), L = b(() => {
1280
+ y.current && (clearInterval(y.current), y.current = void 0);
1281
+ }, []);
1282
+ gt(() => L, [L]);
1283
+ const O = b(
1284
+ (d) => {
1285
+ const u = d.target.value.replace(l ? /[^\d.,-]/g : /[^\d.,]/g, "");
1286
+ m(u), p == null || p(d);
1287
+ },
1288
+ [p, l, m]
1289
+ ), H = b(
1290
+ (d) => {
1291
+ const v = parseFloat(k);
1292
+ if (!isNaN(v)) {
1293
+ const u = Xt(Jt(v, t, e), c);
1294
+ m(u.toString());
1295
+ }
1296
+ $ == null || $(d);
1297
+ },
1298
+ [k, t, e, c, m, $]
1299
+ ), U = b(
1300
+ (d) => {
1301
+ d.key === "ArrowUp" ? (d.preventDefault(), T(1)) : d.key === "ArrowDown" && (d.preventDefault(), T(-1)), g == null || g(d);
1302
+ },
1303
+ [T, g]
1304
+ ), S = s && !E ? /* @__PURE__ */ D("div", { className: Pt.stepper, children: [
1305
+ /* @__PURE__ */ o(
1306
+ "button",
1307
+ {
1308
+ type: "button",
1309
+ className: Pt.stepBtn,
1310
+ onMouseDown: () => I(1),
1311
+ onMouseUp: L,
1312
+ onMouseLeave: L,
1313
+ tabIndex: -1,
1314
+ "aria-label": "Increment",
1315
+ children: "▲"
1316
+ }
1317
+ ),
1318
+ /* @__PURE__ */ o(
1319
+ "button",
1320
+ {
1321
+ type: "button",
1322
+ className: Pt.stepBtn,
1323
+ onMouseDown: () => I(-1),
1324
+ onMouseUp: L,
1325
+ onMouseLeave: L,
1326
+ tabIndex: -1,
1327
+ "aria-label": "Decrement",
1328
+ children: "▼"
1329
+ }
1330
+ )
1331
+ ] }) : void 0;
1332
+ return /* @__PURE__ */ o(
1333
+ $t,
1334
+ {
1335
+ ...w,
1336
+ ref: f,
1337
+ type: "text",
1338
+ inputMode: "decimal",
1339
+ value: h !== void 0 ? k : void 0,
1340
+ defaultValue: h !== void 0 ? void 0 : _,
1341
+ onChange: O,
1342
+ onBlur: H,
1343
+ onKeyDown: U,
1344
+ endIcon: S,
1345
+ disabled: E
1346
+ }
1347
+ );
1348
+ }), ol = bt(function({
1349
+ debounceMs: t = 300,
1350
+ onSearch: e,
1351
+ value: n,
1352
+ defaultValue: s,
1353
+ onChange: c,
1354
+ onKeyDown: l,
1355
+ onClear: i,
1356
+ clearable: h = !0,
1357
+ placeholder: _ = "Search...",
1358
+ ...p
1359
+ }, g) {
1360
+ const [$, E] = P((s == null ? void 0 : s.toString()) ?? ""), w = n !== void 0 ? n.toString() : $, f = Vt(
1361
+ (m) => e == null ? void 0 : e(m),
1362
+ t
1363
+ ), x = b(
1364
+ (m) => {
1365
+ n === void 0 && E(m.target.value), f(m.target.value), c == null || c(m);
1366
+ },
1367
+ [c, n, f]
1368
+ ), N = b(
1369
+ (m) => {
1370
+ m.key === "Enter" && (e == null || e(w)), l == null || l(m);
1371
+ },
1372
+ [w, e, l]
1373
+ ), k = b(() => {
1374
+ n === void 0 && E(""), e == null || e(""), i == null || i();
1375
+ }, [n, e, i]);
1376
+ return /* @__PURE__ */ o(
1377
+ $t,
1378
+ {
1379
+ ...p,
1380
+ ref: g,
1381
+ type: "search",
1382
+ value: n,
1383
+ defaultValue: n !== void 0 ? void 0 : s,
1384
+ onChange: x,
1385
+ onKeyDown: N,
1386
+ onClear: k,
1387
+ clearable: h,
1388
+ placeholder: _,
1389
+ startIcon: /* @__PURE__ */ D("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", stroke: "currentColor", strokeWidth: "2", children: [
1390
+ /* @__PURE__ */ o("circle", { cx: "6.5", cy: "6.5", r: "5" }),
1391
+ /* @__PURE__ */ o("line", { x1: "10", y1: "10", x2: "14.5", y2: "14.5" })
1392
+ ] })
1393
+ }
1394
+ );
1395
+ }), cl = bt(function({
1396
+ validateOnBlur: t = !0,
1397
+ validateOnChange: e = !1,
1398
+ showValidIcon: n = !0,
1399
+ onValidationChange: s,
1400
+ value: c,
1401
+ defaultValue: l,
1402
+ onChange: i,
1403
+ onBlur: h,
1404
+ error: _,
1405
+ errorText: p,
1406
+ success: g,
1407
+ placeholder: $ = "email@example.com",
1408
+ ...E
1409
+ }, w) {
1410
+ const [f, x] = P((l == null ? void 0 : l.toString()) ?? ""), [N, k] = P({ valid: !0 }), [y, m] = P(!1), T = c !== void 0 ? c.toString() : f, I = b(
1411
+ (u) => {
1412
+ const a = _e(u);
1413
+ return k(a), s == null || s(a), a;
1414
+ },
1415
+ [s]
1416
+ ), L = b(
1417
+ (u) => {
1418
+ c === void 0 && x(u.target.value), e && y && I(u.target.value), i == null || i(u);
1419
+ },
1420
+ [i, c, e, y, I]
1421
+ ), O = b(
1422
+ (u) => {
1423
+ m(!0), t && u.target.value && I(u.target.value), h == null || h(u);
1424
+ },
1425
+ [h, t, I]
1426
+ ), H = _ || y && !N.valid, U = p || (y && !N.valid ? N.error : void 0), S = !H && g !== void 0 ? g : y && N.valid && T.length > 0;
1427
+ return /* @__PURE__ */ o(
1428
+ $t,
1429
+ {
1430
+ ...E,
1431
+ ref: w,
1432
+ type: "email",
1433
+ value: c,
1434
+ defaultValue: c !== void 0 ? void 0 : l,
1435
+ onChange: L,
1436
+ onBlur: O,
1437
+ error: H,
1438
+ errorText: U,
1439
+ success: S,
1440
+ placeholder: $,
1441
+ startIcon: /* @__PURE__ */ D("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", stroke: "currentColor", strokeWidth: "1.5", children: [
1442
+ /* @__PURE__ */ o("rect", { x: "1", y: "3", width: "14", height: "10", rx: "2" }),
1443
+ /* @__PURE__ */ o("path", { d: "M1 5L8 9L15 5" })
1444
+ ] }),
1445
+ endIcon: n && S ? /* @__PURE__ */ o("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", stroke: "var(--mineral-success)", strokeWidth: "2", children: /* @__PURE__ */ o("path", { d: "M3 8L6.5 11.5L13 4.5" }) }) : void 0
1446
+ }
1447
+ );
1448
+ }), jn = "_prefix_35ls9_1", Kn = {
1449
+ prefix: jn
1450
+ }, ll = bt(function({
1451
+ countryCode: t = "PL",
1452
+ showCountryCode: e = !0,
1453
+ formatOnChange: n = !0,
1454
+ validateOnBlur: s = !0,
1455
+ onValidationChange: c,
1456
+ onValueChange: l,
1457
+ value: i,
1458
+ defaultValue: h,
1459
+ onChange: _,
1460
+ onBlur: p,
1461
+ error: g,
1462
+ errorText: $,
1463
+ placeholder: E = "123 456 789",
1464
+ ...w
1465
+ }, f) {
1466
+ const [x, N] = P((h == null ? void 0 : h.toString()) ?? ""), [k, y] = P({ valid: !0 }), [m, T] = P(!1), I = i !== void 0 ? i.toString() : x, L = b(
1467
+ (u) => {
1468
+ const a = zt(u.target.value), A = n ? ke(a, { countryCode: t }) : a;
1469
+ i === void 0 && N(A), l == null || l(a, A), _ == null || _(u);
1470
+ },
1471
+ [_, i, n, t, l]
1472
+ ), O = b(
1473
+ (u) => {
1474
+ if (T(!0), s && I) {
1475
+ const a = pe(zt(I), t);
1476
+ y(a), c == null || c(a);
1477
+ }
1478
+ p == null || p(u);
1479
+ },
1480
+ [p, s, I, t, c]
1481
+ ), H = {
1482
+ PL: "+48",
1483
+ DE: "+49",
1484
+ US: "+1",
1485
+ GB: "+44",
1486
+ FR: "+33",
1487
+ CZ: "+420",
1488
+ SK: "+421"
1489
+ }, U = e ? /* @__PURE__ */ o("span", { className: Kn.prefix, children: H[t.toUpperCase()] ?? `+${t}` }) : void 0, S = /* @__PURE__ */ D("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", stroke: "currentColor", strokeWidth: "1.5", children: [
1490
+ /* @__PURE__ */ o("path", { d: "M3 1.5h10a1 1 0 011 1v11a1 1 0 01-1 1H3a1 1 0 01-1-1v-11a1 1 0 011-1z" }),
1491
+ /* @__PURE__ */ o("line", { x1: "5", y1: "12", x2: "11", y2: "12" })
1492
+ ] }), d = g || m && !k.valid, v = $ || (m && !k.valid ? k.error : void 0);
1493
+ return /* @__PURE__ */ o(
1494
+ $t,
1495
+ {
1496
+ ...w,
1497
+ ref: f,
1498
+ type: "tel",
1499
+ value: i !== void 0 ? I : void 0,
1500
+ defaultValue: i !== void 0 ? void 0 : h,
1501
+ onChange: L,
1502
+ onBlur: O,
1503
+ error: d,
1504
+ errorText: v,
1505
+ placeholder: E,
1506
+ startIcon: e ? U : S
1507
+ }
1508
+ );
1509
+ }), il = bt(function({
1510
+ autoCapitalize: t = !0,
1511
+ allowNumbers: e = !1,
1512
+ allowSpecialChars: n = !1,
1513
+ minWords: s,
1514
+ validateOnBlur: c = !0,
1515
+ onValidationChange: l,
1516
+ value: i,
1517
+ defaultValue: h,
1518
+ onChange: _,
1519
+ onBlur: p,
1520
+ error: g,
1521
+ errorText: $,
1522
+ placeholder: E = "Jan Kowalski",
1523
+ ...w
1524
+ }, f) {
1525
+ const [x, N] = P((h == null ? void 0 : h.toString()) ?? ""), [k, y] = P({ valid: !0 }), [m, T] = P(!1), I = i !== void 0 ? i.toString() : x, L = b(
1526
+ (v) => {
1527
+ let u = v;
1528
+ return e || (u = u.replace(/\d/g, "")), n || (u = u.replace(/[^a-zA-ZąćęłńóśźżĄĆĘŁŃÓŚŹŻ\s'-]/g, "")), t && (u = $e(u)), u;
1529
+ },
1530
+ [e, n, t]
1531
+ ), O = b(
1532
+ (v) => {
1533
+ const u = L(v.target.value);
1534
+ i === void 0 && N(u), _ == null || _(v);
1535
+ },
1536
+ [_, i, L]
1537
+ ), H = b(
1538
+ (v) => {
1539
+ if (T(!0), c && I) {
1540
+ const u = I.trim().split(/\s+/).filter(Boolean);
1541
+ if (s && u.length < s) {
1542
+ const a = {
1543
+ valid: !1,
1544
+ error: `Enter at least ${s} word${s > 1 ? "s" : ""}`
1545
+ };
1546
+ y(a), l == null || l(a);
1547
+ } else {
1548
+ const a = { valid: !0 };
1549
+ y(a), l == null || l(a);
1550
+ }
1551
+ }
1552
+ p == null || p(v);
1553
+ },
1554
+ [p, c, I, s, l]
1555
+ ), U = g || m && !k.valid, S = $ || (m && !k.valid ? k.error : void 0);
1556
+ return /* @__PURE__ */ o(
1557
+ $t,
1558
+ {
1559
+ ...w,
1560
+ ref: f,
1561
+ type: "text",
1562
+ value: i !== void 0 ? I : void 0,
1563
+ defaultValue: i !== void 0 ? void 0 : h,
1564
+ onChange: O,
1565
+ onBlur: H,
1566
+ error: U,
1567
+ errorText: S,
1568
+ placeholder: E,
1569
+ startIcon: /* @__PURE__ */ D("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", stroke: "currentColor", strokeWidth: "1.5", children: [
1570
+ /* @__PURE__ */ o("circle", { cx: "8", cy: "5", r: "3" }),
1571
+ /* @__PURE__ */ o("path", { d: "M2 14c0-3 2.5-5 6-5s6 2 6 5" })
1572
+ ] })
1573
+ }
1574
+ );
1575
+ }), al = bt(function({
1576
+ formatOnChange: t = !0,
1577
+ validateOnBlur: e = !0,
1578
+ showValidIcon: n = !0,
1579
+ onValidationChange: s,
1580
+ onValueChange: c,
1581
+ value: l,
1582
+ defaultValue: i,
1583
+ onChange: h,
1584
+ onBlur: _,
1585
+ error: p,
1586
+ errorText: g,
1587
+ success: $,
1588
+ placeholder: E = "PL00 0000 0000 0000 0000 0000 0000",
1589
+ ...w
1590
+ }, f) {
1591
+ const [x, N] = P((i == null ? void 0 : i.toString()) ?? ""), [k, y] = P({ valid: !0 }), [m, T] = P(!1), I = l !== void 0 ? l.toString() : x, L = b(
1592
+ (u) => {
1593
+ const A = u.target.value.replace(/[^a-zA-Z0-9\s]/g, "").toUpperCase().replace(/\s/g, ""), M = t ? Ie(A) : A;
1594
+ l === void 0 && N(M), c == null || c(A, M), h == null || h(u);
1595
+ },
1596
+ [h, l, t, c]
1597
+ ), O = b(
1598
+ (u) => {
1599
+ if (T(!0), e && I) {
1600
+ const a = me(Ee(I));
1601
+ y(a), s == null || s(a);
1602
+ }
1603
+ _ == null || _(u);
1604
+ },
1605
+ [_, e, I, s]
1606
+ ), H = p || m && !k.valid, U = g || (m && !k.valid ? k.error : void 0), S = !H && ($ !== void 0 ? $ : m && k.valid && I.length > 0);
1607
+ return /* @__PURE__ */ o(
1608
+ $t,
1609
+ {
1610
+ ...w,
1611
+ ref: f,
1612
+ type: "text",
1613
+ value: l !== void 0 ? I : void 0,
1614
+ defaultValue: l !== void 0 ? void 0 : i,
1615
+ onChange: L,
1616
+ onBlur: O,
1617
+ error: H,
1618
+ errorText: U,
1619
+ success: S,
1620
+ placeholder: E,
1621
+ startIcon: /* @__PURE__ */ D("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", stroke: "currentColor", strokeWidth: "1.5", children: [
1622
+ /* @__PURE__ */ o("path", { d: "M1 14h14" }),
1623
+ /* @__PURE__ */ o("path", { d: "M2 6h12" }),
1624
+ /* @__PURE__ */ o("path", { d: "M8 2L1 6h14L8 2z" }),
1625
+ /* @__PURE__ */ o("path", { d: "M3 6v8M6 6v8M10 6v8M13 6v8" })
1626
+ ] }),
1627
+ endIcon: n && S ? /* @__PURE__ */ o("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", stroke: "var(--mineral-success)", strokeWidth: "2", children: /* @__PURE__ */ o("path", { d: "M3 8L6.5 11.5L13 4.5" }) }) : void 0,
1628
+ maxLength: 42
1629
+ }
1630
+ );
1631
+ }), Jn = {
1632
+ NIP: ve,
1633
+ PESEL: ye,
1634
+ REGON: Ne
1635
+ }, Xn = {
1636
+ NIP: 13,
1637
+ // 10 digits + 3 dashes
1638
+ PESEL: 11,
1639
+ REGON: 14
1640
+ }, Qn = {
1641
+ NIP: "123-456-78-19",
1642
+ PESEL: "00000000000",
1643
+ REGON: "000000000"
1644
+ }, dl = bt(function({
1645
+ taxIdType: t,
1646
+ formatOnChange: e = !0,
1647
+ validateOnBlur: n = !0,
1648
+ showValidIcon: s = !0,
1649
+ onValidationChange: c,
1650
+ onValueChange: l,
1651
+ value: i,
1652
+ defaultValue: h,
1653
+ onChange: _,
1654
+ onBlur: p,
1655
+ error: g,
1656
+ errorText: $,
1657
+ success: E,
1658
+ placeholder: w,
1659
+ ...f
1660
+ }, x) {
1661
+ const [N, k] = P((h == null ? void 0 : h.toString()) ?? ""), [y, m] = P({ valid: !0 }), [T, I] = P(!1), L = i !== void 0 ? i.toString() : N, O = b(
1662
+ (a) => {
1663
+ const A = zt(a.target.value), M = e && t === "NIP" ? Me(A) : A;
1664
+ i === void 0 && k(M), l == null || l(A), _ == null || _(a);
1665
+ },
1666
+ [_, i, e, t, l]
1667
+ ), H = b(
1668
+ (a) => {
1669
+ if (I(!0), n && L) {
1670
+ const A = Jn[t], M = A(zt(L));
1671
+ m(M), c == null || c(M);
1672
+ }
1673
+ p == null || p(a);
1674
+ },
1675
+ [p, n, L, t, c]
1676
+ ), U = g || T && !y.valid, S = $ || (T && !y.valid ? y.error : void 0), d = !U && (E !== void 0 ? E : T && y.valid && L.length > 0), v = /* @__PURE__ */ D("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", stroke: "currentColor", strokeWidth: "1.5", children: [
1677
+ /* @__PURE__ */ o("rect", { x: "1", y: "3", width: "14", height: "10", rx: "2" }),
1678
+ /* @__PURE__ */ o("line", { x1: "4", y1: "7", x2: "8", y2: "7" }),
1679
+ /* @__PURE__ */ o("line", { x1: "4", y1: "10", x2: "12", y2: "10" })
1680
+ ] }), u = s && d ? /* @__PURE__ */ o("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", stroke: "var(--mineral-success)", strokeWidth: "2", children: /* @__PURE__ */ o("path", { d: "M3 8L6.5 11.5L13 4.5" }) }) : void 0;
1681
+ return /* @__PURE__ */ o(
1682
+ $t,
1683
+ {
1684
+ ...f,
1685
+ ref: x,
1686
+ type: "text",
1687
+ inputMode: "numeric",
1688
+ value: i !== void 0 ? L : void 0,
1689
+ defaultValue: i !== void 0 ? void 0 : h,
1690
+ onChange: O,
1691
+ onBlur: H,
1692
+ error: U,
1693
+ errorText: S,
1694
+ success: d,
1695
+ placeholder: w ?? Qn[t],
1696
+ startIcon: v,
1697
+ endIcon: u,
1698
+ maxLength: Xn[t]
1699
+ }
1700
+ );
1701
+ }), Vn = "_symbol_57l8s_1", Cn = {
1702
+ symbol: Vn
1703
+ }, _l = bt(function({
1704
+ currency: t,
1705
+ currencySymbol: e,
1706
+ currencyPosition: n = "end",
1707
+ decimalSeparator: s = ",",
1708
+ thousandSeparator: c = " ",
1709
+ precision: l = 2,
1710
+ min: i,
1711
+ max: h,
1712
+ allowNegative: _ = !1,
1713
+ onValueChange: p,
1714
+ value: g,
1715
+ defaultValue: $,
1716
+ onChange: E,
1717
+ onBlur: w,
1718
+ placeholder: f = "0,00",
1719
+ startIcon: x,
1720
+ endIcon: N,
1721
+ ...k
1722
+ }, y) {
1723
+ const [m, T] = P(($ == null ? void 0 : $.toString()) ?? ""), I = g !== void 0 ? g.toString() : m, L = e ?? t ?? "", O = b(
1724
+ (S) => {
1725
+ const d = S.target.value;
1726
+ let v = "", u = !1;
1727
+ for (const M of d)
1728
+ M >= "0" && M <= "9" ? v += M : (M === "," || M === ".") && !u ? (v += s, u = !0) : M === "-" && _ && v.length === 0 && (v += "-");
1729
+ const a = Ut(v, { decimalSeparator: s, thousandSeparator: c, precision: l });
1730
+ g === void 0 && T(a);
1731
+ const A = Yt(a, c, s);
1732
+ p == null || p(A), E == null || E(S);
1733
+ },
1734
+ [E, g, s, c, l, _, p]
1735
+ ), H = b(
1736
+ (S) => {
1737
+ let d = Yt(I, c, s);
1738
+ if (d !== null) {
1739
+ i !== void 0 && d < i && (d = i), h !== void 0 && d > h && (d = h);
1740
+ const v = d.toFixed(l).replace(".", s), u = Ut(v, { decimalSeparator: s, thousandSeparator: c, precision: l });
1741
+ g === void 0 && T(u), p == null || p(d);
1742
+ }
1743
+ w == null || w(S);
1744
+ },
1745
+ [I, i, h, l, s, c, g, p, w]
1746
+ ), U = L ? /* @__PURE__ */ o("span", { className: Cn.symbol, children: L }) : void 0;
1747
+ return /* @__PURE__ */ o(
1748
+ $t,
1749
+ {
1750
+ ...k,
1751
+ ref: y,
1752
+ type: "text",
1753
+ inputMode: "decimal",
1754
+ value: g !== void 0 ? I : void 0,
1755
+ defaultValue: g !== void 0 ? void 0 : $,
1756
+ onChange: O,
1757
+ onBlur: H,
1758
+ placeholder: f,
1759
+ startIcon: n === "start" ? U : x,
1760
+ endIcon: n === "end" ? U : N
1761
+ }
1762
+ );
1763
+ }), ts = "_wrapper_1xcc1_1", es = "_fullWidth_1xcc1_9", rs = "_label_1xcc1_12", ns = "_labelFocused_1xcc1_19", ss = "_labelError_1xcc1_20", os = "_required_1xcc1_21", cs = "_trigger_1xcc1_24", ls = "_outlined_1xcc1_36", is = "_disabled_1xcc1_41", as = "_focused_1xcc1_42", ds = "_filled_1xcc1_44", _s = "_underlined_1xcc1_53", us = "_sm_1xcc1_63", ps = "_md_1xcc1_64", fs = "_lg_1xcc1_65", hs = "_triggerError_1xcc1_67", ms = "_value_1xcc1_73", bs = "_placeholder_1xcc1_82", vs = "_tags_1xcc1_85", gs = "_tag_1xcc1_85", ys = "_arrow_1xcc1_104", xs = "_arrowOpen_1xcc1_111", ws = "_clearBtn_1xcc1_114", Ns = "_spinner_1xcc1_133", $s = "_spin_1xcc1_133", Is = "_dropdown_1xcc1_147", Es = "_searchBox_1xcc1_152", ks = "_searchInput_1xcc1_157", Ms = "_optionsList_1xcc1_172", zs = "_option_1xcc1_172", Ts = "_optionActive_1xcc1_185", Ls = "_optionSelected_1xcc1_186", Ss = "_optionDisabled_1xcc1_187", Ds = "_checkbox_1xcc1_190", As = "_checkboxChecked_1xcc1_204", Fs = "_groupHeader_1xcc1_210", Rs = "_noOptions_1xcc1_220", Ps = "_bottomRow_1xcc1_228", Bs = "_helperText_1xcc1_233", Ws = "_errorTextMsg_1xcc1_234", Z = {
1764
+ wrapper: ts,
1765
+ fullWidth: es,
1766
+ label: rs,
1767
+ labelFocused: ns,
1768
+ labelError: ss,
1769
+ required: os,
1770
+ trigger: cs,
1771
+ outlined: ls,
1772
+ disabled: is,
1773
+ focused: as,
1774
+ filled: ds,
1775
+ underlined: _s,
1776
+ sm: us,
1777
+ md: ps,
1778
+ lg: fs,
1779
+ triggerError: hs,
1780
+ value: ms,
1781
+ placeholder: bs,
1782
+ tags: vs,
1783
+ tag: gs,
1784
+ arrow: ys,
1785
+ arrowOpen: xs,
1786
+ clearBtn: ws,
1787
+ spinner: Ns,
1788
+ spin: $s,
1789
+ dropdown: Is,
1790
+ searchBox: Es,
1791
+ searchInput: ks,
1792
+ optionsList: Ms,
1793
+ option: zs,
1794
+ optionActive: Ts,
1795
+ optionSelected: Ls,
1796
+ optionDisabled: Ss,
1797
+ checkbox: Ds,
1798
+ checkboxChecked: As,
1799
+ groupHeader: Fs,
1800
+ noOptions: Rs,
1801
+ bottomRow: Ps,
1802
+ helperText: Bs,
1803
+ errorTextMsg: Ws
1804
+ };
1805
+ function ul({
1806
+ options: r,
1807
+ value: t,
1808
+ defaultValue: e,
1809
+ onChange: n,
1810
+ multiple: s = !1,
1811
+ searchable: c = !1,
1812
+ placeholder: l = "Select...",
1813
+ disabled: i = !1,
1814
+ name: h,
1815
+ id: _,
1816
+ variant: p = "outlined",
1817
+ size: g = "md",
1818
+ color: $,
1819
+ fullWidth: E = !1,
1820
+ label: w,
1821
+ helperText: f,
1822
+ errorText: x,
1823
+ error: N = !1,
1824
+ required: k = !1,
1825
+ loading: y = !1,
1826
+ clearable: m = !1,
1827
+ maxHeight: T = 300,
1828
+ noOptionsText: I = "No options",
1829
+ renderOption: L,
1830
+ renderValue: O,
1831
+ className: H,
1832
+ style: U
1833
+ }) {
1834
+ const [S, d] = P(!1), [v, u] = P(e ?? (s ? [] : "")), [a, A] = P(""), M = pt(null), j = t !== void 0 ? t : v, ot = N || !!x, ct = mt(() => Array.isArray(j) ? j : j ? [j] : [], [j]), rt = mt(
1835
+ () => r.filter((K) => ct.includes(K.value)),
1836
+ [r, ct]
1837
+ ), q = mt(() => {
1838
+ if (!c || !a) return r;
1839
+ const K = a.toLowerCase();
1840
+ return r.filter((z) => z.label.toLowerCase().includes(K));
1841
+ }, [r, c, a]), st = mt(() => {
1842
+ const K = /* @__PURE__ */ new Map();
1843
+ for (const z of q) {
1844
+ const W = z.group ?? "";
1845
+ K.has(W) || K.set(W, []), K.get(W).push(z);
1846
+ }
1847
+ return K;
1848
+ }, [q]), F = q, Y = b(
1849
+ (K) => {
1850
+ const z = F[K];
1851
+ if (!(!z || z.disabled))
1852
+ if (s) {
1853
+ const W = Array.isArray(j) ? j : [], X = W.includes(z.value) ? W.filter((ut) => ut !== z.value) : [...W, z.value];
1854
+ t === void 0 && u(X), n == null || n(X);
1855
+ } else
1856
+ t === void 0 && u(z.value), n == null || n(z.value), d(!1), A("");
1857
+ },
1858
+ [F, s, j, t, n]
1859
+ ), { activeIndex: dt, setActiveIndex: nt, resetIndex: _t, onKeyDown: lt } = Ct({
1860
+ itemCount: F.length,
1861
+ onSelect: Y,
1862
+ onClose: () => {
1863
+ d(!1), A("");
1864
+ },
1865
+ isOpen: S
1866
+ }), vt = b(() => {
1867
+ i || (d((K) => !K), _t());
1868
+ }, [i, _t]), C = b(
1869
+ (K) => {
1870
+ K.stopPropagation();
1871
+ const z = s ? [] : "";
1872
+ t === void 0 && u(z), n == null || n(z);
1873
+ },
1874
+ [s, t, n]
1875
+ ), wt = mt(() => O && rt.length > 0 ? O(s ? rt : rt[0]) : s && rt.length > 0 ? /* @__PURE__ */ o("span", { className: Z.tags, children: rt.map((K) => /* @__PURE__ */ o("span", { className: Z.tag, children: K.label }, K.value)) }) : !s && rt.length > 0 ? rt[0].label : /* @__PURE__ */ o("span", { className: Z.placeholder, children: l }), [rt, s, O, l]);
1876
+ return /* @__PURE__ */ D(
1877
+ "div",
1878
+ {
1879
+ className: B(Z.wrapper, E && Z.fullWidth, H),
1880
+ style: U,
1881
+ children: [
1882
+ w && /* @__PURE__ */ o(
1883
+ "label",
1884
+ {
1885
+ htmlFor: _,
1886
+ className: B(
1887
+ Z.label,
1888
+ S && Z.labelFocused,
1889
+ ot && Z.labelError,
1890
+ k && Z.required
1891
+ ),
1892
+ children: w
1893
+ }
1894
+ ),
1895
+ /* @__PURE__ */ D(
1896
+ "div",
1897
+ {
1898
+ ref: M,
1899
+ className: B(
1900
+ Z.trigger,
1901
+ Z[p],
1902
+ Z[g],
1903
+ S && Z.focused,
1904
+ ot && Z.triggerError,
1905
+ i && Z.disabled
1906
+ ),
1907
+ onClick: vt,
1908
+ onKeyDown: lt,
1909
+ tabIndex: i ? -1 : 0,
1910
+ role: "combobox",
1911
+ "aria-expanded": S,
1912
+ "aria-haspopup": "listbox",
1913
+ "aria-invalid": ot || void 0,
1914
+ id: _,
1915
+ children: [
1916
+ /* @__PURE__ */ o("span", { className: Z.value, children: wt }),
1917
+ y && /* @__PURE__ */ o("span", { className: Z.spinner }),
1918
+ m && ct.length > 0 && !y && !i && /* @__PURE__ */ o(
1919
+ "button",
1920
+ {
1921
+ type: "button",
1922
+ className: Z.clearBtn,
1923
+ onClick: C,
1924
+ tabIndex: -1,
1925
+ "aria-label": "Clear selection",
1926
+ children: "✕"
1927
+ }
1928
+ ),
1929
+ /* @__PURE__ */ o("span", { className: B(Z.arrow, S && Z.arrowOpen), children: "▾" })
1930
+ ]
1931
+ }
1932
+ ),
1933
+ h && /* @__PURE__ */ o("input", { type: "hidden", name: h, value: Array.isArray(j) ? j.join(",") : j }),
1934
+ /* @__PURE__ */ o(
1935
+ Dt,
1936
+ {
1937
+ open: S,
1938
+ anchorRef: M,
1939
+ onClose: () => {
1940
+ d(!1), A("");
1941
+ },
1942
+ matchWidth: !0,
1943
+ placement: "bottom-start",
1944
+ children: /* @__PURE__ */ D("div", { style: { maxHeight: T }, className: Z.dropdown, children: [
1945
+ c && /* @__PURE__ */ o("div", { className: Z.searchBox, children: /* @__PURE__ */ o(
1946
+ "input",
1947
+ {
1948
+ type: "text",
1949
+ className: Z.searchInput,
1950
+ placeholder: "Search...",
1951
+ value: a,
1952
+ onChange: (K) => {
1953
+ A(K.target.value), nt(0);
1954
+ },
1955
+ onKeyDown: lt,
1956
+ autoFocus: !0
1957
+ }
1958
+ ) }),
1959
+ F.length === 0 ? /* @__PURE__ */ o("div", { className: Z.noOptions, children: I }) : /* @__PURE__ */ o("div", { className: Z.optionsList, role: "listbox", children: [...st.entries()].map(([K, z]) => /* @__PURE__ */ D("div", { children: [
1960
+ K && /* @__PURE__ */ o("div", { className: Z.groupHeader, children: K }),
1961
+ z.map((W) => {
1962
+ const X = F.indexOf(W), ut = X === dt, yt = ct.includes(W.value);
1963
+ return /* @__PURE__ */ D(
1964
+ "div",
1965
+ {
1966
+ className: B(
1967
+ Z.option,
1968
+ ut && Z.optionActive,
1969
+ yt && Z.optionSelected,
1970
+ W.disabled && Z.optionDisabled
1971
+ ),
1972
+ onClick: () => !W.disabled && Y(X),
1973
+ onMouseEnter: () => nt(X),
1974
+ role: "option",
1975
+ "aria-selected": yt,
1976
+ "aria-disabled": W.disabled,
1977
+ children: [
1978
+ s && /* @__PURE__ */ o("span", { className: B(Z.checkbox, yt && Z.checkboxChecked), children: yt && "✓" }),
1979
+ L ? L(W, ut, yt) : W.label
1980
+ ]
1981
+ },
1982
+ W.value
1983
+ );
1984
+ })
1985
+ ] }, K)) })
1986
+ ] })
1987
+ }
1988
+ ),
1989
+ (x || f) && /* @__PURE__ */ o("div", { className: Z.bottomRow, children: x ? /* @__PURE__ */ o("span", { className: Z.errorTextMsg, role: "alert", children: x }) : /* @__PURE__ */ o("span", { className: Z.helperText, children: f }) })
1990
+ ]
1991
+ }
1992
+ );
1993
+ }
1994
+ const Hs = "_wrapper_m0r1z_1", Gs = "_fullWidth_m0r1z_9", Os = "_label_m0r1z_11", qs = "_labelFocused_m0r1z_18", Us = "_labelError_m0r1z_19", Ys = "_required_m0r1z_20", Zs = "_inputWrapper_m0r1z_23", js = "_outlined_m0r1z_34", Ks = "_disabled_m0r1z_35", Js = "_focused_m0r1z_36", Xs = "_filled_m0r1z_38", Qs = "_underlined_m0r1z_45", Vs = "_sm_m0r1z_49", Cs = "_md_m0r1z_50", to = "_lg_m0r1z_51", eo = "_inputError_m0r1z_53", ro = "_input_m0r1z_23", no = "_tags_m0r1z_71", so = "_tag_m0r1z_71", oo = "_tagRemove_m0r1z_85", co = "_spinner_m0r1z_100", lo = "_spin_m0r1z_100", io = "_clearBtn_m0r1z_112", ao = "_dropdown_m0r1z_124", _o = "_optionsList_m0r1z_126", uo = "_option_m0r1z_126", po = "_optionActive_m0r1z_136", fo = "_optionSelected_m0r1z_137", ho = "_noOptions_m0r1z_139", mo = "_loadingMsg_m0r1z_139", bo = "_bottomRow_m0r1z_146", vo = "_helperText_m0r1z_147", go = "_errorTextMsg_m0r1z_148", J = {
1995
+ wrapper: Hs,
1996
+ fullWidth: Gs,
1997
+ label: Os,
1998
+ labelFocused: qs,
1999
+ labelError: Us,
2000
+ required: Ys,
2001
+ inputWrapper: Zs,
2002
+ outlined: js,
2003
+ disabled: Ks,
2004
+ focused: Js,
2005
+ filled: Xs,
2006
+ underlined: Qs,
2007
+ sm: Vs,
2008
+ md: Cs,
2009
+ lg: to,
2010
+ inputError: eo,
2011
+ input: ro,
2012
+ tags: no,
2013
+ tag: so,
2014
+ tagRemove: oo,
2015
+ spinner: co,
2016
+ spin: lo,
2017
+ clearBtn: io,
2018
+ dropdown: ao,
2019
+ optionsList: _o,
2020
+ option: uo,
2021
+ optionActive: po,
2022
+ optionSelected: fo,
2023
+ noOptions: ho,
2024
+ loadingMsg: mo,
2025
+ bottomRow: bo,
2026
+ helperText: vo,
2027
+ errorTextMsg: go
2028
+ };
2029
+ function yo(r) {
2030
+ return typeof r == "string" ? r : String(r);
2031
+ }
2032
+ function xo(r) {
2033
+ return typeof r == "string" ? r : String(r);
2034
+ }
2035
+ function wo(r, t, e) {
2036
+ if (!t) return r;
2037
+ const n = t.toLowerCase();
2038
+ return r.filter((s) => e(s).toLowerCase().includes(n));
2039
+ }
2040
+ function pl({
2041
+ options: r,
2042
+ value: t,
2043
+ onChange: e,
2044
+ getOptionLabel: n = yo,
2045
+ getOptionValue: s = xo,
2046
+ filterOptions: c,
2047
+ multiple: l = !1,
2048
+ freeSolo: i = !1,
2049
+ debounceMs: h = 0,
2050
+ onInputChange: _,
2051
+ loading: p = !1,
2052
+ loadingText: g = "Loading...",
2053
+ noOptionsText: $ = "No options",
2054
+ placeholder: E = "Type to search...",
2055
+ disabled: w = !1,
2056
+ name: f,
2057
+ id: x,
2058
+ variant: N = "outlined",
2059
+ size: k = "md",
2060
+ fullWidth: y = !1,
2061
+ label: m,
2062
+ helperText: T,
2063
+ errorText: I,
2064
+ error: L = !1,
2065
+ required: O = !1,
2066
+ clearable: H = !1,
2067
+ maxHeight: U = 300,
2068
+ renderOption: S,
2069
+ renderTags: d,
2070
+ className: v,
2071
+ style: u
2072
+ }) {
2073
+ const [a, A] = P(!1), [M, j] = P(""), ot = pt(null), ct = pt(null), rt = L || !!I, q = mt(() => t === void 0 ? [] : Array.isArray(t) ? t : [t], [t]), st = mt(() => c ? c(r, M) : wo(r, M, n), [r, M, c, n]), F = Vt(
2074
+ (z) => _ == null ? void 0 : _(z),
2075
+ h
2076
+ ), Y = b(
2077
+ (z) => {
2078
+ j(z.target.value), F(z.target.value), a || A(!0);
2079
+ },
2080
+ [a, F]
2081
+ ), dt = b(
2082
+ (z) => {
2083
+ var X;
2084
+ const W = st[z];
2085
+ if (W) {
2086
+ if (l) {
2087
+ const ut = [...q], yt = s(W), R = ut.findIndex((it) => s(it) === yt);
2088
+ R >= 0 ? ut.splice(R, 1) : ut.push(W), e == null || e(ut), j("");
2089
+ } else
2090
+ e == null || e(W), j(n(W)), A(!1);
2091
+ (X = ct.current) == null || X.focus();
2092
+ }
2093
+ },
2094
+ [st, l, q, s, n, e]
2095
+ ), nt = b(
2096
+ (z) => {
2097
+ const W = [...q];
2098
+ W.splice(z, 1), e == null || e(l ? W : W[0] ?? "");
2099
+ },
2100
+ [q, e, l]
2101
+ ), { activeIndex: _t, setActiveIndex: lt, resetIndex: vt, onKeyDown: C } = Ct({
2102
+ itemCount: st.length,
2103
+ onSelect: dt,
2104
+ onClose: () => A(!1),
2105
+ isOpen: a
2106
+ }), wt = b(
2107
+ (z) => {
2108
+ if (z.key === "Enter" && i && _t < 0 && M) {
2109
+ e == null || e(M), A(!1);
2110
+ return;
2111
+ }
2112
+ if (z.key === "Backspace" && l && !M && q.length > 0) {
2113
+ nt(q.length - 1);
2114
+ return;
2115
+ }
2116
+ C(z);
2117
+ },
2118
+ [i, _t, M, l, q, e, C, nt]
2119
+ ), K = b(
2120
+ (z) => {
2121
+ var W;
2122
+ z.stopPropagation(), j(""), e == null || e(l ? [] : ""), (W = ct.current) == null || W.focus();
2123
+ },
2124
+ [l, e]
2125
+ );
2126
+ return /* @__PURE__ */ D(
2127
+ "div",
2128
+ {
2129
+ className: B(J.wrapper, y && J.fullWidth, v),
2130
+ style: u,
2131
+ children: [
2132
+ m && /* @__PURE__ */ o(
2133
+ "label",
2134
+ {
2135
+ htmlFor: x,
2136
+ className: B(
2137
+ J.label,
2138
+ a && J.labelFocused,
2139
+ rt && J.labelError,
2140
+ O && J.required
2141
+ ),
2142
+ children: m
2143
+ }
2144
+ ),
2145
+ /* @__PURE__ */ D(
2146
+ "div",
2147
+ {
2148
+ ref: ot,
2149
+ className: B(
2150
+ J.inputWrapper,
2151
+ J[N],
2152
+ J[k],
2153
+ a && J.focused,
2154
+ rt && J.inputError,
2155
+ w && J.disabled
2156
+ ),
2157
+ onClick: () => {
2158
+ var z;
2159
+ return (z = ct.current) == null ? void 0 : z.focus();
2160
+ },
2161
+ children: [
2162
+ l && q.length > 0 && (d ? d(q, nt) : /* @__PURE__ */ o("span", { className: J.tags, children: q.map((z, W) => /* @__PURE__ */ D("span", { className: J.tag, children: [
2163
+ n(z),
2164
+ /* @__PURE__ */ o(
2165
+ "button",
2166
+ {
2167
+ type: "button",
2168
+ className: J.tagRemove,
2169
+ onClick: (X) => {
2170
+ X.stopPropagation(), nt(W);
2171
+ },
2172
+ tabIndex: -1,
2173
+ children: "✕"
2174
+ }
2175
+ )
2176
+ ] }, s(z))) })),
2177
+ /* @__PURE__ */ o(
2178
+ "input",
2179
+ {
2180
+ ref: ct,
2181
+ type: "text",
2182
+ className: J.input,
2183
+ value: M,
2184
+ onChange: Y,
2185
+ onFocus: () => {
2186
+ A(!0), vt();
2187
+ },
2188
+ onKeyDown: wt,
2189
+ placeholder: q.length > 0 ? "" : E,
2190
+ disabled: w,
2191
+ id: x,
2192
+ "aria-expanded": a,
2193
+ "aria-haspopup": "listbox",
2194
+ "aria-invalid": rt || void 0,
2195
+ autoComplete: "off"
2196
+ }
2197
+ ),
2198
+ p && /* @__PURE__ */ o("span", { className: J.spinner }),
2199
+ H && (q.length > 0 || M) && !p && !w && /* @__PURE__ */ o(
2200
+ "button",
2201
+ {
2202
+ type: "button",
2203
+ className: J.clearBtn,
2204
+ onClick: K,
2205
+ tabIndex: -1,
2206
+ children: "✕"
2207
+ }
2208
+ )
2209
+ ]
2210
+ }
2211
+ ),
2212
+ f && /* @__PURE__ */ o(
2213
+ "input",
2214
+ {
2215
+ type: "hidden",
2216
+ name: f,
2217
+ value: q.map(s).join(",")
2218
+ }
2219
+ ),
2220
+ /* @__PURE__ */ o(
2221
+ Dt,
2222
+ {
2223
+ open: a && (st.length > 0 || p),
2224
+ anchorRef: ot,
2225
+ onClose: () => A(!1),
2226
+ matchWidth: !0,
2227
+ placement: "bottom-start",
2228
+ children: /* @__PURE__ */ o("div", { style: { maxHeight: U }, className: J.dropdown, children: p ? /* @__PURE__ */ o("div", { className: J.loadingMsg, children: g }) : st.length === 0 ? /* @__PURE__ */ o("div", { className: J.noOptions, children: $ }) : /* @__PURE__ */ o("div", { className: J.optionsList, role: "listbox", children: st.map((z, W) => {
2229
+ const X = W === _t, ut = q.some(
2230
+ (yt) => s(yt) === s(z)
2231
+ );
2232
+ return /* @__PURE__ */ o(
2233
+ "div",
2234
+ {
2235
+ className: B(
2236
+ J.option,
2237
+ X && J.optionActive,
2238
+ ut && J.optionSelected
2239
+ ),
2240
+ onClick: () => dt(W),
2241
+ onMouseEnter: () => lt(W),
2242
+ role: "option",
2243
+ "aria-selected": ut,
2244
+ children: S ? S(z, X) : n(z)
2245
+ },
2246
+ s(z)
2247
+ );
2248
+ }) }) })
2249
+ }
2250
+ ),
2251
+ (I || T) && /* @__PURE__ */ o("div", { className: J.bottomRow, children: I ? /* @__PURE__ */ o("span", { className: J.errorTextMsg, role: "alert", children: I }) : /* @__PURE__ */ o("span", { className: J.helperText, children: T }) })
2252
+ ]
2253
+ }
2254
+ );
2255
+ }
2256
+ const No = "_wrapper_1hzpa_1", $o = "_fullWidth_1hzpa_9", Io = "_label_1hzpa_11", Eo = "_labelFocused_1hzpa_18", ko = "_labelError_1hzpa_19", Mo = "_required_1hzpa_20", zo = "_trigger_1hzpa_23", To = "_outlined_1hzpa_31", Lo = "_disabled_1hzpa_32", So = "_focused_1hzpa_33", Do = "_filled_1hzpa_35", Ao = "_underlined_1hzpa_42", Fo = "_sm_1hzpa_45", Ro = "_md_1hzpa_46", Po = "_lg_1hzpa_47", Bo = "_triggerError_1hzpa_49", Wo = "_icon_1hzpa_52", Ho = "_input_1hzpa_60", Go = "_clearBtn_1hzpa_74", Oo = "_calendar_1hzpa_84", qo = "_calendarHeader_1hzpa_90", Uo = "_navBtn_1hzpa_97", Yo = "_headerTitle_1hzpa_114", Zo = "_dayNames_1hzpa_130", jo = "_dayName_1hzpa_130", Ko = "_dayGrid_1hzpa_146", Jo = "_day_1hzpa_130", Xo = "_dayDisabled_1hzpa_168", Qo = "_daySelected_1hzpa_168", Vo = "_dayOtherMonth_1hzpa_172", Co = "_dayToday_1hzpa_174", tc = "_monthGrid_1hzpa_187", ec = "_monthCell_1hzpa_193", rc = "_monthSelected_1hzpa_206", nc = "_footer_1hzpa_209", sc = "_todayBtn_1hzpa_217", oc = "_bottomRow_1hzpa_233", cc = "_helperText_1hzpa_234", lc = "_errorTextMsg_1hzpa_235", G = {
2257
+ wrapper: No,
2258
+ fullWidth: $o,
2259
+ label: Io,
2260
+ labelFocused: Eo,
2261
+ labelError: ko,
2262
+ required: Mo,
2263
+ trigger: zo,
2264
+ outlined: To,
2265
+ disabled: Lo,
2266
+ focused: So,
2267
+ filled: Do,
2268
+ underlined: Ao,
2269
+ sm: Fo,
2270
+ md: Ro,
2271
+ lg: Po,
2272
+ triggerError: Bo,
2273
+ icon: Wo,
2274
+ input: Ho,
2275
+ clearBtn: Go,
2276
+ calendar: Oo,
2277
+ calendarHeader: qo,
2278
+ navBtn: Uo,
2279
+ headerTitle: Yo,
2280
+ dayNames: Zo,
2281
+ dayName: jo,
2282
+ dayGrid: Ko,
2283
+ day: Jo,
2284
+ dayDisabled: Xo,
2285
+ daySelected: Qo,
2286
+ dayOtherMonth: Vo,
2287
+ dayToday: Co,
2288
+ monthGrid: tc,
2289
+ monthCell: ec,
2290
+ monthSelected: rc,
2291
+ footer: nc,
2292
+ todayBtn: sc,
2293
+ bottomRow: oc,
2294
+ helperText: cc,
2295
+ errorTextMsg: lc
2296
+ };
2297
+ function Mt(r) {
2298
+ if (!r) return null;
2299
+ if (r instanceof Date) return r;
2300
+ const t = new Date(r);
2301
+ return isNaN(t.getTime()) ? null : t;
2302
+ }
2303
+ function fl({
2304
+ value: r,
2305
+ defaultValue: t,
2306
+ onChange: e,
2307
+ format: n = "dd.MM.yyyy",
2308
+ locale: s = "pl",
2309
+ min: c,
2310
+ max: l,
2311
+ disabledDates: i,
2312
+ placeholder: h,
2313
+ disabled: _ = !1,
2314
+ readOnly: p = !1,
2315
+ name: g,
2316
+ id: $,
2317
+ variant: E = "outlined",
2318
+ size: w = "md",
2319
+ label: f,
2320
+ helperText: x,
2321
+ errorText: N,
2322
+ error: k = !1,
2323
+ required: y = !1,
2324
+ clearable: m = !1,
2325
+ inline: T = !1,
2326
+ showTodayButton: I = !0,
2327
+ firstDayOfWeek: L = 1,
2328
+ fullWidth: O = !1,
2329
+ className: H,
2330
+ style: U
2331
+ }) {
2332
+ const [S, d] = P(!1), [v, u] = P(Mt(t)), [a, A] = P(""), [M, j] = P(() => {
2333
+ const R = Mt(r) ?? Mt(t) ?? /* @__PURE__ */ new Date();
2334
+ return new Date(R.getFullYear(), R.getMonth(), 1);
2335
+ }), [ot, ct] = P("days"), rt = pt(null), q = Mt(r) ?? v, st = Mt(c), F = Mt(l), Y = k || !!N, dt = mt(() => a || (q ? Le(q, n) : ""), [q, n, a]), nt = Pe(s), _t = Be(s), lt = b(
2336
+ (R) => Te(R, st, F) ? Array.isArray(i) ? i.some((it) => Ft(it, R)) : typeof i == "function" ? i(R) : !1 : !0,
2337
+ [st, F, i]
2338
+ ), vt = b(
2339
+ (R) => {
2340
+ lt(R) || (r === void 0 && u(R), A(""), e == null || e(R), T || d(!1));
2341
+ },
2342
+ [r, e, T, lt]
2343
+ ), C = b(
2344
+ (R) => {
2345
+ A(R.target.value);
2346
+ },
2347
+ []
2348
+ ), wt = b(() => {
2349
+ if (a) {
2350
+ const R = Se(a, n);
2351
+ R && !lt(R) && vt(R), A("");
2352
+ }
2353
+ }, [a, n, lt, vt]), K = b(
2354
+ (R) => {
2355
+ R.stopPropagation(), r === void 0 && u(null), A(""), e == null || e(null);
2356
+ },
2357
+ [r, e]
2358
+ ), z = b(() => {
2359
+ const R = St(/* @__PURE__ */ new Date());
2360
+ vt(R), j(new Date(R.getFullYear(), R.getMonth(), 1));
2361
+ }, [vt]), W = mt(() => {
2362
+ const R = M.getFullYear(), it = M.getMonth(), At = Wt(R, it);
2363
+ let kt = ze(R, it);
2364
+ L === 1 && (kt = kt === 0 ? 6 : kt - 1);
2365
+ const Et = [], Tt = it === 0 ? 11 : it - 1, Ot = it === 0 ? R - 1 : R, re = Wt(Ot, Tt);
2366
+ for (let xt = kt - 1; xt >= 0; xt--)
2367
+ Et.push({ date: new Date(Ot, Tt, re - xt), currentMonth: !1 });
2368
+ for (let xt = 1; xt <= At; xt++)
2369
+ Et.push({ date: new Date(R, it, xt), currentMonth: !0 });
2370
+ const ne = 42 - Et.length, se = it === 11 ? 0 : it + 1, oe = it === 11 ? R + 1 : R;
2371
+ for (let xt = 1; xt <= ne; xt++)
2372
+ Et.push({ date: new Date(oe, se, xt), currentMonth: !1 });
2373
+ return Et;
2374
+ }, [M, L]), X = St(/* @__PURE__ */ new Date()), ut = () => /* @__PURE__ */ D("div", { className: G.calendar, children: [
2375
+ /* @__PURE__ */ D("div", { className: G.calendarHeader, children: [
2376
+ /* @__PURE__ */ o(
2377
+ "button",
2378
+ {
2379
+ type: "button",
2380
+ className: G.navBtn,
2381
+ onClick: () => j(Zt(M, -1)),
2382
+ "aria-label": "Previous month",
2383
+ children: "‹"
2384
+ }
2385
+ ),
2386
+ /* @__PURE__ */ D(
2387
+ "button",
2388
+ {
2389
+ type: "button",
2390
+ className: G.headerTitle,
2391
+ onClick: () => ct(ot === "days" ? "months" : "days"),
2392
+ children: [
2393
+ _t[M.getMonth()],
2394
+ " ",
2395
+ M.getFullYear()
2396
+ ]
2397
+ }
2398
+ ),
2399
+ /* @__PURE__ */ o(
2400
+ "button",
2401
+ {
2402
+ type: "button",
2403
+ className: G.navBtn,
2404
+ onClick: () => j(Zt(M, 1)),
2405
+ "aria-label": "Next month",
2406
+ children: "›"
2407
+ }
2408
+ )
2409
+ ] }),
2410
+ ot === "days" && /* @__PURE__ */ D(ce, { children: [
2411
+ /* @__PURE__ */ o("div", { className: G.dayNames, children: nt.map((R) => /* @__PURE__ */ o("span", { className: G.dayName, children: R }, R)) }),
2412
+ /* @__PURE__ */ o("div", { className: G.dayGrid, children: W.map(({ date: R, currentMonth: it }, At) => {
2413
+ const kt = q && Ft(R, q), Et = Ft(R, X), Tt = lt(R);
2414
+ return /* @__PURE__ */ o(
2415
+ "button",
2416
+ {
2417
+ type: "button",
2418
+ className: B(
2419
+ G.day,
2420
+ !it && G.dayOtherMonth,
2421
+ Et && G.dayToday,
2422
+ kt && G.daySelected,
2423
+ Tt && G.dayDisabled
2424
+ ),
2425
+ onClick: () => vt(R),
2426
+ disabled: Tt,
2427
+ tabIndex: -1,
2428
+ children: R.getDate()
2429
+ },
2430
+ At
2431
+ );
2432
+ }) })
2433
+ ] }),
2434
+ ot === "months" && /* @__PURE__ */ o("div", { className: G.monthGrid, children: _t.map((R, it) => /* @__PURE__ */ o(
2435
+ "button",
2436
+ {
2437
+ type: "button",
2438
+ className: B(
2439
+ G.monthCell,
2440
+ M.getMonth() === it && G.monthSelected
2441
+ ),
2442
+ onClick: () => {
2443
+ j(new Date(M.getFullYear(), it, 1)), ct("days");
2444
+ },
2445
+ children: R.slice(0, 3)
2446
+ },
2447
+ R
2448
+ )) }),
2449
+ I && /* @__PURE__ */ o("div", { className: G.footer, children: /* @__PURE__ */ o("button", { type: "button", className: G.todayBtn, onClick: z, children: "Today" }) })
2450
+ ] }), yt = /* @__PURE__ */ D("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", stroke: "currentColor", strokeWidth: "1.5", children: [
2451
+ /* @__PURE__ */ o("rect", { x: "1", y: "3", width: "14", height: "12", rx: "2" }),
2452
+ /* @__PURE__ */ o("line", { x1: "1", y1: "7", x2: "15", y2: "7" }),
2453
+ /* @__PURE__ */ o("line", { x1: "5", y1: "1", x2: "5", y2: "4" }),
2454
+ /* @__PURE__ */ o("line", { x1: "11", y1: "1", x2: "11", y2: "4" })
2455
+ ] });
2456
+ return T ? /* @__PURE__ */ D("div", { className: B(G.wrapper, O && G.fullWidth, H), style: U, children: [
2457
+ f && /* @__PURE__ */ o("label", { className: B(G.label, Y && G.labelError, y && G.required), children: f }),
2458
+ ut()
2459
+ ] }) : /* @__PURE__ */ D("div", { className: B(G.wrapper, O && G.fullWidth, H), style: U, children: [
2460
+ f && /* @__PURE__ */ o(
2461
+ "label",
2462
+ {
2463
+ htmlFor: $,
2464
+ className: B(
2465
+ G.label,
2466
+ S && G.labelFocused,
2467
+ Y && G.labelError,
2468
+ y && G.required
2469
+ ),
2470
+ children: f
2471
+ }
2472
+ ),
2473
+ /* @__PURE__ */ D(
2474
+ "div",
2475
+ {
2476
+ ref: rt,
2477
+ className: B(
2478
+ G.trigger,
2479
+ G[E],
2480
+ G[w],
2481
+ S && G.focused,
2482
+ Y && G.triggerError,
2483
+ _ && G.disabled
2484
+ ),
2485
+ onClick: () => !_ && !p && d(!0),
2486
+ children: [
2487
+ /* @__PURE__ */ o("span", { className: G.icon, children: yt }),
2488
+ /* @__PURE__ */ o(
2489
+ "input",
2490
+ {
2491
+ type: "text",
2492
+ className: G.input,
2493
+ value: dt,
2494
+ onChange: C,
2495
+ onBlur: wt,
2496
+ placeholder: h ?? n.toLowerCase(),
2497
+ disabled: _,
2498
+ readOnly: p,
2499
+ id: $,
2500
+ "aria-invalid": Y || void 0
2501
+ }
2502
+ ),
2503
+ m && q && !_ && /* @__PURE__ */ o(
2504
+ "button",
2505
+ {
2506
+ type: "button",
2507
+ className: G.clearBtn,
2508
+ onClick: K,
2509
+ tabIndex: -1,
2510
+ children: "✕"
2511
+ }
2512
+ )
2513
+ ]
2514
+ }
2515
+ ),
2516
+ g && q && /* @__PURE__ */ o("input", { type: "hidden", name: g, value: q.toISOString().split("T")[0] }),
2517
+ /* @__PURE__ */ o(
2518
+ Dt,
2519
+ {
2520
+ open: S,
2521
+ anchorRef: rt,
2522
+ onClose: () => d(!1),
2523
+ placement: "bottom-start",
2524
+ children: ut()
2525
+ }
2526
+ ),
2527
+ (N || x) && /* @__PURE__ */ o("div", { className: G.bottomRow, children: N ? /* @__PURE__ */ o("span", { className: G.errorTextMsg, role: "alert", children: N }) : /* @__PURE__ */ o("span", { className: G.helperText, children: x }) })
2528
+ ] });
2529
+ }
2530
+ const ic = "_wrapper_t0rzi_1", ac = "_fullWidth_t0rzi_9", dc = "_label_t0rzi_11", _c = "_labelFocused_t0rzi_18", uc = "_labelError_t0rzi_19", pc = "_required_t0rzi_20", fc = "_trigger_t0rzi_23", hc = "_outlined_t0rzi_30", mc = "_disabled_t0rzi_31", bc = "_focused_t0rzi_32", vc = "_filled_t0rzi_34", gc = "_underlined_t0rzi_41", yc = "_sm_t0rzi_44", xc = "_md_t0rzi_45", wc = "_lg_t0rzi_46", Nc = "_triggerError_t0rzi_48", $c = "_icon_t0rzi_51", Ic = "_input_t0rzi_59", Ec = "_clearBtn_t0rzi_71", kc = "_columns_t0rzi_81", Mc = "_column_t0rzi_81", zc = "_columnLabel_t0rzi_94", Tc = "_columnList_t0rzi_104", Lc = "_columnItem_t0rzi_111", Sc = "_columnItemSelected_t0rzi_129", Dc = "_bottomRow_t0rzi_136", Ac = "_helperText_t0rzi_137", Fc = "_errorTextMsg_t0rzi_138", V = {
2531
+ wrapper: ic,
2532
+ fullWidth: ac,
2533
+ label: dc,
2534
+ labelFocused: _c,
2535
+ labelError: uc,
2536
+ required: pc,
2537
+ trigger: fc,
2538
+ outlined: hc,
2539
+ disabled: mc,
2540
+ focused: bc,
2541
+ filled: vc,
2542
+ underlined: gc,
2543
+ sm: yc,
2544
+ md: xc,
2545
+ lg: wc,
2546
+ triggerError: Nc,
2547
+ icon: $c,
2548
+ input: Ic,
2549
+ clearBtn: Ec,
2550
+ columns: kc,
2551
+ column: Mc,
2552
+ columnLabel: zc,
2553
+ columnList: Tc,
2554
+ columnItem: Lc,
2555
+ columnItemSelected: Sc,
2556
+ bottomRow: Dc,
2557
+ helperText: Ac,
2558
+ errorTextMsg: Fc
2559
+ };
2560
+ function hl({
2561
+ value: r,
2562
+ defaultValue: t,
2563
+ onChange: e,
2564
+ format: n = "24h",
2565
+ showSeconds: s = !1,
2566
+ minuteStep: c = 1,
2567
+ min: l,
2568
+ max: i,
2569
+ placeholder: h,
2570
+ disabled: _ = !1,
2571
+ readOnly: p = !1,
2572
+ name: g,
2573
+ id: $,
2574
+ variant: E = "outlined",
2575
+ size: w = "md",
2576
+ label: f,
2577
+ helperText: x,
2578
+ errorText: N,
2579
+ error: k = !1,
2580
+ required: y = !1,
2581
+ clearable: m = !1,
2582
+ fullWidth: T = !1,
2583
+ className: I,
2584
+ style: L
2585
+ }) {
2586
+ const [O, H] = P(!1), [U, S] = P(t ?? ""), d = pt(null), v = r !== void 0 ? r : U, u = k || !!N, a = jt(v), A = mt(() => {
2587
+ const F = [], Y = n === "12h" ? 12 : 23, dt = n === "12h" ? 1 : 0;
2588
+ for (let nt = dt; nt <= Y; nt++) F.push(nt);
2589
+ return F;
2590
+ }, [n]), M = mt(() => {
2591
+ const F = [];
2592
+ for (let Y = 0; Y < 60; Y += c) F.push(Y);
2593
+ return F;
2594
+ }, [c]), j = mt(() => {
2595
+ if (!s) return [];
2596
+ const F = [];
2597
+ for (let Y = 0; Y < 60; Y++) F.push(Y);
2598
+ return F;
2599
+ }, [s]), ot = b(
2600
+ (F, Y, dt = 0) => {
2601
+ const nt = Kt(F, Y, dt, s);
2602
+ r === void 0 && S(nt), e == null || e(nt);
2603
+ },
2604
+ [r, e, s]
2605
+ ), ct = b(
2606
+ (F) => {
2607
+ const Y = F.target.value;
2608
+ r === void 0 && S(Y);
2609
+ },
2610
+ [r]
2611
+ ), rt = b(() => {
2612
+ const F = jt(v);
2613
+ if (F) {
2614
+ const Y = Kt(F.hours, F.minutes, F.seconds, s);
2615
+ r === void 0 && S(Y), e == null || e(Y);
2616
+ }
2617
+ }, [v, s, r, e]), q = b(
2618
+ (F) => {
2619
+ F.stopPropagation(), r === void 0 && S(""), e == null || e("");
2620
+ },
2621
+ [r, e]
2622
+ ), st = /* @__PURE__ */ D("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", stroke: "currentColor", strokeWidth: "1.5", children: [
2623
+ /* @__PURE__ */ o("circle", { cx: "8", cy: "8", r: "7" }),
2624
+ /* @__PURE__ */ o("line", { x1: "8", y1: "4", x2: "8", y2: "8" }),
2625
+ /* @__PURE__ */ o("line", { x1: "8", y1: "8", x2: "11", y2: "10" })
2626
+ ] });
2627
+ return /* @__PURE__ */ D("div", { className: B(V.wrapper, T && V.fullWidth, I), style: L, children: [
2628
+ f && /* @__PURE__ */ o(
2629
+ "label",
2630
+ {
2631
+ htmlFor: $,
2632
+ className: B(
2633
+ V.label,
2634
+ O && V.labelFocused,
2635
+ u && V.labelError,
2636
+ y && V.required
2637
+ ),
2638
+ children: f
2639
+ }
2640
+ ),
2641
+ /* @__PURE__ */ D(
2642
+ "div",
2643
+ {
2644
+ ref: d,
2645
+ className: B(
2646
+ V.trigger,
2647
+ V[E],
2648
+ V[w],
2649
+ O && V.focused,
2650
+ u && V.triggerError,
2651
+ _ && V.disabled
2652
+ ),
2653
+ onClick: () => !_ && !p && H(!0),
2654
+ children: [
2655
+ /* @__PURE__ */ o("span", { className: V.icon, children: st }),
2656
+ /* @__PURE__ */ o(
2657
+ "input",
2658
+ {
2659
+ type: "text",
2660
+ className: V.input,
2661
+ value: v,
2662
+ onChange: ct,
2663
+ onBlur: rt,
2664
+ placeholder: h ?? (s ? "HH:MM:SS" : "HH:MM"),
2665
+ disabled: _,
2666
+ readOnly: p,
2667
+ id: $,
2668
+ "aria-invalid": u || void 0
2669
+ }
2670
+ ),
2671
+ m && v && !_ && /* @__PURE__ */ o("button", { type: "button", className: V.clearBtn, onClick: q, tabIndex: -1, children: "✕" })
2672
+ ]
2673
+ }
2674
+ ),
2675
+ g && /* @__PURE__ */ o("input", { type: "hidden", name: g, value: v }),
2676
+ /* @__PURE__ */ o(
2677
+ Dt,
2678
+ {
2679
+ open: O,
2680
+ anchorRef: d,
2681
+ onClose: () => H(!1),
2682
+ placement: "bottom-start",
2683
+ children: /* @__PURE__ */ D("div", { className: V.columns, children: [
2684
+ /* @__PURE__ */ o(
2685
+ Bt,
2686
+ {
2687
+ items: A,
2688
+ selected: a == null ? void 0 : a.hours,
2689
+ onSelect: (F) => ot(F, (a == null ? void 0 : a.minutes) ?? 0, (a == null ? void 0 : a.seconds) ?? 0),
2690
+ label: "Hr"
2691
+ }
2692
+ ),
2693
+ /* @__PURE__ */ o(
2694
+ Bt,
2695
+ {
2696
+ items: M,
2697
+ selected: a == null ? void 0 : a.minutes,
2698
+ onSelect: (F) => ot((a == null ? void 0 : a.hours) ?? 0, F, (a == null ? void 0 : a.seconds) ?? 0),
2699
+ label: "Min"
2700
+ }
2701
+ ),
2702
+ s && /* @__PURE__ */ o(
2703
+ Bt,
2704
+ {
2705
+ items: j,
2706
+ selected: a == null ? void 0 : a.seconds,
2707
+ onSelect: (F) => ot((a == null ? void 0 : a.hours) ?? 0, (a == null ? void 0 : a.minutes) ?? 0, F),
2708
+ label: "Sec"
2709
+ }
2710
+ )
2711
+ ] })
2712
+ }
2713
+ ),
2714
+ (N || x) && /* @__PURE__ */ o("div", { className: V.bottomRow, children: N ? /* @__PURE__ */ o("span", { className: V.errorTextMsg, role: "alert", children: N }) : /* @__PURE__ */ o("span", { className: V.helperText, children: x }) })
2715
+ ] });
2716
+ }
2717
+ function Bt({
2718
+ items: r,
2719
+ selected: t,
2720
+ onSelect: e,
2721
+ label: n
2722
+ }) {
2723
+ const s = pt(null);
2724
+ gt(() => {
2725
+ if (t !== void 0 && s.current) {
2726
+ const l = s.current.querySelector(`[data-value="${t}"]`);
2727
+ l && l.scrollIntoView({ block: "center", behavior: "instant" });
2728
+ }
2729
+ }, [t]);
2730
+ const c = (l) => l.toString().padStart(2, "0");
2731
+ return /* @__PURE__ */ D("div", { className: V.column, children: [
2732
+ /* @__PURE__ */ o("div", { className: V.columnLabel, children: n }),
2733
+ /* @__PURE__ */ o("div", { ref: s, className: V.columnList, children: r.map((l) => /* @__PURE__ */ o(
2734
+ "button",
2735
+ {
2736
+ type: "button",
2737
+ "data-value": l,
2738
+ className: B(
2739
+ V.columnItem,
2740
+ l === t && V.columnItemSelected
2741
+ ),
2742
+ onClick: () => e(l),
2743
+ children: c(l)
2744
+ },
2745
+ l
2746
+ )) })
2747
+ ] });
2748
+ }
2749
+ const ee = Gt(null);
2750
+ function Rc() {
2751
+ return Ht(ee);
2752
+ }
2753
+ function ml({
2754
+ initialValues: r = {},
2755
+ onSubmit: t,
2756
+ onChange: e,
2757
+ validationMode: n = "onBlur",
2758
+ children: s,
2759
+ className: c,
2760
+ style: l,
2761
+ noValidate: i = !0
2762
+ }) {
2763
+ const [h, _] = P({ ...r }), [p, g] = P({}), [$, E] = P({}), [w, f] = P(!1), x = pt(/* @__PURE__ */ new Map()), N = b((d) => {
2764
+ x.current.set(d.name, d);
2765
+ }, []), k = b((d) => {
2766
+ x.current.delete(d);
2767
+ }, []), y = b(
2768
+ (d, v) => {
2769
+ const u = x.current.get(d);
2770
+ if (!u) return { valid: !0 };
2771
+ const a = v !== void 0 ? v : h[d], A = a != null ? String(a) : "";
2772
+ if (u.required) {
2773
+ const M = ae(A);
2774
+ if (!M.valid) return M;
2775
+ }
2776
+ if (u.validate)
2777
+ for (const M of u.validate) {
2778
+ const j = M(A);
2779
+ if (!j.valid) return j;
2780
+ }
2781
+ return { valid: !0 };
2782
+ },
2783
+ [h]
2784
+ ), m = b(
2785
+ (d) => {
2786
+ const v = y(d);
2787
+ return g((u) => {
2788
+ if (v.valid) {
2789
+ const a = { ...u };
2790
+ return delete a[d], a;
2791
+ }
2792
+ return { ...u, [d]: v.error };
2793
+ }), v;
2794
+ },
2795
+ [y]
2796
+ ), T = b(() => {
2797
+ let d = !0;
2798
+ const v = {};
2799
+ for (const [a] of x.current) {
2800
+ const A = y(a);
2801
+ A.valid || (d = !1, v[a] = A.error);
2802
+ }
2803
+ g(v);
2804
+ const u = {};
2805
+ for (const [a] of x.current)
2806
+ u[a] = !0;
2807
+ return E(u), d;
2808
+ }, [y]), I = b(
2809
+ (d, v) => {
2810
+ _((u) => {
2811
+ const a = { ...u, [d]: v };
2812
+ return e == null || e(a), a;
2813
+ }), n === "onChange" && $[d] && setTimeout(() => m(d), 0);
2814
+ },
2815
+ [e, n, $, m]
2816
+ ), L = b(
2817
+ (d, v) => {
2818
+ g((u) => ({ ...u, [d]: v }));
2819
+ },
2820
+ []
2821
+ ), O = b(
2822
+ (d, v) => {
2823
+ E((u) => ({ ...u, [d]: v })), n === "onBlur" && v && m(d);
2824
+ },
2825
+ [n, m]
2826
+ ), H = b(() => {
2827
+ _({ ...r }), g({}), E({}), f(!1);
2828
+ }, [r]), U = b(
2829
+ async (d) => {
2830
+ if (d.preventDefault(), w || !T()) return;
2831
+ f(!0);
2832
+ const u = {
2833
+ setSubmitting: f,
2834
+ resetForm: H,
2835
+ setFieldError: L
2836
+ };
2837
+ try {
2838
+ await (t == null ? void 0 : t(h, u));
2839
+ } finally {
2840
+ f(!1);
2841
+ }
2842
+ },
2843
+ [w, T, h, t, H, L]
2844
+ ), S = mt(
2845
+ () => ({
2846
+ values: h,
2847
+ errors: p,
2848
+ touched: $,
2849
+ registerField: N,
2850
+ unregisterField: k,
2851
+ setFieldValue: I,
2852
+ setFieldError: L,
2853
+ setFieldTouched: O,
2854
+ validateField: m,
2855
+ validateAll: T,
2856
+ resetForm: H,
2857
+ isSubmitting: w
2858
+ }),
2859
+ [h, p, $, N, k, I, L, O, m, T, H, w]
2860
+ );
2861
+ return /* @__PURE__ */ o(ee.Provider, { value: S, children: /* @__PURE__ */ o(
2862
+ "form",
2863
+ {
2864
+ onSubmit: U,
2865
+ noValidate: i,
2866
+ className: c,
2867
+ style: l,
2868
+ children: typeof s == "function" ? s(S) : s
2869
+ }
2870
+ ) });
2871
+ }
2872
+ function bl(r, t) {
2873
+ const e = Rc();
2874
+ gt(() => {
2875
+ if (e)
2876
+ return e.registerField({
2877
+ name: r,
2878
+ validate: t == null ? void 0 : t.validate,
2879
+ required: t == null ? void 0 : t.required
2880
+ }), () => e.unregisterField(r);
2881
+ }, [e, r, t == null ? void 0 : t.validate, t == null ? void 0 : t.required]);
2882
+ const n = b(
2883
+ (c) => {
2884
+ e == null || e.setFieldValue(r, c);
2885
+ },
2886
+ [e, r]
2887
+ ), s = b(() => {
2888
+ e == null || e.setFieldTouched(r, !0);
2889
+ }, [e, r]);
2890
+ return {
2891
+ value: (e == null ? void 0 : e.values[r]) ?? "",
2892
+ error: e == null ? void 0 : e.errors[r],
2893
+ touched: (e == null ? void 0 : e.touched[r]) ?? !1,
2894
+ onChange: n,
2895
+ onBlur: s
2896
+ };
2897
+ }
229
2898
  export {
230
- Kr as Input,
231
- Gr as MineralThemeProvider,
232
- _ as cn,
233
- Jr as useTheme
2899
+ pl as Autocomplete,
2900
+ Vc as Checkbox,
2901
+ fl as DatePicker,
2902
+ ml as Form,
2903
+ $t as Input,
2904
+ _l as InputCurrency,
2905
+ cl as InputEmail,
2906
+ al as InputIBAN,
2907
+ il as InputName,
2908
+ sl as InputNumber,
2909
+ nl as InputPassword,
2910
+ ll as InputPhone,
2911
+ ol as InputSearch,
2912
+ dl as InputTaxId,
2913
+ Hc as MineralThemeProvider,
2914
+ Dt as Popover,
2915
+ We as Portal,
2916
+ Cc as Radio,
2917
+ tl as RadioGroup,
2918
+ ul as Select,
2919
+ rl as Textarea,
2920
+ hl as TimePicker,
2921
+ el as Toggle,
2922
+ Zt as addMonths,
2923
+ Jc as addYears,
2924
+ Kc as adjustCursorAfterFormat,
2925
+ $e as capitalizeWords,
2926
+ B as cn,
2927
+ Zc as composeValidators,
2928
+ Wt as daysInMonth,
2929
+ ze as firstDayOfMonth,
2930
+ Ut as formatCurrency,
2931
+ Le as formatDate,
2932
+ Ie as formatIBAN,
2933
+ Me as formatNIP,
2934
+ ke as formatPhone,
2935
+ Kt as formatTime,
2936
+ Pe as getDayNames,
2937
+ Be as getMonthNames,
2938
+ Te as isDateInRange,
2939
+ Ft as isSameDay,
2940
+ Yt as parseCurrencyToNumber,
2941
+ Se as parseDate,
2942
+ jt as parseTime,
2943
+ jc as stripNonAlphanumeric,
2944
+ zt as stripNonDigits,
2945
+ St as stripTime,
2946
+ Ee as unformatIBAN,
2947
+ Qc as useClickOutside,
2948
+ Xc as useDebounce,
2949
+ Vt as useDebouncedCallback,
2950
+ Rc as useFormContext,
2951
+ bl as useFormField,
2952
+ Ct as useKeyboardNav,
2953
+ Gc as useTheme,
2954
+ _e as validateEmail,
2955
+ me as validateIBAN,
2956
+ qc as validateMaxLength,
2957
+ Oc as validateMinLength,
2958
+ ve as validateNIP,
2959
+ ye as validatePESEL,
2960
+ Uc as validatePattern,
2961
+ pe as validatePhone,
2962
+ Ne as validateREGON,
2963
+ Yc as validateRange,
2964
+ ae as validateRequired
234
2965
  };
235
2966
  //# sourceMappingURL=index.js.map