resolver-egretimp-plus 0.0.269 → 0.0.270
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/dist/h5/index.js +1 -1
- package/dist/web/index.js +1 -1
- package/package.json +1 -1
- package/src/components/packages-H5/CmiCalendar.vue +1 -1
- package/src/components/packages-H5/CmiDatetimePicker.vue +1 -1
- package/src/components/packages-H5/CmiPicker.vue +2 -2
- package/src/components/packages-web/ElText.vue +1 -3
package/package.json
CHANGED
|
@@ -135,7 +135,7 @@ const onFocus = (e) => {
|
|
|
135
135
|
|
|
136
136
|
<template>
|
|
137
137
|
<cmi-input v-if="!calcProps.tiled" :value="valueDesc" suffixIcon @focus="onFocus" v-bind="{...attrs, ...inputProps}">
|
|
138
|
-
<div slot="suffix
|
|
138
|
+
<div slot="suffix" v-if="suffixIcon">
|
|
139
139
|
<component :is="`cmi-icon-${suffixIcon}`" color="#4E5969"></component>
|
|
140
140
|
</div>
|
|
141
141
|
<span slot="prefix" v-if="prefixIcon">
|
|
@@ -82,7 +82,7 @@ const onFocus = (e) => {
|
|
|
82
82
|
|
|
83
83
|
<template>
|
|
84
84
|
<cmi-input :value="formatValue" suffixIcon @focus="onFocus" v-bind="{...attrs, ...inputProps}">
|
|
85
|
-
<div slot="suffix
|
|
85
|
+
<div slot="suffix" v-if="suffixIcon">
|
|
86
86
|
<component :is="`cmi-icon-${suffixIcon}`" color="#4E5969"></component>
|
|
87
87
|
</div>
|
|
88
88
|
<span slot="prefix" v-if="prefixIcon">
|
|
@@ -22,7 +22,7 @@ const prefixIcon = computed(() => {
|
|
|
22
22
|
return props?.config?.prefixIcon
|
|
23
23
|
})
|
|
24
24
|
const suffixIcon = computed(() => {
|
|
25
|
-
return props?.config?.suffixIcon
|
|
25
|
+
return props?.config?.suffixIcon ?? 'arrow-down'
|
|
26
26
|
})
|
|
27
27
|
|
|
28
28
|
const formatValue = computed({
|
|
@@ -114,7 +114,7 @@ const inputProps = computed(() => {
|
|
|
114
114
|
|
|
115
115
|
<template>
|
|
116
116
|
<cmi-input :value="modelvalDesc" suffixIcon @focus="onFocus" v-bind="{...attrs, ...inputProps}" >
|
|
117
|
-
<div slot="suffix
|
|
117
|
+
<div slot="suffix" v-if="suffixIcon">
|
|
118
118
|
<component :is="`cmi-icon-${suffixIcon}`" color="#4E5969"></component>
|
|
119
119
|
</div>
|
|
120
120
|
<span slot="prefix" v-if="prefixIcon">
|