@vue-start/element-pro 0.2.38 → 0.2.40

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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # Change Log
2
2
 
3
+ # 0.2.40
4
+
5
+ - feat: 添加 ProSelectV2 虚拟组件;
6
+
7
+ # 0.2.39
8
+
9
+ - feat: 添加样式文件;
10
+ - feat: 新增 ProTreeSelect、ProCascader 组件;
11
+ - perf:ProSelect、ProTreeSelect、ProCascader、ProCheckbox 等选择组件提供 value 自定义配置;
12
+
3
13
  # 0.2.38
4
14
 
5
15
  - fix: ProTableV2 虚拟表格
package/dist/index.css ADDED
@@ -0,0 +1,99 @@
1
+ /********************************** pro-form-list ***********************************/
2
+ .pro-form-list .el-form-item__content {
3
+ display: unset !important;
4
+ }
5
+
6
+ .pro-form-list .el-form-item {
7
+ margin-bottom: 18px !important;
8
+ }
9
+
10
+ /********************************** pro-table ***********************************/
11
+ /* table toolbar 中的form-item 样式 */
12
+ .pro-table .pro-table-toolbar .pro-table-toolbar-start .el-form-item {
13
+ margin-bottom: 0px;
14
+ }
15
+
16
+ /* 虚拟表格 */
17
+ .el-table-v2.dynamic-hei .el-table-v2__row-cell {
18
+ min-height: var(--estimated-hei);
19
+ }
20
+
21
+ .pro-table .el-table__header .pro-single .el-checkbox {
22
+ display: none;
23
+ }
24
+
25
+ /* 单选框样式 */
26
+ .pro-table .pro-single .el-checkbox__inner {
27
+ border-radius: 50%;
28
+ }
29
+
30
+ /********************************** curd-list ***********************************/
31
+
32
+ .pro-page.curd-list .pro-curd-list .pro-table .el-table {
33
+ height: calc(100% - var(--pro-table-toolbar-hei));
34
+ }
35
+
36
+ .pro-page.curd-list .pro-table-v2-wrapper {
37
+ height: calc(100% - var(--pro-table-toolbar-hei));
38
+ }
39
+
40
+ /********************************** pro-modal ***********************************/
41
+ .pro-modal .el-dialog__header {
42
+ padding: 16px;
43
+ }
44
+
45
+ .pro-modal .el-dialog__body {
46
+ padding: 0 16px;
47
+ }
48
+
49
+ .pro-modal.scroll .el-dialog__body {
50
+ padding: 0;
51
+ }
52
+
53
+ .pro-modal .pro-modal-scroll {
54
+ padding: 0 16px;
55
+ }
56
+
57
+ .pro-modal .el-dialog__footer {
58
+ padding: 16px;
59
+ }
60
+
61
+ /********************************** pro-drawer ***********************************/
62
+
63
+ .pro-drawer .el-drawer__header {
64
+ margin-bottom: 0px;
65
+ padding: 16px;
66
+ }
67
+
68
+ .pro-drawer .el-drawer__body {
69
+ padding: 0 16px;
70
+ }
71
+
72
+ .pro-drawer.scroll .el-drawer__body {
73
+ padding: 0;
74
+ }
75
+
76
+ .pro-drawer .pro-drawer-scroll {
77
+ padding: 0 16px;
78
+ }
79
+
80
+ .pro-drawer .el-drawer__footer {
81
+ padding: 16px;
82
+ }
83
+
84
+ /***************************** pro-app-config ***********************************/
85
+ .pro-app-config_form .el-form-item {
86
+ margin-bottom: 8px;
87
+ }
88
+
89
+ .pro-app-config_form .el-form-item__label {
90
+ padding: 0 !important;
91
+ }
92
+
93
+ .pro-app-config_form_title .el-form-item__content {
94
+ justify-content: center;
95
+ }
96
+
97
+ .pro-app-config_form .el-form-item__content {
98
+ flex-direction: row-reverse;
99
+ }