ariadne_view_components 0.0.96.9 → 0.0.96.10
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6046cdf31b1e6952ed50fac243fb0a6ab27000b8e4fe00030f758256dad126fa
|
4
|
+
data.tar.gz: d68506cf9d33f4e674d61cd3439e8124e3655ebf494e9bc2d485efcdf212a844
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aed72c0f5f114eb1cd7253a6e3669db8b7a20da4acd184b0d684e9df0118534a83df18a9549aec5e788d2431f8a5f0f825ce47349ad0adbd3caf29c367e5d593
|
7
|
+
data.tar.gz: b8f543d8b2f0f93bb2286177c51d4a63085a46cad4f75c178da32ae722092d7d8fde06d314a99f9c266c66f7ea3f1a751fe851251abda19ad63da384170b1567
|
data/CHANGELOG.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
<% if src %>
|
3
3
|
<%= render Ariadne::UI::Image::Component.new(src:, alt:, size:, html_attrs: ) %>
|
4
4
|
<% else %>
|
5
|
-
<span class="<%= html_attrs[:class] %>" <%= html_attributes
|
5
|
+
<span class="<%= html_attrs[:class] %>" <%= html_attributes %>>
|
6
6
|
<%= placeholder_text %>
|
7
7
|
</span>
|
8
8
|
<% end %>
|
@@ -119,23 +119,13 @@ module Ariadne
|
|
119
119
|
len = [:xs, :sm, :md].include?(size) ? 0 : 1
|
120
120
|
@placeholder_text = (text || "").strip.split[0..len].map { |word| word.capitalize[0] }.join
|
121
121
|
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
end
|
130
|
-
|
131
|
-
# Ensure alt text is always provided for images to meet WCAG requirements
|
132
|
-
@alt ||= if text.present?
|
133
|
-
# Won't be used since text avatars don't use images
|
134
|
-
text
|
135
|
-
else
|
136
|
-
# For src-based avatars, default alt text is required
|
137
|
-
"User avatar"
|
138
|
-
end
|
122
|
+
html_attrs[:aria] = merge_aria(
|
123
|
+
html_attrs, {
|
124
|
+
aria: {
|
125
|
+
label: text || alt,
|
126
|
+
},
|
127
|
+
}
|
128
|
+
)
|
139
129
|
end
|
140
130
|
|
141
131
|
def badge_position_classes
|