@mythpe/quasar-ui-qui 0.4.94 → 0.4.95
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
|
@@ -369,9 +369,12 @@ defineOptions({
|
|
|
369
369
|
</template>
|
|
370
370
|
<template
|
|
371
371
|
v-if="multiple"
|
|
372
|
-
#before-options
|
|
372
|
+
#before-options="boProps"
|
|
373
373
|
>
|
|
374
|
-
<slot
|
|
374
|
+
<slot
|
|
375
|
+
name="before-options"
|
|
376
|
+
v-bind="boProps"
|
|
377
|
+
>
|
|
375
378
|
<MContainer>
|
|
376
379
|
<MRow class="full-width">
|
|
377
380
|
<MBtn
|
|
@@ -180,4 +180,16 @@ export interface MSelectSlots extends QSelectSlots, QFieldSlots, BaseInputsSlots
|
|
|
180
180
|
*/
|
|
181
181
|
itemProps: any;
|
|
182
182
|
}) => VNode[];
|
|
183
|
+
/**
|
|
184
|
+
* Default slot inside QSelectMenu; Suggestion: <div></div>
|
|
185
|
+
*/
|
|
186
|
+
'type-to-search': () => VNode[];
|
|
187
|
+
/**
|
|
188
|
+
* Default slot inside QSelectMenu; Suggestion: <div></div>
|
|
189
|
+
*/
|
|
190
|
+
'no-result': () => VNode[];
|
|
191
|
+
/**
|
|
192
|
+
* Default slot inside QSelectMenu; Suggestion: <div></div>
|
|
193
|
+
*/
|
|
194
|
+
'no-data': () => VNode[];
|
|
183
195
|
}
|