aloha-vue 1.2.141 → 1.2.142

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.
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "Vue.js"
15
15
  ],
16
16
  "homepage": "https://github.com/ilia-brykin/aloha/#README.md",
17
- "version": "1.2.141",
17
+ "version": "1.2.142",
18
18
  "author": {
19
19
  "name": "Ilia Brykin",
20
20
  "email": "brykin.ilia@gmail.com"
@@ -130,6 +130,11 @@ export default {
130
130
  type: Boolean,
131
131
  required: false,
132
132
  },
133
+ extra: {
134
+ type: Object,
135
+ required: false,
136
+ default: undefined,
137
+ },
133
138
  id: {
134
139
  type: String,
135
140
  required: false,
@@ -806,6 +811,7 @@ export default {
806
811
  disabledMultipleActions: this.disabledMultipleActions,
807
812
  disabledSort: this.disabledSort,
808
813
  disabledViews: this.disabledViews,
814
+ extra: this.extra,
809
815
  hasViews: this.hasViews,
810
816
  isLabelVisible: this.isLabelVisible,
811
817
  isLoadingMultipleActions: this.isLoadingMultipleActions,
@@ -55,6 +55,11 @@ export default {
55
55
  type: Boolean,
56
56
  required: true,
57
57
  },
58
+ extra: {
59
+ type: Object,
60
+ required: false,
61
+ default: undefined,
62
+ },
58
63
  hasViews: {
59
64
  type: Boolean,
60
65
  required: true,
@@ -225,6 +230,7 @@ export default {
225
230
  tag: "span",
226
231
  class: "a_table__top_panel__label__text",
227
232
  text: this.label,
233
+ extra: this.extra,
228
234
  }),
229
235
  this.showCount ? h(AButton, {
230
236
  class: "a_table__top_panel__label__count",