Package Exports
- @uiw/react-color-editable-input
- @uiw/react-color-editable-input/cjs/index.js
- @uiw/react-color-editable-input/esm/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@uiw/react-color-editable-input) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React Color Editable Input
EditableInput Component is a subcomponent of @react-color
.
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.