passbolt-styleguide 3.4.0-alpha2 → 3.4.0-alpha3

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.
@@ -234,6 +234,8 @@ object-assign
234
234
 
235
235
  /*! ../internals/array-slice */
236
236
 
237
+ /*! ../internals/array-slice-simple */
238
+
237
239
  /*! ../internals/array-sort */
238
240
 
239
241
  /*! ../internals/array-species-constructor */
@@ -628,10 +630,6 @@ object-assign
628
630
  !*** ./node_modules/react/index.js ***!
629
631
  \*************************************/
630
632
 
631
- /*!***************************************!*\
632
- !*** ./node_modules/isarray/index.js ***!
633
- \***************************************/
634
-
635
633
  /*!*****************************************!*\
636
634
  !*** ./node_modules/react-dom/index.js ***!
637
635
  \*****************************************/
@@ -1436,6 +1434,14 @@ object-assign
1436
1434
  !*** ./node_modules/core-js-pure/internals/add-to-unscopables.js ***!
1437
1435
  \*******************************************************************/
1438
1436
 
1437
+ /*!*******************************************************************!*\
1438
+ !*** ./node_modules/core-js-pure/internals/array-slice-simple.js ***!
1439
+ \*******************************************************************/
1440
+
1441
+ /*!*******************************************************************!*\
1442
+ !*** ./node_modules/path-to-regexp/node_modules/isarray/index.js ***!
1443
+ \*******************************************************************/
1444
+
1439
1445
  /*!*******************************************************************!*\
1440
1446
  !*** ./node_modules/react-router/esm/react-router.js + 1 modules ***!
1441
1447
  \*******************************************************************/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "passbolt-styleguide",
3
- "version": "3.4.0-alpha2",
3
+ "version": "3.4.0-alpha3",
4
4
  "license": "AGPL-3.0",
5
5
  "copyright": "Copyright 2021 Passbolt SA",
6
6
  "description": "Passbolt styleguide contains common styling assets used by the different sites, plugin, etc.",
@@ -53,7 +53,7 @@
53
53
  "luxon": "^1.27.0",
54
54
  "npm-force-resolutions": "0.0.10",
55
55
  "prop-types": "^15.7.2",
56
- "qrcode": "^1.5.0",
56
+ "qrcode": "1.4.4",
57
57
  "react": "16.14.0",
58
58
  "react-color": "^2.19.3",
59
59
  "react-dom": "16.14.0",
@@ -289,7 +289,7 @@ class DeleteUserWithConflicts extends Component {
289
289
  handleOnChangeManager(event, groupId) {
290
290
  const target = event.target;
291
291
  const permissionId = target.value;
292
- const managers = this.state.owners;
292
+ const managers = this.state.managers;
293
293
  // assign the new folderId or resourceId with the permissionId
294
294
  Object.assign(managers, {[groupId]: permissionId});
295
295
  this.setState({managers});