@das-fed/web 7.1.0-dev.30 → 7.1.0-dev.31
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/index-BJDVxFOS.js +18215 -0
- package/index-BJDVxFOS.js.gz +0 -0
- package/{packages/main-app-framework/index-cz4bW5fK.js → index-C2e_Is65.js} +1 -1
- package/{packages/main-app-framework/index-D8jnUW9X.js → index-Dad2ayuK.js} +1 -1
- package/index-Dad2ayuK.js.gz +0 -0
- package/index.js +32 -7
- package/package.json +6 -6
- package/packages/create-das-web-app/index.js +58 -1
- package/packages/i18n/index.js +175 -1
- package/packages/layout/index.js +785 -2
- package/packages/layout/index.js.gz +0 -0
- package/packages/main-app-framework/index-BLOwaLgb.js +10 -0
- package/packages/main-app-framework/{index-Ej8LG4Wi.js → index-CuDzwEwX.js} +709 -709
- package/packages/main-app-framework/index-CuDzwEwX.js.gz +0 -0
- package/packages/main-app-framework/index-CwPhZ7VL.js +88 -0
- package/packages/main-app-framework/index-CwPhZ7VL.js.gz +0 -0
- package/packages/main-app-framework/index.js +7 -2
- package/packages/micro-frontend/index.js +848 -2
- package/packages/micro-frontend/index.js.gz +0 -0
- package/packages/style/index.js +5 -3
- package/packages/theme/index.js +75 -2
- package/style.css +7 -0
- package/style.css.gz +0 -0
- package/packages/create-das-web-app/runtime.js +0 -58
- package/packages/i18n/runtime.js +0 -175
- package/packages/layout/runtime.js +0 -784
- package/packages/layout/runtime.js.gz +0 -0
- package/packages/main-app-framework/index-D8jnUW9X.js.gz +0 -0
- package/packages/main-app-framework/index-Ej8LG4Wi.js.gz +0 -0
- package/packages/main-app-framework/runtime.js +0 -6
- package/packages/micro-frontend/runtime.js +0 -847
- package/packages/micro-frontend/runtime.js.gz +0 -0
- package/packages/style/runtime.js +0 -4
- package/packages/theme/runtime.js +0 -75
- /package/packages/create-das-web-app/{runtime.js.gz → index.js.gz} +0 -0
- /package/packages/i18n/{runtime.js.gz → index.js.gz} +0 -0
- /package/packages/theme/{runtime.js.gz → index.js.gz} +0 -0
|
Binary file
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
import { ref as h, computed as b } from "vue";
|
|
2
|
-
const d = h("light"), i = h({
|
|
3
|
-
light: {},
|
|
4
|
-
dark: {}
|
|
5
|
-
}), u = h({
|
|
6
|
-
light: {},
|
|
7
|
-
dark: {}
|
|
8
|
-
}), v = "dasTheme", r = "das-theme", y = (t) => {
|
|
9
|
-
let e = {
|
|
10
|
-
light: {},
|
|
11
|
-
dark: {}
|
|
12
|
-
};
|
|
13
|
-
if (!t) return e;
|
|
14
|
-
const { light: l = {}, dark: n = {}, base: a = {}, ...s } = t || {};
|
|
15
|
-
e.light = { ...l, ...a }, e.dark = n || {};
|
|
16
|
-
for (const o in s) {
|
|
17
|
-
const c = s[o];
|
|
18
|
-
if (typeof c == "string" && (e.light[o] = c), typeof c == "object")
|
|
19
|
-
for (const m in c)
|
|
20
|
-
e[m] || (e[m] = {}), e[m][o] || (e[m][o] = {}), e[m][o] = c[m];
|
|
21
|
-
}
|
|
22
|
-
return e;
|
|
23
|
-
};
|
|
24
|
-
function T(t) {
|
|
25
|
-
const e = "das-global-theme", l = "das-custom-theme";
|
|
26
|
-
if (!document.getElementById(l)) {
|
|
27
|
-
const a = document.createElement("style");
|
|
28
|
-
a.appendChild(document.createTextNode("")), a.setAttribute("id", l), document.head.appendChild(a);
|
|
29
|
-
}
|
|
30
|
-
if (!document.getElementById(e)) {
|
|
31
|
-
const a = document.createElement("style");
|
|
32
|
-
a.appendChild(document.createTextNode("")), a.setAttribute("id", e), document.head.appendChild(a);
|
|
33
|
-
}
|
|
34
|
-
t || (t = "custom");
|
|
35
|
-
let n = document.getElementById(l);
|
|
36
|
-
return t === "global" && (n = document.getElementById(e)), n.sheet;
|
|
37
|
-
}
|
|
38
|
-
const g = (t, e) => {
|
|
39
|
-
e || (e = "custom");
|
|
40
|
-
const l = T(e), n = y(t);
|
|
41
|
-
for (const s in n) {
|
|
42
|
-
const o = n[s];
|
|
43
|
-
for (const c in o) {
|
|
44
|
-
const m = o[c], f = `${r}-${s}`;
|
|
45
|
-
l.insertRule(`.${f} { ${c}:${m} } `, l.cssRules.length);
|
|
46
|
-
}
|
|
47
|
-
e === "global" && (u.value[s] || (u.value[s] = {}), u.value[s] = { ...u.value[s], ...o }), e === "custom" && (i.value[s] || (i.value[s] = {}), i.value[s] = { ...i.value[s], ...o });
|
|
48
|
-
}
|
|
49
|
-
const a = `${r}-${d.value}`;
|
|
50
|
-
document.body.classList.contains(a) || document.body.classList.add(a);
|
|
51
|
-
}, D = async (t) => {
|
|
52
|
-
var n, a;
|
|
53
|
-
const e = window[v];
|
|
54
|
-
e && g(e, "global");
|
|
55
|
-
let l = Object.assign(((n = t == null ? void 0 : t.theme) == null ? void 0 : n.glob) || {});
|
|
56
|
-
(a = t == null ? void 0 : t.microApps) == null || a.map((s) => {
|
|
57
|
-
var o;
|
|
58
|
-
l = Object.assign(l, ((o = s.theme) == null ? void 0 : o.glob) || {});
|
|
59
|
-
}), Object.values(l).filter((s) => !!s).flat().map((s) => g(s));
|
|
60
|
-
}, C = (t) => {
|
|
61
|
-
document.body.classList.add(`${r}-light`), t === "light" && document.body.classList.remove(`${r}-${d.value}`), d.value = t, document.body.classList.add(`${r}-${d.value}`);
|
|
62
|
-
}, $ = (t) => b(() => {
|
|
63
|
-
var e, l, n, a;
|
|
64
|
-
return ((l = (e = u.value) == null ? void 0 : e[d.value]) == null ? void 0 : l[t]) || ((a = (n = i.value) == null ? void 0 : n[d.value]) == null ? void 0 : a[t]) || t;
|
|
65
|
-
}), E = (t) => `var(${t})`, R = $, x = {};
|
|
66
|
-
export {
|
|
67
|
-
d as currentTheme,
|
|
68
|
-
x as default,
|
|
69
|
-
$ as getThemeRule,
|
|
70
|
-
E as getVar,
|
|
71
|
-
R as getVarValue,
|
|
72
|
-
D as initTheme,
|
|
73
|
-
C as setTheme,
|
|
74
|
-
g as setThemeRule
|
|
75
|
-
};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|