cozy-harvest-lib 20.2.2 → 20.2.4

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
@@ -3,6 +3,28 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [20.2.4](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@20.2.3...cozy-harvest-lib@20.2.4) (2023-11-16)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **harvest:** Remove SuggestionContainer from flow ([24db015](https://github.com/cozy/cozy-libs/commit/24db0153359fd50b46950fa9898c87099d8faa74))
12
+
13
+
14
+
15
+
16
+
17
+ ## [20.2.3](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@20.2.2...cozy-harvest-lib@20.2.3) (2023-11-15)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **harvest:** Wrap SuggestionModal with theme ([f188a1b](https://github.com/cozy/cozy-libs/commit/f188a1b623a3262e8c97852c71d4315317a8e334))
23
+
24
+
25
+
26
+
27
+
6
28
  ## [20.2.2](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@20.2.1...cozy-harvest-lib@20.2.2) (2023-11-15)
7
29
 
8
30
 
@@ -13,8 +13,8 @@ import { generateWebLink, useClient } from 'cozy-client';
13
13
  import AppLinker from 'cozy-ui/transpiled/react/AppLinker';
14
14
  import Button from 'cozy-ui/transpiled/react/Buttons';
15
15
  import { IllustrationDialog } from 'cozy-ui/transpiled/react/CozyDialogs';
16
- import MuiCozyTheme from 'cozy-ui/transpiled/react/MuiCozyTheme';
17
16
  import Typography from 'cozy-ui/transpiled/react/Typography';
17
+ import CozyTheme from 'cozy-ui/transpiled/react/providers/CozyTheme';
18
18
  import { useI18n } from 'cozy-ui/transpiled/react/providers/I18n';
19
19
  import DataTypes from './DataTypes';
20
20
  import Illustration from './Illustration';
@@ -82,7 +82,10 @@ var KonnectorSuggestionModal = function KonnectorSuggestionModal(_ref) {
82
82
  };
83
83
  }();
84
84
 
85
- return /*#__PURE__*/React.createElement(MuiCozyTheme, null, /*#__PURE__*/React.createElement(IllustrationDialog, {
85
+ return /*#__PURE__*/React.createElement(CozyTheme, {
86
+ variant: "normal",
87
+ className: "u-pos-absolute"
88
+ }, /*#__PURE__*/React.createElement(IllustrationDialog, {
86
89
  open: true,
87
90
  onClose: onClose,
88
91
  content: /*#__PURE__*/React.createElement("div", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-harvest-lib",
3
- "version": "20.2.2",
3
+ "version": "20.2.4",
4
4
  "description": "Provides logic, modules and components for Cozy's harvest applications.",
5
5
  "main": "dist/index.js",
6
6
  "author": "Cozy",
@@ -112,5 +112,5 @@
112
112
  "react-router-dom": ">=4.3.1"
113
113
  },
114
114
  "sideEffects": false,
115
- "gitHead": "288b108251db7078b0f412f5fdd34bc2b87c20be"
115
+ "gitHead": "c97ab0de526c3e7bf6fa81fd2a5f57c0c2bd4cfb"
116
116
  }
@@ -5,8 +5,8 @@ import { generateWebLink, useClient } from 'cozy-client'
5
5
  import AppLinker from 'cozy-ui/transpiled/react/AppLinker'
6
6
  import Button from 'cozy-ui/transpiled/react/Buttons'
7
7
  import { IllustrationDialog } from 'cozy-ui/transpiled/react/CozyDialogs'
8
- import MuiCozyTheme from 'cozy-ui/transpiled/react/MuiCozyTheme'
9
8
  import Typography from 'cozy-ui/transpiled/react/Typography'
9
+ import CozyTheme from 'cozy-ui/transpiled/react/providers/CozyTheme'
10
10
  import { useI18n } from 'cozy-ui/transpiled/react/providers/I18n'
11
11
 
12
12
  import DataTypes from './DataTypes'
@@ -44,7 +44,7 @@ const KonnectorSuggestionModal = ({
44
44
  }
45
45
 
46
46
  return (
47
- <MuiCozyTheme>
47
+ <CozyTheme variant="normal" className="u-pos-absolute">
48
48
  <IllustrationDialog
49
49
  open
50
50
  onClose={onClose}
@@ -104,7 +104,7 @@ const KonnectorSuggestionModal = ({
104
104
  </>
105
105
  }
106
106
  />
107
- </MuiCozyTheme>
107
+ </CozyTheme>
108
108
  )
109
109
  }
110
110