@zeedhi/vuetify 1.54.0 → 1.55.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.54.0",
3
+ "version": "1.55.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.16.2",
52
52
  "@types/sortablejs": "^1.10.6"
53
53
  },
54
- "gitHead": "6c52f53fb5a7b6e32e367595cdf2e1d5f3f80dcb"
54
+ "gitHead": "68400530da9f20f16e469f5aa29bbff02fedfb06"
55
55
  }
@@ -1,4 +1,4 @@
1
- import { Dashboard, IDashboard } from '@zeedhi/common';
1
+ import { Dashboard, IComponentRender, IDashboard } from '@zeedhi/common';
2
2
  import ZdComponentRender from '../zd-component/ZdComponentRender';
3
3
  /**
4
4
  * Dashboard component
@@ -11,6 +11,7 @@ export default class ZdDashboard extends ZdComponentRender {
11
11
  removePadding: boolean | string;
12
12
  height: number | string;
13
13
  heightAdjust: number | string;
14
+ cardFooterSlot: IComponentRender[] | undefined;
14
15
  instance: Dashboard;
15
16
  instanceType: typeof Dashboard;
16
17
  private resizeY;
@@ -15,6 +15,7 @@ export default class ZdGrid extends ZdIterable {
15
15
  maxHeight: number | string;
16
16
  gridHeight: number | string;
17
17
  gridMaxHeight: number | string;
18
+ disableSelection: string | Function;
18
19
  noDataSlot: IComponentRender[];
19
20
  noResultSlot: IComponentRender[];
20
21
  selectable: boolean | string;
@@ -22,6 +23,7 @@ export default class ZdGrid extends ZdIterable {
22
23
  showHeader: boolean | string;
23
24
  dragColumns: boolean | string;
24
25
  resizeColumns: boolean | string;
26
+ showSelectAll: boolean | string;
25
27
  toolbarSlot: IComponentRender[];
26
28
  instance: Grid;
27
29
  instanceType: typeof Grid;
@@ -1,4 +1,5 @@
1
1
  import { TreeGrid, IComponentRender } from '@zeedhi/common';
2
+ import { IDictionary } from '@zeedhi/core';
2
3
  import ZdGrid from '../zd-grid/ZdGrid';
3
4
  /**
4
5
  * Tree Grid component
@@ -12,7 +13,9 @@ export default class ZdTreeGrid extends ZdGrid {
12
13
  instanceType: typeof TreeGrid;
13
14
  mounted(): void;
14
15
  formatSearchResult(text: string): string;
16
+ checkSome(row: IDictionary<any>): boolean;
17
+ checkEvery(row: IDictionary<any>): any;
15
18
  selectClick(index: number, isSelected: boolean, event: Event): void;
16
- getVisibleData(): import("@zeedhi/core").IDictionary<any>[];
17
- getData(): import("@zeedhi/core").IDictionary<any>[];
19
+ getVisibleData(): IDictionary<any>[];
20
+ getData(): IDictionary<any>[];
18
21
  }