@mythpe/quasar-ui-qui 0.4.94 → 0.4.96
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
|
@@ -371,18 +371,16 @@ defineOptions({
|
|
|
371
371
|
v-if="multiple"
|
|
372
372
|
#before-options
|
|
373
373
|
>
|
|
374
|
-
<
|
|
375
|
-
<
|
|
376
|
-
<
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
</MContainer>
|
|
385
|
-
</slot>
|
|
374
|
+
<MContainer>
|
|
375
|
+
<MRow class="full-width">
|
|
376
|
+
<MBtn
|
|
377
|
+
:class="{'full-width': $q.screen.lt.sm}"
|
|
378
|
+
:label="__('labels.done')"
|
|
379
|
+
:size="$q.screen.xs ? 'lg' : undefined"
|
|
380
|
+
@click="onDoneOptions()"
|
|
381
|
+
/>
|
|
382
|
+
</MRow>
|
|
383
|
+
</MContainer>
|
|
386
384
|
</template>
|
|
387
385
|
<template
|
|
388
386
|
v-for="(_,slot) in $slots as Readonly<QSelectSlots>"
|
|
@@ -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
|
}
|