@nocobase/preset-nocobase 2.1.0-beta.21 → 2.1.0-beta.23
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/client-v2.d.ts +2 -0
- package/client-v2.js +1 -0
- package/lib/client-v2/CollectionPluginV2.d.ts +12 -0
- package/lib/client-v2/CollectionPluginV2.js +139 -0
- package/lib/client-v2/index.d.ts +14 -0
- package/lib/client-v2/index.js +93 -0
- package/package.json +101 -101
package/client-v2.d.ts
ADDED
package/client-v2.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('./lib/client-v2/index.js');
|
|
@@ -0,0 +1,12 @@
|
|
|
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
|
+
import { Plugin } from '@nocobase/client-v2';
|
|
10
|
+
export declare class CollectionPluginV2 extends Plugin {
|
|
11
|
+
beforeLoad(): Promise<void>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,139 @@
|
|
|
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 __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
15
|
+
var __export = (target, all) => {
|
|
16
|
+
for (var name in all)
|
|
17
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
18
|
+
};
|
|
19
|
+
var __copyProps = (to, from, except, desc) => {
|
|
20
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
21
|
+
for (let key of __getOwnPropNames(from))
|
|
22
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
23
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
24
|
+
}
|
|
25
|
+
return to;
|
|
26
|
+
};
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
var CollectionPluginV2_exports = {};
|
|
29
|
+
__export(CollectionPluginV2_exports, {
|
|
30
|
+
CollectionPluginV2: () => CollectionPluginV2
|
|
31
|
+
});
|
|
32
|
+
module.exports = __toCommonJS(CollectionPluginV2_exports);
|
|
33
|
+
var import_client_v2 = require("@nocobase/client-v2");
|
|
34
|
+
const MAIN_DATA_SOURCE_KEY = "main";
|
|
35
|
+
const MAIN_DATA_SOURCE_TITLE = '{{t("Main")}}';
|
|
36
|
+
const fieldInterfaceGroups = {
|
|
37
|
+
basic: {
|
|
38
|
+
label: '{{t("Basic")}}',
|
|
39
|
+
order: 1
|
|
40
|
+
},
|
|
41
|
+
choices: {
|
|
42
|
+
label: '{{t("Choices")}}',
|
|
43
|
+
order: 20
|
|
44
|
+
},
|
|
45
|
+
media: {
|
|
46
|
+
label: '{{t("Media")}}',
|
|
47
|
+
order: 40
|
|
48
|
+
},
|
|
49
|
+
datetime: {
|
|
50
|
+
label: '{{t("Date & Time")}}',
|
|
51
|
+
order: 80
|
|
52
|
+
},
|
|
53
|
+
relation: {
|
|
54
|
+
label: '{{t("Relation")}}',
|
|
55
|
+
order: 100
|
|
56
|
+
},
|
|
57
|
+
advanced: {
|
|
58
|
+
label: '{{t("Advanced type")}}',
|
|
59
|
+
order: 200
|
|
60
|
+
},
|
|
61
|
+
systemInfo: {
|
|
62
|
+
label: '{{t("System info")}}',
|
|
63
|
+
order: 400
|
|
64
|
+
},
|
|
65
|
+
others: {
|
|
66
|
+
label: '{{t("Others")}}',
|
|
67
|
+
order: 800
|
|
68
|
+
}
|
|
69
|
+
};
|
|
70
|
+
const fieldInterfaces = [
|
|
71
|
+
import_client_v2.CheckboxFieldInterface,
|
|
72
|
+
import_client_v2.CheckboxGroupFieldInterface,
|
|
73
|
+
import_client_v2.CollectionSelectFieldInterface,
|
|
74
|
+
import_client_v2.ColorFieldInterface,
|
|
75
|
+
import_client_v2.CreatedAtFieldInterface,
|
|
76
|
+
import_client_v2.CreatedByFieldInterface,
|
|
77
|
+
import_client_v2.DatetimeFieldInterface,
|
|
78
|
+
import_client_v2.EmailFieldInterface,
|
|
79
|
+
import_client_v2.IconFieldInterface,
|
|
80
|
+
import_client_v2.IdFieldInterface,
|
|
81
|
+
import_client_v2.InputFieldInterface,
|
|
82
|
+
import_client_v2.IntegerFieldInterface,
|
|
83
|
+
import_client_v2.JsonFieldInterface,
|
|
84
|
+
import_client_v2.LinkToFieldInterface,
|
|
85
|
+
import_client_v2.M2MFieldInterface,
|
|
86
|
+
import_client_v2.M2OFieldInterface,
|
|
87
|
+
import_client_v2.MarkdownFieldInterface,
|
|
88
|
+
import_client_v2.MultipleSelectFieldInterface,
|
|
89
|
+
import_client_v2.NumberFieldInterface,
|
|
90
|
+
import_client_v2.O2MFieldInterface,
|
|
91
|
+
import_client_v2.O2OFieldInterface,
|
|
92
|
+
import_client_v2.OHOFieldInterface,
|
|
93
|
+
import_client_v2.OBOFieldInterface,
|
|
94
|
+
import_client_v2.PasswordFieldInterface,
|
|
95
|
+
import_client_v2.PercentFieldInterface,
|
|
96
|
+
import_client_v2.PhoneFieldInterface,
|
|
97
|
+
import_client_v2.RadioGroupFieldInterface,
|
|
98
|
+
import_client_v2.RichTextFieldInterface,
|
|
99
|
+
import_client_v2.SelectFieldInterface,
|
|
100
|
+
import_client_v2.SnowflakeIdFieldInterface,
|
|
101
|
+
import_client_v2.SubTableFieldInterface,
|
|
102
|
+
import_client_v2.TableoidFieldInterface,
|
|
103
|
+
import_client_v2.TextareaFieldInterface,
|
|
104
|
+
import_client_v2.TimeFieldInterface,
|
|
105
|
+
import_client_v2.UpdatedAtFieldInterface,
|
|
106
|
+
import_client_v2.UpdatedByFieldInterface,
|
|
107
|
+
import_client_v2.UrlFieldInterface,
|
|
108
|
+
import_client_v2.UUIDFieldInterface,
|
|
109
|
+
import_client_v2.NanoidFieldInterface,
|
|
110
|
+
import_client_v2.UnixTimestampFieldInterface,
|
|
111
|
+
import_client_v2.DateFieldInterface,
|
|
112
|
+
import_client_v2.DatetimeNoTzFieldInterface
|
|
113
|
+
];
|
|
114
|
+
const _CollectionPluginV2 = class _CollectionPluginV2 extends import_client_v2.Plugin {
|
|
115
|
+
async beforeLoad() {
|
|
116
|
+
this.app.dataSourceManager.upsertDataSource({
|
|
117
|
+
key: MAIN_DATA_SOURCE_KEY,
|
|
118
|
+
displayName: MAIN_DATA_SOURCE_TITLE
|
|
119
|
+
});
|
|
120
|
+
this.app.dataSourceManager.addFieldInterfaces(fieldInterfaces);
|
|
121
|
+
this.app.dataSourceManager.addFieldInterfaceGroups(fieldInterfaceGroups);
|
|
122
|
+
this.app.dataSourceManager.registerLoader(MAIN_DATA_SOURCE_KEY, async ({ manager }) => {
|
|
123
|
+
var _a;
|
|
124
|
+
const requester = manager.requester || this.app.apiClient.request.bind(this.app.apiClient);
|
|
125
|
+
const service = await requester({
|
|
126
|
+
resource: "collections",
|
|
127
|
+
action: "listMeta"
|
|
128
|
+
});
|
|
129
|
+
const collections = ((_a = service == null ? void 0 : service.data) == null ? void 0 : _a.data) || [];
|
|
130
|
+
return { collections };
|
|
131
|
+
});
|
|
132
|
+
}
|
|
133
|
+
};
|
|
134
|
+
__name(_CollectionPluginV2, "CollectionPluginV2");
|
|
135
|
+
let CollectionPluginV2 = _CollectionPluginV2;
|
|
136
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
137
|
+
0 && (module.exports = {
|
|
138
|
+
CollectionPluginV2
|
|
139
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
import { Application, Plugin } from '@nocobase/client-v2';
|
|
10
|
+
export declare class NocoBaseClientPresetPluginV2 extends Plugin<any, Application> {
|
|
11
|
+
getHostname(): string;
|
|
12
|
+
afterAdd(): Promise<void>;
|
|
13
|
+
}
|
|
14
|
+
export default NocoBaseClientPresetPluginV2;
|
|
@@ -0,0 +1,93 @@
|
|
|
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 __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
15
|
+
var __export = (target, all) => {
|
|
16
|
+
for (var name in all)
|
|
17
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
18
|
+
};
|
|
19
|
+
var __copyProps = (to, from, except, desc) => {
|
|
20
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
21
|
+
for (let key of __getOwnPropNames(from))
|
|
22
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
23
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
24
|
+
}
|
|
25
|
+
return to;
|
|
26
|
+
};
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
var client_v2_exports = {};
|
|
29
|
+
__export(client_v2_exports, {
|
|
30
|
+
NocoBaseClientPresetPluginV2: () => NocoBaseClientPresetPluginV2,
|
|
31
|
+
default: () => client_v2_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(client_v2_exports);
|
|
34
|
+
var import_client_v2 = require("@nocobase/client-v2");
|
|
35
|
+
var import_CollectionPluginV2 = require("./CollectionPluginV2");
|
|
36
|
+
function offsetToTimeZone(offset) {
|
|
37
|
+
const hours = Math.floor(Math.abs(offset));
|
|
38
|
+
const minutes = Math.abs(offset % 1 * 60);
|
|
39
|
+
const formattedHours = (hours < 10 ? "0" : "") + hours;
|
|
40
|
+
const formattedMinutes = (minutes < 10 ? "0" : "") + minutes;
|
|
41
|
+
const sign = offset >= 0 ? "+" : "-";
|
|
42
|
+
return sign + formattedHours + ":" + formattedMinutes;
|
|
43
|
+
}
|
|
44
|
+
__name(offsetToTimeZone, "offsetToTimeZone");
|
|
45
|
+
const getCurrentTimezone = /* @__PURE__ */ __name(() => {
|
|
46
|
+
const timezoneOffset = (/* @__PURE__ */ new Date()).getTimezoneOffset() / -60;
|
|
47
|
+
return offsetToTimeZone(timezoneOffset);
|
|
48
|
+
}, "getCurrentTimezone");
|
|
49
|
+
function getBasename(app) {
|
|
50
|
+
const publicPath = app.getPublicPath();
|
|
51
|
+
const pattern = `^${publicPath}apps/([^/]*)/`;
|
|
52
|
+
const match = location.pathname.match(new RegExp(pattern));
|
|
53
|
+
return match == null ? void 0 : match[0];
|
|
54
|
+
}
|
|
55
|
+
__name(getBasename, "getBasename");
|
|
56
|
+
function getBasenameOfNewMultiApp(app) {
|
|
57
|
+
const publicPath = app.getPublicPath();
|
|
58
|
+
const pattern = `^${publicPath}_app/([^/]*)/`;
|
|
59
|
+
const match = location.pathname.match(new RegExp(pattern));
|
|
60
|
+
return match == null ? void 0 : match[0];
|
|
61
|
+
}
|
|
62
|
+
__name(getBasenameOfNewMultiApp, "getBasenameOfNewMultiApp");
|
|
63
|
+
const _NocoBaseClientPresetPluginV2 = class _NocoBaseClientPresetPluginV2 extends import_client_v2.Plugin {
|
|
64
|
+
getHostname() {
|
|
65
|
+
var _a;
|
|
66
|
+
if (process.env.API_BASE_URL) {
|
|
67
|
+
try {
|
|
68
|
+
const url = new URL(process.env.API_BASE_URL);
|
|
69
|
+
return url.hostname;
|
|
70
|
+
} catch (error) {
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
return (_a = window == null ? void 0 : window.location) == null ? void 0 : _a.hostname;
|
|
74
|
+
}
|
|
75
|
+
async afterAdd() {
|
|
76
|
+
this.router.setType("browser");
|
|
77
|
+
this.router.setBasename(getBasename(this.app) || getBasenameOfNewMultiApp(this.app) || this.app.getPublicPath());
|
|
78
|
+
this.app.apiClient.axios.interceptors.request.use((config) => {
|
|
79
|
+
config.headers["X-Hostname"] = this.getHostname();
|
|
80
|
+
config.headers["X-Timezone"] = getCurrentTimezone();
|
|
81
|
+
return config;
|
|
82
|
+
});
|
|
83
|
+
await this.app.pm.add(import_CollectionPluginV2.CollectionPluginV2, { name: "builtin-collection-v2" });
|
|
84
|
+
await this.app.pm.add(import_client_v2.NocoBaseBuildInPluginV2);
|
|
85
|
+
}
|
|
86
|
+
};
|
|
87
|
+
__name(_NocoBaseClientPresetPluginV2, "NocoBaseClientPresetPluginV2");
|
|
88
|
+
let NocoBaseClientPresetPluginV2 = _NocoBaseClientPresetPluginV2;
|
|
89
|
+
var client_v2_default = NocoBaseClientPresetPluginV2;
|
|
90
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
91
|
+
0 && (module.exports = {
|
|
92
|
+
NocoBaseClientPresetPluginV2
|
|
93
|
+
});
|
package/package.json
CHANGED
|
@@ -1,109 +1,109 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/preset-nocobase",
|
|
3
|
-
"version": "2.1.0-beta.
|
|
3
|
+
"version": "2.1.0-beta.23",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "./lib/server/index.js",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@formily/json-schema": "2.x",
|
|
8
|
-
"@nocobase/plugin-acl": "2.1.0-beta.
|
|
9
|
-
"@nocobase/plugin-action-bulk-edit": "2.1.0-beta.
|
|
10
|
-
"@nocobase/plugin-action-bulk-update": "2.1.0-beta.
|
|
11
|
-
"@nocobase/plugin-action-custom-request": "2.1.0-beta.
|
|
12
|
-
"@nocobase/plugin-action-duplicate": "2.1.0-beta.
|
|
13
|
-
"@nocobase/plugin-action-export": "2.1.0-beta.
|
|
14
|
-
"@nocobase/plugin-action-import": "2.1.0-beta.
|
|
15
|
-
"@nocobase/plugin-action-print": "2.1.0-beta.
|
|
16
|
-
"@nocobase/plugin-ai": "2.1.0-beta.
|
|
17
|
-
"@nocobase/plugin-ai-gigachat": "2.1.0-beta.
|
|
18
|
-
"@nocobase/plugin-api-doc": "2.1.0-beta.
|
|
19
|
-
"@nocobase/plugin-api-keys": "2.1.0-beta.
|
|
20
|
-
"@nocobase/plugin-async-task-manager": "2.1.0-beta.
|
|
21
|
-
"@nocobase/plugin-auth": "2.1.0-beta.
|
|
22
|
-
"@nocobase/plugin-auth-sms": "2.1.0-beta.
|
|
23
|
-
"@nocobase/plugin-backup-restore": "2.1.0-beta.
|
|
24
|
-
"@nocobase/plugin-block-grid-card": "2.1.0-beta.
|
|
25
|
-
"@nocobase/plugin-block-iframe": "2.1.0-beta.
|
|
26
|
-
"@nocobase/plugin-block-list": "2.1.0-beta.
|
|
27
|
-
"@nocobase/plugin-block-markdown": "2.1.0-beta.
|
|
28
|
-
"@nocobase/plugin-block-multi-step-form": "2.1.0-beta.
|
|
29
|
-
"@nocobase/plugin-block-template": "2.1.0-beta.
|
|
30
|
-
"@nocobase/plugin-block-tree": "2.1.0-beta.
|
|
31
|
-
"@nocobase/plugin-block-workbench": "2.1.0-beta.
|
|
32
|
-
"@nocobase/plugin-calendar": "2.1.0-beta.
|
|
33
|
-
"@nocobase/plugin-client": "2.1.0-beta.
|
|
34
|
-
"@nocobase/plugin-collection-fdw": "2.1.0-beta.
|
|
35
|
-
"@nocobase/plugin-collection-sql": "2.1.0-beta.
|
|
36
|
-
"@nocobase/plugin-collection-tree": "2.1.0-beta.
|
|
37
|
-
"@nocobase/plugin-comments": "2.1.0-beta.
|
|
38
|
-
"@nocobase/plugin-custom-variables": "2.1.0-beta.
|
|
39
|
-
"@nocobase/plugin-data-source-main": "2.1.0-beta.
|
|
40
|
-
"@nocobase/plugin-data-source-manager": "2.1.0-beta.
|
|
41
|
-
"@nocobase/plugin-data-visualization": "2.1.0-beta.
|
|
42
|
-
"@nocobase/plugin-data-visualization-echarts": "2.1.0-beta.
|
|
43
|
-
"@nocobase/plugin-departments": "2.1.0-beta.
|
|
44
|
-
"@nocobase/plugin-embed": "2.1.0-beta.
|
|
45
|
-
"@nocobase/plugin-environment-variables": "2.1.0-beta.
|
|
46
|
-
"@nocobase/plugin-error-handler": "2.1.0-beta.
|
|
47
|
-
"@nocobase/plugin-field-attachment-url": "2.1.0-beta.
|
|
48
|
-
"@nocobase/plugin-field-china-region": "2.1.0-beta.
|
|
49
|
-
"@nocobase/plugin-field-code": "2.1.0-beta.
|
|
50
|
-
"@nocobase/plugin-field-formula": "2.1.0-beta.
|
|
51
|
-
"@nocobase/plugin-field-m2m-array": "2.1.0-beta.
|
|
52
|
-
"@nocobase/plugin-field-markdown-vditor": "2.1.0-beta.
|
|
53
|
-
"@nocobase/plugin-field-sequence": "2.1.0-beta.
|
|
54
|
-
"@nocobase/plugin-field-sort": "2.1.0-beta.
|
|
55
|
-
"@nocobase/plugin-file-manager": "2.1.0-beta.
|
|
56
|
-
"@nocobase/plugin-file-previewer-office": "2.1.0-beta.
|
|
57
|
-
"@nocobase/plugin-flow-engine": "2.1.0-beta.
|
|
58
|
-
"@nocobase/plugin-form-drafts": "2.1.0-beta.
|
|
59
|
-
"@nocobase/plugin-gantt": "2.1.0-beta.
|
|
60
|
-
"@nocobase/plugin-graph-collection-manager": "2.1.0-beta.
|
|
61
|
-
"@nocobase/plugin-idp-oauth": "2.1.0-beta.
|
|
62
|
-
"@nocobase/plugin-kanban": "2.1.0-beta.
|
|
63
|
-
"@nocobase/plugin-license": "2.1.0-beta.
|
|
64
|
-
"@nocobase/plugin-locale-tester": "2.1.0-beta.
|
|
65
|
-
"@nocobase/plugin-localization": "2.1.0-beta.
|
|
66
|
-
"@nocobase/plugin-logger": "2.1.0-beta.
|
|
67
|
-
"@nocobase/plugin-map": "2.1.0-beta.
|
|
68
|
-
"@nocobase/plugin-mcp-server": "2.1.0-beta.
|
|
69
|
-
"@nocobase/plugin-mobile": "2.1.0-beta.
|
|
70
|
-
"@nocobase/plugin-mock-collections": "2.1.0-beta.
|
|
71
|
-
"@nocobase/plugin-multi-app-manager": "2.1.0-beta.
|
|
72
|
-
"@nocobase/plugin-multi-keyword-filter": "2.1.0-beta.
|
|
73
|
-
"@nocobase/plugin-notification-email": "2.1.0-beta.
|
|
74
|
-
"@nocobase/plugin-notification-in-app-message": "2.1.0-beta.
|
|
75
|
-
"@nocobase/plugin-notification-manager": "2.1.0-beta.
|
|
76
|
-
"@nocobase/plugin-public-forms": "2.1.0-beta.
|
|
77
|
-
"@nocobase/plugin-system-settings": "2.1.0-beta.
|
|
78
|
-
"@nocobase/plugin-text-copy": "2.1.0-beta.
|
|
79
|
-
"@nocobase/plugin-theme-editor": "2.1.0-beta.
|
|
80
|
-
"@nocobase/plugin-ui-schema-storage": "2.1.0-beta.
|
|
81
|
-
"@nocobase/plugin-ui-templates": "2.1.0-beta.
|
|
82
|
-
"@nocobase/plugin-user-data-sync": "2.1.0-beta.
|
|
83
|
-
"@nocobase/plugin-users": "2.1.0-beta.
|
|
84
|
-
"@nocobase/plugin-verification": "2.1.0-beta.
|
|
85
|
-
"@nocobase/plugin-workflow": "2.1.0-beta.
|
|
86
|
-
"@nocobase/plugin-workflow-action-trigger": "2.1.0-beta.
|
|
87
|
-
"@nocobase/plugin-workflow-aggregate": "2.1.0-beta.
|
|
88
|
-
"@nocobase/plugin-workflow-cc": "2.1.0-beta.
|
|
89
|
-
"@nocobase/plugin-workflow-custom-action-trigger": "2.1.0-beta.
|
|
90
|
-
"@nocobase/plugin-workflow-date-calculation": "2.1.0-beta.
|
|
91
|
-
"@nocobase/plugin-workflow-delay": "2.1.0-beta.
|
|
92
|
-
"@nocobase/plugin-workflow-dynamic-calculation": "2.1.0-beta.
|
|
93
|
-
"@nocobase/plugin-workflow-javascript": "2.1.0-beta.
|
|
94
|
-
"@nocobase/plugin-workflow-json-query": "2.1.0-beta.
|
|
95
|
-
"@nocobase/plugin-workflow-json-variable-mapping": "2.1.0-beta.
|
|
96
|
-
"@nocobase/plugin-workflow-loop": "2.1.0-beta.
|
|
97
|
-
"@nocobase/plugin-workflow-mailer": "2.1.0-beta.
|
|
98
|
-
"@nocobase/plugin-workflow-manual": "2.1.0-beta.
|
|
99
|
-
"@nocobase/plugin-workflow-notification": "2.1.0-beta.
|
|
100
|
-
"@nocobase/plugin-workflow-parallel": "2.1.0-beta.
|
|
101
|
-
"@nocobase/plugin-workflow-request": "2.1.0-beta.
|
|
102
|
-
"@nocobase/plugin-workflow-request-interceptor": "2.1.0-beta.
|
|
103
|
-
"@nocobase/plugin-workflow-response-message": "2.1.0-beta.
|
|
104
|
-
"@nocobase/plugin-workflow-sql": "2.1.0-beta.
|
|
105
|
-
"@nocobase/plugin-workflow-variable": "2.1.0-beta.
|
|
106
|
-
"@nocobase/server": "2.1.0-beta.
|
|
8
|
+
"@nocobase/plugin-acl": "2.1.0-beta.23",
|
|
9
|
+
"@nocobase/plugin-action-bulk-edit": "2.1.0-beta.23",
|
|
10
|
+
"@nocobase/plugin-action-bulk-update": "2.1.0-beta.23",
|
|
11
|
+
"@nocobase/plugin-action-custom-request": "2.1.0-beta.23",
|
|
12
|
+
"@nocobase/plugin-action-duplicate": "2.1.0-beta.23",
|
|
13
|
+
"@nocobase/plugin-action-export": "2.1.0-beta.23",
|
|
14
|
+
"@nocobase/plugin-action-import": "2.1.0-beta.23",
|
|
15
|
+
"@nocobase/plugin-action-print": "2.1.0-beta.23",
|
|
16
|
+
"@nocobase/plugin-ai": "2.1.0-beta.23",
|
|
17
|
+
"@nocobase/plugin-ai-gigachat": "2.1.0-beta.23",
|
|
18
|
+
"@nocobase/plugin-api-doc": "2.1.0-beta.23",
|
|
19
|
+
"@nocobase/plugin-api-keys": "2.1.0-beta.23",
|
|
20
|
+
"@nocobase/plugin-async-task-manager": "2.1.0-beta.23",
|
|
21
|
+
"@nocobase/plugin-auth": "2.1.0-beta.23",
|
|
22
|
+
"@nocobase/plugin-auth-sms": "2.1.0-beta.23",
|
|
23
|
+
"@nocobase/plugin-backup-restore": "2.1.0-beta.23",
|
|
24
|
+
"@nocobase/plugin-block-grid-card": "2.1.0-beta.23",
|
|
25
|
+
"@nocobase/plugin-block-iframe": "2.1.0-beta.23",
|
|
26
|
+
"@nocobase/plugin-block-list": "2.1.0-beta.23",
|
|
27
|
+
"@nocobase/plugin-block-markdown": "2.1.0-beta.23",
|
|
28
|
+
"@nocobase/plugin-block-multi-step-form": "2.1.0-beta.23",
|
|
29
|
+
"@nocobase/plugin-block-template": "2.1.0-beta.23",
|
|
30
|
+
"@nocobase/plugin-block-tree": "2.1.0-beta.23",
|
|
31
|
+
"@nocobase/plugin-block-workbench": "2.1.0-beta.23",
|
|
32
|
+
"@nocobase/plugin-calendar": "2.1.0-beta.23",
|
|
33
|
+
"@nocobase/plugin-client": "2.1.0-beta.23",
|
|
34
|
+
"@nocobase/plugin-collection-fdw": "2.1.0-beta.23",
|
|
35
|
+
"@nocobase/plugin-collection-sql": "2.1.0-beta.23",
|
|
36
|
+
"@nocobase/plugin-collection-tree": "2.1.0-beta.23",
|
|
37
|
+
"@nocobase/plugin-comments": "2.1.0-beta.23",
|
|
38
|
+
"@nocobase/plugin-custom-variables": "2.1.0-beta.23",
|
|
39
|
+
"@nocobase/plugin-data-source-main": "2.1.0-beta.23",
|
|
40
|
+
"@nocobase/plugin-data-source-manager": "2.1.0-beta.23",
|
|
41
|
+
"@nocobase/plugin-data-visualization": "2.1.0-beta.23",
|
|
42
|
+
"@nocobase/plugin-data-visualization-echarts": "2.1.0-beta.23",
|
|
43
|
+
"@nocobase/plugin-departments": "2.1.0-beta.23",
|
|
44
|
+
"@nocobase/plugin-embed": "2.1.0-beta.23",
|
|
45
|
+
"@nocobase/plugin-environment-variables": "2.1.0-beta.23",
|
|
46
|
+
"@nocobase/plugin-error-handler": "2.1.0-beta.23",
|
|
47
|
+
"@nocobase/plugin-field-attachment-url": "2.1.0-beta.23",
|
|
48
|
+
"@nocobase/plugin-field-china-region": "2.1.0-beta.23",
|
|
49
|
+
"@nocobase/plugin-field-code": "2.1.0-beta.23",
|
|
50
|
+
"@nocobase/plugin-field-formula": "2.1.0-beta.23",
|
|
51
|
+
"@nocobase/plugin-field-m2m-array": "2.1.0-beta.23",
|
|
52
|
+
"@nocobase/plugin-field-markdown-vditor": "2.1.0-beta.23",
|
|
53
|
+
"@nocobase/plugin-field-sequence": "2.1.0-beta.23",
|
|
54
|
+
"@nocobase/plugin-field-sort": "2.1.0-beta.23",
|
|
55
|
+
"@nocobase/plugin-file-manager": "2.1.0-beta.23",
|
|
56
|
+
"@nocobase/plugin-file-previewer-office": "2.1.0-beta.23",
|
|
57
|
+
"@nocobase/plugin-flow-engine": "2.1.0-beta.23",
|
|
58
|
+
"@nocobase/plugin-form-drafts": "2.1.0-beta.23",
|
|
59
|
+
"@nocobase/plugin-gantt": "2.1.0-beta.23",
|
|
60
|
+
"@nocobase/plugin-graph-collection-manager": "2.1.0-beta.23",
|
|
61
|
+
"@nocobase/plugin-idp-oauth": "2.1.0-beta.23",
|
|
62
|
+
"@nocobase/plugin-kanban": "2.1.0-beta.23",
|
|
63
|
+
"@nocobase/plugin-license": "2.1.0-beta.23",
|
|
64
|
+
"@nocobase/plugin-locale-tester": "2.1.0-beta.23",
|
|
65
|
+
"@nocobase/plugin-localization": "2.1.0-beta.23",
|
|
66
|
+
"@nocobase/plugin-logger": "2.1.0-beta.23",
|
|
67
|
+
"@nocobase/plugin-map": "2.1.0-beta.23",
|
|
68
|
+
"@nocobase/plugin-mcp-server": "2.1.0-beta.23",
|
|
69
|
+
"@nocobase/plugin-mobile": "2.1.0-beta.23",
|
|
70
|
+
"@nocobase/plugin-mock-collections": "2.1.0-beta.23",
|
|
71
|
+
"@nocobase/plugin-multi-app-manager": "2.1.0-beta.23",
|
|
72
|
+
"@nocobase/plugin-multi-keyword-filter": "2.1.0-beta.23",
|
|
73
|
+
"@nocobase/plugin-notification-email": "2.1.0-beta.23",
|
|
74
|
+
"@nocobase/plugin-notification-in-app-message": "2.1.0-beta.23",
|
|
75
|
+
"@nocobase/plugin-notification-manager": "2.1.0-beta.23",
|
|
76
|
+
"@nocobase/plugin-public-forms": "2.1.0-beta.23",
|
|
77
|
+
"@nocobase/plugin-system-settings": "2.1.0-beta.23",
|
|
78
|
+
"@nocobase/plugin-text-copy": "2.1.0-beta.23",
|
|
79
|
+
"@nocobase/plugin-theme-editor": "2.1.0-beta.23",
|
|
80
|
+
"@nocobase/plugin-ui-schema-storage": "2.1.0-beta.23",
|
|
81
|
+
"@nocobase/plugin-ui-templates": "2.1.0-beta.23",
|
|
82
|
+
"@nocobase/plugin-user-data-sync": "2.1.0-beta.23",
|
|
83
|
+
"@nocobase/plugin-users": "2.1.0-beta.23",
|
|
84
|
+
"@nocobase/plugin-verification": "2.1.0-beta.23",
|
|
85
|
+
"@nocobase/plugin-workflow": "2.1.0-beta.23",
|
|
86
|
+
"@nocobase/plugin-workflow-action-trigger": "2.1.0-beta.23",
|
|
87
|
+
"@nocobase/plugin-workflow-aggregate": "2.1.0-beta.23",
|
|
88
|
+
"@nocobase/plugin-workflow-cc": "2.1.0-beta.23",
|
|
89
|
+
"@nocobase/plugin-workflow-custom-action-trigger": "2.1.0-beta.23",
|
|
90
|
+
"@nocobase/plugin-workflow-date-calculation": "2.1.0-beta.23",
|
|
91
|
+
"@nocobase/plugin-workflow-delay": "2.1.0-beta.23",
|
|
92
|
+
"@nocobase/plugin-workflow-dynamic-calculation": "2.1.0-beta.23",
|
|
93
|
+
"@nocobase/plugin-workflow-javascript": "2.1.0-beta.23",
|
|
94
|
+
"@nocobase/plugin-workflow-json-query": "2.1.0-beta.23",
|
|
95
|
+
"@nocobase/plugin-workflow-json-variable-mapping": "2.1.0-beta.23",
|
|
96
|
+
"@nocobase/plugin-workflow-loop": "2.1.0-beta.23",
|
|
97
|
+
"@nocobase/plugin-workflow-mailer": "2.1.0-beta.23",
|
|
98
|
+
"@nocobase/plugin-workflow-manual": "2.1.0-beta.23",
|
|
99
|
+
"@nocobase/plugin-workflow-notification": "2.1.0-beta.23",
|
|
100
|
+
"@nocobase/plugin-workflow-parallel": "2.1.0-beta.23",
|
|
101
|
+
"@nocobase/plugin-workflow-request": "2.1.0-beta.23",
|
|
102
|
+
"@nocobase/plugin-workflow-request-interceptor": "2.1.0-beta.23",
|
|
103
|
+
"@nocobase/plugin-workflow-response-message": "2.1.0-beta.23",
|
|
104
|
+
"@nocobase/plugin-workflow-sql": "2.1.0-beta.23",
|
|
105
|
+
"@nocobase/plugin-workflow-variable": "2.1.0-beta.23",
|
|
106
|
+
"@nocobase/server": "2.1.0-beta.23",
|
|
107
107
|
"cronstrue": "^2.11.0",
|
|
108
108
|
"fs-extra": "^11.1.1"
|
|
109
109
|
},
|
|
@@ -191,5 +191,5 @@
|
|
|
191
191
|
"url": "git+https://github.com/nocobase/nocobase.git",
|
|
192
192
|
"directory": "packages/presets/nocobase"
|
|
193
193
|
},
|
|
194
|
-
"gitHead": "
|
|
194
|
+
"gitHead": "bb4c0d3551bf9eff505b63756dd24a0813231f16"
|
|
195
195
|
}
|