@kitconcept/volto-light-theme 3.1.0 → 3.1.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
@@ -8,6 +8,19 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 3.1.2 (2024-03-18)
12
+
13
+ ### Internal
14
+
15
+ - Remove @plone/volto peerDepencency @sneridagh [#364](https://github.com/kitconcept/volto-light-theme/pull/364)
16
+ - Add types declarations to make TS happy @sneridagh [#367](https://github.com/kitconcept/volto-light-theme/pull/367)
17
+
18
+ ## 3.1.1 (2024-03-08)
19
+
20
+ ### Bugfix
21
+
22
+ - Fix typo in container deprecation notice @sneridagh [#362](https://github.com/kitconcept/volto-light-theme/pull/362)
23
+
11
24
  ## 3.1.0 (2024-03-08)
12
25
 
13
26
  ### Feature
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@kitconcept/volto-light-theme",
3
- "version": "3.1.0",
3
+ "version": "3.1.2",
4
4
  "description": "Volto Light Theme by kitconcept",
5
5
  "main": "src/index.js",
6
+ "types": "src/types/index.d.ts",
6
7
  "repository": {
7
8
  "type": "git",
8
9
  "url": "git+ssh://git@github.com/kitconcept/volto-light-theme.git"
@@ -74,7 +75,6 @@
74
75
  "@kitconcept/volto-highlight-block": "^3.0.0",
75
76
  "@kitconcept/volto-introduction-block": "^1.0.0",
76
77
  "@kitconcept/volto-separator-block": "^4.0.0",
77
- "@kitconcept/volto-slider-block": "^6.1.0",
78
- "@plone/volto": "^17.15.5"
78
+ "@kitconcept/volto-slider-block": "^6.1.0"
79
79
  }
80
80
  }
@@ -8,7 +8,7 @@ const Container = (props) => {
8
8
 
9
9
  const Component = getElementType(Container, props);
10
10
  // eslint-disable-next-line no-console
11
- console.warning(
11
+ console.warn(
12
12
  'The Container component in: @kitconcept/volto-light-theme/src/components/Atoms/Container/Container.jsx is deprecated, and it will be removed in the next major release of this package. Please use the one in @plone/components instead.',
13
13
  );
14
14
  return (
@@ -0,0 +1 @@
1
+ declare module '@kitconcept/volto-light-theme/*';