├── .browserslistrc ├── .eslintignore ├── docs ├── favicon.ico └── index.html ├── public ├── favicon.ico └── index.html ├── babel.config.js ├── coverage ├── sort-arrow-sprite.png ├── lcov-report │ ├── sort-arrow-sprite.png │ ├── prettify.css │ ├── block-navigation.js │ ├── index.html │ ├── sorter.js │ ├── base.css │ └── prettify.js ├── prettify.css ├── block-navigation.js ├── lcov.info ├── index.html ├── sorter.js ├── clover.xml ├── base.css ├── prettify.js └── coverage-final.json ├── src ├── main.js ├── index.js ├── vue-numeric-input.vue └── App.vue ├── vue.config.js ├── codecov.yml ├── .npmignore ├── dist ├── demo.html └── vue-numeric-input.umd.min.js ├── .travis.yml ├── .gitignore ├── .eslintrc.js ├── LICENSE ├── tests ├── util │ └── index.js └── unit │ └── vue-numeric-input.spec.js ├── package.json └── README.md /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /config/ 3 | /dist/ 4 | /*.js 5 | /test/unit/coverage/ 6 | -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayeshLab/vue-numeric-input/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayeshLab/vue-numeric-input/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/cli-plugin-babel/preset' 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /coverage/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayeshLab/vue-numeric-input/HEAD/coverage/sort-arrow-sprite.png -------------------------------------------------------------------------------- /coverage/lcov-report/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayeshLab/vue-numeric-input/HEAD/coverage/lcov-report/sort-arrow-sprite.png -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App.vue' 3 | 4 | Vue.config.productionTip = false 5 | 6 | new Vue({ 7 | render: h => h(App) 8 | }).$mount('#app') 9 | -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | publicPath: '', 3 | productionSourceMap: false, 4 | filenameHashing: false, 5 | css: { 6 | extract: false 7 | } 8 | } -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | coverage: 2 | status: 3 | project: 4 | default: 5 | target: 80% # the required coverage value 6 | threshold: 1% # the leniency in hitting the target 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | docs 2 | node_modules 3 | public 4 | .eslintrc.js 5 | .browserslistrc 6 | .gitignore 7 | .eslintignore 8 | .travis.yml 9 | package-lock.json 10 | *.iml 11 | .idea 12 | tests 13 | coverage 14 | -------------------------------------------------------------------------------- /dist/demo.html: -------------------------------------------------------------------------------- 1 | 2 |
54 | Press n or j to go to the next uncovered block, b, p or k for the previous block. 55 |
56 || File | 63 |64 | | Statements | 65 |66 | | Branches | 67 |68 | | Functions | 69 |70 | | Lines | 71 |72 | |
|---|---|---|---|---|---|---|---|---|---|
| vue-numeric-input.vue | 76 |
77 |
78 | |
79 | 98.94% | 80 |93/94 | 81 |82.26% | 82 |51/62 | 83 |100% | 84 |28/28 | 85 |98.94% | 86 |93/94 | 87 |
54 | Press n or j to go to the next uncovered block, b, p or k for the previous block. 55 |
56 || File | 63 |64 | | Statements | 65 |66 | | Branches | 67 |68 | | Functions | 69 |70 | | Lines | 71 |72 | |
|---|---|---|---|---|---|---|---|---|---|
| vue-numeric-input.vue | 76 |
77 |
78 | |
79 | 98.94% | 80 |93/94 | 81 |82.26% | 82 |51/62 | 83 |100% | 84 |28/28 | 85 |98.94% | 86 |93/94 | 87 |