@vue-start/pro 0.5.51 → 0.5.53
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.css +10 -2
- package/dist/index.es.js +1287 -1292
- package/dist/index.js +2 -2
- 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.52
|
|
7
|
+
|
|
8
|
+
- fix: ProTable header 有效性 css。通过 table css 取: pro-table.has-header .pro-table-toolbar;通过直接属性取:pro-table-toolbar-valid;
|
|
9
|
+
|
|
6
10
|
# 0.5.51
|
|
7
11
|
|
|
8
12
|
- fix: 左侧菜单收起 css 类精确,由.pro-layout.mini 改为 .pro-layout.has-left-menu.mini
|
package/dist/index.css
CHANGED
|
@@ -529,7 +529,11 @@
|
|
|
529
529
|
}
|
|
530
530
|
|
|
531
531
|
.pro-modal .el-dialog__body {
|
|
532
|
-
padding:
|
|
532
|
+
padding: 0 16px;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.pro-modal.scroll .el-dialog__body {
|
|
536
|
+
padding: 0;
|
|
533
537
|
}
|
|
534
538
|
|
|
535
539
|
.pro-modal .pro-modal-scroll {
|
|
@@ -550,7 +554,11 @@
|
|
|
550
554
|
}
|
|
551
555
|
|
|
552
556
|
.pro-drawer .el-drawer__body {
|
|
553
|
-
padding:
|
|
557
|
+
padding: 0 16px;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.pro-drawer.scroll .el-drawer__body {
|
|
561
|
+
padding: 0;
|
|
554
562
|
}
|
|
555
563
|
|
|
556
564
|
.pro-drawer .pro-drawer-scroll {
|