@dataloop-ai/components 0.19.66 → 0.19.67

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": "@dataloop-ai/components",
3
- "version": "0.19.66",
3
+ "version": "0.19.67",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -349,7 +349,9 @@
349
349
  <td v-if="expandableRows">
350
350
  <dl-icon
351
351
  :icon="getRowExpandedIcon(props.item)"
352
- @click="updateExpanded(props.item)"
352
+ @click.stop.prevent="
353
+ updateExpanded(props.item)
354
+ "
353
355
  />
354
356
  </td>
355
357
  <DlTd
@@ -409,7 +411,8 @@
409
411
  v-if="isRowExpanded(props.item)"
410
412
  :key="getRowExpandedKey(props.item)"
411
413
  >
412
- <td :colspan="columns.length + 1">
414
+ <!-- cols + icon col + expandable icon col-->
415
+ <td :colspan="columns.length + 1 + 1">
413
416
  <slot
414
417
  v-bind="{ row: props.item }"
415
418
  name="body-cell-expandable-content"
@@ -804,7 +807,7 @@
804
807
  v-if="isRowExpanded(row)"
805
808
  :key="getRowExpandedKey(row)"
806
809
  >
807
- <td :colspan="columns.length + 1">
810
+ <td :colspan="columns.length + 1 + 1">
808
811
  <slot
809
812
  v-bind="{ row }"
810
813
  name="body-cell-expandable-content"