-
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,7 +66,7 @@ You can use Maska directly from CDN with a simple script tag as UMD-build. | |
Library API will be exposed on the global `Maska` object: | ||
|
||
```html | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]beta1/dist/cdn/maska.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]beta2/dist/cdn/maska.js"></script> | ||
<script> | ||
const { Mask, MaskInput } = Maska | ||
|
@@ -81,7 +81,7 @@ Include Maska from CDN, just make sure to include it **before** Alpine's core JS | |
|
||
```html | ||
<!-- Maska Plugin --> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]beta1/dist/cdn/alpine.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]beta2/dist/cdn/alpine.js"></script> | ||
<!-- Alpine Core --> | ||
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script> | ||
``` | ||
|
@@ -92,7 +92,7 @@ This will automatically register Maska plugin inside Alpine. | |
You can use Maska directly from CDN and register directive: | ||
|
||
```html | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]beta1/dist/cdn/vue.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]beta2/dist/cdn/vue.js"></script> | ||
<script> | ||
const { vMaska } = Maska | ||
|
@@ -113,7 +113,7 @@ For modern browsers you can use ES modules build with (optional) [import maps](h | |
<script type="importmap"> | ||
{ | ||
"imports": { | ||
"maska": "https://cdn.jsdelivr.net/npm/[email protected]beta1/dist/maska.mjs" | ||
"maska": "https://cdn.jsdelivr.net/npm/[email protected]beta2/dist/maska.mjs" | ||
} | ||
} | ||
</script> | ||
|
@@ -131,7 +131,7 @@ For modern browsers you can use ES modules build with (optional) [import maps](h | |
<script type="importmap"> | ||
{ | ||
"imports": { | ||
"maska/alpine": "https://cdn.jsdelivr.net/npm/[email protected]beta1/dist/alpine.mjs" | ||
"maska/alpine": "https://cdn.jsdelivr.net/npm/[email protected]beta2/dist/alpine.mjs" | ||
} | ||
} | ||
</script> | ||
|
@@ -149,7 +149,7 @@ For modern browsers you can use ES modules build with (optional) [import maps](h | |
<script type="importmap"> | ||
{ | ||
"imports": { | ||
"maska/vue": "https://cdn.jsdelivr.net/npm/[email protected]beta1/dist/vue.mjs" | ||
"maska/vue": "https://cdn.jsdelivr.net/npm/[email protected]beta2/dist/vue.mjs" | ||
} | ||
} | ||
</script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters