ls-pro-common 3.0.57 → 3.0.58
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/dist/common.css +30 -16
- package/dist/common.js +1 -1
- package/dist/common.min.css +30 -16
- package/dist/common.min.js +1 -1
- package/es/components/ImageSelector.d.ts +7 -7
- package/es/components/ImageSelector.js +32 -6
- package/es/hooks/useGetState.d.ts +1 -0
- package/es/hooks/useGetState.js +4 -3
- package/lib/components/ImageSelector.d.ts +7 -7
- package/lib/components/ImageSelector.js +32 -6
- package/lib/hooks/useGetState.d.ts +1 -0
- package/lib/hooks/useGetState.js +4 -3
- package/package.json +3 -3
package/dist/common.min.css
CHANGED
|
@@ -2813,8 +2813,8 @@ html {
|
|
|
2813
2813
|
align-items: center;
|
|
2814
2814
|
justify-content: space-between;
|
|
2815
2815
|
height: 42px;
|
|
2816
|
-
padding: 0 10px;
|
|
2817
2816
|
margin-bottom: 10px;
|
|
2817
|
+
padding: 0 10px;
|
|
2818
2818
|
border-bottom: 1px solid #ccc;
|
|
2819
2819
|
}
|
|
2820
2820
|
.search-setting .ant-tree .ant-tree-node-content-wrapper:hover {
|
|
@@ -2827,39 +2827,50 @@ html {
|
|
|
2827
2827
|
background-color: #f5f5f5;
|
|
2828
2828
|
}
|
|
2829
2829
|
.search-modal-body {
|
|
2830
|
+
display: flex;
|
|
2830
2831
|
min-height: 45vh;
|
|
2831
2832
|
max-height: 73vh;
|
|
2832
|
-
display: flex;
|
|
2833
2833
|
}
|
|
2834
2834
|
.search-modal-body .body-left {
|
|
2835
|
-
width:
|
|
2836
|
-
border-right: #f0f0f0 1px solid;
|
|
2835
|
+
width: 200px;
|
|
2837
2836
|
padding: 10px;
|
|
2838
2837
|
overflow: auto;
|
|
2838
|
+
border-right: #f0f0f0 1px solid;
|
|
2839
2839
|
}
|
|
2840
2840
|
.search-modal-body .body-left .search-setting-item {
|
|
2841
|
-
padding: 5px 6px;
|
|
2842
|
-
border-radius: 4px;
|
|
2843
|
-
margin-top: 8px;
|
|
2844
2841
|
position: relative;
|
|
2845
|
-
height:
|
|
2842
|
+
height: 28px;
|
|
2843
|
+
margin-top: 8px;
|
|
2844
|
+
padding: 2px 10px;
|
|
2846
2845
|
background-color: #f5f5f5;
|
|
2846
|
+
border-radius: 4px;
|
|
2847
2847
|
}
|
|
2848
2848
|
.search-modal-body .body-left .search-setting-item .search-item-btn {
|
|
2849
2849
|
position: absolute;
|
|
2850
|
+
top: 2px;
|
|
2850
2851
|
right: 2px;
|
|
2851
|
-
top: 5px;
|
|
2852
|
-
cursor: pointer;
|
|
2853
2852
|
display: none;
|
|
2853
|
+
cursor: pointer;
|
|
2854
|
+
}
|
|
2855
|
+
.search-modal-body .body-left .search-setting-item.is_current {
|
|
2856
|
+
color: #fff;
|
|
2857
|
+
background-color: var(--ant-primary-color, #1869ed);
|
|
2854
2858
|
}
|
|
2855
|
-
.search-modal-body .body-left .search-setting-item.is_current
|
|
2856
|
-
|
|
2859
|
+
.search-modal-body .body-left .search-setting-item:not(.is_current) .anticon-edit:hover {
|
|
2860
|
+
color: var(--ant-primary-color, #1869ed);
|
|
2861
|
+
}
|
|
2862
|
+
.search-modal-body .body-left .search-setting-item:hover:not(.is_current) {
|
|
2857
2863
|
background-color: #e6f7ff;
|
|
2858
2864
|
}
|
|
2859
|
-
.search-modal-body .body-left .search-setting-item.is_current .search-item-btn,
|
|
2860
2865
|
.search-modal-body .body-left .search-setting-item:hover .search-item-btn {
|
|
2861
2866
|
display: inline-flex;
|
|
2862
2867
|
}
|
|
2868
|
+
.search-modal-body .body-left .my-icon-remove {
|
|
2869
|
+
margin-top: 3px;
|
|
2870
|
+
}
|
|
2871
|
+
.search-modal-body .body-left .my-icon-remove:hover {
|
|
2872
|
+
color: var(--ant-error-color, #ff4d4f);
|
|
2873
|
+
}
|
|
2863
2874
|
.search-modal-body .body-right {
|
|
2864
2875
|
flex: 1;
|
|
2865
2876
|
overflow: auto;
|
|
@@ -3434,6 +3445,9 @@ html {
|
|
|
3434
3445
|
.ant-pro-table-column-setting-overlay .ant-tree-treenode .column-setting-item-btn:hover {
|
|
3435
3446
|
color: var(--ant-primary-color, #1869ed);
|
|
3436
3447
|
}
|
|
3448
|
+
.ant-pro-table-column-setting-overlay .my-icon-remove {
|
|
3449
|
+
margin-top: 3px;
|
|
3450
|
+
}
|
|
3437
3451
|
.ant-pro-table-column-setting-overlay .my-icon-remove:hover {
|
|
3438
3452
|
color: var(--ant-error-color, #ff4d4f);
|
|
3439
3453
|
}
|
|
@@ -3499,16 +3513,16 @@ html {
|
|
|
3499
3513
|
}
|
|
3500
3514
|
.table-column-setting-left .table-column-item {
|
|
3501
3515
|
position: relative;
|
|
3502
|
-
height:
|
|
3516
|
+
height: 28px;
|
|
3503
3517
|
margin-top: 8px;
|
|
3504
|
-
padding:
|
|
3518
|
+
padding: 2px 10px;
|
|
3505
3519
|
color: #494747;
|
|
3506
3520
|
background-color: #f5f5f5;
|
|
3507
3521
|
border-radius: 4px;
|
|
3508
3522
|
}
|
|
3509
3523
|
.table-column-setting-left .table-column-item .item-btn {
|
|
3510
3524
|
position: absolute;
|
|
3511
|
-
top:
|
|
3525
|
+
top: 2px;
|
|
3512
3526
|
right: 2px;
|
|
3513
3527
|
display: none;
|
|
3514
3528
|
cursor: pointer;
|