cozy-sharing 6.0.0 → 6.0.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
@@ -3,6 +3,17 @@
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
+ ## [6.0.1](https://github.com/cozy/cozy-libs/compare/cozy-sharing@6.0.0...cozy-sharing@6.0.1) (2023-02-02)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Recipient import path not updated in last update ([56b9cfd](https://github.com/cozy/cozy-libs/commit/56b9cfdab402813527982d0ddf857f1e963850b1))
12
+
13
+
14
+
15
+
16
+
6
17
  # 6.0.0 (2023-01-31)
7
18
 
8
19
 
@@ -3,7 +3,7 @@ import _extends from "@babel/runtime/helpers/extends";
3
3
  import React from 'react';
4
4
  import { useI18n } from 'cozy-ui/transpiled/react/I18n';
5
5
  import Typography from 'cozy-ui/transpiled/react/Typography';
6
- import Recipient from './Recipient';
6
+ import Recipient from './Recipient/Recipient';
7
7
  import ShareDialogTwoStepsConfirmationContainer from './ShareDialogTwoStepsConfirmationContainer';
8
8
  /**
9
9
  * Displays the sharing interface that can be used when ConfirmTrustedRecipientsDialog is in sharing state
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-sharing",
3
- "version": "6.0.0",
3
+ "version": "6.0.1",
4
4
  "description": "Provides sharing login for React applications.",
5
5
  "main": "dist/index.js",
6
6
  "author": "Cozy",
@@ -61,5 +61,5 @@
61
61
  "sideEffects": [
62
62
  "*.css"
63
63
  ],
64
- "gitHead": "453292c639960e7a18f51799472d7d1cc06177bb"
64
+ "gitHead": "4db89bade90d5c8889f377f787ee1525f5028ff3"
65
65
  }
@@ -2,7 +2,7 @@ import React from 'react'
2
2
  import { useI18n } from 'cozy-ui/transpiled/react/I18n'
3
3
  import Typography from 'cozy-ui/transpiled/react/Typography'
4
4
 
5
- import Recipient from './Recipient'
5
+ import Recipient from './Recipient/Recipient'
6
6
 
7
7
  import ShareDialogTwoStepsConfirmationContainer from './ShareDialogTwoStepsConfirmationContainer'
8
8