@vue-start/pro 0.5.7 → 0.5.8
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 +87 -0
- package/dist/index.d.ts +26 -36
- package/dist/index.es.js +882 -843
- package/dist/index.js +1 -1
- package/package.json +3 -2
package/dist/index.css
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/********************************** pro-layout ***********************************/
|
|
2
|
+
|
|
3
|
+
.pro-layout {
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.pro-layout .pro-layout-header {
|
|
7
|
+
height: var(--header-hei);
|
|
8
|
+
display: flex;
|
|
9
|
+
align-items: center;
|
|
10
|
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.pro-layout .pro-layout-header .pro-layout-menus {
|
|
14
|
+
flex: 1;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/*vertical*/
|
|
18
|
+
.pro-layout-vertical {
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/*horizontal*/
|
|
22
|
+
|
|
23
|
+
.pro-layout-horizontal {
|
|
24
|
+
display: flex;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.pro-layout-horizontal .pro-layout-menus {
|
|
28
|
+
width: 240px;
|
|
29
|
+
min-width: 240px;
|
|
30
|
+
max-width: 240px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.pro-layout-horizontal .pro-layout-structure {
|
|
34
|
+
flex-grow: 1;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/*compose*/
|
|
38
|
+
|
|
39
|
+
.pro-layout-compose {
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.pro-layout-compose .pro-layout-structure {
|
|
43
|
+
display: flex;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.pro-layout-compose .pro-layout-structure .pro-layout-menus {
|
|
47
|
+
width: 220px;
|
|
48
|
+
min-width: 220px;
|
|
49
|
+
max-width: 220px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.pro-layout-compose .pro-layout-structure .pro-layout-section {
|
|
53
|
+
flex-grow: 1;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/********************************** pro-typography ***********************************/
|
|
57
|
+
.pro-typography-ellipsis {
|
|
58
|
+
overflow: hidden;
|
|
59
|
+
text-overflow: ellipsis;
|
|
60
|
+
display: -webkit-box;
|
|
61
|
+
-webkit-box-orient: vertical;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/********************************** pro-form ***********************************/
|
|
65
|
+
.pro-form {
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.pro-form .pro-form-operate {
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.pro-form .pro-form-operate button:not(:first-child) {
|
|
72
|
+
margin-left: 12px;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/********************************** pro-search-form ***********************************/
|
|
76
|
+
.pro-search-form {
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.pro-search-form .pro-search-form-operate {
|
|
80
|
+
display: inline-flex;
|
|
81
|
+
vertical-align: middle;
|
|
82
|
+
margin-bottom: 18px;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.pro-search-form .pro-search-form-operate button:not(:first-child) {
|
|
86
|
+
margin-left: 12px;
|
|
87
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -705,13 +705,6 @@ declare enum SearchMode {
|
|
|
705
705
|
}
|
|
706
706
|
declare type ISearchMode = keyof typeof SearchMode;
|
|
707
707
|
declare const proSearchFormProps: () => {
|
|
708
|
-
/**
|
|
709
|
-
* class
|
|
710
|
-
*/
|
|
711
|
-
clsName: {
|
|
712
|
-
type: StringConstructor;
|
|
713
|
-
default: string;
|
|
714
|
-
};
|
|
715
708
|
/**
|
|
716
709
|
* 初始化触发 onFinish
|
|
717
710
|
*/
|
|
@@ -977,7 +970,6 @@ interface ITableOperate {
|
|
|
977
970
|
itemState?: {
|
|
978
971
|
[key: string]: Omit<IOperateItem, "value">;
|
|
979
972
|
};
|
|
980
|
-
clsName?: ProOperateProps["clsName"];
|
|
981
973
|
elementKey?: ProOperateProps["elementKey"];
|
|
982
974
|
}
|
|
983
975
|
declare const proTableProps: () => {
|
|
@@ -1668,13 +1660,32 @@ declare type TFile = {
|
|
|
1668
1660
|
declare const ProUploaderText: vue.DefineComponent<Record<string, any>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, vue.EmitsOptions, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<Record<string, any>>>, {
|
|
1669
1661
|
[x: string]: any;
|
|
1670
1662
|
}>;
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1663
|
+
/**
|
|
1664
|
+
* 文件列表
|
|
1665
|
+
*/
|
|
1666
|
+
declare const UploadList: vue.DefineComponent<{
|
|
1667
|
+
value: (ArrayConstructor | StringConstructor)[];
|
|
1668
|
+
fieldNames: {
|
|
1669
|
+
type: ObjectConstructor;
|
|
1670
|
+
default: {
|
|
1671
|
+
id: string;
|
|
1672
|
+
name: string;
|
|
1673
|
+
size: string;
|
|
1674
|
+
};
|
|
1675
|
+
};
|
|
1676
|
+
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
1677
|
+
value: (ArrayConstructor | StringConstructor)[];
|
|
1678
|
+
fieldNames: {
|
|
1679
|
+
type: ObjectConstructor;
|
|
1680
|
+
default: {
|
|
1681
|
+
id: string;
|
|
1682
|
+
name: string;
|
|
1683
|
+
size: string;
|
|
1684
|
+
};
|
|
1685
|
+
};
|
|
1686
|
+
}>>, {
|
|
1687
|
+
fieldNames: Record<string, any>;
|
|
1688
|
+
}>;
|
|
1678
1689
|
|
|
1679
1690
|
/******************************** 组件key ********************************/
|
|
1680
1691
|
declare const ElementKeys: {
|
|
@@ -1896,13 +1907,6 @@ declare const ProCurdList: vue.DefineComponent<Partial<vue.ExtractPropTypes<{
|
|
|
1896
1907
|
declare const ProCurdListConnect: vue.DefineComponent<unknown, () => JSX.Element, {}, vue.ComputedOptions, vue.MethodOptions, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<unknown>, {}>;
|
|
1897
1908
|
|
|
1898
1909
|
declare const proCurdFormProps: () => {
|
|
1899
|
-
/**
|
|
1900
|
-
* class名称
|
|
1901
|
-
*/
|
|
1902
|
-
clsName: {
|
|
1903
|
-
type: StringConstructor;
|
|
1904
|
-
default: string;
|
|
1905
|
-
};
|
|
1906
1910
|
signName: {
|
|
1907
1911
|
type: StringConstructor;
|
|
1908
1912
|
};
|
|
@@ -1912,13 +1916,6 @@ declare const ProCurdForm: vue.DefineComponent<ProCurdFormProps, {}, {}, {}, {},
|
|
|
1912
1916
|
declare const ProCurdFormConnect: vue.DefineComponent<unknown, () => JSX.Element, {}, vue.ComputedOptions, vue.MethodOptions, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<unknown>, {}>;
|
|
1913
1917
|
|
|
1914
1918
|
declare const proCurdDescProps: () => {
|
|
1915
|
-
/**
|
|
1916
|
-
* class名称
|
|
1917
|
-
*/
|
|
1918
|
-
clsName: {
|
|
1919
|
-
type: StringConstructor;
|
|
1920
|
-
default: string;
|
|
1921
|
-
};
|
|
1922
1919
|
signName: {
|
|
1923
1920
|
type: StringConstructor;
|
|
1924
1921
|
};
|
|
@@ -1930,13 +1927,6 @@ declare const ProCurdDesc: vue.DefineComponent<ProCurdDescProps, {}, {}, {}, {},
|
|
|
1930
1927
|
declare const ProCurdDescConnect: vue.DefineComponent<unknown, () => JSX.Element, {}, vue.ComputedOptions, vue.MethodOptions, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<unknown>, {}>;
|
|
1931
1928
|
|
|
1932
1929
|
declare const proCurdModalProps: () => {
|
|
1933
|
-
/**
|
|
1934
|
-
* class名称
|
|
1935
|
-
*/
|
|
1936
|
-
clsName: {
|
|
1937
|
-
type: StringConstructor;
|
|
1938
|
-
default: string;
|
|
1939
|
-
};
|
|
1940
1930
|
validMode: {
|
|
1941
1931
|
type: ArrayConstructor;
|
|
1942
1932
|
default: CurdAction[];
|