bootstrap-vue-wrapper 1.8.0 → 1.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bootstrap-vue-wrapper",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "description": "Bootstrap 5 components in Vue3 warapper.",
5
5
  "author": "Gabor Zemko <gaborzemko@gmail.com>",
6
6
  "homepage": "https://github.com/zemkogabor/bootstrap-vue-wrapper",
package/src/index.js CHANGED
@@ -8,6 +8,7 @@ import BsTable from './components/bs-table/BsTable.vue'
8
8
  import BsToast from './components/bs-toast/BsToast.vue'
9
9
  import BsModal from './components/bs-modal/BsModal.vue'
10
10
  import BsSelect from './components/bs-select/BsSelect.vue'
11
+ import BsRadio from './components/bs-radio/BsRadio.vue'
11
12
  import Validator from './mixins/validator.js'
12
13
 
13
14
  export {
@@ -21,5 +22,6 @@ export {
21
22
  BsToast,
22
23
  BsModal,
23
24
  BsSelect,
25
+ BsRadio,
24
26
  Validator,
25
27
  }