@zeedhi/vuetify 1.79.1 → 1.80.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-vuetify.esm.js +321 -119
- package/dist/zd-vuetify.umd.js +321 -119
- package/package.json +2 -2
- package/types/components/zd-alert/ZdAlert.d.ts +7 -2
- package/types/components/zd-apex-chart/ZdApexChart.d.ts +6 -0
- package/types/components/zd-collapse-card/ZdCollapseCard.d.ts +10 -10
- 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-tabs/ZdTabs.d.ts +1 -0
- package/types/components/zd-text/ZdText.d.ts +8 -1
- package/types/utils/plugins/formatSizePlugin.d.ts +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zeedhi/vuetify",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.80.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": "19714dd21b9a24c8775cb269711cec516bf2b820"
|
55
55
|
}
|
@@ -1,9 +1,14 @@
|
|
1
|
-
import { Alert } from '@zeedhi/common';
|
1
|
+
import { Alert, Multiple } from '@zeedhi/common';
|
2
2
|
import ZdComponent from '../zd-component/ZdComponent';
|
3
3
|
/**
|
4
4
|
* Alert component
|
5
5
|
*/
|
6
6
|
export default class ZdAlert extends ZdComponent {
|
7
|
-
|
7
|
+
multiple: Multiple;
|
8
|
+
alerts: Alert[];
|
8
9
|
constructor();
|
10
|
+
arrangeStackItems(): void;
|
11
|
+
changeAlerts(): void;
|
12
|
+
remove(index: number): void;
|
13
|
+
hide(index: number): void;
|
9
14
|
}
|
@@ -19,8 +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;
|
27
|
+
beforeDestroy(): void;
|
23
28
|
private updateChart;
|
24
29
|
setApexChartTheme(): void;
|
30
|
+
handleResize(): void;
|
25
31
|
drillUp(): void;
|
26
32
|
}
|
@@ -21,23 +21,23 @@ export default class ZdCollapseCard extends ZdCard {
|
|
21
21
|
};
|
22
22
|
get elevationClass(): string;
|
23
23
|
get headerStyle(): {
|
24
|
-
height: string
|
25
|
-
'max-height': string
|
26
|
-
'min-height': string
|
24
|
+
height: string;
|
25
|
+
'max-height': string;
|
26
|
+
'min-height': string;
|
27
27
|
background: string;
|
28
28
|
};
|
29
29
|
get heightStyles(): {
|
30
|
-
height: string
|
31
|
-
'max-height': string
|
32
|
-
'min-height': string
|
30
|
+
height: string;
|
31
|
+
'max-height': string;
|
32
|
+
'min-height': string;
|
33
33
|
};
|
34
34
|
get widthStyles(): {
|
35
|
-
width: string
|
36
|
-
'max-width': string
|
37
|
-
'min-width': string
|
35
|
+
width: string;
|
36
|
+
'max-width': string;
|
37
|
+
'min-width': string;
|
38
38
|
};
|
39
39
|
get expandStatus(): 0 | 1;
|
40
|
-
cssValue(property: string): string
|
40
|
+
cssValue(property: string): string;
|
41
41
|
click(event: Event): void;
|
42
42
|
change(): void;
|
43
43
|
}
|
@@ -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;
|
@@ -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
|
}
|
@@ -1,2 +1,2 @@
|
|
1
|
-
declare const _default: (value: string | number) => string
|
1
|
+
declare const _default: (value: string | number) => string;
|
2
2
|
export default _default;
|