ci-plus 1.3.8 → 1.4.0
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 +1 -1
- package/package.json +1 -1
- package/src/components.d.ts +3 -3
- package/src/index.ts +3 -3
- package/src/queryCondition/index.ts +2 -2
- package/src/queryCondition/src/index.vue +2 -1
- package/src/select/index.ts +2 -2
- package/src/select/select.vue +2 -1
- package/src/selectTable/index.ts +2 -2
- package/src/selectTable/src/index.vue +2 -1
package/index.ts
CHANGED
package/package.json
CHANGED
package/src/components.d.ts
CHANGED
|
@@ -26,9 +26,9 @@ declare module '@vue/runtime-core' {
|
|
|
26
26
|
CiUpload: typeof components.Upload
|
|
27
27
|
CiUploadV2: typeof components.UploadV2
|
|
28
28
|
|
|
29
|
-
CiSelect: typeof components.
|
|
30
|
-
CiSelectTable: typeof components.
|
|
31
|
-
CiQueryCondition: typeof components.
|
|
29
|
+
CiSelect: typeof components.Select
|
|
30
|
+
CiSelectTable: typeof components.SelectTable
|
|
31
|
+
CiQueryCondition: typeof components.QueryCondition
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
export { };
|
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组件
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import _QueryCondition from './src/index.vue'
|
|
2
2
|
import { withInstall } from '../utils/index';
|
|
3
|
-
export const
|
|
4
|
-
export default
|
|
3
|
+
export const QueryCondition = withInstall(_QueryCondition)
|
|
4
|
+
export default 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/index.ts
CHANGED
package/src/select/select.vue
CHANGED
package/src/selectTable/index.ts
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'
|