x-essential-lib 0.6.6 → 0.7.0
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/components/confirmDlg/index.vue.d.ts +1 -1
- package/dist/components/loading/index.vue.d.ts +2 -23
- package/dist/components/message/index.vue.d.ts +1 -1
- package/dist/components/message/item.vue.d.ts +4 -25
- package/dist/components/promptDlg/index.vue.d.ts +1 -1
- package/dist/components/waitDlg/index.vue.d.ts +1 -1
- package/dist/composables/viewStack.d.ts +1 -1
- package/dist/index.js +250 -250
- package/dist/store/global.d.ts +15 -15
- package/dist/store/viewMgr.d.ts +3 -3
- package/dist/utils/router.d.ts +2 -2
- package/package.json +6 -6
- package/dist/utils/globalState.d.ts +0 -16
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
|
2
2
|
export default _default;
|
|
@@ -1,28 +1,7 @@
|
|
|
1
1
|
interface Props {
|
|
2
2
|
zIndex?: number;
|
|
3
3
|
}
|
|
4
|
-
declare const _default: import("vue").DefineComponent<
|
|
4
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props & {}>, {
|
|
5
5
|
zIndex: number;
|
|
6
|
-
}
|
|
7
|
-
zIndex: number;
|
|
8
|
-
}>>>, {
|
|
9
|
-
zIndex: number;
|
|
10
|
-
}, {}>;
|
|
6
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
|
|
11
7
|
export default _default;
|
|
12
|
-
type __VLS_WithDefaults<P, D> = {
|
|
13
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
14
|
-
default: D[K];
|
|
15
|
-
}> : P[K];
|
|
16
|
-
};
|
|
17
|
-
type __VLS_Prettify<T> = {
|
|
18
|
-
[K in keyof T]: T[K];
|
|
19
|
-
} & {};
|
|
20
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
21
|
-
type __VLS_TypePropsToOption<T> = {
|
|
22
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
23
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
24
|
-
} : {
|
|
25
|
-
type: import('vue').PropType<T[K]>;
|
|
26
|
-
required: true;
|
|
27
|
-
};
|
|
28
|
-
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
|
2
2
|
export default _default;
|
|
@@ -5,32 +5,11 @@ interface Props {
|
|
|
5
5
|
text: string;
|
|
6
6
|
timeout: number;
|
|
7
7
|
}
|
|
8
|
-
declare const _default: import("vue").DefineComponent<
|
|
9
|
-
timeout: number;
|
|
10
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
9
|
timeout: (...args: any[]) => void;
|
|
12
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
13
|
-
timeout: number;
|
|
14
|
-
}>>> & {
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<Props & {
|
|
15
11
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
16
|
-
}
|
|
12
|
+
}>, {
|
|
17
13
|
timeout: number;
|
|
18
|
-
}, {}>;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
|
|
19
15
|
export default _default;
|
|
20
|
-
type __VLS_WithDefaults<P, D> = {
|
|
21
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
22
|
-
default: D[K];
|
|
23
|
-
}> : P[K];
|
|
24
|
-
};
|
|
25
|
-
type __VLS_Prettify<T> = {
|
|
26
|
-
[K in keyof T]: T[K];
|
|
27
|
-
} & {};
|
|
28
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
29
|
-
type __VLS_TypePropsToOption<T> = {
|
|
30
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
31
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
32
|
-
} : {
|
|
33
|
-
type: import('vue').PropType<T[K]>;
|
|
34
|
-
required: true;
|
|
35
|
-
};
|
|
36
|
-
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
|
2
2
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}>;
|
|
2
2
|
export default _default;
|
package/dist/index.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
(function(){"use strict";try{if(typeof document<"u"){var a=document.createElement("style");a.id="x-essential-lib",a.appendChild(document.createTextNode('.x-cont[data-v-7ab74c70]{position:absolute;top:0;left:0;bottom:0;right:0;display:flex;align-items:center;justify-content:center}.lds-spinner[data-v-7ab74c70]{color:official;display:inline-block;position:relative;width:40px;height:40px}.lds-spinner div[data-v-7ab74c70]{transform-origin:20px 20px;animation:lds-spinner-7ab74c70 1.2s linear infinite}.lds-spinner div[data-v-7ab74c70]:after{content:" ";display:block;position:absolute;top:3px;left:18px;width:2px;height:6px;border-radius:5%;background:#9e9e9e}.lds-spinner div[data-v-7ab74c70]:nth-child(1){transform:rotate(0);animation-delay:-1.1s}.lds-spinner div[data-v-7ab74c70]:nth-child(2){transform:rotate(30deg);animation-delay:-1s}.lds-spinner div[data-v-7ab74c70]:nth-child(3){transform:rotate(60deg);animation-delay:-.9s}.lds-spinner div[data-v-7ab74c70]:nth-child(4){transform:rotate(90deg);animation-delay:-.8s}.lds-spinner div[data-v-7ab74c70]:nth-child(5){transform:rotate(120deg);animation-delay:-.7s}.lds-spinner div[data-v-7ab74c70]:nth-child(6){transform:rotate(150deg);animation-delay:-.6s}.lds-spinner div[data-v-7ab74c70]:nth-child(7){transform:rotate(180deg);animation-delay:-.5s}.lds-spinner div[data-v-7ab74c70]:nth-child(8){transform:rotate(210deg);animation-delay:-.4s}.lds-spinner div[data-v-7ab74c70]:nth-child(9){transform:rotate(240deg);animation-delay:-.3s}.lds-spinner div[data-v-7ab74c70]:nth-child(10){transform:rotate(270deg);animation-delay:-.2s}.lds-spinner div[data-v-7ab74c70]:nth-child(11){transform:rotate(300deg);animation-delay:-.1s}.lds-spinner div[data-v-7ab74c70]:nth-child(12){transform:rotate(330deg);animation-delay:0s}@keyframes lds-spinner-7ab74c70{0%{opacity:1}to{opacity:0}}.x-item[data-v-d5cfe252]{width:600px}@media (max-width: 600px){.x-item[data-v-d5cfe252]{width:calc(100vw - 16px)}}.x-cont[data-v-d525e6f5]{position:absolute;left:50%;bottom:20px;transform:translate(-50%);z-index:9999}')),document.head.appendChild(a)}}catch(t){console.error("vite-plugin-css-injected-by-js",t)}})();
|
|
2
|
-
import { ref as d, defineComponent as T, computed as g, onMounted as V, onBeforeUnmount as I, watch as Z, resolveComponent as h, openBlock as D, createBlock as O, withKeys as F, withModifiers as W, withCtx as w, createVNode as C, createTextVNode as E, toDisplayString as q, createElementBlock as Q, normalizeStyle as
|
|
2
|
+
import { ref as d, defineComponent as T, computed as g, onMounted as V, onBeforeUnmount as I, watch as Z, resolveComponent as h, openBlock as D, createBlock as O, withKeys as F, withModifiers as W, withCtx as w, createVNode as C, createTextVNode as E, toDisplayString as q, createElementBlock as Q, normalizeStyle as re, createElementVNode as v, createCommentVNode as ne, unref as le, Fragment as fe, renderList as ge, getCurrentScope as ve, onScopeDispose as me, watchEffect as he, getCurrentInstance as we } from "vue";
|
|
3
3
|
import { useI18n as Y } from "vue-i18n";
|
|
4
4
|
import { defineStore as ce } from "pinia";
|
|
5
|
-
import
|
|
6
|
-
import { useRouter as ue, useRoute as
|
|
7
|
-
import { useTheme as P, useDisplay as
|
|
5
|
+
import ye from "axios";
|
|
6
|
+
import { useRouter as ue, useRoute as xe } from "vue-router";
|
|
7
|
+
import { useTheme as P, useDisplay as ke } from "vuetify";
|
|
8
8
|
const G = ce("global", () => {
|
|
9
|
-
const e = d(), o = d("en"), t = d({}),
|
|
9
|
+
const e = d(), o = d("en"), t = d({}), r = d(""), a = d("");
|
|
10
10
|
return {
|
|
11
11
|
dark: e,
|
|
12
12
|
locale: o,
|
|
13
13
|
permissionObjects: t,
|
|
14
|
-
permissionChecksum:
|
|
14
|
+
permissionChecksum: r,
|
|
15
15
|
lastAppPath: a
|
|
16
16
|
};
|
|
17
|
-
}),
|
|
17
|
+
}), H = ce("viewMgr", () => {
|
|
18
18
|
const e = d([]);
|
|
19
19
|
function o() {
|
|
20
20
|
return e.value.length <= 0;
|
|
@@ -24,7 +24,7 @@ const G = ce("global", () => {
|
|
|
24
24
|
if (u > 0)
|
|
25
25
|
return e.value[u - 1];
|
|
26
26
|
}
|
|
27
|
-
function
|
|
27
|
+
function r(u) {
|
|
28
28
|
return e.value.find((s) => s === u) !== void 0;
|
|
29
29
|
}
|
|
30
30
|
function a(u) {
|
|
@@ -35,7 +35,7 @@ const G = ce("global", () => {
|
|
|
35
35
|
const s = e.value.findIndex((_) => _ === u);
|
|
36
36
|
s !== -1 && e.value.splice(s, 1);
|
|
37
37
|
}
|
|
38
|
-
function
|
|
38
|
+
function n() {
|
|
39
39
|
console.assert(e.value.length > 0), e.value.pop();
|
|
40
40
|
}
|
|
41
41
|
function c() {
|
|
@@ -45,10 +45,10 @@ const G = ce("global", () => {
|
|
|
45
45
|
views: e,
|
|
46
46
|
isEmpty: o,
|
|
47
47
|
lastView: t,
|
|
48
|
-
hasView:
|
|
48
|
+
hasView: r,
|
|
49
49
|
addView: a,
|
|
50
50
|
delView: l,
|
|
51
|
-
popView:
|
|
51
|
+
popView: n,
|
|
52
52
|
clearViews: c
|
|
53
53
|
};
|
|
54
54
|
});
|
|
@@ -56,12 +56,12 @@ const G = ce("global", () => {
|
|
|
56
56
|
function X(e) {
|
|
57
57
|
for (var o = 1; o < arguments.length; o++) {
|
|
58
58
|
var t = arguments[o];
|
|
59
|
-
for (var
|
|
60
|
-
e[
|
|
59
|
+
for (var r in t)
|
|
60
|
+
e[r] = t[r];
|
|
61
61
|
}
|
|
62
62
|
return e;
|
|
63
63
|
}
|
|
64
|
-
var
|
|
64
|
+
var Ce = {
|
|
65
65
|
read: function(e) {
|
|
66
66
|
return e[0] === '"' && (e = e.slice(1, -1)), e.replace(/(%[\dA-F]{2})+/gi, decodeURIComponent);
|
|
67
67
|
},
|
|
@@ -73,33 +73,33 @@ var De = {
|
|
|
73
73
|
}
|
|
74
74
|
};
|
|
75
75
|
function J(e, o) {
|
|
76
|
-
function t(a, l,
|
|
76
|
+
function t(a, l, n) {
|
|
77
77
|
if (!(typeof document > "u")) {
|
|
78
|
-
|
|
78
|
+
n = X({}, o, n), typeof n.expires == "number" && (n.expires = new Date(Date.now() + n.expires * 864e5)), n.expires && (n.expires = n.expires.toUTCString()), a = encodeURIComponent(a).replace(/%(2[346B]|5E|60|7C)/g, decodeURIComponent).replace(/[()]/g, escape);
|
|
79
79
|
var c = "";
|
|
80
|
-
for (var u in
|
|
81
|
-
|
|
80
|
+
for (var u in n)
|
|
81
|
+
n[u] && (c += "; " + u, n[u] !== !0 && (c += "=" + n[u].split(";")[0]));
|
|
82
82
|
return document.cookie = a + "=" + e.write(l, a) + c;
|
|
83
83
|
}
|
|
84
84
|
}
|
|
85
|
-
function
|
|
85
|
+
function r(a) {
|
|
86
86
|
if (!(typeof document > "u" || arguments.length && !a)) {
|
|
87
|
-
for (var l = document.cookie ? document.cookie.split("; ") : [],
|
|
87
|
+
for (var l = document.cookie ? document.cookie.split("; ") : [], n = {}, c = 0; c < l.length; c++) {
|
|
88
88
|
var u = l[c].split("="), s = u.slice(1).join("=");
|
|
89
89
|
try {
|
|
90
90
|
var _ = decodeURIComponent(u[0]);
|
|
91
|
-
if (
|
|
91
|
+
if (n[_] = e.read(s, _), a === _)
|
|
92
92
|
break;
|
|
93
93
|
} catch {
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
|
-
return a ?
|
|
96
|
+
return a ? n[a] : n;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
99
|
return Object.create(
|
|
100
100
|
{
|
|
101
101
|
set: t,
|
|
102
|
-
get:
|
|
102
|
+
get: r,
|
|
103
103
|
remove: function(a, l) {
|
|
104
104
|
t(
|
|
105
105
|
a,
|
|
@@ -122,80 +122,80 @@ function J(e, o) {
|
|
|
122
122
|
}
|
|
123
123
|
);
|
|
124
124
|
}
|
|
125
|
-
var j = J(
|
|
126
|
-
function
|
|
127
|
-
const o =
|
|
125
|
+
var j = J(Ce, { path: "/" });
|
|
126
|
+
function vt(e) {
|
|
127
|
+
const o = ye.create({
|
|
128
128
|
timeout: 6e3
|
|
129
129
|
});
|
|
130
130
|
return o.defaults.baseURL = e.baseUrl, o.interceptors.request.use(
|
|
131
|
-
(t) =>
|
|
131
|
+
(t) => be(t),
|
|
132
132
|
(t) => {
|
|
133
|
-
|
|
133
|
+
De(t, e.onError);
|
|
134
134
|
}
|
|
135
135
|
), o.interceptors.response.use(
|
|
136
|
-
(t) =>
|
|
137
|
-
(t) =>
|
|
136
|
+
(t) => Le(t),
|
|
137
|
+
(t) => Ve(t, e.onError)
|
|
138
138
|
), o;
|
|
139
139
|
}
|
|
140
|
-
function
|
|
140
|
+
function be(e) {
|
|
141
141
|
const o = j.get("accessToken") ?? "";
|
|
142
142
|
return e.headers.Authorization = "Basic " + o, e.headers["Content-Type"] = "application/json", e.data = JSON.stringify(e.data), e;
|
|
143
143
|
}
|
|
144
|
-
function
|
|
144
|
+
function De(e, o) {
|
|
145
145
|
console.error(e), o("request timeout");
|
|
146
146
|
}
|
|
147
|
-
function
|
|
147
|
+
function Le(e) {
|
|
148
148
|
return e.data;
|
|
149
149
|
}
|
|
150
|
-
function
|
|
150
|
+
function Ve(e, o) {
|
|
151
151
|
var a;
|
|
152
152
|
const t = e.response;
|
|
153
153
|
if (!t)
|
|
154
154
|
return Promise.reject(e);
|
|
155
|
-
t.status === 401 &&
|
|
156
|
-
let
|
|
157
|
-
return
|
|
155
|
+
t.status === 401 && Me();
|
|
156
|
+
let r = (a = t.data) == null ? void 0 : a.message;
|
|
157
|
+
return r || (r = {
|
|
158
158
|
code: t.status,
|
|
159
159
|
message: t.statusText
|
|
160
|
-
}), o(
|
|
160
|
+
}), o(r), Promise.reject(e);
|
|
161
161
|
}
|
|
162
|
-
function
|
|
162
|
+
function Me() {
|
|
163
163
|
j.remove("accessToken"), j.remove("refreshToken"), j.remove("activeOrg"), ue().replace({ path: "/passport/login" });
|
|
164
164
|
}
|
|
165
|
-
function
|
|
165
|
+
function Se(e) {
|
|
166
166
|
return { all: e = e || /* @__PURE__ */ new Map(), on: function(o, t) {
|
|
167
|
-
var
|
|
168
|
-
|
|
167
|
+
var r = e.get(o);
|
|
168
|
+
r ? r.push(t) : e.set(o, [t]);
|
|
169
169
|
}, off: function(o, t) {
|
|
170
|
-
var
|
|
171
|
-
|
|
170
|
+
var r = e.get(o);
|
|
171
|
+
r && (t ? r.splice(r.indexOf(t) >>> 0, 1) : e.set(o, []));
|
|
172
172
|
}, emit: function(o, t) {
|
|
173
|
-
var
|
|
174
|
-
|
|
173
|
+
var r = e.get(o);
|
|
174
|
+
r && r.slice().map(function(a) {
|
|
175
175
|
a(t);
|
|
176
|
-
}), (
|
|
176
|
+
}), (r = e.get("*")) && r.slice().map(function(a) {
|
|
177
177
|
a(o, t);
|
|
178
178
|
});
|
|
179
179
|
} };
|
|
180
180
|
}
|
|
181
181
|
const p = function() {
|
|
182
|
-
return window.eventBus || (window.eventBus =
|
|
182
|
+
return window.eventBus || (window.eventBus = Se()), window.eventBus;
|
|
183
183
|
}();
|
|
184
|
-
async function
|
|
184
|
+
async function mt(e) {
|
|
185
185
|
return new Promise((o) => {
|
|
186
186
|
setTimeout(o, e);
|
|
187
187
|
});
|
|
188
188
|
}
|
|
189
189
|
async function ee(e, o, t) {
|
|
190
|
-
const
|
|
190
|
+
const r = Date.now();
|
|
191
191
|
return new Promise((a) => {
|
|
192
192
|
const l = async () => {
|
|
193
|
-
e() ? a(!0) : o && Date.now() -
|
|
193
|
+
e() ? a(!0) : o && Date.now() - r > o ? a(!1) : setTimeout(l, t ?? 30);
|
|
194
194
|
};
|
|
195
195
|
l();
|
|
196
196
|
});
|
|
197
197
|
}
|
|
198
|
-
function
|
|
198
|
+
function Ae(e, o) {
|
|
199
199
|
const t = document.getElementById("single-spa-application:" + e);
|
|
200
200
|
t && (t.classList.remove("app-left", "app-right", "app-reset"), o ? t.classList.add("app-left") : t.classList.add("app-right"), setTimeout(() => {
|
|
201
201
|
t.classList.add("app-reset");
|
|
@@ -206,47 +206,47 @@ function pe() {
|
|
|
206
206
|
const e = Date.now();
|
|
207
207
|
return e - oe > 500 ? (oe = e, !0) : !1;
|
|
208
208
|
}
|
|
209
|
-
let
|
|
209
|
+
let qe = 0;
|
|
210
210
|
function se() {
|
|
211
|
-
return ++
|
|
211
|
+
return ++qe;
|
|
212
212
|
}
|
|
213
|
-
async function
|
|
213
|
+
async function ht(e) {
|
|
214
214
|
if (!pe())
|
|
215
215
|
return;
|
|
216
216
|
let o = !1, t;
|
|
217
|
-
const
|
|
217
|
+
const r = (l) => {
|
|
218
218
|
t = l, o = !0;
|
|
219
219
|
}, a = se();
|
|
220
|
-
return p.on("confirmDlgResult" + a,
|
|
220
|
+
return p.on("confirmDlgResult" + a, r), p.emit("confirmDlg", { ...e, seq: a }), await ee(() => o), p.off("confirmDlgResult" + a, r), t;
|
|
221
221
|
}
|
|
222
|
-
async function
|
|
222
|
+
async function wt(e) {
|
|
223
223
|
if (!pe())
|
|
224
224
|
return;
|
|
225
225
|
let o = !1, t;
|
|
226
|
-
const
|
|
226
|
+
const r = (l) => {
|
|
227
227
|
t = l, o = !0;
|
|
228
228
|
}, a = se();
|
|
229
|
-
return p.on("promptDlgResult" + a,
|
|
229
|
+
return p.on("promptDlgResult" + a, r), p.emit("promptDlg", { ...e, seq: a }), await ee(() => o), p.off("promptDlgResult" + a, r), t;
|
|
230
230
|
}
|
|
231
|
-
function
|
|
231
|
+
function yt(e) {
|
|
232
232
|
p.emit("openWaitDlg", { text: e });
|
|
233
233
|
}
|
|
234
|
-
function
|
|
234
|
+
function xt() {
|
|
235
235
|
p.emit("closeWaitDlg");
|
|
236
236
|
}
|
|
237
|
-
function
|
|
237
|
+
function kt(e, o) {
|
|
238
238
|
p.emit("message", { type: "error", text: e, timeout: o });
|
|
239
239
|
}
|
|
240
|
-
function
|
|
240
|
+
function Ct(e, o) {
|
|
241
241
|
p.emit("message", { type: "info", text: e, timeout: o });
|
|
242
242
|
}
|
|
243
|
-
function
|
|
243
|
+
function bt(e, o) {
|
|
244
244
|
p.emit("message", { type: "success", text: e, timeout: o });
|
|
245
245
|
}
|
|
246
|
-
function
|
|
246
|
+
function Dt(e, o) {
|
|
247
247
|
p.emit("message", { type: "warning", text: e, timeout: o });
|
|
248
248
|
}
|
|
249
|
-
var
|
|
249
|
+
var Re = /* @__PURE__ */ ((e) => (e.list_app_group = "list_app_group", e.create_app_group = "create_app_group", e.delete_app_group = "delete_app_group", e.update_app_group = "update_app_group", e.arrange_app_group = "arrange_app_group", e.list_app = "list_app", e.get_app = "get_app", e.create_app = "create_app", e.delete_app = "delete_app", e.update_app = "update_app", e.list_app_release = "list_app_release", e.get_app_release = "get_app_release", e.create_app_release = "create_app_release", e.delete_app_release = "delete_app_release", e.deploy_app_release = "deploy_app_release", e.open_app_layer = "open_app_layer", e.open_app = "open_app", e.list_compute_space = "list_compute_space", e.get_compute_space = "get_compute_space", e.create_compute_space = "create_compute_space", e.delete_compute_space = "delete_compute_space", e.update_compute_space = "update_compute_space", e.arrange_compute_space = "arrange_compute_space", e.list_func_group = "list_func_group", e.create_func_group = "create_func_group", e.delete_func_group = "delete_func_group", e.update_func_group = "update_func_group", e.arrange_func_group = "arrange_func_group", e.list_func = "list_func", e.get_func = "get_func", e.create_func = "create_func", e.delete_func = "delete_func", e.update_func = "update_func", e.debug_func = "debug_func", e.call_func = "call_func", e.list_func_release = "list_func_release", e.get_func_release = "get_func_release", e.create_func_release = "create_func_release", e.delete_func_release = "delete_func_release", e.deploy_func_release = "deploy_func_release", e.list_flow_group = "list_flow_group", e.create_flow_group = "create_flow_group", e.delete_flow_group = "delete_flow_group", e.update_flow_group = "update_flow_group", e.arrange_flow_group = "arrange_flow_group", e.list_flow = "list_flow", e.get_flow = "get_flow", e.create_flow = "create_flow", e.delete_flow = "delete_flow", e.update_flow = "update_flow", e.call_flow = "call_flow", e.list_flow_release = "list_flow_release", e.get_flow_release = "get_flow_release", e.create_flow_release = "create_flow_release", e.delete_flow_release = "delete_flow_release", e.deploy_flow_release = "deploy_flow_release", e.list_task = "list_task", e.get_task = "get_task", e.create_task = "create_task", e.delete_task = "delete_task", e.update_task = "update_task", e.call_task = "call_task", e.open_compute_layer = "open_compute_layer", e.list_data_space = "list_data_space", e.get_data_space = "get_data_space", e.create_data_space = "create_data_space", e.delete_data_space = "delete_data_space", e.update_data_space = "update_data_space", e.arrange_data_space = "arrange_data_space", e.list_model_group = "list_model_group", e.create_model_group = "create_model_group", e.delete_model_group = "delete_model_group", e.update_model_group = "update_model_group", e.arrange_model_group = "arrange_model_group", e.list_model = "list_model", e.get_model = "get_model", e.create_model = "create_model", e.delete_model = "delete_model", e.update_model = "update_model", e.get_model_data = "get_model_data", e.create_model_data = "create_model_data", e.delete_model_data = "delete_model_data", e.update_model_data = "update_model_data", e.get_graph = "get_graph", e.update_graph = "update_graph", e.list_change = "list_change", e.apply_change = "apply_change", e.open_data_layer = "open_data_layer", e.list_resource_space = "list_resource_space", e.get_resource_space = "get_resource_space", e.create_resource_space = "create_resource_space", e.delete_resource_space = "delete_resource_space", e.update_resource_space = "update_resource_space", e.arrange_resource_space = "arrange_resource_space", e.list_dir = "list_dir", e.create_dir = "create_dir", e.delete_dir = "delete_dir", e.update_dir = "update_dir", e.move_dir = "move_dir", e.list_resource = "list_resource", e.get_resource = "get_resource", e.create_resource = "create_resource", e.delete_resource = "delete_resource", e.update_resource = "update_resource", e.move_resource = "move_resource", e.open_resource_layer = "open_resource_layer", e.list_org_member = "list_org_member", e.add_org_member = "add_org_member", e.remove_org_member = "remove_org_member", e.update_org_member = "update_org_member", e.list_org_role = "list_org_role", e.get_org_role = "get_org_role", e.create_org_role = "create_org_role", e.delete_org_role = "delete_org_role", e.update_org_role = "update_org_role", e.arrange_org_role = "arrange_org_role", e.get_org_structure = "get_org_structure", e.update_org_structure = "update_org_structure", e.filter_model = "filter_model", e))(Re || {});
|
|
250
250
|
function ae(e, o) {
|
|
251
251
|
if (!e)
|
|
252
252
|
return !1;
|
|
@@ -260,7 +260,7 @@ function ae(e, o) {
|
|
|
260
260
|
return !1;
|
|
261
261
|
}), Object.keys(t).length <= 0);
|
|
262
262
|
}
|
|
263
|
-
const
|
|
263
|
+
const Ie = [
|
|
264
264
|
{
|
|
265
265
|
app: "x-passport-mf",
|
|
266
266
|
path: "/passport/login",
|
|
@@ -347,22 +347,22 @@ const Ee = [
|
|
|
347
347
|
requiredState: "org"
|
|
348
348
|
},
|
|
349
349
|
{
|
|
350
|
-
app: "x-
|
|
351
|
-
path: "/
|
|
350
|
+
app: "x-compute-mf",
|
|
351
|
+
path: "/compute",
|
|
352
352
|
level: 1,
|
|
353
353
|
requiredState: "org",
|
|
354
354
|
mainActive: 2
|
|
355
355
|
},
|
|
356
356
|
{
|
|
357
|
-
app: "x-
|
|
358
|
-
path: "/
|
|
357
|
+
app: "x-data-mf",
|
|
358
|
+
path: "/data",
|
|
359
359
|
level: 1,
|
|
360
360
|
requiredState: "org",
|
|
361
361
|
mainActive: 2
|
|
362
362
|
},
|
|
363
363
|
{
|
|
364
|
-
app: "x-
|
|
365
|
-
path: "/
|
|
364
|
+
app: "x-resource-mf",
|
|
365
|
+
path: "/resource",
|
|
366
366
|
level: 1,
|
|
367
367
|
requiredState: "org",
|
|
368
368
|
mainActive: 2
|
|
@@ -370,90 +370,90 @@ const Ee = [
|
|
|
370
370
|
];
|
|
371
371
|
function K(e) {
|
|
372
372
|
let o, t = 0;
|
|
373
|
-
const
|
|
374
|
-
return
|
|
373
|
+
const r = e.split("/").filter((a) => a.trim() !== "");
|
|
374
|
+
return Ie.forEach((a) => {
|
|
375
375
|
const l = a.path.split("/").filter((c) => c.trim() !== "");
|
|
376
|
-
let
|
|
377
|
-
for (let c = 0; c <
|
|
378
|
-
|
|
379
|
-
|
|
376
|
+
let n = 0;
|
|
377
|
+
for (let c = 0; c < r.length && !(c >= l.length || r[c] !== l[c]); c++)
|
|
378
|
+
n++;
|
|
379
|
+
n > 0 && n > t && (o = a, t = n);
|
|
380
380
|
}), o;
|
|
381
381
|
}
|
|
382
382
|
const N = d("");
|
|
383
383
|
function L(e, o) {
|
|
384
384
|
const t = G();
|
|
385
385
|
o === "/" && (o = t.lastAppPath);
|
|
386
|
-
const
|
|
387
|
-
if (!
|
|
386
|
+
const r = K(e), a = K(o);
|
|
387
|
+
if (!r) {
|
|
388
388
|
console.assert(!1);
|
|
389
389
|
return;
|
|
390
390
|
}
|
|
391
391
|
if (console.info(`~~~~routeChange~~~~ ${o} -> ${e}`), !a)
|
|
392
392
|
return;
|
|
393
|
-
const l =
|
|
394
|
-
l ?
|
|
393
|
+
const l = r.app === a.app, n = r.path === a.path, c = r.level >= a.level;
|
|
394
|
+
l ? n ? N.value = "" : N.value = c ? "inner-left" : "inner-right" : (N.value = "", Ae(r.app, c));
|
|
395
395
|
}
|
|
396
|
-
function
|
|
396
|
+
function Oe() {
|
|
397
397
|
return !!j.get("accessToken");
|
|
398
398
|
}
|
|
399
|
-
function
|
|
399
|
+
function Ee() {
|
|
400
400
|
return !!j.get("activeOrg");
|
|
401
401
|
}
|
|
402
|
-
function
|
|
403
|
-
const
|
|
402
|
+
function Lt(e, o, t) {
|
|
403
|
+
const r = Oe(), a = Ee(), l = K(e.path);
|
|
404
404
|
if (!l) {
|
|
405
405
|
console.assert(!1), t();
|
|
406
406
|
return;
|
|
407
407
|
}
|
|
408
408
|
if (l.requiredState === "auth")
|
|
409
|
-
if (
|
|
409
|
+
if (r)
|
|
410
410
|
if (a) {
|
|
411
|
-
const
|
|
412
|
-
L(
|
|
411
|
+
const n = "/main";
|
|
412
|
+
L(n, o.path), t({ path: n });
|
|
413
413
|
} else
|
|
414
414
|
L(e.path, o.path), t();
|
|
415
415
|
else {
|
|
416
|
-
const
|
|
417
|
-
L(
|
|
416
|
+
const n = "/passport/login";
|
|
417
|
+
L(n, o.path), t({ path: n });
|
|
418
418
|
}
|
|
419
419
|
else if (l.requiredState === "org")
|
|
420
|
-
if (
|
|
420
|
+
if (r)
|
|
421
421
|
if (a)
|
|
422
422
|
L(e.path, o.path), t();
|
|
423
423
|
else {
|
|
424
|
-
const
|
|
425
|
-
L(
|
|
424
|
+
const n = "/org/joinOrCreate";
|
|
425
|
+
L(n, o.path), t({ path: n });
|
|
426
426
|
}
|
|
427
427
|
else {
|
|
428
|
-
const
|
|
429
|
-
L(
|
|
428
|
+
const n = "/passport/login";
|
|
429
|
+
L(n, o.path), t({ path: n });
|
|
430
430
|
}
|
|
431
|
-
else if (
|
|
431
|
+
else if (r)
|
|
432
432
|
if (a) {
|
|
433
|
-
const
|
|
434
|
-
L(
|
|
433
|
+
const n = "/main";
|
|
434
|
+
L(n, o.path), t({ path: n });
|
|
435
435
|
} else {
|
|
436
|
-
const
|
|
437
|
-
L(
|
|
436
|
+
const n = "/org/joinOrCreate";
|
|
437
|
+
L(n, o.path), t({ path: n });
|
|
438
438
|
}
|
|
439
439
|
else
|
|
440
440
|
L(e.path, o.path), t();
|
|
441
441
|
}
|
|
442
|
-
const
|
|
442
|
+
const je = /* @__PURE__ */ T({
|
|
443
443
|
__name: "index",
|
|
444
444
|
setup(e) {
|
|
445
|
-
const { t: o } = Y(), t =
|
|
445
|
+
const { t: o } = Y(), t = H(), r = g({
|
|
446
446
|
get() {
|
|
447
447
|
return t.hasView("confirmDlg");
|
|
448
448
|
},
|
|
449
449
|
set(m) {
|
|
450
450
|
m ? t.addView("confirmDlg") : t.delView("confirmDlg");
|
|
451
451
|
}
|
|
452
|
-
}), a = d(""), l = d(""),
|
|
452
|
+
}), a = d(""), l = d(""), n = d(""), c = d(""), u = d(""), s = d("");
|
|
453
453
|
let _ = 0, y = !1;
|
|
454
454
|
const i = (m) => {
|
|
455
455
|
var x, b, S, R;
|
|
456
|
-
a.value = m.title, l.value = m.text,
|
|
456
|
+
a.value = m.title, l.value = m.text, n.value = ((x = m.cancel) == null ? void 0 : x.color) ?? "primary", c.value = ((b = m.cancel) == null ? void 0 : b.text) ?? o("dlg.common.cancel"), u.value = ((S = m.confirm) == null ? void 0 : S.color) ?? "primary", s.value = ((R = m.confirm) == null ? void 0 : R.text) ?? o("dlg.common.confirm"), _ = m.seq, y = !1, r.value = !0;
|
|
457
457
|
};
|
|
458
458
|
V(() => {
|
|
459
459
|
p.on("confirmDlg", i);
|
|
@@ -461,19 +461,19 @@ const Be = /* @__PURE__ */ T({
|
|
|
461
461
|
p.off("confirmDlg", i);
|
|
462
462
|
});
|
|
463
463
|
const M = () => {
|
|
464
|
-
|
|
464
|
+
r.value = !1, y || (p.emit("confirmDlgResult" + _, !0), y = !0);
|
|
465
465
|
};
|
|
466
|
-
return Z(
|
|
466
|
+
return Z(r, (m) => {
|
|
467
467
|
!m && !y && (p.emit("confirmDlgResult" + _, !1), y = !0);
|
|
468
468
|
}), (m, x) => {
|
|
469
469
|
const b = h("v-card-text"), S = h("v-btn"), R = h("v-card-actions"), f = h("v-card"), k = h("v-dialog");
|
|
470
470
|
return D(), O(k, {
|
|
471
|
-
modelValue:
|
|
472
|
-
"onUpdate:modelValue": x[1] || (x[1] = (A) =>
|
|
471
|
+
modelValue: r.value,
|
|
472
|
+
"onUpdate:modelValue": x[1] || (x[1] = (A) => r.value = A),
|
|
473
473
|
transition: "dialog-top-transition",
|
|
474
474
|
"max-width": "600px",
|
|
475
475
|
onKeydown: [
|
|
476
|
-
x[2] || (x[2] = F(W((A) =>
|
|
476
|
+
x[2] || (x[2] = F(W((A) => r.value = !1, ["stop", "prevent"]), ["esc"])),
|
|
477
477
|
F(W(M, ["stop", "prevent"]), ["enter"])
|
|
478
478
|
]
|
|
479
479
|
}, {
|
|
@@ -489,9 +489,9 @@ const Be = /* @__PURE__ */ T({
|
|
|
489
489
|
C(R, { class: "d-flex justify-end" }, {
|
|
490
490
|
default: w(() => [
|
|
491
491
|
C(S, {
|
|
492
|
-
color:
|
|
492
|
+
color: n.value,
|
|
493
493
|
variant: "text",
|
|
494
|
-
onClick: x[0] || (x[0] = (A) =>
|
|
494
|
+
onClick: x[0] || (x[0] = (A) => r.value = !1)
|
|
495
495
|
}, {
|
|
496
496
|
default: w(() => [
|
|
497
497
|
E(q(c.value), 1)
|
|
@@ -519,44 +519,44 @@ const Be = /* @__PURE__ */ T({
|
|
|
519
519
|
}, 8, ["modelValue", "onKeydown"]);
|
|
520
520
|
};
|
|
521
521
|
}
|
|
522
|
-
}),
|
|
523
|
-
/* @__PURE__ */ v("div"),
|
|
524
|
-
/* @__PURE__ */ v("div"),
|
|
525
|
-
/* @__PURE__ */ v("div"),
|
|
526
|
-
/* @__PURE__ */ v("div"),
|
|
527
|
-
/* @__PURE__ */ v("div"),
|
|
528
|
-
/* @__PURE__ */ v("div"),
|
|
529
|
-
/* @__PURE__ */ v("div"),
|
|
530
|
-
/* @__PURE__ */ v("div"),
|
|
531
|
-
/* @__PURE__ */ v("div"),
|
|
532
|
-
/* @__PURE__ */ v("div"),
|
|
533
|
-
/* @__PURE__ */ v("div"),
|
|
534
|
-
/* @__PURE__ */ v("div")
|
|
535
|
-
], -1)), $e = [
|
|
536
|
-
We
|
|
537
|
-
], He = /* @__PURE__ */ T({
|
|
522
|
+
}), Te = /* @__PURE__ */ T({
|
|
538
523
|
__name: "index",
|
|
539
524
|
props: {
|
|
540
525
|
zIndex: { default: 1 }
|
|
541
526
|
},
|
|
542
527
|
setup(e) {
|
|
543
|
-
const o = P(), t = e,
|
|
528
|
+
const o = P(), t = e, r = g(() => ({
|
|
544
529
|
background: o.current.value.dark ? "#1e1e1e" : "#ffffff",
|
|
545
530
|
zIndex: t.zIndex
|
|
546
531
|
}));
|
|
547
532
|
return (a, l) => (D(), Q("div", {
|
|
548
533
|
class: "x-cont",
|
|
549
|
-
style:
|
|
550
|
-
},
|
|
534
|
+
style: re(r.value)
|
|
535
|
+
}, l[0] || (l[0] = [
|
|
536
|
+
v("div", { class: "lds-spinner" }, [
|
|
537
|
+
v("div"),
|
|
538
|
+
v("div"),
|
|
539
|
+
v("div"),
|
|
540
|
+
v("div"),
|
|
541
|
+
v("div"),
|
|
542
|
+
v("div"),
|
|
543
|
+
v("div"),
|
|
544
|
+
v("div"),
|
|
545
|
+
v("div"),
|
|
546
|
+
v("div"),
|
|
547
|
+
v("div"),
|
|
548
|
+
v("div")
|
|
549
|
+
], -1)
|
|
550
|
+
]), 4));
|
|
551
551
|
}
|
|
552
552
|
}), te = (e, o) => {
|
|
553
553
|
const t = e.__vccOpts || e;
|
|
554
|
-
for (const [
|
|
555
|
-
t[
|
|
554
|
+
for (const [r, a] of o)
|
|
555
|
+
t[r] = a;
|
|
556
556
|
return t;
|
|
557
|
-
},
|
|
558
|
-
var
|
|
559
|
-
const
|
|
557
|
+
}, Be = /* @__PURE__ */ te(Te, [["__scopeId", "data-v-7ab74c70"]]);
|
|
558
|
+
var Ue = "M13,13H11V7H13M13,17H11V15H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z", We = "M12 2C6.5 2 2 6.5 2 12S6.5 22 12 22 22 17.5 22 12 17.5 2 12 2M10 17L5 12L6.41 10.59L10 14.17L17.59 6.58L19 8L10 17Z", He = "M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z", $e = "M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z", ze = "M13,9H11V7H13M13,17H11V11H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z";
|
|
559
|
+
const Xe = /* @__PURE__ */ T({
|
|
560
560
|
__name: "item",
|
|
561
561
|
props: {
|
|
562
562
|
id: {},
|
|
@@ -566,29 +566,29 @@ const Ne = /* @__PURE__ */ T({
|
|
|
566
566
|
},
|
|
567
567
|
emits: ["timeout"],
|
|
568
568
|
setup(e, { emit: o }) {
|
|
569
|
-
const t = e,
|
|
569
|
+
const t = e, r = g(() => ({
|
|
570
570
|
width: "calc(100% - 64px)",
|
|
571
571
|
overflowWrap: "break-word"
|
|
572
572
|
})), a = g(() => {
|
|
573
573
|
switch (t.type) {
|
|
574
574
|
case "success":
|
|
575
|
-
return
|
|
575
|
+
return We;
|
|
576
576
|
case "info":
|
|
577
|
-
return
|
|
577
|
+
return ze;
|
|
578
578
|
case "error":
|
|
579
|
-
return
|
|
579
|
+
return $e;
|
|
580
580
|
case "warning":
|
|
581
|
-
return
|
|
581
|
+
return Ue;
|
|
582
582
|
default:
|
|
583
583
|
return "";
|
|
584
584
|
}
|
|
585
|
-
}), l = d(!0),
|
|
585
|
+
}), l = d(!0), n = o;
|
|
586
586
|
return V(() => {
|
|
587
587
|
setTimeout(() => {
|
|
588
|
-
|
|
588
|
+
n("timeout", t.id);
|
|
589
589
|
}, t.timeout);
|
|
590
590
|
}), Z(l, (c) => {
|
|
591
|
-
c ||
|
|
591
|
+
c || n("timeout", t.id);
|
|
592
592
|
}), (c, u) => {
|
|
593
593
|
const s = h("v-icon"), _ = h("v-sheet");
|
|
594
594
|
return D(), O(_, {
|
|
@@ -601,21 +601,21 @@ const Ne = /* @__PURE__ */ T({
|
|
|
601
601
|
key: 0,
|
|
602
602
|
class: "mx-1",
|
|
603
603
|
icon: a.value
|
|
604
|
-
}, null, 8, ["icon"])) :
|
|
604
|
+
}, null, 8, ["icon"])) : ne("", !0),
|
|
605
605
|
v("div", {
|
|
606
|
-
style:
|
|
606
|
+
style: re(r.value)
|
|
607
607
|
}, q(t.text), 5),
|
|
608
608
|
C(s, {
|
|
609
609
|
class: "mx-1",
|
|
610
|
-
icon: le(
|
|
611
|
-
onClick: u[0] || (u[0] = (y) =>
|
|
610
|
+
icon: le(He),
|
|
611
|
+
onClick: u[0] || (u[0] = (y) => n("timeout", t.id))
|
|
612
612
|
}, null, 8, ["icon"])
|
|
613
613
|
]),
|
|
614
614
|
_: 1
|
|
615
615
|
}, 8, ["color"]);
|
|
616
616
|
};
|
|
617
617
|
}
|
|
618
|
-
}),
|
|
618
|
+
}), Fe = /* @__PURE__ */ te(Xe, [["__scopeId", "data-v-d5cfe252"]]), Ke = /* @__PURE__ */ T({
|
|
619
619
|
__name: "index",
|
|
620
620
|
setup(e) {
|
|
621
621
|
const o = d([]);
|
|
@@ -626,14 +626,14 @@ const Ne = /* @__PURE__ */ T({
|
|
|
626
626
|
});
|
|
627
627
|
const t = (c) => {
|
|
628
628
|
l(c.type, c.text, c.timeout);
|
|
629
|
-
},
|
|
630
|
-
|
|
629
|
+
}, r = (c) => {
|
|
630
|
+
n(c);
|
|
631
631
|
};
|
|
632
632
|
let a = 0;
|
|
633
633
|
const l = (c, u, s) => {
|
|
634
634
|
const _ = a++;
|
|
635
635
|
o.value.push({ id: _, type: c, text: u, timeout: s });
|
|
636
|
-
},
|
|
636
|
+
}, n = (c) => {
|
|
637
637
|
const u = o.value.findIndex((s) => s.id === c);
|
|
638
638
|
u >= 0 && o.value.splice(u, 1);
|
|
639
639
|
};
|
|
@@ -642,31 +642,31 @@ const Ne = /* @__PURE__ */ T({
|
|
|
642
642
|
onClick: u[0] || (u[0] = W(() => {
|
|
643
643
|
}, ["stop"]))
|
|
644
644
|
}, [
|
|
645
|
-
(D(!0), Q(
|
|
645
|
+
(D(!0), Q(fe, null, ge(o.value, (s) => (D(), O(Fe, {
|
|
646
646
|
id: s.id,
|
|
647
647
|
key: s.id,
|
|
648
648
|
type: s.type,
|
|
649
649
|
text: s.text,
|
|
650
650
|
timeout: s.timeout,
|
|
651
|
-
onTimeout:
|
|
651
|
+
onTimeout: r
|
|
652
652
|
}, null, 8, ["id", "type", "text", "timeout"]))), 128))
|
|
653
653
|
]));
|
|
654
654
|
}
|
|
655
|
-
}),
|
|
655
|
+
}), Ze = /* @__PURE__ */ te(Ke, [["__scopeId", "data-v-d525e6f5"]]), Ge = /* @__PURE__ */ T({
|
|
656
656
|
__name: "index",
|
|
657
657
|
setup(e) {
|
|
658
|
-
const { t: o } = Y(), t =
|
|
658
|
+
const { t: o } = Y(), t = H(), r = g({
|
|
659
659
|
get() {
|
|
660
660
|
return t.hasView("promptDlg");
|
|
661
661
|
},
|
|
662
662
|
set(f) {
|
|
663
663
|
f ? t.addView("promptDlg") : t.delView("promptDlg");
|
|
664
664
|
}
|
|
665
|
-
}), a = d(""), l = d(""),
|
|
665
|
+
}), a = d(""), l = d(""), n = d(""), c = d(""), u = d(), s = d(""), _ = d(""), y = d(""), i = d(""), M = d(""), m = d();
|
|
666
666
|
let x = 0, b = !1;
|
|
667
667
|
const S = async (f) => {
|
|
668
|
-
var k, A,
|
|
669
|
-
a.value = f.title, l.value = f.text,
|
|
668
|
+
var k, A, $, z, B;
|
|
669
|
+
a.value = f.title, l.value = f.text, n.value = f.label, c.value = f.placeholder, u.value = f.rules, s.value = f.value, _.value = ((k = f.cancel) == null ? void 0 : k.color) ?? "primary", y.value = ((A = f.cancel) == null ? void 0 : A.text) ?? o("dlg.common.cancel"), i.value = (($ = f.confirm) == null ? void 0 : $.color) ?? "primary", M.value = ((z = f.confirm) == null ? void 0 : z.text) ?? o("dlg.common.confirm"), x = f.seq, b = !1, r.value = !0, await ee(() => !!m.value, 1e3), (B = m.value) == null || B.focus();
|
|
670
670
|
};
|
|
671
671
|
V(() => {
|
|
672
672
|
p.on("promptDlg", S);
|
|
@@ -674,19 +674,19 @@ const Ne = /* @__PURE__ */ T({
|
|
|
674
674
|
p.off("promptDlg", S);
|
|
675
675
|
});
|
|
676
676
|
const R = () => {
|
|
677
|
-
|
|
677
|
+
r.value = !1, b || (p.emit("promptDlgResult" + x, s.value ?? ""), b = !0);
|
|
678
678
|
};
|
|
679
|
-
return Z(
|
|
679
|
+
return Z(r, (f) => {
|
|
680
680
|
!f && !b && (p.emit("promptDlgResult" + x, void 0), b = !0);
|
|
681
681
|
}), (f, k) => {
|
|
682
|
-
const A = h("v-card-text"),
|
|
682
|
+
const A = h("v-card-text"), $ = h("v-text-field"), z = h("v-form"), B = h("v-btn"), de = h("v-card-actions"), _e = h("v-card"), ie = h("v-dialog");
|
|
683
683
|
return D(), O(ie, {
|
|
684
|
-
modelValue:
|
|
685
|
-
"onUpdate:modelValue": k[2] || (k[2] = (U) =>
|
|
684
|
+
modelValue: r.value,
|
|
685
|
+
"onUpdate:modelValue": k[2] || (k[2] = (U) => r.value = U),
|
|
686
686
|
transition: "dialog-top-transition",
|
|
687
687
|
"max-width": "600px",
|
|
688
688
|
onKeydown: [
|
|
689
|
-
k[3] || (k[3] = F(W((U) =>
|
|
689
|
+
k[3] || (k[3] = F(W((U) => r.value = !1, ["stop", "prevent"]), ["esc"])),
|
|
690
690
|
F(W(R, ["stop", "prevent"]), ["enter"])
|
|
691
691
|
]
|
|
692
692
|
}, {
|
|
@@ -698,15 +698,15 @@ const Ne = /* @__PURE__ */ T({
|
|
|
698
698
|
E(q(l.value), 1)
|
|
699
699
|
]),
|
|
700
700
|
_: 1
|
|
701
|
-
})) :
|
|
701
|
+
})) : ne("", !0),
|
|
702
702
|
C(z, { class: "mx-3" }, {
|
|
703
703
|
default: w(() => [
|
|
704
|
-
C(
|
|
704
|
+
C($, {
|
|
705
705
|
ref_key: "target",
|
|
706
706
|
ref: m,
|
|
707
707
|
modelValue: s.value,
|
|
708
708
|
"onUpdate:modelValue": k[0] || (k[0] = (U) => s.value = U),
|
|
709
|
-
label:
|
|
709
|
+
label: n.value,
|
|
710
710
|
placeholder: c.value,
|
|
711
711
|
rules: u.value
|
|
712
712
|
}, null, 8, ["modelValue", "label", "placeholder", "rules"])
|
|
@@ -718,7 +718,7 @@ const Ne = /* @__PURE__ */ T({
|
|
|
718
718
|
C(B, {
|
|
719
719
|
color: _.value,
|
|
720
720
|
variant: "text",
|
|
721
|
-
onClick: k[1] || (k[1] = (U) =>
|
|
721
|
+
onClick: k[1] || (k[1] = (U) => r.value = !1)
|
|
722
722
|
}, {
|
|
723
723
|
default: w(() => [
|
|
724
724
|
E(q(y.value), 1)
|
|
@@ -746,10 +746,10 @@ const Ne = /* @__PURE__ */ T({
|
|
|
746
746
|
}, 8, ["modelValue", "onKeydown"]);
|
|
747
747
|
};
|
|
748
748
|
}
|
|
749
|
-
}),
|
|
749
|
+
}), Ne = { class: "mx-auto my-auto" }, Qe = { class: "w-100 h-100 d-flex align-center justify-center" }, Je = { class: "text-body-1" }, Ye = /* @__PURE__ */ T({
|
|
750
750
|
__name: "index",
|
|
751
751
|
setup(e) {
|
|
752
|
-
const { t: o } = Y(), t =
|
|
752
|
+
const { t: o } = Y(), t = H(), r = g({
|
|
753
753
|
get() {
|
|
754
754
|
return t.hasView("waitDlg");
|
|
755
755
|
},
|
|
@@ -757,33 +757,33 @@ const Ne = /* @__PURE__ */ T({
|
|
|
757
757
|
c ? t.addView("waitDlg") : t.delView("waitDlg");
|
|
758
758
|
}
|
|
759
759
|
}), a = d(""), l = (c) => {
|
|
760
|
-
a.value = c.text ?? o("dlg.common.waiting"),
|
|
761
|
-
},
|
|
762
|
-
|
|
760
|
+
a.value = c.text ?? o("dlg.common.waiting"), r.value = !0;
|
|
761
|
+
}, n = () => {
|
|
762
|
+
r.value = !1;
|
|
763
763
|
};
|
|
764
764
|
return V(() => {
|
|
765
|
-
p.on("openWaitDlg", l), p.on("closeWaitDlg",
|
|
765
|
+
p.on("openWaitDlg", l), p.on("closeWaitDlg", n);
|
|
766
766
|
}), I(() => {
|
|
767
|
-
p.off("openWaitDlg", l), p.off("closeWaitDlg",
|
|
767
|
+
p.off("openWaitDlg", l), p.off("closeWaitDlg", n);
|
|
768
768
|
}), (c, u) => {
|
|
769
769
|
const s = h("v-card"), _ = h("v-dialog");
|
|
770
770
|
return D(), O(_, {
|
|
771
|
-
modelValue:
|
|
772
|
-
"onUpdate:modelValue": u[0] || (u[0] = (y) =>
|
|
771
|
+
modelValue: r.value,
|
|
772
|
+
"onUpdate:modelValue": u[0] || (u[0] = (y) => r.value = y),
|
|
773
773
|
persistent: "",
|
|
774
774
|
"no-click-animation": "",
|
|
775
775
|
fullscreen: ""
|
|
776
776
|
}, {
|
|
777
777
|
default: w(() => [
|
|
778
|
-
v("div",
|
|
778
|
+
v("div", Ne, [
|
|
779
779
|
C(s, {
|
|
780
780
|
width: "300px",
|
|
781
781
|
height: "80px",
|
|
782
782
|
loading: ""
|
|
783
783
|
}, {
|
|
784
784
|
default: w(() => [
|
|
785
|
-
v("div",
|
|
786
|
-
v("span",
|
|
785
|
+
v("div", Qe, [
|
|
786
|
+
v("span", Je, q(a.value), 1)
|
|
787
787
|
])
|
|
788
788
|
]),
|
|
789
789
|
_: 1
|
|
@@ -794,71 +794,71 @@ const Ne = /* @__PURE__ */ T({
|
|
|
794
794
|
}, 8, ["modelValue"]);
|
|
795
795
|
};
|
|
796
796
|
}
|
|
797
|
-
}),
|
|
798
|
-
e.component("XConfirmDlg",
|
|
797
|
+
}), Pe = (e) => {
|
|
798
|
+
e.component("XConfirmDlg", je), e.component("XLoading", Be), e.component("XMessage", Ze), e.component("XPromptDlg", Ge), e.component("XWaitDlg", Ye);
|
|
799
799
|
};
|
|
800
|
-
function
|
|
801
|
-
const e = P(), o = g(() => e.global.current.value.colors.primary), t = g(() => e.global.current.value.colors.secondary),
|
|
800
|
+
function Vt() {
|
|
801
|
+
const e = P(), o = g(() => e.global.current.value.colors.primary), t = g(() => e.global.current.value.colors.secondary), r = g(() => e.current.value.dark ? "#2e2e2e" : "#bdbdbd"), a = g(() => e.current.value.dark ? "#272727" : "#eeeeee"), l = g(() => e.current.value.dark ? "#1e1e1e" : "#ffffff"), n = g(() => e.current.value.dark ? "#303030" : "#f6f6f6"), c = g(() => e.current.value.dark ? "#ffffff1f" : "#0000001f");
|
|
802
802
|
return {
|
|
803
803
|
primaryColor: o,
|
|
804
804
|
secondaryColor: t,
|
|
805
|
-
backgroundColor0:
|
|
805
|
+
backgroundColor0: r,
|
|
806
806
|
backgroundColor1: a,
|
|
807
807
|
backgroundColor2: l,
|
|
808
|
-
highlightColor:
|
|
808
|
+
highlightColor: n,
|
|
809
809
|
borderColor: c
|
|
810
810
|
};
|
|
811
811
|
}
|
|
812
|
-
function
|
|
813
|
-
return
|
|
812
|
+
function et(e) {
|
|
813
|
+
return ve() ? (me(e), !0) : !1;
|
|
814
814
|
}
|
|
815
|
-
function
|
|
815
|
+
function tt(e) {
|
|
816
816
|
return typeof e == "function" ? e() : le(e);
|
|
817
817
|
}
|
|
818
|
-
const
|
|
818
|
+
const ot = typeof window < "u" && typeof document < "u";
|
|
819
819
|
typeof WorkerGlobalScope < "u" && globalThis instanceof WorkerGlobalScope;
|
|
820
|
-
const
|
|
821
|
-
function
|
|
822
|
-
const e = d(!1), o =
|
|
820
|
+
const at = ot ? window : void 0;
|
|
821
|
+
function rt() {
|
|
822
|
+
const e = d(!1), o = we();
|
|
823
823
|
return o && V(() => {
|
|
824
824
|
e.value = !0;
|
|
825
825
|
}, o), e;
|
|
826
826
|
}
|
|
827
|
-
function
|
|
828
|
-
const o =
|
|
827
|
+
function nt(e) {
|
|
828
|
+
const o = rt();
|
|
829
829
|
return g(() => (o.value, !!e()));
|
|
830
830
|
}
|
|
831
|
-
function
|
|
832
|
-
const { window: t =
|
|
831
|
+
function lt(e, o = {}) {
|
|
832
|
+
const { window: t = at } = o, r = nt(() => t && "matchMedia" in t && typeof t.matchMedia == "function");
|
|
833
833
|
let a;
|
|
834
|
-
const l = d(!1),
|
|
834
|
+
const l = d(!1), n = (s) => {
|
|
835
835
|
l.value = s.matches;
|
|
836
836
|
}, c = () => {
|
|
837
|
-
a && ("removeEventListener" in a ? a.removeEventListener("change",
|
|
838
|
-
}, u =
|
|
839
|
-
|
|
837
|
+
a && ("removeEventListener" in a ? a.removeEventListener("change", n) : a.removeListener(n));
|
|
838
|
+
}, u = he(() => {
|
|
839
|
+
r.value && (c(), a = t.matchMedia(tt(e)), "addEventListener" in a ? a.addEventListener("change", n) : a.addListener(n), l.value = a.matches);
|
|
840
840
|
});
|
|
841
|
-
return
|
|
841
|
+
return et(() => {
|
|
842
842
|
u(), c(), a = void 0;
|
|
843
843
|
}), l;
|
|
844
844
|
}
|
|
845
|
-
function
|
|
846
|
-
return
|
|
845
|
+
function ct(e) {
|
|
846
|
+
return lt("(prefers-color-scheme: dark)", e);
|
|
847
847
|
}
|
|
848
|
-
function
|
|
849
|
-
const e =
|
|
850
|
-
return { dark:
|
|
848
|
+
function ut() {
|
|
849
|
+
const e = ke(), o = G(), t = ct(), r = g(() => typeof o.dark == "boolean" ? o.dark : t.value), a = g(() => !!window.cordova), l = g(() => e.width.value <= 1280 ? e.width.value + "px" : e.width.value <= 1920 ? 1920 / 2.5 + "px" : 2560 / 2.5 + "px");
|
|
850
|
+
return { dark: r, sysBarAvail: a, compactWidth: l };
|
|
851
851
|
}
|
|
852
|
-
function
|
|
853
|
-
const e =
|
|
852
|
+
function Mt() {
|
|
853
|
+
const e = xe(), o = ue(), t = P(), { dark: r } = ut(), a = G(), l = H();
|
|
854
854
|
Z(
|
|
855
|
-
|
|
855
|
+
r,
|
|
856
856
|
(i) => {
|
|
857
857
|
t.global.name.value = i ? "dark" : "light";
|
|
858
858
|
},
|
|
859
859
|
{ immediate: !0 }
|
|
860
860
|
);
|
|
861
|
-
const
|
|
861
|
+
const n = (i) => {
|
|
862
862
|
if (i.key === "Escape") {
|
|
863
863
|
c();
|
|
864
864
|
return;
|
|
@@ -878,9 +878,9 @@ function It() {
|
|
|
878
878
|
) : o.back();
|
|
879
879
|
};
|
|
880
880
|
V(() => {
|
|
881
|
-
window.addEventListener("keydown",
|
|
881
|
+
window.addEventListener("keydown", n), p.on("backbutton", c);
|
|
882
882
|
}), I(() => {
|
|
883
|
-
window.removeEventListener("keydown",
|
|
883
|
+
window.removeEventListener("keydown", n), p.off("backbutton", c);
|
|
884
884
|
});
|
|
885
885
|
const u = (i) => {
|
|
886
886
|
a.dark = i;
|
|
@@ -897,16 +897,16 @@ function It() {
|
|
|
897
897
|
p.off("updateDark", u), p.off("updateLocale", s), p.off("updatePermission", _), p.off("updateLastAppPath", y);
|
|
898
898
|
});
|
|
899
899
|
}
|
|
900
|
-
function
|
|
900
|
+
function St() {
|
|
901
901
|
const e = G();
|
|
902
|
-
function o(t,
|
|
902
|
+
function o(t, r) {
|
|
903
903
|
const a = e.permissionObjects[t];
|
|
904
|
-
return a ?
|
|
904
|
+
return a ? r ? !(!ae(a.includes, r) || ae(a.excludes, r)) : !0 : !1;
|
|
905
905
|
}
|
|
906
906
|
return { verifyPermission: o };
|
|
907
907
|
}
|
|
908
|
-
function
|
|
909
|
-
const t =
|
|
908
|
+
function At(e, o) {
|
|
909
|
+
const t = H(), r = g({
|
|
910
910
|
get() {
|
|
911
911
|
return t.hasView(e);
|
|
912
912
|
},
|
|
@@ -914,17 +914,17 @@ function Et(e, o) {
|
|
|
914
914
|
l ? t.addView(e) : t.delView(e);
|
|
915
915
|
}
|
|
916
916
|
}), a = (l) => {
|
|
917
|
-
o == null || o(l),
|
|
917
|
+
o == null || o(l), r.value = !0;
|
|
918
918
|
};
|
|
919
919
|
return V(() => {
|
|
920
920
|
p.on(e, a);
|
|
921
921
|
}), I(() => {
|
|
922
922
|
p.off(e, a);
|
|
923
|
-
}), { open:
|
|
923
|
+
}), { open: r };
|
|
924
924
|
}
|
|
925
|
-
const
|
|
926
|
-
const
|
|
927
|
-
return
|
|
925
|
+
const pt = (e, o, t) => {
|
|
926
|
+
const r = e[o];
|
|
927
|
+
return r ? typeof r == "function" ? r() : Promise.resolve(r) : new Promise((a, l) => {
|
|
928
928
|
(typeof queueMicrotask == "function" ? queueMicrotask : setTimeout)(
|
|
929
929
|
l.bind(
|
|
930
930
|
null,
|
|
@@ -935,36 +935,36 @@ const ft = (e, o, t) => {
|
|
|
935
935
|
);
|
|
936
936
|
});
|
|
937
937
|
};
|
|
938
|
-
async function
|
|
939
|
-
return (await
|
|
938
|
+
async function qt(e) {
|
|
939
|
+
return (await pt(/* @__PURE__ */ Object.assign({ "./locales/en/index.ts": () => import("./en-iuzmkt0n.js"), "./locales/zhHans/index.ts": () => import("./zhHans-m6y1by9n.js") }), `./locales/${e}/index.ts`, 4)).default;
|
|
940
940
|
}
|
|
941
|
-
const
|
|
941
|
+
const Rt = { install: Pe };
|
|
942
942
|
export {
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
943
|
+
Re as Permission,
|
|
944
|
+
Ae as appAppear,
|
|
945
|
+
xt as closeWaitDlg,
|
|
946
|
+
vt as createAxios,
|
|
947
|
+
Rt as default,
|
|
948
948
|
p as eventBus,
|
|
949
949
|
ae as isExist,
|
|
950
|
-
|
|
950
|
+
qt as loadLocaleMessageEssential,
|
|
951
951
|
K as matchRouteMeta,
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
952
|
+
kt as messageError,
|
|
953
|
+
Ct as messageInfo,
|
|
954
|
+
bt as messageSuccess,
|
|
955
|
+
Dt as messageWarning,
|
|
956
|
+
Lt as onBeforeEach,
|
|
957
|
+
ht as openConfirmDlg,
|
|
958
|
+
wt as openPromptDlg,
|
|
959
|
+
yt as openWaitDlg,
|
|
960
960
|
N as routeTransName,
|
|
961
|
-
|
|
961
|
+
Vt as useColor,
|
|
962
962
|
G as useGlobalStore,
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
963
|
+
Mt as useMicroApp,
|
|
964
|
+
St as usePermission,
|
|
965
|
+
ut as useSystem,
|
|
966
|
+
H as useViewMgrStore,
|
|
967
|
+
At as useViewStack,
|
|
968
|
+
mt as waitMs,
|
|
969
969
|
ee as waitUtil
|
|
970
970
|
};
|
package/dist/store/global.d.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import { PermissionObjects } from '../utils';
|
|
2
2
|
export declare const useGlobalStore: import("pinia").StoreDefinition<"global", import("pinia")._UnwrapAll<Pick<{
|
|
3
|
-
dark: import("vue").Ref<boolean | undefined>;
|
|
4
|
-
locale: import("vue").Ref<string>;
|
|
5
|
-
permissionObjects: import("vue").Ref<PermissionObjects>;
|
|
6
|
-
permissionChecksum: import("vue").Ref<string>;
|
|
7
|
-
lastAppPath: import("vue").Ref<string>;
|
|
3
|
+
dark: import("vue").Ref<boolean | undefined, boolean | undefined>;
|
|
4
|
+
locale: import("vue").Ref<string, string>;
|
|
5
|
+
permissionObjects: import("vue").Ref<PermissionObjects, PermissionObjects>;
|
|
6
|
+
permissionChecksum: import("vue").Ref<string, string>;
|
|
7
|
+
lastAppPath: import("vue").Ref<string, string>;
|
|
8
8
|
}, "dark" | "locale" | "permissionObjects" | "permissionChecksum" | "lastAppPath">>, Pick<{
|
|
9
|
-
dark: import("vue").Ref<boolean | undefined>;
|
|
10
|
-
locale: import("vue").Ref<string>;
|
|
11
|
-
permissionObjects: import("vue").Ref<PermissionObjects>;
|
|
12
|
-
permissionChecksum: import("vue").Ref<string>;
|
|
13
|
-
lastAppPath: import("vue").Ref<string>;
|
|
9
|
+
dark: import("vue").Ref<boolean | undefined, boolean | undefined>;
|
|
10
|
+
locale: import("vue").Ref<string, string>;
|
|
11
|
+
permissionObjects: import("vue").Ref<PermissionObjects, PermissionObjects>;
|
|
12
|
+
permissionChecksum: import("vue").Ref<string, string>;
|
|
13
|
+
lastAppPath: import("vue").Ref<string, string>;
|
|
14
14
|
}, never>, Pick<{
|
|
15
|
-
dark: import("vue").Ref<boolean | undefined>;
|
|
16
|
-
locale: import("vue").Ref<string>;
|
|
17
|
-
permissionObjects: import("vue").Ref<PermissionObjects>;
|
|
18
|
-
permissionChecksum: import("vue").Ref<string>;
|
|
19
|
-
lastAppPath: import("vue").Ref<string>;
|
|
15
|
+
dark: import("vue").Ref<boolean | undefined, boolean | undefined>;
|
|
16
|
+
locale: import("vue").Ref<string, string>;
|
|
17
|
+
permissionObjects: import("vue").Ref<PermissionObjects, PermissionObjects>;
|
|
18
|
+
permissionChecksum: import("vue").Ref<string, string>;
|
|
19
|
+
lastAppPath: import("vue").Ref<string, string>;
|
|
20
20
|
}, never>>;
|
package/dist/store/viewMgr.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import 'pinia-plugin-persistedstate';
|
|
2
2
|
export declare const useViewMgrStore: import("pinia").StoreDefinition<"viewMgr", import("pinia")._UnwrapAll<Pick<{
|
|
3
|
-
views: import("vue").Ref<string[]>;
|
|
3
|
+
views: import("vue").Ref<string[], string[]>;
|
|
4
4
|
isEmpty: () => boolean;
|
|
5
5
|
lastView: () => string | undefined;
|
|
6
6
|
hasView: (name: string) => boolean;
|
|
@@ -9,7 +9,7 @@ export declare const useViewMgrStore: import("pinia").StoreDefinition<"viewMgr",
|
|
|
9
9
|
popView: () => void;
|
|
10
10
|
clearViews: () => void;
|
|
11
11
|
}, "views">>, Pick<{
|
|
12
|
-
views: import("vue").Ref<string[]>;
|
|
12
|
+
views: import("vue").Ref<string[], string[]>;
|
|
13
13
|
isEmpty: () => boolean;
|
|
14
14
|
lastView: () => string | undefined;
|
|
15
15
|
hasView: (name: string) => boolean;
|
|
@@ -18,7 +18,7 @@ export declare const useViewMgrStore: import("pinia").StoreDefinition<"viewMgr",
|
|
|
18
18
|
popView: () => void;
|
|
19
19
|
clearViews: () => void;
|
|
20
20
|
}, never>, Pick<{
|
|
21
|
-
views: import("vue").Ref<string[]>;
|
|
21
|
+
views: import("vue").Ref<string[], string[]>;
|
|
22
22
|
isEmpty: () => boolean;
|
|
23
23
|
lastView: () => string | undefined;
|
|
24
24
|
hasView: (name: string) => boolean;
|
package/dist/utils/router.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { RouteLocationNormalized, NavigationGuardNext } from 'vue-router';
|
|
2
2
|
interface RouteMeta {
|
|
3
|
-
app: 'x-app-mf' | 'x-
|
|
3
|
+
app: 'x-app-mf' | 'x-compute-mf' | 'x-data-mf' | 'x-main-mf' | 'x-mine-mf' | 'x-org-mf' | 'x-passport-mf' | 'x-resource-mf';
|
|
4
4
|
path: string;
|
|
5
5
|
level: number;
|
|
6
6
|
requiredState?: 'auth' | 'org';
|
|
7
7
|
mainActive?: 2 | 3 | 4;
|
|
8
8
|
}
|
|
9
9
|
export declare function matchRouteMeta(path: string): RouteMeta | undefined;
|
|
10
|
-
export declare const routeTransName: import("vue").Ref<string>;
|
|
10
|
+
export declare const routeTransName: import("vue").Ref<string, string>;
|
|
11
11
|
export declare function onBeforeEach(to: RouteLocationNormalized, from: RouteLocationNormalized, next: NavigationGuardNext): void;
|
|
12
12
|
export {};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "x-essential-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.7.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"axios": "^1.7.2",
|
|
31
|
-
"pinia": "^2.
|
|
31
|
+
"pinia": "^2.2.2",
|
|
32
32
|
"pinia-plugin-persistedstate": "^3.2.1",
|
|
33
|
-
"vue": "^3.
|
|
34
|
-
"vue-i18n": "^9.
|
|
35
|
-
"vue-router": "^4.4.
|
|
36
|
-
"vuetify": "^3.
|
|
33
|
+
"vue": "^3.5.0",
|
|
34
|
+
"vue-i18n": "^9.14.0",
|
|
35
|
+
"vue-router": "^4.4.3",
|
|
36
|
+
"vuetify": "^3.7.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@mdi/js": "^7.4.47",
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
type LocaleHook = (val: any) => Promise<void>;
|
|
2
|
-
export declare class GlobalState {
|
|
3
|
-
private master;
|
|
4
|
-
private localeHook;
|
|
5
|
-
private alreadySync;
|
|
6
|
-
private handlers;
|
|
7
|
-
constructor(master: boolean, localeHook?: LocaleHook);
|
|
8
|
-
sync(): Promise<void>;
|
|
9
|
-
dispose(): void;
|
|
10
|
-
private onDarkChange;
|
|
11
|
-
private onLocaleChange;
|
|
12
|
-
private onPermissionChange;
|
|
13
|
-
private onLastAppPathChange;
|
|
14
|
-
private onSync;
|
|
15
|
-
}
|
|
16
|
-
export {};
|