@gonsin/gview 1.1.18 → 2.0.1
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/README.md +2 -374
- package/dist/index-0837cd29.mjs +7104 -0
- package/dist/index-189a45ed.mjs +15 -0
- package/dist/index.mjs +82 -0
- package/dist/style.css +1 -0
- package/dist/types/components/GLayout/index.d.ts +2 -0
- package/dist/types/components/GLogin/index.d.ts +2 -0
- package/dist/types/components/common/GCommonDialog/index.d.ts +2 -0
- package/dist/types/components/common/GCommonForm/index.d.ts +2 -0
- package/dist/types/components/common/GCommonHeader/index.d.ts +2 -0
- package/dist/types/components/common/GCommonTable/index.d.ts +2 -0
- package/dist/types/components/common/index.d.ts +4 -0
- package/dist/types/components/index.d.ts +5 -0
- package/dist/types/constant/color.d.ts +5 -0
- package/dist/types/constant/common.d.ts +1 -0
- package/dist/types/constant/index.d.ts +5 -0
- package/dist/types/constant/local.d.ts +11 -0
- package/dist/types/constant/theme.d.ts +4 -0
- package/dist/types/constant/websocket.d.ts +22 -0
- package/dist/types/hooks/index.d.ts +2 -0
- package/dist/types/hooks/nanoid.d.ts +2 -0
- package/dist/types/hooks/nprogress.d.ts +2 -0
- package/dist/types/http/config.d.ts +5 -0
- package/dist/types/http/index.d.ts +16 -0
- package/dist/types/http/type.d.ts +5 -0
- package/dist/types/index.d.ts +18 -0
- package/dist/types/stores/index.d.ts +4 -0
- package/dist/types/stores/props.d.ts +6 -0
- package/dist/types/stores/setting.d.ts +74 -0
- package/dist/types/stores/socket.d.ts +16 -0
- package/dist/types/stores/tabMenu.d.ts +18 -0
- package/dist/types/types/common.d.ts +24 -0
- package/dist/types/types/view.d.ts +290 -0
- package/dist/types/utils/color.d.ts +2 -0
- package/dist/types/utils/eval.d.ts +12 -0
- package/dist/types/utils/index.d.ts +8 -0
- package/dist/types/utils/is.d.ts +77 -0
- package/dist/types/utils/menu.d.ts +20 -0
- package/dist/types/utils/storage.d.ts +13 -0
- package/dist/types/utils/table.d.ts +3 -0
- package/dist/types/utils/url.d.ts +1 -0
- package/dist/types/utils/withInstall.d.ts +6 -0
- package/dist/types/views/GMenuManage/index.d.ts +2 -0
- package/dist/types/views/index.d.ts +1 -0
- package/package.json +66 -96
- package/dist/index.js +0 -2
- package/dist/index.js.map +0 -1
- package/index.d.ts +0 -5
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { _ as o } from "./index-0837cd29.mjs";
|
|
2
|
+
import "vue";
|
|
3
|
+
import "vue-router";
|
|
4
|
+
import "pinia";
|
|
5
|
+
import "tdesign-vue-next";
|
|
6
|
+
import "lodash-es";
|
|
7
|
+
import "axios";
|
|
8
|
+
import "nanoid";
|
|
9
|
+
import "nprogress";
|
|
10
|
+
import "dayjs";
|
|
11
|
+
import "mustache";
|
|
12
|
+
import "he";
|
|
13
|
+
export {
|
|
14
|
+
o as default
|
|
15
|
+
};
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { C as m, f as T, D as l, r as C, G as S, a as A, b as I, c as N, d as u, e as U, ad as D, I as M, L as p, p as g, l as F, k as G, q as R, n as d, m as f, g as c, j as b, P, a8 as H, o as W, T as y, t as B, u as K, W as v, i as x, E as V, a6 as X, a5 as h, B as j, a7 as k, ac as w, h as J, ab as Q, H as q, X as z, R as Y, V as Z, Y as $, O as aa, K as sa, $ as ea, a4 as oa, J as ta, a1 as ia, a2 as ra, a3 as _a, Q as na, N as Ea, S as La, a0 as Oa, U as ma, M as Ta, Z as la, w as Ca, aa as Sa, v as Aa, a9 as Ia, s as Na, A as ua, x as Ua, z as Da, y as Ma, F as pa } from "./index-0837cd29.mjs";
|
|
2
|
+
import { default as Fa } from "nprogress";
|
|
3
|
+
import "vue";
|
|
4
|
+
import "vue-router";
|
|
5
|
+
import "pinia";
|
|
6
|
+
import "tdesign-vue-next";
|
|
7
|
+
import "lodash-es";
|
|
8
|
+
import "axios";
|
|
9
|
+
import "nanoid";
|
|
10
|
+
import "dayjs";
|
|
11
|
+
import "mustache";
|
|
12
|
+
import "he";
|
|
13
|
+
export {
|
|
14
|
+
m as COLOR_TOKEN,
|
|
15
|
+
T as DEFAULT_DARK_COLOR,
|
|
16
|
+
l as DEFAULT_LIGHT_COLOR,
|
|
17
|
+
C as DEFAULT_THEME_CONFIG,
|
|
18
|
+
S as GCommonDialog,
|
|
19
|
+
A as GCommonForm,
|
|
20
|
+
I as GCommonHeader,
|
|
21
|
+
N as GCommonTable,
|
|
22
|
+
u as GLayout,
|
|
23
|
+
U as GLogin,
|
|
24
|
+
D as GMenuManage,
|
|
25
|
+
M as INIT_WS_MODEL,
|
|
26
|
+
p as LOCAL_CONFIG,
|
|
27
|
+
g as LOCAL_DATA_ID,
|
|
28
|
+
F as LOCAL_INIT_TAB_MENU_LIST,
|
|
29
|
+
G as LOCAL_MENU,
|
|
30
|
+
R as LOCAL_SESSION_ID,
|
|
31
|
+
d as LOCAL_SIDE_MENU_CONFIG,
|
|
32
|
+
f as LOCAL_TAB_MENU,
|
|
33
|
+
c as LOCAL_THEME_CONFIG,
|
|
34
|
+
b as LOCAL_USER,
|
|
35
|
+
Fa as NProgress,
|
|
36
|
+
P as PROJECT_PREFIX,
|
|
37
|
+
H as StorageUtils,
|
|
38
|
+
W as TOKEN_EXPIRED_TIME,
|
|
39
|
+
y as TOKEN_NAME,
|
|
40
|
+
B as WS_INTERVAL_TIMEOUT,
|
|
41
|
+
K as WS_RESET_TIMEOUT,
|
|
42
|
+
v as WS_SERVICE_URL,
|
|
43
|
+
x as default,
|
|
44
|
+
V as evalContext,
|
|
45
|
+
X as flattenMenuData,
|
|
46
|
+
h as generateMenuTree,
|
|
47
|
+
j as getBrandColor,
|
|
48
|
+
k as getHomeUrl,
|
|
49
|
+
w as getUrlQuery,
|
|
50
|
+
J as http,
|
|
51
|
+
Q as initTableColumns,
|
|
52
|
+
q as is,
|
|
53
|
+
z as isArray,
|
|
54
|
+
Y as isAsyncFunction,
|
|
55
|
+
Z as isBoolean,
|
|
56
|
+
$ as isClient,
|
|
57
|
+
aa as isDate,
|
|
58
|
+
sa as isDef,
|
|
59
|
+
ea as isElement,
|
|
60
|
+
oa as isFormVoid,
|
|
61
|
+
ta as isFunction,
|
|
62
|
+
ia as isNull,
|
|
63
|
+
ra as isNullAndUnDef,
|
|
64
|
+
_a as isNullOrUnDef,
|
|
65
|
+
na as isNumber,
|
|
66
|
+
Ea as isObject,
|
|
67
|
+
La as isPromise,
|
|
68
|
+
Oa as isServer,
|
|
69
|
+
ma as isString,
|
|
70
|
+
Ta as isUnDef,
|
|
71
|
+
la as isWindow,
|
|
72
|
+
Ca as loadNanoId,
|
|
73
|
+
Sa as localStorageUtils,
|
|
74
|
+
Aa as nanoid,
|
|
75
|
+
Ia as sessionStorageUtils,
|
|
76
|
+
Na as setupStore,
|
|
77
|
+
ua as usePropsStore,
|
|
78
|
+
Ua as useSettingStore,
|
|
79
|
+
Da as useSocketStore,
|
|
80
|
+
Ma as useTabMenuStore,
|
|
81
|
+
pa as v
|
|
82
|
+
};
|