@a.nemreen/a11y 0.1.0 → 0.1.2
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 +21 -20
- package/assets/cover.png +0 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,11 +1,25 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="assets/cover.png" alt="a11y — Accessibility Tools" width="720" />
|
|
3
|
+
</p>
|
|
2
4
|
|
|
3
|
-
|
|
5
|
+
<h1 align="center">@a.nemreen/a11y</h1>
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
<p align="center">
|
|
8
|
+
Framework-agnostic <strong>Accessibility Tools</strong> widget — quick profiles, readable experience controls, visual filters, and a reading mask.<br />
|
|
9
|
+
Works with <strong>Angular</strong>, <strong>React</strong>, <strong>Vue</strong>, and plain HTML. Zero framework peers.<br />
|
|
10
|
+
<em>By Ahmed Nemreen</em>
|
|
11
|
+
</p>
|
|
6
12
|
|
|
7
|
-
|
|
8
|
-
|
|
13
|
+
<p align="center">
|
|
14
|
+
<a href="https://www.npmjs.com/package/@a.nemreen/a11y"><img src="https://img.shields.io/npm/v/@a.nemreen/a11y.svg?style=flat-square" alt="npm version" /></a>
|
|
15
|
+
<a href="https://www.npmjs.com/package/@a.nemreen/a11y"><img src="https://img.shields.io/npm/dm/@a.nemreen/a11y.svg?style=flat-square" alt="npm downloads" /></a>
|
|
16
|
+
<a href="https://www.npmjs.com/package/@a.nemreen/a11y"><img src="https://img.shields.io/badge/dependencies-0-brightgreen?style=flat-square" alt="zero dependencies" /></a>
|
|
17
|
+
<a href="LICENSE"><img src="https://img.shields.io/npm/l/@a.nemreen/a11y.svg?style=flat-square" alt="MIT license" /></a>
|
|
18
|
+
<a href="https://www.typescriptlang.org/"><img src="https://img.shields.io/badge/types-TypeScript-blue?style=flat-square" alt="TypeScript" /></a>
|
|
19
|
+
<a href="https://nemreen.info/a11y"><img src="https://img.shields.io/badge/demo-nemreen.info-informational?style=flat-square" alt="live demo" /></a>
|
|
20
|
+
</p>
|
|
21
|
+
|
|
22
|
+
---
|
|
9
23
|
|
|
10
24
|
## Install
|
|
11
25
|
|
|
@@ -56,22 +70,9 @@ Accessibility.mount();
|
|
|
56
70
|
- **Filters:** boost contrast, monochrome, high contrast, high/low saturation, deuteranopia
|
|
57
71
|
- AR / EN UI, RTL-aware panel, `localStorage` persistence, live region announcements
|
|
58
72
|
|
|
59
|
-
##
|
|
60
|
-
|
|
61
|
-
```bash
|
|
62
|
-
npm install
|
|
63
|
-
npm run demo
|
|
64
|
-
# open http://localhost:4173/demo/
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
## Deploy demo (cPanel)
|
|
68
|
-
|
|
69
|
-
Same pattern as [loggo](https://nemreen.info/loggo) / [dga](https://nemreen.info/dga):
|
|
73
|
+
## Demo
|
|
70
74
|
|
|
71
|
-
|
|
72
|
-
npm run build:site
|
|
73
|
-
# Upload deploy/ (or a11y-cpanel.zip) → public_html/a11y/
|
|
74
|
-
```
|
|
75
|
+
[https://nemreen.info/a11y](https://nemreen.info/a11y)
|
|
75
76
|
|
|
76
77
|
## License
|
|
77
78
|
|
package/assets/cover.png
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a.nemreen/a11y",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Framework-agnostic accessibility tools widget — profiles, readable experience, visual filters. Works with Angular, React, Vue, and plain HTML.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Ahmed Nemreen",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
],
|
|
15
15
|
"files": [
|
|
16
16
|
"dist",
|
|
17
|
+
"assets",
|
|
17
18
|
"LICENSE",
|
|
18
19
|
"README.md"
|
|
19
20
|
],
|