io-sanita-theme 2.17.0 → 2.17.2
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.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.17.2](https://github.com/RedTurtle/io-sanita-theme/compare/2.17.1...2.17.2) (2025-06-20)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* fixed checkbox height search view ([f9cd55d](https://github.com/RedTurtle/io-sanita-theme/commit/f9cd55d61dd0419358a9f9dcfa24a5879a9398ea))
|
|
8
|
+
|
|
9
|
+
## [2.17.1](https://github.com/RedTurtle/io-sanita-theme/compare/2.17.0...2.17.1) (2025-06-19)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* format bando date in TableTemplate ([72f55d4](https://github.com/RedTurtle/io-sanita-theme/commit/72f55d44134c00d54abdd632f035e38f90f30544))
|
|
14
|
+
|
|
3
15
|
## [2.17.0](https://github.com/RedTurtle/io-sanita-theme/compare/2.16.4...2.17.0) (2025-06-18)
|
|
4
16
|
|
|
5
17
|
### Features
|
package/package.json
CHANGED
|
@@ -42,7 +42,7 @@ const TableTemplate = (props) => {
|
|
|
42
42
|
const ct_schemas = useSelector((state) => state.ct_schema?.subrequests);
|
|
43
43
|
|
|
44
44
|
useEffect(() => {
|
|
45
|
-
if(columns?.length > 0) {
|
|
45
|
+
if (columns?.length > 0) {
|
|
46
46
|
const cts = columns.reduce((acc, c) => {
|
|
47
47
|
if (acc.indexOf(c.ct) < 0) {
|
|
48
48
|
acc.push(c.ct);
|
|
@@ -117,7 +117,7 @@ const TableTemplate = (props) => {
|
|
|
117
117
|
case 'chiusura_procedimento_bando':
|
|
118
118
|
case 'scadenza_domande_bando':
|
|
119
119
|
case 'scadenza_bando':
|
|
120
|
-
widget_props.format = '
|
|
120
|
+
widget_props.format = 'DD MMM yyyy';
|
|
121
121
|
break;
|
|
122
122
|
default:
|
|
123
123
|
break;
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
@import 'io-sanita-theme/theme/bootstrap-italia-base-config';
|
|
2
2
|
|
|
3
3
|
.search-view {
|
|
4
|
+
.form-check .form-control {
|
|
5
|
+
min-height: 1.5rem;
|
|
6
|
+
top: 0;
|
|
7
|
+
left: 0;
|
|
8
|
+
}
|
|
9
|
+
|
|
4
10
|
@media (min-width: 576px) {
|
|
5
11
|
.column-filters .form-check [type='checkbox'] + label {
|
|
6
12
|
color: var(--bs-body-color-rgb);
|