@zeedhi/vuetify 1.120.2 → 1.120.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeedhi/vuetify",
|
|
3
|
-
"version": "1.120.
|
|
3
|
+
"version": "1.120.3",
|
|
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": "8ba2eb1695649de66d2a1177c1cf9130e4a14608"
|
|
55
55
|
}
|
|
@@ -22,6 +22,7 @@ export default class ZdDate extends ZdTextInput {
|
|
|
22
22
|
showDatePicker: boolean | string;
|
|
23
23
|
pickerType: string;
|
|
24
24
|
width: number | string;
|
|
25
|
+
pickerWidth: number | string;
|
|
25
26
|
mask: string | undefined;
|
|
26
27
|
inputFormat: string | undefined;
|
|
27
28
|
helperOptions: string[] | string;
|
|
@@ -45,4 +46,5 @@ export default class ZdDate extends ZdTextInput {
|
|
|
45
46
|
private keyAllowed;
|
|
46
47
|
helperValuesOptionClick({ component }: IEventParam<Text>): void;
|
|
47
48
|
getLabel(name: string): string;
|
|
49
|
+
getPickerWidth(): string | number;
|
|
48
50
|
}
|
|
@@ -20,6 +20,7 @@ export default class ZdDateRange extends ZdTextInput {
|
|
|
20
20
|
showDatePicker: boolean | string;
|
|
21
21
|
splitter: string;
|
|
22
22
|
width: number | string;
|
|
23
|
+
pickerWidth: number | string;
|
|
23
24
|
mask: string | undefined;
|
|
24
25
|
inputFormat: string | undefined;
|
|
25
26
|
helperOptions: string[] | string;
|
|
@@ -43,4 +44,5 @@ export default class ZdDateRange extends ZdTextInput {
|
|
|
43
44
|
private keyAllowed;
|
|
44
45
|
helperValuesOptionClick({ component }: IEventParam<Text>): void;
|
|
45
46
|
getLabel(name: string): string;
|
|
47
|
+
getPickerWidth(): string | number;
|
|
46
48
|
}
|
|
@@ -20,6 +20,7 @@ export default class ZdTime extends ZdTextInput {
|
|
|
20
20
|
valueFormat: string;
|
|
21
21
|
inputFormat: string | undefined;
|
|
22
22
|
displayFormat: string;
|
|
23
|
+
pickerWidth: string | number;
|
|
23
24
|
instance: Time;
|
|
24
25
|
instanceType: typeof Time;
|
|
25
26
|
onChangeTimePicker(): void;
|
|
@@ -36,4 +37,5 @@ export default class ZdTime extends ZdTextInput {
|
|
|
36
37
|
pickerDestroyed(): void;
|
|
37
38
|
private toMask;
|
|
38
39
|
get getTimeMask(): "" | (string | RegExp)[];
|
|
40
|
+
getPickerWidth(): string | number;
|
|
39
41
|
}
|