@nocobase/plugin-block-workbench 1.2.10-alpha → 1.2.12-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/components/qrcode-scanner/ScanBox.d.ts +12 -0
- package/dist/client/components/qrcode-scanner/index.d.ts +1 -8
- package/dist/client/components/qrcode-scanner/useScanner.d.ts +16 -0
- package/dist/client/index.js +15 -15
- package/dist/externalVersion.js +4 -3
- package/dist/locale/zh-CN.json +7 -1
- package/package.json +4 -2
package/dist/externalVersion.js
CHANGED
|
@@ -9,12 +9,13 @@
|
|
|
9
9
|
|
|
10
10
|
module.exports = {
|
|
11
11
|
"@formily/react": "2.3.0",
|
|
12
|
-
"@nocobase/client": "1.2.
|
|
13
|
-
"@nocobase/utils": "1.2.
|
|
12
|
+
"@nocobase/client": "1.2.12-alpha",
|
|
13
|
+
"@nocobase/utils": "1.2.12-alpha",
|
|
14
14
|
"react": "18.2.0",
|
|
15
15
|
"antd": "5.12.8",
|
|
16
16
|
"antd-style": "3.4.5",
|
|
17
17
|
"react-i18next": "11.18.6",
|
|
18
|
-
"@nocobase/server": "1.2.
|
|
18
|
+
"@nocobase/server": "1.2.12-alpha",
|
|
19
|
+
"@ant-design/icons": "5.3.7",
|
|
19
20
|
"react-router-dom": "6.21.0"
|
|
20
21
|
};
|
package/dist/locale/zh-CN.json
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Workbench": "工作台",
|
|
3
|
-
"Scan QR code": "扫描二维码"
|
|
3
|
+
"Scan QR code": "扫描二维码",
|
|
4
|
+
"Album": "相册",
|
|
5
|
+
"No camera device detected": "未检测到摄像头设备",
|
|
6
|
+
"You have not granted permission to use the camera": "您未授权使用摄像头",
|
|
7
|
+
"Unknown error": "未知错误",
|
|
8
|
+
"The image size is too large. Please compress it to below 1MB before uploading": "图片尺寸过大,请压缩到1MB以下上传",
|
|
9
|
+
"QR code recognition failed, please scan again": "二维码识别失败,请重新扫描"
|
|
4
10
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/plugin-block-workbench",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.12-alpha",
|
|
4
4
|
"displayName": "Block: Workbench",
|
|
5
5
|
"displayName.zh-CN": "区块:工作台",
|
|
6
6
|
"description": "Add buttons for actions, links, etc. in the workbench block to quickly initiate actions and jump pages.",
|
|
@@ -12,11 +12,13 @@
|
|
|
12
12
|
"@nocobase/test": "1.x"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
+
"@ant-design/icons": "^5.x",
|
|
16
|
+
"antd": "^5.x",
|
|
15
17
|
"html5-qrcode": "^2.3.8",
|
|
16
18
|
"react-router-dom": "^6.x"
|
|
17
19
|
},
|
|
18
20
|
"keywords": [
|
|
19
21
|
"Blocks"
|
|
20
22
|
],
|
|
21
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "553231d4882496cb7f1f17fa7541899ce82a27ab"
|
|
22
24
|
}
|