Skip to content

Commit be3ce89

Browse files
committed
feat: initial release
1 parent 8318163 commit be3ce89

File tree

12 files changed

+694
-512
lines changed

12 files changed

+694
-512
lines changed

.npmignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.gitignore
2+
.editorconfig
3+
.DS_Store
4+
npm-debug.log
5+
node_modules/
6+
.circleci
7+
assets/
8+
build/
9+
coverage/
10+
jest/
11+
node_modules/
12+
tests/
13+
.gitignore
14+
babel.config.js
15+
CODE_OF_CONDUCT.md

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## v1.0.0
2+
3+
> `2024-02-29`
4+
5+
### 🎉 Feature
6+
- Initial release

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2023-present - Adam Berecz
3+
Copyright (c) 2024-present - Adam Berecz
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
# Input Mask plugin for [Vueform](https://github.com/vueform/vueform)
1+
<a href="https://vueform.com?cid=plugin-mask" target="_blank">
2+
<br>
3+
<img align="center" src="https://github.com/vueform/plugin-mask/raw/main/assets/logo.svg">
4+
<br>
5+
</a>
26

3-
Plugin for [Vueform](https://github.com/vueform/vueform) to add
7+
# Official Input Mask plugin for [Vueform](https://github.com/vueform/vueform)
8+
9+
Plugin for [Vueform](https://github.com/vueform/vueform) to add [input mask](https://vueform.com/reference/text-element#option-mask) to text elements.
410

511
## Prerequisites
612

7-
- [Vueform 1.5.4+](https://github.com/vueform/vueform)
13+
- [Vueform 1.8.1+](https://github.com/vueform/vueform)
814

915
## Installation
1016

@@ -37,12 +43,14 @@ export default {
3743
<Vueform>
3844
<TextElement
3945
name="text"
40-
mask="+{1}(000)000-00-00"
46+
mask="{+1} (000)-000-0000"
4147
/>
4248
</Vueform>
4349
</template>
4450
```
4551

52+
More info and examples can be found on our [official documentation](https://vueform.com/reference/text-element#option-mask).
53+
4654
## License
4755

4856
[MIT](https://opensource.org/licenses/MIT)

assets/logo.svg

Lines changed: 17 additions & 0 deletions
Loading

build/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default {
1212
license({
1313
banner: {
1414
content: `Vueform Mask Plugin v<%= pkg.version %> (https://github.com/vueform/plugin-mask)\n` +
15-
`Copyright (c) <%= moment().format('YYYY') %>-present Adam Berecz <adam@vueform.com>\n` +
15+
`Copyright (c) 2024-present Adam Berecz <adam@vueform.com>\n` +
1616
`Licensed under the MIT License`,
1717
commentStyle: 'ignored',
1818
}

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)