Skip to content

Commit

Permalink
chore: remove beta
Browse files Browse the repository at this point in the history
  • Loading branch information
beholdr committed Jul 14, 2024
1 parent d2b53e1 commit e310e98
Show file tree
Hide file tree
Showing 5 changed files with 269 additions and 506 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@

# Maska

Maska v3 is currently in beta. If you encounter any issues, please [report them](https://github.com/beholdr/maska/issues).

## Support ☕️

> ❤️ [Please support](https://boosty.to/beholdr) Maska development!
Expand Down
2 changes: 0 additions & 2 deletions docs/v3/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
!> Maska v3 is currently in beta. If you encounter any issues, please [report them](https://github.com/beholdr/maska/issues).

**Maska** is a simple zero-dependency input mask library.

You can use it with vanilla javascript or with your favorite framework. Out of the box there is integration with Vue 2/3, Svelte and Alpine.js, but you can integrate it into any framework.
Expand Down
12 changes: 6 additions & 6 deletions docs/v3/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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>
```
Expand All @@ -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
Expand All @@ -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>
Expand All @@ -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>
Expand All @@ -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>
Expand Down
Loading

0 comments on commit e310e98

Please sign in to comment.