baldur 0.3.0 → 0.3.1
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/TODO.md +7 -0
- data/app/views/baldur/optional/_auth_page.html.erb +1 -1
- data/lib/baldur/version.rb +1 -1
- data/test/theme_toggle_helper_test.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: 84f1d524fb1dd31856ada448cc5d8d97f82dd5749c13d2e9709db0b1fa79a859
|
|
4
|
+
data.tar.gz: 26c743de89e5e8de9b6f9af83d274cf8eb14a32a9416c97183c4d9486a0718fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea50eff0d113bb2ebbbbc331e9b5d1f8b41b8a5c57a1a7ed894579ed0bc75dda917c6b60787362ba790b2d9762f8f53f948290c597fd5ef4d57168da2109508a
|
|
7
|
+
data.tar.gz: 63e9b46efb73d8aa286e1d7fbc67156e7f6e27f83cc9a90fac5ef5f2dd29d8b19d8ebe47b24876436caee4c09460dd7002484c4dea6de47168049e51e77943ce
|
data/TODO.md
CHANGED
|
@@ -38,6 +38,13 @@
|
|
|
38
38
|
- avoid host apps inventing ad hoc flow-state patterns just to support review/commit loops
|
|
39
39
|
|
|
40
40
|
## Tabs and Segmented Controls
|
|
41
|
+
- [ ] reusable rich-cell tables across app:
|
|
42
|
+
badges
|
|
43
|
+
icons
|
|
44
|
+
links
|
|
45
|
+
custom cell partials
|
|
46
|
+
Then adding a cell_renderer / block yield to Baldur could make sense
|
|
47
|
+
|
|
41
48
|
- [x] Add a first-class `ui_tabs` primitive or documented tabs pattern built on `ui_segmented_buttons`
|
|
42
49
|
- selected tab trigger
|
|
43
50
|
- tab panels
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
%>
|
|
6
6
|
|
|
7
7
|
<div class="<%= auth_shell_classes %> min-h-screen flex items-center justify-center p-6 bg-base-200">
|
|
8
|
-
<div class="auth-page__container
|
|
8
|
+
<div class="auth-page__container max-w-lg mx-auto">
|
|
9
9
|
<% if local_assigns[:top_rail].present? %>
|
|
10
10
|
<div class="auth-page__top-rail">
|
|
11
11
|
<%= local_assigns[:top_rail] %>
|
data/lib/baldur/version.rb
CHANGED
|
@@ -87,7 +87,7 @@ class BaldurAuthPageTopRailTest < Minitest::Test
|
|
|
87
87
|
|
|
88
88
|
refute_includes html, 'auth-page__top-rail'
|
|
89
89
|
assert_includes html, 'auth-page min-h-screen flex items-center justify-center p-6 bg-base-200'
|
|
90
|
-
assert_includes html, 'auth-page__container
|
|
90
|
+
assert_includes html, 'auth-page__container max-w-lg mx-auto'
|
|
91
91
|
end
|
|
92
92
|
|
|
93
93
|
def test_auth_page_with_top_rail_renders_slot
|