fdb2 1.0.18 → 1.0.19
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/public/.vite/manifest.json +2 -29
- package/dist/public/explorer.js +343 -36
- package/dist/public/index.css +150 -1
- package/dist/public/index.js +5007 -88
- package/dist/public/layout.js +1 -1
- package/dist/public/rolldown-runtime.js +1 -1
- package/dist/public/vue.js +29 -13
- package/dist/view/index.html +0 -3
- package/package.json +8 -8
- package/dist/public/_plugin-vue_export-helper.js +0 -12
- package/dist/public/modal.css +0 -150
- package/dist/public/modal.js +0 -4873
package/dist/public/index.css
CHANGED
|
@@ -947,4 +947,153 @@ pre {
|
|
|
947
947
|
background: #475569;
|
|
948
948
|
color: #f1f5f9;
|
|
949
949
|
}
|
|
950
|
-
}
|
|
950
|
+
}
|
|
951
|
+
/* 覆盖Bootstrap默认样式 */
|
|
952
|
+
.toast-container[data-v-7d639c44] {
|
|
953
|
+
z-index: 1100;
|
|
954
|
+
}
|
|
955
|
+
.fade-out[data-v-7d639c44] {
|
|
956
|
+
animation: fadeOut-7d639c44 1s forwards;
|
|
957
|
+
}
|
|
958
|
+
@keyframes fadeOut-7d639c44 {
|
|
959
|
+
0% { opacity: 1; transform: translateY(0);
|
|
960
|
+
}
|
|
961
|
+
100% { opacity: 0; transform: translateY(-120%);}
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.loading-overlay[data-v-d5892680] {
|
|
965
|
+
position: absolute;
|
|
966
|
+
top: 0;
|
|
967
|
+
left: 0;
|
|
968
|
+
width: 100%;
|
|
969
|
+
height: 100%;
|
|
970
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
971
|
+
display: flex;
|
|
972
|
+
justify-content: center;
|
|
973
|
+
align-items: center;
|
|
974
|
+
z-index: 1050;
|
|
975
|
+
}
|
|
976
|
+
.loading-spinner[data-v-d5892680] {
|
|
977
|
+
text-align: center;
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
.modal-dialog[data-v-6653cff9] {
|
|
981
|
+
z-index: var(--bs-modal-zindex);
|
|
982
|
+
max-width:none !important;
|
|
983
|
+
}
|
|
984
|
+
.modal-success .modal-header[data-v-6653cff9] {
|
|
985
|
+
background-color: var(--bs-success);
|
|
986
|
+
color: white;
|
|
987
|
+
}
|
|
988
|
+
.modal-error .modal-header[data-v-6653cff9] {
|
|
989
|
+
background-color: var(--bs-danger);
|
|
990
|
+
color: white;
|
|
991
|
+
}
|
|
992
|
+
.modal-warning .modal-header[data-v-6653cff9] {
|
|
993
|
+
background-color: var(--bs-warning);
|
|
994
|
+
color: var(--bs-dark);
|
|
995
|
+
}
|
|
996
|
+
.modal-info .modal-header[data-v-6653cff9] {
|
|
997
|
+
background-color: var(--bs-info);
|
|
998
|
+
color: white;
|
|
999
|
+
}
|
|
1000
|
+
.modal-body[data-v-6653cff9] {
|
|
1001
|
+
min-height: 80px;
|
|
1002
|
+
display: flex;
|
|
1003
|
+
flex-direction: column;
|
|
1004
|
+
align-items: stretch;
|
|
1005
|
+
}
|
|
1006
|
+
.error-details[data-v-6653cff9] {
|
|
1007
|
+
width: 100%;
|
|
1008
|
+
margin-top: 1rem;
|
|
1009
|
+
}
|
|
1010
|
+
.error-content[data-v-6653cff9] {
|
|
1011
|
+
background-color: #f8f9fa;
|
|
1012
|
+
border: 1px solid #e9ecef;
|
|
1013
|
+
border-radius: 0.375rem;
|
|
1014
|
+
padding: 1rem;
|
|
1015
|
+
margin: 0;
|
|
1016
|
+
max-height: 200px;
|
|
1017
|
+
overflow-y: auto;
|
|
1018
|
+
white-space: pre-wrap;
|
|
1019
|
+
word-break: break-word;
|
|
1020
|
+
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
|
|
1021
|
+
font-size: 0.875rem;
|
|
1022
|
+
line-height: 1.5;
|
|
1023
|
+
}
|
|
1024
|
+
.error-details-toggle[data-v-6653cff9] {
|
|
1025
|
+
width: 100%;
|
|
1026
|
+
}
|
|
1027
|
+
.error-details-content[data-v-6653cff9] {
|
|
1028
|
+
background-color: #f8f9fa;
|
|
1029
|
+
border: 1px solid #e9ecef;
|
|
1030
|
+
border-radius: 0.375rem;
|
|
1031
|
+
padding: 1rem;
|
|
1032
|
+
margin-top: 0.5rem;
|
|
1033
|
+
}
|
|
1034
|
+
.error-json[data-v-6653cff9] {
|
|
1035
|
+
background-color: #212529;
|
|
1036
|
+
color: #f8f9fa;
|
|
1037
|
+
border-radius: 0.25rem;
|
|
1038
|
+
padding: 0.75rem;
|
|
1039
|
+
font-size: 0.8rem;
|
|
1040
|
+
line-height: 1.4;
|
|
1041
|
+
max-height: 300px;
|
|
1042
|
+
overflow-y: auto;
|
|
1043
|
+
white-space: pre-wrap;
|
|
1044
|
+
word-break: break-word;
|
|
1045
|
+
}
|
|
1046
|
+
.error-meta[data-v-6653cff9] {
|
|
1047
|
+
border-bottom: 1px solid #dee2e6;
|
|
1048
|
+
padding-bottom: 0.5rem;
|
|
1049
|
+
margin-bottom: 0.5rem;
|
|
1050
|
+
}
|
|
1051
|
+
.modal-body .fs-1[data-v-6653cff9] {
|
|
1052
|
+
font-size: 2.5rem;
|
|
1053
|
+
margin-bottom: 1rem;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
/* 响应式调整 */
|
|
1057
|
+
@media (max-width: 576px) {
|
|
1058
|
+
.error-content[data-v-6653cff9],
|
|
1059
|
+
.error-json[data-v-6653cff9] {
|
|
1060
|
+
font-size: 0.75rem;
|
|
1061
|
+
max-height: 150px;
|
|
1062
|
+
}
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.datagrid-container[data-v-ae552d25] {
|
|
1066
|
+
display: flex;
|
|
1067
|
+
flex-direction: column;
|
|
1068
|
+
height: 100%;
|
|
1069
|
+
}
|
|
1070
|
+
.datagrid-inner[data-v-ae552d25] {
|
|
1071
|
+
flex: 1;
|
|
1072
|
+
overflow: auto;
|
|
1073
|
+
margin-bottom: 10px;
|
|
1074
|
+
}
|
|
1075
|
+
.datagrid-th[data-v-ae552d25] {
|
|
1076
|
+
min-width: 80px;
|
|
1077
|
+
white-space: nowrap;
|
|
1078
|
+
position: sticky;
|
|
1079
|
+
top: 0;
|
|
1080
|
+
z-index: 10;
|
|
1081
|
+
background-color: #f8f9fa;
|
|
1082
|
+
}
|
|
1083
|
+
.datagrid-th.sortable[data-v-ae552d25] {
|
|
1084
|
+
cursor: pointer;
|
|
1085
|
+
user-select: none;
|
|
1086
|
+
}
|
|
1087
|
+
.datagrid-th.sortable[data-v-ae552d25]:hover {
|
|
1088
|
+
background-color: #e9ecef;
|
|
1089
|
+
}
|
|
1090
|
+
.header-content[data-v-ae552d25] {
|
|
1091
|
+
display: flex;
|
|
1092
|
+
align-items: center;
|
|
1093
|
+
gap: 0.5rem;
|
|
1094
|
+
}
|
|
1095
|
+
.sort-icon[data-v-ae552d25] {
|
|
1096
|
+
display: flex;
|
|
1097
|
+
align-items: center;
|
|
1098
|
+
font-size: 0.75rem;
|
|
1099
|
+
}
|