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 +4 -4
- data/.claude/settings.local.json +9 -0
- data/CHANGELOG.md +16 -0
- data/app/assets/stylesheets/inline_forms/inline_forms.scss +19 -0
- data/lib/inline_forms/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 29a1fd4f9b0b3bdbeaf2d38deadfe50e29281dea6a75837a9bca5b3ed495c660
|
|
4
|
+
data.tar.gz: 920df3553f572b13d8de28dd938e469cc3dc5e4c83a38c891cdbab079f000ace
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ea9be75bfca987dea99edd5f68a2963b4c7085c182fe72868222bb77d5f32ca483b4eb60749049ec60691030c10fddb5f73bd4a533320342a9d834a1d6149ff
|
|
7
|
+
data.tar.gz: a7e9e4d668925f76ff620b2d6dba3482d6d951890ee561b71d7a4821894090504e17868d2280d649fcc409093aa75b329b997e1ba1919b5c6d48eb1f69ab930d
|
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;
|
data/lib/inline_forms/version.rb
CHANGED
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.
|
|
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"
|