base_editing_bootstrap 0.16.0 → 0.16.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 +8 -0
- data/README.md +1 -1
- data/app/views/base_editing/cell_field/_base.html.erb +1 -1
- data/app/views/base_editing/cell_field/_boolean.html.erb +1 -1
- data/app/views/base_editing/cell_field/_timestamps.html.erb +1 -1
- data/lib/base_editing_bootstrap/VERSION +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e764be908fc80fc7426404c064b407cd2b47239c30d81cb812f30d26e013e0c6
|
4
|
+
data.tar.gz: ce54c97213e70582b4493632cfd9652e2a33c8774d91106854381af17119adda
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac4e714e64560dbaa5b5851e67ff3ac439cd9ec5aa2d21b8a5fa246e0850da6f45f641b892576343604ca01bfb3dc984e7afab63470f1818e53479f20e1c5aff
|
7
|
+
data.tar.gz: ae23fcf542349cd98c4d4a1c9f6435261a54fa39c44fdf981e30f179319e04f1c6b0cdba4485acff348fa6fc8d0e0241b30e28d5f8f42f08a18b6fddfc73346a
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,14 @@
|
|
2
2
|
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
3
3
|
|
4
4
|
- - -
|
5
|
+
## 0.16.1 - 2024-11-22
|
6
|
+
#### Bug Fixes
|
7
|
+
- Correct case when attribute to print is virtual - (b86e478) - Marino Bonetti
|
8
|
+
#### Documentation
|
9
|
+
- Fix documentation - (8be21a5) - Marino Bonetti
|
10
|
+
|
11
|
+
- - -
|
12
|
+
|
5
13
|
## 0.16.0 - 2024-11-22
|
6
14
|
#### Features
|
7
15
|
- Add custom class to check-box forms - (0ff856c) - Marino Bonetti
|
data/README.md
CHANGED
@@ -88,7 +88,7 @@ Utilizzo per modello base, in questo esempio prendiamo come modello Post come es
|
|
88
88
|
class PostsController < BaseEditingController
|
89
89
|
##
|
90
90
|
# Set default sort order for ransack
|
91
|
-
# self.
|
91
|
+
# self.default_sorts= ["id"]
|
92
92
|
end
|
93
93
|
```
|
94
94
|
- Aggiungere la rotta: `resources :posts`
|
@@ -1 +1 @@
|
|
1
|
-
0.16.
|
1
|
+
0.16.1
|