@zeedhi/vuetify 1.72.0 → 1.73.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.72.0",
3
+ "version": "1.73.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": "980a2536aef9dd438c953ee7797445eb2cdebb06"
54
+ "gitHead": "8a71366a2552c49660df52b1f2a4bef7f08d6c70"
55
55
  }
@@ -72,11 +72,10 @@ export default class ZdGrid extends ZdIterable {
72
72
  changeData(): void;
73
73
  protected calcScrollData(): void;
74
74
  updateScrollPerPage(): void;
75
- getVisibleData(): IDictionary<any>[];
76
75
  getData(): IDictionary<any>[];
77
76
  get renderedData(): IDictionary<any>[];
78
77
  private updateScrollData;
79
- private debounceScroll;
78
+ private lastStart;
80
79
  onScroll(event: Event): void;
81
80
  get cssColorVars(): {
82
81
  '--current-row-color': string;
@@ -20,6 +20,7 @@ export default class ZdIterable extends ZdComponentRender {
20
20
  datasource: IDatasource;
21
21
  pageSizes: string[];
22
22
  virtualScroll: string | boolean;
23
+ virtualScrollCache: string | number;
23
24
  searchVisibleOnly: string | boolean;
24
25
  instance: Iterable;
25
26
  instanceType: typeof Iterable;
@@ -0,0 +1 @@
1
+ export declare function setFillHeight(element: HTMLElement): void;