@affino/datagrid-vue-app 0.1.64 → 0.4.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/README.md +9 -7
- package/dist/DataGrid.d.ts +1 -3
- package/dist/chunks/DataGridGanttStageEntry-Cypf1c3l.js +12522 -0
- package/dist/chunks/useDataGridAppRowModel-b5bfkfo3.js +5574 -0
- package/dist/gantt.js +1 -1
- package/dist/host/DataGridDefaultRenderer.d.ts +1 -1
- package/dist/index.js +373 -377
- package/dist/internal.js +2 -2
- package/dist/stage/DataGridTableStageCenterPane.vue.d.ts +9 -0
- package/dist/stage/dataGridTableStage.types.d.ts +1 -0
- package/dist/stage/dataGridTableStageA11y.d.ts +4 -0
- package/dist/stage/dataGridTableStageBody.types.d.ts +5 -0
- package/dist/stage/useDataGridStageCellRendering.d.ts +0 -1
- package/dist/stage/useDataGridStagePanes.grouped.d.ts +6 -0
- package/dist/stage/useDataGridStageRenderApis.d.ts +5 -0
- package/dist/stage/useDataGridStageRenderApis.grouped.d.ts +5 -0
- package/dist/stage/useDataGridStageViewportRuntime.d.ts +4 -0
- package/dist/stage/useDataGridTableStageRuntime.d.ts +2 -0
- package/package.json +7 -7
- package/dist/chunks/DataGridGanttStageEntry-DGDFifU8.js +0 -12216
- package/dist/chunks/useDataGridAppRowModel-DF6K2Rd8.js +0 -5409
package/dist/internal.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { d as t, r } from "./chunks/dataGridOverlayThemeVars-vzY74EIz.js";
|
|
2
2
|
import { buildDataGridChromePaneModel as i, buildDataGridChromeRenderModel as d } from "@affino/datagrid-chrome";
|
|
3
|
-
import { D as l, a as n, r as G, b as D, c as S, d as u, u as g, e as b, f as T } from "./chunks/useDataGridAppRowModel-
|
|
4
|
-
import { _ as p, a as c, c as R, b as x, d as C, p as f, u as v, e as M, f as h, g as w, h as y, i as F, j as P, k as A, l as O, m as _, n as E, o as H } from "./chunks/DataGridGanttStageEntry-
|
|
3
|
+
import { D as l, a as n, r as G, b as D, c as S, d as u, u as g, e as b, f as T } from "./chunks/useDataGridAppRowModel-b5bfkfo3.js";
|
|
4
|
+
import { _ as p, a as c, c as R, b as x, d as C, p as f, u as v, e as M, f as h, g as w, h as y, i as F, j as P, k as A, l as O, m as _, n as E, o as H } from "./chunks/DataGridGanttStageEntry-Cypf1c3l.js";
|
|
5
5
|
import { _ as V } from "./chunks/DataGridAdvancedFilterPopover.vue_vue_type_script_setup_true_lang-AVmOe3Bv.js";
|
|
6
6
|
import { _ as k } from "./chunks/DataGridFindReplacePopover.vue_vue_type_script_setup_true_lang-BEVRKG31.js";
|
|
7
7
|
import { buildDataGridTimelineRenderModels as B, normalizeDataGridGanttOptions as I, resolveDataGridTimelineRange as L } from "@affino/datagrid-gantt";
|
|
@@ -30,6 +30,10 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
30
30
|
type: StringConstructor;
|
|
31
31
|
default: string;
|
|
32
32
|
};
|
|
33
|
+
viewportTabIndex: {
|
|
34
|
+
type: NumberConstructor;
|
|
35
|
+
default: number;
|
|
36
|
+
};
|
|
33
37
|
handleScroll: {
|
|
34
38
|
type: PropType<(event: Event) => void>;
|
|
35
39
|
default: undefined;
|
|
@@ -111,6 +115,10 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
111
115
|
type: StringConstructor;
|
|
112
116
|
default: string;
|
|
113
117
|
};
|
|
118
|
+
viewportTabIndex: {
|
|
119
|
+
type: NumberConstructor;
|
|
120
|
+
default: number;
|
|
121
|
+
};
|
|
114
122
|
handleScroll: {
|
|
115
123
|
type: PropType<(event: Event) => void>;
|
|
116
124
|
default: undefined;
|
|
@@ -174,6 +182,7 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
174
182
|
viewportRef: DataGridElementRefHandler;
|
|
175
183
|
bodyRowsRevision: string | number | null;
|
|
176
184
|
viewportClass: string;
|
|
185
|
+
viewportTabIndex: number;
|
|
177
186
|
handleScroll: (event: Event) => void;
|
|
178
187
|
handleWheel: (event: WheelEvent) => void;
|
|
179
188
|
handleContextMenu: (event: MouseEvent) => void;
|
|
@@ -108,6 +108,7 @@ export interface DataGridTableStageRowsSection<TRow extends Record<string, unkno
|
|
|
108
108
|
displayRows: readonly DataGridTableRow<TRow>[];
|
|
109
109
|
displayRowsRevision?: number;
|
|
110
110
|
runtimeRevision?: string | number | null;
|
|
111
|
+
pinnedTopRows: readonly DataGridTableRow<TRow>[];
|
|
111
112
|
pinnedBottomRows: readonly DataGridTableRow<TRow>[];
|
|
112
113
|
sourceRows?: readonly TRow[];
|
|
113
114
|
showRowIndex?: boolean;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare function sanitizeDataGridStageA11yIdPart(value: string): string;
|
|
2
|
+
export declare function resolveDataGridStageCellId(rowId: string | number | null | undefined, columnKey: string): string;
|
|
3
|
+
export declare function resolveDataGridStageHeaderId(columnKey: string): string;
|
|
4
|
+
export declare const DATA_GRID_STAGE_ROW_INDEX_HEADER_ID = "datagrid-stage-header-row-index";
|
|
@@ -37,6 +37,9 @@ export type DataGridTableStageSelectEditorOptionsLoader = (query: string) => Pro
|
|
|
37
37
|
export interface DataGridTableStageBodyRenderApiBase {
|
|
38
38
|
absoluteRowIndex: (row: DataGridTableStageBodyRow, rowOffset: number) => number;
|
|
39
39
|
viewportRowOffset: (row: DataGridTableStageBodyRow, rowOffset: number) => number;
|
|
40
|
+
rowAriaExpanded: (row: DataGridTableStageBodyRow) => "true" | "false" | undefined;
|
|
41
|
+
rowAriaLabel: (row: DataGridTableStageBodyRow, rowOffset: number) => string | undefined;
|
|
42
|
+
rowAriaDisabled: (row: DataGridTableStageBodyRow, rowOffset: number) => "true" | undefined;
|
|
40
43
|
rowStateClasses: (row: DataGridTableStageBodyRow, rowOffset: number) => Record<string, boolean>;
|
|
41
44
|
handleRowContainerClick: (row: DataGridTableStageBodyRow) => void;
|
|
42
45
|
setHoveredRow: (row: DataGridTableStageBodyRow, rowOffset: number) => void;
|
|
@@ -48,6 +51,7 @@ export interface DataGridTableStageBodyRenderApiBase {
|
|
|
48
51
|
bodyCellSelectionStyle: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn, rowOffset: number, columnIndex: number) => CSSProperties;
|
|
49
52
|
resolveCellCustomStyle: (row: DataGridTableStageBodyRow, rowOffset: number, column: DataGridTableStageBodyColumn, columnIndex: number) => CSSProperties;
|
|
50
53
|
columnIndexByKey: (columnKey: string) => number;
|
|
54
|
+
cellDomId: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn) => string;
|
|
51
55
|
cellTabIndex: (rowOffset: number, columnIndex: number) => number;
|
|
52
56
|
cellAriaSelected: (rowOffset: number, columnIndex: number) => "true" | "false";
|
|
53
57
|
cellAriaRole: (row: DataGridTableStageBodyRow, rowOffset: number, column: DataGridTableStageBodyColumn, columnIndex: number) => string | undefined;
|
|
@@ -83,6 +87,7 @@ export interface DataGridTableStageBodyRenderApiBase {
|
|
|
83
87
|
resolveSelectEditorValue: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn) => string;
|
|
84
88
|
resolveSelectEditorOptions: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn) => readonly DataGridTableStageSelectEditorOption[];
|
|
85
89
|
resolveSelectEditorOptionsLoader: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn) => DataGridTableStageSelectEditorOptionsLoader | undefined;
|
|
90
|
+
cellEditorAriaLabel: (row: DataGridTableStageBodyRow, rowOffset: number, column: DataGridTableStageBodyColumn, columnIndex: number) => string;
|
|
86
91
|
handleSelectEditorCommit: (value: string, target?: "stay" | "next" | "previous") => void;
|
|
87
92
|
handleSelectEditorCancel: () => void;
|
|
88
93
|
handleSelectEditorOptionsResolved: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn, options: ReadonlyArray<DataGridFilterableComboboxOption>) => void;
|
|
@@ -15,7 +15,6 @@ export interface UseDataGridStageCellRenderingOptions {
|
|
|
15
15
|
isEditingCellSafe: (row: DataGridTableRow<Record<string, unknown>>, columnKey: string) => boolean;
|
|
16
16
|
columnIndexByKey: (columnKey: string) => number;
|
|
17
17
|
suppressInlineEditStart?: Readonly<Ref<boolean>>;
|
|
18
|
-
preferLightweightCellRendering?: Readonly<Ref<boolean>>;
|
|
19
18
|
perfTraceEnabled?: boolean;
|
|
20
19
|
}
|
|
21
20
|
export interface UseDataGridStageCellRenderingResult {
|
|
@@ -13,9 +13,12 @@ type LayoutRuntime = Readonly<Ref<{
|
|
|
13
13
|
type PaneRuntime = Readonly<Ref<{
|
|
14
14
|
leftPaneContentRef: Ref<HTMLElement | null>;
|
|
15
15
|
rightPaneContentRef: Ref<HTMLElement | null>;
|
|
16
|
+
leftTopPaneContentRef: Ref<HTMLElement | null>;
|
|
17
|
+
rightTopPaneContentRef: Ref<HTMLElement | null>;
|
|
16
18
|
leftBottomPaneContentRef: Ref<HTMLElement | null>;
|
|
17
19
|
rightBottomPaneContentRef: Ref<HTMLElement | null>;
|
|
18
20
|
displayRows: Readonly<Ref<readonly DataGridTableStageBodyRow[]>>;
|
|
21
|
+
pinnedTopRows: Readonly<Ref<readonly DataGridTableStageBodyRow[]>>;
|
|
19
22
|
pinnedBottomRows: Readonly<Ref<readonly DataGridTableStageBodyRow[]>>;
|
|
20
23
|
showRowIndex: Readonly<Ref<boolean>>;
|
|
21
24
|
pinnedLeftColumns: Readonly<Ref<readonly DataGridTableStageBodyColumn[]>>;
|
|
@@ -76,9 +79,12 @@ export interface UseDataGridStagePanesResult {
|
|
|
76
79
|
rightTrackStyle: ComputedRef<CSSProperties>;
|
|
77
80
|
centerHeaderChromeCanvasStyle: ComputedRef<CSSProperties>;
|
|
78
81
|
centerChromeCanvasStyle: ComputedRef<CSSProperties>;
|
|
82
|
+
centerTopChromeCanvasStyle: ComputedRef<CSSProperties>;
|
|
79
83
|
centerBottomChromeCanvasStyle: ComputedRef<CSSProperties>;
|
|
80
84
|
leftPinnedPane: ComputedRef<DataGridTableStagePinnedPaneProps>;
|
|
81
85
|
rightPinnedPane: ComputedRef<DataGridTableStagePinnedPaneProps>;
|
|
86
|
+
leftPinnedTopPane: ComputedRef<DataGridTableStagePinnedPaneProps>;
|
|
87
|
+
rightPinnedTopPane: ComputedRef<DataGridTableStagePinnedPaneProps>;
|
|
82
88
|
leftPinnedBottomPane: ComputedRef<DataGridTableStagePinnedPaneProps>;
|
|
83
89
|
rightPinnedBottomPane: ComputedRef<DataGridTableStagePinnedPaneProps>;
|
|
84
90
|
}
|
|
@@ -74,6 +74,9 @@ export interface UseDataGridStageRenderApisOptions {
|
|
|
74
74
|
isVisibleCellEditableByAbsoluteCoord: (rowIndex: number, columnIndex: number) => boolean;
|
|
75
75
|
resolveAbsoluteRowIndex: (row: DataGridTableStageBodyRow, rowOffset: number) => number;
|
|
76
76
|
resolveViewportRowOffset: (row: DataGridTableStageBodyRow, rowOffset: number) => number;
|
|
77
|
+
rowAriaExpanded: (row: DataGridTableStageBodyRow) => "true" | "false" | undefined;
|
|
78
|
+
rowAriaLabel: (row: DataGridTableStageBodyRow, rowOffset: number) => string | undefined;
|
|
79
|
+
rowAriaDisabled: (row: DataGridTableStageBodyRow, rowOffset: number) => "true" | undefined;
|
|
77
80
|
rowStateClasses: (row: DataGridTableStageBodyRow, rowOffset: number) => Record<string, boolean>;
|
|
78
81
|
handleRowContainerClick: (row: DataGridTableStageBodyRow) => void;
|
|
79
82
|
setHoveredRow: (row: DataGridTableStageBodyRow, rowOffset: number) => void;
|
|
@@ -97,6 +100,7 @@ export interface UseDataGridStageRenderApisOptions {
|
|
|
97
100
|
bodyCellPresentationStyle: (column: DataGridTableStageBodyColumn) => CSSProperties;
|
|
98
101
|
bodyCellSelectionStyle: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn, rowOffset: number, columnIndex: number) => CSSProperties;
|
|
99
102
|
resolveCellCustomStyle: (row: DataGridTableStageBodyRow, rowOffset: number, column: DataGridTableStageBodyColumn, columnIndex: number) => CSSProperties;
|
|
103
|
+
cellDomId: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn) => string;
|
|
100
104
|
cellTabIndex: (rowOffset: number, columnIndex: number) => number;
|
|
101
105
|
cellAriaSelected: (rowOffset: number, columnIndex: number) => "true" | "false";
|
|
102
106
|
cellAriaRole: (row: DataGridTableStageBodyRow, rowOffset: number, column: DataGridTableStageBodyColumn, columnIndex: number) => string | undefined;
|
|
@@ -127,6 +131,7 @@ export interface UseDataGridStageRenderApisOptions {
|
|
|
127
131
|
resolveSelectEditorValue: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn) => string;
|
|
128
132
|
resolveSelectEditorOptions: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn) => readonly DataGridTableStageSelectEditorOption[];
|
|
129
133
|
resolveSelectEditorOptionsLoader: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn) => DataGridTableStageSelectEditorOptionsLoader | undefined;
|
|
134
|
+
cellEditorAriaLabel: (row: DataGridTableStageBodyRow, rowOffset: number, column: DataGridTableStageBodyColumn, columnIndex: number) => string;
|
|
130
135
|
handleSelectEditorCommit: (value: string, target?: "stay" | "next" | "previous") => void;
|
|
131
136
|
handleSelectEditorCancel: () => void;
|
|
132
137
|
handleSelectEditorOptionsResolved: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn, options: ReadonlyArray<DataGridFilterableComboboxOption>) => void;
|
|
@@ -9,6 +9,9 @@ type RowRuntime = Readonly<Ref<{
|
|
|
9
9
|
}>>;
|
|
10
10
|
resolveAbsoluteRowIndex: (row: DataGridTableStageBodyRow, rowOffset: number) => number;
|
|
11
11
|
resolveViewportRowOffset: (row: DataGridTableStageBodyRow, rowOffset: number) => number;
|
|
12
|
+
rowAriaExpanded: (row: DataGridTableStageBodyRow) => "true" | "false" | undefined;
|
|
13
|
+
rowAriaLabel: (row: DataGridTableStageBodyRow, rowOffset: number) => string | undefined;
|
|
14
|
+
rowAriaDisabled: (row: DataGridTableStageBodyRow, rowOffset: number) => "true" | undefined;
|
|
12
15
|
rowStateClasses: (row: DataGridTableStageBodyRow, rowOffset: number) => Record<string, boolean>;
|
|
13
16
|
handleRowContainerClick: (row: DataGridTableStageBodyRow) => void;
|
|
14
17
|
setHoveredRow: (row: DataGridTableStageBodyRow, rowOffset: number) => void;
|
|
@@ -57,6 +60,7 @@ type CellRuntime = Readonly<Ref<{
|
|
|
57
60
|
bodyCellPresentationStyle: (column: DataGridTableStageBodyColumn) => CSSProperties;
|
|
58
61
|
bodyCellSelectionStyle: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn, rowOffset: number, columnIndex: number) => CSSProperties;
|
|
59
62
|
resolveCellCustomStyle: (row: DataGridTableStageBodyRow, rowOffset: number, column: DataGridTableStageBodyColumn, columnIndex: number) => CSSProperties;
|
|
63
|
+
cellDomId: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn) => string;
|
|
60
64
|
cellTabIndex: (rowOffset: number, columnIndex: number) => number;
|
|
61
65
|
cellAriaSelected: (rowOffset: number, columnIndex: number) => "true" | "false";
|
|
62
66
|
cellAriaRole: (row: DataGridTableStageBodyRow, rowOffset: number, column: DataGridTableStageBodyColumn, columnIndex: number) => string | undefined;
|
|
@@ -118,6 +122,7 @@ type EditorRuntime = Readonly<Ref<{
|
|
|
118
122
|
resolveCellEditorMode: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn) => "none" | "text" | "select" | "date" | "datetime";
|
|
119
123
|
resolveSelectEditorOptions: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn) => readonly DataGridTableStageSelectEditorOption[];
|
|
120
124
|
resolveSelectEditorOptionsLoader: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn) => DataGridTableStageSelectEditorOptionsLoader | undefined;
|
|
125
|
+
cellEditorAriaLabel: (row: DataGridTableStageBodyRow, rowOffset: number, column: DataGridTableStageBodyColumn, columnIndex: number) => string;
|
|
121
126
|
handleSelectEditorOptionsResolved: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn, options: ReadonlyArray<DataGridFilterableComboboxOption>) => void;
|
|
122
127
|
readResolvedDisplayCell: (row: DataGridTableStageBodyRow, column: DataGridTableStageBodyColumn) => string;
|
|
123
128
|
renderResolvedCellContent: (row: DataGridTableStageBodyRow, rowOffset: number, column: DataGridTableStageBodyColumn, columnIndex: number) => VNodeChild;
|
|
@@ -20,11 +20,13 @@ export interface UseDataGridStageViewportRuntimeOptions {
|
|
|
20
20
|
}
|
|
21
21
|
export interface UseDataGridStageViewportRuntimeResult {
|
|
22
22
|
bodyViewportEl: Ref<HTMLElement | null>;
|
|
23
|
+
topViewportEl: Ref<HTMLElement | null>;
|
|
23
24
|
bottomViewportEl: Ref<HTMLElement | null>;
|
|
24
25
|
bodyViewportScrollTop: Ref<number>;
|
|
25
26
|
bodyViewportScrollLeft: Ref<number>;
|
|
26
27
|
bodyViewportClientWidth: Ref<number>;
|
|
27
28
|
bodyViewportClientHeight: Ref<number>;
|
|
29
|
+
pinnedTopViewportClientHeight: Ref<number>;
|
|
28
30
|
pinnedBottomViewportClientHeight: Ref<number>;
|
|
29
31
|
bodyViewportTopOffset: Ref<number>;
|
|
30
32
|
headerShellHeight: Ref<number>;
|
|
@@ -33,8 +35,10 @@ export interface UseDataGridStageViewportRuntimeResult {
|
|
|
33
35
|
isBodyViewportScrollIdle: Ref<boolean>;
|
|
34
36
|
runWhenBodyViewportScrollIdle: (callback: () => void) => void;
|
|
35
37
|
captureBodyViewportRef: (value: Element | ComponentPublicInstance | null) => void;
|
|
38
|
+
capturePinnedTopViewportRef: (value: Element | ComponentPublicInstance | null) => void;
|
|
36
39
|
capturePinnedBottomViewportRef: (value: Element | ComponentPublicInstance | null) => void;
|
|
37
40
|
handleCenterViewportScroll: (event: Event) => void;
|
|
41
|
+
handlePinnedTopViewportScroll: (event: Event) => void;
|
|
38
42
|
handlePinnedBottomViewportScroll: (event: Event) => void;
|
|
39
43
|
handleLinkedViewportWheel: (event: WheelEvent) => void;
|
|
40
44
|
handleBodyViewportWheel: (event: WheelEvent) => void;
|
|
@@ -114,6 +114,7 @@ export interface UseDataGridTableStageRuntimeOptions<TRow extends Record<string,
|
|
|
114
114
|
} | null;
|
|
115
115
|
warnings?: readonly string[];
|
|
116
116
|
} | null>;
|
|
117
|
+
executeOperation?: (request: Record<string, unknown>) => Promise<Record<string, unknown>> | Record<string, unknown>;
|
|
117
118
|
undoFillOperation?: (request: {
|
|
118
119
|
operationId: string;
|
|
119
120
|
revision?: string | number | null;
|
|
@@ -176,6 +177,7 @@ export interface UseDataGridTableStageRuntimeOptions<TRow extends Record<string,
|
|
|
176
177
|
} | null;
|
|
177
178
|
warnings?: readonly string[];
|
|
178
179
|
} | null>;
|
|
180
|
+
executeOperation?: (request: Record<string, unknown>) => Promise<Record<string, unknown>> | Record<string, unknown>;
|
|
179
181
|
undoFillOperation?: (request: {
|
|
180
182
|
operationId: string;
|
|
181
183
|
revision?: string | number | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@affino/datagrid-vue-app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Declarative Vue DataGrid component for Affino",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@affino/menu-vue": "^2.1.1",
|
|
47
47
|
"@affino/popover-vue": "^1.1.0",
|
|
48
|
-
"@affino/datagrid-chrome": "0.1.1",
|
|
49
48
|
"@affino/datagrid-gantt": "0.1.2",
|
|
50
|
-
"@affino/datagrid-
|
|
51
|
-
"@affino/datagrid-vue": "0.
|
|
49
|
+
"@affino/datagrid-chrome": "0.1.1",
|
|
50
|
+
"@affino/datagrid-vue": "0.4.0",
|
|
51
|
+
"@affino/datagrid-theme": "0.2.4"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"vue": "^3.3.0"
|
|
@@ -56,12 +56,12 @@
|
|
|
56
56
|
"license": "MIT",
|
|
57
57
|
"repository": {
|
|
58
58
|
"type": "git",
|
|
59
|
-
"url": "git+https://github.com/affinio/
|
|
59
|
+
"url": "git+https://github.com/affinio/datagrid.git",
|
|
60
60
|
"directory": "packages/datagrid-vue-app"
|
|
61
61
|
},
|
|
62
|
-
"homepage": "https://github.com/affinio/
|
|
62
|
+
"homepage": "https://github.com/affinio/datagrid/tree/main/packages/datagrid-vue-app#readme",
|
|
63
63
|
"bugs": {
|
|
64
|
-
"url": "https://github.com/affinio/
|
|
64
|
+
"url": "https://github.com/affinio/datagrid/issues"
|
|
65
65
|
},
|
|
66
66
|
"keywords": [
|
|
67
67
|
"datagrid",
|