@quillsql/react 2.16.93 → 2.16.94

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.d.cts CHANGED
@@ -1201,6 +1201,7 @@ declare function Dashboard({ name, onClickReport, containerStyle, EmptyDashboard
1201
1201
  type DashboardConfig = {
1202
1202
  dashboardId: string;
1203
1203
  name: string;
1204
+ hidden?: boolean;
1204
1205
  filters: InternalDashboardStringFilter[];
1205
1206
  allTenantFilters?: InternalDashboardTenantFilter[];
1206
1207
  tenantFilters?: InternalDashboardTenantFilter[];
@@ -3747,6 +3748,7 @@ declare const useDashboards: () => {
3747
3748
  section: string;
3748
3749
  reportOrder: string[];
3749
3750
  }[] | undefined;
3751
+ hidden: boolean | undefined;
3750
3752
  }[] | null;
3751
3753
  isLoading: boolean;
3752
3754
  createDashboard: ({ name, tenantFilters, filters, dateFilter, dashboardOwners, clientId, }: {
package/dist/index.d.ts CHANGED
@@ -1201,6 +1201,7 @@ declare function Dashboard({ name, onClickReport, containerStyle, EmptyDashboard
1201
1201
  type DashboardConfig = {
1202
1202
  dashboardId: string;
1203
1203
  name: string;
1204
+ hidden?: boolean;
1204
1205
  filters: InternalDashboardStringFilter[];
1205
1206
  allTenantFilters?: InternalDashboardTenantFilter[];
1206
1207
  tenantFilters?: InternalDashboardTenantFilter[];
@@ -3747,6 +3748,7 @@ declare const useDashboards: () => {
3747
3748
  section: string;
3748
3749
  reportOrder: string[];
3749
3750
  }[] | undefined;
3751
+ hidden: boolean | undefined;
3750
3752
  }[] | null;
3751
3753
  isLoading: boolean;
3752
3754
  createDashboard: ({ name, tenantFilters, filters, dateFilter, dashboardOwners, clientId, }: {