@zeedhi/teknisa-components-common 1.92.0 → 1.92.2

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.
@@ -2929,7 +2929,7 @@ class TekGridFilterButton extends Button {
2929
2929
  click(event) {
2930
2930
  this.callEvent('click', { component: this, event });
2931
2931
  this.grid.callEvent('filterClick', { component: this.grid, event });
2932
- if (!event.defaultPrevented) {
2932
+ if (!(event === null || event === void 0 ? void 0 : event.defaultPrevented)) {
2933
2933
  this.createFilterFromColumns.call(this);
2934
2934
  }
2935
2935
  }
@@ -2933,7 +2933,7 @@
2933
2933
  click(event) {
2934
2934
  this.callEvent('click', { component: this, event });
2935
2935
  this.grid.callEvent('filterClick', { component: this.grid, event });
2936
- if (!event.defaultPrevented) {
2936
+ if (!(event === null || event === void 0 ? void 0 : event.defaultPrevented)) {
2937
2937
  this.createFilterFromColumns.call(this);
2938
2938
  }
2939
2939
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/teknisa-components-common",
3
- "version": "1.92.0",
3
+ "version": "1.92.2",
4
4
  "description": "Teknisa Components Common",
5
5
  "author": "Zeedhi <zeedhi@teknisa.com>",
6
6
  "license": "ISC",
@@ -18,8 +18,8 @@
18
18
  "watch": "npm run build -- -w"
19
19
  },
20
20
  "dependencies": {
21
- "@zeedhi/zd-drag-grid-common": "*",
22
- "@zeedhi/zd-user-info-common": "*",
21
+ "@zeedhi/zd-drag-grid-common": "<=1.0.3",
22
+ "@zeedhi/zd-user-info-common": "^1.3.2",
23
23
  "lodash.debounce": "4.0.*",
24
24
  "lodash.get": "4.4.*",
25
25
  "lodash.merge": "4.6.*"
@@ -32,5 +32,5 @@
32
32
  "peerDependencies": {
33
33
  "@zeedhi/core": "*"
34
34
  },
35
- "gitHead": "00436210f319190361a5043c0815093fa6379227"
35
+ "gitHead": "60f1cc1c4b7800967343c2eb886ab0cde0be8e2f"
36
36
  }
@@ -13,7 +13,7 @@ export declare class TekGridFilterButton extends Button implements ITekGridFilte
13
13
  protected filterFormInputs: IDictionary<string[]>;
14
14
  constructor(props: ITekGridFilterButton);
15
15
  loadGrid(gridName?: string): void;
16
- click(event: Event): void;
16
+ click(event?: Event): void;
17
17
  private loadFilterValues;
18
18
  hideFilterModal(): void;
19
19
  destroyFilterModal(): void;