@zeedhi/teknisa-components-vuetify 1.96.2 → 1.97.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.
@@ -1624,6 +1624,9 @@ __decorate([
1624
1624
  default: Config.gridShowCheckboxAllFilter,
1625
1625
  })
1626
1626
  ], TekGrid$1.prototype, "showCheckboxAllFilter", void 0);
1627
+ __decorate([
1628
+ PropWatch({ type: [Object] })
1629
+ ], TekGrid$1.prototype, "defaultFilter", void 0);
1627
1630
  __decorate([
1628
1631
  Prop({
1629
1632
  type: Array,
@@ -5002,6 +5005,9 @@ __decorate([
5002
5005
  __decorate([
5003
5006
  PropWatch({ type: [String, Boolean], default: true })
5004
5007
  ], TekGrid.prototype, "showReload", void 0);
5008
+ __decorate([
5009
+ PropWatch({ type: [Object] })
5010
+ ], TekGrid.prototype, "defaultFilter", void 0);
5005
5011
  __decorate([
5006
5012
  Prop({ type: [String, Array] })
5007
5013
  ], TekGrid.prototype, "exportConfig", void 0);
@@ -1624,6 +1624,9 @@
1624
1624
  default: core.Config.gridShowCheckboxAllFilter,
1625
1625
  })
1626
1626
  ], TekGrid$1.prototype, "showCheckboxAllFilter", void 0);
1627
+ __decorate([
1628
+ vuetify.PropWatch({ type: [Object] })
1629
+ ], TekGrid$1.prototype, "defaultFilter", void 0);
1627
1630
  __decorate([
1628
1631
  vuePropertyDecorator.Prop({
1629
1632
  type: Array,
@@ -5002,6 +5005,9 @@
5002
5005
  __decorate([
5003
5006
  vuetify.PropWatch({ type: [String, Boolean], default: true })
5004
5007
  ], TekGrid.prototype, "showReload", void 0);
5008
+ __decorate([
5009
+ vuetify.PropWatch({ type: [Object] })
5010
+ ], TekGrid.prototype, "defaultFilter", void 0);
5005
5011
  __decorate([
5006
5012
  vuePropertyDecorator.Prop({ type: [String, Array] })
5007
5013
  ], TekGrid.prototype, "exportConfig", void 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/teknisa-components-vuetify",
3
- "version": "1.96.2",
3
+ "version": "1.97.0",
4
4
  "description": "Teknisa Components based on Vuetify",
5
5
  "author": "Zeedhi <zeedhi@teknisa.com>",
6
6
  "license": "ISC",
@@ -18,10 +18,10 @@
18
18
  "watch": "rollup -cw"
19
19
  },
20
20
  "dependencies": {
21
- "@zeedhi/zd-drag-grid-common": "*",
22
- "@zeedhi/zd-drag-grid-vue": "*",
23
- "@zeedhi/zd-user-info-common": "*",
24
- "@zeedhi/zd-user-info-vue": "*",
21
+ "@zeedhi/zd-drag-grid-common": "<=1.0.6",
22
+ "@zeedhi/zd-drag-grid-vue": "<=1.0.6",
23
+ "@zeedhi/zd-user-info-common": "^1.3.2",
24
+ "@zeedhi/zd-user-info-vue": "^1.3.2",
25
25
  "lodash.clonedeep": "4.5.*",
26
26
  "lodash.debounce": "4.0.*",
27
27
  "lodash.merge": "4.6.*",
@@ -40,9 +40,9 @@
40
40
  "ts-jest": "26.5.*"
41
41
  },
42
42
  "peerDependencies": {
43
- "@zeedhi/teknisa-components-common": "^1.0.0-alpha.0",
43
+ "@zeedhi/teknisa-components-common": "~1.97.0",
44
44
  "vue": "2.7.*",
45
45
  "vuetify": "2.6.*"
46
46
  },
47
- "gitHead": "23195c214009cb263eb404224929e8acfd63ed3c"
47
+ "gitHead": "97190b2ae31761e5474dae76eca0d3874144b4f5"
48
48
  }
@@ -28,6 +28,7 @@ export default class TekGrid extends ZdGridEditable {
28
28
  showSummaryTotal: boolean | string;
29
29
  mainGrid: boolean | string;
30
30
  showCheckboxAllFilter: boolean | string;
31
+ defaultFilter: IDictionary;
31
32
  toolbarSlot: IComponentRender[];
32
33
  instance: TekGridClass;
33
34
  instanceType: typeof TekGridClass;
@@ -23,6 +23,7 @@ export default class TekGrid extends ZdTreeGridEditable {
23
23
  showLayoutOptions: boolean | string;
24
24
  showExport: boolean | string;
25
25
  showReload: boolean | string;
26
+ defaultFilter: IDictionary;
26
27
  exportConfig: ITekGridExportConfig[];
27
28
  exportActions: IComponentRender[];
28
29
  toolbarSlot: IComponentRender[];