@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mythpe/quasar-ui-qui",
3
- "version": "0.4.94",
3
+ "version": "0.4.96",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -371,18 +371,16 @@ defineOptions({
371
371
  v-if="multiple"
372
372
  #before-options
373
373
  >
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>
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
  }