@xenterprises/nuxt-x-marketing 0.0.11 → 0.0.13

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.
@@ -20,8 +20,9 @@
20
20
  class="hidden md:flex md:items-center md:justify-center py-2"
21
21
  :to="button?.to"
22
22
  :icon="button?.icon ? button?.icon : null"
23
- :target="link?.target ? link?.target : '_self'"
23
+ :target="button?.target ? button?.target : '_self'"
24
24
  :color="button?.color ? button?.color : 'primary'"
25
+ :variant="button?.variant ? button?.variant : 'solid'"
25
26
  >{{ button?.label }}</UButton
26
27
  ></span
27
28
  >
@@ -34,7 +35,9 @@
34
35
  class="md:hidden mt-5 py-2 w-full flex flex-row justify-center"
35
36
  :to="button?.to"
36
37
  :icon="button?.icon ? button?.icon : null"
37
- :target="link?.target ? link?.target : '_self'"
38
+ :target="button?.target ? button?.target : '_self'"
39
+ :color="button?.color ? button?.color : 'primary'"
40
+ :variant="button?.variant ? button?.variant : 'solid'"
38
41
  >{{ button?.label }}</UButton
39
42
  ></span
40
43
  >
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@xenterprises/nuxt-x-marketing",
3
3
  "type": "module",
4
- "version": "0.0.11",
4
+ "version": "0.0.13",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground",