@zeedhi/teknisa-components-vuetify 1.92.0 → 1.92.2
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.
|
@@ -4189,8 +4189,8 @@ let TekGridFilterButton = class TekGridFilterButton extends ZdButton {
|
|
|
4189
4189
|
super(...arguments);
|
|
4190
4190
|
this.instanceType = TekGridFilterButton$1;
|
|
4191
4191
|
}
|
|
4192
|
-
filterClick(event) {
|
|
4193
|
-
this.instance.click
|
|
4192
|
+
filterClick({ event }) {
|
|
4193
|
+
this.instance.click(event);
|
|
4194
4194
|
}
|
|
4195
4195
|
};
|
|
4196
4196
|
__decorate([
|
|
@@ -4189,8 +4189,8 @@
|
|
|
4189
4189
|
super(...arguments);
|
|
4190
4190
|
this.instanceType = teknisaComponentsCommon.TekGridFilterButton;
|
|
4191
4191
|
}
|
|
4192
|
-
filterClick(event) {
|
|
4193
|
-
this.instance.click
|
|
4192
|
+
filterClick({ event }) {
|
|
4193
|
+
this.instance.click(event);
|
|
4194
4194
|
}
|
|
4195
4195
|
};
|
|
4196
4196
|
__decorate([
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeedhi/teknisa-components-vuetify",
|
|
3
|
-
"version": "1.92.
|
|
3
|
+
"version": "1.92.2",
|
|
4
4
|
"description": "Teknisa Components based on Vuetify",
|
|
5
5
|
"author": "Zeedhi <zeedhi@teknisa.com>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"watch": "rollup -cw"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@zeedhi/zd-drag-grid-common": "
|
|
22
|
-
"@zeedhi/zd-drag-grid-vue": "
|
|
23
|
-
"@zeedhi/zd-user-info-common": "
|
|
24
|
-
"@zeedhi/zd-user-info-vue": "
|
|
21
|
+
"@zeedhi/zd-drag-grid-common": "<=1.0.3",
|
|
22
|
+
"@zeedhi/zd-drag-grid-vue": "<=1.0.3",
|
|
23
|
+
"@zeedhi/zd-user-info-common": "^1.3.2",
|
|
24
|
+
"@zeedhi/zd-user-info-vue": "^1.3.2",
|
|
25
25
|
"lodash.clonedeep": "4.5.*",
|
|
26
26
|
"lodash.debounce": "4.0.*",
|
|
27
27
|
"lodash.merge": "4.6.*",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"vue": "2.7.*",
|
|
45
45
|
"vuetify": "2.6.*"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "60f1cc1c4b7800967343c2eb886ab0cde0be8e2f"
|
|
48
48
|
}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { TekGridFilterButton as TekGridFilterButtonClass } from '@zeedhi/teknisa-components-common';
|
|
2
|
+
import { IEventParam } from '@zeedhi/core';
|
|
3
|
+
import { Button } from '@zeedhi/common';
|
|
2
4
|
declare const ZdButton: import("vue").VueConstructor<import("vue-property-decorator").Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue-property-decorator").Vue<Record<string, any>, Record<string, any>, never, never, any>>>;
|
|
3
5
|
/**
|
|
4
6
|
* TekGrid Columns Button component
|
|
@@ -8,6 +10,6 @@ export default class TekGridFilterButton extends ZdButton {
|
|
|
8
10
|
grid: object | string;
|
|
9
11
|
instance: TekGridFilterButtonClass;
|
|
10
12
|
instanceType: typeof TekGridFilterButtonClass;
|
|
11
|
-
filterClick(event:
|
|
13
|
+
filterClick({ event }: IEventParam<Button>): void;
|
|
12
14
|
}
|
|
13
15
|
export {};
|