@nocobase/plugin-field-markdown-vditor 1.3.23-beta → 1.3.25-beta
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/dist/externalVersion.js +4 -4
- package/dist/locale/ja_JP.d.ts +50 -0
- package/dist/locale/ja_JP.js +64 -0
- package/package.json +2 -2
package/dist/externalVersion.js
CHANGED
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
module.exports = {
|
|
11
|
-
"@nocobase/client": "1.3.
|
|
12
|
-
"@nocobase/database": "1.3.
|
|
13
|
-
"@nocobase/server": "1.3.
|
|
11
|
+
"@nocobase/client": "1.3.25-beta",
|
|
12
|
+
"@nocobase/database": "1.3.25-beta",
|
|
13
|
+
"@nocobase/server": "1.3.25-beta",
|
|
14
14
|
"@formily/core": "2.3.0",
|
|
15
15
|
"@formily/react": "2.3.0",
|
|
16
16
|
"antd": "5.12.8",
|
|
17
17
|
"react": "18.2.0",
|
|
18
|
-
"@nocobase/utils": "1.3.
|
|
18
|
+
"@nocobase/utils": "1.3.25-beta"
|
|
19
19
|
};
|
|
@@ -0,0 +1,50 @@
|
|
|
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 project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
15
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
16
|
+
*/
|
|
17
|
+
declare const _default: {
|
|
18
|
+
Vditor: string;
|
|
19
|
+
"File collection": string;
|
|
20
|
+
"Used to store files uploaded in the Markdown editor": string;
|
|
21
|
+
Toolbar: string;
|
|
22
|
+
Emoji: string;
|
|
23
|
+
Headings: string;
|
|
24
|
+
Bold: string;
|
|
25
|
+
Italic: string;
|
|
26
|
+
Strike: string;
|
|
27
|
+
Record: string;
|
|
28
|
+
Line: string;
|
|
29
|
+
Quote: string;
|
|
30
|
+
List: string;
|
|
31
|
+
OrderedList: string;
|
|
32
|
+
Check: string;
|
|
33
|
+
Outdent: string;
|
|
34
|
+
Indent: string;
|
|
35
|
+
Code: string;
|
|
36
|
+
InlineCode: string;
|
|
37
|
+
InsertAfter: string;
|
|
38
|
+
InsertBefore: string;
|
|
39
|
+
Undo: string;
|
|
40
|
+
Redo: string;
|
|
41
|
+
Upload: string;
|
|
42
|
+
Link: string;
|
|
43
|
+
Table: string;
|
|
44
|
+
EditMode: string;
|
|
45
|
+
Both: string;
|
|
46
|
+
Preview: string;
|
|
47
|
+
Fullscreen: string;
|
|
48
|
+
Outline: string;
|
|
49
|
+
};
|
|
50
|
+
export default _default;
|
|
@@ -0,0 +1,64 @@
|
|
|
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 ja_JP_exports = {};
|
|
28
|
+
__export(ja_JP_exports, {
|
|
29
|
+
default: () => ja_JP_default
|
|
30
|
+
});
|
|
31
|
+
module.exports = __toCommonJS(ja_JP_exports);
|
|
32
|
+
var ja_JP_default = {
|
|
33
|
+
"Vditor": "Markdown(Vditor)",
|
|
34
|
+
"File collection": "\u30D5\u30A1\u30A4\u30EB\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3",
|
|
35
|
+
"Used to store files uploaded in the Markdown editor": "Markdown\u30A8\u30C7\u30A3\u30BF\u3067\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3055\u308C\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3059\u308B\u305F\u3081\u306B\u4F7F\u7528",
|
|
36
|
+
"Toolbar": "\u30C4\u30FC\u30EB\u30D0\u30FC",
|
|
37
|
+
"Emoji": "\u7D75\u6587\u5B57",
|
|
38
|
+
"Headings": "\u898B\u51FA\u3057",
|
|
39
|
+
"Bold": "\u592A\u5B57",
|
|
40
|
+
"Italic": "\u659C\u4F53",
|
|
41
|
+
"Strike": "\u53D6\u308A\u6D88\u3057\u7DDA",
|
|
42
|
+
"Record": "\u9332\u97F3\u958B\u59CB/\u9332\u97F3\u7D42\u4E86",
|
|
43
|
+
"Line": "\u30E9\u30A4\u30F3",
|
|
44
|
+
"Quote": "\u5F15\u7528",
|
|
45
|
+
"List": "\u30EA\u30B9\u30C8",
|
|
46
|
+
"OrderedList": "\u9806\u5E8F\u4ED8\u304D\u30EA\u30B9\u30C8",
|
|
47
|
+
"Check": "\u30BF\u30B9\u30AF\u30EA\u30B9\u30C8",
|
|
48
|
+
"Outdent": "\u30A2\u30A6\u30C8\u30C7\u30F3\u30C8",
|
|
49
|
+
"Indent": "\u30A4\u30F3\u30C7\u30F3\u30C8",
|
|
50
|
+
"Code": "\u30B3\u30FC\u30C9\u30D6\u30ED\u30C3\u30AF",
|
|
51
|
+
"InlineCode": "\u30A4\u30F3\u30E9\u30A4\u30F3\u30B3\u30FC\u30C9",
|
|
52
|
+
"InsertAfter": "\u884C\u3092\u5F8C\u306B\u633F\u5165",
|
|
53
|
+
"InsertBefore": "\u884C\u3092\u524D\u306B\u633F\u5165",
|
|
54
|
+
"Undo": "\u5143\u306B\u623B\u3059",
|
|
55
|
+
"Redo": "\u3084\u308A\u76F4\u3057",
|
|
56
|
+
"Upload": "\u753B\u50CF\u307E\u305F\u306F\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9",
|
|
57
|
+
"Link": "\u30EA\u30F3\u30AF",
|
|
58
|
+
"Table": "\u8868",
|
|
59
|
+
"EditMode": "\u7DE8\u96C6\u30E2\u30FC\u30C9",
|
|
60
|
+
"Both": "\u7DE8\u96C6\u3068\u30D7\u30EC\u30D3\u30E5\u30FC",
|
|
61
|
+
"Preview": "\u30D7\u30EC\u30D3\u30E5\u30FC",
|
|
62
|
+
"Fullscreen": "\u5168\u753B\u9762\u8868\u793A\u306E\u5207\u308A\u66FF\u3048",
|
|
63
|
+
"Outline": "\u30A2\u30A6\u30C8\u30E9\u30A4\u30F3"
|
|
64
|
+
};
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"displayName.zh-CN": "数据表字段:Markdown(Vditor)",
|
|
5
5
|
"description": "Used to store Markdown and render it using Vditor editor, supports common Markdown syntax such as list, code, quote, etc., and supports uploading images, recordings, etc.It also allows for instant rendering, where what you see is what you get.",
|
|
6
6
|
"description.zh-CN": "用于存储 Markdown,并使用 Vditor 编辑器渲染,支持常见 Markdown 语法,如列表,代码,引用等,并支持上传图片,录音等。同时可以做到即时渲染,所见即所得。",
|
|
7
|
-
"version": "1.3.
|
|
7
|
+
"version": "1.3.25-beta",
|
|
8
8
|
"license": "AGPL-3.0",
|
|
9
9
|
"main": "dist/server/index.js",
|
|
10
10
|
"homepage": "https://docs.nocobase.com/handbook/field-markdown-vditor",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"keywords": [
|
|
28
28
|
"Collection fields"
|
|
29
29
|
],
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "dea17d475f5db81a93fd7c27aebd650c46bb3a45"
|
|
31
31
|
}
|