plutonium 0.57.0 → 0.58.1
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 +13 -0
- data/app/assets/plutonium.css +1 -1
- data/app/assets/plutonium.js +7 -2
- data/app/assets/plutonium.js.map +2 -2
- data/app/assets/plutonium.min.js +1 -1
- data/app/assets/plutonium.min.js.map +2 -2
- data/lib/generators/pu/rodauth/templates/config/initializers/url_options.rb +7 -13
- data/lib/plutonium/interaction/base.rb +7 -9
- data/lib/plutonium/invites/concerns/invite_token.rb +1 -1
- data/lib/plutonium/resource/controller.rb +15 -0
- data/lib/plutonium/resource/controllers/interactive_actions.rb +11 -0
- data/lib/plutonium/ui/layout/base.rb +10 -11
- data/lib/plutonium/ui/layout/resource_layout.rb +18 -0
- data/lib/plutonium/version.rb +1 -1
- data/package.json +1 -1
- data/src/css/components.css +11 -11
- data/src/js/controllers/icon_rail_controller.js +11 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4aacffd8e85ac820827b65cc219e00cded934d37d879756ea808a8f9ba86fc26
|
|
4
|
+
data.tar.gz: bc6d63a46c46f0f01b2351590b36ee54108a29372c4f9aa1d0d3922ab014f334
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d29f628a11fdff4163c3430d225912902d07481fef1bc23bdacb23390cda5a063a604a3432929938a1c37bf7afc04aea643f1c0400d99478be62314d3ec8be89
|
|
7
|
+
data.tar.gz: 52b66cfe37dde6f57dcb2cda8d8ab9369e585d0f8847d4af0e35b78f3af4bd5bad20a6c0de2840c872bc37fe34b45343538001308bd822c5f3bbc399b44e2b1b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## [0.58.1] - 2026-06-10
|
|
2
|
+
|
|
3
|
+
### 🐛 Bug Fixes
|
|
4
|
+
|
|
5
|
+
- *(ui/layout)* Prevent pu-rail-pinned persisting on non-rail pages
|
|
6
|
+
## [0.58.0] - 2026-06-10
|
|
7
|
+
|
|
8
|
+
### 🐛 Bug Fixes
|
|
9
|
+
|
|
10
|
+
- *(rodauth)* Set url_options directly on ActionMailer::Base instead of config
|
|
11
|
+
- *(interaction)* Short-circuit call with failure when validation fails
|
|
12
|
+
- *(form)* Pre-populate extraction record so conditioned selects resolve correctly
|
|
13
|
+
- *(invites)* Use after_commit to avoid orphaned email jobs on rollback
|
|
1
14
|
## [0.57.0] - 2026-06-09
|
|
2
15
|
|
|
3
16
|
### 🚀 Features
|