@solfacil/girassol 0.39.0 → 0.40.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.
|
@@ -4,12 +4,14 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
4
4
|
items?: Breadcrumb['items'];
|
|
5
5
|
linkTag?: Breadcrumb['linkTag'];
|
|
6
6
|
gtmId?: Breadcrumb['gtmId'];
|
|
7
|
+
dark?: Breadcrumb['dark'];
|
|
7
8
|
}>, {
|
|
8
9
|
linkTag: string;
|
|
9
10
|
items: () => {
|
|
10
11
|
text: string;
|
|
11
12
|
href: string;
|
|
12
13
|
}[];
|
|
14
|
+
dark: boolean;
|
|
13
15
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
16
|
click: (event: Event) => void;
|
|
15
17
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
@@ -17,15 +19,18 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
17
19
|
items?: Breadcrumb['items'];
|
|
18
20
|
linkTag?: Breadcrumb['linkTag'];
|
|
19
21
|
gtmId?: Breadcrumb['gtmId'];
|
|
22
|
+
dark?: Breadcrumb['dark'];
|
|
20
23
|
}>, {
|
|
21
24
|
linkTag: string;
|
|
22
25
|
items: () => {
|
|
23
26
|
text: string;
|
|
24
27
|
href: string;
|
|
25
28
|
}[];
|
|
29
|
+
dark: boolean;
|
|
26
30
|
}>>> & {
|
|
27
31
|
onClick?: ((event: Event) => any) | undefined;
|
|
28
32
|
}, {
|
|
33
|
+
dark: boolean;
|
|
29
34
|
items: import("./types").Item[];
|
|
30
35
|
linkTag: "a" | import("./types").NuxtLinkResolved | "router-link";
|
|
31
36
|
}>;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -5807,6 +5807,11 @@ export declare const components: {
|
|
|
5807
5807
|
id: {
|
|
5808
5808
|
type: import("vue").PropType<string>;
|
|
5809
5809
|
};
|
|
5810
|
+
dark: {
|
|
5811
|
+
type: import("vue").PropType<boolean>;
|
|
5812
|
+
} & {
|
|
5813
|
+
default: boolean;
|
|
5814
|
+
};
|
|
5810
5815
|
items: {
|
|
5811
5816
|
type: import("vue").PropType<import("./components/breadcrumb/types").Item[]>;
|
|
5812
5817
|
} & {
|
|
@@ -5829,6 +5834,11 @@ export declare const components: {
|
|
|
5829
5834
|
id: {
|
|
5830
5835
|
type: import("vue").PropType<string>;
|
|
5831
5836
|
};
|
|
5837
|
+
dark: {
|
|
5838
|
+
type: import("vue").PropType<boolean>;
|
|
5839
|
+
} & {
|
|
5840
|
+
default: boolean;
|
|
5841
|
+
};
|
|
5832
5842
|
items: {
|
|
5833
5843
|
type: import("vue").PropType<import("./components/breadcrumb/types").Item[]>;
|
|
5834
5844
|
} & {
|
|
@@ -5848,6 +5858,7 @@ export declare const components: {
|
|
|
5848
5858
|
}>> & {
|
|
5849
5859
|
onClick?: ((event: Event) => any) | undefined;
|
|
5850
5860
|
}, {
|
|
5861
|
+
dark: boolean;
|
|
5851
5862
|
items: import("./components/breadcrumb/types").Item[];
|
|
5852
5863
|
linkTag: "a" | import("./components/breadcrumb/types").NuxtLinkResolved | "router-link";
|
|
5853
5864
|
}>;
|