@nocobase/plugin-block-workbench 1.3.39-beta → 1.4.0-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/dist/client/WorkbenchBlock.d.ts +4 -0
- package/dist/client/WorkbenchCustomRequestActionSchemaInitializerItem.d.ts +12 -0
- package/dist/client/WorkbenchPopupActionSchemaInitializerItem.d.ts +12 -0
- package/dist/client/index.js +35 -18
- package/dist/client/workbenchBlockSettings.d.ts +4 -0
- package/dist/externalVersion.js +4 -3
- package/dist/locale/zh-CN.json +8 -3
- package/package.json +6 -6
- /package/dist/locale/{ja_JP.json → ja-JP.json} +0 -0
|
@@ -7,4 +7,8 @@
|
|
|
7
7
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
8
|
*/
|
|
9
9
|
import { SchemaSettings } from '@nocobase/client';
|
|
10
|
+
export declare const WorkbenchLayout: {
|
|
11
|
+
Grid: string;
|
|
12
|
+
List: string;
|
|
13
|
+
};
|
|
10
14
|
export declare const workbenchBlockSettings: SchemaSettings<{}>;
|
package/dist/externalVersion.js
CHANGED
|
@@ -9,13 +9,14 @@
|
|
|
9
9
|
|
|
10
10
|
module.exports = {
|
|
11
11
|
"@formily/react": "2.3.0",
|
|
12
|
-
"@nocobase/client": "1.
|
|
13
|
-
"@nocobase/utils": "1.
|
|
12
|
+
"@nocobase/client": "1.4.0-alpha",
|
|
13
|
+
"@nocobase/utils": "1.4.0-alpha",
|
|
14
14
|
"react": "18.2.0",
|
|
15
15
|
"antd": "5.12.8",
|
|
16
16
|
"antd-style": "3.4.5",
|
|
17
|
+
"@emotion/css": "11.13.0",
|
|
17
18
|
"react-i18next": "11.18.6",
|
|
18
|
-
"@nocobase/server": "1.
|
|
19
|
+
"@nocobase/server": "1.4.0-alpha",
|
|
19
20
|
"@ant-design/icons": "5.3.7",
|
|
20
21
|
"react-router-dom": "6.21.0"
|
|
21
22
|
};
|
package/dist/locale/zh-CN.json
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"Action panel": "操作面板",
|
|
3
3
|
"Scan QR code": "扫描二维码",
|
|
4
4
|
"Album": "相册",
|
|
5
5
|
"No camera device detected": "未检测到摄像头设备",
|
|
6
6
|
"You have not granted permission to use the camera": "您未授权使用摄像头",
|
|
7
7
|
"Unknown error": "未知错误",
|
|
8
8
|
"The image size is too large. Please compress it to below 1MB before uploading": "图片尺寸过大,请压缩到1MB以下上传",
|
|
9
|
-
"QR code recognition failed, please scan again": "二维码识别失败,请重新扫描"
|
|
10
|
-
|
|
9
|
+
"QR code recognition failed, please scan again": "二维码识别失败,请重新扫描",
|
|
10
|
+
"Layout": "布局",
|
|
11
|
+
"Grid": "栅格",
|
|
12
|
+
"List": "列表",
|
|
13
|
+
"Add popup": "添加弹窗",
|
|
14
|
+
"Add custom request":"添加自定义请求"
|
|
15
|
+
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/plugin-block-workbench",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"displayName": "Block:
|
|
5
|
-
"displayName.zh-CN": "
|
|
6
|
-
"description": "
|
|
7
|
-
"description.zh-CN": "
|
|
3
|
+
"version": "1.4.0-alpha",
|
|
4
|
+
"displayName": "Block: Action panel",
|
|
5
|
+
"displayName.zh-CN": "区块:操作面板",
|
|
6
|
+
"description": "Centrally manages and displays various actions, allowing users to efficiently perform tasks. It supports extensibility, with current action types including pop-ups, links, scanning, and custom requests.",
|
|
7
|
+
"description.zh-CN": "集中管理和展示各种操作,方便用户快速执行任务。支持扩展,目前支持的操作类型有弹窗、链接、扫描、自定义请求。",
|
|
8
8
|
"main": "dist/server/index.js",
|
|
9
9
|
"peerDependencies": {
|
|
10
10
|
"@nocobase/client": "1.x",
|
|
@@ -20,5 +20,5 @@
|
|
|
20
20
|
"keywords": [
|
|
21
21
|
"Blocks"
|
|
22
22
|
],
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "f097a2bddec152522b5645bd5d451f4c866d2060"
|
|
24
24
|
}
|
|
File without changes
|