ci-plus 1.7.9 → 1.8.1
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 +2 -0
- package/package.json +9 -2
- package/src/components.d.ts +10 -10
- package/src/identificationCard/barCode.vue +1 -1
- package/src/index.ts +1 -1
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ci-plus",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.1",
|
|
4
4
|
"description": "ci组件库",
|
|
5
5
|
"main": "./index.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -20,7 +20,14 @@
|
|
|
20
20
|
},
|
|
21
21
|
"license": "ISC",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"vue-i18n": "
|
|
23
|
+
"vue-i18n": ">=11.0.0",
|
|
24
|
+
"less": ">=4.0.0",
|
|
25
|
+
"dayjs": ">=1.0.0",
|
|
26
|
+
"element-plus": ">=2.7.0",
|
|
27
|
+
"vite-plugin-svg-icons": ">=2.0.0",
|
|
28
|
+
"sortablejs": ">=1.0.0",
|
|
29
|
+
"lodash": ">=4.10.0",
|
|
30
|
+
"lodash-es": ">=4.10.0"
|
|
24
31
|
},
|
|
25
32
|
"devDependencies": {},
|
|
26
33
|
"peerDependencies": {},
|
package/src/components.d.ts
CHANGED
|
@@ -4,22 +4,22 @@
|
|
|
4
4
|
* @Author: 导出类型定义
|
|
5
5
|
* @LastEditTime: 2023-05-22 16:12:52
|
|
6
6
|
*/
|
|
7
|
-
import * as components from './index'
|
|
7
|
+
import * as components from './index'
|
|
8
8
|
declare module '@vue/runtime-core' {
|
|
9
9
|
export interface GlobalComponents {
|
|
10
|
-
EaButton: typeof components.Button
|
|
11
|
-
EaIcon: typeof components.Icon
|
|
12
|
-
EaButtons: typeof components.Buttons
|
|
13
|
-
CiDialog: typeof components.Dialog
|
|
14
|
-
CiApp: typeof components.Ccapp
|
|
10
|
+
EaButton: typeof components.Button
|
|
11
|
+
EaIcon: typeof components.Icon
|
|
12
|
+
EaButtons: typeof components.Buttons
|
|
13
|
+
CiDialog: typeof components.Dialog
|
|
14
|
+
CiApp: typeof components.Ccapp
|
|
15
15
|
CiSvgicon: typeof components.Svgicon
|
|
16
|
-
CiSuffix: typeof components.Suffix
|
|
17
|
-
CiTable: typeof components.SorTables
|
|
16
|
+
CiSuffix: typeof components.Suffix
|
|
17
|
+
CiTable: typeof components.SorTables
|
|
18
18
|
CiHeadbtns: typeof components.Headbtns
|
|
19
19
|
CiHeaderInput: typeof components.HeaderInput
|
|
20
20
|
CiSdialog: typeof components.Sdialog
|
|
21
21
|
CiColumncell: typeof components.Columncell
|
|
22
|
-
CiIdentificationCard: typeof components.IdentificationCard
|
|
22
|
+
// CiIdentificationCard: typeof components.IdentificationCard
|
|
23
23
|
CiQrcode: typeof components.CiQrcode
|
|
24
24
|
|
|
25
25
|
CiSeeFile: typeof components.SeeFile
|
|
@@ -34,4 +34,4 @@ declare module '@vue/runtime-core' {
|
|
|
34
34
|
// 定义全局的类型
|
|
35
35
|
declare module 'lodash'
|
|
36
36
|
declare module 'jsbarcode'
|
|
37
|
-
export {
|
|
37
|
+
export {}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
<script setup lang="ts">
|
|
16
16
|
import { onMounted, nextTick, watch } from 'vue'
|
|
17
|
-
import JsBarcode from '
|
|
17
|
+
import JsBarcode from 'jsbarcode' //'./jsbarcode.js' //'https://cdn.jsdelivr.net/npm/jsbarcode@3.11.6/+esm'
|
|
18
18
|
interface Props {
|
|
19
19
|
value: String // 条码文本
|
|
20
20
|
type?: String // 类型
|
package/src/index.ts
CHANGED
|
@@ -11,7 +11,7 @@ export * from './sortableTable/index/sortableTable' // 导出排序表格
|
|
|
11
11
|
export * from './sortableTable/index/sortableTableDialog' // 导出表排序组件
|
|
12
12
|
export * from './sortableTable/index/sortableTableColumnCell' // 导出表列组件
|
|
13
13
|
|
|
14
|
-
export * from './identificationCard' // 导出标识卡条形码模板组件
|
|
14
|
+
// export * from './identificationCard' // 导出标识卡条形码模板组件
|
|
15
15
|
export * from './identificationCard/qrcode' // 导出标识卡二维码模板组件
|
|
16
16
|
|
|
17
17
|
export * from './fileRelated/index/ciseeFile' // 导出附件查看组件
|