@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.
Files changed (2) hide show
  1. package/README.md +20 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,19 +1,29 @@
1
- # cauldron react
1
+ # Cauldron React
2
2
 
3
- ## installation
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
- ```sh
6
- $ npm install @deque/cauldron-react --save
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
- and pull in the styles:
15
+ ### yarn
10
16
 
11
- ```sh
12
- $ npm install @deque/cauldron-styles --save
17
+ ```js
18
+ yarn add @deque/cauldron-react @deque/cauldron-styles
13
19
  ```
14
20
 
15
- ## server-side rendering
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
- Avoid referencing `window` properties, such as `document`, unless you are sure the code will only be executed in a browser environment. For instance, it is safe to reference `document` in an [Effect Hook](https://reactjs.org/docs/hooks-effect.html) or a lifecycle method like `componentDidMount()`, but not in the `render()` method of a class component.
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
- Ensuring you only reference these objects when it is safe to do so will ensure that library consumers can use Cauldron with platforms that use an SSR engine, such as GatsbyJS and NextJS.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deque/cauldron-react",
3
- "version": "5.8.1-canary.ab6d02b3",
3
+ "version": "5.8.1-canary.f20fcb40",
4
4
  "license": "MPL-2.0",
5
5
  "description": "Fully accessible react components library for Deque Cauldron",
6
6
  "homepage": "https://cauldron.dequelabs.com/",