@compa11y/compa11y 0.1.3 → 0.1.6
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 +13 -5
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -4,14 +4,22 @@ The complete accessibility toolkit for modern web development.
|
|
|
4
4
|
|
|
5
5
|
## Packages
|
|
6
6
|
|
|
7
|
-
This is a meta-package that includes
|
|
7
|
+
This is a meta-package that includes all compa11y packages:
|
|
8
8
|
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
9
|
+
- **@compa11y/core** — Framework-agnostic accessibility primitives
|
|
10
|
+
- **@compa11y/react** — Accessible React components
|
|
11
|
+
- **@compa11y/web** — Accessible Web Components (no framework required)
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npm install
|
|
16
|
+
npm install compa11y
|
|
17
17
|
```
|
|
18
|
+
|
|
19
|
+
## Documentation
|
|
20
|
+
|
|
21
|
+
Full documentation, live examples, and API reference available at **[compa11y.org](https://compa11y.org)**.
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
|
|
25
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@compa11y/compa11y",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "The complete accessibility toolkit. React primitives and Web Components.",
|
|
5
5
|
"author": "Ivan Trajkovski",
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"README.md"
|
|
12
12
|
],
|
|
13
|
-
"homepage": "https://
|
|
13
|
+
"homepage": "https://compa11y.org",
|
|
14
14
|
"bugs": {
|
|
15
15
|
"url": "https://github.com/trajkovskiivan/compa11y/issues"
|
|
16
16
|
},
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"directory": "packages/compa11y"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@compa11y/core": "0.1.
|
|
24
|
-
"@compa11y/react": "0.1.
|
|
25
|
-
"@compa11y/web": "0.1.
|
|
23
|
+
"@compa11y/core": "0.1.6",
|
|
24
|
+
"@compa11y/react": "0.1.6",
|
|
25
|
+
"@compa11y/web": "0.1.6"
|
|
26
26
|
},
|
|
27
27
|
"keywords": [
|
|
28
28
|
"accessibility",
|