aloha-vue 1.2.145 → 1.2.146

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.145",
17
+ "version": "1.2.146",
18
18
  "author": {
19
19
  "name": "Ilia Brykin",
20
20
  "email": "brykin.ilia@gmail.com"
@@ -37,6 +37,11 @@ export default {
37
37
  required: false,
38
38
  default: () => alertPluginOptions.value.propsDefault.closable,
39
39
  },
40
+ extra: {
41
+ type: Object,
42
+ required: false,
43
+ default: undefined,
44
+ },
40
45
  html: {
41
46
  type: String,
42
47
  required: false,
@@ -154,6 +159,7 @@ export default {
154
159
  ],
155
160
  }, [
156
161
  (this.html || this.text || this.safeHtml) && h(ATranslation, {
162
+ extra: this.extra,
157
163
  html: this.html,
158
164
  safeHtml: this.safeHtml,
159
165
  text: this.text,