@zeedhi/vuetify 1.105.1 → 1.107.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 +585 -414
- package/dist/zd-vuetify.umd.js +584 -413
- package/package.json +2 -2
- package/types/components/zd-input/ZdInput.d.ts +1 -1
- package/types/components/zd-iterable/ZdIterable.d.ts +1 -0
- package/types/components/zd-iterable/zd-search/ZdSearch.d.ts +5 -0
- package/types/components/zd-login/ZdLogin.d.ts +20 -0
- package/types/components/zd-select/ZdSelect.d.ts +6 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zeedhi/vuetify",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.107.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": "f72f60811ee5367e7835cf01a13faf1878ec20b1"
|
55
55
|
}
|
@@ -25,7 +25,7 @@ export default class ZdInput extends ZdComponentRender {
|
|
25
25
|
showHelper: boolean | string;
|
26
26
|
showLabel: boolean | string;
|
27
27
|
storePath: string;
|
28
|
-
validations: IDictionary<IDictionary<string | number
|
28
|
+
validations: IDictionary<IDictionary<string | number> | boolean>;
|
29
29
|
value: any;
|
30
30
|
autoRegister: boolean | string;
|
31
31
|
instance: Input;
|
@@ -22,6 +22,7 @@ export default class ZdIterable extends ZdComponentRender {
|
|
22
22
|
virtualScroll: string | boolean;
|
23
23
|
virtualScrollCache: string | number;
|
24
24
|
searchVisibleOnly: string | boolean;
|
25
|
+
searchIn: string | undefined;
|
25
26
|
instance: Iterable;
|
26
27
|
instanceType: typeof Iterable;
|
27
28
|
private unWatchRouteFn;
|
@@ -12,5 +12,10 @@ export default class ZdSearch extends ZdTextInput {
|
|
12
12
|
lazyAttach: string;
|
13
13
|
instance: Search;
|
14
14
|
instanceType: typeof Search;
|
15
|
+
dropdownProps: any;
|
16
|
+
private selectSearchField;
|
17
|
+
getHintText(): any;
|
18
|
+
mounted(): void;
|
15
19
|
getSearchValue(): string;
|
20
|
+
toggleDropdown(): void;
|
16
21
|
}
|
@@ -18,4 +18,24 @@ export default class ZdLogin extends ZdComponentRender {
|
|
18
18
|
socialLogin: IComponentRender[];
|
19
19
|
instance: Login;
|
20
20
|
instanceType: typeof Login;
|
21
|
+
get socialLoginComponents(): {
|
22
|
+
[x: string]: any;
|
23
|
+
children?: IComponentRender[] | undefined;
|
24
|
+
component: string;
|
25
|
+
allowDuplicate?: boolean | undefined;
|
26
|
+
autofocus?: boolean | undefined;
|
27
|
+
componentId?: number | undefined;
|
28
|
+
cssClass?: string | undefined;
|
29
|
+
cssStyle?: string | object | undefined;
|
30
|
+
events?: import("@zeedhi/common").IComponentEvents<import("@zeedhi/core").IEventParam<any>> | undefined;
|
31
|
+
directives?: import("@zeedhi/common").IComponentDirectives | undefined;
|
32
|
+
isVisible?: string | boolean | undefined;
|
33
|
+
dark?: boolean | undefined;
|
34
|
+
light?: boolean | undefined;
|
35
|
+
keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
|
36
|
+
name: string;
|
37
|
+
parent?: import("@zeedhi/common").Component | undefined;
|
38
|
+
tabStop?: boolean | undefined;
|
39
|
+
userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
|
40
|
+
}[];
|
21
41
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Select, IComponentRender, ISelectDataValueOutItem } from '@zeedhi/common';
|
1
|
+
import { Select, IComponentRender, ISelectDataValueOutItem, IColumn } from '@zeedhi/common';
|
2
2
|
import { IDatasource, IDictionary } from '@zeedhi/core';
|
3
3
|
import ZdTextInput from '../zd-text-input/ZdTextInput.vue';
|
4
4
|
/**
|
@@ -28,6 +28,8 @@ export default class ZdSelect extends ZdTextInput {
|
|
28
28
|
dataValueOut: string | ISelectDataValueOutItem[];
|
29
29
|
dataValueOutFormName: string;
|
30
30
|
closeOnScroll: boolean;
|
31
|
+
modalSelection: boolean;
|
32
|
+
modalSelectionColumns: IColumn[];
|
31
33
|
instance: Select;
|
32
34
|
instanceType: typeof Select;
|
33
35
|
private inputWidth;
|
@@ -75,4 +77,7 @@ export default class ZdSelect extends ZdTextInput {
|
|
75
77
|
get items(): IDictionary<any>[];
|
76
78
|
dataChange(): void;
|
77
79
|
setMenuVisibility(visibility: boolean | 'show' | 'hide'): void;
|
80
|
+
get showModalButton(): boolean | undefined;
|
81
|
+
getSelectIconClickEvents(): any;
|
82
|
+
getPlaceHolder(): string;
|
78
83
|
}
|