@zeedhi/teknisa-components-vuetify 1.94.0 → 1.96.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/teknisa-components-vuetify",
3
- "version": "1.94.0",
3
+ "version": "1.96.0",
4
4
  "description": "Teknisa Components based on Vuetify",
5
5
  "author": "Zeedhi <zeedhi@teknisa.com>",
6
6
  "license": "ISC",
@@ -44,5 +44,5 @@
44
44
  "vue": "2.7.*",
45
45
  "vuetify": "2.6.*"
46
46
  },
47
- "gitHead": "2df809b3be18f0f4e986276267c761fe500009cb"
47
+ "gitHead": "dfe5f1a2a802cfea057de278b8e41f6858b43073"
48
48
  }
@@ -28,6 +28,7 @@ export default class TekGrid extends ZdGridEditable {
28
28
  groupsOpened: boolean | string;
29
29
  showSummaryTotal: boolean | string;
30
30
  mainGrid: boolean | string;
31
+ showCheckboxAllFilter: boolean | string;
31
32
  toolbarSlot: IComponentRender[];
32
33
  instance: TekGridClass;
33
34
  instanceType: typeof TekGridClass;
@@ -8,6 +8,7 @@ declare const ZdButton: import("vue").VueConstructor<import("vue-property-decora
8
8
  export default class TekGridFilterButton extends ZdButton {
9
9
  gridName: string;
10
10
  grid: object | string;
11
+ showCheckboxAll: boolean | string;
11
12
  instance: TekGridFilterButtonClass;
12
13
  instanceType: typeof TekGridFilterButtonClass;
13
14
  filterClick({ event }: IEventParam<Button>): void;
@@ -16,4 +16,5 @@ export default class TekImage extends ZdComponent {
16
16
  instance: Image;
17
17
  instanceType: typeof Image;
18
18
  mounted(): void;
19
+ load(event?: Event): void;
19
20
  }