@nocobase/client 2.1.0-beta.44 → 2.1.0-beta.46
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/Application.d.ts +0 -3
- package/es/index.mjs +118 -99
- package/lib/index.js +76 -57
- package/lib/locale/en-US.json +1 -0
- package/lib/locale/zh-CN.json +3 -0
- package/package.json +7 -7
package/lib/locale/en-US.json
CHANGED
|
@@ -718,6 +718,7 @@
|
|
|
718
718
|
"Html settings": "Html settings",
|
|
719
719
|
"IANA registry": "IANA registry",
|
|
720
720
|
"ID": "ID",
|
|
721
|
+
"https://www.example.com": "https://www.example.com",
|
|
721
722
|
"Icon": "Icon",
|
|
722
723
|
"Icon only": "Icon only",
|
|
723
724
|
"Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "Identifier for program usage. Support letters, numbers and underscores, must start with an letter.",
|
package/lib/locale/zh-CN.json
CHANGED
|
@@ -717,6 +717,7 @@
|
|
|
717
717
|
"Html settings": "Html 设置项",
|
|
718
718
|
"IANA registry": "IANA注册表",
|
|
719
719
|
"ID": "ID",
|
|
720
|
+
"https://www.example.com": "https://www.example.com",
|
|
720
721
|
"Icon": "图标",
|
|
721
722
|
"Icon only": "仅显示图标",
|
|
722
723
|
"Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "用于程序使用的标识符,支持字母、数字和下划线,必须以字母开头。",
|
|
@@ -1390,6 +1391,8 @@
|
|
|
1390
1391
|
"The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for collection \"{{name}}\"": "当前用户只有 UI 配置权限,但没有数据表 \"{{name}}\"的 \"{{actionName}}\"权限。",
|
|
1391
1392
|
"The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for field \"{{name}}\"": "当前用户只有 UI 配置权限,但没有字段 \"{{name}}\"的 \"{{actionName}}\"权限。",
|
|
1392
1393
|
"The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"": "当前用户只有 UI 配置权限,但没有数据表 \"{{name}}\" 查看权限。",
|
|
1394
|
+
"The data source \"{{name}}\" used by this block is disabled or unavailable. Enable the data source to display this block.": "该区块使用的数据源“{{name}}”已禁用或不可用。启用该数据源后才能显示此区块。",
|
|
1395
|
+
"The data source used by this block is disabled or unavailable. Enable the data source to display this block.": "该区块使用的数据源已禁用或不可用。启用该数据源后才能显示此区块。",
|
|
1393
1396
|
"The deletion was successful.": "删除成功",
|
|
1394
1397
|
"The field has been deleted": "字段已删除",
|
|
1395
1398
|
"The field value cannot be greater than ": "数值不能大于",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/client",
|
|
3
|
-
"version": "2.1.0-beta.
|
|
3
|
+
"version": "2.1.0-beta.46",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.mjs",
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"@formily/reactive-react": "^2.2.27",
|
|
29
29
|
"@formily/shared": "^2.2.27",
|
|
30
30
|
"@formily/validator": "^2.2.27",
|
|
31
|
-
"@nocobase/client-v2": "2.1.0-beta.
|
|
32
|
-
"@nocobase/evaluators": "2.1.0-beta.
|
|
33
|
-
"@nocobase/flow-engine": "2.1.0-beta.
|
|
34
|
-
"@nocobase/sdk": "2.1.0-beta.
|
|
35
|
-
"@nocobase/utils": "2.1.0-beta.
|
|
31
|
+
"@nocobase/client-v2": "2.1.0-beta.46",
|
|
32
|
+
"@nocobase/evaluators": "2.1.0-beta.46",
|
|
33
|
+
"@nocobase/flow-engine": "2.1.0-beta.46",
|
|
34
|
+
"@nocobase/sdk": "2.1.0-beta.46",
|
|
35
|
+
"@nocobase/utils": "2.1.0-beta.46",
|
|
36
36
|
"@tanstack/react-table": "^8.21.3",
|
|
37
37
|
"@types/tabulator-tables": "^6.2.6",
|
|
38
38
|
"acorn-jsx": "^5.3.2",
|
|
@@ -97,5 +97,5 @@
|
|
|
97
97
|
"dumi": "2.2.14",
|
|
98
98
|
"dumi-theme-nocobase": "^0.2.32"
|
|
99
99
|
},
|
|
100
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "91fd3ab238a5ff58735bbfca04a8cb05d233b0af"
|
|
101
101
|
}
|