@ianicdev/datatables2 0.11.3 → 0.11.4
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/lib/index.d.ts +14 -4
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -16,25 +16,35 @@ type AdvancedFilterConfig =
|
|
|
16
16
|
| false
|
|
17
17
|
| (BaseAdvancedFilter & {
|
|
18
18
|
component: "textfield";
|
|
19
|
-
options?: InstanceType<typeof VTextField>["$props"]
|
|
19
|
+
options?: InstanceType<typeof VTextField>["$props"] & {
|
|
20
|
+
[key: `on${string}`]: any;
|
|
21
|
+
};
|
|
20
22
|
})
|
|
21
23
|
| (BaseAdvancedFilter & {
|
|
22
24
|
component: "select";
|
|
23
|
-
options?: InstanceType<typeof VSelect>["$props"]
|
|
25
|
+
options?: InstanceType<typeof VSelect>["$props"] & {
|
|
26
|
+
[key: `on${string}`]: any;
|
|
27
|
+
};
|
|
24
28
|
})
|
|
25
29
|
| (BaseAdvancedFilter & {
|
|
26
30
|
component: "number";
|
|
27
|
-
options?: InstanceType<typeof VNumberInput>["$props"]
|
|
31
|
+
options?: InstanceType<typeof VNumberInput>["$props"] & {
|
|
32
|
+
[key: `on${string}`]: any;
|
|
33
|
+
};
|
|
28
34
|
})
|
|
29
35
|
| (BaseAdvancedFilter & {
|
|
30
36
|
component: "datepicker";
|
|
31
37
|
options?: InstanceType<typeof VDateInput>["$props"] & {
|
|
32
38
|
returnFormat?: string;
|
|
39
|
+
[key: `on${string}`]: any;
|
|
33
40
|
};
|
|
34
41
|
})
|
|
35
42
|
| (BaseAdvancedFilter & {
|
|
36
43
|
component: "comparison";
|
|
37
|
-
options?: InstanceType<typeof VNumberInput>["$props"] &
|
|
44
|
+
options?: InstanceType<typeof VNumberInput>["$props"] &
|
|
45
|
+
InstanceType<typeof VSelect>["$props"] & {
|
|
46
|
+
[key: `on${string}`]: any;
|
|
47
|
+
};
|
|
38
48
|
})
|
|
39
49
|
| (BaseAdvancedFilter & {
|
|
40
50
|
component?: Component;
|