@zeedhi/teknisa-components-vuetify 1.93.0 → 1.93.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 +1047 -982
- package/dist/tek-components-vuetify.umd.js +1057 -991
- package/package.json +2 -2
- package/types/components/public.d.ts +2 -1
- package/types/components/tek-grid/TekGrid.d.ts +1 -0
- package/types/components/tek-grid/subcomponents/TekGridCellIdentation.d.ts +9 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeedhi/teknisa-components-vuetify",
|
|
3
|
-
"version": "1.93.
|
|
3
|
+
"version": "1.93.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": "20420a9274a19f72fbea80d245bf6a517b02a96b"
|
|
48
48
|
}
|
|
@@ -6,6 +6,7 @@ import TekCrudDeleteButton from './crud/TekCrudDeleteButton';
|
|
|
6
6
|
import TekCrudForm from './crud/TekCrudForm';
|
|
7
7
|
import TekCrudSaveButton from './crud/TekCrudSaveButton';
|
|
8
8
|
import TekGrid from './tek-grid/TekGrid';
|
|
9
|
+
import TekGridCellIdentation from './tek-grid/subcomponents/TekGridCellIdentation';
|
|
9
10
|
import TekDragGrid from './tek-drag-grid/TekDragGrid';
|
|
10
11
|
import TekGridColumnsButton from './tek-grid/TekGridColumnsButton';
|
|
11
12
|
import TekGridFilterButton from './tek-grid/TekGridFilterButton';
|
|
@@ -16,4 +17,4 @@ import TekProductCard from './tek-product-card/TekProductCard';
|
|
|
16
17
|
import TekTreeGrid from './tek-tree-grid/TekTreeGrid';
|
|
17
18
|
import TekUserInfo from './tek-user-info/TekUserInfo';
|
|
18
19
|
import TekUserInfoList from './tek-user-info/TekUserInfoList';
|
|
19
|
-
export { TekBreadcrumbHeader, TekCardTitle, TekCrudAddButton, TekCrudCancelButton, TekCrudDeleteButton, TekCrudForm, TekCrudSaveButton, TekGrid, TekDragGrid, TekGridColumnsButton, TekGridFilterButton, TekGridLayoutOptions, TekImage, TekProductCard, TekIterableComponentRender, TekTreeGrid, TekUserInfo, TekUserInfoList, };
|
|
20
|
+
export { TekBreadcrumbHeader, TekCardTitle, TekCrudAddButton, TekCrudCancelButton, TekCrudDeleteButton, TekCrudForm, TekCrudSaveButton, TekGrid, TekGridCellIdentation, TekDragGrid, TekGridColumnsButton, TekGridFilterButton, TekGridLayoutOptions, TekImage, TekProductCard, TekIterableComponentRender, TekTreeGrid, TekUserInfo, TekUserInfoList, };
|
|
@@ -57,6 +57,7 @@ export default class TekGrid extends ZdGridEditable {
|
|
|
57
57
|
filterValueChange(column: TekGridColumn, index: number, { component, event, element }: IEventParam<Select>): void;
|
|
58
58
|
private clearHelperValues;
|
|
59
59
|
getColumnFilterOptions(column: TekGridColumn): any;
|
|
60
|
+
isCurrentRowGroup(row: IDictionary<any>): boolean;
|
|
60
61
|
isCurrentRow(row: IDictionary<any>): boolean;
|
|
61
62
|
getVisibleData(): void;
|
|
62
63
|
getData(): IDictionary<any>[];
|