@speckle/ui-components 2.16.0 → 2.16.1-alpha1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/form/Switch.vue.d.ts +6 -0
- package/dist/components/form/select/Badges.vue.d.ts +64 -0
- package/dist/components/form/select/Base.vue.d.ts +27 -0
- package/dist/components/layout/Table.vue.d.ts +68 -0
- package/dist/helpers/common/validation.d.ts +2 -0
- package/dist/lib.cjs +2 -1
- package/dist/lib.cjs.map +1 -0
- package/dist/lib.d.ts +4 -1
- package/dist/lib.js +1336 -1151
- package/dist/lib.js.map +1 -0
- package/package.json +2 -2
- package/vite.config.ts +6 -1
package/dist/lib.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { isObjectLike as
|
|
3
|
-
import { ArrowPathIcon as
|
|
4
|
-
import { CheckCircleIcon as
|
|
5
|
-
import { XMarkIcon as
|
|
6
|
-
import { useField as
|
|
1
|
+
import { defineComponent as j, resolveDynamicComponent as G, computed as c, openBlock as a, createBlock as L, normalizeClass as x, withCtx as _, createCommentVNode as I, renderSlot as z, createTextVNode as A, createElementBlock as p, createElementVNode as d, createVNode as V, Transition as be, unref as n, toDisplayString as B, toRefs as Y, Fragment as T, renderList as U, ref as M, onMounted as Z, mergeProps as ie, withDirectives as ae, isRef as de, vModelText as Me, useSlots as ye, vModelDynamic as et, pushScopeId as tt, popScopeId as st, watch as oe, withModifiers as ue, normalizeStyle as re, useModel as lt, onBeforeUnmount as ze } from "vue";
|
|
2
|
+
import { isObjectLike as Pe, clamp as je, isString as ce, isUndefined as Q, isArray as H, debounce as Re, throttle as nt, noop as at } from "lodash";
|
|
3
|
+
import { ArrowPathIcon as ot, ExclamationCircleIcon as rt, ChevronUpIcon as De, ChevronDownIcon as it, XMarkIcon as xe, MagnifyingGlassIcon as ut, CheckIcon as Te, Bars3Icon as ct, Squares2X2Icon as dt } from "@heroicons/vue/24/solid";
|
|
4
|
+
import { CheckCircleIcon as ft, XCircleIcon as pt, ExclamationCircleIcon as ht, InformationCircleIcon as mt, XMarkIcon as gt, CheckIcon as vt, ExclamationTriangleIcon as bt } from "@heroicons/vue/24/outline";
|
|
5
|
+
import { XMarkIcon as fe, CheckIcon as yt, CheckCircleIcon as Fe, ExclamationCircleIcon as ke, EnvelopeIcon as xt, KeyIcon as kt, XCircleIcon as wt, InformationCircleIcon as Ct } from "@heroicons/vue/20/solid";
|
|
6
|
+
import { useField as we } from "vee-validate";
|
|
7
7
|
import { nanoid as Ce } from "nanoid";
|
|
8
|
-
import { isNullOrUndefined as
|
|
9
|
-
import { useResizeObserver as
|
|
10
|
-
import { Listbox as
|
|
11
|
-
import { directive as
|
|
12
|
-
import
|
|
13
|
-
const
|
|
8
|
+
import { isNullOrUndefined as $t, SourceApps as St, getClientOperatingSystem as It, OperatingSystem as me } from "@speckle/shared";
|
|
9
|
+
import { useResizeObserver as Bt, useMutationObserver as _t, onKeyDown as Vt, isClient as $e, computedAsync as Lt } from "@vueuse/core";
|
|
10
|
+
import { Listbox as Pt, ListboxLabel as jt, ListboxButton as Ot, ListboxOptions as At, ListboxOption as Mt, Switch as zt, TransitionRoot as Rt, Dialog as Dt, TransitionChild as Oe, DialogPanel as Tt, Disclosure as Ft, DisclosureButton as Et, DisclosurePanel as Ut, Menu as Wt, MenuButton as qt, MenuItems as Ht, MenuItem as Gt } from "@headlessui/vue";
|
|
11
|
+
import { directive as Ee } from "vue-tippy";
|
|
12
|
+
import Kt from "v3-infinite-loading";
|
|
13
|
+
const Xt = {
|
|
14
14
|
key: 2,
|
|
15
15
|
style: { margin: "0 !important", width: "0.01px" }
|
|
16
|
-
},
|
|
16
|
+
}, Nt = /* @__PURE__ */ j({
|
|
17
17
|
__name: "Button",
|
|
18
18
|
props: {
|
|
19
19
|
/**
|
|
@@ -140,136 +140,136 @@ const Et = {
|
|
|
140
140
|
}
|
|
141
141
|
},
|
|
142
142
|
emits: ["click"],
|
|
143
|
-
setup(e, { emit:
|
|
144
|
-
const t = e, s =
|
|
143
|
+
setup(e, { emit: l }) {
|
|
144
|
+
const t = e, s = G("NuxtLink"), o = G("RouterLink"), f = c(() => t.linkComponent ? t.linkComponent : t.external ? "a" : Pe(s) ? s : Pe(o) ? o : "a"), i = c(() => {
|
|
145
145
|
if (!t.to)
|
|
146
146
|
return t.submit ? "submit" : "button";
|
|
147
|
-
}),
|
|
148
|
-
const
|
|
149
|
-
if (
|
|
150
|
-
|
|
147
|
+
}), r = c(() => t.disabled || t.loading), m = c(() => t.loading ? ot : t.iconLeft), u = c(() => {
|
|
148
|
+
const v = [];
|
|
149
|
+
if (v.push("border-2"), r.value)
|
|
150
|
+
v.push(
|
|
151
151
|
t.outlined ? "border-foreground-disabled" : "bg-foundation-disabled border-transparent"
|
|
152
152
|
);
|
|
153
153
|
else
|
|
154
154
|
switch (t.color) {
|
|
155
155
|
case "invert":
|
|
156
|
-
|
|
156
|
+
v.push(
|
|
157
157
|
t.outlined ? "border-foundation dark:border-foreground" : "bg-foundation dark:bg-foreground border-transparent"
|
|
158
158
|
);
|
|
159
159
|
break;
|
|
160
160
|
case "card":
|
|
161
|
-
|
|
161
|
+
v.push(
|
|
162
162
|
t.outlined ? "border-foundation-2 shadow" : "bg-foundation-2 dark:bg-foundation-2 border-foundation shadow"
|
|
163
163
|
);
|
|
164
164
|
break;
|
|
165
165
|
case "danger":
|
|
166
|
-
|
|
166
|
+
v.push(t.outlined ? "border-danger" : "bg-danger border-danger");
|
|
167
167
|
break;
|
|
168
168
|
case "secondary":
|
|
169
|
-
|
|
169
|
+
v.push(
|
|
170
170
|
t.outlined ? "border-foundation" : "bg-foundation border-foundation-2"
|
|
171
171
|
);
|
|
172
172
|
break;
|
|
173
173
|
case "warning":
|
|
174
|
-
|
|
174
|
+
v.push(t.outlined ? "border-warning" : "bg-warning border-warning");
|
|
175
175
|
break;
|
|
176
176
|
case "info":
|
|
177
|
-
|
|
177
|
+
v.push(t.outlined ? "border-info" : "bg-info border-info");
|
|
178
178
|
break;
|
|
179
179
|
case "success":
|
|
180
|
-
|
|
180
|
+
v.push(t.outlined ? "border-success" : "bg-success border-success");
|
|
181
181
|
break;
|
|
182
182
|
case "default":
|
|
183
183
|
default:
|
|
184
|
-
|
|
184
|
+
v.push(
|
|
185
185
|
t.outlined ? "border-primary hover:border-primary-focus" : "bg-primary hover:bg-primary-focus border-transparent"
|
|
186
186
|
);
|
|
187
187
|
break;
|
|
188
188
|
}
|
|
189
|
-
return
|
|
190
|
-
}),
|
|
191
|
-
const
|
|
189
|
+
return v.join(" ");
|
|
190
|
+
}), y = c(() => {
|
|
191
|
+
const v = [];
|
|
192
192
|
if (!t.text && !t.link)
|
|
193
|
-
if (
|
|
194
|
-
|
|
193
|
+
if (r.value)
|
|
194
|
+
v.push(
|
|
195
195
|
(t.outlined, "text-foreground-disabled")
|
|
196
196
|
);
|
|
197
197
|
else
|
|
198
198
|
switch (t.color) {
|
|
199
199
|
case "invert":
|
|
200
|
-
|
|
200
|
+
v.push(
|
|
201
201
|
t.outlined ? "text-foundation dark:text-foreground" : "text-primary"
|
|
202
202
|
);
|
|
203
203
|
break;
|
|
204
204
|
case "card":
|
|
205
|
-
|
|
205
|
+
v.push((t.outlined, "text-foreground"));
|
|
206
206
|
break;
|
|
207
207
|
case "danger":
|
|
208
|
-
|
|
208
|
+
v.push(
|
|
209
209
|
t.outlined ? "text-danger" : "text-foundation dark:text-foreground"
|
|
210
210
|
);
|
|
211
211
|
break;
|
|
212
212
|
case "warning":
|
|
213
|
-
|
|
213
|
+
v.push(
|
|
214
214
|
t.outlined ? "text-warning" : "text-foundation dark:text-foreground"
|
|
215
215
|
);
|
|
216
216
|
break;
|
|
217
217
|
case "info":
|
|
218
|
-
|
|
218
|
+
v.push(
|
|
219
219
|
t.outlined ? "text-info" : "text-foundation dark:text-foreground"
|
|
220
220
|
);
|
|
221
221
|
break;
|
|
222
222
|
case "success":
|
|
223
|
-
|
|
223
|
+
v.push(
|
|
224
224
|
t.outlined ? "text-success" : "text-foundation dark:text-foreground"
|
|
225
225
|
);
|
|
226
226
|
break;
|
|
227
227
|
case "secondary":
|
|
228
|
-
|
|
228
|
+
v.push(
|
|
229
229
|
(t.outlined, "text-foreground hover:text-primary")
|
|
230
230
|
);
|
|
231
231
|
break;
|
|
232
232
|
case "default":
|
|
233
233
|
default:
|
|
234
|
-
|
|
234
|
+
v.push(
|
|
235
235
|
t.outlined ? "text-primary hover:text-primary-focus" : "text-foundation dark:text-foreground"
|
|
236
236
|
);
|
|
237
237
|
break;
|
|
238
238
|
}
|
|
239
239
|
else
|
|
240
|
-
|
|
240
|
+
r.value ? v.push("text-foreground-disabled") : t.color === "invert" ? v.push(
|
|
241
241
|
"text-foundation hover:text-foundation-2 dark:text-foreground dark:hover:text-foreground"
|
|
242
|
-
) : t.color === "secondary" ?
|
|
243
|
-
return
|
|
244
|
-
}),
|
|
245
|
-
const
|
|
246
|
-
return
|
|
247
|
-
}),
|
|
248
|
-
const
|
|
249
|
-
if (!
|
|
242
|
+
) : t.color === "secondary" ? v.push("text-foreground-2 hover:text-primary-focus") : t.color === "success" ? v.push("text-success") : t.color === "warning" ? v.push("text-warning") : t.color === "info" ? v.push("text-info") : t.color === "danger" ? v.push("text-danger") : v.push("text-primary hover:text-primary-focus");
|
|
243
|
+
return v.join(" ");
|
|
244
|
+
}), k = c(() => {
|
|
245
|
+
const v = [];
|
|
246
|
+
return v.push(t.rounded ? "rounded-full" : "rounded-md"), v.join(" ");
|
|
247
|
+
}), g = c(() => {
|
|
248
|
+
const v = [];
|
|
249
|
+
if (!r.value)
|
|
250
250
|
switch (t.color) {
|
|
251
251
|
case "invert":
|
|
252
|
-
|
|
252
|
+
v.push("hover:ring-4 ring-white/50");
|
|
253
253
|
break;
|
|
254
254
|
case "danger":
|
|
255
|
-
|
|
255
|
+
v.push("hover:ring-4 ring-danger-lighter dark:ring-danger-darker");
|
|
256
256
|
break;
|
|
257
257
|
case "warning":
|
|
258
|
-
|
|
258
|
+
v.push("hover:ring-4 ring-warning-lighter dark:ring-warning-darker");
|
|
259
259
|
break;
|
|
260
260
|
case "info":
|
|
261
|
-
|
|
261
|
+
v.push("hover:ring-4 ring-info-lighter dark:ring-info-darker");
|
|
262
262
|
break;
|
|
263
263
|
case "success":
|
|
264
|
-
|
|
264
|
+
v.push("hover:ring-4 ring-success-lighter dark:ring-success-darker");
|
|
265
265
|
break;
|
|
266
266
|
case "default":
|
|
267
267
|
default:
|
|
268
|
-
|
|
268
|
+
v.push("hover:ring-2");
|
|
269
269
|
break;
|
|
270
270
|
}
|
|
271
|
-
return
|
|
272
|
-
}),
|
|
271
|
+
return v.join(" ");
|
|
272
|
+
}), w = c(() => {
|
|
273
273
|
switch (t.size) {
|
|
274
274
|
case "xs":
|
|
275
275
|
return "h-5 text-xs font-medium xxx-tracking-wide";
|
|
@@ -283,7 +283,7 @@ const Et = {
|
|
|
283
283
|
case "base":
|
|
284
284
|
return "h-8 text-base font-medium xxx-tracking-wide";
|
|
285
285
|
}
|
|
286
|
-
}),
|
|
286
|
+
}), h = c(() => {
|
|
287
287
|
switch (t.size) {
|
|
288
288
|
case "xs":
|
|
289
289
|
return "px-1";
|
|
@@ -297,88 +297,88 @@ const Et = {
|
|
|
297
297
|
case "base":
|
|
298
298
|
return "px-3";
|
|
299
299
|
}
|
|
300
|
-
}),
|
|
301
|
-
const
|
|
302
|
-
return t.fullWidth &&
|
|
303
|
-
}),
|
|
304
|
-
const
|
|
305
|
-
return !
|
|
300
|
+
}), P = c(() => {
|
|
301
|
+
const v = [];
|
|
302
|
+
return t.fullWidth && v.push("w-full"), r.value && v.push("cursor-not-allowed"), v.join(" ");
|
|
303
|
+
}), b = c(() => {
|
|
304
|
+
const v = [];
|
|
305
|
+
return !r.value && !t.link && !t.text && v.push("active:scale-[0.97]"), !r.value && t.link && v.push(
|
|
306
306
|
"underline decoration-transparent decoration-2 underline-offset-4 hover:decoration-inherit"
|
|
307
|
-
),
|
|
308
|
-
}),
|
|
309
|
-
const
|
|
307
|
+
), v.join(" ");
|
|
308
|
+
}), $ = c(() => {
|
|
309
|
+
const v = t.link || t.text;
|
|
310
310
|
return [
|
|
311
311
|
"transition inline-flex justify-center items-center space-x-2 outline-none select-none",
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
t.link ? "" :
|
|
319
|
-
|
|
312
|
+
P.value,
|
|
313
|
+
w.value,
|
|
314
|
+
y.value,
|
|
315
|
+
v ? "" : u.value,
|
|
316
|
+
v ? "" : k.value,
|
|
317
|
+
v ? "" : g.value,
|
|
318
|
+
t.link ? "" : h.value,
|
|
319
|
+
b.value
|
|
320
320
|
].join(" ");
|
|
321
|
-
}), S =
|
|
322
|
-
const
|
|
323
|
-
switch (t.loading &&
|
|
321
|
+
}), S = c(() => {
|
|
322
|
+
const v = [""];
|
|
323
|
+
switch (t.loading && v.push("animate-spin"), t.size) {
|
|
324
324
|
case "xs":
|
|
325
|
-
|
|
325
|
+
v.push("h-3 w-3");
|
|
326
326
|
break;
|
|
327
327
|
case "sm":
|
|
328
|
-
|
|
328
|
+
v.push("h-4 w-4");
|
|
329
329
|
break;
|
|
330
330
|
case "lg":
|
|
331
|
-
|
|
331
|
+
v.push("h-6 w-6");
|
|
332
332
|
break;
|
|
333
333
|
case "xl":
|
|
334
|
-
|
|
334
|
+
v.push("h-8 w-8");
|
|
335
335
|
break;
|
|
336
336
|
case "base":
|
|
337
337
|
default:
|
|
338
|
-
|
|
338
|
+
v.push("h-5 w-5");
|
|
339
339
|
break;
|
|
340
340
|
}
|
|
341
|
-
return
|
|
342
|
-
}),
|
|
343
|
-
if (
|
|
344
|
-
|
|
341
|
+
return v.join(" ");
|
|
342
|
+
}), F = (v) => {
|
|
343
|
+
if (r.value) {
|
|
344
|
+
v.preventDefault(), v.stopPropagation(), v.stopImmediatePropagation();
|
|
345
345
|
return;
|
|
346
346
|
}
|
|
347
|
-
|
|
347
|
+
l("click", v);
|
|
348
348
|
};
|
|
349
|
-
return (
|
|
349
|
+
return (v, D) => (a(), L(G(e.to ? f.value : "button"), {
|
|
350
350
|
href: e.to,
|
|
351
351
|
to: e.to,
|
|
352
|
-
type:
|
|
352
|
+
type: i.value,
|
|
353
353
|
external: e.external,
|
|
354
|
-
class:
|
|
355
|
-
disabled:
|
|
354
|
+
class: x($.value),
|
|
355
|
+
disabled: r.value,
|
|
356
356
|
role: "button",
|
|
357
|
-
onClick:
|
|
357
|
+
onClick: F
|
|
358
358
|
}, {
|
|
359
359
|
default: _(() => [
|
|
360
|
-
|
|
360
|
+
m.value ? (a(), L(G(m.value), {
|
|
361
361
|
key: 0,
|
|
362
|
-
class:
|
|
362
|
+
class: x(`${S.value} ${e.hideText ? "" : "mr-2"}`)
|
|
363
363
|
}, null, 8, ["class"])) : I("", !0),
|
|
364
|
-
e.hideText ? (a(),
|
|
365
|
-
|
|
364
|
+
e.hideText ? (a(), p("div", Xt, " ")) : z(v.$slots, "default", { key: 1 }, () => [
|
|
365
|
+
A("Button")
|
|
366
366
|
], !0),
|
|
367
|
-
e.iconRight || !e.loading ? (a(), L(
|
|
367
|
+
e.iconRight || !e.loading ? (a(), L(G(e.iconRight), {
|
|
368
368
|
key: 3,
|
|
369
|
-
class:
|
|
369
|
+
class: x(`${S.value} ${e.hideText ? "" : "ml-2"}`)
|
|
370
370
|
}, null, 8, ["class"])) : I("", !0)
|
|
371
371
|
]),
|
|
372
372
|
_: 3
|
|
373
373
|
}, 8, ["href", "to", "type", "external", "class", "disabled"]));
|
|
374
374
|
}
|
|
375
375
|
});
|
|
376
|
-
const
|
|
376
|
+
const Ue = (e, l) => {
|
|
377
377
|
const t = e.__vccOpts || e;
|
|
378
|
-
for (const [s, o] of
|
|
378
|
+
for (const [s, o] of l)
|
|
379
379
|
t[s] = o;
|
|
380
380
|
return t;
|
|
381
|
-
},
|
|
381
|
+
}, ee = /* @__PURE__ */ Ue(Nt, [["__scopeId", "data-v-38aa371e"]]), Jt = /* @__PURE__ */ j({
|
|
382
382
|
__name: "Link",
|
|
383
383
|
props: {
|
|
384
384
|
to: {
|
|
@@ -427,15 +427,15 @@ const Fe = (e, n) => {
|
|
|
427
427
|
}
|
|
428
428
|
},
|
|
429
429
|
emits: ["click"],
|
|
430
|
-
setup(e, { emit:
|
|
430
|
+
setup(e, { emit: l }) {
|
|
431
431
|
const t = e, s = (o) => {
|
|
432
432
|
if (t.disabled) {
|
|
433
433
|
o.preventDefault(), o.stopPropagation(), o.stopImmediatePropagation();
|
|
434
434
|
return;
|
|
435
435
|
}
|
|
436
|
-
|
|
436
|
+
l("click", o);
|
|
437
437
|
};
|
|
438
|
-
return (o,
|
|
438
|
+
return (o, f) => (a(), L(ee, {
|
|
439
439
|
link: "",
|
|
440
440
|
to: e.to,
|
|
441
441
|
external: e.external,
|
|
@@ -450,50 +450,50 @@ const Fe = (e, n) => {
|
|
|
450
450
|
}, {
|
|
451
451
|
default: _(() => [
|
|
452
452
|
z(o.$slots, "default", {}, () => [
|
|
453
|
-
|
|
453
|
+
A("Link")
|
|
454
454
|
])
|
|
455
455
|
]),
|
|
456
456
|
_: 3
|
|
457
457
|
}, 8, ["to", "external", "disabled", "size", "foreground-link", "icon-left", "icon-right", "hide-text"]));
|
|
458
458
|
}
|
|
459
459
|
});
|
|
460
|
-
var
|
|
461
|
-
const
|
|
460
|
+
var se = /* @__PURE__ */ ((e) => (e[e.Success = 0] = "Success", e[e.Warning = 1] = "Warning", e[e.Danger = 2] = "Danger", e[e.Info = 3] = "Info", e))(se || {});
|
|
461
|
+
const Qt = {
|
|
462
462
|
"aria-live": "assertive",
|
|
463
463
|
class: "pointer-events-none fixed inset-0 flex items-end px-4 py-6 mt-10 sm:items-start sm:p-6 z-50"
|
|
464
|
-
},
|
|
464
|
+
}, Yt = { class: "flex w-full flex-col items-center space-y-4 sm:items-end" }, Zt = {
|
|
465
465
|
key: 0,
|
|
466
466
|
class: "pointer-events-auto w-full max-w-sm overflow-hidden rounded-lg bg-foundation text-foreground shadow-lg ring-1 ring-primary-muted ring-opacity-5"
|
|
467
|
-
},
|
|
467
|
+
}, es = { class: "p-4" }, ts = { class: "flex items-start" }, ss = { class: "flex-shrink-0" }, ls = { class: "ml-2 w-0 flex-1 flex flex-col" }, ns = {
|
|
468
468
|
key: 0,
|
|
469
469
|
class: "text-foreground font-bold"
|
|
470
|
-
},
|
|
470
|
+
}, as = {
|
|
471
471
|
key: 1,
|
|
472
472
|
class: "label label--light text-foreground-2"
|
|
473
|
-
},
|
|
473
|
+
}, os = {
|
|
474
474
|
key: 2,
|
|
475
475
|
class: "flex justify-start mt-2"
|
|
476
|
-
},
|
|
476
|
+
}, rs = /* @__PURE__ */ d("span", { class: "sr-only" }, "Close", -1), An = /* @__PURE__ */ j({
|
|
477
477
|
__name: "ToastRenderer",
|
|
478
478
|
props: {
|
|
479
479
|
notification: null
|
|
480
480
|
},
|
|
481
481
|
emits: ["update:notification"],
|
|
482
|
-
setup(e, { emit:
|
|
483
|
-
const t = e, s =
|
|
482
|
+
setup(e, { emit: l }) {
|
|
483
|
+
const t = e, s = c(
|
|
484
484
|
() => {
|
|
485
|
-
var
|
|
486
|
-
return !((
|
|
485
|
+
var i, r;
|
|
486
|
+
return !((i = t.notification) != null && i.description) && !((r = t.notification) != null && r.cta);
|
|
487
487
|
}
|
|
488
488
|
), o = () => {
|
|
489
|
-
|
|
490
|
-
},
|
|
491
|
-
var
|
|
492
|
-
(
|
|
489
|
+
l("update:notification", null);
|
|
490
|
+
}, f = (i) => {
|
|
491
|
+
var r, m, u;
|
|
492
|
+
(u = (m = (r = t.notification) == null ? void 0 : r.cta) == null ? void 0 : m.onClick) == null || u.call(m, i), o();
|
|
493
493
|
};
|
|
494
|
-
return (
|
|
495
|
-
|
|
496
|
-
|
|
494
|
+
return (i, r) => (a(), p("div", Qt, [
|
|
495
|
+
d("div", Yt, [
|
|
496
|
+
V(be, {
|
|
497
497
|
"enter-active-class": "transform ease-out duration-300 transition",
|
|
498
498
|
"enter-from-class": "translate-y-2 opacity-0 sm:translate-y-0 sm:translate-x-2",
|
|
499
499
|
"enter-to-class": "translate-y-0 opacity-100 sm:translate-x-0",
|
|
@@ -502,55 +502,55 @@ const qt = {
|
|
|
502
502
|
"leave-to-class": "opacity-0"
|
|
503
503
|
}, {
|
|
504
504
|
default: _(() => [
|
|
505
|
-
e.notification ? (a(),
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
e.notification.type ===
|
|
505
|
+
e.notification ? (a(), p("div", Zt, [
|
|
506
|
+
d("div", es, [
|
|
507
|
+
d("div", ts, [
|
|
508
|
+
d("div", ss, [
|
|
509
|
+
e.notification.type === n(se).Success ? (a(), L(n(ft), {
|
|
510
510
|
key: 0,
|
|
511
511
|
class: "h-6 w-6 text-success",
|
|
512
512
|
"aria-hidden": "true"
|
|
513
|
-
})) : e.notification.type ===
|
|
513
|
+
})) : e.notification.type === n(se).Danger ? (a(), L(n(pt), {
|
|
514
514
|
key: 1,
|
|
515
515
|
class: "h-6 w-6 text-danger",
|
|
516
516
|
"aria-hidden": "true"
|
|
517
|
-
})) : e.notification.type ===
|
|
517
|
+
})) : e.notification.type === n(se).Warning ? (a(), L(n(ht), {
|
|
518
518
|
key: 2,
|
|
519
519
|
class: "h-6 w-6 text-warning",
|
|
520
520
|
"aria-hidden": "true"
|
|
521
|
-
})) : e.notification.type ===
|
|
521
|
+
})) : e.notification.type === n(se).Info ? (a(), L(n(mt), {
|
|
522
522
|
key: 3,
|
|
523
523
|
class: "h-6 w-6 text-info",
|
|
524
524
|
"aria-hidden": "true"
|
|
525
525
|
})) : I("", !0)
|
|
526
526
|
]),
|
|
527
|
-
|
|
528
|
-
e.notification.title ? (a(),
|
|
529
|
-
e.notification.description ? (a(),
|
|
530
|
-
e.notification.cta ? (a(),
|
|
531
|
-
|
|
527
|
+
d("div", ls, [
|
|
528
|
+
e.notification.title ? (a(), p("p", ns, B(e.notification.title), 1)) : I("", !0),
|
|
529
|
+
e.notification.description ? (a(), p("p", as, B(e.notification.description), 1)) : I("", !0),
|
|
530
|
+
e.notification.cta ? (a(), p("div", os, [
|
|
531
|
+
V(Jt, {
|
|
532
532
|
to: e.notification.cta.url,
|
|
533
533
|
class: "label",
|
|
534
534
|
primary: "",
|
|
535
|
-
onClick:
|
|
535
|
+
onClick: f
|
|
536
536
|
}, {
|
|
537
537
|
default: _(() => [
|
|
538
|
-
|
|
538
|
+
A(B(e.notification.cta.title), 1)
|
|
539
539
|
]),
|
|
540
540
|
_: 1
|
|
541
541
|
}, 8, ["to"])
|
|
542
542
|
])) : I("", !0)
|
|
543
543
|
]),
|
|
544
|
-
|
|
545
|
-
class:
|
|
544
|
+
d("div", {
|
|
545
|
+
class: x(["ml-4 flex flex-shrink-0", { "self-center": s.value }])
|
|
546
546
|
}, [
|
|
547
|
-
|
|
547
|
+
d("button", {
|
|
548
548
|
type: "button",
|
|
549
549
|
class: "inline-flex rounded-md bg-foundation text-foreground-2 hover:text-foreground focus:outline-none focus:ring-2 focus:ring-primary focus:ring-offset-2",
|
|
550
550
|
onClick: o
|
|
551
551
|
}, [
|
|
552
|
-
|
|
553
|
-
|
|
552
|
+
rs,
|
|
553
|
+
V(n(fe), {
|
|
554
554
|
class: "h-6 w-6",
|
|
555
555
|
"aria-hidden": "true"
|
|
556
556
|
})
|
|
@@ -565,13 +565,13 @@ const qt = {
|
|
|
565
565
|
])
|
|
566
566
|
]));
|
|
567
567
|
}
|
|
568
|
-
}),
|
|
568
|
+
}), is = /* @__PURE__ */ d("circle", {
|
|
569
569
|
cx: "4",
|
|
570
570
|
cy: "4",
|
|
571
571
|
r: "3"
|
|
572
|
-
}, null, -1),
|
|
573
|
-
|
|
574
|
-
],
|
|
572
|
+
}, null, -1), us = [
|
|
573
|
+
is
|
|
574
|
+
], We = /* @__PURE__ */ j({
|
|
575
575
|
__name: "Badge",
|
|
576
576
|
props: {
|
|
577
577
|
size: null,
|
|
@@ -583,119 +583,119 @@ const qt = {
|
|
|
583
583
|
clickableIcon: { type: Boolean }
|
|
584
584
|
},
|
|
585
585
|
emits: ["click-icon"],
|
|
586
|
-
setup(e, { emit:
|
|
587
|
-
const t = e, s =
|
|
586
|
+
setup(e, { emit: l }) {
|
|
587
|
+
const t = e, s = c(
|
|
588
588
|
() => t.colorClasses || "bg-blue-100 text-blue-800"
|
|
589
|
-
), o =
|
|
589
|
+
), o = c(
|
|
590
590
|
() => t.dotIconColorClasses || "text-blue-400"
|
|
591
|
-
),
|
|
592
|
-
const
|
|
591
|
+
), f = c(() => {
|
|
592
|
+
const u = [
|
|
593
593
|
"inline-flex items-center",
|
|
594
594
|
s.value,
|
|
595
595
|
t.size === "lg" ? "px-3 py-0.5 label" : "px-2.5 py-0.5 caption font-medium"
|
|
596
596
|
];
|
|
597
|
-
return t.rounded ? (
|
|
597
|
+
return t.rounded ? (u.push("rounded"), u.push(
|
|
598
598
|
t.size === "lg" ? "px-2 py-0.5 label" : "px-2.5 py-0.5 caption font-medium"
|
|
599
|
-
)) : (
|
|
599
|
+
)) : (u.push("rounded-full"), u.push(
|
|
600
600
|
t.size === "lg" ? "px-2.5 py-0.5 label" : "px-2.5 py-0.5 caption font-medium"
|
|
601
|
-
)),
|
|
602
|
-
}),
|
|
603
|
-
const
|
|
601
|
+
)), u.join(" ");
|
|
602
|
+
}), i = c(() => {
|
|
603
|
+
const u = [
|
|
604
604
|
"mt-0.5 ml-0.5 inline-flex h-4 w-4 flex-shrink-0 items-center justify-center rounded-full focus:outline-none"
|
|
605
605
|
];
|
|
606
|
-
return t.clickableIcon ?
|
|
607
|
-
}),
|
|
606
|
+
return t.clickableIcon ? u.push("cursor-pointer") : u.push("cursor-default"), u.join(" ");
|
|
607
|
+
}), r = c(() => [
|
|
608
608
|
"-ml-0.5 mr-1.5 h-2 w-2",
|
|
609
609
|
o.value
|
|
610
|
-
].join(" ")),
|
|
610
|
+
].join(" ")), m = (u) => {
|
|
611
611
|
if (!t.clickableIcon) {
|
|
612
|
-
|
|
612
|
+
u.stopPropagation(), u.stopImmediatePropagation(), u.preventDefault();
|
|
613
613
|
return;
|
|
614
614
|
}
|
|
615
|
-
|
|
615
|
+
l("click-icon", u);
|
|
616
616
|
};
|
|
617
|
-
return (
|
|
618
|
-
class:
|
|
617
|
+
return (u, y) => (a(), p("span", {
|
|
618
|
+
class: x(f.value)
|
|
619
619
|
}, [
|
|
620
|
-
e.dot ? (a(),
|
|
620
|
+
e.dot ? (a(), p("svg", {
|
|
621
621
|
key: 0,
|
|
622
|
-
class:
|
|
622
|
+
class: x(r.value),
|
|
623
623
|
fill: "currentColor",
|
|
624
624
|
viewBox: "0 0 8 8"
|
|
625
|
-
},
|
|
626
|
-
z(
|
|
627
|
-
|
|
625
|
+
}, us, 2)) : I("", !0),
|
|
626
|
+
z(u.$slots, "default", {}, () => [
|
|
627
|
+
A("Badge")
|
|
628
628
|
]),
|
|
629
|
-
e.iconLeft ? (a(),
|
|
629
|
+
e.iconLeft ? (a(), p("button", {
|
|
630
630
|
key: 1,
|
|
631
|
-
class:
|
|
632
|
-
onClick:
|
|
631
|
+
class: x(i.value),
|
|
632
|
+
onClick: y[0] || (y[0] = (k) => m(k))
|
|
633
633
|
}, [
|
|
634
|
-
(a(), L(
|
|
635
|
-
class:
|
|
634
|
+
(a(), L(G(e.iconLeft), {
|
|
635
|
+
class: x(["h-4 w-4", o.value])
|
|
636
636
|
}, null, 8, ["class"]))
|
|
637
637
|
], 2)) : I("", !0)
|
|
638
638
|
], 2));
|
|
639
639
|
}
|
|
640
640
|
});
|
|
641
|
-
let
|
|
642
|
-
function
|
|
643
|
-
|
|
641
|
+
let Ae = [];
|
|
642
|
+
function cs(e) {
|
|
643
|
+
Ae = Ae ? e : e.slice();
|
|
644
644
|
}
|
|
645
|
-
var
|
|
646
|
-
function
|
|
645
|
+
var le = /* @__PURE__ */ ((e) => (e[e.sm = 640] = "sm", e[e.md = 746] = "md", e[e.lg = 1024] = "lg", e[e.xl = 1280] = "xl", e[e["2xl"] = 1536] = "2xl", e))(le || {});
|
|
646
|
+
function qe(e) {
|
|
647
647
|
const {
|
|
648
648
|
props: {
|
|
649
|
-
modelValue:
|
|
649
|
+
modelValue: l,
|
|
650
650
|
steps: t,
|
|
651
651
|
orientation: s,
|
|
652
652
|
goVerticalBelow: o,
|
|
653
|
-
nonInteractive:
|
|
654
|
-
stepsPadding:
|
|
653
|
+
nonInteractive: f,
|
|
654
|
+
stepsPadding: i
|
|
655
655
|
},
|
|
656
|
-
emit:
|
|
657
|
-
} = e,
|
|
656
|
+
emit: r
|
|
657
|
+
} = e, m = c(
|
|
658
658
|
() => (s == null ? void 0 : s.value) === "vertical" ? "vertical" : "horizontal"
|
|
659
|
-
),
|
|
660
|
-
get: () => je((
|
|
661
|
-
set: (
|
|
662
|
-
}),
|
|
663
|
-
var
|
|
664
|
-
if (
|
|
665
|
-
|
|
659
|
+
), u = c({
|
|
660
|
+
get: () => je((l == null ? void 0 : l.value) || 0, -1, t.value.length),
|
|
661
|
+
set: (b) => r("update:modelValue", je(b, 0, t.value.length))
|
|
662
|
+
}), y = (b) => `${b + 1}`, k = (b) => b === u.value, g = (b) => b < u.value, w = (b, $) => {
|
|
663
|
+
var F;
|
|
664
|
+
if (f != null && f.value) {
|
|
665
|
+
$ == null || $.preventDefault(), $ == null || $.stopPropagation(), $ == null || $.stopImmediatePropagation();
|
|
666
666
|
return;
|
|
667
667
|
}
|
|
668
|
-
|
|
669
|
-
const S = t.value[
|
|
670
|
-
(
|
|
671
|
-
},
|
|
672
|
-
const
|
|
673
|
-
let
|
|
674
|
-
return (
|
|
675
|
-
`sm:flex-row sm:space-y-0 sm:justify-start sm:${
|
|
676
|
-
) : (o == null ? void 0 : o.value) ===
|
|
677
|
-
`md:flex-row md:space-y-0 md:justify-start md:${
|
|
678
|
-
) : (o == null ? void 0 : o.value) ===
|
|
679
|
-
`lg:flex-row lg:space-y-0 lg:justify-start lg:${
|
|
680
|
-
) : (o == null ? void 0 : o.value) ===
|
|
681
|
-
`xl:flex-row xl:space-y-0 xl:justify-start xl:${
|
|
682
|
-
)) :
|
|
683
|
-
}),
|
|
684
|
-
const
|
|
685
|
-
return
|
|
668
|
+
u.value = b;
|
|
669
|
+
const S = t.value[u.value];
|
|
670
|
+
(F = S == null ? void 0 : S.onClick) == null || F.call(S);
|
|
671
|
+
}, h = c(() => {
|
|
672
|
+
const b = ["flex"];
|
|
673
|
+
let $, S;
|
|
674
|
+
return (i == null ? void 0 : i.value) === "xs" ? ($ = "space-x-2", S = "space-y-1") : (i == null ? void 0 : i.value) === "sm" ? ($ = "space-x-4", S = "space-y-1") : ($ = "space-x-8", S = "space-y-4"), b.push("flex"), m.value === "vertical" || o != null && o.value ? (b.push(`flex-col ${S} justify-center`), (o == null ? void 0 : o.value) === le.sm ? b.push(
|
|
675
|
+
`sm:flex-row sm:space-y-0 sm:justify-start sm:${$} sm:items-center`
|
|
676
|
+
) : (o == null ? void 0 : o.value) === le.md ? b.push(
|
|
677
|
+
`md:flex-row md:space-y-0 md:justify-start md:${$} md:items-center`
|
|
678
|
+
) : (o == null ? void 0 : o.value) === le.lg ? b.push(
|
|
679
|
+
`lg:flex-row lg:space-y-0 lg:justify-start lg:${$} lg:items-center`
|
|
680
|
+
) : (o == null ? void 0 : o.value) === le.xl && b.push(
|
|
681
|
+
`xl:flex-row xl:space-y-0 xl:justify-start xl:${$} xl:items-center`
|
|
682
|
+
)) : b.push(`flex-row ${$} items-center`), b.join(" ");
|
|
683
|
+
}), P = c(() => {
|
|
684
|
+
const b = ["flex items-center"];
|
|
685
|
+
return f != null && f.value || b.push("cursor-pointer"), b.join(" ");
|
|
686
686
|
});
|
|
687
687
|
return {
|
|
688
|
-
value:
|
|
689
|
-
isCurrentStep:
|
|
690
|
-
isFinishedStep:
|
|
691
|
-
switchStep:
|
|
692
|
-
getStepDisplayValue:
|
|
693
|
-
listClasses:
|
|
694
|
-
linkClasses:
|
|
695
|
-
orientation:
|
|
688
|
+
value: u,
|
|
689
|
+
isCurrentStep: k,
|
|
690
|
+
isFinishedStep: g,
|
|
691
|
+
switchStep: w,
|
|
692
|
+
getStepDisplayValue: y,
|
|
693
|
+
listClasses: h,
|
|
694
|
+
linkClasses: P,
|
|
695
|
+
orientation: m
|
|
696
696
|
};
|
|
697
697
|
}
|
|
698
|
-
|
|
698
|
+
cs([
|
|
699
699
|
"sm:space-x-8",
|
|
700
700
|
"md:space-x-8",
|
|
701
701
|
"lg:space-x-8",
|
|
@@ -709,16 +709,16 @@ ls([
|
|
|
709
709
|
"lg:space-x-4",
|
|
710
710
|
"xl:space-x-4"
|
|
711
711
|
]);
|
|
712
|
-
const
|
|
712
|
+
const ds = ["aria-label"], fs = ["href", "onClick"], ps = { class: "flex space-x-3 items-center text-primary-focus normal font-medium leading-5" }, hs = { class: "shrink-0 h-8 w-8 rounded-full bg-primary-focus text-foreground-on-primary inline-flex items-center justify-center" }, ms = { class: "flex flex-col" }, gs = {
|
|
713
713
|
key: 0,
|
|
714
714
|
class: "label label--light text-foreground"
|
|
715
|
-
},
|
|
715
|
+
}, vs = ["href", "onClick"], bs = { class: "flex space-x-3 items-center text-primary-focus normal font-medium leading-5" }, ys = { class: "shrink-0 h-8 w-8 rounded-full border-2 border-primary-focus inline-flex items-center justify-center" }, xs = { class: "flex flex-col" }, ks = {
|
|
716
716
|
key: 0,
|
|
717
717
|
class: "label label--light text-foreground"
|
|
718
|
-
},
|
|
718
|
+
}, ws = ["href", "onClick"], Cs = { class: "flex space-x-3 items-center text-foreground-disabled normal font-medium leading-5" }, $s = { class: "shrink-0 h-8 w-8 rounded-full border-2 border-foreground-disabled inline-flex items-center justify-center" }, Ss = { class: "flex flex-col" }, Is = {
|
|
719
719
|
key: 0,
|
|
720
720
|
class: "label label--light"
|
|
721
|
-
},
|
|
721
|
+
}, Mn = /* @__PURE__ */ j({
|
|
722
722
|
__name: "Number",
|
|
723
723
|
props: {
|
|
724
724
|
ariaLabel: null,
|
|
@@ -730,94 +730,94 @@ const as = ["aria-label"], os = ["href", "onClick"], rs = { class: "flex space-x
|
|
|
730
730
|
stepsPadding: null
|
|
731
731
|
},
|
|
732
732
|
emits: ["update:modelValue"],
|
|
733
|
-
setup(e, { emit:
|
|
733
|
+
setup(e, { emit: l }) {
|
|
734
734
|
const t = e, {
|
|
735
735
|
isCurrentStep: s,
|
|
736
736
|
isFinishedStep: o,
|
|
737
|
-
switchStep:
|
|
738
|
-
getStepDisplayValue:
|
|
739
|
-
listClasses:
|
|
740
|
-
linkClasses:
|
|
741
|
-
} =
|
|
742
|
-
props:
|
|
743
|
-
emit:
|
|
737
|
+
switchStep: f,
|
|
738
|
+
getStepDisplayValue: i,
|
|
739
|
+
listClasses: r,
|
|
740
|
+
linkClasses: m
|
|
741
|
+
} = qe({
|
|
742
|
+
props: Y(t),
|
|
743
|
+
emit: l
|
|
744
744
|
});
|
|
745
|
-
return (
|
|
745
|
+
return (u, y) => (a(), p("nav", {
|
|
746
746
|
class: "flex justify-center",
|
|
747
747
|
"aria-label": e.ariaLabel || "Progress steps"
|
|
748
748
|
}, [
|
|
749
|
-
|
|
750
|
-
class:
|
|
749
|
+
d("ol", {
|
|
750
|
+
class: x(n(r))
|
|
751
751
|
}, [
|
|
752
|
-
(a(!0),
|
|
753
|
-
key:
|
|
752
|
+
(a(!0), p(T, null, U(e.steps, (k, g) => (a(), p("li", {
|
|
753
|
+
key: k.name
|
|
754
754
|
}, [
|
|
755
|
-
|
|
755
|
+
n(o)(g) ? (a(), p("a", {
|
|
756
756
|
key: 0,
|
|
757
|
-
href:
|
|
758
|
-
class:
|
|
759
|
-
onClick: (
|
|
757
|
+
href: k.href,
|
|
758
|
+
class: x(n(m)),
|
|
759
|
+
onClick: (w) => n(f)(g, w)
|
|
760
760
|
}, [
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
761
|
+
d("div", ps, [
|
|
762
|
+
d("div", hs, [
|
|
763
|
+
V(n(yt), { class: "w-5 h-5" })
|
|
764
764
|
]),
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
765
|
+
d("div", ms, [
|
|
766
|
+
d("div", null, B(k.name), 1),
|
|
767
|
+
k.description ? (a(), p("div", gs, B(k.description), 1)) : I("", !0)
|
|
768
768
|
])
|
|
769
769
|
])
|
|
770
|
-
], 10,
|
|
770
|
+
], 10, fs)) : n(s)(g) ? (a(), p("a", {
|
|
771
771
|
key: 1,
|
|
772
|
-
href:
|
|
773
|
-
class:
|
|
772
|
+
href: k.href,
|
|
773
|
+
class: x(n(m)),
|
|
774
774
|
"aria-current": "step",
|
|
775
|
-
onClick: (
|
|
775
|
+
onClick: (w) => n(f)(g, w)
|
|
776
776
|
}, [
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
777
|
+
d("div", bs, [
|
|
778
|
+
d("div", ys, B(n(i)(g)), 1),
|
|
779
|
+
d("div", xs, [
|
|
780
|
+
d("div", null, B(k.name), 1),
|
|
781
|
+
k.description ? (a(), p("div", ks, B(k.description), 1)) : I("", !0)
|
|
782
782
|
])
|
|
783
783
|
])
|
|
784
|
-
], 10,
|
|
784
|
+
], 10, vs)) : (a(), p("a", {
|
|
785
785
|
key: 2,
|
|
786
|
-
href:
|
|
787
|
-
class:
|
|
788
|
-
onClick: (
|
|
786
|
+
href: k.href,
|
|
787
|
+
class: x(n(m)),
|
|
788
|
+
onClick: (w) => n(f)(g, w)
|
|
789
789
|
}, [
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
790
|
+
d("div", Cs, [
|
|
791
|
+
d("div", $s, B(n(i)(g)), 1),
|
|
792
|
+
d("div", Ss, [
|
|
793
|
+
d("div", null, B(k.name), 1),
|
|
794
|
+
k.description ? (a(), p("div", Is, B(k.description), 1)) : I("", !0)
|
|
795
795
|
])
|
|
796
796
|
])
|
|
797
|
-
], 10,
|
|
797
|
+
], 10, ws))
|
|
798
798
|
]))), 128))
|
|
799
799
|
], 2)
|
|
800
|
-
], 8,
|
|
800
|
+
], 8, ds));
|
|
801
801
|
}
|
|
802
|
-
}),
|
|
802
|
+
}), Bs = ["aria-label"], _s = ["href", "onClick"], Vs = { class: "relative flex h-5 w-5 flex-shrink-0 items-center justify-center" }, Ls = {
|
|
803
803
|
key: 0,
|
|
804
804
|
class: "h-3 w-3 rounded-full bg-foreground-2"
|
|
805
|
-
},
|
|
805
|
+
}, Ps = ["href", "onClick"], js = {
|
|
806
806
|
class: "relative flex h-5 w-5 flex-shrink-0 items-center justify-center",
|
|
807
807
|
"aria-hidden": "true"
|
|
808
|
-
},
|
|
808
|
+
}, Os = {
|
|
809
809
|
key: 0,
|
|
810
810
|
class: "h-3 w-3 rounded-full bg-foreground"
|
|
811
|
-
},
|
|
811
|
+
}, As = /* @__PURE__ */ d("span", { class: "absolute h-4 w-4 rounded-full bg-outline-2" }, null, -1), Ms = /* @__PURE__ */ d("span", { class: "relative block h-2 w-2 rounded-full bg-primary-focus" }, null, -1), zs = ["href", "onClick"], Rs = {
|
|
812
812
|
class: "relative flex h-5 w-5 flex-shrink-0 items-center justify-center",
|
|
813
813
|
"aria-hidden": "true"
|
|
814
|
-
},
|
|
814
|
+
}, Ds = {
|
|
815
815
|
key: 0,
|
|
816
816
|
class: "h-3 w-3 rounded-full bg-foreground-2"
|
|
817
|
-
},
|
|
817
|
+
}, Ts = {
|
|
818
818
|
key: 1,
|
|
819
819
|
class: "h-4 w-4 rounded-full bg-foreground-disabled"
|
|
820
|
-
},
|
|
820
|
+
}, zn = /* @__PURE__ */ j({
|
|
821
821
|
__name: "Bullet",
|
|
822
822
|
props: {
|
|
823
823
|
ariaLabel: null,
|
|
@@ -830,117 +830,117 @@ const as = ["aria-label"], os = ["href", "onClick"], rs = { class: "flex space-x
|
|
|
830
830
|
stepsPadding: null
|
|
831
831
|
},
|
|
832
832
|
emits: ["update:modelValue"],
|
|
833
|
-
setup(e, { emit:
|
|
834
|
-
const t = e, { isCurrentStep: s, isFinishedStep: o, switchStep:
|
|
835
|
-
props:
|
|
836
|
-
emit:
|
|
837
|
-
}),
|
|
838
|
-
const
|
|
839
|
-
let
|
|
840
|
-
return t.stepsPadding === "xs" ?
|
|
841
|
-
}),
|
|
842
|
-
const
|
|
843
|
-
return t.basic &&
|
|
833
|
+
setup(e, { emit: l }) {
|
|
834
|
+
const t = e, { isCurrentStep: s, isFinishedStep: o, switchStep: f, listClasses: i, linkClasses: r } = qe({
|
|
835
|
+
props: Y(t),
|
|
836
|
+
emit: l
|
|
837
|
+
}), m = c(() => {
|
|
838
|
+
const y = ["h6 font-medium leading-7"];
|
|
839
|
+
let k;
|
|
840
|
+
return t.stepsPadding === "xs" ? k = "ml-1" : t.stepsPadding === "sm" ? k = "ml-2" : k = "ml-3", y.push(k), t.basic && y.push("sr-only"), y.join(" ");
|
|
841
|
+
}), u = c(() => {
|
|
842
|
+
const y = [];
|
|
843
|
+
return t.basic && y.push("basic"), y.join(" ");
|
|
844
844
|
});
|
|
845
|
-
return (
|
|
845
|
+
return (y, k) => (a(), p("nav", {
|
|
846
846
|
class: "flex justify-center",
|
|
847
847
|
"aria-label": e.ariaLabel || "Progress steps"
|
|
848
848
|
}, [
|
|
849
|
-
|
|
850
|
-
class:
|
|
849
|
+
d("ol", {
|
|
850
|
+
class: x([n(i), u.value])
|
|
851
851
|
}, [
|
|
852
|
-
(a(!0),
|
|
853
|
-
key:
|
|
852
|
+
(a(!0), p(T, null, U(e.steps, (g, w) => (a(), p("li", {
|
|
853
|
+
key: g.name
|
|
854
854
|
}, [
|
|
855
|
-
|
|
855
|
+
n(o)(w) ? (a(), p("a", {
|
|
856
856
|
key: 0,
|
|
857
|
-
href:
|
|
858
|
-
class:
|
|
859
|
-
onClick: (
|
|
857
|
+
href: g.href,
|
|
858
|
+
class: x(n(r)),
|
|
859
|
+
onClick: (h) => n(f)(w, h)
|
|
860
860
|
}, [
|
|
861
|
-
|
|
862
|
-
e.basic ? (a(),
|
|
861
|
+
d("span", Vs, [
|
|
862
|
+
e.basic ? (a(), p("span", Ls)) : (a(), L(n(Fe), {
|
|
863
863
|
key: 1,
|
|
864
864
|
class: "h-full w-full text-primary",
|
|
865
865
|
"aria-hidden": "true"
|
|
866
866
|
}))
|
|
867
867
|
]),
|
|
868
|
-
|
|
869
|
-
class:
|
|
870
|
-
}, B(
|
|
871
|
-
], 10,
|
|
868
|
+
d("span", {
|
|
869
|
+
class: x(["text-foreground", m.value])
|
|
870
|
+
}, B(g.name), 3)
|
|
871
|
+
], 10, _s)) : n(s)(w) ? (a(), p("a", {
|
|
872
872
|
key: 1,
|
|
873
|
-
href:
|
|
874
|
-
class:
|
|
873
|
+
href: g.href,
|
|
874
|
+
class: x(n(r)),
|
|
875
875
|
"aria-current": "step",
|
|
876
|
-
onClick: (
|
|
876
|
+
onClick: (h) => n(f)(w, h)
|
|
877
877
|
}, [
|
|
878
|
-
|
|
879
|
-
e.basic ? (a(),
|
|
880
|
-
|
|
881
|
-
|
|
878
|
+
d("span", js, [
|
|
879
|
+
e.basic ? (a(), p("span", Os)) : (a(), p(T, { key: 1 }, [
|
|
880
|
+
As,
|
|
881
|
+
Ms
|
|
882
882
|
], 64))
|
|
883
883
|
]),
|
|
884
|
-
|
|
885
|
-
class:
|
|
886
|
-
}, B(
|
|
887
|
-
], 10,
|
|
884
|
+
d("span", {
|
|
885
|
+
class: x(["text-primary-focus", m.value])
|
|
886
|
+
}, B(g.name), 3)
|
|
887
|
+
], 10, Ps)) : (a(), p("a", {
|
|
888
888
|
key: 2,
|
|
889
|
-
href:
|
|
890
|
-
class:
|
|
891
|
-
onClick: (
|
|
889
|
+
href: g.href,
|
|
890
|
+
class: x(n(r)),
|
|
891
|
+
onClick: (h) => n(f)(w, h)
|
|
892
892
|
}, [
|
|
893
|
-
|
|
894
|
-
e.basic ? (a(),
|
|
893
|
+
d("div", Rs, [
|
|
894
|
+
e.basic ? (a(), p("span", Ds)) : (a(), p("div", Ts))
|
|
895
895
|
]),
|
|
896
|
-
|
|
897
|
-
class:
|
|
898
|
-
}, B(
|
|
899
|
-
], 10,
|
|
896
|
+
d("p", {
|
|
897
|
+
class: x(["text-foreground-disabled", m.value])
|
|
898
|
+
}, B(g.name), 3)
|
|
899
|
+
], 10, zs))
|
|
900
900
|
]))), 128))
|
|
901
901
|
], 2)
|
|
902
|
-
], 8,
|
|
902
|
+
], 8, Bs));
|
|
903
903
|
}
|
|
904
|
-
}),
|
|
904
|
+
}), Fs = ["disabled"], Rn = /* @__PURE__ */ j({
|
|
905
905
|
__name: "CardButton",
|
|
906
906
|
props: {
|
|
907
907
|
disabled: { type: Boolean },
|
|
908
908
|
modelValue: { type: Boolean }
|
|
909
909
|
},
|
|
910
910
|
emits: ["update:modelValue", "click"],
|
|
911
|
-
setup(e, { emit:
|
|
912
|
-
const t = e, s =
|
|
913
|
-
const
|
|
911
|
+
setup(e, { emit: l }) {
|
|
912
|
+
const t = e, s = c(() => {
|
|
913
|
+
const f = [
|
|
914
914
|
"h-20 bg-foundation-2 inline-flex justify-center items-center outline-none",
|
|
915
915
|
"normal px-16 py-5 shadow rounded transition active:scale-95"
|
|
916
916
|
];
|
|
917
|
-
return t.disabled ?
|
|
917
|
+
return t.disabled ? f.push("bg-foundation-disabled text-foreground-2 cursor-not-allowed") : (f.push(
|
|
918
918
|
t.modelValue ? "bg-primary-focus text-foreground-on-primary" : "bg-foundation text-foreground"
|
|
919
|
-
),
|
|
920
|
-
}), o = (
|
|
919
|
+
), f.push("ring-outline-2 hover:ring-4")), f.join(" ");
|
|
920
|
+
}), o = (f) => {
|
|
921
921
|
if (t.disabled) {
|
|
922
|
-
|
|
922
|
+
f.preventDefault(), f.stopPropagation(), f.stopImmediatePropagation();
|
|
923
923
|
return;
|
|
924
924
|
}
|
|
925
|
-
|
|
925
|
+
l("update:modelValue", !t.modelValue), l("click", f);
|
|
926
926
|
};
|
|
927
|
-
return (
|
|
928
|
-
class:
|
|
927
|
+
return (f, i) => (a(), p("button", {
|
|
928
|
+
class: x(s.value),
|
|
929
929
|
disabled: e.disabled,
|
|
930
930
|
onClick: o
|
|
931
931
|
}, [
|
|
932
|
-
z(
|
|
933
|
-
|
|
932
|
+
z(f.$slots, "default", {}, () => [
|
|
933
|
+
A("Text")
|
|
934
934
|
])
|
|
935
|
-
], 10,
|
|
935
|
+
], 10, Fs));
|
|
936
936
|
}
|
|
937
|
-
}),
|
|
937
|
+
}), Es = { class: "relative flex items-start" }, Us = { class: "flex h-6 items-center" }, Ws = ["id", "checked", "aria-describedby", "name", "disabled", "value"], qs = {
|
|
938
938
|
class: "ml-2 text-sm",
|
|
939
939
|
style: { "padding-top": "2px" }
|
|
940
|
-
},
|
|
940
|
+
}, Hs = ["for"], Gs = {
|
|
941
941
|
key: 0,
|
|
942
942
|
class: "text-danger ml-1"
|
|
943
|
-
},
|
|
943
|
+
}, Ks = ["id"], Dn = /* @__PURE__ */ j({
|
|
944
944
|
inheritAttrs: !1,
|
|
945
945
|
__name: "Checkbox",
|
|
946
946
|
props: {
|
|
@@ -1029,108 +1029,108 @@ const as = ["aria-label"], os = ["href", "onClick"], rs = { class: "flex space-x
|
|
|
1029
1029
|
},
|
|
1030
1030
|
emits: ["update:modelValue"],
|
|
1031
1031
|
setup(e) {
|
|
1032
|
-
const
|
|
1032
|
+
const l = e, t = (b) => `${b}-${Ce()}`, s = c(() => l.value || l.name), {
|
|
1033
1033
|
checked: o,
|
|
1034
|
-
errorMessage:
|
|
1035
|
-
handleChange:
|
|
1036
|
-
value:
|
|
1037
|
-
} =
|
|
1038
|
-
validateOnMount:
|
|
1034
|
+
errorMessage: f,
|
|
1035
|
+
handleChange: i,
|
|
1036
|
+
value: r
|
|
1037
|
+
} = we(l.name, l.rules, {
|
|
1038
|
+
validateOnMount: l.validateOnMount,
|
|
1039
1039
|
type: "checkbox",
|
|
1040
1040
|
checkedValue: s,
|
|
1041
|
-
initialValue:
|
|
1042
|
-
}),
|
|
1043
|
-
const
|
|
1044
|
-
return
|
|
1045
|
-
}),
|
|
1046
|
-
|
|
1041
|
+
initialValue: l.modelValue || void 0
|
|
1042
|
+
}), m = c(() => l.label || l.name), u = c(() => f.value ? "border-danger-lighter" : "border-foreground-4 "), y = c(() => l.description || f.value), k = c(() => `${l.name}-description`), g = c(() => {
|
|
1043
|
+
const b = [];
|
|
1044
|
+
return l.inlineDescription ? b.push("inline ml-2") : b.push("block"), f.value ? b.push("text-danger") : b.push("text-foreground-2"), b.join(" ");
|
|
1045
|
+
}), w = M(t("checkbox")), h = c(() => l.id || w.value), P = (b) => {
|
|
1046
|
+
l.disabled || i(b);
|
|
1047
1047
|
};
|
|
1048
|
-
return
|
|
1049
|
-
const
|
|
1050
|
-
S !==
|
|
1051
|
-
}), (
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
id:
|
|
1055
|
-
checked:
|
|
1056
|
-
"aria-describedby":
|
|
1048
|
+
return Z(() => {
|
|
1049
|
+
const b = l.modelValue, $ = r.value, S = Array.isArray(b) ? b.includes(l.value) : b === l.value, F = Array.isArray($) ? $.includes(l.value) : $ === l.value;
|
|
1050
|
+
S !== F && i(b);
|
|
1051
|
+
}), (b, $) => (a(), p("div", Es, [
|
|
1052
|
+
d("div", Us, [
|
|
1053
|
+
d("input", ie({
|
|
1054
|
+
id: h.value,
|
|
1055
|
+
checked: n(o),
|
|
1056
|
+
"aria-describedby": k.value,
|
|
1057
1057
|
name: e.name,
|
|
1058
1058
|
disabled: e.disabled,
|
|
1059
1059
|
value: s.value,
|
|
1060
1060
|
type: "checkbox",
|
|
1061
|
-
class: ["h-4 w-4 rounded text-primary focus:ring-primary bg-foundation disabled:cursor-not-allowed disabled:bg-disabled disabled:text-disabled-2",
|
|
1062
|
-
},
|
|
1061
|
+
class: ["h-4 w-4 rounded text-primary focus:ring-primary bg-foundation disabled:cursor-not-allowed disabled:bg-disabled disabled:text-disabled-2", u.value]
|
|
1062
|
+
}, b.$attrs, { onChange: P }), null, 16, Ws)
|
|
1063
1063
|
]),
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
for:
|
|
1067
|
-
class:
|
|
1064
|
+
d("div", qs, [
|
|
1065
|
+
d("label", {
|
|
1066
|
+
for: h.value,
|
|
1067
|
+
class: x(["font-medium text-foreground", { "sr-only": e.hideLabel }])
|
|
1068
1068
|
}, [
|
|
1069
|
-
|
|
1070
|
-
e.showRequired ? (a(),
|
|
1071
|
-
], 10,
|
|
1072
|
-
|
|
1069
|
+
d("span", null, B(m.value), 1),
|
|
1070
|
+
e.showRequired ? (a(), p("span", Gs, "*")) : I("", !0)
|
|
1071
|
+
], 10, Hs),
|
|
1072
|
+
y.value ? (a(), p("p", {
|
|
1073
1073
|
key: 0,
|
|
1074
|
-
id:
|
|
1075
|
-
class:
|
|
1076
|
-
}, B(
|
|
1074
|
+
id: k.value,
|
|
1075
|
+
class: x(g.value)
|
|
1076
|
+
}, B(y.value), 11, Ks)) : I("", !0)
|
|
1077
1077
|
])
|
|
1078
1078
|
]));
|
|
1079
1079
|
}
|
|
1080
1080
|
});
|
|
1081
|
-
function
|
|
1082
|
-
const { props:
|
|
1083
|
-
validateOnMount: l
|
|
1084
|
-
validateOnValueUpdate: l
|
|
1085
|
-
initialValue: l
|
|
1086
|
-
}),
|
|
1081
|
+
function He(e) {
|
|
1082
|
+
const { props: l, inputEl: t, emit: s } = e, { value: o, errorMessage: f } = we(l.name, l.rules, {
|
|
1083
|
+
validateOnMount: n(l.validateOnMount),
|
|
1084
|
+
validateOnValueUpdate: n(l.validateOnValueUpdate),
|
|
1085
|
+
initialValue: n(l.modelValue) || void 0
|
|
1086
|
+
}), i = c(() => {
|
|
1087
1087
|
const S = ["block label text-foreground-2 mb-2"];
|
|
1088
|
-
return l
|
|
1089
|
-
}),
|
|
1088
|
+
return n(l.showLabel) || S.push("sr-only"), S.join(" ");
|
|
1089
|
+
}), r = c(() => {
|
|
1090
1090
|
const S = [
|
|
1091
1091
|
"block w-full rounded focus:outline-none text-foreground transition-all",
|
|
1092
1092
|
"disabled:cursor-not-allowed disabled:bg-foundation-disabled disabled:text-disabled-muted",
|
|
1093
1093
|
"placeholder:text-foreground-2"
|
|
1094
1094
|
];
|
|
1095
|
-
return
|
|
1095
|
+
return f.value ? S.push(
|
|
1096
1096
|
"border-2 border-danger text-danger-darker focus:border-danger focus:ring-danger"
|
|
1097
|
-
) : S.push("border-0 focus:ring-2 focus:ring-outline-2"), l
|
|
1098
|
-
}),
|
|
1099
|
-
const S =
|
|
1100
|
-
return !S || !l
|
|
1101
|
-
}),
|
|
1102
|
-
() =>
|
|
1103
|
-
),
|
|
1104
|
-
() =>
|
|
1105
|
-
),
|
|
1097
|
+
) : S.push("border-0 focus:ring-2 focus:ring-outline-2"), n(l.color) === "foundation" ? S.push("bg-foundation shadow-sm hover:shadow") : S.push("bg-foundation-page"), S.join(" ");
|
|
1098
|
+
}), m = M(Ce()), u = c(() => n(l.label) || n(l.name)), y = c(() => {
|
|
1099
|
+
const S = f.value;
|
|
1100
|
+
return !S || !n(l.useLabelInErrors) ? S : S.replace("Value", u.value);
|
|
1101
|
+
}), k = c(
|
|
1102
|
+
() => y.value && n(l.hideErrorMessage)
|
|
1103
|
+
), g = c(() => y.value || n(l.help)), w = c(() => !!g.value), h = c(
|
|
1104
|
+
() => w.value ? `${n(l.name)}-${m.value}` : void 0
|
|
1105
|
+
), P = c(() => {
|
|
1106
1106
|
const S = ["mt-2 text-sm"];
|
|
1107
|
-
return S.push(
|
|
1108
|
-
}),
|
|
1107
|
+
return S.push(f.value ? "text-danger" : "text-foreground-2"), S.join(" ");
|
|
1108
|
+
}), b = () => {
|
|
1109
1109
|
var S;
|
|
1110
1110
|
(S = t.value) == null || S.focus();
|
|
1111
|
-
},
|
|
1111
|
+
}, $ = () => {
|
|
1112
1112
|
o.value = "", s("change", { value: "" }), s("clear");
|
|
1113
1113
|
};
|
|
1114
|
-
return
|
|
1115
|
-
l
|
|
1114
|
+
return Z(() => {
|
|
1115
|
+
n(l.autoFocus) && b();
|
|
1116
1116
|
}), {
|
|
1117
|
-
coreClasses:
|
|
1118
|
-
title:
|
|
1117
|
+
coreClasses: r,
|
|
1118
|
+
title: u,
|
|
1119
1119
|
value: o,
|
|
1120
|
-
helpTipId:
|
|
1121
|
-
helpTipClasses:
|
|
1122
|
-
helpTip:
|
|
1123
|
-
hideHelpTip:
|
|
1124
|
-
errorMessage:
|
|
1125
|
-
clear:
|
|
1126
|
-
focus:
|
|
1127
|
-
labelClasses:
|
|
1120
|
+
helpTipId: h,
|
|
1121
|
+
helpTipClasses: P,
|
|
1122
|
+
helpTip: g,
|
|
1123
|
+
hideHelpTip: k,
|
|
1124
|
+
errorMessage: y,
|
|
1125
|
+
clear: $,
|
|
1126
|
+
focus: b,
|
|
1127
|
+
labelClasses: i
|
|
1128
1128
|
};
|
|
1129
1129
|
}
|
|
1130
|
-
const
|
|
1130
|
+
const Xs = ["for"], Ns = { class: "relative" }, Js = ["id", "name", "placeholder", "disabled", "aria-invalid", "aria-describedby"], Qs = /* @__PURE__ */ d("span", { class: "text-xs sr-only" }, "Clear input", -1), Ys = {
|
|
1131
1131
|
key: 2,
|
|
1132
|
-
class: "pointer-events-none absolute inset-y-0 mt-
|
|
1133
|
-
},
|
|
1132
|
+
class: "pointer-events-none absolute inset-y-0 mt-0.5 text-4xl right-0 flex items-start pr-2 text-danger opacity-50"
|
|
1133
|
+
}, Zs = ["id"], Tn = /* @__PURE__ */ j({
|
|
1134
1134
|
__name: "TextArea",
|
|
1135
1135
|
props: {
|
|
1136
1136
|
name: null,
|
|
@@ -1151,96 +1151,96 @@ const Ws = ["for"], Us = { class: "relative" }, qs = ["id", "name", "placeholder
|
|
|
1151
1151
|
color: { default: "page" }
|
|
1152
1152
|
},
|
|
1153
1153
|
emits: ["update:modelValue", "change", "input", "clear"],
|
|
1154
|
-
setup(e, { expose:
|
|
1155
|
-
const s = e, o =
|
|
1156
|
-
coreClasses:
|
|
1157
|
-
title:
|
|
1158
|
-
value:
|
|
1159
|
-
helpTipId:
|
|
1160
|
-
helpTipClasses:
|
|
1161
|
-
helpTip:
|
|
1162
|
-
errorMessage:
|
|
1163
|
-
labelClasses:
|
|
1164
|
-
clear:
|
|
1165
|
-
focus:
|
|
1166
|
-
} =
|
|
1167
|
-
props:
|
|
1154
|
+
setup(e, { expose: l, emit: t }) {
|
|
1155
|
+
const s = e, o = M(null), {
|
|
1156
|
+
coreClasses: f,
|
|
1157
|
+
title: i,
|
|
1158
|
+
value: r,
|
|
1159
|
+
helpTipId: m,
|
|
1160
|
+
helpTipClasses: u,
|
|
1161
|
+
helpTip: y,
|
|
1162
|
+
errorMessage: k,
|
|
1163
|
+
labelClasses: g,
|
|
1164
|
+
clear: w,
|
|
1165
|
+
focus: h
|
|
1166
|
+
} = He({
|
|
1167
|
+
props: Y(s),
|
|
1168
1168
|
emit: t,
|
|
1169
1169
|
inputEl: o
|
|
1170
|
-
}),
|
|
1171
|
-
const
|
|
1172
|
-
return s.showClear &&
|
|
1170
|
+
}), P = c(() => {
|
|
1171
|
+
const b = ["pl-2"];
|
|
1172
|
+
return s.showClear && k.value ? b.push("pr-12") : (s.showClear || k.value) && b.push("pr-8"), b.join(" ");
|
|
1173
1173
|
});
|
|
1174
|
-
return
|
|
1175
|
-
class:
|
|
1174
|
+
return l({ focus: h }), (b, $) => (a(), p("div", {
|
|
1175
|
+
class: x([e.fullWidth ? "w-full" : ""])
|
|
1176
1176
|
}, [
|
|
1177
|
-
|
|
1177
|
+
d("label", {
|
|
1178
1178
|
for: e.name,
|
|
1179
|
-
class:
|
|
1179
|
+
class: x(n(g))
|
|
1180
1180
|
}, [
|
|
1181
|
-
|
|
1182
|
-
], 10,
|
|
1183
|
-
|
|
1184
|
-
|
|
1181
|
+
d("span", null, B(n(i)), 1)
|
|
1182
|
+
], 10, Xs),
|
|
1183
|
+
d("div", Ns, [
|
|
1184
|
+
ae(d("textarea", ie({
|
|
1185
1185
|
id: e.name,
|
|
1186
1186
|
ref_key: "inputElement",
|
|
1187
1187
|
ref: o,
|
|
1188
|
-
"onUpdate:modelValue":
|
|
1188
|
+
"onUpdate:modelValue": $[0] || ($[0] = (S) => de(r) ? r.value = S : null),
|
|
1189
1189
|
name: e.name,
|
|
1190
|
-
class: [
|
|
1190
|
+
class: [n(f), P.value, "min-h-[4rem] simple-scrollbar"],
|
|
1191
1191
|
placeholder: e.placeholder,
|
|
1192
1192
|
disabled: e.disabled,
|
|
1193
|
-
"aria-invalid":
|
|
1194
|
-
"aria-describedby":
|
|
1195
|
-
},
|
|
1196
|
-
onChange:
|
|
1197
|
-
onInput:
|
|
1198
|
-
}), null, 16,
|
|
1199
|
-
[
|
|
1193
|
+
"aria-invalid": n(k) ? "true" : "false",
|
|
1194
|
+
"aria-describedby": n(m)
|
|
1195
|
+
}, b.$attrs, {
|
|
1196
|
+
onChange: $[1] || ($[1] = (S) => b.$emit("change", { event: S, value: n(r) })),
|
|
1197
|
+
onInput: $[2] || ($[2] = (S) => b.$emit("input", { event: S, value: n(r) }))
|
|
1198
|
+
}), null, 16, Js), [
|
|
1199
|
+
[Me, n(r)]
|
|
1200
1200
|
]),
|
|
1201
|
-
e.showClear ? (a(),
|
|
1201
|
+
e.showClear ? (a(), p("a", {
|
|
1202
1202
|
key: 0,
|
|
1203
1203
|
title: "Clear input",
|
|
1204
1204
|
class: "absolute top-2 right-0 flex items-center pr-2 cursor-pointer",
|
|
1205
|
-
onClick:
|
|
1206
|
-
(...S) =>
|
|
1207
|
-
onKeydown:
|
|
1208
|
-
(...S) =>
|
|
1205
|
+
onClick: $[3] || ($[3] = //@ts-ignore
|
|
1206
|
+
(...S) => n(w) && n(w)(...S)),
|
|
1207
|
+
onKeydown: $[4] || ($[4] = //@ts-ignore
|
|
1208
|
+
(...S) => n(w) && n(w)(...S))
|
|
1209
1209
|
}, [
|
|
1210
|
-
|
|
1211
|
-
|
|
1210
|
+
Qs,
|
|
1211
|
+
V(n(fe), {
|
|
1212
1212
|
class: "h-5 w-5 text-foreground",
|
|
1213
1213
|
"aria-hidden": "true"
|
|
1214
1214
|
})
|
|
1215
1215
|
], 32)) : I("", !0),
|
|
1216
|
-
|
|
1216
|
+
n(k) ? (a(), p("div", {
|
|
1217
1217
|
key: 1,
|
|
1218
|
-
class:
|
|
1219
|
-
"pointer-events-none absolute inset-y-0 right-0 flex items-
|
|
1218
|
+
class: x([
|
|
1219
|
+
"pointer-events-none absolute inset-y-0 right-0 flex items-start mt-2",
|
|
1220
1220
|
e.showClear ? "pr-8" : "pr-2"
|
|
1221
1221
|
])
|
|
1222
1222
|
}, [
|
|
1223
|
-
|
|
1223
|
+
V(n(ke), {
|
|
1224
1224
|
class: "h-4 w-4 text-danger",
|
|
1225
1225
|
"aria-hidden": "true"
|
|
1226
1226
|
})
|
|
1227
1227
|
], 2)) : I("", !0),
|
|
1228
|
-
e.showRequired && !
|
|
1228
|
+
e.showRequired && !n(k) ? (a(), p("div", Ys, " * ")) : I("", !0)
|
|
1229
1229
|
]),
|
|
1230
|
-
|
|
1230
|
+
n(m) ? (a(), p("p", {
|
|
1231
1231
|
key: 0,
|
|
1232
|
-
id:
|
|
1233
|
-
class:
|
|
1234
|
-
}, B(
|
|
1232
|
+
id: n(m),
|
|
1233
|
+
class: x(n(u))
|
|
1234
|
+
}, B(n(y)), 11, Zs)) : I("", !0)
|
|
1235
1235
|
], 2));
|
|
1236
1236
|
}
|
|
1237
|
-
}),
|
|
1237
|
+
}), el = ["for"], tl = { class: "relative" }, sl = {
|
|
1238
1238
|
key: 0,
|
|
1239
1239
|
class: "pointer-events-none absolute inset-y-0 left-0 flex items-center pl-2"
|
|
1240
|
-
},
|
|
1240
|
+
}, ll = ["id", "type", "name", "placeholder", "disabled", "aria-invalid", "aria-describedby"], nl = /* @__PURE__ */ d("span", { class: "text-xs sr-only" }, "Clear input", -1), al = {
|
|
1241
1241
|
key: 2,
|
|
1242
1242
|
class: "pointer-events-none absolute inset-y-0 mt-3 text-4xl right-0 flex items-center pr-2 text-danger opacity-50"
|
|
1243
|
-
},
|
|
1243
|
+
}, ol = ["id"], Fn = /* @__PURE__ */ j({
|
|
1244
1244
|
inheritAttrs: !1,
|
|
1245
1245
|
__name: "TextInput",
|
|
1246
1246
|
props: {
|
|
@@ -1376,32 +1376,32 @@ const Ws = ["for"], Us = { class: "relative" }, qs = ["id", "name", "placeholder
|
|
|
1376
1376
|
}
|
|
1377
1377
|
},
|
|
1378
1378
|
emits: ["update:modelValue", "change", "input", "clear", "focusin", "focusout"],
|
|
1379
|
-
setup(e, { expose:
|
|
1380
|
-
const s = e, o =
|
|
1381
|
-
coreClasses:
|
|
1382
|
-
title:
|
|
1383
|
-
value:
|
|
1384
|
-
helpTipId:
|
|
1385
|
-
helpTipClasses:
|
|
1386
|
-
helpTip:
|
|
1387
|
-
hideHelpTip:
|
|
1388
|
-
errorMessage:
|
|
1389
|
-
clear:
|
|
1390
|
-
focus:
|
|
1391
|
-
labelClasses:
|
|
1392
|
-
} =
|
|
1393
|
-
props:
|
|
1379
|
+
setup(e, { expose: l, emit: t }) {
|
|
1380
|
+
const s = e, o = ye(), f = M(null), {
|
|
1381
|
+
coreClasses: i,
|
|
1382
|
+
title: r,
|
|
1383
|
+
value: m,
|
|
1384
|
+
helpTipId: u,
|
|
1385
|
+
helpTipClasses: y,
|
|
1386
|
+
helpTip: k,
|
|
1387
|
+
hideHelpTip: g,
|
|
1388
|
+
errorMessage: w,
|
|
1389
|
+
clear: h,
|
|
1390
|
+
focus: P,
|
|
1391
|
+
labelClasses: b
|
|
1392
|
+
} = He({
|
|
1393
|
+
props: Y(s),
|
|
1394
1394
|
emit: t,
|
|
1395
|
-
inputEl:
|
|
1396
|
-
}),
|
|
1397
|
-
const
|
|
1398
|
-
return
|
|
1399
|
-
}), S =
|
|
1395
|
+
inputEl: f
|
|
1396
|
+
}), $ = c(() => {
|
|
1397
|
+
const D = ["h-5 w-5"];
|
|
1398
|
+
return w.value ? D.push("text-danger") : D.push("text-foreground-2"), D.join(" ");
|
|
1399
|
+
}), S = c(
|
|
1400
1400
|
() => ["email", "password"].includes(s.type) || s.customIcon
|
|
1401
|
-
),
|
|
1402
|
-
const
|
|
1403
|
-
return S.value ?
|
|
1404
|
-
}),
|
|
1401
|
+
), F = c(() => {
|
|
1402
|
+
const D = [];
|
|
1403
|
+
return S.value ? D.push("pl-8") : D.push("pl-2"), o["input-right"] || (w.value || s.showClear) && (w.value && s.showClear ? D.push("pr-12") : D.push("pr-8")), D.join(" ");
|
|
1404
|
+
}), v = c(() => {
|
|
1405
1405
|
switch (s.size) {
|
|
1406
1406
|
case "sm":
|
|
1407
1407
|
return "h-6";
|
|
@@ -1414,197 +1414,202 @@ const Ws = ["for"], Us = { class: "relative" }, qs = ["id", "name", "placeholder
|
|
|
1414
1414
|
return "h-8";
|
|
1415
1415
|
}
|
|
1416
1416
|
});
|
|
1417
|
-
return
|
|
1418
|
-
class:
|
|
1417
|
+
return l({ focus: P }), (D, W) => (a(), p("div", {
|
|
1418
|
+
class: x([e.fullWidth ? "w-full" : "", e.wrapperClasses])
|
|
1419
1419
|
}, [
|
|
1420
|
-
|
|
1420
|
+
d("label", {
|
|
1421
1421
|
for: e.name,
|
|
1422
|
-
class:
|
|
1422
|
+
class: x(n(b))
|
|
1423
1423
|
}, [
|
|
1424
|
-
|
|
1425
|
-
], 10,
|
|
1426
|
-
|
|
1427
|
-
S.value ? (a(),
|
|
1428
|
-
e.customIcon ? (a(), L(
|
|
1424
|
+
d("span", null, B(n(r)), 1)
|
|
1425
|
+
], 10, el),
|
|
1426
|
+
d("div", tl, [
|
|
1427
|
+
S.value ? (a(), p("div", sl, [
|
|
1428
|
+
e.customIcon ? (a(), L(G(e.customIcon), {
|
|
1429
1429
|
key: 0,
|
|
1430
|
-
class:
|
|
1430
|
+
class: x($.value),
|
|
1431
1431
|
"aria-hidden": "true"
|
|
1432
|
-
}, null, 8, ["class"])) : e.type === "email" ? (a(), L(
|
|
1432
|
+
}, null, 8, ["class"])) : e.type === "email" ? (a(), L(n(xt), {
|
|
1433
1433
|
key: 1,
|
|
1434
|
-
class:
|
|
1434
|
+
class: x($.value),
|
|
1435
1435
|
"aria-hidden": "true"
|
|
1436
|
-
}, null, 8, ["class"])) : e.type === "password" ? (a(), L(
|
|
1436
|
+
}, null, 8, ["class"])) : e.type === "password" ? (a(), L(n(kt), {
|
|
1437
1437
|
key: 2,
|
|
1438
|
-
class:
|
|
1438
|
+
class: x($.value),
|
|
1439
1439
|
"aria-hidden": "true"
|
|
1440
1440
|
}, null, 8, ["class"])) : I("", !0)
|
|
1441
1441
|
])) : I("", !0),
|
|
1442
|
-
|
|
1442
|
+
ae(d("input", ie({
|
|
1443
1443
|
id: e.name,
|
|
1444
1444
|
ref_key: "inputElement",
|
|
1445
|
-
ref:
|
|
1446
|
-
"onUpdate:modelValue":
|
|
1445
|
+
ref: f,
|
|
1446
|
+
"onUpdate:modelValue": W[0] || (W[0] = (E) => de(m) ? m.value = E : null),
|
|
1447
1447
|
type: e.type,
|
|
1448
1448
|
name: e.name,
|
|
1449
|
-
class: [
|
|
1449
|
+
class: [n(i), F.value, v.value, e.inputClasses || ""],
|
|
1450
1450
|
placeholder: e.placeholder,
|
|
1451
1451
|
disabled: e.disabled,
|
|
1452
|
-
"aria-invalid":
|
|
1453
|
-
"aria-describedby":
|
|
1452
|
+
"aria-invalid": n(w) ? "true" : "false",
|
|
1453
|
+
"aria-describedby": n(u),
|
|
1454
1454
|
role: "textbox"
|
|
1455
|
-
},
|
|
1456
|
-
onChange:
|
|
1457
|
-
onInput:
|
|
1458
|
-
}), null, 16,
|
|
1459
|
-
[
|
|
1455
|
+
}, D.$attrs, {
|
|
1456
|
+
onChange: W[1] || (W[1] = (E) => D.$emit("change", { event: E, value: n(m) })),
|
|
1457
|
+
onInput: W[2] || (W[2] = (E) => D.$emit("input", { event: E, value: n(m) }))
|
|
1458
|
+
}), null, 16, ll), [
|
|
1459
|
+
[et, n(m)]
|
|
1460
1460
|
]),
|
|
1461
|
-
z(
|
|
1462
|
-
e.showClear ? (a(),
|
|
1461
|
+
z(D.$slots, "input-right", {}, () => [
|
|
1462
|
+
e.showClear ? (a(), p("a", {
|
|
1463
1463
|
key: 0,
|
|
1464
1464
|
title: "Clear input",
|
|
1465
1465
|
class: "absolute inset-y-0 right-0 flex items-center pr-2 cursor-pointer",
|
|
1466
|
-
onClick:
|
|
1467
|
-
(...
|
|
1468
|
-
onKeydown:
|
|
1469
|
-
(...
|
|
1466
|
+
onClick: W[3] || (W[3] = //@ts-ignore
|
|
1467
|
+
(...E) => n(h) && n(h)(...E)),
|
|
1468
|
+
onKeydown: W[4] || (W[4] = //@ts-ignore
|
|
1469
|
+
(...E) => n(h) && n(h)(...E))
|
|
1470
1470
|
}, [
|
|
1471
|
-
|
|
1472
|
-
|
|
1471
|
+
nl,
|
|
1472
|
+
V(n(fe), {
|
|
1473
1473
|
class: "h-5 w-5 text-foreground",
|
|
1474
1474
|
"aria-hidden": "true"
|
|
1475
1475
|
})
|
|
1476
1476
|
], 32)) : I("", !0),
|
|
1477
|
-
|
|
1477
|
+
n(w) ? (a(), p("div", {
|
|
1478
1478
|
key: 1,
|
|
1479
|
-
class:
|
|
1479
|
+
class: x([
|
|
1480
1480
|
"pointer-events-none absolute inset-y-0 right-0 flex items-center",
|
|
1481
1481
|
e.showClear ? "pr-8" : "pr-2"
|
|
1482
1482
|
])
|
|
1483
1483
|
}, [
|
|
1484
|
-
|
|
1484
|
+
V(n(ke), {
|
|
1485
1485
|
class: "h-4 w-4 text-danger",
|
|
1486
1486
|
"aria-hidden": "true"
|
|
1487
1487
|
})
|
|
1488
1488
|
], 2)) : I("", !0),
|
|
1489
|
-
e.showRequired && !
|
|
1489
|
+
e.showRequired && !n(w) ? (a(), p("div", al, " * ")) : I("", !0)
|
|
1490
1490
|
])
|
|
1491
1491
|
]),
|
|
1492
|
-
|
|
1492
|
+
n(u) && !n(g) ? (a(), p("p", {
|
|
1493
1493
|
key: 0,
|
|
1494
|
-
id:
|
|
1495
|
-
class:
|
|
1496
|
-
}, B(
|
|
1494
|
+
id: n(u),
|
|
1495
|
+
class: x(n(y))
|
|
1496
|
+
}, B(n(k)), 11, ol)) : I("", !0)
|
|
1497
1497
|
], 2));
|
|
1498
1498
|
}
|
|
1499
|
-
}),
|
|
1499
|
+
}), Ge = /^https?:\/\//, Se = /^[\w-_.+]+@[\w-_.+]+$/, rl = (e) => (e || "").match(Se) ? !0 : "Value should be a valid e-mail address", il = (e) => (e || "").split(",").map((s) => s.trim()).every((s) => s.match(Se)) || "Value should be one or multiple comma-delimited e-mail addresses", ul = (e) => (ce(e) && (e = e.trim()), e ? !0 : "Value is required"), cl = (e, l) => (t, s) => t === s.form[e] ? !0 : `Value must be the same as in field '${l || e}'`, dl = (e) => (l) => {
|
|
1500
1500
|
const { minLength: t, maxLength: s } = e;
|
|
1501
|
-
return
|
|
1502
|
-
},
|
|
1501
|
+
return l = $t(l) ? "" : l, ce(l) ? !Q(t) && l.length < t ? `Value needs to be at least ${t} characters long` : !Q(s) && l.length > s ? `Value needs to be no more than ${s} characters long` : !0 : "Value should be a text string";
|
|
1502
|
+
}, fl = (e) => (l) => {
|
|
1503
1503
|
const { match: t, message: s } = e;
|
|
1504
|
-
return
|
|
1505
|
-
},
|
|
1504
|
+
return ce(l) ? t ? ce(t) ? l.includes(t) ? !0 : s : t.test(l) ? !0 : s : !0 : "Value should be a text string";
|
|
1505
|
+
}, pl = (e) => Ge.test(e) ? !0 : "Value is not a valid URL", hl = (e) => Array.isArray(e) && e.length > 0 ? !0 : "Value should have at least a single item selected", En = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1506
1506
|
__proto__: null,
|
|
1507
|
-
VALID_EMAIL:
|
|
1508
|
-
VALID_HTTP_URL:
|
|
1509
|
-
isEmail:
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1507
|
+
VALID_EMAIL: Se,
|
|
1508
|
+
VALID_HTTP_URL: Ge,
|
|
1509
|
+
isEmail: rl,
|
|
1510
|
+
isItemSelected: hl,
|
|
1511
|
+
isOneOrMultipleEmails: il,
|
|
1512
|
+
isRequired: ul,
|
|
1513
|
+
isSameAs: cl,
|
|
1514
|
+
isStringOfLength: dl,
|
|
1515
|
+
isUrl: pl,
|
|
1516
|
+
stringContains: fl
|
|
1515
1517
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
1516
|
-
function
|
|
1518
|
+
function ml(e) {
|
|
1517
1519
|
const {
|
|
1518
|
-
skipCalculation:
|
|
1520
|
+
skipCalculation: l,
|
|
1519
1521
|
elementToWatchForChanges: t,
|
|
1520
1522
|
itemContainer: s,
|
|
1521
1523
|
trackResize: o = !1,
|
|
1522
|
-
trackMutations:
|
|
1523
|
-
} = e || {},
|
|
1524
|
-
const
|
|
1525
|
-
if (
|
|
1524
|
+
trackMutations: f = !0
|
|
1525
|
+
} = e || {}, i = M(0), r = () => {
|
|
1526
|
+
const m = s.value;
|
|
1527
|
+
if (l != null && l.value || !m)
|
|
1526
1528
|
return;
|
|
1527
|
-
const
|
|
1528
|
-
let
|
|
1529
|
-
for (const
|
|
1530
|
-
const
|
|
1531
|
-
Q(
|
|
1529
|
+
const u = m.children;
|
|
1530
|
+
let y = 0, k = 0, g;
|
|
1531
|
+
for (const w of u) {
|
|
1532
|
+
const h = w.offsetTop;
|
|
1533
|
+
Q(g) ? (g = h, y += 1) : h === g && (y += 1), k += 1;
|
|
1532
1534
|
}
|
|
1533
|
-
|
|
1535
|
+
i.value = k - y;
|
|
1534
1536
|
};
|
|
1535
|
-
return o &&
|
|
1537
|
+
return o && Bt(t, r), f && _t(t, r, {
|
|
1536
1538
|
childList: !0,
|
|
1537
1539
|
subtree: !0
|
|
1538
1540
|
}), {
|
|
1539
|
-
hiddenItemCount:
|
|
1541
|
+
hiddenItemCount: i
|
|
1540
1542
|
};
|
|
1541
1543
|
}
|
|
1542
|
-
function
|
|
1543
|
-
const { props:
|
|
1544
|
+
function Ke(e) {
|
|
1545
|
+
const { props: l, emit: t, dynamicVisibility: s } = e;
|
|
1544
1546
|
let o;
|
|
1545
1547
|
if (s) {
|
|
1546
|
-
const { elementToWatchForChanges:
|
|
1547
|
-
o =
|
|
1548
|
-
skipCalculation:
|
|
1549
|
-
var
|
|
1550
|
-
return !((
|
|
1548
|
+
const { elementToWatchForChanges: u, itemContainer: y } = s;
|
|
1549
|
+
o = ml({
|
|
1550
|
+
skipCalculation: c(() => {
|
|
1551
|
+
var g;
|
|
1552
|
+
return !((g = l.multiple) != null && g.value);
|
|
1551
1553
|
}),
|
|
1552
|
-
elementToWatchForChanges:
|
|
1553
|
-
itemContainer:
|
|
1554
|
+
elementToWatchForChanges: u,
|
|
1555
|
+
itemContainer: y
|
|
1554
1556
|
}).hiddenItemCount;
|
|
1555
1557
|
} else
|
|
1556
|
-
o =
|
|
1557
|
-
const
|
|
1558
|
+
o = M(0);
|
|
1559
|
+
const f = c({
|
|
1558
1560
|
get: () => {
|
|
1559
|
-
var
|
|
1560
|
-
const
|
|
1561
|
-
return (
|
|
1561
|
+
var y, k;
|
|
1562
|
+
const u = (y = l.modelValue) == null ? void 0 : y.value;
|
|
1563
|
+
return (k = l.multiple) != null && k.value ? H(u) ? u : [] : H(u) ? void 0 : u;
|
|
1562
1564
|
},
|
|
1563
|
-
set: (
|
|
1564
|
-
var
|
|
1565
|
-
if ((
|
|
1565
|
+
set: (u) => {
|
|
1566
|
+
var y, k, g;
|
|
1567
|
+
if ((y = l.multiple) != null && y.value && !H(u)) {
|
|
1566
1568
|
console.warn("Attempting to set non-array value in selector w/ multiple=true");
|
|
1567
1569
|
return;
|
|
1568
|
-
} else if (!((
|
|
1570
|
+
} else if (!((k = l.multiple) != null && k.value) && H(u)) {
|
|
1569
1571
|
console.warn("Attempting to set array value in selector w/ multiple=false");
|
|
1570
1572
|
return;
|
|
1571
1573
|
}
|
|
1572
|
-
t("update:modelValue", (
|
|
1574
|
+
t("update:modelValue", (g = l.multiple) != null && g.value ? u || [] : u);
|
|
1573
1575
|
}
|
|
1574
|
-
}),
|
|
1576
|
+
}), i = (u) => H(u);
|
|
1575
1577
|
return {
|
|
1576
|
-
selectedValue:
|
|
1578
|
+
selectedValue: f,
|
|
1577
1579
|
hiddenSelectedItemCount: o,
|
|
1578
|
-
isArrayValue:
|
|
1579
|
-
isMultiItemArrayValue: (
|
|
1580
|
-
firstItem: (
|
|
1580
|
+
isArrayValue: i,
|
|
1581
|
+
isMultiItemArrayValue: (u) => H(u) && u.length > 1,
|
|
1582
|
+
firstItem: (u) => i(u) ? u[0] : u
|
|
1581
1583
|
};
|
|
1582
1584
|
}
|
|
1583
|
-
const
|
|
1584
|
-
|
|
1585
|
-
],
|
|
1585
|
+
const gl = (e) => (tt("data-v-60cf597b"), e = e(), st(), e), vl = /* @__PURE__ */ gl(() => /* @__PURE__ */ d("div", { class: "swoosher relative top-0 bg-blue-500/50" }, null, -1)), bl = [
|
|
1586
|
+
vl
|
|
1587
|
+
], yl = /* @__PURE__ */ j({
|
|
1586
1588
|
__name: "Bar",
|
|
1587
1589
|
props: {
|
|
1588
1590
|
loading: { type: Boolean }
|
|
1589
1591
|
},
|
|
1590
1592
|
setup(e) {
|
|
1591
|
-
return (
|
|
1592
|
-
class:
|
|
1593
|
+
return (l, t) => (a(), p("div", {
|
|
1594
|
+
class: x([
|
|
1593
1595
|
"relative w-full h-1 bg-blue-500/30 text-xs text-foreground-on-primary overflow-hidden rounded-xl",
|
|
1594
1596
|
e.loading ? "opacity-100" : "opacity-0"
|
|
1595
1597
|
])
|
|
1596
|
-
},
|
|
1598
|
+
}, bl, 2));
|
|
1597
1599
|
}
|
|
1598
1600
|
});
|
|
1599
|
-
const
|
|
1601
|
+
const Xe = /* @__PURE__ */ Ue(yl, [["__scopeId", "data-v-60cf597b"]]), xl = { class: "flex items-center justify-between w-full" }, kl = { class: "block truncate grow text-left" }, wl = { class: "pointer-events-none shrink-0 ml-1 flex items-center space-x-2" }, Cl = {
|
|
1602
|
+
key: 1,
|
|
1603
|
+
class: "text-4xl text-danger opacity-50 h-4 w-4 leading-6"
|
|
1604
|
+
}, $l = ["disabled"], Sl = {
|
|
1600
1605
|
key: 0,
|
|
1601
1606
|
class: "flex flex-col mx-1 mb-1"
|
|
1602
|
-
},
|
|
1607
|
+
}, Il = /* @__PURE__ */ d("span", { class: "sr-only label text-foreground" }, "Search", -1), Bl = { class: "relative" }, _l = { class: "pointer-events-none absolute inset-y-0 left-0 flex items-center pl-2" }, Vl = ["placeholder"], Ll = {
|
|
1603
1608
|
key: 0,
|
|
1604
1609
|
class: "px-1"
|
|
1605
|
-
},
|
|
1606
|
-
class: /* @__PURE__ */
|
|
1607
|
-
},
|
|
1610
|
+
}, Pl = { key: 1 }, jl = /* @__PURE__ */ d("div", { class: "text-foreground-2 text-center" }, "Nothing found 🤷♂️", -1), Ol = {
|
|
1611
|
+
class: /* @__PURE__ */ x(["block truncate"])
|
|
1612
|
+
}, Al = ["id"], Ne = /* @__PURE__ */ j({
|
|
1608
1613
|
__name: "Base",
|
|
1609
1614
|
props: {
|
|
1610
1615
|
multiple: {
|
|
@@ -1663,6 +1668,12 @@ const Ue = /* @__PURE__ */ Fe(hn, [["__scopeId", "data-v-60cf597b"]]), mn = { cl
|
|
|
1663
1668
|
type: String,
|
|
1664
1669
|
required: !0
|
|
1665
1670
|
},
|
|
1671
|
+
/**
|
|
1672
|
+
* Optional text that replaces the label as the placeholder when set.
|
|
1673
|
+
*/
|
|
1674
|
+
placeholder: {
|
|
1675
|
+
type: String
|
|
1676
|
+
},
|
|
1666
1677
|
/**
|
|
1667
1678
|
* Whether to show the label visually
|
|
1668
1679
|
*/
|
|
@@ -1749,157 +1760,169 @@ const Ue = /* @__PURE__ */ Fe(hn, [["__scopeId", "data-v-60cf597b"]]), mn = { cl
|
|
|
1749
1760
|
fullyControlValue: {
|
|
1750
1761
|
type: Boolean,
|
|
1751
1762
|
default: !1
|
|
1763
|
+
},
|
|
1764
|
+
/**
|
|
1765
|
+
* Whether to show the red "required" asterisk
|
|
1766
|
+
*/
|
|
1767
|
+
showRequired: {
|
|
1768
|
+
type: Boolean,
|
|
1769
|
+
default: !1
|
|
1752
1770
|
}
|
|
1753
1771
|
},
|
|
1754
1772
|
emits: ["update:modelValue"],
|
|
1755
|
-
setup(e, { expose:
|
|
1756
|
-
const s = e, { value: o, errorMessage:
|
|
1773
|
+
setup(e, { expose: l, emit: t }) {
|
|
1774
|
+
const s = e, { value: o, errorMessage: f } = we(s.name, s.rules, {
|
|
1757
1775
|
validateOnMount: s.validateOnMount,
|
|
1758
1776
|
validateOnValueUpdate: s.validateOnValueUpdate,
|
|
1759
1777
|
initialValue: s.modelValue
|
|
1760
|
-
}),
|
|
1761
|
-
const
|
|
1762
|
-
return
|
|
1763
|
-
}),
|
|
1764
|
-
() =>
|
|
1765
|
-
),
|
|
1766
|
-
() =>
|
|
1767
|
-
), S =
|
|
1778
|
+
}), i = M(null), r = M(""), m = M([]), u = M(!1), y = M(1), k = M(Ce()), g = c(() => n(s.label) || n(s.name)), w = c(() => {
|
|
1779
|
+
const C = f.value;
|
|
1780
|
+
return !C || !n(s.useLabelInErrors) ? C : C.replace("Value", g.value);
|
|
1781
|
+
}), h = c(() => w.value || n(s.help)), P = c(() => !!h.value), b = c(
|
|
1782
|
+
() => P.value ? `${n(s.name)}-${k.value}` : void 0
|
|
1783
|
+
), $ = c(
|
|
1784
|
+
() => f.value ? "text-danger" : "text-foreground-2"
|
|
1785
|
+
), S = c(
|
|
1768
1786
|
() => s.buttonStyle !== "simple" && s.clearable && !s.disabled
|
|
1769
|
-
),
|
|
1770
|
-
const
|
|
1771
|
-
return s.buttonStyle !== "simple" && (
|
|
1772
|
-
}),
|
|
1773
|
-
const
|
|
1774
|
-
return s.buttonStyle !== "simple" &&
|
|
1775
|
-
|
|
1776
|
-
),
|
|
1777
|
-
}),
|
|
1778
|
-
const
|
|
1787
|
+
), F = c(() => {
|
|
1788
|
+
const C = ["relative flex group"];
|
|
1789
|
+
return f.value ? (C.push("hover:shadow rounded-md"), C.push("text-danger-darker focus:border-danger focus:ring-danger"), s.buttonStyle !== "simple" && C.push("outline outline-2 outline-danger")) : s.buttonStyle !== "simple" && (C.push("hover:shadow rounded-md"), C.push("outline outline-2 outline-primary-muted")), s.fixedHeight && C.push("h-8"), C.join(" ");
|
|
1790
|
+
}), v = c(() => {
|
|
1791
|
+
const C = [];
|
|
1792
|
+
return s.buttonStyle !== "simple" && C.push(
|
|
1793
|
+
te.value ? "bg-foundation-disabled text-foreground-disabled" : ""
|
|
1794
|
+
), te.value && C.push("cursor-not-allowed"), C.join(" ");
|
|
1795
|
+
}), D = c(() => {
|
|
1796
|
+
const C = [
|
|
1779
1797
|
"relative z-[1]",
|
|
1780
1798
|
"flex items-center justify-center text-center shrink-0",
|
|
1781
1799
|
"rounded-r-md overflow-hidden transition-all",
|
|
1782
1800
|
"text-foreground",
|
|
1783
|
-
|
|
1801
|
+
Ie.value ? `w-6 ${v.value}` : "w-0"
|
|
1784
1802
|
];
|
|
1785
|
-
return
|
|
1803
|
+
return te.value || (C.push(
|
|
1786
1804
|
"hover:bg-primary hover:text-foreground-on-primary dark:text-foreground-on-primary"
|
|
1787
|
-
), s.buttonStyle === "tinted" ?
|
|
1788
|
-
}),
|
|
1789
|
-
const
|
|
1805
|
+
), s.buttonStyle === "tinted" ? C.push("bg-outline-3") : C.push("bg-primary-muted")), C.join(" ");
|
|
1806
|
+
}), W = c(() => {
|
|
1807
|
+
const C = [
|
|
1790
1808
|
"relative z-[2]",
|
|
1791
1809
|
"normal rounded-md cursor-pointer transition truncate flex-1",
|
|
1792
1810
|
"flex items-center",
|
|
1793
|
-
|
|
1811
|
+
v.value
|
|
1794
1812
|
];
|
|
1795
|
-
return s.buttonStyle !== "simple" && (
|
|
1796
|
-
}),
|
|
1813
|
+
return s.buttonStyle !== "simple" && (C.push("py-2 px-3"), te.value || (s.buttonStyle === "tinted" ? C.push("bg-foundation-page text-foreground") : C.push("bg-foundation text-foreground"))), S.value && Ie.value && C.push("rounded-r-none"), C.join(" ");
|
|
1814
|
+
}), E = c(
|
|
1797
1815
|
() => !!(s.search && (s.filterPredicate || s.getSearchResults))
|
|
1798
|
-
), X =
|
|
1816
|
+
), X = c(() => E.value && s.getSearchResults), te = c(
|
|
1799
1817
|
() => s.disabled || !s.items.length && !X.value
|
|
1800
|
-
),
|
|
1818
|
+
), q = c({
|
|
1801
1819
|
get: () => {
|
|
1802
|
-
const
|
|
1803
|
-
return s.multiple ?
|
|
1820
|
+
const C = o.value;
|
|
1821
|
+
return s.multiple ? H(C) ? C : [] : H(C) ? void 0 : C;
|
|
1804
1822
|
},
|
|
1805
|
-
set: (
|
|
1806
|
-
if (s.multiple && !
|
|
1823
|
+
set: (C) => {
|
|
1824
|
+
if (s.multiple && !H(C)) {
|
|
1807
1825
|
console.warn("Attempting to set non-array value in selector w/ multiple=true");
|
|
1808
1826
|
return;
|
|
1809
|
-
} else if (!s.multiple &&
|
|
1827
|
+
} else if (!s.multiple && H(C)) {
|
|
1810
1828
|
console.warn("Attempting to set array value in selector w/ multiple=false");
|
|
1811
1829
|
return;
|
|
1812
1830
|
}
|
|
1813
|
-
let
|
|
1831
|
+
let R;
|
|
1814
1832
|
if (s.multiple)
|
|
1815
|
-
|
|
1833
|
+
R = C || [];
|
|
1816
1834
|
else {
|
|
1817
|
-
const
|
|
1818
|
-
|
|
1835
|
+
const O = o.value;
|
|
1836
|
+
R = s.allowUnset && O && C && pe(O) === pe(C) ? void 0 : C;
|
|
1819
1837
|
}
|
|
1820
|
-
s.fullyControlValue ? t("update:modelValue",
|
|
1838
|
+
s.fullyControlValue ? t("update:modelValue", R) : o.value = R, y.value += 1;
|
|
1821
1839
|
}
|
|
1822
|
-
}),
|
|
1823
|
-
s.multiple ?
|
|
1824
|
-
},
|
|
1825
|
-
const
|
|
1826
|
-
return !
|
|
1827
|
-
(
|
|
1828
|
-
var
|
|
1829
|
-
return ((
|
|
1840
|
+
}), Ie = c(() => s.multiple ? q.value.length !== 0 : !!q.value), Je = () => {
|
|
1841
|
+
s.multiple ? q.value = [] : q.value = void 0;
|
|
1842
|
+
}, Qe = c(() => {
|
|
1843
|
+
const C = r.value;
|
|
1844
|
+
return !E.value || !(C != null && C.length) ? m.value : s.filterPredicate ? m.value.filter(
|
|
1845
|
+
(R) => {
|
|
1846
|
+
var O;
|
|
1847
|
+
return ((O = s.filterPredicate) == null ? void 0 : O.call(s, R, C)) || !1;
|
|
1830
1848
|
}
|
|
1831
|
-
) :
|
|
1832
|
-
}),
|
|
1849
|
+
) : m.value;
|
|
1850
|
+
}), Be = (C) => JSON.stringify(C), pe = (C) => s.by ? C[s.by] : C, he = async () => {
|
|
1833
1851
|
if (!(!X.value || !s.getSearchResults)) {
|
|
1834
|
-
|
|
1852
|
+
u.value = !0;
|
|
1835
1853
|
try {
|
|
1836
|
-
|
|
1854
|
+
m.value = await s.getSearchResults(r.value);
|
|
1837
1855
|
} finally {
|
|
1838
|
-
|
|
1856
|
+
u.value = !1;
|
|
1839
1857
|
}
|
|
1840
1858
|
}
|
|
1841
|
-
},
|
|
1842
|
-
const { active:
|
|
1859
|
+
}, Ye = Re(he, 1e3), Ze = (C) => {
|
|
1860
|
+
const { active: R, disabled: O } = C || {}, { hideCheckmarks: K } = s, N = [
|
|
1843
1861
|
"relative transition cursor-pointer select-none py-1.5 pl-3",
|
|
1844
1862
|
K ? "" : "pr-9"
|
|
1845
1863
|
];
|
|
1846
|
-
return
|
|
1864
|
+
return O ? N.push("opacity-50 cursor-not-allowed") : N.push(R ? "text-primary" : "text-foreground"), N.join(" ");
|
|
1847
1865
|
};
|
|
1848
|
-
return
|
|
1866
|
+
return oe(
|
|
1849
1867
|
() => s.items,
|
|
1850
|
-
(
|
|
1851
|
-
|
|
1868
|
+
(C) => {
|
|
1869
|
+
m.value = C.slice();
|
|
1852
1870
|
},
|
|
1853
1871
|
{ immediate: !0 }
|
|
1854
|
-
),
|
|
1855
|
-
X.value &&
|
|
1856
|
-
}),
|
|
1857
|
-
X.value && !s.items.length &&
|
|
1858
|
-
}),
|
|
1859
|
-
(a(), L(
|
|
1860
|
-
key:
|
|
1861
|
-
modelValue:
|
|
1862
|
-
"onUpdate:modelValue":
|
|
1872
|
+
), oe(r, () => {
|
|
1873
|
+
X.value && Ye();
|
|
1874
|
+
}), Z(() => {
|
|
1875
|
+
X.value && !s.items.length && he();
|
|
1876
|
+
}), l({ triggerSearch: he }), (C, R) => (a(), p("div", null, [
|
|
1877
|
+
(a(), L(n(Pt), {
|
|
1878
|
+
key: y.value,
|
|
1879
|
+
modelValue: q.value,
|
|
1880
|
+
"onUpdate:modelValue": R[4] || (R[4] = (O) => q.value = O),
|
|
1863
1881
|
name: e.name,
|
|
1864
1882
|
multiple: e.multiple,
|
|
1865
1883
|
by: e.by,
|
|
1866
|
-
disabled:
|
|
1884
|
+
disabled: te.value,
|
|
1867
1885
|
as: "div"
|
|
1868
1886
|
}, {
|
|
1869
1887
|
default: _(() => [
|
|
1870
|
-
|
|
1871
|
-
class:
|
|
1888
|
+
V(n(jt), {
|
|
1889
|
+
class: x(["block label text-foreground-2 mb-2", { "sr-only": !e.showLabel }])
|
|
1872
1890
|
}, {
|
|
1873
1891
|
default: _(() => [
|
|
1874
|
-
|
|
1892
|
+
A(B(e.label), 1)
|
|
1875
1893
|
]),
|
|
1876
1894
|
_: 1
|
|
1877
1895
|
}, 8, ["class"]),
|
|
1878
|
-
|
|
1879
|
-
class:
|
|
1896
|
+
d("div", {
|
|
1897
|
+
class: x(F.value)
|
|
1880
1898
|
}, [
|
|
1881
|
-
|
|
1882
|
-
class:
|
|
1899
|
+
V(n(Ot), {
|
|
1900
|
+
class: x(W.value)
|
|
1883
1901
|
}, {
|
|
1884
|
-
default: _(({ open:
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
!
|
|
1888
|
-
|
|
1889
|
-
]) : z(
|
|
1902
|
+
default: _(({ open: O }) => [
|
|
1903
|
+
d("div", xl, [
|
|
1904
|
+
d("div", kl, [
|
|
1905
|
+
!q.value || n(H)(q.value) && !q.value.length ? z(C.$slots, "nothing-selected", { key: 0 }, () => [
|
|
1906
|
+
A(B(e.placeholder ? e.placeholder : e.label), 1)
|
|
1907
|
+
]) : z(C.$slots, "something-selected", {
|
|
1890
1908
|
key: 1,
|
|
1891
|
-
value:
|
|
1909
|
+
value: q.value
|
|
1892
1910
|
}, () => [
|
|
1893
|
-
|
|
1911
|
+
A(B(Be(q.value)), 1)
|
|
1894
1912
|
])
|
|
1895
1913
|
]),
|
|
1896
|
-
|
|
1897
|
-
|
|
1914
|
+
d("div", wl, [
|
|
1915
|
+
w.value ? (a(), L(n(rt), {
|
|
1898
1916
|
key: 0,
|
|
1917
|
+
class: "h-4 w-4 text-danger",
|
|
1918
|
+
"aria-hidden": "true"
|
|
1919
|
+
})) : e.showRequired ? (a(), p("div", Cl, " * ")) : I("", !0),
|
|
1920
|
+
O ? (a(), L(n(De), {
|
|
1921
|
+
key: 2,
|
|
1899
1922
|
class: "h-4 w-4 text-foreground",
|
|
1900
1923
|
"aria-hidden": "true"
|
|
1901
|
-
})) : (a(), L(
|
|
1902
|
-
key:
|
|
1924
|
+
})) : (a(), L(n(it), {
|
|
1925
|
+
key: 3,
|
|
1903
1926
|
class: "h-4 w-4 text-foreground",
|
|
1904
1927
|
"aria-hidden": "true"
|
|
1905
1928
|
}))
|
|
@@ -1908,96 +1931,96 @@ const Ue = /* @__PURE__ */ Fe(hn, [["__scopeId", "data-v-60cf597b"]]), mn = { cl
|
|
|
1908
1931
|
]),
|
|
1909
1932
|
_: 3
|
|
1910
1933
|
}, 8, ["class"]),
|
|
1911
|
-
S.value ?
|
|
1934
|
+
S.value ? ae((a(), p("button", {
|
|
1912
1935
|
key: 0,
|
|
1913
|
-
class:
|
|
1936
|
+
class: x(D.value),
|
|
1914
1937
|
disabled: e.disabled,
|
|
1915
|
-
onClick:
|
|
1938
|
+
onClick: R[0] || (R[0] = (O) => Je())
|
|
1916
1939
|
}, [
|
|
1917
|
-
|
|
1918
|
-
], 10,
|
|
1919
|
-
[
|
|
1940
|
+
V(n(xe), { class: "w-3 h-3" })
|
|
1941
|
+
], 10, $l)), [
|
|
1942
|
+
[n(Ee), "Clear"]
|
|
1920
1943
|
]) : I("", !0),
|
|
1921
|
-
|
|
1944
|
+
V(be, {
|
|
1922
1945
|
"leave-active-class": "transition ease-in duration-100",
|
|
1923
1946
|
"leave-from-class": "opacity-100",
|
|
1924
1947
|
"leave-to-class": "opacity-0"
|
|
1925
1948
|
}, {
|
|
1926
1949
|
default: _(() => [
|
|
1927
|
-
|
|
1950
|
+
V(n(At), {
|
|
1928
1951
|
class: "absolute top-[100%] z-10 mt-1 w-full rounded-md bg-foundation-2 py-1 label label--light outline outline-2 outline-primary-muted focus:outline-none shadow",
|
|
1929
|
-
onFocus:
|
|
1952
|
+
onFocus: R[3] || (R[3] = (O) => {
|
|
1930
1953
|
var K;
|
|
1931
|
-
return (K =
|
|
1954
|
+
return (K = i.value) == null ? void 0 : K.focus();
|
|
1932
1955
|
})
|
|
1933
1956
|
}, {
|
|
1934
1957
|
default: _(() => [
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1958
|
+
E.value ? (a(), p("label", Sl, [
|
|
1959
|
+
Il,
|
|
1960
|
+
d("div", Bl, [
|
|
1961
|
+
d("div", _l, [
|
|
1962
|
+
V(n(ut), { class: "h-5 w-5 text-foreground" })
|
|
1940
1963
|
]),
|
|
1941
|
-
|
|
1964
|
+
ae(d("input", {
|
|
1942
1965
|
ref_key: "searchInput",
|
|
1943
|
-
ref:
|
|
1944
|
-
"onUpdate:modelValue":
|
|
1966
|
+
ref: i,
|
|
1967
|
+
"onUpdate:modelValue": R[1] || (R[1] = (O) => r.value = O),
|
|
1945
1968
|
type: "text",
|
|
1946
1969
|
class: "pl-9 w-full border-0 bg-foundation-page rounded placeholder:font-normal normal placeholder:text-foreground-2 focus:outline-none focus:ring-1 focus:border-outline-1 focus:ring-outline-1",
|
|
1947
1970
|
placeholder: e.searchPlaceholder,
|
|
1948
|
-
onKeydown:
|
|
1971
|
+
onKeydown: R[2] || (R[2] = ue(() => {
|
|
1949
1972
|
}, ["stop"]))
|
|
1950
|
-
}, null, 40,
|
|
1951
|
-
[
|
|
1973
|
+
}, null, 40, Vl), [
|
|
1974
|
+
[Me, r.value]
|
|
1952
1975
|
])
|
|
1953
1976
|
])
|
|
1954
1977
|
])) : I("", !0),
|
|
1955
|
-
|
|
1956
|
-
class:
|
|
1978
|
+
d("div", {
|
|
1979
|
+
class: x(["overflow-auto simple-scrollbar", [E.value ? "max-h-52" : "max-h-60"]])
|
|
1957
1980
|
}, [
|
|
1958
|
-
X.value &&
|
|
1959
|
-
|
|
1960
|
-
])) : X.value && !
|
|
1961
|
-
z(
|
|
1962
|
-
|
|
1981
|
+
X.value && u.value ? (a(), p("div", Ll, [
|
|
1982
|
+
V(Xe, { loading: !0 })
|
|
1983
|
+
])) : X.value && !m.value.length ? (a(), p("div", Pl, [
|
|
1984
|
+
z(C.$slots, "nothing-found", {}, () => [
|
|
1985
|
+
jl
|
|
1963
1986
|
])
|
|
1964
1987
|
])) : I("", !0),
|
|
1965
|
-
!X.value || !
|
|
1988
|
+
!X.value || !u.value ? (a(!0), p(T, { key: 2 }, U(Qe.value, (O) => {
|
|
1966
1989
|
var K;
|
|
1967
|
-
return a(), L(
|
|
1968
|
-
key:
|
|
1969
|
-
value:
|
|
1970
|
-
disabled: ((K = e.disabledItemPredicate) == null ? void 0 : K.call(e,
|
|
1990
|
+
return a(), L(n(Mt), {
|
|
1991
|
+
key: pe(O),
|
|
1992
|
+
value: O,
|
|
1993
|
+
disabled: ((K = e.disabledItemPredicate) == null ? void 0 : K.call(e, O)) || !1
|
|
1971
1994
|
}, {
|
|
1972
|
-
default: _(({ active: N, selected:
|
|
1973
|
-
var
|
|
1995
|
+
default: _(({ active: N, selected: _e }) => {
|
|
1996
|
+
var Ve, Le;
|
|
1974
1997
|
return [
|
|
1975
|
-
|
|
1976
|
-
class:
|
|
1977
|
-
|
|
1998
|
+
d("li", {
|
|
1999
|
+
class: x(
|
|
2000
|
+
Ze({
|
|
1978
2001
|
active: N,
|
|
1979
|
-
disabled: ((
|
|
2002
|
+
disabled: ((Ve = e.disabledItemPredicate) == null ? void 0 : Ve.call(e, O)) || !1
|
|
1980
2003
|
})
|
|
1981
2004
|
)
|
|
1982
2005
|
}, [
|
|
1983
|
-
|
|
1984
|
-
z(
|
|
1985
|
-
item:
|
|
2006
|
+
d("span", Ol, [
|
|
2007
|
+
z(C.$slots, "option", {
|
|
2008
|
+
item: O,
|
|
1986
2009
|
active: N,
|
|
1987
|
-
selected:
|
|
1988
|
-
disabled: ((
|
|
2010
|
+
selected: _e,
|
|
2011
|
+
disabled: ((Le = e.disabledItemPredicate) == null ? void 0 : Le.call(e, O)) || !1
|
|
1989
2012
|
}, () => [
|
|
1990
|
-
|
|
2013
|
+
A(B(Be(O)), 1)
|
|
1991
2014
|
])
|
|
1992
2015
|
]),
|
|
1993
|
-
!e.hideCheckmarks &&
|
|
2016
|
+
!e.hideCheckmarks && _e ? (a(), p("span", {
|
|
1994
2017
|
key: 0,
|
|
1995
|
-
class:
|
|
2018
|
+
class: x([
|
|
1996
2019
|
N ? "text-primary" : "text-foreground",
|
|
1997
2020
|
"absolute inset-y-0 right-0 flex items-center pr-4"
|
|
1998
2021
|
])
|
|
1999
2022
|
}, [
|
|
2000
|
-
|
|
2023
|
+
V(n(Te), {
|
|
2001
2024
|
class: "h-5 w-5",
|
|
2002
2025
|
"aria-hidden": "true"
|
|
2003
2026
|
})
|
|
@@ -2019,37 +2042,37 @@ const Ue = /* @__PURE__ */ Fe(hn, [["__scopeId", "data-v-60cf597b"]]), mn = { cl
|
|
|
2019
2042
|
]),
|
|
2020
2043
|
_: 3
|
|
2021
2044
|
}, 8, ["modelValue", "name", "multiple", "by", "disabled"])),
|
|
2022
|
-
|
|
2045
|
+
b.value ? (a(), p("p", {
|
|
2023
2046
|
key: 0,
|
|
2024
|
-
id:
|
|
2025
|
-
class:
|
|
2026
|
-
}, B(
|
|
2047
|
+
id: b.value,
|
|
2048
|
+
class: x(["mt-2 text-sm", $.value])
|
|
2049
|
+
}, B(h.value), 11, Al)) : I("", !0)
|
|
2027
2050
|
]));
|
|
2028
2051
|
}
|
|
2029
|
-
}),
|
|
2052
|
+
}), Ml = /* @__PURE__ */ j({
|
|
2030
2053
|
__name: "SourceAppBadge",
|
|
2031
2054
|
props: {
|
|
2032
2055
|
sourceApp: null
|
|
2033
2056
|
},
|
|
2034
2057
|
setup(e) {
|
|
2035
|
-
return (
|
|
2058
|
+
return (l, t) => (a(), L(We, {
|
|
2036
2059
|
"color-classes": "text-foreground-on-primary",
|
|
2037
2060
|
rounded: "",
|
|
2038
|
-
style:
|
|
2061
|
+
style: re({ backgroundColor: e.sourceApp.bgColor })
|
|
2039
2062
|
}, {
|
|
2040
2063
|
default: _(() => [
|
|
2041
|
-
|
|
2064
|
+
A(B(e.sourceApp.short), 1)
|
|
2042
2065
|
]),
|
|
2043
2066
|
_: 1
|
|
2044
2067
|
}, 8, ["style"]));
|
|
2045
2068
|
}
|
|
2046
|
-
}),
|
|
2069
|
+
}), zl = {
|
|
2047
2070
|
key: 0,
|
|
2048
2071
|
class: "text-foreground-2 normal"
|
|
2049
|
-
},
|
|
2072
|
+
}, Rl = {
|
|
2050
2073
|
key: 1,
|
|
2051
2074
|
class: "flex items-center"
|
|
2052
|
-
},
|
|
2075
|
+
}, Dl = { class: "truncate" }, Tl = { class: "flex items-center" }, Fl = { class: "truncate" }, Un = /* @__PURE__ */ j({
|
|
2053
2076
|
__name: "SourceApps",
|
|
2054
2077
|
props: {
|
|
2055
2078
|
/**
|
|
@@ -2108,126 +2131,209 @@ const Ue = /* @__PURE__ */ Fe(hn, [["__scopeId", "data-v-60cf597b"]]), mn = { cl
|
|
|
2108
2131
|
}
|
|
2109
2132
|
},
|
|
2110
2133
|
emits: ["update:modelValue"],
|
|
2111
|
-
setup(e, { emit:
|
|
2112
|
-
const t = e, s =
|
|
2113
|
-
props:
|
|
2114
|
-
emit:
|
|
2134
|
+
setup(e, { emit: l }) {
|
|
2135
|
+
const t = e, s = M(null), o = M(null), { selectedValue: f, hiddenSelectedItemCount: i, isMultiItemArrayValue: r, firstItem: m } = Ke({
|
|
2136
|
+
props: Y(t),
|
|
2137
|
+
emit: l,
|
|
2115
2138
|
dynamicVisibility: { elementToWatchForChanges: s, itemContainer: o }
|
|
2116
|
-
}),
|
|
2117
|
-
return (
|
|
2118
|
-
modelValue:
|
|
2119
|
-
"onUpdate:modelValue":
|
|
2139
|
+
}), u = (y, k) => y.name.toLocaleLowerCase().includes(k.toLocaleLowerCase());
|
|
2140
|
+
return (y, k) => (a(), L(Ne, {
|
|
2141
|
+
modelValue: n(f),
|
|
2142
|
+
"onUpdate:modelValue": k[0] || (k[0] = (g) => de(f) ? f.value = g : null),
|
|
2120
2143
|
multiple: e.multiple,
|
|
2121
|
-
items: e.items ??
|
|
2144
|
+
items: e.items ?? n(St),
|
|
2122
2145
|
search: e.search,
|
|
2123
2146
|
"search-placeholder": e.searchPlaceholder,
|
|
2124
2147
|
label: e.label,
|
|
2125
2148
|
"show-label": e.showLabel,
|
|
2126
2149
|
name: e.name || "sourceApps",
|
|
2127
|
-
"filter-predicate":
|
|
2150
|
+
"filter-predicate": u,
|
|
2128
2151
|
by: "name"
|
|
2129
2152
|
}, {
|
|
2130
2153
|
"nothing-selected": _(() => [
|
|
2131
|
-
e.selectorPlaceholder ? (a(),
|
|
2132
|
-
|
|
2133
|
-
], 64)) : (a(),
|
|
2134
|
-
|
|
2154
|
+
e.selectorPlaceholder ? (a(), p(T, { key: 0 }, [
|
|
2155
|
+
A(B(e.selectorPlaceholder), 1)
|
|
2156
|
+
], 64)) : (a(), p(T, { key: 1 }, [
|
|
2157
|
+
A(B(e.multiple ? "Select apps" : "Select an app"), 1)
|
|
2135
2158
|
], 64))
|
|
2136
2159
|
]),
|
|
2137
|
-
"something-selected": _(({ value:
|
|
2138
|
-
|
|
2160
|
+
"something-selected": _(({ value: g }) => [
|
|
2161
|
+
n(r)(g) ? (a(), p("div", {
|
|
2139
2162
|
key: 0,
|
|
2140
2163
|
ref_key: "elementToWatchForChanges",
|
|
2141
2164
|
ref: s,
|
|
2142
2165
|
class: "flex items-center space-x-0.5 h-5"
|
|
2143
2166
|
}, [
|
|
2144
|
-
|
|
2167
|
+
d("div", {
|
|
2145
2168
|
ref_key: "itemContainer",
|
|
2146
2169
|
ref: o,
|
|
2147
2170
|
class: "flex flex-wrap overflow-hidden space-x-0.5 h-5"
|
|
2148
2171
|
}, [
|
|
2149
|
-
(a(!0),
|
|
2150
|
-
key:
|
|
2151
|
-
"source-app":
|
|
2172
|
+
(a(!0), p(T, null, U(g, (w) => (a(), L(Ml, {
|
|
2173
|
+
key: w.name,
|
|
2174
|
+
"source-app": w
|
|
2152
2175
|
}, null, 8, ["source-app"]))), 128))
|
|
2153
2176
|
], 512),
|
|
2154
|
-
|
|
2155
|
-
], 512)) : (a(),
|
|
2156
|
-
|
|
2177
|
+
n(i) > 0 ? (a(), p("div", zl, " +" + B(n(i)), 1)) : I("", !0)
|
|
2178
|
+
], 512)) : (a(), p("div", Rl, [
|
|
2179
|
+
d("div", {
|
|
2157
2180
|
class: "h-2 w-2 rounded-full mr-2",
|
|
2158
|
-
style:
|
|
2181
|
+
style: re({ backgroundColor: n(m)(g).bgColor })
|
|
2159
2182
|
}, null, 4),
|
|
2160
|
-
|
|
2183
|
+
d("span", Dl, B(n(m)(g).name), 1)
|
|
2161
2184
|
]))
|
|
2162
2185
|
]),
|
|
2163
|
-
option: _(({ item:
|
|
2164
|
-
|
|
2165
|
-
|
|
2186
|
+
option: _(({ item: g }) => [
|
|
2187
|
+
d("div", Tl, [
|
|
2188
|
+
d("div", {
|
|
2166
2189
|
class: "h-2 w-2 rounded-full mr-2",
|
|
2167
|
-
style:
|
|
2190
|
+
style: re({ backgroundColor: g.bgColor })
|
|
2168
2191
|
}, null, 4),
|
|
2169
|
-
|
|
2192
|
+
d("span", Fl, B(g.name), 1)
|
|
2170
2193
|
])
|
|
2171
2194
|
]),
|
|
2172
2195
|
_: 1
|
|
2173
2196
|
}, 8, ["modelValue", "multiple", "items", "search", "search-placeholder", "label", "show-label", "name"]));
|
|
2174
2197
|
}
|
|
2198
|
+
}), El = { class: "flex flex-wrap gap-1.5 text-xs" }, Wn = /* @__PURE__ */ j({
|
|
2199
|
+
__name: "Badges",
|
|
2200
|
+
props: {
|
|
2201
|
+
items: null,
|
|
2202
|
+
label: null,
|
|
2203
|
+
name: null,
|
|
2204
|
+
help: null,
|
|
2205
|
+
modelValue: null,
|
|
2206
|
+
multiple: { type: Boolean },
|
|
2207
|
+
rules: null,
|
|
2208
|
+
by: null
|
|
2209
|
+
},
|
|
2210
|
+
emits: ["update:modelValue"],
|
|
2211
|
+
setup(e, { emit: l }) {
|
|
2212
|
+
const t = e, { selectedValue: s, isArrayValue: o } = Ke({
|
|
2213
|
+
props: Y(t),
|
|
2214
|
+
emit: l
|
|
2215
|
+
}), f = (i) => {
|
|
2216
|
+
o(s.value) ? s.value = s.value.filter((r) => r.id !== i.id) : s.value = void 0;
|
|
2217
|
+
};
|
|
2218
|
+
return (i, r) => (a(), L(Ne, {
|
|
2219
|
+
modelValue: n(s),
|
|
2220
|
+
"onUpdate:modelValue": r[0] || (r[0] = (m) => de(s) ? s.value = m : null),
|
|
2221
|
+
multiple: e.multiple,
|
|
2222
|
+
items: e.items,
|
|
2223
|
+
label: e.label,
|
|
2224
|
+
name: e.name,
|
|
2225
|
+
help: e.help,
|
|
2226
|
+
rules: e.rules,
|
|
2227
|
+
by: e.by
|
|
2228
|
+
}, {
|
|
2229
|
+
"something-selected": _(({ value: m }) => [
|
|
2230
|
+
d("ul", El, [
|
|
2231
|
+
(a(!0), p(T, null, U(n(o)(m) ? m : [m], (u) => (a(), p("li", {
|
|
2232
|
+
key: u[e.by]
|
|
2233
|
+
}, [
|
|
2234
|
+
V(We, {
|
|
2235
|
+
size: "lg",
|
|
2236
|
+
"clickable-icon": !0,
|
|
2237
|
+
"icon-left": n(xe),
|
|
2238
|
+
onClickIcon: ue((y) => f(u), ["stop"])
|
|
2239
|
+
}, {
|
|
2240
|
+
default: _(() => [
|
|
2241
|
+
A(B(u.text), 1)
|
|
2242
|
+
]),
|
|
2243
|
+
_: 2
|
|
2244
|
+
}, 1032, ["icon-left", "onClickIcon"])
|
|
2245
|
+
]))), 128))
|
|
2246
|
+
])
|
|
2247
|
+
]),
|
|
2248
|
+
option: _(({ item: m }) => [
|
|
2249
|
+
A(B(m.text), 1)
|
|
2250
|
+
]),
|
|
2251
|
+
_: 1
|
|
2252
|
+
}, 8, ["modelValue", "multiple", "items", "label", "name", "help", "rules", "by"]));
|
|
2253
|
+
}
|
|
2254
|
+
}), Ul = { class: "flex items-center" }, Wl = { class: "absolute inset-0 flex items-center gap-2 px-1 text-white" }, qn = /* @__PURE__ */ j({
|
|
2255
|
+
__name: "Switch",
|
|
2256
|
+
props: {
|
|
2257
|
+
modelValue: { type: Boolean }
|
|
2258
|
+
},
|
|
2259
|
+
emits: ["update:modelValue"],
|
|
2260
|
+
setup(e) {
|
|
2261
|
+
const l = lt(e, "modelValue");
|
|
2262
|
+
return (t, s) => (a(), p("div", Ul, [
|
|
2263
|
+
V(n(zt), {
|
|
2264
|
+
modelValue: l.value,
|
|
2265
|
+
"onUpdate:modelValue": s[0] || (s[0] = (o) => l.value = o),
|
|
2266
|
+
class: x(["relative inline-flex flex-shrink-0 h-6 w-11 border-2 border-transparent rounded-full cursor-pointer transition-colors ease-in-out duration-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary", { "bg-primary": l.value, "bg-primary-muted": !l.value }])
|
|
2267
|
+
}, {
|
|
2268
|
+
default: _(() => [
|
|
2269
|
+
d("div", Wl, [
|
|
2270
|
+
V(n(Te), { class: "h-5 w-5 drop-shadow-md" }),
|
|
2271
|
+
V(n(xe), { class: "h-5 w-5 drop-shadow-md" })
|
|
2272
|
+
]),
|
|
2273
|
+
d("span", {
|
|
2274
|
+
class: x(["scale-95 pointer-events-none inline-block h-5 w-5 rounded-full bg-white shadow transform ring-0 transition ease-in-out duration-200", { "translate-x-5": l.value, "translate-x-0": !l.value }])
|
|
2275
|
+
}, null, 2)
|
|
2276
|
+
]),
|
|
2277
|
+
_: 1
|
|
2278
|
+
}, 8, ["modelValue", "class"])
|
|
2279
|
+
]));
|
|
2280
|
+
}
|
|
2175
2281
|
});
|
|
2176
|
-
var
|
|
2177
|
-
const
|
|
2282
|
+
var ne = /* @__PURE__ */ ((e) => (e.CtrlOrCmd = "cmd-or-ctrl", e.AltOrOpt = "alt-or-opt", e.Shift = "shift", e))(ne || {});
|
|
2283
|
+
const ge = It(), ql = {
|
|
2178
2284
|
[
|
|
2179
2285
|
"cmd-or-ctrl"
|
|
2180
2286
|
/* CtrlOrCmd */
|
|
2181
|
-
]:
|
|
2287
|
+
]: ge === me.Mac ? "Cmd" : "Ctrl",
|
|
2182
2288
|
[
|
|
2183
2289
|
"alt-or-opt"
|
|
2184
2290
|
/* AltOrOpt */
|
|
2185
|
-
]:
|
|
2291
|
+
]: ge === me.Mac ? "Opt" : "Alt",
|
|
2186
2292
|
shift: "Shift"
|
|
2187
2293
|
};
|
|
2188
|
-
function
|
|
2189
|
-
const
|
|
2190
|
-
return e.map((t) =>
|
|
2294
|
+
function Hn(e) {
|
|
2295
|
+
const l = (t) => Object.values(ne).includes(t);
|
|
2296
|
+
return e.map((t) => l(t) ? ql[t] : t).join("+");
|
|
2191
2297
|
}
|
|
2192
|
-
function
|
|
2193
|
-
|
|
2194
|
-
|
|
2298
|
+
function Gn(e, ...l) {
|
|
2299
|
+
Vt(
|
|
2300
|
+
l[0],
|
|
2195
2301
|
(t) => {
|
|
2196
|
-
const s = t.getModifierState("Alt"), o =
|
|
2197
|
-
for (const
|
|
2198
|
-
switch (
|
|
2199
|
-
case
|
|
2302
|
+
const s = t.getModifierState("Alt"), o = ge === me.Mac ? t.getModifierState("Meta") : t.getModifierState("Control"), f = t.getModifierState("Shift");
|
|
2303
|
+
for (const i of e)
|
|
2304
|
+
switch (i) {
|
|
2305
|
+
case ne.CtrlOrCmd:
|
|
2200
2306
|
if (!o)
|
|
2201
2307
|
return;
|
|
2202
2308
|
break;
|
|
2203
|
-
case
|
|
2309
|
+
case ne.AltOrOpt:
|
|
2204
2310
|
if (!s)
|
|
2205
2311
|
return;
|
|
2206
2312
|
break;
|
|
2207
|
-
case
|
|
2208
|
-
if (!
|
|
2313
|
+
case ne.Shift:
|
|
2314
|
+
if (!f)
|
|
2209
2315
|
return;
|
|
2210
2316
|
break;
|
|
2211
2317
|
}
|
|
2212
|
-
|
|
2318
|
+
l[1](t);
|
|
2213
2319
|
},
|
|
2214
|
-
|
|
2320
|
+
l[2]
|
|
2215
2321
|
);
|
|
2216
2322
|
}
|
|
2217
|
-
function
|
|
2218
|
-
const
|
|
2219
|
-
get: () => !!
|
|
2220
|
-
set: (s) =>
|
|
2323
|
+
function Kn(e) {
|
|
2324
|
+
const l = (e == null ? void 0 : e.model) || M(), t = c({
|
|
2325
|
+
get: () => !!l.value,
|
|
2326
|
+
set: (s) => l.value = s ? !0 : void 0
|
|
2221
2327
|
});
|
|
2222
|
-
return { model:
|
|
2328
|
+
return { model: l, isChecked: t };
|
|
2223
2329
|
}
|
|
2224
|
-
const
|
|
2330
|
+
const Hl = /* @__PURE__ */ d("div", { class: "fixed inset-0 bg-neutral-100/70 dark:bg-neutral-900/70 transition-opacity" }, null, -1), Gl = { class: "fixed inset-0 z-10 overflow-y-auto" }, Kl = { class: "flex min-h-full justify-center p-4 text-center items-center sm:p-0" }, Xl = {
|
|
2225
2331
|
key: 0,
|
|
2226
2332
|
class: "flex items-center justify-center shadow p-4 relative z-10 bg-foundation rounded-t-lg"
|
|
2227
|
-
},
|
|
2333
|
+
}, Nl = { class: "text-2xl font-bold" }, Jl = { class: "p-4 sm:p-6" }, Ql = {
|
|
2228
2334
|
key: 2,
|
|
2229
2335
|
class: "flex p-4 sm:px-6 sm:py-5 border-t gap-2 border-outline-3"
|
|
2230
|
-
},
|
|
2336
|
+
}, Xn = /* @__PURE__ */ j({
|
|
2231
2337
|
__name: "Dialog",
|
|
2232
2338
|
props: {
|
|
2233
2339
|
open: { type: Boolean },
|
|
@@ -2239,11 +2345,11 @@ const Dn = /* @__PURE__ */ i("div", { class: "fixed inset-0 bg-neutral-100/70 da
|
|
|
2239
2345
|
onSubmit: { type: Function }
|
|
2240
2346
|
},
|
|
2241
2347
|
emits: ["update:open", "fully-closed"],
|
|
2242
|
-
setup(e, { emit:
|
|
2243
|
-
const t = e, s =
|
|
2348
|
+
setup(e, { emit: l }) {
|
|
2349
|
+
const t = e, s = ye(), o = c(() => !!t.onSubmit), f = c(() => t.buttons || s.buttons), i = c({
|
|
2244
2350
|
get: () => t.open,
|
|
2245
|
-
set: (
|
|
2246
|
-
}),
|
|
2351
|
+
set: (y) => l("update:open", y)
|
|
2352
|
+
}), r = c(() => {
|
|
2247
2353
|
switch (t.maxWidth) {
|
|
2248
2354
|
case "sm":
|
|
2249
2355
|
return 0;
|
|
@@ -2256,24 +2362,24 @@ const Dn = /* @__PURE__ */ i("div", { class: "fixed inset-0 bg-neutral-100/70 da
|
|
|
2256
2362
|
default:
|
|
2257
2363
|
return 1e4;
|
|
2258
2364
|
}
|
|
2259
|
-
}),
|
|
2260
|
-
const
|
|
2261
|
-
return !t.title && !
|
|
2262
|
-
}),
|
|
2263
|
-
t.preventCloseOnClickOutside || (
|
|
2365
|
+
}), m = c(() => {
|
|
2366
|
+
const y = ["w-full", "sm:my-8 sm:w-full sm:max-w-xl"];
|
|
2367
|
+
return !t.title && !f.value && y.push("px-4 pt-4 pb-4", "sm:p-6"), r.value >= 1 && y.push("md:max-w-2xl"), r.value >= 2 && y.push("lg:max-w-4xl"), r.value >= 3 && y.push("xl:max-w-6xl"), r.value >= 4 && y.push("2xl:max-w-7xl"), y.join(" ");
|
|
2368
|
+
}), u = () => {
|
|
2369
|
+
t.preventCloseOnClickOutside || (i.value = !1);
|
|
2264
2370
|
};
|
|
2265
|
-
return (
|
|
2371
|
+
return (y, k) => (a(), L(n(Rt), {
|
|
2266
2372
|
as: "template",
|
|
2267
|
-
show:
|
|
2373
|
+
show: i.value
|
|
2268
2374
|
}, {
|
|
2269
2375
|
default: _(() => [
|
|
2270
|
-
|
|
2376
|
+
V(n(Dt), {
|
|
2271
2377
|
as: "div",
|
|
2272
2378
|
class: "relative z-40",
|
|
2273
|
-
onClose:
|
|
2379
|
+
onClose: u
|
|
2274
2380
|
}, {
|
|
2275
2381
|
default: _(() => [
|
|
2276
|
-
|
|
2382
|
+
V(n(Oe), {
|
|
2277
2383
|
as: "template",
|
|
2278
2384
|
enter: "ease-out duration-300",
|
|
2279
2385
|
"enter-from": "opacity-0",
|
|
@@ -2283,13 +2389,13 @@ const Dn = /* @__PURE__ */ i("div", { class: "fixed inset-0 bg-neutral-100/70 da
|
|
|
2283
2389
|
"leave-to": "opacity-0"
|
|
2284
2390
|
}, {
|
|
2285
2391
|
default: _(() => [
|
|
2286
|
-
|
|
2392
|
+
Hl
|
|
2287
2393
|
]),
|
|
2288
2394
|
_: 1
|
|
2289
2395
|
}),
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2396
|
+
d("div", Gl, [
|
|
2397
|
+
d("div", Kl, [
|
|
2398
|
+
V(n(Oe), {
|
|
2293
2399
|
as: "template",
|
|
2294
2400
|
enter: "ease-out duration-300",
|
|
2295
2401
|
"enter-from": "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",
|
|
@@ -2297,42 +2403,42 @@ const Dn = /* @__PURE__ */ i("div", { class: "fixed inset-0 bg-neutral-100/70 da
|
|
|
2297
2403
|
leave: "ease-in duration-200",
|
|
2298
2404
|
"leave-from": "opacity-100 translate-y-0 sm:scale-100",
|
|
2299
2405
|
"leave-to": "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",
|
|
2300
|
-
onAfterLeave:
|
|
2406
|
+
onAfterLeave: k[1] || (k[1] = (g) => y.$emit("fully-closed"))
|
|
2301
2407
|
}, {
|
|
2302
2408
|
default: _(() => [
|
|
2303
|
-
|
|
2304
|
-
class:
|
|
2409
|
+
V(n(Tt), {
|
|
2410
|
+
class: x([
|
|
2305
2411
|
"transform rounded-lg bg-foundation text-left shadow-xl transition-all",
|
|
2306
|
-
|
|
2412
|
+
m.value
|
|
2307
2413
|
]),
|
|
2308
2414
|
as: o.value ? "form" : "div",
|
|
2309
|
-
onSubmit:
|
|
2415
|
+
onSubmit: ue(e.onSubmit, ["prevent"])
|
|
2310
2416
|
}, {
|
|
2311
2417
|
default: _(() => [
|
|
2312
|
-
e.title ? (a(),
|
|
2313
|
-
|
|
2418
|
+
e.title ? (a(), p("div", Xl, [
|
|
2419
|
+
d("h4", Nl, B(e.title), 1)
|
|
2314
2420
|
])) : I("", !0),
|
|
2315
|
-
e.hideCloser ? I("", !0) : (a(),
|
|
2421
|
+
e.hideCloser ? I("", !0) : (a(), p("button", {
|
|
2316
2422
|
key: 1,
|
|
2317
2423
|
class: "absolute z-20 top-5 right-4 text-foreground",
|
|
2318
|
-
onClick:
|
|
2424
|
+
onClick: k[0] || (k[0] = (g) => i.value = !1)
|
|
2319
2425
|
}, [
|
|
2320
|
-
|
|
2426
|
+
V(n(gt), { class: "h-6 w-6" })
|
|
2321
2427
|
])),
|
|
2322
|
-
|
|
2323
|
-
z(
|
|
2324
|
-
|
|
2428
|
+
d("div", Jl, [
|
|
2429
|
+
z(y.$slots, "default", {}, () => [
|
|
2430
|
+
A("Put your content here!")
|
|
2325
2431
|
])
|
|
2326
2432
|
]),
|
|
2327
|
-
|
|
2328
|
-
e.buttons ? (a(!0),
|
|
2329
|
-
onClick:
|
|
2433
|
+
f.value ? (a(), p("div", Ql, [
|
|
2434
|
+
e.buttons ? (a(!0), p(T, { key: 0 }, U(e.buttons, (g, w) => (a(), L(n(ee), ie({ key: w }, g.props, {
|
|
2435
|
+
onClick: g.onClick
|
|
2330
2436
|
}), {
|
|
2331
2437
|
default: _(() => [
|
|
2332
|
-
|
|
2438
|
+
A(B(g.text), 1)
|
|
2333
2439
|
]),
|
|
2334
2440
|
_: 2
|
|
2335
|
-
}, 1040, ["onClick"]))), 128)) : z(
|
|
2441
|
+
}, 1040, ["onClick"]))), 128)) : z(y.$slots, "buttons", { key: 1 })
|
|
2336
2442
|
])) : I("", !0)
|
|
2337
2443
|
]),
|
|
2338
2444
|
_: 3
|
|
@@ -2349,7 +2455,7 @@ const Dn = /* @__PURE__ */ i("div", { class: "fixed inset-0 bg-neutral-100/70 da
|
|
|
2349
2455
|
_: 3
|
|
2350
2456
|
}, 8, ["show"]));
|
|
2351
2457
|
}
|
|
2352
|
-
}),
|
|
2458
|
+
}), Yl = { class: "inline-flex items-center space-x-2" }, Zl = { class: "label-light" }, Nn = /* @__PURE__ */ j({
|
|
2353
2459
|
__name: "Disclosure",
|
|
2354
2460
|
props: {
|
|
2355
2461
|
title: null,
|
|
@@ -2357,12 +2463,12 @@ const Dn = /* @__PURE__ */ i("div", { class: "fixed inset-0 bg-neutral-100/70 da
|
|
|
2357
2463
|
color: { default: "default" }
|
|
2358
2464
|
},
|
|
2359
2465
|
setup(e) {
|
|
2360
|
-
const
|
|
2466
|
+
const l = e, t = c(() => {
|
|
2361
2467
|
const o = [
|
|
2362
2468
|
"pr-3 h-10 w-full flex items-center justify-between border-l-2 px-2 rounded transition",
|
|
2363
2469
|
"ring-1 font-medium"
|
|
2364
2470
|
];
|
|
2365
|
-
switch (
|
|
2471
|
+
switch (l.color) {
|
|
2366
2472
|
case "warning":
|
|
2367
2473
|
o.push(
|
|
2368
2474
|
"border-warning text-warning ring-warning-lighter hover:ring-warning"
|
|
@@ -2384,9 +2490,9 @@ const Dn = /* @__PURE__ */ i("div", { class: "fixed inset-0 bg-neutral-100/70 da
|
|
|
2384
2490
|
break;
|
|
2385
2491
|
}
|
|
2386
2492
|
return o.join(" ");
|
|
2387
|
-
}), s =
|
|
2493
|
+
}), s = c(() => {
|
|
2388
2494
|
const o = ["mt-4 px-3 py-1 border-x "];
|
|
2389
|
-
switch (
|
|
2495
|
+
switch (l.color) {
|
|
2390
2496
|
case "warning":
|
|
2391
2497
|
o.push("border-warning-lighter");
|
|
2392
2498
|
break;
|
|
@@ -2403,33 +2509,33 @@ const Dn = /* @__PURE__ */ i("div", { class: "fixed inset-0 bg-neutral-100/70 da
|
|
|
2403
2509
|
}
|
|
2404
2510
|
return o.join(" ");
|
|
2405
2511
|
});
|
|
2406
|
-
return (o,
|
|
2407
|
-
|
|
2408
|
-
default: _(({ open:
|
|
2409
|
-
|
|
2410
|
-
class:
|
|
2512
|
+
return (o, f) => (a(), p("div", null, [
|
|
2513
|
+
V(n(Ft), null, {
|
|
2514
|
+
default: _(({ open: i }) => [
|
|
2515
|
+
V(n(Et), {
|
|
2516
|
+
class: x(t.value)
|
|
2411
2517
|
}, {
|
|
2412
2518
|
default: _(() => [
|
|
2413
|
-
|
|
2414
|
-
e.icon ? (a(), L(
|
|
2519
|
+
d("div", Yl, [
|
|
2520
|
+
e.icon ? (a(), L(G(e.icon), {
|
|
2415
2521
|
key: 0,
|
|
2416
2522
|
class: "h-4 w-4"
|
|
2417
2523
|
})) : I("", !0),
|
|
2418
|
-
|
|
2524
|
+
d("span", null, B(e.title), 1)
|
|
2419
2525
|
]),
|
|
2420
|
-
|
|
2421
|
-
class:
|
|
2526
|
+
V(n(De), {
|
|
2527
|
+
class: x([i ? "" : "rotate-180 transform", "h-5 w-5"])
|
|
2422
2528
|
}, null, 8, ["class"])
|
|
2423
2529
|
]),
|
|
2424
2530
|
_: 2
|
|
2425
2531
|
}, 1032, ["class"]),
|
|
2426
|
-
|
|
2427
|
-
class:
|
|
2532
|
+
V(n(Ut), {
|
|
2533
|
+
class: x(s.value)
|
|
2428
2534
|
}, {
|
|
2429
2535
|
default: _(() => [
|
|
2430
|
-
|
|
2536
|
+
d("div", Zl, [
|
|
2431
2537
|
z(o.$slots, "default", {}, () => [
|
|
2432
|
-
|
|
2538
|
+
A("Panel contents")
|
|
2433
2539
|
])
|
|
2434
2540
|
])
|
|
2435
2541
|
]),
|
|
@@ -2442,135 +2548,135 @@ const Dn = /* @__PURE__ */ i("div", { class: "fixed inset-0 bg-neutral-100/70 da
|
|
|
2442
2548
|
}
|
|
2443
2549
|
});
|
|
2444
2550
|
var J = /* @__PURE__ */ ((e) => (e.Grid = "grid", e.List = "list", e))(J || {});
|
|
2445
|
-
const
|
|
2551
|
+
const Jn = /* @__PURE__ */ j({
|
|
2446
2552
|
__name: "GridListToggle",
|
|
2447
2553
|
props: {
|
|
2448
2554
|
modelValue: null
|
|
2449
2555
|
},
|
|
2450
2556
|
emits: ["click", "update:modelValue"],
|
|
2451
|
-
setup(e, { emit:
|
|
2452
|
-
const t = e, s =
|
|
2557
|
+
setup(e, { emit: l }) {
|
|
2558
|
+
const t = e, s = c({
|
|
2453
2559
|
get: () => t.modelValue || J.Grid,
|
|
2454
|
-
set: (
|
|
2455
|
-
}), o =
|
|
2456
|
-
() => s.value === J.Grid ?
|
|
2457
|
-
),
|
|
2458
|
-
|
|
2459
|
-
const
|
|
2460
|
-
s.value =
|
|
2560
|
+
set: (i) => l("update:modelValue", i)
|
|
2561
|
+
}), o = c(
|
|
2562
|
+
() => s.value === J.Grid ? ct : dt
|
|
2563
|
+
), f = (i) => {
|
|
2564
|
+
l("click", i);
|
|
2565
|
+
const r = s.value === J.Grid ? J.List : J.Grid;
|
|
2566
|
+
s.value = r;
|
|
2461
2567
|
};
|
|
2462
|
-
return (
|
|
2568
|
+
return (i, r) => (a(), p("button", {
|
|
2463
2569
|
class: "flex items-center justify-center rounded bg-foundation h-8 w-8 shadow cursor-pointer text-foreground",
|
|
2464
|
-
onClick:
|
|
2570
|
+
onClick: f
|
|
2465
2571
|
}, [
|
|
2466
|
-
(a(), L(
|
|
2572
|
+
(a(), L(G(o.value), { class: "h-6 w-6" }))
|
|
2467
2573
|
]));
|
|
2468
2574
|
}
|
|
2469
2575
|
});
|
|
2470
|
-
var
|
|
2471
|
-
function
|
|
2472
|
-
if (
|
|
2576
|
+
var en = /* @__PURE__ */ ((e) => (e[e.Throttle = 0] = "Throttle", e[e.Debounce = 1] = "Debounce", e))(en || {}), ve = /* @__PURE__ */ ((e) => (e[e.Left = 0] = "Left", e[e.Right = 1] = "Right", e))(ve || {});
|
|
2577
|
+
function tn(e, l) {
|
|
2578
|
+
if (!$e)
|
|
2473
2579
|
return;
|
|
2474
2580
|
const {
|
|
2475
2581
|
wait: t = 100,
|
|
2476
2582
|
throttleOrDebounce: s = 0
|
|
2477
2583
|
/* Throttle */
|
|
2478
|
-
} =
|
|
2479
|
-
|
|
2584
|
+
} = l || {}, o = t ? s === 0 ? nt(e, t) : Re(e, t) : e;
|
|
2585
|
+
Z(() => window.addEventListener("resize", o)), ze(() => window.removeEventListener("resize", o));
|
|
2480
2586
|
}
|
|
2481
|
-
function
|
|
2482
|
-
|
|
2587
|
+
function Qn(e) {
|
|
2588
|
+
Z(() => {
|
|
2483
2589
|
window.addEventListener("beforeunload", e);
|
|
2484
|
-
}),
|
|
2590
|
+
}), ze(() => {
|
|
2485
2591
|
window.removeEventListener("beforeunload", e);
|
|
2486
2592
|
});
|
|
2487
2593
|
}
|
|
2488
|
-
function
|
|
2489
|
-
const { el:
|
|
2594
|
+
function sn(e) {
|
|
2595
|
+
const { el: l, defaultDirection: t } = e, s = M(
|
|
2490
2596
|
Q(t) ? 1 : t
|
|
2491
2597
|
/* Right */
|
|
2492
|
-
), o =
|
|
2493
|
-
const
|
|
2494
|
-
if (!Q(
|
|
2495
|
-
return
|
|
2496
|
-
const
|
|
2497
|
-
return
|
|
2498
|
-
}),
|
|
2499
|
-
if (
|
|
2598
|
+
), o = c(() => {
|
|
2599
|
+
const i = n(e.stopUpdatesBelowWidth);
|
|
2600
|
+
if (!Q(i))
|
|
2601
|
+
return i;
|
|
2602
|
+
const r = n(l);
|
|
2603
|
+
return r != null && r.offsetWidth ? r.offsetWidth * 2 : void 0;
|
|
2604
|
+
}), f = () => {
|
|
2605
|
+
if (!$e)
|
|
2500
2606
|
return;
|
|
2501
|
-
const
|
|
2502
|
-
if (!
|
|
2607
|
+
const i = n(l);
|
|
2608
|
+
if (!i)
|
|
2503
2609
|
return;
|
|
2504
|
-
const
|
|
2505
|
-
|
|
2610
|
+
const r = i.getBoundingClientRect(), m = r.x + r.width > window.innerWidth, u = r.x < 0;
|
|
2611
|
+
m && u || !Q(o.value) && window.innerWidth < o.value || (m ? s.value = 0 : u && (s.value = 1));
|
|
2506
2612
|
};
|
|
2507
|
-
return
|
|
2508
|
-
() => l
|
|
2509
|
-
(
|
|
2510
|
-
|
|
2613
|
+
return tn(() => f()), oe(
|
|
2614
|
+
() => n(l),
|
|
2615
|
+
(i) => {
|
|
2616
|
+
i && f();
|
|
2511
2617
|
}
|
|
2512
2618
|
), {
|
|
2513
|
-
direction:
|
|
2514
|
-
recalculateDirection:
|
|
2619
|
+
direction: c(() => s.value),
|
|
2620
|
+
recalculateDirection: f
|
|
2515
2621
|
};
|
|
2516
2622
|
}
|
|
2517
|
-
const
|
|
2623
|
+
const ln = ["disabled", "onClick"], Yn = /* @__PURE__ */ j({
|
|
2518
2624
|
__name: "Menu",
|
|
2519
2625
|
props: {
|
|
2520
2626
|
open: { type: Boolean },
|
|
2521
2627
|
items: null
|
|
2522
2628
|
},
|
|
2523
2629
|
emits: ["update:open", "chosen"],
|
|
2524
|
-
setup(e, { emit:
|
|
2525
|
-
const t = e, s =
|
|
2526
|
-
el:
|
|
2527
|
-
var
|
|
2528
|
-
return ((
|
|
2630
|
+
setup(e, { emit: l }) {
|
|
2631
|
+
const t = e, s = M(null), { direction: o } = sn({
|
|
2632
|
+
el: c(() => {
|
|
2633
|
+
var g;
|
|
2634
|
+
return ((g = s.value) == null ? void 0 : g.el) || null;
|
|
2529
2635
|
}),
|
|
2530
|
-
defaultDirection:
|
|
2636
|
+
defaultDirection: ve.Left,
|
|
2531
2637
|
stopUpdatesBelowWidth: 300
|
|
2532
|
-
}),
|
|
2638
|
+
}), f = M(null), i = M(!1), r = c({
|
|
2533
2639
|
get: () => t.open || !1,
|
|
2534
|
-
set: (
|
|
2535
|
-
}),
|
|
2536
|
-
const { active:
|
|
2537
|
-
return
|
|
2538
|
-
},
|
|
2539
|
-
|
|
2540
|
-
},
|
|
2541
|
-
var
|
|
2542
|
-
return (
|
|
2543
|
-
},
|
|
2544
|
-
const
|
|
2545
|
-
return
|
|
2640
|
+
set: (g) => l("update:open", g)
|
|
2641
|
+
}), m = (g) => {
|
|
2642
|
+
const { active: w, disabled: h } = g, P = ["group flex w-full items-center rounded-md px-2 py-2 text-sm"];
|
|
2643
|
+
return w ? P.push("bg-primary text-foreground-on-primary") : h ? P.push("text-foreground-disabled") : P.push("text-foreground"), P.join(" ");
|
|
2644
|
+
}, u = (g, w) => {
|
|
2645
|
+
l("chosen", { item: g, event: w });
|
|
2646
|
+
}, y = () => {
|
|
2647
|
+
var g;
|
|
2648
|
+
return (g = f.value) == null ? void 0 : g.el.click();
|
|
2649
|
+
}, k = (g) => {
|
|
2650
|
+
const w = !!g;
|
|
2651
|
+
return i.value = w, w;
|
|
2546
2652
|
};
|
|
2547
|
-
return
|
|
2548
|
-
|
|
2549
|
-
}),
|
|
2550
|
-
(
|
|
2551
|
-
}), (
|
|
2653
|
+
return oe(i, (g, w) => {
|
|
2654
|
+
g !== w && (r.value = g);
|
|
2655
|
+
}), oe(r, (g) => {
|
|
2656
|
+
(g && !i.value || !g && i.value) && y();
|
|
2657
|
+
}), (g, w) => (a(), L(n(Wt), {
|
|
2552
2658
|
as: "div",
|
|
2553
2659
|
class: "relative inline-block"
|
|
2554
2660
|
}, {
|
|
2555
|
-
default: _(({ open:
|
|
2556
|
-
|
|
2557
|
-
|
|
2661
|
+
default: _(({ open: h }) => [
|
|
2662
|
+
d("div", null, [
|
|
2663
|
+
V(n(qt), {
|
|
2558
2664
|
ref_key: "menuButton",
|
|
2559
|
-
ref:
|
|
2665
|
+
ref: f,
|
|
2560
2666
|
class: "hidden",
|
|
2561
|
-
onClick:
|
|
2667
|
+
onClick: w[0] || (w[0] = ue(() => {
|
|
2562
2668
|
}, ["stop", "prevent"]))
|
|
2563
2669
|
}, null, 512),
|
|
2564
|
-
|
|
2565
|
-
class:
|
|
2670
|
+
d("div", {
|
|
2671
|
+
class: x(h ? "pointer-events-none" : "")
|
|
2566
2672
|
}, [
|
|
2567
|
-
z(
|
|
2568
|
-
toggle:
|
|
2569
|
-
open:
|
|
2673
|
+
z(g.$slots, "default", {
|
|
2674
|
+
toggle: y,
|
|
2675
|
+
open: k(h)
|
|
2570
2676
|
})
|
|
2571
2677
|
], 2)
|
|
2572
2678
|
]),
|
|
2573
|
-
|
|
2679
|
+
V(be, {
|
|
2574
2680
|
"enter-active-class": "transition duration-100 ease-out",
|
|
2575
2681
|
"enter-from-class": "transform scale-95 opacity-0",
|
|
2576
2682
|
"enter-to-class": "transform scale-100 opacity-100",
|
|
@@ -2579,36 +2685,36 @@ const Nn = ["disabled", "onClick"], zl = /* @__PURE__ */ A({
|
|
|
2579
2685
|
"leave-to-class": "transform scale-95 opacity-0"
|
|
2580
2686
|
}, {
|
|
2581
2687
|
default: _(() => [
|
|
2582
|
-
|
|
2688
|
+
V(n(Ht), {
|
|
2583
2689
|
ref_key: "menuItems",
|
|
2584
2690
|
ref: s,
|
|
2585
|
-
class:
|
|
2691
|
+
class: x([
|
|
2586
2692
|
"absolute mt-2 w-56 origin-top-right divide-y divide-outline-3 rounded-md bg-foundation shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none z-40",
|
|
2587
|
-
|
|
2693
|
+
n(o) === n(ve).Left ? "right-0" : ""
|
|
2588
2694
|
])
|
|
2589
2695
|
}, {
|
|
2590
2696
|
default: _(() => [
|
|
2591
|
-
(a(!0),
|
|
2592
|
-
key:
|
|
2697
|
+
(a(!0), p(T, null, U(e.items, (P, b) => (a(), p("div", {
|
|
2698
|
+
key: b,
|
|
2593
2699
|
class: "px-1 py-1"
|
|
2594
2700
|
}, [
|
|
2595
|
-
(a(!0),
|
|
2596
|
-
key:
|
|
2597
|
-
disabled:
|
|
2701
|
+
(a(!0), p(T, null, U(P, ($) => (a(), L(n(Gt), {
|
|
2702
|
+
key: $.id,
|
|
2703
|
+
disabled: $.disabled
|
|
2598
2704
|
}, {
|
|
2599
|
-
default: _(({ active: S, disabled:
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
class:
|
|
2603
|
-
disabled:
|
|
2604
|
-
onClick: (
|
|
2705
|
+
default: _(({ active: S, disabled: F }) => [
|
|
2706
|
+
ae((a(), p("span", null, [
|
|
2707
|
+
d("button", {
|
|
2708
|
+
class: x(m({ active: S, disabled: F })),
|
|
2709
|
+
disabled: F,
|
|
2710
|
+
onClick: (v) => u($, v)
|
|
2605
2711
|
}, [
|
|
2606
|
-
z(
|
|
2607
|
-
|
|
2712
|
+
z(g.$slots, "item", { item: $ }, () => [
|
|
2713
|
+
A(B($.title), 1)
|
|
2608
2714
|
])
|
|
2609
|
-
], 10,
|
|
2715
|
+
], 10, ln)
|
|
2610
2716
|
])), [
|
|
2611
|
-
[
|
|
2717
|
+
[n(Ee), $.disabled && $.disabledTooltip]
|
|
2612
2718
|
])
|
|
2613
2719
|
]),
|
|
2614
2720
|
_: 2
|
|
@@ -2624,33 +2730,108 @@ const Nn = ["disabled", "onClick"], zl = /* @__PURE__ */ A({
|
|
|
2624
2730
|
_: 3
|
|
2625
2731
|
}));
|
|
2626
2732
|
}
|
|
2627
|
-
}),
|
|
2733
|
+
}), nn = { class: "flex flex-col space-y-4" }, an = { class: "flex space-x-6" }, Zn = /* @__PURE__ */ j({
|
|
2628
2734
|
__name: "Tabs",
|
|
2629
2735
|
props: {
|
|
2630
2736
|
items: null
|
|
2631
2737
|
},
|
|
2632
2738
|
setup(e) {
|
|
2633
|
-
const
|
|
2634
|
-
t.value =
|
|
2739
|
+
const l = e, t = M(null), s = c(() => t.value && l.items.find((f) => f.id === t.value) || l.items[0]), o = (f) => {
|
|
2740
|
+
t.value = f.id;
|
|
2635
2741
|
};
|
|
2636
|
-
return (
|
|
2637
|
-
|
|
2638
|
-
(a(!0),
|
|
2639
|
-
key:
|
|
2742
|
+
return (f, i) => (a(), p("div", nn, [
|
|
2743
|
+
d("div", an, [
|
|
2744
|
+
(a(!0), p(T, null, U(e.items, (r) => (a(), L(ee, {
|
|
2745
|
+
key: r.id,
|
|
2640
2746
|
link: "",
|
|
2641
|
-
color: s.value.id ===
|
|
2642
|
-
onClick: (
|
|
2747
|
+
color: s.value.id === r.id ? "default" : "secondary",
|
|
2748
|
+
onClick: (m) => o(r)
|
|
2643
2749
|
}, {
|
|
2644
2750
|
default: _(() => [
|
|
2645
|
-
|
|
2751
|
+
A(B(r.title), 1)
|
|
2646
2752
|
]),
|
|
2647
2753
|
_: 2
|
|
2648
2754
|
}, 1032, ["color", "onClick"]))), 128))
|
|
2649
2755
|
]),
|
|
2650
|
-
z(
|
|
2756
|
+
z(f.$slots, "default", { activeItem: s.value })
|
|
2757
|
+
]));
|
|
2758
|
+
}
|
|
2759
|
+
}), on = { class: "text-foreground" }, rn = { class: "w-full text-sm overflow-x-auto overflow-y-visible simple-scrollbar" }, un = ["onClick", "onKeypress"], cn = /* @__PURE__ */ d("div", { class: "text-gray-900 font-medium order-1" }, "Placeholder", -1), dn = { class: "absolute right-1.5 gap-1 flex items-center p-0" }, ea = /* @__PURE__ */ j({
|
|
2760
|
+
__name: "Table",
|
|
2761
|
+
props: {
|
|
2762
|
+
items: null,
|
|
2763
|
+
buttons: null,
|
|
2764
|
+
columns: null,
|
|
2765
|
+
overflowCells: { type: Boolean },
|
|
2766
|
+
onRowClick: { type: Function }
|
|
2767
|
+
},
|
|
2768
|
+
setup(e) {
|
|
2769
|
+
const l = e, t = c(() => {
|
|
2770
|
+
const i = (l.buttons || []).length;
|
|
2771
|
+
let r = 16;
|
|
2772
|
+
return i > 0 && (r = 48 + (i - 1) * 42), `${r}px`;
|
|
2773
|
+
}), s = (i) => {
|
|
2774
|
+
var r;
|
|
2775
|
+
return ((r = l.columns.find((m) => m.id === i)) == null ? void 0 : r.classes) || "";
|
|
2776
|
+
}, o = (i, r) => {
|
|
2777
|
+
const m = s(i);
|
|
2778
|
+
return r === 0 ? `bg-transparent py-3 pr-5 px-1 ${m}` : `lg:p-0 px-1 ${m}`;
|
|
2779
|
+
}, f = (i) => {
|
|
2780
|
+
var r;
|
|
2781
|
+
(r = l.onRowClick) == null || r.call(l, i);
|
|
2782
|
+
};
|
|
2783
|
+
return (i, r) => (a(), p("div", on, [
|
|
2784
|
+
d("div", rn, [
|
|
2785
|
+
e.items.length > 0 ? (a(), p("div", {
|
|
2786
|
+
key: 0,
|
|
2787
|
+
class: "grid z-10 grid-cols-12 items-center gap-6 font-semibold bg-foundation rounded-t-lg w-full border-b border-outline-3 pb-2 pt-4 px-4 min-w-[900px]",
|
|
2788
|
+
style: re({ paddingRight: t.value })
|
|
2789
|
+
}, [
|
|
2790
|
+
(a(!0), p(T, null, U(e.columns, (m) => (a(), p("div", {
|
|
2791
|
+
key: m.id,
|
|
2792
|
+
class: x([s(m.id), "capitalize"])
|
|
2793
|
+
}, B(m.header), 3))), 128))
|
|
2794
|
+
], 4)) : I("", !0),
|
|
2795
|
+
d("div", {
|
|
2796
|
+
class: x(["divide-y divide-outline-3 h-full overflow-visible", { "pb-32": e.overflowCells }])
|
|
2797
|
+
}, [
|
|
2798
|
+
(a(!0), p(T, null, U(e.items, (m) => (a(), p("div", {
|
|
2799
|
+
key: m.id,
|
|
2800
|
+
class: x(["relative grid grid-cols-12 items-center gap-6 px-4 py-1 min-w-[900px] bg-foundation", { "cursor-pointer hover:bg-primary-muted": !!e.onRowClick }]),
|
|
2801
|
+
style: re({ paddingRight: t.value }),
|
|
2802
|
+
tabindex: "0",
|
|
2803
|
+
onClick: (u) => f(m),
|
|
2804
|
+
onKeypress: (u) => f(m)
|
|
2805
|
+
}, [
|
|
2806
|
+
(a(!0), p(T, null, U(e.columns, (u, y) => (a(), p("div", {
|
|
2807
|
+
key: u.id,
|
|
2808
|
+
class: x(o(u.id, y)),
|
|
2809
|
+
tabindex: "0"
|
|
2810
|
+
}, [
|
|
2811
|
+
z(i.$slots, u.id, { item: m }, () => [
|
|
2812
|
+
cn
|
|
2813
|
+
])
|
|
2814
|
+
], 2))), 128)),
|
|
2815
|
+
d("div", dn, [
|
|
2816
|
+
(a(!0), p(T, null, U(e.buttons, (u) => (a(), p("div", {
|
|
2817
|
+
key: u.label
|
|
2818
|
+
}, [
|
|
2819
|
+
V(n(ee), {
|
|
2820
|
+
"icon-left": u.icon,
|
|
2821
|
+
size: "sm",
|
|
2822
|
+
color: "secondary",
|
|
2823
|
+
"hide-text": "",
|
|
2824
|
+
class: x(u.class),
|
|
2825
|
+
onClick: ue((y) => u.action(m), ["stop"])
|
|
2826
|
+
}, null, 8, ["icon-left", "class", "onClick"])
|
|
2827
|
+
]))), 128))
|
|
2828
|
+
])
|
|
2829
|
+
], 46, un))), 128))
|
|
2830
|
+
], 2)
|
|
2831
|
+
])
|
|
2651
2832
|
]));
|
|
2652
2833
|
}
|
|
2653
|
-
}),
|
|
2834
|
+
}), fn = { class: "w-full flex flex-col items-center my-2 space-y-2 mt-4" }, pn = { class: "inline-flex items-center space-x-1" }, hn = /* @__PURE__ */ d("span", { class: "text-foreground-2" }, "That's it, you've loaded everything!", -1), mn = { class: "w-full flex flex-col items-center my-2 space-y-2 mt-4" }, gn = { class: "inline-flex items-center space-x-1" }, vn = /* @__PURE__ */ d("span", { class: "text-foreground-2" }, "An error occurred while loading", -1), ta = /* @__PURE__ */ j({
|
|
2654
2835
|
__name: "InfiniteLoading",
|
|
2655
2836
|
props: {
|
|
2656
2837
|
settings: null,
|
|
@@ -2658,45 +2839,45 @@ const Nn = ["disabled", "onClick"], zl = /* @__PURE__ */ A({
|
|
|
2658
2839
|
},
|
|
2659
2840
|
emits: ["infinite"],
|
|
2660
2841
|
setup(e) {
|
|
2661
|
-
const
|
|
2662
|
-
return
|
|
2842
|
+
const l = M(null), t = M(!1);
|
|
2843
|
+
return $e && Z(() => {
|
|
2663
2844
|
const s = setInterval(() => {
|
|
2664
2845
|
var o;
|
|
2665
|
-
(o =
|
|
2846
|
+
(o = l.value) != null && o.isConnected && (t.value = !0, clearInterval(s));
|
|
2666
2847
|
}, 200);
|
|
2667
|
-
}), (s, o) => (a(),
|
|
2848
|
+
}), (s, o) => (a(), p("div", {
|
|
2668
2849
|
ref_key: "wrapper",
|
|
2669
|
-
ref:
|
|
2850
|
+
ref: l
|
|
2670
2851
|
}, [
|
|
2671
|
-
t.value ? (a(), L(
|
|
2672
|
-
onInfinite: o[0] || (o[0] = (
|
|
2852
|
+
t.value ? (a(), L(n(Kt), ie({ key: 0 }, s.$props.settings || {}, {
|
|
2853
|
+
onInfinite: o[0] || (o[0] = (f) => s.$emit("infinite", f))
|
|
2673
2854
|
}), {
|
|
2674
2855
|
spinner: _(() => [
|
|
2675
|
-
|
|
2856
|
+
V(Xe, {
|
|
2676
2857
|
loading: !0,
|
|
2677
2858
|
class: "my-2"
|
|
2678
2859
|
})
|
|
2679
2860
|
]),
|
|
2680
2861
|
complete: _(() => [
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2862
|
+
d("div", fn, [
|
|
2863
|
+
d("div", pn, [
|
|
2864
|
+
V(n(vt), { class: "w-5 h-5 text-success" }),
|
|
2865
|
+
hn
|
|
2685
2866
|
])
|
|
2686
2867
|
])
|
|
2687
2868
|
]),
|
|
2688
|
-
error: _(({ retry:
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2869
|
+
error: _(({ retry: f }) => [
|
|
2870
|
+
d("div", mn, [
|
|
2871
|
+
d("div", gn, [
|
|
2872
|
+
V(n(bt), { class: "w-5 h-5 text-danger" }),
|
|
2873
|
+
vn
|
|
2693
2874
|
]),
|
|
2694
|
-
e.allowRetry ? (a(), L(
|
|
2875
|
+
e.allowRetry ? (a(), L(ee, {
|
|
2695
2876
|
key: 0,
|
|
2696
|
-
onClick:
|
|
2877
|
+
onClick: f
|
|
2697
2878
|
}, {
|
|
2698
2879
|
default: _(() => [
|
|
2699
|
-
|
|
2880
|
+
A("Retry")
|
|
2700
2881
|
]),
|
|
2701
2882
|
_: 2
|
|
2702
2883
|
}, 1032, ["onClick"])) : I("", !0)
|
|
@@ -2706,10 +2887,10 @@ const Nn = ["disabled", "onClick"], zl = /* @__PURE__ */ A({
|
|
|
2706
2887
|
}, 16)) : I("", !0)
|
|
2707
2888
|
], 512));
|
|
2708
2889
|
}
|
|
2709
|
-
}),
|
|
2890
|
+
}), bn = { class: "relative group" }, yn = {
|
|
2710
2891
|
key: 0,
|
|
2711
2892
|
class: "absolute -inset-1 bg-blue-300 dark:bg-blue-500 opacity-5 dark:opacity-0 rounded-md blur-sm group-hover:opacity-60 dark:group-hover:opacity-30 transition duration-500"
|
|
2712
|
-
},
|
|
2893
|
+
}, sa = /* @__PURE__ */ j({
|
|
2713
2894
|
__name: "Panel",
|
|
2714
2895
|
props: {
|
|
2715
2896
|
/**
|
|
@@ -2746,48 +2927,48 @@ const Nn = ["disabled", "onClick"], zl = /* @__PURE__ */ A({
|
|
|
2746
2927
|
}
|
|
2747
2928
|
},
|
|
2748
2929
|
emits: ["submit"],
|
|
2749
|
-
setup(e, { emit:
|
|
2750
|
-
const t = e, s =
|
|
2930
|
+
setup(e, { emit: l }) {
|
|
2931
|
+
const t = e, s = c(
|
|
2751
2932
|
() => t.customPadding ? "" : "px-4 py-4 sm:px-6"
|
|
2752
|
-
), o =
|
|
2933
|
+
), o = c(
|
|
2753
2934
|
() => t.customPadding ? "" : "px-4 py-4 sm:p-6"
|
|
2754
|
-
),
|
|
2755
|
-
const
|
|
2756
|
-
return t.noShadow ||
|
|
2935
|
+
), f = c(() => {
|
|
2936
|
+
const i = ["rounded-lg"];
|
|
2937
|
+
return t.noShadow || i.push("shadow"), t.ring && i.push("ring-outline-2 hover:ring-2"), t.panelClasses && i.push(t.panelClasses), i.join(" ");
|
|
2757
2938
|
});
|
|
2758
|
-
return (
|
|
2759
|
-
e.fancyGlow ? (a(),
|
|
2760
|
-
(a(), L(
|
|
2761
|
-
class:
|
|
2939
|
+
return (i, r) => (a(), p("div", bn, [
|
|
2940
|
+
e.fancyGlow ? (a(), p("div", yn)) : I("", !0),
|
|
2941
|
+
(a(), L(G(e.form ? "form" : "div"), {
|
|
2942
|
+
class: x([
|
|
2762
2943
|
"relative divide-outline-3 bg-foundation text-foreground flex flex-col divide-y overflow-hidden",
|
|
2763
|
-
|
|
2944
|
+
f.value
|
|
2764
2945
|
]),
|
|
2765
|
-
onSubmit:
|
|
2946
|
+
onSubmit: r[0] || (r[0] = (m) => l("submit", m))
|
|
2766
2947
|
}, {
|
|
2767
2948
|
default: _(() => [
|
|
2768
|
-
|
|
2949
|
+
i.$slots.header ? (a(), p("div", {
|
|
2769
2950
|
key: 0,
|
|
2770
|
-
class:
|
|
2951
|
+
class: x(s.value)
|
|
2771
2952
|
}, [
|
|
2772
|
-
z(
|
|
2953
|
+
z(i.$slots, "header")
|
|
2773
2954
|
], 2)) : I("", !0),
|
|
2774
|
-
|
|
2775
|
-
class:
|
|
2955
|
+
d("div", {
|
|
2956
|
+
class: x(["grow", o.value])
|
|
2776
2957
|
}, [
|
|
2777
|
-
z(
|
|
2958
|
+
z(i.$slots, "default")
|
|
2778
2959
|
], 2),
|
|
2779
|
-
|
|
2960
|
+
i.$slots.footer ? (a(), p("div", {
|
|
2780
2961
|
key: 1,
|
|
2781
|
-
class:
|
|
2962
|
+
class: x(s.value)
|
|
2782
2963
|
}, [
|
|
2783
|
-
z(
|
|
2964
|
+
z(i.$slots, "footer")
|
|
2784
2965
|
], 2)) : I("", !0)
|
|
2785
2966
|
]),
|
|
2786
2967
|
_: 3
|
|
2787
2968
|
}, 40, ["class"]))
|
|
2788
2969
|
]));
|
|
2789
2970
|
}
|
|
2790
|
-
}),
|
|
2971
|
+
}), xn = { class: "flex-shrink-0" }, kn = /* @__PURE__ */ d("span", { class: "sr-only" }, "Dismiss", -1), la = /* @__PURE__ */ j({
|
|
2791
2972
|
__name: "Alert",
|
|
2792
2973
|
props: {
|
|
2793
2974
|
color: { default: "success" },
|
|
@@ -2798,162 +2979,162 @@ const Nn = ["disabled", "onClick"], zl = /* @__PURE__ */ A({
|
|
|
2798
2979
|
},
|
|
2799
2980
|
emits: ["dismiss"],
|
|
2800
2981
|
setup(e) {
|
|
2801
|
-
const
|
|
2802
|
-
if (
|
|
2803
|
-
return
|
|
2804
|
-
switch (
|
|
2982
|
+
const l = e, t = ye(), s = c(() => !!t.description), o = c(() => {
|
|
2983
|
+
if (l.customIcon)
|
|
2984
|
+
return l.customIcon;
|
|
2985
|
+
switch (l.color) {
|
|
2805
2986
|
case "info":
|
|
2806
|
-
return
|
|
2987
|
+
return Ct;
|
|
2807
2988
|
case "warning":
|
|
2808
|
-
return
|
|
2989
|
+
return ke;
|
|
2809
2990
|
case "danger":
|
|
2810
|
-
return
|
|
2991
|
+
return wt;
|
|
2811
2992
|
case "success":
|
|
2812
2993
|
default:
|
|
2813
|
-
return
|
|
2994
|
+
return Fe;
|
|
2814
2995
|
}
|
|
2815
|
-
}),
|
|
2816
|
-
const
|
|
2817
|
-
switch (
|
|
2996
|
+
}), f = c(() => {
|
|
2997
|
+
const h = [];
|
|
2998
|
+
switch (l.size) {
|
|
2818
2999
|
case "xs":
|
|
2819
|
-
|
|
3000
|
+
h.push("p-1");
|
|
2820
3001
|
break;
|
|
2821
3002
|
case "default":
|
|
2822
3003
|
default:
|
|
2823
|
-
|
|
3004
|
+
h.push(s.value ? "p-4" : "p-2");
|
|
2824
3005
|
break;
|
|
2825
3006
|
}
|
|
2826
|
-
switch (
|
|
3007
|
+
switch (l.color) {
|
|
2827
3008
|
case "success":
|
|
2828
|
-
|
|
3009
|
+
h.push("bg-success-lighter border-l-4 border-success");
|
|
2829
3010
|
break;
|
|
2830
3011
|
case "info":
|
|
2831
|
-
|
|
3012
|
+
h.push("bg-info-lighter border-l-4 border-info");
|
|
2832
3013
|
break;
|
|
2833
3014
|
case "danger":
|
|
2834
|
-
|
|
3015
|
+
h.push("bg-danger-lighter border-l-4 border-danger");
|
|
2835
3016
|
break;
|
|
2836
3017
|
case "warning":
|
|
2837
|
-
|
|
3018
|
+
h.push("bg-warning-lighter border-l-4 border-warning");
|
|
2838
3019
|
break;
|
|
2839
3020
|
}
|
|
2840
|
-
return
|
|
2841
|
-
}),
|
|
2842
|
-
const
|
|
3021
|
+
return h.join(" ");
|
|
3022
|
+
}), i = c(() => {
|
|
3023
|
+
const h = [];
|
|
2843
3024
|
if (s.value)
|
|
2844
|
-
|
|
3025
|
+
h.push("");
|
|
2845
3026
|
else
|
|
2846
|
-
switch (
|
|
3027
|
+
switch (h.push("items-center"), l.size) {
|
|
2847
3028
|
case "xs":
|
|
2848
|
-
|
|
3029
|
+
h.push("space-x-1");
|
|
2849
3030
|
break;
|
|
2850
3031
|
case "default":
|
|
2851
3032
|
default:
|
|
2852
|
-
|
|
3033
|
+
h.push("space-x-2");
|
|
2853
3034
|
break;
|
|
2854
3035
|
}
|
|
2855
|
-
return
|
|
2856
|
-
}),
|
|
2857
|
-
const
|
|
2858
|
-
switch (s.value ||
|
|
3036
|
+
return h.join(" ");
|
|
3037
|
+
}), r = c(() => {
|
|
3038
|
+
const h = ["grow"];
|
|
3039
|
+
switch (s.value || h.push("flex items-center space-x-2"), l.size) {
|
|
2859
3040
|
case "xs":
|
|
2860
|
-
|
|
3041
|
+
h.push("ml-1");
|
|
2861
3042
|
break;
|
|
2862
3043
|
case "default":
|
|
2863
3044
|
default:
|
|
2864
|
-
|
|
3045
|
+
h.push("ml-3");
|
|
2865
3046
|
break;
|
|
2866
3047
|
}
|
|
2867
|
-
return
|
|
2868
|
-
}),
|
|
2869
|
-
const
|
|
2870
|
-
switch (
|
|
3048
|
+
return h.join(" ");
|
|
3049
|
+
}), m = c(() => {
|
|
3050
|
+
const h = [];
|
|
3051
|
+
switch (l.size) {
|
|
2871
3052
|
case "xs":
|
|
2872
|
-
|
|
3053
|
+
h.push("text-xs");
|
|
2873
3054
|
break;
|
|
2874
3055
|
case "default":
|
|
2875
3056
|
default:
|
|
2876
|
-
|
|
3057
|
+
h.push("mt-2 text-sm");
|
|
2877
3058
|
break;
|
|
2878
3059
|
}
|
|
2879
|
-
return
|
|
2880
|
-
}),
|
|
2881
|
-
var
|
|
2882
|
-
const
|
|
2883
|
-
s.value ||
|
|
2884
|
-
const
|
|
2885
|
-
switch (
|
|
3060
|
+
return h.join(" ");
|
|
3061
|
+
}), u = c(() => {
|
|
3062
|
+
var b;
|
|
3063
|
+
const h = ["flex"];
|
|
3064
|
+
s.value || h.push("grow justify-end");
|
|
3065
|
+
const P = s.value && ((b = l.actions) == null ? void 0 : b.length);
|
|
3066
|
+
switch (l.size) {
|
|
2886
3067
|
case "xs":
|
|
2887
|
-
|
|
3068
|
+
h.push("space-x-1"), P && h.push("mt-1");
|
|
2888
3069
|
break;
|
|
2889
3070
|
case "default":
|
|
2890
3071
|
default:
|
|
2891
|
-
|
|
3072
|
+
h.push("space-x-2"), P && h.push("mt-4");
|
|
2892
3073
|
break;
|
|
2893
3074
|
}
|
|
2894
|
-
return
|
|
2895
|
-
}),
|
|
2896
|
-
const
|
|
2897
|
-
switch (
|
|
3075
|
+
return h.join(" ");
|
|
3076
|
+
}), y = c(() => {
|
|
3077
|
+
const h = [];
|
|
3078
|
+
switch (l.color) {
|
|
2898
3079
|
case "success":
|
|
2899
|
-
|
|
3080
|
+
h.push("text-success-darker");
|
|
2900
3081
|
break;
|
|
2901
3082
|
case "info":
|
|
2902
|
-
|
|
3083
|
+
h.push("text-info-darker");
|
|
2903
3084
|
break;
|
|
2904
3085
|
case "danger":
|
|
2905
|
-
|
|
3086
|
+
h.push("text-danger-darker");
|
|
2906
3087
|
break;
|
|
2907
3088
|
case "warning":
|
|
2908
|
-
|
|
3089
|
+
h.push("text-warning-darker");
|
|
2909
3090
|
break;
|
|
2910
3091
|
}
|
|
2911
|
-
return
|
|
2912
|
-
}),
|
|
2913
|
-
const
|
|
2914
|
-
switch (
|
|
3092
|
+
return h.join(" ");
|
|
3093
|
+
}), k = c(() => {
|
|
3094
|
+
const h = [];
|
|
3095
|
+
switch (l.size) {
|
|
2915
3096
|
case "xs":
|
|
2916
|
-
|
|
3097
|
+
h.push("h-4 w-4"), h.push(s.value ? "mt-0.5" : "");
|
|
2917
3098
|
break;
|
|
2918
3099
|
case "default":
|
|
2919
3100
|
default:
|
|
2920
|
-
|
|
3101
|
+
h.push("h-5 w-5");
|
|
2921
3102
|
break;
|
|
2922
3103
|
}
|
|
2923
|
-
switch (
|
|
3104
|
+
switch (l.color) {
|
|
2924
3105
|
case "success":
|
|
2925
|
-
|
|
3106
|
+
h.push("text-success");
|
|
2926
3107
|
break;
|
|
2927
3108
|
case "info":
|
|
2928
|
-
|
|
3109
|
+
h.push("text-info");
|
|
2929
3110
|
break;
|
|
2930
3111
|
case "danger":
|
|
2931
|
-
|
|
3112
|
+
h.push("text-danger");
|
|
2932
3113
|
break;
|
|
2933
3114
|
case "warning":
|
|
2934
|
-
|
|
3115
|
+
h.push("text-warning");
|
|
2935
3116
|
break;
|
|
2936
3117
|
}
|
|
2937
|
-
return
|
|
2938
|
-
}),
|
|
2939
|
-
const
|
|
2940
|
-
switch (
|
|
3118
|
+
return h.join(" ");
|
|
3119
|
+
}), g = c(() => {
|
|
3120
|
+
const h = [];
|
|
3121
|
+
switch (l.color) {
|
|
2941
3122
|
case "success":
|
|
2942
|
-
|
|
3123
|
+
h.push("bg-success-lighter ring-success");
|
|
2943
3124
|
break;
|
|
2944
3125
|
case "info":
|
|
2945
|
-
|
|
3126
|
+
h.push("bg-info-lighter ring-info");
|
|
2946
3127
|
break;
|
|
2947
3128
|
case "danger":
|
|
2948
|
-
|
|
3129
|
+
h.push("bg-danger-lighter ring-danger");
|
|
2949
3130
|
break;
|
|
2950
3131
|
case "warning":
|
|
2951
|
-
|
|
3132
|
+
h.push("bg-warning-lighter ring-warning");
|
|
2952
3133
|
break;
|
|
2953
3134
|
}
|
|
2954
|
-
return
|
|
2955
|
-
}),
|
|
2956
|
-
switch (
|
|
3135
|
+
return h.join(" ");
|
|
3136
|
+
}), w = c(() => {
|
|
3137
|
+
switch (l.size) {
|
|
2957
3138
|
case "xs":
|
|
2958
3139
|
return "xs";
|
|
2959
3140
|
case "default":
|
|
@@ -2961,65 +3142,65 @@ const Nn = ["disabled", "onClick"], zl = /* @__PURE__ */ A({
|
|
|
2961
3142
|
return "sm";
|
|
2962
3143
|
}
|
|
2963
3144
|
});
|
|
2964
|
-
return (
|
|
2965
|
-
class:
|
|
3145
|
+
return (h, P) => (a(), p("div", {
|
|
3146
|
+
class: x(["rounded-md", [f.value, y.value]])
|
|
2966
3147
|
}, [
|
|
2967
|
-
|
|
2968
|
-
class:
|
|
3148
|
+
d("div", {
|
|
3149
|
+
class: x(["flex", i.value])
|
|
2969
3150
|
}, [
|
|
2970
|
-
|
|
2971
|
-
(a(), L(
|
|
2972
|
-
class: k
|
|
3151
|
+
d("div", xn, [
|
|
3152
|
+
(a(), L(G(o.value), {
|
|
3153
|
+
class: x(k.value),
|
|
2973
3154
|
"aria-hidden": "true"
|
|
2974
3155
|
}, null, 8, ["class"]))
|
|
2975
3156
|
]),
|
|
2976
|
-
|
|
2977
|
-
class:
|
|
3157
|
+
d("div", {
|
|
3158
|
+
class: x(r.value)
|
|
2978
3159
|
}, [
|
|
2979
|
-
|
|
2980
|
-
class:
|
|
3160
|
+
d("h3", {
|
|
3161
|
+
class: x(["text-sm", [s.value ? "font-medium" : ""]])
|
|
2981
3162
|
}, [
|
|
2982
|
-
z(
|
|
2983
|
-
|
|
3163
|
+
z(h.$slots, "title", {}, () => [
|
|
3164
|
+
A("Title")
|
|
2984
3165
|
])
|
|
2985
3166
|
], 2),
|
|
2986
|
-
s.value ? (a(),
|
|
3167
|
+
s.value ? (a(), p("div", {
|
|
2987
3168
|
key: 0,
|
|
2988
|
-
class:
|
|
3169
|
+
class: x(m.value)
|
|
2989
3170
|
}, [
|
|
2990
|
-
z(
|
|
2991
|
-
|
|
3171
|
+
z(h.$slots, "description", {}, () => [
|
|
3172
|
+
A(" Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid pariatur, ipsum similique veniam. ")
|
|
2992
3173
|
])
|
|
2993
3174
|
], 2)) : I("", !0),
|
|
2994
|
-
|
|
2995
|
-
class:
|
|
3175
|
+
d("div", {
|
|
3176
|
+
class: x(u.value)
|
|
2996
3177
|
}, [
|
|
2997
|
-
(a(!0),
|
|
2998
|
-
key:
|
|
3178
|
+
(a(!0), p(T, null, U(e.actions || [], (b, $) => (a(), L(ee, {
|
|
3179
|
+
key: $,
|
|
2999
3180
|
color: e.color,
|
|
3000
|
-
size:
|
|
3001
|
-
to:
|
|
3002
|
-
external:
|
|
3003
|
-
onClick: (S) =>
|
|
3181
|
+
size: w.value,
|
|
3182
|
+
to: b.url,
|
|
3183
|
+
external: b.externalUrl || !1,
|
|
3184
|
+
onClick: (S) => b.onClick || n(at)
|
|
3004
3185
|
}, {
|
|
3005
3186
|
default: _(() => [
|
|
3006
|
-
|
|
3187
|
+
A(B(b.title), 1)
|
|
3007
3188
|
]),
|
|
3008
3189
|
_: 2
|
|
3009
3190
|
}, 1032, ["color", "size", "to", "external", "onClick"]))), 128))
|
|
3010
3191
|
], 2)
|
|
3011
3192
|
], 2),
|
|
3012
|
-
e.withDismiss ? (a(),
|
|
3193
|
+
e.withDismiss ? (a(), p("div", {
|
|
3013
3194
|
key: 0,
|
|
3014
|
-
class:
|
|
3195
|
+
class: x(["flex", [s.value ? "items-start" : "items-center"]])
|
|
3015
3196
|
}, [
|
|
3016
|
-
|
|
3197
|
+
d("button", {
|
|
3017
3198
|
type: "button",
|
|
3018
|
-
class:
|
|
3019
|
-
onClick:
|
|
3199
|
+
class: x(["inline-flex rounded-md focus:outline-none focus:ring-2", g.value]),
|
|
3200
|
+
onClick: P[0] || (P[0] = (b) => h.$emit("dismiss"))
|
|
3020
3201
|
}, [
|
|
3021
|
-
|
|
3022
|
-
|
|
3202
|
+
kn,
|
|
3203
|
+
V(n(fe), {
|
|
3023
3204
|
class: "h-5 w-5",
|
|
3024
3205
|
"aria-hidden": "true"
|
|
3025
3206
|
})
|
|
@@ -3029,52 +3210,56 @@ const Nn = ["disabled", "onClick"], zl = /* @__PURE__ */ A({
|
|
|
3029
3210
|
], 2));
|
|
3030
3211
|
}
|
|
3031
3212
|
});
|
|
3032
|
-
function
|
|
3033
|
-
var
|
|
3034
|
-
const { get:
|
|
3035
|
-
const
|
|
3036
|
-
return
|
|
3037
|
-
} :
|
|
3038
|
-
return
|
|
3213
|
+
function na(e) {
|
|
3214
|
+
var h, P;
|
|
3215
|
+
const { get: l, initialState: t, readOptions: s, set: o, asyncRead: f = !0, debugging: i } = e, r = i == null ? void 0 : i.log, m = () => (new Error("Trace:").stack || "").substring(7), u = ((P = (h = e.debugging) == null ? void 0 : h.log) == null ? void 0 : P.logger) || console.debug, y = r && !r.writesOnly ? () => {
|
|
3216
|
+
const b = l();
|
|
3217
|
+
return u(`debugging: '${r.name}' read`, b, m()), b;
|
|
3218
|
+
} : l, k = r && !r.readsOnly ? (b) => (u(`debugging: '${r.name}' written to`, b, m()), o(b)) : o, g = f ? Lt(y, t, s) : c(y), w = c(() => g.value);
|
|
3219
|
+
return w.update = k, w;
|
|
3039
3220
|
}
|
|
3040
3221
|
export {
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
3222
|
+
la as CommonAlert,
|
|
3223
|
+
We as CommonBadge,
|
|
3224
|
+
Xe as CommonLoadingBar,
|
|
3225
|
+
zn as CommonStepsBullet,
|
|
3226
|
+
Mn as CommonStepsNumber,
|
|
3227
|
+
Jt as CommonTextLink,
|
|
3228
|
+
ee as FormButton,
|
|
3229
|
+
Rn as FormCardButton,
|
|
3230
|
+
Dn as FormCheckbox,
|
|
3231
|
+
Wn as FormSelectBadges,
|
|
3232
|
+
Ne as FormSelectBase,
|
|
3233
|
+
Un as FormSelectSourceApps,
|
|
3234
|
+
qn as FormSwitch,
|
|
3235
|
+
Tn as FormTextArea,
|
|
3236
|
+
Fn as FormTextInput,
|
|
3237
|
+
An as GlobalToastRenderer,
|
|
3055
3238
|
J as GridListToggleValue,
|
|
3056
|
-
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3239
|
+
ve as HorizontalDirection,
|
|
3240
|
+
ta as InfiniteLoading,
|
|
3241
|
+
Xn as LayoutDialog,
|
|
3242
|
+
Nn as LayoutDisclosure,
|
|
3243
|
+
Jn as LayoutGridListToggle,
|
|
3244
|
+
Yn as LayoutMenu,
|
|
3245
|
+
sa as LayoutPanel,
|
|
3246
|
+
ea as LayoutTable,
|
|
3247
|
+
Zn as LayoutTabs,
|
|
3248
|
+
ne as ModifierKeys,
|
|
3249
|
+
Ml as SourceAppBadge,
|
|
3250
|
+
le as TailwindBreakpoints,
|
|
3251
|
+
en as ThrottleOrDebounce,
|
|
3252
|
+
se as ToastNotificationType,
|
|
3253
|
+
En as ValidationHelpers,
|
|
3254
|
+
ge as clientOs,
|
|
3255
|
+
Hn as getKeyboardShortcutTitle,
|
|
3256
|
+
Gn as onKeyboardShortcut,
|
|
3257
|
+
Kn as useFormCheckboxModel,
|
|
3258
|
+
Ke as useFormSelectChildInternals,
|
|
3259
|
+
Qn as useOnBeforeWindowUnload,
|
|
3260
|
+
sn as useResponsiveHorizontalDirectionCalculation,
|
|
3261
|
+
tn as useWindowResizeHandler,
|
|
3262
|
+
ml as useWrappingContainerHiddenCount,
|
|
3263
|
+
na as writableAsyncComputed
|
|
3080
3264
|
};
|
|
3265
|
+
//# sourceMappingURL=lib.js.map
|