@alpinejs/docs 3.13.9-revision.1 → 3.13.10-revision.1
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/package.json
CHANGED
package/src/en/directives/on.md
CHANGED
|
@@ -89,6 +89,7 @@ For easy reference, here is a list of common keys you may want to listen for.
|
|
|
89
89
|
| `.caps-lock` | Caps Lock |
|
|
90
90
|
| `.equal` | Equal, `=` |
|
|
91
91
|
| `.period` | Period, `.` |
|
|
92
|
+
| `.comma` | Comma, `,` |
|
|
92
93
|
| `.slash` | Forward Slash, `/` |
|
|
93
94
|
|
|
94
95
|
<a name="custom-events"></a>
|
|
@@ -33,7 +33,7 @@ This is by far the simplest way to get started with Alpine. Include the followin
|
|
|
33
33
|
Notice the `@3.x.x` in the provided CDN link. This will pull the latest version of Alpine version 3. For stability in production, it's recommended that you hardcode the latest version in the CDN link.
|
|
34
34
|
|
|
35
35
|
```alpine
|
|
36
|
-
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.13.
|
|
36
|
+
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.13.10/dist/cdn.min.js"></script>
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
That's it! Alpine is now available for use inside your page.
|
package/src/en/plugins/sort.md
CHANGED
|
@@ -32,7 +32,7 @@ You can include the CDN build of this plugin as a `<script>` tag; just make sure
|
|
|
32
32
|
|
|
33
33
|
### Via NPM
|
|
34
34
|
|
|
35
|
-
You can install
|
|
35
|
+
You can install Sort from NPM for use inside your bundle like so:
|
|
36
36
|
|
|
37
37
|
```shell
|
|
38
38
|
npm install @alpinejs/sort
|