io-sanita-theme 2.30.1 → 2.30.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,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.30.2](https://github.com/RedTurtle/io-sanita-theme/compare/2.30.1...2.30.2) (2026-05-27)
4
+
5
+ ### Bug Fixes
6
+
7
+ * missing import ([bcebfdf](https://github.com/RedTurtle/io-sanita-theme/commit/bcebfdf83d2dbd55ec06306314a161b97f9a973f))
8
+
3
9
  ## [2.30.1](https://github.com/RedTurtle/io-sanita-theme/compare/2.30.0...2.30.1) (2026-05-27)
4
10
 
5
11
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "io-sanita-theme",
3
- "version": "2.30.1",
3
+ "version": "2.30.2",
4
4
  "description": "io-sanita-theme: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "license": "MIT",
@@ -1,7 +1,11 @@
1
1
  import PropTypes from 'prop-types';
2
2
  import { defineMessages, useIntl } from 'react-intl';
3
3
  import { CardContatti } from 'io-sanita-theme/components';
4
- import { RichTextSection } from 'io-sanita-theme/helpers';
4
+ import {
5
+ RichTextSection,
6
+ richTextHasContent,
7
+ RichText,
8
+ } from 'io-sanita-theme/helpers';
5
9
  import { Row, Col } from 'design-react-kit';
6
10
 
7
11
  const messages = defineMessages({
@@ -30,7 +34,7 @@ const UOContatti = ({ content }) => {
30
34
  {/* Contenuto testuale alternativo, usato ad esempio con il sync virtualdesk */}
31
35
  {has_richTextContent && (
32
36
  <div className="richtext-blocks font-serif">
33
- <RichText data={content?.pdc_correlato_text} />
37
+ <RichText data={content?.pdc_correlato_text} />
34
38
  </div>
35
39
  )}
36
40
  </RichTextSection>