bootstrap-vue-wrapper 1.9.9 → 1.9.10

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bootstrap-vue-wrapper",
3
- "version": "1.9.9",
3
+ "version": "1.9.10",
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",
@@ -8,12 +8,14 @@
8
8
  <div class="modal-dialog" :class="classDialog">
9
9
  <div class="modal-content">
10
10
  <div v-if="!hideHeader" class="modal-header">
11
- <div class="h5 modal-title" v-text="title" />
12
- <button
13
- type="button"
14
- class="btn-close"
15
- data-bs-dismiss="modal"
16
- />
11
+ <slot name="header">
12
+ <div class="h5 modal-title" v-text="title" />
13
+ <button
14
+ type="button"
15
+ class="btn-close"
16
+ data-bs-dismiss="modal"
17
+ />
18
+ </slot>
17
19
  </div>
18
20
  <div v-if="!hideBody" class="modal-body">
19
21
  <slot name="body" />