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.
- package/dist/chunks/dashboard-controls-BFo8ClGD.js +1473 -0
- package/dist/chunks/dashboard-controls-CpNsaWbB.js +26 -0
- package/dist/chunks/dashboard-export-dialog-CKGJIz95.js +6 -0
- package/dist/chunks/dashboard-export-dialog-CKr9o8DW.js +600 -0
- package/dist/chunks/{dashboard-json-BlEVRs4V.js → dashboard-json-Bqddgxcf.js} +1 -1
- package/dist/chunks/{dashboard-json-Cn2IxIvK.js → dashboard-json-CZrxKZBn.js} +1 -1
- package/dist/chunks/{edit-dashboard-visual-CHqS0-RO.js → edit-dashboard-visual-Du3rYBkf.js} +5966 -4980
- package/dist/chunks/edit-dashboard-visual-Kg8h34hs.js +195 -0
- package/dist/chunks/{editor-action-buttons-BjVPDqso.js → editor-action-buttons-BMeOcqc2.js} +2 -2
- package/dist/chunks/{editor-action-buttons-j0OdQL7Y.js → editor-action-buttons-DHk1Cdb6.js} +1 -1
- package/dist/chunks/{index-CZGIYFfM.js → index-DJmpV5Lg.js} +163 -158
- package/dist/chunks/{index-BQPGBZP4.js → index-DLxVadBx.js} +5788 -5769
- package/dist/chunks/{resource-management-panel-CaktfbhQ.js → resource-management-panel-D6gqCHWr.js} +1 -1
- package/dist/chunks/{resource-management-panel-BD6pGiUl.js → resource-management-panel-VT7LYPp8.js} +88 -88
- package/dist/chunks/{use-visual-utils-uElEhCM9.js → use-visual-utils-DpxMI5Pe.js} +1 -1
- package/dist/chunks/{use-visual-utils-Dhcu2Fn4.js → use-visual-utils-O1QcxL8l.js} +1 -1
- package/dist/dashboard/index.cjs +1 -1
- package/dist/dashboard/index.js +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.js +25 -24
- package/dist/style.css +1 -1
- package/dist/surfboard/index.cjs +1 -1
- package/dist/surfboard/index.js +1 -1
- package/dist/types/dashboard.d.ts +1 -1
- package/dist/types/main.d.ts +9 -2
- package/dist/types/surfboard.d.ts +1 -1
- package/dist/types/types.d.ts +1 -1
- package/package.json +1 -1
- package/dist/chunks/dashboard-controls-Bx-ySdim.js +0 -1561
- package/dist/chunks/dashboard-controls-CZkFeNrk.js +0 -26
- package/dist/chunks/edit-dashboard-visual-Cm5Mc4Um.js +0 -170
- package/dist/chunks/schedule-dashboard-BQ5u1NRe.js +0 -415
- package/dist/chunks/schedule-dashboard-Cul4sDBY.js +0 -6
package/dist/surfboard/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../chunks/index-
|
|
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;
|
package/dist/surfboard/index.js
CHANGED
|
@@ -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;
|
package/dist/types/main.d.ts
CHANGED
|
@@ -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;
|
package/dist/types/types.d.ts
CHANGED
|
@@ -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;
|