@vue-start/pro 0.5.67 → 0.5.69

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
@@ -3,6 +3,17 @@
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.69
7
+
8
+ - perf: ProLayout 支持 simple 模式;html 添加 device class 标记;ProConfigProvide 提供 device 变量;
9
+
10
+ # 0.5.68
11
+
12
+ - fix: ProRouterView include 更新机制使用 nextTick 优化;
13
+ - perf: column 支持 formExtra 配置; ProForm 支持提交选择组件 label 拓展;
14
+ - perf: meta 模式完善:补充 loading 状态;storeName 自定义;
15
+ - perf: column 支持 setData 配置,包含设置全局 store、meta 中的数据;
16
+
6
17
  # 0.5.67
7
18
 
8
19
  - fix: ProTable 支持虚拟表格,通过 virtual 字段配置;
package/dist/index.css CHANGED
@@ -208,6 +208,15 @@
208
208
  width: calc(100vw - var(--pro-left-menu-wid));
209
209
  }
210
210
 
211
+ /*simple*/
212
+
213
+ .pro-layout-trigger {
214
+ position: fixed;
215
+ right: var(--pro-spacing-4);
216
+ top: calc(var(--pro-header-hei) / 2);
217
+ transform: translateY(-50%);
218
+ }
219
+
211
220
  /*layout-tabs*/
212
221
 
213
222
  .pro-layout .pro-layout-tabs {
@@ -343,15 +352,6 @@
343
352
  .pro-form-list {
344
353
  }
345
354
 
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
355
  .pro-form-list-inline .pro-form-list-item {
356
356
  display: flex;
357
357
  flex-wrap: wrap;
@@ -382,24 +382,6 @@
382
382
  justify-content: space-between;
383
383
  }
384
384
 
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
385
  /********************************** pro-page ***********************************/
404
386
 
405
387
  .pro-page {
@@ -524,14 +506,6 @@
524
506
  overflow: hidden;
525
507
  }
526
508
 
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
509
  .pro-page.curd-list .pro-curd-list.virtual .pro-table {
536
510
  flex: 1;
537
511
  }
@@ -574,72 +548,7 @@
574
548
  height: 100vh;
575
549
  }
576
550
 
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
551
  /***************************** 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
552
  .pro-app-config_form_layout {
644
553
  width: 100%;
645
554
  display: grid;
@@ -695,3 +604,18 @@
695
604
  justify-content: center;
696
605
  padding: 16px 0;
697
606
  }
607
+
608
+ /***************************** device 适配 ***********************************/
609
+ html.tablet {
610
+ }
611
+
612
+ html.tablet .pro-modal {
613
+ width: 80vw !important;
614
+ }
615
+
616
+ html.mobile {
617
+ }
618
+
619
+ html.mobile .pro-modal {
620
+ width: 90vw !important;
621
+ }