houseaccount 0.13.0 → 0.13.2

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: ed184a1937949b68eddec9963ca7432953697bcc370aa9831cc91c8fa5b19514
4
- data.tar.gz: 570c5608351078cecfd03b7fb72a9601fce3897cfb30218eab31cd6c193b6ae7
3
+ metadata.gz: fdd47bd593acde269b1a8c12cbb1632f218ed4965c14131366a7f9bd5721ff81
4
+ data.tar.gz: d78196897da326d2b29aa9985d1ca4a0ed5b7664b2a73db98eb74911396d96ac
5
5
  SHA512:
6
- metadata.gz: a20b6800724be5cb32ff25b4f9de7f086b33e79dfdd09bf72cf3e03bd9189e7e26d6e2eb91894d2b3c8917ec3a405a5050e6a7124753e7d83cd8ab301047e03f
7
- data.tar.gz: '0086d99c66d0b57cb7b6072b664b978a0d6d06394d8d95e550441c7c80d23773ca772f0a0b8c777dc01b484e9b57611d699f48fc25d90bdc84ecdcd840f28308'
6
+ metadata.gz: 1d16bc370f130fe7ed6b2affc1168804f889a9109bf12ffc22383e95d60d2b7c9c9be2a0fd38600094ffc0a8fd62d342f6d3324b1bf5179cc23e4e20a5be85a4
7
+ data.tar.gz: e3b3994634a1262c1c0f8e81539fc5d1414a6bed26e3fe61ad7b481357c1738cbb551091f7646c9e5ecebe3cd2147932ffd64933f1f465cc1f5bad90cf46dd3a
data/CHANGELOG.md CHANGED
@@ -7,6 +7,16 @@ For more information about changelogs, check [Keep a Changelog](http://keepachan
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## 0.13.2 - 2026-09-17
11
+
12
+ * [Fix] The cell a label wraps is `flow-field`; `form-field` is Bootstrap's, and its rules applied
13
+
14
+ ## 0.13.1 - 2026-09-17
15
+
16
+ * [Fix] A card too short for what does not scroll scrolls whole, rather than spilling it
17
+
18
+ * [Change] A ticked box sits beside its words with room between them, and counts as a field
19
+
10
20
  ## 0.13.0 - 2026-09-17
11
21
 
12
22
  * [Feature] The ascending sort glyph
@@ -35,7 +35,7 @@ module HouseAccount
35
35
  heading = (@template.tag.legend legend if legend)
36
36
  inside = @template.safe_join [heading, @template.capture(&)].compact
37
37
 
38
- @template.tag.fieldset inside, **with_classes(options, 'd-grid form-fieldset')
38
+ @template.tag.fieldset inside, **with_classes(options, 'd-grid flow-fieldset')
39
39
  end
40
40
 
41
41
  # A label is Bootstrap's `form-label`, whatever else it is given -- and given both words
@@ -51,7 +51,7 @@ module HouseAccount
51
51
  words = @template.tag.span text, class: 'form-label'
52
52
  inside = @template.safe_join [words, @template.capture(&block)]
53
53
 
54
- @template.tag.label inside, for: field_id(method), **with_classes(options, 'form-field')
54
+ @template.tag.label inside, for: field_id(method), **with_classes(options, 'flow-field')
55
55
  end
56
56
 
57
57
  # A text field is a large control.
@@ -1,4 +1,4 @@
1
1
  module HouseAccount
2
2
  # Version of the gem, read by the gemspec and by hosts checking compatibility.
3
- VERSION = '0.13.0'
3
+ VERSION = '0.13.2'
4
4
  end