@vue-start/pro 0.5.54 → 0.5.55
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/CHANGELOG.md +4 -7
- package/dist/index.d.ts +9 -0
- package/dist/index.es.js +1432 -1428
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,16 +3,13 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Bug Fixes
|
|
10
|
-
|
|
11
|
-
* **pro:** curd operate ([9c4dbbe](https://github.com/zxeryu/vue-start/commit/9c4dbbe6b24a67aa84325c60999dbae780c3f304))
|
|
12
|
-
|
|
6
|
+
# 0.5.55
|
|
13
7
|
|
|
8
|
+
- fix: ProLayout tabs 支持 findFirstMenu 自定义;
|
|
14
9
|
|
|
10
|
+
# 0.5.54
|
|
15
11
|
|
|
12
|
+
- fix: curd operate element 参数传递;
|
|
16
13
|
|
|
17
14
|
# 0.5.52
|
|
18
15
|
|
package/dist/index.d.ts
CHANGED
|
@@ -2644,6 +2644,9 @@ declare const layoutProps: () => {
|
|
|
2644
2644
|
onDragEnd: (tabIds: string[]) => void;
|
|
2645
2645
|
}) => void>;
|
|
2646
2646
|
};
|
|
2647
|
+
findFirstMenu: {
|
|
2648
|
+
type: FunctionConstructor;
|
|
2649
|
+
};
|
|
2647
2650
|
}>> & {
|
|
2648
2651
|
sessionKey?: string | undefined;
|
|
2649
2652
|
clearWhileUnmount?: boolean | undefined;
|
|
@@ -2759,6 +2762,9 @@ declare const ProLayout: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
2759
2762
|
onDragEnd: (tabIds: string[]) => void;
|
|
2760
2763
|
}) => void>;
|
|
2761
2764
|
};
|
|
2765
|
+
findFirstMenu: {
|
|
2766
|
+
type: FunctionConstructor;
|
|
2767
|
+
};
|
|
2762
2768
|
}>> & {
|
|
2763
2769
|
sessionKey?: string | undefined;
|
|
2764
2770
|
clearWhileUnmount?: boolean | undefined;
|
|
@@ -2872,6 +2878,9 @@ declare const ProLayout: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
2872
2878
|
onDragEnd: (tabIds: string[]) => void;
|
|
2873
2879
|
}) => void>;
|
|
2874
2880
|
};
|
|
2881
|
+
findFirstMenu: {
|
|
2882
|
+
type: FunctionConstructor;
|
|
2883
|
+
};
|
|
2875
2884
|
}>> & {
|
|
2876
2885
|
sessionKey?: string | undefined;
|
|
2877
2886
|
clearWhileUnmount?: boolean | undefined;
|