@dataloop-ai/components 0.19.51 → 0.19.52

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.51",
3
+ "version": "0.19.52",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -1917,7 +1917,7 @@ export default defineComponent({
1917
1917
  const handleVisibleColumnsUpdate = (columns: string[]) => {
1918
1918
  if (columns.length < 1) return
1919
1919
  visibleColumnsState.value = columns
1920
- emit('update-visible-columns', columns)
1920
+ emit('update:visible-columns', columns)
1921
1921
  }
1922
1922
 
1923
1923
  const showRowActions = computed<boolean>(
@@ -10,7 +10,7 @@ export const emits = [
10
10
  'th-click',
11
11
  'row-double-click',
12
12
  'row-contextmenu',
13
- 'update-visible-columns',
13
+ 'update:visible-columns',
14
14
  ...useTableRowExpandEmits,
15
15
  ...useTreeTableRowSelectionEmits
16
16
  ]