@eeacms/volto-hero-block 9.0.1 → 9.0.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
@@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
- ### [9.0.1](https://github.com/eea/volto-hero-block/compare/9.0.0...9.0.1) - 8 April 2026
7
+ ### [9.0.2](https://github.com/eea/volto-hero-block/compare/9.0.1...9.0.2) - 9 April 2026
8
+
9
+ ### [9.0.1](https://github.com/eea/volto-hero-block/compare/9.0.0...9.0.1) - 9 April 2026
8
10
 
9
11
  #### :bug: Bug Fixes
10
12
 
@@ -49,7 +49,7 @@ module.exports = {
49
49
  ],
50
50
  transform: {
51
51
  '^.+\\.js(x)?$': 'babel-jest',
52
- '^.+\\.ts(x)?$': 'ts-jest',
52
+ '^.+\\.ts(x)?$': 'babel-jest',
53
53
  '^.+\\.(png)$': 'jest-file',
54
54
  '^.+\\.(jpg)$': 'jest-file',
55
55
  '^.+\\.(svg)$': './node_modules/@plone/volto/jest-svgsystem-transform.js',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-hero-block",
3
- "version": "9.0.1",
3
+ "version": "9.0.2",
4
4
  "description": "@eeacms/volto-hero-block: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -31,8 +31,7 @@
31
31
  "dotenv": "^16.3.2",
32
32
  "husky": "^8.0.3",
33
33
  "lint-staged": "^14.0.1",
34
- "md5": "^2.3.0",
35
- "ts-jest": "^26.4.2"
34
+ "md5": "^2.3.0"
36
35
  },
37
36
  "lint-staged": {
38
37
  "src/**/*.{js,jsx,ts,tsx,json}": [
package/tsconfig.json DELETED
@@ -1,10 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "baseUrl": ".",
4
- "paths": {
5
- "@plone/volto/helpers/FormValidation/validators": [
6
- "node_modules/@plone/volto/src/helpers/FormValidation/validators.ts"
7
- ]
8
- }
9
- }
10
- }
@@ -1,34 +0,0 @@
1
- declare module '@plone/volto/helpers/FormValidation/validators' {
2
- export const minLengthValidator: (...args: any[]) => any;
3
- export const maxLengthValidator: (...args: any[]) => any;
4
- export const urlValidator: (...args: any[]) => any;
5
- export const emailValidator: (...args: any[]) => any;
6
- export const isNumberValidator: (...args: any[]) => any;
7
- export const maximumValidator: (...args: any[]) => any;
8
- export const minimumValidator: (...args: any[]) => any;
9
- export const isIntegerValidator: (...args: any[]) => any;
10
- export const maxItemsValidator: (...args: any[]) => any;
11
- export const minItemsValidator: (...args: any[]) => any;
12
- export const hasUniqueItemsValidator: (...args: any[]) => any;
13
- export const startEventDateRangeValidator: (...args: any[]) => any;
14
- export const endEventDateRangeValidator: (...args: any[]) => any;
15
- export const patternValidator: (...args: any[]) => any;
16
- export const defaultLanguageControlPanelValidator: (...args: any[]) => any;
17
- export const sizeValidator: (...args: any[]) => any;
18
- }
19
-
20
- declare module 'react-router-hash-link' {
21
- export const HashLink: any;
22
- }
23
-
24
- declare module '@plone/volto/helpers/Url/Url' {
25
- export const flattenToAppURL: (...args: any[]) => any;
26
- export const isInternalURL: (...args: any[]) => any;
27
- export const getFieldURL: (...args: any[]) => any;
28
- export const URLUtils: any;
29
- }
30
-
31
- declare module '@plone/volto/registry' {
32
- const config: any;
33
- export default config;
34
- }