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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 173fbb6ff876c4440db1b17b3edb60f7d9c9bee99fdf18d59a733c411897d5b1
4
- data.tar.gz: 6a51c87730719ddb3155a7eb70d7c6ab6f257ce66b0fb0b23a94582434665beb
3
+ metadata.gz: 84f1d524fb1dd31856ada448cc5d8d97f82dd5749c13d2e9709db0b1fa79a859
4
+ data.tar.gz: 26c743de89e5e8de9b6f9af83d274cf8eb14a32a9416c97183c4d9486a0718fc
5
5
  SHA512:
6
- metadata.gz: c02cccdbe76f6e8b19a76dc70fe932b6ccb303a381de63dd9270f1414cd658ec310d5d965f8649c1d44a6fb1f62eeceacc92ab9a0af8a3b33b9ba051836d43b0
7
- data.tar.gz: fe5a8cbd70bbe930a4f738de6ab52b15ce793ef2c60e1117026d22c6388910c1774e5c879581f28a825651e201b11fc6bb1d5819a8f77355cb120af0ca0ee67b
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 w-full max-w-lg mx-auto">
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] %>
@@ -1,3 +1,3 @@
1
1
  module Baldur
2
- VERSION = '0.3.0'.freeze
2
+ VERSION = '0.3.1'.freeze
3
3
  end
@@ -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 w-full max-w-lg mx-auto'
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: baldur
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Varun Murkar