@zeedhi/vuetify 1.75.0 → 1.76.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.75.0",
3
+ "version": "1.76.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": "4eb27cb45f169dc3705657062f24e37e21c2d14b"
54
+ "gitHead": "83563403815e6fc64ab6bd33e05b054a7b963508"
55
55
  }
@@ -9,7 +9,6 @@ export default class ZdSearch extends ZdTextInput {
9
9
  showHelper: string;
10
10
  appendIcon: string;
11
11
  placeholder: string;
12
- cssClass: string;
13
12
  instance: Search;
14
13
  instanceType: typeof Search;
15
14
  getSearchValue(): string;
@@ -6,6 +6,7 @@ import ZdComponentRender from '../zd-component/ZdComponentRender';
6
6
  */
7
7
  export default class ZdMasterDetail extends ZdComponentRender {
8
8
  config: IDictionary<any>;
9
+ lazyRelate: boolean;
9
10
  instance: MasterDetail;
10
11
  instanceType: typeof MasterDetail;
11
12
  }
@@ -0,0 +1,14 @@
1
+ import { IDictionary } from '@zeedhi/core';
2
+ import ZdGridCell from '../../zd-grid/subcomponents/cell/ZdGridCell.vue';
3
+ export default class ZdTreeGridCellActionContent extends ZdGridCell {
4
+ headerIndex?: number;
5
+ fieldHasChild?: string;
6
+ selectable?: boolean;
7
+ rowIndex?: number;
8
+ toggleExpand?: Function;
9
+ rowKey?: Function;
10
+ getActionComponent?: IDictionary<any>;
11
+ row?: IDictionary<any>;
12
+ hasShowChevron(row?: any): boolean;
13
+ hasShowChevronInTreeGrid(headerIndex?: number, selectable?: boolean): boolean | undefined;
14
+ }