@nocobase/client 1.2.3-alpha → 1.2.5-alpha
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/es/application/schema-initializer/components/SchemaInitializerActionModal.d.ts +1 -0
- package/es/application/schema-initializer/components/SchemaInitializerItem.d.ts +4 -0
- package/es/application/schema-initializer/types.d.ts +1 -1
- package/es/collection-manager/templates/index.d.ts +0 -1
- package/es/data-source/collection/AssociationProvider.d.ts +4 -0
- package/es/index.mjs +1340 -1366
- package/lib/index.js +110 -107
- package/lib/locale/ja_JP.js +1 -1
- package/package.json +5 -5
- package/es/collection-manager/templates/expression.d.ts +0 -63
package/lib/locale/ja_JP.js
CHANGED
|
@@ -102,7 +102,7 @@ module.exports = {
|
|
|
102
102
|
"Allow sign up": "\u30B5\u30A4\u30F3\u30A2\u30C3\u30D7\u3092\u8A31\u53EF",
|
|
103
103
|
"Sign out": "\u30B5\u30A4\u30F3\u30A2\u30A6\u30C8",
|
|
104
104
|
Cancel: "\u53D6\u6D88",
|
|
105
|
-
Submit: "\
|
|
105
|
+
Submit: "\u4FDD\u5B58",
|
|
106
106
|
Close: "\u9589\u3058\u308B",
|
|
107
107
|
"Set the data scope": "\u30C7\u30FC\u30BF\u7BC4\u56F2\u306E\u8A2D\u5B9A",
|
|
108
108
|
"Data loading mode": "\u30C7\u30FC\u30BF\u8AAD\u307F\u8FBC\u307F\u30E2\u30FC\u30C9",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/client",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5-alpha",
|
|
4
4
|
"license": "AGPL-3.0",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.mjs",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"@formily/reactive-react": "^2.2.27",
|
|
27
27
|
"@formily/shared": "^2.2.27",
|
|
28
28
|
"@formily/validator": "^2.2.27",
|
|
29
|
-
"@nocobase/evaluators": "1.2.
|
|
30
|
-
"@nocobase/sdk": "1.2.
|
|
31
|
-
"@nocobase/utils": "1.2.
|
|
29
|
+
"@nocobase/evaluators": "1.2.5-alpha",
|
|
30
|
+
"@nocobase/sdk": "1.2.5-alpha",
|
|
31
|
+
"@nocobase/utils": "1.2.5-alpha",
|
|
32
32
|
"ahooks": "^3.7.2",
|
|
33
33
|
"antd": "^5.12.8",
|
|
34
34
|
"antd-style": "3.4.5",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"dumi": "2.2.14",
|
|
80
80
|
"dumi-theme-nocobase": "^0.2.28"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "ca7baa2d4dffe0e2c02f676b96ff841f3ee31e7e"
|
|
83
83
|
}
|
|
@@ -1,63 +0,0 @@
|
|
|
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 { CollectionTemplate } from '../../data-source/collection-template/CollectionTemplate';
|
|
10
|
-
export declare class ExpressionCollectionTemplate extends CollectionTemplate {
|
|
11
|
-
name: string;
|
|
12
|
-
title: string;
|
|
13
|
-
order: number;
|
|
14
|
-
color: string;
|
|
15
|
-
default: {
|
|
16
|
-
createdBy: boolean;
|
|
17
|
-
updatedBy: boolean;
|
|
18
|
-
createdAt: boolean;
|
|
19
|
-
updatedAt: boolean;
|
|
20
|
-
sortable: boolean;
|
|
21
|
-
fields: ({
|
|
22
|
-
name: string;
|
|
23
|
-
type: string;
|
|
24
|
-
interface: string;
|
|
25
|
-
uiSchema: {
|
|
26
|
-
type: string;
|
|
27
|
-
title: string;
|
|
28
|
-
'x-component': string;
|
|
29
|
-
enum: any;
|
|
30
|
-
default: string;
|
|
31
|
-
'x-component-props'?: undefined;
|
|
32
|
-
};
|
|
33
|
-
} | {
|
|
34
|
-
name: string;
|
|
35
|
-
type: string;
|
|
36
|
-
interface: string;
|
|
37
|
-
uiSchema: {
|
|
38
|
-
type: string;
|
|
39
|
-
title: string;
|
|
40
|
-
'x-component': string;
|
|
41
|
-
'x-component-props': {};
|
|
42
|
-
enum?: undefined;
|
|
43
|
-
default?: undefined;
|
|
44
|
-
};
|
|
45
|
-
} | {
|
|
46
|
-
name: string;
|
|
47
|
-
type: string;
|
|
48
|
-
interface: string;
|
|
49
|
-
uiSchema: {
|
|
50
|
-
type: string;
|
|
51
|
-
title: string;
|
|
52
|
-
'x-component': string;
|
|
53
|
-
enum?: undefined;
|
|
54
|
-
default?: undefined;
|
|
55
|
-
'x-component-props'?: undefined;
|
|
56
|
-
};
|
|
57
|
-
})[];
|
|
58
|
-
};
|
|
59
|
-
availableFieldInterfaces: {
|
|
60
|
-
include: any[];
|
|
61
|
-
};
|
|
62
|
-
configurableProperties: Record<import("./properties").DefaultConfigurableKeys, any>;
|
|
63
|
-
}
|