@mythpe/quasar-ui-qui 0.4.92 → 0.4.94
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
|
@@ -340,13 +340,19 @@ defineOptions({
|
|
|
340
340
|
/>
|
|
341
341
|
</template>
|
|
342
342
|
<template v-else-if="!search?.length && useInput">
|
|
343
|
-
|
|
343
|
+
<slot name="type-to-search">
|
|
344
|
+
{{ __('myth.select.typeToSearch') }}
|
|
345
|
+
</slot>
|
|
344
346
|
</template>
|
|
345
347
|
<template v-else-if="search?.length > 0">
|
|
346
|
-
|
|
348
|
+
<slot name="no-result">
|
|
349
|
+
{{ __('myth.select.noResult') }}
|
|
350
|
+
</slot>
|
|
347
351
|
</template>
|
|
348
352
|
<template v-else>
|
|
349
|
-
|
|
353
|
+
<slot name="no-data">
|
|
354
|
+
{{ __('myth.select.noData') }}
|
|
355
|
+
</slot>
|
|
350
356
|
</template>
|
|
351
357
|
</q-item-section>
|
|
352
358
|
</q-item>
|
|
@@ -365,16 +371,18 @@ defineOptions({
|
|
|
365
371
|
v-if="multiple"
|
|
366
372
|
#before-options
|
|
367
373
|
>
|
|
368
|
-
<
|
|
369
|
-
<
|
|
370
|
-
<
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
374
|
+
<slot name="before-options">
|
|
375
|
+
<MContainer>
|
|
376
|
+
<MRow class="full-width">
|
|
377
|
+
<MBtn
|
|
378
|
+
:class="{'full-width': $q.screen.lt.sm}"
|
|
379
|
+
:label="__('labels.done')"
|
|
380
|
+
:size="$q.screen.xs ? 'lg' : undefined"
|
|
381
|
+
@click="onDoneOptions()"
|
|
382
|
+
/>
|
|
383
|
+
</MRow>
|
|
384
|
+
</MContainer>
|
|
385
|
+
</slot>
|
|
378
386
|
</template>
|
|
379
387
|
<template
|
|
380
388
|
v-for="(_,slot) in $slots as Readonly<QSelectSlots>"
|