@zeedhi/vuetify 1.78.1 → 1.79.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/zd-style.css +1 -2
- package/dist/zd-vuetify.esm.js +690 -387
- package/dist/zd-vuetify.umd.js +689 -386
- package/package.json +2 -2
- package/types/components/zd-apex-chart/ZdApexChart.d.ts +3 -1
- package/types/components/zd-col/ZdCol.d.ts +5 -0
- package/types/components/zd-master-detail/ZdMasterDetail.d.ts +5 -0
- package/types/components/zd-select/ZdSelect.d.ts +1 -0
- package/types/components/zd-select-tree/ZdSelectTree.d.ts +4 -0
- package/types/components/zd-text-input/ZdTextInput.d.ts +1 -0
- package/types/components/zd-tree-grid/ZdTreeGrid.d.ts +2 -1
- package/types/components/zd-tree-grid/cell/ZdTreeGridCellActionContent.d.ts +1 -2
- package/types/components/zd-tree-grid/cell/ZdTreeGridCellContent.d.ts +1 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zeedhi/vuetify",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.79.1",
|
4
4
|
"description": "Zeedhi Components based on Vuetify",
|
5
5
|
"author": "Zeedhi <zeedhi@teknisa.com>",
|
6
6
|
"license": "ISC",
|
@@ -51,5 +51,5 @@
|
|
51
51
|
"@types/prismjs": "1.26.*",
|
52
52
|
"@types/sortablejs": "1.15.*"
|
53
53
|
},
|
54
|
-
"gitHead": "
|
54
|
+
"gitHead": "5d26e56739271c5eda074f2cd96362849692b86e"
|
55
55
|
}
|
@@ -10,6 +10,11 @@ export default class ZdCol extends ZdComponentRender {
|
|
10
10
|
lg?: string | number;
|
11
11
|
xl?: string | number;
|
12
12
|
offset?: string | number;
|
13
|
+
height?: number | string;
|
14
|
+
minHeight?: number | string;
|
15
|
+
maxHeight?: number | string;
|
16
|
+
fillHeight?: boolean | string;
|
13
17
|
instance: Col;
|
14
18
|
instanceType: typeof Col;
|
19
|
+
mounted(): void;
|
15
20
|
}
|
@@ -7,6 +7,11 @@ import ZdComponentRender from '../zd-component/ZdComponentRender';
|
|
7
7
|
export default class ZdMasterDetail extends ZdComponentRender {
|
8
8
|
config: IDictionary<any>;
|
9
9
|
lazyRelate: boolean;
|
10
|
+
height?: number | string;
|
11
|
+
minHeight?: number | string;
|
12
|
+
maxHeight?: number | string;
|
13
|
+
fillHeight?: boolean | string;
|
10
14
|
instance: MasterDetail;
|
11
15
|
instanceType: typeof MasterDetail;
|
16
|
+
mounted(): void;
|
12
17
|
}
|
@@ -23,6 +23,8 @@ export default class ZdSelectTree extends ZdTextInput {
|
|
23
23
|
dataDisabled: string;
|
24
24
|
disabledItems: any[];
|
25
25
|
fetchOnDemand: boolean | string;
|
26
|
+
fieldHasChild: string;
|
27
|
+
menuMaxWidth: number | string;
|
26
28
|
instance: SelectTree;
|
27
29
|
instanceType: typeof SelectTree;
|
28
30
|
dataChange(): void;
|
@@ -33,6 +35,8 @@ export default class ZdSelectTree extends ZdTextInput {
|
|
33
35
|
changeDisabled(newVal: boolean): void;
|
34
36
|
addListeners(): void;
|
35
37
|
mounted(): void;
|
38
|
+
validate(): boolean;
|
39
|
+
resetValidation(): void;
|
36
40
|
focused: boolean;
|
37
41
|
focus(event: Event): void;
|
38
42
|
blur(event: Event): void;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { IComponentRender, TreeGrid } from '@zeedhi/common';
|
2
2
|
import { IDictionary } from '@zeedhi/core';
|
3
3
|
import ZdGrid from '../zd-grid/ZdGrid';
|
4
4
|
/**
|
@@ -28,4 +28,5 @@ export default class ZdTreeGrid extends ZdGrid {
|
|
28
28
|
getVisibleData(): IDictionary<any>[];
|
29
29
|
getData(): IDictionary<any>[];
|
30
30
|
private onChangeLayout;
|
31
|
+
hasChildOnDemand(row: IDictionary): boolean;
|
31
32
|
}
|
@@ -2,13 +2,12 @@ import { IDictionary } from '@zeedhi/core';
|
|
2
2
|
import ZdGridCell from '../../zd-grid/subcomponents/cell/ZdGridCell.vue';
|
3
3
|
export default class ZdTreeGridCellActionContent extends ZdGridCell {
|
4
4
|
headerIndex?: number;
|
5
|
-
fieldHasChild?: string;
|
6
5
|
selectable?: boolean;
|
7
6
|
rowIndex?: number;
|
8
7
|
toggleExpand?: Function;
|
9
8
|
rowKey?: Function;
|
10
9
|
getActionComponent?: IDictionary<any>;
|
11
10
|
row?: IDictionary<any>;
|
12
|
-
|
11
|
+
hasChildOnDemand: Function;
|
13
12
|
hasShowChevronInTreeGrid(headerIndex?: number, selectable?: boolean): boolean | undefined;
|
14
13
|
}
|
@@ -6,9 +6,8 @@ export default class ZdTreeGridCellContent extends ZdGridCellContent {
|
|
6
6
|
rowIndex?: number;
|
7
7
|
search?: string;
|
8
8
|
expandClass?: string;
|
9
|
-
fieldHasChild?: string;
|
10
9
|
hasUsingCellText: boolean;
|
10
|
+
hasChildOnDemand: Function;
|
11
11
|
formatSearchResult(text: string): string;
|
12
|
-
hasShowChevron(row?: any): boolean;
|
13
12
|
hasShowChevronInTreeGrid(headerIndex?: number, selectable?: boolean): boolean | undefined;
|
14
13
|
}
|