giime 0.7.15 → 0.7.17
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/index.css +82 -82
- package/es/components/src/composite/tablePro/tableToolbar/TableToolbar.vue.d.ts +11 -1
- package/es/components/src/composite/tablePro/tableToolbar/TableToolbar.vue2.mjs +3 -1
- package/es/components/src/composite/tablePro/tableToolbar/TableToolbar.vue2.mjs.map +1 -1
- package/es/components/src/composite/tablePro/tableToolbar/index.d.ts +25 -3
- package/es/components/src/composite/tablePro/tableToolbar/tableToolbar.d.ts +7 -0
- package/es/components/src/composite/tablePro/tableToolbar/tableToolbar.mjs +7 -0
- package/es/components/src/composite/tablePro/tableToolbar/tableToolbar.mjs.map +1 -1
- package/es/giime/version.d.ts +1 -1
- package/es/giime/version.mjs +1 -1
- package/es/giime/version.mjs.map +1 -1
- package/es/hooks/base/useDictionary/index.d.ts +3 -1
- package/es/hooks/base/useDictionary/index.mjs +17 -6
- package/es/hooks/base/useDictionary/index.mjs.map +1 -1
- package/es/hooks/store/useCustomSettings/index.mjs +2 -1
- package/es/hooks/store/useCustomSettings/index.mjs.map +1 -1
- package/es/hooks/store/useLineList/index.d.ts +1 -1
- package/es/index.css +82 -82
- package/lib/components/src/composite/tablePro/tableToolbar/TableToolbar.vue.d.ts +11 -1
- package/lib/components/src/composite/tablePro/tableToolbar/TableToolbar.vue2.js +3 -1
- package/lib/components/src/composite/tablePro/tableToolbar/TableToolbar.vue2.js.map +1 -1
- package/lib/components/src/composite/tablePro/tableToolbar/index.d.ts +25 -3
- package/lib/components/src/composite/tablePro/tableToolbar/tableToolbar.d.ts +7 -0
- package/lib/components/src/composite/tablePro/tableToolbar/tableToolbar.js +7 -0
- package/lib/components/src/composite/tablePro/tableToolbar/tableToolbar.js.map +1 -1
- package/lib/giime/version.d.ts +1 -1
- package/lib/giime/version.js +1 -1
- package/lib/giime/version.js.map +1 -1
- package/lib/hooks/base/useDictionary/index.d.ts +3 -1
- package/lib/hooks/base/useDictionary/index.js +16 -5
- package/lib/hooks/base/useDictionary/index.js.map +1 -1
- package/lib/hooks/store/useCustomSettings/index.js +2 -1
- package/lib/hooks/store/useCustomSettings/index.js.map +1 -1
- package/lib/hooks/store/useLineList/index.d.ts +1 -1
- package/lib/index.css +82 -82
- package/package.json +1 -1
package/lib/index.css
CHANGED
|
@@ -886,37 +886,6 @@ video {
|
|
|
886
886
|
width: auto;
|
|
887
887
|
height: auto;
|
|
888
888
|
}
|
|
889
|
-
.circular[data-v-d7b04fae] {
|
|
890
|
-
animation: loading-rotate-d7b04fae 2s linear infinite;
|
|
891
|
-
}
|
|
892
|
-
|
|
893
|
-
.path[data-v-d7b04fae] {
|
|
894
|
-
animation: loading-dash-d7b04fae 1.5s ease-in-out infinite;
|
|
895
|
-
stroke-dasharray: 90, 150;
|
|
896
|
-
stroke-dashoffset: 0;
|
|
897
|
-
stroke: var(--el-color-primary);
|
|
898
|
-
stroke-linecap: round;
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
@keyframes loading-rotate-d7b04fae {
|
|
902
|
-
to {
|
|
903
|
-
transform: rotate(360deg);
|
|
904
|
-
}
|
|
905
|
-
}
|
|
906
|
-
@keyframes loading-dash-d7b04fae {
|
|
907
|
-
0% {
|
|
908
|
-
stroke-dasharray: 1, 200;
|
|
909
|
-
stroke-dashoffset: 0;
|
|
910
|
-
}
|
|
911
|
-
50% {
|
|
912
|
-
stroke-dasharray: 90, 150;
|
|
913
|
-
stroke-dashoffset: -40px;
|
|
914
|
-
}
|
|
915
|
-
100% {
|
|
916
|
-
stroke-dasharray: 90, 150;
|
|
917
|
-
stroke-dashoffset: -120px;
|
|
918
|
-
}
|
|
919
|
-
}
|
|
920
889
|
.gm-upload-pro-file {
|
|
921
890
|
line-height: normal;
|
|
922
891
|
}
|
|
@@ -955,17 +924,48 @@ video {
|
|
|
955
924
|
.gm-upload-pro-file-disabled .el-upload-list__item-status-label {
|
|
956
925
|
display: none;
|
|
957
926
|
}
|
|
958
|
-
.
|
|
959
|
-
|
|
927
|
+
.circular[data-v-d7b04fae] {
|
|
928
|
+
animation: loading-rotate-d7b04fae 2s linear infinite;
|
|
960
929
|
}
|
|
961
930
|
|
|
962
|
-
.
|
|
963
|
-
|
|
931
|
+
.path[data-v-d7b04fae] {
|
|
932
|
+
animation: loading-dash-d7b04fae 1.5s ease-in-out infinite;
|
|
933
|
+
stroke-dasharray: 90, 150;
|
|
934
|
+
stroke-dashoffset: 0;
|
|
935
|
+
stroke: var(--el-color-primary);
|
|
936
|
+
stroke-linecap: round;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
@keyframes loading-rotate-d7b04fae {
|
|
940
|
+
to {
|
|
941
|
+
transform: rotate(360deg);
|
|
942
|
+
}
|
|
943
|
+
}
|
|
944
|
+
@keyframes loading-dash-d7b04fae {
|
|
945
|
+
0% {
|
|
946
|
+
stroke-dasharray: 1, 200;
|
|
947
|
+
stroke-dashoffset: 0;
|
|
948
|
+
}
|
|
949
|
+
50% {
|
|
950
|
+
stroke-dasharray: 90, 150;
|
|
951
|
+
stroke-dashoffset: -40px;
|
|
952
|
+
}
|
|
953
|
+
100% {
|
|
954
|
+
stroke-dasharray: 90, 150;
|
|
955
|
+
stroke-dashoffset: -120px;
|
|
956
|
+
}
|
|
964
957
|
}
|
|
965
958
|
[data-v-488ca110] .gmSearchForm .el-form-item {
|
|
966
959
|
margin-right: 0;
|
|
967
960
|
margin-bottom: 4px;
|
|
968
961
|
}
|
|
962
|
+
.gm-flex-center[data-v-c17deec9] {
|
|
963
|
+
align-items: center;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
.gm-flex-justify-between[data-v-c17deec9] {
|
|
967
|
+
justify-content: space-between;
|
|
968
|
+
}
|
|
969
969
|
.gm-number-interval-single[data-v-4e6f4d6f] {
|
|
970
970
|
border-radius: var(--el-input-border-radius, var(--el-border-radius-base));
|
|
971
971
|
box-shadow: 0 0 0 1px var(--el-input-border-color, var(--el-border-color)) inset;
|
|
@@ -1015,29 +1015,6 @@ video {
|
|
|
1015
1015
|
width: auto;
|
|
1016
1016
|
height: auto;
|
|
1017
1017
|
}
|
|
1018
|
-
[data-v-98c2e804] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
1019
|
-
border-right: none;
|
|
1020
|
-
}
|
|
1021
|
-
|
|
1022
|
-
[data-v-98c2e804] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
1023
|
-
height: 0;
|
|
1024
|
-
}
|
|
1025
|
-
|
|
1026
|
-
[data-v-98c2e804] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
1027
|
-
height: 0;
|
|
1028
|
-
}
|
|
1029
|
-
|
|
1030
|
-
[data-v-98c2e804] .gmTableNoBorder.el-table--border:after {
|
|
1031
|
-
height: 0;
|
|
1032
|
-
}
|
|
1033
|
-
|
|
1034
|
-
[data-v-98c2e804] .gmTableNoBorder.el-table--border:before {
|
|
1035
|
-
height: 0;
|
|
1036
|
-
}
|
|
1037
|
-
|
|
1038
|
-
[data-v-98c2e804] .gmTableNoBorder .el-table__border-left-patch {
|
|
1039
|
-
height: 0;
|
|
1040
|
-
}
|
|
1041
1018
|
.gm-upload-file {
|
|
1042
1019
|
line-height: normal;
|
|
1043
1020
|
}
|
|
@@ -1073,6 +1050,29 @@ video {
|
|
|
1073
1050
|
.gm-upload-file-disabled .el-upload-list__item-status-label {
|
|
1074
1051
|
display: none;
|
|
1075
1052
|
}
|
|
1053
|
+
[data-v-98c2e804] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
1054
|
+
border-right: none;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
[data-v-98c2e804] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
1058
|
+
height: 0;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
[data-v-98c2e804] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
1062
|
+
height: 0;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
[data-v-98c2e804] .gmTableNoBorder.el-table--border:after {
|
|
1066
|
+
height: 0;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
[data-v-98c2e804] .gmTableNoBorder.el-table--border:before {
|
|
1070
|
+
height: 0;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
[data-v-98c2e804] .gmTableNoBorder .el-table__border-left-patch {
|
|
1074
|
+
height: 0;
|
|
1075
|
+
}
|
|
1076
1076
|
|
|
1077
1077
|
.pagination-container[data-v-47d35e7b] {
|
|
1078
1078
|
background: #fff;
|
|
@@ -1083,112 +1083,112 @@ video {
|
|
|
1083
1083
|
}
|
|
1084
1084
|
|
|
1085
1085
|
@charset "UTF-8";
|
|
1086
|
-
.
|
|
1086
|
+
.custom-operate-drawer .el-drawer__header {
|
|
1087
1087
|
padding: 10px 15px;
|
|
1088
1088
|
margin: 0;
|
|
1089
1089
|
border-bottom: 1px solid #ebeef5;
|
|
1090
1090
|
}
|
|
1091
|
-
.
|
|
1091
|
+
.custom-operate-drawer .el-drawer__title {
|
|
1092
1092
|
font-size: 14px;
|
|
1093
1093
|
color: #333;
|
|
1094
1094
|
}
|
|
1095
|
-
.
|
|
1095
|
+
.custom-operate-drawer .el-drawer__body {
|
|
1096
1096
|
padding: 15px;
|
|
1097
1097
|
}
|
|
1098
|
-
.
|
|
1098
|
+
.custom-operate-drawer .el-drawer__footer {
|
|
1099
1099
|
padding: 10px 15px;
|
|
1100
1100
|
border-top: 1px solid #ebeef5;
|
|
1101
1101
|
}
|
|
1102
|
-
.
|
|
1102
|
+
.custom-operate-drawer .el-checkbox {
|
|
1103
1103
|
display: flex;
|
|
1104
1104
|
align-items: center;
|
|
1105
1105
|
}
|
|
1106
|
-
.
|
|
1106
|
+
.custom-operate-drawer .el-input__inner {
|
|
1107
1107
|
text-align: center;
|
|
1108
1108
|
}
|
|
1109
|
-
.
|
|
1109
|
+
.custom-operate-drawer .el-input__suffix {
|
|
1110
1110
|
position: absolute;
|
|
1111
1111
|
right: 10px;
|
|
1112
1112
|
}
|
|
1113
|
-
.
|
|
1113
|
+
.custom-operate-drawer .custom-content li {
|
|
1114
1114
|
display: flex;
|
|
1115
1115
|
align-items: center;
|
|
1116
1116
|
justify-content: center;
|
|
1117
1117
|
height: 44px;
|
|
1118
1118
|
}
|
|
1119
|
-
.
|
|
1119
|
+
.custom-operate-drawer .custom-group {
|
|
1120
1120
|
max-height: calc(100vh - 226px);
|
|
1121
1121
|
overflow-y: auto;
|
|
1122
1122
|
}
|
|
1123
|
-
.
|
|
1123
|
+
.custom-operate-drawer .custom-group::-webkit-scrollbar {
|
|
1124
1124
|
/*滚动条整体样式*/
|
|
1125
1125
|
width: 4px;
|
|
1126
1126
|
/*高宽分别对应横竖滚动条的尺寸*/
|
|
1127
1127
|
height: 1px;
|
|
1128
1128
|
}
|
|
1129
|
-
.
|
|
1129
|
+
.custom-operate-drawer .custom-group::-webkit-scrollbar-thumb {
|
|
1130
1130
|
/*滚动条里面小方块*/
|
|
1131
1131
|
border-radius: 10px;
|
|
1132
1132
|
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
|
|
1133
1133
|
background: #999;
|
|
1134
1134
|
}
|
|
1135
|
-
.
|
|
1135
|
+
.custom-operate-drawer .custom-group::-webkit-scrollbar-track {
|
|
1136
1136
|
/*滚动条里面轨道*/
|
|
1137
1137
|
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
|
|
1138
1138
|
border-radius: 10px;
|
|
1139
1139
|
background: #eee;
|
|
1140
1140
|
}
|
|
1141
1141
|
@charset "UTF-8";
|
|
1142
|
-
.custom-
|
|
1142
|
+
.table-custom-header-drawer .el-drawer__header {
|
|
1143
1143
|
padding: 10px 15px;
|
|
1144
1144
|
margin: 0;
|
|
1145
1145
|
border-bottom: 1px solid #ebeef5;
|
|
1146
1146
|
}
|
|
1147
|
-
.custom-
|
|
1147
|
+
.table-custom-header-drawer .el-drawer__title {
|
|
1148
1148
|
font-size: 14px;
|
|
1149
1149
|
color: #333;
|
|
1150
1150
|
}
|
|
1151
|
-
.custom-
|
|
1151
|
+
.table-custom-header-drawer .el-drawer__body {
|
|
1152
1152
|
padding: 15px;
|
|
1153
1153
|
}
|
|
1154
|
-
.custom-
|
|
1154
|
+
.table-custom-header-drawer .el-drawer__footer {
|
|
1155
1155
|
padding: 10px 15px;
|
|
1156
1156
|
border-top: 1px solid #ebeef5;
|
|
1157
1157
|
}
|
|
1158
|
-
.custom-
|
|
1158
|
+
.table-custom-header-drawer .el-checkbox {
|
|
1159
1159
|
display: flex;
|
|
1160
1160
|
align-items: center;
|
|
1161
1161
|
}
|
|
1162
|
-
.custom-
|
|
1162
|
+
.table-custom-header-drawer .el-input__inner {
|
|
1163
1163
|
text-align: center;
|
|
1164
1164
|
}
|
|
1165
|
-
.custom-
|
|
1165
|
+
.table-custom-header-drawer .el-input__suffix {
|
|
1166
1166
|
position: absolute;
|
|
1167
1167
|
right: 10px;
|
|
1168
1168
|
}
|
|
1169
|
-
.custom-
|
|
1169
|
+
.table-custom-header-drawer .custom-content li {
|
|
1170
1170
|
display: flex;
|
|
1171
1171
|
align-items: center;
|
|
1172
1172
|
justify-content: center;
|
|
1173
1173
|
height: 44px;
|
|
1174
1174
|
}
|
|
1175
|
-
.custom-
|
|
1175
|
+
.table-custom-header-drawer .custom-group {
|
|
1176
1176
|
max-height: calc(100vh - 226px);
|
|
1177
1177
|
overflow-y: auto;
|
|
1178
1178
|
}
|
|
1179
|
-
.custom-
|
|
1179
|
+
.table-custom-header-drawer .custom-group::-webkit-scrollbar {
|
|
1180
1180
|
/*滚动条整体样式*/
|
|
1181
1181
|
width: 4px;
|
|
1182
1182
|
/*高宽分别对应横竖滚动条的尺寸*/
|
|
1183
1183
|
height: 1px;
|
|
1184
1184
|
}
|
|
1185
|
-
.custom-
|
|
1185
|
+
.table-custom-header-drawer .custom-group::-webkit-scrollbar-thumb {
|
|
1186
1186
|
/*滚动条里面小方块*/
|
|
1187
1187
|
border-radius: 10px;
|
|
1188
1188
|
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
|
|
1189
1189
|
background: #999;
|
|
1190
1190
|
}
|
|
1191
|
-
.custom-
|
|
1191
|
+
.table-custom-header-drawer .custom-group::-webkit-scrollbar-track {
|
|
1192
1192
|
/*滚动条里面轨道*/
|
|
1193
1193
|
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
|
|
1194
1194
|
border-radius: 10px;
|