@uiw/react-color-editable-input
TypeScript icon, indicating that this package has built-in type declarations

2.1.1 • Public • Published

React Color Editable Input

Buy me a coffee 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 React, { useState } from 'react';
import { hsvaToHex } from '@uiw/color-convert';
import EditableInput from '@uiw/react-color-editable-input';

export default 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;
}
declare const EditableInput: React.ForwardRefExoticComponent<EditableInputProps & React.RefAttributes<HTMLInputElement>>;
export default EditableInput;

Contributors

As always, thanks to our amazing contributors!

Made with contributors.

License

Licensed under the MIT License.

Package Sidebar

Install

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

Weekly Downloads

18,088

Version

2.1.1

License

MIT

Unpacked Size

15.8 kB

Total Files

7

Last publish

Collaborators

  • uiwjs
  • wcjiang