accessibility-widgets 1.0.0 → 1.0.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 +5 -5
- package/package.json +7 -7
- package/widget.js +1 -1
package/README.md
CHANGED
|
@@ -34,12 +34,12 @@ A comprehensive, lightweight accessibility tool that enhances web accessibility
|
|
|
34
34
|
|
|
35
35
|
### Method 2: NPM
|
|
36
36
|
```bash
|
|
37
|
-
npm install
|
|
37
|
+
npm install accessibility-widgets
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
### Method 3: CDN
|
|
41
41
|
```html
|
|
42
|
-
<script src="https://unpkg.com/
|
|
42
|
+
<script src="https://unpkg.com/accessibility-widgets@latest/widget.js"></script>
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
That's it! The widget will automatically initialize when the page loads.
|
|
@@ -65,7 +65,7 @@ window.ACCESSIBILITY_WIDGET_CONFIG = {
|
|
|
65
65
|
}
|
|
66
66
|
};
|
|
67
67
|
</script>
|
|
68
|
-
<script src="https://unpkg.com/
|
|
68
|
+
<script src="https://unpkg.com/accessibility-widgets@latest/widget.js"></script>
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
### Complete Configuration Options
|
|
@@ -177,7 +177,7 @@ window.ACCESSIBILITY_WIDGET_CONFIG = {
|
|
|
177
177
|
}
|
|
178
178
|
};
|
|
179
179
|
</script>
|
|
180
|
-
<script src="https://unpkg.com/
|
|
180
|
+
<script src="https://unpkg.com/accessibility-widgets@latest/widget.js"></script>
|
|
181
181
|
```
|
|
182
182
|
|
|
183
183
|
### Partial Configuration
|
|
@@ -301,7 +301,7 @@ window.ACCESSIBILITY_WIDGET_CONFIG = {
|
|
|
301
301
|
}
|
|
302
302
|
};
|
|
303
303
|
</script>
|
|
304
|
-
<script src="https://unpkg.com/
|
|
304
|
+
<script src="https://unpkg.com/accessibility-widgets@latest/widget.js"></script>
|
|
305
305
|
```
|
|
306
306
|
|
|
307
307
|
## Accessibility Standards
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "accessibility-widgets",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A comprehensive, lightweight accessibility widget that enhances web accessibility for all users. Provides multiple accessibility features including screen reader support, voice control, high contrast mode, and more.",
|
|
5
5
|
"main": "widget.js",
|
|
6
6
|
"scripts": {
|
|
@@ -33,18 +33,18 @@
|
|
|
33
33
|
],
|
|
34
34
|
"author": {
|
|
35
35
|
"name": "Your Name",
|
|
36
|
-
"email": "
|
|
37
|
-
"url": "https://
|
|
36
|
+
"email": "sinan@sinan.im",
|
|
37
|
+
"url": "https://sinan.im"
|
|
38
38
|
},
|
|
39
39
|
"license": "MIT",
|
|
40
40
|
"repository": {
|
|
41
41
|
"type": "git",
|
|
42
|
-
"url": "git+https://github.com/
|
|
42
|
+
"url": "git+https://github.com/sinanisler/accessibility-widgets.git"
|
|
43
43
|
},
|
|
44
44
|
"bugs": {
|
|
45
|
-
"url": "https://github.com/
|
|
45
|
+
"url": "https://github.com/sinanisler/accessibility-widgets/issues"
|
|
46
46
|
},
|
|
47
|
-
"homepage": "https://github.com/
|
|
47
|
+
"homepage": "https://github.com/sinanisler/accessibility-widgets#readme",
|
|
48
48
|
"files": [
|
|
49
49
|
"widget.js",
|
|
50
50
|
"README.md",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"peerDependencies": {},
|
|
65
65
|
"funding": {
|
|
66
66
|
"type": "github",
|
|
67
|
-
"url": "https://github.com/sponsors/
|
|
67
|
+
"url": "https://github.com/sponsors/sinanisler"
|
|
68
68
|
},
|
|
69
69
|
"jsdelivr": "widget.js",
|
|
70
70
|
"unpkg": "widget.js",
|