@uiw/react-color-editable-input

Color Editable Input

Usage no npm install needed!

<script type="module">
  import uiwReactColorEditableInput from 'https://cdn.skypack.dev/@uiw/react-color-editable-input';
</script>

README

React Color Editable Input

npm bundle size npm version Open in unpkg

EditableInput Component is a subcomponent of @react-color.

editable-input

Install

npm i @uiw/react-color-editable-input

Usage

import { useState } from 'react';
import { hsvaToHex } from '@uiw/color-convert';
import EditableInput from '@uiw/react-color-editable-input';

function Demo() {
  const [hsva, setHsva] = useState({ h: 209, s: 36, v: 90, a: 1 });
  return (
    <div style={{ padding: '0 10px 0 20px' }}>
      <EditableInput
        label="Hex"
        value={hsvaToHex(hsva)}
        style={{ width: 68, alignItems: 'flex-start' }}
      />
    </div>
  );
}

Props

import React from 'react';
export interface EditableInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'onChange'> {
  prefixCls?: string;
  value?: string | number;
  label?: React.ReactNode;
  labelStyle?: React.CSSProperties;
  placement?: 'top' | 'left' | 'bottom' | 'right';
  inputStyle?: React.CSSProperties;
  onChange?: (evn: React.ChangeEvent<HTMLInputElement>, value: string | number) => void;
}

License

Licensed under the MIT License.