@baosight/erm 1.6.8 → 1.6.9

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/lib/index.esm.css CHANGED
@@ -1,4 +1,144 @@
1
1
  @charset "UTF-8";
2
+ .baseStyle[data-v-a440e92e] {
3
+ width: 99%;
4
+ height: 100%;
5
+ }
6
+
7
+ [data-v-a440e92e] .ag-header-group-cell {
8
+ border-right-style: solid;
9
+ border-right-width: 1px;
10
+ border-right-color: #cecece;
11
+ display: flex;
12
+ justify-content: center;
13
+ align-items: center;
14
+ }
15
+
16
+ [data-v-a440e92e] .ag-header-cell-label {
17
+ display: flex;
18
+ justify-content: center;
19
+ align-items: center;
20
+ }
21
+
22
+ [data-v-a440e92e] .ag-root-wrapper {
23
+ cursor: default;
24
+ position: relative;
25
+ display: flex;
26
+ flex-direction: column;
27
+ overflow: hidden;
28
+ white-space: normal;
29
+ border: 1px solid #cecece !important; /* 设置最外边的边框 */
30
+ margin-right: 2px !important;
31
+ margin-left: 2px !important;
32
+ margin-bottom: 60px !important;
33
+ }
34
+
35
+ [data-v-a440e92e] .ag-header-cell:first-child .ag-header-cell-label {
36
+ display: flex !important;
37
+ justify-content: center !important;
38
+ align-items: center !important;
39
+ text-align: center !important;
40
+ }
41
+
42
+ .ag-theme-alpine[data-v-a440e92e] {
43
+ /* and between columns */
44
+ --ag-cell-horizontal-border: solid #cecece;
45
+ --ag-header-cell-horizontal-border: solid #cecece;
46
+ --ag-header-foreground-color: #3a7af9;
47
+ }
48
+
49
+ [data-v-a440e92e] .ag-header-cell {
50
+ border-right-style: solid;
51
+ border-right-width: 1px;
52
+ border-right-color: #cecece; /* 深灰色底边框 */
53
+ }
54
+
55
+ /* 如果你想要更具体的样式,比如只针对第一个表头列 */
56
+ .ag-header-cell[data-v-a440e92e]:first-child {
57
+ border-left: none; /* 移除左侧边框,如果需要的话 */
58
+ }
59
+
60
+ /* 或者针对最后一列 */
61
+ .ag-header-cell[data-v-a440e92e]:last-child {
62
+ border-right: none; /* 移除右侧边框,如果需要的话 */
63
+ }
64
+
65
+ /* 选中行的样式 */
66
+ [data-v-a440e92e] .ag-row-selected::before {
67
+ background-color: rgba(183, 249, 177, 0.5803921569);
68
+ }
69
+
70
+ /* 选中焦点行的样式 */
71
+ [data-v-a440e92e] .ag-row-hover.ag-row-selected::before {
72
+ background-color: rgba(183, 249, 177, 0.5803921569);
73
+ background-image: none;
74
+ }
75
+
76
+ /* 表头的样式 */
77
+ [data-v-a440e92e] .ag-header {
78
+ background-color: #dbefff;
79
+ text-align: center;
80
+ }
81
+
82
+ [data-v-a440e92e] .ag-checkbox-input-wrapper.ag-disabled {
83
+ opacity: 1;
84
+ }
85
+
86
+ /* 默认行的背景色 */
87
+ [data-v-a440e92e] .ag-row-odd {
88
+ background-color: aliceblue;
89
+ }
90
+
91
+ /* 取消选中行的样式 */
92
+ [data-v-a440e92e] .ag-row-hover:not(.ag-row-selected)::before {
93
+ background-color: #ecf0f1;
94
+ }
95
+
96
+ [data-v-a440e92e] .ag-header-cell-label {
97
+ white-space: pre-line !important; /* 强制允许换行 */
98
+ }
99
+
100
+ /*
101
+
102
+ :deep(.ag-header-cell.ag-header-cell-wrap-text.ag-header-cell-auto-height.ag-focus-managed) {
103
+ padding: 0 4px 0 4px !important;
104
+ }
105
+ :deep(.ag-cell-value.ag-cell-not-inline-editing.ag-cell-normal-height) {
106
+ padding: 0 3px 0 3px !important;
107
+ }
108
+
109
+ :deep(.ag-selection-checkbox) {
110
+ margin: 0 auto!important;
111
+ text-align: center;
112
+
113
+ }
114
+ .centered-checkbox .ag-cell-wrapper {
115
+ padding:0 3px;
116
+ display: flex;
117
+ justify-content: center;
118
+ align-items: center;
119
+ }
120
+
121
+ .centered-header .ag-header-cell-label {
122
+ padding:0 4px;
123
+ display: flex;
124
+ justify-content: center;
125
+ }
126
+ :deep(.ag-input-field-input.ag-checkbox-input){
127
+ text-align: center;
128
+ display: flex;
129
+ justify-content: center;
130
+ }*/
131
+ .loading-overlay[data-v-a440e92e] {
132
+ position: absolute;
133
+ top: 0;
134
+ left: 0;
135
+ right: 0;
136
+ bottom: 0;
137
+ background-color: rgba(255, 255, 255, 0.5);
138
+ display: flex;
139
+ z-index: 1000;
140
+ }
141
+
2
142
  .rowContent[data-v-1b695265] {
3
143
  display: flex;
4
144
  flex-direction: row;
@@ -425,146 +565,6 @@ nav .jh-button[data-v-35c7b3ce] {
425
565
  color: #fff; /* 勾选后的文字颜色 */
426
566
  }
427
567
 
428
- .baseStyle[data-v-a440e92e] {
429
- width: 99%;
430
- height: 100%;
431
- }
432
-
433
- [data-v-a440e92e] .ag-header-group-cell {
434
- border-right-style: solid;
435
- border-right-width: 1px;
436
- border-right-color: #cecece;
437
- display: flex;
438
- justify-content: center;
439
- align-items: center;
440
- }
441
-
442
- [data-v-a440e92e] .ag-header-cell-label {
443
- display: flex;
444
- justify-content: center;
445
- align-items: center;
446
- }
447
-
448
- [data-v-a440e92e] .ag-root-wrapper {
449
- cursor: default;
450
- position: relative;
451
- display: flex;
452
- flex-direction: column;
453
- overflow: hidden;
454
- white-space: normal;
455
- border: 1px solid #cecece !important; /* 设置最外边的边框 */
456
- margin-right: 2px !important;
457
- margin-left: 2px !important;
458
- margin-bottom: 60px !important;
459
- }
460
-
461
- [data-v-a440e92e] .ag-header-cell:first-child .ag-header-cell-label {
462
- display: flex !important;
463
- justify-content: center !important;
464
- align-items: center !important;
465
- text-align: center !important;
466
- }
467
-
468
- .ag-theme-alpine[data-v-a440e92e] {
469
- /* and between columns */
470
- --ag-cell-horizontal-border: solid #cecece;
471
- --ag-header-cell-horizontal-border: solid #cecece;
472
- --ag-header-foreground-color: #3a7af9;
473
- }
474
-
475
- [data-v-a440e92e] .ag-header-cell {
476
- border-right-style: solid;
477
- border-right-width: 1px;
478
- border-right-color: #cecece; /* 深灰色底边框 */
479
- }
480
-
481
- /* 如果你想要更具体的样式,比如只针对第一个表头列 */
482
- .ag-header-cell[data-v-a440e92e]:first-child {
483
- border-left: none; /* 移除左侧边框,如果需要的话 */
484
- }
485
-
486
- /* 或者针对最后一列 */
487
- .ag-header-cell[data-v-a440e92e]:last-child {
488
- border-right: none; /* 移除右侧边框,如果需要的话 */
489
- }
490
-
491
- /* 选中行的样式 */
492
- [data-v-a440e92e] .ag-row-selected::before {
493
- background-color: rgba(183, 249, 177, 0.5803921569);
494
- }
495
-
496
- /* 选中焦点行的样式 */
497
- [data-v-a440e92e] .ag-row-hover.ag-row-selected::before {
498
- background-color: rgba(183, 249, 177, 0.5803921569);
499
- background-image: none;
500
- }
501
-
502
- /* 表头的样式 */
503
- [data-v-a440e92e] .ag-header {
504
- background-color: #dbefff;
505
- text-align: center;
506
- }
507
-
508
- [data-v-a440e92e] .ag-checkbox-input-wrapper.ag-disabled {
509
- opacity: 1;
510
- }
511
-
512
- /* 默认行的背景色 */
513
- [data-v-a440e92e] .ag-row-odd {
514
- background-color: aliceblue;
515
- }
516
-
517
- /* 取消选中行的样式 */
518
- [data-v-a440e92e] .ag-row-hover:not(.ag-row-selected)::before {
519
- background-color: #ecf0f1;
520
- }
521
-
522
- [data-v-a440e92e] .ag-header-cell-label {
523
- white-space: pre-line !important; /* 强制允许换行 */
524
- }
525
-
526
- /*
527
-
528
- :deep(.ag-header-cell.ag-header-cell-wrap-text.ag-header-cell-auto-height.ag-focus-managed) {
529
- padding: 0 4px 0 4px !important;
530
- }
531
- :deep(.ag-cell-value.ag-cell-not-inline-editing.ag-cell-normal-height) {
532
- padding: 0 3px 0 3px !important;
533
- }
534
-
535
- :deep(.ag-selection-checkbox) {
536
- margin: 0 auto!important;
537
- text-align: center;
538
-
539
- }
540
- .centered-checkbox .ag-cell-wrapper {
541
- padding:0 3px;
542
- display: flex;
543
- justify-content: center;
544
- align-items: center;
545
- }
546
-
547
- .centered-header .ag-header-cell-label {
548
- padding:0 4px;
549
- display: flex;
550
- justify-content: center;
551
- }
552
- :deep(.ag-input-field-input.ag-checkbox-input){
553
- text-align: center;
554
- display: flex;
555
- justify-content: center;
556
- }*/
557
- .loading-overlay[data-v-a440e92e] {
558
- position: absolute;
559
- top: 0;
560
- left: 0;
561
- right: 0;
562
- bottom: 0;
563
- background-color: rgba(255, 255, 255, 0.5);
564
- display: flex;
565
- z-index: 1000;
566
- }
567
-
568
568
  .container[data-v-87a0d832] {
569
569
  width: 100%;
570
570
  height: 100%;
@@ -626,6 +626,10 @@ nav .jh-button[data-v-35c7b3ce] {
626
626
  font-family: "阿里巴巴普惠体Light";
627
627
  }
628
628
 
629
+ [data-v-6e3557b8] .van-checkbox {
630
+ padding: 5px 0;
631
+ }
632
+
629
633
  [data-v-7351fe97] .van-popup {
630
634
  max-height: 80%;
631
635
  }
@@ -657,8 +661,4 @@ nav .jh-button[data-v-35c7b3ce] {
657
661
 
658
662
  [data-v-804c414a] .van-checkbox {
659
663
  padding: 5px 0;
660
- }
661
-
662
- [data-v-6e3557b8] .van-checkbox {
663
- padding: 5px 0;
664
664
  }