@inploi/plugin-chatbot 9.0.1 → 10.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cdn/index.js +3 -3
- package/dist/{chatbot-body-a533deae.js → chatbot-body-46d6ae0c.js} +445 -784
- package/dist/chatbot-body-92fd0d1f.cjs +1 -0
- package/dist/chatbot.d.ts +1 -2
- package/dist/chatbot.utils.d.ts +1 -6
- package/dist/components/chat-input/chat-input.constants.d.ts +1 -249
- package/dist/i18n.d.ts +90 -48
- package/dist/index-002c5e40.cjs +5 -0
- package/dist/{index-03247696.js → index-8b83b99d.js} +1622 -1848
- package/dist/interpreter.d.ts +0 -9
- package/dist/plugin-chatbot.cjs +1 -1
- package/dist/plugin-chatbot.js +1 -1
- package/package.json +5 -5
- package/dist/chatbot-body-3f51cdbc.cjs +0 -1
- package/dist/conditions.d.ts +0 -7
- package/dist/index-db52f862.cjs +0 -5
- package/dist/interpolation.d.ts +0 -3
|
@@ -1,94 +1,45 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { o as Xt, p as Yt, H as st, c as Re, g as Qt, i as me, A as Mr, u as Nr, M as at, z as R, h as se, _ as ue, a as ce, F as er, b as Y, d as c, e as je, f as Ge, y as xe, k as we, s as D, j as Tr, l as ge, m as Dr, n as rt, q as Q, r as Rr, t as tr, v as Or, w as Br, x as Pr, B as Fe, C as H, D as jr, E as $r, G as pe, I as Oe, J as qe, K as rr, L as Ur, N as zr, O as qr, P as Kr, Q as Hr, R as Gr, S as nr, T as Wr, U as Jr, V as Z, W as Zr, X as Xr, Y as Yr } from "./index-8b83b99d.js";
|
|
2
2
|
import "@inploi/sdk";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
context: t,
|
|
6
|
-
submissions: r,
|
|
7
|
-
ifBlock: n
|
|
8
|
-
}) => {
|
|
9
|
-
const [i, ...s] = e.compareKey.split(".");
|
|
3
|
+
var Vt = ({ condition: e, context: t, submissions: r, ifBlock: n }) => {
|
|
4
|
+
let [i, ...s] = e.compareKey.split(".");
|
|
10
5
|
if (!i)
|
|
11
6
|
return !1;
|
|
12
|
-
|
|
13
|
-
context: t,
|
|
14
|
-
key: i,
|
|
15
|
-
path: s,
|
|
16
|
-
submissions: r
|
|
17
|
-
});
|
|
7
|
+
let o = Xt({ context: t, key: i, path: s, submissions: r });
|
|
18
8
|
if (!o)
|
|
19
9
|
return !1;
|
|
20
10
|
switch (o.type) {
|
|
21
11
|
case "address": {
|
|
22
|
-
|
|
12
|
+
let a = st(o.value, s);
|
|
23
13
|
switch (e.compare) {
|
|
24
14
|
case "equals":
|
|
25
15
|
return a === e.compareValue;
|
|
26
16
|
case "contains":
|
|
27
|
-
return a ? a.includes(e.compareValue)
|
|
17
|
+
return typeof a != "string" ? !1 : a.includes(e.compareValue);
|
|
28
18
|
case "notEquals":
|
|
29
19
|
return a !== e.compareValue;
|
|
30
20
|
case "notContains":
|
|
31
|
-
return a ? !a.includes(e.compareValue)
|
|
21
|
+
return typeof a != "string" ? !0 : !a.includes(e.compareValue);
|
|
32
22
|
}
|
|
33
23
|
break;
|
|
34
24
|
}
|
|
35
25
|
case "integration": {
|
|
36
26
|
if (typeof o.value != "object" || Array.isArray(o.value))
|
|
37
27
|
return !1;
|
|
38
|
-
|
|
39
|
-
...n,
|
|
40
|
-
data: {
|
|
41
|
-
compareKey: "_temp",
|
|
42
|
-
compare: e.compare,
|
|
43
|
-
compareValue: e.compareValue
|
|
44
|
-
}
|
|
45
|
-
};
|
|
28
|
+
let a = st(o.value, s), f = { ...n, data: { compareKey: "_temp", compare: e.compare, compareValue: e.compareValue } };
|
|
46
29
|
switch (typeof a) {
|
|
47
30
|
case "boolean":
|
|
48
|
-
return De(f, {
|
|
49
|
-
submissions: {
|
|
50
|
-
_temp: {
|
|
51
|
-
value: a,
|
|
52
|
-
type: "boolean"
|
|
53
|
-
}
|
|
54
|
-
},
|
|
55
|
-
context: t
|
|
56
|
-
});
|
|
31
|
+
return De(f, { submissions: { _temp: { value: a, type: "boolean" } }, context: t });
|
|
57
32
|
case "string":
|
|
58
|
-
return De(f, {
|
|
59
|
-
submissions: {
|
|
60
|
-
_temp: {
|
|
61
|
-
value: a,
|
|
62
|
-
type: "string"
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
context: t
|
|
66
|
-
});
|
|
33
|
+
return De(f, { submissions: { _temp: { value: a, type: "string" } }, context: t });
|
|
67
34
|
case "number":
|
|
68
|
-
return De(f, {
|
|
69
|
-
submissions: {
|
|
70
|
-
_temp: {
|
|
71
|
-
value: a,
|
|
72
|
-
type: "number"
|
|
73
|
-
}
|
|
74
|
-
},
|
|
75
|
-
context: t
|
|
76
|
-
});
|
|
35
|
+
return De(f, { submissions: { _temp: { value: a, type: "number" } }, context: t });
|
|
77
36
|
case "object":
|
|
78
|
-
return Array.isArray(a) && a.every(
|
|
79
|
-
submissions: {
|
|
80
|
-
_temp: {
|
|
81
|
-
value: a,
|
|
82
|
-
type: "enum"
|
|
83
|
-
}
|
|
84
|
-
},
|
|
85
|
-
context: t
|
|
86
|
-
}) : !1;
|
|
37
|
+
return Array.isArray(a) && a.every((p) => typeof p == "string") ? De(f, { submissions: { _temp: { value: a, type: "enum" } }, context: t }) : !1;
|
|
87
38
|
}
|
|
88
39
|
break;
|
|
89
40
|
}
|
|
90
41
|
case "boolean": {
|
|
91
|
-
|
|
42
|
+
let a = e.compareValue === "true";
|
|
92
43
|
switch (e.compare) {
|
|
93
44
|
case "equals":
|
|
94
45
|
return o.value === a;
|
|
@@ -99,7 +50,7 @@ const Et = ({
|
|
|
99
50
|
}
|
|
100
51
|
case "phone":
|
|
101
52
|
case "string": {
|
|
102
|
-
|
|
53
|
+
let a = o.type === "phone" ? Yt(o.value) : o.value;
|
|
103
54
|
switch (e.compare) {
|
|
104
55
|
case "equals":
|
|
105
56
|
return a === e.compareValue;
|
|
@@ -114,7 +65,7 @@ const Et = ({
|
|
|
114
65
|
}
|
|
115
66
|
case "number": {
|
|
116
67
|
try {
|
|
117
|
-
|
|
68
|
+
let a = Number(e.compareValue);
|
|
118
69
|
switch (e.compare) {
|
|
119
70
|
case "equals":
|
|
120
71
|
return o.value === a;
|
|
@@ -147,42 +98,21 @@ const Et = ({
|
|
|
147
98
|
}
|
|
148
99
|
break;
|
|
149
100
|
}
|
|
150
|
-
}, De = (e, {
|
|
151
|
-
|
|
152
|
-
submissions: r
|
|
153
|
-
}) => {
|
|
154
|
-
const n = "combinator" in e.data ? e.data.conditions : [e.data];
|
|
101
|
+
}, De = (e, { context: t, submissions: r }) => {
|
|
102
|
+
let n = "combinator" in e.data ? e.data.conditions : [e.data];
|
|
155
103
|
if (("combinator" in e.data ? e.data.combinator : "and") === "or") {
|
|
156
|
-
for (
|
|
157
|
-
if (
|
|
158
|
-
condition: s,
|
|
159
|
-
context: t,
|
|
160
|
-
submissions: r,
|
|
161
|
-
ifBlock: e
|
|
162
|
-
}))
|
|
104
|
+
for (let i of n)
|
|
105
|
+
if (Vt({ condition: i, context: t, submissions: r, ifBlock: e }))
|
|
163
106
|
return !0;
|
|
164
107
|
return !1;
|
|
165
108
|
} else {
|
|
166
|
-
for (
|
|
167
|
-
if (!
|
|
168
|
-
condition: s,
|
|
169
|
-
context: t,
|
|
170
|
-
submissions: r,
|
|
171
|
-
ifBlock: e
|
|
172
|
-
}))
|
|
109
|
+
for (let i of n)
|
|
110
|
+
if (!Vt({ condition: i, context: t, submissions: r, ifBlock: e }))
|
|
173
111
|
return !1;
|
|
174
112
|
return !0;
|
|
175
113
|
}
|
|
176
|
-
}, Qr = /{{\s*([^}]+?)\s*(?:\|\s*([^}]+?)\s*)?}}/g,
|
|
177
|
-
context: t
|
|
178
|
-
submissions: r
|
|
179
|
-
}) => e.replace(Qr, (n, i, s = "") => {
|
|
180
|
-
const [o, ...a] = i.trim().split("."), f = ar({
|
|
181
|
-
key: o,
|
|
182
|
-
path: a,
|
|
183
|
-
submissions: r,
|
|
184
|
-
context: t
|
|
185
|
-
});
|
|
114
|
+
}, Qr = /{{\s*([^}]+?)\s*(?:\|\s*([^}]+?)\s*)?}}/g, en = (e, { context: t, submissions: r }) => e.replace(Qr, (n, i, s = "") => {
|
|
115
|
+
let [o, ...a] = i.trim().split("."), f = Xt({ key: o, path: a, submissions: r, context: t });
|
|
186
116
|
if (!f)
|
|
187
117
|
return s;
|
|
188
118
|
switch (f.type) {
|
|
@@ -198,11 +128,11 @@ const Et = ({
|
|
|
198
128
|
case "string":
|
|
199
129
|
return f.value ? f.value.toString() : s;
|
|
200
130
|
case "phone":
|
|
201
|
-
return
|
|
131
|
+
return Yt(f.value);
|
|
202
132
|
case "integration": {
|
|
203
133
|
if (typeof f.value != "object" || Array.isArray(f.value))
|
|
204
134
|
break;
|
|
205
|
-
|
|
135
|
+
let p = st(f.value, a);
|
|
206
136
|
switch (typeof p) {
|
|
207
137
|
case "boolean":
|
|
208
138
|
return p === !0 ? "true" : "false";
|
|
@@ -211,14 +141,21 @@ const Et = ({
|
|
|
211
141
|
case "number":
|
|
212
142
|
return p.toString();
|
|
213
143
|
case "object":
|
|
214
|
-
if (Array.isArray(p) && p.every(
|
|
144
|
+
if (Array.isArray(p) && p.every((C) => typeof C == "string"))
|
|
215
145
|
return p.join(", ");
|
|
216
146
|
}
|
|
217
147
|
break;
|
|
218
148
|
}
|
|
219
149
|
}
|
|
220
150
|
return s;
|
|
221
|
-
})
|
|
151
|
+
});
|
|
152
|
+
const sr = ({
|
|
153
|
+
context: e,
|
|
154
|
+
submissions: t
|
|
155
|
+
}) => ({
|
|
156
|
+
context: e,
|
|
157
|
+
submissions: t ?? {}
|
|
158
|
+
}), ae = (e, t) => en(e, sr(t)), tn = (e, t) => De(e, sr(t)), ar = ({
|
|
222
159
|
node: e,
|
|
223
160
|
nodes: t,
|
|
224
161
|
stopWhen: r
|
|
@@ -227,12 +164,12 @@ const Et = ({
|
|
|
227
164
|
return e;
|
|
228
165
|
const n = e.nextId ? t.find((i) => i.id === e.nextId) : void 0;
|
|
229
166
|
if (n)
|
|
230
|
-
return
|
|
167
|
+
return ar({
|
|
231
168
|
node: n,
|
|
232
169
|
nodes: t,
|
|
233
170
|
stopWhen: r
|
|
234
171
|
});
|
|
235
|
-
},
|
|
172
|
+
}, rn = ({
|
|
236
173
|
childNode: e,
|
|
237
174
|
nodes: t
|
|
238
175
|
}) => {
|
|
@@ -242,7 +179,7 @@ const Et = ({
|
|
|
242
179
|
const s = t.find((a) => a.id === i.branchId);
|
|
243
180
|
if (!s)
|
|
244
181
|
return !1;
|
|
245
|
-
const o =
|
|
182
|
+
const o = ar({
|
|
246
183
|
node: s,
|
|
247
184
|
nodes: t,
|
|
248
185
|
stopWhen: (a) => a.id === e.id
|
|
@@ -251,7 +188,7 @@ const Et = ({
|
|
|
251
188
|
});
|
|
252
189
|
if (n != null && n.nextId)
|
|
253
190
|
return t.find((i) => i.id === n.nextId);
|
|
254
|
-
},
|
|
191
|
+
}, nn = ({
|
|
255
192
|
flow: e,
|
|
256
193
|
analytics: t,
|
|
257
194
|
logger: r,
|
|
@@ -280,7 +217,7 @@ const Et = ({
|
|
|
280
217
|
const V = o();
|
|
281
218
|
p == null || p(b, E);
|
|
282
219
|
try {
|
|
283
|
-
await
|
|
220
|
+
await sn({
|
|
284
221
|
flow: e,
|
|
285
222
|
analytics: h,
|
|
286
223
|
logger: r,
|
|
@@ -305,7 +242,7 @@ const Et = ({
|
|
|
305
242
|
}
|
|
306
243
|
},
|
|
307
244
|
next: (x) => {
|
|
308
|
-
const _ = x ? e.nodes.find((I) => I.id === x) :
|
|
245
|
+
const _ = x ? e.nodes.find((I) => I.id === x) : rn({
|
|
309
246
|
childNode: b,
|
|
310
247
|
nodes: e.nodes
|
|
311
248
|
});
|
|
@@ -314,7 +251,7 @@ const Et = ({
|
|
|
314
251
|
end: () => f == null ? void 0 : f(b)
|
|
315
252
|
});
|
|
316
253
|
} catch (x) {
|
|
317
|
-
if (x instanceof
|
|
254
|
+
if (x instanceof Mr)
|
|
318
255
|
return;
|
|
319
256
|
throw x;
|
|
320
257
|
}
|
|
@@ -342,99 +279,99 @@ const Et = ({
|
|
|
342
279
|
v.abort();
|
|
343
280
|
}
|
|
344
281
|
};
|
|
345
|
-
},
|
|
346
|
-
async function
|
|
282
|
+
}, ir = (e) => `+${e.countryCode} ${e.phoneNumber}`;
|
|
283
|
+
async function sn(e) {
|
|
347
284
|
const t = e.node;
|
|
348
285
|
switch (t.type) {
|
|
349
286
|
case "text":
|
|
350
|
-
return
|
|
287
|
+
return pn({
|
|
351
288
|
...e,
|
|
352
289
|
node: t
|
|
353
290
|
});
|
|
354
291
|
case "image":
|
|
355
|
-
return
|
|
292
|
+
return mn({
|
|
356
293
|
...e,
|
|
357
294
|
node: t
|
|
358
295
|
});
|
|
359
296
|
case "question-text":
|
|
360
|
-
return
|
|
297
|
+
return gn({
|
|
361
298
|
...e,
|
|
362
299
|
node: t
|
|
363
300
|
});
|
|
364
301
|
case "question-enum":
|
|
365
|
-
return
|
|
302
|
+
return vn({
|
|
366
303
|
...e,
|
|
367
304
|
node: t
|
|
368
305
|
});
|
|
369
306
|
case "question-number":
|
|
370
|
-
return
|
|
307
|
+
return yn({
|
|
371
308
|
...e,
|
|
372
309
|
node: t
|
|
373
310
|
});
|
|
374
311
|
case "question-phone":
|
|
375
|
-
return
|
|
312
|
+
return bn({
|
|
376
313
|
...e,
|
|
377
314
|
node: t
|
|
378
315
|
});
|
|
379
316
|
case "question-boolean":
|
|
380
|
-
return
|
|
317
|
+
return xn({
|
|
381
318
|
...e,
|
|
382
319
|
node: t
|
|
383
320
|
});
|
|
384
321
|
case "question-file":
|
|
385
|
-
return
|
|
322
|
+
return kn({
|
|
386
323
|
...e,
|
|
387
324
|
node: t
|
|
388
325
|
});
|
|
389
326
|
case "question-address":
|
|
390
|
-
return
|
|
327
|
+
return wn({
|
|
391
328
|
...e,
|
|
392
329
|
node: t
|
|
393
330
|
});
|
|
394
331
|
case "end-flow":
|
|
395
|
-
return
|
|
332
|
+
return _n({
|
|
396
333
|
...e,
|
|
397
334
|
node: t
|
|
398
335
|
});
|
|
399
336
|
case "if-block":
|
|
400
|
-
return
|
|
337
|
+
return hn({
|
|
401
338
|
...e,
|
|
402
339
|
node: t
|
|
403
340
|
});
|
|
404
341
|
case "jump":
|
|
405
|
-
return
|
|
342
|
+
return cn({
|
|
406
343
|
...e,
|
|
407
344
|
node: t
|
|
408
345
|
});
|
|
409
346
|
case "link":
|
|
410
|
-
return
|
|
347
|
+
return fn({
|
|
411
348
|
...e,
|
|
412
349
|
node: t
|
|
413
350
|
});
|
|
414
351
|
case "integration-application-submit":
|
|
415
|
-
return
|
|
352
|
+
return dn({
|
|
416
353
|
...e,
|
|
417
354
|
node: t
|
|
418
355
|
});
|
|
419
356
|
case "add-submission":
|
|
420
|
-
return
|
|
357
|
+
return un({
|
|
421
358
|
...e,
|
|
422
359
|
node: t
|
|
423
360
|
});
|
|
424
361
|
case "integration-workflow-get":
|
|
425
362
|
throw Error("Workflow should be unreachable");
|
|
426
363
|
case "identify":
|
|
427
|
-
return
|
|
364
|
+
return on({
|
|
428
365
|
...e,
|
|
429
366
|
node: t
|
|
430
367
|
});
|
|
431
368
|
case "check-duplicate":
|
|
432
|
-
return
|
|
369
|
+
return ln({
|
|
433
370
|
...e,
|
|
434
371
|
node: t
|
|
435
372
|
});
|
|
436
373
|
case "feedback":
|
|
437
|
-
return
|
|
374
|
+
return an({
|
|
438
375
|
...e,
|
|
439
376
|
node: t
|
|
440
377
|
});
|
|
@@ -449,13 +386,13 @@ const Ve = (e, t) => {
|
|
|
449
386
|
throw new Error(`Submission at “${t}” is not a string or number`);
|
|
450
387
|
return r;
|
|
451
388
|
};
|
|
452
|
-
async function
|
|
389
|
+
async function an({
|
|
453
390
|
next: e,
|
|
454
391
|
node: t
|
|
455
392
|
}) {
|
|
456
393
|
e(t.nextId);
|
|
457
394
|
}
|
|
458
|
-
async function
|
|
395
|
+
async function on({
|
|
459
396
|
next: e,
|
|
460
397
|
node: t,
|
|
461
398
|
analytics: r,
|
|
@@ -488,7 +425,7 @@ async function sn({
|
|
|
488
425
|
e(t.nextId);
|
|
489
426
|
}
|
|
490
427
|
}
|
|
491
|
-
async function
|
|
428
|
+
async function ln({
|
|
492
429
|
next: e,
|
|
493
430
|
node: t,
|
|
494
431
|
talentBankClient: r,
|
|
@@ -519,13 +456,13 @@ async function an({
|
|
|
519
456
|
value: a
|
|
520
457
|
}), e(t.nextId);
|
|
521
458
|
}
|
|
522
|
-
async function
|
|
459
|
+
async function cn({
|
|
523
460
|
next: e,
|
|
524
461
|
node: t
|
|
525
462
|
}) {
|
|
526
463
|
e(t.data.targetId);
|
|
527
464
|
}
|
|
528
|
-
async function
|
|
465
|
+
async function un({
|
|
529
466
|
next: e,
|
|
530
467
|
node: t,
|
|
531
468
|
logger: r,
|
|
@@ -544,7 +481,7 @@ async function ln({
|
|
|
544
481
|
})
|
|
545
482
|
}, e(t.nextId);
|
|
546
483
|
}
|
|
547
|
-
async function
|
|
484
|
+
async function dn({
|
|
548
485
|
chat: e,
|
|
549
486
|
next: t,
|
|
550
487
|
node: r,
|
|
@@ -576,13 +513,13 @@ async function cn({
|
|
|
576
513
|
anonymous_id: v,
|
|
577
514
|
session_id: h,
|
|
578
515
|
job: a.job,
|
|
579
|
-
submissions:
|
|
516
|
+
submissions: Nr(s || {})
|
|
580
517
|
})
|
|
581
518
|
}).catch((b) => b);
|
|
582
519
|
r.data.key && e.addToSubmissions(r.data.key, {
|
|
583
520
|
type: "integration",
|
|
584
521
|
value: y
|
|
585
|
-
}),
|
|
522
|
+
}), at(y).with({
|
|
586
523
|
integration_response: R.select(R.union({
|
|
587
524
|
service: R.optional(R.string),
|
|
588
525
|
status: R.number,
|
|
@@ -612,7 +549,7 @@ async function cn({
|
|
|
612
549
|
}
|
|
613
550
|
});
|
|
614
551
|
}).otherwise(() => {
|
|
615
|
-
}), await
|
|
552
|
+
}), await at(y).with({
|
|
616
553
|
integration_response: {
|
|
617
554
|
data: R.select("redirect", {
|
|
618
555
|
redirect_url: R.string,
|
|
@@ -688,7 +625,7 @@ async function cn({
|
|
|
688
625
|
};
|
|
689
626
|
await p(r.data.skipConfirmation);
|
|
690
627
|
}
|
|
691
|
-
async function
|
|
628
|
+
async function fn({
|
|
692
629
|
chat: e,
|
|
693
630
|
next: t,
|
|
694
631
|
node: r,
|
|
@@ -707,18 +644,18 @@ async function un({
|
|
|
707
644
|
})
|
|
708
645
|
}), t(r.nextId);
|
|
709
646
|
}
|
|
710
|
-
async function
|
|
647
|
+
async function hn({
|
|
711
648
|
submissions: e,
|
|
712
649
|
next: t,
|
|
713
650
|
node: r,
|
|
714
651
|
context: n
|
|
715
652
|
}) {
|
|
716
|
-
t(
|
|
653
|
+
t(tn(r, {
|
|
717
654
|
submissions: e,
|
|
718
655
|
context: n
|
|
719
656
|
}) ? r.branchId : r.nextId);
|
|
720
657
|
}
|
|
721
|
-
async function
|
|
658
|
+
async function pn({
|
|
722
659
|
chat: e,
|
|
723
660
|
next: t,
|
|
724
661
|
node: r,
|
|
@@ -734,7 +671,7 @@ async function fn({
|
|
|
734
671
|
})
|
|
735
672
|
}), t(r.nextId);
|
|
736
673
|
}
|
|
737
|
-
async function
|
|
674
|
+
async function mn({
|
|
738
675
|
chat: e,
|
|
739
676
|
next: t,
|
|
740
677
|
node: r
|
|
@@ -747,7 +684,7 @@ async function hn({
|
|
|
747
684
|
width: r.data.width
|
|
748
685
|
}), t(r.nextId);
|
|
749
686
|
}
|
|
750
|
-
async function
|
|
687
|
+
async function gn({
|
|
751
688
|
chat: e,
|
|
752
689
|
next: t,
|
|
753
690
|
node: r,
|
|
@@ -792,10 +729,10 @@ async function pn({
|
|
|
792
729
|
}) : await e.sendMessage({
|
|
793
730
|
author: "user",
|
|
794
731
|
type: "text",
|
|
795
|
-
text: o.type === "phone" ?
|
|
732
|
+
text: o.type === "phone" ? ir(o.value) : o.value
|
|
796
733
|
}), t(r.nextId);
|
|
797
734
|
}
|
|
798
|
-
async function
|
|
735
|
+
async function yn({
|
|
799
736
|
chat: e,
|
|
800
737
|
next: t,
|
|
801
738
|
node: r,
|
|
@@ -832,7 +769,7 @@ async function mn({
|
|
|
832
769
|
text: o.value.toString()
|
|
833
770
|
}), t(r.nextId);
|
|
834
771
|
}
|
|
835
|
-
async function
|
|
772
|
+
async function bn({
|
|
836
773
|
chat: e,
|
|
837
774
|
next: t,
|
|
838
775
|
node: r,
|
|
@@ -867,10 +804,10 @@ async function gn({
|
|
|
867
804
|
}) : await e.sendMessage({
|
|
868
805
|
author: "user",
|
|
869
806
|
type: "text",
|
|
870
|
-
text: s.type === "phone" ?
|
|
807
|
+
text: s.type === "phone" ? ir(s.value) : s.value
|
|
871
808
|
}), t(r.nextId);
|
|
872
809
|
}
|
|
873
|
-
async function
|
|
810
|
+
async function vn({
|
|
874
811
|
chat: e,
|
|
875
812
|
next: t,
|
|
876
813
|
node: r,
|
|
@@ -901,7 +838,7 @@ async function yn({
|
|
|
901
838
|
text: r.data.options.filter((a) => o.value.includes(a.value)).map((a) => a.label).join(", ")
|
|
902
839
|
}), t(r.nextId);
|
|
903
840
|
}
|
|
904
|
-
async function
|
|
841
|
+
async function xn({
|
|
905
842
|
chat: e,
|
|
906
843
|
next: t,
|
|
907
844
|
node: r,
|
|
@@ -938,7 +875,7 @@ async function bn({
|
|
|
938
875
|
text: o.value === !0 ? r.data.trueLabel : r.data.falseLabel
|
|
939
876
|
}), t(r.nextId);
|
|
940
877
|
}
|
|
941
|
-
async function
|
|
878
|
+
async function wn({
|
|
942
879
|
chat: e,
|
|
943
880
|
next: t,
|
|
944
881
|
node: r,
|
|
@@ -974,7 +911,7 @@ async function vn({
|
|
|
974
911
|
}
|
|
975
912
|
return t(r.nextId);
|
|
976
913
|
}
|
|
977
|
-
async function
|
|
914
|
+
async function kn({
|
|
978
915
|
node: e,
|
|
979
916
|
chat: t,
|
|
980
917
|
next: r,
|
|
@@ -1017,7 +954,7 @@ async function xn({
|
|
|
1017
954
|
});
|
|
1018
955
|
r(e.nextId);
|
|
1019
956
|
}
|
|
1020
|
-
async function
|
|
957
|
+
async function _n({
|
|
1021
958
|
chat: e,
|
|
1022
959
|
end: t,
|
|
1023
960
|
node: r
|
|
@@ -1028,46 +965,13 @@ async function wn({
|
|
|
1028
965
|
text: r.data.systemMessage
|
|
1029
966
|
}), t();
|
|
1030
967
|
}
|
|
1031
|
-
|
|
1032
|
-
key: e,
|
|
1033
|
-
path: t,
|
|
1034
|
-
submissions: r,
|
|
1035
|
-
context: n
|
|
1036
|
-
}) => {
|
|
1037
|
-
if (e === "$context") {
|
|
1038
|
-
if (!t)
|
|
1039
|
-
return;
|
|
1040
|
-
const i = He(n, t.join("."));
|
|
1041
|
-
switch (typeof i) {
|
|
1042
|
-
case "string":
|
|
1043
|
-
return {
|
|
1044
|
-
type: "string",
|
|
1045
|
-
value: i
|
|
1046
|
-
};
|
|
1047
|
-
case "number":
|
|
1048
|
-
return {
|
|
1049
|
-
type: "number",
|
|
1050
|
-
value: i
|
|
1051
|
-
};
|
|
1052
|
-
case "boolean":
|
|
1053
|
-
return {
|
|
1054
|
-
type: "boolean",
|
|
1055
|
-
value: i
|
|
1056
|
-
};
|
|
1057
|
-
default:
|
|
1058
|
-
console.warn(`Unexpected type for $context.${t.join(".")}`, i);
|
|
1059
|
-
return;
|
|
1060
|
-
}
|
|
1061
|
-
}
|
|
1062
|
-
return r == null ? void 0 : r[e];
|
|
1063
|
-
};
|
|
1064
|
-
function Ft(e, t) {
|
|
968
|
+
function Et(e, t) {
|
|
1065
969
|
let r;
|
|
1066
970
|
return (...n) => {
|
|
1067
971
|
window.clearTimeout(r), r = window.setTimeout(() => e(...n), t);
|
|
1068
972
|
};
|
|
1069
973
|
}
|
|
1070
|
-
function
|
|
974
|
+
function Cn({ debounce: e, scroll: t, polyfill: r, offsetSize: n } = { debounce: 0, scroll: !1, offsetSize: !1 }) {
|
|
1071
975
|
const i = r || (typeof window > "u" ? class {
|
|
1072
976
|
} : window.ResizeObserver);
|
|
1073
977
|
if (!i)
|
|
@@ -1079,9 +983,9 @@ function kn({ debounce: e, scroll: t, polyfill: r, offsetSize: n } = { debounce:
|
|
|
1079
983
|
if (!a.current.element)
|
|
1080
984
|
return;
|
|
1081
985
|
const { left: _, top: I, width: O, height: A, bottom: ye, right: Ce, x: ie, y: de } = a.current.element.getBoundingClientRect(), z = { left: _, top: I, width: O, height: A, bottom: ye, right: Ce, x: ie, y: de };
|
|
1082
|
-
a.current.element instanceof HTMLElement && n && (z.height = a.current.element.offsetHeight, z.width = a.current.element.offsetWidth), Object.freeze(z), C.current && !
|
|
986
|
+
a.current.element instanceof HTMLElement && n && (z.height = a.current.element.offsetHeight, z.width = a.current.element.offsetWidth), Object.freeze(z), C.current && !Fn(a.current.lastBounds, z) && o(a.current.lastBounds = z);
|
|
1083
987
|
};
|
|
1084
|
-
return [x, p ?
|
|
988
|
+
return [x, p ? Et(x, p) : x, f ? Et(x, f) : x];
|
|
1085
989
|
}, [o, n, f, p]);
|
|
1086
990
|
function b() {
|
|
1087
991
|
a.current.scrollContainers && (a.current.scrollContainers.forEach((x) => x.removeEventListener("scroll", y, !0)), a.current.scrollContainers = null), a.current.resizeObserver && (a.current.resizeObserver.disconnect(), a.current.resizeObserver = null), a.current.orientationHandler && ("orientation" in screen && "removeEventListener" in screen.orientation ? screen.orientation.removeEventListener("change", a.current.orientationHandler) : "onorientationchange" in window && window.removeEventListener("orientationchange", a.current.orientationHandler));
|
|
@@ -1092,19 +996,19 @@ function kn({ debounce: e, scroll: t, polyfill: r, offsetSize: n } = { debounce:
|
|
|
1092
996
|
}, "orientation" in screen && "addEventListener" in screen.orientation ? screen.orientation.addEventListener("change", a.current.orientationHandler) : "onorientationchange" in window && window.addEventListener("orientationchange", a.current.orientationHandler));
|
|
1093
997
|
}
|
|
1094
998
|
const V = (x) => {
|
|
1095
|
-
!x || x === a.current.element || (b(), a.current.element = x, a.current.scrollContainers =
|
|
999
|
+
!x || x === a.current.element || (b(), a.current.element = x, a.current.scrollContainers = or(x), E());
|
|
1096
1000
|
};
|
|
1097
|
-
return
|
|
1001
|
+
return Vn(y, !!t), Sn(h), ce(() => {
|
|
1098
1002
|
b(), E();
|
|
1099
1003
|
}, [t, y, h]), ce(() => b, []), [V, s, v];
|
|
1100
1004
|
}
|
|
1101
|
-
function
|
|
1005
|
+
function Sn(e) {
|
|
1102
1006
|
ce(() => {
|
|
1103
1007
|
const t = e;
|
|
1104
1008
|
return window.addEventListener("resize", t), () => void window.removeEventListener("resize", t);
|
|
1105
1009
|
}, [e]);
|
|
1106
1010
|
}
|
|
1107
|
-
function
|
|
1011
|
+
function Vn(e, t) {
|
|
1108
1012
|
ce(() => {
|
|
1109
1013
|
if (t) {
|
|
1110
1014
|
const r = e;
|
|
@@ -1112,14 +1016,14 @@ function Cn(e, t) {
|
|
|
1112
1016
|
}
|
|
1113
1017
|
}, [e, t]);
|
|
1114
1018
|
}
|
|
1115
|
-
function
|
|
1019
|
+
function or(e) {
|
|
1116
1020
|
const t = [];
|
|
1117
1021
|
if (!e || e === document.body)
|
|
1118
1022
|
return t;
|
|
1119
1023
|
const { overflow: r, overflowX: n, overflowY: i } = window.getComputedStyle(e);
|
|
1120
|
-
return [r, n, i].some((s) => s === "auto" || s === "scroll") && t.push(e), [...t, ...
|
|
1024
|
+
return [r, n, i].some((s) => s === "auto" || s === "scroll") && t.push(e), [...t, ...or(e.parentElement)];
|
|
1121
1025
|
}
|
|
1122
|
-
const
|
|
1026
|
+
const En = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Fn = (e, t) => En.every((r) => e[r] === t[r]), ke = ({
|
|
1123
1027
|
class: e,
|
|
1124
1028
|
...t
|
|
1125
1029
|
}) => {
|
|
@@ -1211,255 +1115,9 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1211
1115
|
})]
|
|
1212
1116
|
}), r("skip")]
|
|
1213
1117
|
});
|
|
1214
|
-
}
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
Algeria: "213",
|
|
1218
|
-
"American Samoa": "1 684",
|
|
1219
|
-
Andorra: "376",
|
|
1220
|
-
Angola: "244",
|
|
1221
|
-
Anguilla: "1 264",
|
|
1222
|
-
Antarctica: "672",
|
|
1223
|
-
"Antigua and Barbuda": "1 268",
|
|
1224
|
-
Argentina: "54",
|
|
1225
|
-
Armenia: "374",
|
|
1226
|
-
Aruba: "297",
|
|
1227
|
-
Australia: "61",
|
|
1228
|
-
Austria: "43",
|
|
1229
|
-
Azerbaijan: "994",
|
|
1230
|
-
Bahrain: "973",
|
|
1231
|
-
Bangladesh: "880",
|
|
1232
|
-
Barbados: "1 246",
|
|
1233
|
-
Belarus: "375",
|
|
1234
|
-
Belgium: "32",
|
|
1235
|
-
Belize: "501",
|
|
1236
|
-
Benin: "229",
|
|
1237
|
-
Bermuda: "1 441",
|
|
1238
|
-
Bhutan: "975",
|
|
1239
|
-
Bolivia: "591",
|
|
1240
|
-
"Bosnia and Herzegovina": "387",
|
|
1241
|
-
Botswana: "267",
|
|
1242
|
-
"Bouvet Island": "47",
|
|
1243
|
-
Brazil: "55",
|
|
1244
|
-
"British Indian Ocean Territory": "246",
|
|
1245
|
-
"British Virgin Islands": "1 284",
|
|
1246
|
-
Brunei: "673",
|
|
1247
|
-
Bulgaria: "359",
|
|
1248
|
-
"Burkina Faso": "226",
|
|
1249
|
-
Burundi: "257",
|
|
1250
|
-
"Cabo Verde": "238",
|
|
1251
|
-
Cambodia: "855",
|
|
1252
|
-
Cameroon: "237",
|
|
1253
|
-
Canada: "1",
|
|
1254
|
-
"Caribbean Netherlands": "599",
|
|
1255
|
-
"Cayman Islands": "1 345",
|
|
1256
|
-
"Central African Republic": "236",
|
|
1257
|
-
Chad: "235",
|
|
1258
|
-
Chile: "56",
|
|
1259
|
-
China: "86",
|
|
1260
|
-
"Christmas Island": "61",
|
|
1261
|
-
"Cocos (Keeling) Islands": "61",
|
|
1262
|
-
Colombia: "57",
|
|
1263
|
-
Comoros: "269",
|
|
1264
|
-
"Cook Islands": "682",
|
|
1265
|
-
"Costa Rica": "506",
|
|
1266
|
-
Croatia: "385",
|
|
1267
|
-
Cuba: "53",
|
|
1268
|
-
Curaçao: "599",
|
|
1269
|
-
Cyprus: "357",
|
|
1270
|
-
Czechia: "420",
|
|
1271
|
-
"Côte d'Ivoire": "225",
|
|
1272
|
-
"Democratic Republic of the Congo": "243",
|
|
1273
|
-
Denmark: "45",
|
|
1274
|
-
Djibouti: "253",
|
|
1275
|
-
"Dominican Republic": "1 809",
|
|
1276
|
-
Ecuador: "593",
|
|
1277
|
-
Egypt: "20",
|
|
1278
|
-
"El Salvador": "503",
|
|
1279
|
-
"Equatorial Guinea": "240",
|
|
1280
|
-
Eritrea: "291",
|
|
1281
|
-
Estonia: "372",
|
|
1282
|
-
Eswatini: "268",
|
|
1283
|
-
Ethiopia: "251",
|
|
1284
|
-
"Falkland Islands (Islas Malvinas)": "500",
|
|
1285
|
-
"Faroe Islands": "298",
|
|
1286
|
-
Fiji: "679",
|
|
1287
|
-
Finland: "358",
|
|
1288
|
-
France: "33",
|
|
1289
|
-
"French Guiana": "594",
|
|
1290
|
-
"French Polynesia": "689",
|
|
1291
|
-
"French Southern and Antarctic Lands": "262",
|
|
1292
|
-
Gabon: "241",
|
|
1293
|
-
Georgia: "995",
|
|
1294
|
-
Germany: "49",
|
|
1295
|
-
Ghana: "233",
|
|
1296
|
-
Gibraltar: "350",
|
|
1297
|
-
Greece: "30",
|
|
1298
|
-
Greenland: "299",
|
|
1299
|
-
Grenada: "1 473",
|
|
1300
|
-
Guadeloupe: "590",
|
|
1301
|
-
Guam: "1 671",
|
|
1302
|
-
Guatemala: "502",
|
|
1303
|
-
Guernsey: "44",
|
|
1304
|
-
Guinea: "224",
|
|
1305
|
-
"Guinea-Bissau": "245",
|
|
1306
|
-
Guyana: "592",
|
|
1307
|
-
Haiti: "509",
|
|
1308
|
-
Honduras: "504",
|
|
1309
|
-
"Hong Kong": "852",
|
|
1310
|
-
Hungary: "36",
|
|
1311
|
-
Iceland: "354",
|
|
1312
|
-
India: "91",
|
|
1313
|
-
Indonesia: "62",
|
|
1314
|
-
Iran: "98",
|
|
1315
|
-
Iraq: "964",
|
|
1316
|
-
Ireland: "353",
|
|
1317
|
-
"Isle of Man": "44",
|
|
1318
|
-
Israel: "972",
|
|
1319
|
-
Italy: "39",
|
|
1320
|
-
Jamaica: "1 876",
|
|
1321
|
-
Japan: "81",
|
|
1322
|
-
Jersey: "44",
|
|
1323
|
-
Jordan: "962",
|
|
1324
|
-
Kazakhstan: "7",
|
|
1325
|
-
Kenya: "254",
|
|
1326
|
-
Kiribati: "686",
|
|
1327
|
-
Kosovo: "383",
|
|
1328
|
-
Kuwait: "965",
|
|
1329
|
-
Kyrgyzstan: "996",
|
|
1330
|
-
Laos: "856",
|
|
1331
|
-
Latvia: "371",
|
|
1332
|
-
Lebanon: "961",
|
|
1333
|
-
Lesotho: "266",
|
|
1334
|
-
Liberia: "231",
|
|
1335
|
-
Libya: "218",
|
|
1336
|
-
Liechtenstein: "423",
|
|
1337
|
-
Lithuania: "370",
|
|
1338
|
-
Luxembourg: "352",
|
|
1339
|
-
Macao: "853",
|
|
1340
|
-
Madagascar: "261",
|
|
1341
|
-
Malawi: "265",
|
|
1342
|
-
Malaysia: "60",
|
|
1343
|
-
Maldives: "960",
|
|
1344
|
-
Mali: "223",
|
|
1345
|
-
Malta: "356",
|
|
1346
|
-
"Marshall Islands": "692",
|
|
1347
|
-
Martinique: "596",
|
|
1348
|
-
Mauritania: "222",
|
|
1349
|
-
Mauritius: "230",
|
|
1350
|
-
Mayotte: "262",
|
|
1351
|
-
Mexico: "52",
|
|
1352
|
-
Micronesia: "691",
|
|
1353
|
-
Moldova: "373",
|
|
1354
|
-
Monaco: "377",
|
|
1355
|
-
Mongolia: "976",
|
|
1356
|
-
Montenegro: "382",
|
|
1357
|
-
Montserrat: "1 664",
|
|
1358
|
-
Morocco: "212",
|
|
1359
|
-
Mozambique: "258",
|
|
1360
|
-
"Myanmar (Burma)": "95",
|
|
1361
|
-
Namibia: "264",
|
|
1362
|
-
Nauru: "674",
|
|
1363
|
-
Nepal: "977",
|
|
1364
|
-
Netherlands: "31",
|
|
1365
|
-
"New Caledonia": "687",
|
|
1366
|
-
"New Zealand": "64",
|
|
1367
|
-
Nicaragua: "505",
|
|
1368
|
-
Niger: "227",
|
|
1369
|
-
Nigeria: "234",
|
|
1370
|
-
Niue: "683",
|
|
1371
|
-
"Norfolk Island": "672",
|
|
1372
|
-
"North Korea": "850",
|
|
1373
|
-
"North Macedonia": "389",
|
|
1374
|
-
"Northern Mariana Islands": "1 670",
|
|
1375
|
-
Norway: "47",
|
|
1376
|
-
Oman: "968",
|
|
1377
|
-
Pakistan: "92",
|
|
1378
|
-
Palau: "680",
|
|
1379
|
-
Palestine: "970",
|
|
1380
|
-
Panama: "507",
|
|
1381
|
-
"Papua New Guinea": "675",
|
|
1382
|
-
Paraguay: "595",
|
|
1383
|
-
Peru: "51",
|
|
1384
|
-
Philippines: "63",
|
|
1385
|
-
"Pitcairn Islands": "64",
|
|
1386
|
-
Poland: "48",
|
|
1387
|
-
Portugal: "351",
|
|
1388
|
-
"Puerto Rico": "1 787",
|
|
1389
|
-
Qatar: "974",
|
|
1390
|
-
Romania: "40",
|
|
1391
|
-
Russia: "7",
|
|
1392
|
-
Rwanda: "250",
|
|
1393
|
-
Réunion: "262",
|
|
1394
|
-
"Saint Barthélemy": "590",
|
|
1395
|
-
"Saint Helena, Ascension and Tristan da Cunha": "290",
|
|
1396
|
-
"Saint Kitts and Nevis": "1 869",
|
|
1397
|
-
"Saint Lucia": "1 758",
|
|
1398
|
-
"Saint Martin": "590",
|
|
1399
|
-
"Saint Pierre and Miquelon": "508",
|
|
1400
|
-
"Saint Vincent and the Grenadines": "1 784",
|
|
1401
|
-
Samoa: "685",
|
|
1402
|
-
"San Marino": "378",
|
|
1403
|
-
"Saudi Arabia": "966",
|
|
1404
|
-
Senegal: "221",
|
|
1405
|
-
Serbia: "381",
|
|
1406
|
-
Seychelles: "248",
|
|
1407
|
-
"Sierra Leone": "232",
|
|
1408
|
-
Singapore: "65",
|
|
1409
|
-
"Sint Maarten": "1 721",
|
|
1410
|
-
Slovakia: "421",
|
|
1411
|
-
Slovenia: "386",
|
|
1412
|
-
"Solomon Islands": "677",
|
|
1413
|
-
Somalia: "252",
|
|
1414
|
-
"South Africa": "27",
|
|
1415
|
-
"South Georgia and the South Sandwich Islands": "500",
|
|
1416
|
-
"South Korea": "82",
|
|
1417
|
-
"South Sudan": "211",
|
|
1418
|
-
Spain: "34",
|
|
1419
|
-
"Sri Lanka": "94",
|
|
1420
|
-
Sudan: "249",
|
|
1421
|
-
Suriname: "597",
|
|
1422
|
-
"Svalbard and Jan Mayen": "47",
|
|
1423
|
-
Sweden: "46",
|
|
1424
|
-
Switzerland: "41",
|
|
1425
|
-
Syria: "963",
|
|
1426
|
-
"São Tomé and Príncipe": "239",
|
|
1427
|
-
Taiwan: "886",
|
|
1428
|
-
Tajikistan: "992",
|
|
1429
|
-
Tanzania: "255",
|
|
1430
|
-
Thailand: "66",
|
|
1431
|
-
"The Bahamas": "1 242",
|
|
1432
|
-
"The Gambia": "220",
|
|
1433
|
-
"Timor-Leste": "670",
|
|
1434
|
-
Togo: "228",
|
|
1435
|
-
Tokelau: "690",
|
|
1436
|
-
Tonga: "676",
|
|
1437
|
-
"Trinidad and Tobago": "1 868",
|
|
1438
|
-
Tunisia: "216",
|
|
1439
|
-
Turkmenistan: "993",
|
|
1440
|
-
"Turks and Caicos Islands": "1 649",
|
|
1441
|
-
Tuvalu: "688",
|
|
1442
|
-
Türkiye: "90",
|
|
1443
|
-
"U.S. Virgin Islands": "1 340",
|
|
1444
|
-
Uganda: "256",
|
|
1445
|
-
Ukraine: "380",
|
|
1446
|
-
"United Arab Emirates": "971",
|
|
1447
|
-
"United Kingdom": "44",
|
|
1448
|
-
"United States": "1",
|
|
1449
|
-
"United States Minor Outlying Islands": "1",
|
|
1450
|
-
Uruguay: "598",
|
|
1451
|
-
Uzbekistan: "998",
|
|
1452
|
-
Vanuatu: "678",
|
|
1453
|
-
"Vatican City": "379",
|
|
1454
|
-
Venezuela: "58",
|
|
1455
|
-
Vietnam: "84",
|
|
1456
|
-
"Wallis and Futuna": "681",
|
|
1457
|
-
"Western Sahara": "212",
|
|
1458
|
-
Yemen: "967",
|
|
1459
|
-
Zambia: "260",
|
|
1460
|
-
Zimbabwe: "263",
|
|
1461
|
-
"Åland Islands": "358"
|
|
1462
|
-
}, $e = We("outline-divider ease-expo-out placeholder:text-neutral-10 text-neutral-12 focus-visible:outline-accent-7 caret-accent-9 bg-lowest py-1 text-base outline outline-2 transition-all", {
|
|
1118
|
+
};
|
|
1119
|
+
var lt = { Afghanistan: "93", Albania: "355", Algeria: "213", "American Samoa": "1 684", Andorra: "376", Angola: "244", Anguilla: "1 264", Antarctica: "672", "Antigua and Barbuda": "1 268", Argentina: "54", Armenia: "374", Aruba: "297", Australia: "61", Austria: "43", Azerbaijan: "994", Bahrain: "973", Bangladesh: "880", Barbados: "1 246", Belarus: "375", Belgium: "32", Belize: "501", Benin: "229", Bermuda: "1 441", Bhutan: "975", Bolivia: "591", "Bosnia and Herzegovina": "387", Botswana: "267", "Bouvet Island": "47", Brazil: "55", "British Indian Ocean Territory": "246", "British Virgin Islands": "1 284", Brunei: "673", Bulgaria: "359", "Burkina Faso": "226", Burundi: "257", "Cabo Verde": "238", Cambodia: "855", Cameroon: "237", Canada: "1", "Caribbean Netherlands": "599", "Cayman Islands": "1 345", "Central African Republic": "236", Chad: "235", Chile: "56", China: "86", "Christmas Island": "61", "Cocos (Keeling) Islands": "61", Colombia: "57", Comoros: "269", "Cook Islands": "682", "Costa Rica": "506", Croatia: "385", Cuba: "53", Curaçao: "599", Cyprus: "357", Czechia: "420", "Côte d'Ivoire": "225", "Democratic Republic of the Congo": "243", Denmark: "45", Djibouti: "253", "Dominican Republic": "1 809", Ecuador: "593", Egypt: "20", "El Salvador": "503", "Equatorial Guinea": "240", Eritrea: "291", Estonia: "372", Eswatini: "268", Ethiopia: "251", "Falkland Islands (Islas Malvinas)": "500", "Faroe Islands": "298", Fiji: "679", Finland: "358", France: "33", "French Guiana": "594", "French Polynesia": "689", "French Southern and Antarctic Lands": "262", Gabon: "241", Georgia: "995", Germany: "49", Ghana: "233", Gibraltar: "350", Greece: "30", Greenland: "299", Grenada: "1 473", Guadeloupe: "590", Guam: "1 671", Guatemala: "502", Guernsey: "44", Guinea: "224", "Guinea-Bissau": "245", Guyana: "592", Haiti: "509", Honduras: "504", "Hong Kong": "852", Hungary: "36", Iceland: "354", India: "91", Indonesia: "62", Iran: "98", Iraq: "964", Ireland: "353", "Isle of Man": "44", Israel: "972", Italy: "39", Jamaica: "1 876", Japan: "81", Jersey: "44", Jordan: "962", Kazakhstan: "7", Kenya: "254", Kiribati: "686", Kosovo: "383", Kuwait: "965", Kyrgyzstan: "996", Laos: "856", Latvia: "371", Lebanon: "961", Lesotho: "266", Liberia: "231", Libya: "218", Liechtenstein: "423", Lithuania: "370", Luxembourg: "352", Macao: "853", Madagascar: "261", Malawi: "265", Malaysia: "60", Maldives: "960", Mali: "223", Malta: "356", "Marshall Islands": "692", Martinique: "596", Mauritania: "222", Mauritius: "230", Mayotte: "262", Mexico: "52", Micronesia: "691", Moldova: "373", Monaco: "377", Mongolia: "976", Montenegro: "382", Montserrat: "1 664", Morocco: "212", Mozambique: "258", "Myanmar (Burma)": "95", Namibia: "264", Nauru: "674", Nepal: "977", Netherlands: "31", "New Caledonia": "687", "New Zealand": "64", Nicaragua: "505", Niger: "227", Nigeria: "234", Niue: "683", "Norfolk Island": "672", "North Korea": "850", "North Macedonia": "389", "Northern Mariana Islands": "1 670", Norway: "47", Oman: "968", Pakistan: "92", Palau: "680", Palestine: "970", Panama: "507", "Papua New Guinea": "675", Paraguay: "595", Peru: "51", Philippines: "63", "Pitcairn Islands": "64", Poland: "48", Portugal: "351", "Puerto Rico": "1 787", Qatar: "974", Romania: "40", Russia: "7", Rwanda: "250", Réunion: "262", "Saint Barthélemy": "590", "Saint Helena, Ascension and Tristan da Cunha": "290", "Saint Kitts and Nevis": "1 869", "Saint Lucia": "1 758", "Saint Martin": "590", "Saint Pierre and Miquelon": "508", "Saint Vincent and the Grenadines": "1 784", Samoa: "685", "San Marino": "378", "Saudi Arabia": "966", Senegal: "221", Serbia: "381", Seychelles: "248", "Sierra Leone": "232", Singapore: "65", "Sint Maarten": "1 721", Slovakia: "421", Slovenia: "386", "Solomon Islands": "677", Somalia: "252", "South Africa": "27", "South Georgia and the South Sandwich Islands": "500", "South Korea": "82", "South Sudan": "211", Spain: "34", "Sri Lanka": "94", Sudan: "249", Suriname: "597", "Svalbard and Jan Mayen": "47", Sweden: "46", Switzerland: "41", Syria: "963", "São Tomé and Príncipe": "239", Taiwan: "886", Tajikistan: "992", Tanzania: "255", Thailand: "66", "The Bahamas": "1 242", "The Gambia": "220", "Timor-Leste": "670", Togo: "228", Tokelau: "690", Tonga: "676", "Trinidad and Tobago": "1 868", Tunisia: "216", Turkmenistan: "993", "Turks and Caicos Islands": "1 649", Tuvalu: "688", Türkiye: "90", "U.S. Virgin Islands": "1 340", Uganda: "256", Ukraine: "380", "United Arab Emirates": "971", "United Kingdom": "44", "United States": "1", "United States Minor Outlying Islands": "1", Uruguay: "598", Uzbekistan: "998", Vanuatu: "678", "Vatican City": "379", Venezuela: "58", Vietnam: "84", "Wallis and Futuna": "681", "Western Sahara": "212", Yemen: "967", Zambia: "260", Zimbabwe: "263", "Åland Islands": "358" };
|
|
1120
|
+
const $e = Ge("outline-divider ease-expo-out placeholder:text-neutral-10 text-neutral-12 focus-visible:outline-accent-7 caret-accent-9 bg-lowest py-1 text-base outline outline-2 transition-all", {
|
|
1463
1121
|
variants: {
|
|
1464
1122
|
optional: {
|
|
1465
1123
|
true: "pr-16 pl-3",
|
|
@@ -1469,15 +1127,15 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1469
1127
|
defaultVariants: {
|
|
1470
1128
|
optional: !1
|
|
1471
1129
|
}
|
|
1472
|
-
}),
|
|
1130
|
+
}), In = "https://api.mapbox.com/search/searchbox/v1/suggest", An = "ZzRDWFU0dTZ3SF9aWk9RNGl6QzZaWS5RZmlFak13a0hPbGxXZXlNSGN5RUhObUJ6TXpSV08yUW5OdE5tSTZJU1lpd2lJb1JYYXRObmJ2Tm5iaGhHZWx4V1lpb2pJMUp5ZS5rcA==", Ln = (e) => atob(e).split("").reverse().join(""), oe = ge({
|
|
1473
1131
|
name: Q()
|
|
1474
|
-
}),
|
|
1475
|
-
suggestions:
|
|
1476
|
-
full_address:
|
|
1477
|
-
place_formatted:
|
|
1478
|
-
name:
|
|
1132
|
+
}), Mn = ge({
|
|
1133
|
+
suggestions: Dr(ge({
|
|
1134
|
+
full_address: rt(Q()),
|
|
1135
|
+
place_formatted: rt(Q()),
|
|
1136
|
+
name: rt(Q()),
|
|
1479
1137
|
mapbox_id: Q(),
|
|
1480
|
-
context:
|
|
1138
|
+
context: Rr(ge({
|
|
1481
1139
|
address: oe,
|
|
1482
1140
|
street: oe,
|
|
1483
1141
|
neighborhood: oe,
|
|
@@ -1489,7 +1147,7 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1489
1147
|
country: oe
|
|
1490
1148
|
}))
|
|
1491
1149
|
}))
|
|
1492
|
-
}),
|
|
1150
|
+
}), Nn = ({
|
|
1493
1151
|
logger: e,
|
|
1494
1152
|
t
|
|
1495
1153
|
}) => er(() => {
|
|
@@ -1499,17 +1157,17 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1499
1157
|
enabled: !0,
|
|
1500
1158
|
getPredictions: async (i) => {
|
|
1501
1159
|
var v;
|
|
1502
|
-
const s = new URL(
|
|
1160
|
+
const s = new URL(In);
|
|
1503
1161
|
s.searchParams.set("q", i), s.searchParams.set("session_token", r);
|
|
1504
1162
|
const o = (v = D.current$.peek().flow) == null ? void 0 : v.locationOrigin;
|
|
1505
|
-
o && o.lat !== void 0 && o.lng !== void 0 && o.lat >= -90 && o.lat <= 90 && o.lng >= -180 && o.lng <= 180 && s.searchParams.set("proximity", `${o.lng},${o.lat}`), s.searchParams.set("access_token",
|
|
1163
|
+
o && o.lat !== void 0 && o.lng !== void 0 && o.lat >= -90 && o.lat <= 90 && o.lng >= -180 && o.lng <= 180 && s.searchParams.set("proximity", `${o.lng},${o.lat}`), s.searchParams.set("access_token", Ln(An));
|
|
1506
1164
|
const f = await fetch(s);
|
|
1507
1165
|
if (!f.ok)
|
|
1508
1166
|
return e.error("Failed to get address details", f), {
|
|
1509
1167
|
ok: !1,
|
|
1510
1168
|
error: t("address_error")
|
|
1511
1169
|
};
|
|
1512
|
-
const p =
|
|
1170
|
+
const p = Tr(Mn, await f.json());
|
|
1513
1171
|
if (p.success === !1)
|
|
1514
1172
|
return e.error("Failed to parse address details", p.issues), {
|
|
1515
1173
|
ok: !1,
|
|
@@ -1541,7 +1199,7 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1541
1199
|
} : {
|
|
1542
1200
|
enabled: !1
|
|
1543
1201
|
};
|
|
1544
|
-
}, [e, t]),
|
|
1202
|
+
}, [e, t]), Ft = (e) => {
|
|
1545
1203
|
const {
|
|
1546
1204
|
t
|
|
1547
1205
|
} = Y();
|
|
@@ -1564,7 +1222,7 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1564
1222
|
children: t("back")
|
|
1565
1223
|
})]
|
|
1566
1224
|
});
|
|
1567
|
-
},
|
|
1225
|
+
}, Tn = ({
|
|
1568
1226
|
input: e,
|
|
1569
1227
|
onSubmitSuccess: t,
|
|
1570
1228
|
logger: r
|
|
@@ -1574,7 +1232,7 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1574
1232
|
} = Y(), [i, s] = se(), [o, a] = se([]), {
|
|
1575
1233
|
enabled: f,
|
|
1576
1234
|
getPredictions: p
|
|
1577
|
-
} =
|
|
1235
|
+
} = Nn({
|
|
1578
1236
|
logger: r,
|
|
1579
1237
|
t: n
|
|
1580
1238
|
}), [C, v] = se(f ? "query" : "manual"), [h, y] = se(""), [b, E] = se(), V = (x) => {
|
|
@@ -1588,7 +1246,7 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1588
1246
|
};
|
|
1589
1247
|
switch (C) {
|
|
1590
1248
|
case "query":
|
|
1591
|
-
return me(f, "Query state should not be enabled"), c(
|
|
1249
|
+
return me(f, "Query state should not be enabled"), c(Dn, {
|
|
1592
1250
|
input: e,
|
|
1593
1251
|
onSkip: () => t(null),
|
|
1594
1252
|
onAddressSelect: (x) => {
|
|
@@ -1607,31 +1265,31 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1607
1265
|
error: b
|
|
1608
1266
|
});
|
|
1609
1267
|
case "details":
|
|
1610
|
-
return me(i !== void 0), c(
|
|
1268
|
+
return me(i !== void 0), c(At, {
|
|
1611
1269
|
input: e,
|
|
1612
1270
|
logger: r,
|
|
1613
1271
|
onSubmitSuccess: t,
|
|
1614
1272
|
addressFields: i,
|
|
1615
|
-
actions: c(
|
|
1273
|
+
actions: c(Ft, {
|
|
1616
1274
|
onClick: () => {
|
|
1617
1275
|
v("query");
|
|
1618
1276
|
}
|
|
1619
1277
|
})
|
|
1620
1278
|
});
|
|
1621
1279
|
case "manual":
|
|
1622
|
-
return c(
|
|
1280
|
+
return c(At, {
|
|
1623
1281
|
logger: r,
|
|
1624
1282
|
input: e,
|
|
1625
1283
|
onSubmitSuccess: t,
|
|
1626
1284
|
addressFields: {},
|
|
1627
|
-
actions: f ? c(
|
|
1285
|
+
actions: f ? c(Ft, {
|
|
1628
1286
|
onClick: () => {
|
|
1629
1287
|
v("query");
|
|
1630
1288
|
}
|
|
1631
1289
|
}) : void 0
|
|
1632
1290
|
});
|
|
1633
1291
|
}
|
|
1634
|
-
},
|
|
1292
|
+
}, Dn = ({
|
|
1635
1293
|
input: e,
|
|
1636
1294
|
onSkip: t,
|
|
1637
1295
|
suggestions: r,
|
|
@@ -1742,7 +1400,7 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1742
1400
|
}, "")]
|
|
1743
1401
|
})]
|
|
1744
1402
|
});
|
|
1745
|
-
},
|
|
1403
|
+
}, It = ["line1", "line2", "line3", "city", "state", "postcode", "country"], At = ({
|
|
1746
1404
|
addressFields: e,
|
|
1747
1405
|
onSubmitSuccess: t,
|
|
1748
1406
|
actions: r,
|
|
@@ -1755,7 +1413,7 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1755
1413
|
a && (a.focus(), a.select());
|
|
1756
1414
|
}
|
|
1757
1415
|
}, []);
|
|
1758
|
-
const s = Object.keys(
|
|
1416
|
+
const s = Object.keys(lt), {
|
|
1759
1417
|
t: o
|
|
1760
1418
|
} = Y();
|
|
1761
1419
|
return c("form", {
|
|
@@ -1770,7 +1428,7 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1770
1428
|
children: [c("div", {
|
|
1771
1429
|
class: "bg-neutral-3 border-neutral-5 grid items-center gap-1.5 rounded-2xl border pb-2 pl-4 pr-3 pt-3 [grid-template-columns:min-content_1fr]",
|
|
1772
1430
|
ref: i,
|
|
1773
|
-
children:
|
|
1431
|
+
children: It.map((a, f) => {
|
|
1774
1432
|
const p = `isdk_${a}`, C = n.config.keys[a];
|
|
1775
1433
|
return C ? c(we, {
|
|
1776
1434
|
children: [c("label", {
|
|
@@ -1819,7 +1477,7 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1819
1477
|
id: p,
|
|
1820
1478
|
defaultValue: e[a],
|
|
1821
1479
|
required: !0
|
|
1822
|
-
}), f ===
|
|
1480
|
+
}), f === It.length - 1 ? c("hr", {
|
|
1823
1481
|
class: "m-0 w-full border-b border-b-transparent"
|
|
1824
1482
|
}) : c("hr", {
|
|
1825
1483
|
class: "border-b-neutral-5 m-0 w-full border-b border-solid"
|
|
@@ -1837,13 +1495,13 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1837
1495
|
})]
|
|
1838
1496
|
})]
|
|
1839
1497
|
});
|
|
1840
|
-
},
|
|
1498
|
+
}, ct = () => {
|
|
1841
1499
|
const e = ue(null);
|
|
1842
1500
|
return ce(() => {
|
|
1843
1501
|
var t;
|
|
1844
1502
|
(t = e.current) == null || t.focus();
|
|
1845
1503
|
}, []), e;
|
|
1846
|
-
},
|
|
1504
|
+
}, lr = ["true", "false"], Rn = Pr(lr), On = "answer", cr = "flex items-center flex-wrap gap-2 p-2.5", ur = "min-w-0 max-w-full flex-auto", dr = tr(({
|
|
1847
1505
|
label: e,
|
|
1848
1506
|
...t
|
|
1849
1507
|
}, r) => c("button", {
|
|
@@ -1854,30 +1512,30 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1854
1512
|
class: "text-center text-base",
|
|
1855
1513
|
children: e
|
|
1856
1514
|
})
|
|
1857
|
-
})),
|
|
1515
|
+
})), Bn = ({
|
|
1858
1516
|
input: e,
|
|
1859
1517
|
onSubmitSuccess: t
|
|
1860
1518
|
}) => {
|
|
1861
|
-
const r =
|
|
1519
|
+
const r = ct();
|
|
1862
1520
|
return c("form", {
|
|
1863
1521
|
noValidate: !0,
|
|
1864
1522
|
class: "",
|
|
1865
1523
|
onSubmit: (n) => {
|
|
1866
1524
|
n.preventDefault();
|
|
1867
|
-
const i =
|
|
1525
|
+
const i = Or(n).value, s = Br(Rn, i);
|
|
1868
1526
|
t({
|
|
1869
1527
|
type: "boolean",
|
|
1870
1528
|
value: s === "true"
|
|
1871
1529
|
});
|
|
1872
1530
|
},
|
|
1873
1531
|
children: [c("ul", {
|
|
1874
|
-
class:
|
|
1875
|
-
children:
|
|
1876
|
-
class:
|
|
1877
|
-
children: c(
|
|
1532
|
+
class: cr,
|
|
1533
|
+
children: lr.map((n, i) => c("li", {
|
|
1534
|
+
class: ur,
|
|
1535
|
+
children: c(dr, {
|
|
1878
1536
|
ref: i === 0 ? r : null,
|
|
1879
1537
|
type: "submit",
|
|
1880
|
-
name:
|
|
1538
|
+
name: On,
|
|
1881
1539
|
value: n,
|
|
1882
1540
|
label: e.config.labels[n]
|
|
1883
1541
|
}, n)
|
|
@@ -1891,10 +1549,10 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1891
1549
|
})
|
|
1892
1550
|
})]
|
|
1893
1551
|
});
|
|
1894
|
-
},
|
|
1552
|
+
}, Pn = (e) => new Promise((t, r) => {
|
|
1895
1553
|
const n = new FileReader();
|
|
1896
1554
|
n.readAsDataURL(e), n.onload = () => n.result ? t(n.result.toString()) : r("No result from reader"), n.onerror = r;
|
|
1897
|
-
}),
|
|
1555
|
+
}), jn = (e) => e.reduce((t, r) => t + r.sizeKb, 0), $n = Fe("file"), Lt = 3, Un = ({
|
|
1898
1556
|
file: e,
|
|
1899
1557
|
class: t,
|
|
1900
1558
|
...r
|
|
@@ -1918,32 +1576,32 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1918
1576
|
children: Re(e.sizeKb)
|
|
1919
1577
|
})]
|
|
1920
1578
|
});
|
|
1921
|
-
},
|
|
1579
|
+
}, Mt = ({
|
|
1922
1580
|
class: e,
|
|
1923
1581
|
...t
|
|
1924
1582
|
}) => c("li", {
|
|
1925
1583
|
class: je("outline-neutral-6 text-neutral-11 bg-neutral-1 block rounded-md px-1 py-0.5 text-xs outline outline-1", e),
|
|
1926
1584
|
...t
|
|
1927
|
-
}),
|
|
1585
|
+
}), fr = (e) => {
|
|
1928
1586
|
const t = e.split(".").pop();
|
|
1929
1587
|
if (!t)
|
|
1930
1588
|
throw new Error("No file extension found");
|
|
1931
1589
|
return t ? "." + t : "";
|
|
1932
|
-
},
|
|
1590
|
+
}, zn = ({
|
|
1933
1591
|
allowedExtensions: e,
|
|
1934
1592
|
files: t
|
|
1935
1593
|
}) => {
|
|
1936
1594
|
const r = e.map((n) => n.toLowerCase());
|
|
1937
|
-
return t.every((n) => r.includes(
|
|
1938
|
-
},
|
|
1939
|
-
const r =
|
|
1595
|
+
return t.every((n) => r.includes(fr(n.name).toLowerCase()));
|
|
1596
|
+
}, qn = (e, t) => {
|
|
1597
|
+
const r = fr(e);
|
|
1940
1598
|
return `${e.replace(new RegExp(`${r}$`), "").slice(0, t)}${r}`;
|
|
1941
|
-
},
|
|
1599
|
+
}, Kn = ({
|
|
1942
1600
|
input: e,
|
|
1943
1601
|
onSubmitSuccess: t
|
|
1944
1602
|
}) => {
|
|
1945
1603
|
var v;
|
|
1946
|
-
const r = (v = D.current$.value.flow) == null ? void 0 : v.data.submissions[e.key], [n, i] = se(
|
|
1604
|
+
const r = (v = D.current$.value.flow) == null ? void 0 : v.data.submissions[e.key], [n, i] = se($n(r) ? r.value : []), [s, o] = se(), a = n.length - Lt, f = jn(n), p = ct(), {
|
|
1947
1605
|
t: C
|
|
1948
1606
|
} = Y();
|
|
1949
1607
|
return c("form", {
|
|
@@ -1951,7 +1609,7 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1951
1609
|
onSubmit: (h) => (h.preventDefault(), o(void 0), n.length === 0 ? o({
|
|
1952
1610
|
type: "required",
|
|
1953
1611
|
message: C("validation_file")
|
|
1954
|
-
}) : e.config.extensions.length > 0 &&
|
|
1612
|
+
}) : e.config.extensions.length > 0 && !zn({
|
|
1955
1613
|
allowedExtensions: e.config.extensions,
|
|
1956
1614
|
files: n
|
|
1957
1615
|
}) ? o({
|
|
@@ -1980,9 +1638,9 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1980
1638
|
children: [n.length > 0 ? c(we, {
|
|
1981
1639
|
children: [c("ul", {
|
|
1982
1640
|
class: "flex max-w-full flex-wrap justify-center gap-1 overflow-hidden p-1",
|
|
1983
|
-
children: [n.slice(0,
|
|
1641
|
+
children: [n.slice(0, Lt).map((h) => {
|
|
1984
1642
|
const y = h.name.split(".").pop(), b = h.name.replace(new RegExp(`.${y}$`), "");
|
|
1985
|
-
return c(
|
|
1643
|
+
return c(Mt, {
|
|
1986
1644
|
class: "flex overflow-hidden",
|
|
1987
1645
|
children: [c("span", {
|
|
1988
1646
|
class: "block truncate",
|
|
@@ -1991,7 +1649,7 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
1991
1649
|
children: [".", y]
|
|
1992
1650
|
})]
|
|
1993
1651
|
});
|
|
1994
|
-
}), a > 0 ? c(
|
|
1652
|
+
}), a > 0 ? c(Mt, {
|
|
1995
1653
|
children: ["+", a, " file", a !== 1 ? "s" : ""]
|
|
1996
1654
|
}) : null]
|
|
1997
1655
|
}), c("p", {
|
|
@@ -2046,9 +1704,9 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
2046
1704
|
onInput: async (h) => {
|
|
2047
1705
|
me(h.target instanceof HTMLInputElement);
|
|
2048
1706
|
const y = h.target.files ? Array.from(h.target.files) : [], b = await Promise.allSettled(y.map(async (V) => {
|
|
2049
|
-
const x = await
|
|
1707
|
+
const x = await Pn(V);
|
|
2050
1708
|
return {
|
|
2051
|
-
name:
|
|
1709
|
+
name: qn(V.name, 42),
|
|
2052
1710
|
data: x,
|
|
2053
1711
|
sizeKb: V.size / 1e3
|
|
2054
1712
|
};
|
|
@@ -2082,33 +1740,33 @@ const Sn = ["x", "y", "top", "bottom", "left", "right", "width", "height"], Vn =
|
|
|
2082
1740
|
});
|
|
2083
1741
|
};
|
|
2084
1742
|
var Ue = (e) => e.type === "checkbox", ve = (e) => e instanceof Date, W = (e) => e == null;
|
|
2085
|
-
const
|
|
2086
|
-
var j = (e) => !W(e) && !Array.isArray(e) &&
|
|
1743
|
+
const hr = (e) => typeof e == "object";
|
|
1744
|
+
var j = (e) => !W(e) && !Array.isArray(e) && hr(e) && !ve(e), Hn = (e) => j(e) && e.target ? Ue(e.target) ? e.target.checked : e.target.value : e, Gn = (e) => e.substring(0, e.search(/\.\d+(\.|$)/)) || e, Wn = (e, t) => e.has(Gn(t)), Jn = (e) => {
|
|
2087
1745
|
const t = e.constructor && e.constructor.prototype;
|
|
2088
1746
|
return j(t) && t.hasOwnProperty("isPrototypeOf");
|
|
2089
|
-
},
|
|
1747
|
+
}, ut = typeof window < "u" && typeof window.HTMLElement < "u" && typeof document < "u";
|
|
2090
1748
|
function U(e) {
|
|
2091
1749
|
if (e instanceof Date)
|
|
2092
1750
|
return new Date(e);
|
|
2093
1751
|
const t = typeof FileList < "u" && e instanceof FileList;
|
|
2094
|
-
if (
|
|
1752
|
+
if (ut && (e instanceof Blob || t))
|
|
2095
1753
|
return e;
|
|
2096
1754
|
const r = Array.isArray(e);
|
|
2097
|
-
if (!r && !(j(e) &&
|
|
1755
|
+
if (!r && !(j(e) && Jn(e)))
|
|
2098
1756
|
return e;
|
|
2099
1757
|
const n = r ? [] : Object.create(Object.getPrototypeOf(e));
|
|
2100
1758
|
for (const i in e)
|
|
2101
1759
|
Object.prototype.hasOwnProperty.call(e, i) && (n[i] = U(e[i]));
|
|
2102
1760
|
return n;
|
|
2103
1761
|
}
|
|
2104
|
-
var
|
|
1762
|
+
var We = (e) => /^\w*$/.test(e), B = (e) => e === void 0, dt = (e) => Array.isArray(e) ? e.filter(Boolean) : [], ft = (e) => dt(e.replace(/["|']|\]/g, "").split(/\.|\[/)), k = (e, t, r) => {
|
|
2105
1763
|
if (!t || !j(e))
|
|
2106
1764
|
return r;
|
|
2107
|
-
const n = (
|
|
1765
|
+
const n = (We(t) ? [t] : ft(t)).reduce((i, s) => W(i) ? i : i[s], e);
|
|
2108
1766
|
return B(n) || n === e ? B(e[t]) ? r : e[t] : n;
|
|
2109
1767
|
}, ne = (e) => typeof e == "boolean", te = (e) => typeof e == "function", T = (e, t, r) => {
|
|
2110
1768
|
let n = -1;
|
|
2111
|
-
const i =
|
|
1769
|
+
const i = We(t) ? [t] : ft(t), s = i.length, o = s - 1;
|
|
2112
1770
|
for (; ++n < s; ) {
|
|
2113
1771
|
const a = i[n];
|
|
2114
1772
|
let f = r;
|
|
@@ -2121,7 +1779,7 @@ var Xe = (e) => /^\w*$/.test(e), B = (e) => e === void 0, ft = (e) => Array.isAr
|
|
|
2121
1779
|
e[a] = f, e = e[a];
|
|
2122
1780
|
}
|
|
2123
1781
|
};
|
|
2124
|
-
const
|
|
1782
|
+
const Nt = {
|
|
2125
1783
|
BLUR: "blur",
|
|
2126
1784
|
FOCUS_OUT: "focusout",
|
|
2127
1785
|
CHANGE: "change"
|
|
@@ -2139,9 +1797,9 @@ const Tt = {
|
|
|
2139
1797
|
pattern: "pattern",
|
|
2140
1798
|
required: "required",
|
|
2141
1799
|
validate: "validate"
|
|
2142
|
-
},
|
|
2143
|
-
|
|
2144
|
-
var
|
|
1800
|
+
}, Zn = H.createContext(null);
|
|
1801
|
+
Zn.displayName = "HookFormControlContext";
|
|
1802
|
+
var Xn = (e, t, r, n = !0) => {
|
|
2145
1803
|
const i = {
|
|
2146
1804
|
defaultValues: t._defaultValues
|
|
2147
1805
|
};
|
|
@@ -2154,10 +1812,10 @@ var Jn = (e, t, r, n = !0) => {
|
|
|
2154
1812
|
});
|
|
2155
1813
|
return i;
|
|
2156
1814
|
};
|
|
2157
|
-
const
|
|
2158
|
-
var
|
|
1815
|
+
const Yn = typeof window < "u" ? H.useLayoutEffect : H.useEffect;
|
|
1816
|
+
var X = (e) => typeof e == "string", Qn = (e, t, r, n, i) => X(e) ? (n && t.watch.add(e), k(r, e, i)) : Array.isArray(e) ? e.map((s) => (n && t.watch.add(s), k(r, s))) : (n && (t.watchAll = !0), r), it = (e) => W(e) || !hr(e);
|
|
2159
1817
|
function he(e, t, r = /* @__PURE__ */ new WeakSet()) {
|
|
2160
|
-
if (
|
|
1818
|
+
if (it(e) || it(t))
|
|
2161
1819
|
return Object.is(e, t);
|
|
2162
1820
|
if (ve(e) && ve(t))
|
|
2163
1821
|
return Object.is(e.getTime(), t.getTime());
|
|
@@ -2179,15 +1837,15 @@ function he(e, t, r = /* @__PURE__ */ new WeakSet()) {
|
|
|
2179
1837
|
}
|
|
2180
1838
|
return !0;
|
|
2181
1839
|
}
|
|
2182
|
-
const
|
|
2183
|
-
|
|
2184
|
-
var
|
|
1840
|
+
const es = H.createContext(null);
|
|
1841
|
+
es.displayName = "HookFormContext";
|
|
1842
|
+
var pr = (e, t, r, n, i) => t ? {
|
|
2185
1843
|
...r[e],
|
|
2186
1844
|
types: {
|
|
2187
1845
|
...r[e] && r[e].types ? r[e].types : {},
|
|
2188
1846
|
[n]: i || !0
|
|
2189
1847
|
}
|
|
2190
|
-
} : {}, Be = (e) => Array.isArray(e) ? e : [e],
|
|
1848
|
+
} : {}, Be = (e) => Array.isArray(e) ? e : [e], Tt = () => {
|
|
2191
1849
|
let e = [];
|
|
2192
1850
|
return {
|
|
2193
1851
|
get observers() {
|
|
@@ -2207,64 +1865,64 @@ var hr = (e, t, r, n, i) => t ? {
|
|
|
2207
1865
|
}
|
|
2208
1866
|
};
|
|
2209
1867
|
};
|
|
2210
|
-
function
|
|
1868
|
+
function mr(e, t) {
|
|
2211
1869
|
const r = {};
|
|
2212
1870
|
for (const n in e)
|
|
2213
1871
|
if (e.hasOwnProperty(n)) {
|
|
2214
1872
|
const i = e[n], s = t[n];
|
|
2215
1873
|
if (i && j(i) && s) {
|
|
2216
|
-
const o =
|
|
1874
|
+
const o = mr(i, s);
|
|
2217
1875
|
j(o) && (r[n] = o);
|
|
2218
1876
|
} else
|
|
2219
1877
|
e[n] && (r[n] = s);
|
|
2220
1878
|
}
|
|
2221
1879
|
return r;
|
|
2222
1880
|
}
|
|
2223
|
-
var G = (e) => j(e) && !Object.keys(e).length,
|
|
2224
|
-
if (!
|
|
1881
|
+
var G = (e) => j(e) && !Object.keys(e).length, ht = (e) => e.type === "file", Ke = (e) => {
|
|
1882
|
+
if (!ut)
|
|
2225
1883
|
return !1;
|
|
2226
1884
|
const t = e ? e.ownerDocument : 0;
|
|
2227
1885
|
return e instanceof (t && t.defaultView ? t.defaultView.HTMLElement : HTMLElement);
|
|
2228
|
-
},
|
|
2229
|
-
function
|
|
1886
|
+
}, gr = (e) => e.type === "select-multiple", pt = (e) => e.type === "radio", ts = (e) => pt(e) || Ue(e), nt = (e) => Ke(e) && e.isConnected;
|
|
1887
|
+
function rs(e, t) {
|
|
2230
1888
|
const r = t.slice(0, -1).length;
|
|
2231
1889
|
let n = 0;
|
|
2232
1890
|
for (; n < r; )
|
|
2233
1891
|
e = B(e) ? n++ : e[t[n++]];
|
|
2234
1892
|
return e;
|
|
2235
1893
|
}
|
|
2236
|
-
function
|
|
1894
|
+
function ns(e) {
|
|
2237
1895
|
for (const t in e)
|
|
2238
1896
|
if (e.hasOwnProperty(t) && !B(e[t]))
|
|
2239
1897
|
return !1;
|
|
2240
1898
|
return !0;
|
|
2241
1899
|
}
|
|
2242
1900
|
function P(e, t) {
|
|
2243
|
-
const r = Array.isArray(t) ? t :
|
|
2244
|
-
return n && delete n[s], i !== 0 && (j(n) && G(n) || Array.isArray(n) &&
|
|
1901
|
+
const r = Array.isArray(t) ? t : We(t) ? [t] : ft(t), n = r.length === 1 ? e : rs(e, r), i = r.length - 1, s = r[i];
|
|
1902
|
+
return n && delete n[s], i !== 0 && (j(n) && G(n) || Array.isArray(n) && ns(n)) && P(e, r.slice(0, -1)), e;
|
|
2245
1903
|
}
|
|
2246
|
-
var
|
|
1904
|
+
var ss = (e) => {
|
|
2247
1905
|
for (const t in e)
|
|
2248
1906
|
if (te(e[t]))
|
|
2249
1907
|
return !0;
|
|
2250
1908
|
return !1;
|
|
2251
1909
|
};
|
|
2252
|
-
function
|
|
2253
|
-
return Array.isArray(e) || j(e) && !
|
|
1910
|
+
function yr(e) {
|
|
1911
|
+
return Array.isArray(e) || j(e) && !ss(e);
|
|
2254
1912
|
}
|
|
2255
|
-
function
|
|
1913
|
+
function ot(e, t = {}) {
|
|
2256
1914
|
for (const r in e) {
|
|
2257
1915
|
const n = e[r];
|
|
2258
|
-
|
|
1916
|
+
yr(n) ? (t[r] = Array.isArray(n) ? [] : {}, ot(n, t[r])) : B(n) || (t[r] = !0);
|
|
2259
1917
|
}
|
|
2260
1918
|
return t;
|
|
2261
1919
|
}
|
|
2262
1920
|
function Ee(e, t, r) {
|
|
2263
|
-
r || (r =
|
|
1921
|
+
r || (r = ot(t));
|
|
2264
1922
|
for (const n in e) {
|
|
2265
1923
|
const i = e[n];
|
|
2266
|
-
if (
|
|
2267
|
-
B(t) ||
|
|
1924
|
+
if (yr(i))
|
|
1925
|
+
B(t) || it(r[n]) ? r[n] = ot(i, Array.isArray(i) ? [] : {}) : Ee(i, W(t) ? {} : t[n], r[n]);
|
|
2268
1926
|
else {
|
|
2269
1927
|
const s = t[n];
|
|
2270
1928
|
r[n] = !he(i, s);
|
|
@@ -2272,11 +1930,11 @@ function Ee(e, t, r) {
|
|
|
2272
1930
|
}
|
|
2273
1931
|
return r;
|
|
2274
1932
|
}
|
|
2275
|
-
const
|
|
1933
|
+
const Dt = {
|
|
2276
1934
|
value: !1,
|
|
2277
1935
|
isValid: !1
|
|
2278
|
-
},
|
|
2279
|
-
var
|
|
1936
|
+
}, Rt = { value: !0, isValid: !0 };
|
|
1937
|
+
var br = (e) => {
|
|
2280
1938
|
if (Array.isArray(e)) {
|
|
2281
1939
|
if (e.length > 1) {
|
|
2282
1940
|
const t = e.filter((r) => r && r.checked && !r.disabled).map((r) => r.value);
|
|
@@ -2284,24 +1942,24 @@ var yr = (e) => {
|
|
|
2284
1942
|
}
|
|
2285
1943
|
return e[0].checked && !e[0].disabled ? (
|
|
2286
1944
|
// @ts-expect-error expected to work in the browser
|
|
2287
|
-
e[0].attributes && !B(e[0].attributes.value) ? B(e[0].value) || e[0].value === "" ?
|
|
2288
|
-
) :
|
|
1945
|
+
e[0].attributes && !B(e[0].attributes.value) ? B(e[0].value) || e[0].value === "" ? Rt : { value: e[0].value, isValid: !0 } : Rt
|
|
1946
|
+
) : Dt;
|
|
2289
1947
|
}
|
|
2290
|
-
return
|
|
2291
|
-
},
|
|
2292
|
-
const
|
|
1948
|
+
return Dt;
|
|
1949
|
+
}, vr = (e, { valueAsNumber: t, valueAsDate: r, setValueAs: n }) => B(e) ? e : t ? e === "" ? NaN : e && +e : r && X(e) ? new Date(e) : n ? n(e) : e;
|
|
1950
|
+
const Ot = {
|
|
2293
1951
|
isValid: !1,
|
|
2294
1952
|
value: null
|
|
2295
1953
|
};
|
|
2296
|
-
var
|
|
1954
|
+
var xr = (e) => Array.isArray(e) ? e.reduce((t, r) => r && r.checked && !r.disabled ? {
|
|
2297
1955
|
isValid: !0,
|
|
2298
1956
|
value: r.value
|
|
2299
|
-
} : t,
|
|
2300
|
-
function
|
|
1957
|
+
} : t, Ot) : Ot;
|
|
1958
|
+
function Bt(e) {
|
|
2301
1959
|
const t = e.ref;
|
|
2302
|
-
return
|
|
1960
|
+
return ht(t) ? t.files : pt(t) ? xr(e.refs).value : gr(t) ? [...t.selectedOptions].map(({ value: r }) => r) : Ue(t) ? br(e.refs).value : vr(B(t.value) ? e.ref.value : t.value, e);
|
|
2303
1961
|
}
|
|
2304
|
-
var
|
|
1962
|
+
var as = (e, t, r, n) => {
|
|
2305
1963
|
const i = {};
|
|
2306
1964
|
for (const s of e) {
|
|
2307
1965
|
const o = k(t, s);
|
|
@@ -2313,15 +1971,15 @@ var ns = (e, t, r, n) => {
|
|
|
2313
1971
|
fields: i,
|
|
2314
1972
|
shouldUseNativeValidation: n
|
|
2315
1973
|
};
|
|
2316
|
-
},
|
|
1974
|
+
}, He = (e) => e instanceof RegExp, Ne = (e) => B(e) ? e : He(e) ? e.source : j(e) ? He(e.value) ? e.value.source : e.value : e, Pt = (e) => ({
|
|
2317
1975
|
isOnSubmit: !e || e === re.onSubmit,
|
|
2318
1976
|
isOnBlur: e === re.onBlur,
|
|
2319
1977
|
isOnChange: e === re.onChange,
|
|
2320
1978
|
isOnAll: e === re.all,
|
|
2321
1979
|
isOnTouch: e === re.onTouched
|
|
2322
1980
|
});
|
|
2323
|
-
const
|
|
2324
|
-
var
|
|
1981
|
+
const jt = "AsyncFunction";
|
|
1982
|
+
var is = (e) => !!e && !!e.validate && !!(te(e.validate) && e.validate.constructor.name === jt || j(e.validate) && Object.values(e.validate).find((t) => t.constructor.name === jt)), os = (e) => e.mount && (e.required || e.min || e.max || e.maxLength || e.minLength || e.pattern || e.validate), $t = (e, t, r) => !r && (t.watchAll || t.watch.has(e) || [...t.watch].some((n) => e.startsWith(n) && /^\.\w+/.test(e.slice(n.length))));
|
|
2325
1983
|
const Pe = (e, t, r, n) => {
|
|
2326
1984
|
for (const i of r || Object.keys(e)) {
|
|
2327
1985
|
const s = k(e, i);
|
|
@@ -2339,9 +1997,9 @@ const Pe = (e, t, r, n) => {
|
|
|
2339
1997
|
}
|
|
2340
1998
|
}
|
|
2341
1999
|
};
|
|
2342
|
-
function
|
|
2000
|
+
function Ut(e, t, r) {
|
|
2343
2001
|
const n = k(e, r);
|
|
2344
|
-
if (n ||
|
|
2002
|
+
if (n || We(r))
|
|
2345
2003
|
return {
|
|
2346
2004
|
error: n,
|
|
2347
2005
|
name: r
|
|
@@ -2367,32 +2025,32 @@ function zt(e, t, r) {
|
|
|
2367
2025
|
name: r
|
|
2368
2026
|
};
|
|
2369
2027
|
}
|
|
2370
|
-
var
|
|
2028
|
+
var ls = (e, t, r, n) => {
|
|
2371
2029
|
r(e);
|
|
2372
2030
|
const { name: i, ...s } = e;
|
|
2373
2031
|
return G(s) || Object.keys(s).length >= Object.keys(t).length || Object.keys(s).find((o) => t[o] === (!n || re.all));
|
|
2374
|
-
},
|
|
2032
|
+
}, cs = (e, t, r) => !e || !t || e === t || Be(e).some((n) => n && (r ? n === t : n.startsWith(t) || t.startsWith(n))), us = (e, t, r, n, i) => i.isOnAll ? !1 : !r && i.isOnTouch ? !(t || e) : (r ? n.isOnBlur : i.isOnBlur) ? !e : (r ? n.isOnChange : i.isOnChange) ? e : !0, ds = (e, t) => !dt(k(e, t)).length && P(e, t), fs = (e, t, r) => {
|
|
2375
2033
|
const n = Be(k(e, r));
|
|
2376
2034
|
return T(n, "root", t[r]), T(e, r, n), e;
|
|
2377
2035
|
};
|
|
2378
|
-
function
|
|
2379
|
-
if (
|
|
2036
|
+
function zt(e, t, r = "validate") {
|
|
2037
|
+
if (X(e) || Array.isArray(e) && e.every(X) || ne(e) && !e)
|
|
2380
2038
|
return {
|
|
2381
2039
|
type: r,
|
|
2382
|
-
message:
|
|
2040
|
+
message: X(e) ? e : "",
|
|
2383
2041
|
ref: t
|
|
2384
2042
|
};
|
|
2385
2043
|
}
|
|
2386
|
-
var Se = (e) => j(e) && !
|
|
2044
|
+
var Se = (e) => j(e) && !He(e) ? e : {
|
|
2387
2045
|
value: e,
|
|
2388
2046
|
message: ""
|
|
2389
|
-
},
|
|
2047
|
+
}, qt = async (e, t, r, n, i, s) => {
|
|
2390
2048
|
const { ref: o, refs: a, required: f, maxLength: p, minLength: C, min: v, max: h, pattern: y, validate: b, name: E, valueAsNumber: V, mount: x } = e._f, _ = k(r, E);
|
|
2391
2049
|
if (!x || t.has(E))
|
|
2392
2050
|
return {};
|
|
2393
2051
|
const I = a ? a[0] : o, O = (F) => {
|
|
2394
2052
|
i && I.reportValidity && (I.setCustomValidity(ne(F) ? "" : F || ""), I.reportValidity());
|
|
2395
|
-
}, A = {}, ye =
|
|
2053
|
+
}, A = {}, ye = pt(o), Ce = Ue(o), ie = ye || Ce, de = (V || ht(o)) && B(o.value) && B(_) || Ke(o) && o.value === "" || _ === "" || Array.isArray(_) && !_.length, z = pr.bind(null, E, n, A), ze = (F, L, $, q = le.maxLength, ee = le.minLength) => {
|
|
2396
2054
|
const J = F ? L : $;
|
|
2397
2055
|
A[E] = {
|
|
2398
2056
|
type: F ? q : ee,
|
|
@@ -2401,8 +2059,8 @@ var Se = (e) => j(e) && !Ge(e) ? e : {
|
|
|
2401
2059
|
...z(F ? q : ee, J)
|
|
2402
2060
|
};
|
|
2403
2061
|
};
|
|
2404
|
-
if (s ? !Array.isArray(_) || !_.length : f && (!ie && (de || W(_)) || ne(_) && !_ || Ce && !
|
|
2405
|
-
const { value: F, message: L } =
|
|
2062
|
+
if (s ? !Array.isArray(_) || !_.length : f && (!ie && (de || W(_)) || ne(_) && !_ || Ce && !br(a).isValid || ye && !xr(a).isValid)) {
|
|
2063
|
+
const { value: F, message: L } = X(f) ? { value: !!f, message: f } : Se(f);
|
|
2406
2064
|
if (F && (A[E] = {
|
|
2407
2065
|
type: le.required,
|
|
2408
2066
|
message: L,
|
|
@@ -2419,19 +2077,19 @@ var Se = (e) => j(e) && !Ge(e) ? e : {
|
|
|
2419
2077
|
W($.value) || (F = ee > $.value), W(q.value) || (L = ee < q.value);
|
|
2420
2078
|
} else {
|
|
2421
2079
|
const ee = o.valueAsDate || new Date(_), J = (Me) => /* @__PURE__ */ new Date((/* @__PURE__ */ new Date()).toDateString() + " " + Me), Ae = o.type == "time", Le = o.type == "week";
|
|
2422
|
-
|
|
2080
|
+
X($.value) && _ && (F = Ae ? J(_) > J($.value) : Le ? _ > $.value : ee > new Date($.value)), X(q.value) && _ && (L = Ae ? J(_) < J(q.value) : Le ? _ < q.value : ee < new Date(q.value));
|
|
2423
2081
|
}
|
|
2424
2082
|
if ((F || L) && (ze(!!F, $.message, q.message, le.max, le.min), !n))
|
|
2425
2083
|
return O(A[E].message), A;
|
|
2426
2084
|
}
|
|
2427
|
-
if ((p || C) && !de && (
|
|
2085
|
+
if ((p || C) && !de && (X(_) || s && Array.isArray(_))) {
|
|
2428
2086
|
const F = Se(p), L = Se(C), $ = !W(F.value) && _.length > +F.value, q = !W(L.value) && _.length < +L.value;
|
|
2429
2087
|
if (($ || q) && (ze($, F.message, L.message), !n))
|
|
2430
2088
|
return O(A[E].message), A;
|
|
2431
2089
|
}
|
|
2432
|
-
if (y && !de &&
|
|
2090
|
+
if (y && !de && X(_)) {
|
|
2433
2091
|
const { value: F, message: L } = Se(y);
|
|
2434
|
-
if (
|
|
2092
|
+
if (He(F) && !_.match(F) && (A[E] = {
|
|
2435
2093
|
type: le.pattern,
|
|
2436
2094
|
message: L,
|
|
2437
2095
|
ref: o,
|
|
@@ -2441,7 +2099,7 @@ var Se = (e) => j(e) && !Ge(e) ? e : {
|
|
|
2441
2099
|
}
|
|
2442
2100
|
if (b) {
|
|
2443
2101
|
if (te(b)) {
|
|
2444
|
-
const F = await b(_, r), L =
|
|
2102
|
+
const F = await b(_, r), L = zt(F, I);
|
|
2445
2103
|
if (L && (A[E] = {
|
|
2446
2104
|
...L,
|
|
2447
2105
|
...z(le.validate, L.message)
|
|
@@ -2452,7 +2110,7 @@ var Se = (e) => j(e) && !Ge(e) ? e : {
|
|
|
2452
2110
|
for (const L in b) {
|
|
2453
2111
|
if (!G(F) && !n)
|
|
2454
2112
|
break;
|
|
2455
|
-
const $ =
|
|
2113
|
+
const $ = zt(await b[L](_, r), I, L);
|
|
2456
2114
|
$ && (F = {
|
|
2457
2115
|
...$,
|
|
2458
2116
|
...z(L, $.message)
|
|
@@ -2467,14 +2125,14 @@ var Se = (e) => j(e) && !Ge(e) ? e : {
|
|
|
2467
2125
|
}
|
|
2468
2126
|
return O(!0), A;
|
|
2469
2127
|
};
|
|
2470
|
-
const
|
|
2128
|
+
const hs = {
|
|
2471
2129
|
mode: re.onSubmit,
|
|
2472
2130
|
reValidateMode: re.onChange,
|
|
2473
2131
|
shouldFocusError: !0
|
|
2474
2132
|
};
|
|
2475
|
-
function
|
|
2133
|
+
function ps(e = {}) {
|
|
2476
2134
|
let t = {
|
|
2477
|
-
...
|
|
2135
|
+
...hs,
|
|
2478
2136
|
...e
|
|
2479
2137
|
}, r = {
|
|
2480
2138
|
submitCount: 0,
|
|
@@ -2518,8 +2176,8 @@ function fs(e = {}) {
|
|
|
2518
2176
|
...v
|
|
2519
2177
|
};
|
|
2520
2178
|
const y = {
|
|
2521
|
-
array:
|
|
2522
|
-
state:
|
|
2179
|
+
array: Tt(),
|
|
2180
|
+
state: Tt()
|
|
2523
2181
|
}, b = t.criteriaMode === re.all, E = (l) => (u) => {
|
|
2524
2182
|
clearTimeout(p), p = setTimeout(l, u);
|
|
2525
2183
|
}, V = async (l) => {
|
|
@@ -2544,7 +2202,7 @@ function fs(e = {}) {
|
|
|
2544
2202
|
}
|
|
2545
2203
|
if (m && Array.isArray(k(r.errors, l))) {
|
|
2546
2204
|
const S = d(k(r.errors, l), w.argA, w.argB);
|
|
2547
|
-
g && T(r.errors, l, S),
|
|
2205
|
+
g && T(r.errors, l, S), ds(r.errors, l);
|
|
2548
2206
|
}
|
|
2549
2207
|
if ((v.touchedFields || h.touchedFields) && m && Array.isArray(k(r.touchedFields, l))) {
|
|
2550
2208
|
const S = d(k(r.touchedFields, l), w.argA, w.argB);
|
|
@@ -2572,7 +2230,7 @@ function fs(e = {}) {
|
|
|
2572
2230
|
const g = k(n, l);
|
|
2573
2231
|
if (g) {
|
|
2574
2232
|
const m = k(s, l, B(d) ? k(i, l) : d);
|
|
2575
|
-
B(m) || w && w.defaultChecked || u ? T(s, l, u ? m :
|
|
2233
|
+
B(m) || w && w.defaultChecked || u ? T(s, l, u ? m : Bt(g._f)) : q(l, m), o.mount && !o.action && V();
|
|
2576
2234
|
}
|
|
2577
2235
|
}, ye = (l, u, d, w, g) => {
|
|
2578
2236
|
let m = !1, S = !1;
|
|
@@ -2606,7 +2264,7 @@ function fs(e = {}) {
|
|
|
2606
2264
|
...S
|
|
2607
2265
|
}, y.state.next(S);
|
|
2608
2266
|
}
|
|
2609
|
-
}, ie = async (l) => (x(l, !0), await t.resolver(s, t.context,
|
|
2267
|
+
}, ie = async (l) => (x(l, !0), await t.resolver(s, t.context, as(l || a.mount, n, t.criteriaMode, t.shouldUseNativeValidation))), de = async (l) => {
|
|
2610
2268
|
const { errors: u } = await ie(l);
|
|
2611
2269
|
if (x(l), l)
|
|
2612
2270
|
for (const d of l) {
|
|
@@ -2624,12 +2282,12 @@ function fs(e = {}) {
|
|
|
2624
2282
|
if (g) {
|
|
2625
2283
|
const { _f: m, ...S } = g;
|
|
2626
2284
|
if (m) {
|
|
2627
|
-
const M = a.array.has(m.name), N = g._f &&
|
|
2285
|
+
const M = a.array.has(m.name), N = g._f && is(g._f);
|
|
2628
2286
|
N && v.validatingFields && x([m.name], !0);
|
|
2629
|
-
const
|
|
2630
|
-
if (N && v.validatingFields && x([m.name]),
|
|
2287
|
+
const K = await qt(g, a.disabled, s, b, t.shouldUseNativeValidation && !u, M);
|
|
2288
|
+
if (N && v.validatingFields && x([m.name]), K[m.name] && (d.valid = !1, u || e.shouldUseNativeValidation))
|
|
2631
2289
|
break;
|
|
2632
|
-
!u && (k(
|
|
2290
|
+
!u && (k(K, m.name) ? M ? fs(r.errors, K, m.name) : T(r.errors, m.name, K[m.name]) : P(r.errors, m.name));
|
|
2633
2291
|
}
|
|
2634
2292
|
!G(S) && await z(S, u, d);
|
|
2635
2293
|
}
|
|
@@ -2638,19 +2296,19 @@ function fs(e = {}) {
|
|
|
2638
2296
|
}, ze = () => {
|
|
2639
2297
|
for (const l of a.unMount) {
|
|
2640
2298
|
const u = k(n, l);
|
|
2641
|
-
u && (u._f.refs ? u._f.refs.every((d) => !
|
|
2299
|
+
u && (u._f.refs ? u._f.refs.every((d) => !nt(d)) : !nt(u._f.ref)) && Xe(l);
|
|
2642
2300
|
}
|
|
2643
2301
|
a.unMount = /* @__PURE__ */ new Set();
|
|
2644
|
-
}, F = (l, u) => !t.disabled && (l && u && T(s, l, u), !he(
|
|
2645
|
-
...o.mount ? s : B(u) ? i :
|
|
2646
|
-
}, d, u), $ = (l) =>
|
|
2302
|
+
}, F = (l, u) => !t.disabled && (l && u && T(s, l, u), !he(mt(), i)), L = (l, u, d) => Qn(l, a, {
|
|
2303
|
+
...o.mount ? s : B(u) ? i : X(l) ? { [l]: u } : u
|
|
2304
|
+
}, d, u), $ = (l) => dt(k(o.mount ? s : i, l, t.shouldUnregister ? k(i, l, []) : [])), q = (l, u, d = {}) => {
|
|
2647
2305
|
const w = k(n, l);
|
|
2648
2306
|
let g = u;
|
|
2649
2307
|
if (w) {
|
|
2650
2308
|
const m = w._f;
|
|
2651
|
-
m && (!m.disabled && T(s, l,
|
|
2309
|
+
m && (!m.disabled && T(s, l, vr(u, m)), g = Ke(m.ref) && W(u) ? "" : u, gr(m.ref) ? [...m.ref.options].forEach((S) => S.selected = g.includes(S.value)) : m.refs ? Ue(m.ref) ? m.refs.forEach((S) => {
|
|
2652
2310
|
(!S.defaultChecked || !S.disabled) && (Array.isArray(g) ? S.checked = !!g.find((M) => M === S.value) : S.checked = g === S.value || !!g);
|
|
2653
|
-
}) : m.refs.forEach((S) => S.checked = S.value === g) :
|
|
2311
|
+
}) : m.refs.forEach((S) => S.checked = S.value === g) : ht(m.ref) ? m.ref.value = "" : (m.ref.value = g, m.ref.type || y.state.next({
|
|
2654
2312
|
name: l,
|
|
2655
2313
|
values: U(s)
|
|
2656
2314
|
})));
|
|
@@ -2672,7 +2330,7 @@ function fs(e = {}) {
|
|
|
2672
2330
|
name: l,
|
|
2673
2331
|
dirtyFields: Ee(i, s),
|
|
2674
2332
|
isDirty: F(l, m)
|
|
2675
|
-
})) : w && !w._f && !W(m) ? ee(l, m, d) : q(l, m, d),
|
|
2333
|
+
})) : w && !w._f && !W(m) ? ee(l, m, d) : q(l, m, d), $t(l, a) ? y.state.next({
|
|
2676
2334
|
...r,
|
|
2677
2335
|
name: l,
|
|
2678
2336
|
values: U(s)
|
|
@@ -2686,27 +2344,27 @@ function fs(e = {}) {
|
|
|
2686
2344
|
let d = u.name, w = !0;
|
|
2687
2345
|
const g = k(n, d), m = (N) => {
|
|
2688
2346
|
w = Number.isNaN(N) || ve(N) && isNaN(N.getTime()) || he(N, k(s, d, N));
|
|
2689
|
-
}, S =
|
|
2347
|
+
}, S = Pt(t.mode), M = Pt(t.reValidateMode);
|
|
2690
2348
|
if (g) {
|
|
2691
|
-
let N,
|
|
2692
|
-
const be = u.type ?
|
|
2349
|
+
let N, K;
|
|
2350
|
+
const be = u.type ? Bt(g._f) : Hn(l), fe = l.type === Nt.BLUR || l.type === Nt.FOCUS_OUT, Ir = !os(g._f) && !t.resolver && !k(r.errors, d) && !g._f.deps || us(fe, k(r.touchedFields, d), r.isSubmitted, M, S), et = $t(d, a, fe);
|
|
2693
2351
|
T(s, d, be), fe ? (!u || !u.readOnly) && (g._f.onBlur && g._f.onBlur(l), f && f(0)) : g._f.onChange && g._f.onChange(l);
|
|
2694
|
-
const
|
|
2352
|
+
const tt = ye(d, be, fe), Ar = !G(tt) || et;
|
|
2695
2353
|
if (!fe && y.state.next({
|
|
2696
2354
|
name: d,
|
|
2697
2355
|
type: l.type,
|
|
2698
2356
|
values: U(s)
|
|
2699
|
-
}),
|
|
2700
|
-
return (v.isValid || h.isValid) && (t.mode === "onBlur" ? fe && V() : fe || V()),
|
|
2701
|
-
if (!fe &&
|
|
2702
|
-
const { errors:
|
|
2357
|
+
}), Ir)
|
|
2358
|
+
return (v.isValid || h.isValid) && (t.mode === "onBlur" ? fe && V() : fe || V()), Ar && y.state.next({ name: d, ...et ? {} : tt });
|
|
2359
|
+
if (!fe && et && y.state.next({ ...r }), t.resolver) {
|
|
2360
|
+
const { errors: Ct } = await ie([d]);
|
|
2703
2361
|
if (x([d]), m(be), w) {
|
|
2704
|
-
const
|
|
2705
|
-
N =
|
|
2362
|
+
const Lr = Ut(r.errors, n, d), St = Ut(Ct, n, Lr.name || d);
|
|
2363
|
+
N = St.error, d = St.name, K = G(Ct);
|
|
2706
2364
|
}
|
|
2707
2365
|
} else
|
|
2708
|
-
x([d], !0), N = (await
|
|
2709
|
-
w && (g._f.deps && (!Array.isArray(g._f.deps) || g._f.deps.length > 0) && Me(g._f.deps), Ce(d,
|
|
2366
|
+
x([d], !0), N = (await qt(g, a.disabled, s, b, t.shouldUseNativeValidation))[d], x([d]), m(be), w && (N ? K = !1 : (v.isValid || h.isValid) && (K = await z(n, !0)));
|
|
2367
|
+
w && (g._f.deps && (!Array.isArray(g._f.deps) || g._f.deps.length > 0) && Me(g._f.deps), Ce(d, K, N, tt));
|
|
2710
2368
|
}
|
|
2711
2369
|
}, Le = (l, u) => {
|
|
2712
2370
|
if (k(r.errors, u) && l.focus)
|
|
@@ -2723,22 +2381,22 @@ function fs(e = {}) {
|
|
|
2723
2381
|
return await z(S && S._f ? { [m]: S } : S);
|
|
2724
2382
|
}))).every(Boolean), !(!w && !r.isValid) && V()) : w = d = await z(n);
|
|
2725
2383
|
return y.state.next({
|
|
2726
|
-
...!
|
|
2384
|
+
...!X(l) || (v.isValid || h.isValid) && d !== r.isValid ? {} : { name: l },
|
|
2727
2385
|
...t.resolver || !l ? { isValid: d } : {},
|
|
2728
2386
|
errors: r.errors
|
|
2729
2387
|
}), u.shouldFocus && !w && Pe(n, Le, l ? g : a.mount), w;
|
|
2730
|
-
},
|
|
2388
|
+
}, mt = (l, u) => {
|
|
2731
2389
|
let d = {
|
|
2732
2390
|
...o.mount ? s : i
|
|
2733
2391
|
};
|
|
2734
|
-
return u && (d =
|
|
2735
|
-
},
|
|
2392
|
+
return u && (d = mr(u.dirtyFields ? r.dirtyFields : r.touchedFields, d)), B(l) ? d : X(l) ? k(d, l) : l.map((w) => k(d, w));
|
|
2393
|
+
}, gt = (l, u) => ({
|
|
2736
2394
|
invalid: !!k((u || r).errors, l),
|
|
2737
2395
|
isDirty: !!k((u || r).dirtyFields, l),
|
|
2738
2396
|
error: k((u || r).errors, l),
|
|
2739
2397
|
isValidating: !!k(r.validatingFields, l),
|
|
2740
2398
|
isTouched: !!k((u || r).touchedFields, l)
|
|
2741
|
-
}),
|
|
2399
|
+
}), kr = (l) => {
|
|
2742
2400
|
const u = l ? Be(l) : void 0;
|
|
2743
2401
|
u == null || u.forEach((d) => P(r.errors, d)), u ? u.forEach((d) => {
|
|
2744
2402
|
y.state.next({
|
|
@@ -2748,7 +2406,7 @@ function fs(e = {}) {
|
|
|
2748
2406
|
}) : y.state.next({
|
|
2749
2407
|
errors: {}
|
|
2750
2408
|
});
|
|
2751
|
-
},
|
|
2409
|
+
}, yt = (l, u, d) => {
|
|
2752
2410
|
const w = (k(n, l, { _f: {} })._f || {}).ref, g = k(r.errors, l) || {}, { ref: m, message: S, type: M, ...N } = g;
|
|
2753
2411
|
T(r.errors, l, {
|
|
2754
2412
|
...N,
|
|
@@ -2759,27 +2417,27 @@ function fs(e = {}) {
|
|
|
2759
2417
|
errors: r.errors,
|
|
2760
2418
|
isValid: !1
|
|
2761
2419
|
}), d && d.shouldFocus && w && w.focus && w.focus();
|
|
2762
|
-
},
|
|
2420
|
+
}, _r = (l, u) => te(l) ? y.state.subscribe({
|
|
2763
2421
|
next: (d) => "values" in d && l(L(void 0, u), d)
|
|
2764
|
-
}) : L(l, u, !0),
|
|
2422
|
+
}) : L(l, u, !0), bt = (l) => y.state.subscribe({
|
|
2765
2423
|
next: (u) => {
|
|
2766
|
-
|
|
2424
|
+
cs(l.name, u.name, l.exact) && ls(u, l.formState || v, Fr, l.reRenderRoot) && l.callback({
|
|
2767
2425
|
values: { ...s },
|
|
2768
2426
|
...r,
|
|
2769
2427
|
...u,
|
|
2770
2428
|
defaultValues: i
|
|
2771
2429
|
});
|
|
2772
2430
|
}
|
|
2773
|
-
}).unsubscribe,
|
|
2431
|
+
}).unsubscribe, Cr = (l) => (o.mount = !0, h = {
|
|
2774
2432
|
...h,
|
|
2775
2433
|
...l.formState
|
|
2776
|
-
},
|
|
2434
|
+
}, bt({
|
|
2777
2435
|
...l,
|
|
2778
2436
|
formState: {
|
|
2779
2437
|
...C,
|
|
2780
2438
|
...l.formState
|
|
2781
2439
|
}
|
|
2782
|
-
})),
|
|
2440
|
+
})), Xe = (l, u = {}) => {
|
|
2783
2441
|
for (const d of l ? Be(l) : a.mount)
|
|
2784
2442
|
a.mount.delete(d), a.array.delete(d), u.keepValue || (P(n, d), P(s, d)), !u.keepError && P(r.errors, d), !u.keepDirty && P(r.dirtyFields, d), !u.keepTouched && P(r.touchedFields, d), !u.keepIsValidating && P(r.validatingFields, d), !t.shouldUnregister && !u.keepDefaultValue && P(i, d);
|
|
2785
2443
|
y.state.next({
|
|
@@ -2788,12 +2446,12 @@ function fs(e = {}) {
|
|
|
2788
2446
|
...r,
|
|
2789
2447
|
...u.keepDirty ? { isDirty: F() } : {}
|
|
2790
2448
|
}), !u.keepIsValid && V();
|
|
2791
|
-
},
|
|
2449
|
+
}, vt = ({ disabled: l, name: u }) => {
|
|
2792
2450
|
if (ne(l) && o.mount || l || a.disabled.has(u)) {
|
|
2793
2451
|
const g = a.disabled.has(u) !== !!l;
|
|
2794
2452
|
l ? a.disabled.add(u) : a.disabled.delete(u), g && o.mount && !o.action && V();
|
|
2795
2453
|
}
|
|
2796
|
-
},
|
|
2454
|
+
}, Ye = (l, u = {}) => {
|
|
2797
2455
|
let d = k(n, l);
|
|
2798
2456
|
const w = ne(u.disabled) || ne(t.disabled);
|
|
2799
2457
|
return T(n, l, {
|
|
@@ -2804,7 +2462,7 @@ function fs(e = {}) {
|
|
|
2804
2462
|
mount: !0,
|
|
2805
2463
|
...u
|
|
2806
2464
|
}
|
|
2807
|
-
}), a.mount.add(l), d ?
|
|
2465
|
+
}), a.mount.add(l), d ? vt({
|
|
2808
2466
|
disabled: ne(u.disabled) ? u.disabled : t.disabled,
|
|
2809
2467
|
name: l
|
|
2810
2468
|
}) : A(l, !0, u.value), {
|
|
@@ -2822,8 +2480,8 @@ function fs(e = {}) {
|
|
|
2822
2480
|
onBlur: Ae,
|
|
2823
2481
|
ref: (g) => {
|
|
2824
2482
|
if (g) {
|
|
2825
|
-
|
|
2826
|
-
const m = B(g.value) && g.querySelectorAll && g.querySelectorAll("input,select,textarea")[0] || g, S =
|
|
2483
|
+
Ye(l, u), d = k(n, l);
|
|
2484
|
+
const m = B(g.value) && g.querySelectorAll && g.querySelectorAll("input,select,textarea")[0] || g, S = ts(m), M = d._f.refs || [];
|
|
2827
2485
|
if (S ? M.find((N) => N === m) : m === d._f.ref)
|
|
2828
2486
|
return;
|
|
2829
2487
|
T(n, l, {
|
|
@@ -2831,7 +2489,7 @@ function fs(e = {}) {
|
|
|
2831
2489
|
...d._f,
|
|
2832
2490
|
...S ? {
|
|
2833
2491
|
refs: [
|
|
2834
|
-
...M.filter(
|
|
2492
|
+
...M.filter(nt),
|
|
2835
2493
|
m,
|
|
2836
2494
|
...Array.isArray(k(i, l)) ? [{}] : []
|
|
2837
2495
|
],
|
|
@@ -2840,17 +2498,17 @@ function fs(e = {}) {
|
|
|
2840
2498
|
}
|
|
2841
2499
|
}), A(l, !1, void 0, m);
|
|
2842
2500
|
} else
|
|
2843
|
-
d = k(n, l, {}), d._f && (d._f.mount = !1), (t.shouldUnregister || u.shouldUnregister) && !(
|
|
2501
|
+
d = k(n, l, {}), d._f && (d._f.mount = !1), (t.shouldUnregister || u.shouldUnregister) && !(Wn(a.array, l) && o.action) && a.unMount.add(l);
|
|
2844
2502
|
}
|
|
2845
2503
|
};
|
|
2846
|
-
},
|
|
2504
|
+
}, Qe = () => t.shouldFocusError && Pe(n, Le, a.mount), Sr = (l) => {
|
|
2847
2505
|
ne(l) && (y.state.next({ disabled: l }), Pe(n, (u, d) => {
|
|
2848
2506
|
const w = k(n, d);
|
|
2849
2507
|
w && (u.disabled = w._f.disabled || l, Array.isArray(w._f.refs) && w._f.refs.forEach((g) => {
|
|
2850
2508
|
g.disabled = w._f.disabled || l;
|
|
2851
2509
|
}));
|
|
2852
2510
|
}, 0, !1));
|
|
2853
|
-
},
|
|
2511
|
+
}, xt = (l, u) => async (d) => {
|
|
2854
2512
|
let w;
|
|
2855
2513
|
d && (d.preventDefault && d.preventDefault(), d.persist && d.persist());
|
|
2856
2514
|
let g = U(s);
|
|
@@ -2874,7 +2532,7 @@ function fs(e = {}) {
|
|
|
2874
2532
|
w = m;
|
|
2875
2533
|
}
|
|
2876
2534
|
} else
|
|
2877
|
-
u && await u({ ...r.errors }, d),
|
|
2535
|
+
u && await u({ ...r.errors }, d), Qe(), setTimeout(Qe);
|
|
2878
2536
|
if (y.state.next({
|
|
2879
2537
|
isSubmitted: !0,
|
|
2880
2538
|
isSubmitting: !1,
|
|
@@ -2883,9 +2541,9 @@ function fs(e = {}) {
|
|
|
2883
2541
|
errors: r.errors
|
|
2884
2542
|
}), w)
|
|
2885
2543
|
throw w;
|
|
2886
|
-
},
|
|
2544
|
+
}, Vr = (l, u = {}) => {
|
|
2887
2545
|
k(n, l) && (B(u.defaultValue) ? J(l, U(k(i, l))) : (J(l, u.defaultValue), T(i, l, U(u.defaultValue))), u.keepTouched || P(r.touchedFields, l), u.keepDirty || (P(r.dirtyFields, l), r.isDirty = u.defaultValue ? F(l, U(k(i, l))) : F()), u.keepError || (P(r.errors, l), v.isValid && V()), y.state.next({ ...r }));
|
|
2888
|
-
},
|
|
2546
|
+
}, wt = (l, u = {}) => {
|
|
2889
2547
|
const d = l ? U(l) : i, w = U(d), g = G(l), m = g ? i : w;
|
|
2890
2548
|
if (u.keepDefaultValues || (i = d), !u.keepValues) {
|
|
2891
2549
|
if (u.keepDirtyValues) {
|
|
@@ -2894,19 +2552,19 @@ function fs(e = {}) {
|
|
|
2894
2552
|
...Object.keys(Ee(i, s))
|
|
2895
2553
|
]);
|
|
2896
2554
|
for (const M of Array.from(S)) {
|
|
2897
|
-
const N = k(r.dirtyFields, M),
|
|
2898
|
-
N && !B(
|
|
2555
|
+
const N = k(r.dirtyFields, M), K = k(s, M), be = k(m, M);
|
|
2556
|
+
N && !B(K) ? T(m, M, K) : !N && !B(be) && J(M, be);
|
|
2899
2557
|
}
|
|
2900
2558
|
} else {
|
|
2901
|
-
if (
|
|
2559
|
+
if (ut && B(l))
|
|
2902
2560
|
for (const S of a.mount) {
|
|
2903
2561
|
const M = k(n, S);
|
|
2904
2562
|
if (M && M._f) {
|
|
2905
2563
|
const N = Array.isArray(M._f.refs) ? M._f.refs[0] : M._f.ref;
|
|
2906
2564
|
if (Ke(N)) {
|
|
2907
|
-
const
|
|
2908
|
-
if (
|
|
2909
|
-
|
|
2565
|
+
const K = N.closest("form");
|
|
2566
|
+
if (K) {
|
|
2567
|
+
K.reset();
|
|
2910
2568
|
break;
|
|
2911
2569
|
}
|
|
2912
2570
|
}
|
|
@@ -2943,7 +2601,7 @@ function fs(e = {}) {
|
|
|
2943
2601
|
isSubmitting: !1,
|
|
2944
2602
|
defaultValues: i
|
|
2945
2603
|
});
|
|
2946
|
-
},
|
|
2604
|
+
}, kt = (l, u) => wt(te(l) ? l(s) : l, { ...t.resetOptions, ...u }), Er = (l, u = {}) => {
|
|
2947
2605
|
const d = k(n, l), w = d && d._f;
|
|
2948
2606
|
if (w) {
|
|
2949
2607
|
const g = w.refs ? w.refs[0] : w.ref;
|
|
@@ -2951,37 +2609,37 @@ function fs(e = {}) {
|
|
|
2951
2609
|
g.focus(), u.shouldSelect && te(g.select) && g.select();
|
|
2952
2610
|
});
|
|
2953
2611
|
}
|
|
2954
|
-
},
|
|
2612
|
+
}, Fr = (l) => {
|
|
2955
2613
|
r = {
|
|
2956
2614
|
...r,
|
|
2957
2615
|
...l
|
|
2958
2616
|
};
|
|
2959
|
-
},
|
|
2617
|
+
}, _t = {
|
|
2960
2618
|
control: {
|
|
2961
|
-
register:
|
|
2962
|
-
unregister:
|
|
2963
|
-
getFieldState:
|
|
2964
|
-
handleSubmit:
|
|
2965
|
-
setError:
|
|
2966
|
-
_subscribe:
|
|
2619
|
+
register: Ye,
|
|
2620
|
+
unregister: Xe,
|
|
2621
|
+
getFieldState: gt,
|
|
2622
|
+
handleSubmit: xt,
|
|
2623
|
+
setError: yt,
|
|
2624
|
+
_subscribe: bt,
|
|
2967
2625
|
_runSchema: ie,
|
|
2968
2626
|
_updateIsValidating: x,
|
|
2969
|
-
_focusError:
|
|
2627
|
+
_focusError: Qe,
|
|
2970
2628
|
_getWatch: L,
|
|
2971
2629
|
_getDirty: F,
|
|
2972
2630
|
_setValid: V,
|
|
2973
2631
|
_setFieldArray: _,
|
|
2974
|
-
_setDisabledField:
|
|
2632
|
+
_setDisabledField: vt,
|
|
2975
2633
|
_setErrors: O,
|
|
2976
2634
|
_getFieldArray: $,
|
|
2977
|
-
_reset:
|
|
2635
|
+
_reset: wt,
|
|
2978
2636
|
_resetDefaultValues: () => te(t.defaultValues) && t.defaultValues().then((l) => {
|
|
2979
|
-
|
|
2637
|
+
kt(l, t.resetOptions), y.state.next({
|
|
2980
2638
|
isLoading: !1
|
|
2981
2639
|
});
|
|
2982
2640
|
}),
|
|
2983
2641
|
_removeUnmounted: ze,
|
|
2984
|
-
_disableForm:
|
|
2642
|
+
_disableForm: Sr,
|
|
2985
2643
|
_subjects: y,
|
|
2986
2644
|
_proxyFormState: v,
|
|
2987
2645
|
get _fields() {
|
|
@@ -3018,28 +2676,28 @@ function fs(e = {}) {
|
|
|
3018
2676
|
};
|
|
3019
2677
|
}
|
|
3020
2678
|
},
|
|
3021
|
-
subscribe:
|
|
2679
|
+
subscribe: Cr,
|
|
3022
2680
|
trigger: Me,
|
|
3023
|
-
register:
|
|
3024
|
-
handleSubmit:
|
|
3025
|
-
watch:
|
|
2681
|
+
register: Ye,
|
|
2682
|
+
handleSubmit: xt,
|
|
2683
|
+
watch: _r,
|
|
3026
2684
|
setValue: J,
|
|
3027
|
-
getValues:
|
|
3028
|
-
reset:
|
|
3029
|
-
resetField:
|
|
3030
|
-
clearErrors:
|
|
3031
|
-
unregister:
|
|
3032
|
-
setError:
|
|
3033
|
-
setFocus:
|
|
3034
|
-
getFieldState:
|
|
2685
|
+
getValues: mt,
|
|
2686
|
+
reset: kt,
|
|
2687
|
+
resetField: Vr,
|
|
2688
|
+
clearErrors: kr,
|
|
2689
|
+
unregister: Xe,
|
|
2690
|
+
setError: yt,
|
|
2691
|
+
setFocus: Er,
|
|
2692
|
+
getFieldState: gt
|
|
3035
2693
|
};
|
|
3036
2694
|
return {
|
|
3037
|
-
...
|
|
3038
|
-
formControl:
|
|
2695
|
+
..._t,
|
|
2696
|
+
formControl: _t
|
|
3039
2697
|
};
|
|
3040
2698
|
}
|
|
3041
|
-
function
|
|
3042
|
-
const t =
|
|
2699
|
+
function Je(e = {}) {
|
|
2700
|
+
const t = H.useRef(void 0), r = H.useRef(void 0), [n, i] = H.useState({
|
|
3043
2701
|
isDirty: !1,
|
|
3044
2702
|
isValidating: !1,
|
|
3045
2703
|
isLoading: te(e.defaultValues),
|
|
@@ -3063,14 +2721,14 @@ function Ze(e = {}) {
|
|
|
3063
2721
|
formState: n
|
|
3064
2722
|
}, e.defaultValues && !te(e.defaultValues) && e.formControl.reset(e.defaultValues, e.resetOptions);
|
|
3065
2723
|
else {
|
|
3066
|
-
const { formControl: o, ...a } =
|
|
2724
|
+
const { formControl: o, ...a } = ps(e);
|
|
3067
2725
|
t.current = {
|
|
3068
2726
|
...a,
|
|
3069
2727
|
formState: n
|
|
3070
2728
|
};
|
|
3071
2729
|
}
|
|
3072
2730
|
const s = t.current.control;
|
|
3073
|
-
return s._options = e,
|
|
2731
|
+
return s._options = e, Yn(() => {
|
|
3074
2732
|
const o = s._subscribe({
|
|
3075
2733
|
formState: s._proxyFormState,
|
|
3076
2734
|
callback: () => i({ ...s._formState }),
|
|
@@ -3080,69 +2738,69 @@ function Ze(e = {}) {
|
|
|
3080
2738
|
...a,
|
|
3081
2739
|
isReady: !0
|
|
3082
2740
|
})), s._formState.isReady = !0, o;
|
|
3083
|
-
}, [s]),
|
|
2741
|
+
}, [s]), H.useEffect(() => s._disableForm(e.disabled), [s, e.disabled]), H.useEffect(() => {
|
|
3084
2742
|
e.mode && (s._options.mode = e.mode), e.reValidateMode && (s._options.reValidateMode = e.reValidateMode);
|
|
3085
|
-
}, [s, e.mode, e.reValidateMode]),
|
|
2743
|
+
}, [s, e.mode, e.reValidateMode]), H.useEffect(() => {
|
|
3086
2744
|
e.errors && (s._setErrors(e.errors), s._focusError());
|
|
3087
|
-
}, [s, e.errors]),
|
|
2745
|
+
}, [s, e.errors]), H.useEffect(() => {
|
|
3088
2746
|
e.shouldUnregister && s._subjects.state.next({
|
|
3089
2747
|
values: s._getWatch()
|
|
3090
2748
|
});
|
|
3091
|
-
}, [s, e.shouldUnregister]),
|
|
2749
|
+
}, [s, e.shouldUnregister]), H.useEffect(() => {
|
|
3092
2750
|
if (s._proxyFormState.isDirty) {
|
|
3093
2751
|
const o = s._getDirty();
|
|
3094
2752
|
o !== n.isDirty && s._subjects.state.next({
|
|
3095
2753
|
isDirty: o
|
|
3096
2754
|
});
|
|
3097
2755
|
}
|
|
3098
|
-
}, [s, n.isDirty]),
|
|
2756
|
+
}, [s, n.isDirty]), H.useEffect(() => {
|
|
3099
2757
|
var o;
|
|
3100
2758
|
e.values && !he(e.values, r.current) ? (s._reset(e.values, {
|
|
3101
2759
|
keepFieldsRef: !0,
|
|
3102
2760
|
...s._options.resetOptions
|
|
3103
2761
|
}), !((o = s._options.resetOptions) === null || o === void 0) && o.keepIsValid || s._setValid(), r.current = e.values, i((a) => ({ ...a }))) : s._resetDefaultValues();
|
|
3104
|
-
}, [s, e.values]),
|
|
2762
|
+
}, [s, e.values]), H.useEffect(() => {
|
|
3105
2763
|
s._state.mount || (s._setValid(), s._state.mount = !0), s._state.watch && (s._state.watch = !1, s._subjects.state.next({ ...s._formState })), s._removeUnmounted();
|
|
3106
|
-
}), t.current.formState =
|
|
2764
|
+
}), t.current.formState = H.useMemo(() => Xn(n, s), [s, n]), t.current;
|
|
3107
2765
|
}
|
|
3108
2766
|
const Kt = (e, t, r) => {
|
|
3109
2767
|
if (e && "reportValidity" in e) {
|
|
3110
2768
|
const n = k(r, t);
|
|
3111
2769
|
e.setCustomValidity(n && n.message || ""), e.reportValidity();
|
|
3112
2770
|
}
|
|
3113
|
-
},
|
|
2771
|
+
}, ms = (e, t) => {
|
|
3114
2772
|
for (const r in t.fields) {
|
|
3115
2773
|
const n = t.fields[r];
|
|
3116
2774
|
n && n.ref && "reportValidity" in n.ref ? Kt(n.ref, r, e) : n.refs && n.refs.forEach((i) => Kt(i, r, e));
|
|
3117
2775
|
}
|
|
3118
|
-
},
|
|
3119
|
-
t.shouldUseNativeValidation &&
|
|
2776
|
+
}, gs = (e, t) => {
|
|
2777
|
+
t.shouldUseNativeValidation && ms(e, t);
|
|
3120
2778
|
const r = {};
|
|
3121
2779
|
for (const n in e) {
|
|
3122
2780
|
const i = k(t.fields, n), s = Object.assign(e[n] || {}, { ref: i && i.ref });
|
|
3123
|
-
if (
|
|
2781
|
+
if (ys(t.names || Object.keys(e), n)) {
|
|
3124
2782
|
const o = Object.assign({}, k(r, n));
|
|
3125
2783
|
T(o, "root", s), T(r, n, o);
|
|
3126
2784
|
} else
|
|
3127
2785
|
T(r, n, s);
|
|
3128
2786
|
}
|
|
3129
2787
|
return r;
|
|
3130
|
-
},
|
|
3131
|
-
var
|
|
2788
|
+
}, ys = (e, t) => e.some((r) => r.startsWith(t + "."));
|
|
2789
|
+
var Ze = function(e, t, r) {
|
|
3132
2790
|
return r === void 0 && (r = {}), function(n, i, s) {
|
|
3133
2791
|
try {
|
|
3134
2792
|
var o = !s.shouldUseNativeValidation && s.criteriaMode === "all";
|
|
3135
|
-
return Promise.resolve(
|
|
2793
|
+
return Promise.resolve(jr(e, n, Object.assign({}, t, { abortPipeEarly: !o }))).then(function(a) {
|
|
3136
2794
|
if (a.issues) {
|
|
3137
2795
|
for (var f = {}; a.issues.length; ) {
|
|
3138
|
-
var p = a.issues[0], C =
|
|
2796
|
+
var p = a.issues[0], C = $r(p);
|
|
3139
2797
|
if (C && (f[C] || (f[C] = { message: p.message, type: p.type }), o)) {
|
|
3140
2798
|
var v = f[C].types, h = v && v[p.type];
|
|
3141
|
-
f[C] =
|
|
2799
|
+
f[C] = pr(C, o, f, p.type, h ? [].concat(h, p.message) : p.message);
|
|
3142
2800
|
}
|
|
3143
2801
|
a.issues.shift();
|
|
3144
2802
|
}
|
|
3145
|
-
return { values: {}, errors:
|
|
2803
|
+
return { values: {}, errors: gs(f, s) };
|
|
3146
2804
|
}
|
|
3147
2805
|
return { values: r.raw ? n : a.output, errors: {} };
|
|
3148
2806
|
});
|
|
@@ -3151,19 +2809,19 @@ var Ye = function(e, t, r) {
|
|
|
3151
2809
|
}
|
|
3152
2810
|
};
|
|
3153
2811
|
};
|
|
3154
|
-
const
|
|
2812
|
+
const Ht = 27, Gt = 12, Wt = 10, bs = Fe("enum"), vs = (e, t) => {
|
|
3155
2813
|
const r = {
|
|
3156
2814
|
min: e.minSelected ?? 0,
|
|
3157
2815
|
max: e.maxSelected ?? e.options.length
|
|
3158
2816
|
};
|
|
3159
|
-
return
|
|
3160
|
-
checked: pe(
|
|
2817
|
+
return Ze(ge({
|
|
2818
|
+
checked: pe(Ur(Q(), zr()), rr((n) => Object.entries(n).filter(([i, s]) => s).map(([i, s]) => i)), qe(r.max, t("validation_multiple_choice_max", {
|
|
3161
2819
|
count: r.max
|
|
3162
2820
|
})), Oe(r.min, t("validation_multiple_choice_min", {
|
|
3163
2821
|
count: r.min
|
|
3164
2822
|
})))
|
|
3165
2823
|
}));
|
|
3166
|
-
},
|
|
2824
|
+
}, xs = tr(({
|
|
3167
2825
|
option: e,
|
|
3168
2826
|
...t
|
|
3169
2827
|
}, r) => c(we, {
|
|
@@ -3177,16 +2835,16 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3177
2835
|
htmlFor: t.id,
|
|
3178
2836
|
children: e.label
|
|
3179
2837
|
})]
|
|
3180
|
-
})),
|
|
2838
|
+
})), Jt = Ge("gutter-stable flex w-full flex-1 flex-wrap gap-2 overflow-y-auto rounded-xl p-2.5 pr-4", {
|
|
3181
2839
|
variants: {
|
|
3182
2840
|
variant: {
|
|
3183
2841
|
// In cases where there is only one option, we want to center it
|
|
3184
2842
|
singleOption: "justify-center",
|
|
3185
2843
|
// Two choices with exactly 1 min 1 max
|
|
3186
|
-
booleanLike:
|
|
2844
|
+
booleanLike: cr
|
|
3187
2845
|
}
|
|
3188
2846
|
}
|
|
3189
|
-
}),
|
|
2847
|
+
}), ws = ({
|
|
3190
2848
|
input: e,
|
|
3191
2849
|
onSubmitSuccess: t
|
|
3192
2850
|
}) => {
|
|
@@ -3199,22 +2857,22 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3199
2857
|
formState: {
|
|
3200
2858
|
errors: f
|
|
3201
2859
|
}
|
|
3202
|
-
} =
|
|
2860
|
+
} = Je({
|
|
3203
2861
|
defaultValues: {
|
|
3204
|
-
checked: n ? {} :
|
|
2862
|
+
checked: n ? {} : bs(r) ? Object.fromEntries(r.value.map((h) => [h, !0])) : {}
|
|
3205
2863
|
},
|
|
3206
|
-
resolver:
|
|
3207
|
-
}), p =
|
|
2864
|
+
resolver: vs(e.config, s)
|
|
2865
|
+
}), p = ct();
|
|
3208
2866
|
return i ? c("ul", {
|
|
3209
2867
|
style: {
|
|
3210
|
-
maxHeight: 6.5 *
|
|
2868
|
+
maxHeight: 6.5 * Ht + 5 * Gt + 2 * Wt
|
|
3211
2869
|
},
|
|
3212
|
-
class:
|
|
2870
|
+
class: Jt({
|
|
3213
2871
|
variant: "booleanLike"
|
|
3214
2872
|
}),
|
|
3215
2873
|
children: e.config.options.map((h, y) => c("li", {
|
|
3216
|
-
class:
|
|
3217
|
-
children: c(
|
|
2874
|
+
class: ur,
|
|
2875
|
+
children: c(dr, {
|
|
3218
2876
|
type: "submit",
|
|
3219
2877
|
ref: (b) => {
|
|
3220
2878
|
b && y === 0 && (p.current = b);
|
|
@@ -3240,9 +2898,9 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3240
2898
|
class: "flex items-center gap-1",
|
|
3241
2899
|
children: [c("ul", {
|
|
3242
2900
|
style: {
|
|
3243
|
-
maxHeight: 6.5 *
|
|
2901
|
+
maxHeight: 6.5 * Ht + 5 * Gt + 2 * Wt
|
|
3244
2902
|
},
|
|
3245
|
-
class:
|
|
2903
|
+
class: Jt({
|
|
3246
2904
|
variant: e.config.options.length === 1 ? "singleOption" : void 0
|
|
3247
2905
|
}),
|
|
3248
2906
|
children: e.config.options.map((h, y) => {
|
|
@@ -3252,7 +2910,7 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3252
2910
|
} = o(b);
|
|
3253
2911
|
return c("li", {
|
|
3254
2912
|
class: "relative",
|
|
3255
|
-
children: c(
|
|
2913
|
+
children: c(xs, {
|
|
3256
2914
|
option: h,
|
|
3257
2915
|
autoFocus: y === 0,
|
|
3258
2916
|
ref: (x) => {
|
|
@@ -3285,18 +2943,18 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3285
2943
|
})
|
|
3286
2944
|
})]
|
|
3287
2945
|
});
|
|
3288
|
-
},
|
|
2946
|
+
}, ks = Fe("number"), _s = (e, t) => {
|
|
3289
2947
|
const r = e.min ?? Number.MIN_SAFE_INTEGER, n = e.max ?? Number.MAX_SAFE_INTEGER, i = e.decimalCases ?? 0;
|
|
3290
|
-
return
|
|
3291
|
-
number: pe(
|
|
2948
|
+
return Ze(ge({
|
|
2949
|
+
number: pe(Gr(t("validation_number")), Hr(r, t("validation_number_min", {
|
|
3292
2950
|
min: r
|
|
3293
|
-
})),
|
|
2951
|
+
})), Kr(n, t("validation_number_max", {
|
|
3294
2952
|
max: n
|
|
3295
|
-
})),
|
|
2953
|
+
})), qr((s) => s === Number(s.toFixed(i)), t("validation_number_decimal_cases", {
|
|
3296
2954
|
count: i
|
|
3297
2955
|
})))
|
|
3298
2956
|
}));
|
|
3299
|
-
},
|
|
2957
|
+
}, Cs = ({
|
|
3300
2958
|
input: e,
|
|
3301
2959
|
onSubmitSuccess: t
|
|
3302
2960
|
}) => {
|
|
@@ -3309,11 +2967,11 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3309
2967
|
formState: {
|
|
3310
2968
|
errors: a
|
|
3311
2969
|
}
|
|
3312
|
-
} =
|
|
2970
|
+
} = Je({
|
|
3313
2971
|
defaultValues: {
|
|
3314
|
-
number: r ? Number(r) :
|
|
2972
|
+
number: r ? Number(r) : ks(n) ? n.value : void 0
|
|
3315
2973
|
},
|
|
3316
|
-
resolver:
|
|
2974
|
+
resolver: _s(e.config, i)
|
|
3317
2975
|
}), {
|
|
3318
2976
|
ref: f,
|
|
3319
2977
|
...p
|
|
@@ -3362,13 +3020,13 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3362
3020
|
error: a.number
|
|
3363
3021
|
})]
|
|
3364
3022
|
});
|
|
3365
|
-
},
|
|
3023
|
+
}, Ss = (e) => {
|
|
3366
3024
|
if (e === "")
|
|
3367
3025
|
return {
|
|
3368
3026
|
countryCode: "",
|
|
3369
3027
|
phoneNumber: ""
|
|
3370
3028
|
};
|
|
3371
|
-
const t = Object.entries(
|
|
3029
|
+
const t = Object.entries(lt).find((i) => e.startsWith(i[1])), r = t ? t[1] : "", n = e.replace(r, "");
|
|
3372
3030
|
return /^\d+$/.test(n) ? {
|
|
3373
3031
|
countryCode: r,
|
|
3374
3032
|
phoneNumber: n
|
|
@@ -3376,32 +3034,32 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3376
3034
|
countryCode: "",
|
|
3377
3035
|
phoneNumber: ""
|
|
3378
3036
|
};
|
|
3379
|
-
},
|
|
3380
|
-
const t = pe(Q(e("validation_country_code")), nr(
|
|
3381
|
-
return
|
|
3037
|
+
}, Vs = "44", Es = /^[0-9 ]+$/, Fs = Fe("string"), Is = Fe("phone"), As = (e) => {
|
|
3038
|
+
const t = pe(Q(e("validation_country_code")), nr(Es, e("validation_country_code"))), r = pe(Q(e("validation_phone")), Oe(1, e("validation_phone")), rr((n) => n.replace(/[^0-9]/g, "")));
|
|
3039
|
+
return Ze(ge({
|
|
3382
3040
|
countryCode: t,
|
|
3383
3041
|
phoneNumber: r
|
|
3384
3042
|
}));
|
|
3385
|
-
},
|
|
3043
|
+
}, Ls = ({
|
|
3386
3044
|
input: e,
|
|
3387
3045
|
onSubmitSuccess: t
|
|
3388
3046
|
}) => {
|
|
3389
3047
|
var E;
|
|
3390
3048
|
const r = e.key ? (E = D.current$.value.flow) == null ? void 0 : E.data.submissions[e.key] : void 0, {
|
|
3391
3049
|
t: n
|
|
3392
|
-
} = Y(), [i, s] = se(), o =
|
|
3050
|
+
} = Y(), [i, s] = se(), o = Fs(r) ? Ss(r.value) : Is(r) ? r.value : void 0, {
|
|
3393
3051
|
register: a,
|
|
3394
3052
|
handleSubmit: f,
|
|
3395
3053
|
formState: {
|
|
3396
3054
|
errors: p
|
|
3397
3055
|
},
|
|
3398
3056
|
watch: C
|
|
3399
|
-
} =
|
|
3057
|
+
} = Je({
|
|
3400
3058
|
defaultValues: {
|
|
3401
|
-
countryCode: (o == null ? void 0 : o.countryCode) ?? e.config.defaultValue.countryCode ??
|
|
3059
|
+
countryCode: (o == null ? void 0 : o.countryCode) ?? e.config.defaultValue.countryCode ?? Vs,
|
|
3402
3060
|
phoneNumber: (o == null ? void 0 : o.phoneNumber) ?? e.config.defaultValue.phoneNumber ?? ""
|
|
3403
3061
|
},
|
|
3404
|
-
resolver:
|
|
3062
|
+
resolver: As(n)
|
|
3405
3063
|
}), {
|
|
3406
3064
|
ref: v,
|
|
3407
3065
|
...h
|
|
@@ -3450,7 +3108,7 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3450
3108
|
...a("countryCode", {}),
|
|
3451
3109
|
id: `isdk_phone_${e.key}`,
|
|
3452
3110
|
class: "absolute inset-0 opacity-0",
|
|
3453
|
-
children: Object.entries(
|
|
3111
|
+
children: Object.entries(lt).map(([V, x]) => c("option", {
|
|
3454
3112
|
value: x,
|
|
3455
3113
|
children: [V, " (+", x, ")"]
|
|
3456
3114
|
}, V))
|
|
@@ -3483,7 +3141,7 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3483
3141
|
}
|
|
3484
3142
|
})]
|
|
3485
3143
|
});
|
|
3486
|
-
},
|
|
3144
|
+
}, Ms = ({
|
|
3487
3145
|
input: e,
|
|
3488
3146
|
onSubmitSuccess: t
|
|
3489
3147
|
}) => c("div", {
|
|
@@ -3515,7 +3173,7 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3515
3173
|
})]
|
|
3516
3174
|
})
|
|
3517
3175
|
})
|
|
3518
|
-
}),
|
|
3176
|
+
}), Ns = {
|
|
3519
3177
|
date: {
|
|
3520
3178
|
type: "date",
|
|
3521
3179
|
inputMode: "text"
|
|
@@ -3534,7 +3192,7 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3534
3192
|
inputMode: "url",
|
|
3535
3193
|
formNoValidate: !0
|
|
3536
3194
|
}
|
|
3537
|
-
},
|
|
3195
|
+
}, Ts = Fe("string"), Ds = (e, t) => {
|
|
3538
3196
|
const r = {
|
|
3539
3197
|
maxLength: t("validation_max_chars", {
|
|
3540
3198
|
count: e.maxChars ?? 999
|
|
@@ -3543,15 +3201,15 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3543
3201
|
count: e.minChars ?? 1
|
|
3544
3202
|
})
|
|
3545
3203
|
};
|
|
3546
|
-
return
|
|
3204
|
+
return Ze(ge({
|
|
3547
3205
|
text: {
|
|
3548
3206
|
date: pe(Q(t("validation_date")), nr(/^\d{4}-\d{2}-\d{2}$/, t("validation_date"))),
|
|
3549
|
-
email: pe(Q(t("validation_email")),
|
|
3207
|
+
email: pe(Q(t("validation_email")), Wr(t("validation_email")), Oe(e.minChars ?? 1, r.minLength), qe(e.maxChars ?? 1 / 0, r.maxLength)),
|
|
3550
3208
|
text: pe(Q(), Oe(e.minChars ?? 1, r.minLength), qe(e.maxChars ?? 1 / 0, r.maxLength)),
|
|
3551
|
-
url: pe(Q(t("validation_url")),
|
|
3209
|
+
url: pe(Q(t("validation_url")), Jr(t("validation_url")), Oe(e.minChars ?? 1, r.minLength), qe(e.maxChars ?? 1 / 0, r.maxLength))
|
|
3552
3210
|
}[e.format]
|
|
3553
3211
|
}));
|
|
3554
|
-
},
|
|
3212
|
+
}, Rs = ({
|
|
3555
3213
|
input: e,
|
|
3556
3214
|
onSubmitSuccess: t
|
|
3557
3215
|
}) => {
|
|
@@ -3564,11 +3222,11 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3564
3222
|
formState: {
|
|
3565
3223
|
errors: a
|
|
3566
3224
|
}
|
|
3567
|
-
} =
|
|
3225
|
+
} = Je({
|
|
3568
3226
|
defaultValues: {
|
|
3569
|
-
text: i || (
|
|
3227
|
+
text: i || (Ts(n) ? n.value : "")
|
|
3570
3228
|
},
|
|
3571
|
-
resolver:
|
|
3229
|
+
resolver: Ds(e.config, r)
|
|
3572
3230
|
}), {
|
|
3573
3231
|
ref: f,
|
|
3574
3232
|
...p
|
|
@@ -3593,7 +3251,7 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3593
3251
|
children: [c("input", {
|
|
3594
3252
|
id: "chat-input",
|
|
3595
3253
|
...p,
|
|
3596
|
-
...
|
|
3254
|
+
...Ns[e.config.format],
|
|
3597
3255
|
autocomplete: "off",
|
|
3598
3256
|
autoCapitalize: "off",
|
|
3599
3257
|
autoCorrect: "off",
|
|
@@ -3615,25 +3273,25 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3615
3273
|
error: a.text
|
|
3616
3274
|
})]
|
|
3617
3275
|
});
|
|
3618
|
-
},
|
|
3619
|
-
text:
|
|
3620
|
-
phone:
|
|
3621
|
-
"multiple-choice":
|
|
3622
|
-
boolean:
|
|
3623
|
-
file:
|
|
3624
|
-
submit:
|
|
3625
|
-
address:
|
|
3626
|
-
number:
|
|
3627
|
-
},
|
|
3276
|
+
}, Os = {
|
|
3277
|
+
text: Rs,
|
|
3278
|
+
phone: Ls,
|
|
3279
|
+
"multiple-choice": ws,
|
|
3280
|
+
boolean: Bn,
|
|
3281
|
+
file: Kn,
|
|
3282
|
+
submit: Ms,
|
|
3283
|
+
address: Tn,
|
|
3284
|
+
number: Cs
|
|
3285
|
+
}, Bs = ({
|
|
3628
3286
|
logger: e
|
|
3629
3287
|
}) => {
|
|
3630
3288
|
var s;
|
|
3631
|
-
const t = (s = D.current$.value.flow) == null ? void 0 : s.data.currentInput, [r, n] =
|
|
3289
|
+
const t = (s = D.current$.value.flow) == null ? void 0 : s.data.currentInput, [r, n] = Cn(), i = ue(null);
|
|
3632
3290
|
return D.inputHeight$.value = n.height, ce(() => {
|
|
3633
3291
|
const o = i.current;
|
|
3634
3292
|
if (o)
|
|
3635
|
-
return o.addEventListener("transitionstart",
|
|
3636
|
-
o.removeEventListener("transitionstart",
|
|
3293
|
+
return o.addEventListener("transitionstart", Z.scrollToEnd.smooth), o.addEventListener("transitioncancel", Z.scrollToEnd.smooth), o.addEventListener("transitionend", Z.scrollToEnd.smooth), () => {
|
|
3294
|
+
o.removeEventListener("transitionstart", Z.scrollToEnd.smooth), o.removeEventListener("transitioncancel", Z.scrollToEnd.smooth), o.removeEventListener("transitionend", Z.scrollToEnd.smooth);
|
|
3637
3295
|
};
|
|
3638
3296
|
}, []), c("div", {
|
|
3639
3297
|
ref: i,
|
|
@@ -3645,10 +3303,10 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3645
3303
|
ref: r,
|
|
3646
3304
|
class: "border-divider flex flex-col justify-end border-t",
|
|
3647
3305
|
children: t ? (() => {
|
|
3648
|
-
const o =
|
|
3306
|
+
const o = Os[t.type];
|
|
3649
3307
|
return c(o, {
|
|
3650
3308
|
logger: e,
|
|
3651
|
-
onSubmitSuccess:
|
|
3309
|
+
onSubmitSuccess: Z.onSubmitSuccessFn$.value,
|
|
3652
3310
|
input: t
|
|
3653
3311
|
});
|
|
3654
3312
|
})() : c("div", {
|
|
@@ -3670,27 +3328,30 @@ const Gt = 27, Wt = 12, Jt = 10, gs = Fe("enum"), ys = (e, t) => {
|
|
|
3670
3328
|
})
|
|
3671
3329
|
});
|
|
3672
3330
|
};
|
|
3673
|
-
|
|
3331
|
+
function Ps(e) {
|
|
3332
|
+
return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
|
|
3333
|
+
}
|
|
3334
|
+
var js = function(e) {
|
|
3674
3335
|
return e instanceof RegExp;
|
|
3675
|
-
},
|
|
3336
|
+
}, $s = function(t) {
|
|
3676
3337
|
var r = /[\\^$.*+?()[\]{}|]/g, n = RegExp(r.source);
|
|
3677
3338
|
return t && n.test(t) ? t.replace(r, "\\$&") : t;
|
|
3678
|
-
},
|
|
3339
|
+
}, wr = function(e) {
|
|
3679
3340
|
return typeof e == "string";
|
|
3680
|
-
},
|
|
3341
|
+
}, Us = function(e) {
|
|
3681
3342
|
var t = [];
|
|
3682
3343
|
return e.forEach(function(r) {
|
|
3683
3344
|
Array.isArray(r) ? t = t.concat(r) : t.push(r);
|
|
3684
3345
|
}), t;
|
|
3685
3346
|
};
|
|
3686
|
-
function
|
|
3347
|
+
function zs(e, t, r) {
|
|
3687
3348
|
var n = 0, i = 0;
|
|
3688
3349
|
if (e === "")
|
|
3689
3350
|
return e;
|
|
3690
|
-
if (!e || !
|
|
3351
|
+
if (!e || !wr(e))
|
|
3691
3352
|
throw new TypeError("First argument to react-string-replace#replaceString must be a string");
|
|
3692
3353
|
var s = t;
|
|
3693
|
-
|
|
3354
|
+
js(s) || (s = new RegExp("(" + $s(s) + ")", "gi"));
|
|
3694
3355
|
for (var o = e.split(s), a = 1, f = o.length; a < f; a += 2) {
|
|
3695
3356
|
if (o[a] === void 0 || o[a - 1] === void 0) {
|
|
3696
3357
|
console.warn("reactStringReplace: Encountered undefined value during string replacement. Your RegExp may not be working the way you expect.");
|
|
@@ -3700,14 +3361,14 @@ function js(e, t, r) {
|
|
|
3700
3361
|
}
|
|
3701
3362
|
return o;
|
|
3702
3363
|
}
|
|
3703
|
-
var
|
|
3704
|
-
return Array.isArray(t) || (t = [t]),
|
|
3705
|
-
return
|
|
3364
|
+
var qs = function(t, r, n) {
|
|
3365
|
+
return Array.isArray(t) || (t = [t]), Us(t.map(function(i) {
|
|
3366
|
+
return wr(i) ? zs(i, r, n) : i;
|
|
3706
3367
|
}));
|
|
3707
3368
|
};
|
|
3708
|
-
const Te = /* @__PURE__ */
|
|
3709
|
-
const t = Te(e,
|
|
3710
|
-
const [, f, p] = o.match(
|
|
3369
|
+
const Te = /* @__PURE__ */ Ps(qs), Ks = /(\[[^\]]+\]\([^)]+\))/g, Hs = /\[([^\]]+)\]\(([^)]+)\)/, Gs = /(https?:\/\/[^\s]+)/g, Ws = /_(.*?)_/g, Js = /\*\*(.*?)\*\*/g, Zs = /\\n|\n/g, Zt = "text-accent-10 hover:text-accent-11 no-underline underline-offset-2 hover:underline", Xs = (e) => {
|
|
3370
|
+
const t = Te(e, Ks, (o, a) => {
|
|
3371
|
+
const [, f, p] = o.match(Hs) ?? [];
|
|
3711
3372
|
return p ? c("a", {
|
|
3712
3373
|
class: Zt,
|
|
3713
3374
|
href: p,
|
|
@@ -3715,17 +3376,17 @@ const Te = /* @__PURE__ */ Jr($s), Us = /(\[[^\]]+\]\([^)]+\))/g, zs = /\[([^\]]
|
|
|
3715
3376
|
}, p + a) : c("span", {
|
|
3716
3377
|
children: "INVALID LINK"
|
|
3717
3378
|
});
|
|
3718
|
-
}), r = Te(t,
|
|
3379
|
+
}), r = Te(t, Gs, (o, a) => c("a", {
|
|
3719
3380
|
class: Zt,
|
|
3720
3381
|
href: o,
|
|
3721
3382
|
children: o
|
|
3722
|
-
}, o + a)), n = Te(r,
|
|
3383
|
+
}, o + a)), n = Te(r, Ws, (o, a) => c("em", {
|
|
3723
3384
|
children: o
|
|
3724
|
-
}, o + a)), i = Te(n,
|
|
3385
|
+
}, o + a)), i = Te(n, Js, (o, a) => c("strong", {
|
|
3725
3386
|
children: o
|
|
3726
3387
|
}, o + a));
|
|
3727
|
-
return Te(i,
|
|
3728
|
-
},
|
|
3388
|
+
return Te(i, Zs, (o, a) => c("br", {}, `br-${a}`));
|
|
3389
|
+
}, Ys = Ge("select-text max-w-[min(100%,24rem)] [text-wrap:pretty] leading-snug flex-shrink min-w-[2rem] py-2 px-3 rounded-[18px] min-h-[36px] break-words relative", {
|
|
3729
3390
|
variants: {
|
|
3730
3391
|
side: {
|
|
3731
3392
|
left: "bg-bubble-weak-bg text-neutral-12 shadow-surface-sm outline outline-1 outline-bubble-weak rounded-bl-md",
|
|
@@ -3739,7 +3400,7 @@ const Te = /* @__PURE__ */ Jr($s), Us = /(\[[^\]]+\]\([^)]+\))/g, zs = /\[([^\]]
|
|
|
3739
3400
|
defaultVariants: {
|
|
3740
3401
|
side: "left"
|
|
3741
3402
|
}
|
|
3742
|
-
}),
|
|
3403
|
+
}), Qs = ({
|
|
3743
3404
|
children: e,
|
|
3744
3405
|
className: t,
|
|
3745
3406
|
animate: r,
|
|
@@ -3749,14 +3410,14 @@ const Te = /* @__PURE__ */ Jr($s), Us = /(\[[^\]]+\]\([^)]+\))/g, zs = /\[([^\]]
|
|
|
3749
3410
|
style: {
|
|
3750
3411
|
transformOrigin: n === "left" ? "0% 50%" : "100% 50%"
|
|
3751
3412
|
},
|
|
3752
|
-
class:
|
|
3413
|
+
class: Ys({
|
|
3753
3414
|
className: t,
|
|
3754
3415
|
side: n,
|
|
3755
3416
|
animate: r
|
|
3756
3417
|
}),
|
|
3757
3418
|
...i,
|
|
3758
3419
|
children: e
|
|
3759
|
-
}),
|
|
3420
|
+
}), ea = ({
|
|
3760
3421
|
message: e
|
|
3761
3422
|
}) => c("div", {
|
|
3762
3423
|
class: "bg-accent-3 flex w-full items-center justify-center overflow-hidden rounded-xl px-2 py-2",
|
|
@@ -3780,14 +3441,14 @@ const Te = /* @__PURE__ */ Jr($s), Us = /(\[[^\]]+\]\([^)]+\))/g, zs = /\[([^\]]
|
|
|
3780
3441
|
})
|
|
3781
3442
|
})]
|
|
3782
3443
|
})
|
|
3783
|
-
}),
|
|
3444
|
+
}), ta = ({
|
|
3784
3445
|
className: e,
|
|
3785
3446
|
...t
|
|
3786
3447
|
}) => (ce(() => {
|
|
3787
|
-
|
|
3448
|
+
Z.scrollToEnd.smooth();
|
|
3788
3449
|
}), c("div", {
|
|
3789
3450
|
"aria-hidden": !0,
|
|
3790
|
-
children:
|
|
3451
|
+
children: Z.isBotTyping$.value === !0 ? c("div", {
|
|
3791
3452
|
"aria-label": "Typing…",
|
|
3792
3453
|
class: je("flex gap-1 p-4", e),
|
|
3793
3454
|
...t,
|
|
@@ -3800,10 +3461,10 @@ const Te = /* @__PURE__ */ Jr($s), Us = /(\[[^\]]+\]\([^)]+\))/g, zs = /\[([^\]]
|
|
|
3800
3461
|
}
|
|
3801
3462
|
}))
|
|
3802
3463
|
}) : void 0
|
|
3803
|
-
})),
|
|
3464
|
+
})), ra = {
|
|
3804
3465
|
bot: "left",
|
|
3805
3466
|
user: "right"
|
|
3806
|
-
},
|
|
3467
|
+
}, na = Ge("w-full select-none py-2 text-wrap-balance text-center text-[10px] uppercase tracking-widest drop-shadow-[0_1.5px_var(--i-color-n-1)]", {
|
|
3807
3468
|
variants: {
|
|
3808
3469
|
variant: {
|
|
3809
3470
|
info: "text-neutral-8",
|
|
@@ -3812,23 +3473,23 @@ const Te = /* @__PURE__ */ Jr($s), Us = /(\[[^\]]+\]\([^)]+\))/g, zs = /\[([^\]]
|
|
|
3812
3473
|
success: "text-[#4CAF50]"
|
|
3813
3474
|
}
|
|
3814
3475
|
}
|
|
3815
|
-
}),
|
|
3476
|
+
}), sa = ({
|
|
3816
3477
|
lastSentMessageFooter: e
|
|
3817
3478
|
}) => {
|
|
3818
3479
|
var r;
|
|
3819
3480
|
const t = ((r = D.current$.value.flow) == null ? void 0 : r.data.messages) ?? [];
|
|
3820
3481
|
return ce(() => {
|
|
3821
|
-
|
|
3482
|
+
Z.scrollToEnd.smooth();
|
|
3822
3483
|
}, [t.length]), c("ol", {
|
|
3823
3484
|
"aria-label": "Chat messages",
|
|
3824
3485
|
class: "mt-auto flex flex-col justify-end gap-2 p-2 pt-[calc(var(--header-height)+1rem)]",
|
|
3825
3486
|
children: [t.map((n, i) => c(we, {
|
|
3826
3487
|
children: c("li", {
|
|
3827
3488
|
class: "flex",
|
|
3828
|
-
children:
|
|
3489
|
+
children: at(n).with({
|
|
3829
3490
|
type: "system"
|
|
3830
3491
|
}, (s) => c("p", {
|
|
3831
|
-
class:
|
|
3492
|
+
class: na({
|
|
3832
3493
|
variant: s.variant
|
|
3833
3494
|
}),
|
|
3834
3495
|
children: s.text
|
|
@@ -3836,17 +3497,17 @@ const Te = /* @__PURE__ */ Jr($s), Us = /(\[[^\]]+\]\([^)]+\))/g, zs = /\[([^\]]
|
|
|
3836
3497
|
type: "text",
|
|
3837
3498
|
author: R.union("bot", "user")
|
|
3838
3499
|
}, (s) => {
|
|
3839
|
-
const o = s.author === "user" && !t.slice(i + 1).some((p) => p.type === "text" && p.author === "user"), a = i === t.length - 1, f = s.author === "bot" ?
|
|
3500
|
+
const o = s.author === "user" && !t.slice(i + 1).some((p) => p.type === "text" && p.author === "user"), a = i === t.length - 1, f = s.author === "bot" ? Xs(s.text) : s.text;
|
|
3840
3501
|
return c(we, {
|
|
3841
|
-
children: [o ? e : null, c(
|
|
3502
|
+
children: [o ? e : null, c(Qs, {
|
|
3842
3503
|
animate: a,
|
|
3843
|
-
side:
|
|
3504
|
+
side: ra[s.author],
|
|
3844
3505
|
children: f
|
|
3845
3506
|
}, i)]
|
|
3846
3507
|
});
|
|
3847
3508
|
}).with({
|
|
3848
3509
|
type: "link"
|
|
3849
|
-
}, (s) => c(
|
|
3510
|
+
}, (s) => c(ea, {
|
|
3850
3511
|
message: s
|
|
3851
3512
|
})).with({
|
|
3852
3513
|
type: "image"
|
|
@@ -3858,7 +3519,7 @@ const Te = /* @__PURE__ */ Jr($s), Us = /(\[[^\]]+\]\([^)]+\))/g, zs = /\[([^\]]
|
|
|
3858
3519
|
}
|
|
3859
3520
|
})).with({
|
|
3860
3521
|
type: "file"
|
|
3861
|
-
}, (s) => c(
|
|
3522
|
+
}, (s) => c(Un, {
|
|
3862
3523
|
class: s.author === "bot" ? void 0 : "ml-auto",
|
|
3863
3524
|
file: {
|
|
3864
3525
|
name: s.fileName,
|
|
@@ -3868,17 +3529,17 @@ const Te = /* @__PURE__ */ Jr($s), Us = /(\[[^\]]+\]\([^)]+\))/g, zs = /\[([^\]]
|
|
|
3868
3529
|
type: "loading"
|
|
3869
3530
|
}, (s) => {
|
|
3870
3531
|
const o = t[t.length - 1];
|
|
3871
|
-
return !(s === o) ||
|
|
3532
|
+
return !(s === o) || Z.isBotTyping$.value ? null : c("div", {
|
|
3872
3533
|
class: "flex flex-grow flex-col items-center justify-center",
|
|
3873
|
-
children: c(
|
|
3534
|
+
children: c(Zr, {
|
|
3874
3535
|
class: "text-neutral-6 h-8 w-8"
|
|
3875
3536
|
})
|
|
3876
3537
|
});
|
|
3877
3538
|
}).exhaustive()
|
|
3878
3539
|
})
|
|
3879
|
-
}, i)), c(
|
|
3540
|
+
}, i)), c(ta, {}, "typing")]
|
|
3880
3541
|
});
|
|
3881
|
-
},
|
|
3542
|
+
}, ua = ({
|
|
3882
3543
|
logger: e,
|
|
3883
3544
|
apiClient: t,
|
|
3884
3545
|
analytics: r,
|
|
@@ -3891,11 +3552,11 @@ const Te = /* @__PURE__ */ Jr($s), Us = /(\[[^\]]+\]\([^)]+\))/g, zs = /\[([^\]]
|
|
|
3891
3552
|
const s = D.viewState$.value, {
|
|
3892
3553
|
chatRef: o,
|
|
3893
3554
|
chatService: a
|
|
3894
|
-
} =
|
|
3555
|
+
} = Xr(), {
|
|
3895
3556
|
t: f
|
|
3896
3557
|
} = Y(), [p, C] = se();
|
|
3897
3558
|
return xe(() => {
|
|
3898
|
-
s === "maximised" &&
|
|
3559
|
+
s === "maximised" && Z.scrollToEnd.instant();
|
|
3899
3560
|
}, [s]), xe(() => {
|
|
3900
3561
|
var x, _;
|
|
3901
3562
|
const {
|
|
@@ -3905,7 +3566,7 @@ const Te = /* @__PURE__ */ Jr($s), Us = /(\[[^\]]+\]\([^)]+\))/g, zs = /\[([^\]]
|
|
|
3905
3566
|
if (v !== "loaded")
|
|
3906
3567
|
throw new Error(f("invalid_state"));
|
|
3907
3568
|
let y = h.data.nodeHistory.at(-1);
|
|
3908
|
-
if (
|
|
3569
|
+
if (Z.scrollToEnd.instant(), D.setInput(void 0), h.data.isFinished)
|
|
3909
3570
|
return;
|
|
3910
3571
|
y === void 0 ? (y = Qt(i.nodes).id, D.setCurrentNodeId(y), r.log({
|
|
3911
3572
|
event: "FLOW_START",
|
|
@@ -3922,7 +3583,7 @@ const Te = /* @__PURE__ */ Jr($s), Us = /(\[[^\]]+\]\([^)]+\))/g, zs = /\[([^\]]
|
|
|
3922
3583
|
interpret: b,
|
|
3923
3584
|
abort: E,
|
|
3924
3585
|
undo: V
|
|
3925
|
-
} =
|
|
3586
|
+
} = nn({
|
|
3926
3587
|
context: i.context,
|
|
3927
3588
|
analytics: {
|
|
3928
3589
|
service: r,
|
|
@@ -3966,16 +3627,16 @@ const Te = /* @__PURE__ */ Jr($s), Us = /(\[[^\]]+\]\([^)]+\))/g, zs = /\[([^\]]
|
|
|
3966
3627
|
WebkitOverflowScrolling: "touch",
|
|
3967
3628
|
paddingBottom: D.inputHeight$.value
|
|
3968
3629
|
},
|
|
3969
|
-
children: c(
|
|
3970
|
-
lastSentMessageFooter: i.data.isFinished || !p ? null : c(
|
|
3630
|
+
children: c(sa, {
|
|
3631
|
+
lastSentMessageFooter: i.data.isFinished || !p ? null : c(ia, {
|
|
3971
3632
|
undoFn: p
|
|
3972
3633
|
})
|
|
3973
3634
|
})
|
|
3974
|
-
}), c(
|
|
3635
|
+
}), c(Bs, {
|
|
3975
3636
|
logger: e
|
|
3976
3637
|
})]
|
|
3977
3638
|
});
|
|
3978
|
-
},
|
|
3639
|
+
}, aa = (e) => e.type === "identify" ? [] : "key" in e.data && e.data.key ? [e.data.key] : "keys" in e.data ? Object.values(e.data.keys).filter((t) => typeof t == "string") : [], ia = ({
|
|
3979
3640
|
undoFn: e
|
|
3980
3641
|
}) => {
|
|
3981
3642
|
const {
|
|
@@ -3990,7 +3651,7 @@ const Te = /* @__PURE__ */ Jr($s), Us = /(\[[^\]]+\]\([^)]+\))/g, zs = /\[([^\]]
|
|
|
3990
3651
|
const {
|
|
3991
3652
|
removed: n
|
|
3992
3653
|
} = e(r.data.nodeHistory), i = r.data.nodeHistory.splice(-n);
|
|
3993
|
-
i.length !== 0 && (D.removeMessagesSentByNodeIds(i), D.setInput(void 0), i.pop(), i.map((s) => r.nodes.find((o) => o.id === s)).filter(Boolean).flatMap(
|
|
3654
|
+
i.length !== 0 && (D.removeMessagesSentByNodeIds(i), D.setInput(void 0), i.pop(), i.map((s) => r.nodes.find((o) => o.id === s)).filter(Boolean).flatMap(aa).forEach((s) => delete r.data.submissions[s]), D.current$.value = {
|
|
3994
3655
|
...D.current$.value
|
|
3995
3656
|
});
|
|
3996
3657
|
},
|
|
@@ -4002,5 +3663,5 @@ const Te = /* @__PURE__ */ Jr($s), Us = /(\[[^\]]+\]\([^)]+\))/g, zs = /\[([^\]]
|
|
|
4002
3663
|
});
|
|
4003
3664
|
};
|
|
4004
3665
|
export {
|
|
4005
|
-
|
|
3666
|
+
ua as ChatbotBody
|
|
4006
3667
|
};
|