Socket
Socket
Sign inDemoInstall

@uiw/react-color-editable-input

Package Overview
Dependencies
1
Maintainers
1
Versions
73
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uiw/react-color-editable-input


Version published
Maintainers
1
Created

Readme

Source

React Color Editable Input

npm bundle size npm version Open in unpkg

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, flexDirection: 'column-reverse', alignItems: 'flex-start' }} />
      <EditableInput
        label="Hex"
        value={hsvaToHex(hsva)}
        labelStyle={{ position: 'relative', display: 'block' }}
        style={{
          width: 68,
          flexDirection: 'column',
          marginTop: 8,
        }}
      />
      <EditableInput label="Hex" value={hsvaToHex(hsva)} style={{ width: 84, marginTop: 14, }} />
      <EditableInput
        label="Hex"
        value={hsvaToHex(hsva)}
        labelStyle={{ position: 'relative', display: 'block' }}
        style={{
          width: 84,
          marginTop: 8,
          flexDirection: 'row-reverse',
        }}
      />
    </div>
  );
}

Props

interface EditableInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'onChange'> {
  prefixCls?: string;
  value?: string | number;
  label?: string;
  labelStyle?: React.CSSProperties;
  inputStyle?: React.CSSProperties;
  onChange?: (evn: React.ChangeEvent<HTMLInputElement>, value: string | number) => void;
}

License

Licensed under the MIT License.

Keywords

FAQs

Last updated on 11 Jul 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc