@oub/fusion 0.2.103 → 0.2.105
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/fusion.js +25 -8
- package/dist/fusion.umd.cjs +2 -2
- package/dist/lib/components/common/modal/FusionModal.vue.d.ts +9 -0
- package/dist/lib/components/common/modal/modal-footer/FusionModalFooter.vue.d.ts +9 -0
- package/dist/lib/components/form/icon-button/FusionIconButton.vue.d.ts +11 -0
- package/dist/lib/components/form/searchable-input/FusionSearchableInput.vue.d.ts +1 -1
- package/dist/lib/components/form/select/FusionSelect.vue.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -34,6 +34,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
34
34
|
type: StringConstructor;
|
|
35
35
|
default: string;
|
|
36
36
|
};
|
|
37
|
+
ariaLabel: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
required: false;
|
|
40
|
+
default: undefined;
|
|
41
|
+
};
|
|
37
42
|
}, unknown, {
|
|
38
43
|
focus: boolean;
|
|
39
44
|
hover: boolean;
|
|
@@ -81,6 +86,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
81
86
|
type: StringConstructor;
|
|
82
87
|
default: string;
|
|
83
88
|
};
|
|
89
|
+
ariaLabel: {
|
|
90
|
+
type: StringConstructor;
|
|
91
|
+
required: false;
|
|
92
|
+
default: undefined;
|
|
93
|
+
};
|
|
84
94
|
}>> & {
|
|
85
95
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
86
96
|
}, {
|
|
@@ -91,5 +101,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
91
101
|
size: keyof FusionButtonSize;
|
|
92
102
|
loading: boolean;
|
|
93
103
|
disabled: boolean;
|
|
104
|
+
ariaLabel: string;
|
|
94
105
|
}, {}>;
|
|
95
106
|
export default _default;
|
|
@@ -227,6 +227,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
227
227
|
title: string;
|
|
228
228
|
dataTest: string;
|
|
229
229
|
disabled: boolean;
|
|
230
|
+
ariaLabel: string;
|
|
230
231
|
required: boolean;
|
|
231
232
|
searchText: string;
|
|
232
233
|
modelValue: FusionSelectOption;
|
|
@@ -242,6 +243,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
242
243
|
searchErrorDescription: string;
|
|
243
244
|
minSearchLength: number;
|
|
244
245
|
autofocus: boolean;
|
|
245
|
-
ariaLabel: string;
|
|
246
246
|
}, {}>;
|
|
247
247
|
export default _default;
|
|
@@ -224,6 +224,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
224
224
|
title: string;
|
|
225
225
|
dataTest: string;
|
|
226
226
|
disabled: boolean;
|
|
227
|
+
ariaLabel: string;
|
|
227
228
|
required: boolean;
|
|
228
229
|
searchText: string;
|
|
229
230
|
modelValue: FusionSelectOption;
|
|
@@ -239,6 +240,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
239
240
|
searchErrorTitle: string;
|
|
240
241
|
searchErrorDescription: string;
|
|
241
242
|
autofocus: boolean;
|
|
242
|
-
ariaLabel: string;
|
|
243
243
|
}, {}>;
|
|
244
244
|
export default _default;
|