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.
Files changed (3) hide show
  1. package/README.md +5 -5
  2. package/package.json +7 -7
  3. 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 web-accessibility-widget
37
+ npm install accessibility-widgets
38
38
  ```
39
39
 
40
40
  ### Method 3: CDN
41
41
  ```html
42
- <script src="https://unpkg.com/web-accessibility-widget@latest/widget.js"></script>
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/web-accessibility-widget@latest/widget.js"></script>
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/web-accessibility-widget@latest/widget.js"></script>
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/web-accessibility-widget@latest/widget.js"></script>
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.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": "your.email@example.com",
37
- "url": "https://your-website.com"
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/yourusername/web-accessibility-widget.git"
42
+ "url": "git+https://github.com/sinanisler/accessibility-widgets.git"
43
43
  },
44
44
  "bugs": {
45
- "url": "https://github.com/yourusername/web-accessibility-widget/issues"
45
+ "url": "https://github.com/sinanisler/accessibility-widgets/issues"
46
46
  },
47
- "homepage": "https://github.com/yourusername/web-accessibility-widget#readme",
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/yourusername"
67
+ "url": "https://github.com/sponsors/sinanisler"
68
68
  },
69
69
  "jsdelivr": "widget.js",
70
70
  "unpkg": "widget.js",
package/widget.js CHANGED
@@ -190,7 +190,7 @@ const styles = `
190
190
  padding: 0;
191
191
  display: none;
192
192
  font-family: ${WIDGET_CONFIG.typography.fontFamily};
193
- z-index: 9999;
193
+ z-index: 999999;
194
194
  scrollbar-width: thin;
195
195
  }
196
196
  .snn-accessibility-option {