plutonium 0.53.1 โ 0.54.0
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/CHANGELOG.md +24 -0
- data/app/assets/plutonium.css +1 -1
- data/app/assets/plutonium.js +22 -6
- data/app/assets/plutonium.js.map +3 -3
- data/app/assets/plutonium.min.js +8 -8
- data/app/assets/plutonium.min.js.map +3 -3
- data/app/views/plutonium/_flash_alerts.html.erb +8 -17
- data/app/views/plutonium/_flash_toasts.html.erb +9 -18
- data/docs/superpowers/specs/2026-06-01-interaction-repeater-inputs-design.md +178 -0
- data/gemfiles/rails_8.1.gemfile.lock +1 -1
- data/lib/plutonium/engine/validator.rb +11 -4
- data/lib/plutonium/ui/form/resource.rb +11 -4
- data/lib/plutonium/ui/form/theme.rb +14 -3
- data/lib/plutonium/version.rb +1 -1
- data/package.json +1 -1
- data/src/css/components.css +109 -0
- data/src/js/controllers/capture_url_controller.js +20 -7
- data/src/js/controllers/dirty_form_guard_controller.js +28 -4
- data/src/js/controllers/icon_rail_flyout_controller.js +5 -2
- data/src/js/controllers/remote_modal_controller.js +5 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 65714d92f3f0d6759f5b0fbc0818be12387892214b09959de80d589f859a6a56
|
|
4
|
+
data.tar.gz: 2190fd85c3ac535df868581baace2be6565c709263c1059eeccc37bb9ba6c396
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5ec925506a147113242a8888e96797d56cfb76972e771792752a296b6036ca5adffc8698ad9b967056b043f3c9df86a422d014cea6ec699cac73c692408ee962
|
|
7
|
+
data.tar.gz: e8c29ac3f6d9e83b00dba5817e209c1e7d276730b599660dbd4fe5fe4a14684695fb069b0ff5b226b9f0b7a3cc96a7d74bb02edb1cbcf0c23fe345c7d56ace13
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## [0.54.0] - 2026-06-01
|
|
2
|
+
|
|
3
|
+
### ๐ Features
|
|
4
|
+
|
|
5
|
+
- *(ui)* Refine file-input height and required-marker theming
|
|
6
|
+
|
|
7
|
+
### ๐ Bug Fixes
|
|
8
|
+
|
|
9
|
+
- *(engine)* Match Plutonium::Engine by name to survive dev reload
|
|
10
|
+
- *(ui)* Carry only an explicit return_to on resource forms
|
|
11
|
+
- *(ui)* Ignore bubbled file-input cancel in modal dialogs
|
|
12
|
+
- *(ui)* Cap icon-rail flyout to the viewport height
|
|
13
|
+
|
|
14
|
+
### ๐ Refactor
|
|
15
|
+
|
|
16
|
+
- *(ui)* Render flash via self-contained component classes
|
|
17
|
+
|
|
18
|
+
### ๐งช Testing
|
|
19
|
+
|
|
20
|
+
- *(ui)* Characterize nested resource and interaction form rendering
|
|
21
|
+
|
|
22
|
+
### โ๏ธ Miscellaneous Tasks
|
|
23
|
+
|
|
24
|
+
- *(assets)* Rebuild bundled assets
|
|
1
25
|
## [0.53.1] - 2026-05-31
|
|
2
26
|
|
|
3
27
|
### ๐ Bug Fixes
|