0.67.1 • Published 4 months ago

@clds/text-field-old v0.67.1

Weekly downloads
-
License
-
Repository
github
Last release
4 months ago

@clds/text-field-old


npm version

Documentation of the text field component.

Installation

Install the package using Yarn:

yarn add @clds/text-field

Components

TextField

Controlled text field component - does not handle any other responsibilities beside displaying and controlling the field itself.

Usage

import React, { FC, useRef, useState } from 'react';
import TextField from '@clds/text-field-old';
const ControlledExample: FC = () => {
  const [fieldValue, setFieldValue] = useState(defaultValue);
  return (
    <TextField
      onChange={setFieldValue}
      placeholder="Enter text here"
      type="text"
      value={fieldValue}
    />
  );
};
const UncontrolledExample: FC = () => {
  const textFieldRef = useRef(null);
  return <TextField defaultValue="Test" inputRef={textFieldRef} type="text" />;
};

Versioning

This library follows Semantic Versioning.

License

See LICENSE

0.62.1

7 months ago

0.62.0

7 months ago

0.64.1

5 months ago

0.62.3

7 months ago

0.64.0

5 months ago

0.62.2

7 months ago

0.60.1

7 months ago

0.60.0

7 months ago

0.59.0

7 months ago

0.57.2

7 months ago

0.57.0

8 months ago

0.53.4

8 months ago

0.57.1

8 months ago

0.53.5

8 months ago

0.53.2

9 months ago

0.51.4

9 months ago

0.53.3

8 months ago

0.51.5

9 months ago

0.53.0

9 months ago

0.51.2

9 months ago

0.53.1

9 months ago

0.51.3

9 months ago

0.51.0

9 months ago

0.51.1

9 months ago

0.48.0

11 months ago

0.48.1

11 months ago

0.67.0

4 months ago

0.67.1

4 months ago

0.63.0

6 months ago

0.65.0

5 months ago

0.63.1

5 months ago

0.61.0

7 months ago

0.56.0-beta.2

8 months ago

0.50.5

10 months ago

0.52.1

9 months ago

0.50.3

10 months ago

0.50.4

10 months ago

0.50.1

10 months ago

0.52.0

9 months ago

0.50.2

10 months ago

0.50.0

10 months ago

0.56.0-beta.1

8 months ago

0.49.1

11 months ago

0.49.2

11 months ago

0.49.0

11 months ago

0.66.0

5 months ago

0.64.2

5 months ago

0.62.4

7 months ago

0.47.0

11 months ago

0.49.3

11 months ago

0.49.4

10 months ago

0.46.0

1 year ago

0.46.1

1 year ago

0.45.3

1 year ago

0.44.4

1 year ago

0.45.1

1 year ago

0.44.2

1 year ago

0.45.2

1 year ago

0.44.3

1 year ago

0.44.0

1 year ago

0.45.0

1 year ago

0.44.1

1 year ago

0.43.1

1 year ago

0.43.0

1 year ago

0.42.4

1 year ago

0.42.3

1 year ago

0.42.2

1 year ago

0.42.1

1 year ago

0.42.0

1 year ago

0.41.1

1 year ago

0.41.0

1 year ago