@strapi/plugin-users-permissions 4.5.4 → 4.5.5

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.
@@ -14,7 +14,6 @@ import {
14
14
  } from '@strapi/helper-plugin';
15
15
  import has from 'lodash/has';
16
16
  import upperFirst from 'lodash/upperFirst';
17
- import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
18
17
  import { HeaderLayout, Layout, ContentLayout } from '@strapi/design-system/Layout';
19
18
  import { Main } from '@strapi/design-system/Main';
20
19
  import { useNotifyAT } from '@strapi/design-system/LiveRegions';
@@ -163,16 +162,9 @@ export const ProvidersPage = () => {
163
162
  <LoadingIndicatorPage />
164
163
  ) : (
165
164
  <ContentLayout>
166
- <Table colCount={4} rowCount={rowCount + 1}>
165
+ <Table colCount={3} rowCount={rowCount + 1}>
167
166
  <Thead>
168
167
  <Tr>
169
- <Th>
170
- <Typography variant="sigma" textColor="neutral600">
171
- <VisuallyHidden>
172
- {formatMessage({ id: getTrad('Providers.image'), defaultMessage: 'Image' })}
173
- </VisuallyHidden>
174
- </Typography>
175
- </Th>
176
168
  <Th>
177
169
  <Typography variant="sigma" textColor="neutral600">
178
170
  {formatMessage({ id: 'global.name', defaultMessage: 'Name' })}
@@ -204,9 +196,6 @@ export const ProvidersPage = () => {
204
196
  condition: canUpdate,
205
197
  })}
206
198
  >
207
- <Td width="">
208
- <FontAwesomeIcon icon={provider.icon} />
209
- </Td>
210
199
  <Td width="45%">
211
200
  <Typography fontWeight="semiBold" textColor="neutral800">
212
201
  {provider.name}
@@ -54,7 +54,6 @@
54
54
  "PopUpForm.header.edit.email-templates": "Redigér e-mail skabeloner",
55
55
  "PopUpForm.header.edit.providers": "Redigér udbydere",
56
56
  "Providers.data.loaded": "Providers hentet",
57
- "Providers.image": "Billede",
58
57
  "Providers.status": "Status",
59
58
  "Roles.empty": "Du har endnu ingen roller.",
60
59
  "Roles.empty.search": "Ingen roller matcher søgningen.",
@@ -54,7 +54,6 @@
54
54
  "PopUpForm.header.edit.email-templates": "Edit email template",
55
55
  "PopUpForm.header.edit.providers": "Edit Provider",
56
56
  "Providers.data.loaded": "Providers have been loaded",
57
- "Providers.image": "Image",
58
57
  "Providers.status": "Status",
59
58
  "Roles.empty": "You don't have any roles yet.",
60
59
  "Roles.empty.search": "No roles match the search.",
@@ -54,7 +54,6 @@
54
54
  "PopUpForm.header.edit.email-templates": "Editar Plantillas de Email",
55
55
  "PopUpForm.header.edit.providers": "Editar proveedor",
56
56
  "Providers.data.loaded": "Los proveedores se han cargado",
57
- "Providers.image": "Imagen",
58
57
  "Providers.status": "Estado",
59
58
  "Roles.empty": "Aún no tienes ningún rol.",
60
59
  "Roles.empty.search": "Ningún rol coincide con la búsqueda.",
@@ -54,7 +54,6 @@
54
54
  "PopUpForm.header.edit.email-templates": "이메일 템플릿 수정",
55
55
  "PopUpForm.header.edit.providers": "프로바이더 수정",
56
56
  "Providers.data.loaded": "프로바이더를 불러왔습니다.",
57
- "Providers.image": "이미지",
58
57
  "Providers.status": "상태",
59
58
  "Roles.empty": "아직 역할이 없습니다.",
60
59
  "Roles.empty.search": "검색과 일치하는 역할이 없습니다.",
@@ -54,7 +54,6 @@
54
54
  "PopUpForm.header.edit.email-templates": "Zmień szablony e-mail",
55
55
  "PopUpForm.header.edit.providers": "Edytuj dostawcę",
56
56
  "Providers.data.loaded": "Dostawcy zostali załadowani",
57
- "Providers.image": "Obrazek",
58
57
  "Providers.status": "Status",
59
58
  "Roles.empty": "Nie masz jeszcze żadnych ról.",
60
59
  "Roles.empty.search": "Żadne role nie pasują do wyszukiwania.",
@@ -54,7 +54,6 @@
54
54
  "PopUpForm.header.edit.email-templates": "Redigera e-postmallar",
55
55
  "PopUpForm.header.edit.providers": "Redigera tjänst",
56
56
  "Providers.data.loaded": "Tjänster har laddats in",
57
- "Providers.image": "Bild",
58
57
  "Providers.status": "Status",
59
58
  "Roles.empty": "Du har inga roller än.",
60
59
  "Roles.empty.search": "Inga roller matchar sökningen.",
@@ -54,7 +54,6 @@
54
54
  "PopUpForm.header.edit.email-templates": "編輯郵件範本",
55
55
  "PopUpForm.header.edit.providers": "編輯供應者",
56
56
  "Providers.data.loaded": "已載入供應者",
57
- "Providers.image": "圖片",
58
57
  "Providers.status": "狀態",
59
58
  "Roles.empty": "您目前沒有任何角色。",
60
59
  "Roles.empty.search": "沒有符合搜尋的角色。",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strapi/plugin-users-permissions",
3
- "version": "4.5.4",
3
+ "version": "4.5.5",
4
4
  "description": "Protect your API with a full-authentication process based on JWT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,8 +27,8 @@
27
27
  "test:front:watch:ce": "cross-env IS_EE=false jest --config ./jest.config.front.js --watchAll"
28
28
  },
29
29
  "dependencies": {
30
- "@strapi/helper-plugin": "4.5.4",
31
- "@strapi/utils": "4.5.4",
30
+ "@strapi/helper-plugin": "4.5.5",
31
+ "@strapi/utils": "4.5.5",
32
32
  "bcryptjs": "2.4.3",
33
33
  "grant-koa": "5.4.8",
34
34
  "jsonwebtoken": "^8.1.0",
@@ -64,5 +64,5 @@
64
64
  "required": true,
65
65
  "kind": "plugin"
66
66
  },
67
- "gitHead": "8716ecc920130db5341b0904cf868c6e6b581a5d"
67
+ "gitHead": "8f1988367c1ccbbb1c44866d9dc9fa512e4f3b31"
68
68
  }