@bigbinary/neeto-team-members-frontend 4.4.20 → 4.4.21
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/dist/Roles.js +4 -1
- package/dist/Roles.js.map +1 -1
- package/dist/cjs/Roles.js +3 -0
- package/dist/cjs/Roles.js.map +1 -1
- package/package.json +3 -3
package/dist/cjs/Roles.js
CHANGED
|
@@ -1845,6 +1845,7 @@ var Row = function Row(_ref) {
|
|
|
1845
1845
|
children: roles.map(function (role) {
|
|
1846
1846
|
return /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
1847
1847
|
className: "ntm-roles-table__cell",
|
|
1848
|
+
"data-cy": "".concat(neetoCist.hyphenate(role.name), "-role-cell"),
|
|
1848
1849
|
style: {
|
|
1849
1850
|
height: getRowClientHeight(permission)
|
|
1850
1851
|
},
|
|
@@ -2032,6 +2033,7 @@ var Columns = function Columns(_ref) {
|
|
|
2032
2033
|
var isPermissionVisible = groupedPermissions.get("isPermissionVisible");
|
|
2033
2034
|
var permissions = groupedPermissions.get("permissions");
|
|
2034
2035
|
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
2036
|
+
"data-cy": "".concat(neetoCist.hyphenate(category), "-permission-card"),
|
|
2035
2037
|
children: [/*#__PURE__*/jsxRuntime.jsx(Row, {
|
|
2036
2038
|
config: config,
|
|
2037
2039
|
setManageRole: setManageRole,
|
|
@@ -2042,6 +2044,7 @@ var Columns = function Columns(_ref) {
|
|
|
2042
2044
|
config: config,
|
|
2043
2045
|
permission: permission,
|
|
2044
2046
|
setManageRole: setManageRole,
|
|
2047
|
+
"data-cy": "".concat(neetoCist.hyphenate(permission), "-permission-row"),
|
|
2045
2048
|
key: permission.id,
|
|
2046
2049
|
roles: filteredRoles
|
|
2047
2050
|
});
|