ariadne_view_components 0.0.96.4 → 0.0.96.5

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: 613fe41f63ad98c2c479bf57345b80486dcda3e1c36ea4ba2793caf5e7e3b5c4
4
- data.tar.gz: cf26b605f2a0a827f9bf43c519d0d2307dd8112cd67fa5ba4a608379dc29fcf2
3
+ metadata.gz: ec5ae39906d5477102b19784455d743fe1d69e9f221e5866c23f42af2a8c41b5
4
+ data.tar.gz: 1e65c215240a989059276d710cefdd2fa06e392b57e72fc65b5abef37d23d295
5
5
  SHA512:
6
- metadata.gz: 424e4b3ea9497ddcfac1847cc2d05a63cdcfe786fccc932330b11d714e453bbffe6bee65924f4155ff89c42071bcadff686ed3814db74b385a64c9eafc3ac797
7
- data.tar.gz: 066fcc3680a7dde374220a6b7b3a5e79d860b40fcdfb3c74debeb280b729a1ea8a7ceda7b0a529e5a64aeddfa4f145ab449bd44bff8d45d9f06eb896a6ff2440
6
+ metadata.gz: 19e8f34bcf281fc9d42e1fdee5739906fcbb78bf733eafe8b48412ec7fcda2676b6f4c406699b021692083ac950a2c684574e521e5b4ab1de4b74c0e0af242ef
7
+ data.tar.gz: 31d889911fd2deb0d7ba468b395dc5b20ef6d3efde8dca7b9731f63adb61604b2ca71c96597484cd35225fe255de8578294a8f1db616fa26932c9888dad43076
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # [v0.0.96.5] - 31-03-2025
2
+ ## What's Changed
3
+ * simplify sidebar footer by @gjtorikian in https://github.com/yettoapp/ariadne/pull/583
4
+
5
+
6
+ **Full Changelog**: https://github.com/yettoapp/ariadne/compare/v0.0.96.4...v0.0.96.5
1
7
  # [v0.0.96.4] - 31-03-2025
2
8
  ## What's Changed
3
9
  * Fix theming colors by @gjtorikian in https://github.com/yettoapp/ariadne/pull/581
@@ -166,6 +166,7 @@ module Ariadne
166
166
 
167
167
  nude do
168
168
  [
169
+ "ariadne:bg-transparent",
169
170
  "ariadne:text-black",
170
171
  "ariadne:dark:text-white",
171
172
  "ariadne:shadow-none",
@@ -1,13 +1,5 @@
1
- <div class="<%= style %>">
2
- <% if primary %>
3
- <div class="ariadne:flex ariadne:items-center ariadne:gap-2">
4
- <%= primary %>
5
- </div>
6
- <% end %>
7
- <% if secondary %>
8
- <div class="ariadne:flex ariadne:items-center ariadne:gap-2">
9
- <%= secondary %>
10
- </div>
11
- <% end %>
1
+ <div class="<%= html_attrs[:class] %>" <%= html_attributes %>>
2
+ <div class="ariadne:flex ariadne:items-center ariadne:gap-2 ariadne:w-full">
3
+ <%= content %>
4
+ </div>
12
5
  </div>
13
-
@@ -11,16 +11,15 @@ module Ariadne
11
11
  # @param [Boolean] sticky (true) Whether the footer sticks to the bottom of the sidebar.
12
12
  option :sticky, default: -> { true }
13
13
 
14
- # Primary content slot for the footer
15
- renders_one :primary
16
-
17
- # Secondary content slot for the footer, often used for actions
18
- renders_one :secondary
14
+ accepts_html_attributes do |html_attrs|
15
+ html_attrs[:class] = merge_tailwind_classes([style, html_attrs[:class]].join(" "))
16
+ end
19
17
 
20
18
  style do
21
19
  base do
22
20
  [
23
21
  "ariadne:flex",
22
+ "ariadne:w-full",
24
23
  "ariadne:items-center",
25
24
  "ariadne:justify-between",
26
25
  "ariadne:px-4",
@@ -3,6 +3,6 @@
3
3
  # :nocov:
4
4
  module Ariadne
5
5
  module ViewComponents
6
- VERSION = "0.0.96.4"
6
+ VERSION = "0.0.96.5"
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.4
4
+ version: 0.0.96.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen J. Torikian