@@ -2,10 +2,11 @@ import type { InputProps } from 'ant-design-vue';
2
2
import { ConfigProvider , Input , InputNumber , Select , theme } from 'ant-design-vue' ;
3
3
import classNames from 'ant-design-vue/es/_util/classNames' ;
4
4
import type { PropType } from 'vue' ;
5
- import { defineComponent , watchEffect , watch , computed , toRefs , ref } from 'vue' ;
5
+ import { defineComponent , watchEffect , computed , toRefs , ref } from 'vue' ;
6
6
import { HexColorPicker , RgbaColorPicker } from '../vue-colorful' ;
7
7
import tinycolor from 'tinycolor2' ;
8
8
import makeStyle from './utils/makeStyle' ;
9
+ import type { ValueType } from 'ant-design-vue/es/input-number/src/utils/MiniDecimal' ;
9
10
10
11
const { useToken } = theme ;
11
12
@@ -168,24 +169,42 @@ const RgbColorInput = defineComponent({
168
169
setup ( props ) {
169
170
const { value, alpha } = toRefs ( props ) ;
170
171
171
- watch ( value , val => {
172
- props . onChange ( val ) ;
173
- } ) ;
174
-
172
+ const handleChange = ( val : ValueType , key : 'r' | 'g' | 'b' | 'a' ) => {
173
+ value . value [ key ] = val ;
174
+ props . onChange ( value . value ) ;
175
+ } ;
175
176
return ( ) => {
176
177
return (
177
178
< div class = "color-panel-rgba-input" >
178
179
< ConfigProvider theme = { { components : { InputNumber : { handleWidth : 12 } } } } >
179
180
< div class = "color-panel-rgba-input-part" >
180
- < InputNumber min = { 0 } max = { 255 } size = "small" v-model = { [ value . value . r , 'value' ] } />
181
+ < InputNumber
182
+ min = { 0 }
183
+ max = { 255 }
184
+ size = "small"
185
+ value = { value . value . r }
186
+ onChange = { val => handleChange ( val , 'r' ) }
187
+ />
181
188
< div class = "color-panel-mode-title" > R</ div >
182
189
</ div >
183
190
< div class = "color-panel-rgba-input-part" >
184
- < InputNumber min = { 0 } max = { 255 } size = "small" v-model = { [ value . value . g , 'value' ] } />
191
+ < InputNumber
192
+ min = { 0 }
193
+ max = { 255 }
194
+ size = "small"
195
+ value = { value . value . g }
196
+ onChange = { val => handleChange ( val , 'g' ) }
197
+ />
185
198
< div class = "color-panel-mode-title" > G</ div >
186
199
</ div >
187
200
< div class = "color-panel-rgba-input-part" >
188
- < InputNumber min = { 0 } max = { 255 } size = "small" v-model = { [ value . value . b , 'value' ] } />
201
+ < InputNumber
202
+ min = { 0 }
203
+ max = { 255 }
204
+ size = "small"
205
+ value = { value . value . b }
206
+ onChange = { val => handleChange ( val , 'b' ) }
207
+ />
189
208
< div class = "color-panel-mode-title" > B</ div >
190
209
</ div >
191
210
{ alpha . value && (
@@ -195,7 +214,8 @@ const RgbColorInput = defineComponent({
195
214
max = { 1 }
196
215
step = { 0.01 }
197
216
size = "small"
198
- v-model = { [ value . value . a , 'value' ] }
217
+ value = { value . value . a }
218
+ onChange = { val => handleChange ( val , 'a' ) }
199
219
/>
200
220
< div class = "color-panel-mode-title" > A</ div >
201
221
</ div >
0 commit comments