@dcrackel/hematournamentui 1.0.293 → 1.0.295
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.
|
@@ -37369,8 +37369,8 @@ const vq = /* @__PURE__ */ te(vY, [["render", TY]]), OY = {
|
|
|
37369
37369
|
},
|
|
37370
37370
|
computed: {
|
|
37371
37371
|
filteredPersons() {
|
|
37372
|
-
return this.persons.filter((n) => (n.
|
|
37373
|
-
const t = (n.
|
|
37372
|
+
return this.persons.filter((n) => (n.DisplayName || "").toLowerCase().includes(this.searchTerm.toLowerCase())).sort((n, e) => {
|
|
37373
|
+
const t = (n.DisplayName || "").toLowerCase(), r = (e.DisplayName || "").toLowerCase();
|
|
37374
37374
|
return t.localeCompare(r);
|
|
37375
37375
|
});
|
|
37376
37376
|
}
|
|
@@ -37386,15 +37386,15 @@ const vq = /* @__PURE__ */ te(vY, [["render", TY]]), OY = {
|
|
|
37386
37386
|
console.log(`Submitted person: ${value}`), this.$emit("submit:person", value);
|
|
37387
37387
|
}
|
|
37388
37388
|
}
|
|
37389
|
-
}, RY = { class: "w-96 p-4" }, PY = { class: "mb-4 px-4" }, NY = { class: "overflow-y-auto h-[
|
|
37389
|
+
}, RY = { class: "w-96 p-4" }, PY = { class: "mb-4 px-4" }, NY = { class: "overflow-y-auto h-[800px]" };
|
|
37390
37390
|
function FY(n, e, t, r, i, o) {
|
|
37391
37391
|
const A = b("TitledInput"), s = b("PoolFencerCard");
|
|
37392
37392
|
return C(), B("div", RY, [
|
|
37393
37393
|
h("div", PY, [
|
|
37394
37394
|
p(A, {
|
|
37395
37395
|
inputValue: i.searchTerm,
|
|
37396
|
-
placeholder: "Enter
|
|
37397
|
-
title: "
|
|
37396
|
+
placeholder: "Enter Name to Search",
|
|
37397
|
+
title: "Search",
|
|
37398
37398
|
"onUpdate:value": o.updateDisplayName
|
|
37399
37399
|
}, null, 8, ["inputValue", "onUpdate:value"])
|
|
37400
37400
|
]),
|