@ansiversa/components 0.0.97 → 0.0.99

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": "@ansiversa/components",
3
- "version": "0.0.97",
3
+ "version": "0.0.99",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -145,7 +145,7 @@ const userInitial =
145
145
 
146
146
  <div class="av-nav-user-menu">
147
147
  {user?.roleId === 1 && (
148
- <a href={`${ROOT_URL}/admin`} class="av-user-menu-item av-dropdown-item" role="menuitem">
148
+ <a href="/admin" class="av-user-menu-item av-dropdown-item" role="menuitem">
149
149
  <span>Administration</span>
150
150
  </a>
151
151
  )}
@@ -154,6 +154,10 @@ const userInitial =
154
154
  <span>Dashboard</span>
155
155
  </a>
156
156
 
157
+ <a href={`${ROOT_URL}/notifications`} class="av-user-menu-item av-dropdown-item" role="menuitem">
158
+ <span>Notifications</span>
159
+ </a>
160
+
157
161
  <a href={`${ROOT_URL}/favorites`} class="av-user-menu-item av-dropdown-item" role="menuitem">
158
162
  <span>Favorites</span>
159
163
  </a>