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 +1 -1
- package/src/components.d.ts +3 -3
- package/src/queryCondition/index.ts +2 -2
- package/src/queryCondition/src/index.vue +1 -1
- package/src/select/index.ts +2 -2
- package/src/select/select.vue +1 -1
- package/src/selectTable/index.ts +2 -2
- package/src/selectTable/src/index.vue +1 -1
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 { };
|
|
@@ -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,7 @@
|
|
|
140
140
|
</el-form>
|
|
141
141
|
</template>
|
|
142
142
|
|
|
143
|
-
<script setup lang="ts" name="
|
|
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({
|
package/src/select/index.ts
CHANGED
package/src/select/select.vue
CHANGED
package/src/selectTable/index.ts
CHANGED
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
</el-select>
|
|
148
148
|
</template>
|
|
149
149
|
|
|
150
|
-
<script setup lang="ts" name="
|
|
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'
|