resolver-egretimp-plus 0.0.268 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resolver-egretimp-plus",
3
- "version": "0.0.268",
3
+ "version": "0.0.270",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -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-icon" v-if="suffixIcon">
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-icon" v-if="suffixIcon">
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-icon" v-if="suffixIcon">
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">
@@ -65,9 +65,7 @@ const renderNode = computed(() => {
65
65
  if (props.needWrap == '1') {
66
66
  return h('div', {
67
67
  class: 'cust-input-wrap',
68
- }, {
69
- default: () => textNode
70
- })
68
+ }, textNode)
71
69
  } else {
72
70
  return textNode
73
71
  }
@@ -2,6 +2,9 @@
2
2
  --el-checkbox-border-radius: 4px;
3
3
  --el-checkbox-input-height: 16px;
4
4
  --el-checkbox-input-width: 16px;
5
+ --el-checkbox-disabled-checked-input-fill: #646A73;
6
+ --el-checkbox-disabled-checked-input-border-color: #646A73;
7
+ --el-checkbox-disabled-checked-icon-color: #FFFFFF;
5
8
  }
6
9
  .el-checkbox__inner::after {
7
10
  border: 2px solid transparent;