@zeedhi/vuetify 1.106.0 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/vuetify",
3
- "version": "1.106.0",
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": "27e1dc565dd18bb9e293e1d379bb6b18efa6d5c3"
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;
@@ -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
- modalSelectionFields: IColumn[];
32
+ modalSelectionColumns: IColumn[];
33
33
  instance: Select;
34
34
  instanceType: typeof Select;
35
35
  private inputWidth;