@asaleh37/ui-base 25.6.18-1 → 25.6.19-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.6.18-1",
3
+ "version": "25.6.19-1",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "Ahmed Saleh Mohamed",
@@ -10,7 +10,7 @@
10
10
  "types": "dist/index.d.ts",
11
11
  "scripts": {
12
12
  "build": "rollup -c --bundleConfigAsCjs",
13
- "dev": "vite"
13
+ "dev": "vite --host"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@emotion/cache": "^11.14.0",
@@ -256,7 +256,7 @@ export default function NavigationTree() {
256
256
  mergedNavigationItems.push(...NavigationItems);
257
257
  }
258
258
  mergedNavigationItems.push(...AppInfo.businessNavigationItems);
259
- const authoriedNavigationItems = [];//filterData(mergedNavigationItems);
259
+ const authoriedNavigationItems = filterData(mergedNavigationItems);
260
260
 
261
261
  return (
262
262
  <RichTreeView
package/src/main.tsx CHANGED
@@ -4,8 +4,8 @@ import { BaseApp } from "./components";
4
4
 
5
5
  createRoot(document.getElementById("root")!).render(
6
6
  <BaseApp
7
- apiBaseUrl="http://localhost:8080/api-base"
8
- appLogo={"/public/logo.png"}
7
+ apiBaseUrl="http://192.168.1.2:8081/api-base"
8
+ appLogo={"/logo.png"}
9
9
  appName="UI Base Library"
10
10
  appVersion="0.0"
11
11
  businessCommonStoresMetaData={{}}