@quillsql/react 2.16.95 → 2.16.97
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 +375 -513
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +375 -513
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3248,7 +3248,7 @@ interface SetReportBuilderInput {
|
|
|
3248
3248
|
/**
|
|
3249
3249
|
* Encoded values as returned from `useReport().aggregations`
|
|
3250
3250
|
* (`'sum:transactions::amount'`, `'count:transactions'`, `''` = placeholder
|
|
3251
|
-
*
|
|
3251
|
+
* aggregation; bare `'sum:amount'` accepted, resolving the table from the schema),
|
|
3252
3252
|
* structured items, or a single encoded value.
|
|
3253
3253
|
*
|
|
3254
3254
|
* Prefer the full `string[]` form so UIs can batch with other `setReport`
|
|
@@ -3461,9 +3461,9 @@ declare function useReport(reportIdArg?: string, options?: UseReportOptions): {
|
|
|
3461
3461
|
groupColumnsByOptions: SelectOption[];
|
|
3462
3462
|
dateBucket: PivotDateBucket | undefined;
|
|
3463
3463
|
dateBucketOptions: SelectOption[];
|
|
3464
|
-
/** Encoded selection per aggregation
|
|
3464
|
+
/** Encoded selection per aggregation (`'sum:transactions::amount'`, `'count:transactions'`, `''` = placeholder). Update via `setReport({ aggregations: nextStringArray })`. */
|
|
3465
3465
|
aggregations: string[];
|
|
3466
|
-
/** Flat aggregation pick list shared by all
|
|
3466
|
+
/** Flat aggregation pick list shared by all aggregations; always contains every non-empty `aggregations` entry. */
|
|
3467
3467
|
aggregationOptions: SelectOption[];
|
|
3468
3468
|
aggregationDescriptionOptions: {
|
|
3469
3469
|
label: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -3248,7 +3248,7 @@ interface SetReportBuilderInput {
|
|
|
3248
3248
|
/**
|
|
3249
3249
|
* Encoded values as returned from `useReport().aggregations`
|
|
3250
3250
|
* (`'sum:transactions::amount'`, `'count:transactions'`, `''` = placeholder
|
|
3251
|
-
*
|
|
3251
|
+
* aggregation; bare `'sum:amount'` accepted, resolving the table from the schema),
|
|
3252
3252
|
* structured items, or a single encoded value.
|
|
3253
3253
|
*
|
|
3254
3254
|
* Prefer the full `string[]` form so UIs can batch with other `setReport`
|
|
@@ -3461,9 +3461,9 @@ declare function useReport(reportIdArg?: string, options?: UseReportOptions): {
|
|
|
3461
3461
|
groupColumnsByOptions: SelectOption[];
|
|
3462
3462
|
dateBucket: PivotDateBucket | undefined;
|
|
3463
3463
|
dateBucketOptions: SelectOption[];
|
|
3464
|
-
/** Encoded selection per aggregation
|
|
3464
|
+
/** Encoded selection per aggregation (`'sum:transactions::amount'`, `'count:transactions'`, `''` = placeholder). Update via `setReport({ aggregations: nextStringArray })`. */
|
|
3465
3465
|
aggregations: string[];
|
|
3466
|
-
/** Flat aggregation pick list shared by all
|
|
3466
|
+
/** Flat aggregation pick list shared by all aggregations; always contains every non-empty `aggregations` entry. */
|
|
3467
3467
|
aggregationOptions: SelectOption[];
|
|
3468
3468
|
aggregationDescriptionOptions: {
|
|
3469
3469
|
label: string;
|