@akemona-org/strapi-plugin-i18n 3.13.2 → 3.14.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.
@@ -2,7 +2,7 @@ import styled from 'styled-components';
2
2
 
3
3
  const Wrapper = styled.div`
4
4
  padding-bottom: ${({ paddingBottom }) => paddingBottom};
5
- border-top: 1px solid rgba(14, 22, 34, 0.04);
5
+ border-top: 1px solid rgb(14 22 34 / 4%);
6
6
  `;
7
7
 
8
8
  export default Wrapper;
@@ -17,10 +17,7 @@ const List = styled.ul`
17
17
  `;
18
18
 
19
19
  const ListItem = styled.li`
20
- margin-top: 0;
21
- margin-bottom: 0;
22
- margin-left: -10px;
23
- margin-right: -10px;
20
+ margin: 0 -10px;
24
21
  padding-left: 10px;
25
22
  padding-right: 10px;
26
23
  height: 36px;
@@ -7,12 +7,7 @@ import { Button } from '@buffetjs/core';
7
7
  import { getTrad } from '../../utils';
8
8
  import LocaleList from '../../components/LocaleList';
9
9
 
10
- function LocaleSettingsPage({
11
- canReadLocale,
12
- canCreateLocale,
13
- canDeleteLocale,
14
- canUpdateLocale,
15
- }) {
10
+ function LocaleSettingsPage({ canReadLocale, canCreateLocale, canDeleteLocale, canUpdateLocale }) {
16
11
  const { formatMessage } = useIntl();
17
12
  const [isOpenedCreateModal, setIsOpenedCreateModal] = useState(false);
18
13
 
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "3.13.2",
6
+ "version": "3.14.1",
7
7
  "description": "This plugin enables to create, to read and to update content in different languages, both from the Admin Panel and from the API",
8
8
  "strapi": {
9
9
  "name": "Internationalization",
@@ -12,7 +12,7 @@
12
12
  "required": false
13
13
  },
14
14
  "dependencies": {
15
- "@akemona-org/strapi-utils": "3.13.2",
15
+ "@akemona-org/strapi-utils": "3.14.1",
16
16
  "lodash": "4.17.21",
17
17
  "p-map": "4.0.0",
18
18
  "pluralize": "8.0.0"
@@ -23,9 +23,9 @@
23
23
  "directory": "packages/strapi-plugin-i18n"
24
24
  },
25
25
  "engines": {
26
- "node": ">=14.19.1 <=18.x.x",
26
+ "node": ">=18.17.0 <=20.x.x",
27
27
  "npm": ">=6.0.0"
28
28
  },
29
29
  "license": "SEE LICENSE IN LICENSE",
30
- "gitHead": "b0b438b488e293906dc4041239967f16c68e281a"
30
+ "gitHead": "bbf71e936ef4e8da75771eac49c5f50b36e5166e"
31
31
  }