@affino/datagrid-vue-app 0.1.41 → 0.1.42
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 +1 -1
- package/dist/chunks/{DataGridGanttStageEntry-BhNAeUxC.js → DataGridGanttStageEntry-z-xnwnvx.js} +3270 -3191
- package/dist/chunks/{useDataGridAppRowModel-C-OPUq4R.js → useDataGridAppRowModel-BFLtdcfY.js} +1475 -1464
- package/dist/gantt.js +1 -1
- package/dist/host/DataGridDefaultRenderer.d.ts +1 -1
- package/dist/index.js +3 -3
- package/dist/internal.js +2 -2
- package/dist/stage/dataGridChromeCanvasMath.d.ts +15 -0
- package/dist/stage/dataGridTableStage.types.d.ts +5 -0
- package/package.json +4 -4
package/dist/DataGrid.d.ts
CHANGED
|
@@ -920,6 +920,7 @@ declare const DataGridRuntimeComponent: import("vue").DefineComponent<{
|
|
|
920
920
|
readonly clientRowModelOptions: DataGridAppClientRowModelOptions<unknown> | undefined;
|
|
921
921
|
readonly rowHeightMode: "fixed" | "auto";
|
|
922
922
|
readonly layoutMode: DataGridLayoutMode;
|
|
923
|
+
readonly baseRowHeight: number;
|
|
923
924
|
readonly showRowIndex: boolean;
|
|
924
925
|
readonly rowHover: boolean;
|
|
925
926
|
readonly stripedRows: boolean;
|
|
@@ -934,7 +935,6 @@ declare const DataGridRuntimeComponent: import("vue").DefineComponent<{
|
|
|
934
935
|
readonly virtualization: DataGridVirtualizationProp | undefined;
|
|
935
936
|
readonly pagination: DataGridPaginationProp | undefined;
|
|
936
937
|
readonly rowModel: DataGridRowModel<unknown> | undefined;
|
|
937
|
-
readonly baseRowHeight: number;
|
|
938
938
|
readonly aggregations: DataGridAggregationsProp | undefined;
|
|
939
939
|
readonly sortModel: readonly DataGridSortState[] | undefined;
|
|
940
940
|
readonly filterModel: DataGridFilterSnapshot | null | undefined;
|