-
-
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
5 changed files
with
269 additions
and
506 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
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
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 |
---|---|---|
|
@@ -70,7 +70,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/maska@3.0.0-beta5/dist/cdn/maska.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/maska@3/dist/cdn/maska.js"></script> | ||
<script> | ||
const { Mask, MaskInput } = Maska | ||
|
@@ -85,7 +85,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/maska@3.0.0-beta5/dist/cdn/alpine.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/maska@3/dist/cdn/alpine.js"></script> | ||
<!-- Alpine Core --> | ||
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script> | ||
``` | ||
|
@@ -96,7 +96,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/maska@3.0.0-beta5/dist/cdn/vue.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/maska@3/dist/cdn/vue.js"></script> | ||
<script> | ||
const { vMaska } = Maska | ||
|
@@ -117,7 +117,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/maska@3.0.0-beta5/dist/maska.mjs" | ||
"maska": "https://cdn.jsdelivr.net/npm/maska@3/dist/maska.mjs" | ||
} | ||
} | ||
</script> | ||
|
@@ -135,7 +135,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/maska@3.0.0-beta5/dist/alpine.mjs" | ||
"maska/alpine": "https://cdn.jsdelivr.net/npm/maska@3/dist/alpine.mjs" | ||
} | ||
} | ||
</script> | ||
|
@@ -153,7 +153,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/maska@3.0.0-beta5/dist/vue.mjs" | ||
"maska/vue": "https://cdn.jsdelivr.net/npm/maska@3/dist/vue.mjs" | ||
} | ||
} | ||
</script> | ||
|
Oops, something went wrong.