codesaaz-core 0.0.57 → 0.0.58
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/codesaaz.es.js +11 -9
- package/dist/codesaaz.umd.js +19 -19
- package/package.json +1 -1
package/dist/codesaaz.es.js
CHANGED
|
@@ -18027,7 +18027,7 @@ const dv = { class: "editable-label-editing flex items-center gap-2 w-full" }, K
|
|
|
18027
18027
|
modelValue: a.value,
|
|
18028
18028
|
"onUpdate:modelValue": h[0] || (h[0] = (S) => a.value = S),
|
|
18029
18029
|
options: c.value,
|
|
18030
|
-
filter:
|
|
18030
|
+
filter: r.options.length == 0,
|
|
18031
18031
|
optionLabel: s.value,
|
|
18032
18032
|
optionValue: u.value,
|
|
18033
18033
|
placeholder: "Select an option",
|
|
@@ -18044,10 +18044,10 @@ const dv = { class: "editable-label-editing flex items-center gap-2 w-full" }, K
|
|
|
18044
18044
|
])
|
|
18045
18045
|
]),
|
|
18046
18046
|
_: 1
|
|
18047
|
-
}, 8, ["modelValue", "options", "optionLabel", "optionValue"]);
|
|
18047
|
+
}, 8, ["modelValue", "options", "filter", "optionLabel", "optionValue"]);
|
|
18048
18048
|
};
|
|
18049
18049
|
}
|
|
18050
|
-
}, co = /* @__PURE__ */ ot(gv, [["__scopeId", "data-v-
|
|
18050
|
+
}, co = /* @__PURE__ */ ot(gv, [["__scopeId", "data-v-4c67a527"]]), hv = "/api/app/v1/${appid}/entity", Ga = {
|
|
18051
18051
|
__name: "EntityRecordSelection",
|
|
18052
18052
|
props: /* @__PURE__ */ Xe({
|
|
18053
18053
|
valueField: {
|
|
@@ -23989,12 +23989,14 @@ function Fw() {
|
|
|
23989
23989
|
const { get: t, post: e, put: n, del: o } = an();
|
|
23990
23990
|
return {
|
|
23991
23991
|
getActiveUser: async () => await t("/users/me"),
|
|
23992
|
-
getAppSecurity: async (
|
|
23993
|
-
enableAppSecurity: async (
|
|
23994
|
-
getAppSecurityRules: async (
|
|
23995
|
-
saveAppSecurityRule: async (
|
|
23996
|
-
getAppSecurityRoles: async (
|
|
23997
|
-
saveAppSecurityRoles: async (
|
|
23992
|
+
getAppSecurity: async (p) => await t(`/api/app/v1/${p}/security`),
|
|
23993
|
+
enableAppSecurity: async (p, m) => await e(`/api/app/v1/${p}/security/enable`, m),
|
|
23994
|
+
getAppSecurityRules: async (p) => await t(`/api/app/v1/${p}/security/rules`),
|
|
23995
|
+
saveAppSecurityRule: async (p, m) => await e(`/api/app/v1/${p}/security/rules`, m),
|
|
23996
|
+
getAppSecurityRoles: async (p) => await t(`/api/app/v1/${p}/security/roles`),
|
|
23997
|
+
saveAppSecurityRoles: async (p, m) => await e(`/api/app/v1/${p}/security/roles`, m),
|
|
23998
|
+
getAppSecurityPermissions: async (p) => await t(`/api/app/v1/${p}/security/permission`),
|
|
23999
|
+
saveAppSecurityPermission: async (p, m) => await e(`/api/app/v1/${p}/security/permission`, m)
|
|
23998
24000
|
};
|
|
23999
24001
|
}
|
|
24000
24002
|
function Aw() {
|