edvoyui-component-library-test-flight 0.0.80 → 0.0.82

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.
@@ -1,5 +1,5 @@
1
1
  export * from "/Users/rajmohan/Documents/Workspace/edvoy-ui-v2/src/components/table/EUITable.vue?vue&type=script&setup=true&lang.ts";
2
- import "/Users/rajmohan/Documents/Workspace/edvoy-ui-v2/src/components/table/EUITable.vue?vue&type=style&index=0&scoped=88ee1a1f&lang.scss";
2
+ import "/Users/rajmohan/Documents/Workspace/edvoy-ui-v2/src/components/table/EUITable.vue?vue&type=style&index=0&scoped=f9b25ed3&lang.scss";
3
3
  declare const _default: any;
4
4
  export default _default;
5
5
  //# sourceMappingURL=EUITable.vue.d.ts.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "edvoyui-component-library-test-flight",
3
3
  "private": false,
4
- "version": "0.0.80",
4
+ "version": "0.0.82",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist/",
@@ -116,7 +116,7 @@
116
116
  :key="`table-row-${rowIndex}`"
117
117
  >
118
118
  <tr
119
- :class="activeRowIndex==rowIndex?'bg-purple-50 ring-1 ring-purple-100 ring-inset':''"
119
+ :class="activeRowIndex==rowIndex?'!bg-purple-50 !ring-1 !ring-purple-100 !ring-inset':''"
120
120
  @mouseenter="
121
121
  $attrs.mouseenter
122
122
  ? $emit('mouseenter', row, rowIndex)
@@ -129,7 +129,8 @@
129
129
  "
130
130
  >
131
131
  <template v-if="checkable">
132
- <td class="checkable">
132
+ <td class="checkable"
133
+ :class=" activeRowIndex==rowIndex?'!bg-purple-50 !ring-1 !ring-purple-100 !ring-inset':''">
133
134
  <EUITableCheckbox
134
135
  :disabled="!isRowCheckable(row)"
135
136
  :checked="isRowChecked(row)"
@@ -144,7 +145,9 @@
144
145
  :key="headerIndex"
145
146
  :class="[
146
147
  isScrolled && headerIndex === 0 ? stickyClass.body : '',
148
+ activeRowIndex==rowIndex?'!bg-purple-50 !ring-1 !ring-purple-100 !ring-inset':''
147
149
  ]"
150
+
148
151
  >
149
152
  <slot
150
153
  :name="`item.${header?.value}`"