@strapi/plugin-documentation 4.7.0 → 4.7.2-exp.24dd7d95972fa822bf43e9b095b51027402c229e

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.
@@ -15,7 +15,7 @@ import {
15
15
  Main,
16
16
  Button,
17
17
  Box,
18
- Stack,
18
+ Flex,
19
19
  Typography,
20
20
  ToggleInput,
21
21
  TextInput,
@@ -91,7 +91,7 @@ const SettingsPage = () => {
91
91
  paddingLeft={7}
92
92
  paddingRight={7}
93
93
  >
94
- <Stack spacing={4}>
94
+ <Flex direction="column" alignItems="stretch" gap={4}>
95
95
  <Typography variant="delta" as="h2">
96
96
  {formatMessage({
97
97
  id: 'global.settings',
@@ -168,7 +168,7 @@ const SettingsPage = () => {
168
168
  </GridItem>
169
169
  )}
170
170
  </Grid>
171
- </Stack>
171
+ </Flex>
172
172
  </Box>
173
173
  </ContentLayout>
174
174
  </Form>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strapi/plugin-documentation",
3
- "version": "4.7.0",
3
+ "version": "4.7.2-exp.24dd7d95972fa822bf43e9b095b51027402c229e",
4
4
  "description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,33 +24,44 @@
24
24
  "test": "echo \"no tests yet\""
25
25
  },
26
26
  "dependencies": {
27
- "@strapi/helper-plugin": "4.7.0",
28
- "@strapi/utils": "4.7.0",
27
+ "@strapi/design-system": "1.6.3",
28
+ "@strapi/helper-plugin": "4.7.2-exp.24dd7d95972fa822bf43e9b095b51027402c229e",
29
+ "@strapi/icons": "1.6.3",
30
+ "@strapi/utils": "4.7.2-exp.24dd7d95972fa822bf43e9b095b51027402c229e",
29
31
  "bcryptjs": "2.4.3",
30
32
  "cheerio": "^1.0.0-rc.12",
33
+ "formik": "2.2.9",
31
34
  "fs-extra": "10.0.0",
32
35
  "koa-static": "^5.0.0",
33
36
  "lodash": "4.17.21",
34
37
  "path-to-regexp": "6.2.1",
35
38
  "pluralize": "8.0.0",
36
- "react": "^17.0.2",
37
39
  "react-copy-to-clipboard": "^5.1.0",
38
- "react-dom": "^17.0.2",
40
+ "react-helmet": "^6.1.0",
39
41
  "react-intl": "6.2.8",
42
+ "react-query": "3.24.3",
40
43
  "react-redux": "8.0.5",
41
- "react-router": "^5.2.0",
42
- "react-router-dom": "5.3.4",
43
44
  "redux": "^4.2.1",
44
- "reselect": "^4.0.0",
45
+ "reselect": "^4.1.7",
45
46
  "swagger-ui-dist": "4.15.5",
46
- "yaml": "1.10.2"
47
+ "yaml": "1.10.2",
48
+ "yup": "^0.32.9"
47
49
  },
48
50
  "peerDependencies": {
49
- "@strapi/strapi": "^4.0.0"
51
+ "@strapi/strapi": "^4.0.0",
52
+ "react": "^17.0.2",
53
+ "react-dom": "^17.0.2",
54
+ "react-router-dom": "5.3.4",
55
+ "styled-components": "5.3.3"
50
56
  },
51
57
  "devDependencies": {
52
58
  "@testing-library/react": "12.1.4",
53
- "msw": "1.0.1"
59
+ "history": "^4.9.0",
60
+ "msw": "1.0.1",
61
+ "react": "^17.0.2",
62
+ "react-dom": "^17.0.2",
63
+ "react-router-dom": "5.3.4",
64
+ "styled-components": "5.3.3"
54
65
  },
55
66
  "engines": {
56
67
  "node": ">=14.19.1 <=18.x.x",
@@ -62,5 +73,5 @@
62
73
  "description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.",
63
74
  "kind": "plugin"
64
75
  },
65
- "gitHead": "948dbb3121330ffd43f3a4f55522c797770e0b2a"
76
+ "gitHead": "24dd7d95972fa822bf43e9b095b51027402c229e"
66
77
  }