@ansiversa/components 0.0.152 → 0.0.154

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.152",
3
+ "version": "0.0.154",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -69,9 +69,8 @@ const iconMap: Record<string, string> = {
69
69
  `,
70
70
  About: `
71
71
  <svg class="av-icon" width="16" height="16" viewBox='0 0 24 24' fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
72
- <circle cx='12' cy='8' r='3.25'/>
73
- <path d='M6 19v-.5a5.5 5.5 0 0 1 11 0V19'/>
74
- <path d='M12 12.5v2'/>
72
+ <path d='M12 10v7'/>
73
+ <circle cx='12' cy='6.5' r='0.5' fill='currentColor' stroke='none'/>
75
74
  </svg>
76
75
  `,
77
76
  "Sign in": `
@@ -120,6 +119,7 @@ const unreadBadge = unreadCount > 99 ? "99+" : `${unreadCount}`;
120
119
  href={item.href}
121
120
  variant="ghost"
122
121
  className={`av-nowrap${item.label === "Pricing" ? " av-hide-sm" : ""}`}
122
+ aria-label={item.label}
123
123
  >
124
124
  <span class="av-nav-icon" set:html={renderIcon(item.label)}></span>
125
125
  <span class="av-nav-label">{item.label}</span>
@@ -211,6 +211,7 @@ const unreadBadge = unreadCount > 99 ? "99+" : `${unreadCount}`;
211
211
  href={authLink.href}
212
212
  variant={authLink.variant}
213
213
  className="av-nowrap"
214
+ aria-label="Sign in"
214
215
  >
215
216
  <span class="av-nav-icon" set:html={renderIcon(authLink.label)}></span>
216
217
  <span class="av-nav-label">{authLink.label}</span>