@zeedhi/vuetify 1.106.0 → 1.107.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 +390 -349
- package/dist/zd-vuetify.umd.js +390 -349
- package/package.json +2 -2
- package/types/components/zd-grid/ZdGrid.d.ts +5 -0
- package/types/components/zd-input/ZdInput.d.ts +1 -1
- package/types/components/zd-login/ZdLogin.d.ts +20 -0
- package/types/components/zd-select/ZdSelect.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.107.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": "927a6a6ed15f4202468c8a636dcf4d77d1a950ec"
|
55
55
|
}
|
@@ -91,6 +91,11 @@ export default class ZdGrid extends ZdIterable {
|
|
91
91
|
currentItem: any;
|
92
92
|
value: boolean;
|
93
93
|
}): void;
|
94
|
+
/**
|
95
|
+
* Realiza a seleção/desseleção de linhas na instância e dispara o evento correspondente
|
96
|
+
* @param {boolean} isSelected Indica se as linhas foram selecionadas ou não
|
97
|
+
* @param {Event} event Mouse click event
|
98
|
+
*/
|
94
99
|
selectAllClick(isSelected: boolean, event: Event): void;
|
95
100
|
cellClick(row: IDictionary<any>, column: GridColumn, event: Event): void;
|
96
101
|
cellFocus(row: IDictionary<any>, column: GridColumn): void;
|
@@ -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;
|
@@ -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
|
}
|
@@ -29,7 +29,7 @@ export default class ZdSelect extends ZdTextInput {
|
|
29
29
|
dataValueOutFormName: string;
|
30
30
|
closeOnScroll: boolean;
|
31
31
|
modalSelection: boolean;
|
32
|
-
|
32
|
+
modalSelectionColumns: IColumn[];
|
33
33
|
instance: Select;
|
34
34
|
instanceType: typeof Select;
|
35
35
|
private inputWidth;
|