@nocobase/client 1.2.37-alpha → 1.2.38-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/collection-manager/templates/properties/index.d.ts +8 -1
- package/es/collection-manager/templates/sql.d.ts +1 -0
- package/es/collection-manager/templates/view.d.ts +1 -0
- package/es/index.mjs +73 -98
- package/es/schema-component/antd/upload/shared.d.ts +0 -3
- package/es/schema-settings/index.d.ts +0 -1
- package/lib/index.js +32 -32
- package/lib/locale/en_US.js +3 -1
- package/lib/locale/zh-CN.js +3 -2
- package/package.json +5 -5
- package/es/schema-settings/SchemaSettingsPagingMode.d.ts +0 -10
package/lib/locale/en_US.js
CHANGED
|
@@ -833,5 +833,7 @@ module.exports = {
|
|
|
833
833
|
"Expand All": "Expand All",
|
|
834
834
|
Search: "Search",
|
|
835
835
|
"Clear default value": "Clear default value",
|
|
836
|
-
"Open in new window": "Open in new window"
|
|
836
|
+
"Open in new window": "Open in new window",
|
|
837
|
+
"is none of": "is none of",
|
|
838
|
+
"is any of": "is any of"
|
|
837
839
|
};
|
package/lib/locale/zh-CN.js
CHANGED
|
@@ -965,6 +965,7 @@ module.exports = {
|
|
|
965
965
|
Search: "\u641C\u7D22",
|
|
966
966
|
"Clear default value": "\u6E05\u9664\u9ED8\u8BA4\u503C",
|
|
967
967
|
"Open in new window": "\u65B0\u7A97\u53E3\u6253\u5F00",
|
|
968
|
-
"
|
|
969
|
-
"
|
|
968
|
+
"is none of": "\u4E0D\u5305\u542B\u4EFB\u4F55\u4E00\u4E2A",
|
|
969
|
+
"is any of": "\u5305\u542B\u4EFB\u4F55\u4E00\u4E2A",
|
|
970
|
+
"Use simple pagination mode": "\u4F7F\u7528\u7B80\u5355\u5206\u9875\u6A21\u5F0F"
|
|
970
971
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/client",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.38-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.38-alpha",
|
|
30
|
+
"@nocobase/sdk": "1.2.38-alpha",
|
|
31
|
+
"@nocobase/utils": "1.2.38-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": "8dad44e01936302b5cc7f9bf342f0321c4167f44"
|
|
83
83
|
}
|
|
@@ -1,10 +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 React from 'react';
|
|
10
|
-
export declare function SchemaSettingsPagingMode(): React.JSX.Element;
|