inline_forms 8.1.42 → 8.1.43

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: 11df5d86221aad276d5bf2d4878702ce6651b595bd84f4911534922da817e07a
4
- data.tar.gz: 14ac9ad9346af55d6573926f46f8fd907bf7d86e9eb695887d45e9abd5f67e58
3
+ metadata.gz: 29a1fd4f9b0b3bdbeaf2d38deadfe50e29281dea6a75837a9bca5b3ed495c660
4
+ data.tar.gz: 920df3553f572b13d8de28dd938e469cc3dc5e4c83a38c891cdbab079f000ace
5
5
  SHA512:
6
- metadata.gz: 5f5b578c9c304f90509dc7fc1fe5a226b6f1b954eb11a451053f5107c474278caecc7fcf456f339794b34014078c38205a30ad786acd426d269ef6cff9096614
7
- data.tar.gz: af1a4a4a228b4b3be79e5d71ab0b2ef6f2f02fb662032bad0b9ba40b285de548abbcb31c8adb501e990dd0d02ac3532819e3acee09334cc83f4899d8f42f8fc7
6
+ metadata.gz: 6ea9be75bfca987dea99edd5f68a2963b4c7085c182fe72868222bb77d5f32ca483b4eb60749049ec60691030c10fddb5f73bd4a533320342a9d834a1d6149ff
7
+ data.tar.gz: a7e9e4d668925f76ff620b2d6dba3482d6d951890ee561b71d7a4821894090504e17868d2280d649fcc409093aa75b329b997e1ba1919b5c6d48eb1f69ab930d
@@ -0,0 +1,9 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(git ls-tree *)",
5
+ "Bash(git checkout *)",
6
+ "Bash(git merge *)"
7
+ ]
8
+ }
9
+ }
data/CHANGELOG.md CHANGED
@@ -4,6 +4,22 @@ All notable changes to this project are documented in this file.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [8.1.43] - 2026-07-22
8
+
9
+ ### Fixed
10
+
11
+ - **Native date/time/month/week/colour pickers show their picker control again.** Foundation's form reset (`_forms.scss`) applies `appearance: none` to a shared list of input types that includes `date`, `datetime-local`, `month`, `week`, `time`, and `color`. For plain text inputs that is harmless, but for the native `<input type="…">` pickers introduced in 8.1.25/8.1.26 (which replaced the jQuery UI date/time/month widgets) it stripped the browser's calendar/clock/month/colour indicator, leaving a bare text box with no way to open the picker. `inline_forms.scss` now restores `appearance: auto` for these input types (the `input[type=…]` selector outranks Foundation's `[type=…]`, so it wins regardless of source order).
12
+
13
+ ### Merged
14
+
15
+ - Merges the `feature/schema-gui-pipeline` line (schema-GUI extraction, batch
16
+ pipeline, and the 8.1.42 `gem build` / release fixes) into `master` alongside
17
+ the picker fix above, so both lines ship together going forward.
18
+
19
+ ### Lockstep
20
+
21
+ - validation_hints 8.1.43, inline_forms_installer 8.1.43, inline_forms_schema_edit 8.1.43.
22
+
7
23
  ## [8.1.42] - 2026-07-22
8
24
 
9
25
  ### Fixed
@@ -145,6 +145,25 @@ input {
145
145
  margin: 2px 0 !important;
146
146
  }
147
147
 
148
+ // Foundation's form reset (_forms.scss) lumps the native temporal/colour
149
+ // input types in with plain text inputs and applies `appearance: none` to
150
+ // normalize them. For the native <input type="date|time|month|week|color">
151
+ // pickers (8.1.25+, which replaced the jQuery UI date/time/month widgets)
152
+ // that strips the browser's calendar/clock/month/colour picker indicator,
153
+ // so the field renders as a bare text box with no way to open the picker.
154
+ // Restore the native appearance for these so their picker control shows.
155
+ // (`input[type=...]` is more specific than Foundation's `[type=...]`, so
156
+ // this wins regardless of source order.)
157
+ input[type="date"],
158
+ input[type="datetime-local"],
159
+ input[type="month"],
160
+ input[type="week"],
161
+ input[type="time"],
162
+ input[type="color"] {
163
+ -webkit-appearance: auto;
164
+ appearance: auto;
165
+ }
166
+
148
167
  select {
149
168
  background-color: var(--if-color-input-bg) !important;
150
169
  border: 0 !important;
@@ -1,5 +1,5 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
 
3
3
  module InlineForms
4
- VERSION = "8.1.42"
4
+ VERSION = "8.1.43"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inline_forms
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.1.42
4
+ version: 8.1.43
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ace Suares
@@ -94,6 +94,7 @@ executables: []
94
94
  extensions: []
95
95
  extra_rdoc_files: []
96
96
  files:
97
+ - ".claude/settings.local.json"
97
98
  - ".document"
98
99
  - ".forgejo/workflows/ci.yml"
99
100
  - ".forgejo/workflows/full-gate.yml"