adecksibility-widget 2.5.0

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 ADDED
@@ -0,0 +1,31 @@
1
+ # ADecksibility
2
+
3
+ ADecksibility is an accessibility widget that can be used on WordPress and non-WordPress sites.
4
+
5
+ This npm package is focused on the standalone browser bundle:
6
+
7
+ - `dist/adecksibility-embed.umd.js`
8
+
9
+ ## Usage
10
+
11
+ ```html
12
+ <script>
13
+ window.adeckWidgetConfig = {
14
+ host: "client-site",
15
+ platform: "standalone"
16
+ };
17
+ </script>
18
+ <script src="https://cdn.jsdelivr.net/npm/adecksibility-widget@2.5.0/dist/adecksibility-embed.umd.js" defer></script>
19
+ ```
20
+
21
+ ## Build
22
+
23
+ ```bash
24
+ node tools/build-embed-bundle.js
25
+ ```
26
+
27
+ ## Notes
28
+
29
+ - The published npm package includes only the standalone embed bundle and this README.
30
+ - WordPress plugin source remains in the main project repository.
31
+ - The package license is currently `UNLICENSED`. If you want third parties to reuse or redistribute it under explicit terms, add a proper license before broader release.