@deque/cauldron-react 5.8.1-canary.ab6d02b3 → 5.8.1-canary.f20fcb40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,19 +1,29 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Cauldron React
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Friends don’t let friends ship inaccessible code! Cauldron is designed with accessibility in mind, including styles covering everything from typography to colors, and React components that are designed to be inclusive of all users. Additionally, Cauldron's React components are designed to include full screen reader and keyboard navigation support.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
To start using Cauldron React, install the packages with your package manager of choice:
|
|
8
|
+
|
|
9
|
+
### npm
|
|
10
|
+
|
|
11
|
+
```js
|
|
12
|
+
npm install @deque/cauldron-react @deque/cauldron-styles
|
|
7
13
|
```
|
|
8
14
|
|
|
9
|
-
|
|
15
|
+
### yarn
|
|
10
16
|
|
|
11
|
-
```
|
|
12
|
-
|
|
17
|
+
```js
|
|
18
|
+
yarn add @deque/cauldron-react @deque/cauldron-styles
|
|
13
19
|
```
|
|
14
20
|
|
|
15
|
-
##
|
|
21
|
+
## Getting Started
|
|
22
|
+
|
|
23
|
+
To get started, follow our [usage guide](https://cauldron.dequelabs.com/#usage) that includes setup instructions and necessary dependencies. Further documentation is also available at [cauldron.dequelabs.com](https://cauldron.dequelabs.com) that includes documentation for every available Cauldron component.
|
|
24
|
+
|
|
25
|
+
## Contribute
|
|
16
26
|
|
|
17
|
-
|
|
27
|
+
If you're interested in contributing to Cauldron, you can check out our [contribution guide](https://github.com/dequelabs/cauldron/blob/develop/CONTRIBUTING.md) as well as our [code of conduct](https://github.com/dequelabs/cauldron/blob/develop/CODE_OF_CONDUCT.md).
|
|
18
28
|
|
|
19
|
-
|
|
29
|
+
Did you find a bug or have a feature request? [Open an issue!](https://github.com/dequelabs/cauldron/issues/new/choose)
|
package/package.json
CHANGED