@quillsql/react 2.16.76 → 2.16.77
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.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -64807,14 +64807,14 @@ function useReport(reportIdArg, options = {}) {
|
|
|
64807
64807
|
}) || void 0
|
|
64808
64808
|
) : shouldApplyPivotAggregationsFromSource ? [] : prev.aggregationTablesByIndex;
|
|
64809
64809
|
const sourceRowGroupOption = encodePivotGroupOptionValue(
|
|
64810
|
-
resolveColumnTableFromReportMetadata(
|
|
64810
|
+
String(sourceReport.pivot?.rowFieldTable ?? "").trim() || resolveColumnTableFromReportMetadata(
|
|
64811
64811
|
sourceReport,
|
|
64812
64812
|
sourceReport.pivot?.rowField ?? ""
|
|
64813
64813
|
),
|
|
64814
64814
|
sourceReport.pivot?.rowField ?? ""
|
|
64815
64815
|
) || sourceReport.pivot?.rowField;
|
|
64816
64816
|
const sourceColumnGroupOption = encodePivotGroupOptionValue(
|
|
64817
|
-
resolveColumnTableFromReportMetadata(
|
|
64817
|
+
String(sourceReport.pivot?.columnFieldTable ?? "").trim() || resolveColumnTableFromReportMetadata(
|
|
64818
64818
|
sourceReport,
|
|
64819
64819
|
sourceReport.pivot?.columnField ?? ""
|
|
64820
64820
|
),
|
package/dist/index.js
CHANGED
|
@@ -65019,14 +65019,14 @@ function useReport(reportIdArg, options = {}) {
|
|
|
65019
65019
|
}) || void 0
|
|
65020
65020
|
) : shouldApplyPivotAggregationsFromSource ? [] : prev.aggregationTablesByIndex;
|
|
65021
65021
|
const sourceRowGroupOption = encodePivotGroupOptionValue(
|
|
65022
|
-
resolveColumnTableFromReportMetadata(
|
|
65022
|
+
String(sourceReport.pivot?.rowFieldTable ?? "").trim() || resolveColumnTableFromReportMetadata(
|
|
65023
65023
|
sourceReport,
|
|
65024
65024
|
sourceReport.pivot?.rowField ?? ""
|
|
65025
65025
|
),
|
|
65026
65026
|
sourceReport.pivot?.rowField ?? ""
|
|
65027
65027
|
) || sourceReport.pivot?.rowField;
|
|
65028
65028
|
const sourceColumnGroupOption = encodePivotGroupOptionValue(
|
|
65029
|
-
resolveColumnTableFromReportMetadata(
|
|
65029
|
+
String(sourceReport.pivot?.columnFieldTable ?? "").trim() || resolveColumnTableFromReportMetadata(
|
|
65030
65030
|
sourceReport,
|
|
65031
65031
|
sourceReport.pivot?.columnField ?? ""
|
|
65032
65032
|
),
|