@newview/file-ui 1.1.61 → 1.1.63
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/README.md +6 -0
- package/dist/browser-BKLM0ThC-IAuFUahz-a16baf3c.js +448 -0
- package/dist/direct-engine-CzzT8DSZ-cf7e226e.js +5225 -0
- package/dist/file-ui.js +18 -20766
- package/dist/file-ui.umd.cjs +1 -1
- package/dist/index-8bb88267.js +41350 -0
- package/dist/style.css +1 -1
- package/dist/worker-engine-BZRBQvei-e86f78f0.js +429 -0
- package/package.json +2 -1
- package/types/ComFormUp.d.ts +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@newview/file-ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.63",
|
|
4
4
|
"author": "newview",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"keywords": [],
|
|
36
36
|
"dependencies": {
|
|
37
|
+
"@embedpdf/vue-pdf-viewer": "^2.14.2",
|
|
37
38
|
"@newview/base-vue": "^1.0.0",
|
|
38
39
|
"@newview/fileservice-api": "^1.0.0",
|
|
39
40
|
"@newview/infrastructure": "^1.0.0",
|
package/types/ComFormUp.d.ts
CHANGED
|
@@ -1544,9 +1544,11 @@ export interface uploadFileProp {
|
|
|
1544
1544
|
/** 是否显示文件名称 */
|
|
1545
1545
|
isShowFileName?: Boolean
|
|
1546
1546
|
|
|
1547
|
-
|
|
1547
|
+
/** 是否显示下载按钮 */
|
|
1548
1548
|
isDownload?: Boolean
|
|
1549
1549
|
|
|
1550
|
+
/**是否使用EmbedPDF展示pdf */
|
|
1551
|
+
isUseEmbedPDF?:Boolean
|
|
1550
1552
|
|
|
1551
1553
|
}
|
|
1552
1554
|
/**
|