@gonsin/gview 2.0.7 → 2.0.9
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 +18 -2
- package/dist/{index-1f095077.mjs → index-02c6a004.mjs} +3 -1
- package/dist/{index-6d9d9b53.mjs → index-a2fd9e94.mjs} +2906 -2449
- package/dist/index.mjs +76 -73
- package/dist/style.css +1 -1
- package/dist/types/types/view.d.ts +1 -1
- package/dist/types/utils/menu.d.ts +4 -0
- package/dist/types/utils/withInstall.d.ts +1 -2
- package/package.json +7 -1
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
### 2.0.4
|
|
16
16
|
|
|
17
17
|
+ fix: 修复表单区块显示问题
|
|
18
|
-
+ fix:
|
|
18
|
+
+ fix: (!)修改打开新的视图(`View`)或者链接(`LINK`),`props` 的传递参数方式。
|
|
19
19
|
|
|
20
20
|
### 2.0.5
|
|
21
21
|
|
|
@@ -30,4 +30,20 @@
|
|
|
30
30
|
|
|
31
31
|
+ fix: 修复url与path属性问题
|
|
32
32
|
+ feat: 添加判断在当前路径访问其他端口的地址
|
|
33
|
-
+ fix: 修复登录页面 logo 显示问题
|
|
33
|
+
+ fix: 修复登录页面 `logo` 显示问题
|
|
34
|
+
|
|
35
|
+
### 2.0.8
|
|
36
|
+
|
|
37
|
+
+ fix: 调整表单样式
|
|
38
|
+
+ feat: 完善表单类型
|
|
39
|
+
+ fix: 修改报错信息
|
|
40
|
+
+ feat: 添加下载文件请求
|
|
41
|
+
+ feat: 添加外部链接传参
|
|
42
|
+
|
|
43
|
+
### 2.0.9
|
|
44
|
+
|
|
45
|
+
+ fix: 修复下载获取文件名
|
|
46
|
+
+ fix: 修复header部分问题
|
|
47
|
+
+ feat: 接入glicense
|
|
48
|
+
+ fix: 修改路由映射
|
|
49
|
+
+ fix: 整理代码
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as o } from "./index-
|
|
1
|
+
import { _ as o } from "./index-a2fd9e94.mjs";
|
|
2
2
|
import "vue";
|
|
3
3
|
import "vue-router";
|
|
4
4
|
import "pinia";
|
|
@@ -8,6 +8,8 @@ import "nanoid";
|
|
|
8
8
|
import "nprogress";
|
|
9
9
|
import "lodash-es";
|
|
10
10
|
import "dayjs";
|
|
11
|
+
import "@wangeditor/editor-for-vue";
|
|
12
|
+
import "@wangeditor/editor";
|
|
11
13
|
import "mustache";
|
|
12
14
|
import "he";
|
|
13
15
|
export {
|