wargerm 0.7.63 → 0.7.64
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.esm.js +3 -2
- package/dist/index.js +3 -2
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -7091,7 +7091,7 @@ var TabelCard = function TabelCard(props, ref) {
|
|
7091
7091
|
}, modalConfig), {}, {
|
7092
7092
|
onFormChange: onFormChange,
|
7093
7093
|
extraColumns: (extraColumns || []).filter(function (item) {
|
7094
|
-
if (item.hiddenInModalForm) {
|
7094
|
+
if (item.hiddenInModalForm || item.hideInModalForm) {
|
7095
7095
|
return false;
|
7096
7096
|
}
|
7097
7097
|
if (item.onlyShowInView) {
|
@@ -7104,7 +7104,7 @@ var TabelCard = function TabelCard(props, ref) {
|
|
7104
7104
|
return true;
|
7105
7105
|
}),
|
7106
7106
|
columns: (modalFormColumn || []).filter(function (item) {
|
7107
|
-
if (item.hiddenInModalForm) {
|
7107
|
+
if (item.hiddenInModalForm || item.hideInModalForm) {
|
7108
7108
|
return false;
|
7109
7109
|
}
|
7110
7110
|
if (item.onlyShowInView) {
|
@@ -7176,6 +7176,7 @@ var TabelCard = function TabelCard(props, ref) {
|
|
7176
7176
|
align: 'center',
|
7177
7177
|
hideInSearch: true,
|
7178
7178
|
hiddenInModalForm: true,
|
7179
|
+
hideInModalForm: true,
|
7179
7180
|
width: 60,
|
7180
7181
|
render: function render(text, record, index) {
|
7181
7182
|
return index + 1;
|
package/dist/index.js
CHANGED
@@ -7135,7 +7135,7 @@ var TabelCard = function TabelCard(props, ref) {
|
|
7135
7135
|
}, modalConfig), {}, {
|
7136
7136
|
onFormChange: onFormChange,
|
7137
7137
|
extraColumns: (extraColumns || []).filter(function (item) {
|
7138
|
-
if (item.hiddenInModalForm) {
|
7138
|
+
if (item.hiddenInModalForm || item.hideInModalForm) {
|
7139
7139
|
return false;
|
7140
7140
|
}
|
7141
7141
|
if (item.onlyShowInView) {
|
@@ -7148,7 +7148,7 @@ var TabelCard = function TabelCard(props, ref) {
|
|
7148
7148
|
return true;
|
7149
7149
|
}),
|
7150
7150
|
columns: (modalFormColumn || []).filter(function (item) {
|
7151
|
-
if (item.hiddenInModalForm) {
|
7151
|
+
if (item.hiddenInModalForm || item.hideInModalForm) {
|
7152
7152
|
return false;
|
7153
7153
|
}
|
7154
7154
|
if (item.onlyShowInView) {
|
@@ -7220,6 +7220,7 @@ var TabelCard = function TabelCard(props, ref) {
|
|
7220
7220
|
align: 'center',
|
7221
7221
|
hideInSearch: true,
|
7222
7222
|
hiddenInModalForm: true,
|
7223
|
+
hideInModalForm: true,
|
7223
7224
|
width: 60,
|
7224
7225
|
render: function render(text, record, index) {
|
7225
7226
|
return index + 1;
|