@quillsql/react 2.16.18 → 2.16.20
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 +927 -788
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1296 -1157
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -647,6 +647,8 @@ interface QuillReport {
|
|
|
647
647
|
columns: Column$1[];
|
|
648
648
|
/** The type of this chart. */
|
|
649
649
|
chartType: string;
|
|
650
|
+
/** Whether to show a legend for this chart. */
|
|
651
|
+
showLegend?: boolean;
|
|
650
652
|
/** The table and field this report uses for date filtering, if any. */
|
|
651
653
|
dateField?: {
|
|
652
654
|
table: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -647,6 +647,8 @@ interface QuillReport {
|
|
|
647
647
|
columns: Column$1[];
|
|
648
648
|
/** The type of this chart. */
|
|
649
649
|
chartType: string;
|
|
650
|
+
/** Whether to show a legend for this chart. */
|
|
651
|
+
showLegend?: boolean;
|
|
650
652
|
/** The table and field this report uses for date filtering, if any. */
|
|
651
653
|
dateField?: {
|
|
652
654
|
table: string;
|