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 +6 -1
- package/index.ts +1 -1
- package/package.json +3 -12
- package/src/index.ts +3 -3
- package/src/queryCondition/src/index.vue +2 -1
- package/src/select/select.vue +2 -1
- package/src/selectTable/src/index.vue +2 -1
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
|
-
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ci-plus",
|
|
3
|
-
"version": "1.
|
|
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
|
-
|
|
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
|
|
22
|
-
export * from './selectTable
|
|
23
|
-
export * from './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"
|
|
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({
|
package/src/select/select.vue
CHANGED
|
@@ -147,7 +147,8 @@
|
|
|
147
147
|
</el-select>
|
|
148
148
|
</template>
|
|
149
149
|
|
|
150
|
-
<script setup lang="ts"
|
|
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'
|