adecksibility-widget-free 2.5.24
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 +28 -0
- package/dist/adecksibility-widget-free.umd.js +8323 -0
- package/package.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# ADecksibility Widget Free
|
|
2
|
+
|
|
3
|
+
Full-feature standalone accessibility widget bundle for non-WordPress sites.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```html
|
|
8
|
+
<script>
|
|
9
|
+
window.adeckWidgetConfig = {
|
|
10
|
+
host: "client-site",
|
|
11
|
+
platform: "standalone",
|
|
12
|
+
ui: {
|
|
13
|
+
widgetPosition: "bottom-right",
|
|
14
|
+
widgetSide: "right"
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
</script>
|
|
18
|
+
<script src="https://cdn.jsdelivr.net/npm/adecksibility-widget-free@2.5.24/dist/adecksibility-widget-free.umd.js" defer></script>
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Notes
|
|
22
|
+
|
|
23
|
+
- This Free edition keeps the full accessibility runtime but uses server-managed defaults and no portal editing.
|
|
24
|
+
- Use this edition for the public full-feature standalone widget experience.
|
|
25
|
+
- This npm package only contains the standalone browser bundle for the selected edition.
|
|
26
|
+
- For source development, use the main repository.
|
|
27
|
+
- Project website: https://adeck.top/adecksibility/
|
|
28
|
+
- Support email: hello@adeck.top
|