@airpower/web 0.2.44 → 0.2.46

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/main.js CHANGED
@@ -981,7 +981,7 @@ class DecoratorUtil {
981
981
  * @param isObject `可选` 是否是对象配置
982
982
  */
983
983
  static getClassConfig(Class, classConfigKey, isObject = false) {
984
- let classConfig = Reflect.get(Class, classConfigKey);
984
+ let classConfig = Reflect.get(new Class(), classConfigKey);
985
985
  if (!isObject) {
986
986
  if (classConfig) {
987
987
  return classConfig;
@@ -14718,7 +14718,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
14718
14718
  };
14719
14719
  }
14720
14720
  });
14721
- const APanel = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-0e2438c7"]]);
14721
+ const APanel = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-b3608452"]]);
14722
14722
  class DialogProps {
14723
14723
  /**
14724
14724
  * ### 使用无参 `DialogProps` 配置
@@ -17829,9 +17829,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
17829
17829
  });
17830
17830
  function selectRow(list) {
17831
17831
  var _a, _b;
17832
- console.warn("selectRow", list);
17833
17832
  for (const row of list) {
17834
- console.warn("selectRow", row);
17835
17833
  (_a = airTableRef.value) == null ? void 0 : _a.toggleRowSelection(row, false);
17836
17834
  for (const selectedRow of props.selectList) {
17837
17835
  if (selectedRow.id === row.id) {
package/dist/web.css CHANGED
@@ -1009,14 +1009,16 @@ textarea {
1009
1009
  .web-page-panel-box .web-page-jumper {
1010
1010
  display: flex;
1011
1011
  flex-direction: row;
1012
- }.web-panel[data-v-0e2438c7] {
1012
+ }.web-panel[data-v-b3608452] {
1013
1013
  display: flex;
1014
1014
  flex: 1;
1015
1015
  flex-direction: column;
1016
1016
  background: white;
1017
1017
  border-radius: 4px;
1018
+ overflow: hidden;
1019
+ height: 0;
1018
1020
  }
1019
- .web-panel .panel-header[data-v-0e2438c7] {
1021
+ .web-panel .panel-header[data-v-b3608452] {
1020
1022
  display: flex;
1021
1023
  flex-direction: row;
1022
1024
  align-items: center;
@@ -1024,41 +1026,41 @@ textarea {
1024
1026
  padding: 10px 15px;
1025
1027
  user-select: none;
1026
1028
  }
1027
- .web-panel .panel-header .panel-left[data-v-0e2438c7] {
1029
+ .web-panel .panel-header .panel-left[data-v-b3608452] {
1028
1030
  display: flex;
1029
1031
  flex-direction: row;
1030
1032
  align-items: center;
1031
1033
  flex: 1;
1032
1034
  width: 0;
1033
1035
  }
1034
- .web-panel .panel-header .panel-left .panel-icon[data-v-0e2438c7] {
1036
+ .web-panel .panel-header .panel-left .panel-icon[data-v-b3608452] {
1035
1037
  font-size: 20px;
1036
1038
  color: var(--el-color-primary);
1037
1039
  display: flex;
1038
1040
  flex-direction: row;
1039
1041
  align-items: center;
1040
1042
  }
1041
- .web-panel .panel-header .panel-left .panel-title[data-v-0e2438c7] {
1043
+ .web-panel .panel-header .panel-left .panel-title[data-v-b3608452] {
1042
1044
  font-size: 16px;
1043
1045
  color: #333;
1044
1046
  font-weight: bold;
1045
1047
  margin-left: 3px;
1046
1048
  }
1047
- .web-panel .panel-header .panel-right[data-v-0e2438c7] {
1049
+ .web-panel .panel-header .panel-right[data-v-b3608452] {
1048
1050
  color: #aaa;
1049
1051
  font-size: 14px;
1050
1052
  }
1051
- .web-panel .panel-header .panel-right .panel-full[data-v-0e2438c7] {
1053
+ .web-panel .panel-header .panel-right .panel-full[data-v-b3608452] {
1052
1054
  font-size: 20px;
1053
1055
  cursor: pointer;
1054
1056
  font-weight: bold;
1055
1057
  margin: -5px 0px;
1056
1058
  transition: all 0.3s;
1057
1059
  }
1058
- .web-panel .panel-header .panel-right .panel-full[data-v-0e2438c7]:hover {
1060
+ .web-panel .panel-header .panel-right .panel-full[data-v-b3608452]:hover {
1059
1061
  color: var(--primary-color);
1060
1062
  }
1061
- .web-panel .panel-body[data-v-0e2438c7] {
1063
+ .web-panel .panel-body[data-v-b3608452] {
1062
1064
  display: flex;
1063
1065
  flex: 1;
1064
1066
  flex-direction: column;
@@ -1068,17 +1070,17 @@ textarea {
1068
1070
  padding: 10px;
1069
1071
  position: relative;
1070
1072
  }
1071
- .web-panel .panel-footer[data-v-0e2438c7] {
1073
+ .web-panel .panel-footer[data-v-b3608452] {
1072
1074
  padding: 0 10px 10px 10px;
1073
1075
  display: flex;
1074
1076
  flex-direction: row;
1075
1077
  }
1076
- .web-panel .panel-footer .panel-footer-left[data-v-0e2438c7] {
1078
+ .web-panel .panel-footer .panel-footer-left[data-v-b3608452] {
1077
1079
  flex-direction: row;
1078
1080
  justify-content: flex-start;
1079
1081
  align-items: center;
1080
1082
  }
1081
- .web-panel .panel-footer .panel-footer-right[data-v-0e2438c7] {
1083
+ .web-panel .panel-footer .panel-footer-right[data-v-b3608452] {
1082
1084
  flex: 1;
1083
1085
  width: 0;
1084
1086
  display: flex;
@@ -1086,7 +1088,7 @@ textarea {
1086
1088
  justify-content: flex-end;
1087
1089
  align-items: center;
1088
1090
  }
1089
- .fullscreen[data-v-0e2438c7] {
1091
+ .fullscreen[data-v-b3608452] {
1090
1092
  position: fixed !important;
1091
1093
  left: 0;
1092
1094
  right: 0;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@airpower/web",
3
3
  "type": "module",
4
- "version": "0.2.44",
4
+ "version": "0.2.46",
5
5
  "description": "AirPower-Web",
6
6
  "author": {
7
7
  "name": "Hamm",
@@ -41,7 +41,7 @@
41
41
  "dependencies": {
42
42
  "@airpower/enum": "^0.0.10",
43
43
  "@airpower/i18n": "^0.0.4",
44
- "@airpower/transformer": "^0.1.10",
44
+ "@airpower/transformer": "^0.1.11",
45
45
  "@airpower/util": "^0.1.3",
46
46
  "@element-plus/icons-vue": "^2.3.1",
47
47
  "axios": "^1.8.4",