@sito/dashboard-app 0.0.42 → 0.0.43

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.
@@ -1,15 +1,19 @@
1
+ import { IconDefinition } from '@fortawesome/free-solid-svg-icons';
1
2
  export interface UseActionPropTypes {
2
3
  hidden?: boolean;
3
4
  disabled?: boolean;
4
5
  isLoading?: boolean;
6
+ sticky?: boolean;
7
+ multiple?: boolean;
8
+ icon?: IconDefinition;
9
+ tooltip?: string;
10
+ id?: string;
5
11
  }
6
12
  export interface UseSingleActionPropTypes<TInDto> extends UseActionPropTypes {
7
13
  onClick: (record: TInDto) => void;
8
- hidden?: boolean;
9
14
  }
10
15
  export interface UseMultipleActionPropTypes<TInDto> extends UseActionPropTypes {
11
16
  onClick: (record: TInDto[]) => void;
12
- hidden?: boolean;
13
17
  }
14
18
  export interface UseExportAction extends UseActionPropTypes {
15
19
  onClick: () => void;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sito/dashboard-app",
3
3
  "private": false,
4
- "version": "0.0.42",
4
+ "version": "0.0.43",
5
5
  "type": "module",
6
6
  "description": "UI Library with prefab components",
7
7
  "main": "dist/dashboard-app.cjs",