@oub/fusion 0.2.101 → 0.2.103
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,6 +1,7 @@
|
|
|
1
1
|
import type { PropType } from "vue";
|
|
2
2
|
import type { FusionKeyValuePairEmphasis, FusionKeyValuePairOrder } from '../../../../types/components/FusionKeyValuePair';
|
|
3
3
|
import type { FusionButtonVariantStyle, FusionButtonVariantType } from '../../../../types/components/FusionTag';
|
|
4
|
+
import type { VariantTypes, Sizes } from '../../../../types/Global.d.ts';
|
|
4
5
|
declare const _default: import("vue").DefineComponent<{
|
|
5
6
|
keyText: {
|
|
6
7
|
type: StringConstructor;
|
|
@@ -47,9 +48,38 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
47
48
|
type: NumberConstructor;
|
|
48
49
|
default: null;
|
|
49
50
|
};
|
|
51
|
+
showLink: {
|
|
52
|
+
type: BooleanConstructor;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
linkText: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
linkHref: {
|
|
60
|
+
type: StringConstructor;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
linkTarget: {
|
|
64
|
+
type: StringConstructor;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
67
|
+
linkVariantType: {
|
|
68
|
+
type: PropType<keyof VariantTypes>;
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
71
|
+
linkSize: {
|
|
72
|
+
type: PropType<keyof Sizes>;
|
|
73
|
+
default: string;
|
|
74
|
+
};
|
|
75
|
+
linkDisabled: {
|
|
76
|
+
type: BooleanConstructor;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
50
79
|
}, unknown, unknown, {
|
|
51
80
|
orderClass: () => "flex-col" | "flex-col-reverse";
|
|
52
81
|
valueTextEmphasisClass: () => "text-base" | "text-medium" | "text-heading-xl" | "text-heading-3xl";
|
|
82
|
+
showValueContainer: () => string | import("vue").Slot<any> | undefined;
|
|
53
83
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
54
84
|
keyText: {
|
|
55
85
|
type: StringConstructor;
|
|
@@ -96,6 +126,34 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
96
126
|
type: NumberConstructor;
|
|
97
127
|
default: null;
|
|
98
128
|
};
|
|
129
|
+
showLink: {
|
|
130
|
+
type: BooleanConstructor;
|
|
131
|
+
default: boolean;
|
|
132
|
+
};
|
|
133
|
+
linkText: {
|
|
134
|
+
type: StringConstructor;
|
|
135
|
+
default: string;
|
|
136
|
+
};
|
|
137
|
+
linkHref: {
|
|
138
|
+
type: StringConstructor;
|
|
139
|
+
default: string;
|
|
140
|
+
};
|
|
141
|
+
linkTarget: {
|
|
142
|
+
type: StringConstructor;
|
|
143
|
+
default: string;
|
|
144
|
+
};
|
|
145
|
+
linkVariantType: {
|
|
146
|
+
type: PropType<keyof VariantTypes>;
|
|
147
|
+
default: string;
|
|
148
|
+
};
|
|
149
|
+
linkSize: {
|
|
150
|
+
type: PropType<keyof Sizes>;
|
|
151
|
+
default: string;
|
|
152
|
+
};
|
|
153
|
+
linkDisabled: {
|
|
154
|
+
type: BooleanConstructor;
|
|
155
|
+
default: boolean;
|
|
156
|
+
};
|
|
99
157
|
}>>, {
|
|
100
158
|
keyText: string;
|
|
101
159
|
valueText: string;
|
|
@@ -108,5 +166,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
108
166
|
tagVariantType: keyof FusionButtonVariantType;
|
|
109
167
|
tagVariantStyle: keyof FusionButtonVariantStyle;
|
|
110
168
|
tagEmphasis: number;
|
|
169
|
+
showLink: boolean;
|
|
170
|
+
linkText: string;
|
|
171
|
+
linkHref: string;
|
|
172
|
+
linkTarget: string;
|
|
173
|
+
linkVariantType: keyof VariantTypes;
|
|
174
|
+
linkSize: keyof Sizes;
|
|
175
|
+
linkDisabled: boolean;
|
|
111
176
|
}, {}>;
|
|
112
177
|
export default _default;
|