layered-ui-rails 0.2.4 → 0.2.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: 272ff1df79793bfe6c59ed6b4ea2ae12a82e8a7b51b5efcc770987b7387ca2c0
4
- data.tar.gz: 21bf4840c729bf7d56cbb0971ab49f45fc24d301166f046c31c1164deeea0c56
3
+ metadata.gz: feb436fe39471f18e20438f335008dbd35eefa5035e7dc4c43b25bb410ad2dff
4
+ data.tar.gz: eff67adfb3a419be2b85077a00a17ac44c50edc7448f7190deff342002f41ed4
5
5
  SHA512:
6
- metadata.gz: 2bba00f8ff4ff4e0b65b96c95ed438325ff50f93bd14c3f81d6274616d921cf196a0350c8780b85866609a4de090f51ba1434e0ee204d68fcb52b230edf72ab3
7
- data.tar.gz: e31d63c421a1d3faa076c76f6a15b09f9465e2456fa9d04a024496e3e83790eb18e192193ec54842655382c81989789d36773dda3aa657f3cb27e23962653f07
6
+ metadata.gz: 69a5f98979872031872c93c9b2ff93060955810be38785ab882e275a5f07524834b97bde9a1907877450861f540e9a7dfa56b3d43e1282dfb0f7682c60f157a4
7
+ data.tar.gz: e857eb7b2476475e535e27c0902b2549ebf9cd28a4232b1dc39630827f3e9ace63d9e8e540477e632eda99a923c03265f97bd4f6dbd93b479c04f07d60cadc86
data/CHANGELOG.md CHANGED
@@ -2,7 +2,12 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. This project follows [Semantic Versioning](https://semver.org/).
4
4
 
5
- ## Unreleased
5
+ ## [0.2.5] - 2026-04-09
6
+
7
+ ### Changed
8
+
9
+ - Reduced form field text size from `text-base` (16px) to `text-sm` (14px) on desktop; remains 16px on mobile to prevent iOS auto-zoom
10
+ - Increased form hint text size from `text-xs` (12px) to `text-sm` (14px)
6
11
 
7
12
  ## [0.2.4] - 2026-04-06
8
13
 
data/README.md CHANGED
@@ -106,7 +106,7 @@ For dynamic theming (e.g. per-tenant branding), use `content_for :l_ui_head` to
106
106
  > <% end %>
107
107
  > ```
108
108
 
109
- See the [Colors documentation](https://layered-ui-rails.layered.ai/pages/layout_colors) for the full list of tokens.
109
+ See the [Colors documentation](https://layered-ui-rails.layered.ai/layout_colors) for the full list of tokens.
110
110
 
111
111
  ## Customising logos and icons
112
112
 
@@ -186,6 +186,8 @@ kamal deploy
186
186
 
187
187
  This project is still in its early days. We welcome issues, feedback, and ideas - they genuinely help shape the direction of the project. That said, we're holding off on accepting pull requests until after the 1.0 release so we can stay focused on getting the core foundations right. Once we're there, we'd love to open things up to broader contributions. Thanks for your patience and interest!
188
188
 
189
+ - [CLA.md](CLA.md) - contributor license agreement
190
+
189
191
  ## License
190
192
 
191
193
  Released under the [Apache 2.0 License](LICENSE).
@@ -196,6 +198,3 @@ Copyright 2026 LAYERED AI LIMITED (UK company number: 17056830). See [NOTICE](NO
196
198
 
197
199
  The source code is fully open, but the layered.ai name, logo, and brand assets are trademarks of LAYERED AI LIMITED. The Apache 2.0 license does not grant rights to use the layered.ai branding. Forks and redistributions must use a distinct name. See [TRADEMARK.md](TRADEMARK.md) for the full policy.
198
200
 
199
- ## Contributing
200
-
201
- - [CLA.md](CLA.md) - contributor license agreement
@@ -901,16 +901,21 @@ pre.l-ui-surface {
901
901
 
902
902
  .l-ui-form__hint {
903
903
  @apply mt-2
904
- text-xs text-foreground-muted;
904
+ text-sm text-foreground-muted;
905
905
  }
906
906
 
907
907
  @utility form__field {
908
908
  @apply block
909
909
  w-full px-3 py-2.5 min-h-[44px]
910
+ /* text-base at mobile; text-sm at md+ */
910
911
  text-base font-inter
911
912
  text-foreground
912
913
  border border-border-control rounded-sm
913
914
  focus-ring;
915
+
916
+ @media (min-width: 768px) {
917
+ @apply text-sm;
918
+ }
914
919
  }
915
920
 
916
921
  .l-ui-form__field {
@@ -1,5 +1,5 @@
1
1
  module Layered
2
2
  module Ui
3
- VERSION = "0.2.4"
3
+ VERSION = "0.2.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: layered-ui-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - layered.ai