@appscode/design-system 1.0.43-alpha.180 → 1.0.43-alpha.181

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "1.0.43-alpha.180",
3
+ "version": "1.0.43-alpha.181",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -6,7 +6,7 @@
6
6
  custom
7
7
  v-slot="{ navigate }"
8
8
  >
9
- <tr class="is-link" @click="navigate">
9
+ <tr class="is-link" @click="navigate" data-testid="ac-table-row">
10
10
  <slot />
11
11
  <fake-table-cell
12
12
  v-if="fakeCellWidth > 0"
@@ -20,8 +20,9 @@
20
20
  :class="{
21
21
  'is-selected': isSelected,
22
22
  'is-hoverless': !isSelected,
23
- 'is-disabled': isDisabled
23
+ 'is-disabled': isDisabled,
24
24
  }"
25
+ data-testid="ac-table-row"
25
26
  @click.prevent="$emit('rowselect', true)"
26
27
  >
27
28
  <slot />
@@ -37,25 +38,25 @@ export default {
37
38
  props: {
38
39
  link: {
39
40
  type: String,
40
- default: ""
41
+ default: "",
41
42
  },
42
43
  isSelected: {
43
44
  type: Boolean,
44
- default: false
45
+ default: false,
45
46
  },
46
47
  isDisabled: {
47
48
  type: Boolean,
48
- default: false
49
+ default: false,
49
50
  },
50
51
  fakeCellWidth: {
51
52
  type: Number,
52
- default: 0
53
- }
53
+ default: 0,
54
+ },
54
55
  },
55
56
 
56
57
  components: {
57
58
  TableCell: () => import("./TableCell.vue"),
58
- FakeTableCell: () => import("./FakeTableCell.vue")
59
- }
59
+ FakeTableCell: () => import("./FakeTableCell.vue"),
60
+ },
60
61
  };
61
62
  </script>