@modeltables/fontawesome-vuetify 2.5.0 → 2.6.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.
@@ -30,7 +30,7 @@ export class Options {
30
30
  this.Key = "Id";
31
31
  this.SelectedKey = "Selected",
32
32
  this.Name = undefined;
33
- this.ShowKey = true;
33
+ this.ShowKey = false;
34
34
  this.Active = true;
35
35
  }
36
36
  }
@@ -22,7 +22,7 @@ export class PaginatedResponse<T>{
22
22
  export class Options{
23
23
  Key?: string;
24
24
  SelectedKey?: string;
25
- ShowKey: boolean = true;
25
+ ShowKey: boolean = false;
26
26
  Name?: string;
27
27
  Active: boolean = false;
28
28
  }
@@ -25,11 +25,14 @@ export default {
25
25
  required: true
26
26
  }
27
27
  },
28
+ mounted() {
29
+ },
28
30
  data() {
29
31
  return {
30
32
  key: this.key,
31
33
  dataHeader: this.dataHeader,
32
34
  id: this.id,
35
+ options: this.options,
33
36
  carretDown: faCaretDown,
34
37
  carretUp: faCaretUp,
35
38
  }
@@ -121,6 +121,10 @@ export default {
121
121
  }, 800)
122
122
  }
123
123
  },
124
+ options(newValue, oldValue){
125
+ console.log(newValue);
126
+ this.options = newValue;
127
+ },
124
128
  dataSetItems(newValue, oldValue){
125
129
  this.dataSetItems = newValue;
126
130
  },
@@ -399,6 +403,7 @@ export default {
399
403
  </td>
400
404
  <td v-for="(item, index) in dataheader">
401
405
  <SortView
406
+ :options="options"
402
407
  :dataHeader="item"
403
408
  :startPosition="index < 1"
404
409
  :id="index"