@oub/fusion 0.2.102 → 0.2.104

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;
@@ -37,6 +37,10 @@ declare const _default: import("vue").DefineComponent<{
37
37
  type: BooleanConstructor;
38
38
  default: boolean;
39
39
  };
40
+ formElementId: {
41
+ type: StringConstructor;
42
+ default: string;
43
+ };
40
44
  }, unknown, {
41
45
  isMobile: boolean;
42
46
  headerShadow: boolean;
@@ -90,6 +94,10 @@ declare const _default: import("vue").DefineComponent<{
90
94
  type: BooleanConstructor;
91
95
  default: boolean;
92
96
  };
97
+ formElementId: {
98
+ type: StringConstructor;
99
+ default: string;
100
+ };
93
101
  }>> & {
94
102
  onClose?: ((...args: any[]) => any) | undefined;
95
103
  onCancel?: ((...args: any[]) => any) | undefined;
@@ -103,5 +111,6 @@ declare const _default: import("vue").DefineComponent<{
103
111
  hideConfirm: boolean;
104
112
  confirmButtonVariant: keyof FusionButtonVariantType;
105
113
  cancelButtonLoading: boolean;
114
+ formElementId: string;
106
115
  }, {}>;
107
116
  export default _default;
@@ -37,6 +37,10 @@ declare const _default: import("vue").DefineComponent<{
37
37
  type: BooleanConstructor;
38
38
  default: boolean;
39
39
  };
40
+ formElementId: {
41
+ type: StringConstructor;
42
+ default: string;
43
+ };
40
44
  }, unknown, {
41
45
  isMobile: boolean;
42
46
  }, {}, {
@@ -80,6 +84,10 @@ declare const _default: import("vue").DefineComponent<{
80
84
  type: BooleanConstructor;
81
85
  default: boolean;
82
86
  };
87
+ formElementId: {
88
+ type: StringConstructor;
89
+ default: string;
90
+ };
83
91
  }>> & {
84
92
  onCancel?: ((...args: any[]) => any) | undefined;
85
93
  onConfirm?: ((...args: any[]) => any) | undefined;
@@ -93,5 +101,6 @@ declare const _default: import("vue").DefineComponent<{
93
101
  hideConfirm: boolean;
94
102
  confirmButtonVariant: keyof FusionButtonVariantType;
95
103
  cancelButtonLoading: boolean;
104
+ formElementId: string;
96
105
  }, {}>;
97
106
  export default _default;