xmlui 0.6.2-beta.7 → 0.6.3-beta.8
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/{apiInterceptorWorker-BA19XPlq.mjs → apiInterceptorWorker-DWQMI2Uj.mjs} +11 -7
- package/dist/{index-CKGVnDJW.mjs → index-CdzFKPyG.mjs} +7752 -7680
- package/dist/scripts/bin/vite-ueml-plugin.js +10 -2
- package/dist/scripts/src/components-core/xmlui-parser.js +118 -0
- package/dist/scripts/src/parsers/scripting/ParserError.js +1 -1
- package/dist/scripts/src/parsers/scripting/code-behind-collect.js +46 -15
- package/dist/scripts/src/parsers/scripting/modules.js +11 -45
- package/dist/scripts/src/parsers/xmlui-parser/transform.js +1 -1
- package/dist/xmlui-metadata.mjs +73 -72
- package/dist/xmlui-metadata.umd.js +1 -1
- package/dist/xmlui-standalone.umd.js +241 -990
- package/dist/xmlui.mjs +1 -1
- package/dist/xmlui.umd.js +82 -82
- package/package.json +1 -1
- package/dist/scripts/src/components-core/theming/themes/base-utils.js +0 -31
|
@@ -7,7 +7,7 @@ var $ = (e, t, r) => Lr(e, typeof t != "symbol" ? t + "" : t, r), ve = (e, t, r)
|
|
|
7
7
|
var Q = (e, t, r) => (ve(e, t, "read from private field"), r ? r.call(e) : t.get(e)), Ee = (e, t, r) => t.has(e) ? Be("Cannot add the same private member more than once") : t instanceof WeakSet ? t.add(e) : t.set(e, r), Ve = (e, t, r, s) => (ve(e, t, "write to private field"), s ? s.call(e, r) : t.set(e, r), r), ie = (e, t, r) => (ve(e, t, "access private method"), r);
|
|
8
8
|
import { isArray as It, isObject as Nt, mapValues as Sr } from "lodash-es";
|
|
9
9
|
import { delay as Dr, HttpResponse as K, http as Cr } from "msw";
|
|
10
|
-
import { r as qr, d as Mr, m as $r, a as Ur, g as jr, o as we, T as Fr } from "./index-
|
|
10
|
+
import { r as qr, d as Mr, m as $r, a as Ur, g as jr, o as we, T as Fr } from "./index-CdzFKPyG.mjs";
|
|
11
11
|
import We from "dexie";
|
|
12
12
|
var Br = /(%?)(%([sdijo]))/g;
|
|
13
13
|
function Vr(e, t) {
|
|
@@ -6365,16 +6365,20 @@ function ca(e) {
|
|
|
6365
6365
|
let i = [n.url];
|
|
6366
6366
|
It(n.url) && (i = n.url), i.forEach((a) => {
|
|
6367
6367
|
r.push(
|
|
6368
|
-
Cr[n.method](
|
|
6368
|
+
Cr[n.method](
|
|
6369
|
+
`${e.getApiUrl()}${a}`,
|
|
6370
|
+
async ({ request: l, cookies: o, params: c }) => await e.executeOperation(s, l, o, c)
|
|
6371
|
+
)
|
|
6369
6372
|
);
|
|
6370
6373
|
});
|
|
6371
6374
|
}), r;
|
|
6372
6375
|
}
|
|
6373
|
-
const fa = async (e) => {
|
|
6374
|
-
const
|
|
6375
|
-
await
|
|
6376
|
-
const
|
|
6377
|
-
|
|
6376
|
+
const fa = async (e, t) => {
|
|
6377
|
+
const r = new aa(e);
|
|
6378
|
+
await r.initialize();
|
|
6379
|
+
const s = ca(r);
|
|
6380
|
+
let n = t;
|
|
6381
|
+
return n || (n = Jo()), n.use(...s), n;
|
|
6378
6382
|
};
|
|
6379
6383
|
export {
|
|
6380
6384
|
fa as createApiInterceptorWorker
|