@zeedhi/vuetify 1.79.0 → 1.80.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/zd-vuetify.esm.js +677 -316
- package/dist/zd-vuetify.umd.js +676 -315
- package/package.json +2 -2
- package/types/components/zd-apex-chart/ZdApexChart.d.ts +9 -1
- package/types/components/zd-date/ZdDate.d.ts +2 -0
- package/types/components/zd-date/ZdDateRange.d.ts +2 -0
- package/types/components/zd-modal/ZdModal.d.ts +7 -5
- package/types/components/zd-select/ZdSelect.d.ts +1 -0
- package/types/components/zd-select-tree/ZdSelectTree.d.ts +3 -0
- package/types/components/zd-tabs/ZdTabs.d.ts +1 -0
- package/types/components/zd-text/ZdText.d.ts +8 -1
- package/types/components/zd-text-input/ZdTextInput.d.ts +1 -0
- package/types/components/zd-tree-grid/ZdTreeGrid.d.ts +1 -0
- 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.80.0",
|
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": "c455fb4a9d59f5fa256a85da461067bfd84f3397"
|
55
55
|
}
|
@@ -19,6 +19,14 @@ export default class ZdApexChart extends ZdComponentRender {
|
|
19
19
|
loadColor?: string;
|
20
20
|
instance: ApexChart;
|
21
21
|
instanceType: typeof ApexChart;
|
22
|
+
private defaultOptions;
|
23
|
+
private breakpoints;
|
24
|
+
private apexChartContainer;
|
25
|
+
private resizeObserver?;
|
22
26
|
mounted(): void;
|
23
|
-
|
27
|
+
beforeDestroy(): void;
|
28
|
+
private updateChart;
|
29
|
+
setApexChartTheme(): void;
|
30
|
+
handleResize(): void;
|
31
|
+
drillUp(): void;
|
24
32
|
}
|
@@ -13,11 +13,13 @@ export default class ZdModal extends ZdComponent {
|
|
13
13
|
protected dragHandle: HTMLElement | null;
|
14
14
|
protected modalDragged?: Modal;
|
15
15
|
getModalEl(modal: Modal): HTMLElement | null;
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
16
|
+
registerDragEvents(modal: Modal): void;
|
17
|
+
unregisterDragEvents(modal: Modal): void;
|
18
|
+
private isTouchEvent;
|
19
|
+
private getEventCoordinates;
|
20
|
+
private dragStart;
|
21
|
+
private dragEnd;
|
22
|
+
private dragMove;
|
21
23
|
getContentClass(modal: Modal): string;
|
22
24
|
onKeyDown(event: KeyboardEvent, modal: Modal): void;
|
23
25
|
topModalFocus(): void;
|
@@ -23,6 +23,7 @@ export default class ZdSelectTree extends ZdTextInput {
|
|
23
23
|
dataDisabled: string;
|
24
24
|
disabledItems: any[];
|
25
25
|
fetchOnDemand: boolean | string;
|
26
|
+
fieldHasChild: string;
|
26
27
|
menuMaxWidth: number | string;
|
27
28
|
instance: SelectTree;
|
28
29
|
instanceType: typeof SelectTree;
|
@@ -34,6 +35,8 @@ export default class ZdSelectTree extends ZdTextInput {
|
|
34
35
|
changeDisabled(newVal: boolean): void;
|
35
36
|
addListeners(): void;
|
36
37
|
mounted(): void;
|
38
|
+
validate(): boolean;
|
39
|
+
resetValidation(): void;
|
37
40
|
focused: boolean;
|
38
41
|
focus(event: Event): void;
|
39
42
|
blur(event: Event): void;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Text } from '@zeedhi/common';
|
1
|
+
import { Text, ITextResize } from '@zeedhi/common';
|
2
2
|
import ZdComponent from '../zd-component/ZdComponent';
|
3
3
|
/**
|
4
4
|
* Text component
|
@@ -7,6 +7,13 @@ export default class ZdText extends ZdComponent {
|
|
7
7
|
compile: boolean;
|
8
8
|
text: string | string[];
|
9
9
|
tag: string;
|
10
|
+
textResize: ITextResize;
|
10
11
|
instance: Text;
|
11
12
|
instanceType: typeof Text;
|
13
|
+
private parentWidth;
|
14
|
+
handleResize(): void;
|
15
|
+
parentElement?: HTMLElement;
|
16
|
+
resizeObserver: any;
|
17
|
+
mounted(): void;
|
18
|
+
destroyed(): void;
|
12
19
|
}
|
@@ -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
|
}
|