@affino/datagrid-vue-app 0.1.49 → 0.1.50
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 +52 -1
- package/dist/DataGrid.d.ts +14 -0
- package/dist/chunks/{DataGridGanttStageEntry-BwdBiQkI.js → DataGridGanttStageEntry-DQBFS3-m.js} +68 -0
- package/dist/chunks/DataGridQuickFilterInput-TYJI9vo6.js +60 -0
- package/dist/chunks/{useDataGridAppRowModel-DV-_lFKE.js → useDataGridAppRowModel-BCi5miT8.js} +2120 -2069
- package/dist/config/dataGridQuickFilter.d.ts +14 -0
- package/dist/dataGridQuickFilter.d.ts +1 -0
- package/dist/gantt.js +1 -1
- package/dist/host/DataGridDefaultRenderer.d.ts +9 -0
- package/dist/host/DataGridQuickFilterInput.d.ts +48 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +457 -421
- package/dist/internal.js +2 -2
- package/dist/overlays/DataGridAdvancedFilterPopover.vue.d.ts +1 -1
- package/dist/overlays/DataGridAggregationsPopover.vue.d.ts +2 -2
- package/dist/overlays/DataGridColumnLayoutPopover.vue.d.ts +1 -1
- package/dist/quick-filter.d.ts +2 -0
- package/dist/quick-filter.js +4 -0
- package/package.json +7 -3
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-BCi5miT8.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-DQBFS3-m.js";
|
|
5
5
|
import { _ as V } from "./chunks/DataGridAdvancedFilterPopover.vue_vue_type_script_setup_true_lang-DxZakgyj.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";
|
|
@@ -40,8 +40,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_WithDefaults<__V
|
|
|
40
40
|
"onReset-all"?: (() => any) | undefined;
|
|
41
41
|
"onUpdate-clause"?: ((payload: DataGridAppAdvancedFilterClausePatch) => any) | undefined;
|
|
42
42
|
}, {
|
|
43
|
-
labels: DataGridResolvedAdvancedFilterLabels;
|
|
44
43
|
active: boolean;
|
|
44
|
+
labels: DataGridResolvedAdvancedFilterLabels;
|
|
45
45
|
appliedFilterSummaryItems: readonly string[];
|
|
46
46
|
hasAnyFilters: boolean;
|
|
47
47
|
showActiveIcon: boolean;
|
|
@@ -28,16 +28,16 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_WithDefaults<__V
|
|
|
28
28
|
disabledReason: string;
|
|
29
29
|
}>>> & {
|
|
30
30
|
onCancel?: (() => any) | undefined;
|
|
31
|
+
onClear?: (() => any) | undefined;
|
|
31
32
|
onOpen?: (() => any) | undefined;
|
|
32
33
|
onApply?: (() => any) | undefined;
|
|
33
|
-
onClear?: (() => any) | undefined;
|
|
34
34
|
"onUpdate-basis"?: ((basis: "source" | "filtered") => any) | undefined;
|
|
35
35
|
"onToggle-column"?: ((key: string, enabled: boolean) => any) | undefined;
|
|
36
36
|
"onUpdate-op"?: ((key: string, op: string) => any) | undefined;
|
|
37
37
|
}, {
|
|
38
38
|
disabled: boolean;
|
|
39
|
-
disabledReason: string;
|
|
40
39
|
active: boolean;
|
|
40
|
+
disabledReason: string;
|
|
41
41
|
buttonLabel: string;
|
|
42
42
|
}, {}>;
|
|
43
43
|
declare const _default: typeof __VLS_export;
|
|
@@ -38,8 +38,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_WithDefaults<__V
|
|
|
38
38
|
placement: "before" | "after";
|
|
39
39
|
}) => any) | undefined;
|
|
40
40
|
}, {
|
|
41
|
-
labels: DataGridResolvedColumnLayoutLabels;
|
|
42
41
|
active: boolean;
|
|
42
|
+
labels: DataGridResolvedColumnLayoutLabels;
|
|
43
43
|
}, {}>;
|
|
44
44
|
declare const _default: typeof __VLS_export;
|
|
45
45
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@affino/datagrid-vue-app",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.50",
|
|
4
4
|
"description": "Declarative Vue DataGrid component for Affino",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -26,6 +26,10 @@
|
|
|
26
26
|
"types": "./dist/advanced-filter.d.ts",
|
|
27
27
|
"import": "./dist/advanced-filter.js"
|
|
28
28
|
},
|
|
29
|
+
"./quick-filter": {
|
|
30
|
+
"types": "./dist/quick-filter.d.ts",
|
|
31
|
+
"import": "./dist/quick-filter.js"
|
|
32
|
+
},
|
|
29
33
|
"./find-replace": {
|
|
30
34
|
"types": "./dist/find-replace.d.ts",
|
|
31
35
|
"import": "./dist/find-replace.js"
|
|
@@ -41,10 +45,10 @@
|
|
|
41
45
|
"dependencies": {
|
|
42
46
|
"@affino/menu-vue": "^2.1.1",
|
|
43
47
|
"@affino/popover-vue": "^1.1.0",
|
|
44
|
-
"@affino/datagrid-gantt": "0.1.2",
|
|
45
48
|
"@affino/datagrid-chrome": "0.1.1",
|
|
49
|
+
"@affino/datagrid-vue": "0.3.37",
|
|
46
50
|
"@affino/datagrid-theme": "0.2.2",
|
|
47
|
-
"@affino/datagrid-
|
|
51
|
+
"@affino/datagrid-gantt": "0.1.2"
|
|
48
52
|
},
|
|
49
53
|
"peerDependencies": {
|
|
50
54
|
"vue": "^3.3.0"
|