react-semaphor 0.1.125 → 0.1.127

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.
Files changed (33) hide show
  1. package/dist/chunks/dashboard-controls-BFo8ClGD.js +1473 -0
  2. package/dist/chunks/dashboard-controls-CpNsaWbB.js +26 -0
  3. package/dist/chunks/dashboard-export-dialog-CKGJIz95.js +6 -0
  4. package/dist/chunks/dashboard-export-dialog-CKr9o8DW.js +600 -0
  5. package/dist/chunks/{dashboard-json-BlEVRs4V.js → dashboard-json-Bqddgxcf.js} +1 -1
  6. package/dist/chunks/{dashboard-json-Cn2IxIvK.js → dashboard-json-CZrxKZBn.js} +1 -1
  7. package/dist/chunks/{edit-dashboard-visual-CHqS0-RO.js → edit-dashboard-visual-Du3rYBkf.js} +5966 -4980
  8. package/dist/chunks/edit-dashboard-visual-Kg8h34hs.js +195 -0
  9. package/dist/chunks/{editor-action-buttons-BjVPDqso.js → editor-action-buttons-BMeOcqc2.js} +2 -2
  10. package/dist/chunks/{editor-action-buttons-j0OdQL7Y.js → editor-action-buttons-DHk1Cdb6.js} +1 -1
  11. package/dist/chunks/{index-CZGIYFfM.js → index-DJmpV5Lg.js} +163 -158
  12. package/dist/chunks/{index-BQPGBZP4.js → index-DLxVadBx.js} +5788 -5769
  13. package/dist/chunks/{resource-management-panel-CaktfbhQ.js → resource-management-panel-D6gqCHWr.js} +1 -1
  14. package/dist/chunks/{resource-management-panel-BD6pGiUl.js → resource-management-panel-VT7LYPp8.js} +88 -88
  15. package/dist/chunks/{use-visual-utils-uElEhCM9.js → use-visual-utils-DpxMI5Pe.js} +1 -1
  16. package/dist/chunks/{use-visual-utils-Dhcu2Fn4.js → use-visual-utils-O1QcxL8l.js} +1 -1
  17. package/dist/dashboard/index.cjs +1 -1
  18. package/dist/dashboard/index.js +1 -1
  19. package/dist/index.cjs +2 -2
  20. package/dist/index.js +25 -24
  21. package/dist/style.css +1 -1
  22. package/dist/surfboard/index.cjs +1 -1
  23. package/dist/surfboard/index.js +1 -1
  24. package/dist/types/dashboard.d.ts +1 -1
  25. package/dist/types/main.d.ts +9 -2
  26. package/dist/types/surfboard.d.ts +1 -1
  27. package/dist/types/types.d.ts +1 -1
  28. package/package.json +1 -1
  29. package/dist/chunks/dashboard-controls-Bx-ySdim.js +0 -1561
  30. package/dist/chunks/dashboard-controls-CZkFeNrk.js +0 -26
  31. package/dist/chunks/edit-dashboard-visual-Cm5Mc4Um.js +0 -170
  32. package/dist/chunks/schedule-dashboard-BQ5u1NRe.js +0 -415
  33. package/dist/chunks/schedule-dashboard-Cul4sDBY.js +0 -6
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../chunks/index-CZGIYFfM.js"),r=require("../types/index.cjs");exports.Surfboard=e.DashboardPlus;exports.EMPTY_SELECTION=r.EMPTY_SELECTION;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../chunks/index-DJmpV5Lg.js"),r=require("../types/index.cjs");exports.Surfboard=e.DashboardPlus;exports.EMPTY_SELECTION=r.EMPTY_SELECTION;
@@ -1,4 +1,4 @@
1
- import { a } from "../chunks/index-BQPGBZP4.js";
1
+ import { a } from "../chunks/index-DLxVadBx.js";
2
2
  import { EMPTY_SELECTION as E } from "../types/index.js";
