@zeedhi/teknisa-components-vuetify 1.95.0 → 1.96.1
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 +915 -1851
- package/dist/tek-components-vuetify.umd.js +928 -1862
- package/dist/tek-style.css +7 -5812
- package/package.json +2 -2
- package/types/components/public.d.ts +3 -1
- package/types/components/tek-grid/TekGrid.d.ts +7 -6
- package/types/components/tek-grid/TekGridFilterButton.d.ts +1 -0
- package/types/components/tek-grid/subcomponents/TekGridColumnFilter.d.ts +16 -0
- package/types/components/tek-grid/subcomponents/TekGridHeaderIndentation.d.ts +5 -0
- package/types/components/tek-tree-grid/TekTreeGrid.d.ts +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeedhi/teknisa-components-vuetify",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.96.1",
|
|
4
4
|
"description": "Teknisa Components based on Vuetify",
|
|
5
5
|
"author": "Zeedhi <zeedhi@teknisa.com>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"vue": "2.7.*",
|
|
45
45
|
"vuetify": "2.6.*"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "baaea258f392a9bd1b2379ab8660a03f618eeb6a"
|
|
48
48
|
}
|
|
@@ -7,6 +7,8 @@ import TekCrudForm from './crud/TekCrudForm';
|
|
|
7
7
|
import TekCrudSaveButton from './crud/TekCrudSaveButton';
|
|
8
8
|
import TekGrid from './tek-grid/TekGrid';
|
|
9
9
|
import TekGridCellIdentation from './tek-grid/subcomponents/TekGridCellIdentation';
|
|
10
|
+
import TekGridHeaderIndentation from './tek-grid/subcomponents/TekGridHeaderIndentation';
|
|
11
|
+
import TekGridColumnFilter from './tek-grid/subcomponents/TekGridColumnFilter';
|
|
10
12
|
import TekDragGrid from './tek-drag-grid/TekDragGrid';
|
|
11
13
|
import TekGridColumnsButton from './tek-grid/TekGridColumnsButton';
|
|
12
14
|
import TekGridFilterButton from './tek-grid/TekGridFilterButton';
|
|
@@ -17,4 +19,4 @@ import TekProductCard from './tek-product-card/TekProductCard';
|
|
|
17
19
|
import TekTreeGrid from './tek-tree-grid/TekTreeGrid';
|
|
18
20
|
import TekUserInfo from './tek-user-info/TekUserInfo';
|
|
19
21
|
import TekUserInfoList from './tek-user-info/TekUserInfoList';
|
|
20
|
-
export { TekBreadcrumbHeader, TekCardTitle, TekCrudAddButton, TekCrudCancelButton, TekCrudDeleteButton, TekCrudForm, TekCrudSaveButton, TekGrid, TekGridCellIdentation, TekDragGrid, TekGridColumnsButton, TekGridFilterButton, TekGridLayoutOptions, TekImage, TekProductCard, TekIterableComponentRender, TekTreeGrid, TekUserInfo, TekUserInfoList, };
|
|
22
|
+
export { TekBreadcrumbHeader, TekCardTitle, TekCrudAddButton, TekCrudCancelButton, TekCrudDeleteButton, TekCrudForm, TekCrudSaveButton, TekGrid, TekGridCellIdentation, TekGridHeaderIndentation, TekGridColumnFilter, TekDragGrid, TekGridColumnsButton, TekGridFilterButton, TekGridLayoutOptions, TekImage, TekProductCard, TekIterableComponentRender, TekTreeGrid, TekUserInfo, TekUserInfoList, };
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
/// <reference types="lodash" />
|
|
2
1
|
import { TekGrid as TekGridClass, TekGridColumn, ITekGridExportConfig, IDynamicFilterItem, ITekGridGroupHeader, IModalFilterProps } from '@zeedhi/teknisa-components-common';
|
|
3
|
-
import { GridColumnEditable, IComponentRender, Select } from '@zeedhi/common';
|
|
2
|
+
import { GridColumnEditable, IComponentRender, Input, Radio, Select } from '@zeedhi/common';
|
|
4
3
|
import { IDictionary, IEventParam } from '@zeedhi/core';
|
|
5
4
|
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>>>;
|
|
6
5
|
/**
|
|
@@ -28,6 +27,7 @@ export default class TekGrid extends ZdGridEditable {
|
|
|
28
27
|
groupsOpened: boolean | string;
|
|
29
28
|
showSummaryTotal: boolean | string;
|
|
30
29
|
mainGrid: boolean | string;
|
|
30
|
+
showCheckboxAllFilter: boolean | string;
|
|
31
31
|
toolbarSlot: IComponentRender[];
|
|
32
32
|
instance: TekGridClass;
|
|
33
33
|
instanceType: typeof TekGridClass;
|
|
@@ -42,19 +42,20 @@ export default class TekGrid extends ZdGridEditable {
|
|
|
42
42
|
private onChangeLayout;
|
|
43
43
|
getFilterActivatorEvents(on: any, column: TekGridColumn): any;
|
|
44
44
|
private debouncedDatasourceGet;
|
|
45
|
-
getFilterItemChange(prop: keyof IDynamicFilterItem, column: TekGridColumn, index: number
|
|
46
|
-
|
|
45
|
+
getFilterItemChange(prop: keyof IDynamicFilterItem, column: TekGridColumn, index: number, params: IEventParam<Select | Radio>): void;
|
|
46
|
+
private debouncedFilterChange;
|
|
47
|
+
getFilterValueChange(column: TekGridColumn, index: number, params: IEventParam<Input>): void | undefined;
|
|
47
48
|
operationList: string;
|
|
48
49
|
private isOperationArrayValues;
|
|
49
50
|
getComponentType(index: number): "" | "ZdTextInput";
|
|
50
51
|
getComponentHint(index: number): "" | "TEKGRID_MULTIPLE_VALUE_HINT";
|
|
51
|
-
filterItemChange(prop: keyof IDynamicFilterItem, column: TekGridColumn, index: number, { component, event, element }: IEventParam<Select>): void;
|
|
52
|
+
filterItemChange(prop: keyof IDynamicFilterItem, column: TekGridColumn, index: number, { component, event, element }: IEventParam<Select | Radio>): void;
|
|
52
53
|
private defaultOperation;
|
|
53
54
|
private defaultRelation;
|
|
54
55
|
private lastFilter;
|
|
55
56
|
private convertToDateFormat;
|
|
56
57
|
private checkDateValueFormat;
|
|
57
|
-
filterValueChange(column: TekGridColumn, index: number, { component, event, element }: IEventParam<
|
|
58
|
+
filterValueChange(column: TekGridColumn, index: number, { component, event, element }: IEventParam<Input>): void;
|
|
58
59
|
private clearHelperValues;
|
|
59
60
|
getColumnFilterOptions(column: TekGridColumn): any;
|
|
60
61
|
isCurrentRowGroup(row: IDictionary<any>): boolean;
|
|
@@ -8,6 +8,7 @@ declare const ZdButton: import("vue").VueConstructor<import("vue-property-decora
|
|
|
8
8
|
export default class TekGridFilterButton extends ZdButton {
|
|
9
9
|
gridName: string;
|
|
10
10
|
grid: object | string;
|
|
11
|
+
showCheckboxAll: boolean | string;
|
|
11
12
|
instance: TekGridFilterButtonClass;
|
|
12
13
|
instanceType: typeof TekGridFilterButtonClass;
|
|
13
14
|
filterClick({ event }: IEventParam<Button>): void;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import Vue from 'vue';
|
|
2
|
+
import { Datasource, IDictionary, IEventParam } from '@zeedhi/core';
|
|
3
|
+
import { Column, Input, Radio, Select } from '@zeedhi/common';
|
|
4
|
+
export default class TekGridColumnFilter extends Vue {
|
|
5
|
+
hasFilterData: boolean;
|
|
6
|
+
getFilterActivatorEvents: Function;
|
|
7
|
+
column: Column;
|
|
8
|
+
columnFilterOptions: IDictionary[];
|
|
9
|
+
instanceName: string;
|
|
10
|
+
filterRelationsDatasource: Datasource;
|
|
11
|
+
filterOperationsDatasource: Datasource;
|
|
12
|
+
getComponentHint: Function;
|
|
13
|
+
getComponentType: Function;
|
|
14
|
+
itemChange(type: string, filterIndex: number, params: IEventParam<Select | Radio>): void;
|
|
15
|
+
valueChange(filterIndex: number, params: IEventParam<Input>): void;
|
|
16
|
+
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
import { Column, IComponentRender, Select } from '@zeedhi/common';
|
|
1
|
+
import { Column, IComponentRender, Input, Radio, Select } from '@zeedhi/common';
|
|
3
2
|
import { IDictionary, IEventParam } from '@zeedhi/core';
|
|
4
3
|
import { IDynamicFilterItem, IModalFilterProps, ITekGridExportConfig, TekGridColumn, TekTreeGrid as TekTreeGridClass } from '@zeedhi/teknisa-components-common';
|
|
5
4
|
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>>>;
|
|
@@ -39,20 +38,21 @@ export default class TekGrid extends ZdTreeGridEditable {
|
|
|
39
38
|
private onChangeTekGridLayout;
|
|
40
39
|
getFilterActivatorEvents(on: any, column: TekGridColumn): any;
|
|
41
40
|
private debouncedDatasourceGet;
|
|
42
|
-
getFilterItemChange(prop: keyof IDynamicFilterItem, column: TekGridColumn, index: number
|
|
43
|
-
|
|
41
|
+
getFilterItemChange(prop: keyof IDynamicFilterItem, column: TekGridColumn, index: number, params: IEventParam<Select | Radio>): void;
|
|
42
|
+
private debouncedFilterChange;
|
|
43
|
+
getFilterValueChange(column: TekGridColumn, index: number, params: IEventParam<Input>): void | undefined;
|
|
44
44
|
operationList: string;
|
|
45
45
|
private isOperationArrayValues;
|
|
46
46
|
getComponentType(index: number): "" | "ZdTextInput";
|
|
47
47
|
getComponentHint(index: number): "" | "TEKGRID_MULTIPLE_VALUE_HINT";
|
|
48
|
-
filterItemChange(prop: keyof IDynamicFilterItem, column: TekGridColumn, index: number, { component, event, element }: IEventParam<Select>): void;
|
|
48
|
+
filterItemChange(prop: keyof IDynamicFilterItem, column: TekGridColumn, index: number, { component, event, element }: IEventParam<Select | Radio>): void;
|
|
49
49
|
orderColumnVisibility(): void;
|
|
50
50
|
private defaultOperation;
|
|
51
51
|
private defaultRelation;
|
|
52
52
|
private lastFilter;
|
|
53
53
|
private convertToDateFormat;
|
|
54
54
|
private checkDateValueFormat;
|
|
55
|
-
filterValueChange(column: TekGridColumn, index: number, { component, event, element }: IEventParam<
|
|
55
|
+
filterValueChange(column: TekGridColumn, index: number, { component, event, element }: IEventParam<Input>): void;
|
|
56
56
|
private clearHelperValues;
|
|
57
57
|
getColumnFilterOptions(column: TekGridColumn): any;
|
|
58
58
|
isCurrentRow(row: IDictionary<any>): boolean;
|