1.0.0-alpha.3 • Published 2 years ago

react-vaadin-components v1.0.0-alpha.3

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

React Vaadin Components

React Vaadin Components is a set of React compatible wrappers for Vaadin components.

The wrappers are server side renderable and can be used with frameworks such as Next.js and Gatsby.

Quick start

Install the component set

npm i react-vaadin-components

Once installed, import the and use the components in your React app

import 'react-vaadin-components/dist/css/core.css'

...

import {
  TextField,
  Button,
  Notification
} from 'react-vaadin-components';

...

const [name, setName] = useState("");

...
<TextField
  label="Name"
  clearButtonVisible
  onValueChanged={e => setName(e.detail.value)}>
</TextField>

<Button
  theme="primary"
  disabled={!name}
  onClick={e => Notification.show(`Hello ${name}`)}>
  Say Hello
</Button>
1.0.0-alpha.3

2 years ago

1.0.0-alpha.2

2 years ago

1.0.0-alpha.1

2 years ago

0.8.4

4 years ago

0.8.3

4 years ago

0.8.2

5 years ago

0.8.1

5 years ago

0.8.0

5 years ago

0.7.0

5 years ago

0.6.0

5 years ago

0.5.0

5 years ago

0.4.0

5 years ago

0.3.1

5 years ago

0.3.0

6 years ago

0.2.0

6 years ago

0.1.0

6 years ago