maska icon indicating copy to clipboard operation
maska copied to clipboard

Simple zero-dependency input mask for Vue.js and vanilla JS.

Results 40 maska issues
Sort by recently updated
recently updated
newest added

Hello, I have installed "maska": "^1.5.0" and I have the following in my **vue 3** main.js: ``` import Maska from 'maska'; const app = createApp(App); app.directive('maska', Maska.maska) ``` and then...

I love maska. I'm not sure if this behavior is intentional or a bug. from ux point of view, the following would be the expected behavior. Reproduction Link: https://beholdr.github.io/maska/ (dynamic...

How we can add a placeholder with a pattern?

Hi, I am trying to use programmatically mask with array, but the mask always returns a string. `{{ masky(item.phone, ['(##) #####-####', '(##) #####-####']) }}` returns: `[(##) #####-####(##) #####-####]` masky =...

If two inputs have `v-if`/`v-else` and only one of them has `v-maska` applied, then upon hiding the element that has the directive the other one will be affected by the...

Can be avoided by using `v-show` instead, but this is not a perfect solution. For example I want to have a search input that is masked when I'm searching for...

Hi, I think maska is great and easy plugin, but I think it is not working as I expected it to work, when I woul like to have 2 or...

Same problem of #41 It was fixed in 1.4.6 but happens again in 1.5.0

Hello, when I update a model via promise or setTimeout for example, the mask is not applied ``` ``` ``` const agentAccountDetailForm = ref({ cnpj: "", }); ``` **It's Working...

I want to use the mask to display phone numbers etc formatted the same way I format the input field, but it doesn't seem to work when used with a...