cyhnkckali / vue3-color-picker

The Unlicense
33 stars 9 forks source link

#4: Changed hex input behaviour. #5

Closed kaskenov closed 3 months ago

kaskenov commented 3 months ago

Made changes in hex input behaviour:

Right now it behaves in the same way as in Figma:

Applies changes on enter or blur.

Different input value behaviour: inputValue => appliedValue

'' => lastHexValue '1' => '111' => '111111' '12' => '121212' '123' => '112233' '1234' => '123' => '112233' '12345' => '123' => '112233' '123456' => '123456' '1234567' => '123456'