@affino/datagrid-vue-app 0.4.6 → 0.5.0

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 (30) hide show
  1. package/dist/DataGrid.d.ts +5 -4
  2. package/dist/chunks/DataGridGanttStageEntry-B7apnhQj.js +13614 -0
  3. package/dist/chunks/useDataGridAppRowModel-B8MCx0Ep.js +5503 -0
  4. package/dist/config/dataGridRowSelection.d.ts +12 -0
  5. package/dist/gantt/dataGridGanttWheel.d.ts +7 -0
  6. package/dist/gantt.js +1 -1
  7. package/dist/host/DataGridDefaultRenderer.d.ts +9 -0
  8. package/dist/index.d.ts +1 -0
  9. package/dist/index.js +607 -573
  10. package/dist/internal.js +2 -2
  11. package/dist/overlays/DataGridAdvancedFilterPopover.vue.d.ts +1 -1
  12. package/dist/overlays/DataGridColumnMenu.vue.d.ts +11 -11
  13. package/dist/overlays/DataGridMenuOverlay.vue.d.ts +85 -0
  14. package/dist/overlays/dataGridMenuOverlay.d.ts +7 -0
  15. package/dist/stage/DataGridCellContentRenderer.d.ts +7 -15
  16. package/dist/stage/DataGridTableStageCenterPane.vue.d.ts +41 -2
  17. package/dist/stage/DataGridTableStageChromeLayer.vue.d.ts +15 -0
  18. package/dist/stage/DataGridTableStageHeader.vue.d.ts +2 -2
  19. package/dist/stage/dataGridTableStage.types.d.ts +9 -2
  20. package/dist/stage/dataGridTableStageBody.types.d.ts +2 -0
  21. package/dist/stage/useDataGridStageChromeCanvas.d.ts +6 -3
  22. package/dist/stage/useDataGridStageChromeModel.d.ts +2 -1
  23. package/dist/stage/useDataGridStageOverlays.d.ts +1 -0
  24. package/dist/stage/useDataGridStageViewportRuntime.d.ts +10 -5
  25. package/dist/stage/useDataGridTableStageColumns.d.ts +1 -0
  26. package/dist/stage/useDataGridTableStageRuntime.d.ts +5 -1
  27. package/dist/stage/useDataGridTableStageScrollSync.d.ts +0 -4
  28. package/package.json +4 -4
  29. package/dist/chunks/DataGridGanttStageEntry-7gs_CokC.js +0 -12544
  30. package/dist/chunks/useDataGridAppRowModel-C6u8Vt7F.js +0 -5659
@@ -19,6 +19,7 @@ import { type DataGridSavedViewSnapshot } from "./config/dataGridSavedView";
19
19
  import { type DataGridColumnLayoutProp } from "./config/dataGridColumnLayout";
20
20
  import { type DataGridColumnReorderProp } from "./config/dataGridColumnReorder";
21
21
  import { type DataGridRowReorderProp } from "./config/dataGridRowReorder";
22
+ import { type DataGridRowSelectionProp } from "./config/dataGridRowSelection";
22
23
  import { type DataGridAggregationsProp } from "./config/dataGridAggregations";
23
24
  import { type DataGridColumnMenuProp } from "./overlays/dataGridColumnMenu";
24
25
  import { type DataGridCellMenuProp, type DataGridRowIndexMenuProp } from "./overlays/dataGridContextMenu";
@@ -161,7 +162,7 @@ declare const dataGridProps: {
161
162
  readonly default: true;
162
163
  };
163
164
  readonly rowSelection: {
164
- readonly type: BooleanConstructor;
165
+ readonly type: PropType<DataGridRowSelectionProp>;
165
166
  readonly default: true;
166
167
  };
167
168
  readonly rowReorder: {
@@ -491,7 +492,7 @@ declare const DataGridRuntimeComponent: import("vue").DefineComponent<{
491
492
  readonly default: true;
492
493
  };
493
494
  readonly rowSelection: {
494
- readonly type: BooleanConstructor;
495
+ readonly type: PropType<DataGridRowSelectionProp>;
495
496
  readonly default: true;
496
497
  };
497
498
  readonly rowReorder: {
@@ -795,7 +796,7 @@ declare const DataGridRuntimeComponent: import("vue").DefineComponent<{
795
796
  readonly default: true;
796
797
  };
797
798
  readonly rowSelection: {
798
- readonly type: BooleanConstructor;
799
+ readonly type: PropType<DataGridRowSelectionProp>;
799
800
  readonly default: true;
800
801
  };
801
802
  readonly rowReorder: {
@@ -1020,7 +1021,7 @@ declare const DataGridRuntimeComponent: import("vue").DefineComponent<{
1020
1021
  readonly reportCenterPaneDiagnostics: ((payload: DataGridTableStageCenterPaneDiagnostics) => void) | undefined;
1021
1022
  readonly reportFillPlumbingState: ((layer: string, present: boolean) => void) | undefined;
1022
1023
  readonly reportFillPlumbingDetail: ((layer: string, value: string) => void) | undefined;
1023
- readonly rowSelection: boolean;
1024
+ readonly rowSelection: DataGridRowSelectionProp;
1024
1025
  readonly state: DataGridUnifiedState<Record<string, unknown>> | null | undefined;
1025
1026
  readonly chrome: DataGridChromeProp | undefined;
1026
1027
  readonly gantt: DataGridGanttProp | undefined;