ci-plus 1.1.2 → 1.1.3
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/index.ts +6 -3
- package/package.json +1 -1
- package/src/components.d.ts +4 -1
- package/src/fileRelated/ciupload.vue +1 -0
- package/src/fileRelated/index/ciseeFile.ts +4 -0
- package/src/fileRelated/index/ciuploadV2.ts +4 -0
- package/src/fileRelated/seeFile.vue +1 -0
- package/src/fileRelated/uploadV2.vue +1 -0
- package/src/index.ts +6 -2
- package/src/utils/index.ts +3 -1
package/index.ts
CHANGED
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
import * as components from './src/index';
|
|
2
2
|
export * from './src/index';
|
|
3
3
|
import { App } from 'vue';
|
|
4
|
-
|
|
4
|
+
|
|
5
|
+
import * as D from './src/utils';
|
|
6
|
+
console.log('D: ', D);
|
|
5
7
|
|
|
6
8
|
export default {
|
|
7
9
|
install: (app: App) => {
|
|
8
10
|
// 注册所有组件
|
|
9
|
-
console.log('注册所有ci-plus
|
|
11
|
+
console.log('注册所有ci-plus组件1.1.3: ');
|
|
10
12
|
for (const c in components) {
|
|
11
13
|
app.use(components[c]);
|
|
12
14
|
}
|
|
13
|
-
}
|
|
15
|
+
},
|
|
16
|
+
D,
|
|
14
17
|
};
|
package/package.json
CHANGED
package/src/components.d.ts
CHANGED
|
@@ -19,8 +19,11 @@ declare module '@vue/runtime-core' {
|
|
|
19
19
|
CiHeaderInput: typeof components.HeaderInput
|
|
20
20
|
CiSdialog: typeof components.Sdialog
|
|
21
21
|
CiColumncell: typeof components.Columncell
|
|
22
|
-
CiUpload: typeof components.Upload
|
|
23
22
|
CiIdentificationCard: typeof components.IdentificationCard
|
|
23
|
+
|
|
24
|
+
CiSeeFile: typeof components.SeeFile
|
|
25
|
+
CiUpload: typeof components.Upload
|
|
26
|
+
CiUploadV2: typeof components.UploadV2
|
|
24
27
|
}
|
|
25
28
|
}
|
|
26
29
|
export { };
|
package/src/index.ts
CHANGED
|
@@ -10,5 +10,9 @@ export * from './sortableTable/index/headerInput'; // 导出筛选面板
|
|
|
10
10
|
export * from './sortableTable/index/sortableTable'; // 导出排序表格
|
|
11
11
|
export * from './sortableTable/index/sortableTableDialog'; // 导出表排序组件
|
|
12
12
|
export * from './sortableTable/index/sortableTableColumnCell'; // 导出表列组件
|
|
13
|
-
|
|
14
|
-
export * from './identificationCard'; // 导出标识卡模板组件
|
|
13
|
+
|
|
14
|
+
export * from './identificationCard'; // 导出标识卡模板组件
|
|
15
|
+
|
|
16
|
+
export * from './fileRelated/index/ciseeFile'; // 导出附件查看组件
|
|
17
|
+
export * from './fileRelated/index/ciupload'; // 导出附件上传组件
|
|
18
|
+
export * from './fileRelated/index/ciuploadV2'; // 导出附件上传v2组件
|
package/src/utils/index.ts
CHANGED