@dataloop-ai/components 0.16.14 → 0.16.16
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
|
@@ -620,12 +620,7 @@ export default defineComponent({
|
|
|
620
620
|
const virtScrollRef = ref(null)
|
|
621
621
|
const hasVirtScroll = computed(() => props.virtualScroll === true)
|
|
622
622
|
|
|
623
|
-
const {
|
|
624
|
-
hasClickEvent,
|
|
625
|
-
hasDblClickEvent,
|
|
626
|
-
hasContextMenuEvent,
|
|
627
|
-
hasAnyAction
|
|
628
|
-
} = useTableActions(props)
|
|
623
|
+
const { hasAnyAction } = useTableActions(props) // todo: does not work
|
|
629
624
|
|
|
630
625
|
const getRowKey = computed(() =>
|
|
631
626
|
typeof props.rowKey === 'function'
|
|
@@ -1110,9 +1105,7 @@ export default defineComponent({
|
|
|
1110
1105
|
row: DlTableRow,
|
|
1111
1106
|
pageIndex: number
|
|
1112
1107
|
) => {
|
|
1113
|
-
|
|
1114
|
-
emit('row-click', evt, row, pageIndex)
|
|
1115
|
-
}
|
|
1108
|
+
emit('row-click', evt, row, pageIndex)
|
|
1116
1109
|
}
|
|
1117
1110
|
|
|
1118
1111
|
const onTrDblClick = (
|
|
@@ -1120,9 +1113,7 @@ export default defineComponent({
|
|
|
1120
1113
|
row: DlTableRow,
|
|
1121
1114
|
pageIndex: number
|
|
1122
1115
|
) => {
|
|
1123
|
-
|
|
1124
|
-
emit('row-dblclick', evt, row, pageIndex)
|
|
1125
|
-
}
|
|
1116
|
+
emit('row-dblclick', evt, row, pageIndex)
|
|
1126
1117
|
}
|
|
1127
1118
|
|
|
1128
1119
|
const onTrContextMenu = (
|
|
@@ -1130,9 +1121,7 @@ export default defineComponent({
|
|
|
1130
1121
|
row: DlTableRow,
|
|
1131
1122
|
pageIndex: number
|
|
1132
1123
|
) => {
|
|
1133
|
-
|
|
1134
|
-
emit('row-contextmenu', evt, row, pageIndex)
|
|
1135
|
-
}
|
|
1124
|
+
emit('row-contextmenu', evt, row, pageIndex)
|
|
1136
1125
|
}
|
|
1137
1126
|
|
|
1138
1127
|
function injectBodyCommonScope(data: Record<string, any>) {
|