@vue-start/pro 0.5.55 → 0.5.57
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 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.es.js +2118 -2062
- package/dist/index.js +3 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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
|
+
# 0.5.56
|
|
7
|
+
|
|
8
|
+
- perf: ProLayout tabs 所有(理论上)菜单保留 query 状态;
|
|
9
|
+
|
|
6
10
|
# 0.5.55
|
|
7
11
|
|
|
8
12
|
- fix: ProLayout tabs 支持 findFirstMenu 自定义;
|
package/dist/index.d.ts
CHANGED
|
@@ -2557,6 +2557,7 @@ interface IProLayoutProvide {
|
|
|
2557
2557
|
convertValue: (menu: TLayoutTabMenu) => string;
|
|
2558
2558
|
menus: Ref<TLayoutMenu[]>;
|
|
2559
2559
|
showMenus: Ref<TLayoutMenu[]>;
|
|
2560
|
+
repeatRouteMap: Ref<Record<string, true>>;
|
|
2560
2561
|
menuMap: Ref<Record<string, TLayoutMenu>>;
|
|
2561
2562
|
tabs: Ref<TLayoutTabMenu[]>;
|
|
2562
2563
|
showTabs: Ref<boolean>;
|
|
@@ -2647,6 +2648,9 @@ declare const layoutProps: () => {
|
|
|
2647
2648
|
findFirstMenu: {
|
|
2648
2649
|
type: FunctionConstructor;
|
|
2649
2650
|
};
|
|
2651
|
+
onItemClick: {
|
|
2652
|
+
type: FunctionConstructor;
|
|
2653
|
+
};
|
|
2650
2654
|
}>> & {
|
|
2651
2655
|
sessionKey?: string | undefined;
|
|
2652
2656
|
clearWhileUnmount?: boolean | undefined;
|
|
@@ -2765,6 +2769,9 @@ declare const ProLayout: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
2765
2769
|
findFirstMenu: {
|
|
2766
2770
|
type: FunctionConstructor;
|
|
2767
2771
|
};
|
|
2772
|
+
onItemClick: {
|
|
2773
|
+
type: FunctionConstructor;
|
|
2774
|
+
};
|
|
2768
2775
|
}>> & {
|
|
2769
2776
|
sessionKey?: string | undefined;
|
|
2770
2777
|
clearWhileUnmount?: boolean | undefined;
|
|
@@ -2881,6 +2888,9 @@ declare const ProLayout: vue.DefineComponent<Partial<ExtractPropTypes<{
|
|
|
2881
2888
|
findFirstMenu: {
|
|
2882
2889
|
type: FunctionConstructor;
|
|
2883
2890
|
};
|
|
2891
|
+
onItemClick: {
|
|
2892
|
+
type: FunctionConstructor;
|
|
2893
|
+
};
|
|
2884
2894
|
}>> & {
|
|
2885
2895
|
sessionKey?: string | undefined;
|
|
2886
2896
|
clearWhileUnmount?: boolean | undefined;
|