@solfacil/girassol 0.54.0 → 0.55.0
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/dist/assignment-turned-in-outline-rounded.23ea0c5c.mjs +18 -0
- package/dist/girassol.es.js +1378 -1350
- package/dist/girassol.umd.js +6 -6
- package/dist/style.css +1 -1
- package/dist/types/components/sidebars/sidebar/types.d.ts +4 -0
- package/dist/types/components/tag/Tag.vue.d.ts +1 -1
- package/dist/types/components/tag/types.d.ts +3 -2
- package/dist/types/index.d.ts +7 -7
- package/package.json +1 -1
|
@@ -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: "
|
|
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?:
|
|
7
|
+
variant?: Variant;
|
|
7
8
|
size?: Size;
|
|
8
9
|
type?: Type;
|
|
9
10
|
}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -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: "
|
|
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<"
|
|
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<"
|
|
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: "
|
|
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<"
|
|
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<"
|
|
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: "
|
|
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;
|