@zeedhi/teknisa-components-vuetify 1.80.1 → 1.81.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.
@@ -1579,6 +1579,9 @@ __decorate([
1579
1579
  __decorate([
1580
1580
  Prop({ type: [Array, String], default: () => [] })
1581
1581
  ], TekGrid$1.prototype, "columnsButtonIgnore", void 0);
1582
+ __decorate([
1583
+ PropWatch({ type: [Boolean, String], default: true })
1584
+ ], TekGrid$1.prototype, "showEditButtons", void 0);
1582
1585
  __decorate([
1583
1586
  PropWatch({ type: [Boolean, String], default: false })
1584
1587
  ], TekGrid$1.prototype, "filterButton", void 0);
@@ -6248,6 +6251,9 @@ __decorate([
6248
6251
  __decorate([
6249
6252
  Prop({ type: [Array, String], default: () => [] })
6250
6253
  ], TekGrid.prototype, "columnsButtonIgnore", void 0);
6254
+ __decorate([
6255
+ PropWatch({ type: [Boolean, String], default: true })
6256
+ ], TekGrid.prototype, "showEditButtons", void 0);
6251
6257
  __decorate([
6252
6258
  PropWatch({ type: [Boolean, String], default: false })
6253
6259
  ], TekGrid.prototype, "filterButton", void 0);
@@ -1581,6 +1581,9 @@
1581
1581
  __decorate([
1582
1582
  vuePropertyDecorator.Prop({ type: [Array, String], default: () => [] })
1583
1583
  ], TekGrid$1.prototype, "columnsButtonIgnore", void 0);
1584
+ __decorate([
1585
+ vuetify.PropWatch({ type: [Boolean, String], default: true })
1586
+ ], TekGrid$1.prototype, "showEditButtons", void 0);
1584
1587
  __decorate([
1585
1588
  vuetify.PropWatch({ type: [Boolean, String], default: false })
1586
1589
  ], TekGrid$1.prototype, "filterButton", void 0);
@@ -6250,6 +6253,9 @@
6250
6253
  __decorate([
6251
6254
  vuePropertyDecorator.Prop({ type: [Array, String], default: () => [] })
6252
6255
  ], TekGrid.prototype, "columnsButtonIgnore", void 0);
6256
+ __decorate([
6257
+ vuetify.PropWatch({ type: [Boolean, String], default: true })
6258
+ ], TekGrid.prototype, "showEditButtons", void 0);
6253
6259
  __decorate([
6254
6260
  vuetify.PropWatch({ type: [Boolean, String], default: false })
6255
6261
  ], TekGrid.prototype, "filterButton", void 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/teknisa-components-vuetify",
3
- "version": "1.80.1",
3
+ "version": "1.81.0",
4
4
  "description": "Teknisa Components based on Vuetify",
5
5
  "author": "Zeedhi <zeedhi@teknisa.com>",
6
6
  "license": "ISC",
@@ -41,5 +41,5 @@
41
41
  "vue": "2.7.*",
42
42
  "vuetify": "2.6.*"
43
43
  },
44
- "gitHead": "7d8bb9e4182d77d5ae7a4d29688c20c41faeeea4"
44
+ "gitHead": "98bdfb4f56d94f0477a1611b6db70895f7176c9d"
45
45
  }
@@ -12,6 +12,7 @@ export default class TekGrid extends ZdGridEditable {
12
12
  deleteButton: 'none' | 'currentRow' | 'selection';
13
13
  columnsButton: boolean | string;
14
14
  columnsButtonIgnore: string[] | string;
15
+ showEditButtons: boolean | string;
15
16
  filterButton: boolean | string;
16
17
  modalFilterProps: IModalFilterProps;
17
18
  showSearch: boolean | string;
@@ -12,6 +12,7 @@ export default class TekGrid extends ZdTreeGridEditable {
12
12
  deleteButton: 'none' | 'currentRow' | 'selection';
13
13
  columnsButton: boolean | string;
14
14
  columnsButtonIgnore: string[] | string;
15
+ showEditButtons: boolean | string;
15
16
  filterButton: boolean | string;
16
17
  modalFilterProps: IModalFilterProps;
17
18
  showSearch: boolean | string;