zhytech-ui 1.1.35 → 1.1.37

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zhytech-ui",
3
- "version": "1.1.35",
3
+ "version": "1.1.37",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "scripts": {
@@ -56,7 +56,8 @@
56
56
  "pptx-preview": "^1.0.1",
57
57
  "sortablejs": "^1.15.0",
58
58
  "vue": "^3.4.37",
59
- "vue-router": "^4.2.0"
59
+ "vue-router": "^4.2.0",
60
+ "vue3-puzzle-vcode": "^1.1.7"
60
61
  },
61
62
  "devDependencies": {
62
63
  "@rushstack/eslint-patch": "^1.2.0",
@@ -1,38 +0,0 @@
1
- /**
2
- * @description: 文档管理中文件上传参数类型
3
- */
4
- export interface fileView {
5
- /**
6
- * 文件名称
7
- */
8
- name: string;
9
- /**
10
- * 文件,可以是地址,二进制,文件流
11
- */
12
- file: string;
13
- /**
14
- * 文件扩展名
15
- */
16
- extensionName: string;
17
- }
18
- /**
19
- * @description: 文档管理中文件上传参数类型
20
- */
21
- export interface previewOption {
22
- /**
23
- * 组件打开时 默认显示文件序号,多文件时使用,默认0
24
- */
25
- defaultOpenFileIndex?: number;
26
- /**
27
- * 是否打开文件列表,默认 单文件false,多文件true
28
- */
29
- openList?: boolean;
30
- /**
31
- * 自动播放视频
32
- */
33
- autoplayVideo?: boolean;
34
- /**
35
- * 自动播放音频
36
- */
37
- autoplayAudio?: boolean;
38
- }