@vue-start/pro 0.5.23 → 0.5.24
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/index.css +13 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.es.js +415 -405
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -70,6 +70,19 @@
|
|
|
70
70
|
flex-grow: 1;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
|
+
/*horizontal-v*/
|
|
74
|
+
.pro-layout-horizontal-v {
|
|
75
|
+
display: unset !important;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.pro-layout-horizontal-v .pro-layout-structure {
|
|
79
|
+
display: flex;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.pro-layout-horizontal-v .pro-layout-structure .pro-layout-section {
|
|
83
|
+
flex-grow: 1;
|
|
84
|
+
}
|
|
85
|
+
|
|
73
86
|
/*compose*/
|
|
74
87
|
|
|
75
88
|
.pro-layout-compose {
|
package/dist/index.d.ts
CHANGED
|
@@ -1873,7 +1873,7 @@ declare const ProLayout: vue.DefineComponent<{
|
|
|
1873
1873
|
* compose: 菜单第一级在header中,子级在左侧菜单
|
|
1874
1874
|
*/
|
|
1875
1875
|
layout: {
|
|
1876
|
-
type: PropType<"vertical" | "horizontal" | "compose">;
|
|
1876
|
+
type: PropType<"vertical" | "horizontal" | "horizontal-v" | "compose">;
|
|
1877
1877
|
default: string;
|
|
1878
1878
|
};
|
|
1879
1879
|
findCurrentTopName: {
|
|
@@ -1921,7 +1921,7 @@ declare const ProLayout: vue.DefineComponent<{
|
|
|
1921
1921
|
* compose: 菜单第一级在header中,子级在左侧菜单
|
|
1922
1922
|
*/
|
|
1923
1923
|
layout: {
|
|
1924
|
-
type: PropType<"vertical" | "horizontal" | "compose">;
|
|
1924
|
+
type: PropType<"vertical" | "horizontal" | "horizontal-v" | "compose">;
|
|
1925
1925
|
default: string;
|
|
1926
1926
|
};
|
|
1927
1927
|
findCurrentTopName: {
|
|
@@ -1962,7 +1962,7 @@ declare const ProLayout: vue.DefineComponent<{
|
|
|
1962
1962
|
value: string;
|
|
1963
1963
|
label: string;
|
|
1964
1964
|
};
|
|
1965
|
-
layout: "vertical" | "horizontal" | "compose";
|
|
1965
|
+
layout: "vertical" | "horizontal" | "horizontal-v" | "compose";
|
|
1966
1966
|
}>;
|
|
1967
1967
|
|
|
1968
1968
|
declare type TFile = {
|