ci-plus 1.3.8 → 1.3.9

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.3.8",
3
+ "version": "1.3.9",
4
4
  "description": "ci组件库",
5
5
  "main": "./index.ts",
6
6
  "scripts": {
@@ -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.CiSelect
30
- CiSelectTable: typeof components.CiSelectTable
31
- CiQueryCondition: typeof components.CiQueryCondition
29
+ CiSelect: typeof components.Select
30
+ CiSelectTable: typeof components.SelectTable
31
+ CiQueryCondition: typeof components.QueryCondition
32
32
  }
33
33
  }
34
34
  export { };
@@ -1,4 +1,4 @@
1
1
  import _QueryCondition from './src/index.vue'
2
2
  import { withInstall } from '../utils/index';
3
- export const CiQueryCondition = withInstall(_QueryCondition)
4
- export default CiQueryCondition
3
+ export const QueryCondition = withInstall(_QueryCondition)
4
+ export default QueryCondition
@@ -140,7 +140,7 @@
140
140
  </el-form>
141
141
  </template>
142
142
 
143
- <script setup lang="ts" name="CiQueryCondition">
143
+ <script setup lang="ts" name="ci-query-condition">
144
144
  import RenderComp from './renderComp.vue'
145
145
  import { computed, ref, watch, useSlots, onMounted, reactive, toRef } from 'vue'
146
146
  const props = defineProps({
@@ -1,4 +1,4 @@
1
1
  import _Select from './select.vue'
2
2
  import { withInstall } from '../utils/index';
3
- export const CiSelect = withInstall(_Select)
4
- export default CiSelect
3
+ export const Select = withInstall(_Select)
4
+ export default Select
@@ -54,7 +54,7 @@
54
54
  </component>
55
55
  </template>
56
56
 
57
- <script setup lang="ts" name="CiSelect">
57
+ <script setup lang="ts" name="ci-select">
58
58
  import { computed, useSlots } from 'vue'
59
59
  const props: any = defineProps({
60
60
  modelValue: {
@@ -1,4 +1,4 @@
1
1
  import _SelectTable from './src/index.vue'
2
2
  import { withInstall } from '../utils/index';
3
- export const CiSelectTable = withInstall(_SelectTable)
4
- export default CiSelectTable
3
+ export const SelectTable = withInstall(_SelectTable)
4
+ export default SelectTable
@@ -147,7 +147,7 @@
147
147
  </el-select>
148
148
  </template>
149
149
 
150
- <script setup lang="ts" name="CiSelectTable">
150
+ <script setup lang="ts" name="ci-select-table">
151
151
  import TQueryCondition from '../../queryCondition/src/index.vue'
152
152
  import RenderCol from './renderCol.vue'
153
153
  import { computed, useAttrs, useSlots, ref, watch, nextTick, reactive, onMounted } from 'vue'