Updated version to 4.21.0
This commit is contained in:
parent
997e7042e5
commit
91419bd4ee
8 changed files with 5502 additions and 4989 deletions
26
.strapi/client/app.js
Normal file
26
.strapi/client/app.js
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
/**
|
||||||
|
* This file was automatically generated by Strapi.
|
||||||
|
* Any modifications made will be discarded.
|
||||||
|
*/
|
||||||
|
import ckeditor5 from "@_sh/strapi-plugin-ckeditor/strapi-admin";
|
||||||
|
import documentation from "@strapi/plugin-documentation/strapi-admin";
|
||||||
|
import i18N from "@strapi/plugin-i18n/strapi-admin";
|
||||||
|
import usersPermissions from "@strapi/plugin-users-permissions/strapi-admin";
|
||||||
|
import menus from "strapi-plugin-menus/strapi-admin";
|
||||||
|
import navigation from "strapi-plugin-navigation/strapi-admin";
|
||||||
|
import responsiveImage from "strapi-plugin-responsive-image/strapi-admin";
|
||||||
|
import activitypubIntegration from "../../src/plugins/activitypub-integration/strapi-admin";
|
||||||
|
import { renderAdmin } from "@strapi/strapi/admin";
|
||||||
|
|
||||||
|
renderAdmin(document.getElementById("strapi"), {
|
||||||
|
plugins: {
|
||||||
|
ckeditor5: ckeditor5,
|
||||||
|
documentation: documentation,
|
||||||
|
i18n: i18N,
|
||||||
|
"users-permissions": usersPermissions,
|
||||||
|
menus: menus,
|
||||||
|
navigation: navigation,
|
||||||
|
"responsive-image": responsiveImage,
|
||||||
|
"activitypub-integration": activitypubIntegration,
|
||||||
|
},
|
||||||
|
});
|
||||||
62
.strapi/client/index.html
Normal file
62
.strapi/client/index.html
Normal file
|
|
@ -0,0 +1,62 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<!--
|
||||||
|
This file was automatically generated by Strapi.
|
||||||
|
Any modifications made will be discarded.
|
||||||
|
-->
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta
|
||||||
|
name="viewport"
|
||||||
|
content="width=device-width, initial-scale=1, viewport-fit=cover"
|
||||||
|
/>
|
||||||
|
<meta name="robots" content="noindex" />
|
||||||
|
<meta name="referrer" content="same-origin" />
|
||||||
|
<title>Strapi Admin</title>
|
||||||
|
<style>
|
||||||
|
html,
|
||||||
|
body,
|
||||||
|
#strapi {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="strapi"></div>
|
||||||
|
<noscript
|
||||||
|
><div class="strapi--root">
|
||||||
|
<div class="strapi--no-js">
|
||||||
|
<style type="text/css">
|
||||||
|
.strapi--root {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.strapi--no-js {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
text-align: center;
|
||||||
|
font-family: helvetica, arial, sans-serif;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<h1>JavaScript disabled</h1>
|
||||||
|
<p>
|
||||||
|
Please
|
||||||
|
<a href="https://www.enable-javascript.com/">enable JavaScript</a>
|
||||||
|
in your browser and reload the page to proceed.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div></noscript
|
||||||
|
>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -2,6 +2,10 @@ module.exports = () => {
|
||||||
return {
|
return {
|
||||||
ckeditor5: {
|
ckeditor5: {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
},
|
},
|
||||||
|
'activitypub-integration': {
|
||||||
|
enabled: true,
|
||||||
|
resolve: './src/plugins/activitypub-integration' // path to plugin folder
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
20
package.json
20
package.json
|
|
@ -12,16 +12,20 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@_sh/strapi-plugin-ckeditor": "^2.0.4",
|
"@_sh/strapi-plugin-ckeditor": "^2.0.4",
|
||||||
"@ckeditor/ckeditor5-block-quote": "^39.0.0",
|
"@ckeditor/ckeditor5-block-quote": "^39.0.0",
|
||||||
"@strapi/plugin-documentation": "^4.10.5",
|
"@strapi/plugin-documentation": "^4.21.1",
|
||||||
"@strapi/plugin-i18n": "4.10.5",
|
"@strapi/plugin-i18n": "4.21.1",
|
||||||
"@strapi/plugin-users-permissions": "4.10.5",
|
"@strapi/plugin-users-permissions": "4.21.1",
|
||||||
"@strapi/strapi": "4.10.5",
|
"@strapi/strapi": "4.21.1",
|
||||||
"better-sqlite3": "7.4.6",
|
"better-sqlite3": "7.4.6",
|
||||||
"mysql": "^2.18.1",
|
"mysql": "^2.18.1",
|
||||||
"strapi-plugin-local-image-sharp": "^1.6.0",
|
"react": "^18.0.0",
|
||||||
"strapi-plugin-menus": "^0.3.2",
|
"react-dom": "^18.0.0",
|
||||||
"strapi-plugin-navigation": "^2.0.13",
|
"react-router-dom": "^5.2.0",
|
||||||
"strapi-plugin-responsive-image": "^1.1.0"
|
"strapi-plugin-local-image-sharp": "^1.7.0",
|
||||||
|
"strapi-plugin-menus": "^1.6.1",
|
||||||
|
"strapi-plugin-navigation": "^2.4.0",
|
||||||
|
"strapi-plugin-responsive-image": "^1.2.0",
|
||||||
|
"styled-components": "^5.2.1"
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "A Strapi developer"
|
"name": "A Strapi developer"
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
"name": "Apache 2.0",
|
"name": "Apache 2.0",
|
||||||
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
|
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
|
||||||
},
|
},
|
||||||
"x-generation-date": "2024-03-31T01:56:01.090Z"
|
"x-generation-date": "2024-04-01T03:38:01.188Z"
|
||||||
},
|
},
|
||||||
"x-strapi-config": {
|
"x-strapi-config": {
|
||||||
"path": "/documentation",
|
"path": "/documentation",
|
||||||
|
|
@ -538,6 +538,7 @@
|
||||||
"action": {
|
"action": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"actionParameters": {},
|
||||||
"subject": {
|
"subject": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
|
@ -1957,6 +1958,7 @@
|
||||||
"action": {
|
"action": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"actionParameters": {},
|
||||||
"subject": {
|
"subject": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
|
@ -2912,6 +2914,7 @@
|
||||||
"action": {
|
"action": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"actionParameters": {},
|
||||||
"subject": {
|
"subject": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
|
@ -3776,6 +3779,7 @@
|
||||||
"action": {
|
"action": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"actionParameters": {},
|
||||||
"subject": {
|
"subject": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
|
@ -4446,6 +4450,7 @@
|
||||||
"action": {
|
"action": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"actionParameters": {},
|
||||||
"subject": {
|
"subject": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
|
@ -6312,6 +6317,7 @@
|
||||||
"action": {
|
"action": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"actionParameters": {},
|
||||||
"subject": {
|
"subject": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
|
@ -7903,6 +7909,7 @@
|
||||||
"action": {
|
"action": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"actionParameters": {},
|
||||||
"subject": {
|
"subject": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
|
@ -9300,6 +9307,7 @@
|
||||||
"action": {
|
"action": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"actionParameters": {},
|
||||||
"subject": {
|
"subject": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
|
@ -14672,7 +14680,7 @@
|
||||||
},
|
},
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "Successfull registration",
|
"description": "Successful registration",
|
||||||
"content": {
|
"content": {
|
||||||
"application/json": {
|
"application/json": {
|
||||||
"schema": {
|
"schema": {
|
||||||
|
|
|
||||||
5
types/generated/components.d.ts
vendored
Normal file
5
types/generated/components.d.ts
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
import type { Schema, Attribute } from '@strapi/strapi';
|
||||||
|
|
||||||
|
declare module '@strapi/types' {
|
||||||
|
export module Shared {}
|
||||||
|
}
|
||||||
1458
types/generated/contentTypes.d.ts
vendored
Normal file
1458
types/generated/contentTypes.d.ts
vendored
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue