@zeedhi/vuetify 1.86.1 → 1.87.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/vuetify",
3
- "version": "1.86.1",
3
+ "version": "1.87.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": "f9fb8d02c776134eb446dc5716f2a90020d17d49"
54
+ "gitHead": "cd5b288ebdde15d23fa3208e75ab93e63a5504a3"
55
55
  }
@@ -12,6 +12,8 @@ export interface IColumnWidths {
12
12
  export default class ZdGridEditable extends ZdGrid {
13
13
  doubleClickEdit: boolean | string;
14
14
  canEditRow: Function | string;
15
+ editNewRowsOnly: boolean | string;
16
+ editingNewRows: boolean | string;
15
17
  instance: GridEditable;
16
18
  instanceType: typeof GridEditable;
17
19
  inputToFocus: string;
@@ -22,6 +22,7 @@ export default class ZdMenu extends ZdComponentRender {
22
22
  showSearch: boolean | string;
23
23
  width: number | string;
24
24
  mobileBreakpoint: number | string;
25
+ cache: boolean;
25
26
  items: IMenuItem[];
26
27
  topSlot: IComponentRender[];
27
28
  instance: Menu;
@@ -7,6 +7,7 @@ import ZdTextInput from '../zd-text-input/ZdTextInput.vue';
7
7
  export default class ZdSelect extends ZdTextInput {
8
8
  appendIcon: string;
9
9
  dataText: string | any[];
10
+ dataTextDiscrete: string | any[];
10
11
  dataTextSeparator: string;
11
12
  dataValue: string;
12
13
  dataDisabled: string;
@@ -45,9 +46,12 @@ export default class ZdSelect extends ZdTextInput {
45
46
  selectChange(value: any, event: Event): void;
46
47
  selectInput(value: any): void;
47
48
  selectBlur(event: Event): void;
49
+ formattedDataFunc(item: IDictionary<any>): any;
48
50
  selectFocus(event?: Event): void;
49
51
  selectKeydown(event: KeyboardEvent): void;
50
52
  formattedDataText(item: IDictionary<any>): any;
53
+ selectFormatterFn: Function;
54
+ formattedDataDiscreteText(item: IDictionary<any>): any;
51
55
  get menuClass(): string;
52
56
  loadMore(): void;
53
57
  get items(): IDictionary<any>[];
@@ -54,6 +54,8 @@ export default class ZdSelectMultiple extends ZdSelect {
54
54
  get formattedData(): any;
55
55
  get formattedValue(): IDictionary<any>[];
56
56
  set formattedValue(value: IDictionary<any>[]);
57
+ selectFormatterFn: Function;
58
+ formattedDataDiscreteText(item: IDictionary<any>): any;
57
59
  get allSelected(): boolean | 0;
58
60
  get limitValue(): number;
59
61
  isChipVisible(index: number): boolean;
@@ -17,6 +17,7 @@ export default class ZdSelectTree extends ZdTextInput {
17
17
  parentField: string;
18
18
  dataValue: string;
19
19
  dataText: string | any[];
20
+ dataTextDiscrete: string | any[];
20
21
  dataTextSeparator: string;
21
22
  returnObject: boolean;
22
23
  value: string | number | any;
@@ -35,6 +36,7 @@ export default class ZdSelectTree extends ZdTextInput {
35
36
  changeDisabled(newVal: boolean): void;
36
37
  addListeners(): void;
37
38
  mounted(): void;
39
+ private getFilteredNodes;
38
40
  validate(): boolean;
39
41
  resetValidation(): void;
40
42
  focused: boolean;