mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-22 06:15:47 +00:00
fix(FE): refactor UI Dashboard pixel perfect figma
This commit is contained in:
Vendored
+11
-1
@@ -32,7 +32,17 @@ type TableUISlice = {
|
||||
resetSearchValue: () => void;
|
||||
};
|
||||
|
||||
export type UIStore = MainUiSlice & DrawerUISlice & TableUISlice;
|
||||
// Navbar Actions Slice
|
||||
type NavbarActionsSlice = {
|
||||
navbarActions: ReactNode | null;
|
||||
setNavbarActions: (actions: ReactNode) => void;
|
||||
clearNavbarActions: () => void;
|
||||
};
|
||||
|
||||
export type UIStore = MainUiSlice &
|
||||
DrawerUISlice &
|
||||
TableUISlice &
|
||||
NavbarActionsSlice;
|
||||
|
||||
type ProductionStandardFormSlice = {
|
||||
formData: {
|
||||
|
||||
Reference in New Issue
Block a user