@aures5g/vue-component-library 3.42.0 → 3.44.0

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": "@aures5g/vue-component-library",
3
- "version": "3.42.0",
3
+ "version": "3.44.0",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=24.5.0"
@@ -1,20 +0,0 @@
1
- import { type Ref, type TemplateRef, type MaybeRef } from 'vue';
2
- import type { Field } from './uiTable.types';
3
- export declare function useHeaderFilter(filterOverlayRef: TemplateRef<HTMLDivElement>): {
4
- headerFilterOverlayActive: Ref<string | false, string | false>;
5
- handleOnClose: () => void;
6
- openFilterOverlay: (field: string, e: Event) => void;
7
- };
8
- export declare function useTableColumnWidth(fields: Ref<Field[]>): {
9
- colWidth: Record<string, number>;
10
- resize: (fieldName: string, width: number) => void;
11
- getColumnWidth: (fieldName: string) => {
12
- '--col-width': string;
13
- '--col-min-width': string;
14
- '--col-grow': number;
15
- };
16
- handleMousedown: (event: MouseEvent, fieldName: string) => void;
17
- };
18
- export declare function useTableKeyboardMovement(itemsCount: MaybeRef<number>, activeRow: Ref<number>): {
19
- handleUpAndDownMovement: (e: KeyboardEvent) => void;
20
- };