@monoui/vuejs 1.1.54 → 1.1.56

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": "@monoui/vuejs",
3
- "version": "1.1.54",
3
+ "version": "1.1.56",
4
4
  "description": "This project will contain MonoFor UI Framework",
5
5
  "main": "./dist/main.js",
6
6
  "repository": "git@gitlab.com:monoui/vuejs.git",
@@ -115,6 +115,7 @@ export default {
115
115
  "hide-footer": {},
116
116
  "custom-class": {},
117
117
  "ok-disabled": {},
118
+ "no-close-on-backdrop": {},
118
119
  headerClass: {},
119
120
  footerClass: {},
120
121
  title: {},
@@ -1,5 +1,11 @@
1
1
  <template>
2
2
  <multiselect v-on="$listeners" v-bind="$props" :options="options">
3
+ <template v-for="(_, slot) in $slots" v-slot:[slot]="slotData">
4
+ <slot :name="slot" v-bind="slotData" />
5
+ </template>
6
+ <template v-for="(_, slot) in $scopedSlots" v-slot:[slot]="slotData">
7
+ <slot :name="slot" v-bind="slotData" />
8
+ </template>
3
9
  </multiselect>
4
10
  </template>
5
11