@quillsql/react 2.16.45 → 2.16.47
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 +302 -28
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +302 -28
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2972,7 +2972,9 @@ type SetReportTableColumnSidebarPatch = {
|
|
|
2972
2972
|
};
|
|
2973
2973
|
type AggregationStateItem = Partial<{
|
|
2974
2974
|
valueField: string;
|
|
2975
|
+
valueFieldType: string;
|
|
2975
2976
|
valueField2?: string;
|
|
2977
|
+
valueField2Type?: string;
|
|
2976
2978
|
aggregationType: AggregationType;
|
|
2977
2979
|
/** Resolved datasource table for `valueField` (mirrors `aggregationTablesByIndex`). */
|
|
2978
2980
|
valueFieldTable?: string;
|
|
@@ -3268,7 +3270,9 @@ declare function useReport(reportIdArg?: string, options?: UseReportOptions): {
|
|
|
3268
3270
|
groupColumnsByOptions: SelectOption[];
|
|
3269
3271
|
aggregations: Partial<{
|
|
3270
3272
|
valueField: string;
|
|
3273
|
+
valueFieldType: string;
|
|
3271
3274
|
valueField2?: string;
|
|
3275
|
+
valueField2Type?: string;
|
|
3272
3276
|
aggregationType: AggregationType;
|
|
3273
3277
|
/** Resolved datasource table for `valueField` (mirrors `aggregationTablesByIndex`). */
|
|
3274
3278
|
valueFieldTable?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2972,7 +2972,9 @@ type SetReportTableColumnSidebarPatch = {
|
|
|
2972
2972
|
};
|
|
2973
2973
|
type AggregationStateItem = Partial<{
|
|
2974
2974
|
valueField: string;
|
|
2975
|
+
valueFieldType: string;
|
|
2975
2976
|
valueField2?: string;
|
|
2977
|
+
valueField2Type?: string;
|
|
2976
2978
|
aggregationType: AggregationType;
|
|
2977
2979
|
/** Resolved datasource table for `valueField` (mirrors `aggregationTablesByIndex`). */
|
|
2978
2980
|
valueFieldTable?: string;
|
|
@@ -3268,7 +3270,9 @@ declare function useReport(reportIdArg?: string, options?: UseReportOptions): {
|
|
|
3268
3270
|
groupColumnsByOptions: SelectOption[];
|
|
3269
3271
|
aggregations: Partial<{
|
|
3270
3272
|
valueField: string;
|
|
3273
|
+
valueFieldType: string;
|
|
3271
3274
|
valueField2?: string;
|
|
3275
|
+
valueField2Type?: string;
|
|
3272
3276
|
aggregationType: AggregationType;
|
|
3273
3277
|
/** Resolved datasource table for `valueField` (mirrors `aggregationTablesByIndex`). */
|
|
3274
3278
|
valueFieldTable?: string;
|