diff --git a/CHANGELOG.md b/CHANGELOG.md index 16f0bb4..07a00a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,14 +7,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Unreleased -## [0.1.26] - 2024-06-03 -### Changed -- Optionally allow decimal quantities for receiving. - -## [0.1.25] - 2024-05-29 -### Changed -- Show actual error text if applicable, for receiving failure. - ## [0.1.24] - 2024-03-26 ### Changed - Add delay when fetching rows data for model CRUD component. diff --git a/package-lock.json b/package-lock.json index afb3f25..5524b23 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "byjove", - "version": "0.1.26", + "version": "0.1.24", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "byjove", - "version": "0.1.26", + "version": "0.1.24", "license": "GPL-3.0-or-later", "dependencies": { "vue": "^2.7.14" diff --git a/package.json b/package.json index 6a78ccf..d0dbfc9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "byjove", - "version": "0.1.26", + "version": "0.1.24", "description": "Generic-ish app components for Vue.js frontend to Tailbone API backend", "keywords": [ "rattail", diff --git a/src/components/numeric-input/NumericInput.vue b/src/components/numeric-input/NumericInput.vue deleted file mode 100644 index 7bdef1b..0000000 --- a/src/components/numeric-input/NumericInput.vue +++ /dev/null @@ -1,152 +0,0 @@ - - - diff --git a/src/components/numeric-input/index.js b/src/components/numeric-input/index.js deleted file mode 100644 index fa116e7..0000000 --- a/src/components/numeric-input/index.js +++ /dev/null @@ -1,28 +0,0 @@ -// Import vue component -import NumericInput from './NumericInput.vue' - -// Declare install function executed by Vue.use() -export function install(Vue) { - if (install.installed) return; - install.installed = true; - Vue.component('NumericInput', NumericInput); -} - -// Create module definition for Vue.use() -const plugin = { - install, -}; - -// Auto-install when vue is found (eg. in browser via