@mythpe/quasar-ui-qui 0.4.10 → 0.4.11

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.10",
3
+ "version": "0.4.11",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -155,7 +155,10 @@ defineOptions({
155
155
  v-on="listeners"
156
156
  >
157
157
  <template #default>
158
- <slot v-bind="scopes">
158
+ <slot
159
+ name="label"
160
+ v-bind="scopes"
161
+ >
159
162
  <MRow
160
163
  v-if="!!getLabel || !help"
161
164
  class="items-center"
@@ -177,6 +180,7 @@ defineOptions({
177
180
  </template>
178
181
  </q-checkbox>
179
182
  </q-field>
183
+ <slot v-bind="scopes" />
180
184
  </MCol>
181
185
  <slot
182
186
  name="after"
@@ -30,4 +30,8 @@ export type MCheckboxSlots = Omit<BaseInputsSlots & 'top-label'> & {
30
30
  * VNode after field main content.
31
31
  */
32
32
  after: () => VNode[];
33
+ /**
34
+ * Field label.
35
+ */
36
+ label: () => VNode[];
33
37
  }