@nocobase/plugin-calendar 0.18.0-alpha.9 → 0.19.0-alpha.10
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/client/schema-initializer/initializers/CalendarActionInitializers.d.ts +1 -1
- package/dist/client/schema-initializer/initializers/CalendarFormActionInitializers.d.ts +1 -1
- package/dist/externalVersion.js +3 -3
- package/dist/locale/ko_KR.d.ts +47 -0
- package/dist/locale/ko_KR.js +68 -0
- package/package.json +10 -4
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SchemaInitializer } from '@nocobase/client';
|
|
2
|
-
export declare const CalendarActionInitializers: SchemaInitializer
|
|
2
|
+
export declare const CalendarActionInitializers: SchemaInitializer;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SchemaInitializer } from '@nocobase/client';
|
|
2
|
-
export declare const CalendarFormActionInitializers: SchemaInitializer
|
|
2
|
+
export declare const CalendarFormActionInitializers: SchemaInitializer;
|
package/dist/externalVersion.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
module.exports = {
|
|
2
|
-
"@nocobase/client": "0.
|
|
2
|
+
"@nocobase/client": "0.19.0-alpha.10",
|
|
3
3
|
"react-i18next": "11.18.6",
|
|
4
|
-
"@nocobase/server": "0.
|
|
4
|
+
"@nocobase/server": "0.19.0-alpha.10",
|
|
5
5
|
"@formily/react": "2.3.0",
|
|
6
6
|
"react": "18.2.0",
|
|
7
7
|
"@ant-design/icons": "5.2.6",
|
|
8
8
|
"@formily/core": "2.3.0",
|
|
9
9
|
"dayjs": "1.11.10",
|
|
10
10
|
"lodash": "4.17.21",
|
|
11
|
-
"antd": "5.12.
|
|
11
|
+
"antd": "5.12.8",
|
|
12
12
|
"react-dom": "18.2.0",
|
|
13
13
|
"antd-style": "3.4.5",
|
|
14
14
|
"@formily/shared": "2.3.0",
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"Configure calendar": string;
|
|
3
|
+
"Title field": string;
|
|
4
|
+
"Custom title": string;
|
|
5
|
+
"Show lunar": string;
|
|
6
|
+
"Start date field": string;
|
|
7
|
+
"End date field": string;
|
|
8
|
+
"Work week": string;
|
|
9
|
+
Today: string;
|
|
10
|
+
Day: string;
|
|
11
|
+
Agenda: string;
|
|
12
|
+
Date: string;
|
|
13
|
+
Time: string;
|
|
14
|
+
Event: string;
|
|
15
|
+
None: string;
|
|
16
|
+
Calendar: string;
|
|
17
|
+
"Delete events": string;
|
|
18
|
+
"This event": string;
|
|
19
|
+
"This and following events": string;
|
|
20
|
+
"All events": string;
|
|
21
|
+
"Delete this event?": string;
|
|
22
|
+
"Delete Event": string;
|
|
23
|
+
"Calendar collection": string;
|
|
24
|
+
"Create calendar block": string;
|
|
25
|
+
Filter: string;
|
|
26
|
+
"Configure actions": string;
|
|
27
|
+
"Enable actions": string;
|
|
28
|
+
"Turn pages": string;
|
|
29
|
+
"Select view": string;
|
|
30
|
+
"Add new": string;
|
|
31
|
+
"View record": string;
|
|
32
|
+
Details: string;
|
|
33
|
+
Customize: string;
|
|
34
|
+
"Update record": string;
|
|
35
|
+
Popup: string;
|
|
36
|
+
"Updated successfully": string;
|
|
37
|
+
"Custom request": string;
|
|
38
|
+
Edit: string;
|
|
39
|
+
Delete: string;
|
|
40
|
+
Print: string;
|
|
41
|
+
Daily: string;
|
|
42
|
+
Weekly: string;
|
|
43
|
+
Monthly: string;
|
|
44
|
+
Yearly: string;
|
|
45
|
+
Repeats: string;
|
|
46
|
+
};
|
|
47
|
+
export default _default;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
var ko_KR_exports = {};
|
|
19
|
+
__export(ko_KR_exports, {
|
|
20
|
+
default: () => ko_KR_default
|
|
21
|
+
});
|
|
22
|
+
module.exports = __toCommonJS(ko_KR_exports);
|
|
23
|
+
var ko_KR_default = {
|
|
24
|
+
"Configure calendar": "\uCE98\uB9B0\uB354 \uAD6C\uC131",
|
|
25
|
+
"Title field": "\uC81C\uBAA9 \uD544\uB4DC",
|
|
26
|
+
"Custom title": "\uC0AC\uC6A9\uC790 \uC815\uC758 \uC81C\uBAA9",
|
|
27
|
+
"Show lunar": "\uC74C\uB825 \uD45C\uC2DC",
|
|
28
|
+
"Start date field": "\uC2DC\uC791 \uB0A0\uC9DC \uD544\uB4DC",
|
|
29
|
+
"End date field": "\uC885\uB8CC \uB0A0\uC9DC \uD544\uB4DC",
|
|
30
|
+
"Work week": "\uADFC\uBB34 \uC8FC",
|
|
31
|
+
"Today": "\uC624\uB298",
|
|
32
|
+
"Day": "\uC77C\uC77C",
|
|
33
|
+
"Agenda": "\uC77C\uC815",
|
|
34
|
+
"Date": "\uB0A0\uC9DC",
|
|
35
|
+
"Time": "\uC2DC\uAC04",
|
|
36
|
+
"Event": "\uC774\uBCA4\uD2B8",
|
|
37
|
+
"None": "\uC5C6\uC74C",
|
|
38
|
+
"Calendar": "\uCE98\uB9B0\uB354",
|
|
39
|
+
"Delete events": "\uC774\uBCA4\uD2B8 \uC0AD\uC81C",
|
|
40
|
+
"This event": "\uC774 \uC774\uBCA4\uD2B8",
|
|
41
|
+
"This and following events": "\uC774 \uC774\uBCA4\uD2B8 \uBC0F \uC774\uD6C4 \uC774\uBCA4\uD2B8",
|
|
42
|
+
"All events": "\uBAA8\uB4E0 \uC774\uBCA4\uD2B8",
|
|
43
|
+
"Delete this event?": "\uC774 \uC774\uBCA4\uD2B8\uB97C \uC0AD\uC81C\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?",
|
|
44
|
+
"Delete Event": "\uC774\uBCA4\uD2B8 \uC0AD\uC81C",
|
|
45
|
+
"Calendar collection": "\uCE98\uB9B0\uB354 \uB370\uC774\uD130 \uD14C\uC774\uBE14",
|
|
46
|
+
"Create calendar block": "\uCE98\uB9B0\uB354 \uBE14\uB85D \uC0DD\uC131",
|
|
47
|
+
"Filter": "\uD544\uD130",
|
|
48
|
+
"Configure actions": "\uC791\uC5C5 \uAD6C\uC131",
|
|
49
|
+
"Enable actions": "\uC791\uC5C5 \uD65C\uC131\uD654",
|
|
50
|
+
"Turn pages": "\uD398\uC774\uC9C0 \uC804\uD658",
|
|
51
|
+
"Select view": "\uBCF4\uAE30 \uC120\uD0DD",
|
|
52
|
+
"Add new": "\uC0C8\uB85C \uCD94\uAC00",
|
|
53
|
+
"View record": "\uB370\uC774\uD130 \uBCF4\uAE30",
|
|
54
|
+
"Details": "\uC138\uBD80 \uC815\uBCF4",
|
|
55
|
+
"Customize": "\uC0AC\uC6A9\uC790 \uC815\uC758",
|
|
56
|
+
"Update record": "\uB370\uC774\uD130 \uC5C5\uB370\uC774\uD2B8",
|
|
57
|
+
"Popup": "\uD31D\uC5C5",
|
|
58
|
+
"Updated successfully": "\uC131\uACF5\uC801\uC73C\uB85C \uC5C5\uB370\uC774\uD2B8\uB428",
|
|
59
|
+
"Custom request": "\uC0AC\uC6A9\uC790 \uC815\uC758 \uC694\uCCAD",
|
|
60
|
+
"Edit": "\uD3B8\uC9D1",
|
|
61
|
+
"Delete": "\uC0AD\uC81C",
|
|
62
|
+
"Print": "\uC778\uC1C4",
|
|
63
|
+
"Daily": "\uB9E4\uC77C",
|
|
64
|
+
"Weekly": "\uB9E4\uC8FC",
|
|
65
|
+
"Monthly": "\uB9E4\uC6D4",
|
|
66
|
+
"Yearly": "\uB9E4\uB144",
|
|
67
|
+
"Repeats": "\uBC18\uBCF5"
|
|
68
|
+
};
|
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/plugin-calendar",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.0-alpha.10",
|
|
4
4
|
"displayName": "Calendar",
|
|
5
5
|
"displayName.zh-CN": "日历",
|
|
6
|
-
"description": "
|
|
7
|
-
"description.zh-CN": "
|
|
6
|
+
"description": "Provides callendar collection template and block for managing date data, typically for date/time related information such as events, appointments, tasks, and so on.",
|
|
7
|
+
"description.zh-CN": "提供日历数据表模板和区块,用于管理日期数据,通常用于事件、约会、任务等与日期/时间相关的信息。",
|
|
8
8
|
"license": "AGPL-3.0",
|
|
9
9
|
"main": "./dist/server/index.js",
|
|
10
|
+
"homepage": "https://docs.nocobase.com/plugins/calendar",
|
|
11
|
+
"homepage.zh-CN": "https://docs-cn.nocobase.com/plugins/calendar",
|
|
10
12
|
"types": "./dist/server/index.d.ts",
|
|
11
13
|
"devDependencies": {
|
|
12
14
|
"@ant-design/icons": "5.x",
|
|
@@ -34,5 +36,9 @@
|
|
|
34
36
|
"url": "git+https://github.com/nocobase/nocobase.git",
|
|
35
37
|
"directory": "packages/plugins/calendar"
|
|
36
38
|
},
|
|
37
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "d09d81eba67339da36bcec27939a85b35d180770",
|
|
40
|
+
"keywords": [
|
|
41
|
+
"Collections",
|
|
42
|
+
"Blocks"
|
|
43
|
+
]
|
|
38
44
|
}
|