adminforth 2.4.0-next.280 → 2.4.0-next.282

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.
@@ -107,6 +107,12 @@ const props = defineProps({
107
107
 
108
108
  const emit = defineEmits(['startBulkAction']);
109
109
 
110
+ function setComponentRef(el: ComponentPublicInstance | null, index: number) {
111
+ if (el) {
112
+ threeDotsDropdownItemsRefs.value[index] = el;
113
+ }
114
+ }
115
+
110
116
  async function handleActionClick(action: AdminForthActionInput, payload: any) {
111
117
  adminforth.list.closeThreeDotsDropdown();
112
118
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "2.4.0-next.280",
3
+ "version": "2.4.0-next.282",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",