@zeedhi/teknisa-components-vuetify 1.39.0 → 1.40.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeedhi/teknisa-components-vuetify",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.40.0",
|
|
4
4
|
"description": "Teknisa Components based on Vuetify",
|
|
5
5
|
"author": "Zeedhi <zeedhi@teknisa.com>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"vue": "^2.6.12",
|
|
40
40
|
"vuetify": "^2.4.0"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "d800bb65956e058cf2ae6f5c79bd930424643082"
|
|
43
43
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="lodash" />
|
|
1
2
|
import { TekGrid as TekGridClass, TekGridColumn, ITekGridExportConfig, IDynamicFilterItem, ITekGridGroupHeader } from '@zeedhi/teknisa-components-common';
|
|
2
3
|
import { IComponentRender, Select } from '@zeedhi/common';
|
|
3
4
|
import { IDictionary, IEventParam } from '@zeedhi/core';
|
|
@@ -30,20 +31,27 @@ export default class TekGrid extends ZdGridEditable {
|
|
|
30
31
|
calcScrollData: (() => void) | undefined;
|
|
31
32
|
scrollData: any;
|
|
32
33
|
renderedData: any;
|
|
34
|
+
/**
|
|
35
|
+
* Left distance for each column
|
|
36
|
+
*/
|
|
37
|
+
fixedLeft: IDictionary<string>;
|
|
33
38
|
mounted(): void;
|
|
34
39
|
minimumColumnWidth(column?: TekGridColumn): any;
|
|
35
40
|
private onChangeLayout;
|
|
36
41
|
getFilterActivatorEvents(on: any, column: TekGridColumn): any;
|
|
37
42
|
private debouncedDatasourceGet;
|
|
38
43
|
getFilterItemChange(prop: keyof IDynamicFilterItem, column: TekGridColumn, index: number): (__3: IEventParam<Select>) => void;
|
|
39
|
-
getFilterValueChange(column: TekGridColumn, index: number): (__2: IEventParam<Select>) => void
|
|
44
|
+
getFilterValueChange(column: TekGridColumn, index: number): import("lodash").DebouncedFunc<(__2: IEventParam<Select>) => void>;
|
|
40
45
|
operationList: string;
|
|
46
|
+
private isOperationArrayValues;
|
|
41
47
|
getComponentType(index: number): "" | "ZdTextInput";
|
|
42
48
|
getComponentHint(index: number): "" | "TEKGRID_MULTIPLE_VALUE_HINT";
|
|
43
49
|
filterItemChange(prop: keyof IDynamicFilterItem, column: TekGridColumn, index: number, { component, event, element }: IEventParam<Select>): void;
|
|
44
50
|
private defaultOperation;
|
|
45
51
|
private defaultRelation;
|
|
46
52
|
private lastFilter;
|
|
53
|
+
private convertToDateFormat;
|
|
54
|
+
private checkDateValueFormat;
|
|
47
55
|
filterValueChange(column: TekGridColumn, index: number, { component, event, element }: IEventParam<Select>): void;
|
|
48
56
|
private clearHelperValues;
|
|
49
57
|
getColumnFilterOptions(column: TekGridColumn): any;
|
|
@@ -55,11 +63,13 @@ export default class TekGrid extends ZdGridEditable {
|
|
|
55
63
|
private tableHeader;
|
|
56
64
|
private tableBody;
|
|
57
65
|
private updateFixedColumns;
|
|
58
|
-
getFixedLeft(column: TekGridColumn): string;
|
|
59
66
|
isGroupSelected(item: ITekGridGroupHeader): boolean;
|
|
60
67
|
isGroupSelectIndeterminate(item: ITekGridGroupHeader): boolean;
|
|
61
68
|
selectGroup(item: ITekGridGroupHeader, event: Event): void;
|
|
62
69
|
private selectGroupRowClick;
|
|
63
70
|
toggleSelectAll(): void;
|
|
71
|
+
get headers(): TekGridColumn[];
|
|
72
|
+
protected getColumnsDOMOrder(): TekGridColumn[];
|
|
73
|
+
protected resizeMouseMoveHandler(event: MouseEvent): void;
|
|
64
74
|
}
|
|
65
75
|
export {};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="lodash" />
|
|
1
2
|
import { TekTreeGrid as TekTreeGridClass, TekGridColumn, ITekGridExportConfig, IDynamicFilterItem } from '@zeedhi/teknisa-components-common';
|
|
2
3
|
import { IComponentRender, Select } from '@zeedhi/common';
|
|
3
4
|
import { IDictionary, IEventParam } from '@zeedhi/core';
|
|
@@ -34,14 +35,17 @@ export default class TekGrid extends ZdTreeGridEditable {
|
|
|
34
35
|
getFilterActivatorEvents(on: any, column: TekGridColumn): any;
|
|
35
36
|
private debouncedDatasourceGet;
|
|
36
37
|
getFilterItemChange(prop: keyof IDynamicFilterItem, column: TekGridColumn, index: number): (__3: IEventParam<Select>) => void;
|
|
37
|
-
getFilterValueChange(column: TekGridColumn, index: number): (__2: IEventParam<Select>) => void
|
|
38
|
+
getFilterValueChange(column: TekGridColumn, index: number): import("lodash").DebouncedFunc<(__2: IEventParam<Select>) => void>;
|
|
38
39
|
operationList: string;
|
|
40
|
+
private isOperationArrayValues;
|
|
39
41
|
getComponentType(index: number): "" | "ZdTextInput";
|
|
40
42
|
getComponentHint(index: number): "" | "TEKGRID_MULTIPLE_VALUE_HINT";
|
|
41
43
|
filterItemChange(prop: keyof IDynamicFilterItem, column: TekGridColumn, index: number, { component, event, element }: IEventParam<Select>): void;
|
|
42
44
|
private defaultOperation;
|
|
43
45
|
private defaultRelation;
|
|
44
46
|
private lastFilter;
|
|
47
|
+
private convertToDateFormat;
|
|
48
|
+
private checkDateValueFormat;
|
|
45
49
|
filterValueChange(column: TekGridColumn, index: number, { component, event, element }: IEventParam<Select>): void;
|
|
46
50
|
private clearHelperValues;
|
|
47
51
|
getColumnFilterOptions(column: TekGridColumn): any;
|