@innertia-solutions/nuxt-theme-spark 0.1.69 → 0.1.70
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/components/Table.vue +0 -2
- package/package.json +1 -1
package/components/Table.vue
CHANGED
|
@@ -437,7 +437,6 @@ const shouldIgnoreRowClick = (e) => {
|
|
|
437
437
|
}
|
|
438
438
|
|
|
439
439
|
const handleRowClick = (row, e) => {
|
|
440
|
-
console.log('[Table] click | isRowClickEnabled:', isRowClickEnabled.value, '| previewMode:', props.previewMode, '| hasListener:', hasRowClickListener.value, '| ignore:', shouldIgnoreRowClick(e))
|
|
441
440
|
if (!isRowClickEnabled.value || shouldIgnoreRowClick(e)) return
|
|
442
441
|
emit('row-click', row.original, e)
|
|
443
442
|
}
|
|
@@ -646,7 +645,6 @@ defineExpose({
|
|
|
646
645
|
: 'px-4 py-3 text-sm text-slate-600 dark:text-slate-300',
|
|
647
646
|
cell.column.id !== 'select' ? cell.column.columnDef.meta?.class ?? '' : '',
|
|
648
647
|
]"
|
|
649
|
-
@click.stop="cell.column.id === 'select' ? null : undefined"
|
|
650
648
|
>
|
|
651
649
|
<!-- Select checkbox -->
|
|
652
650
|
<template v-if="cell.column.id === 'select'">
|