@nocobase/plugin-comments 2.0.3
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.
- package/LICENSE +201 -0
- package/README.md +99 -0
- package/client.d.ts +2 -0
- package/client.js +1 -0
- package/dist/client/260481019096d1d7.js +10 -0
- package/dist/client/26ed8f932127afec.js +10 -0
- package/dist/client/2f8d64984e7c9bd3.js +10 -0
- package/dist/client/collection-templates/comment.d.ts +40 -0
- package/dist/client/comment/Comment.Decorator.d.ts +10 -0
- package/dist/client/comment/Comment.Item.d.ts +15 -0
- package/dist/client/comment/Comment.List.d.ts +10 -0
- package/dist/client/comment/Comment.Settings.d.ts +18 -0
- package/dist/client/comment/Comment.Submit.d.ts +10 -0
- package/dist/client/comment/index.d.ts +23 -0
- package/dist/client/comment/style.d.ts +10 -0
- package/dist/client/d75d43be6a3bbb6b.js +10 -0
- package/dist/client/hooks/useCommentBlockDecoratorProps.d.ts +17 -0
- package/dist/client/index.d.ts +23 -0
- package/dist/client/index.js +10 -0
- package/dist/client/locale/index.d.ts +11 -0
- package/dist/client/models/CommentActions.d.ts +10 -0
- package/dist/client/models/CommentItem.d.ts +10 -0
- package/dist/client/models/CommentList.d.ts +10 -0
- package/dist/client/models/CommentSubmit.d.ts +18 -0
- package/dist/client/models/CommentsBlockModel.d.ts +25 -0
- package/dist/client/models/actions/CommentActionGroupModel.d.ts +14 -0
- package/dist/client/models/actions/DeleteCommentActionModel.d.ts +14 -0
- package/dist/client/models/actions/EditCommentActionModel.d.ts +14 -0
- package/dist/client/models/actions/QuoteReplyActionModel.d.ts +14 -0
- package/dist/client/models/actions/index.d.ts +12 -0
- package/dist/client/models/style.d.ts +10 -0
- package/dist/client/provider/useCommentBlockDecoratorContext.d.ts +22 -0
- package/dist/client/schema-initializer/createCommentBlockUISchema.d.ts +23 -0
- package/dist/client/schema-initializer/initializers/CommentBlockInitializer.d.ts +13 -0
- package/dist/client/schema-initializer/initializers/index.d.ts +17 -0
- package/dist/client/schema-initializer/items/CommentItemActionInitializers.d.ts +15 -0
- package/dist/client/schema-initializer/items/index.d.ts +17 -0
- package/dist/externalVersion.js +24 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.js +48 -0
- package/dist/locale/de-DE.json +15 -0
- package/dist/locale/en-US.json +15 -0
- package/dist/locale/es-ES.json +15 -0
- package/dist/locale/fr-FR.json +15 -0
- package/dist/locale/hu-HU.json +15 -0
- package/dist/locale/id-ID.json +15 -0
- package/dist/locale/it-IT.json +15 -0
- package/dist/locale/ja-JP.json +15 -0
- package/dist/locale/ko-KR.json +15 -0
- package/dist/locale/nl-NL.json +15 -0
- package/dist/locale/pt-BR.json +15 -0
- package/dist/locale/ru-RU.json +15 -0
- package/dist/locale/tr-TR.json +15 -0
- package/dist/locale/uk-UA.json +15 -0
- package/dist/locale/vi-VN.json +15 -0
- package/dist/locale/zh-CN.json +17 -0
- package/dist/locale/zh-TW.json +15 -0
- package/dist/server/index.d.ts +17 -0
- package/dist/server/index.js +42 -0
- package/dist/server/plugin.d.ts +27 -0
- package/dist/server/plugin.js +54 -0
- package/package.json +32 -0
- package/server.d.ts +2 -0
- package/server.js +1 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cancel": "Mégsem",
|
|
3
|
+
"Comment": "Megjegyzés",
|
|
4
|
+
"Comment Collection": "Megjegyzés gyűjtemény",
|
|
5
|
+
"Comment Content": "Megjegyzés tartalom",
|
|
6
|
+
"Comment action": "Comment action",
|
|
7
|
+
"Comments": "Comments",
|
|
8
|
+
"Delete": "Törlés",
|
|
9
|
+
"Edit": "Szerkesztés",
|
|
10
|
+
"Enable Create": "Megjegyzések hozzáadásának engedélyezése",
|
|
11
|
+
"Quote Reply": "Idézet válasz",
|
|
12
|
+
"Quote reply": "Quote reply",
|
|
13
|
+
"Update Comment": "Megjegyzés frissítése",
|
|
14
|
+
"commented": "megjegyezte"
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cancel": "Batal",
|
|
3
|
+
"Comment": "Komentar",
|
|
4
|
+
"Comment Collection": "Koleksi Komentar",
|
|
5
|
+
"Comment Content": "Konten",
|
|
6
|
+
"Comment action": "Comment action",
|
|
7
|
+
"Comments": "Comments",
|
|
8
|
+
"Delete": "Hapus",
|
|
9
|
+
"Edit": "Edit",
|
|
10
|
+
"Enable Create": "Izinkan menambah komentar",
|
|
11
|
+
"Quote Reply": "Balas Kutipan",
|
|
12
|
+
"Quote reply": "Quote reply",
|
|
13
|
+
"Update Comment": "Perbarui komentar",
|
|
14
|
+
"commented": "dikomentari"
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cancel": "Cancel",
|
|
3
|
+
"Comment": "Comment",
|
|
4
|
+
"Comment Collection": "Comment collection",
|
|
5
|
+
"Comment Content": "Content",
|
|
6
|
+
"Comment action": "Comment action",
|
|
7
|
+
"Comments": "Comments",
|
|
8
|
+
"Delete": "Delete",
|
|
9
|
+
"Edit": "Edit",
|
|
10
|
+
"Enable Create": "Allow adding comments",
|
|
11
|
+
"Quote Reply": "Quote reply",
|
|
12
|
+
"Quote reply": "Quote reply",
|
|
13
|
+
"Update Comment": "Update comment",
|
|
14
|
+
"commented": "commented"
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cancel": "キャンセル",
|
|
3
|
+
"Comment": "コメント",
|
|
4
|
+
"Comment Collection": "コメントコレクション",
|
|
5
|
+
"Comment Content": "コンテンツ",
|
|
6
|
+
"Comment action": "Comment action",
|
|
7
|
+
"Comments": "Comments",
|
|
8
|
+
"Delete": "削除",
|
|
9
|
+
"Edit": "編集",
|
|
10
|
+
"Enable Create": "コメント追加を許可",
|
|
11
|
+
"Quote Reply": "引用返信",
|
|
12
|
+
"Quote reply": "Quote reply",
|
|
13
|
+
"Update Comment": "コメント更新",
|
|
14
|
+
"commented": "にコメント"
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cancel": "취소",
|
|
3
|
+
"Comment": "댓글",
|
|
4
|
+
"Comment Collection": "댓글 모음",
|
|
5
|
+
"Comment Content": "댓글 내용",
|
|
6
|
+
"Comment action": "Comment action",
|
|
7
|
+
"Comments": "Comments",
|
|
8
|
+
"Delete": "삭제",
|
|
9
|
+
"Edit": "편집",
|
|
10
|
+
"Enable Create": "의견 추가 허용",
|
|
11
|
+
"Quote Reply": "인용 및 답장",
|
|
12
|
+
"Quote reply": "Quote reply",
|
|
13
|
+
"Update Comment": "댓글 업데이트",
|
|
14
|
+
"commented": "댓글 작성됨"
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cancel": "Cancel",
|
|
3
|
+
"Comment": "Comment",
|
|
4
|
+
"Comment Collection": "Comment collection",
|
|
5
|
+
"Comment Content": "Content",
|
|
6
|
+
"Comment action": "Comment action",
|
|
7
|
+
"Comments": "Comments",
|
|
8
|
+
"Delete": "Delete",
|
|
9
|
+
"Edit": "Edit",
|
|
10
|
+
"Enable Create": "Allow adding comments",
|
|
11
|
+
"Quote Reply": "Quote reply",
|
|
12
|
+
"Quote reply": "Quote reply",
|
|
13
|
+
"Update Comment": "Update comment",
|
|
14
|
+
"commented": "commented"
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cancel": "Cancel",
|
|
3
|
+
"Comment": "Comment",
|
|
4
|
+
"Comment Collection": "Comment collection",
|
|
5
|
+
"Comment Content": "Content",
|
|
6
|
+
"Comment action": "Comment action",
|
|
7
|
+
"Comments": "Comments",
|
|
8
|
+
"Delete": "Delete",
|
|
9
|
+
"Edit": "Edit",
|
|
10
|
+
"Enable Create": "Allow adding comments",
|
|
11
|
+
"Quote Reply": "Quote reply",
|
|
12
|
+
"Quote reply": "Quote reply",
|
|
13
|
+
"Update Comment": "Update comment",
|
|
14
|
+
"commented": "commented"
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cancel": "Отменить",
|
|
3
|
+
"Comment": "Комментарий",
|
|
4
|
+
"Comment Collection": "Коллекция комментариев",
|
|
5
|
+
"Comment Content": "Содержимое комментария",
|
|
6
|
+
"Comment action": "Comment action",
|
|
7
|
+
"Comments": "Comments",
|
|
8
|
+
"Delete": "Удалить",
|
|
9
|
+
"Edit": "Редактировать",
|
|
10
|
+
"Enable Create": "Разрешить добавление комментариев",
|
|
11
|
+
"Quote Reply": "Цитировать ответ",
|
|
12
|
+
"Quote reply": "Quote reply",
|
|
13
|
+
"Update Comment": "Обновить комментарий",
|
|
14
|
+
"commented": "прокомментировал"
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cancel": "Cancel",
|
|
3
|
+
"Comment": "Comment",
|
|
4
|
+
"Comment Collection": "Comment collection",
|
|
5
|
+
"Comment Content": "Content",
|
|
6
|
+
"Comment action": "Comment action",
|
|
7
|
+
"Comments": "Comments",
|
|
8
|
+
"Delete": "Delete",
|
|
9
|
+
"Edit": "Edit",
|
|
10
|
+
"Enable Create": "Allow adding comments",
|
|
11
|
+
"Quote Reply": "Quote reply",
|
|
12
|
+
"Quote reply": "Quote reply",
|
|
13
|
+
"Update Comment": "Update comment",
|
|
14
|
+
"commented": "commented"
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cancel": "Cancel",
|
|
3
|
+
"Comment": "Comment",
|
|
4
|
+
"Comment Collection": "Comment collection",
|
|
5
|
+
"Comment Content": "Content",
|
|
6
|
+
"Comment action": "Comment action",
|
|
7
|
+
"Comments": "Comments",
|
|
8
|
+
"Delete": "Delete",
|
|
9
|
+
"Edit": "Edit",
|
|
10
|
+
"Enable Create": "Allow adding comments",
|
|
11
|
+
"Quote Reply": "Quote reply",
|
|
12
|
+
"Quote reply": "Quote reply",
|
|
13
|
+
"Update Comment": "Update comment",
|
|
14
|
+
"commented": "commented"
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cancel": "Cancel",
|
|
3
|
+
"Comment": "Comment",
|
|
4
|
+
"Comment Collection": "Comment collection",
|
|
5
|
+
"Comment Content": "Content",
|
|
6
|
+
"Comment action": "Comment action",
|
|
7
|
+
"Comments": "Comments",
|
|
8
|
+
"Delete": "Delete",
|
|
9
|
+
"Edit": "Edit",
|
|
10
|
+
"Enable Create": "Allow adding comments",
|
|
11
|
+
"Quote Reply": "Quote reply",
|
|
12
|
+
"Quote reply": "Quote reply",
|
|
13
|
+
"Update Comment": "Update comment",
|
|
14
|
+
"commented": "commented"
|
|
15
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cancel": "取消",
|
|
3
|
+
"Comment": "评论",
|
|
4
|
+
"Comment Collection": "评论表",
|
|
5
|
+
"Comment Content": "评论内容",
|
|
6
|
+
"Comment action": "评论操作",
|
|
7
|
+
"Comments": "评论",
|
|
8
|
+
"Delete": "删除",
|
|
9
|
+
"Edit": "编辑",
|
|
10
|
+
"Enable Create": "允许增加评论",
|
|
11
|
+
"Quote Reply": "引用并回复",
|
|
12
|
+
"Quote reply": "引用并回复",
|
|
13
|
+
"Update Comment": "更新评论",
|
|
14
|
+
"commented": "评论于",
|
|
15
|
+
"The current collection is not a comment collection, so the comment block cannot be used.": "当前表不是评论表,无法使用评论区块。",
|
|
16
|
+
"Comments settings":"评论区块设置"
|
|
17
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cancel": "Cancel",
|
|
3
|
+
"Comment": "Comment",
|
|
4
|
+
"Comment Collection": "Comment collection",
|
|
5
|
+
"Comment Content": "Content",
|
|
6
|
+
"Comment action": "Comment action",
|
|
7
|
+
"Comments": "Comments",
|
|
8
|
+
"Delete": "Delete",
|
|
9
|
+
"Edit": "Edit",
|
|
10
|
+
"Enable Create": "Allow adding comments",
|
|
11
|
+
"Quote Reply": "Quote reply",
|
|
12
|
+
"Quote reply": "Quote reply",
|
|
13
|
+
"Update Comment": "Update comment",
|
|
14
|
+
"commented": "commented"
|
|
15
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
/**
|
|
10
|
+
* This file is part of the NocoBase (R) project.
|
|
11
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
12
|
+
* Authors: NocoBase Team.
|
|
13
|
+
*
|
|
14
|
+
* This program is offered under a commercial license.
|
|
15
|
+
* For more information, see <https://www.nocobase.com/agreement>
|
|
16
|
+
*/
|
|
17
|
+
export { default } from './plugin';
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
var __create = Object.create;
|
|
11
|
+
var __defProp = Object.defineProperty;
|
|
12
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
13
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
14
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
15
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
16
|
+
var __export = (target, all) => {
|
|
17
|
+
for (var name in all)
|
|
18
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
19
|
+
};
|
|
20
|
+
var __copyProps = (to, from, except, desc) => {
|
|
21
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
22
|
+
for (let key of __getOwnPropNames(from))
|
|
23
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
24
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
25
|
+
}
|
|
26
|
+
return to;
|
|
27
|
+
};
|
|
28
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
29
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
30
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
31
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
32
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
33
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
34
|
+
mod
|
|
35
|
+
));
|
|
36
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
37
|
+
var server_exports = {};
|
|
38
|
+
__export(server_exports, {
|
|
39
|
+
default: () => import_plugin.default
|
|
40
|
+
});
|
|
41
|
+
module.exports = __toCommonJS(server_exports);
|
|
42
|
+
var import_plugin = __toESM(require("./plugin"));
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
/**
|
|
10
|
+
* This file is part of the NocoBase (R) project.
|
|
11
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
12
|
+
* Authors: NocoBase Team.
|
|
13
|
+
*
|
|
14
|
+
* This program is offered under a commercial license.
|
|
15
|
+
* For more information, see <https://www.nocobase.com/agreement>
|
|
16
|
+
*/
|
|
17
|
+
import { Plugin } from '@nocobase/server';
|
|
18
|
+
export declare class PluginCommentServer extends Plugin {
|
|
19
|
+
afterAdd(): Promise<void>;
|
|
20
|
+
beforeLoad(): Promise<void>;
|
|
21
|
+
load(): Promise<void>;
|
|
22
|
+
install(): Promise<void>;
|
|
23
|
+
afterEnable(): Promise<void>;
|
|
24
|
+
afterDisable(): Promise<void>;
|
|
25
|
+
remove(): Promise<void>;
|
|
26
|
+
}
|
|
27
|
+
export default PluginCommentServer;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
var __defProp = Object.defineProperty;
|
|
11
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
12
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
13
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
14
|
+
var __export = (target, all) => {
|
|
15
|
+
for (var name in all)
|
|
16
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
17
|
+
};
|
|
18
|
+
var __copyProps = (to, from, except, desc) => {
|
|
19
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
20
|
+
for (let key of __getOwnPropNames(from))
|
|
21
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
22
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
23
|
+
}
|
|
24
|
+
return to;
|
|
25
|
+
};
|
|
26
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
27
|
+
var plugin_exports = {};
|
|
28
|
+
__export(plugin_exports, {
|
|
29
|
+
PluginCommentServer: () => PluginCommentServer,
|
|
30
|
+
default: () => plugin_default
|
|
31
|
+
});
|
|
32
|
+
module.exports = __toCommonJS(plugin_exports);
|
|
33
|
+
var import_server = require("@nocobase/server");
|
|
34
|
+
class PluginCommentServer extends import_server.Plugin {
|
|
35
|
+
async afterAdd() {
|
|
36
|
+
}
|
|
37
|
+
async beforeLoad() {
|
|
38
|
+
}
|
|
39
|
+
async load() {
|
|
40
|
+
}
|
|
41
|
+
async install() {
|
|
42
|
+
}
|
|
43
|
+
async afterEnable() {
|
|
44
|
+
}
|
|
45
|
+
async afterDisable() {
|
|
46
|
+
}
|
|
47
|
+
async remove() {
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
var plugin_default = PluginCommentServer;
|
|
51
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
52
|
+
0 && (module.exports = {
|
|
53
|
+
PluginCommentServer
|
|
54
|
+
});
|
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nocobase/plugin-comments",
|
|
3
|
+
"version": "2.0.3",
|
|
4
|
+
"displayName": "Comments",
|
|
5
|
+
"displayName.zh-CN": "评论",
|
|
6
|
+
"description": "Provides comment collection template and block to add commenting functionality for any collection.",
|
|
7
|
+
"description.zh-CN": "提供评论数据表模板和区块,为任意数据表的数据添加评论功能。",
|
|
8
|
+
"main": "dist/server/index.js",
|
|
9
|
+
"license": "Apache-2.0",
|
|
10
|
+
"nocobase": {
|
|
11
|
+
"supportedVersions": [
|
|
12
|
+
"1.x",
|
|
13
|
+
"2.x"
|
|
14
|
+
],
|
|
15
|
+
"editionLevel": 0
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@ant-design/icons": "5.x",
|
|
19
|
+
"@formily/antd-v5": "1.x",
|
|
20
|
+
"@formily/core": "2.x",
|
|
21
|
+
"@formily/react": "2.x",
|
|
22
|
+
"@formily/shared": "2.x",
|
|
23
|
+
"antd": "5.x",
|
|
24
|
+
"dayjs": "^1.11.8"
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"@nocobase/client": "2.x",
|
|
28
|
+
"@nocobase/server": "2.x",
|
|
29
|
+
"@nocobase/test": "2.x"
|
|
30
|
+
},
|
|
31
|
+
"gitHead": "5bcb42fc092f85adb9511c1a351b388bd7aaf66e"
|
|
32
|
+
}
|
package/server.d.ts
ADDED
package/server.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('./dist/server/index.js');
|