comand-component-library 4.1.74 → 4.1.75

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "comand-component-library",
3
- "version": "4.1.74",
3
+ "version": "4.1.75",
4
4
  "license": "GPL-3.0-only",
5
5
  "author": "CoManD-UI",
6
6
  "private": false,
@@ -297,7 +297,7 @@ export default {
297
297
  iconClass: "icon-register",
298
298
  tooltip: ""
299
299
  },
300
- text: "Forgot password"
300
+ text: "Create account"
301
301
  }
302
302
  }
303
303
  },
@@ -350,6 +350,7 @@ export default {
350
350
  &.open {
351
351
  > ul {
352
352
  display: block;
353
+
353
354
  > li {
354
355
  &.open {
355
356
  > ul {
@@ -36,9 +36,7 @@
36
36
  </caption>
37
37
  <thead>
38
38
  <tr>
39
- <th v-for="(tablehead, indexHead) in tableData.thead" :key="indexHead">
40
- {{ tablehead }}
41
- </th>
39
+ <th v-for="(tablehead, indexHead) in tableData.thead" :key="indexHead" v-html="tablehead"></th>
42
40
  </tr>
43
41
  </thead>
44
42
  <transition :name="useTransition ? 'fade' : null">
@@ -46,8 +44,7 @@
46
44
  <tr :class="{'active' : tableData.rowIndexHighlighted === indexRows}"
47
45
  v-for="(tablerows, indexRows) in tableData.tbody" :key="indexRows">
48
46
  <td :class="{'active' : tableData.columnIndexHighlighted === indexData}"
49
- v-for="(tabledata, indexData) in tablerows" :key="indexData">
50
- {{ tabledata }}
47
+ v-for="(tabledata, indexData) in tablerows" :key="indexData" v-html="tabledata">
51
48
  </td>
52
49
  </tr>
53
50
  </tbody>
@@ -56,8 +53,7 @@
56
53
  <tfoot v-if="tableData.tfoot && tableData.tfoot.length && showTableData" aria-expanded="true">
57
54
  <tr>
58
55
  <td :class="{'active' : tableData.columnIndexHighlighted === indexFoot}"
59
- v-for="(tablefoot, indexFoot) in tableData.tfoot" :key="indexFoot">
60
- {{ tablefoot }}
56
+ v-for="(tablefoot, indexFoot) in tableData.tfoot" :key="indexFoot" v-html="tablefoot">
61
57
  </td>
62
58
  </tr>
63
59
  </tfoot>