@asaleh37/ui-base 25.8.30 → 25.8.31-1

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": "@asaleh37/ui-base",
3
- "version": "25.8.30",
3
+ "version": "25.8.31-1",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "Ahmed Saleh Mohamed",
@@ -112,7 +112,9 @@ const TemplateGridTopBar: React.FC<TemplateGridTopBarProps> = (
112
112
  ) : (
113
113
  <></>
114
114
  )}
115
- <Box sx={{ flex: 1, mx: 0.5 }}>{props?.templateProps?.tBar}</Box>
115
+ <Box sx={{ flex: 1, mx: 0.5, my: 0.5, padding: 1 }}>
116
+ {props?.templateProps?.tBar}
117
+ </Box>
116
118
 
117
119
  <Tooltip title="Columns">
118
120
  <ColumnsPanelTrigger render={<ToolbarButton />}>
@@ -107,11 +107,6 @@ const MainContent: React.FC = () => {
107
107
  })}
108
108
  </Routes>
109
109
  </Box>
110
- )
111
- {/* : (
112
- <></>
113
- )
114
- } */}
115
110
  </CacheProvider>
116
111
  );
117
112
  };
@@ -31,12 +31,5 @@ export const findNavigationItemById = (
31
31
  };
32
32
 
33
33
  export const NavigationItems: TreeViewBaseItem<ExtendedTreeItemProps>[] = [
34
- ...AdministrationItems,
35
- {
36
- icon: "user",
37
- label: "Example Grid",
38
- id: "example",
39
- action: "NAVIGATION",
40
- actionPayload: { path: "example" },
41
- },
34
+ ...AdministrationItems
42
35
  ];
@@ -1,9 +1,5 @@
1
- import Home from "../components/common/Home";
2
- import ExampleGrid from "../examples/ExampleGrid";
1
+
3
2
  import { ADMINISTRATION_ROUTES } from "./administration";
4
3
  import { SystemRoute } from "./types";
5
4
 
6
- export const SYSTEM_ROUTES: Array<SystemRoute> = [
7
- ...ADMINISTRATION_ROUTES,
8
- { path: "example", component: ExampleGrid },
9
- ];
5
+ export const SYSTEM_ROUTES: Array<SystemRoute> = [...ADMINISTRATION_ROUTES];