@affino/datagrid-vue-app 0.1.4 → 0.1.5
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 +2 -2
- package/dist/chunks/{DataGridGanttStage.vue_vue_type_script_setup_true_lang-Dhns9W_V.js → DataGridGanttStage.vue_vue_type_script_setup_true_lang-Jmd76whO.js} +1 -1
- package/dist/chunks/{DataGridGanttStageEntry-D4NqLvKS.js → DataGridGanttStageEntry-bwovuF8o.js} +1 -1
- package/dist/chunks/{DataGridTableStage.vue_vue_type_script_setup_true_lang-BKBL5xs3.js → DataGridTableStage.vue_vue_type_script_setup_true_lang-BI_C6XtF.js} +1205 -1178
- package/dist/chunks/{useDataGridAppRowModel-CrcgRzkI.js → useDataGridAppRowModel-7DfVdtXX.js} +2 -2
- package/dist/config/dataGridFormulaOptions.d.ts +14 -2
- package/dist/gantt.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/internal.d.ts +1 -1
- package/dist/internal.js +3 -3
- package/dist/stage/DataGridCellContentRenderer.d.ts +15 -0
- package/dist/stage/dataGridTableStageBody.types.d.ts +4 -1
- package/package.json +3 -3
package/dist/DataGrid.d.ts
CHANGED
|
@@ -383,12 +383,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
383
383
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
384
384
|
}, {
|
|
385
385
|
rows: readonly unknown[];
|
|
386
|
+
columns: readonly DataGridAppColumnInput<unknown>[];
|
|
387
|
+
clientRowModelOptions: DataGridAppClientRowModelOptions<unknown> | undefined;
|
|
386
388
|
rowHeightMode: "fixed" | "auto";
|
|
387
389
|
showRowIndex: boolean;
|
|
388
390
|
rowHover: boolean;
|
|
389
391
|
stripedRows: boolean;
|
|
390
392
|
isCellEditable: DataGridCellEditablePredicate<Record<string, unknown>> | undefined;
|
|
391
|
-
columns: readonly DataGridAppColumnInput[];
|
|
392
393
|
rowSelection: boolean;
|
|
393
394
|
gantt: DataGridGanttProp | undefined;
|
|
394
395
|
virtualization: DataGridVirtualizationProp | undefined;
|
|
@@ -408,7 +409,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
408
409
|
columnLayout: DataGridColumnLayoutProp | undefined;
|
|
409
410
|
advancedFilter: DataGridAdvancedFilterProp | undefined;
|
|
410
411
|
viewMode: DataGridAppViewMode | undefined;
|
|
411
|
-
clientRowModelOptions: DataGridAppClientRowModelOptions<unknown> | undefined;
|
|
412
412
|
pageSize: number | undefined;
|
|
413
413
|
currentPage: number | undefined;
|
|
414
414
|
startupOrder: readonly import("@affino/datagrid-core").DataGridCoreServiceName[] | undefined;
|
|
@@ -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-BI_C6XtF.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-D4NqLvKS.js → DataGridGanttStageEntry-bwovuF8o.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-Jmd76whO.js";
|
|
3
3
|
import { normalizeDataGridGanttOptions as n } from "@affino/datagrid-gantt";
|
|
4
4
|
const m = e({
|
|
5
5
|
name: "DataGridGanttStageEntry",
|