@vue-start/pro 0.5.67 → 0.5.68
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 +7 -0
- package/dist/index.css +0 -100
- package/dist/index.d.ts +349 -231
- package/dist/index.es.js +1987 -1841
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
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.68
|
|
7
|
+
|
|
8
|
+
- fix: ProRouterView include 更新机制使用 nextTick 优化;
|
|
9
|
+
- perf: column 支持 formExtra 配置; ProForm 支持提交选择组件 label 拓展;
|
|
10
|
+
- perf: meta 模式完善:补充 loading 状态;storeName 自定义;
|
|
11
|
+
- perf: column 支持 setData 配置,包含设置全局 store、meta 中的数据;
|
|
12
|
+
|
|
6
13
|
# 0.5.67
|
|
7
14
|
|
|
8
15
|
- fix: ProTable 支持虚拟表格,通过 virtual 字段配置;
|
package/dist/index.css
CHANGED
|
@@ -343,15 +343,6 @@
|
|
|
343
343
|
.pro-form-list {
|
|
344
344
|
}
|
|
345
345
|
|
|
346
|
-
/* element-plus */
|
|
347
|
-
.pro-form-list .el-form-item__content {
|
|
348
|
-
display: unset !important;
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
.pro-form-list .el-form-item {
|
|
352
|
-
margin-bottom: 18px !important;
|
|
353
|
-
}
|
|
354
|
-
|
|
355
346
|
.pro-form-list-inline .pro-form-list-item {
|
|
356
347
|
display: flex;
|
|
357
348
|
flex-wrap: wrap;
|
|
@@ -382,24 +373,6 @@
|
|
|
382
373
|
justify-content: space-between;
|
|
383
374
|
}
|
|
384
375
|
|
|
385
|
-
/* element-plus */
|
|
386
|
-
.pro-table .pro-table-toolbar .pro-table-toolbar-start .el-form-item {
|
|
387
|
-
margin-bottom: 0px;
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
/* element-plus 虚拟表格 */
|
|
391
|
-
.el-table-v2.dynamic-hei .el-table-v2__row-cell {
|
|
392
|
-
min-height: var(--estimated-hei);
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
.pro-table .el-table__header .pro-single .el-checkbox {
|
|
396
|
-
display: none;
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
.pro-table .pro-single .el-checkbox__inner {
|
|
400
|
-
border-radius: 50%;
|
|
401
|
-
}
|
|
402
|
-
|
|
403
376
|
/********************************** pro-page ***********************************/
|
|
404
377
|
|
|
405
378
|
.pro-page {
|
|
@@ -524,14 +497,6 @@
|
|
|
524
497
|
overflow: hidden;
|
|
525
498
|
}
|
|
526
499
|
|
|
527
|
-
.pro-page.curd-list .pro-curd-list .pro-table .el-table {
|
|
528
|
-
height: calc(100% - var(--pro-table-toolbar-hei));
|
|
529
|
-
}
|
|
530
|
-
|
|
531
|
-
.pro-page.curd-list .pro-table-v2-wrapper {
|
|
532
|
-
height: calc(100% - var(--pro-table-toolbar-hei));
|
|
533
|
-
}
|
|
534
|
-
|
|
535
500
|
.pro-page.curd-list .pro-curd-list.virtual .pro-table {
|
|
536
501
|
flex: 1;
|
|
537
502
|
}
|
|
@@ -574,72 +539,7 @@
|
|
|
574
539
|
height: 100vh;
|
|
575
540
|
}
|
|
576
541
|
|
|
577
|
-
/********************************** pro-modal ***********************************/
|
|
578
|
-
.pro-modal {
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
.pro-modal .el-dialog__header {
|
|
582
|
-
padding: 16px;
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
.pro-modal .el-dialog__body {
|
|
586
|
-
padding: 0 16px;
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
.pro-modal.scroll .el-dialog__body {
|
|
590
|
-
padding: 0;
|
|
591
|
-
}
|
|
592
|
-
|
|
593
|
-
.pro-modal .pro-modal-scroll {
|
|
594
|
-
padding: 0 16px;
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
.pro-modal .el-dialog__footer {
|
|
598
|
-
padding: 16px;
|
|
599
|
-
}
|
|
600
|
-
|
|
601
|
-
/********************************** pro-drawer ***********************************/
|
|
602
|
-
.pro-drawer {
|
|
603
|
-
}
|
|
604
|
-
|
|
605
|
-
.pro-drawer .el-drawer__header {
|
|
606
|
-
margin-bottom: 0px;
|
|
607
|
-
padding: 16px;
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
.pro-drawer .el-drawer__body {
|
|
611
|
-
padding: 0 16px;
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
.pro-drawer.scroll .el-drawer__body {
|
|
615
|
-
padding: 0;
|
|
616
|
-
}
|
|
617
|
-
|
|
618
|
-
.pro-drawer .pro-drawer-scroll {
|
|
619
|
-
padding: 0 16px;
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
.pro-drawer .el-drawer__footer {
|
|
623
|
-
padding: 16px;
|
|
624
|
-
}
|
|
625
|
-
|
|
626
542
|
/***************************** pro-app-config ***********************************/
|
|
627
|
-
.pro-app-config_form .el-form-item {
|
|
628
|
-
margin-bottom: 8px;
|
|
629
|
-
}
|
|
630
|
-
|
|
631
|
-
.pro-app-config_form .el-form-item__label {
|
|
632
|
-
padding: 0 !important;
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
.pro-app-config_form_title .el-form-item__content {
|
|
636
|
-
justify-content: center;
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
.pro-app-config_form .el-form-item__content {
|
|
640
|
-
flex-direction: row-reverse;
|
|
641
|
-
}
|
|
642
|
-
|
|
643
543
|
.pro-app-config_form_layout {
|
|
644
544
|
width: 100%;
|
|
645
545
|
display: grid;
|