@aures5g/vue-component-library 3.13.0 → 3.14.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.
@@ -11,3 +11,7 @@ export declare const FIELD_PLACEMENT: {
11
11
  readonly MAJOR: "major";
12
12
  };
13
13
  export type FieldPlacements = (typeof FIELD_PLACEMENT)[keyof typeof FIELD_PLACEMENT];
14
+ export declare const HEADER_PADDING = "1.5rem";
15
+ export declare const TITLE_SPACING = "2rem";
16
+ export declare const FILTER_SPACING = "2rem";
17
+ export declare const SORT_SPACING = "2rem";
@@ -1,5 +1,6 @@
1
1
  import type { FontAwesomeIconProps } from '@fortawesome/vue-fontawesome';
2
2
  import type { FieldPlacements } from '@/components/table/uiTable.const.ts';
3
+ import type { ClassValue } from 'vue';
3
4
  export type Field = {
4
5
  name: string;
5
6
  header: string;
@@ -9,6 +10,7 @@ export type Field = {
9
10
  width?: number;
10
11
  placement?: FieldPlacements;
11
12
  isResizable?: boolean;
13
+ cellClasses?: ClassValue;
12
14
  };
13
15
  export type RowClickPayload = {
14
16
  originalEvent: MouseEvent | KeyboardEvent;