1.0.0-beta.1 • Published 18 days ago

@quartzds/core-react v1.0.0-beta.1

Weekly downloads
-
License
LGPL-2.1-only
Repository
github
Last release
18 days ago

@quartzds/core-react

NPM Package License

React wrapper for Quartz design system web components.

💿 Installation

npm install @quartzds/core-react react react-dom

📖 Usage

Importing Components

Every Quartz core component is available to import as a React component. Note that we're importing the <QdsButton> React component instead of the <qds-button> custom element in the example below:

import { QdsButton } from '@quartzds/core-react'

const MyComponent = () => (
  <QdsButton importance="emphasized" text="Click me"></QdsButton>
)

export default MyComponent

Event Handling

Many Quartz core components emit custom events. For example, the input component emits the qdsInput event when it receives input. In React, you can listen to the event using onQdsInput.

Here's how you can bind the input's value to a state variable:

import { useState } from 'react'
import { QdsInput } from '@quartzds/core-react'

function MyComponent() {
  const [value, setValue] = useState('')

  return (
    <QdsInput
      value={value}
      onQdsInput={(event) => setValue(event.target.value)}
    />
  )
}

export default MyComponent

⚖️ License

See the LICENSE file for license rights and limitations.

1.0.0-beta.41

18 days ago

1.0.0-beta.40

25 days ago

1.0.0-beta.39

1 month ago

1.0.0-beta.38

1 month ago

1.0.0-beta.37

1 month ago

1.0.0-beta.36

1 month ago

1.0.0-beta.35

2 months ago

1.0.0-beta.34

2 months ago

1.0.0-beta.33

3 months ago

1.0.0-beta.32

3 months ago

1.0.0-beta.31

3 months ago

1.0.0-beta.30

3 months ago

1.0.0-beta.29

4 months ago

1.0.0-beta.28

4 months ago

1.0.0-beta.27

4 months ago

1.0.0-beta.26

4 months ago

1.0.0-beta.25

4 months ago

1.0.0-beta.24

5 months ago

1.0.0-beta.22

7 months ago

1.0.0-beta.23

7 months ago

1.0.0-beta.20

8 months ago

1.0.0-beta.21

8 months ago

1.0.0-beta.2

10 months ago

1.0.0-beta.3

10 months ago

1.0.0-beta.4

10 months ago

1.0.0-beta.5

10 months ago

1.0.0-beta.11

10 months ago

1.0.0-beta.12

9 months ago

1.0.0-beta.10

10 months ago

1.0.0-beta.6

10 months ago

1.0.0-beta.7

10 months ago

1.0.0-beta.8

10 months ago

1.0.0-beta.9

10 months ago

1.0.0-beta.19

8 months ago

1.0.0-beta.17

8 months ago

1.0.0-beta.18

8 months ago

1.0.0-beta.15

9 months ago

1.0.0-beta.16

8 months ago

1.0.0-beta.13

9 months ago

1.0.0-beta.14

9 months ago

1.0.0-beta.1

11 months ago