@strapi/plugin-users-permissions 4.15.0 → 4.15.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.
Files changed (2) hide show
  1. package/admin/src/index.js +5 -15
  2. package/package.json +4 -4
@@ -33,9 +33,7 @@ export default {
33
33
  id: 'roles',
34
34
  to: `/settings/users-permissions/roles`,
35
35
  async Component() {
36
- const component = await import(
37
- /* webpackChunkName: "users-roles-settings-page" */ './pages/Roles'
38
- );
36
+ const component = await import('./pages/Roles');
39
37
 
40
38
  return component;
41
39
  },
@@ -49,9 +47,7 @@ export default {
49
47
  id: 'providers',
50
48
  to: `/settings/users-permissions/providers`,
51
49
  async Component() {
52
- const component = await import(
53
- /* webpackChunkName: "users-providers-settings-page" */ './pages/Providers'
54
- );
50
+ const component = await import('./pages/Providers');
55
51
 
56
52
  return component;
57
53
  },
@@ -65,9 +61,7 @@ export default {
65
61
  id: 'email-templates',
66
62
  to: `/settings/users-permissions/email-templates`,
67
63
  async Component() {
68
- const component = await import(
69
- /* webpackChunkName: "users-email-settings-page" */ './pages/EmailTemplates'
70
- );
64
+ const component = await import('./pages/EmailTemplates');
71
65
 
72
66
  return component;
73
67
  },
@@ -81,9 +75,7 @@ export default {
81
75
  id: 'advanced-settings',
82
76
  to: `/settings/users-permissions/advanced-settings`,
83
77
  async Component() {
84
- const component = await import(
85
- /* webpackChunkName: "users-advanced-settings-page" */ './pages/AdvancedSettings'
86
- );
78
+ const component = await import('./pages/AdvancedSettings');
87
79
 
88
80
  return component;
89
81
  },
@@ -101,9 +93,7 @@ export default {
101
93
  async registerTrads({ locales }) {
102
94
  const importedTrads = await Promise.all(
103
95
  locales.map((locale) => {
104
- return import(
105
- /* webpackChunkName: "users-permissions-translation-[request]" */ `./translations/${locale}.json`
106
- )
96
+ return import(`./translations/${locale}.json`)
107
97
  .then(({ default: data }) => {
108
98
  return {
109
99
  data: prefixPluginTranslations(data, 'users-permissions'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strapi/plugin-users-permissions",
3
- "version": "4.15.0",
3
+ "version": "4.15.1",
4
4
  "description": "Protect your API with a full-authentication process based on JWT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -30,9 +30,9 @@
30
30
  },
31
31
  "dependencies": {
32
32
  "@strapi/design-system": "1.13.0",
33
- "@strapi/helper-plugin": "4.15.0",
33
+ "@strapi/helper-plugin": "4.15.1",
34
34
  "@strapi/icons": "1.13.0",
35
- "@strapi/utils": "4.15.0",
35
+ "@strapi/utils": "4.15.1",
36
36
  "bcryptjs": "2.4.3",
37
37
  "formik": "2.4.0",
38
38
  "grant-koa": "5.4.8",
@@ -77,5 +77,5 @@
77
77
  "required": true,
78
78
  "kind": "plugin"
79
79
  },
80
- "gitHead": "6e44e1e68db5153e485e61bdc03f42efb0311406"
80
+ "gitHead": "b6c085052f108fcfe47d22972a664dfa85aa0358"
81
81
  }