@dataloop-ai/components 0.19.119 → 0.19.121
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
|
@@ -768,6 +768,7 @@
|
|
|
768
768
|
:class="col.tdClass(row)"
|
|
769
769
|
:style="col.tdStyle(row)"
|
|
770
770
|
:col-index="colIndex"
|
|
771
|
+
:no-tooltip="col.ignoreTooltip"
|
|
771
772
|
>
|
|
772
773
|
<slot
|
|
773
774
|
v-bind="
|
|
@@ -1280,6 +1281,7 @@ export default defineComponent({
|
|
|
1280
1281
|
noDataLabel,
|
|
1281
1282
|
columns,
|
|
1282
1283
|
fitAllColumns,
|
|
1284
|
+
stickyColumns,
|
|
1283
1285
|
resizable,
|
|
1284
1286
|
hidePagination,
|
|
1285
1287
|
hideSelectedBanner,
|
|
@@ -1422,8 +1424,8 @@ export default defineComponent({
|
|
|
1422
1424
|
setAllColumnWidths(
|
|
1423
1425
|
tableEl,
|
|
1424
1426
|
columns.value as DlTableColumn[],
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
+
stickyColumns.value,
|
|
1428
|
+
fitAllColumns.value
|
|
1427
1429
|
)
|
|
1428
1430
|
})
|
|
1429
1431
|
if (visibleColumns.value) return
|
|
@@ -1453,8 +1455,8 @@ export default defineComponent({
|
|
|
1453
1455
|
setAllColumnWidths(
|
|
1454
1456
|
tableEl,
|
|
1455
1457
|
props.columns as DlTableColumn[],
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
+
stickyColumns.value,
|
|
1459
|
+
fitAllColumns.value
|
|
1458
1460
|
)
|
|
1459
1461
|
})
|
|
1460
1462
|
if (visibleColumns.value) return
|
|
@@ -1493,8 +1495,8 @@ export default defineComponent({
|
|
|
1493
1495
|
setAllColumnWidths(
|
|
1494
1496
|
tableRef.value,
|
|
1495
1497
|
newColumns as DlTableColumn[],
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
+
stickyColumns.value,
|
|
1499
|
+
fitAllColumns.value
|
|
1498
1500
|
)
|
|
1499
1501
|
})
|
|
1500
1502
|
},
|