@simsustech/quasar-components 0.11.13 → 0.11.14

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @simsustech/quasar-components
2
2
 
3
+ ## 0.11.14
4
+
5
+ ### Patch Changes
6
+
7
+ - 7bc307d: fix(components): fix localeSelect selectedItems slot
8
+
3
9
  ## 0.11.13
4
10
 
5
11
  ### Patch Changes
@@ -502,37 +502,21 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
502
502
  return (_ctx, _cache) => {
503
503
  const _component_q_icon = QIcon;
504
504
  const _component_q_item_section = QItemSection;
505
- const _component_q_item = QItem;
506
505
  const _component_q_item_label = QItemLabel;
506
+ const _component_q_item = QItem;
507
507
  return openBlock(), createBlock(unref(QSelect), mergeProps(unref(attrs), {
508
508
  options: languageOptions.value,
509
509
  "model-value": unref(modelValue),
510
510
  filled: false,
511
- borderless: "",
512
511
  "emit-value": "",
513
512
  "map-options": ""
514
513
  }), {
515
514
  "selected-item": withCtx((scope) => [
516
515
  scope.opt ? (openBlock(), createElementBlock("div", _hoisted_1, [
517
- createVNode(_component_q_item, null, {
518
- default: withCtx(() => [
519
- createVNode(_component_q_item_section, { avatar: "" }, {
520
- default: withCtx(() => [
521
- createVNode(_component_q_icon, {
522
- name: scope.opt.icon
523
- }, null, 8, ["name"])
524
- ]),
525
- _: 2
526
- }, 1024),
527
- createVNode(_component_q_item_section, { label: "" }, {
528
- default: withCtx(() => [
529
- createTextVNode(toDisplayString(scope.opt.label), 1)
530
- ]),
531
- _: 2
532
- }, 1024)
533
- ]),
534
- _: 2
535
- }, 1024)
516
+ createVNode(_component_q_icon, {
517
+ name: scope.opt.icon
518
+ }, null, 8, ["name"]),
519
+ createTextVNode(" " + toDisplayString(scope.opt.label), 1)
536
520
  ])) : createCommentVNode("", true)
537
521
  ]),
538
522
  option: withCtx((scope) => [
package/dist/form.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { defineComponent, useAttrs, withAsyncContext, watch, ref, createBlock, openBlock, unref, mergeProps, normalizeProps, guardReactiveProps, withCtx, createVNode, createTextVNode, toDisplayString, toRefs, computed, useSlots, createCommentVNode, renderSlot, createSlots, renderList, resolveDirective, createElementVNode, withDirectives, createElementBlock, Fragment, resolveDynamicComponent } from "vue";
2
2
  import { useQuasar, QSelect, QItem, QItemSection, QItemLabel, QInput, QField, QIcon, QTooltip, QPopupProxy, QDate, QBtn, QEditor } from "quasar";
3
- import { u as useLang, l as loadLang } from "./LocaleSelect.vue_vue_type_script_setup_true_lang-Du4fNbTV.js";
4
- import { _ } from "./LocaleSelect.vue_vue_type_script_setup_true_lang-Du4fNbTV.js";
3
+ import { u as useLang, l as loadLang } from "./LocaleSelect.vue_vue_type_script_setup_true_lang-DmbnGyqQ.js";
4
+ import { _ } from "./LocaleSelect.vue_vue_type_script_setup_true_lang-DmbnGyqQ.js";
5
5
  const _sfc_main$d = /* @__PURE__ */ defineComponent({
6
6
  __name: "GenderSelect",
7
7
  props: {
package/dist/general.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { u as useLang, l as loadLang, _ as _sfc_main$5 } from "./QSubmitButton.vue_vue_type_script_setup_true_lang-UtpXkOh7.js";
2
2
  import { useQuasar, QCard, QCardSection, QCardActions, QDialog, QLayout, QHeader, QToolbar, QBtn, QToolbarTitle, QPageContainer, QPage, QPageSticky, QSpace, QList } from "quasar";
3
3
  import { defineComponent, watch, ref, createBlock, openBlock, unref, withCtx, renderSlot, createVNode, createElementVNode, normalizeProps, guardReactiveProps, createCommentVNode, toRefs, normalizeClass, createElementBlock } from "vue";
4
- import { _ as _sfc_main$6 } from "./LocaleSelect.vue_vue_type_script_setup_true_lang-Du4fNbTV.js";
4
+ import { _ as _sfc_main$6 } from "./LocaleSelect.vue_vue_type_script_setup_true_lang-DmbnGyqQ.js";
5
5
  const _hoisted_1$1 = { class: "text-h6" };
6
6
  const _hoisted_2$1 = { class: "text-subtitle2" };
7
7
  const __default__$2 = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simsustech/quasar-components",
3
- "version": "0.11.13",
3
+ "version": "0.11.14",
4
4
  "author": "Stefan van Herwijnen",
5
5
  "description": "High level components for Quasar Framework",
6
6
  "license": "MIT",
@@ -4,20 +4,13 @@
4
4
  :options="languageOptions"
5
5
  :model-value="modelValue"
6
6
  :filled="false"
7
- borderless
8
7
  emit-value
9
8
  map-options
10
9
  >
11
10
  <template #selected-item="scope">
12
11
  <div v-if="scope.opt">
13
- <q-item>
14
- <q-item-section avatar>
15
- <q-icon :name="scope.opt.icon" />
16
- </q-item-section>
17
- <q-item-section label>
18
- {{ scope.opt.label }}
19
- </q-item-section>
20
- </q-item>
12
+ <q-icon :name="scope.opt.icon" />
13
+ {{ scope.opt.label }}
21
14
  </div>
22
15
  </template>
23
16
  <template #option="scope">