3
3
  export {
4
4
  E as EMPTY_SELECTION,
@@ -1331,7 +1331,7 @@ export declare type TChartOptions = {
1331
1331
  treemapColorMode?: 'branch' | 'category';
1332
1332
  };
1333
1333
 
1334
- declare type TChartType = 'bar' | 'horizontalBar' | 'line' | 'pie' | 'doughnut' | 'radar' | 'polarArea' | 'bubble' | 'scatter' | 'stackedBar' | 'stackedLine' | 'table' | 'pivotTable' | 'aggregateTable' | 'kpi' | 'pyramid' | 'tornado' | 'range' | 'text' | 'map' | 'funnel' | 'bullet' | 'heatmap' | 'treemap' | 'custom';
1334
+ declare type TChartType = 'bar' | 'horizontalBar' | 'line' | 'pie' | 'doughnut' | 'radar' | 'polarArea' | 'bubble' | 'scatter' | 'stackedBar' | 'stackedLine' | 'table' | 'pivotTable' | 'aggregateTable' | 'tableBuilder' | 'kpi' | 'pyramid' | 'tornado' | 'range' | 'text' | 'map' | 'funnel' | 'bullet' | 'heatmap' | 'treemap' | 'custom';
1335
1335
 
1336
1336
  export declare type TColumnSetting<T extends DisplayDataType> = {
1337
1337
  columnIdx: number;
@@ -672,6 +672,13 @@ export declare type DashboardEventHandlers = {
672
672
  onExportData?: (payload: ExportDataPayload) => void;
673
673
  };
674
674
 
675
+ export declare function DashboardExportDialog({ open, onOpenChange, }: DashboardExportDialogProps): JSX_2.Element;
676
+
677
+ declare interface DashboardExportDialogProps {
678
+ open: boolean;
679
+ onOpenChange: (open: boolean) => void;
680
+ }
681
+
675
682
  declare type DashboardPlusProps = {
676
683
  showControls?: boolean;
677
684
  showFooter?: boolean;
@@ -861,7 +868,7 @@ export declare type Dialect = 'mysql' | 'postgres' | 'bigquery' | 'redshift' | '
861
868
 
862
869
  export declare type DisplayDataType = 'string' | 'date' | 'number' | 'html' | 'none';
863
870
 
864
- export declare function downloadPdf(apiServiceUrl: string, password?: string): Promise<void>;
871
+ export declare function downloadPdf(apiServiceUrl: string, password?: string, sheetSelection?: 'current' | 'all'): Promise<void>;
865
872
 
866
873
  declare interface DrillActions {
867
874
  updateDrillHierarchies: (h: DrillHierarchy[]) => void;
@@ -2299,7 +2306,7 @@ export declare type TChartOptions = {
2299
2306
  treemapColorMode?: 'branch' | 'category';
2300
2307
  };
2301
2308
 
2302
- declare type TChartType = 'bar' | 'horizontalBar' | 'line' | 'pie' | 'doughnut' | 'radar' | 'polarArea' | 'bubble' | 'scatter' | 'stackedBar' | 'stackedLine' | 'table' | 'pivotTable' | 'aggregateTable' | 'kpi' | 'pyramid' | 'tornado' | 'range' | 'text' | 'map' | 'funnel' | 'bullet' | 'heatmap' | 'treemap' | 'custom';
2309
+ declare type TChartType = 'bar' | 'horizontalBar' | 'line' | 'pie' | 'doughnut' | 'radar' | 'polarArea' | 'bubble' | 'scatter' | 'stackedBar' | 'stackedLine' | 'table' | 'pivotTable' | 'aggregateTable' | 'tableBuilder' | 'kpi' | 'pyramid' | 'tornado' | 'range' | 'text' | 'map' | 'funnel' | 'bullet' | 'heatmap' | 'treemap' | 'custom';
2303
2310
 
2304
2311
  export declare type TColumnSetting<T extends DisplayDataType> = {
2305
2312
  columnIdx: number;
@@ -1336,7 +1336,7 @@ export declare type TChartOptions = {
1336
1336
  treemapColorMode?: 'branch' | 'category';
1337
1337
  };
1338
1338
 
1339
- declare type TChartType = 'bar' | 'horizontalBar' | 'line' | 'pie' | 'doughnut' | 'radar' | 'polarArea' | 'bubble' | 'scatter' | 'stackedBar' | 'stackedLine' | 'table' | 'pivotTable' | 'aggregateTable' | 'kpi' | 'pyramid' | 'tornado' | 'range' | 'text' | 'map' | 'funnel' | 'bullet' | 'heatmap' | 'treemap' | 'custom';
1339
+ declare type TChartType = 'bar' | 'horizontalBar' | 'line' | 'pie' | 'doughnut' | 'radar' | 'polarArea' | 'bubble' | 'scatter' | 'stackedBar' | 'stackedLine' | 'table' | 'pivotTable' | 'aggregateTable' | 'tableBuilder' | 'kpi' | 'pyramid' | 'tornado' | 'range' | 'text' | 'map' | 'funnel' | 'bullet' | 'heatmap' | 'treemap' | 'custom';
1340
1340
 
1341
1341
  export declare type TColumnSetting<T extends DisplayDataType> = {
1342
1342
  columnIdx: number;
@@ -1328,7 +1328,7 @@ export declare type TChartOptions = {
1328
1328
  treemapColorMode?: 'branch' | 'category';
1329
1329
  };
1330
1330
 
1331
- declare type TChartType = 'bar' | 'horizontalBar' | 'line' | 'pie' | 'doughnut' | 'radar' | 'polarArea' | 'bubble' | 'scatter' | 'stackedBar' | 'stackedLine' | 'table' | 'pivotTable' | 'aggregateTable' | 'kpi' | 'pyramid' | 'tornado' | 'range' | 'text' | 'map' | 'funnel' | 'bullet' | 'heatmap' | 'treemap' | 'custom';
1331
+ declare type TChartType = 'bar' | 'horizontalBar' | 'line' | 'pie' | 'doughnut' | 'radar' | 'polarArea' | 'bubble' | 'scatter' | 'stackedBar' | 'stackedLine' | 'table' | 'pivotTable' | 'aggregateTable' | 'tableBuilder' | 'kpi' | 'pyramid' | 'tornado' | 'range' | 'text' | 'map' | 'funnel' | 'bullet' | 'heatmap' | 'treemap' | 'custom';
1332
1332
 
1333
1333
  export declare type TColumnSetting<T extends DisplayDataType> = {
1334
1334
  columnIdx: number;
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "email": "support@semaphor.cloud"
6
6
  },
7
7
  "license": "MIT",
8
- "version": "0.1.125",
8
+ "version": "0.1.127",
9
9
  "description": "Fully interactive and customizable dashboards for your apps.",
10
10
  "keywords": [
11
11
  "react",