@affino/datagrid-vue-app 0.1.44 → 0.1.46
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/DataGrid.d.ts +28 -2
- package/dist/DataGridTableStage.vue.d.ts +27 -0
- package/dist/chunks/{DataGridGanttStageEntry-z-xnwnvx.js → DataGridGanttStageEntry-DNXWCKVs.js} +3749 -3527
- package/dist/chunks/useDataGridAppRowModel-DKyzpK78.js +4858 -0
- package/dist/gantt.js +1 -1
- package/dist/host/DataGridDefaultRenderer.d.ts +20 -2
- package/dist/index.js +175 -163
- package/dist/internal.js +2 -2
- package/dist/stage/DataGridTableStage.vue.d.ts +27 -0
- package/dist/stage/DataGridTableStageCenterPane.vue.d.ts +46 -1
- package/dist/stage/dataGridTableStage.types.d.ts +20 -0
- package/dist/stage/useDataGridTableStageRuntime.d.ts +5 -3
- package/package.json +2 -2
- package/dist/chunks/useDataGridAppRowModel-BjIIJmYg.js +0 -4586
package/dist/gantt.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { D as t } from "./chunks/DataGridGanttStageEntry-
|
|
1
|
+
import { D as t } from "./chunks/DataGridGanttStageEntry-DNXWCKVs.js";
|
|
2
2
|
import { buildDataGridTimelineRenderModels as r, normalizeDataGridGanttOptions as n, resolveDataGridTimelineRange as o } from "@affino/datagrid-gantt";
|
|
3
3
|
export {
|
|
4
4
|
t as DataGridGanttStage,
|
|
@@ -19,7 +19,7 @@ import type { DataGridPlaceholderRowsOptions } from "../config/dataGridPlacehold
|
|
|
19
19
|
import type { DataGridVirtualizationOptions } from "../config/dataGridVirtualization";
|
|
20
20
|
import type { DataGridHistoryController, DataGridResolvedHistoryOptions } from "../dataGridHistory";
|
|
21
21
|
import type { DataGridStructuralRowActionHandler, DataGridStructuralRowActionId } from "../dataGridStructuralRowActions";
|
|
22
|
-
import type { DataGridTableStageCellClass, DataGridTableStageCustomOverlay } from "../stage/dataGridTableStage.types";
|
|
22
|
+
import type { DataGridTableStageCenterPaneDiagnostics, DataGridTableStageCellClass, DataGridTableStageCustomOverlay } from "../stage/dataGridTableStage.types";
|
|
23
23
|
type DataGridMode = "base" | "tree" | "pivot" | "worker";
|
|
24
24
|
type DataGridDefaultRendererRuntime = {
|
|
25
25
|
api: UseDataGridRuntimeResult<Record<string, unknown>>["api"];
|
|
@@ -64,10 +64,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
64
64
|
type: PropType<((message: string) => void) | undefined>;
|
|
65
65
|
default: undefined;
|
|
66
66
|
};
|
|
67
|
+
reportCenterPaneDiagnostics: {
|
|
68
|
+
type: PropType<((payload: DataGridTableStageCenterPaneDiagnostics) => void) | undefined>;
|
|
69
|
+
default: undefined;
|
|
70
|
+
};
|
|
67
71
|
reportFillPlumbingState: {
|
|
68
72
|
type: PropType<((layer: string, present: boolean) => void) | undefined>;
|
|
69
73
|
default: undefined;
|
|
70
74
|
};
|
|
75
|
+
reportFillPlumbingDetail: {
|
|
76
|
+
type: PropType<((layer: string, value: string) => void) | undefined>;
|
|
77
|
+
default: undefined;
|
|
78
|
+
};
|
|
71
79
|
selectionSnapshot: {
|
|
72
80
|
type: PropType<Ref<import("@affino/datagrid-vue").DataGridSelectionSnapshot | null>>;
|
|
73
81
|
required: true;
|
|
@@ -307,10 +315,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
307
315
|
type: PropType<((message: string) => void) | undefined>;
|
|
308
316
|
default: undefined;
|
|
309
317
|
};
|
|
318
|
+
reportCenterPaneDiagnostics: {
|
|
319
|
+
type: PropType<((payload: DataGridTableStageCenterPaneDiagnostics) => void) | undefined>;
|
|
320
|
+
default: undefined;
|
|
321
|
+
};
|
|
310
322
|
reportFillPlumbingState: {
|
|
311
323
|
type: PropType<((layer: string, present: boolean) => void) | undefined>;
|
|
312
324
|
default: undefined;
|
|
313
325
|
};
|
|
326
|
+
reportFillPlumbingDetail: {
|
|
327
|
+
type: PropType<((layer: string, value: string) => void) | undefined>;
|
|
328
|
+
default: undefined;
|
|
329
|
+
};
|
|
314
330
|
selectionSnapshot: {
|
|
315
331
|
type: PropType<Ref<import("@affino/datagrid-vue").DataGridSelectionSnapshot | null>>;
|
|
316
332
|
required: true;
|
|
@@ -532,10 +548,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
532
548
|
cellStyle: ((row: DataGridRowNode<Record<string, unknown>>, rowIndex: number, column: DataGridColumnSnapshot, columnIndex: number) => CSSProperties | null | undefined) | undefined;
|
|
533
549
|
isCellEditable: DataGridCellEditablePredicate<Record<string, unknown>> | undefined;
|
|
534
550
|
customOverlays: readonly DataGridTableStageCustomOverlay[] | undefined;
|
|
551
|
+
reportCenterPaneDiagnostics: ((payload: DataGridTableStageCenterPaneDiagnostics) => void) | undefined;
|
|
552
|
+
reportFillPlumbingState: ((layer: string, present: boolean) => void) | undefined;
|
|
553
|
+
reportFillPlumbingDetail: ((layer: string, value: string) => void) | undefined;
|
|
535
554
|
rowSelection: boolean;
|
|
536
555
|
gantt: DataGridGanttProp | undefined;
|
|
537
556
|
reportFillWarning: ((message: string) => void) | undefined;
|
|
538
|
-
reportFillPlumbingState: ((layer: string, present: boolean) => void) | undefined;
|
|
539
557
|
onCellEdit: ((payload: {
|
|
540
558
|
rowId: string | number;
|
|
541
559
|
columnKey: string;
|