1.0.8 • Published 2 years ago

react-chakra-editable-label v1.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

react-chakra-editable-label

A library that allows you to switch between a text label and an input field. The library utlizes Chakara UI under the hood.

Table of Contents

Installation

$ npm install react-chakra-editable-label $ yarn add react-chakra-editable-label

Usage

The react-chakra-editable-label object requires two props:

  • text which is the initial text to display
  • onSave which is the function called when the is updated.

Example:

import React from 'react';

import { EditableLabel } from 'react-chakra-editable-label';

const App = () => {
    return (
            <EditableLabel
                text='World'
                onSave={value => {
                    console.log(value);
                }}
            />
    );
}
1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago