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 +4 -4
- data/CHANGELOG.md +6 -0
- data/app/components/ariadne/ui/button/component.rb +1 -0
- data/app/components/ariadne/ui/sidebar/footer/component.html.erb +4 -12
- data/app/components/ariadne/ui/sidebar/footer/component.rb +4 -5
- data/lib/ariadne/view_components/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec5ae39906d5477102b19784455d743fe1d69e9f221e5866c23f42af2a8c41b5
|
4
|
+
data.tar.gz: 1e65c215240a989059276d710cefdd2fa06e392b57e72fc65b5abef37d23d295
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
@@ -1,13 +1,5 @@
|
|
1
|
-
<div class="<%=
|
2
|
-
|
3
|
-
|
4
|
-
|
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
|
-
|
15
|
-
|
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",
|