@zeedhi/teknisa-components-vuetify 1.66.0 → 1.67.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.
|
@@ -1529,6 +1529,9 @@ __decorate([
|
|
|
1529
1529
|
__decorate([
|
|
1530
1530
|
PropWatch({ type: [Boolean, String], default: false })
|
|
1531
1531
|
], TekGrid$1.prototype, "filterButton", void 0);
|
|
1532
|
+
__decorate([
|
|
1533
|
+
PropWatch({ type: [Object] })
|
|
1534
|
+
], TekGrid$1.prototype, "modalFilterProps", void 0);
|
|
1532
1535
|
__decorate([
|
|
1533
1536
|
PropWatch({ type: [Boolean, String], default: true })
|
|
1534
1537
|
], TekGrid$1.prototype, "showSearch", void 0);
|
|
@@ -6269,6 +6272,9 @@ __decorate([
|
|
|
6269
6272
|
__decorate([
|
|
6270
6273
|
PropWatch({ type: [Boolean, String], default: false })
|
|
6271
6274
|
], TekGrid.prototype, "filterButton", void 0);
|
|
6275
|
+
__decorate([
|
|
6276
|
+
PropWatch({ type: [Object] })
|
|
6277
|
+
], TekGrid.prototype, "modalFilterProps", void 0);
|
|
6272
6278
|
__decorate([
|
|
6273
6279
|
PropWatch({ type: [Boolean, String], default: true })
|
|
6274
6280
|
], TekGrid.prototype, "showSearch", void 0);
|
|
@@ -1531,6 +1531,9 @@
|
|
|
1531
1531
|
__decorate([
|
|
1532
1532
|
vuetify.PropWatch({ type: [Boolean, String], default: false })
|
|
1533
1533
|
], TekGrid$1.prototype, "filterButton", void 0);
|
|
1534
|
+
__decorate([
|
|
1535
|
+
vuetify.PropWatch({ type: [Object] })
|
|
1536
|
+
], TekGrid$1.prototype, "modalFilterProps", void 0);
|
|
1534
1537
|
__decorate([
|
|
1535
1538
|
vuetify.PropWatch({ type: [Boolean, String], default: true })
|
|
1536
1539
|
], TekGrid$1.prototype, "showSearch", void 0);
|
|
@@ -6271,6 +6274,9 @@
|
|
|
6271
6274
|
__decorate([
|
|
6272
6275
|
vuetify.PropWatch({ type: [Boolean, String], default: false })
|
|
6273
6276
|
], TekGrid.prototype, "filterButton", void 0);
|
|
6277
|
+
__decorate([
|
|
6278
|
+
vuetify.PropWatch({ type: [Object] })
|
|
6279
|
+
], TekGrid.prototype, "modalFilterProps", void 0);
|
|
6274
6280
|
__decorate([
|
|
6275
6281
|
vuetify.PropWatch({ type: [Boolean, String], default: true })
|
|
6276
6282
|
], TekGrid.prototype, "showSearch", void 0);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeedhi/teknisa-components-vuetify",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.67.0",
|
|
4
4
|
"description": "Teknisa Components based on Vuetify",
|
|
5
5
|
"author": "Zeedhi <zeedhi@teknisa.com>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"vue": "^2.6.12",
|
|
42
42
|
"vuetify": "^2.4.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "4863f15b5b39b27f3a62e32c666a20e081997690"
|
|
45
45
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="lodash" />
|
|
2
|
-
import { TekGrid as TekGridClass, TekGridColumn, ITekGridExportConfig, IDynamicFilterItem, ITekGridGroupHeader } from '@zeedhi/teknisa-components-common';
|
|
2
|
+
import { TekGrid as TekGridClass, TekGridColumn, ITekGridExportConfig, IDynamicFilterItem, ITekGridGroupHeader, IModalFilterProps } from '@zeedhi/teknisa-components-common';
|
|
3
3
|
import { IComponentRender, Select } from '@zeedhi/common';
|
|
4
4
|
import { IDictionary, IEventParam } from '@zeedhi/core';
|
|
5
5
|
declare const ZdGridEditable: 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>>>;
|
|
@@ -13,6 +13,7 @@ export default class TekGrid extends ZdGridEditable {
|
|
|
13
13
|
columnsButton: boolean | string;
|
|
14
14
|
columnsButtonIgnore: string[] | string;
|
|
15
15
|
filterButton: boolean | string;
|
|
16
|
+
modalFilterProps: IModalFilterProps;
|
|
16
17
|
showSearch: boolean | string;
|
|
17
18
|
columnFilterButton: boolean | string;
|
|
18
19
|
actions: IComponentRender[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="lodash" />
|
|
2
|
-
import { TekTreeGrid as TekTreeGridClass, TekGridColumn, ITekGridExportConfig, IDynamicFilterItem } from '@zeedhi/teknisa-components-common';
|
|
2
|
+
import { TekTreeGrid as TekTreeGridClass, TekGridColumn, ITekGridExportConfig, IDynamicFilterItem, IModalFilterProps } from '@zeedhi/teknisa-components-common';
|
|
3
3
|
import { IComponentRender, Select } from '@zeedhi/common';
|
|
4
4
|
import { IDictionary, IEventParam } from '@zeedhi/core';
|
|
5
5
|
declare const ZdTreeGridEditable: 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>>>;
|
|
@@ -13,6 +13,7 @@ export default class TekGrid extends ZdTreeGridEditable {
|
|
|
13
13
|
columnsButton: boolean | string;
|
|
14
14
|
columnsButtonIgnore: string[] | string;
|
|
15
15
|
filterButton: boolean | string;
|
|
16
|
+
modalFilterProps: IModalFilterProps;
|
|
16
17
|
showSearch: boolean | string;
|
|
17
18
|
columnFilterButton: boolean | string;
|
|
18
19
|
actions: IComponentRender[];
|