@solfacil/girassol 0.54.0 → 0.54.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.
@@ -1,4 +1,5 @@
1
1
  import type { FunctionalComponent, SVGAttributes } from "vue";
2
+ import type { Type, Variant } from "../../tag/types";
2
3
  import type { NuxtLinkResolved } from "@/types";
3
4
  export interface Link {
4
5
  icon?: FunctionalComponent<SVGAttributes>;
@@ -13,6 +14,9 @@ export interface Items {
13
14
  name: string;
14
15
  isActive: boolean;
15
16
  action: Function;
17
+ tagName?: string;
18
+ tagType?: Type;
19
+ tagVariant?: Variant;
16
20
  }
17
21
  export interface Product {
18
22
  id: 'portal' | 'shop' | 'financing' | 'ampera';
@@ -25,7 +25,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
25
25
  type: import("./types").Type;
26
26
  text: string;
27
27
  size: import("./types").Size;
28
- variant: "fill" | "outline";
28
+ variant: import("./types").Variant;
29
29
  }>, {
30
30
  default: (_: {}) => any;
31
31
  }>;
@@ -1,9 +1,10 @@
1
1
  export type Size = 'small' | 'medium';
2
- export type Type = 'positive' | 'warning' | 'negative' | 'informative' | 'neutral';
2
+ export type Type = 'positive' | 'warning' | 'negative' | 'informative' | 'neutral' | 'secondary';
3
+ export type Variant = 'fill' | 'outline';
3
4
  export interface Tag {
4
5
  id: string;
5
6
  text?: string;
6
- variant?: 'fill' | 'outline';
7
+ variant?: Variant;
7
8
  size?: Size;
8
9
  type?: Type;
9
10
  }
@@ -3134,7 +3134,7 @@ export declare const components: {
3134
3134
  type: import("./components/tag/types").Type;
3135
3135
  text: string;
3136
3136
  size: import("./components/tag/types").Size;
3137
- variant: "fill" | "outline";
3137
+ variant: import("./components/tag/types").Variant;
3138
3138
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
3139
3139
  id: {
3140
3140
  type: import("vue").PropType<string>;
@@ -3156,7 +3156,7 @@ export declare const components: {
3156
3156
  default: string;
3157
3157
  };
3158
3158
  variant: {
3159
- type: import("vue").PropType<"fill" | "outline">;
3159
+ type: import("vue").PropType<import("./components/tag/types").Variant>;
3160
3160
  } & {
3161
3161
  default: string;
3162
3162
  };
@@ -3195,7 +3195,7 @@ export declare const components: {
3195
3195
  default: string;
3196
3196
  };
3197
3197
  variant: {
3198
- type: import("vue").PropType<"fill" | "outline">;
3198
+ type: import("vue").PropType<import("./components/tag/types").Variant>;
3199
3199
  } & {
3200
3200
  default: string;
3201
3201
  };
@@ -3203,7 +3203,7 @@ export declare const components: {
3203
3203
  type: import("./components/tag/types").Type;
3204
3204
  text: string;
3205
3205
  size: import("./components/tag/types").Size;
3206
- variant: "fill" | "outline";
3206
+ variant: import("./components/tag/types").Variant;
3207
3207
  }, {}, string> & {
3208
3208
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
3209
3209
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -3245,7 +3245,7 @@ export declare const components: {
3245
3245
  default: string;
3246
3246
  };
3247
3247
  variant: {
3248
- type: import("vue").PropType<"fill" | "outline">;
3248
+ type: import("vue").PropType<import("./components/tag/types").Variant>;
3249
3249
  } & {
3250
3250
  default: string;
3251
3251
  };
@@ -3274,7 +3274,7 @@ export declare const components: {
3274
3274
  default: string;
3275
3275
  };
3276
3276
  variant: {
3277
- type: import("vue").PropType<"fill" | "outline">;
3277
+ type: import("vue").PropType<import("./components/tag/types").Variant>;
3278
3278
  } & {
3279
3279
  default: string;
3280
3280
  };
@@ -3282,7 +3282,7 @@ export declare const components: {
3282
3282
  type: import("./components/tag/types").Type;
3283
3283
  text: string;
3284
3284
  size: import("./components/tag/types").Size;
3285
- variant: "fill" | "outline";
3285
+ variant: import("./components/tag/types").Variant;
3286
3286
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
3287
3287
  $slots: {
3288
3288
  default: (_: {}) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@solfacil/girassol",
3
3
  "description": "Girassol design system",
4
- "version": "0.54.0",
4
+ "version": "0.54.1",
5
5
  "license": "MIT",
6
6
  "authors": [
7
7
  {