@nocobase/client 2.0.10 → 2.0.12
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/view.d.ts +11 -11
- package/es/flow/components/code-editor/runjsDiagnostics.d.ts +5 -2
- package/es/flow/components/filter/LinkageFilterItem.d.ts +23 -0
- package/es/flow/models/actions/AddChildActionModel.d.ts +1 -0
- package/es/flow/models/actions/BulkDeleteActionModel.d.ts +1 -0
- package/es/flow/models/actions/LinkActionUtils.d.ts +34 -0
- package/es/flow/models/base/ActionGroupModel.d.ts +8 -0
- package/es/flow/models/base/CollectionBlockModel.d.ts +8 -0
- package/es/flow/models/base/PageModel/RootPageModel.d.ts +8 -0
- package/es/flow/models/blocks/details/DetailsBlockModel.d.ts +1 -0
- package/es/flow/models/blocks/form/CreateFormModel.d.ts +1 -0
- package/es/flow/models/blocks/form/EditFormModel.d.ts +2 -0
- package/es/flow/models/blocks/form/submitValues.d.ts +8 -0
- package/es/flow/utils/actionCapability.d.ts +60 -0
- package/es/index.mjs +2944 -2643
- package/es/schema-component/antd/association-field/Table.d.ts +0 -57
- package/es/schema-settings/VariableInput/hooks/useParentIterationVariable.d.ts +3 -3
- package/lib/index.js +138 -134
- package/lib/locale/en-US.json +1 -0
- package/lib/locale/zh-CN.json +1 -0
- package/package.json +6 -6
package/lib/locale/en-US.json
CHANGED
|
@@ -896,6 +896,7 @@
|
|
|
896
896
|
"No assigned fields configured": "No assigned fields configured",
|
|
897
897
|
"No blocks to connect": "No blocks to connect",
|
|
898
898
|
"No configuration available.": "No configuration available.",
|
|
899
|
+
"No available data currently": "No available data currently",
|
|
899
900
|
"No data": "No data",
|
|
900
901
|
"No event flows": "No event flows",
|
|
901
902
|
"No built-in flows for this event": "No flows available for this event",
|
package/lib/locale/zh-CN.json
CHANGED
|
@@ -894,6 +894,7 @@
|
|
|
894
894
|
"No assigned fields configured": "未配置字段",
|
|
895
895
|
"No blocks to connect": "没有可连接的区块",
|
|
896
896
|
"No configuration available.": "无可配置项。",
|
|
897
|
+
"No available data currently": "当前无可用数据",
|
|
897
898
|
"No data": "暂无数据",
|
|
898
899
|
"No event flows": "暂无事件流",
|
|
899
900
|
"No built-in flows for this event": "当前事件暂无可插入的指定流",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/client",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.12",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.mjs",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"@formily/reactive-react": "^2.2.27",
|
|
29
29
|
"@formily/shared": "^2.2.27",
|
|
30
30
|
"@formily/validator": "^2.2.27",
|
|
31
|
-
"@nocobase/evaluators": "2.0.
|
|
32
|
-
"@nocobase/flow-engine": "2.0.
|
|
33
|
-
"@nocobase/sdk": "2.0.
|
|
34
|
-
"@nocobase/utils": "2.0.
|
|
31
|
+
"@nocobase/evaluators": "2.0.12",
|
|
32
|
+
"@nocobase/flow-engine": "2.0.12",
|
|
33
|
+
"@nocobase/sdk": "2.0.12",
|
|
34
|
+
"@nocobase/utils": "2.0.12",
|
|
35
35
|
"@tanstack/react-table": "^8.21.3",
|
|
36
36
|
"@types/tabulator-tables": "^6.2.6",
|
|
37
37
|
"acorn-jsx": "^5.3.2",
|
|
@@ -96,5 +96,5 @@
|
|
|
96
96
|
"dumi": "2.2.14",
|
|
97
97
|
"dumi-theme-nocobase": "^0.2.32"
|
|
98
98
|
},
|
|
99
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "a96acd22a9b0744b567617e3a1f1d42cb7f72368"
|
|
100
100
|
}
|