@oub/fusion 0.2.102 → 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,6 +48,34 @@ 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";
@@ -97,6 +126,34 @@ declare const _default: import("vue").DefineComponent<{
97
126
  type: NumberConstructor;
98
127
  default: null;
99
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
+ };
100
157
  }>>, {
101
158
  keyText: string;
102
159
  valueText: string;
@@ -109,5 +166,12 @@ declare const _default: import("vue").DefineComponent<{
109
166
  tagVariantType: keyof FusionButtonVariantType;
110
167
  tagVariantStyle: keyof FusionButtonVariantStyle;
111
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;
112
176
  }, {}>;
113
177
  export default _default;