aloha-vue 1.0.92 → 1.0.94

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aloha-vue",
3
3
  "description": "Project aloha",
4
- "version": "1.0.92",
4
+ "version": "1.0.94",
5
5
  "author": "Ilia Brykin",
6
6
  "scripts": {
7
7
  "build-icons": "node scriptsNode/iconsSvgToJs.js bootstrap3 && node scriptsNode/iconsSvgToJs.js bootstrap-1-9-1"
@@ -108,9 +108,13 @@ export default {
108
108
  return this.icons._NoImage;
109
109
  },
110
110
 
111
+ iconClass() {
112
+ return `a_icon_${ this.icon || "_NoImage" }`;
113
+ },
114
+
111
115
  attributesLocal() {
112
116
  const ATTRIBUTES = {
113
- class: "a_icon",
117
+ class: ["a_icon", this.iconClass],
114
118
  innerHTML: this.iconSvg,
115
119
  };
116
120
  if (this.ariLabel) {