comand-component-library 4.2.0 → 4.2.1

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.
@@ -6459,13 +6459,14 @@ function qd(e, t, n, s, i, l) {
6459
6459
  default: k(() => [
6460
6460
  p(d, {
6461
6461
  text: n.text,
6462
- icon: n.icon
6462
+ icon: n.icon,
6463
+ image: n.image
6463
6464
  }, {
6464
6465
  default: k(() => [
6465
6466
  A(e.$slots, "default")
6466
6467
  ]),
6467
6468
  _: 3
6468
- }, 8, ["text", "icon"])
6469
+ }, 8, ["text", "icon", "image"])
6469
6470
  ]),
6470
6471
  _: 3
6471
6472
  }, 8, ["to", "class", "title"])) : n.linkType === "button" ? (a(), r("button", {
@@ -6477,13 +6478,14 @@ function qd(e, t, n, s, i, l) {
6477
6478
  }, [
6478
6479
  p(d, {
6479
6480
  text: n.text,
6480
- icon: n.icon
6481
+ icon: n.icon,
6482
+ image: n.image
6481
6483
  }, {
6482
6484
  default: k(() => [
6483
6485
  A(e.$slots, "default")
6484
6486
  ]),
6485
6487
  _: 3
6486
- }, 8, ["text", "icon"])
6488
+ }, 8, ["text", "icon", "image"])
6487
6489
  ], 10, Hd)) : m("", !0);
6488
6490
  }
6489
6491
  const Re = /* @__PURE__ */ M(Ad, [["render", qd]]), Rd = {
@@ -12737,7 +12739,12 @@ function rh(e, t, n, s, i, l) {
12737
12739
  (a(!0), r(_, null, q(n.listOfRecommendations, (c, h) => (a(), r("li", { key: h }, [
12738
12740
  p(u, I({ ref_for: !0 }, l.linkItem(c), {
12739
12741
  onClick: (f) => l.optionSelected(c)
12740
- }), null, 16, ["onClick"])
12742
+ }), {
12743
+ default: k(() => [
12744
+ A(e.$slots, "default")
12745
+ ]),
12746
+ _: 2
12747
+ }, 1040, ["onClick"])
12741
12748
  ]))), 128))
12742
12749
  ])) : m("", !0)
12743
12750
  ], 2);
@@ -20312,7 +20319,7 @@ const f1 = /* @__PURE__ */ M(c1, [["render", p1]]), h1 = [
20312
20319
  text: "Zimbabwe",
20313
20320
  value: "zw"
20314
20321
  }
20315
- ], w1 = "comand-component-library", k1 = "4.2.0", T1 = "GPL-3.0-only", S1 = "CoManD-UI", _1 = "module", O1 = {
20322
+ ], w1 = "comand-component-library", k1 = "4.2.1", T1 = "GPL-3.0-only", S1 = "CoManD-UI", _1 = "module", O1 = {
20316
20323
  prepublishOnly: "npm run build-lib",
20317
20324
  dev: "vite",
20318
20325
  build: "vite build",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "comand-component-library",
3
- "version": "4.2.0",
3
+ "version": "4.2.1",
4
4
  "license": "GPL-3.0-only",
5
5
  "author": "CoManD-UI",
6
6
  "private": false,
@@ -16,7 +16,7 @@
16
16
 
17
17
  <!-- begin router-link -->
18
18
  <router-link v-else-if="linkType === 'router'" :to="path" :class="['cmd-link', {'button': styleAsButton, 'primary': primaryButton, 'box': styleAsBox, 'fancybox': fancybox}]" @click="emitClick($event, 'router')" :title="icon?.tooltip">
19
- <CmdInnerLink :text="text" :icon="icon">
19
+ <CmdInnerLink :text="text" :icon="icon" :image="image">
20
20
  <slot></slot>
21
21
  </CmdInnerLink>
22
22
  </router-link>
@@ -24,7 +24,7 @@
24
24
 
25
25
  <!-- begin button -->
26
26
  <button v-else-if="linkType === 'button'" :class="['cmd-link button', {'primary': primaryButton, 'box': styleAsBox, 'fancybox': fancybox}]" type="submit" @click="emitClick($event, 'button')" :title="icon?.tooltip">
27
- <CmdInnerLink :text="text" :icon="icon">
27
+ <CmdInnerLink :text="text" :icon="icon" :image="image">
28
28
  <slot></slot>
29
29
  </CmdInnerLink>
30
30
  </button>
@@ -14,7 +14,11 @@
14
14
  <ul v-if="showListOfRecommendations" class="list-of-recommendations no-list-items">
15
15
  <li v-for="(item, index) in listOfRecommendations" :key="index">
16
16
  <!-- begin CmdLink -->
17
- <CmdLink v-bind="linkItem(item)" @click="optionSelected(item)" />
17
+ <CmdLink v-bind="linkItem(item)" @click="optionSelected(item)">
18
+ <!-- begin slot -->
19
+ <slot></slot>
20
+ <!-- end slot -->
21
+ </CmdLink>
18
22
  <!-- end CmdLink -->
19
23
  </li>
20
24
  </ul>