@zeedhi/teknisa-components-vuetify 1.39.0 → 1.43.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/dist/tek-components-vuetify.esm.js +677 -313
- package/dist/tek-components-vuetify.umd.js +685 -321
- package/package.json +2 -2
- package/types/components/tek-grid/TekGrid.d.ts +12 -2
- package/types/components/tek-iterable-component-render/TekIterableComponentRender.d.ts +3 -0
- package/types/components/tek-loading/TekLoading.d.ts +9 -0
- package/types/components/tek-product-card/TekProductCard.d.ts +3 -0
- package/types/components/tek-tree-grid/TekTreeGrid.d.ts +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeedhi/teknisa-components-vuetify",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.43.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": "dff21e134017e20c4de440406daf73031653df60"
|
|
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 {};
|
|
@@ -12,6 +12,9 @@ export default class TekIterableComponentRender extends ZdIterable {
|
|
|
12
12
|
errorSlot: IComponentRender[];
|
|
13
13
|
noDataSlot: IComponentRender[];
|
|
14
14
|
noResultSlot: IComponentRender[];
|
|
15
|
+
height: number | string;
|
|
16
|
+
maxHeight: number | string;
|
|
17
|
+
minHeight: number | string;
|
|
15
18
|
instance: IterableComponentRender;
|
|
16
19
|
instanceType: typeof IterableComponentRender;
|
|
17
20
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Loading } from '@zeedhi/teknisa-components-common';
|
|
2
|
+
import { ZdLoading } from '@zeedhi/vuetify';
|
|
3
|
+
export default class TekLoading extends ZdLoading {
|
|
4
|
+
text: string;
|
|
5
|
+
image?: string;
|
|
6
|
+
zdIndex: number | string;
|
|
7
|
+
instance: Loading;
|
|
8
|
+
instanceType: typeof Loading;
|
|
9
|
+
}
|
|
@@ -14,6 +14,9 @@ export default class TekProductCard extends ZdComponentRender {
|
|
|
14
14
|
productBrand?: string;
|
|
15
15
|
productPrice?: string | number;
|
|
16
16
|
width: string;
|
|
17
|
+
height: number | string;
|
|
18
|
+
maxHeight: number | string;
|
|
19
|
+
minHeight: number | string;
|
|
17
20
|
instance: ProductCard;
|
|
18
21
|
instanceType: typeof ProductCard;
|
|
19
22
|
disableTooltip: boolean;
|
|
@@ -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;
|