@zeedhi/teknisa-components-vuetify 1.109.0 → 1.110.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.
@@ -1654,6 +1654,9 @@ __decorate([
1654
1654
  __decorate([
1655
1655
  PropWatch({ type: [Array] })
1656
1656
  ], TekGrid$1.prototype, "toolbarConfig", void 0);
1657
+ __decorate([
1658
+ PropWatch({ type: [String, Function] })
1659
+ ], TekGrid$1.prototype, "reportLabelFormatter", void 0);
1657
1660
  __decorate([
1658
1661
  Prop({
1659
1662
  type: Array,
@@ -1654,6 +1654,9 @@
1654
1654
  __decorate([
1655
1655
  vuetify.PropWatch({ type: [Array] })
1656
1656
  ], TekGrid$1.prototype, "toolbarConfig", void 0);
1657
+ __decorate([
1658
+ vuetify.PropWatch({ type: [String, Function] })
1659
+ ], TekGrid$1.prototype, "reportLabelFormatter", void 0);
1657
1660
  __decorate([
1658
1661
  vuePropertyDecorator.Prop({
1659
1662
  type: Array,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/teknisa-components-vuetify",
3
- "version": "1.109.0",
3
+ "version": "1.110.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": "5b0e3a375f2b42bb3486f4b1bdf6b7dffcda1421"
47
+ "gitHead": "5dc8ed0a31eac861718475f4fd2e65ab0da772cc"
48
48
  }
@@ -1,5 +1,5 @@
1
1
  import { TekGrid as TekGridClass, TekGridColumn, ITekGridExportConfig, IDynamicFilterItem, ITekGridGroupHeader, IModalFilterProps } from '@zeedhi/teknisa-components-common';
2
- import { GridColumnEditable, IComponentRender, Input, Radio, Select } from '@zeedhi/common';
2
+ import { GridColumnEditable, IComponentRender, Input, LabelFormatter, Radio, Select } from '@zeedhi/common';
3
3
  import { IDictionary, IEventParam } from '@zeedhi/core';
4
4
  declare const ZdGridEditable: import("vue").VueConstructor<import("vue-property-decorator").Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue-property-decorator").Vue<Record<string, any>, Record<string, any>, never, never, any>>>;
5
5
  /**
@@ -34,6 +34,7 @@ export default class TekGrid extends ZdGridEditable {
34
34
  defaultFilter: IDictionary;
35
35
  reportTitle: string;
36
36
  toolbarConfig: (IComponentRender | string)[];
37
+ reportLabelFormatter: LabelFormatter;
37
38
  toolbarSlot: IComponentRender[];
38
39
  instance: TekGridClass;
39
40
  instanceType: typeof TekGridClass;