@affino/datagrid-vue-app 0.1.5 → 0.1.6
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 -0
- package/dist/DataGridTableStage.vue.d.ts +8 -0
- package/dist/chunks/{DataGridGanttStage.vue_vue_type_script_setup_true_lang-Jmd76whO.js → DataGridGanttStage.vue_vue_type_script_setup_true_lang-BuF2sFwp.js} +1 -1
- package/dist/chunks/{DataGridGanttStageEntry-bwovuF8o.js → DataGridGanttStageEntry-BydDrrtc.js} +1 -1
- package/dist/chunks/{DataGridTableStage.vue_vue_type_script_setup_true_lang-BI_C6XtF.js → DataGridTableStage.vue_vue_type_script_setup_true_lang-DUqp_TKD.js} +2090 -2020
- package/dist/chunks/{useDataGridAppRowModel-7DfVdtXX.js → useDataGridAppRowModel-ut9FcmL0.js} +1192 -1140
- package/dist/config/dataGridLayout.d.ts +7 -0
- package/dist/gantt.js +1 -1
- package/dist/host/DataGridDefaultRenderer.d.ts +28 -0
- package/dist/host/DataGridRuntimeHost.d.ts +10 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +409 -366
- package/dist/internal.js +3 -3
- package/dist/stage/DataGridTableStage.vue.d.ts +8 -0
- package/dist/stage/dataGridTableStage.types.d.ts +5 -0
- package/dist/stage/dataGridTableStageContext.d.ts +3 -0
- package/dist/stage/useDataGridTableStageRuntime.d.ts +4 -0
- package/package.json +2 -2
package/dist/DataGrid.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { type DataGridAppClientRowModelOptions, type DataGridAppColumnInput } fr
|
|
|
4
4
|
import { type DataGridThemeProp } from "./theme/dataGridTheme";
|
|
5
5
|
import { type DataGridGroupByProp, type DataGridPaginationProp } from "./config/dataGridPublicProps";
|
|
6
6
|
import { type DataGridAdvancedFilterProp } from "./config/dataGridAdvancedFilter";
|
|
7
|
+
import { type DataGridLayoutMode } from "./config/dataGridLayout";
|
|
7
8
|
import { type DataGridColumnLayoutProp } from "./config/dataGridColumnLayout";
|
|
8
9
|
import { type DataGridAggregationsProp } from "./config/dataGridAggregations";
|
|
9
10
|
import { type DataGridColumnMenuProp } from "./overlays/dataGridColumnMenu";
|
|
@@ -171,6 +172,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
171
172
|
type: NumberConstructor;
|
|
172
173
|
default: number;
|
|
173
174
|
};
|
|
175
|
+
layoutMode: {
|
|
176
|
+
type: PropType<DataGridLayoutMode>;
|
|
177
|
+
default: string;
|
|
178
|
+
};
|
|
179
|
+
minRows: {
|
|
180
|
+
type: PropType<number | undefined>;
|
|
181
|
+
default: undefined;
|
|
182
|
+
};
|
|
183
|
+
maxRows: {
|
|
184
|
+
type: PropType<number | undefined>;
|
|
185
|
+
default: undefined;
|
|
186
|
+
};
|
|
174
187
|
rowHover: {
|
|
175
188
|
type: BooleanConstructor;
|
|
176
189
|
default: boolean;
|
|
@@ -348,6 +361,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
348
361
|
type: NumberConstructor;
|
|
349
362
|
default: number;
|
|
350
363
|
};
|
|
364
|
+
layoutMode: {
|
|
365
|
+
type: PropType<DataGridLayoutMode>;
|
|
366
|
+
default: string;
|
|
367
|
+
};
|
|
368
|
+
minRows: {
|
|
369
|
+
type: PropType<number | undefined>;
|
|
370
|
+
default: undefined;
|
|
371
|
+
};
|
|
372
|
+
maxRows: {
|
|
373
|
+
type: PropType<number | undefined>;
|
|
374
|
+
default: undefined;
|
|
375
|
+
};
|
|
351
376
|
rowHover: {
|
|
352
377
|
type: BooleanConstructor;
|
|
353
378
|
default: boolean;
|
|
@@ -386,6 +411,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
386
411
|
columns: readonly DataGridAppColumnInput<unknown>[];
|
|
387
412
|
clientRowModelOptions: DataGridAppClientRowModelOptions<unknown> | undefined;
|
|
388
413
|
rowHeightMode: "fixed" | "auto";
|
|
414
|
+
layoutMode: DataGridLayoutMode;
|
|
389
415
|
showRowIndex: boolean;
|
|
390
416
|
rowHover: boolean;
|
|
391
417
|
stripedRows: boolean;
|
|
@@ -408,6 +434,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
408
434
|
rowIndexMenu: DataGridRowIndexMenuProp | undefined;
|
|
409
435
|
columnLayout: DataGridColumnLayoutProp | undefined;
|
|
410
436
|
advancedFilter: DataGridAdvancedFilterProp | undefined;
|
|
437
|
+
minRows: number | undefined;
|
|
438
|
+
maxRows: number | undefined;
|
|
411
439
|
viewMode: DataGridAppViewMode | undefined;
|
|
412
440
|
pageSize: number | undefined;
|
|
413
441
|
currentPage: number | undefined;
|
|
@@ -9,6 +9,10 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
9
9
|
type: import("vue").PropType<import("./dataGridTableStage.types.js").DataGridTableStageProps<Record<string, unknown>>["rowHeightMode"]>;
|
|
10
10
|
required: true;
|
|
11
11
|
};
|
|
12
|
+
layoutMode: {
|
|
13
|
+
type: import("vue").PropType<import("./dataGridTableStage.types.js").DataGridTableStageProps<Record<string, unknown>>["layoutMode"]>;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
12
16
|
layout: {
|
|
13
17
|
type: import("vue").PropType<import("./dataGridTableStage.types.js").DataGridTableStageProps<Record<string, unknown>>["layout"]>;
|
|
14
18
|
required: true;
|
|
@@ -66,6 +70,10 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
66
70
|
type: import("vue").PropType<import("./dataGridTableStage.types.js").DataGridTableStageProps<Record<string, unknown>>["rowHeightMode"]>;
|
|
67
71
|
required: true;
|
|
68
72
|
};
|
|
73
|
+
layoutMode: {
|
|
74
|
+
type: import("vue").PropType<import("./dataGridTableStage.types.js").DataGridTableStageProps<Record<string, unknown>>["layoutMode"]>;
|
|
75
|
+
required: true;
|
|
76
|
+
};
|
|
69
77
|
layout: {
|
|
70
78
|
type: import("vue").PropType<import("./dataGridTableStage.types.js").DataGridTableStageProps<Record<string, unknown>>["layout"]>;
|
|
71
79
|
required: true;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as yn, computed as u, ref as y, watch as de, nextTick as Mt, onMounted as wn, onBeforeUnmount as pn, openBlock as De, createElementBlock as We, createElementVNode as V, normalizeStyle as ne, createVNode as bn, mergeProps as Sn, unref as Mn, createCommentVNode as Tn } from "vue";
|
|
2
|
-
import { o as Pn, q as Dn, _ as Wn } from "./DataGridTableStage.vue_vue_type_script_setup_true_lang-
|
|
2
|
+
import { o as Pn, q as Dn, _ as Wn } from "./DataGridTableStage.vue_vue_type_script_setup_true_lang-DUqp_TKD.js";
|
|
3
3
|
import { resolveDataGridGanttAnalysis as _n, buildDataGridGanttVisibleBars as kn, buildDataGridGanttDependencyPaths as Rn, resolveDataGridGanttRangeFrame as Xe, buildDataGridTimelineRenderModels as Tt, resolveDataGridTimelineDateToPixel as Pt, resolveDataGridTimelineScrollLeftForDate as En, applyDataGridGanttDragDelta as In, hitTestDataGridGanttBar as Dt, clampDataGridTimelineScrollLeft as xn, buildDataGridGanttRowEditPatch as Cn } from "@affino/datagrid-gantt";
|
|
4
4
|
const be = 0.5, Ln = 1.25;
|
|
5
5
|
function Hn(s) {
|
package/dist/chunks/{DataGridGanttStageEntry-bwovuF8o.js → DataGridGanttStageEntry-BydDrrtc.js}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as e, h as r } from "vue";
|
|
2
|
-
import { _ as a } from "./DataGridGanttStage.vue_vue_type_script_setup_true_lang-
|
|
2
|
+
import { _ as a } from "./DataGridGanttStage.vue_vue_type_script_setup_true_lang-BuF2sFwp.js";
|
|
3
3
|
import { normalizeDataGridGanttOptions as n } from "@affino/datagrid-gantt";
|
|
4
4
|
const m = e({
|
|
5
5
|
name: "DataGridGanttStageEntry",
|