@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
|
@@ -349,7 +349,9 @@
|
|
|
349
349
|
<td v-if="expandableRows">
|
|
350
350
|
<dl-icon
|
|
351
351
|
:icon="getRowExpandedIcon(props.item)"
|
|
352
|
-
@click="
|
|
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
|
-
|
|
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"
|