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: e4fd38f6636d8c978ca5274be5f00eaf47767d7340f1e6bbdfb60e4c0b89ad42
4
- data.tar.gz: 26524bf6add85a87ed1043bf4b4980271bb49be02e14cbe45c2ac5624aebb1fc
3
+ metadata.gz: 6046cdf31b1e6952ed50fac243fb0a6ab27000b8e4fe00030f758256dad126fa
4
+ data.tar.gz: d68506cf9d33f4e674d61cd3439e8124e3655ebf494e9bc2d485efcdf212a844
5
5
  SHA512:
6
- metadata.gz: ae26b95c6e988c89beaed8fa0b5aebf8ad0411880f6ac9b57b067b8661aeb87c03226c3f86ed3eff5cfd5242adc96fc01909a4cfd1c3cf0c637d588d997fb72a
7
- data.tar.gz: f707d0f641916037037ef6a1bb953b3e95e7166982924d290282bdc28a1540c62808f1719f115e7303f32d9a94f663bd2d33801ea5321a18c48f5a792f115c9a
6
+ metadata.gz: aed72c0f5f114eb1cd7253a6e3669db8b7a20da4acd184b0d684e9df0118534a83df18a9549aec5e788d2431f8a5f0f825ce47349ad0adbd3caf29c367e5d593
7
+ data.tar.gz: b8f543d8b2f0f93bb2286177c51d4a63085a46cad4f75c178da32ae722092d7d8fde06d314a99f9c266c66f7ea3f1a751fe851251abda19ad63da384170b1567
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ # [v0.0.96.10] - 04-04-2025
2
+ **Full Changelog**: https://github.com/yettoapp/ariadne/compare/v0.0.96.9...v0.0.96.10
1
3
  # [v0.0.96.9] - 04-04-2025
2
4
  ## What's Changed
3
5
  * Sidebar padding by @arielconti10 in https://github.com/yettoapp/ariadne/pull/593
@@ -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 %> <%= "aria-label=\"#{aria_label}\"" if aria_label.present? %>>
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
- # Generate default aria-label for accessibility if not provided
123
- @aria_label ||= if text.present?
124
- "Avatar for #{text}"
125
- elsif src.present? && alt.present?
126
- "Avatar: #{alt}"
127
- else
128
- "User avatar"
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
@@ -72,7 +72,7 @@ module Ariadne
72
72
  @dialog_id = html_attrs[:id].presence || @dialog_id
73
73
  html_attrs[:id] = @dialog_id
74
74
 
75
- html_attrs[:aria] = { modal: true }
75
+ html_attrs[:aria] ||= { modal: true }
76
76
  html_attrs[:aria] = merge_aria(
77
77
  html_attrs, {
78
78
  aria: {
@@ -3,6 +3,6 @@
3
3
  # :nocov:
4
4
  module Ariadne
5
5
  module ViewComponents
6
- VERSION = "0.0.96.9"
6
+ VERSION = "0.0.96.10"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ariadne_view_components
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.96.9
4
+ version: 0.0.96.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen J. Torikian