@affino/datagrid-vue-app 0.1.7 → 0.1.8
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 +18 -0
- package/dist/chunks/{DataGridGanttStage.vue_vue_type_script_setup_true_lang-DiaL9sUh.js → DataGridGanttStage.vue_vue_type_script_setup_true_lang-BYUAjngz.js} +1 -1
- package/dist/chunks/{DataGridGanttStageEntry-B8Ghe1BD.js → DataGridGanttStageEntry-CaMj_sad.js} +1 -1
- package/dist/chunks/{DataGridTableStage.vue_vue_type_script_setup_true_lang-Bb5ixAcf.js → DataGridTableStage.vue_vue_type_script_setup_true_lang-l1nn1PNS.js} +126 -122
- package/dist/chunks/{useDataGridAppRowModel-BX3O48Yb.js → useDataGridAppRowModel-D_G_3vas.js} +301 -285
- package/dist/gantt.js +1 -1
- package/dist/host/DataGridDefaultRenderer.d.ts +18 -0
- package/dist/index.js +24 -14
- package/dist/internal.js +3 -3
- package/dist/stage/dataGridTableStage.types.d.ts +2 -0
- package/dist/stage/useDataGridTableStageRuntime.d.ts +2 -0
- package/package.json +3 -3
package/dist/DataGrid.d.ts
CHANGED
|
@@ -184,6 +184,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
184
184
|
type: PropType<number | undefined>;
|
|
185
185
|
default: undefined;
|
|
186
186
|
};
|
|
187
|
+
fillHandle: {
|
|
188
|
+
type: BooleanConstructor;
|
|
189
|
+
default: boolean;
|
|
190
|
+
};
|
|
191
|
+
rangeMove: {
|
|
192
|
+
type: BooleanConstructor;
|
|
193
|
+
default: boolean;
|
|
194
|
+
};
|
|
187
195
|
rowHover: {
|
|
188
196
|
type: BooleanConstructor;
|
|
189
197
|
default: boolean;
|
|
@@ -373,6 +381,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
373
381
|
type: PropType<number | undefined>;
|
|
374
382
|
default: undefined;
|
|
375
383
|
};
|
|
384
|
+
fillHandle: {
|
|
385
|
+
type: BooleanConstructor;
|
|
386
|
+
default: boolean;
|
|
387
|
+
};
|
|
388
|
+
rangeMove: {
|
|
389
|
+
type: BooleanConstructor;
|
|
390
|
+
default: boolean;
|
|
391
|
+
};
|
|
376
392
|
rowHover: {
|
|
377
393
|
type: BooleanConstructor;
|
|
378
394
|
default: boolean;
|
|
@@ -436,6 +452,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
436
452
|
advancedFilter: DataGridAdvancedFilterProp | undefined;
|
|
437
453
|
minRows: number | undefined;
|
|
438
454
|
maxRows: number | undefined;
|
|
455
|
+
fillHandle: boolean;
|
|
456
|
+
rangeMove: boolean;
|
|
439
457
|
viewMode: DataGridAppViewMode | undefined;
|
|
440
458
|
pageSize: number | undefined;
|
|
441
459
|
currentPage: number | 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-l1nn1PNS.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-B8Ghe1BD.js → DataGridGanttStageEntry-CaMj_sad.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-BYUAjngz.js";
|
|
3
3
|
import { normalizeDataGridGanttOptions as n } from "@affino/datagrid-gantt";
|
|
4
4
|
const m = e({
|
|
5
5
|
name: "DataGridGanttStageEntry",
|