@xenterprises/nuxt-x-marketing 0.0.10 → 0.0.12

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/app.config.ts CHANGED
@@ -62,6 +62,7 @@ declare module "@nuxt/schema" {
62
62
  target?: string;
63
63
  variant?: string;
64
64
  square?: boolean;
65
+ color?: string;
65
66
  }[];
66
67
  links?: {
67
68
  label: string;
@@ -21,6 +21,8 @@
21
21
  :to="button?.to"
22
22
  :icon="button?.icon ? button?.icon : null"
23
23
  :target="link?.target ? link?.target : '_self'"
24
+ :color="button?.color ? button?.color : 'primary'"
25
+ :variant="button?.variant ? button?.variant : 'solid'"
24
26
  >{{ button?.label }}</UButton
25
27
  ></span
26
28
  >
@@ -34,6 +36,8 @@
34
36
  :to="button?.to"
35
37
  :icon="button?.icon ? button?.icon : null"
36
38
  :target="link?.target ? link?.target : '_self'"
39
+ :color="button?.color ? button?.color : 'primary'"
40
+ :variant="button?.variant ? button?.variant : 'solid'"
37
41
  >{{ button?.label }}</UButton
38
42
  ></span
39
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.10",
4
+ "version": "0.0.12",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground",