@ansiversa/components 0.0.152 → 0.0.153
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
|
@@ -69,9 +69,9 @@ 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='
|
|
73
|
-
<path d='
|
|
74
|
-
<
|
|
72
|
+
<circle cx='12' cy='12' r='9'/>
|
|
73
|
+
<path d='M12 11v5'/>
|
|
74
|
+
<circle cx='12' cy='7.5' r='0.5' fill='currentColor' stroke='none'/>
|
|
75
75
|
</svg>
|
|
76
76
|
`,
|
|
77
77
|
"Sign in": `
|
|
@@ -120,6 +120,7 @@ const unreadBadge = unreadCount > 99 ? "99+" : `${unreadCount}`;
|
|
|
120
120
|
href={item.href}
|
|
121
121
|
variant="ghost"
|
|
122
122
|
className={`av-nowrap${item.label === "Pricing" ? " av-hide-sm" : ""}`}
|
|
123
|
+
aria-label={item.label}
|
|
123
124
|
>
|
|
124
125
|
<span class="av-nav-icon" set:html={renderIcon(item.label)}></span>
|
|
125
126
|
<span class="av-nav-label">{item.label}</span>
|
|
@@ -211,6 +212,7 @@ const unreadBadge = unreadCount > 99 ? "99+" : `${unreadCount}`;
|
|
|
211
212
|
href={authLink.href}
|
|
212
213
|
variant={authLink.variant}
|
|
213
214
|
className="av-nowrap"
|
|
215
|
+
aria-label="Sign in"
|
|
214
216
|
>
|
|
215
217
|
<span class="av-nav-icon" set:html={renderIcon(authLink.label)}></span>
|
|
216
218
|
<span class="av-nav-label">{authLink.label}</span>
|