@bit-sun/business-component 3.2.2 → 3.2.4
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
CHANGED
|
@@ -15719,7 +15719,7 @@ var BsSulaQueryTable = (function (props) {
|
|
|
15719
15719
|
_useState10 = _slicedToArray(_useState9, 2),
|
|
15720
15720
|
showExportColumn = _useState10[0],
|
|
15721
15721
|
setShowExportColumns = _useState10[1]; // 导出列字段
|
|
15722
|
-
var _useState11 = useState('
|
|
15722
|
+
var _useState11 = useState(''),
|
|
15723
15723
|
_useState12 = _slicedToArray(_useState11, 2),
|
|
15724
15724
|
height = _useState12[0],
|
|
15725
15725
|
setHeight = _useState12[1];
|
|
@@ -16193,7 +16193,8 @@ var BsSulaQueryTable = (function (props) {
|
|
|
16193
16193
|
return _objectSpread2(_objectSpread2({}, config), {}, {
|
|
16194
16194
|
summary: props.summary,
|
|
16195
16195
|
summaryList: props.summaryList ? getTableSummaryInfo : undefined,
|
|
16196
|
-
statusMapping: props.statusMapping
|
|
16196
|
+
statusMapping: props.statusMapping,
|
|
16197
|
+
isBsSulaQueryTable: true
|
|
16197
16198
|
});
|
|
16198
16199
|
}, [
|
|
16199
16200
|
// value,
|
package/dist/index.js
CHANGED
|
@@ -15742,7 +15742,7 @@ var BsSulaQueryTable = (function (props) {
|
|
|
15742
15742
|
_useState10 = _slicedToArray(_useState9, 2),
|
|
15743
15743
|
showExportColumn = _useState10[0],
|
|
15744
15744
|
setShowExportColumns = _useState10[1]; // 导出列字段
|
|
15745
|
-
var _useState11 = React$1.useState('
|
|
15745
|
+
var _useState11 = React$1.useState(''),
|
|
15746
15746
|
_useState12 = _slicedToArray(_useState11, 2),
|
|
15747
15747
|
height = _useState12[0],
|
|
15748
15748
|
setHeight = _useState12[1];
|
|
@@ -16216,7 +16216,8 @@ var BsSulaQueryTable = (function (props) {
|
|
|
16216
16216
|
return _objectSpread2(_objectSpread2({}, config), {}, {
|
|
16217
16217
|
summary: props.summary,
|
|
16218
16218
|
summaryList: props.summaryList ? getTableSummaryInfo : undefined,
|
|
16219
|
-
statusMapping: props.statusMapping
|
|
16219
|
+
statusMapping: props.statusMapping,
|
|
16220
|
+
isBsSulaQueryTable: true
|
|
16220
16221
|
});
|
|
16221
16222
|
}, [
|
|
16222
16223
|
// value,
|
package/package.json
CHANGED
|
@@ -159,7 +159,7 @@ const getSettingFieldOrColumn = (savedConfig, originConfig, type: string) => {
|
|
|
159
159
|
const [showSearchFields, setShowSearchFields] = useState(originSearchFields); //搜索项字段
|
|
160
160
|
const [showExportColumn, setShowExportColumns] = useState([]); // 导出列字段
|
|
161
161
|
|
|
162
|
-
const [height, setHeight]: any = useState('
|
|
162
|
+
const [height, setHeight]: any = useState('');
|
|
163
163
|
const sortTableRef = useRef(null);
|
|
164
164
|
const searchTableRef = useRef(null);
|
|
165
165
|
const exportTableRef = useRef<any>(null);
|
|
@@ -730,6 +730,7 @@ const getSettingFieldOrColumn = (savedConfig, originConfig, type: string) => {
|
|
|
730
730
|
summary: props.summary,
|
|
731
731
|
summaryList: props.summaryList ? getTableSummaryInfo : undefined,
|
|
732
732
|
statusMapping: props.statusMapping,
|
|
733
|
+
isBsSulaQueryTable: true,
|
|
733
734
|
}),
|
|
734
735
|
[
|
|
735
736
|
// value,
|