ci-plus 1.3.9 → 1.4.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 CHANGED
@@ -11,7 +11,12 @@
11
11
  "jsbarcode": "^3.11.6", # 条形码库
12
12
  "dayjs": "^1.11.9", # 日期处理库
13
13
  "vue-draggable-plus": "^0.4.0", # 拖拽库
14
- "qrcode": "^1.5.3", #二维码库
14
+ "qrcode": "^1.5.3", #二维码库
15
+
16
+ "vue3-print-nb": "^0.1.4",
17
+ "vuedraggable": "^2.24.3",
18
+ "qrcode": "^1.5.3",
19
+ "@vueuse/core": "^9.13.0"
15
20
  ```
16
21
 
17
22
  ```sh
package/index.ts CHANGED
@@ -5,7 +5,7 @@ import { default as Fn } from './src/utils';
5
5
  export default {
6
6
  install: (app: App) => {
7
7
  // 注册所有组件
8
- console.log('注册所有ci-plus组件1.2.4: ');
8
+ console.log('注册所有ci-plus组件1.3.9: ');
9
9
  for (const c in components) {
10
10
  app.use(components[c]);
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ci-plus",
3
- "version": "1.3.9",
3
+ "version": "1.4.1",
4
4
  "description": "ci组件库",
5
5
  "main": "./index.ts",
6
6
  "scripts": {
@@ -19,17 +19,8 @@
19
19
  "email": "10000@qq.com"
20
20
  },
21
21
  "license": "ISC",
22
- "dependencies": {
23
- "lodash": "^4.17.21",
24
- "vue-draggable-plus": "^0.4.0",
25
- "vue3-print-nb": "^0.1.4",
26
- "vuedraggable": "^2.24.3",
27
- "qrcode": "^1.5.3",
28
- "jsbarcode": "^3.11.6"
29
- },
30
- "devDependencies": {
31
- "@vueuse/core": "^9.13.0"
32
- },
22
+ "dependencies": {},
23
+ "devDependencies": {},
33
24
  "peerDependencies": {},
34
25
  "peerDependenciesMeta": {}
35
26
  }
package/src/index.ts CHANGED
@@ -18,6 +18,6 @@ export * from './fileRelated/index/ciseeFile'; // 导出附件查看组件
18
18
  export * from './fileRelated/index/ciupload'; // 导出附件上传组件
19
19
  export * from './fileRelated/index/ciuploadV2'; // 导出附件上传v2组件
20
20
 
21
- export * from './select/index'; // 导出select组件
22
- export * from './selectTable/index'; // 导出selectTable组件
23
- export * from './queryCondition/index'; // 导出queryCondition组件
21
+ export * from './select'; // 导出select组件
22
+ export * from './selectTable'; // 导出selectTable组件
23
+ export * from './queryCondition'; // 导出queryCondition组件
@@ -140,7 +140,8 @@
140
140
  </el-form>
141
141
  </template>
142
142
 
143
- <script setup lang="ts" name="ci-query-condition">
143
+ <script setup lang="ts">
144
+ defineOptions({ name: 'ci-query-condition' })
144
145
  import RenderComp from './renderComp.vue'
145
146
  import { computed, ref, watch, useSlots, onMounted, reactive, toRef } from 'vue'
146
147
  const props = defineProps({
@@ -54,7 +54,8 @@
54
54
  </component>
55
55
  </template>
56
56
 
57
- <script setup lang="ts" name="ci-select">
57
+ <script setup lang="ts">
58
+ defineOptions({ name: 'ci-select' })
58
59
  import { computed, useSlots } from 'vue'
59
60
  const props: any = defineProps({
60
61
  modelValue: {
@@ -147,7 +147,8 @@
147
147
  </el-select>
148
148
  </template>
149
149
 
150
- <script setup lang="ts" name="ci-select-table">
150
+ <script setup lang="ts">
151
+ defineOptions({ name: 'ci-select-table' })
151
152
  import TQueryCondition from '../../queryCondition/src/index.vue'
152
153
  import RenderCol from './renderCol.vue'
153
154
  import { computed, useAttrs, useSlots, ref, watch, nextTick, reactive, onMounted } from 'vue'