@simsustech/quasar-components 0.11.8 → 0.11.9

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.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 365945e: feat(QStyledCard): remove max-width
8
+
3
9
  ## 0.11.8
4
10
 
5
11
  ### Patch Changes
package/dist/general.js CHANGED
@@ -35,31 +35,30 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
35
35
  const _component_q_card_actions = QCardActions;
36
36
  return openBlock(), createBlock(unref(QCard), {
37
37
  ref_key: "qCardRef",
38
- ref: qCardRef,
39
- class: "card"
38
+ ref: qCardRef
40
39
  }, {
41
40
  default: withCtx(() => [
42
- renderSlot(_ctx.$slots, "image", {}, void 0, true),
41
+ renderSlot(_ctx.$slots, "image"),
43
42
  createVNode(_component_q_card_section, null, {
44
43
  default: withCtx(() => [
45
44
  createElementVNode("div", _hoisted_1$2, [
46
- renderSlot(_ctx.$slots, "title", {}, void 0, true)
45
+ renderSlot(_ctx.$slots, "title")
47
46
  ]),
48
47
  createElementVNode("div", _hoisted_2$1, [
49
- renderSlot(_ctx.$slots, "subtitle", {}, void 0, true)
48
+ renderSlot(_ctx.$slots, "subtitle")
50
49
  ])
51
50
  ]),
52
51
  _: 3
53
52
  }),
54
53
  createVNode(_component_q_card_section, { class: "q-pt-none" }, {
55
54
  default: withCtx(() => [
56
- renderSlot(_ctx.$slots, "default", {}, void 0, true)
55
+ renderSlot(_ctx.$slots, "default")
57
56
  ]),
58
57
  _: 3
59
58
  }),
60
59
  createVNode(_component_q_card_actions, normalizeProps(guardReactiveProps(_ctx.actions)), {
61
60
  default: withCtx(() => [
62
- renderSlot(_ctx.$slots, "actions", {}, void 0, true)
61
+ renderSlot(_ctx.$slots, "actions")
63
62
  ]),
64
63
  _: 3
65
64
  }, 16)
@@ -69,14 +68,6 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
69
68
  };
70
69
  }
71
70
  });
72
- const _export_sfc = (sfc, props) => {
73
- const target = sfc.__vccOpts || sfc;
74
- for (const [key, val] of props) {
75
- target[key] = val;
76
- }
77
- return target;
78
- };
79
- const QStyledCard = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-302df27a"]]);
80
71
  const __default__$1 = {
81
72
  name: "ResponsiveDialog"
82
73
  };
@@ -418,7 +409,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
418
409
  export {
419
410
  _sfc_main as QDrawerList,
420
411
  _sfc_main$1 as QLanguageSelect,
421
- QStyledCard,
412
+ _sfc_main$4 as QStyledCard,
422
413
  _sfc_main$5 as QSubmitButton,
423
414
  _sfc_main$2 as ResourcePage,
424
415
  _sfc_main$3 as ResponsiveDialog,
@@ -1,7 +1,4 @@
1
- .card[data-v-302df27a] {
2
- width: 100%;
3
- max-width: 300px;
4
- }/* https://github.com/quasarframework/quasar/blob/dev/docs/src/layouts/doc-layout/DocPageMenu.sass */
1
+ /* https://github.com/quasarframework/quasar/blob/dev/docs/src/layouts/doc-layout/DocPageMenu.sass */
5
2
  .q-drawer-list .q-item__section--avatar {
6
3
  color: var(--q-primary);
7
4
  min-width: 28px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simsustech/quasar-components",
3
- "version": "0.11.8",
3
+ "version": "0.11.9",
4
4
  "author": "Stefan van Herwijnen",
5
5
  "description": "High level components for Quasar Framework",
6
6
  "license": "MIT",
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <q-card ref="qCardRef" class="card">
2
+ <q-card ref="qCardRef">
3
3
  <slot name="image" />
4
4
 
5
5
  <q-card-section>
@@ -36,19 +36,7 @@ export interface Props {
36
36
  actions?: QCardActionsProps
37
37
  }
38
38
  defineProps<Props>()
39
- // const attrs = useAttrs();
40
- // const emit = defineEmits<{
41
- // (
42
- // e: "asyncEmit",
43
- // {
44
- // value,
45
- // done,
46
- // }: {
47
- // value: string;
48
- // done: () => void;
49
- // }
50
- // ): void;
51
- // }>();
39
+
52
40
  const $q = useQuasar()
53
41
  const lang = useLang()
54
42
  if (lang.value.isoName !== $q.lang.isoName) loadLang($q.lang.isoName)
@@ -70,8 +58,4 @@ defineExpose({
70
58
  })
71
59
  </script>
72
60
 
73
- <style lang="sass" scoped>
74
- .card
75
- width: 100%
76
- max-width: 300px
77
- </style>
61
+ <style lang="sass" scoped></style>