io-sanita-theme 2.16.0 → 2.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.16.1](https://github.com/RedTurtle/io-sanita-theme/compare/2.16.0...2.16.1) (2025-05-27)
4
+
5
+ ### Bug Fixes
6
+
7
+ * fixed control panel style ([19e3d9c](https://github.com/RedTurtle/io-sanita-theme/commit/19e3d9c20c5073b315fdb9e91936f0882dbf0f68))
8
+
9
+ ### Documentation
10
+
11
+ * updated release.md ([158be7d](https://github.com/RedTurtle/io-sanita-theme/commit/158be7d7a680ad93b7a38e7432891c27c01cc196))
12
+
3
13
  ## [2.16.0](https://github.com/RedTurtle/io-sanita-theme/compare/2.15.0...2.16.0) (2025-05-22)
4
14
 
5
15
  ### Features
package/RELEASE.md CHANGED
@@ -41,6 +41,12 @@
41
41
  - ...
42
42
  -->
43
43
 
44
+ ## Versione 2.16.1 (27/05/2025)
45
+
46
+ ### Fix
47
+
48
+ - Sistemata la vista del control panel Utenti
49
+
44
50
  ## Versione 2.15.0 (20/05/2025)
45
51
 
46
52
  ### Novità
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "io-sanita-theme",
3
- "version": "2.16.0",
3
+ "version": "2.16.1",
4
4
  "description": "io-sanita-theme: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "license": "MIT",
package/publiccode.yml CHANGED
@@ -1,14 +1,23 @@
1
- publiccodeYmlVersion: "0.4"
1
+ publiccodeYmlVersion: "0.4.0"
2
2
  name: io-Sanità - il sito web per ASL e strutture sanitarie
3
3
  applicationSuite: io-Sanità
4
4
  url: https://github.com/RedTurtle/io-sanita-theme
5
5
  landingURL: https://www.io-sanita.it/
6
- logo: https://github.com/RedTurtle/io-sanita-theme/blob/main/docs/logo.png
6
+ logo: docs/logo.png
7
7
  platforms:
8
8
  - web
9
9
  categories:
10
10
  - website-builder
11
11
  - content-management
12
+ dependsOn:
13
+ open:
14
+ - name: nodejs
15
+ versionMin: '20'
16
+ - name: Python
17
+ versionMin: '3.11'
18
+ - name: Docker
19
+ versionMin: '18.03'
20
+ optional: true
12
21
  usedBy:
13
22
  - AUSL Ferrara
14
23
  developmentStatus: stable
@@ -90,11 +99,16 @@ description:
90
99
  - Possibili connessioni con applicazioni e sistemi aziendali standard come
91
100
  CRM e integrabile con web service, database SQL e NoSQL.
92
101
  screenshots:
93
- - https://github.com/RedTurtle/io-sanita-theme/blob/main/docs/01-io-sanita.png
94
- - https://github.com/RedTurtle/io-sanita-theme/blob/main/docs/io-sanita-02.png
95
- - https://github.com/RedTurtle/io-sanita-theme/blob/main/docs/io-sanita-03.png
102
+ - docs/01-io-sanita.png
103
+ - docs/io-sanita-02.png
104
+ - docs/io-sanita-03.png
96
105
  legal:
97
106
  license: LGPL-3.0-only
107
+ intendedAudience:
108
+ scope:
109
+ - local-authorities
110
+ - government
111
+ - healthcare
98
112
  maintenance:
99
113
  type: internal
100
114
  contacts:
@@ -106,4 +120,9 @@ localisation:
106
120
  localisationReady: true
107
121
  availableLanguages:
108
122
  - it
109
- - en
123
+ it:
124
+ conforme:
125
+ modelloInteroperabilita: true
126
+ gdpr: true
127
+ lineeGuidaDesign: true
128
+ misureMinimeSicurezza: true
@@ -1,6 +1,7 @@
1
1
  @import 'cms-ui/cms-ui_container';
2
2
  @import 'cms-ui/sidebar';
3
3
  @import 'cms-ui/subblocks-edit';
4
+ @import 'cms-ui/controlpanel';
4
5
  @import 'io-sanita/mixins';
5
6
 
6
7
  body.cms-ui {
@@ -0,0 +1,7 @@
1
+ body.cms-ui {
2
+ .ui.container.users-control-panel {
3
+ form.ui.form:has(table.ui.table) {
4
+ overflow-x: auto;
5
+ }
6
+ }
7
+ }