@luminix/mui-cms 0.1.11 → 0.1.12
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/mui-cms.js
CHANGED
|
@@ -3092,8 +3092,8 @@ const pn = async (e, t, n) => {
|
|
|
3092
3092
|
const t = T("filter"), n = new URLSearchParams();
|
|
3093
3093
|
return e.forEach((r) => {
|
|
3094
3094
|
const { key: s, operator: o, value: a, type: l } = r;
|
|
3095
|
-
let d = o
|
|
3096
|
-
if (["equals"].includes(
|
|
3095
|
+
let d = `:${o}`;
|
|
3096
|
+
if (["equals"].includes(o) && (d = ""), Array.isArray(a))
|
|
3097
3097
|
a.forEach((u, c) => {
|
|
3098
3098
|
let f = u;
|
|
3099
3099
|
switch (t.getInputType(l)) {
|
|
@@ -3102,7 +3102,7 @@ const pn = async (e, t, n) => {
|
|
|
3102
3102
|
break;
|
|
3103
3103
|
}
|
|
3104
3104
|
}
|
|
3105
|
-
n.set(`where[${
|
|
3105
|
+
n.set(`where[${s}${d}][${c}]`, f);
|
|
3106
3106
|
});
|
|
3107
3107
|
else {
|
|
3108
3108
|
let u = a;
|
|
@@ -3112,7 +3112,7 @@ const pn = async (e, t, n) => {
|
|
|
3112
3112
|
break;
|
|
3113
3113
|
}
|
|
3114
3114
|
}
|
|
3115
|
-
n.set(`where[${
|
|
3115
|
+
n.set(`where[${s}${d}]`, u);
|
|
3116
3116
|
}
|
|
3117
3117
|
}), n;
|
|
3118
3118
|
}, La = () => {
|
|
@@ -4675,6 +4675,9 @@ class fi {
|
|
|
4675
4675
|
const r = this.make(t);
|
|
4676
4676
|
return r ? /* @__PURE__ */ i(r, { ...n }) : null;
|
|
4677
4677
|
}
|
|
4678
|
+
all() {
|
|
4679
|
+
return this.icons.map((t) => t.name);
|
|
4680
|
+
}
|
|
4678
4681
|
}
|
|
4679
4682
|
class pi {
|
|
4680
4683
|
getFacadeAccessor() {
|
package/package.json
CHANGED