@affino/datagrid-vue-app 0.4.5 → 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.
- package/dist/DataGrid.d.ts +5 -4
- package/dist/chunks/DataGridGanttStageEntry-B7apnhQj.js +13614 -0
- package/dist/chunks/useDataGridAppRowModel-B8MCx0Ep.js +5503 -0
- package/dist/config/dataGridRowSelection.d.ts +12 -0
- package/dist/gantt/dataGridGanttWheel.d.ts +7 -0
- package/dist/gantt.js +1 -1
- package/dist/host/DataGridDefaultRenderer.d.ts +9 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +607 -573
- package/dist/internal.js +2 -2
- package/dist/overlays/DataGridAdvancedFilterPopover.vue.d.ts +1 -1
- package/dist/overlays/DataGridColumnMenu.vue.d.ts +11 -11
- package/dist/overlays/DataGridMenuOverlay.vue.d.ts +85 -0
- package/dist/overlays/dataGridMenuOverlay.d.ts +7 -0
- package/dist/stage/DataGridCellContentRenderer.d.ts +7 -15
- package/dist/stage/DataGridTableStageCenterPane.vue.d.ts +41 -2
- package/dist/stage/DataGridTableStageChromeLayer.vue.d.ts +15 -0
- package/dist/stage/DataGridTableStageHeader.vue.d.ts +2 -2
- package/dist/stage/dataGridTableStage.types.d.ts +9 -2
- package/dist/stage/dataGridTableStageBody.types.d.ts +2 -0
- package/dist/stage/useDataGridStageChromeCanvas.d.ts +6 -3
- package/dist/stage/useDataGridStageChromeModel.d.ts +2 -1
- package/dist/stage/useDataGridStageOverlays.d.ts +1 -0
- package/dist/stage/useDataGridStageRowState.d.ts +1 -0
- package/dist/stage/useDataGridStageViewportRuntime.d.ts +10 -5
- package/dist/stage/useDataGridTableStageColumns.d.ts +1 -0
- package/dist/stage/useDataGridTableStageRuntime.d.ts +5 -1
- package/dist/stage/useDataGridTableStageScrollSync.d.ts +0 -4
- package/package.json +4 -4
- package/dist/chunks/DataGridGanttStageEntry-BlGuno5g.js +0 -12528
- package/dist/chunks/useDataGridAppRowModel-PWQ72nCy.js +0 -5659
package/dist/DataGrid.d.ts
CHANGED
|
@@ -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:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|