ci-plus 1.4.1 → 1.4.2

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": "ci-plus",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "ci组件库",
5
5
  "main": "./index.ts",
6
6
  "scripts": {
@@ -20,7 +20,16 @@
20
20
  },
21
21
  "license": "ISC",
22
22
  "dependencies": {},
23
- "devDependencies": {},
23
+ "devDependencies": {
24
+ "lodash": "^4.17.21",
25
+ "sortablejs": "^1.15.1",
26
+ "jsbarcode": "^3.11.4",
27
+ "@types/jsbarcode": "^3.11.4",
28
+ "vue-draggable-plus": "^0.4.0",
29
+ "vue3-print-nb": "^0.1.4",
30
+ "qrcode": "^1.5.3",
31
+ "@vueuse/core": "^9.13.0"
32
+ },
24
33
  "peerDependencies": {},
25
34
  "peerDependenciesMeta": {}
26
35
  }
@@ -31,4 +31,7 @@ declare module '@vue/runtime-core' {
31
31
  CiQueryCondition: typeof components.QueryCondition
32
32
  }
33
33
  }
34
+ // 定义全局的类型
35
+ declare module 'lodash'
36
+ declare module 'jsbarcode'
34
37
  export { };
@@ -134,7 +134,8 @@
134
134
 
135
135
  <script setup lang="ts">
136
136
  defineOptions({ name: 'ci-headerInput' })
137
- import SvgIcon from '@/components/SvgIcon.vue'
137
+ // import SvgIcon from '@/components/SvgIcon.vue'
138
+ import SvgIcon from '../svgIcon/svgicon.vue'
138
139
  import { computed, ref, watch } from 'vue'
139
140
  import lodash from 'lodash'
140
141
  import headerPopover from './utils/headerPopover.vue'
@@ -51,7 +51,7 @@ import { computed, ref } from 'vue'
51
51
  import { SortableTableDialog } from './utils/interface'
52
52
  import sortableTableDragItem from './utils/sortableTableDragItem.vue'
53
53
  import { Rank } from '@element-plus/icons-vue'
54
- import SvgIcon from '../svgIcon/index'
54
+ import SvgIcon from '../svgIcon/svgicon.vue'
55
55
 
56
56
  const emits = defineEmits(['update:modelValue', 'update:data', 'submit'])
57
57
  const state = ref(false)